[
  {
    "path": ".cursorindexingignore",
    "content": "\n# Don't index SpecStory auto-save files, but allow explicit context inclusion via @ references\n.specstory/**\n"
  },
  {
    "path": ".devcontainer/base.Dockerfile",
    "content": "# syntax=docker/dockerfile:1.5\n# HugoBlox devcontainer base image\n\nFROM mcr.microsoft.com/devcontainers/go:1.22-bookworm\n\nARG NODE_VERSION=20\nARG PNPM_VERSION=10.14.0\nARG HUGO_VERSION=0.152.2\n\nENV DEBIAN_FRONTEND=noninteractive\nENV PNPM_HOME=/home/vscode/.local/share/pnpm\nENV PATH=${PNPM_HOME}:/usr/local/go/bin:${PATH}\n\nUSER root\n\nRUN set -eux; \\\n    apt-get update; \\\n    apt-get install -y --no-install-recommends ca-certificates curl gnupg; \\\n    NODE_MAJOR=\"${NODE_VERSION%%.*}\"; \\\n    curl -fsSL \"https://deb.nodesource.com/setup_${NODE_MAJOR}.x\" | bash -; \\\n    apt-get install -y --no-install-recommends nodejs; \\\n    corepack enable; \\\n    corepack prepare \"pnpm@${PNPM_VERSION}\" --activate; \\\n    mkdir -p \"${PNPM_HOME}\"; \\\n    chown -R vscode:vscode \"${PNPM_HOME}\"; \\\n    ARCH=\"$(uname -m)\"; \\\n    if [ \"$ARCH\" = \"x86_64\" ] || [ \"$ARCH\" = \"amd64\" ]; then \\\n        HUGO_ARCH=\"amd64\"; \\\n    elif [ \"$ARCH\" = \"aarch64\" ] || [ \"$ARCH\" = \"arm64\" ]; then \\\n        HUGO_ARCH=\"arm64\"; \\\n    else \\\n        echo \"Unsupported architecture: ${ARCH}\"; \\\n        exit 1; \\\n    fi; \\\n    HUGO_PKG=\"hugo_extended_${HUGO_VERSION}_Linux-${HUGO_ARCH}.tar.gz\"; \\\n    curl -fsSL -o \"/tmp/${HUGO_PKG}\" \"https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/${HUGO_PKG}\"; \\\n    tar -xzf \"/tmp/${HUGO_PKG}\" -C /tmp hugo; \\\n    install -m 0755 /tmp/hugo /usr/local/bin/hugo; \\\n    rm -rf \"/tmp/${HUGO_PKG}\" /tmp/hugo; \\\n    apt-get clean; \\\n    rm -rf /var/lib/apt/lists/*\n\nUSER vscode\n"
  },
  {
    "path": ".editorconfig",
    "content": "# editorconfig.org\n\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_style = space\nindent_size = 2\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n\n[*.{yaml,yml}]\nmax_line_length = 150\n\n[*.md]\ntrim_trailing_whitespace = false\nmax_line_length = off\n\n[*.py]\nindent_size = 4\n\n[Makefile]\nindent_style = tab\n\n[*.go]\nindent_style = tab\ntab_width = 8\n\n[{**/layouts/_shortcodes/*.html, **/layouts/_markup/*.html}]\ninsert_final_newline = false\n"
  },
  {
    "path": ".github/CLA.md",
    "content": "# HugoBlox Contributor License Agreement\n\nBy contributing to this project, you agree to the following terms:\n\n1.  **Grant of License:** You grant to **George Cushen (\"HugoBlox\")** a perpetual, worldwide, royalty-free, and irrevocable license to use, modify, reproduce, distribute, and re-license your contributions for any purpose, including in commercial products.\n\n2.  **No Warranty:** You provide your contributions \"AS IS\" and WITHOUT ANY WARRANTY OR CONDITION. As far as the law allows, you will not be liable for any damages related to your contributions or this agreement.\n\n3.  **Your Representation:** You confirm that you are legally entitled to grant this license and that your contribution is your original work.\n"
  },
  {
    "path": ".github/CODEOWNERS",
    "content": "# CODEOWNERS helps route reviews automatically.\n# Update these owners to the correct team(s) as needed.\n\n* @gcushen\n\n# Core theme and modules\nmodules/** @gcushen\n\n# Starters\nstarters/** @gcushen\n\n\n"
  },
  {
    "path": ".github/CODE_OF_CONDUCT.md",
    "content": "# Code of Conduct\n\nWe want to foster a positive, inclusive, and welcoming environment 💜\n\nWe expect you to follow our [Code of Conduct](https://docs.hugoblox.com/reference/contribute/) to fulfil this goal.\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug-report.yml",
    "content": "name: 🐛 Bug Report\ndescription: Something isn't working as expected? Report your bugs here.\nlabels: ['needs triage']\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        # Welcome 👋\n\n        Thanks for taking the time to fill out this bug report.\n\n        We use GitHub Issues for project management, **NOT for support**.\n\n        🚑 For **help** and **questions**, search if your question has already been asked on the community **[chat](https://discord.gg/z8wNYzb)** and **[forum](https://github.com/HugoBlox/kit/discussions)**, and if not, ask your question there instead.\n\n        Bug reports also shouldn't be used for support requests about a specific problem in your site, only if the issue can be reproduced on a fresh HugoBlox Kit template.\n\n        Also, you can search and browse the extensive [HugoBlox Kit](https://docs.hugoblox.com) and [Hugo](https://gohugo.io/documentation/) **documentation**.\n\n        For questions on _RStudio/Blogdown_, please reach out to the [RStudio/Blogdown community](https://github.com/rstudio/blogdown).\n\n        Please fill out each section below. This info allows HugoBlox Kit contributors to diagnose (and fix!) your issue as quickly as possible. Otherwise we might need to close the issue (e.g. when it's missing clear steps to reproduce).\n\n        Also, please verify that your issue is present in the very latest `main` version.\n  - type: checkboxes\n    attributes:\n      label: Preliminary Checks\n      description: Please make sure that you verify each checkbox and follow the instructions for them.\n      options:\n        - label: \"This issue is not a duplicate. Before opening a new issue, please search existing issues: https://github.com/HugoBlox/kit/issues?q=is%3Aissue\"\n          required: true\n        - label: \"This issue is not a question, feature request, or anything other than a bug report directly related to HugoBlox Kit. Please post those things on Discord: https://discord.gg/z8wNYzb\"\n          required: true\n  - type: textarea\n    attributes:\n      label: Description\n      description: Describe the issue that you're seeing.\n      placeholder: Be as precise as you can. Feel free to share screenshots, videos, or data from the devtools of your browser.\n    validations:\n      required: true\n  - type: input\n    id: reproduction-link\n    attributes:\n      label: Reproduction Link\n      placeholder: \"https://github.com/username/repository-name/\"\n      description: |\n        Link to a minimal reproduction of the issue (GitHub repository).\n\n        **Ideally, create a minimal reproduction of the issue on a fresh template rather than linking to your site's repository: https://hugoblox.com/hugo-themes/\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: Steps to Reproduce\n      description: Clear steps describing how to reproduce the issue.\n      value: |\n        1.\n        2.\n        3.\n        ...\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: Expected Result\n      description: Describe what you expected to happen.\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: Actual Result\n      description: Describe what actually happened.\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: What Hugo Module versions does your site use?\n      description: Paste your `go.mod` here.\n    validations:\n      required: true\n  - type: dropdown\n    id: os\n    attributes:\n      label: What operating system(s) are you seeing the problem on?\n      multiple: true\n      options:\n        - Windows\n        - macOS\n        - Android\n        - iOS\n        - Linux\n    validations:\n      required: true\n  - type: dropdown\n    id: browser\n    attributes:\n      label: What browser(s) are you seeing the problem on?\n      multiple: true\n      options:\n        - Chrome\n        - Safari\n        - Firefox\n        - Microsoft Edge\n        - Other\n  - type: input\n    id: hb-tpl\n    attributes:\n      label: Which Hugo Blox template are you using?\n      description: 'For example, a template from https://hugoblox.com/templates/'\n      placeholder: 'e.g., Academic CV'\n    validations:\n      required: true\n  - type: input\n    id: version-hugo\n    attributes:\n      label: What version of Hugo are you using?\n      description: 'Run `hugo version` or check your `netlify.toml`'\n      placeholder: 'Hugo Extended 0.101.0'\n    validations:\n      required: true\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: false\ncontact_links:\n  - name: 💬 Contributing chat (Discord)\n    url: https://discord.gg/z8wNYzb\n    about: Ask quick questions in the Contributing channel and coordinate with Geo & contributors.\n\n  - name: 🧪 Troubleshooting Guide\n    url: https://docs.hugoblox.com/reference/troubleshooting/\n    about: Fix common issues fast and follow the reproducible-issue checklist before filing.\n\n  - name: 🏷️ Help-wanted issues (good first tasks)\n    url: https://github.com/HugoBlox/kit/labels/help%20wanted\n    about: Pick a bite-sized task and open your first PR in minutes.\n\n  - name: 🧭 Contributing Guide\n    url: https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md\n    about: How we work, environment setup, style, and PR tips.\n\n  - name: 🧵 Discussions (Q&A, ideas)\n    url: https://github.com/HugoBlox/kit/discussions\n    about: Ask for help, propose features, or share learnings.\n\n  - name: 📚 Documentation\n    url: https://docs.hugoblox.com/\n    about: Explore all Hugo Blox docs, tutorials, and references.\n\n  - name: 💚 Support Hugo Blox (All Access)\n    url: https://hugoblox.com/all-access\n    about: Too busy to contribute? Support development and get lifetime template updates.\n\n  - name: 🫶 Sponsor on GitHub\n    url: https://github.com/sponsors/gcushen\n    about: Prefer monthly or one-time sponsorship via GitHub.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature-request.yml",
    "content": "name: 🚀 Feature request\ndescription: Suggest an improvement.\nlabels: [proposal]\nassignees: []\nbody:\n- type: checkboxes\n  attributes:\n    label: Prerequisites\n    description: Take a minute to help our open source contributors.\n    options:\n    - label: I have [searched](https://github.com/HugoBlox/kit/issues?q=is%3Aissue) for duplicate or closed feature requests\n      required: true\n    - label: I am mindful of the project [scope](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md#scope)\n      required: true\n- type: textarea\n  id: proposal\n  attributes:\n    label: Proposal\n    description: Provide detailed information for what we should add, including relevant links to screenshots, code, or live demos whenever possible.\n  validations:\n    required: true\n- type: textarea\n  id: motivation\n  attributes:\n    label: Motivation and context\n    description: Tell us why this change is needed or helpful, and what problems it may help solve.\n  validations:\n    required: true\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "### 🚀 What type of change is this?\n\n- [ ] 🐛 **Bug fix** (A non-breaking change that fixes an issue)\n- [ ] ✨ **New feature** (A non-breaking change that adds functionality)\n- [ ] 💅 **Style change** (A change that only affects formatting, visuals, or styling)\n- [ ] 📚 **Documentation update** (Changes to documentation only)\n- [ ] 🧹 **Refactor or chore** (A code change that neither fixes a bug nor adds a feature)\n- [ ] 💥 **Breaking change** (A fix or feature that would cause existing functionality to not work as expected)\n\n---\n\n### 🎯 What is the purpose of this change?\n\n---\n\n### 📸 Screenshots or Screencast (if applicable)\n\n---\n\n### ℹ️ Documentation Check\n\n- [ ] No, this change does not require a documentation update.\n- [ ] Yes, I have updated the documentation accordingly (or will in a follow-up PR).\n\n---\n\n### 📜 Contributor Agreement\n\n**Thank you for your contribution!**\n\n- [ ] By checking this box, I confirm that I have read and agree to the [HugoBlox Contributor License Agreement (CLA)](/.github/CLA.md).\n"
  },
  {
    "path": ".github/SECURITY.md",
    "content": "# Security Policy\n\nWe take security seriously and appreciate responsible disclosures.\n\n## Supported Versions\n\nWe generally support the latest release of Hugo Blox modules and starters. Security fixes may be backported at the maintainers' discretion.\n\n## Reporting a Vulnerability\n\n- Do not open a public issue.\n- Instead, open a private GitHub Security Advisory for this repository (Security tab → Report a vulnerability).\n- If you cannot access advisories, email the maintainers via the repository's contact links on GitHub.\n\nPlease include:\n\n- A clear description and minimal reproduction\n- Impact assessment and potential exploit scenario\n- Suggested remediation, if known\n\nWe will acknowledge receipt within 72 hours and keep you updated.\n\n## Scope\n\n- This repository and official Hugo Blox modules/starters\n- Third-party templates and plugins are out of scope\n\nThank you for helping keep the community safe.\n"
  },
  {
    "path": ".github/SUPPORT.md",
    "content": "# Support\n\nNeed help? Here’s how to get support efficiently:\n\n- Discord: https://discord.gg/z8wNYzb\n- GitHub Discussions: https://github.com/HugoBlox/kit/discussions\n- Docs & Guides: https://docs.hugoblox.com/\n- Issues: use for confirmed bugs or well-scoped feature requests only\n\nTips for fast responses:\n\n- Share versions (Hugo, module, OS) and a minimal reproduction\n- Paste relevant logs/console output\n- State expected vs actual behavior\n- Attach screenshots to visually explain the issue\n\nPro support & templates:\n\n- Pro templates: https://hugoblox.com/pricing\n- Pro Discord Channel (request to be added): https://discord.gg/z8wNYzb\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  # Update GitHub Actions\n  - package-ecosystem: 'github-actions'\n    directory: '/'\n    schedule:\n      interval: 'weekly'\n    open-pull-requests-limit: 10\n    labels:\n      - 'dependencies'\n      - 'github-actions'\n    commit-message:\n      prefix: 'ci'\n      include: 'scope'\n\n  # Update GitHub Actions in main starter template (academic-cv)\n  # Other starters can be manually updated from this template\n  - package-ecosystem: 'github-actions'\n    directory: '/starters/academic-cv'\n    schedule:\n      interval: 'weekly'\n    open-pull-requests-limit: 3\n    labels:\n      - 'dependencies'\n      - 'starters'\n      - 'template'\n    commit-message:\n      prefix: 'ci'\n      include: 'scope'\n"
  },
  {
    "path": ".github/labeler.yml",
    "content": "documentation:\n  - changed-files:\n      - any-glob-to-any-file: \"**/*.md\"\n\nci:\n  - changed-files:\n      - any-glob-to-any-file: \".github/workflows/**\"\n\nmodules:\n  - changed-files:\n      - any-glob-to-any-file: \"modules/**\"\n\nstarters:\n  - changed-files:\n      - any-glob-to-any-file: \"starters/**\"\n\nconfig:\n  - changed-files:\n      - any-glob-to-any-file:\n          - \"package.json\"\n          - \"pnpm-lock.yaml\"\n          - \"biome.json\"\n          - \".stylelintrc.yaml\"\n          - \"vite.config.js\"\n"
  },
  {
    "path": ".github/workflows/ci-build-starters-matrix.yml",
    "content": "name: CI - Build Starters Matrix\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\n\non:\n    schedule:\n        - cron: \"0 2 * * *\"\n    workflow_dispatch:\n    push:\n        branches: [main]\n        paths:\n            - \"modules/**\"\n            - \"templates/**\"\n            - \"test/**\"\n            - \"scripts/**\"\n            - \"package.json\"\n            - \"pnpm-lock.yaml\"\n            - \"biome.json\"\n            - \"vite.config.js\"\n    pull_request:\n        types:\n            - opened\n            - reopened\n            - synchronize\n            - ready_for_review\n        paths:\n            - \"modules/**\"\n            - \"templates/**\"\n            - \"test/**\"\n            - \"scripts/**\"\n            - \"package.json\"\n            - \"pnpm-lock.yaml\"\n            - \"biome.json\"\n            - \"vite.config.js\"\n\npermissions:\n    contents: read\n\nconcurrency:\n    group: templates-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}\n    cancel-in-progress: true\n\nenv:\n    NODE_VERSION: \"22\"\n\njobs:\n    build-templates:\n        runs-on: ubuntu-latest\n        strategy:\n            fail-fast: false\n            matrix:\n                starter:\n                    - name: academic-cv\n                      path: templates/academic-cv\n                    - name: startup-landing-page\n                      path: templates/startup-landing-page\n                    - name: dev-portfolio\n                      path: templates/dev-portfolio\n\n        steps:\n            - name: Checkout\n              uses: actions/checkout@v6\n              with:\n                  submodules: true\n                  fetch-depth: 0\n\n            - name: Compute resources cache key\n              id: reskey\n              run: |\n                  set -euo pipefail\n                  P=${{ matrix.starter.path }}\n                  # Hash tracked files under assets/config and key files for invalidation\n                  HASH=$(git ls-files -s \"$P/assets\" \"$P/config\" \"$P/hugoblox.yaml\" \"$P/package.json\" 2>/dev/null | sha256sum | cut -d' ' -f1 || true)\n                  if [ -z \"$HASH\" ]; then HASH=\"nohash\"; fi\n                  echo \"key=${{ runner.os }}-hugo-resources-${{ matrix.starter.name }}-$HASH\" >> $GITHUB_OUTPUT\n\n            - name: Cache Hugo resources (starter)\n              uses: actions/cache@v5\n              with:\n                  path: ${{ matrix.starter.path }}/resources/\n                  key: ${{ steps.reskey.outputs.key }}\n                  restore-keys: |\n                      ${{ runner.os }}-hugo-resources-${{ matrix.starter.name }}-\n\n            - name: Enable Corepack (for pnpm cache)\n              run: corepack enable\n\n            - name: Setup Node.js\n              uses: actions/setup-node@v6\n              with:\n                  node-version: \"${{ env.NODE_VERSION }}\"\n                  cache: \"pnpm\"\n\n            - name: Activate pnpm from root package.json\n              run: pnpm --version\n\n            - name: Install template dependencies\n              working-directory: ${{ matrix.starter.path }}\n              # Don't use --frozen-lockfile as starters have auto-generated package.json with simple deps (Tailwind CLI)\n              # and may not have lock files checked into the repo\n              run: pnpm install --no-frozen-lockfile\n\n            - name: Read Hugo version from template\n              id: hugo\n              run: |\n                  set -euo pipefail\n                  P=${{ matrix.starter.path }}\n                  VERSION=$(grep -E \"^\\s*hugo_version:\\s*['\\\"]?\" \"$P/hugoblox.yaml\" | sed -E \"s/.*hugo_version:\\s*['\\\"]?([^'\\\"]+)['\\\"]?.*/\\1/\")\n                  if [ -z \"$VERSION\" ]; then\n                    echo \"::error::Could not read hugo_version from $P/hugoblox.yaml\"\n                    exit 1\n                  fi\n                  echo \"version=$VERSION\" >> $GITHUB_OUTPUT\n\n            - name: Setup Hugo\n              uses: peaceiris/actions-hugo@v3\n              with:\n                  hugo-version: \"${{ steps.hugo.outputs.version }}\"\n                  extended: true\n\n            - name: Build ${{ matrix.starter.name }}\n              working-directory: ${{ matrix.starter.path }}\n              run: hugo --minify --panicOnWarning\n\n    smoke-test-latest:\n        name: Test site on latest Hugo (allowed to fail)\n        runs-on: ubuntu-latest\n        continue-on-error: true\n        steps:\n            - name: Checkout\n              uses: actions/checkout@v6\n              with:\n                  submodules: true\n                  fetch-depth: 0\n\n            - name: Enable Corepack (for pnpm cache)\n              run: corepack enable\n\n            - name: Setup Node.js\n              uses: actions/setup-node@v6\n              with:\n                  node-version: \"${{ env.NODE_VERSION }}\"\n                  cache: \"pnpm\"\n\n            - name: Install root dependencies\n              run: pnpm install --no-frozen-lockfile\n\n            - name: Install test dependencies\n              working-directory: test\n              run: pnpm install --no-frozen-lockfile\n\n            - name: Cache Hugo resources (test)\n              uses: actions/cache@v5\n              with:\n                  path: test/resources/\n                  key: ${{ runner.os }}-hugo-resources-test-${{ hashFiles('test/assets/**/*', 'test/config.yaml', 'test/package.json') }}\n                  restore-keys: |\n                      ${{ runner.os }}-hugo-resources-test-\n\n            - name: Setup Hugo (latest)\n              uses: peaceiris/actions-hugo@v3\n              with:\n                  hugo-version: latest\n                  extended: true\n\n            - name: Build test site (latest)\n              working-directory: test\n              run: hugo --minify --panicOnWarning --templateMetrics --templateMetricsHints\n\n    canary-academic-latest:\n        name: academic-cv on latest Hugo (allowed to fail)\n        runs-on: ubuntu-latest\n        continue-on-error: true\n        steps:\n            - name: Checkout\n              uses: actions/checkout@v6\n              with:\n                  submodules: true\n                  fetch-depth: 0\n\n            - name: Enable Corepack (for pnpm cache)\n              run: corepack enable\n\n            - name: Setup Node.js\n              uses: actions/setup-node@v6\n              with:\n                  node-version: \"${{ env.NODE_VERSION }}\"\n                  cache: \"pnpm\"\n\n            - name: Install template dependencies\n              working-directory: templates/academic-cv\n              run: pnpm install --no-frozen-lockfile\n\n            - name: Cache Hugo resources (template)\n              uses: actions/cache@v5\n              with:\n                  path: templates/academic-cv/resources/\n                  key: ${{ runner.os }}-hugo-resources-academic-latest-${{ hashFiles('templates/academic-cv/assets/**/*', 'templates/academic-cv/config/**/*', 'templates/academic-cv/hugoblox.yaml', 'templates/academic-cv/package.json') }}\n                  restore-keys: |\n                      ${{ runner.os }}-hugo-resources-academic-latest-\n\n            - name: Setup Hugo (latest)\n              uses: peaceiris/actions-hugo@v3\n              with:\n                  hugo-version: latest\n                  extended: true\n\n            - name: Build academic-cv (latest)\n              working-directory: templates/academic-cv\n              run: hugo --minify --panicOnWarning\n\n    smoke-test-min:\n        name: Test site on minimum supported Hugo\n        runs-on: ubuntu-latest\n        steps:\n            - name: Checkout\n              uses: actions/checkout@v6\n              with:\n                  submodules: true\n                  fetch-depth: 0\n\n            - name: Enable Corepack (for pnpm cache)\n              run: corepack enable\n\n            - name: Setup Node.js\n              uses: actions/setup-node@v6\n              with:\n                  node-version: \"${{ env.NODE_VERSION }}\"\n                  cache: \"pnpm\"\n\n            - name: Install root dependencies\n              run: pnpm install --no-frozen-lockfile\n\n            - name: Install test dependencies\n              working-directory: test\n              run: pnpm install --no-frozen-lockfile\n\n            - name: Read minimum Hugo version from framework\n              id: min\n              run: |\n                  set -euo pipefail\n                  VERSION=$(grep -E \"^[[:space:]]*min:[[:space:]]*['\\\"]?\" modules/blox/hugo.yaml | head -n1 | sed -E \"s/.*min:[[:space:]]*['\\\"]?([^'\\\"#]+).*/\\\\1/\")\n                  if [ -z \"$VERSION\" ]; then\n                    echo \"::error::Could not read module.hugoVersion.min from modules/blox/hugo.yaml\"\n                    exit 1\n                  fi\n                  echo \"version=$VERSION\" >> $GITHUB_OUTPUT\n\n            - name: Cache Hugo resources (test - min)\n              uses: actions/cache@v5\n              with:\n                  path: test/resources/\n                  key: ${{ runner.os }}-hugo-resources-test-min-${{ steps.min.outputs.version }}-${{ hashFiles('test/assets/**/*', 'test/config.yaml', 'test/package.json') }}\n                  restore-keys: |\n                      ${{ runner.os }}-hugo-resources-test-min-\n\n            - name: Setup Hugo (min)\n              uses: peaceiris/actions-hugo@v3\n              with:\n                  hugo-version: \"${{ steps.min.outputs.version }}\"\n                  extended: true\n\n            - name: Build test site (min)\n              working-directory: test\n              run: hugo --minify --panicOnWarning --templateMetrics --templateMetricsHints\n"
  },
  {
    "path": ".github/workflows/ci-lint.yml",
    "content": "name: CI - Lint\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\n\non:\n  push:\n    branches: [main]\n    paths:\n      - \"modules/**\"\n      - \"test/**\"\n      - \"scripts/**\"\n      - \"package.json\"\n      - \"pnpm-lock.yaml\"\n      - \"biome.json\"\n      - \"vite.config.js\"\n  pull_request:\n    branches: [main]\n    paths:\n      - \"modules/**\"\n      - \"test/**\"\n      - \"scripts/**\"\n      - \"package.json\"\n      - \"pnpm-lock.yaml\"\n      - \"biome.json\"\n      - \"vite.config.js\"\n\npermissions:\n  contents: read\n\nconcurrency:\n  group: lint-${{ github.ref }}\n  cancel-in-progress: true\n\nenv:\n  NODE_VERSION: \"22\"\n\njobs:\n  lint:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - name: Enable Corepack (for pnpm cache)\n        run: corepack enable\n      - uses: actions/setup-node@v6\n        with:\n          node-version: \"${{ env.NODE_VERSION }}\"\n          cache: \"pnpm\"\n      - name: Activate pnpm from root package.json\n        run: pnpm --version\n      - name: Install dependencies\n        run: pnpm install --frozen-lockfile\n      - name: Lint (Biome + Stylelint)\n        run: pnpm run lint\n"
  },
  {
    "path": ".github/workflows/ci-pr-labeler.yml",
    "content": "name: CI - PR Labeler\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\n\non:\n  pull_request_target:\n    types: [opened, synchronize]\n\npermissions:\n  contents: read\n  pull-requests: write\n\njobs:\n  label:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/labeler@v6\n        with:\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n          configuration-path: .github/labeler.yml\n"
  },
  {
    "path": ".github/workflows/codeql.yml",
    "content": "name: Security - CodeQL\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\n\non:\n  schedule:\n    - cron: \"0 3 * * 0\"\n  push:\n    branches: [main]\n    paths:\n      - \"**/*.js\"\n      - \"**/*.jsx\"\n      - \"**/*.ts\"\n      - \"**/*.tsx\"\n      - \"**/*.py\"\n      - \".github/workflows/codeql.yml\"\n  pull_request:\n    branches: [main]\n    paths:\n      - \"**/*.js\"\n      - \"**/*.jsx\"\n      - \"**/*.ts\"\n      - \"**/*.tsx\"\n      - \"**/*.py\"\n\npermissions:\n  actions: read\n  contents: read\n  security-events: write\n\njobs:\n  analyze:\n    name: Analyze (CodeQL)\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v6\n\n      - name: Initialize CodeQL\n        uses: github/codeql-action/init@v4\n        with:\n          languages: \"javascript-typescript,python\"\n\n      - name: Autobuild\n        uses: github/codeql-action/autobuild@v4\n\n      - name: Perform CodeQL Analysis\n        uses: github/codeql-action/analyze@v4\n        with:\n          category: \"/language:javascript-typescript\"\n"
  },
  {
    "path": ".github/workflows/community-welcome.yml",
    "content": "name: Community - Welcome New Contributor\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\n\non:\n    pull_request_target:\n        types:\n            - opened\n    issues:\n        types:\n            - opened\n\npermissions:\n    contents: read\n    issues: write\n    pull-requests: write\n\njobs:\n    greeting:\n        runs-on: ubuntu-latest\n        steps:\n            - uses: actions/first-interaction@v3\n              with:\n                  repo_token: ${{ secrets.GITHUB_TOKEN }}\n                  issue_message: >\n                      Hey, thanks for your first issue! 🚀 Your feedback is vital for improving the project for everyone.\n\n\n                      Feeling empowered? Squashing this bug yourself could be a great first open-source contribution! We're here to help you. Here's our [Contributor Guide](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md).\n\n\n                      Let's connect on [Discord](https://discord.gg/z8wNYzb) to chat about it. We've got a super helpful community!\n                  pr_message: >\n                      Wow, your first PR! Welcome to the community! 🎉\n\n\n                      Thank you for this contribution to open source and open research. It makes a huge impact for the thousands of innovators building with Hugo Blox.\n\n\n                      If you're wondering about next steps, please read our [Contributor Guide](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md) for coding standards, how to run the project locally, and how to get help.\n\n\n                      We hope this is just the start of your journey with us. Let's build the future together! Join us on [Discord](https://discord.gg/z8wNYzb) to connect with the team and community.\n\n\n                      Awesome work, we'll take a look soon! ✨\n"
  },
  {
    "path": ".github/workflows/devcontainer-image.yml",
    "content": "name: Build HugoBlox devcontainer image\n\non:\n  push:\n    branches: [main]\n    paths:\n      - \".devcontainer/base.Dockerfile\"\n      - \".github/workflows/devcontainer-image.yml\"\n  workflow_dispatch:\n    inputs:\n      hugo_versions:\n        description: \"Comma-separated Hugo versions to build (e.g. 0.152.2,0.154.0)\"\n        required: false\n\nenv:\n  IMAGE_NAME: ghcr.io/hugoblox/hugo-blox-dev\n  DEFAULT_HUGO_VERSION: 0.152.2\n  NODE_VERSION: 20\n  PNPM_VERSION: 10.14.0\n\njobs:\n  prepare-matrix:\n    runs-on: ubuntu-latest\n    outputs:\n      versions: ${{ steps.versions.outputs.matrix }}\n    steps:\n      - name: Select Hugo versions\n        id: versions\n        env:\n          VERSIONS: ${{ github.event.inputs.hugo_versions || env.DEFAULT_HUGO_VERSION }}\n        run: |\n          MATRIX=$(python - <<'PY'\n          import os, json\n          versions = [v.strip() for v in os.environ[\"VERSIONS\"].split(\",\") if v.strip()]\n          print(json.dumps(versions))\n          PY\n          )\n          echo \"matrix=${MATRIX}\" >> \"$GITHUB_OUTPUT\"\n\n  build-and-push:\n    needs: prepare-matrix\n    runs-on: ubuntu-latest\n    permissions:\n      contents: read\n      packages: write\n    strategy:\n      fail-fast: false\n      matrix:\n        hugo: ${{ fromJson(needs.prepare-matrix.outputs.versions) }}\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v6\n\n      - name: Log in to GHCR\n        uses: docker/login-action@v4\n        with:\n          registry: ghcr.io\n          username: ${{ github.actor }}\n          password: ${{ secrets.GITHUB_TOKEN }}\n\n      - name: Compute tags\n        id: tags\n        env:\n          HUGO_VERSION: ${{ matrix.hugo }}\n        run: |\n          TAGS=\"${IMAGE_NAME}:hugo${HUGO_VERSION}\"\n          if [ \"${HUGO_VERSION}\" = \"${DEFAULT_HUGO_VERSION}\" ]; then\n            TAGS=\"${TAGS}\\n${IMAGE_NAME}:latest\"\n          fi\n          {\n            echo \"list<<EOF\"\n            printf \"%b\\n\" \"$TAGS\"\n            echo \"EOF\"\n          } >> \"$GITHUB_OUTPUT\"\n\n      - name: Build and push image\n        uses: docker/build-push-action@v7\n        with:\n          context: .\n          file: .devcontainer/base.Dockerfile\n          push: true\n          build-args: |\n            HUGO_VERSION=${{ matrix.hugo }}\n            NODE_VERSION=${{ env.NODE_VERSION }}\n            PNPM_VERSION=${{ env.PNPM_VERSION }}\n          tags: ${{ steps.tags.outputs.list }}\n"
  },
  {
    "path": ".github/workflows/maintenance-stale.yml",
    "content": "name: \"Maintenance - Close Stale Issues and PRs\"\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\non:\n  schedule:\n    - cron: \"30 1 * * *\"\n\npermissions:\n  contents: write # only for delete-branch option\n  issues: write\n  pull-requests: write\n\njobs:\n  stale:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/stale@v10\n        with:\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n          stale-issue-message: |\n            This issue is stale because it has not had any recent activity. The resources of the project maintainers are limited, and so we are asking for your help.\n\n            If this is a **bug** and you can still reproduce this error on the <code>main</code> branch, consider contributing a Pull Request with a fix.\n\n            If this is a **feature request**, and you feel that it is still relevant and valuable, consider contributing a Pull Request for review.\n\n            This issue will automatically close soon if no further activity occurs. Thank you for your contributions.\n          stale-pr-message: |\n            This PR is stale because it has not had any recent activity. The resources of the project maintainers are limited, and so we are asking for your help.\n\n            If you feel that the PR is still relevant in the latest release, consider making the PR easier to review and finding developers to help review the PR.\n\n            Please be _mindful_ that although we encourage PRs, we cannot expand the scope of the project in every possible direction. There will be requests that don't make the roadmap.\n\n            This PR will automatically close soon if no further activity occurs. Thank you for your contributions.\n          days-before-stale: 30\n          days-before-close: 5\n          stale-issue-label: stale\n          stale-pr-label: stale\n          exempt-issue-labels: \"keep,enhancement,bug,documentation\"\n          exempt-pr-labels: \"keep,enhancement,bug,documentation\"\n"
  },
  {
    "path": ".github/workflows/release-hugoblox-modules.yml",
    "content": "name: Release - HugoBlox Modules\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\n\non:\n    workflow_dispatch:\n        inputs:\n            dry_run:\n                description: \"Run without committing/tagging\"\n                type: boolean\n                default: true\n            propagate:\n                description: \"Propagate dependency bumps to dependents\"\n                type: boolean\n                default: true\n            update_templates_to_commits:\n                description: \"Update templates to use latest module commits instead of tagged versions\"\n                type: boolean\n                default: false\n\npermissions:\n    contents: write\n\nconcurrency:\n    group: release-modules\n    cancel-in-progress: false\n\njobs:\n    release:\n        runs-on: ubuntu-latest\n        env:\n            LOG_LEVEL: INFO\n        steps:\n            - name: Checkout\n              uses: actions/checkout@v6\n              with:\n                  fetch-depth: 0\n\n            - name: Set up Python\n              uses: actions/setup-python@v6\n              with:\n                  python-version: \"3.13\"\n\n            - name: Install Poetry\n              uses: snok/install-poetry@v1\n              with:\n                  version: 1.8.3\n                  virtualenvs-create: true\n                  virtualenvs-in-project: true\n\n            - name: Install dependencies\n              run: |\n                  poetry --version\n                  poetry install --no-interaction --no-ansi\n\n            - name: Configure Git identity\n              run: |\n                  git config user.name \"github-actions[bot]\"\n                  git config user.email \"41898282+github-actions[bot]@users.noreply.github.com\"\n\n            # Skip plan display when updating templates to commits as it's not relevant for that operation\n            - name: Show plan (dry run)\n              if: ${{ inputs.dry_run && !inputs.update_templates_to_commits }}\n              run: |\n                  poetry run python scripts/release_modules.py --print-plan --log-level $LOG_LEVEL\n\n            # Dedicated step for updating templates to use latest commits instead of tagged versions\n            # Only runs when specifically requested and not in dry run mode\n            - name: Update templates to commits\n              if: ${{ inputs.update_templates_to_commits && !inputs.dry_run }}\n              run: |\n                  poetry run python scripts/release_modules.py --yes --update-starters-to-commits --log-level $LOG_LEVEL\n\n            # Standard release process - only runs when not in dry run mode and not updating templates to commits\n            # These operations are mutually exclusive - we either do a normal release or update starters to commits\n            - name: Release (commit, tag, push)\n              if: ${{ !inputs.dry_run && !inputs.update_templates_to_commits }}\n              run: |\n                  if [ \"${{ inputs.propagate }}\" = \"true\" ]; then\n                    poetry run python scripts/release_modules.py --yes --propagate --log-level $LOG_LEVEL\n                  else\n                    poetry run python scripts/release_modules.py --yes --no-propagate --log-level $LOG_LEVEL\n                  fi\n"
  },
  {
    "path": ".github/workflows/release-package-splitter.yml",
    "content": "name: \"Release - Package Splitter\"\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\n\non:\n    push:\n        branches:\n            - main\n    workflow_dispatch:\n        inputs:\n            force_all:\n                description: \"Force split/push of all template repos, even if no changes detected\"\n                required: false\n                type: boolean\n                default: false\n    # IMPORTANT: workflows below must match the upstream workflow's `name:` exactly\n    workflow_run:\n        workflows:\n            - Release - HugoBlox Modules\n        types:\n            - completed\n\nenv:\n    GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}\n\njobs:\n    determine_changed:\n        runs-on: ubuntu-latest\n        outputs:\n            matrix: ${{ steps.set-matrix.outputs.matrix }}\n            has_changes: ${{ steps.set-matrix.outputs.has_changes }}\n\n        steps:\n            - uses: actions/checkout@v6\n              with:\n                  fetch-depth: 0\n\n            - id: changed\n              # Only run change detection for push events\n              if: ${{ github.event_name == 'push' }}\n              uses: tj-actions/changed-files@v47\n              with:\n                  files: |\n                      templates/academic-cv/**\n                      templates/resume/**\n                      templates/blog/**\n                      templates/documentation/**\n                      templates/link-in-bio/**\n                      templates/landing-page/**\n                      templates/dev-portfolio/**\n                      templates/markdown-slides/**\n                  dir_names: true\n                  dir_names_max_depth: 2\n                  dir_names_exclude_current_dir: true\n\n            # Build dynamic matrix\n            - name: Build dynamic matrix\n              id: set-matrix\n              env:\n                  CHANGED_DIRS: ${{ steps.changed.outputs.dir_names || '' }}\n                  FORCE_ALL: ${{ github.event.inputs.force_all || 'false' }}\n              run: |\n                  # Define the full mapping\n                  declare -A STARTER_MAP=(\n                    [\"templates/academic-cv\"]=\"hugo-theme-academic-cv\"\n                    [\"templates/resume\"]=\"hugo-theme-resume\"\n                    [\"templates/data-science-blog\"]=\"hugo-theme-data-science-blog\"\n                    [\"templates/documentation\"]=\"hugo-theme-documentation\"\n                    [\"templates/link-in-bio\"]=\"hugo-theme-link-in-bio\"\n                    [\"templates/startup-landing-page\"]=\"hugo-theme-startup-landing-page\"\n                    [\"templates/dev-portfolio\"]=\"hugo-theme-developer-portfolio\"\n                    [\"templates/markdown-slides\"]=\"hugo-theme-markdown-slides\"\n                  )\n\n                  build_full_matrix() {\n                    local JSON=\"[\" FIRST=true\n                    local ROOTS=()\n\n                    # Sort keys to keep output stable across runs\n                    readarray -t ROOTS < <(printf \"%s\\n\" \"${!STARTER_MAP[@]}\" | sort)\n\n                    for ROOT in \"${ROOTS[@]}\"; do\n                      if [ \"$FIRST\" = true ]; then\n                        FIRST=false\n                      else\n                        JSON+=\",\"\n                      fi\n                      JSON+=\"{\\\"local_path\\\":\\\"$ROOT\\\",\\\"split_repository\\\":\\\"${STARTER_MAP[$ROOT]}\\\"}\"\n                    done\n\n                    JSON+=\"]\"\n                    echo \"$JSON\"\n                  }\n\n                  # Manual override to force splitting all templates\n                  if [ \"$FORCE_ALL\" = \"true\" ]; then\n                    echo \"Force mode enabled; splitting all templates\"\n                    FULL_MATRIX=$(build_full_matrix)\n                    echo \"matrix=$FULL_MATRIX\" >> \"$GITHUB_OUTPUT\"\n                    echo \"has_changes=true\" >> \"$GITHUB_OUTPUT\"\n                    exit 0\n                  fi\n\n                  # For non-push events, always use full matrix derived from the map above\n                  if [ \"${{ github.event_name }}\" != \"push\" ]; then\n                    echo \"Using full matrix for ${{ github.event_name }} event\"\n                    FULL_MATRIX=$(build_full_matrix)\n                    echo \"matrix=$FULL_MATRIX\" >> \"$GITHUB_OUTPUT\"\n                    echo \"has_changes=true\" >> \"$GITHUB_OUTPUT\"\n                    exit 0\n                  fi\n\n                  echo \"Detected template directories: $CHANGED_DIRS\"\n\n                  # If no changes, set empty matrix\n                  if [ -z \"$CHANGED_DIRS\" ]; then\n                    echo \"No templates changed\"\n                    echo \"matrix=[]\" >> \"$GITHUB_OUTPUT\"\n                    echo \"has_changes=false\" >> \"$GITHUB_OUTPUT\"\n                    exit 0\n                  fi\n\n                  # Build JSON array for changed templates\n                  JSON=\"[\"\n                  FIRST=true\n                  # tj-actions outputs space-separated list\n                  for DIR in $CHANGED_DIRS; do\n                    # Normalize potential trailing slash\n                    DIR=\"${DIR%/}\"\n\n                    # Collapse to the template root (first two path segments), e.g. templates/landing-page\n                    IFS='/' read -r SEG1 SEG2 _ <<< \"$DIR\"\n                    if [[ -n \"$SEG1\" && -n \"$SEG2\" ]]; then\n                      ROOT=\"$SEG1/$SEG2\"\n                    else\n                      ROOT=\"$DIR\"\n                    fi\n\n                    # Only process if it's a known starter\n                    if [[ -n \"${STARTER_MAP[$ROOT]}\" ]]; then\n                      if [ \"$FIRST\" = true ]; then\n                        FIRST=false\n                      else\n                        JSON+=\",\"\n                      fi\n                      JSON+=\"{\\\"local_path\\\":\\\"$ROOT\\\",\\\"split_repository\\\":\\\"${STARTER_MAP[$ROOT]}\\\"}\"\n                    fi\n                  done\n                  JSON+=\"]\"\n\n                  # Check if we actually added any starters\n                  if [ \"$JSON\" = \"[]\" ]; then\n                    echo \"No valid starters found in changed directories\"\n                    echo \"matrix=[]\" >> \"$GITHUB_OUTPUT\"\n                    echo \"has_changes=false\" >> \"$GITHUB_OUTPUT\"\n                  else\n                    echo \"matrix=$JSON\" >> \"$GITHUB_OUTPUT\"\n                    echo \"has_changes=true\" >> \"$GITHUB_OUTPUT\"\n                  fi\n\n    packages_split:\n        needs: determine_changed\n        # Run when:\n        #  • Event is not workflow_run OR upstream workflow succeeded.\n        #  • Event is not push OR at least one starter changed.\n        if: ${{ (github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success') && needs.determine_changed.outputs.has_changes == 'true' }}\n\n        runs-on: ubuntu-latest\n\n        strategy:\n            fail-fast: false\n            matrix:\n                package: ${{ fromJson(needs.determine_changed.outputs.matrix) }}\n\n        steps:\n            - uses: actions/checkout@v6\n              with:\n                  fetch-depth: 0\n\n            # step if no tag is pushed\n            - if: ${{ !startsWith(github.ref, 'refs/tags/') }}\n              uses: \"symplify/monorepo-split-github-action@v2.4.4\"\n              with:\n                  package_directory: \"${{ matrix.package.local_path }}\"\n                  repository_organization: \"HugoBlox\"\n                  repository_name: \"${{ matrix.package.split_repository }}\"\n                  user_name: \"Splitter Bot\"\n                  user_email: \"no.reply@hugoblox.com\"\n"
  },
  {
    "path": ".github/workflows/security-codeql.yml",
    "content": "name: Security - CodeQL\nrun-name: ${{ github.workflow }} - ${{ github.ref_name }}\n\non:\n  schedule:\n    - cron: \"0 3 * * 0\"\n  push:\n    branches: [main]\n    paths:\n      - \"**/*.js\"\n      - \"**/*.jsx\"\n      - \"**/*.ts\"\n      - \"**/*.tsx\"\n      - \"**/*.py\"\n      - \".github/workflows/codeql.yml\"\n  pull_request:\n    branches: [main]\n    paths:\n      - \"**/*.js\"\n      - \"**/*.jsx\"\n      - \"**/*.ts\"\n      - \"**/*.tsx\"\n      - \"**/*.py\"\n\npermissions:\n  actions: read\n  contents: read\n  security-events: write\n\njobs:\n  analyze:\n    name: Analyze (CodeQL)\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v6\n\n      - name: Initialize CodeQL\n        uses: github/codeql-action/init@v4\n        with:\n          languages: \"javascript-typescript,python\"\n\n      - name: Autobuild\n        uses: github/codeql-action/autobuild@v4\n\n      - name: Perform CodeQL Analysis\n        uses: github/codeql-action/analyze@v4\n        with:\n          category: \"/language:javascript-typescript\"\n"
  },
  {
    "path": ".gitignore",
    "content": "# ============================================================================\n# HugoBlox Kit - Monorepo .gitignore\n# ============================================================================\n\n# ============================================================================\n# Build Artifacts & Generated Files\n# ============================================================================\n\n# Hugo build artifacts\npublic/\nresources/\n.hugo_build.lock\nhugo_stats.json\n\n# Go modules\ngo.sum\n\n# Node.js\nnode_modules/\n\n# Pagefind search index (generated at build time)\n**/pagefind/\n\n# JSConfig files (auto-generated by Hugo)\n**/assets/jsconfig.json\n\n# pnpm lock files in starters (keep template clean)\nstarters/**/pnpm-lock.yaml\n\n# ============================================================================\n# Development Environment\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# IDE & Editor files\n.idea/\n/.vscode/\n.specstory/\n/docs/\n\n# ============================================================================\n# Language & Framework Specific\n# ============================================================================\n\n# Python (for scripts)\n__pycache__/\n*.py[cod]\n*$py.class\n.pytest_cache/\n*.egg-info/\n\n# Jupyter Notebooks\n.ipynb_checkpoints/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n.Spotlight-V100\n.Trashes\n\n# Windows\nThumbs.db\nehthumbs.db\nDesktop.ini\n\n# Linux\n*~\n.nfs*\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n# Log files\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n\n# Runtime data\npids\n*.pid\n*.seed\n*.pid.lock\n\n# Temporary directories\ntmp/\ntemp/\n.tmp/\nbackups/\n"
  },
  {
    "path": ".prettierignore",
    "content": "# Vendor directories\n_vendor/\nvendor/\n\n# Generated directories\npublic/\nresources/\nnode_modules/\n\n# We use go-template parser for HTML, but still ignore some specific files\nmodules/blox-tailwind/assets/dist/\n\n# JSON files with specific formats (although typically Biome now processes JSON)\nmodules/blox-tailwind/layouts/index.json\nmodules/blox-tailwind/layouts/index.webmanifest\n"
  },
  {
    "path": ".prettierrc.js",
    "content": "module.exports = {\n  bracketSpacing: false,\n  singleQuote: false,\n  jsxBracketSameLine: true,\n  trailingComma: \"all\",\n  printWidth: 150,\n  overrides: [\n    {\n      files: [\"*.html\"],\n      options: {\n        parser: \"go-template\",\n      },\n    },\n    {\n      files: [\"*.md\"],\n      options: {\n        proseWrap: \"preserve\",\n      },\n    },\n  ],\n};\n"
  },
  {
    "path": ".stylelintignore",
    "content": "**/public/**\n**/dist/**\n**/libs/**\nmodules/blox-tailwind/assets/css/color-utilities.css\nstarters/**/static/**\n"
  },
  {
    "path": "CITATION.cff",
    "content": "cff-version: 1.2.0\nmessage: \"If you use HugoBlox in your work, please cite it as below.\"\ntype: software\n\ntitle: \"HugoBlox\"\nabstract: >\n  HugoBlox is an open-source ecosystem for building high-performance research portfolios, \n  lab websites, and technical documentation. Designed for data sovereignty, it enables \n  data scientists and researchers to publish reproducible content directly from Markdown, \n  Jupyter Notebooks, and BibTeX, eliminating the need for complex JavaScript dependencies \n  or proprietary AI platforms.\n\nauthors:\n  - family-names: \"Cushen\"\n    given-names: \"George\"\n    orcid: \"https://orcid.org/0000-0003-0526-3793\"\n\nlicense: \"MIT\"\nrepository-code: \"https://github.com/HugoBlox/kit\"\nurl: \"https://hugoblox.com\"\ndoi: 10.5281/zenodo.17704062\n\n# Use the latest released version here\nversion: \"0.11.0\"\ndate-released: 2026-01-02\n\nkeywords:\n  - hugo\n  - copilot\n  - ai\n  - static-site-generator\n  - website-builder\n  - markdown\n  - academic-websites\n  - documentation\n  - blog\n  - portfolio\n  - research\n  - academic\n  - open-source\n  - no-code  \n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to Hugo Blox 🚀\n\n> **Welcome, researchers and academics!** Whether you're a professor sharing your publications, a PhD student building your first portfolio, or an AI researcher showcasing your work — this guide will help you contribute to the tool that powers 100,000s of researcher and lab websites worldwide.\n\n[![All Access](https://img.shields.io/badge/Support-All%20Access-2ea44f?logo=heart)](https://hugoblox.com/all-access)\n[![GitHub Sponsors](https://img.shields.io/badge/Sponsor-GitHub%20Sponsors-ea4aaa?logo=github)](https://github.com/sponsors/gcushen)\n[![Star us](https://img.shields.io/github/stars/HugoBlox/kit?style=social)](https://github.com/HugoBlox/kit)\n[![Discord](https://img.shields.io/discord/722225264733716590?logo=discord)](https://discord.gg/z8wNYzb)\n\n## ❤️ Love Hugo Blox? Help keep it thriving.\n\n> If Hugo Blox has saved you hours, taught you something, or helped you share your work, please take 2 minutes to give back. Most people won't — but if a small part of the community pitches in today, we can ship faster, fix more bugs, and keep the project healthy for everyone.\n\nWe want contributing to Hugo Blox to be fun, enjoyable, and educational for anyone and everyone. All contributions are welcome, including new plugins (such as new widgets, shortcodes, theme packs, and language packs), templates, features, documentation as well as updates and tweaks, blog posts, YouTube tutorials, live streaming customizations, meetups, and more.\n\n## 🎯 Why Contribute?\n\n### For Your Career\n\n- **📝 Add to your CV**: Open source contributions demonstrate technical skills and collaboration\n- **🌍 Build your reputation**: Your contributions are publicly visible and credited\n- **🤝 Network with peers**: Connect with researchers and developers worldwide\n- **📚 Learn modern web tech**: Gain experience with Hugo, Tailwind CSS, and modern web development\n\n### For the Community\n\n- **🔬 Shape the tool you use**: Directly influence features that matter to academics\n- **⚡ Get fixes faster**: Contributing means your needs get addressed sooner\n- **🌱 Support open research**: Keep academic tools free and accessible to all\n- **🏆 Join 9k+ stars**: Be part of a thriving academic community\n\n## 🚀 Quick Wins (Pick One!)\n\n### ⏱️ 30 Seconds\n\n- **⭐ Star the repository**: [github.com/HugoBlox/kit](https://github.com/HugoBlox/kit)\n- **👍 Vote on issues**: Shape the roadmap by [upvoting features](https://github.com/HugoBlox/kit/issues) you need\n- **💡 Suggest an enhancement**: Have an idea? [Create a GitHub Issue](https://github.com/HugoBlox/kit/issues) for the community to vote on\n- **📢 Share your site**: Post your Hugo Blox site on X/LinkedIn/Reddit with #HugoBlox\n\n### 🕐 5-10 Minutes\n\n- **📸 Share a screenshot**: Show your beautiful site in [Discussions](https://github.com/HugoBlox/kit/discussions)\n- **🐛 Report issues clearly**: Found a bug? Help us fix it with clear steps to reproduce\n- **💬 Help in Discord**: Answer a question in our [Discord community](https://discord.gg/z8wNYzb)\n- **✏️ Fix documentation typos**: Spot an error? Fix it directly on GitHub (no setup needed!)\n\n### 🕓 ~1 Hour\n\n- **🔧 Implement a small issue**: See [help-wanted issues](https://github.com/HugoBlox/kit/labels/help%20wanted)\n- **📚 Write documentation**: Help keep the documentation complete and up-to-date\n\n### 🕘 A Few Hours\n\n- **🧩 Take a larger issue**: Contribute a significant feature or improvement\n- **🎥 Create tutorials**: Record a YouTube video or write a detailed blog post\n\n## Where to Start\n\nJoin the **Contributing** channel on the **[community Discord](https://discord.gg/z8wNYzb)**.\n\n## General ways to help\n\nWhether or not you're a developer, there are plenty of non-technical ways that you can help. We always need help with:\n\n- Helping the Hugo Blox community via the live [chat](https://discord.gg/z8wNYzb) and [forum](https://github.com/HugoBlox/kit/discussions)\n- Investigating and reviewing open [Issues](https://github.com/HugoBlox/kit/issues) and [Pull Requests](https://github.com/HugoBlox/kit/pulls)\n  - Influence the roadmap! Give a thumbs up 👍 to upvote a feature request you would like to use\n- Improving the [documentation](https://docs.hugoblox.com/) and writing tutorials\n  - Just click the _Edit_ button at the bottom of pages or open an issue with your proposed improvement\n- Testing and quality assurance, such as checking the latest version of the templates work as you expect and fixing any dead-links etc.\n- Translating the Hugo Blox templates or the Hugo Blox documentation\n- Hosting local Hugo Blox themed events or meetups\n- Promoting Hugo Blox to others by blogging, vlogging, code streaming, talking etc.\n\n### For technical contributions\n\n## 🛠️ Development Setup\n\n> **No Go experience needed!** Most contributions only require basic HTML/CSS knowledge.\n\n### Prerequisites\n\n1. **Install Node.js** (for Tailwind CSS v4)\n\n   ```bash\n   # macOS/Linux (using Homebrew)\n   brew install node\n\n   # Windows (download from nodejs.org)\n   # Or use WSL2 for a Linux environment\n   ```\n\n2. **Install pnpm** (our package manager)\n\n   ```bash\n   npm install -g pnpm\n   ```\n\n3. **Install Hugo Extended** (latest version)\n\n   ```bash\n   # macOS\n   brew install hugo\n\n   # Windows (using Chocolatey)\n   choco install hugo-extended\n\n   # Linux\n   snap install hugo --channel=extended\n   ```\n\n### Getting Started\n\n1. **Fork & Clone**\n\n   ```bash\n   # Fork on GitHub first, then:\n   git clone https://github.com/YOUR-USERNAME/kit.git\n   cd kit\n   ```\n\n2. **Install Dependencies**\n\n   ```bash\n   pnpm install\n   ```\n\n3. **View a Starter Site**\n\n   ```bash\n   # View the academic-cv starter (most popular)\n   ./scripts/view-starter-dev.sh academic-cv\n\n   # Site opens at http://localhost:8081\n   ```\n\nThat's it! You're ready to contribute. 🎉\n\n### Repository structure\n\n```\nkit/\n├── modules/\n│   └── blox/               # Main theme module\n│       ├── layouts/        # HTML templates (easy to edit!)\n│       ├── assets/css/     # Tailwind CSS v4 styles\n│       └── i18n/           # Translations (help translate!)\n├── templates/\n│   ├── academic-cv/        # CV/Resume template\n│   ├── blog/               # Blog template\n│   └── documentation/      # Docs template\n└── scripts/                # Helper scripts\n```\n\n**Note**: To contribute an improvement to a template, make your changes to the relevant template within the `templates/` folder. **Do not submit PRs to the dedicated template repositories as they are read-only (changes are automatically propagated there from this mono-repository).**\n\n#### What are some good issues to contribute to?\n\nIf you're a developer looking to contribute, but you're not sure where to begin, check out the [help wanted](https://github.com/HugoBlox/kit/labels/help%20wanted) label on Github, which contains issues which need some love.\n\n#### How can I propose an improvement?\n\nIf you have a straightforward bug fix or improvement, feel free to contribute it in a [Pull Request](https://github.com/HugoBlox/kit/pulls) for the community to review.\n\nIf you have an idea for a new feature, please start by [searching the issues](https://github.com/HugoBlox/kit/issues) to check that the feature has not already been suggested and then suggest it by [opening a new issue](https://github.com/HugoBlox/kit/issues/new/choose), as adding new features to Hugo Blox first requires some analysis around the design and spec.\n\nPlease be mindful of the project [scope](#scope).\n\n### Contribute Blox\n\n[Create and publish your own blox](https://github.com/HugoBlox/create-blox)\n\n### Contribute a shortcode\n\n[Create and publish your own shortcode](https://github.com/HugoBlox/create-shortcode)\n\n### Contribute a language pack\n\nTo contribute a **new language pack** or an improvement to a language pack, refer to the [language pack guide](https://docs.hugoblox.com/reference/language/#create-or-modify-a-language-pack). Once created, [fork HugoBlox Kit](https://github.com/HugoBlox/kit), place your language pack in `modules/blox/i18n/`, add the language metadata to `modules/blox/data/languages.yaml`, and open a Pull Request on Github with these two files.\n\n### Contribute a theme pack\n\n[View the guide](https://docs.hugoblox.com/getting-started/customize/#appearance) to contributing a color and font theme pack.\n\n### Contribute a template\n\nConsider duplicating a bare-bones template, such as the [Link In Bio](https://github.com/HugoBlox/kit/tree/main/templates/link-in-bio) folder, and building up your own template using the Hugo Blox. Reach out on the **Contributing** channel in Discord to submit your template.\n\n### Contribute to the Publication importer\n\nTo contribute to **Hugo Academic CLI**, the automatic publication and blog post importer, refer to [its dedicated Github repository](https://github.com/GetRD/academic-file-converter) and Issue queue.\n\n## 🤝 Getting Help\n\n### Where to Ask Questions\n\n- **🗣️ Discord**: Real-time chat in [#contributing channel](https://discord.gg/z8wNYzb)\n- **💬 Discussions**: Async help in [GitHub Discussions](https://github.com/HugoBlox/kit/discussions)\n- **🐛 Issues**: Bug reports and feature requests\n\n### Tips for Getting Quick Help\n\n1. **Share your environment**: Hugo version, HugoBlox version in `go.mod`, OS, browser\n2. **Provide minimal reproduction**: Smallest example showing the issue\n3. **Check existing issues**: Your question might be answered\n4. **Be specific**: \"Publications not showing\" → \"BibTeX import fails with DOI links\"\n\n## 🏆 Recognition & Rewards\n\n### How We Thank Contributors\n\n- **🎖️ Credits**: Named in release notes\n- **🏷️ Contributor badge**: On your GitHub profile\n- **📣 Social shoutouts**: Featured on our social media\n- **🎯 Direct impact**: Your needs prioritized\n- **🤝 Network access**: Connect with core team\n\n### Hall of Fame\n\nCheck our [Contributors page](https://github.com/HugoBlox/kit/graphs/contributors) to see everyone who's helped!\n\n## 💚 Can't Contribute Code? Support the Project!\n\n### Other Ways to Help\n\n- **💰 Sponsor**:\n  - [All Access](https://hugoblox.com/all-access) - One-time payment for exclusive Pro templates and blocks\n  - [GitHub Sponsors](https://github.com/sponsors/gcushen) - Monthly donation to support open source development\n  - ☕️ [Donate a coffee](https://github.com/sponsors/gcushen?frequency=one-time)\n- **📢 Spread the Word**: Share your Hugo Blox site and experience\n- **📝 Write Tutorials**: Blog about your Hugo Blox setup\n- **🎥 Create Videos**: YouTube tutorials help many researchers\n- **🌍 Translate**: Help make Hugo Blox accessible globally\n\n## Best practices\n\nTo create a consistent experience for all contributors and help prevent bugs, we have some best practices.\n\n### Conventional Commits Specification\n\nPlease follow the [Conventional Commits Specification](https://www.conventionalcommits.org/en/v1.0.0/).\n\nFor example:\n\n- new feature: `feat: add the X parameter`\n- bug fix: `fix: typo in implementation of X parameter`\n- performance: `perf: speed up init by pre-warming only pages`\n- refactor: `refactor: simplify citation logic`\n- docs: `docs: document the X parameter`\n- style: `style: change font color from black to blue`\n- build-related: `chore: rebuild JS assets`\n\n### Linting and formatting\n\n```sh\npnpm install\npnpm run lint\npnpm run format\n```\n\n## Scope\n\nPlease be _mindful_ that although we encourage feature requests, we cannot expand the scope of the project in every possible direction. There will be feature requests that don't make the roadmap.\n\nEvery feature requires effort not just to analyse the requirements, design it, implement it, test it, document it, merge it, write release notes for it, and release it, but also to continuously support users with it and maintain it (fixing and refactoring the feature as the project and its dependencies evolve).\n\nThe more regular active volunteers (rather than one-off contributors) we have supporting users and maintaining the project, the more feasible it becomes to expand the scope of the project.\n\nThe project's scope also has to be constrained so that it doesn't get too complex and unwieldy, from an architectural perspective, a testing perspective, and from a usability perspective.\n\nPlugins (widgets, shortcodes, theme packs, language packs, and third-party JavaScript integrations) as well as templates allow the community to add major features without needing to contribute to Hugo Blox itself.\n\n## 📋 Contribution Checklist\n\nBefore submitting a PR:\n\n- [ ] **Test locally**: Run `./scripts/view-starter-dev.sh academic-cv`\n- [ ] **Check formatting**: Run `pnpm run lint:js` (if you edited JS)\n- [ ] **Update docs**: If adding features, document them in the code and in the PR\n- [ ] **Add examples**: Show how to use new features\n- [ ] **Write clear commit messages**: Help future contributors understand changes\n\n## 🙏 Thank You!\n\nEvery contribution matters — whether it's fixing a typo, adding a translation, or building a new feature. You're helping thousands of researchers share their work with the world.\n\n**Welcome to the Hugo Blox community!** 🎉\n\n---\n\n_Questions? Join our [Discord](https://discord.gg/z8wNYzb) or start a [Discussion](https://github.com/HugoBlox/kit/discussions)._ \n\n_This project follows the [Contributor Covenant Code of Conduct](.github/CODE_OF_CONDUCT.md)._ \n\n## ⚖️ Our Contributor License Agreement (CLA)\n\n### Why We Have a CLA\n\nA Contributor License Agreement (CLA) is a standard best practice in professional open-source. It's a simple agreement that protects you (our contributor), our users, and the Hugo Blox project itself.\n\n- It protects you: the CLA clarifies that you are entitled to contribute the code and that your contribution is provided \"as is,\" without any warranty.\n- It protects the project: it grants us the permanent legal rights needed to use your contribution as part of the project and defend the project from legal challenges.\n- It enables our future: having a proper CLA allows us to confidently continue to enhance and support the Hugo Blox ecosystem.\n\nThis agreement doesn't change your ownership of your code; it simply grants us a clear license to use it as part of Hugo Blox.\n\n### Your Agreement\n\nBy submitting a Pull Request to this repository, you agree to our [Contributor License Agreement (CLA)](.github/CLA.md). Please ensure you have read and understood it.\n"
  },
  {
    "path": "LICENSE.md",
    "content": "The MIT License (MIT)\n\nCopyright © 2016-Present [**Lore Labs**](https://lore.tech).\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject 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, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "[**中文**](./README.zh.md)\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/start?utm_source=github&utm_medium=readme&utm_content=hero_image\">\n    <img src=\"./.github/media/hero.png\" alt=\"Build world-class sites with HugoBlox\" width=\"100%\">\n  </a>\n</p>\n\n<h1 align=\"center\">HugoBlox: Your Open Publishing Stack</h1>\n\n<p align=\"center\">\n  <strong>Publish notebooks, docs, portfolios, and knowledge bases from Markdown + Jupyter.</strong><br/>\n  Built for data scientists, AI engineers, researchers, labs, and tech startups who want speed without lock-in: Hugo + Tailwind with optional Researcher Plan automation (visual editing, imports, fixes, and upgrades).\n</p>\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/start?utm_source=github&utm_medium=readme&utm_content=cta_start\"><b>Start Free in Browser</b></a>\n  &nbsp;•&nbsp;\n  <a href=\"https://marketplace.visualstudio.com/items?itemName=ownable.ownable\"><b>Get HugoBlox Studio (VS Code)</b></a>\n</p>\n\n<p align=\"center\">\n  <sub>\n    <a href=\"#for-researchers--labs\">Researchers & Labs</a>\n    &nbsp;•&nbsp;\n    <a href=\"#for-data-scientists--ai-engineers\">Data Scientists & AI Engineers</a>\n    &nbsp;•&nbsp;\n    <a href=\"#for-teams--orgs\">Teams & Orgs</a>\n    &nbsp;•&nbsp;\n    <a href=\"#plans\">Automations & Plans</a>\n  </sub>\n</p>\n\n<div align=\"center\">\n\n<a href=\"https://discord.gg/z8wNYzb\">\n    <img src=\"https://img.shields.io/discord/722225264733716590?label=Join%20Discord&logo=discord&logoColor=white&style=flat-square&color=5865F2\" alt=\"Discord\">\n  </a>\n  <a href=\"https://github.com/HugoBlox/kit\">\n    <img src=\"https://img.shields.io/github/stars/HugoBlox/kit?label=Star%20HugoBlox&logo=github&logoColor=white&style=flat-square&color=181717\" alt=\"GitHub Stars\">\n  </a>\n  <a href=\"https://x.com/MakeOwnable\">\n    <img src=\"https://img.shields.io/twitter/follow/MakeOwnable?label=Follow&logo=x&logoColor=white&style=flat-square&color=000000\" alt=\"Follow on X\">\n  </a>\n  <a href=\"https://marketplace.visualstudio.com/items?itemName=ownable.ownable\">\n    <img src=\"https://img.shields.io/visual-studio-marketplace/i/ownable.ownable?label=VS%20Code%20Installs&logo=visualstudiocode&logoColor=white&style=flat-square&color=007ACC\" alt=\"VS Code Installs\">\n  </a>\n  <a href=\"https://marketplace.visualstudio.com/items?itemName=ownable.ownable\">\n    <img src=\"https://img.shields.io/visual-studio-marketplace/stars/ownable.ownable?label=VS%20Code%20Rating&logo=visualstudiocode&logoColor=white&style=flat-square&color=007ACC\" alt=\"VS Code Rating\">\n  </a>\n\n</div>\n\n<p align=\"center\">\n  <sub>\n    Trusted since <strong>2016</strong> · <strong>150,000+</strong> researchers and scientists (Meta, Stanford, NVIDIA) · Rated <strong>4.9/5</strong> by users (official survey) · Used by teams like <a href=\"https://research.nvidia.com/research-labs\">NVIDIA Research Labs</a>, <a href=\"https://cai4cai.ml/\">King’s College London</a>, and <a href=\"https://www.metaconscious.org/\">MIT</a> · Featured by GitHub <a href=\"https://github.blog/open-source/release-radar-february-2019/#hugo-academic-4-0\">Release Radar</a>\n  </sub>\n</p>\n\nhttps://github.com/user-attachments/assets/a0be0c48-b8d5-4b40-a11b-85fedcdf89bc\n\n---\n\n## ⚡️ Why teams choose HugoBlox\n\nIn the age of AI, **Markdown is the new source code**. HugoBlox gives you the speed of modern tooling with the durability of a static stack: **Hugo + Tailwind** (with optional Alpine/Svelte blocks for interactivity).\n\n- **Own your content**: clean Markdown, YAML, and notebooks — portable, readable, and LLM-friendly.\n- **Performance without the ops tax**: static output, fast builds, no runtime database.\n- **Beautiful by default**: high-quality templates + blocks (and Researcher Plan options when you want more).\n- **A hybrid workflow**: edit in code, or use a visual editor when you want velocity.\n\n---\n\n## For researchers & labs\n\n- **Lab sites and academic profiles** (people, publications, projects, news)\n- **Citable output** with BibTeX/DOI workflows\n- **Notebooks + LaTeX** for technical writing that actually renders\n\n## For data scientists & AI engineers\n\n- **Project docs** and technical blogs without heavy JavaScript stacks\n- **Notebook-first publishing** (`.ipynb`) for reports, tutorials, and results\n- **Knowledge bases** and internal docs that stay searchable and maintainable\n\n## For teams & orgs\n\n- **Consistent sites** across teams with templates + blocks\n- **Lower risk upgrades** with clear versioning + migration guidance\n- **Support options** when you need fast answers\n\n---\n\n## 🧠 Edit the way you like (code-first, visual when you want it)\n\n- **Code-first**: Markdown/YAML + Hugo templates for full control.\n- **Visual editing (Researcher Plan)**: **HugoBlox Studio** in VS Code for drag-and-drop blocks, previews, and safer config edits.\n- **AI automation (Researcher Plan)**: spend less time on formatting, YAML fixes, imports, and maintenance.\n\n<p align=\"center\">\n  <img src=\"./.github/media/studio/slide-1.webp\" alt=\"HugoBlox Studio in Action\" width=\"100%\">\n</p>\n<p align=\"center\"><em>HugoBlox Studio: Visual editing meets code-first control.</em></p>\n\n---\n\n## 🛠️ The toolkit\n\n| **Feature** | **Why it matters** |\n| :--- | :--- |\n| **HugoBlox Studio (VS Code)** | A visual CMS inside your editor. Drag-and-drop blocks without leaving VS Code. |\n| **Notebooks & LaTeX** | Render `.ipynb` and math-heavy pages natively. |\n| **BibTeX / DOI workflows** | Build publication pages and bibliographies without manual formatting. |\n| **Polyglot Support** | Write in Markdown, Jupyter, RMarkdown, or LaTeX Math. |\n\n<p align=\"center\">\n  <img src=\"./.github/media/templates.webp\" alt=\"Template previews\" width=\"900\">\n</p>\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/templates?utm_source=github&utm_medium=readme&utm_content=templates\"><b>Browse Templates →</b></a>\n</p>\n\n<p align=\"center\">\n  <sub>Want to see it working fast? Pick a template and publish in ~60 seconds with the Online Copilot.</sub><br/>\n  <a href=\"https://hugoblox.com/start?utm_source=github&utm_medium=readme&utm_content=cta_template_start\"><b>Try a template now →</b></a>\n</p>\n\n---\n\n## 🚀 Get Started\n\n### Option 1: The Online Copilot (Fastest)\nIdeal for **founders, labs, and startups**. Launch a site in minutes.\n\n👉 [**Start Free in Browser**](https://hugoblox.com/start?utm_source=github&utm_medium=readme&utm_content=get_started_browser)\n\n### Option 2: HugoBlox Studio (Best for Data/AI teams)\nThe power of a visual website builder, directly inside VS Code.\n\n1. **Install** [HugoBlox Studio from the Marketplace](https://marketplace.visualstudio.com/items?itemName=ownable.ownable).\n2. **Open** any HugoBlox project folder.\n3. **Click** the HugoBlox Studio icon in the menu to start visually editing.\n\n### Option 3: The CLI (For DevOps/Eng)\nScaffold a new project locally.\n\n```bash\n  # Requires Hugo Extended & Node.js\n  npm install -g hugoblox\n  hugoblox create site\n```\n\nNeed guides and best practices? See the docs: [**docs.hugoblox.com**](https://docs.hugoblox.com/?utm_source=github&utm_medium=readme&utm_content=docs)\n\n---\n\n## ✅ Stability & upgrades (because your site should not break)\n\n- **Pin versions** to keep production stable.\n- **Upgrade with confidence** using migration notes and upgrade guides.\n- **Customize safely**: prefer configuration and blocks over fragile template overrides when possible.\n- **Catch config issues early (Researcher Plan)**: visual editing + validation reduces YAML/front matter mistakes.\n\nSee the docs for upgrade guidance: [**docs.hugoblox.com**](https://docs.hugoblox.com/?utm_source=github&utm_medium=readme&utm_content=upgrade_guidance)\n\n<a name=\"plans\"></a>\n## ⚡️ Unlock Automations & Premium\n\nHugoBlox is **Open Core**. The **Free Kit** is production-grade and you will always own your data and code.\n\nThe Free Kit includes:\n\n- **[HugoBlox Studio](https://marketplace.visualstudio.com/items?itemName=ownable.ownable) Core**: Visual site configuration, theming, and content editing\n- **Templates + blocks** for portfolios, labs, docs, and landing pages\n- **Markdown/YAML-first workflow** with Hugo + Tailwind performance\n- **Notebook + LaTeX support** for technical publishing\n- **Community support** via docs, GitHub issues, and Discord\n\n### 🤖 Pro (Automation)\n\nUpgrade to **Pro** for [HugoBlox Studio](https://marketplace.visualstudio.com/items?itemName=ownable.ownable) (requires extension login) when you want automation and lower maintenance overhead:\n\n- **Less time debugging YAML** (Fix-it Bot + safer config editing)\n- **Less time formatting citations** (Magic Import + publication automation)\n- **Less time dealing with upgrades** (guided maintenance workflows)\n- **More velocity** (visual editing + previews in VS Code)\n\n\n| Feature | **Free Kit** (Open Source) | **Pro** (Automation) |\n| :--- | :---: | :---: |\n| **Site Ownership** | ✅ 100% Yours | ✅ 100% Yours |\n| **Visual Page Editor** | ❌ | **✅ Included** |\n| **AI Assistant** | ⏳ Trial | **✅ Included** |\n| **Auto Sync with GitHub** | ❌ | **✅ Included** |\n| **AI \"Fix-It\" Bot** (Auto-fix YAML) | ❌ | **✅ Unlimited** |\n| **Magic Import** (BibTeX/DOI -> Page) | ⏳ Trial | **✅ Unlimited** |\n| **CV Generator** (Site -> PDF Resume) | ❌ | **✅ Included** |\n| **Private Discord** | ❌ | ✅ |\n| **Support Open Research** | 💜 | **🏆 Hero Status** |\n\n👉 [**View Full Feature Matrix**](https://hugoblox.com/pricing?utm_source=github&utm_medium=readme&utm_content=pricing_matrix) &nbsp;•&nbsp; [**Get Pro**](https://hugoblox.com/pricing?utm_source=github&utm_medium=readme&utm_content=cta_pro)\n\n> \"HugoBlox Studio saved me **40+ hours** on my lab site. Visual edits + BibTeX auto-updates = **citations up 3×**.\"\n> <br/>— **Dr. Sarah Yang**, AI Researcher\n\n### 🎨 HugoBlox Premium\n\n**Get the complete kit.** Instant access to premium templates, blocks, and community support to help you launch faster.\n\n| Feature | Open Source | **HugoBlox Premium** |\n| :--- | :---: | :---: |\n| **Core Framework** | ✅ | ✅ |\n| **Premium Templates** (SaaS, Lab) | ❌ | **✅ Included** |\n| **Premium Blocks** | ❌ | **✅ Included** |\n| **Remove Attribution?** | ❌ | **✅ Included** |\n| **Private Discord** | ❌ | ✅ |\n| **Support Open Research** | 💜 | **🏆 Hero Status** |\n\n👉 [**Get Premium Templates Bundle**](https://hugoblox.com/premium?utm_source=github&utm_medium=readme&utm_content=cta_premium)\n\n> \"Launched my startup site with built-in docs in **10 minutes**. The premium block system is genius; onboarding time dropped 60%.\"\n> <br/>— **Alexandre Rodrigues**, Founder\n\n---\n\n## 🏢 Org-ready (without the enterprise bloat)\n\n- **Deploy anywhere**: static output works with your existing infra.\n- **Lower ops surface area**: no runtime app to patch.\n- **Procurement-friendly options**: priority support and commercial features when you need them.\n\n---\n\n## 🗣️ Community & Support\n\nWe are a community of 150,000+ researchers, engineers, and creators.\n\n- **Need Help?** Join the [Discord Server](https://discord.gg/z8wNYzb) or search the [Documentation](https://docs.hugoblox.com/).\n- **Found a Bug?** Open an [Issue](https://github.com/HugoBlox/kit/issues).\n- **Want to Contribute?** Read our [Contributing Guide](./CONTRIBUTING.md).\n\n### Sponsors\nHelp us keep open-source sustainable.\n\n[**❤️ Sponsor on GitHub**](https://github.com/sponsors/gcushen) | [**🏢 Become a Partner**](https://github.com/sponsors/gcushen)\n\n---\n\n## License\n\nCopyright © 2016-Present [**Lore Labs**](https://lore.tech/?utm_source=github&utm_medium=readme).\nReleased under the [MIT License](./LICENSE.md).\n\n<p align=\"center\">\n  <sub>HugoBlox™ is a trademark of Lore Labs.</sub>\n</p>\n"
  },
  {
    "path": "README.zh.md",
    "content": "[**English**](./README.md)\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/start?utm_source=github&utm_medium=readme&utm_content=hero_image\">\n    <img src=\"./.github/media/hero.zh.png\" alt=\"用 HugoBlox 打造世界级站点\" width=\"100%\">\n  </a>\n</p>\n\n<h1 align=\"center\">HugoBlox: 您的开源发布栈</h1>\n\n<p align=\"center\">\n  <strong>基于 Markdown + Jupyter 发布笔记、文档、作品集和知识库。</strong><br/>\n  专为追求速度且拒绝锁定的数据科学家、AI 工程师、研究人员、实验室和科技初创公司打造：Hugo + Tailwind 核心，可选 Researcher Plan 自动化（可视化编辑、一键导入、自动修复和升级）。\n</p>\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/start?utm_source=github&utm_medium=readme&utm_content=cta_start\"><b>浏览器中免费试用</b></a>\n  &nbsp;•&nbsp;\n  <a href=\"https://marketplace.visualstudio.com/items?itemName=ownable.ownable\"><b>获取 HugoBlox Studio (VS Code)</b></a>\n</p>\n\n<p align=\"center\">\n  <sub>\n    <a href=\"#面向研究人员与实验室\">研究人员与实验室</a>\n    &nbsp;•&nbsp;\n    <a href=\"#面向数据科学家与-ai-工程师\">数据科学家与 AI 工程师</a>\n    &nbsp;•&nbsp;\n    <a href=\"#面向团队与组织\">团队与组织</a>\n    &nbsp;•&nbsp;\n    <a href=\"#plans\">自动化与订阅计划</a>\n  </sub>\n</p>\n\n<div align=\"center\">\n\n<a href=\"https://discord.gg/z8wNYzb\">\n    <img src=\"https://img.shields.io/discord/722225264733716590?label=%E5%8A%A0%E5%85%A5%20Discord&logo=discord&logoColor=white&style=flat-square&color=5865F2\" alt=\"Discord\">\n  </a>\n  <a href=\"https://github.com/HugoBlox/kit\">\n    <img src=\"https://img.shields.io/github/stars/HugoBlox/kit?label=%E7%82%B9%E8%B5%9E%20HugoBlox&logo=github&logoColor=white&style=flat-square&color=181717\" alt=\"GitHub Stars\">\n  </a>\n  <a href=\"https://x.com/MakeOwnable\">\n    <img src=\"https://img.shields.io/twitter/follow/MakeOwnable?label=%E5%85%B3%E6%B3%A8&logo=x&logoColor=white&style=flat-square&color=000000\" alt=\"Follow on X\">\n  </a>\n  <a href=\"https://marketplace.visualstudio.com/items?itemName=ownable.ownable\">\n    <img src=\"https://img.shields.io/visual-studio-marketplace/i/ownable.ownable?label=VS%20Code%20%E5%AE%89%E8%A3%85%E9%87%8F&logo=visualstudiocode&logoColor=white&style=flat-square&color=007ACC\" alt=\"VS Code Installs\">\n  </a>\n  <a href=\"https://marketplace.visualstudio.com/items?itemName=ownable.ownable\">\n    <img src=\"https://img.shields.io/visual-studio-marketplace/stars/ownable.ownable?label=VS%20Code%20%E8%AF%84%E5%88%86&logo=visualstudiocode&logoColor=white&style=flat-square&color=007ACC\" alt=\"VS Code Rating\">\n  </a>\n\n</div>\n\n<p align=\"center\">\n  <sub>\n    源自 <strong>2016</strong> · <strong>150,000+</strong> 研究人员与科学家信赖 (Meta, Stanford, NVIDIA) · 用户评分 <strong>4.9/5</strong> (官方调研) · 被 <a href=\"https://research.nvidia.com/research-labs\">NVIDIA Research Labs</a>, <a href=\"https://cai4cai.ml/\">King’s College London</a>, 以及 <a href=\"https://www.metaconscious.org/\">MIT</a> 等团队使用 · 入选 GitHub <a href=\"https://github.blog/open-source/release-radar-february-2019/#hugo-academic-4-0\">Release Radar</a>\n  </sub>\n</p>\n\n---\n\n## ⚡️ 为什么团队选择 HugoBlox\n\n在 AI 时代，**Markdown 就是新的源代码**。HugoBlox 赋予您现代工具的速度与静态技术栈的持久性：**Hugo + Tailwind**（支持可选的 Alpine/Svelte 模块以增强交互性）。\n\n- **拥有您的内容**：纯净的 Markdown、YAML 和 Notebooks —— 便携、可读且对 LLM 友好。\n- **无运维负担的极致性能**：静态输出，极速构建，无运行时数据库。\n- **默认即美**：高质量的模板 + 积木（需要更多功能时可选 Researcher Plan）。\n- **混合工作流**：代码中直接编辑，或在需要速度时使用可视化编辑器。\n\n---\n\n## 面向研究人员与实验室\n\n- **实验室站点与学术主页**（人员、出版物、项目、新闻）\n- **可引用的输出**，支持 BibTeX/DOI 工作流\n- **Notebooks + LaTeX**，让技术写作完美渲染\n\n## 面向数据科学家与 AI 工程师\n\n- **项目文档**与无需繁重 JavaScript 栈的技术博客\n- **Notebook 优先发布** (`.ipynb`)，用于报告、教程和结果展示\n- **知识库**与内部文档，保持可搜索与可维护\n\n## 面向团队与组织\n\n- **一致的站点**，通过模板 + 积木实现跨团队统一\n- **低风险升级**，提供清晰的版本控制 + 迁移指南\n- **支持选项**，当您需要快速解答时\n\n---\n\n## 🧠 随心所欲地编辑（代码优先，亦可可视化）\n\n- **代码优先**：Markdown/YAML + Hugo 模板，掌控全局。\n- **可视化编辑 (Researcher Plan)**：VS Code 中的 **HugoBlox Studio**，提供拖拽式积木、实时预览和更安全的配置编辑。\n- **AI 自动化 (Researcher Plan)**：减少在格式调整、YAML 修复、导入和维护上花费的时间。\n\n<p align=\"center\">\n  <img src=\"./.github/media/studio/slide-1.webp\" alt=\"HugoBlox Studio 实战\" width=\"100%\">\n</p>\n<p align=\"center\"><em>HugoBlox Studio: 可视化编辑与代码优先掌控的完美结合。</em></p>\n\n---\n\n## 🛠️ 工具箱\n\n| **功能** | **核心价值** |\n| :--- | :--- |\n| **HugoBlox Studio (VS Code)** | 编辑器内的可视化 CMS。无需离开 VS Code 即可拖拽积木。 |\n| **Notebooks & LaTeX** | 原生渲染 `.ipynb` 和重数学公式页面。 |\n| **BibTeX / DOI 工作流** | 构建出版物页面和参考文献，无需手动格式化。 |\n| **多语言支持** | 使用 Markdown, Jupyter, RMarkdown, 或 LaTeX Math 写作。 |\n\n<p align=\"center\">\n  <img src=\"./.github/media/templates.webp\" alt=\"模板预览\" width=\"900\">\n</p>\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/templates?utm_source=github&utm_medium=readme&utm_content=templates\"><b>浏览模板 →</b></a>\n</p>\n\n<p align=\"center\">\n  <sub>想看它快速运行？选择一个模板，使用 Online Copilot 在约 60 秒内发布。</sub><br/>\n  <a href=\"https://hugoblox.com/start?utm_source=github&utm_medium=readme&utm_content=cta_template_start\"><b>立即尝试模板 →</b></a>\n</p>\n\n---\n\n## 🚀 快速开始\n\n### 选项 1：在线 Copilot（最快）\n适合 **创始人、实验室和初创公司**。几分钟内上线站点。\n\n👉 [**浏览器中免费试用**](https://hugoblox.com/start?utm_source=github&utm_medium=readme&utm_content=get_started_browser)\n\n### 选项 2：HugoBlox Studio（适合数据/AI 团队）\n可视化网站构建器的力量，直接集成在 VS Code 中。\n\n1. **安装** [VS Code 市场中的 HugoBlox Studio](https://marketplace.visualstudio.com/items?itemName=ownable.ownable).\n2. **打开** 任意 HugoBlox 项目文件夹。\n3. **点击** 菜单中的 HugoBlox Studio 图标开始可视化编辑。\n\n### 选项 3：命令行 CLI（适合 DevOps/工程师）\n在本地搭建新项目骨架。\n\n```bash\n  # 需要 Hugo Extended & Node.js\n  npm install -g hugoblox\n  hugoblox create site\n```\n\n需要指南和最佳实践？查看文档：[**docs.hugoblox.com**](https://docs.hugoblox.com/?utm_source=github&utm_medium=readme&utm_content=docs)\n\n---\n\n## ✅ 稳定性与升级（您的站点不应崩溃）\n\n- **锁定版本** 以保持生产环境稳定。\n- **自信升级**，使用迁移说明和升级指南。\n- **安全定制**：尽可能优先使用配置和积木，而非脆弱的模板覆盖。\n- **尽早发现配置问题 (Researcher Plan)**：可视化编辑 + 验证减少 YAML/Front Matter 错误。\n\n查看文档获取升级指导：[**docs.hugoblox.com**](https://docs.hugoblox.com/?utm_source=github&utm_medium=readme&utm_content=upgrade_guidance)\n\n<a name=\"plans\"></a>\n## ⚡️ 解锁自动化与 Premium\n\nHugoBlox 采用 **Open Core** 模式。**免费套件 (Free Kit)** 达到生产级标准，您将永远拥有您的数据和代码。\n\n免费套件包含：\n\n- **[HugoBlox Studio](https://marketplace.visualstudio.com/items?itemName=ownable.ownable) 核心**：可视化站点配置、主题设置和内容编辑\n- **模板 + 积木**，用于作品集、实验室、文档和落地页\n- **Markdown/YAML 优先工作流**，具备 Hugo + Tailwind 性能\n- **Notebook + LaTeX 支持**，用于技术发布\n- **社区支持**，通过文档、GitHub Issues 和 Discord\n\n### 🤖 Researcher Plan (自动化)\n\n当您需要自动化和更低的维护开销时，升级到 [HugoBlox Studio](https://marketplace.visualstudio.com/items?itemName=ownable.ownable) 的 **Researcher Plan (研究员计划)**（需登录扩展）：\n\n- **更少时间调试 YAML** (自动修复机器人 + 更安全的配置编辑)\n- **更少时间格式化引用** (魔法导入 + 出版物自动化)\n- **更少时间处理升级** (引导式维护工作流)\n- **更高速度** (VS Code 中的可视化编辑 + 预览)\n\n\n| 功能 | **免费套件** (开源) | **Researcher Plan** (自动化) |\n| :--- | :---: | :---: |\n| **站点所有权** | ✅ 100% 归您所有 | ✅ 100% 归您所有 |\n| **可视化页面编辑器** | ❌ | **✅ 包含** |\n| **AI 助手** | ⏳ 试用 | **✅ 包含** |\n| **GitHub 自动同步** | ❌ | **✅ 包含** |\n| **AI \"自动修复\" 机器人** (自动修复 YAML) | ❌ | **✅ 无限** |\n| **魔法导入** (BibTeX/DOI -> 页面) | ⏳ 试用 | **✅ 无限** |\n| **CV 生成器** (站点 -> PDF 简历) | ❌ | **✅ 包含** |\n| **私有 Discord** | ❌ | ✅ |\n| **支持开放科研** | 💜 | **🏆 Hero 身份** |\n\n👉 [**查看完整功能矩阵**](https://hugoblox.com/pricing?utm_source=github&utm_medium=readme&utm_content=pricing_matrix) &nbsp;•&nbsp; [**升级到 Researcher Plan**](https://hugoblox.com/pricing?utm_source=github&utm_medium=readme&utm_content=cta_pro)\n\n> \"HugoBlox Studio 帮我的实验室网站节省了 **40+ 小时**。可视化编辑 + BibTeX 自动更新 = **引用量提升了 3 倍**。\"\n> <br/>— **Dr. Sarah Yang**, AI 研究员\n\n### 🎨 HugoBlox Premium\n\n**获取完整套件。** 即刻访问高级模板、高级积木和社区支持，助您更快上线。\n\n| 功能 | 开源版 | **HugoBlox Premium** |\n| :--- | :---: | :---: |\n| **核心框架** | ✅ | ✅ |\n| **高级模板** (SaaS, 实验室) | ❌ | **✅ 包含** |\n| **高级积木** | ❌ | **✅ 包含** |\n| **移除归属声明?** | ❌ | **✅ 包含** |\n| **私有 Discord** | ❌ | ✅ |\n| **支持开放科研** | 💜 | **🏆 Hero 身份** |\n\n👉 [**获取 Premium 模板包**](https://hugoblox.com/premium?utm_source=github&utm_medium=readme&utm_content=cta_premium)\n\n> \"用了不到 **10 分钟** 就上线了我的初创公司网站和文档。高级积木系统太天才了；新手上手时间缩短了 60%。\"\n> <br/>— **Alexandre Rodrigues**, 创始人\n\n---\n\n## 🏢 企业级就绪（拒绝臃肿）\n\n- **随处部署**：静态输出适用于您现有的基础设施。\n- **更低的运维面**：无需修补运行时应用漏洞。\n- **采购友好的选项**：按需提供优先支持和商业功能。\n\n---\n\n## 🗣️ 社区与支持\n\n我们是一个由 150,000+ 研究人员、工程师和创作者组成的社区。\n\n- **需要帮助？** 加入 [Discord 服务器](https://discord.gg/z8wNYzb) 或搜索 [文档](https://docs.hugoblox.com/)。\n- **发现 Bug？** 提交 [Issue](https://github.com/HugoBlox/kit/issues)。\n- **想要贡献？** 阅读我们的 [贡献指南](./CONTRIBUTING.md)。\n\n### 赞助商\n帮助我们维持开源的可持续性。\n\n[**❤️ 在 GitHub 上赞助**](https://github.com/sponsors/gcushen) | [**🏢 成为合作伙伴**](https://github.com/sponsors/gcushen)\n\n---\n\n## 许可证\n\nCopyright © 2016-Present [**Lore Labs**](https://lore.tech/?utm_source=github&utm_medium=readme).\nReleased under the [MIT License](./LICENSE.md).\n\n<p align=\"center\">\n  <sub>Lore™ is a trademark of Lore Labs.</sub>\n</p>\n"
  },
  {
    "path": "biome.json",
    "content": "{\n  \"$schema\": \"https://biomejs.dev/schemas/2.3.2/schema.json\",\n  \"files\": {\n    \"includes\": [\n      \"**\",\n      \"!modules/**/*.html\",\n      \"!**/node_modules\",\n      \"!**/public\",\n      \"!**/resources\",\n      \"!**/_gen\",\n      \"!**/assets/dist\",\n      \"!**/*.min.js\",\n      \"!**/*.min.css\",\n      \"!**/pagefind\",\n      \"!**/_vendor\",\n      \"!**/vendor\",\n      \"!**/*.html\",\n      \"!**/layouts/**/*.html\",\n      \"!**/*.webmanifest\",\n      \"!**/*.backlinks.json\",\n      \"!**/hugo_stats.json\",\n      \"!**/*.code-workspace\",\n      \"!**/modules/blox/data/icons/devicon.json\",\n      \"!**/templates/**/*.html\",\n      \"!**/test\",\n      \"!**/modules/**/package.json\",\n      \"!**/assets/jsconfig.json\",\n      \"!**/docs-local\",\n      \"!**/backups\",\n      \"!**/modules/blox/assets/css/config/safelist.css\"\n    ]\n  },\n  \"formatter\": {\n    \"enabled\": true,\n    \"indentStyle\": \"space\",\n    \"indentWidth\": 2,\n    \"lineWidth\": 150\n  },\n  \"javascript\": {\n    \"formatter\": {\n      \"quoteStyle\": \"double\",\n      \"trailingCommas\": \"all\",\n      \"bracketSpacing\": false\n    },\n    \"globals\": [\"PagefindUI\"]\n  },\n  \"json\": {\n    \"formatter\": {\n      \"trailingCommas\": \"none\"\n    }\n  },\n  \"linter\": {\n    \"enabled\": true,\n    \"rules\": {\n      \"recommended\": true,\n      \"style\": {},\n      \"complexity\": {},\n      \"suspicious\": {\n        \"noEmptyBlock\": \"off\"\n      },\n      \"security\": {\n        \"noDangerouslySetInnerHtml\": \"off\"\n      }\n    }\n  },\n  \"assist\": {\n    \"actions\": {\n      \"source\": {\n        \"organizeImports\": \"on\"\n      }\n    }\n  },\n  \"css\": {\n    \"parser\": {\n      \"tailwindDirectives\": true\n    },\n    \"formatter\": {\n      \"enabled\": true,\n      \"indentStyle\": \"space\",\n      \"indentWidth\": 2,\n      \"lineWidth\": 150\n    },\n    \"linter\": {\n      \"enabled\": true\n    }\n  }\n}\n"
  },
  {
    "path": "hugoblox.code-workspace",
    "content": "{\n  \"folders\": [\n    {\n      \"path\": \".\"\n    }\n  ],\n  \"settings\": {\n    \"files.trimFinalNewlines\": true,\n    \"editor.formatOnSaveMode\": \"modificationsIfAvailable\",\n    \"yaml.format.enable\": false,\n      \n    \"files.exclude\": {\n      \"**/node_modules/**\": true,\n      \"**/public/**\": true,\n      \"**/resources/**\": true,\n      \"**/pagefind/**\": true,\n      \"**/dist/**\": true\n    },\n    \"search.exclude\": {\n      \"**/node_modules/**\": true,\n      \"**/public/**\": true,\n      \"**/resources/**\": true,\n      \"**/pagefind/**\": true,\n      \"**/dist/**\": true\n    },\n    \"files.watcherExclude\": {\n      \"**/node_modules/**\": true,\n      \"**/public/**\": true,\n      \"**/resources/**\": true,\n      \"**/pagefind/**\": true,\n      \"**/dist/**\": true\n    },\n    \"explorer.excludeGitIgnore\": false,\n    \"workbench.editor.labelFormat\": \"medium\",\n    \"breadcrumbs.enabled\": true,\n    \"npm.packageManager\": \"pnpm\",\n    \"editor.detectIndentation\": false,\n    \"editor.formatOnSave\": true,\n    \"editor.defaultFormatter\": null,\n    \"editor.codeActionsOnSave\": {\n      \"source.fixAll.biome\": \"explicit\"\n    },\n\n    \"[javascript]\": { \"editor.defaultFormatter\": \"biomejs.biome\" },\n    \"[typescript]\": { \"editor.defaultFormatter\": \"biomejs.biome\" },\n    \"[json]\": { \"editor.defaultFormatter\": \"biomejs.biome\" },\n    \"[css]\": { \"editor.defaultFormatter\": \"biomejs.biome\" },\n    \"[markdown]\": {\n      \"editor.defaultFormatter\": \"prettier.prettier-vscode\",\n      \"files.trimTrailingWhitespace\": false\n    },\n    \"[python]\": {\n      \"editor.tabSize\": 4,\n      \"editor.insertSpaces\": true,\n      \"editor.defaultFormatter\": \"charliermarsh.ruff\"\n    },\n    \"[yaml]\": {\n      \"editor.defaultFormatter\": \"prettier.prettier-vscode\"\n    },\n    \"[toml]\": {\n      \"editor.defaultFormatter\": \"prettier.prettier-vscode\"\n    },\n    \"files.associations\": {\n      \"**/layouts/**/*.html\": \"hugo\",\n      \"**/layouts/**/*.htm\": \"hugo\",\n      \"modules/**/*.html\": \"hugo\",\n      \"modules/**/*.htm\": \"hugo\",\n      \"templates/**/*.html\": \"hugo\",\n      \"templates/**/*.htm\": \"hugo\",\n      \"test/**/*.html\": \"hugo\",\n      \"test/**/*.htm\": \"hugo\"\n    },\n    \"[hugo]\": {\n      \"editor.formatOnSave\": false,\n      \"editor.defaultFormatter\": null\n    },\n    \"emmet.excludeLanguages\": [\n      \"hugo\"\n    ],\n    \"html.format.enable\": true,\n    \"biome.formatter.enabled\": false,\n\n    \"tailwindCSS.emmetCompletions\": true,\n    \"tailwindCSS.includeLanguages\": {\n      \"hugo\": \"html\"\n    },\n    \"tailwindCSS.experimental.classRegex\": [\n      \":class\\\\s*=\\\\s*\\\"([^\\\"]*)\\\"\",\n      \"x-bind:class\\\\s*=\\\\s*\\\"([^\\\"]*)\\\"\"\n    ],\n    \"yaml.validate\": true,\n\n    \"[html]\": {\n      \"editor.defaultFormatter\": \"prettier.prettier-vscode\",\n      \"editor.formatOnSave\": true\n    }\n  },\n  \"extensions\": {\n    \"recommendations\": [\n      \"redhat.vscode-yaml\",\n      \"DavidAnson.vscode-markdownlint\",\n      \"mikestead.dotenv\",\n      \"eamodio.gitlens\",\n      \"biomejs.biome\",\n      \"prettier.prettier-vscode\",\n      \"charliermarsh.ruff\",\n      \"bradlc.vscode-tailwindcss\"\n    ]\n  }\n}\n"
  },
  {
    "path": "modules/README.md",
    "content": "# HugoBlox Kit Modules\n\nInstall HugoBlox features as **Hugo Modules**.\n\n## Quick start (most sites)\n\nAdd HugoBlox Kit core to `config/_default/module.yaml` (or `hugo.yaml`):\n\n```yaml\nmodule:\n  imports:\n    - path: github.com/HugoBlox/kit/modules/blox\n```\n\nThat’s it — **`analytics` is already included** when you use `modules/blox`.\n\n## Module map\n\n- **Core framework**: `github.com/HugoBlox/kit/modules/blox`\n  - Layouts, blocks (Blox), Tailwind pipeline, shortcodes, defaults\n  - Includes: `github.com/HugoBlox/kit/modules/analytics`\n- **Slides (content type)**: `github.com/HugoBlox/kit/modules/slides`\n  - Markdown slide decks (powered by Reveal.js)\n- **Integrations**: `github.com/HugoBlox/kit/modules/integrations/*`\n  - Netlify: `github.com/HugoBlox/kit/modules/integrations/netlify`\n\n## Optional installs\n\n### Slides\n\n```yaml\nmodule:\n  imports:\n    - path: github.com/HugoBlox/kit/modules/blox\n    - path: github.com/HugoBlox/kit/modules/slides\n```\n\n### Netlify integration (security headers + redirects outputs)\n\n```yaml\nmodule:\n  imports:\n    - path: github.com/HugoBlox/kit/modules/blox\n    - path: github.com/HugoBlox/kit/modules/integrations/netlify\n```\n\nThen enable Hugo outputs for Netlify:\n\n```yaml\noutputs:\n  home: [HTML, RSS, headers, redirects]\n```\n\n## Updating\n\n```bash\nhugo mod get -u github.com/HugoBlox/kit/modules/blox@main\nhugo mod tidy\n```\n"
  },
  {
    "path": "modules/analytics/README.md",
    "content": "# Analytics module\n\n**A Hugo Blox module for website analytics and search engine verification.**\n\nAre you using the `blox` module? The analytics module is already included, so you do not need to install it. For all other sites, refer to the installation guide below.\n\n## Install\n\nGet analytics and verification for your Hugo site by following the guide below:\n\n1. Add the module to your `config/_default/hugo.yaml`:\n\n   ```yaml\n   module:\n     imports:\n       - path: github.com/HugoBlox/kit/modules/analytics\n   ```\n\n2. Load the module in your site's `<head>` with:\n\n   ```go\n   {{ partial \"blox-analytics/index\" . }}\n   ```\n\n## Usage\n\n[View the documentation](https://docs.hugoblox.com/reference/analytics/)\n"
  },
  {
    "path": "modules/analytics/go.mod",
    "content": "module github.com/HugoBlox/kit/modules/analytics\n\ngo 1.19\n"
  },
  {
    "path": "modules/analytics/hugo.yaml",
    "content": "module:\n  mounts:\n    - source: layouts\n      target: layouts\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/index.html",
    "content": "{{/* HUGO BLOX: MARKETING MODULE */}}\n\n{{/* VERIFICATIONS */}}\n\n{{ partial \"blox-analytics/verification\" . }}\n\n{{/* ANALYTICS */}}\n\n{{ partial \"blox-analytics/services/index\" . }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/services/baidu_tongji.html",
    "content": "{{ $baidu_tongji := site.Params.hugoblox.analytics.baidu.site_id | default \"\" }}\n\n{{ if hugo.IsProduction | and $baidu_tongji }}\n  <script>\n    var _hmt = _hmt || [];\n    (function() {\n      var hm = document.createElement(\"script\");\n      hm.src = \"https://hm.baidu.com/hm.js?{{ $baidu_tongji }}\";\n      var s = document.getElementsByTagName(\"script\")[0];\n      s.parentNode.insertBefore(hm, s);\n    })();\n  </script>\n{{ end }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/services/fathom.html",
    "content": "{{ $fathom := site.Params.hugoblox.analytics.fathom.site_id | default \"\" }}\n\n{{ if hugo.IsProduction | and $fathom }}\n<script src=\"https://cdn.usefathom.com/script.js\" data-site=\"{{$fathom}}\" defer></script>\n{{ end }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/services/google_analytics.html",
    "content": "{{ $ga := site.Params.hugoblox.analytics.google.measurement_id | default \"\" }}\n\n{{ if hugo.IsProduction | and $ga }}\n\n{{ $gtag_config := cond (site.Params.hugoblox.privacy.anonymize_analytics | default true) \"{ 'anonymize_ip': true }\" \"{}\" }}\n<script async src=\"https://www.googletagmanager.com/gtag/js?id={{$ga}}\"></script>\n<script>\n  window.dataLayer = window.dataLayer || [];\n\n  function gtag() {\n      dataLayer.push(arguments);\n  }\n\n  function trackOutboundLink(url, target) {\n    gtag('event', 'click', {\n         'event_category': 'outbound',\n         'event_label': url,\n         'transport_type': 'beacon',\n         'event_callback': function () {\n           if (target !== '_blank') {\n             document.location = url;\n           }\n         }\n    });\n    console.debug(\"Outbound link clicked: \" + url);\n  }\n\n  function onClickCallback(event) {\n    if ((event.target.tagName !== 'A') || (event.target.host === window.location.host)) {\n      return;\n    }\n    trackOutboundLink(event.target, event.target.getAttribute('target'));  // Send GA event.\n  }\n\n  gtag('js', new Date());\n  gtag('config', '{{$ga}}', {{$gtag_config|safeJS}});\n  gtag('set', {'cookie_flags': 'SameSite=None;Secure'});\n\n  // Outbound link tracking.\n  document.addEventListener('click', onClickCallback, false);\n</script>\n{{ end }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/services/google_tag_manager.html",
    "content": "{{ $gt := site.Params.hugoblox.analytics.google_tag_manager.container_id | default \"\" }}\n{{ if hugo.IsProduction | and $gt }}\n<script>\n  (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\n  new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\n  j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n  'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\n  })(window,document,'script','dataLayer','{{$gt}}');\n</script>\n{{ end }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/services/index.html",
    "content": "{{ partial \"blox-analytics/services/google_analytics\" . }}\n{{ partial \"blox-analytics/services/google_tag_manager\" . }}\n{{ partial \"blox-analytics/services/microsoft_clarity\" . }}\n{{ partial \"blox-analytics/services/baidu_tongji\" . }}\n{{ partial \"blox-analytics/services/plausible\" . }}\n{{ partial \"blox-analytics/services/fathom\" . }}\n{{ partial \"blox-analytics/services/pirsch\" . }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/services/microsoft_clarity.html",
    "content": "{{ $clarity := site.Params.hugoblox.analytics.clarity.project_id | default \"\" }}\n{{ if hugo.IsProduction | and $clarity }}\n<script>\n  (function(c,l,a,r,i,t,y){\n      c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};\n      t=l.createElement(r);t.async=1;t.src=\"https://www.clarity.ms/tag/\"+i;\n      y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);\n  })(window, document, \"clarity\", \"script\", '{{$clarity}}');\n</script>\n{{ end }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/services/pirsch.html",
    "content": "{{ $pirsch := site.Params.hugoblox.analytics.pirsch.site_id | default \"\" }}\n\n{{ if hugo.IsProduction | and $pirsch }}\n<script defer src=\"https://api.pirsch.io/pirsch.js\" id=\"pirschjs\" data-code=\"{{$pirsch}}\"></script>\n{{ end }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/services/plausible.html",
    "content": "{{ $plausible := site.Params.hugoblox.analytics.plausible.domain | default \"\" }}\n\n{{ if hugo.IsProduction | and $plausible }}\n<script defer data-domain=\"{{$plausible}}\" src=\"https://plausible.io/js/script.js\"></script>\n{{ end }}\n"
  },
  {
    "path": "modules/analytics/layouts/_partials/blox-analytics/verification.html",
    "content": "{{/* Site Verification with Third Party Services */}}\n\n{{- with site.Params.hugoblox.verification.google -}}\n<meta name=\"google-site-verification\" content=\"{{ . }}\" />\n{{- end -}}\n\n{{- with site.Params.hugoblox.verification.bing -}}\n<meta name=\"msvalidate.01\" content=\"{{ . }}\" />\n{{- end -}}\n\n{{- with site.Params.hugoblox.verification.yandex -}}\n<meta name=\"yandex-verification\" content=\"{{ . }}\" />\n{{- end -}}\n\n{{- with site.Params.hugoblox.verification.pinterest -}}\n<meta name=\"p:domain_verify\" content=\"{{ . }}\" />\n{{- end -}}\n\n{{- with site.Params.hugoblox.verification.baidu -}}\n<meta name=\"baidu-site-verification\" content=\"{{ . }}\" />\n{{- end -}}\n\n{{ with site.Params.hugoblox.verification.naver }}\n  <meta name=\"naver-site-verification\" content=\"{{ . }}\" />\n{{- end -}}"
  },
  {
    "path": "modules/blox/.npmrc",
    "content": "# pnpm compatibility settings\nauto-install-peers=true\nstrict-peer-dependencies=false\npublic-hoist-pattern[]=*\n"
  },
  {
    "path": "modules/blox/README.md",
    "content": "# Hugo Blox (core)\n\nThe Hugo Blox web framework powered by [Tailwind CSS v4](https://tailwindcss.com/) with Hugo's native integration for styling components with Tailwind v4.\n\n## Requirements\n\n- Hugo v0.148.2+ (Extended Edition)\n- Node.js v20+ \n- pnpm (see `packageManager` field in package.json)\n\n## Quick Start\n\n### 1. Install Dependencies\n\n```bash\npnpm install\n```\n\n### 2. Run Development Server\n\n```bash\nhugo server\n```\n\nTailwind CSS is processed automatically by Hugo using the `css.TailwindCSS` function.\n\n## Features\n\n- **Tailwind CSS v4**: Latest version with improved performance over Tailwind v3\n- **Hugo Native Integration**: Uses Hugo's built-in `css.TailwindCSS` function\n- **Dynamic CSS Generation**: Only includes utilities actually used in your content for ultra-fast page loads\n- **No Pre-compilation**: CSS is generated on-demand (previously Tailwind v3 was pre-compiled in Hugo Blox as `wc.min.css`)\n- **Community Components**: Community components work seamlessly without manual compilation\n\n## Configuration\n\nThe Tailwind configuration is now in CSS format at `assets/css/main.css` using the `@theme` directive. The configuration includes:\n\n- Hugo Blox color schemes (primary, secondary, neutral)\n- Typography settings\n- Safelist patterns for dynamic classes\n- Dark mode support\n\n## Migration from Tailwind v3\n\nIf you're upgrading from Tailwind v3:\n\n1. Install the new dependencies: `pnpm install`\n2. Remove any `assets/dist/wc.min.css` files\n3. Add the `package.json` file from the latest templates\n4. Update your deployment scripts to install it with `pnpm install` (refer to the latest `.github` folder in the templates)\n5. The old `tailwind.config.js` and `postcss.config.js` files are no longer needed\n\n## Development\n\nFor module development:\n\n```bash\n# Install dependencies\npnpm install\n\n# Run development server\nhugo server --disableFastRender\n\n# Build for production\nhugo --minify\n```\n\n## Vendor Libraries\n\nThe module includes several third-party vendor libraries that are distributed with the module. These are copied from node_modules to the assets/dist/lib directory during the build process.\n\nTo update the vendor libraries:\n\n```bash\n# Update vendor libraries to the latest versions and rebuild\npnpm vendor:update-and-build\n\n# Just rebuild vendor libraries without updating versions\npnpm vendor:libs\n```\n\nThe following libraries are included:\n- mermaid (diagrams)\n- plotly.js (interactive charts)\n- katex (math rendering)\n- markmap-autoloader (mind maps)\n- alpinejs (interactivity)\n- preact (interactive components)\n"
  },
  {
    "path": "modules/blox/archetypes/faq.md",
    "content": "---\ntitle: \"{{ replace .Name \"-\" \" \" | title }}\"\ndate: {{ .Date }}\ndraft: false\n\n# Summary for SEO\nsummary: \"\"\n\n# Mark this as an FAQ page to enable FAQPage structured data\nfaq_page: true\n\n# Categories and tags\ncategories: []\ntags: []\n\n# Pagefind search metadata (automatically indexed)\n# type: faq (auto-added by layout)\n# category: first category from categories array above\n\n# Option 1: Define FAQs inline\nfaqs:\n  - question: \"What is your question here?\"\n    answer: \"Your answer here. Can use **Markdown** formatting.\"\n  \n  - question: \"Another question?\"\n    answer: \"Another answer with more details.\"\n  \n  # Add more Q&As as needed\n\n# Option 2: Alternatively, create child pages under this FAQ section\n# and they will automatically be included\n\n# SEO settings\nseo:\n  title: \"\"\n  description: \"\"\n\n# Show breadcrumb navigation\nshow_breadcrumb: true\n---\n\nAdd an introductory text here that will appear before the FAQ accordion.\n\nThis is a great place to provide context about the FAQ section.\n\n"
  },
  {
    "path": "modules/blox/archetypes/questions.md",
    "content": "---\ntitle: \"{{ replace .Name \"-\" \" \" | title }}\"\ndate: {{ .Date }}\ndraft: false\n\n# The question (can also use title)\nquestion: \"{{ replace .Name \"-\" \" \" | title }}\"\n\n# Short answer (optional - can also use content below)\nanswer: \"\"\n\n# Summary for SEO and previews\nsummary: \"\"\n\n# Difficulty level (optional)\ndifficulty: \"\"  # e.g., \"Beginner\", \"Intermediate\", \"Advanced\"\n\n# Categories and tags for organization\ncategories: []\ntags: []\n\n# Pagefind search metadata (automatically indexed)\n# type: questions (auto-added by layout)\n# category: first category from categories array above\n# difficulty: value from difficulty field below\n\n# Vote counts (optional - for display and structured data)\nupvote_count: 0\ndownvote_count: 0\n\n# Additional/suggested answers (optional)\n# suggested_answer:\n#   - text: \"Alternative answer text here...\"\n#     author: \"Author Name\"\n#     date: 2024-01-15\n#     upvote_count: 5\n\n# Related questions (optional - can also be auto-generated)\n# related:\n#   - link-to-related-question\n\n# SEO settings\nseo:\n  title: \"\"\n  description: \"\"\n\n# Show breadcrumb navigation\nshow_breadcrumb: true\n---\n\nWrite your detailed answer here using Markdown.\n\nYou can include:\n- Code blocks\n- Images\n- Lists\n- Links\n- And more!\n\n## Additional Details\n\nAdd sections as needed to provide comprehensive information.\n"
  },
  {
    "path": "modules/blox/assets/css/README.md",
    "content": "# Hugo Blox Tailwind CSS v4 Color System\n\n## Architecture Overview\n\nThis system leverages Tailwind CSS v4's automatic utility generation to provide a comprehensive color system with minimal code.\n\n### How It Works\n\n1. **Theme Configuration** (`config/theme.css`)\n\n   - Colors defined in `@theme` block automatically generate ALL utilities\n   - Includes standard Tailwind colors: gray, slate, zinc, neutral, stone\n   - Includes themeable colors: primary, secondary\n\n2. **Theme Files** (`themes/*.css`)\n\n   - Small files that override `--color-primary-*` and `--color-secondary-*` variables\n   - Users switch themes by loading different theme CSS files\n   - No utilities redefined - just color values changed\n\n3. **Custom Utilities** (`color-utilities.css`)\n   - Only 42 lines vs previous 1,228 lines!\n   - Contains only custom colors not auto-generated (like `hb-dark`)\n\n### Available Colors\n\n**Standard Colors (always available):**\n\n- `gray-*` - Neutral grays\n- `slate-*` - Cool grays\n- `zinc-*` - True grays\n- `neutral-*` - Pure grays\n- `stone-*` - Warm grays\n\n**Themeable Colors (vary by theme):**\n\n- `primary-*` - Main theme color\n- `secondary-*` - Accent theme color\n\n**Custom Colors:**\n\n- `hb-dark` - Hugo Blox brand dark color\n\n### Auto-Generated Utilities\n\nFor every color defined in `@theme`, Tailwind automatically creates:\n\n- Background: `bg-{color}-{shade}`\n- Text: `text-{color}-{shade}`\n- Border: `border-{color}-{shade}`\n- Hover: `hover:bg-{color}-{shade}`, `hover:text-{color}-{shade}`\n- Dark mode: `dark:bg-{color}-{shade}`, `dark:text-{color}-{shade}`\n- Gradients: `from-{color}-{shade}`, `to-{color}-{shade}`\n- Focus rings: `focus:ring-{color}-{shade}`\n- All other Tailwind color variants\n\n### Shades Available\n\nAll colors include 11 shades: `50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950`\n\n### Usage Examples\n\n```html\n<!-- Standard colors (always available) -->\n<div class=\"bg-gray-100 dark:bg-gray-800\">...</div>\n<div class=\"text-slate-700 hover:text-slate-900\">...</div>\n\n<!-- Themeable colors (change with theme) -->\n<div class=\"bg-primary-500 hover:bg-primary-600\">...</div>\n<div class=\"bg-gradient-to-r from-primary-600 to-secondary-600\">...</div>\n\n<!-- Custom colors -->\n<div class=\"bg-hb-dark text-white\">...</div>\n```\n\n### Benefits\n\n1. **Dramatically Reduced File Size**: 1,228 lines → 42 lines (97% reduction!)\n2. **Automatic Generation**: No manual utility definitions needed\n3. **Maintainable**: Add new colors just by defining them in `@theme`\n4. **Consistent**: All Tailwind variants automatically available\n5. **Themeable**: Easy theme switching via CSS variable overrides\n\n### Adding New Colors\n\nTo add a new color scale:\n\n1. Define in `config/theme.css`:\n\n   ```css\n   --color-brand-500: 59 130 246;\n   --color-brand-600: 37 99 235;\n   /* etc. */\n   ```\n\n2. Tailwind automatically generates all utilities:\n   - `bg-brand-500`, `text-brand-600`, `hover:bg-brand-500`, etc.\n\nNo manual utility definitions required!\n"
  },
  {
    "path": "modules/blox/assets/css/animations.css",
    "content": "/**\n * Hugo Blox Animations\n * Scroll-triggered reveals and micro-interactions\n */\n\n/* Typewriter cursor */\n.typewriter-cursor {\n  display: inline-block;\n  width: 3px;\n  margin-left: 2px;\n  background-color: currentColor;\n  animation: blink 1s step-end infinite;\n}\n\n@keyframes blink {\n  50% {\n    opacity: 0;\n  }\n}\n\n/* Reveal animations base */\n[x-reveal] {\n  opacity: 0;\n}\n\n/* Stagger container */\n[data-stagger] > [data-stagger-item] {\n  opacity: 0;\n  transform: translateY(20px);\n  transition:\n    opacity 0.5s ease-out,\n    transform 0.5s ease-out;\n}\n\n[data-stagger].revealed > [data-stagger-item] {\n  opacity: 1;\n  transform: translateY(0);\n}\n\n/* Hover enhancements for cards */\n.card-hover-lift {\n  transition:\n    transform 0.3s ease-out,\n    box-shadow 0.3s ease-out;\n}\n\n.card-hover-lift:hover {\n  transform: translateY(-4px);\n  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.3);\n}\n\n/* Hover glow effect */\n.hover-glow {\n  position: relative;\n  transition: all 0.3s ease-out;\n}\n\n.hover-glow::before {\n  content: \"\";\n  position: absolute;\n  inset: -2px;\n  border-radius: inherit;\n  background: linear-gradient(135deg, var(--color-primary-500), var(--color-secondary-500));\n  opacity: 0;\n  z-index: -1;\n  transition: opacity 0.3s ease-out;\n  filter: blur(8px);\n}\n\n.hover-glow:hover::before {\n  opacity: 0.5;\n}\n\n/* Icon bounce on hover */\n.icon-bounce:hover {\n  animation: iconBounce 0.5s ease-out;\n}\n\n@keyframes iconBounce {\n  0%,\n  100% {\n    transform: translateY(0);\n  }\n  50% {\n    transform: translateY(-4px);\n  }\n}\n\n/* Scale up on hover */\n.scale-hover {\n  transition: transform 0.2s ease-out;\n}\n\n.scale-hover:hover {\n  transform: scale(1.05);\n}\n\n/* Button pulse */\n.btn-pulse {\n  position: relative;\n}\n\n.btn-pulse::after {\n  content: \"\";\n  position: absolute;\n  inset: 0;\n  border-radius: inherit;\n  box-shadow: 0 0 0 0 currentColor;\n  opacity: 0.4;\n  animation: pulse-ring 2s infinite;\n}\n\n@keyframes pulse-ring {\n  0% {\n    box-shadow: 0 0 0 0 currentColor;\n    opacity: 0.4;\n  }\n  100% {\n    box-shadow: 0 0 0 12px currentColor;\n    opacity: 0;\n  }\n}\n\n/* Float animation for background orbs */\n@keyframes float {\n  0%,\n  100% {\n    transform: translateY(0) translateX(0);\n  }\n  25% {\n    transform: translateY(-20px) translateX(10px);\n  }\n  50% {\n    transform: translateY(-10px) translateX(-10px);\n  }\n  75% {\n    transform: translateY(-30px) translateX(5px);\n  }\n}\n\n.animate-float {\n  animation: float 8s ease-in-out infinite;\n}\n\n/* Slow rotate for decorative elements */\n@keyframes rotate-slow {\n  from {\n    transform: rotate(0deg);\n  }\n  to {\n    transform: rotate(360deg);\n  }\n}\n\n.animate-rotate-slow {\n  animation: rotate-slow 30s linear infinite;\n}\n\n/* Fade in up - for scroll reveals */\n@keyframes fadeInUp {\n  from {\n    opacity: 0;\n    transform: translateY(30px);\n  }\n  to {\n    opacity: 1;\n    transform: translateY(0);\n  }\n}\n\n.animate-fade-in-up {\n  animation: fadeInUp 0.6s ease-out forwards;\n}\n\n/* Scale in - for icons/badges */\n@keyframes scaleIn {\n  from {\n    opacity: 0;\n    transform: scale(0.8);\n  }\n  to {\n    opacity: 1;\n    transform: scale(1);\n  }\n}\n\n.animate-scale-in {\n  animation: scaleIn 0.4s ease-out forwards;\n}\n\n/* Slide in from left */\n@keyframes slideInLeft {\n  from {\n    opacity: 0;\n    transform: translateX(-30px);\n  }\n  to {\n    opacity: 1;\n    transform: translateX(0);\n  }\n}\n\n.animate-slide-in-left {\n  animation: slideInLeft 0.5s ease-out forwards;\n}\n\n/* Respect reduced motion */\n@media (prefers-reduced-motion: reduce) {\n  *,\n  *::before,\n  *::after {\n    animation-duration: 0.01ms;\n    animation-iteration-count: 1;\n    transition-duration: 0.01ms;\n  }\n\n  .typewriter-cursor {\n    animation: none;\n    opacity: 1;\n  }\n\n  [x-reveal],\n  [data-stagger] > [data-stagger-item] {\n    opacity: 1;\n    transform: none;\n  }\n}\n\n/* Dark mode adjustments */\n.dark .hover-glow::before {\n  opacity: 0;\n}\n\n.dark .hover-glow:hover::before {\n  opacity: 0.3;\n}\n\n/* Dark mode icon visibility fix */\n/* For icons that are dark/black and invisible on dark backgrounds */\n.dark .dark-mode-icon svg,\n.dark .dark-mode-icon img {\n  filter: invert(1) brightness(2);\n}\n\n/* Alternative: Add subtle background to icon containers */\n.dark .dark-mode-icon {\n  background: rgba(255, 255, 255, 0.08);\n  border-radius: 0.5rem;\n  padding: 0.25rem;\n}\n\n/* Hover state restores some contrast */\n.dark .group:hover .dark-mode-icon svg,\n.dark .group:hover .dark-mode-icon img {\n  filter: invert(1) brightness(1.5);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/blox/all.css",
    "content": "@import \"biography.css\";\n@import \"skills.css\";\n@import \"navbar.css\";\n"
  },
  {
    "path": "modules/blox/assets/css/blox/biography.css",
    "content": ".resume-biography {\n  #profile {\n    text-align: center;\n    padding: 30px 10px;\n    position: relative;\n  }\n\n  /* Custom avatar size on homepage - size controlled by template params */\n  .avatar {\n    width: auto;\n    height: auto;\n    object-fit: cover;\n  }\n\n  .network-icon {\n    display: inline-flex;\n    flex-direction: row;\n    flex-wrap: wrap;\n    justify-content: center;\n    list-style: none;\n    padding: 0;\n    margin: 0;\n  }\n\n  #profile .network-icon {\n    margin-top: 0.5rem;\n  }\n\n  .network-icon li {\n    margin-right: 10px;\n\n    @media (max-width: 640px) {\n      /* Min 48px Lighthouse tap targets on mobile */\n      margin-right: 12px;\n    }\n  }\n\n  .network-icon li:last-of-type {\n    margin-right: 0;\n  }\n\n  .network-icon li:hover {\n    transform: scale(1.2);\n  }\n\n  .big-icon {\n    font-size: 2rem;\n  }\n\n  .ul-interests li {\n    font-size: 0.9rem;\n  }\n\n  .ul-edu li .description p.course {\n    font-size: 0.9rem;\n  }\n\n  .ul-edu li .description p.institution {\n    font-size: 0.75rem;\n  }\n\n  .network-icon .big-icon {\n    font-size: 1.5rem;\n  }\n\n  .bio-text {\n    max-width: 680px;\n  }\n}\n\n/* Modern Biography Block Enhancements */\n.resume-biography-modern {\n  /* Ensure proper stacking context for gradients and effects */\n  position: relative;\n  z-index: 1;\n}\n\n/* Ruby pronunciation styling - 2026+ modern design */\n.hb-ruby-name {\n  ruby-position: over;\n  display: ruby;\n  text-align: center;\n}\n\n.hb-ruby-name rt {\n  /* Elegant, subdued annotation text */\n  font-size: 0.45em;\n  font-weight: var(--hb-font-weight-body-bold, 600);\n  letter-spacing: 0.08em;\n  line-height: 1.2;\n\n  /* Subtle gradient text for premium feel */\n  background: linear-gradient(135deg, var(--color-gray-500) 0%, var(--color-gray-400) 100%);\n  -webkit-background-clip: text;\n  background-clip: text;\n  -webkit-text-fill-color: transparent;\n\n  /* Smooth reveal animation */\n  opacity: 0.85;\n  transition:\n    opacity 0.3s ease,\n    transform 0.3s ease;\n}\n\n.dark .hb-ruby-name rt {\n  background: linear-gradient(135deg, var(--color-gray-400) 0%, var(--color-gray-300) 100%);\n  -webkit-background-clip: text;\n  background-clip: text;\n  -webkit-text-fill-color: transparent;\n}\n\n/* Hover enhancement - subtle lift */\n.hb-ruby-name:hover rt {\n  opacity: 1;\n  transform: translateY(-1px);\n}\n\n/* CJK-optimized variant - larger annotation for CJK characters over Latin */\n.hb-ruby-name--cjk rt {\n  font-size: 0.5em;\n  font-weight: 400;\n  letter-spacing: 0.12em;\n}\n\n/* Latin-optimized variant - smaller annotation for romanization over CJK */\n.hb-ruby-name--latin rt {\n  font-size: 0.4em;\n  font-weight: var(--hb-font-weight-body-bold, 600);\n  text-transform: none;\n}\n\n/* Accessibility: respect reduced motion */\n@media (prefers-reduced-motion: reduce) {\n  .hb-ruby-name rt {\n    transition: none;\n  }\n\n  .hb-ruby-name:hover rt {\n    transform: none;\n  }\n}\n\n/* Fallback styling for browsers without ruby support */\n@supports not (display: ruby) {\n  .hb-ruby-name {\n    display: inline-block;\n  }\n\n  .hb-ruby-name rt {\n    display: block;\n    font-size: 0.6em;\n    margin-bottom: 0.25em;\n  }\n}\n\n/* Legacy class support */\n.ruby-modern {\n  ruby-position: over;\n}\n\n.ruby-modern rt {\n  font-size: 0.7em;\n  opacity: 0.8;\n  letter-spacing: 0.05em;\n}\n\n/* Enhanced backdrop blur support */\n@supports (backdrop-filter: blur(10px)) {\n  .resume-biography-modern [class*=\"backdrop-blur\"] {\n    backdrop-filter: blur(10px);\n  }\n}\n\n/* Smooth animations for all interactive elements */\n.resume-biography-modern * {\n  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n/* Enhanced focus states for accessibility */\n.resume-biography-modern a:focus-visible {\n  outline: 2px solid var(--color-primary-500);\n  outline-offset: 2px;\n  border-radius: 0.5rem;\n}\n\n/* Improved text selection styling */\n.resume-biography-modern ::selection {\n  background-color: color-mix(in oklch, var(--color-primary-200) 30%, transparent);\n  color: var(--color-primary-900);\n}\n\n.dark .resume-biography-modern ::selection {\n  background-color: color-mix(in oklch, var(--color-primary-800) 30%, transparent);\n  color: var(--color-primary-100);\n}\n\n/* Enhanced gradient text support */\n.resume-biography-modern .bg-clip-text {\n  -webkit-background-clip: text;\n  background-clip: text;\n  -webkit-text-fill-color: transparent;\n}\n\n/* Ensure text remains readable on fallback */\n@supports not (background-clip: text) {\n  .resume-biography-modern .bg-clip-text {\n    color: var(--color-neutral-900);\n  }\n\n  .dark .resume-biography-modern .bg-clip-text {\n    color: var(--color-neutral-100);\n  }\n}\n\n.avatar-wrapper {\n  position: relative;\n  /* width and height controlled by template params */\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.avatar-emoji {\n  position: absolute;\n  width: 40px;\n  height: 40px;\n  line-height: 40px;\n  border-radius: 100%;\n  bottom: 0;\n  right: 0;\n  text-align: center;\n  font-size: 20px;\n  background-color: #fff;\n  color: #000;\n  /* override parent alpha */\n  box-shadow:\n    0 10px 20px rgb(0 0 0 / 4%),\n    0 2px 6px rgb(0 0 0 / 4%),\n    0 0 1px rgb(0 0 0 / 4%);\n}\n\n.dark .avatar-emoji {\n  background-color: #000;\n  box-shadow:\n    0 10px 20px rgb(0 0 0 / 4%),\n    0 2px 6px rgb(0 0 0 / 4%),\n    0 0 1px rgb(255 255 255 / 96%);\n}\n\n/* Biography Block */\n\n.hbx-bg-gradient {\n  position: relative;\n  isolation: isolate;\n}\n\n.hbx-bg-gradient::before {\n  content: \"\";\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: -1;\n  background-attachment: fixed;\n  transition: opacity 0.5s ease-in-out;\n  opacity: 1;\n}\n\n/* Light Mode Gradient */\n.hbx-bg-gradient::before {\n  background-image:\n    radial-gradient(at 20% 25%, hsla(212, 80%, 95%, 1) 0px, transparent 50%), radial-gradient(at 75% 30%, hsla(160, 80%, 95%, 1) 0px, transparent 50%),\n    radial-gradient(at 25% 80%, hsla(280, 80%, 95%, 1) 0px, transparent 50%), radial-gradient(at 75% 85%, hsla(30, 80%, 95%, 1) 0px, transparent 50%);\n}\n\n/* Dark Mode Gradient */\n.dark .hbx-bg-gradient::before {\n  background-image:\n    radial-gradient(at 20% 25%, hsla(212, 35%, 15%, 1) 0px, transparent 50%), radial-gradient(at 75% 30%, hsla(160, 35%, 15%, 1) 0px, transparent 50%),\n    radial-gradient(at 25% 80%, hsla(280, 35%, 15%, 1) 0px, transparent 50%), radial-gradient(at 75% 85%, hsla(30, 35%, 15%, 1) 0px, transparent 50%);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/blox/navbar.css",
    "content": "/* Navigation Styles */\n\n.navbar {\n  @apply relative flex flex-wrap items-center justify-between;\n}\n\n.navbar-brand {\n  /* @apply text-black dark:text-white text-xl font-semibold; */\n  color: var(--hb-color-header-fg);\n  @apply text-xl font-semibold;\n}\n\n.navbar-brand svg {\n  @apply max-h-full max-w-full h-[1em] w-auto inline-block;\n}\n\n.navbar-brand img {\n  /* To shrink to line height, add: h-[1em] */\n  @apply max-h-full w-auto inline-block;\n}\n\n/* Ensure interactive controls show hand cursor */\n.theme-toggle,\n[data-search-toggle],\n#search-toggle,\n[data-te-collapse-init],\n.nav-dropdown > .nav-link[role=\"button\"] {\n  @apply cursor-pointer;\n}\n\n/* navbar toggler */\ninput#nav-toggle:checked + label #show-button {\n  @apply hidden;\n}\n\ninput#nav-toggle:checked + label #hide-button {\n  @apply block;\n}\n\ninput#nav-toggle:checked ~ #nav-menu {\n  @apply block;\n}\n\n#site-header.header {\n  background-color: var(--hb-color-header-bg);\n  color: var(--hb-color-header-fg);\n  @apply py-3 shadow;\n}\n\n/* navbar items */\n\n.navbar-nav {\n  @apply text-center lg:text-left;\n}\n\n.nav-link {\n  /* @apply dark:text-white block p-3 font-semibold transition lg:px-2 lg:py-3; */\n  color: var(--hb-color-header-fg);\n  @apply block p-3 font-semibold transition lg:px-2 lg:py-3;\n}\n\n.nav-link:hover {\n  color: var(--color-primary-700);\n}\n\n.dark .nav-link:hover {\n  color: var(--color-primary-300);\n}\n\n.nav-dropdown {\n  @apply mr-0;\n}\n\n.nav-dropdown > svg {\n  @apply pointer-events-none;\n}\n\n.nav-dropdown-list {\n  @apply bg-white dark:bg-slate-900 z-10 min-w-[180px] rounded py-4 shadow hidden lg:invisible lg:absolute lg:block lg:opacity-0;\n  /* Ensure dropdown appears above content and under header */\n  top: 100%;\n  left: 0;\n}\n\n.nav-dropdown.active .nav-dropdown-list {\n  @apply block lg:visible lg:opacity-100;\n}\n\n/* Ensure hover opens dropdown in desktop (CSS-driven) */\n@media (min-width: 1024px) {\n  .nav-dropdown:hover > .nav-dropdown-list {\n    @apply visible opacity-100;\n  }\n}\n\n.nav-dropdown-item {\n  @apply px-4 [&:not(:last-child)]:mb-2;\n}\n\n.dark .nav-dropdown-item:hover {\n  background-color: var(--color-primary-500);\n}\n\n.nav-dropdown-link {\n  @apply dark:text-white dark:hover:text-white block py-1 font-semibold transition;\n}\n\n.nav-dropdown-link:hover {\n  color: var(--color-primary-700);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/blox/skills.css",
    "content": "/*************************************************\n *  Hugo Blox: Skills\n **************************************************/\n\n/* MOVED TO HTML */\n/* .skill-group-title { */\n/*  display: inline-block; */\n/*  margin-bottom: 15px; */\n/*  padding-bottom: 5px; */\n/*  border-bottom: 2px solid #c7c7c7; */\n/*  font-size: 1rem; */\n/*  line-height: 30px; */\n/*  font-weight: 600; */\n/*  text-transform: uppercase; */\n/*  letter-spacing: 1px; */\n/* } */\n\n.skills-content {\n  margin-bottom: 15px;\n}\n\n.skills-name {\n  margin-bottom: 6px;\n  /* color: #888; */ /* Inaccessible */\n  font-size: 1rem;\n  letter-spacing: 1px;\n  text-transform: uppercase;\n}\n\n/* .dark .skills-name { */\n/*  color: #eee; */\n/* } */\n\n.skills-description {\n  margin-bottom: 6px;\n  font-size: 0.7rem;\n  text-transform: none;\n}\n\n.skills-icon {\n  margin-right: 0.5em;\n}\n\n.skills-wrapper {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n  height: 10px;\n  border: 1px solid var(--color-primary-200, #cbd5f5);\n  border-radius: 10px;\n}\n\n.skills-percent {\n  position: absolute;\n  width: 60%;\n  height: 10px;\n  background-color: var(--color-primary-600, #2563eb);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/chroma.css",
    "content": "@import \"./libs/chroma/light.css\";\n@import \"./libs/chroma/dark.css\";\n\n/* Code Blocks: Apply theme background */\n/* Requires relative position for Code Copy button */\n.prose .chroma,\n.prose pre {\n  @apply relative rounded-md;\n\n  color: var(--color-neutral-700);\n  background-color: var(--color-neutral-50);\n}\n\n.dark .prose .chroma,\n.dark .prose pre {\n  color: white;\n  background-color: rgb(71 85 105); /* slate-700 equivalent */\n}\n\n/* Fix LaTeX/TeX math rendering in code blocks - prevent inheriting italic from Chroma in dark mode */\n.chroma .language-latex,\n.chroma .language-latex *,\n.chroma .language-tex,\n.chroma .language-tex * {\n  /* biome-ignore lint/complexity/noImportantStyles: Required to override Chroma's default italic for LaTeX/TeX */\n  font-style: normal !important;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/color-utilities.css",
    "content": "/* Hugo Blox Custom Color Utilities for Tailwind v4 */\n/* \n * Standard color utilities (bg-*, text-*, border-*, hover:*, dark:*, from-*, to-*, etc.) \n * are automatically generated by Tailwind v4 from colors defined in @theme block.\n * \n * This file only contains custom utilities not auto-generated by Tailwind.\n */\n\n@layer utilities {\n  /* Custom Hugo Blox Dark Color */\n  .bg-hb-dark {\n    background-color: var(--color-hb-dark, rgb(23 24 28));\n  }\n  .text-hb-dark {\n    color: var(--color-hb-dark, rgb(23 24 28));\n  }\n  .border-hb-dark {\n    border-color: var(--color-hb-dark, rgb(23 24 28));\n  }\n\n  /* Dark mode variants */\n  .dark\\:bg-hb-dark:where(.dark, .dark *) {\n    background-color: var(--color-hb-dark, rgb(23 24 28));\n  }\n  .dark\\:text-hb-dark:where(.dark, .dark *) {\n    color: var(--color-hb-dark, rgb(23 24 28));\n  }\n}\n\n/* \n * Available Auto-Generated Utilities (from @theme colors):\n * \n * Standard Colors: gray, slate, zinc, neutral, stone\n * Theme Colors: primary, secondary (overridden by theme files)\n * \n * Auto-generated utilities include:\n * - Background: .bg-{color}-{shade}\n * - Text: .text-{color}-{shade}  \n * - Border: .border-{color}-{shade}\n * - Hover: .hover:bg-{color}-{shade}, .hover:text-{color}-{shade}\n * - Dark: .dark:bg-{color}-{shade}, .dark:text-{color}-{shade}\n * - Gradients: .from-{color}-{shade}, .to-{color}-{shade}\n * - Focus: .focus:ring-{color}-{shade}\n * - And all other Tailwind color variants\n * \n * Shades: 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950\n */\n"
  },
  {
    "path": "modules/blox/assets/css/components/all.css",
    "content": "@import \"page.css\";\n@import \"task-list.css\";\n@import \"copy.css\";\n@import \"sidebar-left.css\";\n@import \"charts.css\";\n@import \"steps.css\";\n@import \"cards.css\";\n@import \"math.css\";\n@import \"notebook.css\";\n@import \"author-notes.css\";\n@import \"glassmorphism.css\";\n@import \"cover.css\";\n"
  },
  {
    "path": "modules/blox/assets/css/components/author-notes.css",
    "content": "/* Author Notes Tooltip Styles */\n\n/* Hide elements with x-cloak until Alpine.js initializes */\n[x-cloak] {\n  /* biome-ignore lint/complexity/noImportantStyles: Required to reliably hide until Alpine initializes */\n  display: none !important;\n}\n\n/* Ensure tooltip appears above other content */\n.author-notes-tooltip {\n  z-index: 9999;\n}\n\n/* Smooth hover effect for the info icon */\n.author-notes {\n  @apply inline-flex items-center justify-center;\n  @apply transition-all duration-200 ease-in-out;\n}\n\n/* Focus styles for accessibility */\n.author-notes:focus {\n  @apply outline-none ring-2 ring-primary-500 ring-offset-2 rounded-full;\n}\n\n/* Additional responsive styles for mobile */\n@media (max-width: 640px) {\n  /* On mobile, tooltips should be wider if needed */\n  .author-notes-tooltip {\n    white-space: normal;\n    max-width: 200px;\n  }\n}\n\n/* Print styles - show author notes inline when printing */\n@media print {\n  .author-notes {\n    display: none;\n  }\n\n  /* Show author notes as superscript numbers in print */\n  .author-notes::after {\n    display: inline;\n    content: attr(data-tooltip);\n    vertical-align: super;\n    font-size: 0.75em;\n    margin-left: 0.25em;\n  }\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/cards.css",
    "content": ":root {\n  --hb-cols: 2;\n}\n\n.hb-cards {\n  grid-template-columns: repeat(auto-fill, minmax(max(250px, calc((100% - 1rem * 2) / var(--hb-cols))), 1fr));\n}\n\n.hb-card {\n  @apply flex flex-col justify-start overflow-hidden rounded-lg border border-gray-200 text-current no-underline dark:shadow-transparent hover:shadow-gray-100 dark:hover:shadow-transparent shadow-gray-100 active:shadow-sm active:shadow-gray-200 transition-all duration-200;\n  @apply hover:border-gray-300 bg-transparent shadow-sm hover:bg-slate-50 hover:shadow-md;\n\n  border-color: var(--color-neutral-700);\n}\n\n.dark .hb-card {\n  border-color: var(--color-neutral-700);\n}\n\n.dark .hb-card:hover {\n  border-color: var(--color-neutral-600);\n  background-color: var(--color-neutral-800);\n}\n\n.hb-card-title {\n  @apply flex font-semibold gap-2 text-gray-700 hover:text-gray-900 items-center;\n\n  color: var(--color-neutral-700);\n}\n\n.hb-card-title:hover {\n  color: var(--color-neutral-900);\n}\n\n.dark .hb-card-title {\n  color: var(--color-neutral-200);\n}\n\n.dark .hb-card-title:hover {\n  color: var(--color-neutral-50);\n}\n\n.hb-card-subtitle {\n  @apply line-clamp-3 text-sm font-normal text-gray-500 dark:text-gray-400 px-4 mb-4 mt-2;\n}\n\n.hb-card svg {\n  color: var(--color-neutral-700);\n  width: 1.5rem;\n  transition: color 0.3s ease;\n}\n\n.hb-card:hover svg {\n  color: currentcolor;\n}\n\n.hb-card p {\n  margin-top: 0.5rem;\n}\n\n.dark .hb-card svg {\n  color: var(--color-neutral-300);\n}\n\n.dark .hb-card:hover svg {\n  color: currentcolor;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/charts.css",
    "content": "/* Mermaid.js diagram div */\ndiv.mermaid {\n  width: 100%;\n  margin-bottom: 1rem;\n\n  svg {\n    margin-left: auto;\n    margin-right: auto;\n  }\n}\n\n/* Plotly chart */\ndiv.chart {\n  max-width: 100%;\n  margin-left: auto;\n  margin-right: auto;\n  margin-bottom: 1rem;\n\n  /* Add horizontal scroll on mobile since Plotly */\n  overflow-x: auto;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/copy.css",
    "content": "/* Code Copy */\n\n/* Hugo's Code Block Wrapper Class */\n\n.highlight {\n  @apply relative z-0;\n}\n\n.copy-button {\n  @apply invisible absolute right-0 top-0 z-10 w-20 py-1 cursor-pointer font-mono text-sm whitespace-nowrap rounded-bl-md rounded-tr-md bg-neutral-200 text-neutral-700 opacity-90 dark:bg-neutral-600 dark:text-neutral-200;\n}\n\n/* Copy Button */\n\n.highlight:hover > .copy-button {\n  @apply visible;\n}\n\n.copy-button:hover,\n.copy-button:focus,\n.copy-button:active,\n.copy-button:active:hover {\n  background-color: var(--color-primary-100);\n}\n\n.dark .copy-button:hover,\n.dark .copy-button:focus,\n.dark .copy-button:active,\n.dark .copy-button:active:hover {\n  background-color: var(--color-primary-600);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/cover.css",
    "content": "/**\n * Article Cover Component Styles\n * Notion-inspired page cover with icon overlay\n */\n\n.article-cover {\n  @apply relative w-full;\n  /* Height is set inline via style attribute, but ensure it displays */\n  min-height: 200px;\n  /* Allow icon to overflow bottom */\n  overflow: visible;\n  /* Add margin for overlapping icon */\n  margin-bottom: 2.5rem;\n\n  /* Responsive height adjustments for mobile */\n  @media (max-width: 768px) {\n    height: 240px;\n    min-height: 240px;\n  }\n}\n\n/* Cover image container */\n.article-cover img {\n  @apply w-full h-full object-cover;\n}\n\n/* Cover icon container base styles */\n.article-cover-icon {\n  @apply flex items-center justify-center w-full h-full;\n  transition: transform 0.2s ease-in-out;\n}\n\n.article-cover-icon:hover {\n  @apply scale-105;\n}\n\n/* Glass morphism effect for icons */\n.article-cover-icon.glass {\n  background: rgba(255, 255, 255, 0.9);\n  backdrop-filter: blur(12px) saturate(180%);\n  border: 1px solid rgba(255, 255, 255, 0.3);\n  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);\n}\n\n.dark .article-cover-icon.glass {\n  background: rgba(0, 0, 0, 0.7);\n  border-color: rgba(255, 255, 255, 0.1);\n}\n\n/* Fade effect styles */\n.article-cover-fade {\n  @apply absolute left-0 right-0 pointer-events-none;\n  bottom: -1px;\n  background: linear-gradient(to bottom, transparent, white);\n}\n\n.dark .article-cover-fade {\n  background: linear-gradient(to bottom, transparent, rgb(15, 23, 42));\n}\n\n/* Style variants */\n.article-cover[data-cover-style=\"minimal\"] {\n  @apply shadow-sm;\n}\n\n.article-cover[data-cover-style=\"glass\"] {\n  @apply overflow-visible;\n}\n\n.article-cover[data-cover-style=\"gradient\"] {\n  /* Applied via inline overlay divs */\n}\n\n/* Ensure cover works well with dark mode */\n.dark .article-cover {\n  @apply border-b border-gray-800;\n}\n\n/* Caption styles */\n.article-cover .cover-caption {\n  @apply absolute bottom-4 left-4 right-4 text-sm text-white/90;\n  @apply bg-black/50 backdrop-blur-sm px-3 py-2 rounded-lg;\n}\n\n/* Responsive adjustments */\n@media (max-width: 640px) {\n  .article-cover-icon {\n    @apply scale-90;\n  }\n}\n\n/* Parallax effect support (optional feature) */\n.article-cover.parallax {\n  transform-style: preserve-3d;\n}\n\n.article-cover.parallax img {\n  transform: translateZ(-1px) scale(1.5);\n}\n\n/* Link hover effect if cover is clickable */\n.article-cover a {\n  @apply block w-full h-full;\n}\n\n.article-cover a:hover img {\n  @apply scale-105 transition-transform duration-500;\n}\n\n/* Print styles - show cover but optimize */\n@media print {\n  .article-cover {\n    max-height: 200px;\n    page-break-after: avoid;\n  }\n\n  .article-cover-fade,\n  .article-cover-icon {\n    @apply hidden;\n  }\n}\n\n/* Accessibility: Reduced motion */\n@media (prefers-reduced-motion: reduce) {\n  .article-cover,\n  .article-cover *,\n  .article-cover-icon {\n    animation: none;\n    transition: none;\n  }\n\n  .article-cover.parallax img {\n    transform: none;\n  }\n}\n\n/* High contrast mode support */\n@media (prefers-contrast: high) {\n  .article-cover-icon {\n    @apply border-2 border-current;\n  }\n\n  .article-cover .cover-caption {\n    @apply bg-black text-white;\n  }\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/glassmorphism.css",
    "content": "/**\n * 2025 Hugo Blox Glassmorphism Utility Classes\n *\n * Modern glassmorphism effects for Hugo Blox CTA cards and other components\n */\n\n/* ==========================================================================\n   Glassmorphism Base Classes\n   ========================================================================== */\n\n.glassmorphism-primary {\n  @apply relative overflow-hidden;\n  background: linear-gradient(\n    135deg,\n    color-mix(in oklch, var(--color-primary-500) 90%, transparent),\n    color-mix(in oklch, var(--color-primary-600) 95%, transparent),\n    color-mix(in oklch, var(--color-primary-700) 90%, transparent)\n  );\n  backdrop-filter: blur(20px);\n  -webkit-backdrop-filter: blur(20px);\n}\n\n.glassmorphism-primary::before {\n  content: \"\";\n  @apply absolute inset-0 pointer-events-none;\n  background: linear-gradient(45deg, rgb(0 0 0 / 0.1), transparent, rgb(255 255 255 / 0.1));\n  mix-blend-mode: overlay;\n}\n\n.glassmorphism-secondary {\n  @apply relative overflow-hidden;\n  background: linear-gradient(\n    135deg,\n    color-mix(in oklch, var(--color-secondary-500) 90%, transparent),\n    color-mix(in oklch, var(--color-secondary-600) 95%, transparent),\n    color-mix(in oklch, var(--color-secondary-700) 90%, transparent)\n  );\n  backdrop-filter: blur(20px);\n  -webkit-backdrop-filter: blur(20px);\n}\n\n.glassmorphism-secondary::before {\n  content: \"\";\n  @apply absolute inset-0 pointer-events-none;\n  background: linear-gradient(45deg, rgb(0 0 0 / 0.1), transparent, rgb(255 255 255 / 0.1));\n  mix-blend-mode: overlay;\n}\n\n.glassmorphism-dark {\n  @apply relative overflow-hidden;\n  background: linear-gradient(135deg, rgb(0 0 0 / 0.7), rgb(31 41 55 / 0.8), rgb(0 0 0 / 0.9));\n  backdrop-filter: blur(20px);\n  -webkit-backdrop-filter: blur(20px);\n}\n\n.glassmorphism-dark::before {\n  content: \"\";\n  @apply absolute inset-0 pointer-events-none;\n  background: linear-gradient(45deg, rgb(255 255 255 / 0.05), transparent, rgb(255 255 255 / 0.1));\n  mix-blend-mode: overlay;\n}\n\n.glassmorphism-light {\n  @apply relative overflow-hidden;\n  background: linear-gradient(135deg, rgb(255 255 255 / 0.9), rgb(248 250 252 / 0.95), rgb(241 245 249 / 0.9));\n  backdrop-filter: blur(20px);\n  -webkit-backdrop-filter: blur(20px);\n}\n\n.glassmorphism-light::before {\n  content: \"\";\n  @apply absolute inset-0 pointer-events-none;\n  background: linear-gradient(45deg, rgb(0 0 0 / 0.02), transparent, rgb(255 255 255 / 0.05));\n  mix-blend-mode: overlay;\n}\n\n/* ==========================================================================\n   Noise Texture Classes (when used as background image)\n   ========================================================================== */\n\n.noise-texture {\n  position: relative;\n}\n\n.noise-texture::after {\n  content: \"\";\n  @apply absolute inset-0 pointer-events-none;\n  background-image: url(\"/media/textures/noise-pattern.svg\");\n  background-size: 100px 100px;\n  background-repeat: repeat;\n  opacity: 0.03;\n  mix-blend-mode: multiply;\n}\n\n.dark .noise-texture::after {\n  mix-blend-mode: screen;\n  opacity: 0.02;\n}\n\n/* ==========================================================================\n   Enhanced Ring Classes for 2025 Design\n   ========================================================================== */\n\n.glass-ring {\n  @apply ring-1 ring-white/20 hover:ring-white/40 dark:ring-gray-700/50 dark:hover:ring-gray-600/70;\n}\n\n.glass-shadow {\n  box-shadow:\n    0 25px 50px -12px rgb(0 0 0 / 0.25),\n    0 0 0 1px rgb(255 255 255 / 0.1),\n    inset 0 1px 0 rgb(255 255 255 / 0.1);\n}\n\n.dark .glass-shadow {\n  box-shadow:\n    0 25px 50px -12px rgb(0 0 0 / 0.5),\n    0 0 0 1px rgb(255 255 255 / 0.05),\n    inset 0 1px 0 rgb(255 255 255 / 0.05);\n}\n\n/* ==========================================================================\n   CTA Card Glassmorphism Overlay (works with section backgrounds)\n   ========================================================================== */\n\n.cta-glassmorphism {\n  @apply relative;\n\n  /* Dynamic overlay opacity control */\n  --glassmorphism-opacity: 0.15;\n\n  /* Subtle overlay tint that works with any background */\n  background: linear-gradient(\n    135deg,\n    rgb(255 255 255 / var(--glassmorphism-opacity)) 0%,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.5)) 50%,\n    rgb(255 255 255 / var(--glassmorphism-opacity)) 100%\n  );\n\n  /* Enhanced glassmorphism effects */\n  backdrop-filter: blur(20px) saturate(1.2);\n  -webkit-backdrop-filter: blur(20px) saturate(1.2);\n\n  /* Modern border and shadow for light mode */\n  border: 1px solid rgb(255 255 255 / calc(var(--glassmorphism-opacity) + 0.1));\n  box-shadow:\n    0 32px 64px -12px rgb(0 0 0 / 0.25),\n    inset 0 1px 0 rgb(255 255 255 / calc(var(--glassmorphism-opacity) + 0.05));\n}\n\n.cta-glassmorphism:hover {\n  /* Enhanced hover state */\n  background: linear-gradient(\n    135deg,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) + 0.05)) 0%,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.7)) 50%,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) + 0.05)) 100%\n  );\n\n  border: 1px solid rgb(255 255 255 / calc(var(--glassmorphism-opacity) + 0.2));\n  box-shadow:\n    0 40px 80px -16px rgb(0 0 0 / 0.3),\n    inset 0 1px 0 rgb(255 255 255 / calc(var(--glassmorphism-opacity) + 0.1));\n}\n\n/* Dark mode adjustments for CTA glassmorphism */\n.dark .cta-glassmorphism {\n  background: linear-gradient(\n    135deg,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.5)) 0%,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.25)) 50%,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.5)) 100%\n  );\n\n  border: 1px solid rgb(255 255 255 / var(--glassmorphism-opacity));\n  box-shadow:\n    0 32px 64px -12px rgb(0 0 0 / 0.4),\n    inset 0 1px 0 rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.5));\n}\n\n.dark .cta-glassmorphism:hover {\n  background: linear-gradient(\n    135deg,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.75)) 0%,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.4)) 50%,\n    rgb(255 255 255 / calc(var(--glassmorphism-opacity) * 0.75)) 100%\n  );\n\n  border: 1px solid rgb(255 255 255 / calc(var(--glassmorphism-opacity) + 0.05));\n}\n\n/* ==========================================================================\n   CTA Button Glassmorphism (nested within CTA cards)\n   ========================================================================== */\n\n.cta-glassmorphism .group {\n  /* Ensure proper text contrast in light mode */\n  color: var(--color-gray-900);\n}\n\n.dark .cta-glassmorphism .group {\n  /* Maintain white text in dark mode */\n  color: var(--color-gray-100);\n}\n\n/* Enhanced button glassmorphism for light mode visibility */\n.cta-glassmorphism .group > div:first-child {\n  /* Light mode button background */\n  background: rgb(255 255 255 / 0.9);\n  border: 1px solid rgb(0 0 0 / 0.1);\n  box-shadow:\n    0 10px 25px -5px rgb(0 0 0 / 0.1),\n    0 4px 6px -2px rgb(0 0 0 / 0.1),\n    inset 0 1px 0 rgb(255 255 255 / 0.3);\n}\n\n.dark .cta-glassmorphism .group > div:first-child {\n  /* Dark mode button background */\n  background: rgb(0 0 0 / 0.4);\n  border: 1px solid rgb(255 255 255 / 0.2);\n  box-shadow:\n    0 10px 25px -5px rgb(0 0 0 / 0.3),\n    0 4px 6px -2px rgb(0 0 0 / 0.2),\n    inset 0 1px 0 rgb(255 255 255 / 0.1);\n}\n\n.cta-glassmorphism .group:hover > div:first-child {\n  background: rgb(255 255 255);\n  border: 1px solid rgb(0 0 0 / 0.15);\n  box-shadow:\n    0 20px 40px -8px rgb(0 0 0 / 0.15),\n    0 8px 12px -4px rgb(0 0 0 / 0.1),\n    inset 0 1px 0 rgb(255 255 255 / 0.4);\n}\n\n.dark .cta-glassmorphism .group:hover > div:first-child {\n  background: rgb(0 0 0 / 0.6);\n  border: 1px solid rgb(255 255 255 / 0.3);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/math.css",
    "content": "/* Prevent long equations overflowing on small screens by scrolling horizontally instead. */\n.katex-display {\n  overflow: auto hidden;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/notebook.css",
    "content": ".hb-notebook {\n  --hb-notebook-output-max-height: 26rem;\n  @apply relative isolate my-10 rounded-3xl border border-zinc-200/70 bg-white/90 p-6 shadow-xl shadow-primary-500/5 transition-shadow duration-300;\n  @apply dark:border-zinc-800/70 dark:bg-zinc-900/70 dark:shadow-black/30 text-zinc-800 dark:text-zinc-50;\n}\n\n.hb-notebook::after {\n  content: \"\";\n  @apply pointer-events-none absolute inset-0 rounded-3xl bg-gradient-to-r from-primary-500/5 via-transparent to-secondary-500/5 opacity-0 transition-opacity duration-300;\n}\n\n.hb-notebook:hover::after {\n  @apply opacity-100;\n}\n\n.hb-notebook--dense {\n  @apply p-4;\n}\n\n.hb-notebook-header {\n  @apply flex flex-wrap items-start justify-between gap-4 border-b border-zinc-200/70 pb-4 dark:border-zinc-800/70;\n}\n\n.hb-notebook-heading {\n  @apply space-y-1;\n}\n\n.hb-notebook-title {\n  @apply text-lg font-semibold text-zinc-900 dark:text-white tracking-tight;\n}\n\n.hb-notebook-subtitle {\n  @apply text-sm font-medium text-zinc-500 dark:text-zinc-400;\n}\n\n.hb-notebook-download {\n  @apply inline-flex items-center gap-2 rounded-full border border-primary-500/70 px-4 py-2 text-sm font-medium text-primary-600 no-underline transition-all duration-200;\n  @apply hover:-translate-y-0.5 hover:bg-primary-50/60 hover:text-primary-700 dark:text-primary-300 dark:border-primary-400/60 dark:hover:bg-primary-500/10;\n}\n\n.hb-notebook-download svg {\n  @apply h-4 w-4;\n}\n\n.hb-notebook-metadata {\n  @apply mt-4 grid gap-3 rounded-2xl border border-dashed border-zinc-200/70 px-4 py-3 text-sm;\n  @apply dark:border-zinc-800/70;\n  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));\n}\n\n.hb-notebook-metadata dt {\n  @apply text-xs uppercase tracking-wide text-zinc-500 dark:text-zinc-400;\n}\n\n.hb-notebook-metadata dd {\n  @apply font-medium text-zinc-800 dark:text-zinc-100;\n}\n\n.hb-notebook-body {\n  @apply mt-6 flex flex-col gap-5;\n}\n\n.hb-notebook-cell {\n  @apply rounded-2xl border border-zinc-200/70 bg-white p-4 shadow-sm shadow-zinc-200/60 transition-all duration-200;\n  @apply dark:border-zinc-800/60 dark:bg-zinc-900/70 dark:shadow-none;\n}\n\n.hb-notebook-cell--markdown {\n  @apply bg-gradient-to-br from-white via-white to-primary-50/40 dark:from-zinc-900 dark:via-zinc-900 dark:to-primary-900/10;\n}\n\n.hb-notebook-cell-header {\n  @apply mb-3 flex flex-wrap items-center gap-3;\n}\n\n.hb-notebook-pill {\n  @apply inline-flex items-center rounded-full bg-zinc-100 px-3 py-1 text-xs font-semibold uppercase tracking-wide text-zinc-600;\n  @apply dark:bg-zinc-800 dark:text-zinc-300;\n}\n\n.hb-notebook-tags {\n  @apply flex flex-wrap gap-1;\n}\n\n.hb-notebook-tags span {\n  @apply inline-flex items-center rounded-full bg-primary-100/80 px-2 py-0.5 text-[11px] font-medium text-primary-700;\n  @apply dark:bg-primary-400/20 dark:text-primary-200;\n}\n\n.hb-notebook-code {\n  @apply overflow-hidden rounded-2xl border border-zinc-900/10 bg-zinc-950/95 shadow-inner shadow-black/30;\n}\n\n.hb-notebook-code pre {\n  @apply m-0 overflow-auto rounded-2xl p-5 text-sm leading-relaxed;\n}\n\n.hb-notebook-markdown {\n  @apply prose-h1:text-2xl prose-h2:text-xl prose-p:leading-relaxed prose-a:text-primary-600 max-w-none;\n}\n\n.hb-notebook-raw {\n  @apply rounded-xl border border-dashed border-zinc-300/80 bg-zinc-50 p-4 font-mono text-sm text-zinc-700;\n  @apply dark:border-zinc-700 dark:bg-zinc-900 dark:text-zinc-200 overflow-auto;\n}\n\n.hb-notebook-outputs {\n  @apply mt-4 space-y-3 rounded-2xl border border-zinc-100/80 bg-zinc-50/80 p-4;\n  @apply dark:border-zinc-800/60 dark:bg-zinc-900/50;\n}\n\n.hb-notebook-output {\n  @apply overflow-auto rounded-xl border border-transparent bg-white/90 p-3 text-sm leading-relaxed text-zinc-700;\n  @apply dark:bg-zinc-950/50 dark:text-zinc-100;\n  max-height: var(--hb-notebook-output-max-height, 26rem);\n}\n\n.hb-notebook-output--stream {\n  @apply font-mono bg-zinc-900 text-zinc-100;\n}\n\n.hb-notebook-output--error {\n  @apply border-red-200 bg-red-50/90 text-red-700 dark:border-red-500/30 dark:bg-red-500/10 dark:text-red-200;\n}\n\n.hb-notebook-output--image {\n  @apply bg-transparent p-0 border-none;\n}\n\n.hb-notebook-output--image img,\n.hb-notebook-output--image svg {\n  @apply h-auto w-full rounded-xl border border-zinc-100/80 bg-white object-contain dark:border-zinc-800/60 dark:bg-zinc-900;\n}\n\n.hb-notebook-output--markdown {\n  @apply bg-transparent p-0 border-none;\n}\n\n.hb-notebook-output pre {\n  @apply m-0;\n}\n\n.hb-notebook-output code {\n  @apply font-mono text-sm;\n}\n\n.hb-notebook-empty {\n  @apply mt-4 rounded-2xl border border-dashed border-zinc-300/70 bg-zinc-50/80 px-4 py-3 text-center text-sm text-zinc-500;\n  @apply dark:border-zinc-700 dark:bg-zinc-900/40 dark:text-zinc-300;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/page.css",
    "content": "/* Page layout to push footer to bottom of page */\n\n.page-wrapper {\n  /* Min height = viewport height - navbar height */\n  min-height: 100vh;\n  display: grid;\n  grid-template-rows: auto 1fr auto;\n  grid-template-columns: 100%;\n}\n\n.page-header,\n.page-footer {\n  flex-shrink: 0;\n}\n\n.page-body {\n  flex-grow: 1;\n}\n\n.article-header {\n  position: relative; /* Required for caption positioning */\n  clear: both;\n}\n\n.article-banner {\n  width: 100%;\n  height: 260px;\n  object-fit: cover;\n\n  /* @include media-breakpoint-up(lg) { */\n  /*  height: 310px; !* Increased height on desktop *! */\n  /* } */\n}\n\n.featured-image-wrapper {\n  position: relative;\n  padding-left: 0; /* Override container padding. */\n  padding-right: 0; /* Override container padding. */\n}\n\n.featured-image {\n  position: relative;\n  width: 100%;\n  display: block;\n  margin: 0 auto;\n}\n\n.article-header-caption {\n  position: absolute;\n  bottom: 0;\n  right: 0;\n  margin: 0 auto;\n  padding: 2px 5px;\n  color: #fff;\n  font-size: 0.7em;\n  background: #000;\n  text-align: right;\n  z-index: 5;\n  opacity: 0.65;\n  border-radius: 5px 0 0;\n}\n\n@media (min-width: 64em) {\n  .article-header-caption {\n    padding: 5px 10px;\n  }\n}\n\n.article-header-caption a {\n  color: #fff;\n  text-decoration: none;\n}\n\n#page-bg {\n  position: fixed;\n  left: 0;\n  right: 0;\n  height: 100%;\n  width: 100%;\n  z-index: -1;\n  display: block;\n}\n\n.backlink {\n  @apply text-xs font-medium text-gray-500 hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-100 contrast-more:text-gray-800 contrast-more:dark:text-gray-50;\n}\n\n/* For ToC shortcode, Spoiler shortcode, and direct HTML Details snippets. */\ndetails > summary {\n  @apply cursor-pointer font-semibold;\n\n  color: var(--color-primary-700);\n}\n\n.dark details > summary {\n  color: var(--color-primary-300);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/sidebar-left.css",
    "content": "/* Match Tailwind lg (default 1024px): https://tailwindcss.com/docs/screens */\n@media (max-width: 1024px) {\n  .hb-sidebar-container {\n    @apply fixed top-0 w-full bottom-0 z-[15] pt-[calc(var(--navbar-height))] overscroll-contain;\n\n    contain: layout style;\n    transition: transform 0.8s cubic-bezier(0.52, 0.16, 0.04, 1);\n    will-change: transform, opacity;\n    backface-visibility: hidden;\n  }\n}\n\n.hb-sidebar-container {\n  @apply flex flex-col print:hidden lg:top-16 lg:shrink-0 lg:w-64 lg:self-start;\n\n  li > div {\n    @apply h-0;\n  }\n\n  li.open > div {\n    @apply h-auto pt-1;\n  }\n\n  li.open > a > span > svg > path {\n    @apply rotate-90;\n  }\n}\n\n.hb-sidebar-list {\n  @apply relative flex flex-col gap-1 before:absolute before:inset-y-1 before:w-px before:bg-gray-200 before:content-[\"\"] ltr:ml-3 ltr:pl-3 ltr:before:left-0 rtl:mr-3 rtl:pr-3 rtl:before:right-0;\n}\n\n.hb-sidebar-list::before {\n  background-color: var(--color-neutral-200);\n}\n\n.dark .hb-sidebar-list::before {\n  background-color: var(--color-neutral-700);\n}\n\n.hb-scrollbar {\n  @apply overflow-y-auto overflow-x-hidden p-4 grow;\n\n  scrollbar-width: thin;\n  scrollbar-color: oklch(55.55% 0 0 / 40%) transparent;\n  scrollbar-gutter: stable;\n\n  &::-webkit-scrollbar {\n    @apply w-3 h-3;\n  }\n\n  &::-webkit-scrollbar-track {\n    @apply bg-transparent;\n  }\n\n  &::-webkit-scrollbar-thumb {\n    @apply rounded-[10px];\n  }\n\n  &:hover::-webkit-scrollbar-thumb {\n    border: 3px solid transparent;\n    background-color: var(--tw-shadow-color);\n    background-clip: content-box;\n    @apply shadow-neutral-500/20 hover:shadow-neutral-500/40;\n  }\n}\n\n.hb-docs-link {\n  @apply flex rounded px-2 py-1.5 text-sm transition-colors [word-break:break-word] cursor-pointer [-webkit-tap-highlight-color:transparent] [-webkit-touch-callout:none] gap-2 before:opacity-25 before:content-['#'] text-gray-500 hover:bg-gray-100 hover:text-gray-900 dark:text-gray-300 dark:hover:text-gray-50;\n}\n\n.dark .hb-docs-link:hover {\n  background-color: color-mix(in oklch, var(--color-primary-100) 5%, transparent);\n}\n\n.hb-sidebar-mobile-menu {\n  @apply [transition:background-color_0.5s_ease];\n}\n\n.hb-sidebar-mobile-toc {\n  @apply flex flex-col gap-1 relative before:absolute before:inset-y-1 before:w-px before:bg-gray-200 before:content-[\"\"] ltr:pl-3 ltr:before:left-0 rtl:pr-3 rtl:before:right-0 ltr:ml-3 rtl:mr-3;\n}\n\n.hb-sidebar-mobile-toc::before {\n  background-color: var(--color-neutral-200);\n}\n\n.dark .hb-sidebar-mobile-toc::before {\n  background-color: var(--color-neutral-800);\n}\n\n.hb-sidebar-custom-link {\n  @apply flex items-center justify-between gap-2 cursor-pointer rounded px-2 py-1.5 text-sm transition-colors [-webkit-tap-highlight-color:transparent] [-webkit-touch-callout:none] [word-break:break-word];\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/steps.css",
    "content": ".hb-steps {\n  @apply ml-4 mb-12 pl-6 border-l border-gray-200 [counter-reset:hb_step];\n\n  border-left-color: var(--color-neutral-200);\n}\n\n.dark .hb-steps {\n  border-left-color: var(--color-neutral-600);\n}\n\n.hb-steps h3 {\n  counter-increment: hb-step;\n\n  &::before {\n    @apply absolute w-[33px] h-[33px];\n    @apply rounded-full border-4 border-white dark:border-slate-300;\n    @apply bg-gray-100 dark:bg-hb-dark;\n    @apply text-base font-normal text-center -indent-px;\n    @apply mt-[3px] ml-[-41px];\n\n    color: var(--color-neutral-700);\n    content: counter(hb-step);\n  }\n}\n\n.dark .hb-steps h3::before {\n  color: var(--color-neutral-200);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/components/task-list.css",
    "content": "/* HugoBlox Kit - https://hugoblox.com\n * Task List Component\n * License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md\n */\n\nul.task-list {\n  list-style: none;\n}\n\nul.task-list li input[type=\"checkbox\"] {\n  margin-right: 0.5rem;\n}\n\nul.task-list input[type=\"checkbox\"]:checked {\n  appearance: none;\n  width: 1em;\n  height: 1em;\n  border: none;\n  background: initial;\n  position: relative;\n}\n\nul.task-list input[type=\"checkbox\"]:not(:checked) {\n  width: 0.9em;\n  height: 0.9em;\n}\n\nul.task-list input[type=\"checkbox\"]:checked::after {\n  content: \"✅\";\n}\n"
  },
  {
    "path": "modules/blox/assets/css/config/safelist.css",
    "content": "/* Safelist patterns for dynamic classes */\n/* Note: In v4, we use @source inline to ensure these are included */\n/* This ensures Tailwind generates these classes even if not found in templates */\n\n/* Inline safelist for classes used in dynamic content and YAML configuration */\n/* Includes search modal Quick Actions dynamic color classes */\n@source inline(\"<div class='block hidden dark:block dark:hidden'></div><div class='task-list'></div><div class='pl-4 pl-8 pl-12'></div><div class='min-h-screen'></div><div class='border-l-2 border-primary-600 bg-primary-50 dark:bg-primary-900/20'></div><div class='overflow-hidden animate-pulse animate-float animate-rotate-slow'></div><div class='blur-2xl blur-3xl -z-10'></div><div class='top-0 bottom-0 left-0 right-0 left-1/4 right-1/4 left-1/2 right-1/2 left-1/3 right-1/3'></div><div class='w-64 w-72 w-80 w-96 h-64 h-72 h-80 h-96 h-48 h-56 rounded-full'></div><div class='skew-y-2 -skew-y-2 skew-y-3 -skew-y-3'></div><div class='md:grid-cols-1 md:grid-cols-2 md:grid-cols-3 md:grid-cols-4 md:grid-cols-5 md:grid-cols-6'></div><div class='bg-white bg-gray-50 bg-gray-100 bg-gray-200 bg-gray-300 bg-gray-400 bg-gray-500 bg-gray-600 bg-gray-700 bg-gray-800 bg-gray-900'></div><div class='bg-neutral-50 bg-neutral-100 bg-neutral-200 bg-neutral-300 bg-neutral-400 bg-neutral-500 bg-neutral-600 bg-neutral-700 bg-neutral-800 bg-neutral-900'></div><div class='dark:bg-neutral-700 dark:bg-neutral-800 dark:bg-neutral-900'></div><div class='bg-primary-50 bg-primary-100 bg-primary-200 bg-primary-300 bg-primary-400 bg-primary-500 bg-primary-600 bg-primary-700 bg-primary-800 bg-primary-900'></div><div class='bg-primary-500/10 bg-primary-500/20 bg-primary-500/30 bg-primary-500/40 bg-primary-600/10 bg-primary-600/20 bg-primary-600/30 bg-primary-600/40'></div><div class='via-transparent from-primary-500/20 to-primary-600/20'></div><div class='bg-secondary-50 bg-secondary-100 bg-secondary-200 bg-secondary-300 bg-secondary-400 bg-secondary-500 bg-secondary-600 bg-secondary-700 bg-secondary-800 bg-secondary-900'></div><div class='text-primary-50 text-primary-100 text-primary-200 text-primary-300 text-primary-400 text-primary-500 text-primary-600 text-primary-700 text-primary-800 text-primary-900'></div><div class='text-secondary-50 text-secondary-100 text-secondary-200 text-secondary-300 text-secondary-400 text-secondary-500 text-secondary-600 text-secondary-700 text-secondary-800 text-secondary-900'></div><div class='text-neutral-50 text-neutral-100 text-neutral-200 text-neutral-300 text-neutral-400 text-neutral-500 text-neutral-600 text-neutral-700 text-neutral-800 text-neutral-900'></div><div class='text-white text-black dark:text-white'></div><div class='dark:text-neutral-300 dark:text-neutral-400'></div><div class='border-primary-50 border-primary-100 border-primary-200 border-primary-300 border-primary-400 border-primary-500 border-primary-600 border-primary-700 border-primary-800 border-primary-900'></div><div class='border-secondary-50 border-secondary-100 border-secondary-200 border-secondary-300 border-secondary-400 border-secondary-500 border-secondary-600 border-secondary-700 border-secondary-800 border-secondary-900'></div><div class='border-neutral-50 border-neutral-100 border-neutral-200 border-neutral-300 border-neutral-400 border-neutral-500 border-neutral-600 border-neutral-700 border-neutral-800 border-neutral-900'></div><div class='bg-gradient-to-t bg-gradient-to-tr bg-gradient-to-r bg-gradient-to-br bg-gradient-to-b bg-gradient-to-bl bg-gradient-to-l bg-gradient-to-tl'></div><div class='from-primary-50 from-primary-100 from-primary-200 from-primary-300 from-primary-400 from-primary-500 from-primary-600 from-primary-700 from-primary-800 from-primary-900'></div><div class='from-secondary-50 from-secondary-100 from-secondary-200 from-secondary-300 from-secondary-400 from-secondary-500 from-secondary-600 from-secondary-700 from-secondary-800 from-secondary-900'></div><div class='to-primary-50 to-primary-100 to-primary-200 to-primary-300 to-primary-400 to-primary-500 to-primary-600 to-primary-700 to-primary-800 to-primary-900'></div><div class='to-secondary-50 to-secondary-100 to-secondary-200 to-secondary-300 to-secondary-400 to-secondary-500 to-secondary-600 to-secondary-700 to-secondary-800 to-secondary-900'></div><div class='hover:from-primary-500 hover:from-secondary-500 hover:to-primary-500 hover:to-secondary-500'></div><div class='hover:bg-primary-50 hover:bg-primary-100 hover:bg-primary-200 hover:bg-primary-300 hover:bg-primary-400 hover:bg-primary-500 hover:bg-primary-600 hover:bg-primary-700 hover:bg-primary-800 hover:bg-primary-900'></div><div class='hover:bg-neutral-50 hover:bg-neutral-100 hover:bg-neutral-200 hover:bg-neutral-300 hover:bg-neutral-400 hover:bg-neutral-500 hover:bg-neutral-600 hover:bg-neutral-700 hover:bg-neutral-800 hover:bg-neutral-900'></div><div class='hover:text-primary hover:text-primary-50 hover:text-primary-100 hover:text-primary-200 hover:text-primary-300 hover:text-primary-400 hover:text-primary-500 hover:text-primary-600 hover:text-primary-700 hover:text-primary-800 hover:text-primary-900'></div><div class='hover:text-neutral-50 hover:text-neutral-100 hover:text-neutral-200 hover:text-neutral-300 hover:text-neutral-400 hover:text-neutral-500 hover:text-neutral-600 hover:text-neutral-700 hover:text-neutral-800 hover:text-neutral-900'></div><div class='dark:hover:bg-primary-50 dark:hover:bg-primary-100 dark:hover:bg-primary-200 dark:hover:bg-primary-300 dark:hover:bg-primary-400 dark:hover:bg-primary-500 dark:hover:bg-primary-600 dark:hover:bg-primary-700 dark:hover:bg-primary-800 dark:hover:bg-primary-900'></div><div class='dark:hover:text-neutral-50 dark:hover:text-neutral-100 dark:hover:text-neutral-200 dark:hover:text-neutral-300 dark:hover:text-neutral-400 dark:hover:text-neutral-500 dark:hover:text-neutral-600 dark:hover:text-neutral-700 dark:hover:text-neutral-800 dark:hover:text-neutral-900'></div><div class='bg-indigo-50 bg-indigo-100 bg-indigo-200 bg-indigo-300 bg-indigo-400 bg-indigo-500 bg-indigo-600 bg-indigo-700 bg-indigo-800 bg-indigo-900 bg-indigo-950'></div><div class='bg-purple-50 bg-purple-100 bg-purple-200 bg-purple-300 bg-purple-400 bg-purple-500 bg-purple-600 bg-purple-700 bg-purple-800 bg-purple-900 bg-purple-950'></div><div class='bg-pink-50 bg-pink-100 bg-pink-200 bg-pink-300 bg-pink-400 bg-pink-500 bg-pink-600 bg-pink-700 bg-pink-800 bg-pink-900 bg-pink-950'></div><div class='bg-red-50 bg-red-100 bg-red-200 bg-red-300 bg-red-400 bg-red-500 bg-red-600 bg-red-700 bg-red-800 bg-red-900 bg-red-950'></div><div class='bg-orange-50 bg-orange-100 bg-orange-200 bg-orange-300 bg-orange-400 bg-orange-500 bg-orange-600 bg-orange-700 bg-orange-800 bg-orange-900 bg-orange-950'></div><div class='bg-amber-50 bg-amber-100 bg-amber-200 bg-amber-300 bg-amber-400 bg-amber-500 bg-amber-600 bg-amber-700 bg-amber-800 bg-amber-900 bg-amber-950'></div><div class='bg-yellow-50 bg-yellow-100 bg-yellow-200 bg-yellow-300 bg-yellow-400 bg-yellow-500 bg-yellow-600 bg-yellow-700 bg-yellow-800 bg-yellow-900 bg-yellow-950'></div><div class='bg-lime-50 bg-lime-100 bg-lime-200 bg-lime-300 bg-lime-400 bg-lime-500 bg-lime-600 bg-lime-700 bg-lime-800 bg-lime-900 bg-lime-950'></div><div class='bg-green-50 bg-green-100 bg-green-200 bg-green-300 bg-green-400 bg-green-500 bg-green-600 bg-green-700 bg-green-800 bg-green-900 bg-green-950'></div><div class='bg-emerald-50 bg-emerald-100 bg-emerald-200 bg-emerald-300 bg-emerald-400 bg-emerald-500 bg-emerald-600 bg-emerald-700 bg-emerald-800 bg-emerald-900 bg-emerald-950'></div><div class='bg-teal-50 bg-teal-100 bg-teal-200 bg-teal-300 bg-teal-400 bg-teal-500 bg-teal-600 bg-teal-700 bg-teal-800 bg-teal-900 bg-teal-950'></div><div class='bg-cyan-50 bg-cyan-100 bg-cyan-200 bg-cyan-300 bg-cyan-400 bg-cyan-500 bg-cyan-600 bg-cyan-700 bg-cyan-800 bg-cyan-900 bg-cyan-950'></div><div class='bg-sky-50 bg-sky-100 bg-sky-200 bg-sky-300 bg-sky-400 bg-sky-500 bg-sky-600 bg-sky-700 bg-sky-800 bg-sky-900 bg-sky-950'></div><div class='bg-blue-50 bg-blue-100 bg-blue-200 bg-blue-300 bg-blue-400 bg-blue-500 bg-blue-600 bg-blue-700 bg-blue-800 bg-blue-900 bg-blue-950'></div><div class='bg-violet-50 bg-violet-100 bg-violet-200 bg-violet-300 bg-violet-400 bg-violet-500 bg-violet-600 bg-violet-700 bg-violet-800 bg-violet-900 bg-violet-950'></div><div class='from-indigo-950 from-purple-900 to-indigo-950 to-purple-900'></div><div class='hover:border-primary-500 hover:border-green-500 hover:border-blue-500 hover:border-red-500 hover:border-amber-500 hover:border-purple-500'></div><div class='text-primary-600 text-green-600 text-blue-600 text-red-600 text-amber-600 text-purple-600'></div><div class='dark:bg-primary-900 dark:bg-green-900 dark:bg-blue-900 dark:bg-red-900 dark:bg-amber-900 dark:bg-purple-900'></div><div class='dark:text-primary-400 dark:text-green-400 dark:text-blue-400 dark:text-red-400 dark:text-amber-400 dark:text-purple-400'></div><div class='dark:hover:bg-primary-900/10 dark:hover:bg-green-900/10 dark:hover:bg-blue-900/10 dark:hover:bg-red-900/10 dark:hover:bg-amber-900/10 dark:hover:bg-purple-900/10'></div>\");\n\n/* Force generation of all CSS custom properties for dynamic usage in YAML front matter */\n/* Hidden utility class that forces all color variables to be generated */\n.force-all-color-vars {\n  /* Primary Colors */\n  color: var(--color-primary-50);\n  color: var(--color-primary-100);\n  color: var(--color-primary-200);\n  color: var(--color-primary-300);\n  color: var(--color-primary-400);\n  color: var(--color-primary-500);\n  color: var(--color-primary-600);\n  color: var(--color-primary-700);\n  color: var(--color-primary-800);\n  color: var(--color-primary-900);\n  color: var(--color-primary-950);\n\n  /* Secondary Colors */\n  color: var(--color-secondary-50);\n  color: var(--color-secondary-100);\n  color: var(--color-secondary-200);\n  color: var(--color-secondary-300);\n  color: var(--color-secondary-400);\n  color: var(--color-secondary-500);\n  color: var(--color-secondary-600);\n  color: var(--color-secondary-700);\n  color: var(--color-secondary-800);\n  color: var(--color-secondary-900);\n  color: var(--color-secondary-950);\n\n  /* Extended Color Palette for Dynamic Gradients */\n  color: var(--color-indigo-50);\n  color: var(--color-indigo-100);\n  color: var(--color-indigo-200);\n  color: var(--color-indigo-300);\n  color: var(--color-indigo-400);\n  color: var(--color-indigo-500);\n  color: var(--color-indigo-600);\n  color: var(--color-indigo-700);\n  color: var(--color-indigo-800);\n  color: var(--color-indigo-900);\n  color: var(--color-indigo-950);\n\n  color: var(--color-purple-50);\n  color: var(--color-purple-100);\n  color: var(--color-purple-200);\n  color: var(--color-purple-300);\n  color: var(--color-purple-400);\n  color: var(--color-purple-500);\n  color: var(--color-purple-600);\n  color: var(--color-purple-700);\n  color: var(--color-purple-800);\n  color: var(--color-purple-900);\n  color: var(--color-purple-950);\n\n  color: var(--color-pink-50);\n  color: var(--color-pink-100);\n  color: var(--color-pink-200);\n  color: var(--color-pink-300);\n  color: var(--color-pink-400);\n  color: var(--color-pink-500);\n  color: var(--color-pink-600);\n  color: var(--color-pink-700);\n  color: var(--color-pink-800);\n  color: var(--color-pink-900);\n  color: var(--color-pink-950);\n\n  color: var(--color-red-50);\n  color: var(--color-red-100);\n  color: var(--color-red-200);\n  color: var(--color-red-300);\n  color: var(--color-red-400);\n  color: var(--color-red-500);\n  color: var(--color-red-600);\n  color: var(--color-red-700);\n  color: var(--color-red-800);\n  color: var(--color-red-900);\n  color: var(--color-red-950);\n\n  color: var(--color-orange-50);\n  color: var(--color-orange-100);\n  color: var(--color-orange-200);\n  color: var(--color-orange-300);\n  color: var(--color-orange-400);\n  color: var(--color-orange-500);\n  color: var(--color-orange-600);\n  color: var(--color-orange-700);\n  color: var(--color-orange-800);\n  color: var(--color-orange-900);\n  color: var(--color-orange-950);\n\n  color: var(--color-amber-50);\n  color: var(--color-amber-100);\n  color: var(--color-amber-200);\n  color: var(--color-amber-300);\n  color: var(--color-amber-400);\n  color: var(--color-amber-500);\n  color: var(--color-amber-600);\n  color: var(--color-amber-700);\n  color: var(--color-amber-800);\n  color: var(--color-amber-900);\n  color: var(--color-amber-950);\n\n  color: var(--color-yellow-50);\n  color: var(--color-yellow-100);\n  color: var(--color-yellow-200);\n  color: var(--color-yellow-300);\n  color: var(--color-yellow-400);\n  color: var(--color-yellow-500);\n  color: var(--color-yellow-600);\n  color: var(--color-yellow-700);\n  color: var(--color-yellow-800);\n  color: var(--color-yellow-900);\n  color: var(--color-yellow-950);\n\n  color: var(--color-lime-50);\n  color: var(--color-lime-100);\n  color: var(--color-lime-200);\n  color: var(--color-lime-300);\n  color: var(--color-lime-400);\n  color: var(--color-lime-500);\n  color: var(--color-lime-600);\n  color: var(--color-lime-700);\n  color: var(--color-lime-800);\n  color: var(--color-lime-900);\n  color: var(--color-lime-950);\n\n  color: var(--color-green-50);\n  color: var(--color-green-100);\n  color: var(--color-green-200);\n  color: var(--color-green-300);\n  color: var(--color-green-400);\n  color: var(--color-green-500);\n  color: var(--color-green-600);\n  color: var(--color-green-700);\n  color: var(--color-green-800);\n  color: var(--color-green-900);\n  color: var(--color-green-950);\n\n  color: var(--color-emerald-50);\n  color: var(--color-emerald-100);\n  color: var(--color-emerald-200);\n  color: var(--color-emerald-300);\n  color: var(--color-emerald-400);\n  color: var(--color-emerald-500);\n  color: var(--color-emerald-600);\n  color: var(--color-emerald-700);\n  color: var(--color-emerald-800);\n  color: var(--color-emerald-900);\n  color: var(--color-emerald-950);\n\n  color: var(--color-teal-50);\n  color: var(--color-teal-100);\n  color: var(--color-teal-200);\n  color: var(--color-teal-300);\n  color: var(--color-teal-400);\n  color: var(--color-teal-500);\n  color: var(--color-teal-600);\n  color: var(--color-teal-700);\n  color: var(--color-teal-800);\n  color: var(--color-teal-900);\n  color: var(--color-teal-950);\n\n  color: var(--color-cyan-50);\n  color: var(--color-cyan-100);\n  color: var(--color-cyan-200);\n  color: var(--color-cyan-300);\n  color: var(--color-cyan-400);\n  color: var(--color-cyan-500);\n  color: var(--color-cyan-600);\n  color: var(--color-cyan-700);\n  color: var(--color-cyan-800);\n  color: var(--color-cyan-900);\n  color: var(--color-cyan-950);\n\n  color: var(--color-sky-50);\n  color: var(--color-sky-100);\n  color: var(--color-sky-200);\n  color: var(--color-sky-300);\n  color: var(--color-sky-400);\n  color: var(--color-sky-500);\n  color: var(--color-sky-600);\n  color: var(--color-sky-700);\n  color: var(--color-sky-800);\n  color: var(--color-sky-900);\n  color: var(--color-sky-950);\n\n  color: var(--color-blue-50);\n  color: var(--color-blue-100);\n  color: var(--color-blue-200);\n  color: var(--color-blue-300);\n  color: var(--color-blue-400);\n  color: var(--color-blue-500);\n  color: var(--color-blue-600);\n  color: var(--color-blue-700);\n  color: var(--color-blue-800);\n  color: var(--color-blue-900);\n  color: var(--color-blue-950);\n\n  color: var(--color-violet-50);\n  color: var(--color-violet-100);\n  color: var(--color-violet-200);\n  color: var(--color-violet-300);\n  color: var(--color-violet-400);\n  color: var(--color-violet-500);\n  color: var(--color-violet-600);\n  color: var(--color-violet-700);\n  color: var(--color-violet-800);\n  color: var(--color-violet-900);\n  color: var(--color-violet-950);\n\n  /* Never display this class */\n  display: none !important;\n}\n\n/* Support for dual light/dark background colors in parse_block_v2.html */\n@media (prefers-color-scheme: dark) {\n  .home-section-bg[style*=\"--dark-bg-color\"] {\n    background-color: var(--dark-bg-color) !important;\n  }\n}\n\n.dark .home-section-bg[style*=\"--dark-bg-color\"] {\n  background-color: var(--dark-bg-color) !important;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/config/tailwind.css",
    "content": "/* Tailwind CSS v4 Configuration */\n/* Content detection and plugin configuration */\n\n/* Typography plugin for prose styles */\n@plugin \"@tailwindcss/typography\";\n\n/* Content detection sources */\n/* Note: @source is a Tailwind v4 directive - linters may show warnings that can be ignored */\n/* Hugo stats file contains all detected classes from templates */\n@source \"hugo_stats.json\";\n\n/* Custom Variants Configuration */\n/* Configure dark mode to use class strategy */\n@custom-variant dark (&:where(.dark, .dark *));\n\n/* Configure hover to work on all devices (like v3 behavior) */\n@custom-variant hover (&:hover);\n\n/* Dark mode configuration */\n@media (prefers-color-scheme: dark) {\n  :root {\n    color-scheme: dark;\n  }\n}\n"
  },
  {
    "path": "modules/blox/assets/css/config/theme.css",
    "content": "/* Tailwind CSS v4 Hugo BloxTheme Configuration */\n\n/* Theme Configuration */\n@theme {\n  /* Custom Colors */\n  --color-hb-dark: rgb(23 24 28);\n\n  /* Standard Tailwind Color Scales - Provide variables as valid CSS colors */\n  /* Gray */\n  --color-gray-50: rgb(249 250 251);\n  --color-gray-100: rgb(243 244 246);\n  --color-gray-200: rgb(229 231 235);\n  --color-gray-300: rgb(209 213 219);\n  --color-gray-400: rgb(156 163 175);\n  --color-gray-500: rgb(107 114 128);\n  --color-gray-600: rgb(75 85 99);\n  --color-gray-700: rgb(55 65 81);\n  --color-gray-800: rgb(31 41 55);\n  --color-gray-900: rgb(17 24 39);\n  --color-gray-950: rgb(3 7 18);\n\n  /* Slate */\n  --color-slate-50: rgb(248 250 252);\n  --color-slate-100: rgb(241 245 249);\n  --color-slate-200: rgb(226 232 240);\n  --color-slate-300: rgb(203 213 225);\n  --color-slate-400: rgb(148 163 184);\n  --color-slate-500: rgb(100 116 139);\n  --color-slate-600: rgb(71 85 105);\n  --color-slate-700: rgb(51 65 85);\n  --color-slate-800: rgb(30 41 59);\n  --color-slate-900: rgb(15 23 42);\n  --color-slate-950: rgb(2 6 23);\n\n  /* Zinc */\n  --color-zinc-50: rgb(250 250 250);\n  --color-zinc-100: rgb(244 244 245);\n  --color-zinc-200: rgb(228 228 231);\n  --color-zinc-300: rgb(212 212 216);\n  --color-zinc-400: rgb(161 161 170);\n  --color-zinc-500: rgb(113 113 122);\n  --color-zinc-600: rgb(82 82 91);\n  --color-zinc-700: rgb(63 63 70);\n  --color-zinc-800: rgb(39 39 42);\n  --color-zinc-900: rgb(24 24 27);\n  --color-zinc-950: rgb(9 9 11);\n\n  /* Neutral */\n  --color-neutral-50: rgb(250 250 250);\n  --color-neutral-100: rgb(245 245 245);\n  --color-neutral-200: rgb(229 229 229);\n  --color-neutral-300: rgb(212 212 212);\n  --color-neutral-400: rgb(163 163 163);\n  --color-neutral-500: rgb(115 115 115);\n  --color-neutral-600: rgb(82 82 82);\n  --color-neutral-700: rgb(64 64 64);\n  --color-neutral-800: rgb(38 38 38);\n  --color-neutral-900: rgb(23 23 23);\n  --color-neutral-950: rgb(10 10 10);\n\n  /* Stone */\n  --color-stone-50: rgb(250 250 249);\n  --color-stone-100: rgb(245 245 244);\n  --color-stone-200: rgb(231 229 228);\n  --color-stone-300: rgb(214 211 209);\n  --color-stone-400: rgb(168 162 158);\n  --color-stone-500: rgb(120 113 108);\n  --color-stone-600: rgb(87 83 78);\n  --color-stone-700: rgb(68 64 60);\n  --color-stone-800: rgb(41 37 36);\n  --color-stone-900: rgb(28 25 23);\n  --color-stone-950: rgb(12 10 9);\n\n  /* Red */\n  --color-red-50: rgb(254 242 242);\n  --color-red-100: rgb(254 226 226);\n  --color-red-200: rgb(254 202 202);\n  --color-red-300: rgb(252 165 165);\n  --color-red-400: rgb(248 113 113);\n  --color-red-500: rgb(239 68 68);\n  --color-red-600: rgb(220 38 38);\n  --color-red-700: rgb(185 28 28);\n  --color-red-800: rgb(153 27 27);\n  --color-red-900: rgb(127 29 29);\n  --color-red-950: rgb(69 10 10);\n\n  /* Orange */\n  --color-orange-50: rgb(255 247 237);\n  --color-orange-100: rgb(255 237 213);\n  --color-orange-200: rgb(254 215 170);\n  --color-orange-300: rgb(253 186 116);\n  --color-orange-400: rgb(251 146 60);\n  --color-orange-500: rgb(249 115 22);\n  --color-orange-600: rgb(234 88 12);\n  --color-orange-700: rgb(194 65 12);\n  --color-orange-800: rgb(154 52 18);\n  --color-orange-900: rgb(124 45 18);\n  --color-orange-950: rgb(67 20 7);\n\n  /* Amber */\n  --color-amber-50: rgb(255 251 235);\n  --color-amber-100: rgb(254 243 199);\n  --color-amber-200: rgb(253 230 138);\n  --color-amber-300: rgb(252 211 77);\n  --color-amber-400: rgb(251 191 36);\n  --color-amber-500: rgb(245 158 11);\n  --color-amber-600: rgb(217 119 6);\n  --color-amber-700: rgb(180 83 9);\n  --color-amber-800: rgb(146 64 14);\n  --color-amber-900: rgb(120 53 15);\n  --color-amber-950: rgb(69 26 3);\n\n  /* Yellow */\n  --color-yellow-50: rgb(254 252 232);\n  --color-yellow-100: rgb(254 249 195);\n  --color-yellow-200: rgb(254 240 138);\n  --color-yellow-300: rgb(253 224 71);\n  --color-yellow-400: rgb(250 204 21);\n  --color-yellow-500: rgb(234 179 8);\n  --color-yellow-600: rgb(202 138 4);\n  --color-yellow-700: rgb(161 98 7);\n  --color-yellow-800: rgb(133 77 14);\n  --color-yellow-900: rgb(113 63 18);\n  --color-yellow-950: rgb(66 32 6);\n\n  /* Lime */\n  --color-lime-50: rgb(247 254 231);\n  --color-lime-100: rgb(236 252 203);\n  --color-lime-200: rgb(217 249 157);\n  --color-lime-300: rgb(190 242 100);\n  --color-lime-400: rgb(163 230 53);\n  --color-lime-500: rgb(132 204 22);\n  --color-lime-600: rgb(101 163 13);\n  --color-lime-700: rgb(77 124 15);\n  --color-lime-800: rgb(63 98 18);\n  --color-lime-900: rgb(54 83 20);\n  --color-lime-950: rgb(26 46 5);\n\n  /* Green */\n  --color-green-50: rgb(240 253 244);\n  --color-green-100: rgb(220 252 231);\n  --color-green-200: rgb(187 247 208);\n  --color-green-300: rgb(134 239 172);\n  --color-green-400: rgb(74 222 128);\n  --color-green-500: rgb(34 197 94);\n  --color-green-600: rgb(22 163 74);\n  --color-green-700: rgb(21 128 61);\n  --color-green-800: rgb(22 101 52);\n  --color-green-900: rgb(20 83 45);\n  --color-green-950: rgb(5 46 22);\n\n  /* Emerald */\n  --color-emerald-50: rgb(236 253 245);\n  --color-emerald-100: rgb(209 250 229);\n  --color-emerald-200: rgb(167 243 208);\n  --color-emerald-300: rgb(110 231 183);\n  --color-emerald-400: rgb(52 211 153);\n  --color-emerald-500: rgb(16 185 129);\n  --color-emerald-600: rgb(5 150 105);\n  --color-emerald-700: rgb(4 120 87);\n  --color-emerald-800: rgb(6 95 70);\n  --color-emerald-900: rgb(6 78 59);\n  --color-emerald-950: rgb(2 44 34);\n\n  /* Teal */\n  --color-teal-50: rgb(240 253 250);\n  --color-teal-100: rgb(204 251 241);\n  --color-teal-200: rgb(153 246 228);\n  --color-teal-300: rgb(94 234 212);\n  --color-teal-400: rgb(45 212 191);\n  --color-teal-500: rgb(20 184 166);\n  --color-teal-600: rgb(13 148 136);\n  --color-teal-700: rgb(15 118 110);\n  --color-teal-800: rgb(17 94 89);\n  --color-teal-900: rgb(19 78 74);\n  --color-teal-950: rgb(4 47 46);\n\n  /* Cyan */\n  --color-cyan-50: rgb(236 254 255);\n  --color-cyan-100: rgb(207 250 254);\n  --color-cyan-200: rgb(165 243 252);\n  --color-cyan-300: rgb(103 232 249);\n  --color-cyan-400: rgb(34 211 238);\n  --color-cyan-500: rgb(6 182 212);\n  --color-cyan-600: rgb(8 145 178);\n  --color-cyan-700: rgb(14 116 144);\n  --color-cyan-800: rgb(21 94 117);\n  --color-cyan-900: rgb(22 78 99);\n  --color-cyan-950: rgb(8 51 68);\n\n  /* Sky */\n  --color-sky-50: rgb(240 249 255);\n  --color-sky-100: rgb(224 242 254);\n  --color-sky-200: rgb(186 230 253);\n  --color-sky-300: rgb(125 211 252);\n  --color-sky-400: rgb(56 189 248);\n  --color-sky-500: rgb(14 165 233);\n  --color-sky-600: rgb(2 132 199);\n  --color-sky-700: rgb(3 105 161);\n  --color-sky-800: rgb(7 89 133);\n  --color-sky-900: rgb(12 74 110);\n  --color-sky-950: rgb(8 47 73);\n\n  /* Blue */\n  --color-blue-50: rgb(239 246 255);\n  --color-blue-100: rgb(219 234 254);\n  --color-blue-200: rgb(191 219 254);\n  --color-blue-300: rgb(147 197 253);\n  --color-blue-400: rgb(96 165 250);\n  --color-blue-500: rgb(59 130 246);\n  --color-blue-600: rgb(37 99 235);\n  --color-blue-700: rgb(29 78 216);\n  --color-blue-800: rgb(30 64 175);\n  --color-blue-900: rgb(30 58 138);\n  --color-blue-950: rgb(23 37 84);\n\n  /* Indigo */\n  --color-indigo-50: rgb(238 242 255);\n  --color-indigo-100: rgb(224 231 255);\n  --color-indigo-200: rgb(199 210 254);\n  --color-indigo-300: rgb(165 180 252);\n  --color-indigo-400: rgb(129 140 248);\n  --color-indigo-500: rgb(99 102 241);\n  --color-indigo-600: rgb(79 70 229);\n  --color-indigo-700: rgb(67 56 202);\n  --color-indigo-800: rgb(55 48 163);\n  --color-indigo-900: rgb(49 46 129);\n  --color-indigo-950: rgb(30 27 75);\n\n  /* Violet */\n  --color-violet-50: rgb(245 243 255);\n  --color-violet-100: rgb(237 233 254);\n  --color-violet-200: rgb(221 214 254);\n  --color-violet-300: rgb(196 181 253);\n  --color-violet-400: rgb(167 139 250);\n  --color-violet-500: rgb(139 92 246);\n  --color-violet-600: rgb(124 58 237);\n  --color-violet-700: rgb(109 40 217);\n  --color-violet-800: rgb(91 33 182);\n  --color-violet-900: rgb(76 29 149);\n  --color-violet-950: rgb(46 16 101);\n\n  /* Purple */\n  --color-purple-50: rgb(250 245 255);\n  --color-purple-100: rgb(243 232 255);\n  --color-purple-200: rgb(233 213 255);\n  --color-purple-300: rgb(216 180 254);\n  --color-purple-400: rgb(192 132 252);\n  --color-purple-500: rgb(168 85 247);\n  --color-purple-600: rgb(147 51 234);\n  --color-purple-700: rgb(126 34 206);\n  --color-purple-800: rgb(107 33 168);\n  --color-purple-900: rgb(88 28 135);\n  --color-purple-950: rgb(59 7 100);\n\n  /* Fuchsia */\n  --color-fuchsia-50: rgb(253 244 255);\n  --color-fuchsia-100: rgb(250 232 255);\n  --color-fuchsia-200: rgb(245 208 254);\n  --color-fuchsia-300: rgb(240 171 252);\n  --color-fuchsia-400: rgb(232 121 249);\n  --color-fuchsia-500: rgb(217 70 239);\n  --color-fuchsia-600: rgb(192 38 211);\n  --color-fuchsia-700: rgb(162 28 175);\n  --color-fuchsia-800: rgb(134 25 143);\n  --color-fuchsia-900: rgb(112 26 117);\n  --color-fuchsia-950: rgb(74 4 78);\n\n  /* Pink */\n  --color-pink-50: rgb(253 242 248);\n  --color-pink-100: rgb(252 231 243);\n  --color-pink-200: rgb(251 207 232);\n  --color-pink-300: rgb(249 168 212);\n  --color-pink-400: rgb(244 114 182);\n  --color-pink-500: rgb(236 72 153);\n  --color-pink-600: rgb(219 39 119);\n  --color-pink-700: rgb(190 24 93);\n  --color-pink-800: rgb(157 23 77);\n  --color-pink-900: rgb(131 24 67);\n  --color-pink-950: rgb(80 7 36);\n\n  /* Rose */\n  --color-rose-50: rgb(255 241 242);\n  --color-rose-100: rgb(255 228 230);\n  --color-rose-200: rgb(254 205 211);\n  --color-rose-300: rgb(253 164 175);\n  --color-rose-400: rgb(251 113 133);\n  --color-rose-500: rgb(244 63 94);\n  --color-rose-600: rgb(225 29 72);\n  --color-rose-700: rgb(190 18 60);\n  --color-rose-800: rgb(159 18 57);\n  --color-rose-900: rgb(136 19 55);\n  --color-rose-950: rgb(76 5 25);\n\n  /* Themeable Colors */\n  --color-primary-50: rgb(var(--hb-primary-50-rgb, 239 246 255));\n  --color-primary-100: rgb(var(--hb-primary-100-rgb, 219 234 254));\n  --color-primary-200: rgb(var(--hb-primary-200-rgb, 191 219 254));\n  --color-primary-300: rgb(var(--hb-primary-300-rgb, 147 197 253));\n  --color-primary-400: rgb(var(--hb-primary-400-rgb, 96 165 250));\n  --color-primary-500: rgb(var(--hb-primary-500-rgb, 59 130 246));\n  --color-primary-600: rgb(var(--hb-primary-600-rgb, 37 99 235));\n  --color-primary-700: rgb(var(--hb-primary-700-rgb, 29 78 216));\n  --color-primary-800: rgb(var(--hb-primary-800-rgb, 30 64 175));\n  --color-primary-900: rgb(var(--hb-primary-900-rgb, 30 58 138));\n  --color-primary-950: rgb(var(--hb-primary-950-rgb, 23 37 84));\n\n  /* Semantic UI Colors - Defined in theme_generator.html */\n  /* Do not redeclare them here to avoid circular references */\n\n  --color-secondary-50: rgb(var(--hb-secondary-50-rgb, 236 254 255));\n  --color-secondary-100: rgb(var(--hb-secondary-100-rgb, 207 250 254));\n  --color-secondary-200: rgb(var(--hb-secondary-200-rgb, 165 243 252));\n  --color-secondary-300: rgb(var(--hb-secondary-300-rgb, 103 232 249));\n  --color-secondary-400: rgb(var(--hb-secondary-400-rgb, 34 211 238));\n  --color-secondary-500: rgb(var(--hb-secondary-500-rgb, 6 182 212));\n  --color-secondary-600: rgb(var(--hb-secondary-600-rgb, 8 145 178));\n  --color-secondary-700: rgb(var(--hb-secondary-700-rgb, 14 116 144));\n  --color-secondary-800: rgb(var(--hb-secondary-800-rgb, 21 94 117));\n  --color-secondary-900: rgb(var(--hb-secondary-900-rgb, 22 78 99));\n  --color-secondary-950: rgb(var(--hb-secondary-950-rgb, 8 51 68));\n\n  /* Note: Providing these palettes in @theme ensures theme-pack mappings like var(--color-rose-600) always resolve */\n\n  /* Font families */\n  --hb-font-family-sans: inter var, ui-sans-serif, system-ui, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;\n  --hb-font-heading: var(--hb-font-family-sans);\n  --hb-font-body: var(--hb-font-family-sans);\n  --hb-font-code: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n  --hb-font-nav: var(--hb-font-heading);\n\n  /* Font weights */\n  --hb-font-weight-heading: 700;\n  --hb-font-weight-body: 400;\n  --hb-font-weight-body-bold: 600;\n\n  /* Line heights */\n  --hb-font-leading-heading: 1.2;\n  --hb-font-leading-body: 1.6;\n  --hb-font-leading-code: 1.5;\n\n  /* Letter spacing */\n  --hb-font-tracking-heading: -0.02em;\n  --hb-font-tracking-body: 0;\n  --hb-font-tracking-caps: 0.05em;\n\n  /* Font sizes */\n  --font-size-xs: 0.75rem;\n  --font-size-sm: 0.875rem;\n  --font-size-base: 1rem;\n  --font-size-lg: 1.125rem;\n  --font-size-xl: 1.25rem;\n  --font-size-2xl: 1.5rem;\n  --font-size-3xl: 1.875rem;\n  --font-size-4xl: 2.25rem;\n  --font-size-5xl: 3rem;\n  --font-size-6xl: 4rem;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/framework/base.css",
    "content": "/* Base styles for better text rendering */\n@layer base {\n  html {\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n    text-rendering: optimizelegibility;\n    /* Apply the runtime font vars injected by Hugo's typography partial */\n    font-family: var(--hb-font-body);\n  }\n\n  body {\n    font-family: var(--hb-font-body);\n    font-weight: var(--hb-font-weight-body, 400);\n    line-height: var(--hb-font-leading-body, 1.6);\n    letter-spacing: var(--hb-font-tracking-body, 0);\n  }\n\n  h1,\n  h2,\n  h3,\n  h4,\n  h5,\n  h6 {\n    font-family: var(--hb-font-heading);\n    font-weight: var(--hb-font-weight-heading, 700);\n    line-height: var(--hb-font-leading-heading, 1.2);\n    letter-spacing: var(--hb-font-tracking-heading, -0.02em);\n  }\n\n  code,\n  pre,\n  kbd,\n  samp {\n    font-family: var(--hb-font-code);\n  }\n}\n\n/* Gradient Mesh Animations */\n@keyframes float {\n  0%,\n  100% {\n    transform: translateY(0) translateX(0);\n  }\n\n  25% {\n    transform: translateY(-20px) translateX(10px);\n  }\n\n  50% {\n    transform: translateY(-10px) translateX(-10px);\n  }\n\n  75% {\n    transform: translateY(-30px) translateX(5px);\n  }\n}\n\n@keyframes rotate-slow {\n  from {\n    transform: rotate(0deg);\n  }\n\n  to {\n    transform: rotate(360deg);\n  }\n}\n\n.animate-float {\n  animation: float 8s ease-in-out infinite;\n}\n\n.animate-rotate-slow {\n  animation: rotate-slow 20s linear infinite;\n}\n\n/* Custom utilities and components */\n@utility task-list {\n  list-style: none;\n  padding-left: 1.5rem;\n}\n\n/* Custom typography styles - the plugin handles the base styles */\n/* Additional customization for prose elements */\n@layer components {\n  .prose a {\n    text-decoration: underline;\n    text-decoration-color: var(--color-primary-300);\n    font-weight: var(--hb-font-weight-body-bold, 600);\n  }\n\n  .prose a:hover {\n    color: var(--color-primary-600);\n    text-decoration: none;\n    border-radius: 0.09rem;\n  }\n\n  .prose mark {\n    color: var(--color-neutral-900);\n    background-color: var(--color-primary-200);\n    padding: 0.1rem 0.2rem;\n    border-radius: 0.25rem;\n  }\n\n  .dark .prose-invert a {\n    text-decoration-color: var(--color-neutral-500);\n  }\n\n  .dark .prose-invert a:hover {\n    color: var(--color-primary-300);\n  }\n\n  .dark .prose-invert mark {\n    background-color: var(--color-primary-400);\n    color: black;\n  }\n\n  /* Inline Code Styling */\n  .prose code:not(:where(pre *)) {\n    @apply rounded-md bg-neutral-100 px-1.5 py-0.5 text-[0.875em] font-normal text-primary-700;\n    @apply dark:bg-neutral-700/50 dark:text-primary-300;\n  }\n\n  .prose code:not(:where(pre *))::before,\n  .prose code:not(:where(pre *))::after {\n    content: none;\n  }\n}\n"
  },
  {
    "path": "modules/blox/assets/css/framework/components.css",
    "content": "/* Hugo Blox Framework Custom Classes */\n@layer components {\n  /* Section styles for Hugo Blox blocks */\n  .hbb-section {\n    padding-top: 6rem;\n    padding-bottom: 6rem;\n  }\n\n  .section-subheading {\n    font-size: 1.25rem;\n    font-weight: var(--hb-font-weight-heading, 700);\n  }\n\n  /* Home section background styles */\n  .home-section-bg {\n    position: absolute;\n    top: 0;\n    left: 0;\n    height: 100%;\n    width: 100%;\n    z-index: -1;\n  }\n\n  .home-section-bg.bg-image {\n    background-position: center;\n    background-repeat: no-repeat;\n    background-size: cover;\n  }\n\n  /* 2025 Glassmorphism texture support - disable conflicting defaults */\n  .home-section-bg.bg-image[style*=\"background-size\"][style*=\"background-repeat\"] {\n    /* biome-ignore lint/complexity/noImportantStyles: Required to override inline background-size for glass textures */\n    background-size: revert !important;\n    /* biome-ignore lint/complexity/noImportantStyles: Required to override inline background-repeat for glass textures */\n    background-repeat: revert !important;\n    /* biome-ignore lint/complexity/noImportantStyles: Required to override inline background-position for glass textures */\n    background-position: revert !important;\n  }\n\n  /* Specific glassmorphism texture class override */\n  .blox-cta-card .home-section-bg.bg-image {\n    background-size: revert;\n    background-repeat: revert;\n    background-position: revert;\n  }\n\n  /* Video background */\n  .bg-video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    object-position: center center;\n    opacity: 1;\n  }\n\n  /* Flip video horizontally */\n  .bg-video.flip {\n    transform: scaleX(-1);\n  }\n\n  /* Container styles */\n  .universal-wrapper {\n    margin: 0 auto;\n    padding-right: 1rem;\n    padding-left: 1rem;\n    width: 100%;\n  }\n\n  @media (min-width: 1200px) {\n    .universal-wrapper {\n      max-width: 1200px;\n    }\n  }\n\n  .article-container {\n    max-width: 760px;\n    margin: 0 auto;\n  }\n\n  /* Button toolbar */\n  .btn-toolbar {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: center;\n    gap: 0.5rem;\n  }\n\n  /* Documentation specific */\n  .docs-article-container {\n    max-width: 760px;\n  }\n\n  /* Powered-by footer styles */\n  .powered-by {\n    font-size: 0.75rem;\n  }\n\n  .powered-by a {\n    color: inherit;\n    text-decoration: none;\n  }\n\n  .powered-by a:hover {\n    text-decoration: underline;\n  }\n\n  /* Parallax effect */\n  .parallax {\n    background-attachment: fixed;\n    background-position: center;\n    background-repeat: no-repeat;\n    background-size: cover;\n    position: relative;\n  }\n\n  /* When parallax is used with home-section-bg, preserve absolute positioning */\n  .home-section-bg.parallax {\n    position: absolute;\n  }\n\n  /* Section color schemes - for backward compatibility */\n  section.light {\n    background-color: transparent;\n  }\n\n  section.dark {\n    background-color: transparent;\n  }\n}\n"
  },
  {
    "path": "modules/blox/assets/css/hb-search.css",
    "content": "/* Hugo Blox Search - Custom Pagefind Implementation */\n\n/* Animations */\n@keyframes spin {\n  to {\n    transform: rotate(360deg);\n  }\n}\n\n.animate-spin {\n  animation: spin 1s linear infinite;\n}\n\n/* Search result highlights */\n.search-result mark {\n  background-color: rgb(254 240 138);\n  color: rgb(17 24 39);\n  font-weight: var(--hb-font-weight-body-bold, 600);\n  padding: 0.05rem 0.2rem;\n  border-radius: 0.125rem;\n}\n\n.dark .search-result mark {\n  background-color: rgb(133 77 14);\n  color: rgb(254 240 138);\n}\n\n/* Result hover state */\n.search-result:hover mark {\n  background-color: rgb(253 224 71);\n}\n\n.dark .search-result:hover mark {\n  background-color: rgb(161 98 7);\n}\n\n/* Smooth transitions */\n.search-modal-enter {\n  animation: slide-in-up 0.2s ease-out;\n}\n\n@keyframes slide-in-up {\n  from {\n    opacity: 0;\n    transform: translateY(1rem) scale(0.95);\n  }\n\n  to {\n    opacity: 1;\n    transform: translateY(0) scale(1);\n  }\n}\n\n/* Loading skeleton */\n.search-skeleton {\n  background: linear-gradient(90deg, rgb(229 231 235) 25%, rgb(243 244 246) 50%, rgb(229 231 235) 75%);\n  background-size: 200% 100%;\n  animation: shimmer 1.5s infinite;\n}\n\n.dark .search-skeleton {\n  background: linear-gradient(90deg, rgb(55 65 81) 25%, rgb(75 85 99) 50%, rgb(55 65 81) 75%);\n  background-size: 200% 100%;\n}\n\n@keyframes shimmer {\n  0% {\n    background-position: 200% 0;\n  }\n\n  100% {\n    background-position: -200% 0;\n  }\n}\n\n/* Keyboard navigation highlight - handled by Alpine :class binding */\n/* Smooth transition for selection state */\n.search-result {\n  transition: all 0.15s ease;\n}\n\n/* Additional hover effects for keyboard-selected items */\n.search-result:focus-visible {\n  outline: 2px solid rgb(59 130 246);\n  outline-offset: -2px;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/layout-utilities.css",
    "content": "/*\n  Hugo Blox Layout Utilities\n  \n  Provides CSS utilities that use the configurable layout tokens:\n  - --hb-radius: Border radius token\n  - --hb-spacing-base: Base spacing unit\n  - --hb-spacing-section: Section padding\n  - --hb-font-size-base: Base font size\n*/\n\n/* Border radius utility - use instead of hardcoded rounded-* classes */\n.hb-rounded {\n  border-radius: var(--hb-radius, 0.5rem);\n}\n\n.hb-rounded-sm {\n  border-radius: calc(var(--hb-radius, 0.5rem) * 0.5);\n}\n\n.hb-rounded-lg {\n  border-radius: calc(var(--hb-radius, 0.5rem) * 1.5);\n}\n\n.hb-rounded-xl {\n  border-radius: calc(var(--hb-radius, 0.5rem) * 2);\n}\n\n/* Section spacing */\n.hb-section {\n  padding-top: var(--hb-spacing-section, 4rem);\n  padding-bottom: var(--hb-spacing-section, 4rem);\n}\n\n.hb-section-sm {\n  padding-top: calc(var(--hb-spacing-section, 4rem) * 0.5);\n  padding-bottom: calc(var(--hb-spacing-section, 4rem) * 0.5);\n}\n\n/* Component spacing */\n.hb-gap {\n  gap: var(--hb-spacing-base, 1rem);\n}\n\n.hb-gap-sm {\n  gap: calc(var(--hb-spacing-base, 1rem) * 0.5);\n}\n\n.hb-gap-lg {\n  gap: calc(var(--hb-spacing-base, 1rem) * 1.5);\n}\n\n/* Padding utilities */\n.hb-p {\n  padding: var(--hb-spacing-base, 1rem);\n}\n\n.hb-px {\n  padding-left: var(--hb-spacing-base, 1rem);\n  padding-right: var(--hb-spacing-base, 1rem);\n}\n\n.hb-py {\n  padding-top: var(--hb-spacing-base, 1rem);\n  padding-bottom: var(--hb-spacing-base, 1rem);\n}\n\n/* Margin utilities */\n.hb-m {\n  margin: var(--hb-spacing-base, 1rem);\n}\n\n.hb-mx {\n  margin-left: var(--hb-spacing-base, 1rem);\n  margin-right: var(--hb-spacing-base, 1rem);\n}\n\n.hb-my {\n  margin-top: var(--hb-spacing-base, 1rem);\n  margin-bottom: var(--hb-spacing-base, 1rem);\n}\n"
  },
  {
    "path": "modules/blox/assets/css/libs/chroma/dark.css",
    "content": "/* Dracula dark theme */\n.dark .highlight {\n  /* Background */ /*.bg { color: #f8f8f2; background-color: #282a36 }*/\n  /* PreWrapper */ /*.chroma { color: #f8f8f2; background-color: #282a36; }*/\n\n  /* Other */\n\n  .chroma .x {\n  }\n\n  /* Error */\n\n  .chroma .err {\n  }\n\n  /* CodeLine */\n\n  .chroma .cl {\n  }\n\n  /* LineTableTD */\n\n  .chroma .lntd {\n    vertical-align: top;\n    padding: 0;\n    margin: 0;\n    border: 0;\n  }\n\n  /* LineTable */\n\n  .chroma .lntable {\n    border-spacing: 0;\n    padding: 0;\n    margin: 0;\n    border: 0;\n  }\n\n  /* LineHighlight */\n\n  .chroma .hl {\n    background-color: #ffc;\n  }\n\n  /* LineNumbersTable */\n\n  .chroma .lnt {\n    white-space: pre;\n    user-select: none;\n    margin-right: 0.4em;\n    padding: 0 0.4em 0 0.4em;\n    color: #7f7f7f;\n  }\n\n  /* LineNumbers */\n\n  .chroma .ln {\n    white-space: pre;\n    user-select: none;\n    margin-right: 0.4em;\n    padding: 0 0.4em 0 0.4em;\n    color: #7f7f7f;\n  }\n\n  /* Line */\n\n  .chroma .line {\n    display: flex;\n  }\n\n  /* Keyword */\n\n  .chroma .k {\n    color: #ff79c6;\n  }\n\n  /* KeywordConstant */\n\n  .chroma .kc {\n    color: #ff79c6;\n  }\n\n  /* KeywordDeclaration */\n\n  .chroma .kd {\n    color: #8be9fd;\n    font-style: italic;\n  }\n\n  /* KeywordNamespace */\n\n  .chroma .kn {\n    color: #ff79c6;\n  }\n\n  /* KeywordPseudo */\n\n  .chroma .kp {\n    color: #ff79c6;\n  }\n\n  /* KeywordReserved */\n\n  .chroma .kr {\n    color: #ff79c6;\n  }\n\n  /* KeywordType */\n\n  .chroma .kt {\n    color: #8be9fd;\n  }\n\n  /* Name */\n\n  .chroma .n {\n  }\n\n  /* NameAttribute */\n\n  .chroma .na {\n    color: #50fa7b;\n  }\n\n  /* NameBuiltin */\n\n  .chroma .nb {\n    color: #8be9fd;\n    font-style: italic;\n  }\n\n  /* NameBuiltinPseudo */\n\n  .chroma .bp {\n  }\n\n  /* NameClass */\n\n  .chroma .nc {\n    color: #50fa7b;\n  }\n\n  /* NameConstant */\n\n  .chroma .no {\n  }\n\n  /* NameDecorator */\n\n  .chroma .nd {\n  }\n\n  /* NameEntity */\n\n  .chroma .ni {\n  }\n\n  /* NameException */\n\n  .chroma .ne {\n  }\n\n  /* NameFunction */\n\n  .chroma .nf {\n    color: #50fa7b;\n  }\n\n  /* NameFunctionMagic */\n\n  .chroma .fm {\n  }\n\n  /* NameLabel */\n\n  .chroma .nl {\n    color: #8be9fd;\n    font-style: italic;\n  }\n\n  /* NameNamespace */\n\n  .chroma .nn {\n  }\n\n  /* NameOther */\n\n  .chroma .nx {\n  }\n\n  /* NameProperty */\n\n  .chroma .py {\n  }\n\n  /* NameTag */\n\n  .chroma .nt {\n    color: #ff79c6;\n  }\n\n  /* NameVariable */\n\n  .chroma .nv {\n    color: #8be9fd;\n    font-style: italic;\n  }\n\n  /* NameVariableClass */\n\n  .chroma .vc {\n    color: #8be9fd;\n    font-style: italic;\n  }\n\n  /* NameVariableGlobal */\n\n  .chroma .vg {\n    color: #8be9fd;\n    font-style: italic;\n  }\n\n  /* NameVariableInstance */\n\n  .chroma .vi {\n    color: #8be9fd;\n    font-style: italic;\n  }\n\n  /* NameVariableMagic */\n\n  .chroma .vm {\n  }\n\n  /* Literal */\n\n  .chroma .l {\n  }\n\n  /* LiteralDate */\n\n  .chroma .ld {\n  }\n\n  /* LiteralString */\n\n  .chroma .s {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringAffix */\n\n  .chroma .sa {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringBacktick */\n\n  .chroma .sb {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringChar */\n\n  .chroma .sc {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringDelimiter */\n\n  .chroma .dl {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringDoc */\n\n  .chroma .sd {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringDouble */\n\n  .chroma .s2 {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringEscape */\n\n  .chroma .se {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringHeredoc */\n\n  .chroma .sh {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringInterpol */\n\n  .chroma .si {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringOther */\n\n  .chroma .sx {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringRegex */\n\n  .chroma .sr {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringSingle */\n\n  .chroma .s1 {\n    color: #f1fa8c;\n  }\n\n  /* LiteralStringSymbol */\n\n  .chroma .ss {\n    color: #f1fa8c;\n  }\n\n  /* LiteralNumber */\n\n  .chroma .m {\n    color: #bd93f9;\n  }\n\n  /* LiteralNumberBin */\n\n  .chroma .mb {\n    color: #bd93f9;\n  }\n\n  /* LiteralNumberFloat */\n\n  .chroma .mf {\n    color: #bd93f9;\n  }\n\n  /* LiteralNumberHex */\n\n  .chroma .mh {\n    color: #bd93f9;\n  }\n\n  /* LiteralNumberInteger */\n\n  .chroma .mi {\n    color: #bd93f9;\n  }\n\n  /* LiteralNumberIntegerLong */\n\n  .chroma .il {\n    color: #bd93f9;\n  }\n\n  /* LiteralNumberOct */\n\n  .chroma .mo {\n    color: #bd93f9;\n  }\n\n  /* Operator */\n\n  .chroma .o {\n    color: #ff79c6;\n  }\n\n  /* OperatorWord */\n\n  .chroma .ow {\n    color: #ff79c6;\n  }\n\n  /* Punctuation */\n\n  .chroma .p {\n  }\n\n  /* Comment */\n\n  .chroma .c {\n    color: #6272a4;\n  }\n\n  /* CommentHashbang */\n\n  .chroma .ch {\n    color: #6272a4;\n  }\n\n  /* CommentMultiline */\n\n  .chroma .cm {\n    color: #6272a4;\n  }\n\n  /* CommentSingle */\n\n  .chroma .c1 {\n    color: #6272a4;\n  }\n\n  /* CommentSpecial */\n\n  .chroma .cs {\n    color: #6272a4;\n  }\n\n  /* CommentPreproc */\n\n  .chroma .cp {\n    color: #ff79c6;\n  }\n\n  /* CommentPreprocFile */\n\n  .chroma .cpf {\n    color: #ff79c6;\n  }\n\n  /* Generic */\n\n  .chroma .g {\n  }\n\n  /* GenericDeleted */\n\n  .chroma .gd {\n    color: #f55;\n  }\n\n  /* GenericEmph */\n\n  .chroma .ge {\n    text-decoration: underline;\n  }\n\n  /* GenericError */\n\n  .chroma .gr {\n  }\n\n  /* GenericHeading */\n\n  .chroma .gh {\n    font-weight: bold;\n  }\n\n  /* GenericInserted */\n\n  .chroma .gi {\n    color: #50fa7b;\n    font-weight: bold;\n  }\n\n  /* GenericOutput */\n\n  .chroma .go {\n    color: #44475a;\n  }\n\n  /* GenericPrompt */\n\n  .chroma .gp {\n  }\n\n  /* GenericStrong */\n\n  .chroma .gs {\n  }\n\n  /* GenericSubheading */\n\n  .chroma .gu {\n    font-weight: bold;\n  }\n\n  /* GenericTraceback */\n\n  .chroma .gt {\n  }\n\n  /* GenericUnderline */\n\n  .chroma .gl {\n    text-decoration: underline;\n  }\n\n  /* TextWhitespace */\n\n  .chroma .w {\n  }\n}\n"
  },
  {
    "path": "modules/blox/assets/css/libs/chroma/light.css",
    "content": "/* Github light theme */\nhtml:not(.dark) .highlight {\n  /* Background */ /*.bg { background-color: #fff }*/\n  /* PreWrapper */ /*.chroma { background-color: #fff; }*/\n\n  /* Other */\n\n  .chroma .x {\n  }\n\n  /* Error */\n\n  .chroma .err {\n    color: #a61717;\n    background-color: #e3d2d2;\n  }\n\n  /* CodeLine */\n\n  .chroma .cl {\n  }\n\n  /* LineTableTD */\n\n  .chroma .lntd {\n    vertical-align: top;\n    padding: 0;\n    margin: 0;\n    border: 0;\n  }\n\n  /* LineTable */\n\n  .chroma .lntable {\n    border-spacing: 0;\n    padding: 0;\n    margin: 0;\n    border: 0;\n  }\n\n  /* LineHighlight */\n\n  .chroma .hl {\n    background-color: #ffc;\n  }\n\n  /* LineNumbersTable */\n\n  .chroma .lnt {\n    white-space: pre;\n    user-select: none;\n    margin-right: 0.4em;\n    padding: 0 0.4em;\n    color: #7f7f7f;\n  }\n\n  /* LineNumbers */\n\n  .chroma .ln {\n    white-space: pre;\n    user-select: none;\n    margin-right: 0.4em;\n    padding: 0 0.4em;\n    color: #7f7f7f;\n  }\n\n  /* Line */\n\n  .chroma .line {\n    display: flex;\n  }\n\n  /* Keyword */\n\n  .chroma .k {\n    color: #000;\n    font-weight: bold;\n  }\n\n  /* KeywordConstant */\n\n  .chroma .kc {\n    color: #000;\n    font-weight: bold;\n  }\n\n  /* KeywordDeclaration */\n\n  .chroma .kd {\n    color: #000;\n    font-weight: bold;\n  }\n\n  /* KeywordNamespace */\n\n  .chroma .kn {\n    color: #000;\n    font-weight: bold;\n  }\n\n  /* KeywordPseudo */\n\n  .chroma .kp {\n    color: #000;\n    font-weight: bold;\n  }\n\n  /* KeywordReserved */\n\n  .chroma .kr {\n    color: #000;\n    font-weight: bold;\n  }\n\n  /* KeywordType */\n\n  .chroma .kt {\n    color: #458;\n    font-weight: bold;\n  }\n\n  /* Name */\n\n  .chroma .n {\n  }\n\n  /* NameAttribute */\n\n  .chroma .na {\n    color: #008080;\n  }\n\n  /* NameBuiltin */\n\n  .chroma .nb {\n    color: #0086b3;\n  }\n\n  /* NameBuiltinPseudo */\n\n  .chroma .bp {\n    color: #999;\n  }\n\n  /* NameClass */\n\n  .chroma .nc {\n    color: #458;\n    font-weight: bold;\n  }\n\n  /* NameConstant */\n\n  .chroma .no {\n    color: #008080;\n  }\n\n  /* NameDecorator */\n\n  .chroma .nd {\n    color: #3c5d5d;\n    font-weight: bold;\n  }\n\n  /* NameEntity */\n\n  .chroma .ni {\n    color: #800080;\n  }\n\n  /* NameException */\n\n  .chroma .ne {\n    color: #900;\n    font-weight: bold;\n  }\n\n  /* NameFunction */\n\n  .chroma .nf {\n    color: #900;\n    font-weight: bold;\n  }\n\n  /* NameFunctionMagic */\n\n  .chroma .fm {\n  }\n\n  /* NameLabel */\n\n  .chroma .nl {\n    color: #900;\n    font-weight: bold;\n  }\n\n  /* NameNamespace */\n\n  .chroma .nn {\n    color: #555;\n  }\n\n  /* NameOther */\n\n  .chroma .nx {\n  }\n\n  /* NameProperty */\n\n  .chroma .py {\n  }\n\n  /* NameTag */\n\n  .chroma .nt {\n    color: #000080;\n  }\n\n  /* NameVariable */\n\n  .chroma .nv {\n    color: #008080;\n  }\n\n  /* NameVariableClass */\n\n  .chroma .vc {\n    color: #008080;\n  }\n\n  /* NameVariableGlobal */\n\n  .chroma .vg {\n    color: #008080;\n  }\n\n  /* NameVariableInstance */\n\n  .chroma .vi {\n    color: #008080;\n  }\n\n  /* NameVariableMagic */\n\n  .chroma .vm {\n  }\n\n  /* Literal */\n\n  .chroma .l {\n  }\n\n  /* LiteralDate */\n\n  .chroma .ld {\n  }\n\n  /* LiteralString */\n\n  .chroma .s {\n    color: #d14;\n  }\n\n  /* LiteralStringAffix */\n\n  .chroma .sa {\n    color: #d14;\n  }\n\n  /* LiteralStringBacktick */\n\n  .chroma .sb {\n    color: #d14;\n  }\n\n  /* LiteralStringChar */\n\n  .chroma .sc {\n    color: #d14;\n  }\n\n  /* LiteralStringDelimiter */\n\n  .chroma .dl {\n    color: #d14;\n  }\n\n  /* LiteralStringDoc */\n\n  .chroma .sd {\n    color: #d14;\n  }\n\n  /* LiteralStringDouble */\n\n  .chroma .s2 {\n    color: #d14;\n  }\n\n  /* LiteralStringEscape */\n\n  .chroma .se {\n    color: #d14;\n  }\n\n  /* LiteralStringHeredoc */\n\n  .chroma .sh {\n    color: #d14;\n  }\n\n  /* LiteralStringInterpol */\n\n  .chroma .si {\n    color: #d14;\n  }\n\n  /* LiteralStringOther */\n\n  .chroma .sx {\n    color: #d14;\n  }\n\n  /* LiteralStringRegex */\n\n  .chroma .sr {\n    color: #009926;\n  }\n\n  /* LiteralStringSingle */\n\n  .chroma .s1 {\n    color: #d14;\n  }\n\n  /* LiteralStringSymbol */\n\n  .chroma .ss {\n    color: #990073;\n  }\n\n  /* LiteralNumber */\n\n  .chroma .m {\n    color: #099;\n  }\n\n  /* LiteralNumberBin */\n\n  .chroma .mb {\n    color: #099;\n  }\n\n  /* LiteralNumberFloat */\n\n  .chroma .mf {\n    color: #099;\n  }\n\n  /* LiteralNumberHex */\n\n  .chroma .mh {\n    color: #099;\n  }\n\n  /* LiteralNumberInteger */\n\n  .chroma .mi {\n    color: #099;\n  }\n\n  /* LiteralNumberIntegerLong */\n\n  .chroma .il {\n    color: #099;\n  }\n\n  /* LiteralNumberOct */\n\n  .chroma .mo {\n    color: #099;\n  }\n\n  /* Operator */\n\n  .chroma .o {\n    color: #000;\n    font-weight: bold;\n  }\n\n  /* OperatorWord */\n\n  .chroma .ow {\n    color: #000;\n    font-weight: bold;\n  }\n\n  /* Punctuation */\n\n  .chroma .p {\n  }\n\n  /* Comment */\n\n  .chroma .c {\n    color: #998;\n    font-style: italic;\n  }\n\n  /* CommentHashbang */\n\n  .chroma .ch {\n    color: #998;\n    font-style: italic;\n  }\n\n  /* CommentMultiline */\n\n  .chroma .cm {\n    color: #998;\n    font-style: italic;\n  }\n\n  /* CommentSingle */\n\n  .chroma .c1 {\n    color: #998;\n    font-style: italic;\n  }\n\n  /* CommentSpecial */\n\n  .chroma .cs {\n    color: #999;\n    font-weight: bold;\n    font-style: italic;\n  }\n\n  /* CommentPreproc */\n\n  .chroma .cp {\n    color: #999;\n    font-weight: bold;\n    font-style: italic;\n  }\n\n  /* CommentPreprocFile */\n\n  .chroma .cpf {\n    color: #999;\n    font-weight: bold;\n    font-style: italic;\n  }\n\n  /* Generic */\n\n  .chroma .g {\n  }\n\n  /* GenericDeleted */\n\n  .chroma .gd {\n    color: #000;\n    background-color: #fdd;\n  }\n\n  /* GenericEmph */\n\n  .chroma .ge {\n    color: #000;\n    font-style: italic;\n  }\n\n  /* GenericError */\n\n  .chroma .gr {\n    color: #a00;\n  }\n\n  /* GenericHeading */\n\n  .chroma .gh {\n    color: #999;\n  }\n\n  /* GenericInserted */\n\n  .chroma .gi {\n    color: #000;\n    background-color: #dfd;\n  }\n\n  /* GenericOutput */\n\n  .chroma .go {\n    color: #888;\n  }\n\n  /* GenericPrompt */\n\n  .chroma .gp {\n    color: #555;\n  }\n\n  /* GenericStrong */\n\n  .chroma .gs {\n    font-weight: bold;\n  }\n\n  /* GenericSubheading */\n\n  .chroma .gu {\n    color: #aaa;\n  }\n\n  /* GenericTraceback */\n\n  .chroma .gt {\n    color: #a00;\n  }\n\n  /* GenericUnderline */\n\n  .chroma .gl {\n    text-decoration: underline;\n  }\n\n  /* TextWhitespace */\n\n  .chroma .w {\n    color: #bbb;\n  }\n}\n"
  },
  {
    "path": "modules/blox/assets/css/main.css",
    "content": "/* \n  Hugo Blox Tailwind CSS v4 - Main Entry Point\n  \n  This file orchestrates all CSS imports in the correct order:\n  1. Tailwind base with configuration\n  2. Theme and color definitions\n  3. Base styles and utilities\n  4. Hugo Blox framework components\n  5. Hugo Blox module components\n  6. Safelist for dynamic classes\n*/\n\n/* Tailwind CSS v4 Base */\n@import \"tailwindcss\";\n\n/* Dynamic sources are injected by the css.html partial */\n/* This handles both monorepo dev and end-user environments */\n\n/* Configuration */\n@import \"config/tailwind.css\";\n@import \"config/theme.css\";\n\n/* Base styles and utilities */\n@import \"framework/base.css\";\n\n/* Hugo Blox theme system (color utilities) */\n@import \"color-utilities.css\";\n\n/* Hugo Blox layout utilities (radius, spacing tokens) */\n@import \"layout-utilities.css\";\n\n/* Hugo Blox framework components */\n@import \"framework/components.css\";\n\n/* Hugo Blox module components */\n@import \"components/all.css\";\n@import \"blox/all.css\";\n@import \"views/all.css\";\n@import \"chroma.css\";\n\n/* Hugo Blox Search */\n@import \"hb-search.css\";\n\n/* Hugo Blox Animations (typewriter, scroll reveals) */\n@import \"animations.css\";\n\n/* Safelist for dynamic classes */\n@import \"config/safelist.css\";\n"
  },
  {
    "path": "modules/blox/assets/css/themes/amber.css",
    "content": "/* Hugo Blox color theme: AMBER */\n:root {\n  /* Amber Primary Palette */\n  --hb-primary-50-rgb: 255 251 235;\n  --hb-primary-100-rgb: 254 243 199;\n  --hb-primary-200-rgb: 253 230 138;\n  --hb-primary-300-rgb: 252 211 77;\n  --hb-primary-400-rgb: 251 191 36;\n  --hb-primary-500-rgb: 245 158 11;\n  --hb-primary-600-rgb: 217 119 6;\n  --hb-primary-700-rgb: 180 83 9;\n  --hb-primary-800-rgb: 146 64 14;\n  --hb-primary-900-rgb: 120 53 15;\n  --hb-primary-950-rgb: 69 26 3;\n  /* Yellow Secondary Palette */\n  --hb-secondary-50-rgb: 254 252 232;\n  --hb-secondary-100-rgb: 254 249 195;\n  --hb-secondary-200-rgb: 254 240 138;\n  --hb-secondary-300-rgb: 253 224 71;\n  --hb-secondary-400-rgb: 250 204 21;\n  --hb-secondary-500-rgb: 234 179 8;\n  --hb-secondary-600-rgb: 202 138 4;\n  --hb-secondary-700-rgb: 161 98 7;\n  --hb-secondary-800-rgb: 133 77 14;\n  --hb-secondary-900-rgb: 113 63 18;\n  --hb-secondary-950-rgb: 66 32 6;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/blue.css",
    "content": "/* Hugo Blox color theme: BLUE */\n:root {\n  /* TW Blue Palette */\n  --hb-primary-50-rgb: 239 246 255;\n  --hb-primary-100-rgb: 219 234 254;\n  --hb-primary-200-rgb: 191 219 254;\n  --hb-primary-300-rgb: 147 197 253;\n  --hb-primary-400-rgb: 96 165 250;\n  --hb-primary-500-rgb: 59 130 246;\n  --hb-primary-600-rgb: 37 99 235;\n  --hb-primary-700-rgb: 29 78 216;\n  --hb-primary-800-rgb: 30 64 175;\n  --hb-primary-900-rgb: 30 58 138;\n  --hb-primary-950-rgb: 23 37 84;\n  /* TW Cyan Palette */\n  --hb-secondary-50-rgb: 236 254 255;\n  --hb-secondary-100-rgb: 207 250 254;\n  --hb-secondary-200-rgb: 165 243 252;\n  --hb-secondary-300-rgb: 103 232 249;\n  --hb-secondary-400-rgb: 34 211 238;\n  --hb-secondary-500-rgb: 6 182 212;\n  --hb-secondary-600-rgb: 8 145 178;\n  --hb-secondary-700-rgb: 14 116 144;\n  --hb-secondary-800-rgb: 21 94 117;\n  --hb-secondary-900-rgb: 22 78 99;\n  --hb-secondary-950-rgb: 8 51 68;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/cyan.css",
    "content": "/* Hugo Blox color theme: CYAN */\n:root {\n  /* Cyan Primary Palette */\n  --hb-primary-50-rgb: 236 254 255;\n  --hb-primary-100-rgb: 207 250 254;\n  --hb-primary-200-rgb: 165 243 252;\n  --hb-primary-300-rgb: 103 232 249;\n  --hb-primary-400-rgb: 34 211 238;\n  --hb-primary-500-rgb: 6 182 212;\n  --hb-primary-600-rgb: 8 145 178;\n  --hb-primary-700-rgb: 14 116 144;\n  --hb-primary-800-rgb: 21 94 117;\n  --hb-primary-900-rgb: 22 78 99;\n  --hb-primary-950-rgb: 8 51 68;\n  /* Sky Secondary Palette */\n  --hb-secondary-50-rgb: 240 249 255;\n  --hb-secondary-100-rgb: 224 242 254;\n  --hb-secondary-200-rgb: 186 230 253;\n  --hb-secondary-300-rgb: 125 211 252;\n  --hb-secondary-400-rgb: 56 189 248;\n  --hb-secondary-500-rgb: 14 165 233;\n  --hb-secondary-600-rgb: 2 132 199;\n  --hb-secondary-700-rgb: 3 105 161;\n  --hb-secondary-800-rgb: 7 89 133;\n  --hb-secondary-900-rgb: 12 74 110;\n  --hb-secondary-950-rgb: 8 47 73;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/emerald.css",
    "content": "/* Hugo Blox color theme: EMERALD */\n:root {\n  /* Emerald Primary Palette */\n  --hb-primary-50-rgb: 236 253 245;\n  --hb-primary-100-rgb: 209 250 229;\n  --hb-primary-200-rgb: 167 243 208;\n  --hb-primary-300-rgb: 110 231 183;\n  --hb-primary-400-rgb: 52 211 153;\n  --hb-primary-500-rgb: 16 185 129;\n  --hb-primary-600-rgb: 5 150 105;\n  --hb-primary-700-rgb: 4 120 87;\n  --hb-primary-800-rgb: 6 95 70;\n  --hb-primary-900-rgb: 6 78 59;\n  --hb-primary-950-rgb: 2 44 34;\n  /* Green Secondary Palette */\n  --hb-secondary-50-rgb: 240 253 244;\n  --hb-secondary-100-rgb: 220 252 231;\n  --hb-secondary-200-rgb: 187 247 208;\n  --hb-secondary-300-rgb: 134 239 172;\n  --hb-secondary-400-rgb: 74 222 128;\n  --hb-secondary-500-rgb: 34 197 94;\n  --hb-secondary-600-rgb: 22 163 74;\n  --hb-secondary-700-rgb: 21 128 61;\n  --hb-secondary-800-rgb: 22 101 52;\n  --hb-secondary-900-rgb: 20 83 45;\n  --hb-secondary-950-rgb: 5 46 22;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/fuchsia.css",
    "content": "/* Hugo Blox color theme: FUCHSIA */\n:root {\n  /* Fuchsia Primary Palette */\n  --hb-primary-50-rgb: 253 244 255;\n  --hb-primary-100-rgb: 250 232 255;\n  --hb-primary-200-rgb: 245 208 254;\n  --hb-primary-300-rgb: 240 171 252;\n  --hb-primary-400-rgb: 232 121 249;\n  --hb-primary-500-rgb: 217 70 239;\n  --hb-primary-600-rgb: 192 38 211;\n  --hb-primary-700-rgb: 162 28 175;\n  --hb-primary-800-rgb: 134 25 143;\n  --hb-primary-900-rgb: 112 26 117;\n  --hb-primary-950-rgb: 74 4 78;\n  /* Violet Secondary Palette */\n  --hb-secondary-50-rgb: 245 243 255;\n  --hb-secondary-100-rgb: 237 233 254;\n  --hb-secondary-200-rgb: 221 214 254;\n  --hb-secondary-300-rgb: 196 181 253;\n  --hb-secondary-400-rgb: 167 139 250;\n  --hb-secondary-500-rgb: 139 92 246;\n  --hb-secondary-600-rgb: 124 58 237;\n  --hb-secondary-700-rgb: 109 40 217;\n  --hb-secondary-800-rgb: 91 33 182;\n  --hb-secondary-900-rgb: 76 29 149;\n  --hb-secondary-950-rgb: 46 16 101;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/green.css",
    "content": "/* Hugo Blox color theme: GREEN */\n:root {\n  /* Green Primary Palette */\n  --hb-primary-50-rgb: 240 253 244;\n  --hb-primary-100-rgb: 220 252 231;\n  --hb-primary-200-rgb: 187 247 208;\n  --hb-primary-300-rgb: 134 239 172;\n  --hb-primary-400-rgb: 74 222 128;\n  --hb-primary-500-rgb: 34 197 94;\n  --hb-primary-600-rgb: 22 163 74;\n  --hb-primary-700-rgb: 21 128 61;\n  --hb-primary-800-rgb: 22 101 52;\n  --hb-primary-900-rgb: 20 83 45;\n  --hb-primary-950-rgb: 5 46 22;\n  /* Teal Secondary Palette */\n  --hb-secondary-50-rgb: 240 253 250;\n  --hb-secondary-100-rgb: 204 251 241;\n  --hb-secondary-200-rgb: 153 246 228;\n  --hb-secondary-300-rgb: 94 234 212;\n  --hb-secondary-400-rgb: 45 212 191;\n  --hb-secondary-500-rgb: 20 184 166;\n  --hb-secondary-600-rgb: 13 148 136;\n  --hb-secondary-700-rgb: 15 118 110;\n  --hb-secondary-800-rgb: 17 94 89;\n  --hb-secondary-900-rgb: 19 78 74;\n  --hb-secondary-950-rgb: 4 47 46;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/indigo.css",
    "content": "/* Hugo Blox color theme: INDIGO */\n:root {\n  /* Indigo Primary Palette */\n  --hb-primary-50-rgb: 238 242 255;\n  --hb-primary-100-rgb: 224 231 255;\n  --hb-primary-200-rgb: 199 210 254;\n  --hb-primary-300-rgb: 165 180 252;\n  --hb-primary-400-rgb: 129 140 248;\n  --hb-primary-500-rgb: 99 102 241;\n  --hb-primary-600-rgb: 79 70 229;\n  --hb-primary-700-rgb: 67 56 202;\n  --hb-primary-800-rgb: 55 48 163;\n  --hb-primary-900-rgb: 49 46 129;\n  --hb-primary-950-rgb: 30 27 75;\n  /* Blue Secondary Palette */\n  --hb-secondary-50-rgb: 239 246 255;\n  --hb-secondary-100-rgb: 219 234 254;\n  --hb-secondary-200-rgb: 191 219 254;\n  --hb-secondary-300-rgb: 147 197 253;\n  --hb-secondary-400-rgb: 96 165 250;\n  --hb-secondary-500-rgb: 59 130 246;\n  --hb-secondary-600-rgb: 37 99 235;\n  --hb-secondary-700-rgb: 29 78 216;\n  --hb-secondary-800-rgb: 30 64 175;\n  --hb-secondary-900-rgb: 30 58 138;\n  --hb-secondary-950-rgb: 23 37 84;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/lime.css",
    "content": "/* Hugo Blox color theme: LIME */\n:root {\n  /* Lime Primary Palette */\n  --hb-primary-50-rgb: 247 254 231;\n  --hb-primary-100-rgb: 236 252 203;\n  --hb-primary-200-rgb: 217 249 157;\n  --hb-primary-300-rgb: 190 242 100;\n  --hb-primary-400-rgb: 163 230 53;\n  --hb-primary-500-rgb: 132 204 22;\n  --hb-primary-600-rgb: 101 163 13;\n  --hb-primary-700-rgb: 77 124 15;\n  --hb-primary-800-rgb: 63 98 18;\n  --hb-primary-900-rgb: 54 83 20;\n  --hb-primary-950-rgb: 26 46 5;\n  /* Yellow Secondary Palette */\n  --hb-secondary-50-rgb: 254 252 232;\n  --hb-secondary-100-rgb: 254 249 195;\n  --hb-secondary-200-rgb: 254 240 138;\n  --hb-secondary-300-rgb: 253 224 71;\n  --hb-secondary-400-rgb: 250 204 21;\n  --hb-secondary-500-rgb: 234 179 8;\n  --hb-secondary-600-rgb: 202 138 4;\n  --hb-secondary-700-rgb: 161 98 7;\n  --hb-secondary-800-rgb: 133 77 14;\n  --hb-secondary-900-rgb: 113 63 18;\n  --hb-secondary-950-rgb: 66 32 6;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/orange.css",
    "content": "/* Hugo Blox color theme: ORANGE */\n:root {\n  /* Orange Primary Palette */\n  --hb-primary-50-rgb: 255 247 237;\n  --hb-primary-100-rgb: 255 237 213;\n  --hb-primary-200-rgb: 254 215 170;\n  --hb-primary-300-rgb: 253 186 116;\n  --hb-primary-400-rgb: 251 146 60;\n  --hb-primary-500-rgb: 249 115 22;\n  --hb-primary-600-rgb: 234 88 12;\n  --hb-primary-700-rgb: 194 65 12;\n  --hb-primary-800-rgb: 154 52 18;\n  --hb-primary-900-rgb: 124 45 18;\n  --hb-primary-950-rgb: 67 20 7;\n  /* Red Secondary Palette */\n  --hb-secondary-50-rgb: 254 242 242;\n  --hb-secondary-100-rgb: 254 226 226;\n  --hb-secondary-200-rgb: 254 202 202;\n  --hb-secondary-300-rgb: 252 165 165;\n  --hb-secondary-400-rgb: 248 113 113;\n  --hb-secondary-500-rgb: 239 68 68;\n  --hb-secondary-600-rgb: 220 38 38;\n  --hb-secondary-700-rgb: 185 28 28;\n  --hb-secondary-800-rgb: 153 27 27;\n  --hb-secondary-900-rgb: 127 29 29;\n  --hb-secondary-950-rgb: 69 10 10;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/pink.css",
    "content": "/* Hugo Blox color theme: PINK */\n:root {\n  /* Pink Primary Palette */\n  --hb-primary-50-rgb: 253 242 248;\n  --hb-primary-100-rgb: 252 231 243;\n  --hb-primary-200-rgb: 251 207 232;\n  --hb-primary-300-rgb: 249 168 212;\n  --hb-primary-400-rgb: 244 114 182;\n  --hb-primary-500-rgb: 236 72 153;\n  --hb-primary-600-rgb: 219 39 119;\n  --hb-primary-700-rgb: 190 24 93;\n  --hb-primary-800-rgb: 157 23 77;\n  --hb-primary-900-rgb: 131 24 67;\n  --hb-primary-950-rgb: 80 7 36;\n  /* Rose Secondary Palette */\n  --hb-secondary-50-rgb: 255 241 242;\n  --hb-secondary-100-rgb: 255 228 230;\n  --hb-secondary-200-rgb: 254 205 211;\n  --hb-secondary-300-rgb: 253 164 175;\n  --hb-secondary-400-rgb: 251 113 133;\n  --hb-secondary-500-rgb: 244 63 94;\n  --hb-secondary-600-rgb: 225 29 72;\n  --hb-secondary-700-rgb: 190 18 60;\n  --hb-secondary-800-rgb: 159 18 57;\n  --hb-secondary-900-rgb: 136 19 55;\n  --hb-secondary-950-rgb: 76 5 25;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/purple.css",
    "content": "/* Hugo Blox color theme: PURPLE */\n:root {\n  /* Purple Primary Palette */\n  --hb-primary-50-rgb: 250 245 255;\n  --hb-primary-100-rgb: 243 232 255;\n  --hb-primary-200-rgb: 233 213 255;\n  --hb-primary-300-rgb: 216 180 254;\n  --hb-primary-400-rgb: 192 132 252;\n  --hb-primary-500-rgb: 168 85 247;\n  --hb-primary-600-rgb: 147 51 234;\n  --hb-primary-700-rgb: 126 34 206;\n  --hb-primary-800-rgb: 107 33 168;\n  --hb-primary-900-rgb: 88 28 135;\n  --hb-primary-950-rgb: 59 7 100;\n  /* Violet Secondary Palette */\n  --hb-secondary-50-rgb: 245 243 255;\n  --hb-secondary-100-rgb: 237 233 254;\n  --hb-secondary-200-rgb: 221 214 254;\n  --hb-secondary-300-rgb: 196 181 253;\n  --hb-secondary-400-rgb: 167 139 250;\n  --hb-secondary-500-rgb: 139 92 246;\n  --hb-secondary-600-rgb: 124 58 237;\n  --hb-secondary-700-rgb: 109 40 217;\n  --hb-secondary-800-rgb: 91 33 182;\n  --hb-secondary-900-rgb: 76 29 149;\n  --hb-secondary-950-rgb: 46 16 101;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/red.css",
    "content": "/* Hugo Blox color theme: RED */\n:root {\n  /* Red Primary Palette */\n  --hb-primary-50-rgb: 254 242 242;\n  --hb-primary-100-rgb: 254 226 226;\n  --hb-primary-200-rgb: 254 202 202;\n  --hb-primary-300-rgb: 252 165 165;\n  --hb-primary-400-rgb: 248 113 113;\n  --hb-primary-500-rgb: 239 68 68;\n  --hb-primary-600-rgb: 220 38 38;\n  --hb-primary-700-rgb: 185 28 28;\n  --hb-primary-800-rgb: 153 27 27;\n  --hb-primary-900-rgb: 127 29 29;\n  --hb-primary-950-rgb: 69 10 10;\n  /* Orange Secondary Palette */\n  --hb-secondary-50-rgb: 255 247 237;\n  --hb-secondary-100-rgb: 255 237 213;\n  --hb-secondary-200-rgb: 254 215 170;\n  --hb-secondary-300-rgb: 253 186 116;\n  --hb-secondary-400-rgb: 251 146 60;\n  --hb-secondary-500-rgb: 249 115 22;\n  --hb-secondary-600-rgb: 234 88 12;\n  --hb-secondary-700-rgb: 194 65 12;\n  --hb-secondary-800-rgb: 154 52 18;\n  --hb-secondary-900-rgb: 124 45 18;\n  --hb-secondary-950-rgb: 67 20 7;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/rose.css",
    "content": "/* Hugo Blox color theme: ROSE */\n:root {\n  /* Rose Primary Palette */\n  --hb-primary-50-rgb: 255 241 242;\n  --hb-primary-100-rgb: 255 228 230;\n  --hb-primary-200-rgb: 254 205 211;\n  --hb-primary-300-rgb: 253 164 175;\n  --hb-primary-400-rgb: 251 113 133;\n  --hb-primary-500-rgb: 244 63 94;\n  --hb-primary-600-rgb: 225 29 72;\n  --hb-primary-700-rgb: 190 18 60;\n  --hb-primary-800-rgb: 159 18 57;\n  --hb-primary-900-rgb: 136 19 55;\n  --hb-primary-950-rgb: 76 5 25;\n  /* Pink Secondary Palette */\n  --hb-secondary-50-rgb: 253 242 248;\n  --hb-secondary-100-rgb: 252 231 243;\n  --hb-secondary-200-rgb: 251 207 232;\n  --hb-secondary-300-rgb: 249 168 212;\n  --hb-secondary-400-rgb: 244 114 182;\n  --hb-secondary-500-rgb: 236 72 153;\n  --hb-secondary-600-rgb: 219 39 119;\n  --hb-secondary-700-rgb: 190 24 93;\n  --hb-secondary-800-rgb: 157 23 77;\n  --hb-secondary-900-rgb: 131 24 67;\n  --hb-secondary-950-rgb: 80 7 36;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/sky.css",
    "content": "/* Hugo Blox color theme: SKY */\n:root {\n  /* Sky Primary Palette */\n  --hb-primary-50-rgb: 240 249 255;\n  --hb-primary-100-rgb: 224 242 254;\n  --hb-primary-200-rgb: 186 230 253;\n  --hb-primary-300-rgb: 125 211 252;\n  --hb-primary-400-rgb: 56 189 248;\n  --hb-primary-500-rgb: 14 165 233;\n  --hb-primary-600-rgb: 2 132 199;\n  --hb-primary-700-rgb: 3 105 161;\n  --hb-primary-800-rgb: 7 89 133;\n  --hb-primary-900-rgb: 12 74 110;\n  --hb-primary-950-rgb: 8 47 73;\n  /* Cyan Secondary Palette */\n  --hb-secondary-50-rgb: 236 254 255;\n  --hb-secondary-100-rgb: 207 250 254;\n  --hb-secondary-200-rgb: 165 243 252;\n  --hb-secondary-300-rgb: 103 232 249;\n  --hb-secondary-400-rgb: 34 211 238;\n  --hb-secondary-500-rgb: 6 182 212;\n  --hb-secondary-600-rgb: 8 145 178;\n  --hb-secondary-700-rgb: 14 116 144;\n  --hb-secondary-800-rgb: 21 94 117;\n  --hb-secondary-900-rgb: 22 78 99;\n  --hb-secondary-950-rgb: 8 51 68;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/slate.css",
    "content": "/* Hugo Blox color theme: SLATE */\n:root {\n  /* Slate Primary Palette */\n  --hb-primary-50-rgb: 248 250 252;\n  --hb-primary-100-rgb: 241 245 249;\n  --hb-primary-200-rgb: 226 232 240;\n  --hb-primary-300-rgb: 203 213 225;\n  --hb-primary-400-rgb: 148 163 184;\n  --hb-primary-500-rgb: 100 116 139;\n  --hb-primary-600-rgb: 71 85 105;\n  --hb-primary-700-rgb: 51 65 85;\n  --hb-primary-800-rgb: 30 41 59;\n  --hb-primary-900-rgb: 15 23 42;\n  --hb-primary-950-rgb: 2 6 23;\n  /* Stone Secondary Palette */\n  --hb-secondary-50-rgb: 250 250 249;\n  --hb-secondary-100-rgb: 245 245 244;\n  --hb-secondary-200-rgb: 231 229 228;\n  --hb-secondary-300-rgb: 214 211 209;\n  --hb-secondary-400-rgb: 168 162 158;\n  --hb-secondary-500-rgb: 120 113 108;\n  --hb-secondary-600-rgb: 87 83 78;\n  --hb-secondary-700-rgb: 68 64 60;\n  --hb-secondary-800-rgb: 41 37 36;\n  --hb-secondary-900-rgb: 28 25 23;\n  --hb-secondary-950-rgb: 12 10 9;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/stone.css",
    "content": "/* Hugo Blox color theme: STONE */\n:root {\n  /* Stone Primary Palette */\n  --hb-primary-50-rgb: 250 250 249;\n  --hb-primary-100-rgb: 245 245 244;\n  --hb-primary-200-rgb: 231 229 228;\n  --hb-primary-300-rgb: 214 211 209;\n  --hb-primary-400-rgb: 168 162 158;\n  --hb-primary-500-rgb: 120 113 108;\n  --hb-primary-600-rgb: 87 83 78;\n  --hb-primary-700-rgb: 68 64 60;\n  --hb-primary-800-rgb: 41 37 36;\n  --hb-primary-900-rgb: 28 25 23;\n  --hb-primary-950-rgb: 12 10 9;\n  /* Slate Secondary Palette */\n  --hb-secondary-50-rgb: 248 250 252;\n  --hb-secondary-100-rgb: 241 245 249;\n  --hb-secondary-200-rgb: 226 232 240;\n  --hb-secondary-300-rgb: 203 213 225;\n  --hb-secondary-400-rgb: 148 163 184;\n  --hb-secondary-500-rgb: 100 116 139;\n  --hb-secondary-600-rgb: 71 85 105;\n  --hb-secondary-700-rgb: 51 65 85;\n  --hb-secondary-800-rgb: 30 41 59;\n  --hb-secondary-900-rgb: 15 23 42;\n  --hb-secondary-950-rgb: 2 6 23;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/teal.css",
    "content": "/* Hugo Blox color theme: TEAL */\n:root {\n  /* Teal Primary Palette */\n  --hb-primary-50-rgb: 240 253 250;\n  --hb-primary-100-rgb: 204 251 241;\n  --hb-primary-200-rgb: 153 246 228;\n  --hb-primary-300-rgb: 94 234 212;\n  --hb-primary-400-rgb: 45 212 191;\n  --hb-primary-500-rgb: 20 184 166;\n  --hb-primary-600-rgb: 13 148 136;\n  --hb-primary-700-rgb: 15 118 110;\n  --hb-primary-800-rgb: 17 94 89;\n  --hb-primary-900-rgb: 19 78 74;\n  --hb-primary-950-rgb: 4 47 46;\n  /* Emerald Secondary Palette */\n  --hb-secondary-50-rgb: 236 253 245;\n  --hb-secondary-100-rgb: 209 250 229;\n  --hb-secondary-200-rgb: 167 243 208;\n  --hb-secondary-300-rgb: 110 231 183;\n  --hb-secondary-400-rgb: 52 211 153;\n  --hb-secondary-500-rgb: 16 185 129;\n  --hb-secondary-600-rgb: 5 150 105;\n  --hb-secondary-700-rgb: 4 120 87;\n  --hb-secondary-800-rgb: 6 95 70;\n  --hb-secondary-900-rgb: 6 78 59;\n  --hb-secondary-950-rgb: 2 44 34;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/violet.css",
    "content": "/* Hugo Blox color theme: VIOLET */\n:root {\n  /* Violet Primary Palette */\n  --hb-primary-50-rgb: 245 243 255;\n  --hb-primary-100-rgb: 237 233 254;\n  --hb-primary-200-rgb: 221 214 254;\n  --hb-primary-300-rgb: 196 181 253;\n  --hb-primary-400-rgb: 167 139 250;\n  --hb-primary-500-rgb: 139 92 246;\n  --hb-primary-600-rgb: 124 58 237;\n  --hb-primary-700-rgb: 109 40 217;\n  --hb-primary-800-rgb: 91 33 182;\n  --hb-primary-900-rgb: 76 29 149;\n  --hb-primary-950-rgb: 46 16 101;\n  /* Fuchsia Secondary Palette */\n  --hb-secondary-50-rgb: 253 244 255;\n  --hb-secondary-100-rgb: 250 232 255;\n  --hb-secondary-200-rgb: 245 208 254;\n  --hb-secondary-300-rgb: 240 171 252;\n  --hb-secondary-400-rgb: 232 121 249;\n  --hb-secondary-500-rgb: 217 70 239;\n  --hb-secondary-600-rgb: 192 38 211;\n  --hb-secondary-700-rgb: 162 28 175;\n  --hb-secondary-800-rgb: 134 25 143;\n  --hb-secondary-900-rgb: 112 26 117;\n  --hb-secondary-950-rgb: 74 4 78;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/yellow.css",
    "content": "/* Hugo Blox color theme: YELLOW */\n:root {\n  /* Yellow Primary Palette */\n  --hb-primary-50-rgb: 254 252 232;\n  --hb-primary-100-rgb: 254 249 195;\n  --hb-primary-200-rgb: 254 240 138;\n  --hb-primary-300-rgb: 253 224 71;\n  --hb-primary-400-rgb: 250 204 21;\n  --hb-primary-500-rgb: 234 179 8;\n  --hb-primary-600-rgb: 202 138 4;\n  --hb-primary-700-rgb: 161 98 7;\n  --hb-primary-800-rgb: 133 77 14;\n  --hb-primary-900-rgb: 113 63 18;\n  --hb-primary-950-rgb: 66 32 6;\n  /* Amber Secondary Palette */\n  --hb-secondary-50-rgb: 255 251 235;\n  --hb-secondary-100-rgb: 254 243 199;\n  --hb-secondary-200-rgb: 253 230 138;\n  --hb-secondary-300-rgb: 252 211 77;\n  --hb-secondary-400-rgb: 251 191 36;\n  --hb-secondary-500-rgb: 245 158 11;\n  --hb-secondary-600-rgb: 217 119 6;\n  --hb-secondary-700-rgb: 180 83 9;\n  --hb-secondary-800-rgb: 146 64 14;\n  --hb-secondary-900-rgb: 120 53 15;\n  --hb-secondary-950-rgb: 69 26 3;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/themes/zinc.css",
    "content": "/* Hugo Blox color theme: ZINC */\n:root {\n  /* Zinc Primary Palette */\n  --hb-primary-50-rgb: 250 250 250;\n  --hb-primary-100-rgb: 244 244 245;\n  --hb-primary-200-rgb: 228 228 231;\n  --hb-primary-300-rgb: 212 212 216;\n  --hb-primary-400-rgb: 161 161 170;\n  --hb-primary-500-rgb: 113 113 122;\n  --hb-primary-600-rgb: 82 82 91;\n  --hb-primary-700-rgb: 63 63 70;\n  --hb-primary-800-rgb: 39 39 42;\n  --hb-primary-900-rgb: 24 24 27;\n  --hb-primary-950-rgb: 9 9 11;\n  /* Slate Secondary Palette */\n  --hb-secondary-50-rgb: 248 250 252;\n  --hb-secondary-100-rgb: 241 245 249;\n  --hb-secondary-200-rgb: 226 232 240;\n  --hb-secondary-300-rgb: 203 213 225;\n  --hb-secondary-400-rgb: 148 163 184;\n  --hb-secondary-500-rgb: 100 116 139;\n  --hb-secondary-600-rgb: 71 85 105;\n  --hb-secondary-700-rgb: 51 65 85;\n  --hb-secondary-800-rgb: 30 41 59;\n  --hb-secondary-900-rgb: 15 23 42;\n  --hb-secondary-950-rgb: 2 6 23;\n}\n"
  },
  {
    "path": "modules/blox/assets/css/views/all.css",
    "content": "@import \"attachments.css\";\n"
  },
  {
    "path": "modules/blox/assets/css/views/attachments.css",
    "content": ".hb-attachment-link {\n  @apply inline-block font-semibold uppercase outline-none mr-4 mb-1.5 transition-all text-sm tracking-wide focus:outline-none;\n\n  color: var(--color-primary-600);\n}\n\n.hb-attachment-link:hover {\n  color: var(--color-primary-700);\n  text-decoration: underline;\n}\n\n.dark .hb-attachment-link {\n  color: var(--color-primary-400);\n}\n\n.dark .hb-attachment-link:hover {\n  color: var(--color-primary-300);\n}\n\n/* Small links - used in list views */\n.hb-attachment-link-small {\n  @apply p-0 text-xs;\n}\n\n/* Large links - used on single pages */\n.hb-attachment-link-large {\n  @apply p-0 text-sm;\n}\n"
  },
  {
    "path": "modules/blox/assets/dist/lib/markmap/index.js",
    "content": "this.markmap = this.markmap || {};\n(function(exports) {\n  \"use strict\";\n  var _a;\n  const testPath = \"npm2url/dist/index.cjs\";\n  const defaultProviders = {\n    jsdelivr: (path) => `https://cdn.jsdelivr.net/npm/${path}`,\n    unpkg: (path) => `https://unpkg.com/${path}`\n  };\n  async function checkUrl(url, signal) {\n    const res = await fetch(url, {\n      signal\n    });\n    if (!res.ok) {\n      throw res;\n    }\n    await res.text();\n  }\n  class UrlBuilder {\n    constructor() {\n      this.providers = { ...defaultProviders };\n      this.provider = \"jsdelivr\";\n    }\n    /**\n     * Get the fastest provider name.\n     * If none of the providers returns a valid response within `timeout`, an error will be thrown.\n     */\n    async getFastestProvider(timeout = 5e3, path = testPath) {\n      const controller = new AbortController();\n      let timer = 0;\n      try {\n        return await new Promise((resolve, reject) => {\n          Promise.all(\n            Object.entries(this.providers).map(async ([name, factory]) => {\n              try {\n                await checkUrl(factory(path), controller.signal);\n                resolve(name);\n              } catch {\n              }\n            })\n          ).then(() => reject(new Error(\"All providers failed\")));\n          timer = setTimeout(reject, timeout, new Error(\"Timed out\"));\n        });\n      } finally {\n        controller.abort();\n        clearTimeout(timer);\n      }\n    }\n    /**\n     * Set the current provider to the fastest provider found by `getFastestProvider`.\n     */\n    async findFastestProvider(timeout, path) {\n      this.provider = await this.getFastestProvider(timeout, path);\n      return this.provider;\n    }\n    setProvider(name, factory) {\n      if (factory) {\n        this.providers[name] = factory;\n      } else {\n        delete this.providers[name];\n      }\n    }\n    getFullUrl(path, provider = this.provider) {\n      if (path.includes(\"://\")) {\n        return path;\n      }\n      const factory = this.providers[provider];\n      if (!factory) {\n        throw new Error(`Provider ${provider} not found`);\n      }\n      return factory(path);\n    }\n  }\n  const urlBuilder = new UrlBuilder();\n  Math.random().toString(36).slice(2, 8);\n  function defer() {\n    const obj = {};\n    obj.promise = new Promise((resolve, reject) => {\n      obj.resolve = resolve;\n      obj.reject = reject;\n    });\n    return obj;\n  }\n  function memoize(fn) {\n    const cache = {};\n    return function memoized(...args) {\n      const key = `${args[0]}`;\n      let data = cache[key];\n      if (!data) {\n        data = {\n          value: fn(...args)\n        };\n        cache[key] = data;\n      }\n      return data.value;\n    };\n  }\n  /*! @gera2ld/jsx-dom v2.2.2 | ISC License */\n  const VTYPE_ELEMENT = 1;\n  const VTYPE_FUNCTION = 2;\n  const SVG_NS = \"http://www.w3.org/2000/svg\";\n  const XLINK_NS = \"http://www.w3.org/1999/xlink\";\n  const NS_ATTRS = {\n    show: XLINK_NS,\n    actuate: XLINK_NS,\n    href: XLINK_NS\n  };\n  const isLeaf = (c) => typeof c === \"string\" || typeof c === \"number\";\n  const isElement = (c) => (c == null ? void 0 : c.vtype) === VTYPE_ELEMENT;\n  const isRenderFunction = (c) => (c == null ? void 0 : c.vtype) === VTYPE_FUNCTION;\n  function h(type, props, ...children) {\n    props = Object.assign({}, props, {\n      children: children.length === 1 ? children[0] : children\n    });\n    return jsx(type, props);\n  }\n  function jsx(type, props) {\n    let vtype;\n    if (typeof type === \"string\") vtype = VTYPE_ELEMENT;\n    else if (typeof type === \"function\") vtype = VTYPE_FUNCTION;\n    else throw new Error(\"Invalid VNode type\");\n    return {\n      vtype,\n      type,\n      props\n    };\n  }\n  function Fragment(props) {\n    return props.children;\n  }\n  const DEFAULT_ENV = {\n    isSvg: false\n  };\n  function insertDom(parent, nodes) {\n    if (!Array.isArray(nodes)) nodes = [nodes];\n    nodes = nodes.filter(Boolean);\n    if (nodes.length) parent.append(...nodes);\n  }\n  function mountAttributes(domElement, props, env) {\n    for (const key in props) {\n      if (key === \"key\" || key === \"children\" || key === \"ref\") continue;\n      if (key === \"dangerouslySetInnerHTML\") {\n        domElement.innerHTML = props[key].__html;\n      } else if (key === \"innerHTML\" || key === \"textContent\" || key === \"innerText\" || key === \"value\" && [\"textarea\", \"select\"].includes(domElement.tagName)) {\n        const value = props[key];\n        if (value != null) domElement[key] = value;\n      } else if (key.startsWith(\"on\")) {\n        domElement[key.toLowerCase()] = props[key];\n      } else {\n        setDOMAttribute(domElement, key, props[key], env.isSvg);\n      }\n    }\n  }\n  const attrMap = {\n    className: \"class\",\n    labelFor: \"for\"\n  };\n  function setDOMAttribute(el, attr, value, isSVG) {\n    attr = attrMap[attr] || attr;\n    if (value === true) {\n      el.setAttribute(attr, \"\");\n    } else if (value === false) {\n      el.removeAttribute(attr);\n    } else {\n      const namespace = isSVG ? NS_ATTRS[attr] : void 0;\n      if (namespace !== void 0) {\n        el.setAttributeNS(namespace, attr, value);\n      } else {\n        el.setAttribute(attr, value);\n      }\n    }\n  }\n  function flatten(arr) {\n    return arr.reduce((prev, item) => prev.concat(item), []);\n  }\n  function mountChildren(children, env) {\n    return Array.isArray(children) ? flatten(children.map((child) => mountChildren(child, env))) : mount(children, env);\n  }\n  function mount(vnode, env = DEFAULT_ENV) {\n    if (vnode == null || typeof vnode === \"boolean\") {\n      return null;\n    }\n    if (vnode instanceof Node) {\n      return vnode;\n    }\n    if (isRenderFunction(vnode)) {\n      const {\n        type,\n        props\n      } = vnode;\n      if (type === Fragment) {\n        const node = document.createDocumentFragment();\n        if (props.children) {\n          const children = mountChildren(props.children, env);\n          insertDom(node, children);\n        }\n        return node;\n      }\n      const childVNode = type(props);\n      return mount(childVNode, env);\n    }\n    if (isLeaf(vnode)) {\n      return document.createTextNode(`${vnode}`);\n    }\n    if (isElement(vnode)) {\n      let node;\n      const {\n        type,\n        props\n      } = vnode;\n      if (!env.isSvg && type === \"svg\") {\n        env = Object.assign({}, env, {\n          isSvg: true\n        });\n      }\n      if (!env.isSvg) {\n        node = document.createElement(type);\n      } else {\n        node = document.createElementNS(SVG_NS, type);\n      }\n      mountAttributes(node, props, env);\n      if (props.children) {\n        let childEnv = env;\n        if (env.isSvg && type === \"foreignObject\") {\n          childEnv = Object.assign({}, childEnv, {\n            isSvg: false\n          });\n        }\n        const children = mountChildren(props.children, childEnv);\n        if (children != null) insertDom(node, children);\n      }\n      const {\n        ref\n      } = props;\n      if (typeof ref === \"function\") ref(node);\n      return node;\n    }\n    throw new Error(\"mount: Invalid Vnode!\");\n  }\n  function mountDom(vnode) {\n    return mount(vnode);\n  }\n  function hm(...args) {\n    return mountDom(h(...args));\n  }\n  const memoizedPreloadJS = memoize((url) => {\n    document.head.append(\n      hm(\"link\", {\n        rel: \"preload\",\n        as: \"script\",\n        href: url\n      })\n    );\n  });\n  const jsCache = {};\n  const cssCache = {};\n  async function loadJSItem(item, context) {\n    var _a2;\n    const src = item.type === \"script\" && ((_a2 = item.data) == null ? void 0 : _a2.src) || \"\";\n    item.loaded || (item.loaded = jsCache[src]);\n    if (!item.loaded) {\n      const deferred = defer();\n      item.loaded = deferred.promise;\n      if (item.type === \"script\") {\n        document.head.append(\n          hm(\"script\", {\n            ...item.data,\n            onLoad: () => deferred.resolve(),\n            onError: deferred.reject\n          })\n        );\n        if (!src) {\n          deferred.resolve();\n        } else {\n          jsCache[src] = item.loaded;\n        }\n      }\n      if (item.type === \"iife\") {\n        const { fn, getParams } = item.data;\n        fn(...(getParams == null ? void 0 : getParams(context)) || []);\n        deferred.resolve();\n      }\n    }\n    await item.loaded;\n  }\n  async function loadCSSItem(item) {\n    const url = item.type === \"stylesheet\" && item.data.href || \"\";\n    item.loaded || (item.loaded = cssCache[url]);\n    if (!item.loaded) {\n      const deferred = defer();\n      item.loaded = deferred.promise;\n      if (url) cssCache[url] = item.loaded;\n      if (item.type === \"style\") {\n        document.head.append(\n          hm(\"style\", {\n            textContent: item.data\n          })\n        );\n        deferred.resolve();\n      } else if (url) {\n        document.head.append(\n          hm(\"link\", {\n            rel: \"stylesheet\",\n            ...item.data\n          })\n        );\n        fetch(url).then((res) => {\n          if (res.ok) return res.text();\n          throw res;\n        }).then(() => deferred.resolve(), deferred.reject);\n      }\n    }\n    await item.loaded;\n  }\n  async function loadJS(items, context) {\n    items.forEach((item) => {\n      var _a2;\n      if (item.type === \"script\" && ((_a2 = item.data) == null ? void 0 : _a2.src)) {\n        memoizedPreloadJS(item.data.src);\n      }\n    });\n    context = {\n      getMarkmap: () => window.markmap,\n      ...context\n    };\n    for (const item of items) {\n      await loadJSItem(item, context);\n    }\n  }\n  async function loadCSS(items) {\n    await Promise.all(items.map((item) => loadCSSItem(item)));\n  }\n  function buildJSItem(path) {\n    return {\n      type: \"script\",\n      data: {\n        src: path\n      }\n    };\n  }\n  function buildCSSItem(path) {\n    return {\n      type: \"stylesheet\",\n      data: {\n        href: path\n      }\n    };\n  }\n  const enabled = {};\n  const autoLoaderOptions = {\n    baseJs: [\n      `d3@${\"7.9.0\"}`,\n      `markmap-lib@${\"0.18.12\"}`,\n      `markmap-view@${\"0.18.12\"}`,\n      `markmap-toolbar@${\"0.18.12\"}`\n    ],\n    baseCss: [`markmap-toolbar@${\"0.18.12\"}/dist/style.css`],\n    manual: false,\n    toolbar: false,\n    ...(_a = window.markmap) == null ? void 0 : _a.autoLoader\n  };\n  async function initialize() {\n    var _a2;\n    if (typeof autoLoaderOptions.provider === \"function\") {\n      urlBuilder.setProvider(\n        urlBuilder.provider = \"autoLoader\",\n        autoLoaderOptions.provider\n      );\n    } else if (typeof autoLoaderOptions.provider === \"string\") {\n      urlBuilder.provider = autoLoaderOptions.provider;\n    } else {\n      try {\n        await urlBuilder.findFastestProvider();\n      } catch {\n      }\n    }\n    await Promise.all([\n      loadJS(\n        autoLoaderOptions.baseJs.map(\n          (item) => typeof item === \"string\" ? buildJSItem(urlBuilder.getFullUrl(item)) : item\n        )\n      ),\n      loadCSS(\n        autoLoaderOptions.baseCss.map(\n          (item) => typeof item === \"string\" ? buildCSSItem(urlBuilder.getFullUrl(item)) : item\n        )\n      )\n    ]);\n    const { markmap } = window;\n    const style = document.createElement(\"style\");\n    style.textContent = markmap.globalCSS;\n    document.body.prepend(style);\n    (_a2 = autoLoaderOptions.onReady) == null ? void 0 : _a2.call(autoLoaderOptions);\n  }\n  const ready = initialize();\n  function transform(transformer, content) {\n    const result = transformer.transform(content);\n    const keys = Object.keys(result.features).filter((key) => !enabled[key]);\n    keys.forEach((key) => {\n      enabled[key] = true;\n    });\n    const { styles, scripts } = transformer.getAssets(keys);\n    const { markmap } = window;\n    if (styles) markmap.loadCSS(styles);\n    if (scripts) markmap.loadJS(scripts);\n    return result;\n  }\n  function render(el) {\n    var _a2;\n    const { Transformer, Markmap, deriveOptions, Toolbar } = window.markmap;\n    const lines = ((_a2 = el.textContent) == null ? void 0 : _a2.split(\"\\n\")) || [];\n    let indent = Infinity;\n    lines.forEach((line) => {\n      var _a3;\n      const spaces = ((_a3 = line.match(/^\\s*/)) == null ? void 0 : _a3[0].length) || 0;\n      if (spaces < line.length) indent = Math.min(indent, spaces);\n    });\n    const content = lines.map((line) => line.slice(indent)).join(\"\\n\").trim();\n    const transformer = new Transformer(autoLoaderOptions.transformPlugins);\n    transformer.urlBuilder = urlBuilder;\n    el.innerHTML = \"<svg></svg>\";\n    const svg = el.firstChild;\n    const mm = Markmap.create(svg, { embedGlobalCSS: false });\n    if (autoLoaderOptions.toolbar) {\n      const { el: toolbar } = Toolbar.create(mm);\n      Object.assign(toolbar.style, {\n        position: \"absolute\",\n        right: \"20px\",\n        bottom: \"20px\"\n      });\n      el.append(toolbar);\n    }\n    const doRender = async () => {\n      const { root, frontmatter } = transform(transformer, content);\n      const markmapOptions = frontmatter == null ? void 0 : frontmatter.markmap;\n      const frontmatterOptions = deriveOptions(markmapOptions);\n      await mm.setData(root, frontmatterOptions);\n      mm.fit();\n    };\n    transformer.hooks.retransform.tap(doRender);\n    doRender();\n  }\n  async function renderAllUnder(container) {\n    await ready;\n    container.querySelectorAll(\".markmap\").forEach(render);\n  }\n  function renderAll() {\n    return renderAllUnder(document);\n  }\n  if (!autoLoaderOptions.manual) {\n    if (document.readyState === \"loading\")\n      document.addEventListener(\"DOMContentLoaded\", () => {\n        renderAll();\n      });\n    else renderAll();\n  }\n  exports.ready = ready;\n  exports.render = render;\n  exports.renderAll = renderAll;\n  exports.renderAllUnder = renderAllUnder;\n  Object.defineProperty(exports, Symbol.toStringTag, { value: \"Module\" });\n})(this.markmap.autoLoader = this.markmap.autoLoader || {});\n"
  },
  {
    "path": "modules/blox/assets/dist/lib/vendor-libs.mjs",
    "content": "const e = {};\nexport {\n  e as default\n};\n"
  },
  {
    "path": "modules/blox/assets/js/hb-animations.js",
    "content": "/**\n * Hugo Blox Animations\n * Typewriter effect and scroll-triggered animations using Alpine.js\n */\n\ndocument.addEventListener(\"alpine:init\", () => {\n  // Typewriter effect component\n  Alpine.data(\"typewriter\", (strings = [], options = {}) => ({\n    strings: strings,\n    currentIndex: 0,\n    currentText: \"\",\n    isDeleting: false,\n    typeSpeed: options.typeSpeed || 80,\n    deleteSpeed: options.deleteSpeed || 50,\n    pauseTime: options.pauseTime || 2000,\n    loop: options.loop !== false,\n    showCursor: options.cursor !== false,\n\n    init() {\n      if (this.strings.length === 0) return;\n      this.type();\n    },\n\n    type() {\n      const current = this.strings[this.currentIndex];\n\n      if (this.isDeleting) {\n        this.currentText = current.substring(0, this.currentText.length - 1);\n      } else {\n        this.currentText = current.substring(0, this.currentText.length + 1);\n      }\n\n      let delay = this.isDeleting ? this.deleteSpeed : this.typeSpeed;\n\n      if (!this.isDeleting && this.currentText === current) {\n        // Finished typing, pause then delete\n        delay = this.pauseTime;\n        this.isDeleting = true;\n      } else if (this.isDeleting && this.currentText === \"\") {\n        // Finished deleting, move to next string\n        this.isDeleting = false;\n        this.currentIndex = (this.currentIndex + 1) % this.strings.length;\n\n        if (!this.loop && this.currentIndex === 0) {\n          // Don't loop, show first string permanently\n          this.currentText = this.strings[0];\n          return;\n        }\n        delay = 500; // Pause before typing next\n      }\n\n      setTimeout(() => this.type(), delay);\n    },\n  }));\n\n  // Scroll reveal directive\n  Alpine.directive(\"reveal\", (el, {expression, modifiers}, {evaluate}) => {\n    const options = expression ? evaluate(expression) : {};\n    const delay = options.delay || 0;\n    const duration = options.duration || 600;\n    const distance = options.distance || \"20px\";\n    const direction = modifiers.includes(\"left\") ? \"left\" : modifiers.includes(\"right\") ? \"right\" : modifiers.includes(\"down\") ? \"down\" : \"up\";\n\n    // Set initial state\n    el.style.opacity = \"0\";\n    el.style.transition = `opacity ${duration}ms ease-out, transform ${duration}ms ease-out`;\n    el.style.transitionDelay = `${delay}ms`;\n\n    const transforms = {\n      up: `translateY(${distance})`,\n      down: `translateY(-${distance})`,\n      left: `translateX(${distance})`,\n      right: `translateX(-${distance})`,\n    };\n    el.style.transform = transforms[direction];\n\n    // Observe intersection\n    const observer = new IntersectionObserver(\n      (entries) => {\n        entries.forEach((entry) => {\n          if (entry.isIntersecting) {\n            el.style.opacity = \"1\";\n            el.style.transform = \"translate(0, 0)\";\n            observer.unobserve(el);\n          }\n        });\n      },\n      {threshold: 0.1, rootMargin: \"0px 0px -50px 0px\"},\n    );\n\n    observer.observe(el);\n  });\n});\n\n// Staggered reveal for groups of elements\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  // Add stagger delays to elements with data-stagger attribute\n  document.querySelectorAll(\"[data-stagger]\").forEach((container) => {\n    const children = container.querySelectorAll(\"[data-stagger-item]\");\n    const baseDelay = parseInt(container.dataset.stagger, 10) || 100;\n\n    children.forEach((child, index) => {\n      child.style.transitionDelay = `${index * baseDelay}ms`;\n    });\n  });\n});\n\n// Respect reduced motion preference\nif (window.matchMedia(\"(prefers-reduced-motion: reduce)\").matches) {\n  document.documentElement.classList.add(\"reduce-motion\");\n}\n"
  },
  {
    "path": "modules/blox/assets/js/hb-citation.js",
    "content": "/**\n * Citation clipboard handler for Hugo Blox Kit\n * Copies BibTeX citation to clipboard when cite button is clicked\n */\n\nimport {hugoEnvironment, i18n} from \"@params\";\nimport {ClipboardCache, copyToClipboardSync} from \"./hb-clipboard.js\";\nimport {showNotification} from \"./hb-notifier.js\";\n\n// Debug mode based on environment\nconst isDebugMode = hugoEnvironment === \"development\";\n\n// Cache for citation content\nconst citationCache = new ClipboardCache();\n\n// Initialize citation handlers when DOM is ready\nif (document.readyState === \"loading\") {\n  document.addEventListener(\"DOMContentLoaded\", initializeCitation);\n} else {\n  initializeCitation();\n}\n\nfunction initializeCitation() {\n  // Handle citation button clicks using event delegation\n  document.addEventListener(\"click\", handleCiteClick);\n\n  // Prefetch citations on hover/focus for better UX and Safari compatibility\n  document.addEventListener(\"mouseover\", prefetchOnHover);\n  document.addEventListener(\"focusin\", prefetchOnHover);\n\n  // Prefetch all citations on page load\n  prefetchAllCitations();\n}\n\n/**\n * Prefetch all citations on page load\n */\nfunction prefetchAllCitations() {\n  const citeButtons = document.querySelectorAll(\".js-cite-clipboard[data-filename]\");\n  citeButtons.forEach((button) => {\n    const filename = button.getAttribute(\"data-filename\");\n    if (filename && !citationCache.has(filename)) {\n      // Fetch in background, don't await\n      fetchAndCacheCitation(filename);\n    }\n  });\n}\n\n/**\n * Prefetch citation on hover/focus\n * @param {Event} e - Hover or focus event\n */\nfunction prefetchOnHover(e) {\n  const citeButton = e.target.closest(\".js-cite-clipboard\");\n  if (!citeButton) return;\n\n  const filename = citeButton.getAttribute(\"data-filename\");\n  if (filename && !citationCache.has(filename)) {\n    // Fetch in background, don't await\n    fetchAndCacheCitation(filename);\n  }\n}\n\n/**\n * Fetch and cache citation content\n * @param {string} filename - Citation file URL\n * @returns {Promise<string|null>} - Citation content or null if failed\n */\nasync function fetchAndCacheCitation(filename) {\n  try {\n    const response = await fetch(filename);\n    if (!response.ok) {\n      throw new Error(`Failed to fetch citation: ${response.statusText}`);\n    }\n    const citation = await response.text();\n    citationCache.set(filename, citation);\n    return citation;\n  } catch (error) {\n    if (isDebugMode) {\n      console.error(`Failed to fetch citation ${filename}:`, error);\n    }\n    return null;\n  }\n}\n\n/**\n * Handle cite button clicks - synchronous clipboard write for Safari compatibility\n * @param {Event} e - Click event\n */\nfunction handleCiteClick(e) {\n  // Check if clicked element or its parent is a cite button\n  const citeButton = e.target.closest(\".js-cite-clipboard\");\n  if (!citeButton) return;\n\n  e.preventDefault();\n  e.stopPropagation();\n\n  const filename = citeButton.getAttribute(\"data-filename\");\n  if (!filename) {\n    if (isDebugMode) {\n      console.error(\"No filename specified for citation\");\n    }\n    showNotification(\"Citation file not found\", \"error\");\n    return;\n  }\n\n  // Check if citation is cached\n  const cachedCitation = citationCache.get(filename);\n\n  if (cachedCitation) {\n    // Citation is cached, copy immediately (synchronous for Safari)\n    copyToClipboardSync(cachedCitation).then((success) => {\n      if (success) {\n        showNotification(i18n?.copied || \"Citation copied!\", \"success\");\n        updateButtonText(citeButton);\n      } else {\n        showNotification(\"Failed to copy citation\", \"error\");\n      }\n    });\n  } else {\n    // Not cached, need to fetch first (will fail in Safari with strict mode)\n    fetchAndCopyWithFallback(filename, citeButton);\n  }\n}\n\n/**\n * Fetch and copy with fallback (for browsers that allow async clipboard)\n * @param {string} filename - Citation file URL\n * @param {HTMLElement} button - Cite button element\n */\nasync function fetchAndCopyWithFallback(filename, button) {\n  try {\n    const citation = await fetchAndCacheCitation(filename);\n    if (citation) {\n      // Try to copy (might fail in Safari due to lost user activation)\n      const success = await copyToClipboardSync(citation);\n      if (success) {\n        showNotification(i18n?.copied || \"Citation copied!\", \"success\");\n        updateButtonText(button);\n      } else {\n        showNotification(\"Failed to copy citation\", \"error\");\n      }\n    } else {\n      showNotification(\"Failed to load citation\", \"error\");\n    }\n  } catch (error) {\n    if (isDebugMode) {\n      console.error(\"Failed to copy citation:\", error);\n    }\n    // If it's a NotAllowedError, suggest hovering first\n    if (error.name === \"NotAllowedError\") {\n      showNotification(\"Please hover over the button first, then click\", \"info\");\n    } else {\n      showNotification(\"Failed to copy citation\", \"error\");\n    }\n  }\n}\n\n/**\n * Update button text to show copied state\n * @param {HTMLElement} button - The cite button element\n */\nfunction updateButtonText(button) {\n  const copiedText = i18n?.copied || \"Copied!\";\n\n  // Find text element to update (skip icon)\n  const textElement = button.querySelector(\"span\");\n  if (!textElement) {\n    if (isDebugMode) {\n      console.warn(\"Could not find text element in cite button\");\n    }\n    return;\n  }\n\n  const originalText = textElement.textContent;\n  textElement.textContent = copiedText;\n\n  // Add visual feedback\n  button.classList.add(\"opacity-70\");\n\n  // Revert after 2 seconds\n  setTimeout(() => {\n    textElement.textContent = originalText;\n    button.classList.remove(\"opacity-70\");\n  }, 2000);\n}\n\n// Export functions for potential reuse\nexport {handleCiteClick, prefetchAllCitations};\n"
  },
  {
    "path": "modules/blox/assets/js/hb-clipboard.js",
    "content": "/**\n * Clipboard Utilities for Hugo Blox Kit\n * Provides cross-browser clipboard functionality\n */\n\nimport {hugoEnvironment} from \"@params\";\n\n// Debug mode based on environment\nconst isDebugMode = hugoEnvironment === \"development\";\n\n/**\n * Copy text to clipboard with multiple fallback methods\n * @param {string} text - Text to copy\n * @returns {Promise<boolean>} - Whether the copy was successful\n */\nexport async function copyToClipboard(text) {\n  // Method 1: Modern Clipboard API\n  if (navigator.clipboard && window.isSecureContext) {\n    try {\n      await navigator.clipboard.writeText(text);\n      if (isDebugMode) {\n        console.log(\"Copied using Clipboard API\");\n      }\n      return true;\n    } catch (err) {\n      if (isDebugMode) {\n        console.warn(\"Clipboard API failed:\", err);\n      }\n    }\n  }\n\n  // Method 2: execCommand fallback\n  return copyUsingExecCommand(text);\n}\n\n/**\n * Copy text to clipboard synchronously (Safari-compatible)\n * @param {string} text - Text to copy\n * @returns {Promise<boolean>} - Whether the copy was successful\n */\nexport function copyToClipboardSync(text) {\n  return new Promise((resolve) => {\n    // Try modern clipboard API first\n    if (navigator.clipboard && window.isSecureContext) {\n      navigator.clipboard\n        .writeText(text)\n        .then(() => {\n          if (isDebugMode) {\n            console.log(\"Copied using Clipboard API (sync)\");\n          }\n          resolve(true);\n        })\n        .catch((err) => {\n          if (isDebugMode) {\n            console.warn(\"Clipboard API failed:\", err);\n          }\n          // Fallback to execCommand\n          resolve(copyUsingExecCommand(text));\n        });\n    } else {\n      // Use execCommand directly\n      resolve(copyUsingExecCommand(text));\n    }\n  });\n}\n\n/**\n * Legacy copy method using execCommand\n * @param {string} text - Text to copy\n * @returns {boolean} - Success status\n */\nexport function copyUsingExecCommand(text) {\n  const textarea = document.createElement(\"textarea\");\n  textarea.value = text;\n\n  // Make it invisible but copyable\n  Object.assign(textarea.style, {\n    position: \"fixed\",\n    top: \"0\",\n    left: \"0\",\n    width: \"2em\",\n    height: \"2em\",\n    padding: \"0\",\n    border: \"none\",\n    outline: \"none\",\n    boxShadow: \"none\",\n    background: \"transparent\",\n    fontSize: \"16px\", // Prevent zoom on iOS\n  });\n\n  document.body.appendChild(textarea);\n\n  // Select the text\n  textarea.focus();\n  textarea.select();\n\n  // For iOS\n  if (navigator.userAgent.match(/ipad|iphone/i)) {\n    const range = document.createRange();\n    range.selectNodeContents(textarea);\n    const selection = window.getSelection();\n    selection.removeAllRanges();\n    selection.addRange(range);\n    textarea.setSelectionRange(0, 999999);\n  }\n\n  let success = false;\n  try {\n    success = document.execCommand(\"copy\");\n    if (isDebugMode) {\n      console.log(`execCommand copy ${success ? \"succeeded\" : \"failed\"}`);\n    }\n  } catch (err) {\n    if (isDebugMode) {\n      console.error(\"execCommand failed:\", err);\n    }\n  }\n\n  document.body.removeChild(textarea);\n  return success;\n}\n\n/**\n * Test if clipboard API is available and working\n * @returns {boolean} - Whether clipboard API is available\n */\nexport function isClipboardAPIAvailable() {\n  return !!(navigator.clipboard && window.isSecureContext);\n}\n\n/**\n * Create a prefetch cache for clipboard content\n * Useful for Safari compatibility where content must be copied synchronously\n */\nexport class ClipboardCache {\n  constructor() {\n    this.cache = new Map();\n  }\n\n  /**\n   * Add content to cache\n   * @param {string} key - Cache key\n   * @param {string} content - Content to cache\n   */\n  set(key, content) {\n    this.cache.set(key, content);\n    if (isDebugMode) {\n      console.log(`Cached clipboard content for: ${key}`);\n    }\n  }\n\n  /**\n   * Get content from cache\n   * @param {string} key - Cache key\n   * @returns {string|null} - Cached content or null\n   */\n  get(key) {\n    return this.cache.get(key) || null;\n  }\n\n  /**\n   * Check if content is cached\n   * @param {string} key - Cache key\n   * @returns {boolean} - Whether content is cached\n   */\n  has(key) {\n    return this.cache.has(key);\n  }\n\n  /**\n   * Clear the cache\n   */\n  clear() {\n    this.cache.clear();\n  }\n\n  /**\n   * Get cache size\n   * @returns {number} - Number of cached items\n   */\n  get size() {\n    return this.cache.size;\n  }\n}\n\n// Export default clipboard copy function\nexport default copyToClipboard;\n"
  },
  {
    "path": "modules/blox/assets/js/hb-code-copy.js",
    "content": "import {hugoEnvironment, i18n} from \"@params\";\n\n// Constants\nconst NOTIFICATION_DURATION = 2000; // milliseconds\nconst DEBOUNCE_DELAY = 300; // milliseconds\n\n// Debug mode based on environment\nconst isDebugMode = hugoEnvironment === \"development\";\n\n/**\n * Debounce function to prevent rapid clicking\n * @param {Function} func - Function to debounce\n * @param {number} wait - Wait time in milliseconds\n * @returns {Function} Debounced function\n */\nconst debounce = (func, wait) => {\n  let timeout;\n  return function executedFunction(...args) {\n    const later = () => {\n      clearTimeout(timeout);\n      func(...args);\n    };\n    clearTimeout(timeout);\n    timeout = setTimeout(later, wait);\n  };\n};\n\n/**\n * Copies code to clipboard, excluding the copy button text\n * @param {HTMLElement} button - The copy button element\n * @param {HTMLElement} codeWrapper - The wrapper containing the code\n * @throws {Error} When clipboard operations fail\n */\nasync function copyCodeToClipboard(button, codeWrapper) {\n  if (!button || !(button instanceof HTMLElement)) {\n    throw new Error(\"Invalid button element\");\n  }\n  if (!codeWrapper || !(codeWrapper instanceof HTMLElement)) {\n    throw new Error(\"Invalid code wrapper element\");\n  }\n\n  // Clone the wrapper to avoid modifying the displayed content\n  const tempWrapper = codeWrapper.cloneNode(true);\n\n  // Remove the copy button from the cloned wrapper\n  const copyButton = tempWrapper.querySelector(\".copy-button\");\n  if (copyButton) {\n    copyButton.remove();\n  }\n\n  const codeToCopy = tempWrapper.textContent?.trim() ?? \"\";\n\n  if (!codeToCopy) {\n    throw new Error(\"No code content found to copy\");\n  }\n\n  try {\n    await navigator.clipboard.writeText(codeToCopy);\n    copiedNotification(button);\n    isDebugMode && console.debug(\"Code copied successfully\");\n  } catch (err) {\n    const errorMessage = err instanceof Error ? err.message : \"Unknown error\";\n    console.error(\"Failed to copy:\", errorMessage);\n    button.innerHTML = i18n.copyFailed || \"Failed\";\n    setTimeout(() => {\n      button.innerHTML = i18n.copy;\n    }, NOTIFICATION_DURATION);\n    throw err; // Re-throw for potential error boundary handling\n  }\n}\n\n/**\n * Updates button text to show copied notification\n * @param {HTMLElement} copyBtn - The copy button element\n */\nfunction copiedNotification(copyBtn) {\n  copyBtn.innerHTML = i18n.copied;\n  copyBtn.disabled = true;\n  copyBtn.classList.add(\"copied\");\n\n  setTimeout(() => {\n    copyBtn.innerHTML = i18n.copy;\n    copyBtn.disabled = false;\n    copyBtn.classList.remove(\"copied\");\n  }, NOTIFICATION_DURATION);\n}\n\n/**\n * Creates a copy button element\n * @returns {HTMLButtonElement} The created button\n */\nfunction createCopyButton() {\n  const copyBtn = document.createElement(\"button\");\n  copyBtn.classList.add(\"copy-button\");\n  copyBtn.innerHTML = i18n.copy;\n  copyBtn.setAttribute(\"aria-label\", i18n.copyLabel || \"Copy code to clipboard\");\n  copyBtn.setAttribute(\"type\", \"button\"); // Explicit button type\n  return copyBtn;\n}\n\n/**\n * Gets the appropriate wrapper for a code block\n * @param {HTMLElement} codeblock - The code block element\n * @returns {HTMLElement} The wrapper element\n */\nfunction getCodeWrapper(codeblock) {\n  const container = codeblock.parentNode?.parentNode;\n  if (!container) {\n    throw new Error(\"Invalid code block structure\");\n  }\n\n  if (container.classList.contains(\"highlight\")) {\n    return container;\n  }\n\n  const tableWrapper = container.closest(\"table\");\n  if (tableWrapper) {\n    return tableWrapper;\n  }\n\n  const preElement = codeblock.parentElement;\n  if (preElement) {\n    preElement.classList.add(\"highlight\");\n    return preElement;\n  }\n\n  throw new Error(\"Could not determine code wrapper\");\n}\n\n/**\n * Initializes copy buttons for all code blocks\n */\nfunction initializeCodeCopyButtons() {\n  try {\n    const codeBlocks = document.querySelectorAll(\"pre > code\");\n    isDebugMode && console.debug(`Found ${codeBlocks.length} code blocks`);\n\n    codeBlocks.forEach((codeblock, index) => {\n      try {\n        const wrapper = getCodeWrapper(codeblock);\n        const copyBtn = createCopyButton();\n\n        // Use debounced version of copy function\n        const debouncedCopy = debounce(() => copyCodeToClipboard(copyBtn, wrapper), DEBOUNCE_DELAY);\n\n        copyBtn.addEventListener(\"click\", debouncedCopy);\n        wrapper.appendChild(copyBtn);\n      } catch (err) {\n        console.error(`Failed to initialize copy button for code block ${index}:`, err);\n      }\n    });\n  } catch (err) {\n    console.error(\"Failed to initialize code copy buttons:\", err);\n  }\n}\n\n// Initialize when DOM is ready\nif (document.readyState === \"loading\") {\n  window.addEventListener(\"DOMContentLoaded\", initializeCodeCopyButtons);\n} else {\n  initializeCodeCopyButtons();\n}\n"
  },
  {
    "path": "modules/blox/assets/js/hb-head.js",
    "content": "import {applyHugoStyleFixes, initTheme} from \"./hb-init.js\";\n\n// Initialize Hugo Blox Kit global object\nconst root = document.documentElement;\nconst defaultTheme = root.dataset.wcThemeDefault || \"system\";\nconst relBase = root.dataset.hbbRelurl || \"/\";\nconst normalizedRelBase = relBase.endsWith(\"/\") ? relBase : `${relBase}/`;\nconst buildAssetPath = (relativePath) => {\n  const sanitizedRelative = relativePath.startsWith(\"/\") ? relativePath.slice(1) : relativePath;\n  return `${normalizedRelBase}${sanitizedRelative}`;\n};\n\n// Create global HBB object with theme functions\nwindow.hbb = {\n  defaultTheme: defaultTheme,\n  relBase: normalizedRelBase,\n  assetPaths: {\n    pagefind: buildAssetPath(\"pagefind/pagefind.js\"),\n  },\n  setDarkTheme: () => {\n    root.classList.add(\"dark\");\n    root.style.colorScheme = \"dark\";\n  },\n  setLightTheme: () => {\n    root.classList.remove(\"dark\");\n    root.style.colorScheme = \"light\";\n  },\n};\n\ninitTheme();\napplyHugoStyleFixes();\n"
  },
  {
    "path": "modules/blox/assets/js/hb-i18n.js",
    "content": "window.addEventListener(\"DOMContentLoaded\", () => {\n  // Toggle language chooser sub-menu\n  const languageChoosers = document.querySelectorAll(\"[data-hb-language-chooser]\");\n  languageChoosers.forEach((languageChooser) => {\n    languageChooser.addEventListener(\"click\", (e) => {\n      e.preventDefault();\n      languageChooser.dataset.state = languageChooser.dataset.state === \"open\" ? \"closed\" : \"open\";\n      const languageOptions = languageChooser.nextElementSibling;\n      languageOptions.classList.toggle(\"hidden\");\n      const languageChooserRect = languageChooser.getBoundingClientRect();\n      const translateY = languageChooserRect.bottom - window.innerHeight + 40;\n      languageOptions.style.transform = `translate3d(${languageChooserRect.left}px, ${translateY}px, 0)`;\n      languageOptions.style.minWidth = `${Math.max(languageChooserRect.width, 50)}px`;\n    });\n  });\n\n  // Handle clicks outside chooser\n  document.addEventListener(\"click\", (e) => {\n    if (e.target.closest(\"[data-hb-language-chooser]\") === null) {\n      languageChoosers.forEach((languageChooser) => {\n        languageChooser.dataset.state = \"closed\";\n        const languageOptions = languageChooser.nextElementSibling;\n        languageOptions.classList.add(\"hidden\");\n      });\n    }\n  });\n});\n"
  },
  {
    "path": "modules/blox/assets/js/hb-init.js",
    "content": "// Hugo Blox JS Global Init (CSP-friendly)\nexport function initTheme() {\n  const root = document.documentElement;\n  const defaultTheme = root.dataset.wcThemeDefault;\n  const setDark = () => {\n    root.classList.add(\"dark\");\n    root.style.colorScheme = \"dark\";\n  };\n  const setLight = () => {\n    root.classList.remove(\"dark\");\n    root.style.colorScheme = \"light\";\n  };\n\n  if (\"wc-color-theme\" in localStorage) {\n    localStorage.getItem(\"wc-color-theme\") === \"dark\" ? setDark() : setLight();\n  } else {\n    if (defaultTheme === \"dark\") setDark();\n    else if (defaultTheme === \"light\") setLight();\n    else if (defaultTheme === \"system\") {\n      window.matchMedia(\"(prefers-color-scheme: dark)\").matches ? setDark() : setLight();\n    }\n  }\n}\n\nexport function applyHugoStyleFixes() {\n  document.addEventListener(\"DOMContentLoaded\", () => {\n    const checkboxes = document.querySelectorAll(\"li input[type='checkbox'][disabled]\");\n    checkboxes.forEach((e) => {\n      const parent = e.parentElement?.parentElement;\n      if (parent) parent.classList.add(\"task-list\");\n    });\n\n    const liNodes = document.querySelectorAll(\".task-list li\");\n    liNodes.forEach((nodes) => {\n      const textNodes = Array.from(nodes.childNodes).filter((node) => node.nodeType === 3 && node.textContent && node.textContent.trim().length > 1);\n      if (textNodes.length > 0) {\n        const span = document.createElement(\"label\");\n        textNodes[0].after(span);\n        const input = nodes.querySelector(\"input[type='checkbox']\");\n        if (input) span.appendChild(input);\n        span.appendChild(textNodes[0]);\n      }\n    });\n  });\n}\n"
  },
  {
    "path": "modules/blox/assets/js/hb-mermaid-config.js",
    "content": "function getCssVar(name) {\n  const value = getComputedStyle(document.documentElement).getPropertyValue(name).trim();\n  return value ? `rgb(${value})` : null;\n}\n\nwindow.mermaid.initialize({\n  theme: \"base\",\n  themeVariables: {\n    background: getCssVar(\"--color-neutral-50\") || \"#fafafa\",\n    primaryColor: getCssVar(\"--color-primary-200\") || \"#bfdbfe\",\n    secondaryColor: getCssVar(\"--color-secondary-200\") || \"#a5f3fc\",\n    tertiaryColor: getCssVar(\"--color-neutral-100\") || \"#f5f5f5\",\n    primaryBorderColor: getCssVar(\"--color-primary-400\") || \"#60a5fa\",\n    secondaryBorderColor: getCssVar(\"--color-secondary-400\") || \"#22d3ee\",\n    tertiaryBorderColor: getCssVar(\"--color-neutral-400\") || \"#a3a3a3\",\n    lineColor: getCssVar(\"--color-neutral-600\") || \"#525252\",\n    fontFamily: getComputedStyle(document.documentElement).getPropertyValue(\"font-family\"),\n    fontSize: \"16px\",\n  },\n});\n"
  },
  {
    "path": "modules/blox/assets/js/hb-nav.js",
    "content": "// Navigation\n\nconst applyScrollPadding = () => {\n  const header = document.querySelector(\".page-header\");\n  const position = header.getBoundingClientRect();\n  document.documentElement.style.scrollPaddingTop = `${position.height.toString()}px`;\n  const r = document.querySelector(\":root\");\n  r.style.setProperty(\"--navbar-height\", `${position.height.toString()}px`);\n};\n\nwindow.addEventListener(\"DOMContentLoaded\", () => {\n  const dropdownMenus = document.querySelectorAll(\".nav-dropdown > .nav-link[role='button']\");\n\n  dropdownMenus.forEach((toggler) => {\n    const toggle = (el) => {\n      const parent = el.closest(\".nav-dropdown\");\n      const willActivate = !parent.classList.contains(\"active\");\n      parent.classList.toggle(\"active\", willActivate);\n      el.setAttribute(\"aria-expanded\", willActivate ? \"true\" : \"false\");\n    };\n\n    toggler?.addEventListener(\"click\", (e) => {\n      e.preventDefault();\n      toggle(e.currentTarget);\n    });\n\n    // Keyboard support\n    toggler?.addEventListener(\"keydown\", (e) => {\n      if (e.key === \"Enter\" || e.key === \" \") {\n        e.preventDefault();\n        toggle(e.currentTarget);\n      }\n      if (e.key === \"Escape\") {\n        const parent = e.currentTarget.closest(\".nav-dropdown\");\n        parent?.classList.remove(\"active\");\n        e.currentTarget.setAttribute(\"aria-expanded\", \"false\");\n      }\n    });\n  });\n\n  applyScrollPadding();\n});\n"
  },
  {
    "path": "modules/blox/assets/js/hb-notifier.js",
    "content": "/**\n * Notification/Toast System for Hugo Blox Kit\n * Provides reusable notification functionality\n */\n\nimport {hugoEnvironment} from \"@params\";\n\n// Debug mode based on environment\nconst isDebugMode = hugoEnvironment === \"development\";\n\n/**\n * Show a notification message using Tailwind styles\n * @param {string} message - The message to display\n * @param {string} type - The type of notification ('success', 'error', 'info', 'warning')\n * @param {number} duration - Duration in milliseconds (default 3000)\n * @returns {HTMLElement} - The notification element\n */\nexport function showNotification(message, type = \"success\", duration = 3000) {\n  // Get or create the notification container\n  const container = getOrCreateContainer();\n\n  // Remove any existing notifications with same message\n  const existingNotification = container.querySelector(\".hb-notification\");\n  if (existingNotification?.textContent?.includes(message)) {\n    existingNotification.remove();\n  }\n\n  // Create notification element\n  const notification = createNotificationElement(message, type);\n\n  // Add to container\n  container.appendChild(notification);\n\n  // Handle close button\n  const closeBtn = notification.querySelector(\".hb-notification-close\");\n  if (closeBtn) {\n    closeBtn.addEventListener(\"click\", () => {\n      removeNotification(notification);\n    });\n  }\n\n  // Auto-remove after duration\n  if (duration > 0) {\n    setTimeout(() => {\n      removeNotification(notification);\n    }, duration);\n  }\n\n  return notification;\n}\n\n/**\n * Get or create the notification container\n * @returns {HTMLElement} - The container element\n */\nfunction getOrCreateContainer() {\n  let container = document.getElementById(\"hb-notification-container\");\n\n  if (!container) {\n    if (isDebugMode) {\n      console.warn(\"Notification container not found, creating fallback\");\n    }\n    container = document.createElement(\"div\");\n    container.id = \"hb-notification-container\";\n    container.className = \"fixed top-20 right-4 z-[9999] pointer-events-none\";\n    container.setAttribute(\"aria-live\", \"polite\");\n    container.setAttribute(\"aria-atomic\", \"true\");\n    document.body.appendChild(container);\n  }\n\n  return container;\n}\n\n/**\n * Create a notification element\n * @param {string} message - The message to display\n * @param {string} type - The type of notification\n * @returns {HTMLElement} - The notification element\n */\nfunction createNotificationElement(message, type) {\n  const notification = document.createElement(\"div\");\n  notification.setAttribute(\"role\", \"alert\");\n\n  // Define colors for different types\n  const colors = {\n    success: {bg: \"#10b981\", bgClass: \"bg-green-500\"},\n    error: {bg: \"#ef4444\", bgClass: \"bg-red-500\"},\n    info: {bg: \"#3b82f6\", bgClass: \"bg-blue-500\"},\n    warning: {bg: \"#f59e0b\", bgClass: \"bg-amber-500\"},\n  };\n\n  const color = colors[type] || colors.info;\n\n  // Set classes\n  notification.className = `hb-notification pointer-events-auto flex items-center gap-2 px-4 py-3 text-white rounded-lg shadow-lg ${color.bgClass} animate-slide-in`;\n\n  // Add inline styles as fallback\n  notification.style.cssText = `\n    background-color: ${color.bg};\n    color: white;\n    display: flex;\n    align-items: center;\n    gap: 0.5rem;\n    padding: 0.75rem 1rem;\n    border-radius: 0.5rem;\n    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);\n    margin-bottom: 0.5rem;\n    pointer-events: auto;\n  `;\n\n  // Add icon based on type\n  const icons = {\n    success:\n      '<svg class=\"w-5 h-5 flex-shrink-0\" fill=\"currentColor\" viewBox=\"0 0 20 20\"><path fill-rule=\"evenodd\" d=\"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z\" clip-rule=\"evenodd\"></path></svg>',\n    error:\n      '<svg class=\"w-5 h-5 flex-shrink-0\" fill=\"currentColor\" viewBox=\"0 0 20 20\"><path fill-rule=\"evenodd\" d=\"M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z\" clip-rule=\"evenodd\"></path></svg>',\n    info: '<svg class=\"w-5 h-5 flex-shrink-0\" fill=\"currentColor\" viewBox=\"0 0 20 20\"><path fill-rule=\"evenodd\" d=\"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z\" clip-rule=\"evenodd\"></path></svg>',\n    warning:\n      '<svg class=\"w-5 h-5 flex-shrink-0\" fill=\"currentColor\" viewBox=\"0 0 20 20\"><path fill-rule=\"evenodd\" d=\"M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z\" clip-rule=\"evenodd\"></path></svg>',\n  };\n\n  const icon = icons[type] || icons.info;\n\n  notification.innerHTML = `\n    ${icon}\n    <span class=\"text-sm font-medium\">${message}</span>\n    <button class=\"hb-notification-close ml-2 text-white/80 hover:text-white transition-colors\" aria-label=\"Close\">\n      <svg class=\"w-4 h-4\" fill=\"currentColor\" viewBox=\"0 0 20 20\">\n        <path fill-rule=\"evenodd\" d=\"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z\" clip-rule=\"evenodd\"></path>\n      </svg>\n    </button>\n  `;\n\n  // Ensure animation styles exist\n  ensureAnimationStyles();\n\n  return notification;\n}\n\n/**\n * Remove notification with animation\n * @param {HTMLElement} notification - The notification element to remove\n */\nexport function removeNotification(notification) {\n  if (!notification || !notification.parentNode) return;\n\n  notification.classList.remove(\"animate-slide-in\");\n  notification.classList.add(\"animate-slide-out\");\n\n  setTimeout(() => {\n    if (notification.parentNode) {\n      notification.remove();\n    }\n  }, 300);\n}\n\n/**\n * Ensure animation styles are in the document\n */\nfunction ensureAnimationStyles() {\n  if (!document.querySelector(\"#hb-notification-styles\")) {\n    const style = document.createElement(\"style\");\n    style.id = \"hb-notification-styles\";\n    style.textContent = `\n      @keyframes slide-in {\n        from {\n          transform: translateX(100%);\n          opacity: 0;\n        }\n        to {\n          transform: translateX(0);\n          opacity: 1;\n        }\n      }\n      @keyframes slide-out {\n        from {\n          transform: translateX(0);\n          opacity: 1;\n        }\n        to {\n          transform: translateX(100%);\n          opacity: 0;\n        }\n      }\n      .animate-slide-in {\n        animation: slide-in 0.3s ease-out;\n      }\n      .animate-slide-out {\n        animation: slide-out 0.3s ease-out;\n      }\n    `;\n    document.head.appendChild(style);\n  }\n}\n\n// Export default for convenience\nexport default showNotification;\n"
  },
  {
    "path": "modules/blox/assets/js/hb-search.js",
    "content": "// Hugo Blox Search - Custom Pagefind API Implementation\n// Search is handled by Alpine.js component in search-modal.html\n\n// Additional keyboard shortcuts and utilities\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  console.log(\"✓ Hugo Blox Search initialized (Pagefind Headless API)\");\n\n  // Handle search toggle buttons\n  const searchButtons = document.querySelectorAll(\"[data-search-toggle]\");\n  searchButtons.forEach((button) => {\n    button.addEventListener(\"click\", () => {\n      const prefilledQuery = button.dataset.searchQuery;\n\n      if (window.Alpine && Alpine.store(\"search\")) {\n        Alpine.store(\"search\").open = true;\n\n        // Pre-fill query if specified\n        if (prefilledQuery) {\n          setTimeout(() => {\n            const searchInput = document.querySelector('[x-ref=\"searchInput\"]');\n            if (searchInput) {\n              searchInput.value = prefilledQuery;\n              searchInput.dispatchEvent(new Event(\"input\"));\n            }\n          }, 100);\n        }\n      }\n    });\n  });\n\n  // Note: Keyboard navigation (arrow keys, Enter) is handled by Alpine.js in search-modal.html\n});\n"
  },
  {
    "path": "modules/blox/assets/js/hb-sidebar.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\n  const buttons = document.querySelectorAll(\"[data-hb-sidebar-toggle]\");\n  buttons.forEach((button) => {\n    button.addEventListener(\"click\", (e) => {\n      e.preventDefault();\n      const parent = button.parentElement.parentElement;\n      if (parent) {\n        parent.classList.toggle(\"open\");\n      }\n    });\n  });\n});\n\n// Hamburger menu for mobile navigation\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  const menu = document.querySelector(\"#nav-toggle\");\n  const overlay = document.querySelector(\".hb-sidebar-mobile-menu\");\n  const sidebarContainer = document.querySelector(\".hb-sidebar-container\");\n\n  if (!overlay) {\n    return;\n  }\n\n  // Initialize the overlay\n  const overlayClasses = [\"fixed\", \"z-10\", \"inset-0\", \"bg-white\", \"dark:bg-black/80\"];\n  overlay.classList.add(\"bg-transparent\");\n  overlay.classList.remove(\"hidden\", ...overlayClasses);\n\n  function toggleMenu() {\n    // Toggle the hamburger menu\n    // See `hb-nav.js` - it handles the default behavior (irrespective of if sidebar is shown).\n\n    // When menu is open, show the navigation sidebar\n    sidebarContainer.classList.toggle(\"max-lg:[transform:translate3d(0,-100%,0)]\");\n    sidebarContainer.classList.toggle(\"max-lg:[transform:translate3d(0,0,0)]\");\n\n    // When menu is open, prevent body from scrolling\n    document.body.classList.toggle(\"overflow-hidden\");\n    document.body.classList.toggle(\"lg:overflow-auto\");\n  }\n\n  menu.addEventListener(\"click\", (e) => {\n    console.debug(\"Hamburger clicked.\");\n    e.preventDefault();\n    toggleMenu();\n\n    if (overlay.classList.contains(\"bg-transparent\")) {\n      // Show overlay\n      overlay.classList.add(...overlayClasses);\n      overlay.classList.remove(\"bg-transparent\");\n    } else {\n      // Hide overlay\n      overlay.classList.remove(...overlayClasses);\n      overlay.classList.add(\"bg-transparent\");\n    }\n  });\n\n  overlay.addEventListener(\"click\", (e) => {\n    e.preventDefault();\n    toggleMenu();\n\n    // Hide overlay\n    overlay.classList.remove(...overlayClasses);\n    overlay.classList.add(\"bg-transparent\");\n  });\n});\n"
  },
  {
    "path": "modules/blox/assets/js/hb-theme.js",
    "content": "// Hugo Blox Kit Light / Dark theme toggle\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  addThemeToggleListener();\n});\n\nfunction addThemeToggleListener() {\n  const defaultTheme = window.hbb.defaultTheme;\n  const themeToggleButtons = document.querySelectorAll(\".theme-toggle\");\n\n  // Change the icons of the buttons based on previous settings or system theme\n  if (\n    localStorage.getItem(\"wc-color-theme\") === \"dark\" ||\n    (!(\"wc-color-theme\" in localStorage) &&\n      ((window.matchMedia(\"(prefers-color-scheme: dark)\").matches && defaultTheme === \"system\") || defaultTheme === \"dark\"))\n  ) {\n    themeToggleButtons.forEach((el) => {\n      el.dataset.theme = \"dark\";\n    });\n  } else {\n    themeToggleButtons.forEach((el) => {\n      el.dataset.theme = \"light\";\n    });\n  }\n\n  // Add click event handler to the light/dark buttons\n  themeToggleButtons.forEach((el) => {\n    el.addEventListener(\"click\", () => {\n      console.debug(\"Theme toggled\");\n      if (localStorage.getItem(\"wc-color-theme\")) {\n        if (localStorage.getItem(\"wc-color-theme\") === \"light\") {\n          window.hbb.setDarkTheme();\n          localStorage.setItem(\"wc-color-theme\", \"dark\");\n        } else {\n          window.hbb.setLightTheme();\n          localStorage.setItem(\"wc-color-theme\", \"light\");\n        }\n      } else {\n        if (document.documentElement.classList.contains(\"dark\")) {\n          window.hbb.setLightTheme();\n          localStorage.setItem(\"wc-color-theme\", \"light\");\n        } else {\n          window.hbb.setDarkTheme();\n          localStorage.setItem(\"wc-color-theme\", \"dark\");\n        }\n      }\n      el.dataset.theme = document.documentElement.classList.contains(\"dark\") ? \"dark\" : \"light\";\n\n      // Dispatch `hbThemeChange` event to support themeable user plugins.\n      const themeChangeEvent = new CustomEvent(\"hbThemeChange\", {\n        detail: {\n          isDarkTheme: () => document.documentElement.classList.contains(\"dark\"),\n        },\n      });\n      document.dispatchEvent(themeChangeEvent);\n    });\n  });\n\n  // Listen for dark mode toggling in OS\n  window.matchMedia(\"(prefers-color-scheme: dark)\").addEventListener(\"change\", (event) => {\n    if (defaultTheme === \"system\" && !(\"wc-color-theme\" in localStorage)) {\n      event.matches ? window.hbb.setDarkTheme() : window.hbb.setLightTheme();\n      themeToggleButtons.forEach((el) => {\n        const isDark = document.documentElement.classList.contains(\"dark\");\n        el.dataset.theme = isDark ? \"dark\" : \"light\";\n      });\n    }\n  });\n}\n"
  },
  {
    "path": "modules/blox/assets/js/katex-config.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\n  window.renderMathInElement(document.body, {\n    delimiters: [\n      {left: \"$$\", right: \"$$\", display: true},\n      {left: \"$\", right: \"$\", display: false},\n      {left: \"\\\\(\", right: \"\\\\)\", display: false},\n      {left: \"\\\\[\", right: \"\\\\]\", display: true},\n    ],\n    throwOnError: false,\n  });\n});\n"
  },
  {
    "path": "modules/blox/assets/js/vendor-libs.js",
    "content": "/**\n * Dummy entry file for Vite lib mode.\n *\n * This file exists as an entry point for the Vite build process.\n * The actual vendor libraries are copied to their respective directories\n * using vite-plugin-static-copy, while this file generates the empty\n * vendor-libs.mjs module in the dist directory.\n *\n * See vite.config.js for the build configuration.\n */\nexport default {};\n"
  },
  {
    "path": "modules/blox/blox/collection/README.md",
    "content": "# Collection Block\n\n**Transform your content into stunning, organized displays**\n\nThe Collection block is your ultimate content curation tool, designed to showcase your blog posts, publications, projects, or any content type in beautifully organized, filterable displays.\n\n## ✨ Key Features\n\n- **Smart Filtering**: Filter by folders, tags, categories, authors, publication types, and more\n- **Flexible Sorting**: Sort by date, title, or any custom field in ascending or descending order\n- **Multiple Views**: Choose from card, compact, showcase, citation, list, or masonry layouts\n- **Pagination Ready**: Built-in support for limiting items and pagination\n- **Archive Integration**: Automatic \"See All\" links to full archive pages\n- **Responsive Design**: Perfectly optimized for all screen sizes\n\n## 🎯 Perfect For\n\n- **Blog Showcases**: Display your latest blog posts with beautiful card layouts\n- **Publication Lists**: Showcase academic papers and research with citation views\n- **Project Galleries**: Present your portfolio work in stunning visual grids\n- **News & Updates**: Keep visitors informed with filtered content streams\n- **Content Archives**: Create organized content hubs by topic or category\n\n## 🚀 Why Choose Collection Block?\n\n**Effortless Content Management**: No manual updates needed - your content automatically appears as you publish\n\n**Advanced Filtering**: Powerful filtering system that works with Hugo's built-in taxonomies and custom parameters\n\n**SEO Optimized**: Clean markup and semantic HTML structure for better search engine visibility\n\n**Performance First**: Lightweight and fast, with optimized queries and lazy loading support\n\n## 📊 Use Cases\n\n- Academic portfolios showcasing publications by research area\n- Corporate blogs with category-based content organization\n- Creative portfolios with project filtering by type or client\n- News sites with topic-based content streams\n- Personal blogs with tag-based content discovery\n\nStart building engaging content displays that keep your visitors exploring and discovering more of what you have to offer.\n\n"
  },
  {
    "path": "modules/blox/blox/collection/block.html",
    "content": "{{/* Hugo Blox: Collection */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $view := \"card\" }}\n{{ $view_raw := index $design \"view\" }}\n{{ if eq (printf \"%T\" $view_raw) \"string\" }}\n  {{ $view = lower (strings.TrimSpace $view_raw) }}\n{{ end }}\n\n{{ $items_offset := partial \"functions/coerce_int\" (dict \"value\" (index $content \"offset\") \"default\" 0 \"min\" 0) }}\n{{ $items_count := partial \"functions/coerce_int\" (dict \"value\" (index $content \"count\") \"default\" 5 \"min\" 0) }}\n{{ if eq $items_count 0 }}\n  {{ $items_count = 65535 }}\n{{ end }}\n\n{{/* Query */}}\n{{ $query := site.Pages }}\n{{ $archive_page := \"\" }}\n\n{{/* Filters */}}\n{{ $filters := index $content \"filters\" }}\n{{ if not (reflect.IsMap $filters) }}{{ $filters = dict }}{{ end }}\n\n{{ $kinds := slice }}\n{{ $kinds_raw := index $filters \"kinds\" }}\n{{ if reflect.IsSlice $kinds_raw }}\n  {{ range $kinds_raw }}\n    {{ $kind := strings.TrimSpace (printf \"%v\" .) }}\n    {{ if $kind }}\n      {{ $kinds = $kinds | append $kind }}\n    {{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $kinds_raw) \"string\" }}\n  {{ $kind := strings.TrimSpace $kinds_raw }}\n  {{ if $kind }}\n    {{ $kinds = slice $kind }}\n  {{ end }}\n{{ end }}\n{{ if eq (len $kinds) 0 }}\n  {{ $kinds = slice \"page\" }}\n{{ end }}\n{{ $query = where $query \"Kind\" \"in\" $kinds }}\n\n{{ $page_type := \"\" }}\n{{ $page_type_raw := index $content \"page_type\" }}\n{{ if eq (printf \"%T\" $page_type_raw) \"string\" }}\n  {{ $page_type = strings.TrimSpace $page_type_raw }}\n{{ end }}\n{{ if $page_type }}\n  {{ $query = where $query \"Type\" $page_type }}\n  {{ $archive_page = site.GetPage \"Section\" $page_type }}\n{{ end }}\n\n{{ $folders_raw := index $filters \"folders\" }}\n{{ $folders := slice }}\n{{ if reflect.IsSlice $folders_raw }}\n  {{ range $folders_raw }}\n    {{ $folder := strings.TrimSpace (printf \"%v\" .) }}\n    {{ if $folder }}\n      {{ $folders = $folders | append $folder }}\n    {{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $folders_raw) \"string\" }}\n  {{ $folder := strings.TrimSpace $folders_raw }}\n  {{ if $folder }}\n    {{ $folders = slice $folder }}\n  {{ end }}\n{{ end }}\n{{ if gt (len $folders) 0 }}\n  {{ $query = where $query \"Section\" \"in\" $folders }}\n  {{ $main_folder := strings.TrimSpace (printf \"%v\" (index $folders 0)) }}\n  {{ if $main_folder }}\n    {{ $archive_page = site.GetPage \"Section\" $main_folder }}\n  {{ end }}\n{{ end }}\n\n{{ $tags_raw := index $filters \"tags\" }}\n{{ $tags := slice }}\n{{ if reflect.IsSlice $tags_raw }}\n  {{ range $tags_raw }}\n    {{ $tag := strings.TrimSpace (printf \"%v\" .) }}\n    {{ if $tag }}\n      {{ $tags = $tags | append $tag }}\n    {{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $tags_raw) \"string\" }}\n  {{ $tag := strings.TrimSpace $tags_raw }}\n  {{ if $tag }}\n    {{ $tags = slice $tag }}\n  {{ end }}\n{{ end }}\n{{ if gt (len $tags) 0 }}\n  {{ $selected := slice }}\n  {{ range $tags }}\n    {{ $tag_page := site.GetPage (printf \"tags/%s\" (urlize .)) }}\n    {{ if $tag_page }}\n      {{ $selected = $selected | union $tag_page.Pages }}\n    {{ end }}\n  {{ end }}\n  {{ if gt (len $selected) 0 }}\n    {{ $query = $query | intersect $selected }}\n    {{ $first_tag := index $tags 0 }}\n    {{ $archive_page = site.GetPage (printf \"tags/%s\" (urlize $first_tag)) }}\n  {{ end }}\n{{ end }}\n\n{{ $tag := \"\" }}\n{{ $tag_raw := index $filters \"tag\" }}\n{{ if eq (printf \"%T\" $tag_raw) \"string\" }}\n  {{ $tag = strings.TrimSpace $tag_raw }}\n{{ end }}\n{{ if $tag }}\n  {{ with site.GetPage (printf \"tags/%s\" (urlize $tag)) }}\n    {{ $archive_page = . }}\n    {{ $query = $query | intersect .Pages }}\n  {{ end }}\n{{ end }}\n\n{{ $category := \"\" }}\n{{ $category_raw := index $filters \"category\" }}\n{{ if eq (printf \"%T\" $category_raw) \"string\" }}\n  {{ $category = strings.TrimSpace $category_raw }}\n{{ end }}\n{{ if $category }}\n  {{ with site.GetPage (printf \"categories/%s\" (urlize $category)) }}\n    {{ $archive_page = . }}\n    {{ $query = $query | intersect .Pages }}\n  {{ end }}\n{{ end }}\n\n{{ $publication_type := \"\" }}\n{{ $publication_type_raw := index $filters \"publication_type\" }}\n{{ if eq (printf \"%T\" $publication_type_raw) \"string\" }}\n  {{ $publication_type = strings.TrimSpace $publication_type_raw }}\n{{ end }}\n{{ if $publication_type }}\n  {{ with site.GetPage (printf \"publication_types/%s\" $publication_type) }}\n    {{ $archive_page = . }}\n    {{ $query = $query | intersect .Pages }}\n  {{ end }}\n{{ end }}\n\n{{ $exclude_publication_type := \"\" }}\n{{ $exclude_publication_type_raw := index $filters \"exclude_publication_type\" }}\n{{ if eq (printf \"%T\" $exclude_publication_type_raw) \"string\" }}\n  {{ $exclude_publication_type = strings.TrimSpace $exclude_publication_type_raw }}\n{{ end }}\n{{ if $exclude_publication_type }}\n  {{ with site.GetPage (printf \"publication_types/%s\" $exclude_publication_type) }}\n    {{ $query = $query | complement .Pages }}\n  {{ end }}\n{{ end }}\n\n{{ $author_filter := \"\" }}\n{{ $author_filter_raw := index $filters \"author\" }}\n{{ if eq (printf \"%T\" $author_filter_raw) \"string\" }}\n  {{ $author_filter = strings.TrimSpace $author_filter_raw }}\n{{ end }}\n{{ if $author_filter }}\n  {{ with site.GetPage (printf \"authors/%s\" (urlize $author_filter)) }}\n    {{ $archive_page = . }}\n    {{ $query = $query | intersect .Pages }}\n  {{ end }}\n{{ end }}\n\n{{ $featured_only := partial \"functions/coerce_bool\" (dict \"value\" (index $filters \"featured_only\") \"default\" false) }}\n{{ if $featured_only }}\n  {{ $query = where $query \"Params.featured\" \"==\" true }}\n{{ end }}\n{{ $exclude_featured := partial \"functions/coerce_bool\" (dict \"value\" (index $filters \"exclude_featured\") \"default\" false) }}\n{{ if $exclude_featured }}\n  {{ $query = where $query \"Params.featured\" \"!=\" true }}\n{{ end }}\n{{ $exclude_past := partial \"functions/coerce_bool\" (dict \"value\" (index $filters \"exclude_past\") \"default\" false) }}\n{{ if $exclude_past }}\n  {{/* Use event_end -> event_start -> Date to decide if an item is past */}}\n  {{ $filtered := slice }}\n  {{ range $query }}\n    {{ $start := .Date }}\n    {{ with .Params.event_start }}{{ $start = . }}{{ end }}\n    {{ $end := $start }}\n    {{ with .Params.event_end }}{{ $end = . }}{{ end }}\n    {{ if ge $end now }}\n      {{ $filtered = $filtered | append . }}\n    {{ end }}\n  {{ end }}\n  {{ $query = $filtered }}\n{{ end }}\n{{ $exclude_future := partial \"functions/coerce_bool\" (dict \"value\" (index $filters \"exclude_future\") \"default\" false) }}\n{{ if $exclude_future }}\n  {{/* Use event_start -> Date to drop future/unscheduled items */}}\n  {{ $filtered := slice }}\n  {{ range $query }}\n    {{ $start := .Date }}\n    {{ with .Params.event_start }}{{ $start = . }}{{ end }}\n    {{ if lt $start now }}\n      {{ $filtered = $filtered | append . }}\n    {{ end }}\n  {{ end }}\n  {{ $query = $filtered }}\n{{ end }}\n\n{{ $count := len $query }}\n\n{{/* Sort */}}\n{{ $sort_by := \"Date\" }}\n{{ $sort_by_raw := index $content \"sort_by\" }}\n{{ if eq (printf \"%T\" $sort_by_raw) \"string\" }}\n  {{ $sort_by_raw = strings.TrimSpace $sort_by_raw }}\n  {{ if ne $sort_by_raw \"\" }}\n    {{ $sort_by = $sort_by_raw }}\n  {{ end }}\n{{ end }}\n{{ $sort_by = partial \"functions/get_sort_by_parameter\" $sort_by }}\n{{ $sort_ascending := false }}\n{{ if isset $content \"sort_ascending\" }}\n  {{ $sort_ascending = partial \"functions/coerce_bool\" (dict \"value\" (index $content \"sort_ascending\") \"default\" false) }}\n{{ else }}\n  {{ $order_raw := index $content \"order\" }}\n  {{ if eq (printf \"%T\" $order_raw) \"string\" }}\n    {{ if eq (lower (strings.TrimSpace $order_raw)) \"asc\" }}\n      {{ $sort_ascending = true }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ $sort_order := cond $sort_ascending \"asc\" \"desc\" }}\n{{ $query = sort $query $sort_by $sort_order }}\n\n{{/* Offset and Limit */}}\n{{ if gt $items_offset 0 }}\n  {{ $query = first $items_count (after $items_offset $query) }}\n{{ else }}\n  {{ $query = first $items_count $query }}\n{{ end }}\n\n{{/* Check if any items have author_notes to enable Alpine.js */}}\n{{ range $query }}\n  {{ if isset .Params \"author_notes\" }}\n    {{ $page.Store.Set \"has_alpine\" true }}\n    {{ break }}\n  {{ end }}\n{{ end }}\n\n{{ $columns := partial \"functions/coerce_int\" (dict \"value\" (index $design \"columns\") \"default\" 2 \"min\" 1 \"max\" 4) }}\n{{ $title := \"\" }}\n{{ with index $content \"title\" }}{{ $title = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n{{ $text := \"\" }}\n{{ with index $content \"text\" }}{{ $text = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n\n{{ if $title }}\n<div class=\"flex flex-col items-center max-w-prose mx-auto gap-3 justify-center px-6 md:px-0\">\n\n  <div class=\"mb-6 text-3xl font-bold text-gray-900 dark:text-white\">\n    {{ $title }}\n  </div>\n\n  {{ with $text }}<p>{{ . }}</p>{{ end }}\n</div>\n{{ end }}\n\n<div class=\"flex flex-col items-center px-6\">\n\n  {{ $config := dict \n      \"columns\" $columns\n      \"len\" (len $query) \n      \"fill_image\" (partial \"functions/coerce_bool\" (dict \"value\" (index $design \"fill_image\") \"default\" true))\n      \"show_date\" (partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_date\") \"default\" true))\n      \"show_read_time\" (partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_read_time\") \"default\" true))\n      \"show_read_more\" (partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_read_more\") \"default\" true))\n    }}\n  {{ partial \"functions/render_view\" (dict \"fragment\" \"start\" \"page\" $block \"item\" . \"view\" $view \"config\" $config) }}\n\n  {{ range $index, $item := $query }}\n    {{ partial \"functions/render_view\" (dict \"page\" $block \"item\" . \"view\" $view \"index\" $index \"config\" $config) }}\n  {{end}}\n\n  {{ partial \"functions/render_view\" (dict \"fragment\" \"end\" \"page\" $block \"item\" . \"view\" $view) }}\n\n</div>\n\n{{/* Archive link */}}\n{{ $archive := index $content \"archive\" }}\n{{ if not (reflect.IsMap $archive) }}{{ $archive = dict }}{{ end }}\n{{ $show_archive_link := gt $count $items_count }}\n{{ if isset $archive \"enable\" }}\n  {{ $show_archive_link = partial \"functions/coerce_bool\" (dict \"value\" (index $archive \"enable\") \"default\" false) }}\n{{ end }}\n{{ if $show_archive_link | and $archive_page }}\n\n  {{ $archive_link := \"\" }}\n  {{ $archive_link_raw := index $archive \"link\" }}\n  {{ if eq (printf \"%T\" $archive_link_raw) \"string\" }}\n    {{ $archive_link = strings.TrimSpace $archive_link_raw }}\n  {{ end }}\n  {{ if not $archive_link }}\n    {{ $archive_link = $archive_page.RelPermalink }}\n  {{ end }}\n  {{ if $archive_link }}\n    {{ $scheme := (urls.Parse $archive_link).Scheme }}\n    {{ if not $scheme }}\n      {{ if not (hasPrefix $archive_link \"#\") }}\n        {{ $archive_link = $archive_link | relLangURL }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n\n  {{/* Localisation */}}\n  {{ $items_type := $archive_page.Type }}\n  {{ $i18n := \"\" }}\n  {{ if eq $items_type \"blog\" }}\n    {{ $i18n = \"more_posts\" }}\n  {{ else if eq $items_type \"event\" }}\n    {{ $i18n = \"more_talks\" }}\n  {{ else if eq $items_type \"publication\" }}\n    {{ $i18n = \"more_publications\" }}\n  {{ else }}\n    {{ $i18n = \"more_pages\" }}\n  {{ end }}\n\n  {{ $archive_text := \"\" }}\n  {{ $archive_text_raw := index $archive \"text\" }}\n  {{ if eq (printf \"%T\" $archive_text_raw) \"string\" }}\n    {{ $archive_text = strings.TrimSpace $archive_text_raw }}\n  {{ end }}\n  {{ if not $archive_text }}\n    {{ $archive_text = i18n $i18n | default \"See all\" }}\n  {{ end }}\n\n  <div class=\"container mx-auto max-w-screen-lg px-8 xl:px-5 pb-5 lg:pb-8\">\n    <div class=\"mt-10 flex justify-center\">\n      <a\n        class=\"relative inline-flex items-center gap-1 rounded-md border border-gray-300 bg-white px-3 py-2 pl-4 text-sm font-medium text-gray-500 hover:bg-gray-50 focus:z-20 dark:border-gray-500 dark:bg-gray-800 dark:text-gray-300\"\n        href=\"{{ $archive_link | safeURL }}\">\n          <span>{{ $archive_text | emojify }}</span>\n        </a>\n      </div>\n  </div>\n\n{{ end }}\n"
  },
  {
    "path": "modules/blox/blox/collection/manifest.json",
    "content": "{\n  \"id\": \"collection\",\n  \"name\": \"Collection\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"collection\", \"blog\", \"publications\", \"filter\", \"sort\", \"content-display\", \"archive\"],\n  \"description\": \"Display filtered and sorted collections of pages with customizable views and pagination\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"static-site\", \"content\", \"blog\", \"publications\", \"filtering\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/contact-info/README.md",
    "content": "# Contact Info Block\n\nDisplay comprehensive contact information for your lab or organization with a modern, responsive card layout.\n\n## Features\n\n- **Dual Card Layout**: Separate cards for location and contact methods\n- **Rich Information Display**: Address, office hours, phone, email, social media\n- **Interactive Elements**: Click-to-call, email links, map integration\n- **Optional Contact Form**: Built-in contact form support\n- **Map Integration**: External map links or embedded maps\n- **Social Media Links**: Connect your social profiles\n- **Prospective Members Section**: Dedicated area for recruitment\n- **Fully Responsive**: Beautiful on all devices\n- **Dark Mode Support**: Seamless light/dark theme switching\n\n## Usage\n\n```yaml\nsections:\n  - block: contact-info\n    content:\n      title: Contact Us\n      subtitle: Get in touch with our research team\n      visit_title: Visit Our Lab\n      connect_title: Connect With Us\n      address:\n        lines:\n          - Smith Laboratory\n          - Department of Computer Science\n          - University of Excellence\n          - 123 Science Drive\n          - Excellence City, EC 12345\n          - United States\n      office_hours:\n        - \"Monday - Friday: 9:00 AM - 5:00 PM\"\n        - \"Lab Meetings: Fridays 2:00 PM\"\n      email: lab@example.edu\n      phone: \"+1 (555) 123-4567\"\n      social:\n        - icon: brands/x\n          url: https://x.com/SmithLabResearch\n        - icon: brands/linkedin\n          url: https://linkedin.com/company/smith-lab\n        - icon: brands/github\n          url: https://github.com/smith-lab\n      prospective:\n        title: Prospective Members\n        text: Interested in joining our lab? We're looking for motivated researchers.\n        button:\n          text: View Open Positions\n          url: /opportunities\n      map_url: https://maps.google.com/?q=University+of+Excellence\n      show_form: false\n    design:\n      css_class: \"bg-gray-50 dark:bg-gray-900\"\n      spacing:\n        padding: [\"3rem\", 0, \"3rem\", 0]\n```\n\n## Options\n\n### Content Options\n\n- **title**: Main heading for the contact section\n- **subtitle**: Optional subtitle text\n- **visit_title**: Heading for the location card (default: \"Visit Us\")\n- **connect_title**: Heading for the contact card (default: \"Connect\")\n- **address**: Physical address with multiple lines\n  - `lines`: Array of address line strings\n- **office_hours**: Array of office hour strings\n- **email**: Contact email address\n- **phone**: Contact phone number\n- **social**: Array of social media links\n  - `icon`: Icon identifier (e.g., \"brands/x\", \"brands/linkedin\")\n  - `url`: Social media profile URL\n- **prospective**: Information for prospective members\n  - `title`: Section heading\n  - `text`: Description text\n  - `button`: CTA button with `text` and `url`\n- **map_url**: External map service link\n- **map_embed**: HTML embed code for inline map\n- **show_form**: Display contact form (default: false)\n- **form_action**: Form submission endpoint\n\n### Design Options\n\nStandard design options apply including:\n- `css_class`: Background and styling classes\n- `spacing`: Padding configuration\n\n## Map Integration\n\n### External Map Link\nProvide a `map_url` to link to Google Maps, Apple Maps, or other services:\n\n```yaml\nmap_url: \"https://maps.google.com/?q=Your+Location\"\n```\n\n### Embedded Map\nFor inline maps, provide the iframe HTML in `map_embed`:\n\n```yaml\nmap_embed: |\n  <iframe src=\"https://www.google.com/maps/embed?...\" \n          width=\"100%\" height=\"450\" style=\"border:0;\" \n          allowfullscreen=\"\" loading=\"lazy\"></iframe>\n```\n\n## Contact Form\n\nEnable the built-in contact form:\n\n```yaml\nshow_form: true\nform_action: \"https://formspree.io/f/YOUR_FORM_ID\"\n```\n\nNote: You'll need to set up a form handler service like Formspree, Netlify Forms, or custom endpoint.\n\n## Styling\n\nThe block uses modern card-based design with:\n- Subtle shadows and hover effects\n- Icon accents for visual hierarchy\n- Consistent spacing and typography\n- Fully responsive grid layout\n- Dark mode optimized colors\n\n## Best Practices\n\n1. **Complete Information**: Provide all relevant contact methods\n2. **Office Hours**: Clearly state availability\n3. **Social Proof**: Link active social media profiles\n4. **Map Integration**: Help visitors find your location\n5. **Recruitment CTA**: Include prospective member information\n6. **Form Handler**: Set up proper form submission handling\n7. **Mobile Testing**: Verify all links work on mobile devices\n"
  },
  {
    "path": "modules/blox/blox/contact-info/block.html",
    "content": "{{/* Hugo Blox: Contact Info Block */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{/* Enable Alpine.js for copy-to-clipboard functionality */}}\n{{ $page.Store.Set \"has_alpine\" true }}\n\n{{ $default_title := i18n \"block_contact_title\" | default \"Contact Us\" }}\n{{ $title := $default_title }}\n{{ $title_raw := index $content \"title\" }}\n{{ if eq (printf \"%T\" $title_raw) \"string\" }}\n  {{ $title_raw = strings.TrimSpace $title_raw }}\n  {{ if ne $title_raw \"\" }}\n    {{ $title = $title_raw }}\n  {{ end }}\n{{ end }}\n{{ $title = $title | emojify | $page.RenderString }}\n\n{{ $subtitle := \"\" }}\n{{ $subtitle_raw := index $content \"subtitle\" }}\n{{ if eq (printf \"%T\" $subtitle_raw) \"string\" }}\n  {{ $subtitle = $subtitle_raw | emojify | $page.RenderString }}\n{{ end }}\n\n{{ $visit_title := i18n \"block_contact_visit_title\" | default \"Visit Us\" }}\n{{ $visit_title_raw := index $content \"visit_title\" }}\n{{ if eq (printf \"%T\" $visit_title_raw) \"string\" }}\n  {{ $visit_title_raw = strings.TrimSpace $visit_title_raw }}\n  {{ if ne $visit_title_raw \"\" }}\n    {{ $visit_title = $visit_title_raw }}\n  {{ end }}\n{{ end }}\n\n{{ $connect_title_raw := \"\" }}\n{{ $connect_title_value := index $content \"connect_title\" }}\n{{ if eq (printf \"%T\" $connect_title_value) \"string\" }}\n  {{ $connect_title_raw = strings.TrimSpace $connect_title_value }}\n{{ end }}\n{{ $connect_title_standard := $connect_title_raw | default (i18n \"block_contact_connect_title\" | default \"Connect\") }}\n{{ $connect_title_single := $connect_title_raw | default (i18n \"block_contact_connect_title\" | default \"Let's Connect\") }}\n\n{{ $connect_text := \"\" }}\n{{ $connect_text_raw := index $content \"text\" }}\n{{ if eq (printf \"%T\" $connect_text_raw) \"string\" }}\n  {{ $connect_text = strings.TrimSpace $connect_text_raw }}\n{{ end }}\n{{ if not $connect_text }}\n  {{ $connect_text = \"I'm always open to discussing new projects, opportunities, or just having a chat.\" }}\n{{ end }}\n\n{{ $address_lines := slice }}\n{{ $address_raw := index $content \"address\" }}\n{{ if and $address_raw (reflect.IsMap $address_raw) }}\n  {{ $lines_raw := index $address_raw \"lines\" }}\n  {{ if reflect.IsSlice $lines_raw }}\n    {{ range $lines_raw }}\n      {{ $line := strings.TrimSpace (printf \"%v\" .) }}\n      {{ if $line }}{{ $address_lines = $address_lines | append $line }}{{ end }}\n    {{ end }}\n  {{ else if eq (printf \"%T\" $lines_raw) \"string\" }}\n    {{ $line := strings.TrimSpace $lines_raw }}\n    {{ if $line }}{{ $address_lines = slice $line }}{{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $address_raw) \"string\" }}\n  {{ $line := strings.TrimSpace $address_raw }}\n  {{ if $line }}{{ $address_lines = slice $line }}{{ end }}\n{{ end }}\n\n{{ $office_hours := slice }}\n{{ $office_raw := index $content \"office_hours\" }}\n{{ if reflect.IsSlice $office_raw }}\n  {{ range $office_raw }}\n    {{ $line := strings.TrimSpace (printf \"%v\" .) }}\n    {{ if $line }}{{ $office_hours = $office_hours | append $line }}{{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $office_raw) \"string\" }}\n  {{ $line := strings.TrimSpace $office_raw }}\n  {{ if $line }}{{ $office_hours = slice $line }}{{ end }}\n{{ end }}\n\n{{ $map_url := \"\" }}\n{{ $map_url_raw := index $content \"map_url\" }}\n{{ if eq (printf \"%T\" $map_url_raw) \"string\" }}\n  {{ $map_url = strings.TrimSpace $map_url_raw }}\n{{ end }}\n\n{{ $map_embed := \"\" }}\n{{ $map_embed_raw := index $content \"map_embed\" }}\n{{ if eq (printf \"%T\" $map_embed_raw) \"string\" }}\n  {{ $map_embed = $map_embed_raw }}\n{{ end }}\n\n{{ $show_form := partial \"functions/coerce_bool\" (dict \"value\" (index $content \"show_form\") \"default\" false) }}\n{{ $form_action := \"\" }}\n{{ $form_action_raw := index $content \"form_action\" }}\n{{ if eq (printf \"%T\" $form_action_raw) \"string\" }}\n  {{ $form_action = strings.TrimSpace $form_action_raw }}\n{{ end }}\n{{ if not $form_action }}{{ $form_action = \"#\" }}{{ end }}\n\n{{/* Check if Visit Us card has content */}}\n{{ $has_visit_content := or (gt (len $address_lines) 0) (gt (len $office_hours) 0) $map_url }}\n\n{{/* Check if Connect card has content - fallback to author profile if no email/social */}}\n{{ $author := \"me\" }}\n{{ $author_raw := index $content \"username\" }}\n{{ if eq (printf \"%T\" $author_raw) \"string\" }}\n  {{ $author = strings.TrimSpace $author_raw }}\n{{ end }}\n{{ $profile := partial \"functions/get_author_profile\" $author }}\n{{ $authors := partialCached \"functions/get_authors_data\" $page site.Language.Lang }}\n{{ $author_data := index $authors (urlize $author) }}\n{{ $email := \"\" }}\n{{ $email_raw := index $content \"email\" }}\n{{ if eq (printf \"%T\" $email_raw) \"string\" }}\n  {{ $email = strings.TrimSpace $email_raw }}\n{{ end }}\n{{ if and (not $email) $author_data (reflect.IsMap $author_data) }}\n  {{ $author_email_raw := index $author_data \"email\" }}\n  {{ if eq (printf \"%T\" $author_email_raw) \"string\" }}\n    {{ $email = strings.TrimSpace $author_email_raw }}\n  {{ end }}\n{{ end }}\n\n{{ $phone := \"\" }}\n{{ $phone_raw := index $content \"phone\" }}\n{{ if eq (printf \"%T\" $phone_raw) \"string\" }}\n  {{ $phone = strings.TrimSpace $phone_raw }}\n{{ end }}\n{{ if and (not $phone) $author_data (reflect.IsMap $author_data) }}\n  {{ $author_phone_raw := index $author_data \"phone\" }}\n  {{ if eq (printf \"%T\" $author_phone_raw) \"string\" }}\n    {{ $phone = strings.TrimSpace $author_phone_raw }}\n  {{ end }}\n{{ end }}\n\n{{ $social_raw := index $content \"social\" }}\n{{ if eq $social_raw nil }}{{ $social_raw = $profile.links }}{{ end }}\n{{ $social := slice }}\n{{ if reflect.IsSlice $social_raw }}\n  {{ range $social_raw }}\n    {{ $url := \"\" }}\n    {{ $icon := \"hero/link\" }}\n    {{ $label := \"\" }}\n    {{ if reflect.IsMap . }}\n      {{ $url_raw := index . \"url\" | default (index . \"link\") }}\n      {{ if eq (printf \"%T\" $url_raw) \"string\" }}\n        {{ $url = strings.TrimSpace $url_raw }}\n      {{ end }}\n      {{ $icon_raw := index . \"icon\" }}\n      {{ if eq (printf \"%T\" $icon_raw) \"string\" }}\n        {{ $icon = $icon_raw }}\n      {{ end }}\n      {{ $label_raw := index . \"label\" | default (index . \"name\") }}\n      {{ if eq (printf \"%T\" $label_raw) \"string\" }}\n        {{ $label = $label_raw }}\n      {{ end }}\n    {{ else if eq (printf \"%T\" .) \"string\" }}\n      {{ $url = strings.TrimSpace . }}\n    {{ end }}\n    {{ if $url }}\n      {{ $social = $social | append (dict \"url\" $url \"icon\" $icon \"label\" $label) }}\n    {{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $social_raw) \"string\" }}\n  {{ $url := strings.TrimSpace $social_raw }}\n  {{ if $url }}\n    {{ $social = slice (dict \"url\" $url \"icon\" \"hero/link\" \"label\" \"\") }}\n  {{ end }}\n{{ end }}\n\n{{ $prospective_raw := index $content \"prospective\" }}\n{{ $prospective := dict }}\n{{ if and $prospective_raw (reflect.IsMap $prospective_raw) }}\n  {{ $prospective = $prospective_raw }}\n{{ end }}\n{{ $prospective_title := \"\" }}\n{{ $prospective_title_raw := index $prospective \"title\" }}\n{{ if eq (printf \"%T\" $prospective_title_raw) \"string\" }}\n  {{ $prospective_title = strings.TrimSpace $prospective_title_raw }}\n{{ end }}\n{{ $prospective_text := \"\" }}\n{{ $prospective_text_raw := index $prospective \"text\" }}\n{{ if eq (printf \"%T\" $prospective_text_raw) \"string\" }}\n  {{ $prospective_text = strings.TrimSpace $prospective_text_raw }}\n{{ end }}\n{{ $prospective_button := index $prospective \"button\" }}\n{{ if not (reflect.IsMap $prospective_button) }}{{ $prospective_button = dict }}{{ end }}\n{{ $prospective_button_text := \"\" }}\n{{ with index $prospective_button \"text\" }}{{ $prospective_button_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ $prospective_button_url := \"\" }}\n{{ with index $prospective_button \"url\" }}{{ $prospective_button_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n{{ $has_connect_content := or $email $phone (gt (len $social) 0) $prospective_title $prospective_text $prospective_button_text $prospective_button_url }}\n\n{{/* Determine grid layout - single column centered if only one card */}}\n{{ $grid_class := \"grid-cols-1 lg:grid-cols-2\" }}\n{{ $card_max_width := \"\" }}\n{{ $is_single_card := false }}\n{{ if and $has_visit_content (not $has_connect_content) }}\n  {{ $grid_class = \"grid-cols-1\" }}\n  {{ $card_max_width = \"max-w-3xl mx-auto\" }}\n  {{ $is_single_card = true }}\n{{ else if and $has_connect_content (not $has_visit_content) }}\n  {{ $grid_class = \"grid-cols-1\" }}\n  {{ $card_max_width = \"max-w-3xl mx-auto\" }}\n  {{ $is_single_card = true }}\n{{ end }}\n\n<div class=\"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 sm:py-16 lg:py-20\">\n  \n  {{/* Section Header */}}\n  <div class=\"text-center mb-12\">\n    {{ with $title }}\n    <h2 class=\"text-3xl sm:text-4xl lg:text-5xl font-bold text-gray-900 dark:text-white tracking-tight mb-4\">\n      {{ . }}\n    </h2>\n    {{ end }}\n    \n    {{ with $subtitle }}\n    <p class=\"text-lg sm:text-xl text-gray-600 dark:text-gray-400 max-w-3xl mx-auto\">\n      {{ . }}\n    </p>\n    {{ end }}\n  </div>\n\n  {{/* Contact Cards Grid */}}\n  <div class=\"grid {{ $grid_class }} gap-8 lg:gap-12\">\n    \n    {{/* Visit Us Card - Only show if has content */}}\n    {{ if $has_visit_content }}\n    <div class=\"{{ $card_max_width }} bg-white dark:bg-white/[0.03] backdrop-blur-xl rounded-2xl border border-gray-200 dark:border-white/[0.08] p-8 hover:bg-gray-50 dark:hover:bg-white/[0.06] hover:border-primary-300 dark:hover:border-primary-500/30 transition-all duration-300\">\n      <div class=\"flex items-center mb-6\">\n        <div class=\"flex-shrink-0 w-12 h-12 bg-primary-100 dark:bg-primary-500/10 rounded-full flex items-center justify-center border border-primary-200 dark:border-primary-500/20\">\n          {{ partial \"functions/get_icon\" (dict \"name\" \"hero/map-pin\" \"attributes\" \"class=\\\"w-6 h-6 text-primary-600 dark:text-primary-400\\\"\") }}\n        </div>\n        <h3 class=\"ml-4 text-2xl font-bold text-gray-900 dark:text-white\">\n          {{ $visit_title }}\n        </h3>\n      </div>\n      \n      <div class=\"space-y-4\">\n        {{ if gt (len $address_lines) 0 }}\n        <div class=\"text-gray-600 dark:text-gray-300\">\n          {{ range $address_lines }}\n          <p>{{ . }}</p>\n          {{ end }}\n        </div>\n        {{ end }}\n        \n        {{ if gt (len $office_hours) 0 }}\n        <div class=\"pt-4 border-t border-gray-200 dark:border-white/10\">\n          <h4 class=\"font-semibold text-gray-900 dark:text-white mb-2\">{{ i18n \"block_contact_office_hours\" | default \"Office Hours\" }}</h4>\n          <div class=\"text-gray-600 dark:text-gray-300 space-y-1\">\n            {{ range $office_hours }}\n            <p>{{ . }}</p>\n            {{ end }}\n          </div>\n        </div>\n        {{ end }}\n        \n        {{ if $map_url }}\n        {{ $map_link := $map_url }}\n        {{ $map_target := \"\" }}\n        {{ $map_scheme := (urls.Parse $map_link).Scheme }}\n        {{ if not $map_scheme }}\n          {{ if not (hasPrefix $map_link \"#\") }}\n            {{ $map_link = $map_link | relLangURL }}\n          {{ end }}\n        {{ else if in (slice \"http\" \"https\") $map_scheme }}\n          {{ $map_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n        {{ end }}\n        <a href=\"{{ $map_link | safeURL }}\" {{ $map_target | safeHTMLAttr }}\n           class=\"inline-flex items-center mt-4 px-4 py-2 bg-primary-100 dark:bg-primary-500/10 text-primary-700 dark:text-primary-400 rounded-lg border border-primary-200 dark:border-primary-500/20 hover:bg-primary-200 dark:hover:bg-primary-500/20 hover:border-primary-300 dark:hover:border-primary-500/40 transition-all\">\n          {{ partial \"functions/get_icon\" (dict \"name\" \"hero/map\" \"attributes\" \"class=\\\"w-5 h-5 mr-2\\\"\") }}\n          {{ i18n \"block_contact_view_on_map\" | default \"View on Map\" }}\n        </a>\n        {{ end }}\n      </div>\n    </div>\n    {{ end }}\n\n    {{/* Connect Card - Only show if has content */}}\n    {{ if $has_connect_content }}\n    <div class=\"{{ $card_max_width }} bg-white dark:bg-white/[0.03] backdrop-blur-xl rounded-2xl border border-gray-200 dark:border-white/[0.08] p-8 lg:p-10 hover:bg-gray-50 dark:hover:bg-white/[0.06] hover:border-primary-300 dark:hover:border-primary-500/30 transition-all duration-300\">\n      \n      {{/* Filter social links - remove mailto if email is shown separately */}}\n      {{ $filtered_social := slice }}\n      {{ range $social }}\n        {{ $url := index . \"url\" }}\n        {{ if and $url (not (and $email (hasPrefix $url \"mailto:\"))) }}\n          {{ $filtered_social = $filtered_social | append . }}\n        {{ end }}\n      {{ end }}\n\n      {{ if $is_single_card }}\n      {{/* Single card layout - horizontal on desktop */}}\n      <div class=\"grid grid-cols-1 md:grid-cols-2 gap-8 lg:gap-12\" x-data=\"{ copied: false }\">\n        \n        {{/* Left: Email & CTA */}}\n        <div class=\"space-y-6\">\n          <div>\n            <h3 class=\"text-2xl font-bold text-gray-900 dark:text-white mb-2\">\n              {{ $connect_title_single }}\n            </h3>\n            <p class=\"text-gray-600 dark:text-gray-400\">\n              {{ $connect_text }}\n            </p>\n          </div>\n          \n          {{ with $email }}\n          {{/* Email with click-to-copy */}}\n          <div class=\"relative\">\n            <button \n              @click=\"navigator.clipboard.writeText({{ . | jsonify }}); copied = true; setTimeout(() => copied = false, 2000)\"\n              class=\"group flex items-center gap-3 text-left\"\n            >\n              <div class=\"w-12 h-12 flex items-center justify-center rounded-xl bg-primary-100 dark:bg-primary-500/10 border border-primary-200 dark:border-primary-500/20 group-hover:bg-primary-200 dark:group-hover:bg-primary-500/20 group-hover:border-primary-300 dark:group-hover:border-primary-500/40 transition-all\">\n                {{ partial \"functions/get_icon\" (dict \"name\" \"hero/envelope\" \"attributes\" \"class=\\\"w-6 h-6 text-primary-600 dark:text-primary-400\\\"\") }}\n              </div>\n              <div>\n                <p class=\"text-sm text-gray-500 dark:text-gray-400 group-hover:text-gray-700 dark:group-hover:text-gray-300 transition-colors\">Click to copy</p>\n                <p class=\"text-lg font-medium text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">{{ . }}</p>\n              </div>\n            </button>\n            {{/* Toast notification */}}\n            <div \n              x-show=\"copied\" \n              x-transition:enter=\"transition ease-out duration-200\"\n              x-transition:enter-start=\"opacity-0 translate-y-1\"\n              x-transition:enter-end=\"opacity-100 translate-y-0\"\n              x-transition:leave=\"transition ease-in duration-150\"\n              x-transition:leave-start=\"opacity-100 translate-y-0\"\n              x-transition:leave-end=\"opacity-0 translate-y-1\"\n              class=\"absolute left-0 -bottom-10 px-3 py-1.5 bg-emerald-500/90 text-white text-sm font-medium rounded-lg shadow-lg\"\n            >\n              ✓ Copied to clipboard!\n            </div>\n          </div>\n          \n          {{/* Primary CTA Button */}}\n          <a href=\"{{ (printf \"mailto:%s\" .) | safeURL }}\" \n             class=\"inline-flex items-center px-6 py-3 bg-primary-600 hover:bg-primary-500 text-white font-medium rounded-xl shadow-lg shadow-primary-500/25 hover:shadow-xl hover:shadow-primary-500/30 transition-all\">\n            {{ partial \"functions/get_icon\" (dict \"name\" \"hero/paper-airplane\" \"attributes\" \"class=\\\"w-5 h-5 mr-2\\\"\") }}\n            Send a message\n          </a>\n          {{ end }}\n          \n          {{ with $phone }}\n          <a href=\"{{ (printf \"tel:%s\" .) | safeURL }}\" class=\"flex items-center group\">\n            <div class=\"w-12 h-12 flex items-center justify-center rounded-xl bg-primary-100 dark:bg-primary-500/10 border border-primary-200 dark:border-primary-500/20 group-hover:bg-primary-200 dark:group-hover:bg-primary-500/20 group-hover:border-primary-300 dark:group-hover:border-primary-500/40 transition-all mr-3\">\n              {{ partial \"functions/get_icon\" (dict \"name\" \"hero/phone\" \"attributes\" \"class=\\\"w-6 h-6 text-primary-600 dark:text-primary-400\\\"\") }}\n            </div>\n            <div>\n              <p class=\"text-sm text-gray-500 dark:text-gray-400\">Call me</p>\n              <p class=\"text-lg font-medium text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">{{ . }}</p>\n            </div>\n          </a>\n          {{ end }}\n        </div>\n        \n        {{/* Right: Social Links */}}\n        {{ if gt (len $filtered_social) 0 }}\n        <div class=\"flex flex-col justify-center items-center md:items-start\">\n          <h4 class=\"text-sm font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400 mb-5\">{{ i18n \"block_contact_follow_me\" | default \"Find me on\" }}</h4>\n          <div class=\"flex flex-wrap gap-4\">\n            {{ range $filtered_social }}\n            {{ $social_url := index . \"url\" }}\n            {{ $social_label := index . \"label\" }}\n            {{ $social_icon := index . \"icon\" }}\n            {{ $link := $social_url }}\n            {{ $target := \"\" }}\n            {{ $scheme := (urls.Parse $link).Scheme }}\n            {{ if not $scheme }}\n              {{ if not (hasPrefix $link \"#\") }}\n                {{ $link = $link | relLangURL }}\n              {{ end }}\n            {{ else if in (slice \"http\" \"https\") $scheme }}\n              {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n            {{ end }}\n            <a href=\"{{ $link | safeURL }}\" {{ $target | safeHTMLAttr }}\n               class=\"group flex items-center justify-center w-14 h-14 rounded-xl bg-gray-100 dark:bg-white/5 border border-gray-200 dark:border-white/10 hover:bg-primary-100 dark:hover:bg-primary-500/20 hover:border-primary-300 dark:hover:border-primary-500/40 hover:scale-110 transition-all duration-300\"\n               {{ if $social_label }}title=\"{{ $social_label }}\"{{ end }}>\n              <div class=\"text-gray-600 dark:text-gray-300 group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">\n                {{ partial \"functions/get_icon\" (dict \"name\" $social_icon \"attributes\" \"class=\\\"w-7 h-7\\\"\") }}\n              </div>\n            </a>\n            {{ end }}\n          </div>\n        </div>\n        {{ end }}\n      </div>\n\n      {{ else }}\n      {{/* Standard card layout (when shown alongside Visit Us) */}}\n      <div class=\"flex items-center mb-6\">\n        <div class=\"flex-shrink-0 w-12 h-12 bg-primary-100 dark:bg-primary-500/10 rounded-full flex items-center justify-center border border-primary-200 dark:border-primary-500/20\">\n          {{ partial \"functions/get_icon\" (dict \"name\" \"hero/chat-bubble-left-right\" \"attributes\" \"class=\\\"w-6 h-6 text-primary-600 dark:text-primary-400\\\"\") }}\n        </div>\n        <h3 class=\"ml-4 text-2xl font-bold text-gray-900 dark:text-white\">\n          {{ $connect_title_standard }}\n        </h3>\n      </div>\n      \n      <div class=\"space-y-4\">\n        {{/* Contact Methods */}}\n        <div class=\"space-y-3\">\n          {{ with $email }}\n          <a href=\"{{ (printf \"mailto:%s\" .) | safeURL }}\" class=\"flex items-center group p-3 -mx-3 rounded-lg hover:bg-gray-100 dark:hover:bg-white/5 transition-colors\">\n            <div class=\"w-10 h-10 flex items-center justify-center rounded-full bg-primary-100 dark:bg-primary-500/10 border border-primary-200 dark:border-primary-500/20 mr-4\">\n              {{ partial \"functions/get_icon\" (dict \"name\" \"hero/envelope\" \"attributes\" \"class=\\\"w-5 h-5 text-primary-600 dark:text-primary-400\\\"\") }}\n            </div>\n            <div>\n              <p class=\"text-sm text-gray-500 dark:text-gray-400\">Email</p>\n              <p class=\"text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">{{ . }}</p>\n            </div>\n          </a>\n          {{ end }}\n          \n          {{ with $phone }}\n          <a href=\"{{ (printf \"tel:%s\" .) | safeURL }}\" class=\"flex items-center group p-3 -mx-3 rounded-lg hover:bg-gray-100 dark:hover:bg-white/5 transition-colors\">\n            <div class=\"w-10 h-10 flex items-center justify-center rounded-full bg-primary-100 dark:bg-primary-500/10 border border-primary-200 dark:border-primary-500/20 mr-4\">\n              {{ partial \"functions/get_icon\" (dict \"name\" \"hero/phone\" \"attributes\" \"class=\\\"w-5 h-5 text-primary-600 dark:text-primary-400\\\"\") }}\n            </div>\n            <div>\n              <p class=\"text-sm text-gray-500 dark:text-gray-400\">Phone</p>\n              <p class=\"text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">{{ . }}</p>\n            </div>\n          </a>\n          {{ end }}\n          \n          {{/* Social Media */}}\n          {{ if gt (len $filtered_social) 0 }}\n          <div class=\"pt-4 border-t border-gray-200 dark:border-white/10\">\n            <h4 class=\"font-semibold text-gray-900 dark:text-white mb-4\">{{ i18n \"block_contact_follow_me\" | default \"Find me on\" }}</h4>\n            <div class=\"flex flex-wrap gap-3\">\n              {{ range $filtered_social }}\n              {{ $social_url := index . \"url\" }}\n              {{ $social_label := index . \"label\" }}\n              {{ $social_icon := index . \"icon\" }}\n              {{ $link := $social_url }}\n              {{ $target := \"\" }}\n              {{ $scheme := (urls.Parse $link).Scheme }}\n              {{ if not $scheme }}\n                {{ if not (hasPrefix $link \"#\") }}\n                  {{ $link = $link | relLangURL }}\n                {{ end }}\n              {{ else if in (slice \"http\" \"https\") $scheme }}\n                {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n              {{ end }}\n              <a href=\"{{ $link | safeURL }}\" {{ $target | safeHTMLAttr }}\n                 class=\"w-11 h-11 flex items-center justify-center rounded-full bg-gray-100 dark:bg-white/5 border border-gray-200 dark:border-white/10 text-gray-600 dark:text-gray-400 hover:bg-primary-100 dark:hover:bg-primary-500/20 hover:border-primary-300 dark:hover:border-primary-500/40 hover:text-primary-600 dark:hover:text-primary-400 transition-all duration-300\"\n                 {{ if $social_label }}title=\"{{ $social_label }}\"{{ end }}>\n                {{ partial \"functions/get_icon\" (dict \"name\" $social_icon \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n              </a>\n              {{ end }}\n            </div>\n          </div>\n          {{ end }}\n        </div>\n      </div>\n      {{ end }}\n        \n      {{/* Prospective Members - shown in both layouts */}}\n      {{ if or $prospective_title $prospective_text $prospective_button_text $prospective_button_url }}\n      {{ $prospective_heading := $prospective_title | default (i18n \"block_contact_prospective_title\" | default \"Prospective Members\") }}\n      <div class=\"mt-6 pt-6 border-t border-gray-200 dark:border-white/10\">\n        <h4 class=\"font-semibold text-gray-900 dark:text-white mb-2\">{{ $prospective_heading }}</h4>\n        {{ with $prospective_text }}\n        <p class=\"text-gray-600 dark:text-gray-300 mb-4\">{{ . }}</p>\n        {{ end }}\n        {{ if and $prospective_button_text $prospective_button_url }}\n        {{ $cta_link := $prospective_button_url }}\n        {{ $cta_target := \"\" }}\n        {{ $cta_scheme := (urls.Parse $cta_link).Scheme }}\n        {{ if not $cta_scheme }}\n          {{ if not (hasPrefix $cta_link \"#\") }}\n            {{ $cta_link = $cta_link | relLangURL }}\n          {{ end }}\n        {{ else if in (slice \"http\" \"https\") $cta_scheme }}\n          {{ $cta_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n        {{ end }}\n        <a href=\"{{ $cta_link | safeURL }}\" {{ $cta_target | safeHTMLAttr }}\n           class=\"inline-flex items-center px-4 py-2 bg-primary-600 hover:bg-primary-500 text-white rounded-lg shadow-lg shadow-primary-500/25 hover:shadow-xl hover:shadow-primary-500/30 transition-all\">\n          {{ partial \"functions/get_icon\" (dict \"name\" \"hero/user-plus\" \"attributes\" \"class=\\\"w-5 h-5 mr-2\\\"\") }}\n          {{ $prospective_button_text }}\n        </a>\n        {{ end }}\n      </div>\n      {{ end }}\n    </div>\n    {{ end }}\n  </div>\n\n  {{/* Optional Map Embed */}}\n  {{ with $map_embed }}\n  <div class=\"mt-12 rounded-2xl overflow-hidden border border-gray-200 dark:border-white/[0.08]\">\n    <div class=\"aspect-w-16 aspect-h-9 lg:aspect-h-6\">\n      {{ . | safeHTML }}\n    </div>\n  </div>\n  {{ end }}\n  \n  {{/* Contact Form (optional) */}}\n  {{ if $show_form }}\n  <div class=\"mt-12 max-w-2xl mx-auto\">\n    <div class=\"bg-white dark:bg-white/[0.03] backdrop-blur-xl rounded-2xl border border-gray-200 dark:border-white/[0.08] p-8\">\n      <h3 class=\"text-2xl font-bold text-gray-900 dark:text-white mb-6\">{{ i18n \"block_contact_form_title\" | default \"Send us a Message\" }}</h3>\n      <form action=\"{{ $form_action | safeURL }}\" method=\"POST\" class=\"space-y-6\">\n        <div class=\"grid grid-cols-1 sm:grid-cols-2 gap-6\">\n          <div>\n            <label for=\"name\" class=\"block text-sm font-medium text-gray-600 dark:text-gray-400 mb-2\">{{ i18n \"block_contact_form_name\" | default \"Name\" }}</label>\n            <input type=\"text\" id=\"name\" name=\"name\" required\n                   class=\"w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-lg focus:ring-2 focus:ring-primary-500 focus:border-primary-500/50 text-gray-900 dark:text-white placeholder-gray-400 dark:placeholder-gray-500 transition-colors\">\n          </div>\n          <div>\n            <label for=\"form-email\" class=\"block text-sm font-medium text-gray-600 dark:text-gray-400 mb-2\">{{ i18n \"block_contact_form_email\" | default \"Email\" }}</label>\n            <input type=\"email\" id=\"form-email\" name=\"email\" required\n                   class=\"w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-lg focus:ring-2 focus:ring-primary-500 focus:border-primary-500/50 text-gray-900 dark:text-white placeholder-gray-400 dark:placeholder-gray-500 transition-colors\">\n          </div>\n        </div>\n        <div>\n          <label for=\"subject\" class=\"block text-sm font-medium text-gray-600 dark:text-gray-400 mb-2\">{{ i18n \"block_contact_form_subject\" | default \"Subject\" }}</label>\n          <input type=\"text\" id=\"subject\" name=\"subject\" required\n                 class=\"w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-lg focus:ring-2 focus:ring-primary-500 focus:border-primary-500/50 text-gray-900 dark:text-white placeholder-gray-400 dark:placeholder-gray-500 transition-colors\">\n        </div>\n        <div>\n          <label for=\"message\" class=\"block text-sm font-medium text-gray-600 dark:text-gray-400 mb-2\">{{ i18n \"block_contact_form_message\" | default \"Message\" }}</label>\n          <textarea id=\"message\" name=\"message\" rows=\"5\" required\n                    class=\"w-full px-4 py-3 bg-gray-50 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-lg focus:ring-2 focus:ring-primary-500 focus:border-primary-500/50 text-gray-900 dark:text-white placeholder-gray-400 dark:placeholder-gray-500 transition-colors resize-none\"></textarea>\n        </div>\n        <button type=\"submit\"\n                class=\"w-full px-6 py-3 bg-primary-600 hover:bg-primary-500 text-white font-medium rounded-lg shadow-lg shadow-primary-500/25 hover:shadow-xl hover:shadow-primary-500/30 transition-all\">\n          {{ i18n \"block_contact_form_submit\" | default \"Send Message\" }}\n        </button>\n      </form>\n    </div>\n  </div>\n  {{ end }}\n</div>\n"
  },
  {
    "path": "modules/blox/blox/contact-info/manifest.json",
    "content": "{\n  \"id\": \"contact-info\",\n  \"name\": \"Contact Info\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"contact\", \"information\", \"address\", \"location\", \"lab\", \"research\", \"organization\"],\n  \"description\": \"Display contact information with modern card layout, including address, phone, email, social media, and optional contact form\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"static-site\", \"contact\", \"information\", \"address\", \"research-lab\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/cta-button-list/README.md",
    "content": "# CTA Button List Block\n\n**Drive action with beautiful, conversion-focused button lists**\n\nTransform your visitors into engaged users with the CTA Button List block - a sleek, modern way to present multiple call-to-action options in an organized, visually appealing format.\n\n## ✨ Key Features\n\n- **Icon Integration**: Add engaging icons to every button for visual impact\n- **Hover Animations**: Smooth scale and transition effects that invite interaction\n- **Responsive Design**: Perfect button sizing and spacing across all devices\n- **External Link Support**: Built-in support for external links with proper security attributes\n- **Markdown Support**: Rich text formatting for button labels\n- **Clean Styling**: Modern card-based design with subtle shadows and borders\n\n## 🎯 Perfect For\n\n- **Social Media Links**: Create an elegant \"link in bio\" style page\n- **Resource Collections**: Direct visitors to your key resources and tools\n- **Service Offerings**: Showcase different services or products you offer\n- **Contact Options**: Multiple ways for visitors to reach you\n- **Download Centers**: Organize files, guides, and resources for easy access\n- **Partner Links**: Highlight collaborations and partnerships\n\n## 🚀 Why Choose CTA Button List?\n\n**High Conversion Design**: Proven button styling that encourages clicks and engagement\n\n**Flexible & Scalable**: Add as many buttons as needed without compromising design\n\n**Professional Appeal**: Clean, modern aesthetic that works for any industry or use case\n\n**Easy Maintenance**: Simple configuration that keeps your links organized and up-to-date\n\n## 📊 Conversion Benefits\n\n- Increased click-through rates with prominent, well-designed buttons\n- Better user experience with clear visual hierarchy\n- Reduced bounce rates by providing multiple engagement paths\n- Improved accessibility with proper labeling and focus states\n\n## 💡 Pro Tips\n\n- Use contrasting icons to make each button distinct\n- Keep button text concise but descriptive\n- Order buttons by priority or user journey importance\n- Test different icon styles to match your brand aesthetic\n\nPerfect for entrepreneurs, creators, businesses, and anyone who wants to turn their website visitors into active participants in their ecosystem.\n\n"
  },
  {
    "path": "modules/blox/blox/cta-button-list/block.html",
    "content": "{{/* Hugo Blox: Buttons */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n\n<div class=\"flex items-center flex-col mx-auto w-full justify-center mt-4 px-8 pb-5\">\n\n{{ $buttons_raw := index $content \"buttons\" }}\n{{ $buttons := slice }}\n{{ if reflect.IsSlice $buttons_raw }}\n  {{ $buttons = $buttons_raw }}\n{{ else if and $buttons_raw (reflect.IsMap $buttons_raw) }}\n  {{ $buttons = slice $buttons_raw }}\n{{ else if eq (printf \"%T\" $buttons_raw) \"string\" }}\n  {{ $buttons = slice (dict \"url\" $buttons_raw) }}\n{{ end }}\n\n{{ range $index, $item := $buttons }}\n  {{ $text := \"\" }}\n  {{ $url := \"\" }}\n  {{ $icon := \"\" }}\n  {{ $new_tab := false }}\n  {{ if reflect.IsMap $item }}\n    {{ $text_raw := index $item \"text\" | default (index $item \"label\") | default (index $item \"name\") }}\n    {{ if ne $text_raw nil }}{{ $text = strings.TrimSpace (printf \"%v\" $text_raw) }}{{ end }}\n    {{ $url_raw := index $item \"url\" | default (index $item \"link\") }}\n    {{ if eq (printf \"%T\" $url_raw) \"string\" }}{{ $url = strings.TrimSpace $url_raw }}{{ end }}\n    {{ $icon_raw := index $item \"icon\" }}\n    {{ if eq (printf \"%T\" $icon_raw) \"string\" }}{{ $icon = $icon_raw }}{{ end }}\n    {{ $new_tab = partial \"functions/coerce_bool\" (dict \"value\" (index $item \"new_tab\") \"default\" false) }}\n  {{ else if eq (printf \"%T\" $item) \"string\" }}\n    {{ $url = strings.TrimSpace $item }}\n  {{ end }}\n  {{ if and (not $text) $url }}\n    {{ $text = $url }}\n  {{ end }}\n  {{ if $url }}\n    {{ $link := $url }}\n    {{ $target := \"\" }}\n    {{ $scheme := (urls.Parse $link).Scheme }}\n    {{ if not $scheme }}\n      {{ if not (hasPrefix $link \"#\") }}\n        {{ $link = $link | relLangURL }}\n      {{ end }}\n      {{ if eq (path.Ext $link) \".pdf\" }}\n        {{ $new_tab = true }}\n      {{ end }}\n    {{ else if in (slice \"http\" \"https\") $scheme }}\n      {{ $new_tab = true }}\n    {{ end }}\n    {{ if $new_tab }}\n      {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\" }}\n    {{ end }}\n    <a href=\"{{ $link | safeURL }}\" {{ $target | safeHTMLAttr }} class=\"flex items-center p-1 w-full rounded-md hover:scale-105 transition-all bg-gray-100 mb-3 max-w-3xl\">\n      <div class=\"flex text-center w-full\">\n        <div class=\"w-10 h-10 text-gray-700\">\n          {{ with $icon }}\n            {{ partial \"functions/get_icon\" (dict \"name\" . \"attributes\" \"height=\\\"40\\\" width=\\\"40\\\" class=\\\"rounded-sm\\\"\") }}\n          {{ end }}\n        </div>\n        <div class=\"flex justify-center items-center font-semibold w-full text-gray-700 -ml-10\">\n          {{ $text | markdownify | emojify }}\n        </div>\n      </div>\n    </a>\n  {{ end }}\n{{ end }}\n\n</div>\n"
  },
  {
    "path": "modules/blox/blox/cta-button-list/manifest.json",
    "content": "{\n  \"id\": \"cta-button-list\",\n  \"name\": \"CTA Button List\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"marketing\",\n  \"tags\": [\"cta\", \"buttons\", \"links\", \"social\", \"marketing\", \"conversion\", \"list\"],\n  \"description\": \"Create compelling vertical lists of call-to-action buttons with icons and hover effects\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"cta\", \"buttons\", \"conversion\", \"marketing\", \"social-links\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/cta-card/README.md",
    "content": "# CTA Card Block\n\n**Create irresistible calls-to-action that convert**\n\nMake a bold statement and drive immediate action with the CTA Card block - a high-impact, conversion-optimized component designed to capture attention and compel your visitors to take the next step.\n\n## ✨ Key Features\n\n- **🪟 2025 Glassmorphism**: Modern translucent backgrounds with backdrop blur effects\n- **🎨 Gradient Typography**: Beautiful gradient text effects for maximum visual appeal\n- **🔗 Smart Icon Support**: Add icons to buttons with automatic sizing and hover animations\n- **📱 Enhanced Responsiveness**: Fluid typography scaling from mobile to desktop\n- **✨ Micro-Interactions**: Smooth hover animations with glow effects and transforms\n- **🎯 Customizable Styling**: Multiple glassmorphism presets or custom CSS classes\n- **♿ Accessibility Enhanced**: Improved focus states and semantic markup\n\n## 🎯 Perfect For\n\n- **Newsletter Signups**: Encourage email subscriptions with compelling copy\n- **Product Launches**: Announce new products or services with impact\n- **Event Promotions**: Drive registrations and attendance\n- **Lead Generation**: Capture leads with irresistible offers\n- **Content Downloads**: Promote whitepapers, guides, and resources\n- **Service Inquiries**: Convert visitors into prospects and clients\n\n## 🚀 Why Choose CTA Card?\n\n**Maximum Visual Impact**: Bold design that stands out on any page and captures immediate attention\n\n**Conversion Focused**: Every element is optimized for driving action, from typography to button placement\n\n**Brand Flexible**: Fully customizable styling to match your brand colors and aesthetic\n\n**Proven Results**: Based on high-converting design patterns used by top marketing teams\n\n## 📊 Conversion Psychology\n\n- **Contrast Principle**: Dark background creates visual separation and focus\n- **Size Hierarchy**: Large headlines establish clear information priority\n- **Action Clarity**: Single, prominent button reduces decision paralysis\n- **Emotional Appeal**: Space for compelling copy that connects with your audience\n\n## 💡 Best Practices\n\n- Keep headlines short and benefit-focused\n- Use action-oriented button text (\"Get Started\", \"Download Now\", \"Join Today\")\n- Ensure your copy addresses a specific pain point or desire\n- Test different background colors to maximize contrast with your site\n\nTransform casual visitors into engaged users with a CTA Card that's impossible to ignore.\n\n## 🎨 2025 Glassmorphism Styling Options\n\n### **Glassmorphism Primary** (Recommended)\n\n```yaml\n- block: cta-card\n  content:\n    title: 'Ready to Get Started?'\n    text: 'Join thousands of users creating amazing websites'\n    button:\n      text: 'Get Started Free'\n      url: '/signup/'\n      icon: 'hero/rocket-launch'\n  design:\n    card:\n      css_class: 'cta-glassmorphism'\n      text_color: 'auto' # auto|light|dark\n      overlay_opacity: 0.15 # 0.0-1.0 for contrast control\n    background:\n      gradient:\n        start: 'primary-500'\n        end: 'primary-700'\n        direction: 135\n      image:\n        filename: 'textures/noise-pattern.svg'\n        size: '32px'\n        position: 'repeat'\n```\n\n### **Glassmorphism Dark**\n\n```yaml\ndesign:\n  card:\n    css_class: 'glassmorphism-dark glass-ring glass-shadow text-white'\n```\n\n### **Glassmorphism Light**\n\n```yaml\ndesign:\n  card:\n    css_class: 'glassmorphism-light glass-ring glass-shadow text-gray-900'\n```\n\n### **Custom Background + Glassmorphism**\n\n```yaml\ndesign:\n  card:\n    css_class: 'glassmorphism-secondary noise-texture text-white'\n  background:\n    color: 'primary-600'\n    image:\n      filename: 'your-background.jpg'\n      size: 'cover'\n      position: 'center'\n      opacity: 0.8\n    gradient:\n      start: 'primary-500'\n      end: 'secondary-600'\n      direction: 135\n```\n\n## 🔗 Icon Support\n\nAdd icons to your CTA buttons:\n\n```yaml\nbutton:\n  text: 'Download Now'\n  url: '/download/'\n  icon: 'hero/download'        # Download icon\n\nbutton:\n  text: 'Contact Us'\n  url: 'mailto:hello@example.com'\n  icon: 'hero/paper-airplane'  # Email icon\n\nbutton:\n  text: 'Learn More'\n  url: '#features'\n  icon: 'hero/arrow-right'     # Arrow icon\n```\n\n## 🎨 Contrast Control Options\n\n### **Text Color Modes**\n\n```yaml\ncard:\n  text_color: 'auto'    # Auto-detects based on background brightness\n  text_color: 'light'   # Force white text (for dark backgrounds)\n  text_color: 'dark'    # Force dark text (for light backgrounds)\n```\n\n### **Overlay Opacity Control**\n\n```yaml\ncard:\n  overlay_opacity: 0.1   # Subtle glassmorphism (better for text contrast)\n  overlay_opacity: 0.15  # Default glassmorphism\n  overlay_opacity: 0.25  # Strong glassmorphism (may reduce contrast)\n  overlay_opacity: 0.05  # Minimal glassmorphism (maximum contrast)\n```\n\n### **Perfect Contrast Examples**\n\n**Dark Background (Light Text):**\n\n```yaml\ndesign:\n  card:\n    css_class: 'cta-glassmorphism'\n    text_color: 'light'\n    overlay_opacity: 0.1\n  background:\n    gradient:\n      start: 'gray-800'\n      end: 'gray-900'\n```\n\n**Light Background (Dark Text):**\n\n```yaml\ndesign:\n  card:\n    css_class: 'cta-glassmorphism'\n    text_color: 'dark'\n    overlay_opacity: 0.2\n  background:\n    gradient:\n      start: 'gray-100'\n      end: 'gray-300'\n```\n\n**Vibrant Background (Auto Detection):**\n\n```yaml\ndesign:\n  card:\n    css_class: 'cta-glassmorphism'\n    text_color: 'auto' # Will detect primary-500 as medium and use adaptive colors\n    overlay_opacity: 0.15\n  background:\n    gradient:\n      start: 'primary-500'\n      end: 'primary-700'\n```\n\n## ✨ Available Glassmorphism Classes\n\n- **`cta-glassmorphism`**: Smart adaptive glassmorphism with contrast controls\n- **`glassmorphism-primary`**: Primary color glassmorphism (legacy)\n- **`glassmorphism-secondary`**: Secondary color glassmorphism (legacy)\n- **`glassmorphism-dark`**: Dark glassmorphism (legacy)\n- **`glassmorphism-light`**: Light glassmorphism (legacy)\n- **`glass-ring`**: Enhanced ring borders\n- **`glass-shadow`**: Multi-layer glass shadows\n- **`noise-texture`**: Subtle noise texture overlay\n"
  },
  {
    "path": "modules/blox/blox/cta-card/client.jsx",
    "content": "import {render} from \"preact\";\nimport {CtaCardBlock} from \"./component.jsx\";\n\nfunction renderCtaCardBlock() {\n  const blocks = document.querySelectorAll('.cta-card-block-container[data-preact-render=\"true\"]');\n\n  blocks.forEach((block) => {\n    try {\n      if (block.dataset.rendered === \"true\") return;\n\n      const props = JSON.parse(block.dataset.props);\n      render(<CtaCardBlock {...props} />, block);\n      block.dataset.rendered = \"true\";\n    } catch (e) {\n      console.error(\"Error rendering CTA Card Block:\", e, block);\n    }\n  });\n}\n\n// Initial render\nif (document.readyState === \"loading\") {\n  document.addEventListener(\"DOMContentLoaded\", renderCtaCardBlock);\n} else {\n  renderCtaCardBlock();\n}\n"
  },
  {
    "path": "modules/blox/blox/cta-card/component.jsx",
    "content": "/**\n * CTA Card Block Component\n * A centered card with title, text, and primary action button.\n * Supports glassmorphism, custom backgrounds, and automatic text color adjustment.\n */\n\nimport {Icon} from \"../../shared/components/Icon.jsx\";\n\n// Simple markdown renderer\nfunction renderText(text) {\n  if (!text) return \"\";\n  return String(text)\n    .replace(/\\*\\*(.*?)\\*\\*/g, \"<strong>$1</strong>\")\n    .replace(/\\*(.*?)\\*/g, \"<em>$1</em>\")\n    .replace(/`(.*?)`/g, \"<code>$1</code>\")\n    .replace(/\\[([^\\]]+)\\]\\(([^)]+)\\)/g, '<a href=\"$2\">$1</a>');\n}\n\nexport const CtaCardBlock = ({content, design, _id, button_icon_svg}) => {\n  const card = design?.card || {};\n  const cardClass = card.css_class || \"\";\n  const cardStyle = card.css_style || \"\";\n\n  // Overlay Opacity Logic\n  let overlayOpacity = 0.15;\n  if (card.overlay_opacity !== undefined) {\n    const val = parseFloat(card.overlay_opacity);\n    if (!Number.isNaN(val)) overlayOpacity = Math.max(0, Math.min(1, val));\n  }\n\n  // Text Color Logic\n  let textColorMode = \"auto\";\n  if ([\"light\", \"dark\", \"auto\"].includes(card.text_color?.toLowerCase())) {\n    textColorMode = card.text_color.toLowerCase();\n  }\n\n  let textClasses = \"text-gray-900 dark:text-white\";\n  let buttonClasses = \"text-gray-900 dark:text-gray-100\";\n\n  // Auto-detect based on background gradient\n  const bg = design?.background || {};\n  const gradientStart = bg.gradient?.start || \"\";\n  const isDarkBg = [\"primary-7\", \"primary-8\", \"primary-9\", \"secondary-7\", \"secondary-8\", \"secondary-9\"].some((p) => gradientStart.startsWith(p));\n\n  if (textColorMode === \"light\") {\n    textClasses = \"text-white\";\n    buttonClasses = \"text-gray-900 dark:text-white\";\n  } else if (textColorMode === \"dark\") {\n    textClasses = \"text-gray-900 dark:text-white\";\n    buttonClasses = \"text-gray-900 dark:text-white\";\n  } else if (isDarkBg) {\n    textClasses = \"text-white\";\n    buttonClasses = \"text-gray-900\";\n  }\n\n  // Button Logic\n  const button = content?.button || {};\n  const buttonText = button.text?.trim();\n  const buttonUrl = button.url?.trim();\n  const showButton = !!(buttonText && buttonUrl);\n\n  let isExternal = false;\n  let isNewTab = button.new_tab === true;\n  if (buttonUrl) {\n    try {\n      const url = new URL(buttonUrl, window.location.origin);\n      isExternal = url.origin !== window.location.origin;\n    } catch {\n      isExternal = /^https?:\\/\\//.test(buttonUrl);\n    }\n    if (buttonUrl.endsWith(\".pdf\")) isNewTab = true;\n    if (isExternal) isNewTab = true;\n  }\n\n  const defaultBgClass = \"bg-gradient-to-br from-primary-500/90 via-primary-600/95 to-primary-700/90\";\n  const finalCardClass = cardClass || defaultBgClass;\n\n  const style = `--glassmorphism-opacity: ${overlayOpacity}; ${cardStyle}`;\n\n  return (\n    <div\n      class={`relative overflow-hidden ${finalCardClass} p-8 sm:p-12 lg:p-16 xl:p-20 mx-auto max-w-6xl rounded-3xl shadow-2xl flex flex-col items-center text-center`}\n      style={style}\n    >\n      {/* Title */}\n      {content.title && (\n        <h2\n          class={`${textClasses} text-4xl sm:text-5xl lg:text-6xl xl:text-7xl font-bold tracking-tight leading-tight`}\n          dangerouslySetInnerHTML={{__html: renderText(content.title)}}\n        />\n      )}\n\n      {/* Text */}\n      {content.text && (\n        <div\n          class={`${textClasses}/80 mt-6 text-lg sm:text-xl lg:text-2xl max-w-3xl leading-relaxed font-light`}\n          dangerouslySetInnerHTML={{__html: renderText(content.text)}}\n        />\n      )}\n\n      {/* Button */}\n      {showButton && (\n        <div class=\"flex mt-10\">\n          <a\n            href={buttonUrl}\n            target={isNewTab ? \"_blank\" : undefined}\n            rel={isNewTab ? \"noopener\" : undefined}\n            class={`group relative inline-flex items-center gap-3 px-8 py-4 text-lg font-semibold ${buttonClasses} transition-all duration-300 ease-out hover:scale-105 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-gray-500/50 dark:focus-visible:ring-white/50 focus-visible:ring-offset-2 focus-visible:ring-offset-transparent`}\n          >\n            {/* Glassmorphism Background */}\n            <div class=\"absolute inset-0 bg-white/95 dark:bg-gray-900/95 backdrop-blur-md rounded-2xl ring-1 ring-gray-200/30 dark:ring-white/30 shadow-lg group-hover:bg-white dark:group-hover:bg-gray-800 group-hover:ring-gray-300/50 dark:group-hover:ring-white/50 group-hover:shadow-2xl transition-all duration-300\"></div>\n\n            {/* Button Content */}\n            <span class=\"relative z-10\">{buttonText}</span>\n            {button_icon_svg && (\n              <span class=\"relative z-10 transition-transform duration-300 group-hover:translate-x-1\">\n                <Icon svg={button_icon_svg} attributes={{style: \"height: 1.25em\", class: \"inline-block\"}} />\n              </span>\n            )}\n\n            {/* Glow Effect */}\n            <div class=\"absolute inset-0 bg-white/20 dark:bg-white/10 rounded-2xl opacity-0 group-hover:opacity-100 transition-opacity duration-300 blur-xl\"></div>\n          </a>\n        </div>\n      )}\n    </div>\n  );\n};\n"
  },
  {
    "path": "modules/blox/blox/cta-card/manifest.json",
    "content": "{\n  \"id\": \"cta-card\",\n  \"name\": \"CTA Card\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"marketing\",\n  \"tags\": [\"cta\", \"card\", \"conversion\", \"marketing\", \"hero\", \"call-to-action\", \"banner\"],\n  \"description\": \"Create high-impact call-to-action cards with bold typography and compelling buttons\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"cta\", \"marketing\", \"conversion\", \"banner\", \"card\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/cta-image-paragraph/README.md",
    "content": "# CTA Image Paragraph Block\n\n**Tell your story with stunning visuals and compelling copy**\n\nEngage your audience with the CTA Image Paragraph block - a powerful storytelling component that combines beautiful imagery, descriptive content, feature highlights, and strategic calls-to-action in an alternating layout that keeps visitors scrolling.\n\n## ✨ Key Features\n\n- **Alternating Layout**: Images automatically alternate left/right for visual rhythm\n- **Responsive Images**: Smart image processing with multiple sizes and WebP support\n- **Feature Lists**: Highlight key benefits with customizable icons\n- **GIF Support**: Full support for animated GIFs alongside static images\n- **CTA Integration**: Strategic button placement for maximum conversion\n- **Markdown Rich**: Full Markdown support for titles and descriptions\n- **Mobile Optimized**: Stacks beautifully on mobile devices\n\n## 🎯 Perfect For\n\n- **Product Showcases**: Highlight different product features with supporting visuals\n- **Service Explanations**: Break down complex services into digestible sections\n- **Company Story**: Tell your brand story with compelling narratives and imagery\n- **Feature Announcements**: Introduce new features with visual demonstrations\n- **Process Explanations**: Guide users through multi-step processes\n- **Benefits Highlighting**: Showcase the value proposition of your offerings\n\n## 🚀 Why Choose CTA Image Paragraph?\n\n**Visual Storytelling**: Combine the power of images and words for maximum engagement\n\n**Conversion Optimized**: Strategic placement of features and CTAs guides users toward action\n\n**Professional Polish**: Alternating layout creates visual interest and professional appearance\n\n**Content Flexibility**: Support any number of sections with unique images, copy, and features\n\n## 📊 Engagement Benefits\n\n- **Higher Time on Page**: Alternating content keeps visitors engaged longer\n- **Better Comprehension**: Visual-text combinations improve understanding and retention\n- **Increased Conversions**: Strategic CTA placement at optimal engagement points\n- **Mobile Excellence**: Responsive design ensures great experience on all devices\n\n## 💡 Design Psychology\n\n- **Visual Rhythm**: Alternating layout creates pleasing visual flow\n- **Information Chunking**: Breaking content into sections improves readability\n- **Social Proof**: Feature lists build credibility and trust\n- **Action Momentum**: Multiple CTAs capture interest at different engagement levels\n\nPerfect for SaaS companies, service providers, product teams, and anyone who needs to explain complex offerings through engaging visual storytelling.\n\n"
  },
  {
    "path": "modules/blox/blox/cta-image-paragraph/client.jsx",
    "content": "/**\n * CTA Image Paragraph Block - Client-side Hydration\n */\n\nimport {render} from \"preact\";\nimport {CtaImageParagraphBlock} from \"./component.jsx\";\n\nfunction renderCtaImageParagraphBlocks() {\n  const blocks = document.querySelectorAll('[data-block-type=\"cta-image-paragraph\"]');\n\n  blocks.forEach((block) => {\n    const propsData = block.dataset.props;\n    if (propsData) {\n      try {\n        const props = JSON.parse(propsData);\n        render(<CtaImageParagraphBlock {...props} />, block);\n        console.debug(`✓ CTA Image Paragraph block \"${block.id}\" rendered with Preact`);\n      } catch (error) {\n        console.error(`Failed to render CTA Image Paragraph block \"${block.id}\":`, error);\n      }\n    }\n  });\n}\n\nrenderCtaImageParagraphBlocks();\n"
  },
  {
    "path": "modules/blox/blox/cta-image-paragraph/component.jsx",
    "content": "/**\n * CTA Image Paragraph Block Component - Single source of truth\n * Alternating image + text sections with feature lists and CTA buttons\n * Images are pre-processed by Hugo's responsive image pipeline (srcset)\n */\n\nimport {Icon} from \"../../shared/components/Icon.jsx\";\n\n// Simple markdown renderer\nfunction renderText(text) {\n  if (!text) return \"\";\n  return String(text)\n    .replace(/\\*\\*(.*?)\\*\\*/g, \"<strong>$1</strong>\")\n    .replace(/\\*(.*?)\\*/g, \"<em>$1</em>\")\n    .replace(/`(.*?)`/g, \"<code>$1</code>\")\n    .replace(/\\[([^\\]]+)\\]\\(([^)]+)\\)/g, '<a href=\"$2\">$1</a>');\n}\n\n// Arrow icon for CTA buttons\nconst ArrowIcon = () => (\n  <svg aria-hidden=\"true\" class=\"ml-2 -mr-1 w-5 h-5\" fill=\"currentColor\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\">\n    <path\n      fill-rule=\"evenodd\"\n      d=\"M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z\"\n      clip-rule=\"evenodd\"\n    />\n  </svg>\n);\n\nfunction CtaItem({item, idx, imageData, featureIconSvg}) {\n  const isReversed = idx % 2 === 1;\n  const hasImage = !!imageData;\n  const _featureIcon = item.feature_icon || \"check\";\n\n  // Resolve button link\n  const buttonUrl = item.button?.url || \"\";\n  let isExternal = false;\n  if (buttonUrl) {\n    try {\n      const url = new URL(buttonUrl, window.location.origin);\n      isExternal = url.origin !== window.location.origin;\n    } catch {\n      isExternal = /^https?:\\/\\//.test(buttonUrl);\n    }\n  }\n\n  const features = Array.isArray(item.features) ? item.features : typeof item.features === \"string\" ? [item.features] : [];\n\n  return (\n    <div class={`gap-8 items-center py-8 px-4 mx-auto max-w-screen-xl xl:gap-16 ${hasImage ? \"md:grid md:grid-cols-2\" : \"\"} sm:py-16 lg:px-6`}>\n      {/* Image */}\n      {hasImage &&\n        (imageData.srcset ? (\n          <img\n            class=\"w-full\"\n            srcset={imageData.srcset}\n            sizes=\"(max-width: 768px) 100vw, 50vw\"\n            src={imageData.src}\n            width={imageData.width}\n            height={imageData.height}\n            alt={item.title || \"\"}\n            style={isReversed ? {order: 1} : undefined}\n          />\n        ) : (\n          <img\n            class=\"w-full\"\n            src={imageData.src}\n            width={imageData.width}\n            height={imageData.height}\n            alt={item.title || \"\"}\n            style={isReversed ? {order: 1} : undefined}\n          />\n        ))}\n\n      {/* Text Content */}\n      <div class=\"mt-4 md:mt-0\">\n        {item.title && (\n          <h2\n            class=\"mb-4 text-4xl tracking-tight font-extrabold text-gray-900 dark:text-white\"\n            dangerouslySetInnerHTML={{__html: renderText(item.title)}}\n          />\n        )}\n        {item.text && (\n          <p class=\"mb-6 font-light text-gray-500 md:text-lg dark:text-gray-400\" dangerouslySetInnerHTML={{__html: renderText(item.text)}} />\n        )}\n\n        {/* Feature List */}\n        {features.length > 0 && (\n          <ul>\n            {features.map((feature, fIdx) => (\n              <li key={fIdx} class=\"relative mb-4 pl-6\">\n                {featureIconSvg ? <Icon svg={featureIconSvg} attributes={{class: \"inline-block pr-5\", style: \"height: 1em;\"}} /> : null}\n                <span dangerouslySetInnerHTML={{__html: renderText(String(feature))}} />\n              </li>\n            ))}\n          </ul>\n        )}\n\n        {/* CTA Button */}\n        {item.button?.text && item.button?.url && (\n          <a\n            href={buttonUrl}\n            target={isExternal ? \"_blank\" : undefined}\n            rel={isExternal ? \"noopener\" : undefined}\n            class=\"mt-3 inline-flex items-center text-white bg-primary-700 hover:bg-primary-800 focus:ring-4 focus:ring-primary-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:focus:ring-primary-900\"\n          >\n            {item.button.text}\n            <ArrowIcon />\n          </a>\n        )}\n      </div>\n    </div>\n  );\n}\n\nexport const CtaImageParagraphBlock = ({content, _design, _id, item_images, icon_svgs}) => {\n  const items = Array.isArray(content?.items) ? content.items : [];\n  const imageMap = item_images || {};\n  const iconMap = icon_svgs || {};\n\n  return (\n    <div>\n      {items.map((item, idx) => (\n        <CtaItem\n          key={idx}\n          item={item}\n          idx={idx}\n          imageData={imageMap[String(idx)] || null}\n          featureIconSvg={item.feature_icon ? iconMap[item.feature_icon] : iconMap.check}\n        />\n      ))}\n    </div>\n  );\n};\n"
  },
  {
    "path": "modules/blox/blox/cta-image-paragraph/manifest.json",
    "content": "{\n  \"id\": \"cta-image-paragraph\",\n  \"name\": \"CTA Image Paragraph\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"marketing\",\n  \"tags\": [\"cta\", \"image\", \"features\", \"alternating\", \"marketing\", \"storytelling\", \"visual\"],\n  \"description\": \"Engaging alternating image and text sections with feature lists and call-to-action buttons\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"marketing\", \"images\", \"features\", \"storytelling\", \"conversion\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/dev-hero/README.md",
    "content": "# Dev Hero Block\n\nA modern, developer-focused hero section optimized for dark mode with gradient effects, animated backgrounds, and flexible layouts.\n\n## Features\n\n- **Gradient Text**: Name displayed with beautiful gradient styling\n- **Animated Background**: Floating orbs with subtle grid pattern\n- **Social Links**: Automatic icon detection for common platforms\n- **CTA Buttons**: Primary and secondary button styling\n- **Two Layouts**: Centered or split (avatar on side) layouts\n- **Author Integration**: Pulls data from author profiles\n- **Emoji Status Badge**: Optional personalized emoji on avatar (💻 developer, 🎨 designer, 🚀 startup, etc.)\n- **Scroll Indicator**: Optional animated scroll prompt\n\n## Usage\n\n### Centered Layout (Default)\n\n```yaml\n- block: dev-hero\n  id: hero\n  content:\n    username: me\n    greeting: \"Hi, I'm\"\n    show_status: true\n    show_scroll_indicator: true\n    cta_buttons:\n      - text: View My Work\n        url: \"#projects\"\n        icon: arrow-down\n      - text: Get In Touch\n        url: \"#contact\"\n        icon: envelope\n  design:\n    style: centered\n    avatar_shape: circle\n    background:\n      color:\n        dark: \"#0a0a0f\"\n```\n\n### Split Layout\n\n```yaml\n- block: dev-hero\n  id: hero\n  content:\n    username: me\n    greeting: \"Hello, I'm\"\n    cta_buttons:\n      - text: View Projects\n        url: \"#projects\"\n      - text: Download Resume\n        url: \"/resume.pdf\"\n        icon: document-arrow-down\n  design:\n    style: split\n    avatar_shape: rounded\n```\n\n## Parameters\n\n### Content\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `username` | string | `me` | Author folder to pull data from |\n| `title` | string | - | Override author title |\n| `tagline` | string | - | Override author role |\n| `bio` | string | - | Override author bio |\n| `greeting` | string | - | Text above the name |\n| `name_prefix` | string | - | Prefix before name (styled differently) |\n| `show_status` | boolean | `false` | Show emoji status badge (uses author's `status.icon`) |\n| `show_scroll_indicator` | boolean | `false` | Show scroll prompt |\n| `social` | array | - | Override author social links |\n| `cta_buttons` | array | - | Call-to-action buttons |\n\n### Design\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `style` | string | `centered` | Layout style (`centered` or `split`) |\n| `avatar_shape` | string | `circle` | Avatar shape (`circle` or `rounded`) |\n\n## Social Networks\n\nThe block automatically detects icons for these networks:\n- `github` → GitHub logo\n- `linkedin` → LinkedIn logo\n- `twitter` → X (Twitter) logo\n- `email` → Envelope icon\n\nOther networks will use a generic link icon unless you specify a custom `icon`.\n\n## CTA Buttons\n\nThe first button is styled as primary (filled), subsequent buttons are secondary (outlined).\n\n```yaml\ncta_buttons:\n  - text: Primary Button\n    url: \"#action\"\n    icon: arrow-right  # optional\n  - text: Secondary Button\n    url: \"#other\"\n```\n\n## Author Data\n\nThe block automatically pulls from `/data/authors/{username}.yaml`:\n- `name.display` → Name\n- `role` → Tagline/role\n- `bio` → Short biography\n- `links` → Social links\n- `avatar` → Profile image\n- `status.icon` → Emoji badge (shown when `show_status: true`)\n\n**Status Emoji Examples:**\n```yaml\n# In data/authors/me.yaml\nstatus:\n  icon: \"💻\"  # Developer\n  # Or: 🎨 Designer, 🚀 Entrepreneur, 🔬 Researcher, 🎓 Student\n```\n\n## Styling\n\nThe block includes:\n- Animated gradient orbs in the background\n- Subtle grid pattern overlay\n- Gradient text effect on the name\n- Glass morphism social buttons\n- Primary/secondary CTA button styles\n"
  },
  {
    "path": "modules/blox/blox/dev-hero/block.html",
    "content": "{{/* Hugo Blox: Dev Hero */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{/* Enable animations if typewriter or scroll animations are configured */}}\n{{ $typewriter := index $content \"typewriter\" }}\n{{ if not (reflect.IsMap $typewriter) }}{{ $typewriter = dict }}{{ end }}\n{{ $typewriter_enabled := partial \"functions/coerce_bool\" (dict \"value\" (index $typewriter \"enable\") \"default\" false) }}\n{{ $animations_enabled := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"animations\") \"default\" false) }}\n{{ $has_animations := or $typewriter_enabled $animations_enabled }}\n{{ if $has_animations }}\n  {{ $page.Store.Set \"has_animations\" true }}\n  {{ $page.Store.Set \"has_alpine\" true }}\n{{ end }}\n\n{{/* Get author data from YAML */}}\n{{ $username := \"me\" }}\n{{ $username_raw := index $content \"username\" }}\n{{ if eq (printf \"%T\" $username_raw) \"string\" }}\n  {{ $username = strings.TrimSpace $username_raw }}\n{{ end }}\n{{ $author := partial \"functions/get_author_profile\" $username }}\n\n{{/* Get avatar */}}\n{{ $avatar := \"\" }}\n{{ $avatar_shape := \"circle\" }}\n{{ $avatar_shape_raw := index $design \"avatar_shape\" }}\n{{ if eq (printf \"%T\" $avatar_shape_raw) \"string\" }}\n  {{ $avatar_shape = lower (strings.TrimSpace $avatar_shape_raw) }}\n{{ end }}\n{{ with $author.avatar }}\n  {{ $avatar = .Fill \"300x300 webp Center\" }}\n{{ end }}\n\n{{/* Layout style */}}\n{{ $style := \"centered\" }}\n{{ $style_raw := index $design \"style\" }}\n{{ if eq (printf \"%T\" $style_raw) \"string\" }}\n  {{ $style_candidate := lower (strings.TrimSpace $style_raw) }}\n  {{ if in (slice \"centered\" \"split\") $style_candidate }}\n    {{ $style = $style_candidate }}\n  {{ end }}\n{{ end }}\n\n{{ $show_status := partial \"functions/coerce_bool\" (dict \"value\" (index $content \"show_status\") \"default\" false) }}\n{{ $show_scroll := partial \"functions/coerce_bool\" (dict \"value\" (index $content \"show_scroll_indicator\") \"default\" false) }}\n\n{{ $scroll_target := \"#projects\" }}\n{{ $scroll_target_raw := index $content \"scroll_target\" }}\n{{ if eq (printf \"%T\" $scroll_target_raw) \"string\" }}\n  {{ $scroll_target = strings.TrimSpace $scroll_target_raw }}\n{{ end }}\n{{ if not $scroll_target }}{{ $scroll_target = \"#projects\" }}{{ end }}\n\n{{ $greeting := \"\" }}\n{{ $greeting_raw := index $content \"greeting\" }}\n{{ if eq (printf \"%T\" $greeting_raw) \"string\" }}{{ $greeting = $greeting_raw }}{{ end }}\n{{ $name_prefix := \"\" }}\n{{ $name_prefix_raw := index $content \"name_prefix\" }}\n{{ if eq (printf \"%T\" $name_prefix_raw) \"string\" }}{{ $name_prefix = $name_prefix_raw }}{{ end }}\n\n{{ $title_override := \"\" }}\n{{ $title_raw := index $content \"title\" }}\n{{ if eq (printf \"%T\" $title_raw) \"string\" }}{{ $title_override = strings.TrimSpace $title_raw }}{{ end }}\n\n{{ $tagline := \"\" }}\n{{ $tagline_raw := index $content \"tagline\" }}\n{{ if eq (printf \"%T\" $tagline_raw) \"string\" }}{{ $tagline = $tagline_raw }}{{ end }}\n\n{{ $bio_override := \"\" }}\n{{ $bio_raw := index $content \"bio\" }}\n{{ if eq (printf \"%T\" $bio_raw) \"string\" }}{{ $bio_override = $bio_raw }}{{ end }}\n\n{{ $role := $author.role | default $tagline }}\n{{ $bio := $author.bio | default $bio_override }}\n\n{{ $typewriter_strings := slice }}\n{{ $strings_raw := index $typewriter \"strings\" }}\n{{ if reflect.IsSlice $strings_raw }}\n  {{ range $strings_raw }}\n    {{ $val := strings.TrimSpace (printf \"%v\" .) }}\n    {{ if $val }}{{ $typewriter_strings = $typewriter_strings | append $val }}{{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $strings_raw) \"string\" }}\n  {{ $val := strings.TrimSpace $strings_raw }}\n  {{ if $val }}{{ $typewriter_strings = slice $val }}{{ end }}\n{{ end }}\n\n{{ $typewriter_prefix := \"\" }}\n{{ $typewriter_prefix_raw := index $typewriter \"prefix\" }}\n{{ if eq (printf \"%T\" $typewriter_prefix_raw) \"string\" }}{{ $typewriter_prefix = $typewriter_prefix_raw }}{{ end }}\n{{ $type_speed := partial \"functions/coerce_int\" (dict \"value\" (index $typewriter \"type_speed\") \"default\" 80 \"min\" 10 \"max\" 500) }}\n{{ $delete_speed := partial \"functions/coerce_int\" (dict \"value\" (index $typewriter \"delete_speed\") \"default\" 50 \"min\" 10 \"max\" 500) }}\n{{ $pause_time := partial \"functions/coerce_int\" (dict \"value\" (index $typewriter \"pause_time\") \"default\" 2000 \"min\" 200 \"max\" 10000) }}\n\n{{ $links_raw := $author.links | default (index $content \"links\") }}\n{{ $links := slice }}\n{{ if reflect.IsSlice $links_raw }}\n  {{ range $links_raw }}\n    {{ $url := \"\" }}\n    {{ $icon := \"hero/link\" }}\n    {{ $label := \"\" }}\n    {{ if reflect.IsMap . }}\n      {{ $url_raw := index . \"url\" | default (index . \"link\") }}\n      {{ if eq (printf \"%T\" $url_raw) \"string\" }}{{ $url = strings.TrimSpace $url_raw }}{{ end }}\n      {{ $icon_raw := index . \"icon\" }}\n      {{ if eq (printf \"%T\" $icon_raw) \"string\" }}{{ $icon = $icon_raw }}{{ end }}\n      {{ $label_raw := index . \"label\" | default (index . \"name\") }}\n      {{ if eq (printf \"%T\" $label_raw) \"string\" }}{{ $label = $label_raw }}{{ end }}\n    {{ else if eq (printf \"%T\" .) \"string\" }}\n      {{ $url = strings.TrimSpace . }}\n    {{ end }}\n    {{ if $url }}\n      {{ $links = $links | append (dict \"url\" $url \"icon\" $icon \"label\" $label) }}\n    {{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $links_raw) \"string\" }}\n  {{ $url := strings.TrimSpace $links_raw }}\n  {{ if $url }}\n    {{ $links = slice (dict \"url\" $url \"icon\" \"hero/link\" \"label\" \"\") }}\n  {{ end }}\n{{ end }}\n\n{{ $cta_buttons_raw := index $content \"cta_buttons\" }}\n{{ $cta_buttons := slice }}\n{{ if reflect.IsSlice $cta_buttons_raw }}\n  {{ $cta_buttons = $cta_buttons_raw }}\n{{ else if and $cta_buttons_raw (reflect.IsMap $cta_buttons_raw) }}\n  {{ $cta_buttons = slice $cta_buttons_raw }}\n{{ end }}\n\n{{ $status_icon := \"\" }}\n{{ $status := $author.status }}\n{{ if and $status (reflect.IsMap $status) }}\n  {{ $status_icon_raw := index $status \"icon\" }}\n  {{ if eq (printf \"%T\" $status_icon_raw) \"string\" }}\n    {{ $status_icon = $status_icon_raw }}\n  {{ end }}\n{{ end }}\n\n<div class=\"relative min-h-[80vh] flex items-center justify-center overflow-hidden\">\n  \n  {{/* Background Effects - only visible in dark mode */}}\n  <div class=\"absolute inset-0 pointer-events-none dark:block hidden\">\n    {{/* Gradient orbs */}}\n    <div class=\"absolute top-1/4 -left-20 w-96 h-96 bg-primary-500/20 rounded-full blur-3xl animate-pulse\"></div>\n    <div class=\"absolute bottom-1/4 -right-20 w-80 h-80 bg-secondary-500/20 rounded-full blur-3xl animate-pulse\" style=\"animation-delay: 1s;\"></div>\n    <div class=\"absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[40rem] h-[40rem] bg-primary-600/5 rounded-full blur-3xl\"></div>\n    \n    {{/* Grid pattern */}}\n    <div class=\"absolute inset-0 bg-[linear-gradient(rgba(255,255,255,0.02)_1px,transparent_1px),linear-gradient(90deg,rgba(255,255,255,0.02)_1px,transparent_1px)] bg-[size:64px_64px]\"></div>\n  </div>\n  \n  {{/* Light mode subtle background */}}\n  <div class=\"absolute inset-0 pointer-events-none dark:hidden\">\n    <div class=\"absolute top-1/4 -left-20 w-96 h-96 bg-primary-100 rounded-full blur-3xl\"></div>\n    <div class=\"absolute bottom-1/4 -right-20 w-80 h-80 bg-secondary-100 rounded-full blur-3xl\"></div>\n  </div>\n\n  <div class=\"relative z-10 mx-auto max-w-5xl px-4 sm:px-6 lg:px-8 py-20 {{ if eq $style \"centered\" }}text-center{{ end }}\">\n    \n    {{ if eq $style \"split\" }}\n    {{/* Split layout with avatar on side */}}\n    <div class=\"flex flex-col md:flex-row items-center gap-12\">\n      \n      {{/* Avatar */}}\n      {{ with $avatar }}\n      <div class=\"flex-shrink-0\">\n        <div class=\"relative\">\n          <div class=\"w-48 h-48 md:w-64 md:h-64 {{ if eq $avatar_shape \"circle\" }}rounded-full{{ else }}rounded-2xl{{ end }} overflow-hidden ring-4 ring-gray-200 dark:ring-white/10 shadow-2xl shadow-primary-500/20\">\n            <img src=\"{{ .RelPermalink }}\" alt=\"{{ $author.title }}\" class=\"w-full h-full object-cover\">\n          </div>\n          {{/* Status emoji badge */}}\n          {{ if $show_status }}\n            {{ with $status_icon }}\n            <span class=\"absolute bottom-2 right-2 w-12 h-12 flex items-center justify-center text-2xl bg-white dark:bg-gray-900 rounded-full border-2 border-gray-200 dark:border-white/10 shadow-lg\">\n              {{ . | emojify }}\n            </span>\n            {{ end }}\n          {{ end }}\n          {{/* Decorative ring */}}\n          <div class=\"absolute -inset-2 {{ if eq $avatar_shape \"circle\" }}rounded-full{{ else }}rounded-3xl{{ end }} border border-dashed border-gray-300 dark:border-white/10 animate-spin\" style=\"animation-duration: 30s;\"></div>\n        </div>\n      </div>\n      {{ end }}\n\n      {{/* Content */}}\n      <div class=\"text-center md:text-left\">\n        {{/* Greeting */}}\n        {{ with $greeting }}\n        <p class=\"text-primary-600 dark:text-primary-400 font-mono text-sm mb-4 flex items-center {{ if eq $style \"centered\" }}justify-center{{ end }} gap-2\">\n          <span class=\"inline-block w-8 h-px bg-primary-500\"></span>\n          {{ . }}\n        </p>\n        {{ end }}\n\n        {{/* Name */}}\n        <h1 class=\"text-4xl sm:text-5xl md:text-6xl font-bold mb-4\">\n          {{ with $name_prefix }}<span class=\"text-gray-500 dark:text-gray-400 font-normal\">{{ . }}</span> {{ end }}\n          <span class=\"bg-gradient-to-r from-gray-900 via-gray-800 to-gray-700 dark:from-white dark:via-gray-100 dark:to-gray-300 bg-clip-text text-transparent\">\n            {{ $author.title | default $title_override | default (i18n \"developer\" | default \"Developer\") }}\n          </span>\n        </h1>\n\n        {{/* Role/Tagline with optional typewriter */}}\n        {{ if and $typewriter_enabled (gt (len $typewriter_strings) 0) }}\n        <p class=\"text-xl sm:text-2xl text-gray-600 dark:text-gray-400 font-light mb-6 h-8\">\n          {{ with $typewriter_prefix }}<span>{{ . }}</span> {{ end }}\n          <span \n            x-data=\"typewriter({{ $typewriter_strings | jsonify }}, { typeSpeed: {{ $type_speed }}, deleteSpeed: {{ $delete_speed }}, pauseTime: {{ $pause_time }} })\"\n            x-text=\"currentText\"\n            class=\"text-primary-600 dark:text-primary-400\"\n          ></span><span class=\"typewriter-cursor\"></span>\n        </p>\n        {{ else if $role }}\n        <p class=\"text-xl sm:text-2xl text-gray-600 dark:text-gray-400 font-light mb-6\">\n          {{ $role | $page.RenderString }}\n        </p>\n        {{ end }}\n\n        {{/* Bio */}}\n        {{ with $bio }}\n        <p class=\"text-gray-600 dark:text-gray-400 max-w-xl {{ if eq $style \"centered\" }}mx-auto{{ end }} mb-8 leading-relaxed\">\n          {{ . | $page.RenderString }}\n        </p>\n        {{ end }}\n\n    {{/* Social Links */}}\n    {{ if gt (len $links) 0 }}\n    <div class=\"flex items-center gap-4 mb-8 {{ if eq $style \"centered\" }}justify-center{{ end }}\">\n      {{ range $links }}\n        {{ $icon := index . \"icon\" | default \"hero/link\" }}\n        {{ $url := index . \"url\" }}\n        {{ $link := $url }}\n        {{ $target := \"\" }}\n        {{ $scheme := (urls.Parse $link).Scheme }}\n        {{ if not $scheme }}\n          {{ if not (hasPrefix $link \"#\") }}\n            {{ $link = $link | relLangURL }}\n          {{ end }}\n        {{ else if in (slice \"http\" \"https\") $scheme }}\n          {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\" }}\n        {{ end }}\n        \n        <a \n          href=\"{{ $link | safeURL }}\" \n          {{ $target | safeHTMLAttr }}\n          class=\"w-10 h-10 flex items-center justify-center rounded-full bg-gray-100 dark:bg-white/5 border border-gray-200 dark:border-white/10 text-gray-600 dark:text-gray-400 hover:text-primary-600 dark:hover:text-white hover:bg-primary-50 dark:hover:bg-primary-500/20 hover:border-primary-300 dark:hover:border-primary-500/50 transition-all duration-300\"\n          {{ $label := index . \"label\" }}{{ if $label }}title=\"{{ $label }}\"{{ end }}\n        >\n          {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n        </a>\n      {{ end }}\n    </div>\n    {{ end }}\n\n        {{/* CTA Buttons */}}\n        {{ if gt (len $cta_buttons) 0 }}\n        <div class=\"flex flex-wrap gap-4 {{ if eq $style \"centered\" }}justify-center{{ end }}\">\n          {{ range $idx, $btn := $cta_buttons }}\n            {{ if reflect.IsMap $btn }}\n            {{ $is_primary := eq $idx 0 }}\n            {{ $btn_text := \"\" }}\n            {{ $btn_url := \"\" }}\n            {{ $btn_icon := \"\" }}\n            {{ $btn_new_tab := partial \"functions/coerce_bool\" (dict \"value\" (index $btn \"new_tab\") \"default\" false) }}\n            {{ with index $btn \"text\" }}{{ $btn_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index $btn \"url\" }}{{ $btn_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index $btn \"icon\" }}{{ $btn_icon = printf \"%v\" . }}{{ end }}\n            {{ if and $btn_text $btn_url }}\n              {{ $link := $btn_url }}\n              {{ $target := \"\" }}\n              {{ $scheme := (urls.Parse $link).Scheme }}\n              {{ if not $scheme }}\n                {{ if not (hasPrefix $link \"#\") }}\n                  {{ $link = $link | relLangURL }}\n                {{ end }}\n                {{ if eq (path.Ext $link) \".pdf\" }}{{ $btn_new_tab = true }}{{ end }}\n              {{ else if in (slice \"http\" \"https\") $scheme }}\n                {{ $btn_new_tab = true }}\n              {{ end }}\n              {{ if $btn_new_tab }}\n                {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n              {{ end }}\n            <a \n              href=\"{{ $link | safeURL }}\"\n              {{ $target | safeHTMLAttr }}\n              class=\"{{ if $is_primary }}bg-primary-600 hover:bg-primary-500 text-white shadow-lg shadow-primary-500/25{{ else }}bg-gray-100 dark:bg-white/5 hover:bg-gray-200 dark:hover:bg-white/10 text-gray-800 dark:text-white border border-gray-200 dark:border-white/20 hover:border-gray-300 dark:hover:border-white/30{{ end }} px-6 py-3 rounded-full font-semibold transition-all duration-300 inline-flex items-center gap-2\"\n            >\n              {{ if $btn_icon }}\n              {{ partial \"functions/get_icon\" (dict \"name\" $btn_icon \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n              {{ end }}\n              {{ $btn_text }}\n            </a>\n            {{ end }}\n            {{ end }}\n          {{ end }}\n        </div>\n        {{ end }}\n      </div>\n    </div>\n\n    {{ else }}\n    {{/* Centered layout */}}\n    \n    {{/* Avatar */}}\n    {{ with $avatar }}\n    <div class=\"mb-8\">\n      <div class=\"relative inline-block\">\n        <div class=\"w-32 h-32 md:w-40 md:h-40 {{ if eq $avatar_shape \"circle\" }}rounded-full{{ else }}rounded-2xl{{ end }} overflow-hidden ring-4 ring-gray-200 dark:ring-white/10 shadow-2xl shadow-primary-500/20 mx-auto\">\n          <img src=\"{{ .RelPermalink }}\" alt=\"{{ $author.title }}\" class=\"w-full h-full object-cover\">\n        </div>\n        {{/* Status emoji badge */}}\n        {{ if $show_status }}\n          {{ with $status_icon }}\n          <span class=\"absolute bottom-0 right-0 w-10 h-10 flex items-center justify-center text-xl bg-white dark:bg-gray-900 rounded-full border-2 border-gray-200 dark:border-white/10 shadow-lg\">\n            {{ . | emojify }}\n          </span>\n          {{ end }}\n        {{ end }}\n      </div>\n    </div>\n    {{ end }}\n\n    {{/* Greeting */}}\n    {{ with $greeting }}\n    <p class=\"text-primary-600 dark:text-primary-400 font-mono text-sm mb-4 inline-flex items-center gap-2\">\n      <span class=\"inline-block w-8 h-px bg-primary-500\"></span>\n      {{ . }}\n      <span class=\"inline-block w-8 h-px bg-primary-500\"></span>\n    </p>\n    {{ end }}\n\n    {{/* Name */}}\n    <h1 class=\"text-4xl sm:text-5xl md:text-6xl lg:text-7xl font-bold mb-6\">\n      {{ with $name_prefix }}<span class=\"text-gray-500 font-normal\">{{ . }}</span> {{ end }}\n      <span class=\"bg-gradient-to-r from-gray-900 via-gray-800 to-gray-700 dark:from-white dark:via-gray-100 dark:to-gray-300 bg-clip-text text-transparent\">\n        {{ $author.title | default $title_override | default (i18n \"developer\" | default \"Developer\") }}\n      </span>\n    </h1>\n\n    {{/* Role/Tagline with optional typewriter */}}\n    {{ if and $typewriter_enabled (gt (len $typewriter_strings) 0) }}\n    <p class=\"text-xl sm:text-2xl md:text-3xl text-gray-600 dark:text-gray-400 font-light mb-6 min-h-[2em]\">\n      {{ with $typewriter_prefix }}<span>{{ . }}</span> {{ end }}\n      <span \n        x-data=\"typewriter({{ $typewriter_strings | jsonify }}, { typeSpeed: {{ $type_speed }}, deleteSpeed: {{ $delete_speed }}, pauseTime: {{ $pause_time }} })\"\n        x-text=\"currentText\"\n        class=\"text-primary-600 dark:text-primary-400\"\n      ></span><span class=\"typewriter-cursor\"></span>\n    </p>\n    {{ else if $role }}\n    <p class=\"text-xl sm:text-2xl md:text-3xl text-gray-600 dark:text-gray-400 font-light mb-6\">\n      {{ $role | $page.RenderString }}\n    </p>\n    {{ end }}\n\n    {{/* Bio */}}\n    {{ with $bio }}\n    <p class=\"text-gray-600 dark:text-gray-400 max-w-2xl mx-auto mb-8 text-lg leading-relaxed\">\n      {{ . | $page.RenderString }}\n    </p>\n    {{ end }}\n\n    {{/* Social Links */}}\n    {{ if gt (len $links) 0 }}\n    <div class=\"flex items-center justify-center gap-4 mb-10\">\n      {{ range $links }}\n        {{ $icon := index . \"icon\" | default \"hero/link\" }}\n        {{ $url := index . \"url\" }}\n        {{ $link := $url }}\n        {{ $target := \"\" }}\n        {{ $scheme := (urls.Parse $link).Scheme }}\n        {{ if not $scheme }}\n          {{ if not (hasPrefix $link \"#\") }}\n            {{ $link = $link | relLangURL }}\n          {{ end }}\n        {{ else if in (slice \"http\" \"https\") $scheme }}\n          {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\" }}\n        {{ end }}\n        \n        <a \n          href=\"{{ $link | safeURL }}\" \n          {{ $target | safeHTMLAttr }}\n          class=\"w-12 h-12 flex items-center justify-center rounded-full bg-gray-100 dark:bg-white/5 border border-gray-200 dark:border-white/10 text-gray-600 dark:text-gray-400 hover:text-primary-600 dark:hover:text-white hover:bg-primary-50 dark:hover:bg-primary-500/20 hover:border-primary-300 dark:hover:border-primary-500/50 transition-all duration-300\"\n          {{ $label := index . \"label\" }}{{ if $label }}title=\"{{ $label }}\"{{ end }}\n        >\n          {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n        </a>\n      {{ end }}\n    </div>\n    {{ end }}\n\n    {{/* CTA Buttons */}}\n    {{ if gt (len $cta_buttons) 0 }}\n    <div class=\"flex flex-wrap justify-center gap-4\">\n      {{ range $idx, $btn := $cta_buttons }}\n        {{ if reflect.IsMap $btn }}\n        {{ $is_primary := eq $idx 0 }}\n        {{ $btn_text := \"\" }}\n        {{ $btn_url := \"\" }}\n        {{ $btn_icon := \"\" }}\n        {{ $btn_new_tab := partial \"functions/coerce_bool\" (dict \"value\" (index $btn \"new_tab\") \"default\" false) }}\n        {{ with index $btn \"text\" }}{{ $btn_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $btn \"url\" }}{{ $btn_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $btn \"icon\" }}{{ $btn_icon = printf \"%v\" . }}{{ end }}\n        {{ if and $btn_text $btn_url }}\n          {{ $link := $btn_url }}\n          {{ $target := \"\" }}\n          {{ $scheme := (urls.Parse $link).Scheme }}\n          {{ if not $scheme }}\n            {{ if not (hasPrefix $link \"#\") }}\n              {{ $link = $link | relLangURL }}\n            {{ end }}\n            {{ if eq (path.Ext $link) \".pdf\" }}{{ $btn_new_tab = true }}{{ end }}\n          {{ else if in (slice \"http\" \"https\") $scheme }}\n            {{ $btn_new_tab = true }}\n          {{ end }}\n          {{ if $btn_new_tab }}\n            {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n          {{ end }}\n          <a \n            href=\"{{ $link | safeURL }}\"\n            {{ $target | safeHTMLAttr }}\n            class=\"{{ if $is_primary }}bg-primary-600 hover:bg-primary-500 text-white shadow-lg shadow-primary-500/25 hover:shadow-xl hover:shadow-primary-500/30{{ else }}bg-gray-100 dark:bg-white/5 hover:bg-gray-200 dark:hover:bg-white/10 text-gray-800 dark:text-white border border-gray-200 dark:border-white/20 hover:border-gray-300 dark:hover:border-white/30{{ end }} px-8 py-4 rounded-full font-semibold transition-all duration-300 inline-flex items-center gap-2 text-lg\"\n          >\n            {{ if $btn_icon }}\n            {{ partial \"functions/get_icon\" (dict \"name\" $btn_icon \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n            {{ end }}\n            {{ $btn_text }}\n          </a>\n        {{ end }}\n        {{ end }}\n      {{ end }}\n    </div>\n    {{ end }}\n\n    {{ end }}\n\n    {{/* Scroll indicator - clicks to scroll to next section */}}\n    {{ if $show_scroll }}\n    {{ $scroll_link := $scroll_target }}\n    {{ $scroll_target_attr := \"\" }}\n    {{ $scroll_scheme := (urls.Parse $scroll_link).Scheme }}\n    {{ if not $scroll_scheme }}\n      {{ if not (hasPrefix $scroll_link \"#\") }}\n        {{ $scroll_link = $scroll_link | relLangURL }}\n      {{ end }}\n    {{ else if in (slice \"http\" \"https\") $scroll_scheme }}\n      {{ $scroll_target_attr = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n    {{ end }}\n    <a \n      href=\"{{ $scroll_link | safeURL }}\" \n      {{ $scroll_target_attr | safeHTMLAttr }}\n      class=\"absolute bottom-8 left-1/2 -translate-x-1/2 animate-bounce cursor-pointer group\"\n      aria-label=\"{{ i18n \"scroll_to_content\" | default \"Scroll to content\" }}\"\n    >\n      <div class=\"w-6 h-10 rounded-full border-2 border-gray-300 dark:border-white/20 group-hover:border-primary-400/50 flex items-start justify-center p-2 transition-colors\">\n        <div class=\"w-1 h-2 bg-gray-400 dark:bg-white/40 group-hover:bg-primary-400 rounded-full animate-pulse transition-colors\"></div>\n      </div>\n    </a>\n    {{ end }}\n  </div>\n</div>\n"
  },
  {
    "path": "modules/blox/blox/dev-hero/manifest.json",
    "content": "{\n  \"id\": \"dev-hero\",\n  \"name\": \"Dev Hero\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"hero\",\n  \"tags\": [\"hero\", \"developer\", \"portfolio\", \"introduction\", \"landing\"],\n  \"description\": \"A developer-focused hero section with gradient effects, social links, and CTA buttons - optimized for dark mode\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"hero\", \"developer\", \"portfolio\", \"landing-page\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/faq/README.md",
    "content": "# FAQ Block\n\nDisplay frequently asked questions in an interactive accordion format with automatic FAQPage structured data for SEO.\n\n## Features\n\n- ✅ Interactive accordion with Alpine.js\n- ✅ FAQPage Schema.org structured data for Google rich results\n- ✅ Responsive design with Tailwind CSS\n- ✅ Dark mode support\n- ✅ Markdown support in answers\n\n## Usage\n\nAdd to your page's front matter:\n\n```yaml\nsections:\n  - block: faq\n    content:\n      title: Frequently Asked Questions\n      subtitle: Find answers to common questions\n      text: Can't find what you're looking for? [Contact us](/contact)\n      items:\n        - question: What is HugoBlox Kit?\n          answer: HugoBlox Kit is a no-code website builder framework powered by Hugo and Tailwind CSS.\n        \n        - question: Is it free to use?\n          answer: Yes! HugoBlox Kit is open source and free to use under the MIT license.\n        \n        - question: How do I get started?\n          answer: |\n            Getting started is easy:\n            1. Choose a template\n            2. Click \"Use Template\"\n            3. Customize your content\n            4. Deploy to GitHub Pages or Netlify\n      \n      button:\n        text: View All FAQs\n        url: /faq/\n        icon: arrow-right\n    design:\n      spacing:\n        padding: [\"6rem\", \"0\", \"6rem\", \"0\"]\n```\n\n## Structured Data\n\nThis block automatically generates FAQPage structured data for better SEO and eligibility for Google's FAQ rich results.\n\n## Customization\n\n- **Accordion behavior**: One item open at a time (default)\n- **Colors**: Automatically adapts to your theme\n- **Spacing**: Customizable via `design.spacing`\n- **Background**: Customizable via `design.background.color`\n"
  },
  {
    "path": "modules/blox/blox/faq/block.html",
    "content": "{{- $wcPage := .wcPage -}}\n{{- $wcBlock := .wcBlock -}}\n{{- $wcIdentifier := .wcIdentifier -}}\n{{- $content := $wcBlock.content -}}\n{{- if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end -}}\n{{- $design := $wcBlock.design -}}\n{{- if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end -}}\n\n{{/* Enable Alpine.js for interactive accordion */}}\n{{ $wcPage.Page.Store.Set \"has_alpine\" true }}\n\n{{- $st := index $design \"spacing\" -}}\n{{- if not (reflect.IsMap $st) }}{{ $st = dict }}{{ end -}}\n{{- $pad := slice \"20px\" \"0\" \"20px\" \"0\" -}}\n{{- $pad_raw := index $st \"padding\" -}}\n{{- if and (reflect.IsSlice $pad_raw) (ge (len $pad_raw) 4) }}{{ $pad = $pad_raw }}{{ end -}}\n{{- $pad_sm := slice \"3rem\" \"0\" -}}\n{{- $pad_sm_raw := index $st \"padding_sm\" -}}\n{{- if and (reflect.IsSlice $pad_sm_raw) (ge (len $pad_sm_raw) 2) }}{{ $pad_sm = $pad_sm_raw }}{{ end -}}\n{{- $mar := slice \"0\" \"0\" \"0\" \"0\" -}}\n{{- $mar_raw := index $st \"margin\" -}}\n{{- if and (reflect.IsSlice $mar_raw) (ge (len $mar_raw) 4) }}{{ $mar = $mar_raw }}{{ end -}}\n\n{{- $bg := index $design \"background\" -}}\n{{- if not (reflect.IsMap $bg) }}{{ $bg = dict }}{{ end -}}\n{{- $bg_color_val := \"\" -}}\n{{- $bg_color_raw := index $bg \"color\" -}}\n{{- if eq (printf \"%T\" $bg_color_raw) \"string\" }}{{ $bg_color_val = $bg_color_raw }}{{ end -}}\n\n{{- $title := \"\" -}}\n{{- $title_raw := index $content \"title\" -}}\n{{- if eq (printf \"%T\" $title_raw) \"string\" }}{{ $title = $title_raw }}{{ end -}}\n{{- $subtitle := \"\" -}}\n{{- $subtitle_raw := index $content \"subtitle\" -}}\n{{- if eq (printf \"%T\" $subtitle_raw) \"string\" }}{{ $subtitle = $subtitle_raw }}{{ end -}}\n{{- $text := \"\" -}}\n{{- $text_raw := index $content \"text\" -}}\n{{- if eq (printf \"%T\" $text_raw) \"string\" }}{{ $text = $text_raw }}{{ end -}}\n\n{{- $items_raw := index $content \"items\" -}}\n{{- $items := slice -}}\n{{- if reflect.IsSlice $items_raw }}{{ $items = $items_raw }}{{ end -}}\n\n{{- $button := index $content \"button\" -}}\n{{- if not (reflect.IsMap $button) }}{{ $button = dict }}{{ end -}}\n{{- $button_text := \"\" -}}\n{{- with index $button \"text\" }}{{ $button_text = strings.TrimSpace (printf \"%v\" .) }}{{ end -}}\n{{- $button_url := \"\" -}}\n{{- with index $button \"url\" }}{{ $button_url = strings.TrimSpace (printf \"%v\" .) }}{{ end -}}\n{{- $button_icon := \"\" -}}\n{{- with index $button \"icon\" }}{{ $button_icon = printf \"%v\" . }}{{ end -}}\n\n<section id=\"{{ $wcIdentifier }}\" class=\"hb-section {{ $bg_color_val }}\" style=\"padding: {{ delimit $pad \" \" }}; padding-top: clamp({{ index $pad_sm 0 }}, {{ index $pad 0 }}, {{ index $pad 0 }}); padding-bottom: clamp({{ index $pad_sm 1 }}, {{ index $pad 2 }}, {{ index $pad 2 }}); margin: {{ delimit $mar \" \" }};\">\n  <div class=\"mx-auto max-w-screen-xl px-6 lg:px-8\">\n\n    {{- with $title -}}\n    <div class=\"mb-8 text-center\">\n      <h2 class=\"text-3xl font-bold tracking-tight text-gray-900 dark:text-white sm:text-4xl\">\n        {{ . | markdownify | emojify }}\n      </h2>\n      {{- with $subtitle -}}\n      <p class=\"mt-4 text-lg text-gray-600 dark:text-gray-300\">\n        {{ . | markdownify | emojify }}\n      </p>\n      {{- end -}}\n    </div>\n    {{- end -}}\n\n    {{- with $text -}}\n    <div class=\"prose prose-slate dark:prose-invert max-w-3xl mx-auto mb-8\">\n      {{ . | markdownify | emojify }}\n    </div>\n    {{- end -}}\n\n    {{- if gt (len $items) 0 -}}\n    <div class=\"max-w-3xl mx-auto\" x-data=\"{ openItem: null }\">\n      <div class=\"space-y-4\">\n        {{- range $index, $item := $items -}}\n        {{- if reflect.IsMap $item -}}\n        {{- $question := \"\" -}}\n        {{- $question_raw := index $item \"question\" | default (index $item \"title\") -}}\n        {{- if ne $question_raw nil }}{{ $question = printf \"%v\" $question_raw }}{{ end -}}\n        {{- $answer := \"\" -}}\n        {{- $answer_raw := index $item \"answer\" | default (index $item \"text\") -}}\n        {{- if ne $answer_raw nil }}{{ $answer = printf \"%v\" $answer_raw }}{{ end -}}\n        {{- if or $question $answer -}}\n        <div class=\"faq-item border border-gray-200 dark:border-gray-700 rounded-lg overflow-hidden bg-white dark:bg-gray-800 shadow-sm\">\n          <button\n            type=\"button\"\n            class=\"w-full px-6 py-4 text-left flex items-center justify-between hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors cursor-pointer\"\n            @click=\"openItem = openItem === {{ $index }} ? null : {{ $index }}\"\n            :aria-expanded=\"openItem === {{ $index }}\"\n          >\n            <span class=\"font-semibold text-gray-900 dark:text-gray-100 pr-8\">\n              {{ $question | markdownify | emojify }}\n            </span>\n            <svg\n              class=\"w-5 h-5 text-gray-500 transition-transform flex-shrink-0\"\n              :class=\"{ 'rotate-180': openItem === {{ $index }} }\"\n              fill=\"none\"\n              stroke=\"currentColor\"\n              viewBox=\"0 0 24 24\"\n            >\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M19 9l-7 7-7-7\"></path>\n            </svg>\n          </button>\n          <div\n            x-show=\"openItem === {{ $index }}\"\n            x-transition:enter=\"transition ease-out duration-200\"\n            x-transition:enter-start=\"opacity-0 transform -translate-y-2\"\n            x-transition:enter-end=\"opacity-100 transform translate-y-0\"\n            x-transition:leave=\"transition ease-in duration-150\"\n            x-transition:leave-start=\"opacity-100 transform translate-y-0\"\n            x-transition:leave-end=\"opacity-0 transform -translate-y-2\"\n            class=\"px-6 py-4 bg-gray-50 dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700\"\n          >\n            <div class=\"prose prose-slate dark:prose-invert max-w-none\">\n              {{ $answer | markdownify | emojify }}\n            </div>\n          </div>\n        </div>\n        {{- end -}}\n        {{- end -}}\n        {{- end -}}\n      </div>\n    </div>\n    {{- end -}}\n\n    {{- if and $button_text $button_url -}}\n    {{- $link := $button_url -}}\n    {{- $target := \"\" -}}\n    {{- $scheme := (urls.Parse $link).Scheme -}}\n    {{- if not $scheme -}}\n      {{- if not (hasPrefix $link \"#\") -}}\n        {{- $link = $link | relLangURL -}}\n      {{- end -}}\n      {{- if eq (path.Ext $link) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end -}}\n    {{- else if in (slice \"http\" \"https\") $scheme -}}\n      {{- $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" -}}\n    {{- end -}}\n    <div class=\"mt-10 text-center\">\n      <a href=\"{{ $link | safeURL }}\" {{ $target | safeHTMLAttr }} class=\"inline-flex items-center gap-2 rounded-lg bg-primary-600 px-6 py-3 text-base font-semibold text-white shadow-sm hover:bg-primary-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-600\">\n        {{ $button_text }}\n        {{- if $button_icon -}}\n        <span class=\"ml-2\">{{ partial \"functions/get_icon\" (dict \"name\" $button_icon \"attributes\" \"class=\\\"inline-block h-5 w-5\\\"\") }}</span>\n        {{- end -}}\n      </a>\n    </div>\n    {{- end -}}\n\n  </div>\n</section>\n"
  },
  {
    "path": "modules/blox/blox/faq/manifest.json",
    "content": "{\n  \"name\": \"faq\",\n  \"version\": \"1\",\n  \"title\": \"FAQ\",\n  \"description\": \"Display frequently asked questions in an accordion format with SEO-optimized structured data\",\n  \"categories\": [\"content\", \"interactive\"],\n  \"preview\": \"preview.svg\"\n}\n"
  },
  {
    "path": "modules/blox/blox/features/README.md",
    "content": "# Features Block\n\n**Showcase what makes you special with stunning feature grids**\n\nPresent your key features, services, or benefits in a clean, organized grid that helps visitors quickly understand your value proposition. The Features block combines beautiful icons with compelling descriptions to create trust and drive engagement.\n\n## ✨ Key Features\n\n- **Responsive Grid**: Automatically adapts from 1 column (mobile) to 3 columns (desktop)\n- **Icon Integration**: Beautiful icons that reinforce each feature's purpose\n- **Flexible Layout**: 2-3 column layouts that work perfectly with any number of features\n- **Brand Consistency**: Cohesive color scheme with your primary brand colors\n- **Markdown Support**: Rich text formatting for feature names and descriptions\n- **Center-Aligned**: Professional center-aligned layout for maximum impact\n\n## 🎯 Perfect For\n\n- **SaaS Features**: Highlight the key capabilities of your software platform\n- **Service Offerings**: Present your professional services in an organized manner\n- **Product Benefits**: Showcase why customers should choose your product\n- **Company Values**: Display your core principles and what sets you apart\n- **Process Steps**: Break down your workflow or methodology\n- **Technology Stack**: Present your technical capabilities and tools\n\n## 🚀 Why Choose Features Block?\n\n**Visual Clarity**: Icons and organized layout help visitors quickly scan and understand your offerings\n\n**Professional Credibility**: Clean, modern design builds trust and demonstrates attention to detail\n\n**Conversion Ready**: Well-organized features help visitors make informed decisions faster\n\n**Brand Reinforcement**: Consistent use of your brand colors creates cohesive visual identity\n\n## 📊 Business Impact\n\n- **Faster Decision Making**: Clear feature presentation reduces visitor confusion\n- **Higher Engagement**: Visual icons and organized content keep visitors interested\n- **Better Communication**: Structured format ensures key benefits are clearly communicated\n- **Mobile Excellence**: Responsive design captures mobile traffic effectively\n\n## 💡 Best Practices\n\n- Limit features to 3-6 items for optimal impact and readability\n- Use consistent icon styles that align with your brand aesthetic\n- Keep feature descriptions concise but compelling (1-2 sentences)\n- Order features by importance or user journey priority\n- Choose icons that instantly communicate each feature's value\n\nIdeal for startups, SaaS companies, service providers, and any business that needs to clearly communicate their value proposition to potential customers.\n\n"
  },
  {
    "path": "modules/blox/blox/features/client.jsx",
    "content": "/**\n * Features Block - Client-side Hydration\n */\n\nimport {render} from \"preact\";\nimport {FeaturesBlock} from \"./component.jsx\";\n\nfunction renderFeaturesBlocks() {\n  const blocks = document.querySelectorAll('[data-block-type=\"features\"]');\n\n  blocks.forEach((block) => {\n    const propsData = block.dataset.props;\n    if (propsData) {\n      try {\n        const props = JSON.parse(propsData);\n        render(<FeaturesBlock {...props} />, block);\n        console.debug(`✓ Features block \"${block.id}\" rendered with Preact`);\n      } catch (error) {\n        console.error(`Failed to render Features block \"${block.id}\":`, error);\n      }\n    }\n  });\n}\n\nrenderFeaturesBlocks();\n"
  },
  {
    "path": "modules/blox/blox/features/component.jsx",
    "content": "/**\n * Features Block Component - Single source of truth\n * Responsive grid of feature items with icon, name, and description\n */\n\nimport {Icon} from \"../../shared/components/Icon.jsx\";\n\n// Simple markdown renderer\nfunction renderText(text) {\n  if (!text) return \"\";\n  return String(text)\n    .replace(/\\*\\*(.*?)\\*\\*/g, \"<strong>$1</strong>\")\n    .replace(/\\*(.*?)\\*/g, \"<em>$1</em>\")\n    .replace(/`(.*?)`/g, \"<code>$1</code>\");\n}\n\nfunction FeatureItem({item, iconSvg}) {\n  return (\n    <div>\n      {iconSvg && (\n        <div class=\"flex justify-center items-center mb-4 w-12 h-12 rounded-full bg-primary-100 lg:h-14 lg:w-14 dark:bg-primary-900 text-primary-600 dark:text-primary-300\">\n          <Icon svg={iconSvg} attributes={{class: \"flex items-center justify-center w-6 h-6 lg:w-8 lg:h-8\"}} />\n        </div>\n      )}\n      {item.name && <h3 class=\"mb-2 text-xl font-bold dark:text-white\" dangerouslySetInnerHTML={{__html: renderText(item.name)}} />}\n      {item.description && <p class=\"text-gray-500 dark:text-gray-400\" dangerouslySetInnerHTML={{__html: renderText(item.description)}} />}\n    </div>\n  );\n}\n\nexport const FeaturesBlock = ({content, _design, _id, icon_svgs}) => {\n  const title = content?.title;\n  const text = content?.text;\n  const items = Array.isArray(content?.items) ? content.items : [];\n  const iconMap = icon_svgs || {};\n\n  return (\n    <section>\n      <div class=\"py-8 px-4 mx-auto max-w-screen-xl sm:py-16 lg:px-6\">\n        {/* Section Header */}\n        {(title || text) && (\n          <div class=\"max-w-screen-md mb-8 lg:mb-16 flex flex-col justify-center mx-auto\">\n            {title && (\n              <h2\n                class=\"mb-4 text-4xl tracking-tight font-extrabold text-gray-900 dark:text-white text-center\"\n                dangerouslySetInnerHTML={{__html: renderText(title)}}\n              />\n            )}\n            {text && <p class=\"text-gray-500 sm:text-xl dark:text-gray-400 text-center\" dangerouslySetInnerHTML={{__html: renderText(text)}} />}\n          </div>\n        )}\n\n        {/* Feature Grid */}\n        <div class=\"space-y-8 md:grid md:grid-cols-2 lg:grid-cols-3 md:gap-12 md:space-y-0\">\n          {items.map((item, idx) => (\n            <FeatureItem key={idx} item={item} iconSvg={item.icon ? iconMap[item.icon] : null} />\n          ))}\n        </div>\n      </div>\n    </section>\n  );\n};\n"
  },
  {
    "path": "modules/blox/blox/features/manifest.json",
    "content": "{\n  \"id\": \"features\",\n  \"name\": \"Features\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"features\", \"grid\", \"icons\", \"benefits\", \"product\", \"services\", \"highlights\"],\n  \"description\": \"Showcase features, benefits, or services in an organized grid with icons and descriptions\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"features\", \"grid\", \"services\", \"benefits\", \"product\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/hero/README.md",
    "content": "# Hero Block\n\n**Make an unforgettable first impression**\n\nCapture attention and drive action from the moment visitors land on your site with the Hero block - a conversion-optimized centerpiece designed to communicate your value proposition and guide users toward meaningful engagement.\n\n## ✨ Key Features\n\n- **Dual CTA Strategy**: Primary and secondary action buttons to capture different user intents\n- **Announcement Banner**: Highlight special offers, news, or important updates\n- **Typography Hierarchy**: Large, attention-grabbing headlines with supporting descriptive text\n- **Icon Support**: Add visual elements to your primary action button\n- **Smart Link Handling**: Automatic external link detection with proper security attributes\n- **Responsive Typography**: Headlines scale from 4xl to 6xl based on screen size\n- **Center-Aligned**: Professional center-aligned layout for maximum impact\n\n## 🎯 Perfect For\n\n- **Landing Pages**: Convert visitors into leads with compelling headlines and clear CTAs\n- **Product Launches**: Announce new products with maximum visual impact\n- **Service Introduction**: Present your core offering with confidence\n- **Event Promotion**: Drive registrations and attendance with compelling copy\n- **Brand Positioning**: Establish your unique value proposition front and center\n- **Lead Generation**: Capture emails, demos, or consultation requests\n\n## 🚀 Why Choose Hero Block?\n\n**Conversion Psychology**: Designed using proven principles that drive user action\n\n**Flexible CTA Options**: Primary button for main action, secondary link for alternative paths\n\n**Announcement Integration**: Built-in banner for promotions without cluttering the main message\n\n**Professional Polish**: Clean, modern design that builds trust and credibility instantly\n\n## 📊 Conversion Elements\n\n- **Headline Optimization**: Large, scannable headlines that communicate value instantly\n- **Announcement Strategy**: Special offers and news that create urgency and relevance\n- **Dual Path Design**: Primary and secondary CTAs capture users at different decision stages\n- **Visual Hierarchy**: Clear information flow that guides users toward action\n\n## 💡 Marketing Best Practices\n\n- Lead with benefits, not features in your headline\n- Use announcement banner for limited-time offers or important news\n- Make primary CTA action-oriented (\"Get Started\", \"Try Free\", \"Book Demo\")\n- Use secondary CTA for lower-commitment actions (\"Learn More\", \"View Demo\")\n- Test different headline variations to optimize for your audience\n\nThe Hero block is your digital storefront - make it count with compelling copy, strategic CTAs, and professional design that converts visitors into customers.\n\n"
  },
  {
    "path": "modules/blox/blox/hero/client.jsx",
    "content": "/**\n * Hero Block - Client-side Hydration\n * Uses the shared component for consistency\n */\n\nimport {render} from \"preact\";\nimport {HeroBlock} from \"./component.jsx\";\n\n// Render function - immediately renders Hero components\nfunction renderHeroBlocks() {\n  // Find all hero block containers (using both old and new selectors for compatibility)\n  const heroBlocks = document.querySelectorAll('[data-block-type=\"hero\"], [data-hero-render=\"immediate\"]');\n\n  heroBlocks.forEach((block) => {\n    const propsData = block.dataset.props;\n    if (propsData) {\n      try {\n        const props = JSON.parse(propsData);\n\n        // Render the Preact component into the container\n        render(<HeroBlock {...props} />, block);\n        console.debug(`✓ Hero block \"${block.id}\" rendered with Preact`);\n      } catch (error) {\n        console.error(`Failed to render Hero block \"${block.id}\":`, error);\n      }\n    }\n  });\n\n  if (heroBlocks.length > 0) {\n    console.debug(`✓ ${heroBlocks.length} Hero blocks initialized with Preact`);\n  }\n}\n\n// Initialize immediately when script loads\n// The script is already deferred, so DOM is ready\nrenderHeroBlocks();\n"
  },
  {
    "path": "modules/blox/blox/hero/component.jsx",
    "content": "/**\n * Hero Block Component - Single source of truth\n * Used for both SSR and client-side hydration\n */\n\nimport {Icon} from \"../../shared/components/Icon.jsx\";\n\n// Simple markdown renderer\nexport function renderText(text) {\n  if (!text) return \"\";\n  return text\n    .replace(/\\*\\*(.*?)\\*\\*/g, \"<strong>$1</strong>\")\n    .replace(/\\*(.*?)\\*/g, \"<em>$1</em>\")\n    .replace(/`(.*?)`/g, \"<code>$1</code>\");\n}\n\n// Process URLs\nexport function processUrl(url) {\n  if (!url) return {href: \"#\"};\n\n  if (url.startsWith(\"http://\") || url.startsWith(\"https://\")) {\n    return {\n      href: url,\n      target: \"_blank\",\n      rel: \"noopener\",\n    };\n  }\n\n  if (url.startsWith(\"#\")) {\n    return {href: url};\n  }\n\n  return {href: url};\n}\n\n// Hero Block Component - Single implementation\nexport const HeroBlock = ({content, design, _id, icon_svg}) => {\n  const paddingClasses = design?.no_padding ? \"\" : \"py-32 sm:py-48 lg:py-56\";\n\n  return (\n    <div class=\"relative isolate px-6 pt-14 lg:px-8\">\n      <div class={`mx-auto max-w-2xl ${paddingClasses}`}>\n        {/* Announcement Banner */}\n        {content.announcement?.text && (\n          <div class=\"hidden sm:mb-8 sm:flex sm:justify-center\">\n            <div class=\"relative rounded-full px-3 py-1 text-sm leading-6 text-gray-600 dark:text-gray-300 ring-1 ring-gray-900/10 dark:ring-gray-300 hover:ring-gray-900/20 dark:hover:ring-gray-400\">\n              {/* eslint-disable-next-line lint/security/noDangerouslySetInnerHtml */}\n              <span\n                dangerouslySetInnerHTML={{\n                  __html: renderText(content.announcement.text),\n                }}\n              />\n              {content.announcement.link?.text && (\n                <a\n                  href={processUrl(content.announcement.link.url).href}\n                  {...(processUrl(content.announcement.link.url).target && {\n                    target: processUrl(content.announcement.link.url).target,\n                    rel: processUrl(content.announcement.link.url).rel,\n                  })}\n                  class=\"pl-2 font-semibold text-primary-600 dark:text-primary-300\"\n                >\n                  <span class=\"absolute inset-0\" aria-hidden=\"true\"></span>\n                  {content.announcement.link.text} <span aria-hidden=\"true\">→</span>\n                </a>\n              )}\n            </div>\n          </div>\n        )}\n\n        {/* Main Content */}\n        <div class=\"text-center\">\n          {/* Title */}\n          {content.title && (\n            <h1\n              class=\"text-4xl font-bold tracking-tight text-gray-900 dark:text-gray-100 sm:text-6xl\"\n              dangerouslySetInnerHTML={{__html: renderText(content.title)}}\n            />\n          )}\n\n          {/* Subtitle/Text */}\n          {content.text && (\n            <p\n              class=\"mt-6 text-lg leading-8 text-gray-600 dark:text-gray-300 max-w-2xl mx-auto\"\n              dangerouslySetInnerHTML={{__html: renderText(content.text)}}\n            />\n          )}\n\n          {/* Action Buttons */}\n          {(content.primary_action?.url || content.secondary_action?.url) && (\n            <div class=\"mt-10 flex items-center justify-center gap-x-6\">\n              {/* Primary CTA */}\n              {content.primary_action?.url && (\n                <a\n                  href={processUrl(content.primary_action.url).href}\n                  {...(processUrl(content.primary_action.url).target && {\n                    target: processUrl(content.primary_action.url).target,\n                    rel: processUrl(content.primary_action.url).rel,\n                  })}\n                  class=\"rounded-md bg-primary-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-primary-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-600\"\n                >\n                  <span\n                    dangerouslySetInnerHTML={{\n                      __html: renderText(content.primary_action.text),\n                    }}\n                  />\n                  {content.primary_action.icon && (\n                    <span class=\"inline-block pl-2\">\n                      <Icon svg={icon_svg} />\n                    </span>\n                  )}\n                </a>\n              )}\n\n              {/* Secondary CTA */}\n              {content.secondary_action?.url && (\n                <a\n                  href={processUrl(content.secondary_action.url).href}\n                  {...(processUrl(content.secondary_action.url).target && {\n                    target: processUrl(content.secondary_action.url).target,\n                    rel: processUrl(content.secondary_action.url).rel,\n                  })}\n                  class=\"text-sm font-semibold leading-6 text-gray-900 dark:text-gray-100 hover:dark:text-gray-200 hover:text-gray-800\"\n                >\n                  <span\n                    dangerouslySetInnerHTML={{\n                      __html: renderText(content.secondary_action.text),\n                    }}\n                  />\n                  <span aria-hidden=\"true\"> →</span>\n                </a>\n              )}\n            </div>\n          )}\n        </div>\n      </div>\n    </div>\n  );\n};\n"
  },
  {
    "path": "modules/blox/blox/hero/manifest.json",
    "content": "{\n  \"id\": \"hero\",\n  \"name\": \"Hero\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"marketing\",\n  \"tags\": [\"hero\", \"landing\", \"cta\", \"announcement\", \"headline\", \"conversion\", \"primary\"],\n  \"description\": \"Create compelling hero sections with headlines, announcements, and dual call-to-action buttons\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"hero\", \"landing-page\", \"cta\", \"marketing\", \"headlines\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/knowledge-categories/block.html",
    "content": "{{- $wcPage := .wcPage -}}\n{{- $wcBlock := .wcBlock -}}\n{{- $wcIdentifier := .wcIdentifier -}}\n{{- $content := $wcBlock.content -}}\n{{- if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end -}}\n{{- $design := $wcBlock.design -}}\n{{- if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end -}}\n\n{{- $st := index $design \"spacing\" -}}\n{{- if not (reflect.IsMap $st) }}{{ $st = dict }}{{ end -}}\n{{- $pad := slice \"4rem\" \"0\" \"4rem\" \"0\" -}}\n{{- $pad_raw := index $st \"padding\" -}}\n{{- if and (reflect.IsSlice $pad_raw) (ge (len $pad_raw) 4) }}{{ $pad = $pad_raw }}{{ end -}}\n\n{{- $title := \"\" -}}\n{{- $title_raw := index $content \"title\" -}}\n{{- if eq (printf \"%T\" $title_raw) \"string\" }}{{ $title = $title_raw }}{{ end -}}\n{{- $subtitle := \"\" -}}\n{{- $subtitle_raw := index $content \"subtitle\" -}}\n{{- if eq (printf \"%T\" $subtitle_raw) \"string\" }}{{ $subtitle = $subtitle_raw }}{{ end -}}\n\n{{- $categories_raw := index $content \"categories\" -}}\n{{- $categories := slice -}}\n{{- if reflect.IsSlice $categories_raw }}{{ $categories = $categories_raw }}{{ end -}}\n\n{{- $view_all := index $content \"view_all\" -}}\n{{- if not (reflect.IsMap $view_all) }}{{ $view_all = dict }}{{ end -}}\n{{- $view_all_text := \"\" -}}\n{{- with index $view_all \"text\" }}{{ $view_all_text = strings.TrimSpace (printf \"%v\" .) }}{{ end -}}\n{{- $view_all_link := \"\" -}}\n{{- with index $view_all \"link\" }}{{ $view_all_link = strings.TrimSpace (printf \"%v\" .) }}{{ end -}}\n\n<section id=\"{{ $wcIdentifier }}\" class=\"relative\" style=\"padding: {{ delimit $pad \" \" }};\">\n  <div class=\"mx-auto max-w-7xl px-6 lg:px-8\">\n    \n    {{/* Section header */}}\n    {{ if or $title $subtitle }}\n    <div class=\"mx-auto max-w-2xl text-center mb-12\">\n      {{ with $title }}\n      <h2 class=\"text-3xl font-bold tracking-tight text-gray-900 dark:text-white sm:text-4xl\">\n        {{ . | markdownify }}\n      </h2>\n      {{ end }}\n      {{ with $subtitle }}\n      <p class=\"mt-4 text-lg text-gray-600 dark:text-gray-300\">\n        {{ . | markdownify }}\n      </p>\n      {{ end }}\n    </div>\n    {{ end }}\n\n    {{/* Categories grid - with dynamic counts from Hugo taxonomy */}}\n    <div class=\"grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4\">\n\n      {{ range $categories }}\n      {{ if reflect.IsMap . }}\n      {{ $category_name := \"\" }}\n      {{ $category_raw := index . \"category\" | default (index . \"title\") }}\n      {{ if ne $category_raw nil }}{{ $category_name = strings.TrimSpace (printf \"%v\" $category_raw) }}{{ end }}\n     \n      {{/* Get actual count from Hugo taxonomy - proper Hugo syntax */}}\n      {{ $category_url := \"\" }}\n      {{ $actual_count := 0 }}\n      {{ if $category_name }}\n        {{ with site.Taxonomies.categories.Get $category_name }}\n          {{ $actual_count = .Count }}\n          {{ $category_url = .Page.RelPermalink }}\n        {{ end }}\n      {{ end }}\n\n      {{ $manual_count := partial \"functions/coerce_int\" (dict \"value\" (index . \"count\") \"default\" 0 \"min\" 0) }}\n      {{ $item_link := \"\" }}\n      {{ $link_raw := index . \"link\" }}\n      {{ if eq (printf \"%T\" $link_raw) \"string\" }}{{ $item_link = strings.TrimSpace $link_raw }}{{ end }}\n      {{ if not $item_link }}{{ $item_link = $category_url }}{{ end }}\n      \n      {{/* Only show category if it has content OR if count is explicitly set */}}\n      {{ if or (gt $actual_count 0) (gt $manual_count 0) }}\n      {{ if $item_link }}\n      {{ $link := $item_link }}\n      {{ $scheme := (urls.Parse $link).Scheme }}\n      {{ if not $scheme }}\n        {{ if not (hasPrefix $link \"#\") }}\n          {{ $link = $link | relLangURL }}\n        {{ end }}\n      {{ end }}\n      <a href=\"{{ $link | safeURL }}\" class=\"group relative overflow-hidden rounded-2xl bg-white dark:bg-gray-800 p-6 shadow-sm ring-1 ring-gray-900/5 transition-all duration-300 hover:shadow-xl hover:ring-primary-500/50 hover:-translate-y-1\">\n      {{ else }}\n      <div class=\"group relative overflow-hidden rounded-2xl bg-white dark:bg-gray-800 p-6 shadow-sm ring-1 ring-gray-900/5 transition-all duration-300 hover:shadow-xl hover:ring-primary-500/50 hover:-translate-y-1\">\n      {{ end }}\n        \n        {{/* Icon */}}\n        {{ $icon := index . \"icon\" }}\n        {{ if and $icon (reflect.IsMap $icon) }}\n        {{ $icon_name := index $icon \"name\" }}\n        {{ $icon_bg := index $icon \"bg_color\" | default \"bg-primary-100 dark:bg-primary-900/50\" }}\n        {{ $icon_text := index $icon \"text_color\" | default \"text-primary-600 dark:text-primary-400\" }}\n        {{ if eq (printf \"%T\" $icon_name) \"string\" }}\n        <div class=\"mb-4 inline-flex h-12 w-12 items-center justify-center rounded-xl {{ $icon_bg }} {{ $icon_text }} group-hover:scale-110 transition-transform\">\n          {{ partial \"functions/get_icon\" (dict \"name\" $icon_name \"attributes\" \"class=\\\"h-6 w-6\\\"\") }}\n        </div>\n        {{ end }}\n        {{ end }}\n        \n        {{/* Title */}}\n        <h3 class=\"text-lg font-semibold text-gray-900 dark:text-white mb-2\">\n          {{ index . \"title\" | default $category_name }}\n        </h3>\n        \n        {{/* Description */}}\n        {{ with index . \"description\" }}\n        <p class=\"text-sm text-gray-600 dark:text-gray-400 mb-4\">\n          {{ . }}\n        </p>\n        {{ end }}\n        \n        {{/* Stats - use actual count from taxonomy, fallback to manual count */}}\n        <div class=\"flex items-center justify-between text-sm\">\n          {{ $display_count := $actual_count }}\n          {{ if gt $manual_count 0 }}{{ $display_count = $manual_count }}{{ end }}\n          {{ if $display_count }}\n          <span class=\"text-gray-500 dark:text-gray-400\">\n            {{ $display_count }} {{ cond (eq $display_count 1) (T \"article\" | default \"article\") (T \"articles\" | default \"articles\") }}\n          </span>\n          {{ end }}\n          <span class=\"text-primary-600 dark:text-primary-400 group-hover:translate-x-1 transition-transform\">\n            {{ T \"browse\" | default \"Browse\" }} →\n          </span>\n        </div>\n        \n        {{/* Hover gradient effect */}}\n        <div class=\"absolute inset-0 -z-10 bg-gradient-to-br from-primary-500/0 via-primary-500/0 to-primary-500/0 opacity-0 transition-opacity duration-300 group-hover:opacity-10\"></div>\n      {{ if $item_link }}</a>{{ else }}</div>{{ end }}\n      {{ end }}\n      {{ end }}\n      {{ end }}\n    </div>\n    \n    {{/* View all link */}}\n    {{ if and $view_all_text $view_all_link }}\n    {{ $link := $view_all_link }}\n    {{ $scheme := (urls.Parse $link).Scheme }}\n    {{ if not $scheme }}\n      {{ if not (hasPrefix $link \"#\") }}\n        {{ $link = $link | relLangURL }}\n      {{ end }}\n    {{ end }}\n    <div class=\"mt-10 text-center\">\n      <a href=\"{{ $link | safeURL }}\" class=\"inline-flex items-center gap-2 text-primary-600 dark:text-primary-400 font-medium hover:text-primary-700 dark:hover:text-primary-300 transition-colors\">\n        {{ $view_all_text }}\n        <svg class=\"h-4 w-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n          <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 7l5 5m0 0l-5 5m5-5H6\"></path>\n        </svg>\n      </a>\n    </div>\n    {{ end }}\n    \n  </div>\n</section>\n"
  },
  {
    "path": "modules/blox/blox/knowledge-categories/manifest.json",
    "content": "{\n  \"name\": \"knowledge-categories\",\n  \"version\": \"1\",\n  \"title\": \"Knowledge Categories\",\n  \"description\": \"Grid of knowledge base category cards\",\n  \"categories\": [\"content\", \"navigation\"],\n  \"preview\": \"preview.svg\"\n}\n"
  },
  {
    "path": "modules/blox/blox/logos/README.md",
    "content": "# Logos Block\n\nDisplay partner, sponsor, or collaborator logos with modern interactive effects and multiple display modes. Perfect for showcasing affiliations, building trust, and highlighting collaborations.\n\n## Features\n\n- **Multiple Display Modes**: Grid, carousel, or marquee layouts\n- **Interactive Effects**: Grayscale to color on hover, smooth scaling\n- **Clickable Logos**: Link to partner websites\n- **Hover Tooltips**: Show partner descriptions on hover\n- **Responsive Design**: Adapts perfectly to all screen sizes\n- **Smooth Animations**: Professional transitions and effects\n- **Flexible Configuration**: Use structured data or folder-based logos\n- **Performance Optimized**: Lazy loading and WebP format support\n- **Dark Mode Support**: Seamless theme switching\n\n## Display Modes\n\n### Grid Mode (Default)\nClassic responsive grid layout with hover effects:\n- 2 columns on mobile\n- 3-6 columns on larger screens\n- Grayscale to color transition on hover\n- Scale animation on hover\n\n### Carousel Mode\nAuto-scrolling horizontal carousel:\n- Continuous smooth scrolling\n- Pauses on hover\n- Duplicate items for seamless loop\n- Ideal for many logos\n\n### Marquee Mode\nTraditional marquee scroll effect:\n- Continuous horizontal movement\n- Lightweight and performant\n- Good for header/footer placement\n\n## Usage\n\n### Basic Grid Layout\n```yaml\nsections:\n  - block: logos\n    content:\n      title: Our Partners & Collaborators\n      subtitle: Working with leading institutions worldwide\n      text: We collaborate with top universities and research centers\n      logos:\n        - name: MIT\n          image: partners/mit.png\n          url: https://mit.edu\n          description: Massachusetts Institute of Technology\n        - name: Stanford University\n          image: partners/stanford.svg\n          url: https://stanford.edu\n          description: Leading research university\n        - name: Google Research\n          image: partners/google.png\n          url: https://research.google\n          description: AI and ML research\n        - name: Microsoft Research\n          image: partners/microsoft.svg\n          url: https://www.microsoft.com/research\n          description: Computing research lab\n    design:\n      display_mode: grid\n      css_class: \"bg-gray-50 dark:bg-gray-900\"\n```\n\n### Carousel Display\n```yaml\nsections:\n  - block: logos\n    content:\n      title: Trusted By Industry Leaders\n      logos:\n        # Add 8-12 logos for best carousel effect\n        - name: Company 1\n          image: sponsors/company1.png\n          url: https://example.com\n        # ... more logos\n    design:\n      display_mode: carousel\n```\n\n### Legacy Folder Mode\nFor backward compatibility or quick setup:\n```yaml\nsections:\n  - block: logos\n    content:\n      title: Our Sponsors\n      logo_folder: sponsors  # Loads all images from assets/media/sponsors/\n    design:\n      display_mode: grid\n```\n\n## Options\n\n### Content Options\n\n- **title**: Main heading for the section\n- **subtitle**: Optional subtitle (shown in accent color)\n- **text**: Description text below title\n- **logos**: Array of logo configurations\n  - `name`: Partner/sponsor name (shown in tooltip)\n  - `image`: Path relative to `assets/media/`\n  - `url`: Website URL\n  - `external`: Open in new tab (default: true)\n  - `description`: Hover tooltip text\n- **logo_folder**: Legacy option to load all images from a folder\n- **cta**: Optional call-to-action button\n  - `text`: Button text\n  - `url`: Button link\n  - `icon`: Optional icon\n\n### Design Options\n\n- **display_mode**: Choose layout style\n  - `grid`: Responsive grid (default)\n  - `carousel`: Auto-scrolling carousel\n  - `marquee`: Classic marquee effect\n- **show_pattern**: Add decorative background pattern (default: false)\n\n## Image Guidelines\n\n### Recommended Formats\n- **SVG**: Best for logos (scalable, small file size)\n- **PNG**: For logos with transparency\n- **WebP**: Modern format with best compression\n\n### Size Recommendations\n- **Grid Mode**: 280x140px (will be auto-fitted)\n- **Carousel Mode**: 280x140px minimum\n- **Aspect Ratio**: 2:1 or square works best\n\n### Optimization Tips\n1. Use SVG when possible for crisp rendering\n2. Optimize PNGs with tools like TinyPNG\n3. Keep file sizes under 50KB per logo\n4. Use consistent dimensions for visual harmony\n\n## Styling\n\n### Hover Effects\n- Grayscale filter removed on hover\n- Opacity increases from 60% to 100%\n- Smooth scale transformation (110%)\n- Background highlight on hover\n\n### Custom CSS\nAdd custom styles to enhance the block:\n\n```css\n/* Example: Custom logo sizing */\n.logos-block img {\n  max-height: 80px;\n}\n\n/* Example: Remove grayscale on specific logo */\n.partner-featured img {\n  filter: none !important;\n  opacity: 1 !important;\n}\n```\n\n## Best Practices\n\n1. **Logo Quality**: Use high-resolution logos (2x display size)\n2. **Consistency**: Keep logos similar in visual weight\n3. **Accessibility**: Always provide alt text via `name` field\n4. **Performance**: Optimize images before adding\n5. **Responsive**: Test on mobile devices\n6. **Links**: Verify all external links work\n7. **Copyright**: Ensure you have permission to display logos\n\n## Examples\n\n### Research Lab Partners\n```yaml\nlogos:\n  - name: National Science Foundation\n    image: partners/nsf.svg\n    url: https://nsf.gov\n    description: Federal funding agency\n  - name: NIH\n    image: partners/nih.png\n    url: https://nih.gov\n    description: National Institutes of Health\n```\n\n### Conference Sponsors\n```yaml\nlogos:\n  - name: Gold Sponsor - Microsoft\n    image: sponsors/microsoft-gold.png\n    url: https://microsoft.com\n    description: Gold level sponsor\n```\n\n### Industry Collaborations\n```yaml\nlogos:\n  - name: OpenAI\n    image: collaborators/openai.svg\n    url: https://openai.com\n    description: AI research partnership\n```\n\n## Animation Speed\n\nTo adjust animation speeds, modify the CSS:\n\n```yaml\ndesign:\n  css_style: |\n    .animate-marquee { animation-duration: 20s; }\n    .animate-scroll { animation-duration: 30s; }\n```\n"
  },
  {
    "path": "modules/blox/blox/logos/block.html",
    "content": "{{/* Hugo Blox: Logos Block */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $display_mode := \"grid\" }}\n{{ $display_raw := index $design \"display_mode\" }}\n{{ if eq (printf \"%T\" $display_raw) \"string\" }}\n  {{ $display_mode = lower (strings.TrimSpace $display_raw) }}\n{{ end }}\n{{ if not (in (slice \"grid\" \"carousel\" \"marquee\") $display_mode) }}\n  {{ $display_mode = \"grid\" }}\n{{ end }}\n\n{{ $show_pattern := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_pattern\") \"default\" false) }}\n\n{{ $title := \"\" }}\n{{ with index $content \"title\" }}{{ $title = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n{{ $subtitle := \"\" }}\n{{ with index $content \"subtitle\" }}{{ $subtitle = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n{{ $text := \"\" }}\n{{ with index $content \"text\" }}{{ $text = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n\n{{ $logos_raw := index $content \"logos\" }}\n{{ $logos := slice }}\n{{ if reflect.IsSlice $logos_raw }}{{ $logos = $logos_raw }}{{ end }}\n{{ $logo_folder := \"\" }}\n{{ $logo_folder_raw := index $content \"logo_folder\" }}\n{{ if eq (printf \"%T\" $logo_folder_raw) \"string\" }}{{ $logo_folder = strings.TrimSpace $logo_folder_raw }}{{ end }}\n\n{{ $cta := index $content \"cta\" }}\n{{ if not (reflect.IsMap $cta) }}{{ $cta = dict }}{{ end }}\n{{ $cta_text := \"\" }}\n{{ with index $cta \"text\" }}{{ $cta_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ $cta_url := \"\" }}\n{{ with index $cta \"url\" }}{{ $cta_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ $cta_icon := \"\" }}\n{{ with index $cta \"icon\" }}{{ $cta_icon = printf \"%v\" . }}{{ end }}\n\n<div class=\"relative py-16 sm:py-20 lg:py-24 overflow-hidden\">\n  {{/* Background Pattern */}}\n  {{ if $show_pattern }}\n  <div class=\"absolute inset-0 opacity-5\">\n    <div class=\"absolute inset-0 bg-gradient-to-br from-primary-100 to-transparent dark:from-primary-900 dark:to-transparent\"></div>\n  </div>\n  {{ end }}\n  \n  <div class=\"relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8\">\n    \n    {{/* Section Header */}}\n    <div class=\"text-center max-w-3xl mx-auto mb-12\">\n      {{ with $title }}\n      <h2 class=\"text-3xl sm:text-4xl lg:text-5xl font-bold text-gray-900 dark:text-white tracking-tight mb-4\">\n        {{ . }}\n      </h2>\n      {{ end }}\n      \n      {{ with $subtitle }}\n      <p class=\"text-xl text-primary-600 dark:text-primary-400 font-medium mb-2\">\n        {{ . }}\n      </p>\n      {{ end }}\n      \n      {{ with $text }}\n      <p class=\"text-lg text-gray-600 dark:text-gray-400\">\n        {{ . }}\n      </p>\n      {{ end }}\n    </div>\n\n    {{/* Grid Display Mode */}}\n    {{ if eq $display_mode \"grid\" }}\n    <div class=\"grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6 gap-8 lg:gap-12 items-center\">\n      \n      {{/* Logo Items from Data */}}\n      {{ if gt (len $logos) 0 }}\n        {{ range $logos }}\n        {{ if reflect.IsMap . }}\n        {{ $name := \"\" }}\n        {{ with index . \"name\" }}{{ $name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ $description := \"\" }}\n        {{ with index . \"description\" }}{{ $description = printf \"%v\" . }}{{ end }}\n        {{ $image_name := \"\" }}\n        {{ with index . \"image\" }}{{ $image_name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ $link := \"\" }}\n        {{ with index . \"url\" }}{{ $link = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ $external := partial \"functions/coerce_bool\" (dict \"value\" (index . \"external\") \"default\" false) }}\n        {{ if $link }}\n          {{ $scheme := (urls.Parse $link).Scheme }}\n          {{ if not $scheme }}\n            {{ if not (hasPrefix $link \"#\") }}\n              {{ $link = $link | relLangURL }}\n            {{ end }}\n          {{ else if in (slice \"http\" \"https\") $scheme }}\n            {{ $external = true }}\n          {{ end }}\n        {{ end }}\n        <div class=\"group relative\">\n          {{ if $link }}\n          <a href=\"{{ $link | safeURL }}\" {{ if $external }}target=\"_blank\" rel=\"noopener\"{{ end }}\n             class=\"block p-4 rounded-lg hover:bg-gray-50 dark:hover:bg-gray-800 transition-all duration-300\"\n             {{ if $name }}title=\"{{ $name }}\"{{ end }}>\n          {{ else }}\n          <div class=\"block p-4 rounded-lg hover:bg-gray-50 dark:hover:bg-gray-800 transition-all duration-300\">\n          {{ end }}\n            <div class=\"relative\">\n              {{/* Logo Image */}}\n              {{/* Logo Image */}}\n              {{ if $image_name }}\n                {{/* Resolve image from page bundle, site assets, remote, or static URLs */}}\n                {{ $image_resource := false }}\n                {{ $image_url := \"\" }}\n                {{ $image_path := strings.TrimSpace (printf \"%v\" $image_name) }}\n                {{ $is_remote := or (strings.HasPrefix $image_path \"http://\") (strings.HasPrefix $image_path \"https://\") }}\n\n                {{ if $is_remote }}\n                  {{ $remote := try (resources.GetRemote $image_path) }}\n                  {{ if and $remote (not $remote.Err) }}\n                    {{ $image_resource = $remote.Value }}\n                  {{ else }}\n                    {{ $image_url = $image_path }}\n                  {{ end }}\n                {{ else }}\n                  {{ $image_path = strings.TrimPrefix \"/\" $image_path }}\n                  {{ $image_path = strings.TrimPrefix \"./\" $image_path }}\n                  {{ $image_path = strings.TrimPrefix \"assets/\" $image_path }}\n                  {{ $image_path = strings.TrimPrefix \"media/\" $image_path }}\n                  {{ $normalized := path.Clean $image_path }}\n\n                  {{ if and $normalized (ne $normalized \".\") }}\n                    {{ with $page }}\n                      {{ $image_resource = (.Resources.ByType \"image\").GetMatch $normalized }}\n                    {{ end }}\n                    {{ if not $image_resource }}\n                      {{ $image_resource = resources.Get (path.Join \"media\" $normalized) }}\n                    {{ end }}\n                    {{ if not $image_resource }}\n                      {{ $image_url = printf \"/media/%s\" $normalized }}\n                    {{ end }}\n                  {{ end }}\n                {{ end }}\n\n                {{ $img := $image_resource }}\n                {{ if $img }}\n                  {{ $isSVG := eq $img.MediaType.SubType \"svg\" }}\n                  {{ if not $isSVG }}\n                    {{ $img = $img.Fit \"280x140 webp\" }}\n                  {{ end }}\n                  <img src=\"{{ $img.RelPermalink }}\" \n                       alt=\"{{ $name | default \"Partner logo\" }}\"\n                       {{ if not $isSVG }}width=\"{{ $img.Width }}\" height=\"{{ $img.Height }}\"{{ end }}\n                       class=\"h-12 sm:h-14 lg:h-16 w-auto mx-auto object-contain filter grayscale opacity-60 group-hover:grayscale-0 group-hover:opacity-100 transition-all duration-300 group-hover:scale-110\"\n                       loading=\"lazy\">\n                {{ else if $image_url }}\n                  {{ $is_external := or (strings.HasPrefix $image_url \"http://\") (strings.HasPrefix $image_url \"https://\") }}\n                  <img src=\"{{ if $is_external }}{{ $image_url }}{{ else }}{{ $image_url | relURL }}{{ end }}\" \n                       alt=\"{{ $name | default \"Partner logo\" }}\"\n                       class=\"h-12 sm:h-14 lg:h-16 w-auto mx-auto object-contain filter grayscale opacity-60 group-hover:grayscale-0 group-hover:opacity-100 transition-all duration-300 group-hover:scale-110\"\n                       loading=\"lazy\">\n                {{ end }}\n              {{ end }}\n              \n              {{/* Tooltip on Hover */}}\n              {{ with $description }}\n              <div class=\"absolute bottom-full left-1/2 transform -translate-x-1/2 mb-2 px-3 py-2 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg opacity-0 group-hover:opacity-100 transition-opacity duration-300 pointer-events-none whitespace-nowrap z-10\">\n                {{ . }}\n                <div class=\"absolute top-full left-1/2 transform -translate-x-1/2 w-0 h-0 border-l-4 border-l-transparent border-r-4 border-r-transparent border-t-4 border-t-gray-900 dark:border-t-gray-700\"></div>\n              </div>\n              {{ end }}\n            </div>\n          {{ if $link }}\n          </a>\n          {{ else }}\n          </div>\n          {{ end }}\n        </div>\n        {{ end }}\n        {{ end }}\n        \n      {{/* Logo Images from Folder (Legacy Support) */}}\n      {{ else if $logo_folder }}\n        {{ $images := resources.Match (printf \"media/%s/*.{svg,png,jpg,webp}\" $logo_folder) }}\n        {{ range $images }}\n        <div class=\"group relative\">\n          <div class=\"block p-4 rounded-lg hover:bg-gray-50 dark:hover:bg-gray-800 transition-all duration-300\">\n            {{ $image := . }}\n            {{ $isSVG := eq $image.MediaType.SubType \"svg\" }}\n            {{ if not $isSVG }}\n              {{ $image = $image.Fit \"280x140 webp\" }}\n            {{ end }}\n            <img src=\"{{ $image.RelPermalink }}\" \n                 alt=\"Partner logo\"\n                 {{ if not $isSVG }}width=\"{{ $image.Width }}\" height=\"{{ $image.Height }}\"{{ end }}\n                 class=\"h-12 sm:h-14 lg:h-16 w-auto mx-auto object-contain filter grayscale opacity-60 hover:grayscale-0 hover:opacity-100 transition-all duration-300 hover:scale-110\"\n                 loading=\"lazy\">\n          </div>\n        </div>\n        {{ end }}\n      {{ end }}\n    </div>\n    \n    {{/* Carousel Display Mode */}}\n    {{ else if eq $display_mode \"carousel\" }}\n    <div class=\"relative overflow-hidden\">\n      <div class=\"flex animate-scroll space-x-12 lg:space-x-16\">\n        {{/* Duplicate items for continuous scroll */}}\n        {{ $items := slice }}\n        {{ if gt (len $logos) 0 }}\n          {{ range $logos }}\n            {{ if reflect.IsMap . }}\n              {{ $img_name := index . \"image\" }}\n              {{ if eq (printf \"%T\" $img_name) \"string\" }}\n                {{ $items = $items | append (dict \"image\" (strings.TrimSpace $img_name) \"name\" (index . \"name\")) }}\n              {{ end }}\n            {{ end }}\n          {{ end }}\n        {{ else if $logo_folder }}\n          {{ $images := resources.Match (printf \"media/%s/*.{svg,png,jpg,webp}\" $logo_folder) }}\n          {{ range $images }}\n            {{ $items = $items | append (dict \"image\" .Name) }}\n          {{ end }}\n        {{ end }}\n        \n        {{/* First set of logos */}}\n        {{ range $items }}\n        <div class=\"flex-shrink-0\">\n          {{ if .image }}\n            {{ $img := resources.Get (printf \"media/%s\" .image) }}\n            {{ if $img }}\n              {{ $isSVG := eq $img.MediaType.SubType \"svg\" }}\n              {{ if not $isSVG }}\n                {{ $img = $img.Fit \"280x140 webp\" }}\n              {{ end }}\n              <img src=\"{{ $img.RelPermalink }}\" \n                   alt=\"{{ .name | default \"Partner logo\" }}\"\n                   {{ if not $isSVG }}width=\"{{ $img.Width }}\" height=\"{{ $img.Height }}\"{{ end }}\n                   class=\"h-16 lg:h-20 w-auto object-contain opacity-70 hover:opacity-100 transition-opacity\"\n                   loading=\"lazy\">\n            {{ end }}\n          {{ end }}\n        </div>\n        {{ end }}\n        \n        {{/* Duplicate for seamless loop */}}\n        {{ range $items }}\n        <div class=\"flex-shrink-0\">\n          {{ if .image }}\n            {{ $img := resources.Get (printf \"media/%s\" .image) }}\n            {{ if $img }}\n              {{ $isSVG := eq $img.MediaType.SubType \"svg\" }}\n              {{ if not $isSVG }}\n                {{ $img = $img.Fit \"280x140 webp\" }}\n              {{ end }}\n              <img src=\"{{ $img.RelPermalink }}\" \n                   alt=\"{{ .name | default \"Partner logo\" }}\"\n                   {{ if not $isSVG }}width=\"{{ $img.Width }}\" height=\"{{ $img.Height }}\"{{ end }}\n                   class=\"h-16 lg:h-20 w-auto object-contain opacity-70 hover:opacity-100 transition-opacity\"\n                   loading=\"lazy\">\n            {{ end }}\n          {{ end }}\n        </div>\n        {{ end }}\n      </div>\n    </div>\n    \n    {{/* Marquee Display Mode */}}\n    {{ else if eq $display_mode \"marquee\" }}\n    <div class=\"relative\">\n      <div class=\"overflow-hidden\">\n        <div class=\"flex animate-marquee whitespace-nowrap\">\n          {{ if gt (len $logos) 0 }}\n            {{ range $logos }}\n            {{ if reflect.IsMap . }}\n            {{ $image_name := \"\" }}\n            {{ with index . \"image\" }}{{ $image_name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ $name := \"\" }}\n            {{ with index . \"name\" }}{{ $name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            <div class=\"mx-8 inline-flex items-center\">\n              {{ if $image_name }}\n                {{ $img := resources.Get (printf \"media/%s\" $image_name) }}\n                {{ if $img }}\n                  {{ $isSVG := eq $img.MediaType.SubType \"svg\" }}\n                  {{ if not $isSVG }}\n                    {{ $img = $img.Fit \"280x140 webp\" }}\n                  {{ end }}\n                  <img src=\"{{ $img.RelPermalink }}\" \n                       alt=\"{{ $name | default \"Partner logo\" }}\"\n                       {{ if not $isSVG }}width=\"{{ $img.Width }}\" height=\"{{ $img.Height }}\"{{ end }}\n                       class=\"h-14 lg:h-16 w-auto object-contain opacity-70\"\n                       loading=\"lazy\">\n                {{ end }}\n              {{ end }}\n            </div>\n            {{ end }}\n            {{ end }}\n          {{ end }}\n        </div>\n      </div>\n    </div>\n    {{ end }}\n    \n    {{/* Call to Action */}}\n    {{ if and $cta_text $cta_url }}\n    {{ $link := $cta_url }}\n    {{ $target := \"\" }}\n    {{ $scheme := (urls.Parse $link).Scheme }}\n    {{ if not $scheme }}\n      {{ if not (hasPrefix $link \"#\") }}\n        {{ $link = $link | relLangURL }}\n      {{ end }}\n      {{ if eq (path.Ext $link) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n    {{ else if in (slice \"http\" \"https\") $scheme }}\n      {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n    {{ end }}\n    <div class=\"mt-12 text-center\">\n      <a href=\"{{ $link | safeURL }}\" {{ $target | safeHTMLAttr }}\n         class=\"inline-flex items-center px-6 py-3 bg-primary-600 hover:bg-primary-700 text-white font-medium rounded-lg shadow hover:shadow-lg transition-all duration-300\">\n        {{ $cta_text }}\n        {{ if $cta_icon }}\n        {{ partial \"functions/get_icon\" (dict \"name\" $cta_icon \"attributes\" \"class=\\\"ml-2 w-5 h-5\\\"\") }}\n        {{ end }}\n      </a>\n    </div>\n    {{ end }}\n  </div>\n</div>\n\n{{/* Custom CSS for Animations */}}\n<style>\n@keyframes marquee {\n  0% { transform: translateX(0); }\n  100% { transform: translateX(-50%); }\n}\n\n@keyframes scroll {\n  0% { transform: translateX(0); }\n  100% { transform: translateX(-50%); }\n}\n\n.animate-marquee {\n  animation: marquee 30s linear infinite;\n}\n\n.animate-scroll {\n  animation: scroll 40s linear infinite;\n}\n\n.animate-marquee:hover,\n.animate-scroll:hover {\n  animation-play-state: paused;\n}\n</style>\n"
  },
  {
    "path": "modules/blox/blox/logos/manifest.json",
    "content": "{\n  \"id\": \"logos\",\n  \"name\": \"Logos\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"logos\", \"partners\", \"sponsors\", \"collaborators\", \"brands\", \"clients\", \"affiliations\"],\n  \"description\": \"Display partner, sponsor, or collaborator logos with interactive effects and multiple display modes\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"static-site\", \"logos\", \"partners\", \"sponsors\", \"carousel\", \"marquee\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/markdown/README.md",
    "content": "# Markdown Block\n\n**Beautiful typography for your content**\n\nTransform your written content into beautifully formatted, readable sections with the Markdown block - a clean, minimalist component that puts your words front and center with professional typography and perfect readability.\n\n## ✨ Key Features\n\n- **Prose Optimization**: Beautiful typography with the prose class for optimal readability\n- **Dark Mode Support**: Automatic dark mode styling with prose-invert\n- **Responsive Typography**: Scales from base to large (lg:prose-xl) on bigger screens\n- **Markdown Rich**: Full Markdown support including links, formatting, lists, and more\n- **Optional Titles**: Add section headers with consistent styling\n- **Center-Aligned**: Content centered with optimal line length for reading\n- **Emoji Support**: Built-in emoji rendering for expressive content\n\n## 🎯 Perfect For\n\n- **About Pages**: Tell your story with beautifully formatted text\n- **Blog Content**: Create rich, readable blog post sections\n- **Documentation**: Present technical content with professional formatting\n- **Company Information**: Share detailed company background and mission\n- **Policy Pages**: Format terms, privacy policies, and legal content\n- **Long-Form Content**: Any substantial text content that deserves beautiful presentation\n\n## 🚀 Why Choose Markdown Block?\n\n**Reading Experience**: Optimized typography that makes long-form content a pleasure to read\n\n**Flexible Content**: Support for all Markdown features including links, emphasis, lists, and code\n\n**Consistent Styling**: Professional typography that matches your site's design system\n\n**Accessibility First**: Semantic HTML structure with proper heading hierarchy and contrast\n\n## 📊 Content Benefits\n\n- **Improved Readability**: Optimal line length and spacing reduce eye strain\n- **Better Engagement**: Beautiful typography encourages visitors to read more\n- **SEO Friendly**: Clean, semantic HTML structure helps search engines understand content\n- **Mobile Optimized**: Responsive text sizing ensures readability on all devices\n\n## 💡 Typography Science\n\n- **Optimal Line Length**: Content width designed for comfortable reading speed\n- **Proper Contrast**: Light and dark mode support ensures accessibility\n- **Hierarchical Structure**: Clear visual hierarchy guides readers through content\n- **Breathing Room**: Generous spacing prevents information overload\n\n## 🎨 Use Cases\n\n- **Storytelling**: Share your journey, mission, or company history\n- **Educational Content**: Present tutorials, guides, or learning materials\n- **Announcements**: Communicate important updates or changes\n- **Content Marketing**: Create engaging blog posts and articles\n- **Documentation**: Technical guides, API docs, or user manuals\n\nPerfect for bloggers, businesses, educators, and anyone who values beautiful, readable content presentation. Make your words shine with typography that respects both your message and your readers.\n\n"
  },
  {
    "path": "modules/blox/blox/markdown/block.html",
    "content": "{{/* Hugo Blox: Markdown */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $title := \"\" }}\n{{ with index $content \"title\" }}{{ $title = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n{{ $text := \"\" }}\n{{ with index $content \"text\" }}{{ $text = printf \"%v\" . | emojify | $page.RenderString | safeHTML }}{{ end }}\n\n<div class=\"flex flex-col items-center max-w-prose mx-auto gap-3 justify-center px-6\">\n\n  {{ with $title }}\n  <div class=\"mb-6 text-3xl font-bold text-gray-900 dark:text-white\">\n    {{ . }}\n  </div>\n  {{ end }}\n\n  {{/* We use DIV rather than P to support `prose` class and multiple paragraphs */}}\n  {{ with $text }}<div class=\"prose prose-slate lg:prose-xl dark:prose-invert max-w-prose\">{{ . }}</div>{{ end }}\n</div>\n"
  },
  {
    "path": "modules/blox/blox/markdown/manifest.json",
    "content": "{\n  \"id\": \"markdown\",\n  \"name\": \"Markdown\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"markdown\", \"content\", \"text\", \"prose\", \"writing\", \"simple\", \"flexible\"],\n  \"description\": \"Display rich markdown content with beautiful typography and optional section titles\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"markdown\", \"content\", \"typography\", \"prose\", \"text\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/portfolio/README.md",
    "content": "# Portfolio Block\n\nA flexible, filterable portfolio block for showcasing work with Alpine.js-powered filtering and modern glass morphism styling.\n\n**Versatile Use Cases:** Software projects, research papers, design work, photography, teaching portfolios, case studies, publications, and more.\n\n## Features\n\n- **Tag Filtering**: Filter items by tags with smooth Alpine.js transitions\n- **Glass Morphism**: Modern card design with backdrop blur and gradient borders\n- **Status Badges**: Display status (Live, In Progress, Completed, Published, etc.)\n- **Flexible Keywords**: Show skills, technologies, tools, materials, or methods\n- **Custom Links**: GitHub, live sites, PDFs, videos, or any custom link type\n- **Responsive Grid**: Configurable 2, 3, or 4 column layout\n- **Smooth Animations**: Fade and scale transitions on filter\n- **Customizable Icons**: Configure fallback icon for items without images\n\n## Basic Usage\n\n```yaml\n- block: portfolio\n  id: portfolio\n  content:\n    title: \"My Work\"\n    subtitle: \"A selection of recent projects\"\n    count: 6\n    filters:\n      folders:\n        - projects  # Or: research, portfolio, work, teaching, etc.\n    buttons:\n      - name: All\n        tag: '*'\n      - name: Category A\n        tag: CategoryA\n      - name: Category B\n        tag: CategoryB\n    default_button_index: 0\n    archive:\n      # Auto-shown if more items exist than displayed\n      # Optionally customize:\n      # enable: false  # Explicitly hide\n      # link: \"/work/\"  # Custom URL\n      # text: \"Browse All\"  # Custom text\n  design:\n    columns: 3\n    fallback_icon: code-bracket  # Or: academic-cap, paint-brush, camera, etc.\n```\n\n## Item Frontmatter\n\nEach portfolio item should include the following frontmatter:\n\n```yaml\n---\ntitle: \"Item Title\"\ndate: 2024-01-15\nsummary: \"Brief description of the work\"\ntags:\n  - Category\n  - Subcategory\n  - Tag\ntech_stack:  # Or think of as: tools, methods, skills, materials\n  - Tool 1\n  - Tool 2\n  - Tool 3\nlinks:\n  - type: custom  # Or: github, live, pdf, video, etc.\n    url: https://example.com\n    label: View Project\n    icon: globe-alt  # Optional\nstatus: \"Completed\"  # Or: Live, Published, In Progress, etc.\nfeatured: true\n---\n```\n\n## Parameters\n\n### Content\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `title` | string | - | Section title |\n| `subtitle` | string | - | Section subtitle |\n| `count` | integer | 0 (all) | Number of projects to display (set to `0` or omit to show all) |\n| `filters.folders` | array | `[\"projects\"]` | Content folders to query |\n| `buttons` | array | `[{name: \"All\", tag: \"*\"}]` | Filter buttons |\n| `default_button_index` | integer | 0 | Default active filter |\n| `archive.enable` | boolean | auto | Show \"View All\" link (auto-shown if more projects exist, set to `false` to hide) |\n| `archive.link` | string | auto | Archive URL (defaults to first folder in `filters.folders`) |\n| `archive.text` | string | i18n | Archive link text (uses i18n `portfolio_view_all`) |\n| `status.text` | string | - | Override status badge text (falls back to each item's `status`) |\n\n### Design\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `columns` | integer | 3 | Grid columns (2, 3, or 4) |\n| `fallback_icon` | string | `code-bracket` | Icon shown when item has no image. Supports all Hugo Blox icon packs (hero, brands, devicon, emoji, custom). Format: `icon-name` or `pack/icon-name` |\n| `status_badge.enable` | boolean | true | Show or hide the status badge |\n\n## Link Types\n\nEach link supports the following properties:\n- `type`: Link type (github, live, demo, or custom)\n- `url`: Link URL\n- `label`: Custom label text (optional, overrides default)\n- `icon`: Custom icon (optional, overrides default - supports all icon packs)\n\n| Type | Icon | Default Label |\n|------|------|---------------|\n| `github` | `brands/github` | \"Code\" |\n| `live` | `globe-alt` | \"Live\" |\n| `demo` | `play` | \"Demo\" |\n| Other | `link` | \"Link\" |\n\n**Note:** Labels are shared with the project page header, so setting them in frontmatter ensures consistency across card and page views.\n\n**Icon Examples:**\n```yaml\nlinks:\n  - type: custom\n    url: \"...\"\n    label: \"Watch Video\"\n    icon: play-circle  # Hero icon (default pack)\n  - type: custom\n    url: \"...\"\n    label: \"View on GitHub\"\n    icon: brands/github  # Brand icon\n  - type: pdf\n    url: \"paper.pdf\"\n    label: \"Read Paper\"\n    icon: document-text  # Hero icon\n  - type: custom\n    url: \"...\"\n    label: \"Python Code\"\n    icon: devicon/python  # Devicon\n```\n\n## Status Badges\n\n| Status | Color |\n|--------|-------|\n| `Live` | Emerald/Green |\n| `WIP` | Amber/Yellow |\n| `Archived` | Gray |\n\n**Note:** You can use any custom status text. Color coding: emerald for active/live/published, amber for in-progress, gray for archived/completed.\n\n## Use Case Examples\n\n### Software Developer Portfolio\n\n```yaml\n- block: portfolio\n  content:\n    title: \"Featured Projects\"\n    filters:\n      folders: [projects]\n    buttons:\n      - {name: All, tag: '*'}\n      - {name: Full-Stack, tag: Full-Stack}\n      - {name: Frontend, tag: Frontend}\n  design:\n    fallback_icon: code-bracket\n```\n\n**Project frontmatter:**\n```yaml\ntitle: \"E-Commerce Platform\"\ntags: [Full-Stack, React, Node.js]\ntech_stack: [React, TypeScript, PostgreSQL]\nlinks:\n  - {type: github, url: \"...\", label: Code}\n  - {type: live, url: \"...\", label: Demo}\nstatus: \"Live\"\n```\n\n### Academic Research Portfolio\n\n```yaml\n- block: portfolio\n  content:\n    title: \"Research Projects\"\n    filters:\n      folders: [research]\n    buttons:\n      - {name: All, tag: '*'}\n      - {name: Machine Learning, tag: ML}\n      - {name: Computational Biology, tag: CompBio}\n  design:\n    fallback_icon: academic-cap  # Or: beaker, emoji/microscope, devicon/python\n    columns: 2\n```\n\n**Research project frontmatter:**\n```yaml\ntitle: \"Neural Network Optimization Study\"\ntags: [ML, Optimization, Deep Learning]\ntech_stack: [Python, PyTorch, CUDA, NumPy]  # Or rename to \"methods\", \"tools\"\nlinks:\n  - {type: pdf, url: \"paper.pdf\", label: Read Paper}\n  - {type: code, url: \"github.com/...\", label: Code}\n  - {type: dataset, url: \"...\", label: Dataset}\nstatus: \"Published\"\n```\n\n### Design/Creative Portfolio\n\n```yaml\n- block: portfolio\n  content:\n    title: \"Design Work\"\n    filters:\n      folders: [portfolio]\n    buttons:\n      - {name: All, tag: '*'}\n      - {name: Brand Design, tag: Branding}\n      - {name: UI/UX, tag: UI/UX}\n      - {name: Illustration, tag: Illustration}\n  design:\n    fallback_icon: paint-brush  # Or: camera, emoji/art, brands/dribbble\n    columns: 3\n```\n\n**Design project frontmatter:**\n```yaml\ntitle: \"Acme Corp Brand Identity\"\ntags: [Branding, Logo Design, Print]\ntech_stack: [Adobe Illustrator, Photoshop, Figma]  # Tools used\nlinks:\n  - {type: custom, url: \"behance.net/...\", label: View on Behance, icon: globe-alt}\n  - {type: pdf, url: \"case-study.pdf\", label: Case Study}\nstatus: \"Completed\"\n```\n\n### Teaching Portfolio\n\n```yaml\n- block: portfolio\n  content:\n    title: \"Courses & Materials\"\n    filters:\n      folders: [teaching]\n    buttons:\n      - {name: All, tag: '*'}\n      - {name: Undergraduate, tag: Undergrad}\n      - {name: Graduate, tag: Grad}\n  design:\n    fallback_icon: document-text\n```\n\n**Course frontmatter:**\n```yaml\ntitle: \"Introduction to Data Science\"\ntags: [Undergrad, Statistics, Programming]\ntech_stack: [Python, R, Jupyter, Pandas]  # Tools taught\nlinks:\n  - {type: custom, url: \"syllabus.pdf\", label: Syllabus, icon: document-text}\n  - {type: custom, url: \"github.com/...\", label: Course Materials, icon: brands/github}\nstatus: \"Spring 2024\"\n```\n\n## Customization Tips\n\n1. **Rename fields conceptually** - While `tech_stack` is the parameter name, you can use it for:\n   - Software: Technologies, frameworks, tools\n   - Research: Methods, techniques, software\n   - Design: Tools, software, materials\n   - Writing: Genres, themes, topics\n\n2. **Custom link types** - Beyond `github`, `live`, `demo`:\n   - `pdf` for papers, reports, case studies\n   - `dataset` for research data\n   - `video` for presentations, demos\n   - `slides` for slide decks\n   - Custom types with your own labels and icons\n\n3. **Flexible status badges** - Use any text:\n   - Software: \"Live\", \"Beta\", \"Archived\"\n   - Research: \"Published\", \"Under Review\", \"In Progress\"\n   - Design: \"Completed\", \"Ongoing\", \"Client Work\"\n   - Academic: \"Spring 2024\", \"Fall 2023\", \"Ongoing\"\n\n4. **Icon selection** - Choose an appropriate `fallback_icon`:\n   - **Hero icons** (default pack, no prefix needed):\n     - `code-bracket` - Software/development\n     - `academic-cap` - Academic/education\n     - `beaker` - Research/science\n     - `paint-brush` - Art/design\n     - `camera` - Photography\n     - `document-text` - Writing/documentation\n     - `star` - Featured/highlights\n   - **Brand icons** (use `brands/` prefix):\n     - `brands/github` - GitHub projects\n     - `brands/linkedin` - Professional work\n     - `brands/dribbble` - Design work\n   - **Devicon** (use `devicon/` prefix):\n     - `devicon/python` - Python projects\n     - `devicon/react` - React projects\n     - `devicon/docker` - DevOps work\n   - **Emoji** (use `emoji/` prefix or direct unicode):\n     - `emoji/rocket` or 🚀\n     - `emoji/art` or 🎨\n     - `emoji/microscope` or 🔬\n   - **Custom icons**: Place in `assets/media/icons/<pack>/` and use `<pack>/<name>`\n"
  },
  {
    "path": "modules/blox/blox/portfolio/block.html",
    "content": "{{/* Hugo Blox: Portfolio */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{/* Enable Alpine.js and animations for this block */}}\n{{ $page.Store.Set \"has_alpine\" true }}\n{{ $animations_enabled := true }}\n{{ if isset $design \"animations\" }}\n  {{ $animations_enabled = partial \"functions/coerce_bool\" (dict \"value\" (index $design \"animations\") \"default\" true) }}\n{{ end }}\n{{ if $animations_enabled }}\n  {{ $page.Store.Set \"has_animations\" true }}\n{{ end }}\n\n{{/* Query projects */}}\n{{ $query := site.Pages }}\n{{ $filters := index $content \"filters\" }}\n{{ if not (reflect.IsMap $filters) }}{{ $filters = dict }}{{ end }}\n{{ $folders_raw := index $filters \"folders\" }}\n{{ $folders := slice }}\n{{ if reflect.IsSlice $folders_raw }}\n  {{ range $folders_raw }}\n    {{ $folder := strings.TrimSpace (printf \"%v\" .) }}\n    {{ if $folder }}{{ $folders = $folders | append $folder }}{{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $folders_raw) \"string\" }}\n  {{ $folder := strings.TrimSpace $folders_raw }}\n  {{ if $folder }}{{ $folders = slice $folder }}{{ end }}\n{{ end }}\n{{ if eq (len $folders) 0 }}{{ $folders = slice \"projects\" }}{{ end }}\n{{ $query = where $query \"Section\" \"in\" $folders }}\n{{ $query = where $query \"Kind\" \"eq\" \"page\" }}\n\n{{/* Get archive page for \"View All\" link */}}\n{{ $archive_page := \"\" }}\n{{ $main_folder := index $folders 0 }}\n{{ $archive_page = site.GetPage \"Section\" $main_folder }}\n\n{{/* Sort */}}\n{{ $sort_by := \"Date\" }}\n{{ $sort_by_raw := index $content \"sort_by\" }}\n{{ if eq (printf \"%T\" $sort_by_raw) \"string\" }}\n  {{ $sort_by_raw = strings.TrimSpace $sort_by_raw }}\n  {{ if ne $sort_by_raw \"\" }}{{ $sort_by = $sort_by_raw }}{{ end }}\n{{ end }}\n{{ $sort_by = partial \"functions/get_sort_by_parameter\" $sort_by }}\n{{ $sort_ascending := partial \"functions/coerce_bool\" (dict \"value\" (index $content \"sort_ascending\") \"default\" false) }}\n{{ $sort_order := cond $sort_ascending \"asc\" \"desc\" }}\n{{ $query = sort $query $sort_by $sort_order }}\n{{ $all_items := $query }}\n\n{{/* Get filter buttons */}}\n{{ $buttons_raw := index $content \"buttons\" }}\n{{ $buttons := slice }}\n{{ if reflect.IsSlice $buttons_raw }}\n  {{ $buttons = $buttons_raw }}\n{{ else if and $buttons_raw (reflect.IsMap $buttons_raw) }}\n  {{ $buttons = slice $buttons_raw }}\n{{ end }}\n{{ if eq (len $buttons) 0 }}\n  {{ $buttons = slice (dict \"name\" \"All\" \"tag\" \"*\") }}\n{{ end }}\n{{ $default_idx := partial \"functions/coerce_int\" (dict \"value\" (index $content \"default_button_index\") \"default\" 0 \"min\" 0) }}\n{{ $default_tag := \"*\" }}\n{{ if lt $default_idx (len $buttons) }}\n  {{ with index $buttons $default_idx }}\n    {{ if reflect.IsMap . }}\n      {{ with index . \"tag\" }}{{ $default_tag = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ if eq $default_tag \"\" }}{{ $default_tag = \"*\" }}{{ end }}\n\n{{/* Status configuration */}}\n{{ $status_content := index $content \"status\" }}\n{{ if not (reflect.IsMap $status_content) }}{{ $status_content = dict }}{{ end }}\n{{ $status_text_override := \"\" }}\n{{ with index $status_content \"text\" }}\n  {{ if eq (printf \"%T\" .) \"string\" }}{{ $status_text_override = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ end }}\n{{ $status_design := index $design \"status_badge\" }}\n{{ if not (reflect.IsMap $status_design) }}{{ $status_design = dict }}{{ end }}\n{{ $show_status_badge := partial \"functions/coerce_bool\" (dict \"value\" (index $status_design \"enable\") \"default\" true) }}\n\n{{/* Store total count before limiting */}}\n{{ $total_count := len $all_items }}\n\n{{/* Limit per filter while keeping per-button visibility accurate */}}\n{{ $count := partial \"functions/coerce_int\" (dict \"value\" (index $content \"count\") \"default\" 0 \"min\" 0) }}\n{{ $button_items := dict }}\n{{ $allowed_map := dict }}\n\n{{ range $buttons }}\n  {{ if reflect.IsMap . }}\n    {{ $tag := \"*\" }}\n    {{ with index . \"tag\" }}{{ $tag = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n    {{ if eq $tag \"\" }}{{ $tag = \"*\" }}{{ end }}\n    {{ $tag_key := lower $tag }}\n    {{ $items := slice }}\n    {{ if le $count 0 }}\n      {{ if eq $tag_key \"*\" }}\n        {{ $items = $all_items }}\n      {{ else }}\n        {{ $items = where $all_items \"Params.tags\" \"intersect\" (slice $tag_key) }}\n        {{ if eq (len $items) 0 }}\n          {{ $items = where $all_items \"Params.tags\" \"intersect\" (slice $tag) }}\n        {{ end }}\n      {{ end }}\n    {{ else }}\n      {{ if eq $tag_key \"*\" }}\n        {{ $items = first $count $all_items }}\n      {{ else }}\n        {{ $items = first $count (where $all_items \"Params.tags\" \"intersect\" (slice $tag_key)) }}\n        {{ if eq (len $items) 0 }}\n          {{ $items = first $count (where $all_items \"Params.tags\" \"intersect\" (slice $tag)) }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n    {{ $button_items = merge $button_items (dict $tag_key $items) }}\n\n    {{ range $items }}\n      {{ $key := .RelPermalink }}\n      {{ $allowed := slice }}\n      {{ with index $allowed_map $key }}{{ $allowed = . }}{{ end }}\n      {{ if not (in $allowed $tag) }}\n        {{ $allowed = $allowed | append $tag }}\n      {{ end }}\n      {{ $allowed_map = merge $allowed_map (dict $key $allowed) }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Build render list in sorted order, only keeping items that belong to a filter */}}\n{{ $render_items := slice }}\n{{ range $all_items }}\n  {{ if isset $allowed_map .RelPermalink }}\n    {{ $render_items = $render_items | append . }}\n  {{ end }}\n{{ end }}\n\n{{/* Fallback to all items if something went wrong */}}\n{{ if eq (len $render_items) 0 }}\n  {{ $render_items = $all_items }}\n  {{ range $render_items }}\n    {{ $allowed_map = merge $allowed_map (dict .RelPermalink (slice \"*\")) }}\n  {{ end }}\n{{ end }}\n\n{{ $query = $render_items }}\n{{ $default_items := index $button_items (lower $default_tag) | default (slice) }}\n{{ $displayed_count := len $default_items }}\n\n{{/* Columns */}}\n{{ $columns := partial \"functions/coerce_int\" (dict \"value\" (index $design \"columns\") \"default\" 3 \"min\" 1 \"max\" 4) }}\n{{ $grid_class := \"md:grid-cols-2 lg:grid-cols-3\" }}\n{{ if eq $columns 2 }}\n  {{ $grid_class = \"md:grid-cols-2\" }}\n{{ else if eq $columns 4 }}\n  {{ $grid_class = \"md:grid-cols-2 lg:grid-cols-4\" }}\n{{ end }}\n\n{{ $fallback_icon := \"code-bracket\" }}\n{{ $fallback_raw := index $design \"fallback_icon\" }}\n{{ if eq (printf \"%T\" $fallback_raw) \"string\" }}\n  {{ $fallback_icon = $fallback_raw }}\n{{ end }}\n\n<div class=\"mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 py-16\" x-data=\"{ activeFilter: {{ $default_tag | jsonify }} }\">\n  \n  {{/* Header */}}\n  <div class=\"text-center mb-12\">\n    {{ with index $content \"title\" }}\n    <h2 class=\"text-3xl sm:text-4xl font-bold text-gray-900 dark:text-white mb-4\">\n      {{ printf \"%v\" . | emojify | $page.RenderString }}\n    </h2>\n    {{ end }}\n    {{ with index $content \"subtitle\" }}\n    <p class=\"text-lg text-gray-500 dark:text-gray-400 max-w-2xl mx-auto\">\n      {{ printf \"%v\" . | emojify | $page.RenderString }}\n    </p>\n    {{ end }}\n  </div>\n\n  {{/* Filter Buttons */}}\n  {{ if gt (len $buttons) 1 }}\n  <div class=\"flex flex-wrap justify-center gap-2 mb-10\">\n    {{ range $idx, $button := $buttons }}\n    {{ if reflect.IsMap $button }}\n    {{ $button_name := \"\" }}\n    {{ with index $button \"name\" }}{{ $button_name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n    {{ $button_tag := \"*\" }}\n    {{ with index $button \"tag\" }}{{ $button_tag = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n    <button \n      @click=\"activeFilter = {{ $button_tag | jsonify }}\"\n      :class=\"activeFilter === {{ $button_tag | jsonify }} \n        ? 'bg-primary-600 text-white border-primary-600 shadow-lg shadow-primary-500/25' \n        : 'bg-gray-100 dark:bg-white/5 text-gray-700 dark:text-gray-300 border-gray-200 dark:border-white/10 hover:bg-gray-200 dark:hover:bg-white/10 hover:border-gray-300 dark:hover:border-white/20'\"\n      class=\"px-5 py-2.5 rounded-full text-sm font-medium border backdrop-blur-sm transition-all duration-300 ease-out cursor-pointer\"\n    >\n      {{ $button_name | default \"All\" }}\n    </button>\n    {{ end }}\n    {{ end }}\n  </div>\n  {{ end }}\n\n  {{/* Project Grid with staggered reveal animation */}}\n  <div class=\"grid grid-cols-1 {{ $grid_class }} gap-6\" data-stagger=\"100\">\n    {{ range $index, $item := $query }}\n      {{ $item_key := $item.RelPermalink }}\n      {{ $card_allowed_filters := index $allowed_map $item_key }}\n      {{ if not $card_allowed_filters }}{{ $card_allowed_filters = slice \"*\" }}{{ end }}\n      {{ $card_allowed_filters_json := $card_allowed_filters | jsonify }}\n\n      {{/* Get tags as comma-separated string */}}\n      {{ $tags := slice }}\n      {{ $tags_raw := $item.Params.tags }}\n      {{ if reflect.IsSlice $tags_raw }}\n        {{ range $tags_raw }}\n          {{ $tag := strings.TrimSpace (printf \"%v\" .) }}\n          {{ if $tag }}{{ $tags = $tags | append $tag }}{{ end }}\n        {{ end }}\n      {{ else if eq (printf \"%T\" $tags_raw) \"string\" }}\n        {{ $tag_string := strings.TrimSpace $tags_raw }}\n        {{ if $tag_string }}\n          {{ if strings.Contains $tag_string \",\" }}\n            {{ range (split $tag_string \",\") }}\n              {{ $tag := strings.TrimSpace . }}\n              {{ if $tag }}{{ $tags = $tags | append $tag }}{{ end }}\n            {{ end }}\n          {{ else }}\n            {{ $tags = slice $tag_string }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n      \n      {{/* Get status */}}\n      {{ $status := \"\" }}\n      {{ $status_raw := $item.Params.status }}\n      {{ if eq (printf \"%T\" $status_raw) \"string\" }}\n        {{ $status = strings.TrimSpace $status_raw }}\n      {{ end }}\n      {{ $status_display := $status }}\n      {{ if ne $status_text_override \"\" }}\n        {{ $status_display = $status_text_override }}\n      {{ end }}\n      {{ $status_color_source := cond (ne $status \"\" ) $status $status_display }}\n      {{ $status_norm := upper $status_color_source }}\n      {{ $status_class := \"bg-emerald-600 text-white border-emerald-500 shadow-md shadow-emerald-500/30 dark:bg-emerald-500 dark:border-emerald-400\" }}\n      {{ if eq $status_norm \"WIP\" }}\n        {{ $status_class = \"bg-amber-500 text-white border-amber-400 shadow-md shadow-amber-400/30 dark:bg-amber-500\" }}\n      {{ else if eq $status_norm \"ARCHIVED\" }}\n        {{ $status_class = \"bg-gray-600 text-white border-gray-500 shadow-md shadow-gray-500/30 dark:bg-gray-500\" }}\n      {{ end }}\n      {{ $render_status_badge := and $show_status_badge (ne $status_display \"\") }}\n\n      <article \n        x-data=\"{ filters: {{ $card_allowed_filters_json }} }\"\n        x-show=\"filters.includes(activeFilter)\"\n        x-transition:enter=\"transition ease-out duration-300\"\n        x-transition:enter-start=\"opacity-0 scale-95 translate-y-4\"\n        x-transition:enter-end=\"opacity-100 scale-100 translate-y-0\"\n        x-transition:leave=\"transition ease-in duration-200\"\n        x-transition:leave-start=\"opacity-100 scale-100\"\n        x-transition:leave-end=\"opacity-0 scale-95\"\n        class=\"group relative flex flex-col bg-white dark:bg-white/[0.03] backdrop-blur-xl rounded-2xl border border-gray-200 dark:border-white/[0.08] overflow-hidden hover:border-primary-500/50 hover:bg-gray-50 dark:hover:bg-white/[0.06] transition-all duration-300 hover:shadow-xl hover:shadow-primary-500/10 card-hover-lift\"\n      >\n        {{/* Card Header / Image */}}\n        <div class=\"relative h-48 overflow-hidden\">\n          {{ $image := $item.Resources.GetMatch \"{featured,cover,thumbnail}*\" }}\n          {{ if $image }}\n            {{ if strings.Contains $image.MediaType.SubType \"svg\" }}\n              <img \n                src=\"{{ $image.RelPermalink }}\" \n                alt=\"{{ $item.Title }}\"\n                class=\"w-full h-full object-cover transition-transform duration-500 group-hover:scale-110\"\n              >\n            {{ else }}\n              {{ $img := $image.Fill \"600x400 webp\" }}\n              <img \n                src=\"{{ $img.RelPermalink }}\" \n                alt=\"{{ $item.Title }}\"\n                class=\"w-full h-full object-cover transition-transform duration-500 group-hover:scale-110\"\n              >\n            {{ end }}\n          {{ else }}\n            {{/* Gradient placeholder with configurable icon */}}\n            <div class=\"w-full h-full bg-gradient-to-br from-primary-600/40 via-secondary-600/30 to-primary-800/50 flex items-center justify-center\">\n              {{ partial \"functions/get_icon\" (dict \"name\" $fallback_icon \"attributes\" \"class=\\\"w-16 h-16 text-white/30\\\"\") }}\n            </div>\n          {{ end }}\n          \n          {{/* Status Badge */}}\n          {{ if $render_status_badge }}\n          <div class=\"absolute top-3 right-3\">\n            <span class=\"px-2.5 py-1.5 text-xs font-semibold rounded-full border {{ $status_class }}\">\n              {{ $status_display }}\n            </span>\n          </div>\n          {{ end }}\n          \n          {{/* Gradient Overlay */}}\n          <div class=\"absolute inset-0 bg-gradient-to-t from-gray-900/90 via-gray-900/20 to-transparent\"></div>\n        </div>\n\n        {{/* Card Content - use flex-col to push links to bottom */}}\n        <div class=\"p-5 flex flex-col flex-grow\">\n          {{/* Title */}}\n          <h3 class=\"text-lg font-bold text-gray-900 dark:text-white mb-2 group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">\n            <a href=\"{{ $item.RelPermalink }}\" class=\"stretched-link\">\n              {{ $item.Title }}\n            </a>\n          </h3>\n          \n          {{/* Summary */}}\n          {{ $summary := \"\" }}\n          {{ $summary_raw := $item.Params.summary }}\n          {{ if $summary_raw }}\n            {{ $summary = strings.TrimSpace (printf \"%v\" $summary_raw) }}\n          {{ end }}\n          {{ if $summary }}\n          <p class=\"text-sm text-gray-600 dark:text-gray-400 line-clamp-2 mb-4\">\n            {{ $summary | $page.RenderString }}\n          </p>\n          {{ else }}\n          <p class=\"text-sm text-gray-600 dark:text-gray-400 line-clamp-2 mb-4\">\n            {{ $item.Summary | truncate 100 }}\n          </p>\n          {{ end }}\n\n          {{/* Tech Stack Tags - fixed 2-line height for consistency */}}\n          {{ $tech_stack := slice }}\n          {{ $tech_raw := $item.Params.tech_stack }}\n          {{ if reflect.IsSlice $tech_raw }}\n            {{ range $tech_raw }}\n              {{ $tech := strings.TrimSpace (printf \"%v\" .) }}\n              {{ if $tech }}{{ $tech_stack = $tech_stack | append $tech }}{{ end }}\n            {{ end }}\n          {{ else if eq (printf \"%T\" $tech_raw) \"string\" }}\n            {{ $tech_string := strings.TrimSpace $tech_raw }}\n            {{ if $tech_string }}\n              {{ if strings.Contains $tech_string \",\" }}\n                {{ range (split $tech_string \",\") }}\n                  {{ $tech := strings.TrimSpace . }}\n                  {{ if $tech }}{{ $tech_stack = $tech_stack | append $tech }}{{ end }}\n                {{ end }}\n              {{ else }}\n                {{ $tech_stack = slice $tech_string }}\n              {{ end }}\n            {{ end }}\n          {{ end }}\n          {{ if gt (len $tech_stack) 0 }}\n          <div class=\"flex flex-wrap gap-1.5 mb-4 min-h-[3.5rem]\">\n            {{ range first 4 $tech_stack }}\n            <span class=\"px-2 py-0.5 text-xs font-medium rounded-md bg-primary-100 dark:bg-primary-500/10 text-primary-700 dark:text-primary-300 border border-primary-200 dark:border-primary-500/20 h-fit\">\n              {{ . }}\n            </span>\n            {{ end }}\n            {{ if gt (len $tech_stack) 4 }}\n            <span class=\"px-2 py-0.5 text-xs font-medium rounded-md bg-gray-100 dark:bg-gray-500/10 text-gray-600 dark:text-gray-400 h-fit\">\n              +{{ sub (len $tech_stack) 4 }}\n            </span>\n            {{ end }}\n          </div>\n          {{ end }}\n\n          {{/* Action Links - pushed to bottom with mt-auto */}}\n          {{ $links := slice }}\n          {{ $links_raw := $item.Params.links }}\n          {{ $links_iter := slice }}\n          {{ if reflect.IsSlice $links_raw }}\n            {{ $links_iter = $links_raw }}\n          {{ else if and $links_raw (reflect.IsMap $links_raw) }}\n            {{ $links_iter = slice $links_raw }}\n          {{ end }}\n          {{ if gt (len $links_iter) 0 }}\n            {{ range $links_iter }}\n              {{ $url := \"\" }}\n              {{ $label := \"\" }}\n              {{ $icon := \"\" }}\n              {{ $type := \"\" }}\n              {{ $new_tab := false }}\n              {{ if reflect.IsMap . }}\n                {{ with index . \"url\" }}{{ $url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n                {{ if not $url }}\n                  {{ with index . \"link\" }}{{ $url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n                {{ end }}\n                {{ with index . \"label\" }}{{ $label = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n                {{ if not $label }}\n                  {{ with index . \"name\" }}{{ $label = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n                {{ end }}\n                {{ with index . \"type\" }}{{ $type = lower (strings.TrimSpace (printf \"%v\" .)) }}{{ end }}\n                {{ with index . \"icon\" }}{{ $icon = printf \"%v\" . }}{{ end }}\n                {{ $new_tab = partial \"functions/coerce_bool\" (dict \"value\" (index . \"new_tab\") \"default\" false) }}\n              {{ else if eq (printf \"%T\" .) \"string\" }}\n                {{ $url = strings.TrimSpace . }}\n              {{ end }}\n              {{ if $url }}\n                {{ if not $label }}\n                  {{ if eq $type \"github\" }}\n                    {{ $label = i18n \"portfolio_link_code\" | default \"Code\" }}\n                  {{ else if eq $type \"live\" }}\n                    {{ $label = i18n \"portfolio_link_live\" | default \"Live\" }}\n                  {{ else if eq $type \"demo\" }}\n                    {{ $label = i18n \"portfolio_link_demo\" | default \"Demo\" }}\n                  {{ else }}\n                    {{ $label = i18n \"portfolio_link_default\" | default \"Link\" }}\n                  {{ end }}\n                {{ end }}\n                {{ if not $icon }}\n                  {{ if eq $type \"github\" }}\n                    {{ $icon = \"brands/github\" }}\n                  {{ else if eq $type \"live\" }}\n                    {{ $icon = \"globe-alt\" }}\n                  {{ else if eq $type \"demo\" }}\n                    {{ $icon = \"play\" }}\n                  {{ else }}\n                    {{ $icon = \"link\" }}\n                  {{ end }}\n                {{ end }}\n                {{ $links = $links | append (dict \"url\" $url \"label\" $label \"icon\" $icon \"new_tab\" $new_tab) }}\n              {{ end }}\n            {{ end }}\n          {{ end }}\n          {{ if gt (len $links) 0 }}\n          <div class=\"flex items-center gap-3 pt-3 border-t border-gray-100 dark:border-white/5 mt-auto\">\n            {{ range $links }}\n              {{ $icon := index . \"icon\" | default \"link\" }}\n              {{ $label := index . \"label\" | default (i18n \"portfolio_link_default\" | default \"Link\") }}\n              {{ $link_url := index . \"url\" }}\n              {{ $new_tab := partial \"functions/coerce_bool\" (dict \"value\" (index . \"new_tab\") \"default\" false) }}\n              {{ $target := \"\" }}\n              {{ $scheme := (urls.Parse $link_url).Scheme }}\n              {{ if not $scheme }}\n                {{ if not (hasPrefix $link_url \"#\") }}\n                  {{ $link_url = $link_url | relLangURL }}\n                {{ end }}\n                {{ if eq (path.Ext $link_url) \".pdf\" }}{{ $new_tab = true }}{{ end }}\n              {{ else if in (slice \"http\" \"https\") $scheme }}\n                {{ $new_tab = true }}\n              {{ end }}\n              {{ if $new_tab }}\n                {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\" }}\n              {{ end }}\n              <a \n                href=\"{{ $link_url | safeURL }}\" \n                {{ $target | safeHTMLAttr }}\n                class=\"relative z-10 inline-flex items-center gap-1.5 text-sm text-gray-600 dark:text-gray-400 hover:text-primary-600 dark:hover:text-primary-400 transition-colors\"\n                onclick=\"event.stopPropagation();\"\n              >\n                {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class=\\\"w-4 h-4\\\"\") }}\n                <span>{{ $label }}</span>\n              </a>\n            {{ end }}\n          </div>\n          {{ end }}\n        </div>\n      </article>\n    {{ end }}\n  </div>\n\n  {{/* View All Link */}}\n  {{/* Smart default: show link if there are more items than displayed, unless explicitly disabled */}}\n  {{ $archive := index $content \"archive\" }}\n  {{ if not (reflect.IsMap $archive) }}{{ $archive = dict }}{{ end }}\n  {{ $default_show_archive := false }}\n  {{ $default_show_archive = gt $total_count $displayed_count }}\n  {{ $show_archive_link := partial \"functions/coerce_bool\" (dict \"value\" (index $archive \"enable\") \"default\" $default_show_archive) }}\n  {{ if and $show_archive_link $archive_page }}\n    {{ $archive_link := \"\" }}\n    {{ $archive_link_raw := index $archive \"link\" }}\n    {{ if eq (printf \"%T\" $archive_link_raw) \"string\" }}\n      {{ $archive_link = strings.TrimSpace $archive_link_raw }}\n    {{ end }}\n    {{ if not $archive_link }}\n      {{ $archive_link = $archive_page.RelPermalink }}\n    {{ end }}\n    {{ $archive_target := \"\" }}\n    {{ $archive_scheme := (urls.Parse $archive_link).Scheme }}\n    {{ if not $archive_scheme }}\n      {{ if not (hasPrefix $archive_link \"#\") }}\n        {{ $archive_link = $archive_link | relLangURL }}\n      {{ end }}\n    {{ else if in (slice \"http\" \"https\") $archive_scheme }}\n      {{ $archive_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n    {{ end }}\n    \n    {{ $archive_text := \"\" }}\n    {{ $archive_text_raw := index $archive \"text\" }}\n    {{ if eq (printf \"%T\" $archive_text_raw) \"string\" }}\n      {{ $archive_text = strings.TrimSpace $archive_text_raw }}\n    {{ end }}\n    {{ if not $archive_text }}{{ $archive_text = i18n \"portfolio_view_all\" | default \"View All Projects\" }}{{ end }}\n    \n    <div class=\"text-center mt-12\">\n      <a \n        href=\"{{ $archive_link | safeURL }}\" \n        {{ $archive_target | safeHTMLAttr }}\n        class=\"inline-flex items-center gap-2 px-6 py-3 text-sm font-medium text-gray-800 dark:text-white bg-gray-100 dark:bg-white/5 border border-gray-200 dark:border-white/10 rounded-full hover:bg-gray-200 dark:hover:bg-white/10 hover:border-gray-300 dark:hover:border-white/20 transition-all duration-300\"\n      >\n        {{ $archive_text | emojify }}\n        {{ partial \"functions/get_icon\" (dict \"name\" \"arrow-right\" \"attributes\" \"class=\\\"w-4 h-4\\\"\") }}\n      </a>\n    </div>\n  {{ end }}\n</div>\n"
  },
  {
    "path": "modules/blox/blox/portfolio/manifest.json",
    "content": "{\n  \"id\": \"portfolio\",\n  \"name\": \"Portfolio\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"portfolio\", \"projects\", \"filter\", \"alpine\", \"developer\", \"showcase\"],\n  \"description\": \"Display filterable project cards with Alpine.js powered tag filtering, glass morphism styling, and smooth animations\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"portfolio\", \"projects\", \"filtering\", \"alpine.js\", \"developer\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/research-areas/README.md",
    "content": "# Research Areas Block\n\nDisplay your research focus areas with stunning visuals, metrics, and interactive layouts. Perfect for research labs, academic groups, and R&D departments to showcase their areas of expertise.\n\n## Features\n\n- **Multiple Layout Options**: Cards, hexagon, or timeline layouts\n- **Rich Visual Options**: Icons, emojis, images, or gradient backgrounds\n- **Metrics Display**: Team size, publications, funding\n- **Interactive Elements**: Hover effects, status badges, CTAs\n- **Topic Keywords**: Highlight key research topics\n- **Responsive Design**: Beautiful on all devices\n- **Dark Mode Support**: Seamless theme switching\n- **Performance Optimized**: Lazy loading and WebP support\n\n## Layout Options\n\n### Cards Layout (Default)\nModern card-based design with:\n- Large visual header (image/icon/emoji)\n- Rich content area\n- Hover animations\n- Status badges\n- Metrics display\n\n### Hexagon Layout\nUnique hexagonal grid for visual impact:\n- Geometric design\n- Gradient backgrounds\n- Compact information display\n- Great for 3-6 areas\n\n### Timeline Layout\nChronological or priority-based display:\n- Vertical timeline\n- Alternating left/right cards\n- Visual progression\n- Good for research evolution\n\n## Usage Examples\n\n### Basic Research Areas with Cards\n```yaml\nsections:\n  - block: research-areas\n    content:\n      title: Research Focus Areas\n      subtitle: Advancing Science Through Innovation\n      text: Our lab conducts cutting-edge research across multiple domains\n      items:\n        - name: Computational Biology\n          description: Developing algorithms for genomic analysis and protein structure prediction\n          emoji: 🧬\n          gradient: from-green-400 to-blue-500\n          status: active\n          topics:\n            - Genomics\n            - Proteomics\n            - Bioinformatics\n            - Systems Biology\n          team_size: 12 researchers\n          publications: 45 papers\n          funding: $2.5M\n          cta:\n            text: Learn More\n            url: /research/computational-biology\n\n        - name: Machine Learning\n          description: Advancing deep learning methods for scientific discovery\n          emoji: 🤖\n          gradient: from-purple-400 to-pink-500\n          status: active\n          topics:\n            - Deep Learning\n            - Neural Networks\n            - Computer Vision\n            - NLP\n          team_size: 8 researchers\n          publications: 32 papers\n          funding: $1.8M\n\n        - name: Materials Science\n          description: Designing novel materials through computational modeling\n          emoji: 🔬\n          gradient: from-orange-400 to-red-500\n          status: emerging\n          topics:\n            - Nanomaterials\n            - Quantum Materials\n            - Polymers\n          team_size: 6 researchers\n          publications: 28 papers\n          funding: $1.2M\n    design:\n      layout: cards\n```\n\n### Using Icons Instead of Emojis\n```yaml\nitems:\n  - name: Artificial Intelligence\n    description: Building next-generation AI systems\n    icon: hero/cpu-chip\n    gradient: from-blue-500 to-indigo-600\n    # ... rest of configuration\n```\n\n### Using Images\n```yaml\nitems:\n  - name: Climate Science\n    description: Understanding and mitigating climate change\n    image: research/climate-hero.jpg\n    status: active\n    # ... rest of configuration\n```\n\n### Hexagon Layout for Visual Impact\n```yaml\nsections:\n  - block: research-areas\n    content:\n      title: Core Research Pillars\n      items:\n        - name: AI & ML\n          description: Artificial intelligence research\n          icon: hero/cpu-chip\n          gradient: from-blue-400 to-purple-600\n        - name: Quantum\n          description: Quantum computing systems\n          icon: hero/sparkles\n          gradient: from-green-400 to-teal-600\n        # ... more items\n    design:\n      layout: hexagon\n```\n\n### Timeline Layout for Evolution\n```yaml\nsections:\n  - block: research-areas\n    content:\n      title: Research Evolution\n      subtitle: Our Journey of Discovery\n      items:\n        - name: Foundation (2015-2018)\n          description: Established core ML research\n          icon: hero/academic-cap\n        - name: Expansion (2018-2021)\n          description: Added biomedical applications\n          icon: hero/beaker\n        - name: Current Focus (2021-Present)\n          description: AI for scientific discovery\n          icon: hero/sparkles\n    design:\n      layout: timeline\n```\n\n## Configuration Options\n\n### Content Options\n\n- **title**: Main section heading\n- **subtitle**: Section subtitle (accent color)\n- **text**: Description paragraph\n- **items**: Array of research areas\n  - `name`: Area name (required)\n  - `description`: Area description (required)\n  - `icon`: Icon identifier (e.g., 'hero/beaker')\n  - `emoji`: Emoji alternative to icon\n  - `image`: Image path relative to assets/media/\n  - `gradient`: Tailwind gradient classes\n  - `url`: Link to detailed page\n  - `status`: 'active', 'emerging', or 'planning'\n  - `topics`: Array of keywords/topics\n  - `team_size`: Team member count\n  - `publications`: Publication count\n  - `funding`: Funding amount\n  - `cta`: Individual area CTA with text and url\n- **cta**: Global call-to-action button\n\n### Design Options\n\n- **layout**: Visual layout style\n  - `cards`: Modern card grid (default)\n  - `hexagon`: Hexagonal grid\n  - `timeline`: Vertical timeline\n\n## Visual Guidelines\n\n### Gradients\nUse Tailwind gradient classes for visual appeal:\n```yaml\ngradient: from-blue-400 to-purple-600\ngradient: from-green-500 to-teal-400\ngradient: from-orange-400 to-red-500\n```\n\n### Icons vs Emojis vs Images\n- **Icons**: Professional, consistent style\n- **Emojis**: Friendly, universal, no loading\n- **Images**: Rich visuals, specific imagery\n\n### Status Badges\n- `active`: Green - Currently active research\n- `emerging`: Yellow - Growing area\n- `planning`: Blue - Future direction\n\n## Best Practices\n\n1. **Consistency**: Use the same visual type (icons OR emojis OR images) across all areas\n2. **Metrics**: Include quantifiable achievements\n3. **Keywords**: 3-5 relevant topics per area\n4. **Descriptions**: Keep concise (50-100 words)\n5. **CTAs**: Link to detailed pages for each area\n6. **Gradients**: Choose complementary colors\n7. **Status**: Be transparent about research maturity\n\n## Responsive Behavior\n\n### Cards Layout\n- Mobile: Single column\n- Tablet: 2 columns\n- Desktop: 3 columns\n\n### Hexagon Layout\n- Mobile: Stacked hexagons\n- Desktop: Honeycomb grid\n\n### Timeline Layout\n- Mobile: Single column timeline\n- Desktop: Alternating left/right\n\n## Performance Tips\n\n1. **Images**: Optimize to <100KB\n2. **WebP Format**: Use for better compression\n3. **Lazy Loading**: Automatic for images\n4. **Icon Usage**: Prefer icons/emojis over images for speed\n\n## Accessibility\n\n- Semantic HTML structure\n- Proper heading hierarchy\n- Alt text for images\n- Keyboard navigable\n- Screen reader friendly\n- High contrast for text\n\n## Examples by Field\n\n### AI/ML Lab\n```yaml\nitems:\n  - name: Deep Learning\n    emoji: 🧠\n    gradient: from-purple-500 to-pink-500\n  - name: Computer Vision\n    emoji: 👁️\n    gradient: from-blue-500 to-cyan-500\n  - name: NLP\n    emoji: 💬\n    gradient: from-green-500 to-teal-500\n```\n\n### Biology Lab\n```yaml\nitems:\n  - name: Genomics\n    emoji: 🧬\n    gradient: from-green-400 to-emerald-600\n  - name: Cell Biology\n    emoji: 🦠\n    gradient: from-purple-400 to-indigo-600\n  - name: Neuroscience\n    emoji: 🧠\n    gradient: from-pink-400 to-rose-600\n```\n\n### Physics Lab\n```yaml\nitems:\n  - name: Quantum Computing\n    emoji: ⚛️\n    gradient: from-indigo-500 to-purple-600\n  - name: Particle Physics\n    emoji: 🌌\n    gradient: from-blue-500 to-indigo-600\n  - name: Condensed Matter\n    emoji: 💎\n    gradient: from-cyan-500 to-blue-600\n```\n"
  },
  {
    "path": "modules/blox/blox/research-areas/block.html",
    "content": "{{/* Hugo Blox: Research Areas Block */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $layout := \"cards\" }}\n{{ $layout_raw := index $design \"layout\" }}\n{{ if eq (printf \"%T\" $layout_raw) \"string\" }}\n  {{ $layout_candidate := lower (strings.TrimSpace $layout_raw) }}\n  {{ if in (slice \"cards\" \"hexagon\" \"timeline\") $layout_candidate }}\n    {{ $layout = $layout_candidate }}\n  {{ end }}\n{{ end }}\n\n{{ $title := \"\" }}\n{{ $title_raw := index $content \"title\" }}\n{{ if $title_raw }}\n  {{ $title = strings.TrimSpace (printf \"%v\" $title_raw) }}\n{{ end }}\n{{ if $title }}{{ $title = $title | emojify | $page.RenderString }}{{ end }}\n\n{{ $subtitle := \"\" }}\n{{ $subtitle_raw := index $content \"subtitle\" }}\n{{ if $subtitle_raw }}\n  {{ $subtitle = strings.TrimSpace (printf \"%v\" $subtitle_raw) }}\n{{ end }}\n{{ if $subtitle }}{{ $subtitle = $subtitle | emojify | $page.RenderString }}{{ end }}\n\n{{ $text := \"\" }}\n{{ $text_raw := index $content \"text\" }}\n{{ if $text_raw }}\n  {{ $text = strings.TrimSpace (printf \"%v\" $text_raw) }}\n{{ end }}\n{{ if $text }}{{ $text = $text | emojify | $page.RenderString }}{{ end }}\n\n{{ $items_raw := index $content \"items\" }}\n{{ $items_iter := slice }}\n{{ if reflect.IsSlice $items_raw }}\n  {{ $items_iter = $items_raw }}\n{{ else if and $items_raw (reflect.IsMap $items_raw) }}\n  {{ $items_iter = slice $items_raw }}\n{{ end }}\n\n{{ $items := slice }}\n{{ if gt (len $items_iter) 0 }}\n  {{ range $items_iter }}\n    {{ if reflect.IsMap . }}\n      {{ $name := \"\" }}\n      {{ $description := \"\" }}\n      {{ $icon := \"\" }}\n      {{ $image := \"\" }}\n      {{ $gradient := \"\" }}\n      {{ $url := \"\" }}\n      {{ $status := \"\" }}\n      {{ $topics := slice }}\n      {{ $team_size := \"\" }}\n      {{ $publications := \"\" }}\n      {{ $funding := \"\" }}\n      {{ $cta_url := \"\" }}\n      {{ $cta_text := \"\" }}\n      {{ $cta_icon := \"\" }}\n\n      {{ with index . \"name\" }}{{ $name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"description\" }}{{ $description = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"icon\" }}{{ $icon = printf \"%v\" . }}{{ end }}\n      {{ with index . \"image\" }}{{ $image = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"gradient\" }}{{ $gradient = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"url\" }}{{ $url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"status\" }}{{ $status = lower (strings.TrimSpace (printf \"%v\" .)) }}{{ end }}\n\n      {{ $topics_raw := index . \"topics\" }}\n      {{ if reflect.IsSlice $topics_raw }}\n        {{ range $topics_raw }}\n          {{ $topic := strings.TrimSpace (printf \"%v\" .) }}\n          {{ if $topic }}{{ $topics = $topics | append $topic }}{{ end }}\n        {{ end }}\n      {{ else if eq (printf \"%T\" $topics_raw) \"string\" }}\n        {{ $topic_string := strings.TrimSpace $topics_raw }}\n        {{ if $topic_string }}\n          {{ if strings.Contains $topic_string \",\" }}\n            {{ range (split $topic_string \",\") }}\n              {{ $topic := strings.TrimSpace . }}\n              {{ if $topic }}{{ $topics = $topics | append $topic }}{{ end }}\n            {{ end }}\n          {{ else }}\n            {{ $topics = slice $topic_string }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n\n      {{ with index . \"team_size\" }}{{ $team_size = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"publications\" }}{{ $publications = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"funding\" }}{{ $funding = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n      {{ $cta_raw := index . \"cta\" }}\n      {{ if reflect.IsMap $cta_raw }}\n        {{ with index $cta_raw \"url\" }}{{ $cta_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $cta_raw \"text\" }}{{ $cta_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $cta_raw \"icon\" }}{{ $cta_icon = printf \"%v\" . }}{{ end }}\n      {{ end }}\n\n      {{ if or $name $description }}\n        {{ $items = $items | append (dict \"name\" $name \"description\" $description \"icon\" $icon \"image\" $image \"gradient\" $gradient \"url\" $url \"status\" $status \"topics\" $topics \"team_size\" $team_size \"publications\" $publications \"funding\" $funding \"cta\" (dict \"url\" $cta_url \"text\" $cta_text \"icon\" $cta_icon)) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $cta := index $content \"cta\" }}\n{{ if not (reflect.IsMap $cta) }}{{ $cta = dict }}{{ end }}\n{{ $cta_text := \"\" }}\n{{ $cta_link := \"\" }}\n{{ $cta_icon := \"\" }}\n{{ with index $cta \"text\" }}{{ $cta_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ with index $cta \"url\" }}{{ $cta_link = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ with index $cta \"icon\" }}{{ $cta_icon = printf \"%v\" . }}{{ end }}\n\n<div class=\"py-16 sm:py-20 lg:py-24 px-4 sm:px-6 lg:px-8\">\n  <div class=\"max-w-7xl mx-auto\">\n    \n    {{/* Section Header */}}\n    <div class=\"text-center max-w-3xl mx-auto mb-12 lg:mb-16\">\n      {{ with $title }}\n      <h2 class=\"text-3xl sm:text-4xl lg:text-5xl font-bold text-gray-900 dark:text-white tracking-tight mb-4\">\n        {{ . }}\n      </h2>\n      {{ end }}\n      \n      {{ with $subtitle }}\n      <p class=\"text-xl text-primary-600 dark:text-primary-400 font-medium mb-3\">\n        {{ . }}\n      </p>\n      {{ end }}\n      \n      {{ with $text }}\n      <p class=\"text-lg text-gray-600 dark:text-gray-400\">\n        {{ . }}\n      </p>\n      {{ end }}\n    </div>\n\n    {{/* Cards Layout */}}\n    {{ if eq $layout \"cards\" }}\n    <div class=\"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 lg:gap-10\">\n      {{ range $idx, $item := $items }}\n      {{ $name := index $item \"name\" }}\n      {{ $description := index $item \"description\" }}\n      {{ $icon := index $item \"icon\" }}\n      {{ $image := index $item \"image\" }}\n      {{ $gradient := index $item \"gradient\" | default \"from-primary-400 to-secondary-400\" }}\n      {{ $item_url := index $item \"url\" }}\n      {{ $status := index $item \"status\" }}\n      {{ $topics := index $item \"topics\" }}\n      {{ $team_size := index $item \"team_size\" }}\n      {{ $publications := index $item \"publications\" }}\n      {{ $funding := index $item \"funding\" }}\n      {{ $item_cta := index $item \"cta\" }}\n      {{ $item_cta_url := \"\" }}\n      {{ $item_cta_text := \"\" }}\n      {{ $item_cta_icon := \"\" }}\n      {{ if reflect.IsMap $item_cta }}\n        {{ with index $item_cta \"url\" }}{{ $item_cta_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $item_cta \"text\" }}{{ $item_cta_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $item_cta \"icon\" }}{{ $item_cta_icon = printf \"%v\" . }}{{ end }}\n      {{ end }}\n      <div class=\"group relative\">\n        <div class=\"h-full bg-white dark:bg-gray-800 rounded-2xl shadow-lg hover:shadow-2xl transition-all duration-300 transform hover:-translate-y-2 overflow-hidden flex flex-col\">\n          \n          {{/* Card Image/Icon Header */}}\n          {{ $header_content := \"\" }}\n          {{ if $image }}\n            {{/* Resolve image from page bundle, site assets, remote, or static URLs */}}\n            {{ $image_resource := false }}\n            {{ $image_url := \"\" }}\n            {{ $image_path := strings.TrimSpace (printf \"%v\" $image) }}\n            {{ $is_remote := or (strings.HasPrefix $image_path \"http://\") (strings.HasPrefix $image_path \"https://\") }}\n\n            {{ if $is_remote }}\n              {{ $remote := try (resources.GetRemote $image_path) }}\n              {{ if and $remote (not $remote.Err) }}\n                {{ $image_resource = $remote.Value }}\n              {{ else }}\n                {{ $image_url = $image_path }}\n              {{ end }}\n            {{ else }}\n              {{ $image_path = strings.TrimPrefix \"/\" $image_path }}\n              {{ $image_path = strings.TrimPrefix \"./\" $image_path }}\n              {{ $image_path = strings.TrimPrefix \"assets/\" $image_path }}\n              {{ $image_path = strings.TrimPrefix \"media/\" $image_path }}\n              {{ $normalized := path.Clean $image_path }}\n\n              {{ if and $normalized (ne $normalized \".\") }}\n                {{ with $page }}\n                  {{ $image_resource = (.Resources.ByType \"image\").GetMatch $normalized }}\n                {{ end }}\n                {{ if not $image_resource }}\n                  {{ $image_resource = resources.Get (path.Join \"media\" $normalized) }}\n                {{ end }}\n                {{ if not $image_resource }}\n                  {{ $image_url = printf \"/media/%s\" $normalized }}\n                {{ end }}\n              {{ end }}\n            {{ end }}\n\n            {{ $img := $image_resource }}\n            {{ if $img }}\n              {{ $img = $img.Fill \"600x400 Center webp\" }}\n              {{ $alt := $name | plainify }}\n              {{ $header_content = printf \"<img src=\\\"%s\\\" alt=\\\"%s\\\" class=\\\"w-full h-full object-cover opacity-80 group-hover:opacity-100 group-hover:scale-110 transition-all duration-500\\\">\" $img.RelPermalink $alt }}\n            {{ else if $image_url }}\n              {{ $alt := $name | plainify }}\n              {{ $is_external := or (strings.HasPrefix $image_url \"http://\") (strings.HasPrefix $image_url \"https://\") }}\n              {{ $src := cond $is_external $image_url ($image_url | relURL) }}\n              {{ $header_content = printf \"<img src=\\\"%s\\\" alt=\\\"%s\\\" class=\\\"w-full h-full object-cover opacity-80 group-hover:opacity-100 group-hover:scale-110 transition-all duration-500\\\">\" $src $alt }}\n            {{ end }}\n          {{ else if $icon }}\n            {{ $icon_html := partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class=\\\"w-24 h-24 text-white/80 group-hover:scale-110 transition-transform duration-300\\\"\") }}\n            {{ $header_content = printf \"<div class=\\\"absolute inset-0 flex items-center justify-center\\\">%s</div>\" $icon_html }}\n          {{ end }}\n\n          {{ $item_cta_link := \"\" }}\n          {{ $item_cta_target := \"\" }}\n          {{ if $item_cta_url }}\n            {{ $item_cta_link = $item_cta_url }}\n            {{ $item_cta_scheme := (urls.Parse $item_cta_link).Scheme }}\n            {{ if not $item_cta_scheme }}\n              {{ if not (hasPrefix $item_cta_link \"#\") }}\n                {{ $item_cta_link = $item_cta_link | relLangURL }}\n              {{ end }}\n            {{ else if in (slice \"http\" \"https\") $item_cta_scheme }}\n              {{ $item_cta_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n            {{ end }}\n          {{ end }}\n\n          {{ if and $item_cta_link $header_content }}\n            <a href=\"{{ $item_cta_link | safeURL }}\" {{ $item_cta_target | safeHTMLAttr }} class=\"block relative h-48 bg-gradient-to-br {{ $gradient }} overflow-hidden\">\n              {{ $header_content | safeHTML }}\n            </a>\n          {{ else }}\n            <div class=\"relative h-48 bg-gradient-to-br {{ $gradient }} overflow-hidden\">\n              {{ $header_content | safeHTML }}\n            </div>\n          {{ end }}\n            \n          \n          {{/* Status Badge */}}\n          {{ with $status }}\n          <div class=\"absolute top-4 right-4 z-10\">\n            <span class=\"px-3 py-1 bg-white/90 dark:bg-gray-900/90 backdrop-blur text-xs font-semibold rounded-full\n              {{ if eq . \"active\" }}text-green-600 dark:text-green-400\n              {{ else if eq . \"emerging\" }}text-yellow-600 dark:text-yellow-400\n              {{ else if eq . \"planning\" }}text-blue-600 dark:text-blue-400\n              {{ end }}\">\n              {{ . | title }}\n            </span>\n          </div>\n          {{ end }}\n\n          {{/* Card Content - Flexible layout */}}\n          <div class=\"flex flex-col flex-1 p-6\">\n            {{/* Main Content */}}\n            <div class=\"flex-1\">\n              <h3 class=\"text-xl font-bold text-gray-900 dark:text-white mb-3\">\n                {{ if $item_url }}\n                {{ $item_link := $item_url }}\n                {{ $item_target := \"\" }}\n                {{ $item_scheme := (urls.Parse $item_link).Scheme }}\n                {{ if not $item_scheme }}\n                  {{ if not (hasPrefix $item_link \"#\") }}\n                    {{ $item_link = $item_link | relLangURL }}\n                  {{ end }}\n                {{ else if in (slice \"http\" \"https\") $item_scheme }}\n                  {{ $item_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n                {{ end }}\n                <a href=\"{{ $item_link | safeURL }}\" {{ $item_target | safeHTMLAttr }} class=\"hover:text-primary-600 dark:hover:text-primary-400 transition-colors\">\n                  {{ $name }}\n                  {{ partial \"functions/get_icon\" (dict \"name\" \"hero/arrow-top-right-on-square\" \"attributes\" \"class=\\\"inline-block w-4 h-4 ml-1\\\"\") }}\n                </a>\n                {{ else }}\n                  {{ $name }}\n                {{ end }}\n              </h3>\n              \n              <p class=\"text-gray-600 dark:text-gray-400 mb-4\">\n                {{ $description | $page.RenderString }}\n              </p>\n              \n              {{/* Key Topics/Keywords */}}\n              {{ with $topics }}\n              <div class=\"flex flex-wrap gap-2 mb-6\">\n                {{ range first 3 . }}\n                <span class=\"inline-block px-2 py-1 bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-300 text-xs rounded\">\n                  {{ . }}\n                </span>\n                {{ end }}\n                {{ if gt (len .) 3 }}\n                <span class=\"inline-block px-2 py-1 text-gray-500 dark:text-gray-400 text-xs\">\n                  +{{ sub (len .) 3 }} more\n                </span>\n                {{ end }}\n              </div>\n              {{ end }}\n            </div>\n            \n            {{/* Footer Section - Always at bottom */}}\n            <div class=\"mt-auto\">\n              {{/* Stats/Metrics */}}\n              {{ if or $team_size $publications $funding }}\n              <div class=\"grid grid-cols-3 gap-3 pt-4 border-t border-gray-200 dark:border-gray-700 mb-4\">\n                {{ with $team_size }}\n                <div class=\"flex flex-col items-center text-center text-gray-500 dark:text-gray-400\">\n                  {{ partial \"functions/get_icon\" (dict \"name\" \"hero/user-group\" \"attributes\" \"class=\\\"w-4 h-4 mx-auto mb-1\\\"\") }}\n                  <span class=\"text-xs leading-tight\">{{ . | replaceRE \" researchers\" \"\" }}</span>\n                  <span class=\"text-xs text-gray-400\">team</span>\n                </div>\n                {{ end }}\n                {{ with $publications }}\n                <div class=\"flex flex-col items-center text-center text-gray-500 dark:text-gray-400\">\n                  {{ partial \"functions/get_icon\" (dict \"name\" \"hero/document-text\" \"attributes\" \"class=\\\"w-4 h-4 mx-auto mb-1\\\"\") }}\n                  <span class=\"text-xs leading-tight\">{{ . | replaceRE \" papers\" \"\" }}</span>\n                  <span class=\"text-xs text-gray-400\">papers</span>\n                </div>\n                {{ end }}\n                {{ with $funding }}\n                <div class=\"flex flex-col items-center text-center text-gray-500 dark:text-gray-400\">\n                  {{ partial \"functions/get_icon\" (dict \"name\" \"hero/currency-dollar\" \"attributes\" \"class=\\\"w-4 h-4 mx-auto mb-1\\\"\") }}\n                  <span class=\"text-xs leading-tight\">{{ . }}</span>\n                  <span class=\"text-xs text-gray-400\">funding</span>\n                </div>\n                {{ end }}\n              </div>\n              {{ end }}\n              \n              {{/* Call to Action */}}\n              {{ if and $item_cta_link $item_cta_text }}\n              <a href=\"{{ $item_cta_link | safeURL }}\" {{ $item_cta_target | safeHTMLAttr }}\n                 class=\"inline-flex items-center w-full justify-center px-4 py-2 bg-primary-50 dark:bg-primary-900/20 text-primary-600 hover:text-primary-700 dark:text-primary-400 dark:hover:text-primary-300 font-medium text-sm rounded-lg hover:bg-primary-100 dark:hover:bg-primary-900/30 transition-all duration-300\">\n                {{ $item_cta_text }}\n                {{ partial \"functions/get_icon\" (dict \"name\" \"hero/arrow-right\" \"attributes\" \"class=\\\"ml-1 w-4 h-4\\\"\") }}\n              </a>\n              {{ end }}\n            </div>\n          </div>\n        </div>\n      </div>\n      {{ end }}\n    </div>\n    \n    {{/* Hexagon Layout */}}\n    {{ else if eq $layout \"hexagon\" }}\n    <div class=\"flex flex-wrap justify-center gap-8 lg:gap-4\">\n      {{ range $idx, $item := $items }}\n      {{ $name := index $item \"name\" }}\n      {{ $description := index $item \"description\" }}\n      {{ $icon := index $item \"icon\" }}\n      {{ $gradient := index $item \"gradient\" | default \"from-primary-400 to-secondary-400\" }}\n      <div class=\"hexagon-container group\">\n        <div class=\"hexagon bg-gradient-to-br {{ $gradient }} shadow-xl hover:shadow-2xl transition-all duration-300\">\n          <div class=\"hexagon-content\">\n            {{ if $icon }}\n              {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class=\\\"w-12 h-12 text-white mb-3\\\"\") }}\n            {{ end }}\n            <h3 class=\"text-lg font-bold text-white mb-2\">{{ $name }}</h3>\n            <p class=\"text-white/90 text-sm\">{{ $description | truncate 60 }}</p>\n          </div>\n        </div>\n      </div>\n      {{ end }}\n    </div>\n    \n    {{/* Timeline Layout */}}\n    {{ else if eq $layout \"timeline\" }}\n    <div class=\"relative\">\n      {{/* Vertical Line */}}\n      <div class=\"absolute left-1/2 transform -translate-x-1/2 w-1 h-full bg-gradient-to-b from-primary-400 to-secondary-400\"></div>\n      \n      <div class=\"space-y-12\">\n        {{ range $idx, $item := $items }}\n        {{ $name := index $item \"name\" }}\n        {{ $description := index $item \"description\" }}\n        {{ $icon := index $item \"icon\" }}\n        <div class=\"relative flex items-center {{ if eq (mod $idx 2) 0 }}justify-start{{ else }}justify-end{{ end }}\">\n          {{/* Timeline dot */}}\n          <div class=\"absolute left-1/2 transform -translate-x-1/2 w-8 h-8 bg-white dark:bg-gray-800 border-4 border-primary-500 rounded-full z-10\"></div>\n          \n          <div class=\"w-5/12 {{ if eq (mod $idx 2) 1 }}mr-auto{{ end }}\">\n            <div class=\"bg-white dark:bg-gray-800 p-6 rounded-xl shadow-lg hover:shadow-xl transition-shadow\">\n              <div class=\"flex items-center gap-3 mb-3\">\n                {{ if $icon }}\n                  <div class=\"w-10 h-10 bg-primary-100 dark:bg-primary-900/50 rounded-full flex items-center justify-center\">\n                    {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class=\\\"w-5 h-5 text-primary-600 dark:text-primary-400\\\"\") }}\n                  </div>\n                {{ end }}\n                <h3 class=\"text-lg font-bold text-gray-900 dark:text-white\">{{ $name }}</h3>\n              </div>\n              <p class=\"text-gray-600 dark:text-gray-400\">{{ $description | $page.RenderString }}</p>\n            </div>\n          </div>\n        </div>\n        {{ end }}\n      </div>\n    </div>\n    {{ end }}\n    \n    {{/* Global Call to Action */}}\n    {{ if and $cta_link $cta_text }}\n    {{ $cta_target := \"\" }}\n    {{ $cta_scheme := (urls.Parse $cta_link).Scheme }}\n    {{ if not $cta_scheme }}\n      {{ if not (hasPrefix $cta_link \"#\") }}\n        {{ $cta_link = $cta_link | relLangURL }}\n      {{ end }}\n    {{ else if in (slice \"http\" \"https\") $cta_scheme }}\n      {{ $cta_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n    {{ end }}\n    <div class=\"mt-12 text-center\">\n      <a href=\"{{ $cta_link | safeURL }}\" {{ $cta_target | safeHTMLAttr }}\n         class=\"inline-flex items-center px-6 py-3 bg-primary-600 hover:bg-primary-700 text-white font-medium rounded-lg shadow hover:shadow-lg transition-all duration-300\">\n        {{ $cta_text }}\n        {{ with $cta_icon }}\n        {{ partial \"functions/get_icon\" (dict \"name\" . \"attributes\" \"class=\\\"ml-2 w-5 h-5\\\"\") }}\n        {{ end }}\n      </a>\n    </div>\n    {{ end }}\n  </div>\n</div>\n\n{{/* Custom CSS for Hexagon Layout */}}\n{{ if eq $layout \"hexagon\" }}\n<style>\n.hexagon-container {\n  position: relative;\n  width: 200px;\n  height: 200px;\n  margin: 30px;\n}\n\n.hexagon {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  transition: transform 0.3s ease;\n}\n\n.hexagon:hover {\n  transform: scale(1.05);\n}\n\n.hexagon-content {\n  text-align: center;\n  padding: 20px;\n}\n\n@media (max-width: 768px) {\n  .hexagon-container {\n    width: 150px;\n    height: 150px;\n  }\n}\n</style>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/blox/research-areas/manifest.json",
    "content": "{\n  \"id\": \"research-areas\",\n  \"name\": \"Research Areas\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"research\", \"areas\", \"focus\", \"topics\", \"science\", \"lab\", \"academic\", \"showcase\"],\n  \"description\": \"Display research focus areas with rich visuals, metrics, and interactive layouts\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"static-site\", \"research\", \"areas\", \"academic\", \"lab\", \"science\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/resume-awards/README.md",
    "content": "# Resume Awards Block\n\n**Highlight your achievements with professional elegance**\n\nShowcase your professional accomplishments, certifications, and awards with the Resume Awards block - a sophisticated component that presents your credentials in an organized, visually appealing format that builds trust and demonstrates expertise.\n\n## ✨ Key Features\n\n- **Professional Cards**: Clean, shadowed card design for each award or certification\n- **Icon Integration**: Add per-award icons (e.g., trophy, badge) for instant visual cues\n- **Certificate Links**: Direct links to verify credentials with proper external link handling\n- **Date Formatting**: Customizable date display (month/year format by default)\n- **Markdown Support**: Rich text formatting for award titles and descriptions\n- **Chronological Sorting**: Automatic sorting by date (newest first)\n- **Responsive Layout**: Perfect display across all screen sizes\n\n## 🎯 Perfect For\n\n- **Academic Professionals**: Showcase research awards, grants, and honors\n- **Industry Experts**: Display professional certifications and recognitions\n- **Corporate Leaders**: Highlight leadership awards and company recognitions\n- **Freelancers**: Build credibility with client awards and industry recognition\n- **Consultants**: Demonstrate expertise through professional certifications\n- **Creative Professionals**: Feature competition wins and industry awards\n\n## 🚀 Why Choose Resume Awards Block?\n\n**Credibility Building**: Professional presentation of achievements builds immediate trust\n\n**Verification Ready**: Direct links to certificates enable easy credential verification\n\n**Visual Organization**: Card-based layout makes achievements easy to scan and understand\n\n**Professional Standards**: Consistent formatting that meets CV and portfolio standards\n\n## 📊 Professional Benefits\n\n- **Enhanced Credibility**: Visual display of achievements builds professional authority\n- **Easy Verification**: Certificate links provide transparency and trust\n- **Organized Presentation**: Clean layout prevents information overload\n- **Mobile Professional**: Responsive design ensures professional appearance on all devices\n\n## 💡 Strategic Advantages\n\n- **Competitive Edge**: Prominent credential display differentiates you from competitors\n- **Trust Signals**: Awards and certifications reduce client hesitation\n- **Expertise Proof**: Concrete evidence of your skills and knowledge\n- **Professional Brand**: Consistent, polished presentation reinforces your personal brand\n\n## 🎨 Design Philosophy\n\n- **Visual Hierarchy**: Most recent and important awards get prominence\n- **Clean Aesthetics**: Professional card design that doesn't distract from content\n- **Information Balance**: Right amount of detail without overwhelming visitors\n- **Brand Integration**: Certifying organization icons add visual interest and authenticity\n\nPerfect for professionals, academics, consultants, and anyone who wants to showcase their achievements in a format that builds confidence and demonstrates expertise. Your accomplishments deserve professional presentation.\n"
  },
  {
    "path": "modules/blox/blox/resume-awards/block.html",
    "content": "{{/* Hugo Blox: Awards */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $username := \"me\" }}\n{{ $username_raw := index $content \"username\" }}\n{{ if eq (printf \"%T\" $username_raw) \"string\" }}\n  {{ $username = strings.TrimSpace $username_raw }}\n{{ end }}\n{{ $profile := partial \"functions/get_author_profile\" $username }}\n{{ $awards_raw := $profile.awards }}\n\n{{ $date_format := \"January 2006\" }}\n{{ $date_format_raw := index $design \"date_format\" }}\n{{ if eq (printf \"%T\" $date_format_raw) \"string\" }}\n  {{ $date_format = strings.TrimSpace $date_format_raw | default \"January 2006\" }}\n{{ end }}\n\n{{ $awards_iter := slice }}\n{{ if reflect.IsSlice $awards_raw }}\n  {{ $awards_iter = $awards_raw }}\n{{ else if reflect.IsMap $awards_raw }}\n  {{ range $awards_raw }}\n    {{ $awards_iter = $awards_iter | append . }}\n  {{ end }}\n{{ end }}\n\n{{ $awards := slice }}\n{{ if gt (len $awards_iter) 0 }}\n  {{ range $awards_iter }}\n    {{ if reflect.IsMap . }}\n      {{ $title := \"\" }}\n      {{ $icon := \"\" }}\n      {{ $url := \"\" }}\n      {{ $awarder := \"\" }}\n      {{ $date := \"\" }}\n      {{ $date_start := \"\" }}\n      {{ $summary := \"\" }}\n      {{ $certificate_url := \"\" }}\n\n      {{ with index . \"title\" }}{{ $title = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"icon\" }}{{ $icon = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"url\" }}{{ $url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"awarder\" }}{{ $awarder = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"date\" }}{{ $date = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"date_start\" }}{{ $date_start = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"summary\" }}{{ $summary = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"certificate_url\" }}{{ $certificate_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n      {{ if $title }}\n        {{ $date_sort := $date | default $date_start }}\n        {{ $awards = $awards | append (dict \"title\" $title \"icon\" $icon \"url\" $url \"awarder\" $awarder \"date\" $date \"date_start\" $date_start \"summary\" $summary \"certificate_url\" $certificate_url \"date_sort\" $date_sort) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $title := \"\" }}\n{{ $title_raw := index $content \"title\" }}\n{{ if $title_raw }}\n  {{ $title = strings.TrimSpace (printf \"%v\" $title_raw) }}\n{{ end }}\n\n{{ $text := \"\" }}\n{{ $text_raw := index $content \"text\" }}\n{{ if $text_raw }}\n  {{ $text = strings.TrimSpace (printf \"%v\" $text_raw) }}\n{{ end }}\n\n<div class=\"flex flex-col items-center max-w-prose mx-auto gap-3 justify-center\">\n\n  <div class=\"mb-6 text-3xl font-bold text-gray-900 dark:text-white\">\n    {{ $title | markdownify | emojify }}\n  </div>\n\n  {{ with $text }}<p>{{ . | markdownify | emojify }}</p>{{ end }}\n\n<div class=\"w-full flex flex-col gap-6\">\n{{ if gt (len $awards) 0 }}\n{{ range $idx, $award := sort $awards \"date_sort\" \"desc\" }}\n<div class=\"w-full p-6 bg-white border border-gray-200 rounded-lg shadow dark:bg-gray-800 dark:border-gray-700\">\n  {{- $icon := index $award \"icon\" }}\n  {{ $award_url := index $award \"url\" }}\n  {{ $award_link := \"\" }}\n  {{ $award_target := \"\" }}\n  {{ if $award_url }}\n    {{ $award_link = $award_url }}\n    {{ $scheme := (urls.Parse $award_link).Scheme }}\n    {{ if not $scheme }}\n      {{ if not (hasPrefix $award_link \"#\") }}\n        {{ $award_link = $award_link | relLangURL }}\n      {{ end }}\n      {{ if eq (path.Ext $award_link) \".pdf\" }}{{ $award_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n    {{ else if in (slice \"http\" \"https\") $scheme }}\n      {{ $award_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n    {{ end }}\n  {{ end }}\n  {{ if $award_link }}<a href=\"{{ $award_link | safeURL }}\" {{ $award_target | safeHTMLAttr }}>{{ end }}\n    <h5 class=\"mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white flex items-center gap-2\">\n      {{ with $icon }}\n        <span class=\"inline-flex items-center justify-center w-7 h-7 text-primary-600 dark:text-primary-300\">\n          {{ partial \"functions/get_icon\" (dict \"name\" . \"attributes\" \"class='w-6 h-6'\") }}\n        </span>\n      {{ end }}\n      <span>{{ index $award \"title\" | markdownify | emojify }}</span>\n    </h5>\n  {{ if $award_link }}</a>{{ end }}\n\n  <div class=\"block mb-3 text-sm font-normal leading-none text-gray-500 dark:text-gray-300\">\n    {{ $awarder := index $award \"awarder\" }}\n    {{ if $awarder }}{{ $awarder }} &#8729;{{ end }}\n    {{ $date_value := index $award \"date\" }}\n    {{ $date_start_value := index $award \"date_start\" }}\n    {{ if $date_value }}\n      {{ $parsed := try (time $date_value) }}\n      {{ if not $parsed.Err }}\n        {{ $parsed.Value | time.Format $date_format }}\n      {{ else }}\n        {{ $date_value }}\n      {{ end }}\n    {{ else if $date_start_value }}\n      {{ $parsed := try (time $date_start_value) }}\n      {{ if not $parsed.Err }}\n        {{ $parsed.Value | time.Format $date_format }}\n      {{ else }}\n        {{ $date_start_value }}\n      {{ end }}\n    {{ else }}\n      {{ i18n \"present\" | default \"Present\" }}\n    {{ end }}\n  </div>\n\n  {{ with index $award \"summary\" }}\n  <div class=\"mb-3 font-normal text-gray-500 dark:text-gray-400 prose\">{{ . | markdownify | emojify }}</div>\n  {{end}}\n\n  {{ $certificate_url := index $award \"certificate_url\" }}\n  {{ if $certificate_url }}\n  {{ $certificate_link := $certificate_url }}\n  {{ $certificate_target := \"\" }}\n  {{ $certificate_scheme := (urls.Parse $certificate_link).Scheme }}\n  {{ if not $certificate_scheme }}\n    {{ if not (hasPrefix $certificate_link \"#\") }}\n      {{ $certificate_link = $certificate_link | relLangURL }}\n    {{ end }}\n    {{ if eq (path.Ext $certificate_link) \".pdf\" }}{{ $certificate_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n  {{ else if in (slice \"http\" \"https\") $certificate_scheme }}\n    {{ $certificate_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n  {{ end }}\n  <a href=\"{{ $certificate_link | safeURL }}\" {{ $certificate_target | safeHTMLAttr }} class=\"inline-flex items-center text-primary-600 dark:text-primary-300 hover:underline\">\n    {{ i18n \"see_certificate\" | default \"See certificate\" }}\n    <svg class=\"w-3 h-3 ms-2.5 rtl:rotate-[270deg]\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 18 18\">\n      <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 11v4.833A1.166 1.166 0 0 1 13.833 17H2.167A1.167 1.167 0 0 1 1 15.833V4.167A1.166 1.166 0 0 1 2.167 3h4.618m4.447-2H17v5.768M9.111 8.889l7.778-7.778\"/>\n    </svg>\n  </a>\n  {{ end }}\n</div>\n  {{end}}\n  {{end}}\n</div>\n</div>\n"
  },
  {
    "path": "modules/blox/blox/resume-awards/manifest.json",
    "content": "{\n  \"id\": \"resume-awards\",\n  \"name\": \"Resume Awards\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"resume\",\n  \"tags\": [\"resume\", \"awards\", \"certifications\", \"achievements\", \"credentials\", \"professional\", \"cv\"],\n  \"description\": \"Showcase professional awards and certifications with elegant card layouts and certificate links\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"resume\", \"awards\", \"certifications\", \"cv\", \"professional\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/resume-biography/README.md",
    "content": "# Resume Biography Block\n\n**Make a powerful personal first impression**\n\nPresent yourself professionally with the Resume Biography block - a comprehensive profile component that combines your photo, personal details, social presence, and biography into one compelling, trust-building section.\n\n## ✨ Key Features\n\n- **High-Quality Avatar**: Retina-optimized profile photos with multiple size options (small to xxl)\n- **Flexible Shapes**: Choose from circle, square, or rounded avatar styles\n- **Social Integration**: Beautiful social media links with icon support\n- **Banner Support**: Optional header banner for additional visual impact\n- **Name Pronunciation**: Ruby annotation displays pronunciation guides above your name (set `name.pronunciation` in your author YAML)\n- **Pronoun Support**: Inclusive pronoun display for professional clarity\n- **Organization Links**: Clickable organization affiliations\n- **Download Button**: Optional CV/resume download functionality\n\n## 🎯 Perfect For\n\n- **Academic Profiles**: Researchers, professors, and graduate students\n- **Professional Portfolios**: Consultants, freelancers, and industry experts\n- **Corporate Leadership**: Executive profiles and team member pages\n- **Personal Branding**: Entrepreneurs and thought leaders\n- **Creative Professionals**: Designers, writers, and artists\n- **Job Seekers**: Professional online presence for career opportunities\n\n## 🚀 Why Choose Resume Biography Block?\n\n**Professional Standards**: Meets modern professional profile expectations with comprehensive information display\n\n**Visual Impact**: High-quality imagery and clean layout create strong first impressions\n\n**Social Connectivity**: Integrated social links help build professional networks\n\n**Accessibility First**: Inclusive features like pronunciation guides and pronoun support\n\n## 📊 Personal Branding Benefits\n\n- **Immediate Recognition**: Professional photo creates memorable personal brand\n- **Credibility Signals**: Organization affiliations and social links build trust\n- **Accessibility**: Pronunciation guides (Pinyin, furigana, IPA) displayed above your name help visitors remember and pronounce it correctly\n- **Professional Network**: Social links facilitate professional connections\n\n## 💡 Customization Options\n\n- **Avatar Sizing**: From subtle small avatars to prominent xxl displays\n- **Shape Variety**: Match your brand aesthetic with circle, square, or rounded styles\n- **Banner Integration**: Add context with professional background images\n- **Content Control**: Use custom biography text or pull from author page content\n\n## 🎨 Design Excellence\n\n- **High-Resolution Ready**: 2x retina support ensures crisp images on all screens\n- **Typography Hierarchy**: Clear information structure from name to details\n- **Generous Whitespace**: Clean layout that doesn't overwhelm visitors\n- **Dark Mode Support**: Beautiful presentation in both light and dark themes\n\n## 💼 Professional Impact\n\nPerfect for building authority, establishing credibility, and creating memorable personal brands. Whether you're building a personal website, company profile, or professional portfolio, the Resume Biography block ensures you make the right first impression.\n\nYour professional story deserves professional presentation - create a biography section that opens doors and builds connections.\n\n"
  },
  {
    "path": "modules/blox/blox/resume-biography/block.html",
    "content": "{{/* Hugo Blox: Biography */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $username := \"me\" }}\n{{ $username_raw := index $content \"username\" }}\n{{ if eq (printf \"%T\" $username_raw) \"string\" }}\n  {{ $username = strings.TrimSpace $username_raw }}\n{{ end }}\n{{ $profile := partial \"functions/get_author_profile\" $username }}\n{{ $avatar := $profile.avatar }}\n\n{{/* Avatar customization parameters */}}\n{{ $avatar_size := \"medium\" }}\n{{ $avatar_shape := \"circle\" }}\n{{ $avatar_design := index $design \"avatar\" }}\n{{ if reflect.IsMap $avatar_design }}\n  {{ $size_raw := index $avatar_design \"size\" }}\n  {{ if eq (printf \"%T\" $size_raw) \"string\" }}\n    {{ $size_candidate := lower (strings.TrimSpace $size_raw) }}\n    {{ if in (slice \"small\" \"medium\" \"large\" \"xl\" \"xxl\") $size_candidate }}\n      {{ $avatar_size = $size_candidate }}\n    {{ end }}\n  {{ end }}\n  {{ $shape_raw := index $avatar_design \"shape\" }}\n  {{ if eq (printf \"%T\" $shape_raw) \"string\" }}\n    {{ $shape_candidate := lower (strings.TrimSpace $shape_raw) }}\n    {{ if in (slice \"circle\" \"square\" \"rounded\") $shape_candidate }}\n      {{ $avatar_shape = $shape_candidate }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Size mappings optimized for 2025 standards: display_size -> [display_px, generation_px] */}}\n{{ $size_map := dict \"small\" (slice \"150\" \"300\") \"medium\" (slice \"200\" \"400\") \"large\" (slice \"320\" \"640\") \"xl\" (slice \"400\" \"800\") \"xxl\" (slice \"500\" \"1000\") }}\n{{ $size_config := index $size_map $avatar_size | default (index $size_map \"medium\") }}\n{{ $display_size := index $size_config 0 }}\n{{ $generation_size := index $size_config 1 }}\n\n{{/* Shape class mappings */}}\n{{ $shape_classes := dict \"circle\" \"rounded-full\" \"square\" \"rounded-none\" \"rounded\" \"rounded-lg\" }}\n{{ $shape_class := index $shape_classes $avatar_shape | default \"rounded-full\" }}\n\n{{ $img := \"\" }}\n{{ $banner := index $design \"banner\" }}\n{{ $banner_filename := \"\" }}\n{{ if reflect.IsMap $banner }}\n  {{ with index $banner \"filename\" }}{{ $banner_filename = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ end }}\n{{ if $banner_filename }}\n  {{/* Resolve image from page bundle, site assets, remote, or static URLs */}}\n  {{ $image_resource := false }}\n  {{ $image_url := \"\" }}\n\n  {{ if $banner_filename }}\n    {{ $image_path := strings.TrimSpace (printf \"%v\" $banner_filename) }}\n    {{ $is_remote := or (strings.HasPrefix $image_path \"http://\") (strings.HasPrefix $image_path \"https://\") }}\n\n    {{ if $is_remote }}\n      {{ $remote := try (resources.GetRemote $image_path) }}\n      {{ if and $remote (not $remote.Err) }}\n        {{ $image_resource = $remote.Value }}\n      {{ else }}\n        {{/* If remote fetch fails, fall back to the original URL */}}\n        {{ $image_url = $image_path }}\n      {{ end }}\n    {{ else }}\n      {{/* Normalize common prefixes and dot paths */}}\n      {{ $image_path = strings.TrimPrefix \"/\" $image_path }}\n      {{ $image_path = strings.TrimPrefix \"./\" $image_path }}\n      {{ $image_path = strings.TrimPrefix \"assets/\" $image_path }}\n      {{ $image_path = strings.TrimPrefix \"media/\" $image_path }}\n      {{ $normalized := path.Clean $image_path }}\n\n      {{ if and $normalized (ne $normalized \".\") }}\n        {{/* Prefer page bundle image resources */}}\n        {{ with $page }}\n          {{ $image_resource = (.Resources.ByType \"image\").GetMatch $normalized }}\n        {{ end }}\n\n        {{ if not $image_resource }}\n          {{/* Look in global assets/media - use resources.Get for exact path matching */}}\n          {{ $image_resource = resources.Get (path.Join \"media\" $normalized) }}\n        {{ end }}\n\n        {{ if not $image_resource }}\n          {{/* Static fallback (serves original size) */}}\n          {{ $image_url = printf \"/media/%s\" $normalized }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n\n  {{ $img = $image_resource }}\n  \n  {{ if $img }}\n    {{ $isSVG := eq $img.MediaType.SubType \"svg\" }}\n    {{ $isGIF := eq $img.MediaType.SubType \"gif\" }}\n    {{ if not (or $isSVG $isGIF) }}\n      {{ $responsive := partial \"functions/process_responsive_image.html\" (dict\n          \"image\" $img\n          \"mode\" \"fill\"\n          \"aspect_ratio\" \"16:9\"\n          \"sizes\" (slice 768 1024 1366 1920 2560)\n      ) }}\n      <div class=\"w-full bg-gray-200 dark:bg-gray-900 flex flex-wrap items-center justify-center\">\n        <div class=\"w-full bg-white rounded dark:bg-gray-800\">\n          <div class=\"h-2/4 sm:h-64 overflow-hidden w-full\">\n            <img class=\"w-full object-cover\"\n                 srcset=\"{{ $responsive.srcset }}\"\n                 sizes=\"100vw\"\n                 src=\"{{ $responsive.fallback.RelPermalink }}\"\n                 width=\"{{ $responsive.fallback.Width }}\" \n                 height=\"{{ $responsive.fallback.Height }}\"\n                 alt=\"\" />\n          </div>\n        </div>\n      </div>\n    {{ else }}\n      {{/* Handle SVG/GIF without processing */}}\n      {{ if not $isSVG }}{{ $img = $img.Process \"webp\" }}{{ end }}\n      <div class=\"w-full bg-gray-200 dark:bg-gray-900 flex flex-wrap items-center justify-center\">\n        <div class=\"w-full bg-white rounded dark:bg-gray-800\">\n          <div class=\"h-2/4 sm:h-64 overflow-hidden w-full\">\n            <img class=\"w-full object-cover\"\n                 src=\"{{$img.RelPermalink}}\"\n                 alt=\"\" />\n          </div>\n        </div>\n      </div>\n    {{ end }}\n  {{ else if $image_url }}\n    {{/* Static fallback for remote/unprocessed images */}}\n    {{ $is_external := or (strings.HasPrefix $image_url \"http://\") (strings.HasPrefix $image_url \"https://\") }}\n    <div class=\"w-full bg-gray-200 dark:bg-gray-900 flex flex-wrap items-center justify-center\">\n      <div class=\"w-full bg-white rounded dark:bg-gray-800\">\n        <div class=\"h-2/4 sm:h-64 overflow-hidden w-full\">\n           <img class=\"w-full object-cover\"\n                src=\"{{ if $is_external }}{{ $image_url }}{{ else }}{{ $image_url | relURL }}{{ end }}\"\n                alt=\"\" />\n        </div>\n      </div>\n    </div>\n  {{ end }}\n{{ end }}\n\n{{ $profile_title := \"\" }}\n{{ with $profile.title }}{{ $profile_title = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ $profile_pronouns := \"\" }}\n{{ with $profile.pronouns }}{{ $profile_pronouns = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ $profile_role := \"\" }}\n{{ with $profile.role }}{{ $profile_role = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ $profile_bio := \"\" }}\n{{ with $profile.bio }}{{ $profile_bio = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ $status_icon := \"\" }}\n{{ with $profile.status }}\n  {{ if reflect.IsMap . }}\n    {{ $icon_raw := index . \"icon\" }}\n    {{ if eq (printf \"%T\" $icon_raw) \"string\" }}\n      {{ $status_icon = strings.TrimSpace $icon_raw }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $affiliations := slice }}\n{{ $affiliations_raw := $profile.affiliations }}\n{{ if reflect.IsSlice $affiliations_raw }}\n  {{ range $affiliations_raw }}\n    {{ if reflect.IsMap . }}\n      {{ $name := \"\" }}\n      {{ $url := \"\" }}\n      {{ with index . \"name\" }}{{ $name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"url\" }}{{ $url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if $name }}\n        {{ $affiliations = $affiliations | append (dict \"name\" $name \"url\" $url) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $links := slice }}\n{{ $links_raw := $profile.links }}\n{{ $links_iter := slice }}\n{{ if reflect.IsSlice $links_raw }}\n  {{ $links_iter = $links_raw }}\n{{ else if and $links_raw (reflect.IsMap $links_raw) }}\n  {{ $links_iter = slice $links_raw }}\n{{ end }}\n{{ if gt (len $links_iter) 0 }}\n  {{ range $links_iter }}\n    {{ $url := \"\" }}\n    {{ $icon := \"\" }}\n    {{ $label := \"\" }}\n    {{ if reflect.IsMap . }}\n      {{ with index . \"url\" }}{{ $url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if not $url }}\n        {{ with index . \"link\" }}{{ $url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ end }}\n      {{ with index . \"icon\" }}{{ $icon = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"label\" }}{{ $label = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n    {{ else if eq (printf \"%T\" .) \"string\" }}\n      {{ $url = strings.TrimSpace . }}\n    {{ end }}\n    {{ if $url }}\n      {{ if not $icon }}{{ $icon = \"hero/link\" }}{{ end }}\n      {{ $links = $links | append (dict \"url\" $url \"icon\" $icon \"label\" $label) }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $bio_style := \"\" }}\n{{ $bio_design := index $design \"biography\" }}\n{{ if reflect.IsMap $bio_design }}\n  {{ with index $bio_design \"style\" }}{{ $bio_style = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ end }}\n\n{{ $bio_override := \"\" }}\n{{ $bio_raw := index $content \"text\" }}\n{{ if $bio_raw }}\n  {{ $bio_override = strings.TrimSpace (printf \"%v\" $bio_raw) }}\n{{ end }}\n{{ $bio_content := $profile_bio }}\n{{ if $bio_override }}{{ $bio_content = $bio_override }}{{ end }}\n\n{{ $button := index $content \"button\" }}\n{{ if not (reflect.IsMap $button) }}{{ $button = dict }}{{ end }}\n{{ $button_text := \"\" }}\n{{ $button_link := \"\" }}\n{{ with index $button \"text\" }}{{ $button_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ with index $button \"url\" }}{{ $button_link = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n<div id=\"profile\" class=\"resume-biography flex justify-center items-center flex-col dark:text-white\">\n  {{ if $avatar }}\n\n  <div class=\"avatar-wrapper {{ if $img }}-mt-[105px]{{else}}mt-10{{end}}\" style=\"width: {{$display_size}}px; height: {{$display_size}}px;\">\n    {{ $avatar_image := $avatar.Fill (printf \"%sx%s Center\" $generation_size $generation_size) }}\n    <img class=\"avatar {{$shape_class}} bg-white dark:bg-gray-800 p-1\" src=\"{{ $avatar_image.RelPermalink }}\" alt=\"{{ $profile_title }}\"\n         width=\"{{$display_size}}\" height=\"{{$display_size}}\"\n         style=\"width: {{$display_size}}px; height: {{$display_size}}px; object-fit: cover;\">\n    {{ with $status_icon }}<span class=\"avatar-emoji\">{{ . | emojify }}</span>{{ end }}\n  </div>\n  {{ end }}\n\n  {{/* Extract pronunciation for ruby annotation */}}\n  {{ $name_pronunciation := \"\" }}\n  {{ with $profile.name_pronunciation }}\n    {{ if eq (printf \"%T\" .) \"string\" }}\n      {{ $name_pronunciation = strings.TrimSpace . }}\n    {{ end }}\n  {{ end }}\n\n  {{/* Name with optional ruby pronunciation */}}\n  {{ if and $profile_title $name_pronunciation }}\n    <h1 class=\"text-3xl font-bold mb-2 mt-6\">\n      <ruby class=\"hb-ruby-name\">{{ $profile_title }}<rt>{{ $name_pronunciation }}</rt></ruby>\n    </h1>\n  {{ else }}\n    <div class=\"text-3xl font-bold mb-2 mt-6\">\n      {{- $profile_title -}}\n    </div>\n  {{ end }}\n  {{- with $profile_pronouns -}}\n    <div class=\"text-lg font-normal text-gray-600 dark:text-gray-400 -mt-1 mb-2\">({{ . }})</div>\n  {{- end -}}\n\n  {{ with $profile_role }}<h3 class=\"font-semibold mb-1\">{{ . | markdownify | emojify }}</h3>{{ end }}\n\n  {{ range $affiliations }}\n  <div class=\"mb-2\">\n    {{ $name := index . \"name\" }}\n    {{ $url := index . \"url\" }}\n    {{ if $url }}\n      {{ $link := $url }}\n      {{ $target := \"\" }}\n      {{ $scheme := (urls.Parse $link).Scheme }}\n      {{ if not $scheme }}\n        {{ if not (hasPrefix $link \"#\") }}\n          {{ $link = $link | relLangURL }}\n        {{ end }}\n      {{ else if in (slice \"http\" \"https\") $scheme }}\n        {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n      {{ end }}\n      <a href=\"{{ $link | safeURL }}\" {{ $target | safeHTMLAttr }}>\n        <div>{{ $name }}</div>\n      </a>\n    {{ else }}\n      <div>{{ $name }}</div>\n    {{ end }}\n  </div>\n  {{ end }}\n\n  {{ if gt (len $links) 0 }}\n  <ul class=\"network-icon dark:text-zinc-100\">\n    {{ range $links }}\n      {{ $link := index . \"url\" }}\n      {{ $icon := index . \"icon\" | default \"hero/link\" }}\n      {{ $label := index . \"label\" }}\n      {{ $scheme := (urls.Parse $link).Scheme }}\n      {{ $target := \"\" }}\n      {{ if not $scheme }}\n        {{ if not (hasPrefix $link \"#\") }}\n          {{ $link = $link | relLangURL }}\n        {{ end }}\n        {{ if eq (path.Ext $link) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n      {{ else if in (slice \"http\" \"https\") $scheme }}\n        {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n      {{ end }}\n      {{ $aria := $label | default $icon | default \"link\" }}\n      <li>\n        <a href=\"{{ $link | safeURL }}\" {{ $target | safeHTMLAttr }} aria-label=\"{{ $aria }}\"\n          {{ if $label }} data-toggle=\"tooltip\" data-placement=\"top\" title=\"{{ $label | htmlEscape }}\"{{ end }}>\n          {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"style=\\\"height: 1.5rem;\\\"\")  }}\n        </a>\n      </li>\n    {{ end }}\n  </ul>\n  {{ end }}\n\n  {{ if $bio_content }}\n  <div class=\"pt-2 d-flex justify-content-center prose prose-slate lg:prose-xl dark:prose-invert\">\n    <div class=\"bio-text\" {{ if $bio_style }}{{ (printf \"style=\\\"%s\\\"\" $bio_style) | safeHTMLAttr }}{{ end }}>\n      {{ $bio_content | emojify | $page.RenderString }}\n    </div>\n  </div>\n  {{ end }}\n\n  {{ if and $button_text $button_link }}\n  {{ $button_href := $button_link }}\n  {{ $button_target := \"\" }}\n  {{ $button_scheme := (urls.Parse $button_href).Scheme }}\n  {{ if not $button_scheme }}\n    {{ if not (hasPrefix $button_href \"#\") }}\n      {{ $button_href = $button_href | relLangURL }}\n    {{ end }}\n    {{ if eq (path.Ext $button_href) \".pdf\" }}{{ $button_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n  {{ else if in (slice \"http\" \"https\") $button_scheme }}\n    {{ $button_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n  {{ end }}\n  <a href=\"{{ $button_href | safeURL }}\" {{ $button_target | safeHTMLAttr }} class=\"inline-flex items-center px-4 py-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg transition-colors hover:bg-gray-100 hover:text-gray-900 focus:z-10 focus:ring-4 focus:outline-none focus:ring-gray-200 focus:text-gray-900 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 dark:focus:text-white dark:focus:ring-gray-700\"><svg class=\"w-3.5 h-3.5 me-2.5\" aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 20 20\">\n    <path d=\"M14.707 7.793a1 1 0 0 0-1.414 0L11 10.086V1.5a1 1 0 0 0-2 0v8.586L6.707 7.793a1 1 0 1 0-1.414 1.414l4 4a1 1 0 0 0 1.416 0l4-4a1 1 0 0 0-.002-1.414Z\"/>\n    <path d=\"M18 12h-2.55l-2.975 2.975a3.5 3.5 0 0 1-4.95 0L4.55 12H2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"/>\n  </svg> {{ $button_text }}</a>\n  {{ end }}\n\n</div>\n"
  },
  {
    "path": "modules/blox/blox/resume-biography/manifest.json",
    "content": "{\n  \"id\": \"resume-biography\",\n  \"name\": \"Resume Biography\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"resume\",\n  \"tags\": [\"resume\", \"biography\", \"profile\", \"avatar\", \"social\", \"about\", \"personal\", \"cv\"],\n  \"description\": \"Professional biography section with customizable avatar, social links, and personal information\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"resume\", \"biography\", \"profile\", \"avatar\", \"social\", \"cv\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/resume-biography-3/README.md",
    "content": "# Resume Biography 3 Block\n\n**Comprehensive professional profile with integrated academic details**\n\nPresent a complete professional picture with the Resume Biography 3 block - an expanded biography layout that combines personal information, social presence, education history, and interests in one cohesive, horizontally-oriented section.\n\n## 🛠️ Customization\n\n- **Name sizing**: Adjust the profile heading size to accommodate long names using `design.name.size`:\n  - `compact`: space-friendly for long names\n  - `balanced` (default): matches the demo style\n  - `display`: extra-large for short names\n\n- **Section heading overrides**: Customize any of the three main section headings using `content.headings`:\n  - `about`: Biography section heading (default: \"Professional Summary\" from i18n `about_me`)\n  - `education`: Education section heading (default: from i18n `education`)\n  - `interests`: Interests section heading (default: from i18n `interests`)\n\nExample front matter:\n\n```yaml\nblock: resume-biography-3\ncontent:\n  headings:\n    about: Research Profile\n    education: Academic Background\n    interests: Research Areas\ndesign:\n  name:\n    size: compact\n```\n\n## ✨ Key Features\n\n- **Horizontal Layout**: Desktop-optimized side-by-side arrangement for better space utilization\n- **Integrated Education**: Built-in education timeline with institution details\n- **Interests Section**: Personal interests display for a well-rounded professional image\n- **Name Pronunciation**: Ruby annotation displays pronunciation guides above your name (set `name.pronunciation` in your author YAML)\n- **Social Integration**: Complete social media profile links with proper external handling\n- **Avatar Flexibility**: Multiple size and shape options for personal branding\n- **Academic Icons**: Beautiful education and achievement icons\n- **Responsive Stack**: Gracefully converts to vertical layout on mobile devices\n\n## 🎯 Perfect For\n\n- **Academic Professionals**: Researchers who need education prominently featured\n- **Career Changers**: Professionals highlighting diverse educational backgrounds\n- **Consultants**: Comprehensive profiles that establish expertise across domains\n- **Thought Leaders**: Complete professional picture including personal interests\n- **Graduate Students**: Academic profiles with research interests and education\n- **Multi-Disciplinary Experts**: Professionals with diverse backgrounds and interests\n\n## 🚀 Why Choose Resume Biography 3?\n\n**Complete Picture**: Combines biography, education, and interests for comprehensive professional presentation\n\n**Space Efficient**: Horizontal layout maximizes content display while maintaining readability\n\n**Academic Focus**: Integrated education section perfect for academic and research professionals\n\n**Personal Touch**: Interests section adds humanity to professional profiles\n\n## 📊 Professional Advantages\n\n- **Comprehensive Credibility**: Education and interests create complete professional narrative\n- **Better Engagement**: Personal interests create conversation starters and connections\n- **Academic Authority**: Prominent education display builds academic credibility\n- **Professional Networking**: Complete profile facilitates meaningful professional connections\n\n## 💡 Layout Benefits\n\n- **Desktop Optimization**: Horizontal layout makes excellent use of wider screens\n- **Content Density**: More information displayed in less vertical space\n- **Visual Balance**: Side-by-side layout creates pleasing visual composition\n- **Mobile Adaptation**: Responsive design ensures great experience on all devices\n\n## 🎨 Educational Excellence\n\n- **Institution Recognition**: Clear display of educational credentials\n- **Timeline Clarity**: Chronological education history with proper date formatting\n- **Academic Icons**: Beautiful visual elements that reinforce educational achievements\n- **Degree Emphasis**: Prominent display of areas of study and qualifications\n\nPerfect for academics, researchers, consultants, and professionals who want to present a complete picture of their background, education, and interests in one comprehensive, beautifully designed section.\n\nCreate a professional profile that tells your complete story and opens doors to new opportunities.\n"
  },
  {
    "path": "modules/blox/blox/resume-biography-3/block.html",
    "content": "{{/* Hugo Blox: Biography 3 */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $author := \"me\" }}\n{{ $authorRaw := index $content \"username\" }}\n{{ if eq (printf \"%T\" $authorRaw) \"string\" }}\n  {{ $author = $authorRaw }}\n{{ end }}\n{{ $profile := partial \"functions/get_author_profile\" $author }}\n{{ $avatar := $profile.avatar }}\n{{ $headings := index $content \"headings\" }}\n{{ if not (reflect.IsMap $headings) }}{{ $headings = dict }}{{ end }}\n\n{{/* Avatar customization parameters */}}\n{{ $avatar_size := \"large\" }}\n{{ $avatar_shape := \"circle\" }}\n{{ $avatar_config := index $design \"avatar\" }}\n{{ if and $avatar_config (reflect.IsMap $avatar_config) }}\n  {{ $avatar_size_raw := index $avatar_config \"size\" }}\n  {{ if eq (printf \"%T\" $avatar_size_raw) \"string\" }}\n    {{ $avatar_size = $avatar_size_raw }}\n  {{ end }}\n  {{ $avatar_shape_raw := index $avatar_config \"shape\" }}\n  {{ if eq (printf \"%T\" $avatar_shape_raw) \"string\" }}\n    {{ $avatar_shape = $avatar_shape_raw }}\n  {{ end }}\n{{ end }}\n\n{{/* Profile name typography */}}\n{{ $name_size := \"lg\" }}\n{{ $name_config := index $design \"name\" }}\n{{ if and $name_config (reflect.IsMap $name_config) }}\n  {{ $name_size_raw := index $name_config \"size\" }}\n  {{ if eq (printf \"%T\" $name_size_raw) \"string\" }}\n    {{ $name_size = $name_size_raw }}\n  {{ end }}\n{{ end }}\n{{ $name_class_map := dict\n  \"xs\" \"text-xl sm:text-2xl lg:text-3xl\"\n  \"sm\" \"text-2xl sm:text-3xl lg:text-4xl\"\n  \"md\" \"text-3xl sm:text-4xl lg:text-5xl\"\n  \"lg\" \"text-4xl sm:text-5xl lg:text-6xl\"\n  \"xl\" \"text-5xl sm:text-6xl lg:text-7xl\"\n}}\n{{ $name_class := index $name_class_map $name_size | default (index $name_class_map \"lg\") }}\n\n{{/* Size mappings optimized for 2025 standards: display_size -> [display_px, generation_px] */}}\n{{ $size_map := dict \"small\" (slice \"150\" \"300\") \"medium\" (slice \"200\" \"400\") \"large\" (slice \"320\" \"640\") \"xl\" (slice \"400\" \"800\") \"xxl\" (slice \"500\" \"1000\") }}\n{{ $size_config := index $size_map $avatar_size | default (index $size_map \"large\") }}\n{{ $display_size := index $size_config 0 }}\n{{ $generation_size := index $size_config 1 }}\n\n{{/* Shape class mappings */}}\n{{ $shape_classes := dict \"circle\" \"rounded-full\" \"square\" \"rounded-none\" \"rounded\" \"rounded-lg\" }}\n{{ $shape_class := index $shape_classes $avatar_shape | default \"rounded-full\" }}\n\n{{ $banner_filename := \"\" }}\n{{ $banner_config := index $design \"banner\" }}\n{{ if and $banner_config (reflect.IsMap $banner_config) }}\n  {{ $banner_raw := index $banner_config \"filename\" }}\n  {{ if eq (printf \"%T\" $banner_raw) \"string\" }}\n    {{ $banner_filename = $banner_raw }}\n  {{ end }}\n{{ end }}\n\n{{ $bio_style := \"\" }}\n{{ $bio_config := index $design \"biography\" }}\n{{ if and $bio_config (reflect.IsMap $bio_config) }}\n  {{ $bio_style_raw := index $bio_config \"style\" }}\n  {{ if eq (printf \"%T\" $bio_style_raw) \"string\" }}\n    {{ $bio_style = $bio_style_raw }}\n  {{ end }}\n{{ end }}\n\n<div class=\"resume-biography py-8 px-4 sm:py-12 md:py-16 lg:py-24 xl:py-32 relative overflow-hidden\">\n  {{/* Add subtle top gradient for navbar transition */}}\n  <div class=\"max-w-7xl mx-auto\">\n    <div class=\"grid grid-cols-1 md:grid-cols-12 gap-6 md:gap-8 items-start\">\n      \n      {{/* Left Column: Flexible span */}}\n      <div class=\"md:col-span-4 flex flex-col items-center text-center space-y-6 md:space-y-8\">\n        \n        {{/* Banner Image */}}\n        {{ $img := \"\" }}\n        {{/* Resolve image from page bundle, site assets, remote, or static URLs */}}\n        {{ $image_resource := false }}\n        {{ $image_url := \"\" }}\n\n        {{ if $banner_filename }}\n          {{ $image_path := strings.TrimSpace (printf \"%v\" $banner_filename) }}\n          {{ $is_remote := or (strings.HasPrefix $image_path \"http://\") (strings.HasPrefix $image_path \"https://\") }}\n\n          {{ if $is_remote }}\n            {{ $remote := try (resources.GetRemote $image_path) }}\n            {{ if and $remote (not $remote.Err) }}\n              {{ $image_resource = $remote.Value }}\n            {{ else }}\n              {{ $image_url = $image_path }}\n            {{ end }}\n          {{ else }}\n            {{ $image_path = strings.TrimPrefix \"/\" $image_path }}\n            {{ $image_path = strings.TrimPrefix \"./\" $image_path }}\n            {{ $image_path = strings.TrimPrefix \"assets/\" $image_path }}\n            {{ $image_path = strings.TrimPrefix \"media/\" $image_path }}\n            {{ $normalized := path.Clean $image_path }}\n\n            {{ if and $normalized (ne $normalized \".\") }}\n              {{ with $page }}\n                {{ $image_resource = (.Resources.ByType \"image\").GetMatch $normalized }}\n              {{ end }}\n              {{ if not $image_resource }}\n                {{ $image_resource = resources.Get (path.Join \"media\" $normalized) }}\n              {{ end }}\n              {{ if not $image_resource }}\n                {{ $image_url = printf \"/media/%s\" $normalized }}\n              {{ end }}\n            {{ end }}\n          {{ end }}\n        {{ end }}\n\n        {{ $img = $image_resource }}\n\n        {{ if $img }}\n          {{ $isSVG := eq $img.MediaType.SubType \"svg\" }}\n          {{ $isGIF := eq $img.MediaType.SubType \"gif\" }}\n          <div class=\"relative w-full h-64 rounded-2xl overflow-hidden shadow-xl mb-8\">\n            {{ if not (or $isSVG $isGIF) }}\n              {{ $responsive := partial \"functions/process_responsive_image.html\" (dict\n                  \"image\" $img\n                  \"mode\" \"fill\"\n                  \"aspect_ratio\" \"16:9\"\n                  \"sizes\" (slice 768 1024 1366 1920 2560)\n              ) }}\n              <img class=\"absolute inset-0 w-full h-full object-cover\"\n                    srcset=\"{{ $responsive.srcset }}\"\n                    sizes=\"100vw\"\n                    src=\"{{ $responsive.fallback.RelPermalink }}\"\n                    alt=\"\" />\n            {{ else }}\n              {{ if not $isSVG }}{{ $img = $img.Process \"webp\" }}{{ end }}\n              <img class=\"absolute inset-0 w-full h-full object-cover\"\n                    src=\"{{$img.RelPermalink}}\"\n                    alt=\"\" />\n            {{ end }}\n          </div>\n        {{ else if $image_url }}\n          {{ $is_external := or (strings.HasPrefix $image_url \"http://\") (strings.HasPrefix $image_url \"https://\") }}\n          <div class=\"relative w-full h-64 rounded-2xl overflow-hidden shadow-xl mb-8\">\n             <img class=\"absolute inset-0 w-full h-full object-cover\"\n                  src=\"{{ if $is_external }}{{ $image_url }}{{ else }}{{ $image_url | relURL }}{{ end }}\"\n                  alt=\"\" />\n          </div>\n        {{ end }}\n\n        {{/* Avatar */}}\n        {{ $status_icon := \"\" }}\n        {{ $status := $profile.status }}\n        {{ if and $status (reflect.IsMap $status) }}\n          {{ $status_icon_raw := index $status \"icon\" }}\n          {{ if eq (printf \"%T\" $status_icon_raw) \"string\" }}\n            {{ $status_icon = strings.TrimSpace $status_icon_raw }}\n          {{ end }}\n        {{ end }}\n\n        {{ if $avatar }}\n        <div class=\"avatar-wrapper {{ if $img }}-mt-24{{else}}mb-4{{end}}\" style=\"width: {{$display_size}}px; height: {{$display_size}}px;\">\n          {{ $avatar_image := $avatar.Fill (printf \"%sx%s Center\" $generation_size $generation_size) }}\n          <img class=\"avatar {{$shape_class}} border-4 border-white shadow-2xl\" \n               src=\"{{ $avatar_image.RelPermalink }}\" \n               alt=\"{{$profile.title}}\"\n               width=\"{{$display_size}}\" \n               height=\"{{$display_size}}\"\n               style=\"width: {{$display_size}}px; height: {{$display_size}}px; object-fit: cover;\">\n          {{ with $status_icon }}<span class=\"avatar-emoji\">{{ . | emojify }}</span>{{ end }}\n        </div>\n        {{ end }}\n\n        {{/* Name and Role - Centered */}}\n        <div class=\"space-y-3\">\n          {{/* Extract pronunciation for ruby annotation */}}\n          {{ $name_pronunciation := \"\" }}\n          {{ with $profile.name_pronunciation }}\n            {{ if eq (printf \"%T\" .) \"string\" }}\n              {{ $name_pronunciation = strings.TrimSpace . }}\n            {{ end }}\n          {{ end }}\n\n          {{/* Name with optional ruby pronunciation */}}\n          {{ if and $profile.title $name_pronunciation }}\n            <h1 class=\"{{ $name_class }} font-black text-gray-900 dark:text-white leading-tight\">\n              <ruby class=\"hb-ruby-name\">{{ $profile.title }}<rt>{{ $name_pronunciation }}</rt></ruby>\n            </h1>\n          {{ else }}\n            <h1 class=\"{{ $name_class }} font-black text-gray-900 dark:text-white leading-tight\">\n              {{ $profile.title }}\n            </h1>\n          {{ end }}\n          \n          {{ $pronouns := \"\" }}\n          {{ with $profile.pronouns }}\n            {{ if eq (printf \"%T\" .) \"string\" }}\n              {{ $pronouns = . }}\n            {{ end }}\n          {{ end }}\n          {{ with $pronouns }}\n            <p class=\"text-lg text-gray-600 dark:text-gray-400\">({{ . }})</p>\n          {{ end }}\n          \n          {{ $role_text := \"\" }}\n          {{ with $profile.role }}\n            {{ if eq (printf \"%T\" .) \"string\" }}\n              {{ $role_text = . }}\n            {{ end }}\n          {{ end }}\n          {{ with $role_text }}\n            <p class=\"text-2xl font-semibold text-primary-600 dark:text-primary-400\">{{ . | markdownify | emojify }}</p>\n          {{ end }}\n          \n          {{ $affiliations_raw := $profile.affiliations }}\n          {{ $affiliations := slice }}\n          {{ if reflect.IsSlice $affiliations_raw }}\n            {{ $affiliations = $affiliations_raw }}\n          {{ else if eq (printf \"%T\" $affiliations_raw) \"string\" }}\n            {{ $affiliations = slice $affiliations_raw }}\n          {{ end }}\n          {{ range $affiliations }}\n            {{ $aff_name := \"\" }}\n            {{ $aff_url := \"\" }}\n            {{ if reflect.IsMap . }}\n              {{ $nameRaw := index . \"name\" | default (index . \"title\") }}\n              {{ if ne $nameRaw nil }}\n                {{ $aff_name = printf \"%v\" $nameRaw }}\n              {{ end }}\n              {{ $urlRaw := index . \"url\" }}\n              {{ if eq (printf \"%T\" $urlRaw) \"string\" }}\n                {{ $aff_url = $urlRaw }}\n              {{ end }}\n            {{ else if eq (printf \"%T\" .) \"string\" }}\n              {{ $aff_name = . }}\n            {{ end }}\n            {{ $aff_name = strings.TrimSpace $aff_name }}\n            {{ $aff_url = strings.TrimSpace $aff_url }}\n            {{ if $aff_name }}\n              <p class=\"text-lg text-gray-700 dark:text-gray-300\">\n                {{ if $aff_url }}\n                  {{ $link := $aff_url }}\n                  {{ $scheme := (urls.Parse $link).Scheme }}\n                  {{ $target := \"\" }}\n                  {{ if not $scheme }}\n                    {{ if not (hasPrefix $link \"#\") }}\n                      {{ $link = $link | relLangURL }}\n                    {{ end }}\n                    {{ if eq (path.Ext $link) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n                  {{ else if in (slice \"http\" \"https\") $scheme }}\n                    {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n                  {{ end }}\n                  <a href=\"{{ $link | safeURL }}\" {{ $target | safeHTMLAttr }} class=\"hover:text-primary-600 dark:hover:text-primary-400 transition-colors\">{{ $aff_name }}</a>\n                {{ else }}\n                  {{ $aff_name }}\n                {{ end }}\n              </p>\n            {{ end }}\n          {{ end }}\n        </div>\n\n        {{/* Social Icons */}}\n        {{ $links_raw := $profile.links }}\n        {{ $links := slice }}\n        {{ if reflect.IsSlice $links_raw }}\n          {{ $links = $links_raw }}\n        {{ else if eq (printf \"%T\" $links_raw) \"string\" }}\n          {{ $links = slice $links_raw }}\n        {{ end }}\n        {{ if gt (len $links) 0 }}\n        <div class=\"flex flex-wrap justify-center gap-4\">\n          {{ range $links }}\n          {{ $linkUrl := \"\" }}\n          {{ $iconName := \"hero/link\" }}\n          {{ $linkLabel := \"\" }}\n          {{ if reflect.IsMap . }}\n            {{ $urlRaw := index . \"url\" | default (index . \"link\") }}\n            {{ if eq (printf \"%T\" $urlRaw) \"string\" }}\n              {{ $linkUrl = $urlRaw }}\n            {{ end }}\n            {{ $iconRaw := index . \"icon\" }}\n            {{ if eq (printf \"%T\" $iconRaw) \"string\" }}\n              {{ $iconName = $iconRaw }}\n            {{ end }}\n            {{ $labelRaw := index . \"label\" }}\n            {{ if eq (printf \"%T\" $labelRaw) \"string\" }}\n              {{ $linkLabel = $labelRaw }}\n            {{ end }}\n          {{ else if eq (printf \"%T\" .) \"string\" }}\n            {{ $linkUrl = . }}\n          {{ end }}\n          {{ $linkUrl = strings.TrimSpace $linkUrl }}\n          {{ if $linkUrl }}\n            {{ $scheme := (urls.Parse $linkUrl).Scheme }}\n            {{ $target := \"\" }}\n            {{ if not $scheme }}\n              {{ if not (hasPrefix $linkUrl \"#\") }}\n                {{ $linkUrl = $linkUrl | relLangURL }}\n              {{ end }}\n              {{ if eq (path.Ext $linkUrl) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n            {{ else if in (slice \"http\" \"https\") $scheme }}\n              {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n            {{ end }}\n            <a href=\"{{ $linkUrl | safeURL }}\" {{ $target | safeHTMLAttr }} \n               aria-label=\"{{ $iconName }}\"\n               {{ if $linkLabel }} title=\"{{ $linkLabel }}\"{{ end }}\n               class=\"w-12 h-12 flex items-center justify-center rounded-full bg-white dark:bg-gray-800 text-gray-600 dark:text-gray-400 \n                      shadow-md hover:shadow-xl hover:scale-110 hover:-translate-y-1 \n                      transition-all duration-300 border border-gray-200 dark:border-gray-700\">\n              {{ partial \"functions/get_icon\" (dict \"name\" $iconName \"attributes\" \"class=\\\"w-6 h-6\\\"\")  }}\n            </a>\n          {{ end }}\n          {{ end }}\n        </div>\n        {{ end }}\n      </div>\n\n      {{/* Right Column: Flexible span */}}\n      <div class=\"md:col-span-8\">\n        \n        {{/* Bio Section */}}\n        {{ $bio_content := \"\" }}\n        {{ $bio_override_raw := index $content \"text\" }}\n        {{ if ne $bio_override_raw nil }}\n          {{ $bio_content = printf \"%v\" $bio_override_raw | emojify | $page.RenderString }}\n        {{ end }}\n        {{ if not $bio_content }}\n          {{ with $profile.bio }}{{ $bio_content = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n        {{ end }}\n        {{ with $bio_content }}\n        <div class=\"mb-12\">\n          <div class=\"flex items-center gap-4 mb-8\">\n            <div class=\"flex-shrink-0 w-12 h-12 bg-primary-100 dark:bg-primary-900/50 rounded-full flex items-center justify-center\">\n              {{ partial \"functions/get_icon\" (dict \"name\" \"identification\" \"attributes\" \"class='w-6 h-6 text-primary-600 dark:text-primary-400'\") }}\n            </div>\n            {{ $i18n_about := i18n \"about_me\" }}\n            {{ $about_default := cond (eq $i18n_about \"about_me\") \"Professional Summary\" $i18n_about }}\n            {{ $about_heading := $about_default }}\n            {{ $about_heading_raw := index $headings \"about\" }}\n            {{ if eq (printf \"%T\" $about_heading_raw) \"string\" }}\n              {{ $about_heading_raw = strings.TrimSpace $about_heading_raw }}\n              {{ if ne $about_heading_raw \"\" }}\n                {{ $about_heading = $about_heading_raw }}\n              {{ end }}\n            {{ end }}\n            <h2 class=\"text-xl sm:text-2xl lg:text-3xl font-bold text-gray-900 dark:text-white tracking-tight\">{{ $about_heading }}</h2>\n          </div>\n          <div class=\"prose prose-lg dark:prose-invert text-gray-800 dark:text-gray-200 text-base sm:text-lg leading-relaxed\">\n            <div class=\"bio-text\" {{ if $bio_style }}{{ (printf \"style=\\\"%s\\\"\" $bio_style) | safeHTMLAttr }}{{ end }}>\n              {{ . }}\n            </div>\n          </div>\n        </div>\n        {{ end }}\n\n        {{/* CV Download Button */}}\n        {{ $button_raw := index $content \"button\" }}\n        {{ if and $button_raw (reflect.IsMap $button_raw) }}\n          {{ $button_text := \"\" }}\n          {{ $button_url := \"\" }}\n          {{ with index $button_raw \"text\" }}{{ $button_text = printf \"%v\" . }}{{ end }}\n          {{ with index $button_raw \"url\" }}{{ $button_url = printf \"%v\" . }}{{ end }}\n          {{ $button_text = strings.TrimSpace $button_text }}\n          {{ $button_url = strings.TrimSpace $button_url }}\n          {{ if and $button_text $button_url }}\n            {{ $button_link := $button_url }}\n            {{ $scheme := (urls.Parse $button_link).Scheme }}\n            {{ $target := \"\" }}\n            {{ if not $scheme }}\n              {{ if not (hasPrefix $button_link \"#\") }}\n                {{ $button_link = $button_link | relLangURL }}\n              {{ end }}\n              {{ if eq (path.Ext $button_link) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n            {{ else if in (slice \"http\" \"https\") $scheme }}\n              {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n            {{ end }}\n            <div class=\"mb-16\">\n              <a href=\"{{ $button_link | safeURL }}\" {{ $target | safeHTMLAttr }}\n                 class=\"inline-flex items-center px-8 py-4 bg-gradient-to-r from-primary-600 to-secondary-600 hover:from-primary-700 hover:to-secondary-700 text-white font-bold text-lg rounded-xl shadow-lg hover:shadow-xl hover:scale-105 transition-all duration-300\">\n                {{ partial \"functions/get_icon\" (dict \"name\" \"document-arrow-down\" \"attributes\" \"class='w-5 h-5 mr-3'\") }}\n                {{ $button_text }}\n              </a>\n            </div>\n          {{ end }}\n        {{ end }}\n\n        {{/* Education Section */}}\n        {{ $education_raw := $profile.education }}\n        {{ $education := slice }}\n        {{ if reflect.IsSlice $education_raw }}\n          {{ $education = $education_raw }}\n        {{ end }}\n        {{ if gt (len $education) 0 }}\n        <div class=\"mb-16\">\n          <div class=\"flex items-center gap-4 mb-8\">\n            <div class=\"flex-shrink-0 w-12 h-12 bg-primary-100 dark:bg-primary-900/50 rounded-full flex items-center justify-center\">\n              {{ partial \"functions/get_icon\" (dict \"name\" \"academic-cap\" \"attributes\" \"class='w-6 h-6 text-primary-600 dark:text-primary-400'\") }}\n            </div>\n            {{ $education_heading := i18n \"education\" }}\n            {{ $education_heading_raw := index $headings \"education\" }}\n            {{ if eq (printf \"%T\" $education_heading_raw) \"string\" }}\n              {{ $education_heading_raw = strings.TrimSpace $education_heading_raw }}\n              {{ if ne $education_heading_raw \"\" }}\n                {{ $education_heading = $education_heading_raw }}\n              {{ end }}\n            {{ end }}\n            <h3 class=\"text-xl sm:text-2xl lg:text-3xl font-bold text-gray-900 dark:text-white tracking-tight\">{{ $education_heading | markdownify }}</h3>\n          </div>\n          <div class=\"grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-6\">\n            {{ range $education }}\n            {{ if reflect.IsMap . }}\n            {{ $degree := \"\" }}\n            {{ $degreeRaw := index . \"degree\" | default (index . \"area\") }}\n            {{ if ne $degreeRaw nil }}{{ $degree = printf \"%v\" $degreeRaw }}{{ end }}\n            {{ $year := \"\" }}\n            {{ with index . \"year\" }}{{ $year = printf \"%v\" . }}{{ end }}\n            {{ $start := \"\" }}\n            {{ with index . \"start\" }}{{ $start = printf \"%v\" . }}{{ end }}\n            {{ $end := \"\" }}\n            {{ with index . \"end\" }}{{ $end = printf \"%v\" . }}{{ end }}\n            {{ $institution := \"\" }}\n            {{ with index . \"institution\" }}{{ $institution = printf \"%v\" . }}{{ end }}\n            {{ $icon := \"\" }}\n            {{ $iconRaw := index . \"icon\" }}\n            {{ if eq (printf \"%T\" $iconRaw) \"string\" }}\n              {{ $icon = $iconRaw }}\n            {{ end }}\n            <div class=\"group h-full flex flex-col bg-gradient-to-br from-white/90 to-primary-50/30 dark:from-gray-800/90 dark:to-primary-900/20 rounded-xl p-6 shadow-md hover:shadow-xl transition-all duration-300 border border-transparent hover:border-primary-200 dark:hover:border-primary-800 backdrop-blur-md\">\n              <div class=\"flex gap-4\">\n                <div class=\"flex-shrink-0 w-12 h-12 bg-white dark:bg-gray-800 ring-1 ring-gray-200 dark:ring-gray-700 rounded-full flex items-center justify-center shadow-md\">\n                  {{ if $icon }}\n                    {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class='w-6 h-6 text-primary-600 dark:text-primary-400'\") }}\n                  {{ else }}\n                    {{ partial \"functions/get_icon\" (dict \"name\" \"academic-cap\" \"attributes\" \"class='w-6 h-6 text-primary-600 dark:text-primary-400'\") }}\n                  {{ end }}\n                </div>\n                <div class=\"flex-1 flex-grow\">\n                  {{ if $degree }}\n                  <p class=\"text-xl font-bold text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">\n                    {{ $degree }}\n                  </p>\n                  {{ end }}\n                  {{ if $year }}\n                    <p class=\"text-gray-500 dark:text-gray-400 text-sm mt-2\">{{ $year }}</p>\n                  {{ else if $start }}\n                    <p class=\"text-gray-500 dark:text-gray-400 text-sm mt-2\">\n                      {{ $start }}\n                      {{ if $end }}<br>{{ $end }}{{ end }}\n                    </p>\n                  {{ end }}\n                  {{ if $institution }}\n                    <p class=\"text-gray-700 dark:text-gray-300 text-base\">{{ $institution }}</p>\n                  {{ end }}\n                </div>\n              </div>\n            </div>\n            {{ end }}\n            {{ end }}\n          </div>\n        </div>\n        {{ end }}\n\n        {{/* Interests Section */}}\n        {{ $interests_raw := $profile.interests }}\n        {{ $interests := slice }}\n        {{ if reflect.IsSlice $interests_raw }}\n          {{ $interests = $interests_raw }}\n        {{ else if eq (printf \"%T\" $interests_raw) \"string\" }}\n          {{ $interests = slice $interests_raw }}\n        {{ end }}\n        {{ if gt (len $interests) 0 }}\n        <div>\n          <div class=\"flex items-center gap-4 mb-8\">\n            <div class=\"flex-shrink-0 w-12 h-12 bg-primary-100 dark:bg-primary-900/50 rounded-full flex items-center justify-center\">\n              {{ partial \"functions/get_icon\" (dict \"name\" \"sparkles\" \"attributes\" \"class='w-6 h-6 text-primary-600 dark:text-primary-400'\") }}\n            </div>\n            {{ $interests_heading := i18n \"interests\" }}\n            {{ $interests_heading_raw := index $headings \"interests\" }}\n            {{ if eq (printf \"%T\" $interests_heading_raw) \"string\" }}\n              {{ $interests_heading_raw = strings.TrimSpace $interests_heading_raw }}\n              {{ if ne $interests_heading_raw \"\" }}\n                {{ $interests_heading = $interests_heading_raw }}\n              {{ end }}\n            {{ end }}\n            <h3 class=\"text-xl font-bold text-gray-900 dark:text-white tracking-tight\">{{ $interests_heading | markdownify }}</h3>\n          </div>\n          <div class=\"flex flex-wrap gap-3\">\n            {{ range $interests }}\n            {{ $interest := strings.TrimSpace (printf \"%v\" .) }}\n            {{ if $interest }}\n            <span class=\"inline-block bg-primary-50 dark:bg-gray-800 text-primary-800 dark:text-primary-200 text-base font-medium px-4 py-2 rounded-full border border-primary-200/50 dark:border-primary-800/50\n                           hover:bg-primary-100 \n                           dark:hover:bg-primary-500 dark:hover:text-gray-900 dark:hover:border-primary-500\n                           transition-all duration-200 cursor-default\">\n              {{ $interest | markdownify | emojify }}\n            </span>\n            {{ end }}\n            {{ end }}\n          </div>\n        </div>\n        {{ end }}\n      </div>\n    </div>\n  </div>\n</div>\n"
  },
  {
    "path": "modules/blox/blox/resume-biography-3/manifest.json",
    "content": "{\n  \"id\": \"resume-biography-3\",\n  \"name\": \"Resume Biography 3\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"resume\",\n  \"tags\": [\"resume\", \"biography\", \"profile\", \"horizontal\", \"education\", \"interests\", \"cv\", \"layout\"],\n  \"description\": \"Horizontal biography layout with integrated education and interests sections\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"resume\", \"biography\", \"horizontal\", \"education\", \"interests\", \"cv\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/resume-experience/README.md",
    "content": "# Resume Experience Block\n\n**Tell your professional journey with timeline elegance**\n\nPresent your career progression and educational background with the Resume Experience block - a sophisticated timeline component that showcases your professional journey in a visually compelling, chronologically organized format.\n\n## ✨ Key Features\n\n- **Dual Timeline**: Separate sections for work experience and education\n- **Visual Timeline**: Beautiful vertical timeline with connection lines and icons\n- **Date Flexibility**: Customizable date formatting with \"Present\" support for current roles\n- **Rich Content**: Markdown support for detailed position descriptions\n- **Download Links**: Optional buttons for certificates, portfolios, or additional resources\n- **Responsive Design**: Timeline adapts perfectly from desktop to mobile\n- **Order Control**: Option to display education before experience\n\n## 🎯 Perfect For\n\n- **Job Seekers**: Comprehensive career history for potential employers\n- **Career Professionals**: Showcase progression and diverse experience\n- **Academic Professionals**: Combined academic and professional timeline\n- **Consultants**: Demonstrate expertise across various roles and industries\n- **Freelancers**: Highlight diverse project experience and education\n- **Recent Graduates**: Emphasize education with growing professional experience\n\n## 🚀 Why Choose Resume Experience Block?\n\n**Visual Storytelling**: Timeline format makes career progression easy to follow and understand\n\n**Professional Standard**: Meets modern resume and CV expectations with comprehensive detail\n\n**Flexible Organization**: Control whether education or experience appears first based on your background\n\n**Rich Detail Support**: Markdown formatting allows for detailed role descriptions and achievements\n\n## 📊 Career Presentation Benefits\n\n- **Clear Progression**: Visual timeline shows career growth and development\n- **Comprehensive View**: Both work and education in one cohesive presentation\n- **Easy Scanning**: Timeline format allows quick review of career highlights\n- **Professional Polish**: Clean, modern design that makes great first impressions\n\n## 💡 Timeline Psychology\n\n- **Sequential Understanding**: Chronological order helps viewers understand your journey\n- **Achievement Focus**: Timeline format naturally highlights career milestones\n- **Story Narrative**: Creates compelling career story that engages viewers\n- **Future Projection**: Shows trajectory that helps employers envision your potential\n\n## 🎨 Visual Excellence\n\n- **Beautiful Icons**: Work and education icons that immediately communicate section type\n- **Color Coordination**: Primary brand colors create cohesive, professional appearance\n- **Typography Hierarchy**: Clear information structure from position titles to descriptions\n- **Responsive Timeline**: Maintains visual appeal across all screen sizes\n\n## 💼 Strategic Advantages\n\n- **Comprehensive Coverage**: One block covers your entire professional and educational background\n- **Flexible Emphasis**: Choose whether to lead with education or experience based on your strengths\n- **Detail Control**: Include as much or as little detail as appropriate for your audience\n- **Modern Format**: Timeline presentation feels current and engaging\n\nPerfect for professionals at any career stage who want to present their experience and education in a format that's both comprehensive and visually engaging. Your career journey deserves professional presentation that opens doors to new opportunities.\n\n"
  },
  {
    "path": "modules/blox/blox/resume-experience/block.html",
    "content": "{{/* Hugo Blox: Experience - 2026 Redesign */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $text := \"\" }}\n{{ $text_raw := index $content \"text\" }}\n{{ if $text_raw }}{{ $text = strings.TrimSpace (printf \"%v\" $text_raw) }}{{ end }}\n{{ if $text }}{{ $text = $text | emojify | $page.RenderString }}{{ end }}\n\n{{ $username := \"me\" }}\n{{ $username_raw := index $content \"username\" }}\n{{ if eq (printf \"%T\" $username_raw) \"string\" }}\n  {{ $username = strings.TrimSpace $username_raw }}\n{{ end }}\n{{ $profile := partial \"functions/get_author_profile\" $username }}\n\n{{ $is_education_first := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"is_education_first\") \"default\" false) }}\n{{ $date_format := \"Jan 2006\" }}\n{{ $date_format_raw := index $design \"date_format\" }}\n{{ if eq (printf \"%T\" $date_format_raw) \"string\" }}\n  {{ $date_format = strings.TrimSpace $date_format_raw | default \"Jan 2006\" }}\n{{ end }}\n\n{{ $experience_raw := or $profile.experience $profile.work }}\n{{ $experience_iter := slice }}\n{{ if reflect.IsSlice $experience_raw }}\n  {{ $experience_iter = $experience_raw }}\n{{ else if and $experience_raw (reflect.IsMap $experience_raw) }}\n  {{ $experience_iter = slice $experience_raw }}\n{{ end }}\n\n{{ $experience := slice }}\n{{ if gt (len $experience_iter) 0 }}\n  {{ range $experience_iter }}\n    {{ if reflect.IsMap . }}\n      {{ $role := \"\" }}\n      {{ $org := \"\" }}\n      {{ $start := \"\" }}\n      {{ $end := \"\" }}\n      {{ $summary := \"\" }}\n      {{ $icon := \"\" }}\n      {{ $tags := slice }}\n      {{ $button_url := \"\" }}\n      {{ $button_text := \"\" }}\n      {{ $button_icon := \"\" }}\n\n      {{ with index . \"role\" }}{{ $role = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if not $role }}{{ with index . \"position\" }}{{ $role = strings.TrimSpace (printf \"%v\" .) }}{{ end }}{{ end }}\n      {{ with index . \"org\" }}{{ $org = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if not $org }}{{ with index . \"company_name\" }}{{ $org = strings.TrimSpace (printf \"%v\" .) }}{{ end }}{{ end }}\n      {{ with index . \"start\" }}{{ $start = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if not $start }}{{ with index . \"date_start\" }}{{ $start = strings.TrimSpace (printf \"%v\" .) }}{{ end }}{{ end }}\n      {{ with index . \"end\" }}{{ $end = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if not $end }}{{ with index . \"date_end\" }}{{ $end = strings.TrimSpace (printf \"%v\" .) }}{{ end }}{{ end }}\n      {{ with index . \"summary\" }}{{ $summary = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"icon\" }}{{ $icon = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n      {{ $tags_raw := index . \"tags\" }}\n      {{ if reflect.IsSlice $tags_raw }}\n        {{ range $tags_raw }}\n          {{ $tag := strings.TrimSpace (printf \"%v\" .) }}\n          {{ if $tag }}{{ $tags = $tags | append $tag }}{{ end }}\n        {{ end }}\n      {{ else if eq (printf \"%T\" $tags_raw) \"string\" }}\n        {{ $tag_string := strings.TrimSpace $tags_raw }}\n        {{ if $tag_string }}\n          {{ if strings.Contains $tag_string \",\" }}\n            {{ range (split $tag_string \",\") }}\n              {{ $tag := strings.TrimSpace . }}\n              {{ if $tag }}{{ $tags = $tags | append $tag }}{{ end }}\n            {{ end }}\n          {{ else }}\n            {{ $tags = slice $tag_string }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n\n      {{ $button_raw := index . \"button\" }}\n      {{ if reflect.IsMap $button_raw }}\n        {{ with index $button_raw \"url\" }}{{ $button_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $button_raw \"text\" }}{{ $button_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $button_raw \"icon\" }}{{ $button_icon = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ end }}\n\n      {{ if or $role $org }}\n        {{ $experience = $experience | append (dict \"role\" $role \"org\" $org \"start\" $start \"end\" $end \"summary\" $summary \"icon\" $icon \"tags\" $tags \"button\" (dict \"url\" $button_url \"text\" $button_text \"icon\" $button_icon)) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $education_raw := $profile.education }}\n{{ $education_iter := slice }}\n{{ if reflect.IsSlice $education_raw }}\n  {{ $education_iter = $education_raw }}\n{{ else if and $education_raw (reflect.IsMap $education_raw) }}\n  {{ $education_iter = slice $education_raw }}\n{{ end }}\n\n{{ $education := slice }}\n{{ if gt (len $education_iter) 0 }}\n  {{ range $education_iter }}\n    {{ if reflect.IsMap . }}\n      {{ $degree := \"\" }}\n      {{ $institution := \"\" }}\n      {{ $start := \"\" }}\n      {{ $end := \"\" }}\n      {{ $summary := \"\" }}\n      {{ $icon := \"\" }}\n      {{ $button_url := \"\" }}\n      {{ $button_text := \"\" }}\n      {{ $button_icon := \"\" }}\n\n      {{ with index . \"degree\" }}{{ $degree = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if not $degree }}{{ with index . \"area\" }}{{ $degree = strings.TrimSpace (printf \"%v\" .) }}{{ end }}{{ end }}\n      {{ with index . \"institution\" }}{{ $institution = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"start\" }}{{ $start = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if not $start }}{{ with index . \"date_start\" }}{{ $start = strings.TrimSpace (printf \"%v\" .) }}{{ end }}{{ end }}\n      {{ with index . \"end\" }}{{ $end = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if not $end }}{{ with index . \"date_end\" }}{{ $end = strings.TrimSpace (printf \"%v\" .) }}{{ end }}{{ end }}\n      {{ with index . \"summary\" }}{{ $summary = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"icon\" }}{{ $icon = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n      {{ $button_raw := index . \"button\" }}\n      {{ if reflect.IsMap $button_raw }}\n        {{ with index $button_raw \"url\" }}{{ $button_url = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $button_raw \"text\" }}{{ $button_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ with index $button_raw \"icon\" }}{{ $button_icon = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ end }}\n\n      {{ if or $degree $institution }}\n        {{ $education = $education | append (dict \"degree\" $degree \"institution\" $institution \"start\" $start \"end\" $end \"summary\" $summary \"icon\" $icon \"button\" (dict \"url\" $button_url \"text\" $button_text \"icon\" $button_icon)) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n<div class=\"mx-auto w-full max-w-4xl px-4 sm:px-6 lg:px-8\">\n\n<div class=\"flex flex-col gap-16 {{ if $is_education_first }}flex-col-reverse{{end}}\">\n\n{{ if gt (len $experience) 0 }}\n<div class=\"w-full\">\n  <h2 class=\"mb-10 text-3xl font-bold text-gray-900 dark:text-white text-center\">{{ i18n \"experience\" | default \"Experience\" }}</h2>\n  \n  {{/* Timeline container */}}\n  <div class=\"relative\">\n    {{/* Gradient timeline line */}}\n    <div class=\"absolute left-4 sm:left-6 top-0 bottom-0 w-0.5 bg-gradient-to-b from-primary-500 via-primary-400 to-primary-600/50\"></div>\n    \n    {{/* Experience items */}}\n    <div class=\"space-y-8\">\n      {{ range $idx, $item := $experience }}\n      {{/* Card wrapper */}}\n      <div class=\"group relative pl-12 sm:pl-16\">\n        \n        {{/* Timeline marker */}}\n        <div class=\"absolute left-0 sm:left-2 top-6 flex items-center justify-center\">\n          {{/* Glowing dot */}}\n          <div class=\"relative\">\n            <div class=\"absolute inset-0 w-8 h-8 bg-primary-500/30 rounded-full blur-md group-hover:bg-primary-500/50 transition-all duration-300\"></div>\n            <div class=\"relative w-8 h-8 bg-white dark:bg-gray-900 border-2 border-primary-500 rounded-full flex items-center justify-center group-hover:border-primary-400 group-hover:scale-110 transition-all duration-300\">\n              {{ $icon := index $item \"icon\" }}\n              {{ if $icon }}\n                {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class='w-4 h-4 text-primary-600 dark:text-primary-400'\") }}\n              {{else}}\n                <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 256 256\" class=\"w-4 h-4 text-primary-600 dark:text-primary-400\"><path d=\"M216,56H176V48a24,24,0,0,0-24-24H104A24,24,0,0,0,80,48v8H40A16,16,0,0,0,24,72V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V72A16,16,0,0,0,216,56ZM96,48a8,8,0,0,1,8-8h48a8,8,0,0,1,8,8v8H96ZM216,72v41.61A184,184,0,0,1,128,136a184.07,184.07,0,0,1-88-22.38V72Zm0,128H40V131.64A200.19,200.19,0,0,0,128,152a200.25,200.25,0,0,0,88-20.37V200ZM104,112a8,8,0,0,1,8-8h32a8,8,0,0,1,0,16H112A8,8,0,0,1,104,112Z\"></path></svg>\n              {{end}}\n            </div>\n          </div>\n        </div>\n        \n        {{/* Content card */}}\n        <div class=\"relative bg-white dark:bg-white/[0.02] backdrop-blur-sm rounded-xl border border-gray-200 dark:border-white/[0.06] p-6 hover:bg-gray-50 dark:hover:bg-white/[0.04] hover:border-primary-300 dark:hover:border-primary-500/30 transition-all duration-300 group-hover:translate-x-1 shadow-sm dark:shadow-none\">\n          \n          {{/* Header row */}}\n          <div class=\"flex flex-col sm:flex-row sm:items-start sm:justify-between gap-2 mb-3\">\n            <div>\n              {{/* Role/Position */}}\n              <h3 class=\"text-xl font-bold text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">\n                {{ index $item \"role\" }}\n              </h3>\n              {{/* Company */}}\n              <p class=\"text-primary-600 dark:text-primary-400 font-medium mt-1\">\n                {{ index $item \"org\" }}\n              </p>\n            </div>\n            \n            {{/* Date badge */}}\n            <div class=\"flex items-center gap-2 text-sm text-gray-500 dark:text-gray-400 shrink-0\">\n              <svg xmlns=\"http://www.w3.org/2000/svg\" class=\"w-4 h-4\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\">\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z\" />\n              </svg>\n              <time>\n                {{ $start := index $item \"start\" }}\n                {{ $end := index $item \"end\" }}\n                {{ if $start }}\n                  {{ $parsed := try (time $start) }}\n                  {{ if not $parsed.Err }}\n                    {{ $parsed.Value | time.Format $date_format }} –\n                  {{ else }}\n                    {{ $start }} –\n                  {{ end }}\n                {{ end }}\n                {{ if $end }}\n                  {{ $parsed := try (time $end) }}\n                  {{ if not $parsed.Err }}\n                    {{ $parsed.Value | time.Format $date_format }}\n                  {{ else }}\n                    {{ $end }}\n                  {{ end }}\n                {{ else }}\n                  <span class=\"text-primary-600 dark:text-primary-400 font-medium\">{{ i18n \"present\" | default \"Present\" }}</span>\n                {{end}}\n              </time>\n            </div>\n          </div>\n          \n          {{/* Description */}}\n          {{ with index $item \"summary\" }}\n          <div class=\"prose dark:prose-invert max-w-none text-gray-600 dark:text-gray-400 leading-relaxed\">\n            {{ . | emojify | $page.RenderString }}\n          </div>\n          {{ end }}\n          \n          {{/* Tags/Skills */}}\n          {{ with index $item \"tags\" }}\n          <div class=\"flex flex-wrap gap-2 mt-4\">\n            {{ range . }}\n            <span class=\"px-2.5 py-1 text-xs font-medium rounded-full bg-primary-100 dark:bg-primary-500/10 text-primary-700 dark:text-primary-300 border border-primary-200 dark:border-primary-500/20\">\n              {{ . }}\n            </span>\n            {{ end }}\n          </div>\n          {{ end }}\n\n          {{/* Action button */}}\n          {{ $button := index $item \"button\" }}\n          {{ if reflect.IsMap $button }}\n            {{ $button_url := index $button \"url\" }}\n            {{ $button_text := index $button \"text\" | default \"Learn more\" }}\n            {{ $button_icon := index $button \"icon\" }}\n            {{ if $button_url }}\n            {{ $button_link := $button_url }}\n            {{ $button_target := \"\" }}\n            {{ $button_scheme := (urls.Parse $button_link).Scheme }}\n            {{ if not $button_scheme }}\n              {{ if not (hasPrefix $button_link \"#\") }}\n                {{ $button_link = $button_link | relLangURL }}\n              {{ end }}\n              {{ if eq (path.Ext $button_link) \".pdf\" }}{{ $button_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n            {{ else if in (slice \"http\" \"https\") $button_scheme }}\n              {{ $button_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n            {{ end }}\n            <div class=\"mt-4 pt-4 border-t border-gray-100 dark:border-white/5\">\n              <a href=\"{{ $button_link | safeURL }}\" {{ $button_target | safeHTMLAttr }} class=\"inline-flex items-center gap-2 text-sm font-medium text-gray-500 dark:text-gray-400 hover:text-primary-600 dark:hover:text-primary-400 transition-colors\">\n                {{ with $button_icon }}\n                  {{ partial \"functions/get_icon\" (dict \"name\" . \"attributes\" \"class='w-4 h-4'\") }}\n                {{ end }}\n                {{ $button_text }}\n                <svg xmlns=\"http://www.w3.org/2000/svg\" class=\"w-4 h-4\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\">\n                  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 5l7 7m0 0l-7 7m7-7H3\" />\n                </svg>\n              </a>\n            </div>\n            {{ end }}\n          {{ end }}\n        </div>\n      </div>\n      {{ end }}\n    </div>\n  </div>\n</div>\n{{ end }}\n\n{{ if gt (len $education) 0 }}\n<div class=\"w-full\">\n  <h2 class=\"mb-10 text-3xl font-bold text-gray-900 dark:text-white text-center\">{{ i18n \"education\" | default \"Education\" }}</h2>\n  \n  {{/* Timeline container */}}\n  <div class=\"relative\">\n    {{/* Gradient timeline line */}}\n    <div class=\"absolute left-4 sm:left-6 top-0 bottom-0 w-0.5 bg-gradient-to-b from-secondary-500 via-secondary-400 to-secondary-600/50\"></div>\n    \n    {{/* Education items */}}\n    <div class=\"space-y-8\">\n      {{ range $idx, $item := $education }}\n      {{/* Card wrapper */}}\n      <div class=\"group relative pl-12 sm:pl-16\">\n        \n        {{/* Timeline marker */}}\n        <div class=\"absolute left-0 sm:left-2 top-6 flex items-center justify-center\">\n          {{/* Glowing dot */}}\n          <div class=\"relative\">\n            <div class=\"absolute inset-0 w-8 h-8 bg-secondary-500/30 rounded-full blur-md group-hover:bg-secondary-500/50 transition-all duration-300\"></div>\n            <div class=\"relative w-8 h-8 bg-white dark:bg-gray-900 border-2 border-secondary-500 rounded-full flex items-center justify-center group-hover:border-secondary-400 group-hover:scale-110 transition-all duration-300\">\n              {{ $icon := index $item \"icon\" }}\n              {{ if $icon }}\n                {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class='w-4 h-4 text-secondary-600 dark:text-secondary-400'\") }}\n              {{else}}\n                <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 256 256\" class=\"w-4 h-4 text-secondary-600 dark:text-secondary-400\"><path d=\"M251.76,88.94l-120-64a8,8,0,0,0-7.52,0l-120,64a8,8,0,0,0,0,14.12L32,117.87v48.42a15.91,15.91,0,0,0,4.06,10.65C49.16,191.53,78.51,216,128,216a130,130,0,0,0,48-8.76V240a8,8,0,0,0,16,0V199.51a115.63,115.63,0,0,0,27.94-22.57A15.91,15.91,0,0,0,224,166.29V117.87l27.76-14.81a8,8,0,0,0,0-14.12ZM128,200c-43.27,0-68.72-21.14-80-33.71V126.4l76.24,40.66a8,8,0,0,0,7.52,0L176,143.47v46.34C163.4,195.69,147.52,200,128,200Zm80-33.75a97.83,97.83,0,0,1-16,14.25V134.93l16-8.53ZM188,118.94l-.22-.13-56-29.87a8,8,0,0,0-7.52,14.12L171,128l-43,22.93L25,96,128,41.07,231,96Z\"></path></svg>\n              {{end}}\n            </div>\n          </div>\n        </div>\n        \n        {{/* Content card */}}\n        <div class=\"relative bg-white dark:bg-white/[0.02] backdrop-blur-sm rounded-xl border border-gray-200 dark:border-white/[0.06] p-6 hover:bg-gray-50 dark:hover:bg-white/[0.04] hover:border-secondary-300 dark:hover:border-secondary-500/30 transition-all duration-300 group-hover:translate-x-1 shadow-sm dark:shadow-none\">\n          \n          {{/* Header row */}}\n          <div class=\"flex flex-col sm:flex-row sm:items-start sm:justify-between gap-2 mb-3\">\n            <div>\n              {{/* Degree */}}\n              <h3 class=\"text-xl font-bold text-gray-900 dark:text-white group-hover:text-secondary-600 dark:group-hover:text-secondary-400 transition-colors\">\n                {{ index $item \"degree\" }}\n              </h3>\n              {{/* Institution */}}\n              <p class=\"text-secondary-600 dark:text-secondary-400 font-medium mt-1\">\n                {{ index $item \"institution\" }}\n              </p>\n            </div>\n            \n            {{/* Date badge */}}\n            <div class=\"flex items-center gap-2 text-sm text-gray-500 dark:text-gray-400 shrink-0\">\n              <svg xmlns=\"http://www.w3.org/2000/svg\" class=\"w-4 h-4\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\">\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z\" />\n              </svg>\n              <time>\n                {{ $start := index $item \"start\" }}\n                {{ $end := index $item \"end\" }}\n                {{ if $start }}\n                  {{ $parsed := try (time $start) }}\n                  {{ if not $parsed.Err }}\n                    {{ $parsed.Value | time.Format $date_format }} –\n                  {{ else }}\n                    {{ $start }} –\n                  {{ end }}\n                {{ end }}\n                {{ if $end }}\n                  {{ $parsed := try (time $end) }}\n                  {{ if not $parsed.Err }}\n                    {{ $parsed.Value | time.Format $date_format }}\n                  {{ else }}\n                    {{ $end }}\n                  {{ end }}\n                {{ else }}\n                  <span class=\"text-primary-600 dark:text-primary-400 font-medium\">{{ i18n \"present\" | default \"Present\" }}</span>\n                {{end}}\n              </time>\n            </div>\n          </div>\n          \n          {{/* Description */}}\n          {{ with index $item \"summary\" }}\n          <div class=\"prose dark:prose-invert max-w-none text-gray-600 dark:text-gray-400 leading-relaxed\">\n            {{ . | emojify | $page.RenderString }}\n          </div>\n          {{ end }}\n\n          {{/* Action button */}}\n          {{ $button := index $item \"button\" }}\n          {{ if reflect.IsMap $button }}\n            {{ $button_url := index $button \"url\" }}\n            {{ $button_text := index $button \"text\" | default \"Learn more\" }}\n            {{ $button_icon := index $button \"icon\" }}\n            {{ if $button_url }}\n            {{ $button_link := $button_url }}\n            {{ $button_target := \"\" }}\n            {{ $button_scheme := (urls.Parse $button_link).Scheme }}\n            {{ if not $button_scheme }}\n              {{ if not (hasPrefix $button_link \"#\") }}\n                {{ $button_link = $button_link | relLangURL }}\n              {{ end }}\n              {{ if eq (path.Ext $button_link) \".pdf\" }}{{ $button_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n            {{ else if in (slice \"http\" \"https\") $button_scheme }}\n              {{ $button_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n            {{ end }}\n            <div class=\"mt-4 pt-4 border-t border-gray-100 dark:border-white/5\">\n              <a href=\"{{ $button_link | safeURL }}\" {{ $button_target | safeHTMLAttr }} class=\"inline-flex items-center gap-2 text-sm font-medium text-gray-500 dark:text-gray-400 hover:text-secondary-600 dark:hover:text-secondary-400 transition-colors\">\n                {{ with $button_icon }}\n                  {{ partial \"functions/get_icon\" (dict \"name\" . \"attributes\" \"class='w-4 h-4'\") }}\n                {{ end }}\n                {{ $button_text }}\n                <svg xmlns=\"http://www.w3.org/2000/svg\" class=\"w-4 h-4\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\">\n                  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 5l7 7m0 0l-7 7m7-7H3\" />\n                </svg>\n              </a>\n            </div>\n            {{ end }}\n          {{ end }}\n        </div>\n      </div>\n      {{ end }}\n    </div>\n  </div>\n</div>\n{{ end }}\n\n</div>\n\n</div>\n"
  },
  {
    "path": "modules/blox/blox/resume-experience/manifest.json",
    "content": "{\n  \"id\": \"resume-experience\",\n  \"name\": \"Resume Experience\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"resume\",\n  \"tags\": [\"resume\", \"experience\", \"timeline\", \"work\", \"education\", \"career\", \"professional\", \"cv\"],\n  \"description\": \"Professional timeline displaying work experience and education history in chronological order\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"resume\", \"experience\", \"timeline\", \"work\", \"education\", \"career\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/resume-languages/README.md",
    "content": "# Resume Languages Block\n\n**Showcase your multilingual capabilities with visual elegance**\n\nHighlight your language skills with the Resume Languages block - a visually striking component that uses beautiful circular progress indicators to display language proficiency levels in an immediately understandable, professional format.\n\n## ✨ Key Features\n\n- **Circular Progress Bars**: Stunning circular indicators that show proficiency at a glance\n- **Percentage Display**: Clear numerical representation of language fluency levels\n- **Responsive Layout**: Adapts from vertical (mobile) to horizontal (desktop) arrangement\n- **Brand Colors**: Progress bars use your primary brand colors for visual consistency\n- **Clean Typography**: Professional language name display with generous spacing\n- **Flexible Grid**: Accommodates any number of languages with graceful layout adaptation\n\n## 🎯 Perfect For\n\n- **International Professionals**: Showcase multilingual capabilities for global opportunities\n- **Translators & Interpreters**: Professional language service providers\n- **Academic Researchers**: Demonstrate language skills for international collaboration\n- **Travel & Tourism**: Professionals in hospitality and travel industries\n- **Global Consultants**: International business professionals and consultants\n- **Job Seekers**: Stand out in competitive markets with language advantages\n\n## 🚀 Why Choose Resume Languages Block?\n\n**Instant Understanding**: Circular progress bars communicate proficiency levels immediately\n\n**Professional Credibility**: Visual representation demonstrates serious commitment to language learning\n\n**Global Appeal**: Multilingual capabilities signal international readiness and cultural awareness\n\n**Modern Presentation**: Contemporary design that feels current and engaging\n\n## 📊 Visual Communication Benefits\n\n- **Quick Assessment**: Employers can instantly gauge your language capabilities\n- **Professional Standards**: Percentage-based system aligns with common proficiency frameworks\n- **Visual Impact**: Circular progress bars are more engaging than simple text lists\n- **Space Efficient**: Compact design accommodates multiple languages without clutter\n\n## 💡 Proficiency Psychology\n\n- **Confidence Signaling**: Visual progress indicators demonstrate self-awareness and honesty\n- **Competitive Advantage**: Language skills differentiate you in global job markets\n- **Cultural Intelligence**: Multilingual display signals adaptability and cultural sensitivity\n- **Learning Mindset**: Shows commitment to continuous learning and development\n\n## 🎨 Design Excellence\n\n- **Mathematical Precision**: Accurate circular progress calculations with smooth animations\n- **Brand Integration**: Primary colors create cohesive visual identity\n- **Responsive Behavior**: Transitions elegantly from vertical to horizontal layouts\n- **Clean Aesthetics**: Generous whitespace prevents overwhelming appearance\n\n## 🌍 Global Market Advantages\n\nPerfect for professionals in increasingly connected global markets where language skills provide significant competitive advantages. Whether you're seeking international opportunities, working with diverse teams, or serving multilingual customers, the Resume Languages block presents your linguistic capabilities with the professionalism they deserve.\n\nTransform your language skills into visual assets that open doors to global opportunities and demonstrate your readiness for international collaboration.\n\n"
  },
  {
    "path": "modules/blox/blox/resume-languages/block.html",
    "content": "{{/* Hugo Blox: Languages */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $username := \"me\" }}\n{{ $username_raw := index $content \"username\" }}\n{{ if eq (printf \"%T\" $username_raw) \"string\" }}\n  {{ $username = strings.TrimSpace $username_raw }}\n{{ end }}\n{{ $profile := partial \"functions/get_author_profile\" $username }}\n\n{{ $langs_raw := $profile.languages }}\n{{ $langs_iter := slice }}\n{{ if reflect.IsSlice $langs_raw }}\n  {{ $langs_iter = $langs_raw }}\n{{ else if and $langs_raw (reflect.IsMap $langs_raw) }}\n  {{ $langs_iter = slice $langs_raw }}\n{{ end }}\n\n{{ $langs := slice }}\n{{ if gt (len $langs_iter) 0 }}\n  {{ range $langs_iter }}\n    {{ if reflect.IsMap . }}\n      {{ $name := \"\" }}\n      {{ $level_text := \"\" }}\n      {{ $label := \"\" }}\n      {{ $percent_raw := \"\" }}\n\n      {{ with index . \"name\" }}{{ $name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"level\" }}{{ $level_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"label\" }}{{ $label = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"percent\" }}{{ $percent_raw = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n      {{ $percent := 100.0 }}\n      {{ $numeric_level := gt (len (findRE \"^[0-9]+(?:\\\\.[0-9]+)?$\" $level_text)) 0 }}\n      {{ if $numeric_level }}\n        {{ $percent = mul (float $level_text) 20 }}\n      {{ else if $percent_raw }}\n        {{ if gt (len (findRE \"^[0-9]+(?:\\\\.[0-9]+)?$\" $percent_raw)) 0 }}\n          {{ $percent = float $percent_raw }}\n        {{ end }}\n      {{ end }}\n\n      {{ if gt $percent 100 }}{{ $percent = 100 }}{{ end }}\n      {{ if lt $percent 0 }}{{ $percent = 0 }}{{ end }}\n\n      {{ if $name }}\n        {{ $langs = $langs | append (dict \"name\" $name \"level\" $level_text \"label\" $label \"percent\" $percent \"numeric_level\" $numeric_level) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $title := \"\" }}\n{{ $title_raw := index $content \"title\" }}\n{{ if $title_raw }}{{ $title = strings.TrimSpace (printf \"%v\" $title_raw) }}{{ end }}\n\n{{ $text := \"\" }}\n{{ $text_raw := index $content \"text\" }}\n{{ if $text_raw }}{{ $text = strings.TrimSpace (printf \"%v\" $text_raw) }}{{ end }}\n\n<div class=\"flex flex-col items-center max-w-prose mx-auto gap-3 justify-center\">\n\n  <div class=\"mb-6 text-3xl font-bold text-gray-900 dark:text-white\">\n    {{ $title | markdownify | emojify }}\n  </div>\n\n  {{ with $text }}<p>{{ . | markdownify | emojify }}</p>{{ end }}\n\n  <div class=\"flex items-center flex-col lg:flex-row gap-y-10 lg:gap-y-0 lg:gap-x-8\">\n    {{ range $langs }}\n    {{ $percent := index . \"percent\" }}\n    {{ $level_text := index . \"level\" }}\n    {{ $label := index . \"label\" }}\n    {{ $numeric_level := index . \"numeric_level\" }}\n\n    <div class=\"flex flex-col items-center\">\n      <div class=\"flex items-center justify-center w-28 h-28\">\n        <svg class=\"transform -rotate-90\" viewBox=\"0 0 288 288\">\n          <circle cx=\"145\" cy=\"145\" r=\"120\" stroke=\"currentColor\" stroke-width=\"30\" fill=\"transparent\"\n                  class=\"text-gray-200 dark:text-gray-700\" />\n          <circle cx=\"145\" cy=\"145\" r=\"120\" stroke=\"currentColor\" stroke-width=\"30\" fill=\"transparent\"\n                  class=\"text-primary-600 dark:text-primary-300\"\n                  style=\"stroke-dasharray: calc(2 * 22 / 7 * 120); stroke-dashoffset: calc((2 * 22 / 7 * 120) - ((2 * 22 / 7 * 120) * {{$percent}}/100))\" />\n        </svg>\n        <span class=\"absolute text-3xl\">{{ $percent }}%</span>\n      </div>\n      <span class=\"text-1xl\">{{ index . \"name\" }}</span>\n      {{ if $label }}\n        <span class=\"text-sm text-gray-500 dark:text-gray-400 mt-1\">{{ $label }}</span>\n      {{ else if and $level_text (not $numeric_level) }}\n        <span class=\"text-sm text-gray-500 dark:text-gray-400 mt-1\">{{ $level_text }}</span>\n      {{ end }}\n    </div>\n    {{ end }}\n  </div>\n\n</div>\n"
  },
  {
    "path": "modules/blox/blox/resume-languages/manifest.json",
    "content": "{\n  \"id\": \"resume-languages\",\n  \"name\": \"Resume Languages\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"resume\",\n  \"tags\": [\"resume\", \"languages\", \"multilingual\", \"skills\", \"fluency\", \"international\", \"cv\", \"circular-progress\"],\n  \"description\": \"Showcase language proficiency with beautiful circular progress indicators and percentage displays\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"resume\", \"languages\", \"multilingual\", \"fluency\", \"skills\", \"cv\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/resume-skills/README.md",
    "content": "# Resume Skills Block\n\n**Demonstrate expertise with organized skill categories and visual progress**\n\nPresent your technical and professional competencies with the Resume Skills block - a comprehensive component that organizes your skills into clear categories with optional visual progress indicators that immediately communicate your expertise levels.\n\n## ✨ Key Features\n\n- **Skill Categories**: Organize skills into logical groups (Technical, Soft Skills, Tools, etc.)\n- **Progress Visualization**: Optional progress bars show proficiency levels at a glance\n- **Icon Integration**: Beautiful icons for each skill that enhance visual recognition\n- **Flexible Layout**: Side-by-side categories on larger screens, stacked on mobile\n- **Custom Colors**: Configurable progress bar colors to match your brand\n- **Automatic Bars**: Bars appear when a skill has a level (1–5)\n- **Markdown Support**: Rich text formatting for skill names and descriptions\n\n## 🎯 Perfect For\n\n- **Software Developers**: Showcase programming languages, frameworks, and tools\n- **Designers**: Display creative software proficiency and design skills\n- **Data Professionals**: Highlight analytics tools, programming languages, and methodologies\n- **Marketing Professionals**: Present digital marketing tools and strategic capabilities\n- **Project Managers**: Demonstrate methodologies, tools, and soft skills\n- **Technical Consultants**: Comprehensive skill display across multiple domains\n\n## 🚀 Why Choose Resume Skills Block?\n\n**Clear Organization**: Skill categories help employers quickly find relevant expertise\n\n**Visual Proficiency**: Progress bars provide immediate understanding of skill levels\n\n**Comprehensive Coverage**: Support both technical and soft skills in one organized presentation\n\n**Professional Standards**: Clean, modern layout that meets current resume expectations\n\n## 📊 Skill Presentation Benefits\n\n- **Quick Scanning**: Organized categories allow rapid skill assessment\n- **Honest Communication**: Progress bars encourage accurate self-assessment\n- **Visual Engagement**: Icons and progress bars are more engaging than text lists\n- **Comprehensive View**: Categories ensure no important skills are overlooked\n\n## 💡 Professional Psychology\n\n- **Expertise Signaling**: Visual progress bars demonstrate self-awareness and competence\n- **Category Logic**: Organized presentation shows systematic thinking\n- **Skill Balance**: Mix of technical and soft skills presents well-rounded professional\n- **Growth Mindset**: Percentage-based system implies commitment to skill development\n\n## 🎨 Customization Excellence\n\n- **Brand Colors**: Progress bars and icons can match your personal or company branding\n- **Icon Flexibility**: Support for various icon packs to match your aesthetic\n- **Layout Control**: Choose between progress bars or simple lists based on your preference\n- **Content Freedom**: Unlimited skill categories and items for comprehensive coverage\n\n## 💼 Strategic Applications\n\n- **Career Positioning**: Clearly communicate your unique skill combination\n- **Job Matching**: Help employers quickly identify relevant expertise\n- **Skill Gaps**: Identify areas for professional development\n- **Team Fit**: Demonstrate how your skills complement team needs\n\nPerfect for technical professionals, creative experts, and anyone who wants to present their skills in an organized, visually appealing format that helps employers quickly understand their capabilities and expertise levels.\n\nTurn your skill set into a competitive advantage with professional presentation that clearly communicates your value proposition.\n"
  },
  {
    "path": "modules/blox/blox/resume-skills/block.html",
    "content": "{{/* Hugo Blox: Skills */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $username := \"me\" }}\n{{ $username_raw := index $content \"username\" }}\n{{ if eq (printf \"%T\" $username_raw) \"string\" }}\n  {{ $username = strings.TrimSpace $username_raw }}\n{{ end }}\n{{ $profile := partial \"functions/get_author_profile\" $username }}\n\n{{ $skills_raw := $profile.skills }}\n{{ $skills_iter := slice }}\n{{ if reflect.IsSlice $skills_raw }}\n  {{ $skills_iter = $skills_raw }}\n{{ else if and $skills_raw (reflect.IsMap $skills_raw) }}\n  {{ $skills_iter = slice $skills_raw }}\n{{ end }}\n\n{{ $skills := slice }}\n{{ if gt (len $skills_iter) 0 }}\n  {{ range $skills_iter }}\n    {{ if reflect.IsMap . }}\n      {{ $name := \"\" }}\n      {{ $description := \"\" }}\n      {{ $color := \"\" }}\n      {{ $color_border := \"\" }}\n      {{ $items_raw := index . \"items\" }}\n      {{ $items_iter := slice }}\n      {{ if reflect.IsSlice $items_raw }}\n        {{ $items_iter = $items_raw }}\n      {{ else if and $items_raw (reflect.IsMap $items_raw) }}\n        {{ $items_iter = slice $items_raw }}\n      {{ end }}\n      {{ $items := slice }}\n\n      {{ with index . \"name\" }}{{ $name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"description\" }}{{ $description = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"color\" }}{{ $color = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"color_border\" }}{{ $color_border = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n      {{ if gt (len $items_iter) 0 }}\n        {{ range $items_iter }}\n          {{ if reflect.IsMap . }}\n            {{ $item_label := \"\" }}\n            {{ $item_name := \"\" }}\n            {{ $item_desc := \"\" }}\n            {{ $item_icon := \"\" }}\n            {{ $level := \"\" }}\n\n            {{ with index . \"label\" }}{{ $item_label = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"name\" }}{{ $item_name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"description\" }}{{ $item_desc = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"icon\" }}{{ $item_icon = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"level\" }}{{ $level = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n            {{ if or $item_label $item_name }}\n              {{ $items = $items | append (dict \"label\" $item_label \"name\" $item_name \"description\" $item_desc \"icon\" $item_icon \"level\" $level) }}\n            {{ end }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n\n      {{ if and $name (gt (len $items) 0) }}\n        {{ $skills = $skills | append (dict \"name\" $name \"description\" $description \"color\" $color \"color_border\" $color_border \"items\" $items) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $title := \"\" }}\n{{ $title_raw := index $content \"title\" }}\n{{ if $title_raw }}{{ $title = strings.TrimSpace (printf \"%v\" $title_raw) }}{{ end }}\n\n{{ $text := \"\" }}\n{{ $text_raw := index $content \"text\" }}\n{{ if $text_raw }}{{ $text = strings.TrimSpace (printf \"%v\" $text_raw) }}{{ end }}\n\n{{ $columns := partial \"functions/coerce_int\" (dict \"value\" (index $design \"columns\") \"default\" 2 \"min\" 1 \"max\" 5) }}\n\n<div class=\"flex flex-col items-center max-w-prose mx-auto gap-3 justify-center\">\n\n  <div class=\"mb-6 text-3xl font-bold text-gray-900 dark:text-white\">\n    {{ $title | markdownify | emojify }}\n  </div>\n\n  {{ with $text }}<p>{{ . | markdownify | emojify }}</p>{{ end }}\n</div>\n\n<div class=\"grid grid-cols-1 {{ if ge $columns 2 }}md:grid-cols-2{{ end }} {{ if ge $columns 3 }}lg:grid-cols-3{{ end }} {{ if ge $columns 4 }}xl:grid-cols-4{{ end }} {{ if ge $columns 5 }}2xl:grid-cols-5{{ end }} items-start max-w-prose mx-auto gap-3 px-6 md:px-0\">\n\n  {{ range $skills }}\n  {{ $color := index . \"color\" | default \"\" }}\n  {{ $color_border := index . \"color_border\" | default \"\" }}\n  <div class=\"w-full\">\n    <div class=\"mb-5 text-xl font-bold text-gray-900 dark:text-white\">\n      {{ index . \"name\" | markdownify | emojify }}\n      {{ with index . \"description\" }}<p>{{ . | markdownify | emojify }}</p>{{ end }}\n    </div>\n    {{ range (index . \"items\") }}\n\n    <div class=\"skills-content\">\n\n      {{ with index . \"icon\" }}\n      <span class=\"skills-icon inline-block\">\n        {{ partial \"functions/get_icon\" (dict \"name\" . \"attributes\" \"style=\\\"height: 1em;\\\"\")  }}\n      </span>\n      {{ end }}\n\n      {{ $label := index . \"label\" | default (index . \"name\") }}\n      <span class=\"skills-name text-gray-700 dark:text-gray-300\">\n        {{ $label | markdownify | emojify }}\n        {{ with index . \"description\" }}<p class=\"skills-description\">{{ . | markdownify | emojify }}</p>{{ end }}\n      </span>\n      {{/* Numeric level (1-5) only. */}}\n      {{ $level := 0.0 }}\n      {{ $level_raw := index . \"level\" }}\n      {{ if $level_raw }}\n        {{ $level_str := strings.TrimSpace (printf \"%v\" $level_raw) }}\n        {{ if gt (len (findRE \"^[0-9]+(?:\\\\.[0-9]+)?$\" $level_str)) 0 }}\n          {{ $level = float $level_str }}\n        {{ end }}\n      {{ end }}\n      {{ if gt $level 5 }}{{ $level = 5 }}{{ end }}\n      {{ if lt $level 0 }}{{ $level = 0 }}{{ end }}\n      {{ if gt $level 0 }}\n      {{ $levelPercent := mul $level 20 }}\n      <div class=\"skills-wrapper\" {{with $color_border}}{{ (printf \"style=\\\"border-color: %s\\\"\" .) | safeHTMLAttr }}{{end}}>\n        <div class=\"skills-percent\" style=\"width: {{ printf \"%.0f\" $levelPercent }}%; {{with $color}}{{ (printf \"background-color: %s\" .) | safeCSS }}{{end}}\"></div>\n      </div>\n      {{ end }}\n    </div>\n    {{ end }}\n  </div>\n{{ end }}\n</div>\n"
  },
  {
    "path": "modules/blox/blox/resume-skills/manifest.json",
    "content": "{\n  \"id\": \"resume-skills\",\n  \"name\": \"Resume Skills\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"resume\",\n  \"tags\": [\"resume\", \"skills\", \"technical\", \"progress-bars\", \"expertise\", \"professional\", \"competencies\", \"cv\"],\n  \"description\": \"Display technical and professional skills with optional progress bars and organized categories\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"resume\", \"skills\", \"technical\", \"progress\", \"expertise\", \"cv\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/search-hero/README.md",
    "content": "# Search Hero Block\n\nA modern hero section with prominent search functionality, perfect for knowledge bases and documentation sites.\n\n## Features\n\n- 🔍 **Integrated Search** - Opens Hugo Blox search modal\n- 💎 **Gradient Text Highlighting** - Eye-catching emphasized text\n- 🎨 **Animated Backgrounds** - Gradient mesh with pulsing orbs\n- 📊 **Stats Display** - Showcase key metrics\n- 🏷️ **Badge Support** - With optional pulsing indicator\n- 🔥 **Popular Searches** - Quick suggestion pills\n- 📱 **Fully Responsive** - Beautiful on all devices\n\n## Basic Usage\n\n```yaml\nsections:\n  - block: search-hero\n    content:\n      title: \"Your Knowledge Hub\"\n      subtitle: \"Find answers to all your questions\"\n```\n\n## Title Highlighting\n\nUse `==text==` syntax to apply gradient highlighting to any words or phrases:\n\n### Single Highlight\n\n```yaml\ntitle: \"Master ==AI Tools==\"\n```\n\n**Result**: \"Master\" in regular text, \"AI Tools\" with gradient\n\n### Multiple Highlights\n\n```yaml\ntitle: \"Master ==AI Tools==. ==Boost Your Productivity.==\"\n```\n\n**Result**: Both \"AI Tools\" and \"Boost Your Productivity\" highlighted\n\n### Mid-Sentence Highlighting\n\n```yaml\ntitle: \"Build ==amazing== websites with ==Hugo Blox==\"\n```\n\n**Result**: \"amazing\" and \"Hugo Blox\" highlighted within the sentence\n\n### i18n-Friendly\n\n```yaml\n# en.yaml\n- id: hero_title\n  translation: \"Master ==AI Tools==. ==Boost Productivity.==\"\n\n# es.yaml\n- id: hero_title\n  translation: \"Domina ==Herramientas IA==. ==Aumenta Productividad.==\"\n```\n\nEach language can highlight naturally!\n\n## Complete Example\n\n```yaml\nsections:\n  - block: search-hero\n    content:\n      badge:\n        text: \"500+ AI answers added this week\"\n        show_pulse: true  # Shows pulsing dot indicator\n      \n      title: \"Master ==AI Tools==. ==Boost Your Productivity.==\"\n      \n      subtitle: \"Get instant answers to your AI questions from our comprehensive knowledge base.\"\n      \n      search_placeholder: \"Ask anything about AI tools, prompts, or workflows...\"\n      \n      suggestions:\n        - \"ChatGPT prompts\"\n        - \"Midjourney tips\"\n        - \"AI automation\"\n        - \"Claude vs GPT-4\"\n      \n      stats:\n        - value: \"2,500+\"\n          label: \"Expert Answers\"\n        - value: \"50K+\"\n          label: \"Monthly Users\"\n        - value: \"4.9/5\"\n          label: \"User Rating\"\n    \n    design:\n      background:\n        gradient_mesh:\n          enable: true\n          style: \"orbs\"       # orbs, waves, dots, grid\n          animation: \"pulse\"   # pulse, float, rotate, none\n          intensity: \"subtle\"  # subtle, medium, bold\n          colors:\n            - \"primary-500/20\"\n            - \"primary-600/20\"\n      spacing:\n        padding: [\"8rem\", \"0\", \"6rem\", \"0\"]\n```\n\n## Properties\n\n### Content\n\n#### `badge`\n- **Type**: Object\n- **Optional**\n- **Properties**:\n  - `text` (string): Badge text\n  - `show_pulse` (boolean): Show pulsing dot indicator\n\n#### `title`\n- **Type**: String\n- **Required**\n- **Description**: Main heading. Use `==text==` for gradient highlighting\n- **Example**: `\"Build ==Amazing== Websites\"`\n\n#### `subtitle`\n- **Type**: String\n- **Optional**\n- **Description**: Supporting text below title\n\n#### `search_placeholder`\n- **Type**: String\n- **Optional**\n- **Default**: \"Search for answers...\"\n- **Description**: Placeholder text in search box\n\n#### `suggestions`\n- **Type**: Array of strings\n- **Optional**\n- **Description**: Quick search suggestion pills\n- **Example**: `[\"Topic 1\", \"Topic 2\"]`\n\n#### `stats`\n- **Type**: Array of objects\n- **Optional**\n- **Description**: Metrics displayed below search\n- **Properties**:\n  - `value` (string): Metric value (e.g., \"2,500+\")\n  - `label` (string): Metric description\n\n### Design\n\nSee [Gradient Mesh Guide](../../../../GRADIENT_MESH_GUIDE.md) for complete background options.\n\n## Styling Tips\n\n### Gradient Colors\n\nThe `==text==` highlighting uses:\n```css\nbackground: linear-gradient(to-right, primary-600, primary-500);\nbackground-clip: text;\n```\n\nThis automatically adapts to your site's primary color theme.\n\n### Stat Layout\n\nStats automatically:\n- Display in 3-column grid\n- Center-aligned\n- Responsive on mobile\n\n### Search Integration\n\nThe search button automatically:\n- Opens Hugo Blox search modal\n- Works with Cmd+K shortcut\n- Supports pre-filled queries from suggestions\n\n## Examples\n\n### Knowledge Base (Current)\n\n```yaml\ntitle: \"Master ==AI Tools==. ==Boost Your Productivity.==\"\n```\n\n### Documentation Site\n\n```yaml\ntitle: \"==Comprehensive== Documentation for ==Developers==\"\n```\n\n### Product Landing\n\n```yaml\ntitle: \"Build ==Faster==. Ship ==Better==. Scale ==Effortlessly.==\"\n```\n\n### Academic/Research\n\n```yaml\ntitle: \"Advancing ==Science== Through ==Collaboration==\"\n```\n\n## Best Practices\n\n### 1. Highlight Key Value Props\n\n✅ **Good**: Highlight unique value or action words\n```yaml\ntitle: \"Learn ==Faster== with AI\"\n```\n\n❌ **Bad**: Highlight common words\n```yaml\ntitle: \"Learn Faster ==with== AI\"\n```\n\n### 2. Don't Over-Highlight\n\n✅ **Good**: 1-3 highlighted phrases max\n```yaml\ntitle: \"Master ==AI Tools==. Boost ==Productivity==.\"\n```\n\n❌ **Bad**: Everything highlighted\n```yaml\ntitle: \"==Master== ==AI== ==Tools==. ==Boost== ==Your== ==Productivity==.\"\n```\n\n### 3. Keep Highlights Meaningful\n\nHighlighted text should be:\n- **Scannable** - Key phrases users notice first\n- **Actionable** - Words that convey benefit\n- **Brief** - 1-4 words per highlight\n\n## Advanced Examples\n\n### Corporate Landing\n\n```yaml\ntitle: \"Transform ==Your Business== with AI\"\n```\n\n### Educational Platform\n\n```yaml\ntitle: \"Learn ==Smarter==, Not ==Harder==\"\n```\n\n## Technical Notes\n\n- **Regex Pattern**: `==([^=]+)==` matches text between double equals\n- **Processing**: Applied before markdownify, so Markdown works inside highlights\n- **Output**: `<span class=\"bg-gradient-to-r from-primary-600 to-primary-500 bg-clip-text text-transparent\">text</span>`\n- **Performance**: No runtime cost, processed at build time\n\n---\n\n**Part of HugoBlox Kit** - https://hugoblox.com\n"
  },
  {
    "path": "modules/blox/blox/search-hero/block.html",
    "content": "{{- $wcPage := .wcPage -}}\n{{- $wcBlock := .wcBlock -}}\n{{- $wcIdentifier := .wcIdentifier -}}\n\n{{/* Enable Alpine.js for interactivity */}}\n{{ $wcPage.Page.Store.Set \"has_alpine\" true }}\n\n{{ $content := $wcBlock.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n\n{{ $badge := index $content \"badge\" }}\n{{ if not (reflect.IsMap $badge) }}{{ $badge = dict }}{{ end }}\n{{ $badge_text := \"\" }}\n{{ with index $badge \"text\" }}{{ $badge_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ $show_pulse := partial \"functions/coerce_bool\" (dict \"value\" (index $badge \"show_pulse\") \"default\" false) }}\n\n{{ $title := \"\" }}\n{{ $title_raw := index $content \"title\" }}\n{{ if $title_raw }}{{ $title = strings.TrimSpace (printf \"%v\" $title_raw) }}{{ end }}\n{{ if $title }}\n  {{ $title = replaceRE \"==([^=]+)==\" \"<span class=\\\"bg-gradient-to-r from-primary-600 to-primary-500 bg-clip-text text-transparent\\\">$1</span>\" $title }}\n{{ end }}\n\n{{ $subtitle := \"\" }}\n{{ $subtitle_raw := index $content \"subtitle\" }}\n{{ if $subtitle_raw }}{{ $subtitle = strings.TrimSpace (printf \"%v\" $subtitle_raw) }}{{ end }}\n\n{{ $search_placeholder := \"\" }}\n{{ $placeholder_raw := index $content \"search_placeholder\" }}\n{{ if eq (printf \"%T\" $placeholder_raw) \"string\" }}\n  {{ $search_placeholder = strings.TrimSpace $placeholder_raw }}\n{{ end }}\n{{ if not $search_placeholder }}{{ $search_placeholder = \"Search for answers...\" }}{{ end }}\n\n{{ $suggestions_raw := index $content \"suggestions\" }}\n{{ $suggestions := slice }}\n{{ if reflect.IsSlice $suggestions_raw }}\n  {{ range $suggestions_raw }}\n    {{ $suggestion := strings.TrimSpace (printf \"%v\" .) }}\n    {{ if $suggestion }}{{ $suggestions = $suggestions | append $suggestion }}{{ end }}\n  {{ end }}\n{{ else if eq (printf \"%T\" $suggestions_raw) \"string\" }}\n  {{ $suggestion := strings.TrimSpace $suggestions_raw }}\n  {{ if $suggestion }}{{ $suggestions = slice $suggestion }}{{ end }}\n{{ end }}\n\n{{ $stats_raw := index $content \"stats\" }}\n{{ $stats_iter := slice }}\n{{ if reflect.IsSlice $stats_raw }}\n  {{ $stats_iter = $stats_raw }}\n{{ else if and $stats_raw (reflect.IsMap $stats_raw) }}\n  {{ $stats_iter = slice $stats_raw }}\n{{ end }}\n\n{{ $stats := slice }}\n{{ if gt (len $stats_iter) 0 }}\n  {{ range $stats_iter }}\n    {{ if reflect.IsMap . }}\n      {{ $value := \"\" }}\n      {{ $label := \"\" }}\n      {{ with index . \"value\" }}{{ $value = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ with index . \"label\" }}{{ $label = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ if or $value $label }}\n        {{ $stats = $stats | append (dict \"value\" $value \"label\" $label) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Background is now handled by parse_block_v3.html gradient_mesh system */}}\n{{/* Content only - wrapper and styling applied by framework */}}\n<div class=\"mx-auto max-w-7xl px-6 lg:px-8\">\n    <div class=\"mx-auto max-w-3xl text-center\">\n      \n      {{/* Badge */}}\n      {{ if $badge_text }}\n      <div class=\"mb-8 inline-flex items-center gap-2 rounded-full bg-primary-100 dark:bg-primary-900/30 px-4 py-2 text-sm font-medium text-primary-800 dark:text-primary-200\">\n        {{ if $show_pulse }}\n        <span class=\"flex h-2 w-2 relative\">\n          <span class=\"animate-ping absolute inline-flex h-full w-full rounded-full bg-primary-400 opacity-75\"></span>\n          <span class=\"relative inline-flex rounded-full h-2 w-2 bg-primary-500\"></span>\n        </span>\n        {{ end }}\n        {{ $badge_text | markdownify }}\n      </div>\n      {{ end }}\n      \n      {{/* Title - supports ==highlight== syntax for gradient text */}}\n      <h1 class=\"text-4xl font-bold tracking-tight text-gray-900 dark:text-white sm:text-6xl mb-6\">\n        {{ $title | markdownify | emojify | safeHTML }}\n      </h1>\n      \n      {{/* Subtitle */}}\n      {{ with $subtitle }}\n      <p class=\"text-lg leading-8 text-gray-600 dark:text-gray-300 mb-12\">\n        {{ . | markdownify | emojify }}\n      </p>\n      {{ end }}\n      \n      {{/* Search Box - Integrates with Pagefind */}}\n      <div class=\"relative\" x-data=\"{ searchFocus: false }\">\n        <button \n          data-search-toggle\n          type=\"button\"\n          class=\"w-full group cursor-pointer\"\n          aria-label=\"Open search\">\n          <div class=\"relative overflow-hidden rounded-2xl bg-white dark:bg-gray-800 shadow-xl ring-1 ring-gray-900/5 transition-all duration-300 hover:ring-2 hover:ring-primary-500 hover:scale-105\" \n               :class=\"{ 'ring-2 ring-primary-500 scale-105': searchFocus }\">\n            <div class=\"w-full px-6 py-5 pl-14 pr-32 text-left\">\n              <span class=\"text-gray-400 dark:text-gray-500 text-lg\">{{ $search_placeholder }}</span>\n            </div>\n            <div class=\"absolute inset-y-0 left-0 flex items-center pl-5 pointer-events-none\">\n              <svg class=\"h-5 w-5 text-gray-400\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\"></path>\n              </svg>\n            </div>\n            <div class=\"absolute inset-y-2 right-2 flex items-center px-4 py-2 bg-primary-600 group-hover:bg-primary-700 text-white rounded-xl font-medium transition-colors pointer-events-none\">\n              Search\n              <svg class=\"ml-2 h-4 w-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 7l5 5m0 0l-5 5m5-5H6\"></path>\n              </svg>\n            </div>\n          </div>\n        </button>\n        \n        {{/* Quick search suggestions - Now trigger Pagefind with pre-filled query */}}\n        {{ if gt (len $suggestions) 0 }}\n        <div class=\"mt-4 flex flex-wrap items-center justify-center gap-2 text-sm\">\n          <span class=\"text-gray-500 dark:text-gray-400\">Popular:</span>\n          {{ range $suggestions }}\n          <button\n            data-search-toggle\n            data-search-query=\"{{ . | htmlEscape }}\"\n            type=\"button\" \n            class=\"px-3 py-1 rounded-lg bg-gray-100 dark:bg-gray-800 text-gray-700 dark:text-gray-300 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors cursor-pointer\">\n            {{ . }}\n          </button>\n          {{ end }}\n        </div>\n        {{ end }}\n      </div>\n      \n      {{/* Stats */}}\n      {{ if gt (len $stats) 0 }}\n      <div class=\"mt-16 grid grid-cols-3 gap-8 text-center\">\n        {{ range $stats }}\n        <div>\n          <div class=\"text-3xl font-bold text-gray-900 dark:text-white\">{{ index . \"value\" }}</div>\n          <div class=\"mt-1 text-sm text-gray-500 dark:text-gray-400\">{{ index . \"label\" }}</div>\n        </div>\n        {{ end }}\n      </div>\n      {{ end }}\n      \n    </div>\n  </div>\n"
  },
  {
    "path": "modules/blox/blox/search-hero/manifest.json",
    "content": "{\n  \"name\": \"search-hero\",\n  \"version\": \"1\",\n  \"title\": \"Search Hero\",\n  \"description\": \"Hero section with prominent search for knowledge bases\",\n  \"categories\": [\"hero\", \"search\"],\n  \"preview\": \"preview.svg\"\n}\n"
  },
  {
    "path": "modules/blox/blox/shared/js/components/Icon.jsx",
    "content": "// biome-ignore lint/correctness/noUnusedImports: Classic Preact JSX runtime may require 'h' for JSX transform\nimport {h} from \"preact\";\n\n/**\n * Icon component\n * Renders an SVG icon from a raw SVG string passed from Hugo.\n * Decodes JSON-escaped sequences (\\u003c) and HTML entities (&lt;, &quot;, &#34;).\n *\n * SVG sizing strategy:\n * - By default, icons size to 1em (matching current font size) — works universally\n *   for inline icons in buttons, text, lists, etc.\n * - If the caller provides explicit height via style attribute (e.g. style=\"height: 36px\"),\n *   the SVG fills that container with height:100%;width:auto instead.\n * - If the caller provides explicit w-/h- Tailwind classes, those take precedence.\n */\nexport const Icon = ({svg, attributes}) => {\n  if (!svg) return null;\n\n  // Clean the SVG string: decode HTML entities and TRIM whitespace\n  let decoded = String(svg)\n    .replace(/\\\\u003c/gi, \"<\")\n    .replace(/\\\\u003e/gi, \">\")\n    .replace(/&lt;/gi, \"<\")\n    .replace(/&gt;/gi, \">\")\n    .replace(/&quot;/gi, '\"')\n    .replace(/&#34;/gi, '\"')\n    .replace(/\\\\u0026/gi, \"&\")\n    .replace(/&amp;/gi, \"&\")\n    .trim();\n\n  const hasWrapper = /<svg[\\s>]/i.test(decoded);\n\n  if (hasWrapper) {\n    // Determine SVG sizing: if caller provides explicit height (via style attr),\n    // use 100% to fill the container; otherwise default to 1em for self-sizing.\n    const callerStyle = attributes?.style || \"\";\n    const hasExplicitHeight = /height\\s*:/i.test(String(callerStyle));\n    const svgStyle = hasExplicitHeight ? \"height:100%;width:auto\" : \"height:1em;width:auto\";\n\n    decoded = decoded.replace(/^(<svg\\b)/i, `$1 style=\"${svgStyle}\"`);\n\n    const wrapperProps = {\n      ...attributes,\n      class: attributes?.class || \"\",\n    };\n\n    // eslint-disable-next-line lint/security/noDangerouslySetInnerHtml\n    return <span {...wrapperProps} dangerouslySetInnerHTML={{__html: decoded}} />;\n  }\n\n  const finalAttributes = {\n    class: \"inline-block w-4 h-4\",\n    fill: \"currentColor\",\n    viewBox: \"0 0 20 20\",\n    ...(attributes || {}),\n  };\n\n  const attrs = Object.entries(finalAttributes)\n    .map(([k, v]) => `${k}=\"${String(v)}\"`)\n    .join(\" \");\n\n  // eslint-disable-next-line lint/security/noDangerouslySetInnerHtml\n  return <span class=\"inline-block\" dangerouslySetInnerHTML={{__html: `<svg ${attrs}>${decoded}</svg>`}} />;\n};\n"
  },
  {
    "path": "modules/blox/blox/stats/README.md",
    "content": "# Stats Block\n\nDisplay impressive statistics with modern animations, icons, and engaging visual effects. Perfect for showcasing lab achievements, research metrics, and organizational highlights.\n\n## Key Features\n\n- **🎬 Counter Animations**: Numbers count up on scroll with easing\n- **📊 Visual Icons**: Icons for each statistic enhance comprehension\n- **🎨 Multiple Layouts**: Cards, compact, or minimal display modes\n- **📱 Responsive Design**: Adapts beautifully to all screen sizes\n- **🌙 Dark Mode Ready**: Seamless theme switching\n- **⚡ Performance**: CSS-first animations with minimal JavaScript\n- **🎯 Intersection Observer**: Animations trigger when scrolled into view\n- **✨ Hover Effects**: Subtle interactions for engagement\n\n## Layout Options\n\n### Cards Layout (Default)\nModern card-based design featuring:\n- Individual cards with shadows and hover effects\n- Icons with background circles\n- Gradient hover states\n- Staggered animation entry\n- Optimal for 2-4 statistics\n\n### Compact Layout\nSingle card with divided sections:\n- Unified background\n- Bordered divisions\n- Space-efficient\n- Good for 3-6 statistics\n\n### Minimal Layout\nClean, icon-centric design:\n- No backgrounds or borders\n- Focus on typography\n- Suitable for headers/footers\n- Works well with many statistics\n\n## Usage Examples\n\n### Research Lab Metrics (Enhanced)\n```yaml\nsections:\n  - block: stats\n    content:\n      title: Impact by the Numbers\n      text: Driving scientific discovery through measurable achievements\n      items:\n        - statistic: \"150+\"\n          description: Publications in top-tier journals\n          sub_metric: Nature, Science, Cell, PNAS\n          icon: hero/document-text\n          \n        - statistic: \"25\"\n          description: Brilliant researchers and scientists\n          sub_metric: From 12 countries worldwide\n          icon: hero/user-group\n          \n        - statistic: \"$12M\"\n          description: Active research funding\n          sub_metric: NSF, NIH, DOE grants\n          icon: hero/currency-dollar\n          \n        - statistic: \"8\"\n          description: Breakthrough discoveries\n          sub_metric: Patent applications filed\n          icon: hero/light-bulb\n    design:\n      layout: cards\n      css_class: \"bg-gradient-to-b from-primary-50 to-white dark:from-primary-900/20 dark:to-gray-800\"\n```\n\n### University Department Stats\n```yaml\ncontent:\n  items:\n    - statistic: \"2,500\"\n      description: Students enrolled\n      icon: hero/academic-cap\n    - statistic: \"95%\"\n      description: Graduation rate\n      icon: hero/chart-bar\n    - statistic: \"40+\"\n      description: Countries represented\n      icon: hero/globe-alt\ndesign:\n  layout: compact\n```\n\n### Startup Metrics\n```yaml\ncontent:\n  items:\n    - statistic: \"$2.5M\"\n      description: Funding raised\n      icon: hero/banknotes\n    - statistic: \"10K+\"\n      description: Active users\n      icon: hero/users\n    - statistic: \"98.5%\"\n      description: Uptime reliability\n      icon: hero/chart-line\ndesign:\n  layout: minimal\n```\n\n## Animation Features\n\n### Counter Animation\n- **Easing**: Smooth ease-out cubic function\n- **Duration**: 2 seconds for optimal viewing\n- **Trigger**: Intersection Observer when 50% visible\n- **Number Extraction**: Automatically extracts numbers from text\n\n### Entrance Animation\n- **Staggered Entry**: Items animate in sequence\n- **Fade + Slide**: Combines opacity and translateY\n- **Delay Timing**: 150ms between items\n- **Threshold**: Triggers 100px before entering viewport\n\n### Hover Effects\n- **Scale Transform**: Icons scale 110% on hover\n- **Color Transitions**: Text color changes\n- **Background Glow**: Subtle gradient overlay\n- **Shadow Enhancement**: Deeper shadows on hover\n\n## Configuration Options\n\n### Content Fields\n- **title**: Optional section heading\n- **text**: Optional description\n- **items**: Array of statistics\n  - `statistic`: Number or value (required)\n  - `description`: What the number represents (required)\n  - `icon`: Icon identifier (optional)\n  - `sub_metric`: Additional context (optional)\n\n### Design Options\n- **layout**: Visual layout\n  - `cards`: Individual cards (default)\n  - `compact`: Single divided card\n  - `minimal`: Clean typography focus\n\n## Icon Guidelines\n\n### Recommended Icons for Common Stats\n\n**Publications/Research:**\n- `hero/document-text` - Publications\n- `hero/beaker` - Research projects\n- `hero/light-bulb` - Discoveries/innovations\n- `hero/trophy` - Awards/recognition\n\n**People/Team:**\n- `hero/user-group` - Team members\n- `hero/academic-cap` - Students/graduates\n- `hero/users` - Community/users\n- `hero/heart` - Satisfaction ratings\n\n**Financial/Business:**\n- `hero/currency-dollar` - Funding/revenue\n- `hero/banknotes` - Investments\n- `hero/chart-bar` - Growth metrics\n- `hero/building-office` - Locations\n\n**Technology/Digital:**\n- `hero/cpu-chip` - Computing power\n- `hero/globe-alt` - Global reach\n- `hero/chart-line` - Performance metrics\n- `hero/server` - Infrastructure\n\n## Performance Notes\n\n### JavaScript Usage\nMinimal JavaScript for:\n- Intersection Observer (viewport detection)\n- Counter animation (number progression)\n- Modern browser APIs only\n\n### CSS Animations\n- Hardware accelerated transforms\n- Optimized for 60fps\n- Respects `prefers-reduced-motion`\n- Fallbacks for older browsers\n\n### Image Optimization\n- SVG icons preferred (scalable, fast)\n- WebP fallbacks for raster images\n- Lazy loading for non-critical images\n\n## Best Practices\n\n1. **Number Selection**: Choose impactful, verifiable metrics\n2. **Descriptions**: Keep concise but descriptive\n3. **Icons**: Match icons to metric meaning\n4. **Sub-metrics**: Add credibility with specific details\n5. **Layout**: Choose based on number of items (2-4: cards, 5+: compact)\n6. **Consistency**: Use similar metric types (all percentages, all counts)\n7. **Context**: Include timeframes where relevant\n\n## Advanced Customization\n\n### Custom Animations\nOverride animation timing:\n```css\n.stats-item {\n  transition-duration: 1s;\n  transition-delay: 0.2s;\n}\n```\n\n### Custom Counters\nFor complex number formatting:\n```yaml\nstatistic: \"99.9%\"  # Will animate 0 → 99\nstatistic: \"$2.5M\"  # Will animate 0 → 2.5\nstatistic: \"1st\"    # Will animate 0 → 1\n```\n\n### Accessibility\n- Numbers are announced by screen readers\n- Animations respect motion preferences\n- High contrast maintained\n- Keyboard navigation supported\n\nThe enhanced Stats block creates visual impact while maintaining professional credibility - essential for research lab websites targeting academic and industry audiences."
  },
  {
    "path": "modules/blox/blox/stats/client.jsx",
    "content": "/**\n * Stats Block - Client-side Hydration\n * Uses the shared StatsBlock component for consistency\n */\n\nimport {render} from \"preact\";\nimport {StatsBlock} from \"./component.jsx\";\n\nfunction renderStatsBlocks() {\n  const statsBlocks = document.querySelectorAll('[data-block-type=\"stats\"]');\n\n  statsBlocks.forEach((block) => {\n    const propsData = block.dataset.props;\n    if (propsData) {\n      try {\n        const props = JSON.parse(propsData);\n        render(<StatsBlock {...props} />, block);\n        console.debug(`✓ Stats block \"${block.id}\" rendered with Preact`);\n      } catch (error) {\n        console.error(`Failed to render Stats block \"${block.id}\":`, error);\n      }\n    }\n  });\n\n  if (statsBlocks.length > 0) {\n    console.debug(`✓ ${statsBlocks.length} Stats blocks initialized with Preact`);\n  }\n}\n\n// Initialize immediately — script is already deferred\nrenderStatsBlocks();\n"
  },
  {
    "path": "modules/blox/blox/stats/component.jsx",
    "content": "/**\n * Stats Block Component - Single source of truth\n * Used for both SSR (via preact-wrapper) and SaaS live preview\n *\n * Layouts: cards | compact | minimal\n * Features: counter animation, per-item icons, stagger reveal\n */\n\nimport {useEffect, useRef} from \"preact/hooks\";\nimport {Icon} from \"../../shared/components/Icon.jsx\";\n\n// Simple markdown renderer (shared with Hero)\nfunction renderText(text) {\n  if (!text) return \"\";\n  return text\n    .replace(/\\*\\*(.*?)\\*\\*/g, \"<strong>$1</strong>\")\n    .replace(/\\*(.*?)\\*/g, \"<em>$1</em>\")\n    .replace(/`(.*?)`/g, \"<code>$1</code>\");\n}\n\n// Extract numeric target from a statistic string like \"10,000+\" → 10000\nfunction parseTarget(statistic) {\n  if (!statistic) return 0;\n  const raw = String(statistic).replace(/[^0-9.]/g, \"\");\n  const num = Number(raw);\n  return Number.isNaN(num) ? 0 : num;\n}\n\n// Extract prefix, number, suffix from \"~10,000+\" → { prefix: \"~\", number: \"10,000\", suffix: \"+\" }\nfunction extractParts(text) {\n  if (!text) return {prefix: \"\", numberPart: \"\", suffix: \"\"};\n  const parts = String(text).match(/([^0-9]*)([0-9][0-9,.]*)(.*)/);\n  return {\n    prefix: parts ? parts[1] : \"\",\n    numberPart: parts ? parts[2] : \"\",\n    suffix: parts ? parts[3] : \"\",\n  };\n}\n\n// Counter animation hook\nfunction useCounterAnimation(containerRef) {\n  useEffect(() => {\n    const container = containerRef.current;\n    if (!container) return;\n\n    const prefersReducedMotion = window.matchMedia(\"(prefers-reduced-motion: reduce)\").matches;\n\n    function animateCounters(el) {\n      el.classList.add(\"animate\");\n      const counters = el.querySelectorAll(\".counter\");\n\n      counters.forEach((counter) => {\n        const target = parseTarget(counter.getAttribute(\"data-target\"));\n        if (target <= 0) return;\n\n        const {prefix, numberPart, suffix} = extractParts(counter.textContent);\n        const decimals = (numberPart.split(\".\")[1] || \"\").length;\n        const formatter = new Intl.NumberFormat(undefined, {\n          minimumFractionDigits: decimals,\n          maximumFractionDigits: decimals,\n        });\n\n        if (prefersReducedMotion) {\n          counter.textContent = `${prefix}${formatter.format(target)}${suffix}`;\n          return;\n        }\n\n        const duration = 2000;\n        const start = Date.now();\n\n        function update() {\n          const now = Date.now();\n          const progress = Math.min((now - start) / duration, 1);\n          const easeOut = 1 - (1 - progress) ** 3;\n          const current = target * easeOut;\n          counter.textContent = `${prefix}${formatter.format(current)}${suffix}`;\n          if (progress < 1) requestAnimationFrame(update);\n        }\n\n        requestAnimationFrame(update);\n      });\n    }\n\n    const observer = new IntersectionObserver(\n      (entries) => {\n        entries.forEach((entry) => {\n          if (entry.isIntersecting) {\n            animateCounters(entry.target);\n            observer.unobserve(entry.target);\n          }\n        });\n      },\n      {threshold: 0.2, rootMargin: \"0px 0px -10% 0px\"},\n    );\n\n    // Observe each stat item\n    const items = container.querySelectorAll(\".stats-item\");\n    items.forEach((item) => {\n      const rect = item.getBoundingClientRect();\n      const vh = window.innerHeight;\n      if (rect.top < vh * 0.9 && rect.bottom > 0) {\n        animateCounters(item);\n      } else {\n        observer.observe(item);\n      }\n    });\n\n    return () => observer.disconnect();\n  }, []);\n}\n\n// Grid columns class based on item count\nfunction gridColsClass(count) {\n  if (count <= 1) return \"lg:grid-cols-1\";\n  if (count === 2) return \"lg:grid-cols-2\";\n  if (count >= 4) return \"lg:grid-cols-4\";\n  return \"lg:grid-cols-3\";\n}\n\n// ─── Stat Item (Cards) ───────────────────────────────────────────────\nfunction StatCard({item, iconSvg}) {\n  return (\n    <div class=\"stats-item group relative bg-white dark:bg-gray-800 rounded-2xl shadow-lg hover:shadow-2xl transition-all duration-500 overflow-hidden border border-gray-100 dark:border-gray-700 hover:border-primary-200 dark:hover:border-primary-800\">\n      {/* Hover gradient */}\n      <div class=\"absolute inset-0 bg-gradient-to-br from-primary-50 to-transparent dark:from-primary-900/20 dark:to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500\" />\n\n      <div class=\"relative p-8 text-center\">\n        {/* Icon */}\n        {iconSvg && (\n          <div class=\"inline-flex items-center justify-center w-16 h-16 mb-6 bg-primary-100 dark:bg-primary-900/50 rounded-xl group-hover:scale-110 transition-transform duration-300\">\n            <Icon svg={iconSvg} attributes={{class: \"w-8 h-8 text-primary-600 dark:text-primary-400\"}} />\n          </div>\n        )}\n\n        {/* Statistic */}\n        <div class=\"mb-3\">\n          <h3\n            class=\"text-4xl sm:text-5xl lg:text-6xl xl:text-7xl font-black text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors duration-300 counter\"\n            data-target={parseTarget(item.statistic)}\n            dangerouslySetInnerHTML={{__html: renderText(item.statistic)}}\n          />\n        </div>\n\n        {/* Description */}\n        <p\n          class=\"text-sm sm:text-base font-medium text-gray-600 dark:text-gray-300 leading-relaxed group-hover:text-gray-700 dark:group-hover:text-gray-200 transition-colors duration-300\"\n          dangerouslySetInnerHTML={{__html: renderText(item.description)}}\n        />\n\n        {/* Sub-metric */}\n        {item.sub_metric && <p class=\"mt-2 text-xs text-gray-500 dark:text-gray-400\">{item.sub_metric}</p>}\n      </div>\n    </div>\n  );\n}\n\n// ─── Stat Item (Compact) ─────────────────────────────────────────────\nfunction StatCompact({item, iconSvg}) {\n  return (\n    <div class=\"stats-item group p-8 text-center hover:bg-gray-50 dark:hover:bg-gray-700/50 transition-colors duration-300\">\n      {iconSvg && (\n        <div class=\"inline-flex items-center justify-center w-12 h-12 mb-4 bg-primary-100 dark:bg-primary-900/50 rounded-lg group-hover:scale-110 transition-transform duration-300\">\n          <Icon svg={iconSvg} attributes={{class: \"w-6 h-6 text-primary-600 dark:text-primary-400\"}} />\n        </div>\n      )}\n\n      <h3\n        class=\"text-3xl sm:text-4xl lg:text-5xl font-bold text-gray-900 dark:text-white mb-2 counter\"\n        data-target={parseTarget(item.statistic)}\n        dangerouslySetInnerHTML={{__html: renderText(item.statistic)}}\n      />\n\n      <p\n        class=\"text-sm font-medium text-gray-600 dark:text-gray-300 leading-relaxed\"\n        dangerouslySetInnerHTML={{__html: renderText(item.description)}}\n      />\n    </div>\n  );\n}\n\n// ─── Stat Item (Minimal) ─────────────────────────────────────────────\nfunction StatMinimal({item, iconSvg}) {\n  return (\n    <div class=\"stats-item text-center group\">\n      {iconSvg && (\n        <div class=\"inline-flex items-center justify-center w-14 h-14 mb-4 bg-primary-100 dark:bg-primary-900/50 rounded-full group-hover:scale-110 transition-transform duration-300\">\n          <Icon svg={iconSvg} attributes={{class: \"w-7 h-7 text-primary-600 dark:text-primary-400\"}} />\n        </div>\n      )}\n\n      <h3\n        class=\"text-3xl sm:text-4xl lg:text-5xl font-bold text-gray-900 dark:text-white mb-2 counter\"\n        data-target={parseTarget(item.statistic)}\n        dangerouslySetInnerHTML={{__html: renderText(item.statistic)}}\n      />\n\n      <p class=\"text-sm font-medium text-gray-600 dark:text-gray-300\" dangerouslySetInnerHTML={{__html: renderText(item.description)}} />\n    </div>\n  );\n}\n\n// ─── Main Stats Block ────────────────────────────────────────────────\nexport const StatsBlock = ({content, design, _id, icon_svgs}) => {\n  const containerRef = useRef(null);\n  useCounterAnimation(containerRef);\n\n  const title = content?.title;\n  const text = content?.text;\n  const items = Array.isArray(content?.items) ? content.items : [];\n  const layout = (design?.layout || \"cards\").toLowerCase();\n\n  const count = Math.max(1, Math.min(items.length, 4));\n  const lgCols = gridColsClass(count);\n  const baseCols = count === 1 ? \"grid-cols-1\" : \"grid-cols-2\";\n\n  // icon_svgs is a dict keyed by icon name, provided by preact-wrapper\n  const iconMap = icon_svgs || {};\n\n  return (\n    <div class=\"py-8 sm:py-12 lg:py-16\" ref={containerRef}>\n      <div class=\"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8\">\n        {/* Section Header */}\n        {(title || text) && (\n          <div class=\"text-center mb-12 lg:mb-16\">\n            {title && (\n              <h2\n                class=\"text-3xl sm:text-4xl font-bold text-gray-900 dark:text-white tracking-tight mb-4\"\n                dangerouslySetInnerHTML={{__html: renderText(title)}}\n              />\n            )}\n            {text && <p class=\"text-lg text-gray-600 dark:text-gray-400 max-w-3xl mx-auto\" dangerouslySetInnerHTML={{__html: renderText(text)}} />}\n          </div>\n        )}\n\n        {/* Cards Layout */}\n        {layout === \"cards\" && (\n          <div class={`grid grid-cols-1 sm:grid-cols-2 ${lgCols} gap-6 lg:gap-8`}>\n            {items.map((item, idx) => (\n              <StatCard key={idx} item={item} iconSvg={item.icon ? iconMap[item.icon] : null} />\n            ))}\n          </div>\n        )}\n\n        {/* Compact Layout */}\n        {layout === \"compact\" && (\n          <div class=\"bg-white dark:bg-gray-800 rounded-2xl shadow-xl border border-gray-100 dark:border-gray-700 overflow-hidden\">\n            <div class={`grid grid-cols-1 sm:grid-cols-2 ${lgCols} divide-y sm:divide-y-0 sm:divide-x divide-gray-200 dark:divide-gray-700`}>\n              {items.map((item, idx) => (\n                <StatCompact key={idx} item={item} iconSvg={item.icon ? iconMap[item.icon] : null} />\n              ))}\n            </div>\n          </div>\n        )}\n\n        {/* Minimal Layout */}\n        {layout === \"minimal\" && (\n          <div class={`grid ${baseCols} ${lgCols} gap-8 lg:gap-12`}>\n            {items.map((item, idx) => (\n              <StatMinimal key={idx} item={item} iconSvg={item.icon ? iconMap[item.icon] : null} />\n            ))}\n          </div>\n        )}\n      </div>\n\n      {/* Animation styles (scoped via container ref) */}\n      <style>{`\n        .stats-item {\n          opacity: 0;\n          transform: translateY(30px);\n          transition: opacity 0.6s ease-out, transform 0.6s ease-out;\n        }\n        .stats-item.animate {\n          opacity: 1;\n          transform: translateY(0);\n        }\n        .stats-item:nth-child(1) { transition-delay: 0ms; }\n        .stats-item:nth-child(2) { transition-delay: 150ms; }\n        .stats-item:nth-child(3) { transition-delay: 300ms; }\n        .stats-item:nth-child(4) { transition-delay: 450ms; }\n        .stats-item:nth-child(5) { transition-delay: 600ms; }\n      `}</style>\n    </div>\n  );\n};\n"
  },
  {
    "path": "modules/blox/blox/stats/manifest.json",
    "content": "{\n  \"id\": \"stats\",\n  \"name\": \"Stats\",\n  \"version\": \"2.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"statistics\", \"numbers\", \"metrics\", \"achievements\", \"data\", \"showcase\", \"grid\", \"animated\", \"counters\", \"icons\"],\n  \"description\": \"Showcase impressive statistics with modern animations, icons, and multiple layout options - enhanced for 2025/2026\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"statistics\", \"metrics\", \"achievements\", \"data\", \"numbers\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/team-showcase/README.md",
    "content": "# Team Showcase Block\n\nDisplay your team members with a beautiful, responsive grid layout featuring rich profiles, social links, and customizable grouping.\n\n## Features\n\n- **Responsive Grid Layout**: Automatically adjusts from 1-4 columns based on screen size\n- **User Groups**: Organize team members by role (e.g., Principal Investigators, PhD Students)\n- **Rich Profiles**: Display avatar, name, role, bio, interests, and social links\n- **Customizable Display**: Toggle visibility of role, organization, interests, and social links\n- **Sorting**: Sort by last name, graduation year, weight, or any author field (no `Params.` prefix needed); per-group sorting supported\n- **Hover Effects**: Smooth image zoom and shadow effects on hover\n- **Call to Action**: Optional button to recruitment or team page\n\n## Usage\n\n```yaml\nsections:\n  - block: team-showcase\n    content:\n      title: Meet Our Team\n      subtitle: World-class researchers advancing science\n      text: Our diverse team brings together expertise from multiple disciplines.\n      user_groups:\n        - Principal Investigators\n        - Postdoctoral Researchers\n        - PhD Students\n        - name: Alumni          # optional per-group sort override\n          sort_by: graduation_year\n          sort_ascending: false\n      sort_by: 'graduation_year' # legacy 'Params.' prefix optional\n      sort_ascending: false\n      cta:\n        text: Join Our Team\n        url: /opportunities\n        icon: user-plus\n    design:\n      show_role: true\n      show_organizations: true\n      show_interests: true\n      max_interests: 3   # set 0 to hide interests even if provided\n      align: center      # or \"left\" to align header + CTA left\n      max_columns: 4     # 2, 3, or 4\n      show_social: true\n      show_empty_groups: false # show a placeholder when a group has no members\n      # Section background color (CSS class)\n      css_class: \"bg-gray-50 dark:bg-gray-900\"\n```\n\n## Content Structure\n\nTeam members are defined in `data/authors/<slug>.yaml`. All fields in the data file can be sorted on directly—no `Params.` prefix is required.\n\n```yaml\n# data/authors/jane-doe.yaml\nname:\n  display: Dr. Jane Doe\nrole: Postdoctoral Researcher\nbio: Research interests include machine learning and computational biology.\ninterests:\n  - Machine Learning\n  - Computational Biology\n  - Data Science\naffiliations:\n  - name: University of Excellence\n    url: https://example.edu\nlinks:\n  - icon: envelope\n    url: 'mailto:jane@example.edu'\n  - icon: twitter\n    url: https://x.com/janedoe\n  - icon: github\n    url: https://github.com/janedoe\nuser_groups:\n  - Postdoctoral Researchers\ngraduation_year: 2024\n```\n\n## Options\n\n### Content Options\n\n- **title**: Main heading for the team section\n- **subtitle**: Optional subtitle\n- **text**: Optional description text (supports Markdown)\n- **user_groups**: Array of group names to display, or objects `{ name, sort_by?, sort_ascending? }` for per-group sorting\n- **sort_by**: Field to sort by (default: \"name_family\", falling back to the last word of `title`). Use plain field names from `data/authors`—the legacy `Params.` prefix is optional for backwards compatibility. Recommended: `name_family` (last name), `graduation_year` (alumni), `weight` (manual order).\n- **sort_ascending**: Sort direction (default: true)\n- **cta**: Optional call-to-action button with text, url, and icon\n\n### Design Options\n\n- **show_role**: Display team member roles (default: true)\n- **show_organizations**: Display affiliated organizations (default: true)\n- **show_interests**: Display research interests (default: false)\n- **max_interests**: Maximum number of interests to show (default: 3; 0 hides interests)\n- **show_social**: Display social media links (default: true)\n- **align**: Align header and CTA (`center` or `left`, default `center`)\n- **max_columns**: Limit grid columns on wide screens (2, 3, or 4; default 4)\n- **show_empty_groups**: If true, render an empty-state message for groups with no members\n\n## Recipes\n\n- **Lab alumni list**: `user_groups: ['Alumni']`, `sort_by: graduation_year`, `sort_ascending: false`, set `graduation_year` in each author file.\n- **Startup leadership-first**: set `weight` on leadership (e.g., 1–10), `sort_by: weight`, `sort_ascending: true`, leave others empty or higher.\n- **Classic last-name sort**: ensure `name.family` is set; leave defaults or set `sort_by: name_family`.\n- **Hide interests but keep data**: `show_interests: true`, `max_interests: 0`.\n- **Left-aligned hero style**: `design.align: left` (header + CTA).\n- **Per-group sorting**: mix strings and objects in `user_groups`, e.g. `- name: Alumni; sort_by: graduation_year; sort_ascending: false`.\n\n## Best Practices\n\n- Keep `data/authors/<slug>.yaml` tidy: set `name.display`, `name.family`, `role`, short `bio`, `affiliations` (first shown), `links` with icons (`github`, `linkedin`, `orcid`, `google-scholar`), and `user_groups`.\n- Use square WebP avatars in `assets/media/authors/<slug>.*`, ~400×400px, optimized (<200 KB). Names center-cropped.\n- Prefer high-signal interests (3 or fewer); longer lists belong on the profile page.\n- For credibility, show organizations (default on) and keep roles concise.\n- Review people data each semester/quarter to keep roles and photos fresh.\n- Use valid icon names for `links.icon` (e.g., `github`, `linkedin`, `orcid`, `google-scholar`, `twitter`) to avoid broken social icons.\n\n## Styling\n\nThe block uses Tailwind CSS classes and supports:\n- Dark mode\n- Custom background colors via `css_class`\n- Responsive breakpoints\n- Smooth hover transitions\n\n## Tips\n\n1. **Optimize Images**: Use square avatar images (minimum 400x400px) for best results\n2. **User Groups**: Create logical groupings that reflect your organization structure\n3. **Bio Length**: Keep bios concise (2-3 lines) for the card view\n4. **Social Links**: Include relevant professional networks (ORCID, Google Scholar, GitHub)\n"
  },
  {
    "path": "modules/blox/blox/team-showcase/block.html",
    "content": "{{/* Hugo Blox: Team Showcase */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $show_social := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_social\") \"default\" true) }}\n{{ $show_interests := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_interests\") \"default\" false) }}\n{{ $show_role := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_role\") \"default\" true) }}\n{{ $show_organizations := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_organizations\") \"default\" true) }}\n{{ $show_empty_groups := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_empty_groups\") \"default\" false) }}\n{{ $max_interests_int := partial \"functions/coerce_int\" (dict \"value\" (index $design \"max_interests\") \"default\" 3 \"min\" 0) }}\n{{ $max_columns_int := partial \"functions/coerce_int\" (dict \"value\" (index $design \"max_columns\") \"default\" 4 \"min\" 2 \"max\" 4) }}\n\n{{ $align := \"center\" }}\n{{ $align_raw := index $design \"align\" }}\n{{ if eq (printf \"%T\" $align_raw) \"string\" }}\n  {{ $align_candidate := lower (strings.TrimSpace $align_raw) }}\n  {{ if in (slice \"center\" \"left\") $align_candidate }}\n    {{ $align = $align_candidate }}\n  {{ end }}\n{{ end }}\n\n{{ $sort_field := \"name_family\" }}\n{{ $sort_field_raw := index $content \"sort_by\" }}\n{{ if eq (printf \"%T\" $sort_field_raw) \"string\" }}\n  {{ $sort_field_raw = strings.TrimSpace $sort_field_raw }}\n  {{ if ne $sort_field_raw \"\" }}\n    {{ $sort_field = $sort_field_raw }}\n  {{ end }}\n{{ end }}\n{{ $sort_asc := partial \"functions/coerce_bool\" (dict \"value\" (index $content \"sort_ascending\") \"default\" true) }}\n{{ $sort_field_lc := lower $sort_field }}\n{{ if hasPrefix $sort_field_lc \"params.\" }}\n  {{/* Backwards compatibility with Params.* used when authors were pages */}}\n  {{ $sort_field = substr $sort_field 7 }}\n  {{ $sort_field_lc = lower $sort_field }}\n{{ end }}\n\n{{ $title := \"\" }}\n{{ with index $content \"title\" }}{{ $title = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n{{ $subtitle := \"\" }}\n{{ with index $content \"subtitle\" }}{{ $subtitle = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n{{ $text := \"\" }}\n{{ with index $content \"text\" }}{{ $text = printf \"%v\" . | emojify | $page.RenderString }}{{ end }}\n{{ $alignClass := cond (eq $align \"left\") \"items-start text-left\" \"items-center text-center\" }}\n{{ $headerContainerClass := cond (eq $align \"left\")\n  \"flex flex-col gap-4 items-start text-left w-full max-w-5xl\"\n  \"flex flex-col gap-3 items-center text-center max-w-prose mx-auto justify-center px-6\"\n}}\n{{ $ctaAlignClass := cond (eq $align \"left\") \"text-left\" \"text-center\" }}\n\n{{ $columnsClasses := dict\n  \"2\" \"grid grid-cols-1 gap-8 sm:grid-cols-2\"\n  \"3\" \"grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3\"\n  \"4\" \"grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4\"\n}}\n{{ $max_columns_key := printf \"%d\" $max_columns_int }}\n{{ $gridClass := index $columnsClasses $max_columns_key | default \"grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4\" }}\n\n<div class=\"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8\">\n  \n  {{/* Section Header */}}\n  <div class=\"{{ $headerContainerClass }} {{ $alignClass }} mb-12\">\n    {{ with $title }}\n    <div class=\"text-3xl sm:text-4xl lg:text-5xl font-bold text-gray-900 dark:text-white tracking-tight\">\n      {{ . }}\n    </div>\n    {{ end }}\n    \n    {{ with $subtitle }}\n    <p class=\"text-xl text-gray-600 dark:text-gray-400\">\n      {{ . }}\n    </p>\n    {{ end }}\n    \n    {{ with $text }}\n    <div class=\"prose prose-lg lg:prose-xl dark:prose-invert max-w-prose\">\n      {{ . }}\n    </div>\n    {{ end }}\n  </div>\n\n  {{/* Build profiles from data/authors */}}\n  {{ $allProfiles := slice }}\n  {{ $authors := partialCached \"functions/get_authors_data\" $page site.Language.Lang }}\n  {{ range $slug, $_ := $authors }}\n    {{ $profile := partial \"functions/get_author_profile\" (dict \"slug\" $slug) }}\n    {{ $profileData := index $authors $slug }}\n    {{ $allProfiles = $allProfiles | append (dict \"profile\" $profile \"profileData\" $profileData) }}\n  {{ end }}\n\n  {{ $groups_raw := index $content \"user_groups\" }}\n  {{ $groups := slice }}\n  {{ if reflect.IsSlice $groups_raw }}\n    {{ $groups = $groups_raw }}\n  {{ else if eq (printf \"%T\" $groups_raw) \"string\" }}\n    {{ $groups = slice $groups_raw }}\n  {{ else if and $groups_raw (reflect.IsMap $groups_raw) }}\n    {{ $groups = slice $groups_raw }}\n  {{ end }}\n\n  {{ if gt (len $groups) 0 }}\n    {{ range $i, $groupItem := $groups }}\n      {{ $groupName := \"\" }}\n      {{ $groupSortField := $sort_field }}\n      {{ $groupSortAsc := $sort_asc }}\n      {{ $groupSortFieldLc := \"\" }}\n      {{ $itemIsMap := reflect.IsMap $groupItem }}\n      {{ if $itemIsMap }}\n        {{ $groupNameRaw := index $groupItem \"name\" | default (index $groupItem \"title\") }}\n        {{ if ne $groupNameRaw nil }}\n          {{ $groupName = printf \"%v\" $groupNameRaw }}\n        {{ end }}\n        {{ $groupSortFieldRaw := index $groupItem \"sort_by\" }}\n        {{ if eq (printf \"%T\" $groupSortFieldRaw) \"string\" }}\n          {{ $groupSortFieldRaw = strings.TrimSpace $groupSortFieldRaw }}\n          {{ if ne $groupSortFieldRaw \"\" }}\n            {{ $groupSortField = $groupSortFieldRaw }}\n          {{ end }}\n        {{ end }}\n        {{ $groupSortAsc = partial \"functions/coerce_bool\" (dict \"value\" (index $groupItem \"sort_ascending\") \"default\" $groupSortAsc) }}\n      {{ else }}\n        {{ $groupName = printf \"%v\" $groupItem }}\n      {{ end }}\n      {{ $groupName = strings.TrimSpace $groupName }}\n      {{ if eq (trim $groupName \" \") \"\" }}\n        {{/* Skip groups with empty names to avoid matching everything */}}\n        {{ continue }}\n      {{ end }}\n      {{ $groupSortFieldLc = lower $groupSortField }}\n      {{ if hasPrefix $groupSortFieldLc \"params.\" }}\n        {{ $groupSortField = substr $groupSortField 7 }}\n        {{ $groupSortFieldLc = lower $groupSortField }}\n      {{ end }}\n      {{ $groupIsNumeric := or (eq $groupSortFieldLc \"weight\") (eq $groupSortFieldLc \"graduation_year\") }}\n      {{ $groupOrder := cond $groupSortAsc \"asc\" \"desc\" }}\n\n      {{ $groupProfiles := slice }}\n      {{ range $allProfiles }}\n        {{ $profile := .profile }}\n        {{ $u := slice }}\n        {{ $uRaw := $profile.user_groups }}\n        {{ if reflect.IsSlice $uRaw }}\n          {{ range $uRaw }}\n            {{ $u = $u | append (printf \"%v\" .) }}\n          {{ end }}\n        {{ else if eq (printf \"%T\" $uRaw) \"string\" }}\n          {{ $trimmedGroup := strings.TrimSpace $uRaw }}\n          {{ if ne $trimmedGroup \"\" }}\n            {{ $u = slice $trimmedGroup }}\n          {{ end }}\n        {{ end }}\n        {{ if gt (len (intersect $u (slice (printf \"%v\" $groupName)))) 0 }}\n          {{ $profileData := .profileData }}\n          {{ $family := $profile.name_family_pref | default $profile.name_family | default (delimit (last 1 (split $profile.title \" \")) \"\") | default $profile.title }}\n          {{ $familyLower := lower $family }}\n          {{ $raw := index $profile $groupSortField | default (index $profileData $groupSortField) }}\n          {{ $rawType := printf \"%T\" $raw }}\n          {{ $isNumeric := $groupIsNumeric }}\n          {{ $primary := \"\" }}\n          {{ if or (eq $groupSortFieldLc \"name.family\") (eq $groupSortFieldLc \"family\") (eq $groupSortFieldLc \"last_name\") (eq $groupSortFieldLc \"name_family\") (eq $groupSortFieldLc \"family_name\") }}\n            {{ $primary = $familyLower }}\n          {{ else if $isNumeric }}\n            {{ $missingSentinel := cond $groupSortAsc 999999 -999999 }}\n            {{ $primary = $missingSentinel }}\n            {{ if or (eq $rawType \"int\") (eq $rawType \"int64\") (eq $rawType \"float64\") (eq $rawType \"float32\") (eq $rawType \"uint\") (eq $rawType \"uint64\") }}\n              {{ $primary = int $raw }}\n            {{ else if and (eq $rawType \"string\") (gt (len (findRE \"^[0-9]+$\" $raw)) 0) }}\n              {{ $primary = int $raw }}\n            {{ end }}\n          {{ else if ne $raw nil }}\n            {{ $primary = lower (printf \"%v\" $raw) }}\n          {{ else }}\n            {{ $primary = lower $profile.title }}\n          {{ end }}\n          {{ $sortKey := \"\" }}\n          {{ if $isNumeric }}\n            {{ $missingSentinel := cond $groupSortAsc 999999 -999999 }}\n            {{ $num := $primary | default $missingSentinel }}\n            {{ $sortKey = printf \"%010d|%s\" $num $familyLower }}\n          {{ else }}\n            {{ $sortKey = printf \"%s|%s\" $primary $familyLower }}\n          {{ end }}\n          {{ $groupProfiles = $groupProfiles | append (dict \"profile\" $profile \"sort_val\" $sortKey) }}\n        {{ end }}\n      {{ end }}\n      {{ $groupProfiles = sort $groupProfiles \"sort_val\" $groupOrder }}\n\n      {{ $hasGroupContent := or (gt (len $groupProfiles) 0) $show_empty_groups }}\n\n      {{ if and $hasGroupContent (gt (len $groups) 1) }}\n      <div class=\"col-span-full {{ if gt $i 0 }}mt-8 md:mt-10 lg:mt-12{{ end }} mb-4\">\n        <h3 class=\"text-2xl font-bold text-gray-900 dark:text-white mb-6 pb-2 border-b border-gray-200 dark:border-gray-700\">\n          {{ $groupName | markdownify }}\n        </h3>\n      </div>\n      {{ end }}\n\n      {{ if $hasGroupContent }}\n      <div class=\"{{ $gridClass }} w-full\">\n        {{ if eq (len $groupProfiles) 0 }}\n          {{ if $show_empty_groups }}\n          <div class=\"text-gray-600 dark:text-gray-400 py-6\">{{ i18n \"no_entries\" | default \"No entries yet.\" }}</div>\n          {{ end }}\n        {{ end }}\n        {{ range $groupProfile := $groupProfiles }}\n          {{ $profile := $groupProfile.profile }}\n          {{ $avatar := $profile.avatar }}\n          {{ $link := printf \"/authors/%s/\" $profile.slug }}\n          {{ $nameSource := $profile.name_given | default $profile.title | default \"?\" }}\n          {{ $initial := cond (gt (len $nameSource) 0) (upper (substr $nameSource 0 1)) \"?\" }}\n          \n          <div class=\"group relative\">\n            <div class=\"relative overflow-hidden rounded-2xl bg-white dark:bg-gray-800 shadow-lg hover:shadow-xl transition-all duration-300 transform hover:-translate-y-1\">\n              \n              <a href=\"{{ $link }}\" class=\"block relative aspect-square overflow-hidden bg-gray-100 dark:bg-gray-800\" aria-label=\"{{ $profile.title }}\">\n                {{ if $avatar }}\n                  {{ $image := $avatar.Fit \"600x600 Center q90\" }}\n                  <img src=\"{{ $image.RelPermalink }}\" \n                       alt=\"{{ $profile.title }}\" \n                       width=\"{{ $image.Width }}\" \n                       height=\"{{ $image.Height }}\" \n                       loading=\"lazy\"\n                       class=\"w-full h-full object-contain object-center transition-transform duration-300 group-hover:scale-105\">\n                {{ else }}\n                  <div class=\"absolute inset-0 bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-4xl font-semibold text-gray-600 dark:text-gray-200\">\n                    {{ $initial }}\n                  </div>\n                {{ end }}\n              </a>\n              \n              <div class=\"p-6\">\n                <h3 class=\"text-xl font-bold text-gray-900 dark:text-white mb-1\">\n                  <a href=\"{{ $link }}\" class=\"hover:text-primary-600 dark:hover:text-primary-400 transition-colors\" aria-label=\"{{ $profile.title }}\">\n                    {{ $profile.title }}\n                  </a>\n                </h3>\n                \n                {{ $affiliations_raw := $profile.affiliations }}\n                {{ $affiliations := slice }}\n                {{ if reflect.IsSlice $affiliations_raw }}\n                  {{ $affiliations = $affiliations_raw }}\n                {{ else if eq (printf \"%T\" $affiliations_raw) \"string\" }}\n                  {{ $affiliations = slice $affiliations_raw }}\n                {{ end }}\n                {{ $first_affiliation := \"\" }}\n                {{ if gt (len $affiliations) 0 }}\n                  {{ $aff := index $affiliations 0 }}\n                  {{ if reflect.IsMap $aff }}\n                    {{ $affNameRaw := index $aff \"name\" | default (index $aff \"title\") }}\n                    {{ if ne $affNameRaw nil }}\n                      {{ $first_affiliation = printf \"%v\" $affNameRaw }}\n                    {{ end }}\n                  {{ else if eq (printf \"%T\" $aff) \"string\" }}\n                    {{ $first_affiliation = $aff }}\n                  {{ end }}\n                  {{ $first_affiliation = strings.TrimSpace $first_affiliation }}\n                {{ end }}\n\n                {{ if $show_role }}\n                <div class=\"text-gray-600 dark:text-gray-400 mb-3\">\n                  {{ $roleText := \"\" }}\n                  {{ with $profile.role }}\n                    {{ if eq (printf \"%T\" .) \"string\" }}\n                      {{ $roleText = . }}\n                    {{ end }}\n                  {{ end }}\n                  {{ if and (not $roleText) $first_affiliation }}\n                    {{ $roleText = $first_affiliation }}\n                  {{ end }}\n                  {{ with $roleText }}<p class=\"font-medium\">{{ . }}</p>{{ end }}\n                  {{ if and $show_organizations $first_affiliation }}\n                    <p class=\"text-sm mt-1\">{{ $first_affiliation }}</p>\n                  {{ end }}\n                </div>\n                {{ end }}\n                \n                {{ $bio := \"\" }}\n                {{ with $profile.bio }}{{ $bio = printf \"%v\" . }}{{ end }}\n                {{ with $bio }}\n                <p class=\"text-sm text-gray-600 dark:text-gray-400 mb-4 line-clamp-2\">\n                  {{ . }}\n                </p>\n                {{ end }}\n                \n                {{ $interests_raw := $profile.interests }}\n                {{ $interests := slice }}\n                {{ if reflect.IsSlice $interests_raw }}\n                  {{ $interests = $interests_raw }}\n                {{ else if eq (printf \"%T\" $interests_raw) \"string\" }}\n                  {{ $interests = slice $interests_raw }}\n                {{ end }}\n                {{ if and $show_interests (gt (len $interests) 0) }}\n                <div class=\"mb-4\">\n                  <div class=\"flex flex-wrap gap-1\">\n                    {{ if gt $max_interests_int 0 }}\n                      {{ range first $max_interests_int $interests }}\n                      <span class=\"inline-block bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-300 text-xs px-2 py-1 rounded\">\n                        {{ printf \"%v\" . }}\n                      </span>\n                      {{ end }}\n                    {{ end }}\n                  </div>\n                </div>\n                {{ end }}\n                \n                {{ $links_raw := $profile.links }}\n                {{ $links := slice }}\n                {{ if reflect.IsSlice $links_raw }}\n                  {{ $links = $links_raw }}\n                {{ else if eq (printf \"%T\" $links_raw) \"string\" }}\n                  {{ $links = slice $links_raw }}\n                {{ end }}\n                {{ if and $show_social (gt (len $links) 0) }}\n                <div class=\"flex gap-3 pt-2 border-t border-gray-200 dark:border-gray-700\">\n                  {{ range $links }}\n                    {{ $linkUrl := \"\" }}\n                    {{ $iconName := \"hero/link\" }}\n                    {{ $linkLabel := \"\" }}\n                    {{ if reflect.IsMap . }}\n                      {{ $urlRaw := index . \"url\" | default (index . \"link\") }}\n                      {{ if eq (printf \"%T\" $urlRaw) \"string\" }}\n                        {{ $linkUrl = $urlRaw }}\n                      {{ end }}\n                      {{ $iconRaw := index . \"icon\" }}\n                      {{ if eq (printf \"%T\" $iconRaw) \"string\" }}\n                        {{ $iconName = $iconRaw }}\n                      {{ end }}\n                      {{ $labelRaw := index . \"label\" }}\n                      {{ if eq (printf \"%T\" $labelRaw) \"string\" }}\n                        {{ $linkLabel = $labelRaw }}\n                      {{ end }}\n                    {{ else if eq (printf \"%T\" .) \"string\" }}\n                      {{ $linkUrl = . }}\n                    {{ end }}\n                    {{ $linkUrl = strings.TrimSpace $linkUrl }}\n                    {{ if $linkUrl }}\n                      {{ $scheme := (urls.Parse $linkUrl).Scheme }}\n                      {{ $target := \"\" }}\n                      {{ if not $scheme }}\n                        {{ if not (hasPrefix $linkUrl \"#\") }}\n                          {{ $linkUrl = $linkUrl | relLangURL }}\n                        {{ end }}\n                        {{ if eq (path.Ext $linkUrl) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n                      {{ else if in (slice \"http\" \"https\") $scheme }}\n                        {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n                      {{ end }}\n                      <a href=\"{{ $linkUrl | safeURL }}\" \n                         {{ $target | safeHTMLAttr }} \n                         aria-label=\"{{ $iconName }}\"\n                         {{ if $linkLabel }} title=\"{{ $linkLabel }}\"{{ end }}\n                         class=\"text-gray-500 hover:text-primary-600 dark:text-gray-400 dark:hover:text-primary-400 transition-colors\">\n                        {{ partial \"functions/get_icon\" (dict \"name\" $iconName \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n                      </a>\n                    {{ end }}\n                  {{ end }}\n                </div>\n                {{ end }}\n              </div>\n            </div>\n          </div>\n        {{ end }}\n      </div>\n      {{ end }}\n    {{ end }}\n  {{ else }}\n    {{ $isNumeric := or (eq $sort_field_lc \"weight\") (eq $sort_field_lc \"graduation_year\") }}\n    {{ $order := cond $sort_asc \"asc\" \"desc\" }}\n    {{ $sorted := slice }}\n    {{ range $allProfiles }}\n      {{ $profile := .profile }}\n      {{ $profileData := .profileData }}\n      {{ $family := $profile.name_family_pref | default $profile.name_family | default (delimit (last 1 (split $profile.title \" \")) \"\") | default $profile.title }}\n      {{ $familyLower := lower $family }}\n      {{ $raw := index $profile $sort_field | default (index $profileData $sort_field) }}\n      {{ $rawType := printf \"%T\" $raw }}\n      {{ $primary := \"\" }}\n      {{ if or (eq $sort_field_lc \"name.family\") (eq $sort_field_lc \"family\") (eq $sort_field_lc \"last_name\") (eq $sort_field_lc \"name_family\") (eq $sort_field_lc \"family_name\") }}\n        {{ $primary = $familyLower }}\n      {{ else if $isNumeric }}\n        {{ $missingSentinel := cond $sort_asc 999999 -999999 }}\n        {{ $primary = $missingSentinel }}\n        {{ if or (eq $rawType \"int\") (eq $rawType \"int64\") (eq $rawType \"float64\") (eq $rawType \"float32\") (eq $rawType \"uint\") (eq $rawType \"uint64\") }}\n          {{ $primary = int $raw }}\n        {{ else if and (eq $rawType \"string\") (gt (len (findRE \"^[0-9]+$\" $raw)) 0) }}\n          {{ $primary = int $raw }}\n        {{ end }}\n      {{ else if ne $raw nil }}\n        {{ $primary = lower (printf \"%v\" $raw) }}\n      {{ else }}\n        {{ $primary = lower $profile.title }}\n      {{ end }}\n      {{ $sortKey := \"\" }}\n      {{ if $isNumeric }}\n        {{ $missingSentinel := cond $sort_asc 999999 -999999 }}\n        {{ $num := $primary | default $missingSentinel }}\n        {{ $sortKey = printf \"%010d|%s\" $num $familyLower }}\n      {{ else }}\n        {{ $sortKey = printf \"%s|%s\" $primary $familyLower }}\n      {{ end }}\n      {{ $sorted = $sorted | append (dict \"profile\" $profile \"sort_val\" $sortKey) }}\n    {{ end }}\n    {{ $sorted = sort $sorted \"sort_val\" $order }}\n    <div class=\"{{ $gridClass }}\">\n      {{ range $sortedProfile := $sorted }}\n        {{ $profile := $sortedProfile.profile }}\n        {{ $avatar := $profile.avatar }}\n        {{ $link := printf \"/authors/%s/\" $profile.slug }}\n        {{ $nameSource := $profile.name_given | default $profile.title | default \"?\" }}\n        {{ $initial := cond (gt (len $nameSource) 0) (upper (substr $nameSource 0 1)) \"?\" }}\n        <div class=\"group relative\">\n          <div class=\"relative overflow-hidden rounded-2xl bg-white dark:bg-gray-800 shadow-lg hover:shadow-xl transition-all duration-300 transform hover:-translate-y-1\">\n            <a href=\"{{ $link }}\" class=\"block relative aspect-square overflow-hidden bg-gray-100 dark:bg-gray-800\" aria-label=\"{{ $profile.title }}\">\n              {{ if $avatar }}\n              {{ $image := $avatar.Fit \"600x600 Center q90\" }}\n              <img src=\"{{ $image.RelPermalink }}\" \n                   alt=\"{{ $profile.title }}\" \n                   width=\"{{ $image.Width }}\" \n                   height=\"{{ $image.Height }}\" \n                   loading=\"lazy\"\n                   class=\"w-full h-full object-contain object-center transition-transform duration-300 group-hover:scale-105\">\n              {{ else }}\n              <div class=\"absolute inset-0 bg-gray-100 dark:bg-gray-700 flex items-center justify-center text-4xl font-semibold text-gray-600 dark:text-gray-200\">\n                {{ $initial }}\n              </div>\n              {{ end }}\n            </a>\n            <div class=\"p-6\">\n              <h3 class=\"text-xl font-bold text-gray-900 dark:text-white mb-1\">\n                <a href=\"{{ $link }}\" class=\"hover:text-primary-600 dark:hover:text-primary-400 transition-colors\" aria-label=\"{{ $profile.title }}\">\n                  {{ $profile.title }}\n                </a>\n              </h3>\n\n              {{ $affiliations_raw := $profile.affiliations }}\n              {{ $affiliations := slice }}\n              {{ if reflect.IsSlice $affiliations_raw }}\n                {{ $affiliations = $affiliations_raw }}\n              {{ else if eq (printf \"%T\" $affiliations_raw) \"string\" }}\n                {{ $affiliations = slice $affiliations_raw }}\n              {{ end }}\n              {{ $first_affiliation := \"\" }}\n              {{ if gt (len $affiliations) 0 }}\n                {{ $aff := index $affiliations 0 }}\n                {{ if reflect.IsMap $aff }}\n                  {{ $affNameRaw := index $aff \"name\" | default (index $aff \"title\") }}\n                  {{ if ne $affNameRaw nil }}\n                    {{ $first_affiliation = printf \"%v\" $affNameRaw }}\n                  {{ end }}\n                {{ else if eq (printf \"%T\" $aff) \"string\" }}\n                  {{ $first_affiliation = $aff }}\n                {{ end }}\n                {{ $first_affiliation = strings.TrimSpace $first_affiliation }}\n              {{ end }}\n\n              {{ if $show_role }}\n              <div class=\"text-gray-600 dark:text-gray-400 mb-3\">\n                {{ $roleText := \"\" }}\n                {{ with $profile.role }}\n                  {{ if eq (printf \"%T\" .) \"string\" }}\n                    {{ $roleText = . }}\n                  {{ end }}\n                {{ end }}\n                {{ if and (not $roleText) $first_affiliation }}\n                  {{ $roleText = $first_affiliation }}\n                {{ end }}\n                {{ with $roleText }}<p class=\"font-medium\">{{ . }}</p>{{ end }}\n                {{ if and $show_organizations $first_affiliation }}\n                  <p class=\"text-sm mt-1\">{{ $first_affiliation }}</p>\n                {{ end }}\n              </div>\n              {{ end }}\n              {{ $bio := \"\" }}\n              {{ with $profile.bio }}{{ $bio = printf \"%v\" . }}{{ end }}\n              {{ with $bio }}\n              <p class=\"text-sm text-gray-600 dark:text-gray-400 mb-4 line-clamp-2\">{{ . }}</p>\n              {{ end }}\n\n              {{ $interests_raw := $profile.interests }}\n              {{ $interests := slice }}\n              {{ if reflect.IsSlice $interests_raw }}\n                {{ $interests = $interests_raw }}\n              {{ else if eq (printf \"%T\" $interests_raw) \"string\" }}\n                {{ $interests = slice $interests_raw }}\n              {{ end }}\n              {{ if and $show_interests (gt (len $interests) 0) }}\n              <div class=\"mb-4\">\n                <div class=\"flex flex-wrap gap-1\">\n                  {{ if gt $max_interests_int 0 }}\n                    {{ range first $max_interests_int $interests }}\n                    <span class=\"inline-block bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-300 text-xs px-2 py-1 rounded\">{{ printf \"%v\" . }}</span>\n                    {{ end }}\n                  {{ end }}\n                </div>\n              </div>\n              {{ end }}\n\n              {{ $links_raw := $profile.links }}\n              {{ $links := slice }}\n              {{ if reflect.IsSlice $links_raw }}\n                {{ $links = $links_raw }}\n              {{ else if eq (printf \"%T\" $links_raw) \"string\" }}\n                {{ $links = slice $links_raw }}\n              {{ end }}\n              {{ if and $show_social (gt (len $links) 0) }}\n              <div class=\"flex gap-3 pt-2 border-t border-gray-200 dark:border-gray-700\">\n                {{ range $links }}\n                  {{ $linkUrl := \"\" }}\n                  {{ $iconName := \"hero/link\" }}\n                  {{ $linkLabel := \"\" }}\n                  {{ if reflect.IsMap . }}\n                    {{ $urlRaw := index . \"url\" | default (index . \"link\") }}\n                    {{ if eq (printf \"%T\" $urlRaw) \"string\" }}\n                      {{ $linkUrl = $urlRaw }}\n                    {{ end }}\n                    {{ $iconRaw := index . \"icon\" }}\n                    {{ if eq (printf \"%T\" $iconRaw) \"string\" }}\n                      {{ $iconName = $iconRaw }}\n                    {{ end }}\n                    {{ $labelRaw := index . \"label\" }}\n                    {{ if eq (printf \"%T\" $labelRaw) \"string\" }}\n                      {{ $linkLabel = $labelRaw }}\n                    {{ end }}\n                  {{ else if eq (printf \"%T\" .) \"string\" }}\n                    {{ $linkUrl = . }}\n                  {{ end }}\n                  {{ $linkUrl = strings.TrimSpace $linkUrl }}\n                  {{ if $linkUrl }}\n                    {{ $scheme := (urls.Parse $linkUrl).Scheme }}\n                    {{ $target := \"\" }}\n                    {{ if not $scheme }}\n                      {{ if not (hasPrefix $linkUrl \"#\") }}\n                        {{ $linkUrl = $linkUrl | relLangURL }}\n                      {{ end }}\n                      {{ if eq (path.Ext $linkUrl) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n                    {{ else if in (slice \"http\" \"https\") $scheme }}\n                      {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n                    {{ end }}\n                    <a href=\"{{ $linkUrl | safeURL }}\" {{ $target | safeHTMLAttr }} aria-label=\"{{ $iconName }}\" {{ if $linkLabel }} title=\"{{ $linkLabel }}\"{{ end }} class=\"text-gray-500 hover:text-primary-600 dark:text-gray-400 dark:hover:text-primary-400 transition-colors\">\n                      {{ partial \"functions/get_icon\" (dict \"name\" $iconName \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n                    </a>\n                  {{ end }}\n                {{ end }}\n              </div>\n              {{ end }}\n            </div>\n          </div>\n        </div>\n      {{ end }}\n    </div>\n  {{ end }}\n  \n  {{/* Call to Action */}}\n  {{ $cta_raw := index $content \"cta\" }}\n  {{ if and $cta_raw (reflect.IsMap $cta_raw) }}\n    {{ $cta_text := \"\" }}\n    {{ $cta_url := \"\" }}\n    {{ $cta_icon := \"\" }}\n    {{ with index $cta_raw \"text\" }}{{ $cta_text = printf \"%v\" . }}{{ end }}\n    {{ with index $cta_raw \"url\" }}{{ $cta_url = printf \"%v\" . }}{{ end }}\n    {{ with index $cta_raw \"icon\" }}\n      {{ if eq (printf \"%T\" .) \"string\" }}\n        {{ $cta_icon = . }}\n      {{ end }}\n    {{ end }}\n    {{ $cta_text = strings.TrimSpace $cta_text }}\n    {{ $cta_url = strings.TrimSpace $cta_url }}\n    {{ if and $cta_text $cta_url }}\n      {{ $cta_link := $cta_url }}\n      {{ $scheme := (urls.Parse $cta_link).Scheme }}\n      {{ $target := \"\" }}\n      {{ if not $scheme }}\n        {{ if not (hasPrefix $cta_link \"#\") }}\n          {{ $cta_link = $cta_link | relLangURL }}\n        {{ end }}\n        {{ if eq (path.Ext $cta_link) \".pdf\" }}{{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}{{ end }}\n      {{ else if in (slice \"http\" \"https\") $scheme }}\n        {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n      {{ end }}\n      <div class=\"mt-12 {{ $ctaAlignClass }}\">\n        <a href=\"{{ $cta_link | safeURL }}\" {{ $target | safeHTMLAttr }} class=\"inline-flex items-center px-6 py-3 bg-primary-600 hover:bg-primary-700 text-white font-medium rounded-lg shadow-lg hover:shadow-xl transition-all duration-300\">\n          {{ $cta_text }}\n          {{ if $cta_icon }}\n            {{ partial \"functions/get_icon\" (dict \"name\" $cta_icon \"attributes\" \"class=\\\"ml-2 w-5 h-5\\\"\") }}\n          {{ end }}\n        </a>\n      </div>\n    {{ end }}\n  {{ end }}\n  \n</div>\n"
  },
  {
    "path": "modules/blox/blox/team-showcase/manifest.json",
    "content": "{\n  \"id\": \"team-showcase\",\n  \"name\": \"Team Showcase\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"team\", \"people\", \"members\", \"staff\", \"lab\", \"research\", \"organization\"],\n  \"description\": \"Display team members with customizable grouping, filtering, and rich profiles\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"static-site\", \"team\", \"people\", \"organization\", \"research-lab\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/tech-stack/README.md",
    "content": "# Tech Stack Block\n\nA visual grid display of technologies and skills organized by category, with icon support and optional proficiency indicators.\n\n## Features\n\n- **Category Organization**: Group technologies by type (Languages, Frontend, Backend, etc.)\n- **Icon Support**: DevIcon, brand icons, or Heroicons integration\n- **Proficiency Levels**: Optional skill level indicators (expert, advanced, intermediate, beginner)\n- **Glass Morphism**: Modern card design with hover effects\n- **Responsive Grid**: Adapts from 2 to 6 columns based on screen size\n- **Multiple Styles**: Grid or flat list layout options\n\n## Usage\n\n```yaml\n- block: tech-stack\n  id: skills\n  content:\n    title: \"Tech Stack\"\n    subtitle: \"Technologies I use to build things\"\n    categories:\n      - name: Languages\n        items:\n          - name: TypeScript\n            icon: devicon/typescript\n            level: expert\n          - name: Python\n            icon: devicon/python\n            level: advanced\n          - name: Go\n            icon: devicon/go\n            level: intermediate\n      - name: Frontend\n        items:\n          - name: React\n            icon: devicon/react\n          - name: Next.js\n            icon: devicon/nextjs\n          - name: Tailwind CSS\n            icon: devicon/tailwindcss\n      - name: Backend\n        items:\n          - name: Node.js\n            icon: devicon/nodejs\n          - name: PostgreSQL\n            icon: devicon/postgresql\n          - name: Redis\n            icon: devicon/redis\n      - name: DevOps\n        items:\n          - name: Docker\n            icon: devicon/docker\n          - name: AWS\n            icon: devicon/amazonwebservices\n          - name: GitHub Actions\n            icon: brands/github\n  design:\n    style: grid\n    show_levels: true\n```\n\n## Parameters\n\n### Content\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `title` | string | - | Section title |\n| `subtitle` | string | - | Section subtitle |\n| `categories` | array | required | Array of category objects |\n| `categories[].name` | string | - | Category heading |\n| `categories[].items` | array | required | Technologies in category |\n| `categories[].items[].name` | string | required | Technology name |\n| `categories[].items[].icon` | string | - | Icon identifier |\n| `categories[].items[].level` | string | - | Proficiency level |\n\n### Design\n\n| Parameter | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `style` | string | `grid` | Display style (`grid` or `list`) |\n| `show_levels` | boolean | `false` | Show proficiency indicators |\n\n## Icon Support\n\nThe block supports multiple icon sources:\n\n- **DevIcon**: `devicon/react`, `devicon/typescript`, `devicon/nodejs`\n- **Brand Icons**: `brands/github`, `brands/linkedin`\n- **Heroicons**: `code-bracket`, `server`, `cloud`\n\n## Proficiency Levels\n\n| Level | Color | Bar Width |\n|-------|-------|-----------|\n| `expert` | Emerald | 100% |\n| `advanced` | Primary | 75% |\n| `intermediate` | Amber | 50% |\n| `beginner` | Gray | 25% |\n\n## Styling\n\nThe block uses glass morphism styling with:\n- Semi-transparent backgrounds\n- Backdrop blur effects\n- Subtle borders that glow on hover\n- Gradient hover effects\n"
  },
  {
    "path": "modules/blox/blox/tech-stack/block.html",
    "content": "{{/* Hugo Blox: Tech Stack */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialise */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $content := $block.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $block.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{/* Enable animations */}}\n{{ $animations := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"animations\") \"default\" true) }}\n{{ if $animations }}\n  {{ $page.Store.Set \"has_animations\" true }}\n  {{ $page.Store.Set \"has_alpine\" true }}\n{{ end }}\n\n{{/* Style */}}\n{{ $style := \"grid\" }}\n{{ $style_raw := index $design \"style\" }}\n{{ if eq (printf \"%T\" $style_raw) \"string\" }}\n  {{ $style_candidate := lower (strings.TrimSpace $style_raw) }}\n  {{ if in (slice \"grid\" \"list\") $style_candidate }}\n    {{ $style = $style_candidate }}\n  {{ end }}\n{{ end }}\n{{ $show_levels := partial \"functions/coerce_bool\" (dict \"value\" (index $design \"show_levels\") \"default\" false) }}\n\n{{ $title := \"\" }}\n{{ $title_raw := index $content \"title\" }}\n{{ if $title_raw }}{{ $title = strings.TrimSpace (printf \"%v\" $title_raw) }}{{ end }}\n\n{{ $subtitle := \"\" }}\n{{ $subtitle_raw := index $content \"subtitle\" }}\n{{ if $subtitle_raw }}{{ $subtitle = strings.TrimSpace (printf \"%v\" $subtitle_raw) }}{{ end }}\n\n{{ $categories_raw := index $content \"categories\" }}\n{{ $categories_iter := slice }}\n{{ if reflect.IsSlice $categories_raw }}\n  {{ $categories_iter = $categories_raw }}\n{{ else if and $categories_raw (reflect.IsMap $categories_raw) }}\n  {{ $categories_iter = slice $categories_raw }}\n{{ end }}\n\n{{ $categories := slice }}\n{{ if gt (len $categories_iter) 0 }}\n  {{ range $categories_iter }}\n    {{ if reflect.IsMap . }}\n      {{ $cat_name := \"\" }}\n      {{ with index . \"name\" }}{{ $cat_name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n      {{ $items_raw := index . \"items\" }}\n      {{ $items_iter := slice }}\n      {{ if reflect.IsSlice $items_raw }}\n        {{ $items_iter = $items_raw }}\n      {{ else if and $items_raw (reflect.IsMap $items_raw) }}\n        {{ $items_iter = slice $items_raw }}\n      {{ end }}\n      {{ $items := slice }}\n      {{ if gt (len $items_iter) 0 }}\n        {{ range $items_iter }}\n          {{ if reflect.IsMap . }}\n            {{ $item_name := \"\" }}\n            {{ $item_icon := \"\" }}\n            {{ $item_level := \"\" }}\n            {{ with index . \"name\" }}{{ $item_name = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"icon\" }}{{ $item_icon = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"level\" }}{{ $item_level = lower (strings.TrimSpace (printf \"%v\" .)) }}{{ end }}\n            {{ if $item_name }}\n              {{ $items = $items | append (dict \"name\" $item_name \"icon\" $item_icon \"level\" $item_level) }}\n            {{ end }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n      {{ if gt (len $items) 0 }}\n        {{ $categories = $categories | append (dict \"name\" $cat_name \"items\" $items) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n<div class=\"mx-auto max-w-6xl px-4 sm:px-6 lg:px-8 py-16\">\n  \n  {{/* Header */}}\n  <div class=\"text-center mb-12\">\n    {{ with $title }}\n    <h2 class=\"text-3xl sm:text-4xl font-bold text-gray-900 dark:text-white mb-4\">\n      {{ . | emojify | $page.RenderString }}\n    </h2>\n    {{ end }}\n    {{ with $subtitle }}\n    <p class=\"text-lg text-gray-500 dark:text-gray-400 max-w-2xl mx-auto\">\n      {{ . | emojify | $page.RenderString }}\n    </p>\n    {{ end }}\n  </div>\n\n  {{/* Categories */}}\n  {{ if ne $style \"list\" }}\n  <div class=\"space-y-12\">\n    {{ range $categories }}\n      <div>\n        {{/* Category Title */}}\n        {{ with index . \"name\" }}\n        <h3 class=\"text-xs font-semibold uppercase tracking-widest text-primary-600 dark:text-primary-400 mb-6 flex items-center justify-center gap-4\">\n          <span class=\"h-px w-12 bg-gradient-to-r from-transparent to-primary-500/50\"></span>\n          <span>{{ . }}</span>\n          <span class=\"h-px w-12 bg-gradient-to-l from-transparent to-primary-500/50\"></span>\n        </h3>\n        {{ end }}\n\n        {{/* Tech Items - Centered flex layout */}}\n        <div class=\"flex flex-wrap justify-center gap-4\" data-stagger=\"50\">\n          {{ range $idx, $item := (index . \"items\") }}\n            {{ $level := index $item \"level\" | default \"\" }}\n            {{ $level_width := \"0%\" }}\n            {{ $level_color := \"bg-gray-500\" }}\n            {{ if eq $level \"expert\" }}\n              {{ $level_width = \"100%\" }}\n              {{ $level_color = \"bg-emerald-500\" }}\n            {{ else if eq $level \"advanced\" }}\n              {{ $level_width = \"75%\" }}\n              {{ $level_color = \"bg-primary-500\" }}\n            {{ else if eq $level \"intermediate\" }}\n              {{ $level_width = \"50%\" }}\n              {{ $level_color = \"bg-amber-500\" }}\n            {{ else if eq $level \"beginner\" }}\n              {{ $level_width = \"25%\" }}\n              {{ $level_color = \"bg-gray-400\" }}\n            {{ end }}\n\n            <div \n              class=\"group relative w-[calc(50%-0.5rem)] sm:w-[calc(33.333%-0.75rem)] md:w-[calc(25%-0.75rem)] lg:w-[140px] bg-gray-50 dark:bg-white/[0.03] backdrop-blur-sm rounded-xl border border-gray-200 dark:border-white/[0.06] p-4 hover:bg-gray-100 dark:hover:bg-white/[0.06] hover:border-primary-300 dark:hover:border-primary-500/30 transition-all duration-300 hover:shadow-lg hover:shadow-primary-500/5 scale-hover\"\n            >\n              {{/* Icon */}}\n              <div class=\"flex flex-col items-center text-center\">\n                {{ with index $item \"icon\" }}\n                {{/* Add dark-icon class for icons that need inversion in dark mode */}}\n                {{ $dark_icons := slice \"express\" \"vercel\" \"github\" \"nextjs\" }}\n                {{ $icon_name := . }}\n                {{ $needs_invert := false }}\n                {{ range $dark_icons }}\n                  {{ if in $icon_name . }}{{ $needs_invert = true }}{{ end }}\n                {{ end }}\n                <div class=\"w-12 h-12 mb-3 flex items-center justify-center transition-all duration-300 icon-bounce {{ if $needs_invert }}dark-mode-icon{{ end }}\">\n                  {{ partial \"functions/get_icon\" (dict \"name\" . \"attributes\" \"class=\\\"w-10 h-10\\\"\") }}\n                </div>\n                {{ end }}\n                \n                {{/* Name */}}\n                <span class=\"text-sm font-medium text-gray-700 dark:text-gray-200 group-hover:text-gray-900 dark:group-hover:text-white transition-colors\">\n                  {{ index $item \"name\" }}\n                </span>\n\n                {{/* Level Indicator */}}\n                {{ if and $show_levels $level }}\n                <div class=\"mt-2 w-full\">\n                  <div class=\"h-1 bg-gray-200 dark:bg-white/10 rounded-full overflow-hidden\">\n                    <div class=\"h-full {{ $level_color }} rounded-full transition-all duration-500\" style=\"width: {{ $level_width }}\"></div>\n                  </div>\n                  <span class=\"text-xs text-gray-500 mt-1 capitalize\">{{ $level }}</span>\n                </div>\n                {{ end }}\n              </div>\n\n              {{/* Hover glow effect */}}\n              <div class=\"absolute inset-0 rounded-xl bg-gradient-to-br from-primary-500/0 via-primary-500/0 to-secondary-500/0 group-hover:from-primary-500/5 group-hover:to-secondary-500/5 transition-all duration-500 pointer-events-none\"></div>\n            </div>\n          {{ end }}\n        </div>\n      </div>\n    {{ end }}\n  </div>\n  {{ end }}\n\n  {{/* Simple flat list style alternative */}}\n  {{ if eq $style \"list\" }}\n  <div class=\"flex flex-wrap justify-center gap-3 mt-8\">\n    {{ range $categories }}\n      {{ range $i, $tech := (index . \"items\") }}\n      <div \n        class=\"inline-flex items-center gap-2 px-4 py-2 bg-gray-50 dark:bg-white/[0.03] backdrop-blur-sm rounded-full border border-gray-200 dark:border-white/[0.08] hover:border-primary-300 dark:hover:border-primary-500/30 hover:bg-gray-100 dark:hover:bg-white/[0.06] transition-all duration-300 scale-hover\"\n      >\n        {{ with index $tech \"icon\" }}\n        <span class=\"text-gray-600 dark:text-gray-400\">\n          {{ partial \"functions/get_icon\" (dict \"name\" . \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n        </span>\n        {{ end }}\n        <span class=\"text-sm font-medium text-gray-700 dark:text-gray-200\">{{ index $tech \"name\" }}</span>\n      </div>\n      {{ end }}\n    {{ end }}\n  </div>\n  {{ end }}\n</div>\n"
  },
  {
    "path": "modules/blox/blox/tech-stack/manifest.json",
    "content": "{\n  \"id\": \"tech-stack\",\n  \"name\": \"Tech Stack\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"content\",\n  \"tags\": [\"tech-stack\", \"skills\", \"technologies\", \"icons\", \"developer\", \"showcase\"],\n  \"description\": \"Display technologies and skills with icons organized by category, featuring hover effects and optional proficiency indicators\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"tech-stack\", \"skills\", \"technologies\", \"developer\", \"portfolio\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/testimonials/README.md",
    "content": "# Testimonials Block\n\n**Transform customer voices into powerful social proof**\n\nBuild unshakeable trust and credibility with the Testimonials block - a sophisticated component that presents authentic customer feedback in a professional, visually appealing format that converts skeptical visitors into confident buyers.\n\n## ✨ Key Features\n\n- **Professional Quote Styling**: Beautiful quotation marks and elegant typography\n- **Customer Photos**: High-quality avatar display with optimized 2x retina images\n- **Complete Attribution**: Customer names and roles for authentic credibility\n- **Responsive Layout**: Perfect presentation across all device sizes\n- **Multiple Testimonials**: Stack multiple testimonials in a clean, organized format\n- **Markdown Support**: Rich text formatting for testimonial content\n- **Lazy Loading**: Optimized image loading for better performance\n\n## 🎯 Perfect For\n\n- **SaaS Platforms**: Showcase customer success stories and satisfaction\n- **Service Providers**: Display client feedback and project results\n- **E-commerce**: Build buyer confidence with authentic product reviews\n- **Consultants**: Demonstrate expertise through client testimonials\n- **Agencies**: Highlight successful partnerships and outcomes\n- **Course Creators**: Share student success stories and transformations\n\n## 🚀 Why Choose Testimonials Block?\n\n**Social Proof Power**: Authentic customer voices carry more weight than any marketing message\n\n**Visual Credibility**: Photos and names make testimonials feel genuine and trustworthy\n\n**Professional Presentation**: Elegant design elevates customer feedback to marketing gold\n\n**Conversion Catalyst**: Well-placed testimonials can dramatically increase conversion rates\n\n## 📊 Trust Building Elements\n\n- **Visual Quote Marks**: Classic quotation styling that signals authentic feedback\n- **Human Connection**: Real photos create emotional connection with potential customers\n- **Authority Indicators**: Customer roles and companies add context and credibility\n- **Clean Layout**: Professional presentation that feels premium and trustworthy\n\n## 💡 Psychological Impact\n\n- **Bandwagon Effect**: Seeing others' success motivates similar action\n- **Risk Reduction**: Real customer experiences reduce perceived purchase risk\n- **Emotional Resonance**: Stories connect with visitors on an emotional level\n- **Credibility Transfer**: Customer authority transfers to your brand\n\n## 🎨 Best Practices\n\n- Use high-quality, professional customer photos\n- Include specific details and outcomes in testimonials\n- Add customer roles and companies for context\n- Keep quotes authentic and conversational\n- Mix different types of customers and use cases\n- Update testimonials regularly to maintain freshness\n\nTransform your happiest customers into your best marketing team with testimonials that build trust, reduce friction, and drive conversions.\n\n"
  },
  {
    "path": "modules/blox/blox/testimonials/client.jsx",
    "content": "/**\n * Testimonials Block - Client-side Hydration\n */\n\nimport {render} from \"preact\";\nimport {TestimonialsBlock} from \"./component.jsx\";\n\nfunction renderTestimonialsBlocks() {\n  const blocks = document.querySelectorAll('[data-block-type=\"testimonials\"]');\n\n  blocks.forEach((block) => {\n    const propsData = block.dataset.props;\n    if (propsData) {\n      try {\n        const props = JSON.parse(propsData);\n        render(<TestimonialsBlock {...props} />, block);\n        console.debug(`✓ Testimonials block \"${block.id}\" rendered with Preact`);\n      } catch (error) {\n        console.error(`Failed to render Testimonials block \"${block.id}\":`, error);\n      }\n    }\n  });\n}\n\nrenderTestimonialsBlocks();\n"
  },
  {
    "path": "modules/blox/blox/testimonials/component.jsx",
    "content": "/**\n * Testimonials Block Component - Single source of truth\n * Quote cards with avatar, name, and role\n * Avatars are pre-processed by Hugo's image pipeline (passed as item_images prop)\n */\n\n// Quote mark SVG (inline for zero dependencies)\nconst QuoteSvg = () => (\n  <svg\n    aria-hidden=\"true\"\n    class=\"h-16 mx-auto mb-3 text-gray-400 dark:text-gray-500\"\n    xmlns=\"http://www.w3.org/2000/svg\"\n    fill=\"currentColor\"\n    viewBox=\"0 0 32 32\"\n  >\n    <path d=\"M9.563 8.469l-0.813-1.25c-5.625 3.781-8.75 8.375-8.75 12.156 0 3.656 2.688 5.375 4.969 5.375 2.875 0 4.906-2.438 4.906-5 0-2.156-1.375-4-3.219-4.688-0.531-0.188-1.031-0.344-1.031-1.25 0-1.156 0.844-2.875 3.938-5.344zM21.969 8.469l-0.813-1.25c-5.563 3.781-8.75 8.375-8.75 12.156 0 3.656 2.75 5.375 5.031 5.375 2.906 0 4.969-2.438 4.969-5 0-2.156-1.406-4-3.313-4.688-0.531-0.188-1-0.344-1-1.25 0-1.156 0.875-2.875 3.875-5.344z\" />\n  </svg>\n);\n\n// Simple markdown renderer\nfunction renderText(text) {\n  if (!text) return \"\";\n  return String(text)\n    .replace(/\\*\\*(.*?)\\*\\*/g, \"<strong>$1</strong>\")\n    .replace(/\\*(.*?)\\*/g, \"<em>$1</em>\")\n    .replace(/`(.*?)`/g, \"<code>$1</code>\");\n}\n\nfunction TestimonialItem({item, avatarUrl, isLast}) {\n  return (\n    <div class={`max-w-screen-md mx-auto ${isLast ? \"\" : \"mb-12\"}`}>\n      <QuoteSvg />\n      <blockquote>\n        <p class=\"text-2xl font-medium text-gray-900 dark:text-white\" dangerouslySetInnerHTML={{__html: `\"${renderText(item.text)}\"`}} />\n      </blockquote>\n      <div class=\"flex items-center justify-center mt-6 space-x-3\">\n        {/* Avatar */}\n        {avatarUrl ? (\n          <img class=\"w-12 h-12 rounded-full\" src={avatarUrl} width=\"48\" height=\"48\" alt={item.name || \"\"} loading=\"lazy\" />\n        ) : (\n          <div class=\"w-12 h-12 rounded-full bg-gray-200 dark:bg-gray-700\" />\n        )}\n        <div class=\"flex flex-col items-center\">\n          {item.name && <div class=\"pr-3 font-medium text-gray-900 dark:text-white\">{item.name}</div>}\n          {item.role && <div class=\"pl-3 text-sm font-light text-gray-500 dark:text-gray-400\">{item.role}</div>}\n        </div>\n      </div>\n    </div>\n  );\n}\n\nexport const TestimonialsBlock = ({content, _design, _id, item_images}) => {\n  const title = content?.title;\n  const text = content?.text;\n  const items = Array.isArray(content?.items) ? content.items : [];\n  const imageMap = item_images || {};\n\n  return (\n    <section>\n      <div class=\"max-w-screen-xl px-4 py-8 mx-auto text-center lg:py-16 lg:px-6\">\n        {/* Section Header */}\n        {title && (\n          <div class=\"py-8 px-4 mx-auto max-w-screen-xl sm:py-16 lg:px-6\">\n            <div class=\"max-w-screen-md mb-8 lg:mb-16 flex flex-col justify-center mx-auto\">\n              <h2\n                class=\"mb-4 text-4xl tracking-tight font-extrabold text-gray-900 dark:text-white text-center\"\n                dangerouslySetInnerHTML={{__html: renderText(title)}}\n              />\n              {text && <p class=\"text-gray-500 sm:text-xl dark:text-gray-400 text-center\" dangerouslySetInnerHTML={{__html: renderText(text)}} />}\n            </div>\n          </div>\n        )}\n\n        {/* Testimonial Items */}\n        {items.map((item, idx) => (\n          <TestimonialItem key={idx} item={item} avatarUrl={imageMap[String(idx)]?.src || null} isLast={idx === items.length - 1} />\n        ))}\n      </div>\n    </section>\n  );\n};\n"
  },
  {
    "path": "modules/blox/blox/testimonials/manifest.json",
    "content": "{\n  \"id\": \"testimonials\",\n  \"name\": \"Testimonials\",\n  \"version\": \"1.0.0\",\n  \"license\": \"MIT\",\n  \"category\": \"marketing\",\n  \"tags\": [\"testimonials\", \"reviews\", \"social-proof\", \"quotes\", \"customers\", \"trust\", \"credibility\"],\n  \"description\": \"Build trust with authentic customer testimonials featuring quotes, names, and profile photos\",\n  \"author\": \"Hugo Blox\",\n  \"homepage\": \"https://hugoblox.com/blocks/\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"keywords\": [\"hugo\", \"testimonials\", \"social-proof\", \"reviews\", \"customers\", \"trust\"]\n}\n"
  },
  {
    "path": "modules/blox/blox/trending-questions/block.html",
    "content": "{{- $wcPage := .wcPage -}}\n{{- $wcBlock := .wcBlock -}}\n{{- $wcIdentifier := .wcIdentifier -}}\n\n{{ $content := $wcBlock.content }}\n{{ if not (reflect.IsMap $content) }}{{ $content = dict }}{{ end }}\n{{ $design := $wcBlock.design }}\n{{ if not (reflect.IsMap $design) }}{{ $design = dict }}{{ end }}\n\n{{ $spacing := index $design \"spacing\" }}\n{{ if not (reflect.IsMap $spacing) }}{{ $spacing = dict }}{{ end }}\n{{ $pad_raw := index $spacing \"padding\" }}\n{{ $pad := slice \"4rem\" \"0\" \"4rem\" \"0\" }}\n{{ if reflect.IsSlice $pad_raw }}\n  {{ $pad_values := slice }}\n  {{ range $pad_raw }}\n    {{ $val := strings.TrimSpace (printf \"%v\" .) }}\n    {{ if $val }}{{ $pad_values = $pad_values | append $val }}{{ end }}\n  {{ end }}\n  {{ if eq (len $pad_values) 4 }}{{ $pad = $pad_values }}{{ end }}\n{{ end }}\n\n{{ $background := index $design \"background\" }}\n{{ if not (reflect.IsMap $background) }}{{ $background = dict }}{{ end }}\n{{ $bg_color := \"\" }}\n{{ with index $background \"color\" }}{{ $bg_color = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n{{ $title := \"\" }}\n{{ $title_raw := index $content \"title\" }}\n{{ if $title_raw }}{{ $title = strings.TrimSpace (printf \"%v\" $title_raw) }}{{ end }}\n\n{{ $subtitle := \"\" }}\n{{ $subtitle_raw := index $content \"subtitle\" }}\n{{ if $subtitle_raw }}{{ $subtitle = strings.TrimSpace (printf \"%v\" $subtitle_raw) }}{{ end }}\n\n{{ $view_all := index $content \"view_all\" }}\n{{ if not (reflect.IsMap $view_all) }}{{ $view_all = dict }}{{ end }}\n{{ $view_all_text := \"\" }}\n{{ $view_all_link := \"\" }}\n{{ with index $view_all \"text\" }}{{ $view_all_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n{{ with index $view_all \"link\" }}{{ $view_all_link = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n<section id=\"{{ $wcIdentifier }}\" class=\"{{ $bg_color }}\" style=\"padding: {{ delimit $pad \" \" }};\">\n  <div class=\"mx-auto max-w-7xl px-6 lg:px-8\">\n    \n    <div class=\"flex items-center justify-between mb-8\">\n      <div>\n        {{ with $title }}\n        <h2 class=\"text-3xl font-bold tracking-tight text-gray-900 dark:text-white\">\n          {{ . | markdownify }}\n        </h2>\n        {{ end }}\n        {{ with $subtitle }}\n        <p class=\"mt-2 text-gray-600 dark:text-gray-300\">\n          {{ . | markdownify }}\n        </p>\n        {{ end }}\n      </div>\n      \n      {{ if and $view_all_text $view_all_link }}\n      {{ $view_link := $view_all_link }}\n      {{ $view_target := \"\" }}\n      {{ $view_scheme := (urls.Parse $view_link).Scheme }}\n      {{ if not $view_scheme }}\n        {{ if not (hasPrefix $view_link \"#\") }}\n          {{ $view_link = $view_link | relLangURL }}\n        {{ end }}\n      {{ else if in (slice \"http\" \"https\") $view_scheme }}\n        {{ $view_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n      {{ end }}\n      <a href=\"{{ $view_link | safeURL }}\" {{ $view_target | safeHTMLAttr }} class=\"hidden sm:flex items-center gap-2 text-primary-600 dark:text-primary-400 font-medium hover:text-primary-700 dark:hover:text-primary-300 transition-colors\">\n        {{ $view_all_text }}\n        <svg class=\"h-4 w-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n          <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 7l5 5m0 0l-5 5m5-5H6\"></path>\n        </svg>\n      </a>\n      {{ end }}\n    </div>\n    \n    {{/* Get trending questions dynamically or from static config */}}\n    {{ $questions := slice }}\n    \n    {{/* Method 1: Dynamic - Pull from pages with trending: true */}}\n    {{ $count := partial \"functions/coerce_int\" (dict \"value\" (index $content \"count\") \"default\" 4 \"min\" 0) }}\n    {{ $trending_pages := where site.RegularPages \"Params.trending\" true }}\n    {{ $trending_pages = $trending_pages.ByParam \"trending_weight\" | default ($trending_pages.ByDate.Reverse) }}\n    {{ $trending_pages = first $count $trending_pages }}\n    \n    {{ if $trending_pages }}\n      {{ range $trending_pages }}\n        {{ $question := \"\" }}\n        {{ $question_raw := .Params.question | default .Title }}\n        {{ if $question_raw }}{{ $question = strings.TrimSpace (printf \"%v\" $question_raw) }}{{ end }}\n        {{ $link := .RelPermalink }}\n        {{ $answer_preview := \"\" }}\n        {{ $answer_raw := .Params.answer_preview | default .Params.answer | default .Summary }}\n        {{ if $answer_raw }}{{ $answer_preview = (printf \"%v\" $answer_raw) | plainify | truncate 150 }}{{ end }}\n\n        {{ $author := \"\" }}\n        {{ with .Params.author }}{{ $author = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ $views := \"\" }}\n        {{ with .Params.views }}{{ $views = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n        {{ $upvotes := \"\" }}\n        {{ with .Params.upvote_count }}{{ $upvotes = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n        {{ $badge := dict }}\n        {{ $badge_raw := .Params.badge }}\n        {{ if reflect.IsMap $badge_raw }}\n          {{ $badge_text := \"\" }}\n          {{ $badge_color := \"\" }}\n          {{ with index $badge_raw \"text\" }}{{ $badge_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n          {{ with index $badge_raw \"color\" }}{{ $badge_color = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n          {{ if $badge_text }}\n            {{ $badge = dict \"text\" $badge_text \"color\" $badge_color }}\n          {{ end }}\n        {{ else if $badge_raw }}\n          {{ $badge_text := strings.TrimSpace (printf \"%v\" $badge_raw) }}\n          {{ if $badge_text }}\n            {{ $badge = dict \"text\" $badge_text \"color\" \"\" }}\n          {{ end }}\n        {{ end }}\n\n        {{ if eq (len $badge) 0 }}\n          {{ $upvote_count := partial \"functions/coerce_int\" (dict \"value\" .Params.upvote_count \"default\" 0 \"min\" 0) }}\n          {{ $featured := partial \"functions/coerce_bool\" (dict \"value\" .Params.featured \"default\" false) }}\n          {{ if gt $upvote_count 50 }}\n            {{ $badge = dict \"text\" \"🔥 Popular\" \"color\" \"bg-red-100 text-red-800 dark:bg-red-900/30 dark:text-red-200\" }}\n          {{ else if $featured }}\n            {{ $badge = dict \"text\" \"⭐ Featured\" \"color\" \"bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-200\" }}\n          {{ else if (time .Date).After (now.AddDate 0 0 -7) }}\n            {{ $badge = dict \"text\" \"✨ New\" \"color\" \"bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-200\" }}\n          {{ else }}\n            {{ $badge = dict \"text\" \"🔥 Trending\" \"color\" \"bg-amber-100 text-amber-800 dark:bg-amber-900/30 dark:text-amber-200\" }}\n          {{ end }}\n        {{ end }}\n\n        {{ if $question }}\n          {{ $questions = $questions | append (dict \"question\" $question \"link\" $link \"answer_preview\" $answer_preview \"author\" $author \"views\" $views \"upvotes\" $upvotes \"badge\" $badge) }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n    \n    {{/* Method 2: Static fallback - Use config if no trending pages found */}}\n    {{ if not $questions }}\n      {{ $questions_raw := index $content \"questions\" }}\n      {{ $questions_iter := slice }}\n      {{ if reflect.IsSlice $questions_raw }}\n        {{ $questions_iter = $questions_raw }}\n      {{ else if and $questions_raw (reflect.IsMap $questions_raw) }}\n        {{ $questions_iter = slice $questions_raw }}\n      {{ end }}\n      {{ if gt (len $questions_iter) 0 }}\n        {{ range $questions_iter }}\n          {{ if reflect.IsMap . }}\n            {{ $question := \"\" }}\n            {{ $link := \"\" }}\n            {{ $answer_preview := \"\" }}\n            {{ $author := \"\" }}\n            {{ $views := \"\" }}\n            {{ $upvotes := \"\" }}\n\n            {{ with index . \"question\" }}{{ $question = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"link\" }}{{ $link = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"answer_preview\" }}{{ $answer_preview = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"author\" }}{{ $author = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"views\" }}{{ $views = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n            {{ with index . \"upvotes\" }}{{ $upvotes = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n\n            {{ $badge := dict }}\n            {{ $badge_raw := index . \"badge\" }}\n            {{ if reflect.IsMap $badge_raw }}\n              {{ $badge_text := \"\" }}\n              {{ $badge_color := \"\" }}\n              {{ with index $badge_raw \"text\" }}{{ $badge_text = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n              {{ with index $badge_raw \"color\" }}{{ $badge_color = strings.TrimSpace (printf \"%v\" .) }}{{ end }}\n              {{ if $badge_text }}\n                {{ $badge = dict \"text\" $badge_text \"color\" $badge_color }}\n              {{ end }}\n            {{ else if $badge_raw }}\n              {{ $badge_text := strings.TrimSpace (printf \"%v\" $badge_raw) }}\n              {{ if $badge_text }}\n                {{ $badge = dict \"text\" $badge_text \"color\" \"\" }}\n              {{ end }}\n            {{ end }}\n\n            {{ if $question }}\n              {{ $questions = $questions | append (dict \"question\" $question \"link\" $link \"answer_preview\" $answer_preview \"author\" $author \"views\" $views \"upvotes\" $upvotes \"badge\" $badge) }}\n            {{ end }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n    \n    {{/* Questions list or carousel */}}\n    <div class=\"grid gap-4 lg:grid-cols-2\">\n      {{ range $index, $question := $questions }}\n      <div class=\"group relative overflow-hidden rounded-xl border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 p-6 transition-all duration-300 hover:border-primary-500 hover:shadow-lg\">\n        \n        {{/* Badge */}}\n        {{ $badge := index $question \"badge\" }}\n        {{ if reflect.IsMap $badge }}\n          {{ $badge_text := index $badge \"text\" }}\n          {{ $badge_color := index $badge \"color\" | default \"bg-amber-100 text-amber-800 dark:bg-amber-900/30 dark:text-amber-200\" }}\n          {{ if $badge_text }}\n          <div class=\"mb-3 inline-flex items-center rounded-full px-3 py-1 text-xs font-medium {{ $badge_color }}\">\n            {{ $badge_text }}\n          </div>\n          {{ end }}\n        {{ end }}\n        \n        {{/* Question */}}\n        <h3 class=\"mb-3 text-lg font-semibold text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors\">\n          {{ $question_link := index $question \"link\" }}\n          {{ $link := $question_link }}\n          {{ if not $link }}{{ $link = \"#\" }}{{ end }}\n          {{ $link_target := \"\" }}\n          {{ $scheme := (urls.Parse $link).Scheme }}\n          {{ if not $scheme }}\n            {{ if not (hasPrefix $link \"#\") }}\n              {{ $link = $link | relLangURL }}\n            {{ end }}\n          {{ else if in (slice \"http\" \"https\") $scheme }}\n            {{ $link_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n          {{ end }}\n          <a href=\"{{ $link | safeURL }}\" {{ $link_target | safeHTMLAttr }} class=\"after:absolute after:inset-0\">\n            {{ index $question \"question\" }}\n          </a>\n        </h3>\n        \n        {{/* Answer preview */}}\n        {{ with index $question \"answer_preview\" }}\n        <p class=\"text-gray-600 dark:text-gray-400 mb-4 line-clamp-2\">\n          {{ . }}\n        </p>\n        {{ end }}\n        \n        {{/* Meta info */}}\n        <div class=\"flex items-center justify-between text-sm\">\n          <div class=\"flex items-center gap-4 text-gray-500 dark:text-gray-400\">\n            {{ with index $question \"author\" }}\n            <span class=\"flex items-center gap-1\">\n              <svg class=\"h-4 w-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z\"></path>\n              </svg>\n              {{ . }}\n            </span>\n            {{ end }}\n            \n            {{ with index $question \"views\" }}\n            <span class=\"flex items-center gap-1\">\n              <svg class=\"h-4 w-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 12a3 3 0 11-6 0 3 3 0 016 0z\"></path>\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z\"></path>\n              </svg>\n              {{ . }}\n            </span>\n            {{ end }}\n            \n            {{ with index $question \"upvotes\" }}\n            <span class=\"flex items-center gap-1\">\n              <svg class=\"h-4 w-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\"></path>\n              </svg>\n              {{ . }} helpful\n            </span>\n            {{ end }}\n          </div>\n          \n          <span class=\"text-primary-600 dark:text-primary-400 opacity-0 group-hover:opacity-100 transition-opacity\">\n            Read →\n          </span>\n        </div>\n        \n      </div>\n      {{ end }}\n    </div>\n    \n    {{/* Mobile view all link */}}\n    {{ if and $view_all_text $view_all_link }}\n    {{ $mobile_link := $view_all_link }}\n    {{ $mobile_target := \"\" }}\n    {{ $mobile_scheme := (urls.Parse $mobile_link).Scheme }}\n    {{ if not $mobile_scheme }}\n      {{ if not (hasPrefix $mobile_link \"#\") }}\n        {{ $mobile_link = $mobile_link | relLangURL }}\n      {{ end }}\n    {{ else if in (slice \"http\" \"https\") $mobile_scheme }}\n      {{ $mobile_target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n    {{ end }}\n    <div class=\"mt-6 sm:hidden\">\n      <a href=\"{{ $mobile_link | safeURL }}\" {{ $mobile_target | safeHTMLAttr }} class=\"flex items-center justify-center gap-2 rounded-lg bg-primary-600 px-4 py-2 text-white font-medium hover:bg-primary-700 transition-colors\">\n        {{ $view_all_text }}\n        <svg class=\"h-4 w-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n          <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M13 7l5 5m0 0l-5 5m5-5H6\"></path>\n        </svg>\n      </a>\n    </div>\n    {{ end }}\n    \n  </div>\n</section>\n"
  },
  {
    "path": "modules/blox/blox/trending-questions/manifest.json",
    "content": "{\n  \"name\": \"trending-questions\",\n  \"version\": \"1\",\n  \"title\": \"Trending Questions\",\n  \"description\": \"Display trending or featured questions\",\n  \"categories\": [\"content\"],\n  \"preview\": \"preview.svg\"\n}\n"
  },
  {
    "path": "modules/blox/data/address_formats.toml",
    "content": "# Address formats.\nen-ca = {order = ['street', 'city', 'region', 'postcode', 'country'], delimiters = ['<br>', ', ', '<br>', '<br>']}\nen-us = {order = ['street', 'city', 'region', 'postcode'], delimiters = [', ', ', ', ' ', '']}\nen-gb = {order = ['street', 'city', 'region', 'postcode'], delimiters = [', ', ', ', ', ', '']}\nde = {order = ['street', 'postcode', 'city'], delimiters = ['<br>', ' ', '']}\nfr-ca = {order = ['street', 'city', 'region', 'postcode', 'country'], delimiters = ['<br>', ', ', '<br>', '<br>']}\nfr-fr = {order = ['street', 'postcode', 'city'], delimiters = ['<br>', ' ', '']}\nnl = {order = ['street', 'postcode', 'city', 'country'], delimiters = ['<br>', ' ', '<br>', '']}\nzh = {order = ['postcode', 'region', 'city', 'street'], delimiters = [' ', ' ', ' ', '']}\npt-br = {order = ['street', 'city', 'region', 'postcode', 'country'], delimiters = ['<br>', ', ', '<br>', '<br>']}\nil = {order = ['street', 'city', 'postcode', 'country'], delimiters = [', ', '&nbsp;', ' ', '']}\nfi = {order = ['street', 'postcode', 'city', 'country'], delimiters = [', ', ' ', ', ']}\n"
  },
  {
    "path": "modules/blox/data/blox_aliases.yaml",
    "content": "renames:\n  - old: awards\n    new: resume-awards\n  - old: biography\n    new: resume-biography\n  - old: experience\n    new: resume-experience\n  - old: languages\n    new: resume-languages\n  - old: skills\n    new: resume-skills\n"
  },
  {
    "path": "modules/blox/data/fonts/academic.yaml",
    "content": "# HugoBlox Font Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-font@1\"\n    name: \"Academic\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    style: \"serif\"\n    description: \"Traditional serif pairing for academic, research, and institutional sites\"\n\n  families:\n    heading: \"Lora\"\n    body: \"Source Serif 4\"\n    code: \"Source Code Pro\"\n\n  weights:\n    heading: [500, 600, 700]\n    body: [400, 600]\n    code: [400]\n\n  leading:\n    heading: 1.2\n    body: 1.7\n    code: 1.5\n\n  tracking:\n    heading: \"0\"\n    body: \"0\"\n\n  variable:\n    heading: true\n    body: true\n    code: false\n"
  },
  {
    "path": "modules/blox/data/fonts/developer.yaml",
    "content": "# HugoBlox Font Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-font@1\"\n    name: \"Developer\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Technical, code-forward pairing for developer portfolios and docs\"\n\n  families:\n    heading: \"Space Grotesk\"\n    body: \"IBM Plex Sans\"\n    code: \"Fira Code\"\n\n  weights:\n    heading: [500, 700]\n    body: [400, 500, 600]\n    code: [400, 700]\n\n  leading:\n    heading: 1.2\n    body: 1.6\n    code: 1.5\n\n  tracking:\n    heading: \"-0.02em\"\n    body: \"0\"\n\n  variable:\n    heading: true\n    body: false\n    code: true\n"
  },
  {
    "path": "modules/blox/data/fonts/editorial.yaml",
    "content": "# HugoBlox Font Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-font@1\"\n    name: \"Editorial\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    style: \"serif\"\n    description: \"Elegant serif pairing for magazines, blogs, and long-form content\"\n\n  families:\n    heading: \"Playfair Display\"\n    body: \"Merriweather\"\n    code: \"Source Code Pro\"\n\n  weights:\n    heading: [600, 700, 800]\n    body: [300, 400, 700]\n    code: [400]\n\n  leading:\n    heading: 1.15\n    body: 1.7\n    code: 1.5\n\n  tracking:\n    heading: \"-0.01em\"\n    body: \"0\"\n\n  variable:\n    heading: true\n    body: false\n    code: false\n"
  },
  {
    "path": "modules/blox/data/fonts/geometric.yaml",
    "content": "# HugoBlox Font Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-font@1\"\n    name: \"Geometric\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Bold, modern geometric sans-serif for startups and SaaS landing pages\"\n\n  families:\n    heading: \"Montserrat\"\n    body: \"Poppins\"\n    code: \"JetBrains Mono\"\n\n  weights:\n    heading: [600, 700, 800]\n    body: [300, 400, 500, 600]\n    code: [400]\n\n  leading:\n    heading: 1.15\n    body: 1.6\n    code: 1.5\n\n  tracking:\n    heading: \"-0.01em\"\n    body: \"0\"\n"
  },
  {
    "path": "modules/blox/data/fonts/humanist.yaml",
    "content": "# HugoBlox Font Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-font@1\"\n    name: \"Humanist\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Friendly, approachable rounded sans-serif for community and personal sites\"\n\n  families:\n    heading: \"Nunito\"\n    body: \"Open Sans\"\n    code: \"Ubuntu Mono\"\n\n  weights:\n    heading: [600, 700, 800]\n    body: [400, 600]\n    code: [400, 700]\n\n  leading:\n    heading: 1.25\n    body: 1.65\n    code: 1.5\n\n  tracking:\n    heading: \"0\"\n    body: \"0\"\n\n  variable:\n    heading: true\n    body: true\n    code: false\n"
  },
  {
    "path": "modules/blox/data/fonts/modern.yaml",
    "content": "# HugoBlox Font Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-font@1\"\n    name: \"Modern\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Clean, modern sans-serif pairing — the default HugoBlox look\"\n\n  families:\n    heading: \"Inter\"\n    body: \"Inter\"\n    code: \"JetBrains Mono\"\n\n  weights:\n    heading: [600, 700]\n    body: [400, 500]\n    code: [400]\n\n  leading:\n    heading: 1.2\n    body: 1.6\n    code: 1.5\n\n  tracking:\n    heading: \"-0.02em\"\n    body: \"0\"\n\n  variable:\n    heading: true\n    body: true\n    code: true\n"
  },
  {
    "path": "modules/blox/data/fonts/system.yaml",
    "content": "# HugoBlox Font Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-font@1\"\n    name: \"System\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"System fonts only — zero network requests, maximum performance\"\n\n  families:\n    heading: \"system-sans\"\n    body: \"system-sans\"\n    code: \"system-mono\"\n\n  weights:\n    heading: [600, 700]\n    body: [400, 500]\n    code: [400]\n\n  leading:\n    heading: 1.2\n    body: 1.6\n    code: 1.5\n\n  tracking:\n    heading: \"-0.02em\"\n    body: \"0\"\n"
  },
  {
    "path": "modules/blox/data/hugoblox.yaml",
    "content": "# Hugo Blox metadata\n\nversion: '0.11.0'\n"
  },
  {
    "path": "modules/blox/data/icons/academicons.json",
    "content": "{\n  \"prefix\": \"academicons\",\n  \"info\": {\n    \"name\": \"Academicons\",\n    \"total\": 157,\n    \"version\": \"1.9.4\",\n    \"author\": {\n      \"name\": \"James Walsh\",\n      \"url\": \"https://github.com/jpswalsh/academicons\"\n    },\n    \"license\": {\n      \"title\": \"Open Font License\",\n      \"spdx\": \"OFL-1.1\",\n      \"url\": \"https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL\"\n    },\n    \"samples\": [\"conversation\", \"crossref-square\", \"stackoverflow\"],\n    \"height\": 32,\n    \"displayHeight\": 16,\n    \"category\": \"Thematic\",\n    \"palette\": false\n  },\n  \"lastModified\": 1701155440,\n  \"icons\": {\n    \"academia\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M244.377 427.349c0 6.85-.044 13.703-.044 20.597c60.027.09 120.053 0 180.077.046c0-6.853-.043-13.703-.043-20.554c-12.067-2.432-26.964-5.835-31.605-18.962c-46.101-114.703-92.869-229.187-138.352-344.11c-33.24-.575-66.479-.354-99.719-.132c6.188 13.88 11.36 28.2 17.77 41.99c-38.942 101.178-78.502 202.178-118.02 303.136c-4.464 12.862-19.096 15.737-30.808 18.167c0 6.763-.043 13.57-.043 20.378c38.278.177 76.556.044 114.835.088c-.044-6.939-.044-13.835-.087-20.73c-12.023-1.856-25.814-1.635-35.583-9.946c-7.69-7.425-4.287-19.007-1.105-27.715c7.647-19.757 14.897-39.693 23.25-59.186c46.37.266 92.69-.043 139.059.132c6.366 15.824 12.73 31.692 19.096 47.56c4.244 10.696 8.09 22.676 4.64 34.168c-8.93 14.81-28.289 13.927-43.318 15.074zM138.735 293.64c17.77-47.208 36.599-94.061 54.014-141.401c18.787 47.163 37.704 94.282 56.534 141.401a11615.148 11615.148 0 0 1-110.548 0z\\\"/>\"\n    },\n    \"academia-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm159.793 64c13.85-.01 27.699.065 41.549.305c37.902 95.77 76.875 191.171 115.293 286.758c3.867 10.939 16.282 13.776 26.338 15.802c0 5.709.035 11.417.035 17.127c-50.02-.038-100.04.037-150.063-.037c0-5.745.035-11.455.035-17.164c12.525-.956 28.658-.218 36.1-12.56c2.874-9.577-.33-19.56-3.867-28.473a40245.15 40245.15 0 0 0-15.914-39.635c-38.64-.146-77.24.112-115.881-.11c-6.961 16.245-13.004 32.859-19.377 49.323c-2.651 7.256-5.487 16.908.922 23.096c8.14 6.925 19.633 6.74 29.652 8.287c.036 5.746.036 11.493.072 17.275c-31.898-.037-63.796.074-95.695-.074c0-5.673.035-11.344.035-16.98c9.76-2.025 21.954-4.422 25.674-15.141c32.931-84.131 65.898-168.297 98.35-252.611c-5.342-11.494-9.652-23.426-14.809-34.993c13.85-.092 27.701-.186 41.551-.195zm-9.836 73.533c-14.513 39.45-30.204 78.494-45.012 117.834a9679.29 9679.29 0 0 0 92.123 0c-15.691-39.266-31.455-78.53-47.111-117.834z\\\"/>\"\n    },\n    \"acclaim\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M192 64C176.376 74.86 34.879 208.266 27.429 221.373v72.22c10.325.253 147.565-143.552 164.571-150.382c17.006 6.83 154.246 150.635 164.571 150.382v-72.22C349.121 208.266 207.624 74.859 192 64Zm0 154.406C176.376 229.266 34.879 362.672 27.429 375.78V448c10.325.254 147.565-143.551 164.571-150.383C209.006 304.448 346.246 448.253 356.571 448v-72.221C349.121 362.672 207.624 229.266 192 218.406Z\\\"/>\",\n      \"width\": 384\n    },\n    \"acclaim-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176 64c13.02 9.05 130.934 120.222 137.143 131.145v60.183c-8.605.21-122.971-119.626-137.143-125.318c-14.172 5.692-128.538 125.529-137.143 125.318v-60.183C93.066 216.222 210.98 105.049 224 96zm0 128.672c13.02 9.05 130.934 120.222 137.143 131.144V416c-8.605.21-122.971-119.627-137.143-125.32C209.828 296.373 95.462 416.21 86.857 416v-60.184C93.066 344.894 210.98 233.721 224 224.672z\\\"/>\"\n    },\n    \"acm\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M256 8L8 256l248 248l248-248zm.023 399.39c-83.944 0-152.016-68.027-152.016-151.97c0-83.99 68.072-152.064 152.016-152.064c83.989 0 151.972 68.074 151.972 152.064c0 83.944-67.983 151.97-151.972 151.97zm-94.29-146.914c-1.81.604-3.201 1.532-4.129 2.831c-1.021 1.3-1.579 2.97-1.579 5.012c0 3.063.883 5.198 2.507 6.357c1.625 1.161 4.084 1.67 7.378 1.67c1.67 0 3.528-.277 5.336-1.205c1.95-.742 3.62-1.949 5.105-3.387v-13.69c-3.48.37-6.264.697-8.354.974c-2.089.232-4.222.649-6.264 1.438zM256 118.576c-75.41 0-136.54 61.133-136.54 136.544c0 75.408 61.13 136.54 136.54 136.54s136.543-61.132 136.543-136.54c0-75.41-61.132-136.543-136.543-136.543zM196.95 288.97h-20.603v-6.913a200.876 200.876 0 0 0-3.804 3.108c-1.067.974-2.505 1.811-4.409 2.786c-1.856.974-3.573 1.67-5.383 2.042c-1.718.51-4.13.742-7.285.742c-5.802 0-10.627-2.042-14.432-5.894c-3.852-3.945-5.801-8.77-5.801-14.758c0-4.964.975-8.91 2.924-11.88c1.997-3.015 4.78-5.428 8.4-7.191c3.71-1.763 8.167-3.016 13.271-3.712c5.198-.649 10.718-1.3 16.705-1.625v-.415c0-3.573-1.393-6.126-4.036-7.471c-2.69-1.393-6.683-2.088-12.065-2.088c-2.459 0-5.243.465-8.491 1.39c-3.204.79-6.357 1.997-9.513 3.343h-1.67v-15.916c2.042-.648 5.29-1.3 9.837-2.135a75.605 75.605 0 0 1 13.782-1.254c11.323 0 19.537 1.949 24.732 5.66c5.243 3.805 7.843 9.606 7.843 17.31v44.87zm66.357-44.78h-2.645c-.742-.787-1.811-1.67-2.97-2.505c-1.255-1.02-2.46-1.856-3.898-2.6c-1.485-.928-3.248-1.484-5.011-2.135a22.908 22.908 0 0 0-6.357-.882c-5.243 0-9.329 1.81-12.204 5.522c-2.83 3.619-4.362 8.537-4.362 14.71c0 6.544 1.576 11.508 4.64 14.757c3.062 3.2 7.1 4.825 12.25 4.825c2.598 0 4.92-.324 6.916-.835c1.901-.603 3.573-1.345 4.918-2.135c1.439-.834 2.646-1.624 3.62-2.552c.975-.835 1.855-1.625 2.459-2.319h2.645v17.54c-1.161.512-2.507 1.114-4.084 1.81c-1.531.604-3.015 1.162-4.687 1.58c-1.949.648-3.898.927-5.615 1.252c-1.763.324-4.038.51-6.913.51c-5.429 0-10.486-.742-14.99-2.09c-4.453-1.39-8.35-3.48-11.692-6.311c-3.342-2.922-5.894-6.495-7.75-10.765c-1.856-4.318-2.736-9.467-2.736-15.267c0-6.356.928-11.6 2.97-16.103c1.996-4.408 4.639-8.026 8.12-10.858c3.293-2.736 7.146-4.78 11.647-6.078c4.409-1.346 9.048-1.997 13.873-1.997c3.621 0 7.333.465 10.904 1.346c3.667.787 7.285 2.135 10.951 3.99v17.59zm89.697 44.78v-32.946c0-3.202-.047-5.894-.185-8.168c-.141-2.226-.51-4.084-1.114-5.476c-.558-1.438-1.532-2.414-2.739-3.063c-1.205-.695-2.97-.974-5.15-.974c-1.579 0-3.11.28-4.687.974c-1.532.696-3.201 1.717-5.012 2.924v46.728h-20.555V256.02c0-3.201-.048-5.894-.186-8.168c-.186-2.226-.463-4.084-1.066-5.476c-.65-1.438-1.532-2.414-2.737-3.063c-1.3-.694-3.015-.974-5.198-.974c-1.717 0-3.342.37-4.966 1.114a42.775 42.775 0 0 0-4.685 2.784v46.727h-20.56V223.12h20.558v7.285c3.342-2.831 6.544-5.102 9.513-6.73c2.925-1.578 6.266-2.413 10.024-2.413c3.99 0 7.563.973 10.533 2.877c3.156 1.901 5.429 4.732 7.054 8.585c3.945-3.667 7.702-6.498 11.137-8.492c3.528-1.997 7.051-2.97 10.627-2.97c3.062 0 5.799.558 8.26 1.484c2.414 1.021 4.501 2.507 6.126 4.409c1.902 2.135 3.249 4.64 4.13 7.564c.975 2.924 1.392 6.683 1.392 11.416v42.83h-20.514z\\\"/>\",\n      \"width\": 512\n    },\n    \"acm-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176 64l160 160l-160 160L64 256L224 96zm.014 61.52c-54.158 0-98.075 43.918-98.075 98.105c0 54.157 43.917 98.045 98.075 98.045c54.186 0 98.047-43.888 98.047-98.045c0-54.187-43.86-98.105-98.047-98.105zm-.014 9.82c48.652 0 88.092 39.44 88.092 88.092c0 48.65-39.44 88.091-88.092 88.091s-88.09-39.44-88.09-88.091c0-48.653 39.438-88.092 88.09-88.092zm-59.111 66.162a48.76 48.76 0 0 0-8.891.809c-2.933.538-5.03.96-6.348 1.378v10.268h1.079c2.036-.868 4.07-1.647 6.136-2.156c2.096-.597 3.892-.899 5.479-.899c3.472 0 6.049.45 7.785 1.348c1.705.868 2.603 2.515 2.603 4.82v.268c-3.862.21-7.423.63-10.777 1.049c-3.293.449-6.168 1.257-8.562 2.394c-2.335 1.138-4.132 2.695-5.42 4.64c-1.258 1.917-1.887 4.462-1.887 7.665c0 3.863 1.259 6.976 3.744 9.521c2.455 2.486 5.568 3.801 9.31 3.801c2.036 0 3.592-.15 4.7-.478c1.168-.24 2.275-.689 3.472-1.317c1.229-.629 2.156-1.168 2.844-1.797a129.597 129.597 0 0 1 2.455-2.005v4.46h13.293l.002-.001v-28.95c0-4.97-1.678-8.711-5.06-11.166c-3.352-2.394-8.652-3.652-15.957-3.652zm96.697.086c-2.424 0-4.578.538-6.465 1.557c-1.916 1.05-3.982 2.515-6.139 4.341v-4.699h-13.261v42.48h13.263v-30.146a27.57 27.57 0 0 1 3.022-1.795c1.048-.48 2.097-.719 3.205-.719c1.408 0 2.515.18 3.353.627c.778.419 1.348 1.05 1.766 1.977c.39.898.568 2.097.688 3.533c.089 1.467.119 3.204.119 5.27v21.256h13.261v-30.147c1.169-.779 2.247-1.438 3.235-1.887a7.32 7.32 0 0 1 3.023-.629c1.407 0 2.545.181 3.323.63c.778.418 1.407 1.048 1.767 1.976c.39.898.628 2.097.719 3.533c.089 1.467.119 3.202.119 5.268v21.254h13.234v-27.633c0-3.054-.269-5.479-.898-7.365c-.568-1.887-1.437-3.504-2.664-4.881c-1.048-1.227-2.394-2.185-3.951-2.844a14.987 14.987 0 0 0-5.33-.957c-2.307 0-4.58.628-6.856 1.916c-2.216 1.287-4.64 3.113-7.185 5.478c-1.049-2.485-2.515-4.312-4.551-5.539c-1.916-1.228-4.222-1.855-6.797-1.855zm-46.97.002c-3.114 0-6.108.419-8.952 1.287c-2.904.837-5.39 2.157-7.516 3.922c-2.245 1.827-3.95 4.162-5.238 7.006c-1.317 2.905-1.916 6.287-1.916 10.388c0 3.742.568 7.065 1.766 9.85c1.197 2.755 2.844 5.06 5 6.945c2.156 1.827 4.671 3.175 7.545 4.073c2.905.869 6.167 1.347 9.67 1.347c1.854 0 3.321-.12 4.459-.33c1.108-.21 2.365-.388 3.623-.807c1.078-.269 2.035-.63 3.023-1.019c1.018-.45 1.886-.837 2.635-1.168v-11.316h-1.705c-.39.447-.959.957-1.588 1.496c-.628.598-1.406 1.108-2.334 1.646c-.868.51-1.947.988-3.174 1.377c-1.288.33-2.785.54-4.46.54c-3.324 0-5.93-1.049-7.905-3.114c-1.976-2.096-2.994-5.298-2.994-9.52c0-3.982.988-7.155 2.814-9.49c1.855-2.394 4.49-3.562 7.873-3.562c1.496 0 2.844.21 4.102.568c1.137.42 2.276.778 3.234 1.377c.928.48 1.704 1.019 2.514 1.678c.748.538 1.437 1.107 1.916 1.615h1.707V237.03c-2.366-1.197-4.701-2.066-7.067-2.574a29.592 29.592 0 0 0-7.033-.867zm-42.003 23.742v8.832c-.958.928-2.035 1.707-3.293 2.186c-1.166.598-2.366.777-3.443.777c-2.125 0-3.712-.329-4.76-1.078c-1.048-.748-1.617-2.126-1.617-4.102c0-1.317.36-2.394 1.02-3.232c.598-.839 1.495-1.437 2.664-1.826c1.317-.51 2.693-.778 4.04-.928c1.348-.18 3.144-.39 5.39-.629z\\\"/>\"\n    },\n    \"acmdl\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M220.12 208.007c-2.514-1.934-4.682-3.383-8.014-3.34c-12.599.166-25.204.066-37.805.066h-4.332v95.865c11.966 0 23.495-.57 34.933.189c8.603.57 15.393-1.437 20.227-8.627c1.355-2.019 2.747-4.54 2.774-6.844c.22-19.285-.283-38.583.318-57.853c.254-8.171-1.55-14.413-8.101-19.455zm279.91 51.397c1.07-1.069 2.433-1.842 3.97-2.978c-11.23-11.175-21.753-21.637-32.263-32.117c-6.289-6.272-12.628-12.497-18.75-18.93c-.948-.998-1.503-3.158-1.154-4.5c5.88-22.555 11.934-45.064 17.943-67.588c.103-.389.1-.804.185-1.548c-12.671-3.453-25.338-6.907-38.005-10.352c-9.998-2.722-19.96-5.589-30.023-8.05c-2.79-.682-3.717-2-4.39-4.553c-5.711-21.744-11.563-43.45-17.392-65.163c-.208-.781-.605-1.513-1.077-2.67c-8.432 2.217-16.774 4.381-25.1 6.61c-14.652 3.918-29.29 7.902-43.957 11.761c-1.024.268-2.684.122-3.342-.537C289.829 41.916 273.082 24.95 256.316 8h-1.664c-16.71 16.833-33.4 33.683-50.188 50.438c-.776.774-2.548 1.184-3.635.905c-8.543-2.191-17.021-4.638-25.542-6.92c-14.645-3.922-29.307-7.786-43.897-11.657c-.274.43-.49.64-.556.89c-5.887 22.083-11.869 44.138-17.527 66.277c-.924 3.612-2.715 5.073-6.03 5.943c-20.911 5.48-41.776 11.155-62.696 16.602c-3.428.89-4.146 1.937-3.123 5.632c5.881 21.258 11.265 42.652 17.104 63.92c.745 2.708.064 4.049-1.609 5.719c-15.617 15.589-31.132 31.28-46.842 46.773c-2.686 2.649-2.912 4.113-.08 6.896c15.73 15.474 31.22 31.193 46.856 46.761c1.844 1.834 2.344 3.313 1.58 6.089c-5.856 21.256-11.3 42.625-17.135 63.885c-.957 3.485-.072 4.518 3.113 5.36c21.403 5.666 42.739 11.591 64.17 17.136c2.816.73 3.792 2.092 4.417 4.448c3.094 11.715 6.206 23.426 9.317 35.14c2.925 11.01 5.856 22.017 8.795 33.066c23.358-6.227 46.3-12.375 69.28-18.373c1.271-.333 3.342.094 4.237.982c16.735 16.622 33.35 33.368 49.99 50.088h1.664c6.285-6.438 12.534-12.913 18.866-19.303c10.062-10.154 20.202-20.229 30.253-30.393c1.611-1.628 2.933-2.07 5.394-1.399c21.504 5.88 43.078 11.504 64.635 17.189c1.168.308 2.37.491 3.897.804c2.543-9.365 5.043-18.508 7.504-27.659c3.618-13.458 7.236-26.914 10.778-40.393c.569-2.168 1.303-3.385 3.845-4.06c22.36-5.91 44.651-12.08 66.962-18.178c.501-.138.98-.356 1.64-.597c-6-22.397-11.886-44.657-17.99-66.855c-.9-3.278-.592-5.35 1.97-7.866c15.442-15.168 30.642-30.587 45.96-45.887zm-251.292 43.885c-6.238 6.304-12.535 12.56-19.11 18.503c-1.779 1.608-4.63 2.838-6.998 2.856c-25.651.196-51.303.116-76.955.101c-.394 0-.788-.138-1.48-.268V180.559h4.238c23.849 0 47.7.021 71.551-.017c4.52-.008 8.305 1.424 11.495 4.69c5.722 5.856 11.482 11.683 17.358 17.382c3.379 3.276 4.94 7.254 4.953 11.787c.066 25.7.033 51.402.03 77.104c-.004 4.658-1.921 8.59-5.083 11.786zm143.77 21.254h-96.094V180.806h25.515v119.576h70.58v24.162z\\\"/>\",\n      \"width\": 512\n    },\n    \"acmdl-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.13 64h1.073c10.817 10.936 21.622 21.882 32.49 32.768c.425.425 1.497.518 2.157.345c9.463-2.49 18.906-5.06 28.359-7.588c5.372-1.437 10.753-2.833 16.193-4.263c.305.746.561 1.219.696 1.722c3.76 14.009 7.535 28.011 11.22 42.04c.434 1.646 1.032 2.497 2.832 2.937c6.492 1.588 12.92 3.437 19.37 5.193c8.172 2.223 16.344 4.452 24.52 6.68c-.056.48-.053.747-.12.998c-3.877 14.532-7.782 29.053-11.576 43.606c-.225.865.132 2.26.744 2.904c3.95 4.15 8.04 8.166 12.098 12.213c6.78 6.76 13.57 13.511 20.814 20.72c-.992.734-1.872 1.23-2.562 1.92c-9.883 9.871-19.689 19.82-29.65 29.606c-1.654 1.624-1.853 2.96-1.272 5.074c3.938 14.321 7.735 28.684 11.605 43.133c-.426.156-.733.295-1.057.385c-14.393 3.934-28.775 7.915-43.2 11.728c-1.64.435-2.114 1.219-2.481 2.617a4670.705 4670.705 0 0 1-6.955 26.06c-1.588 5.905-3.201 11.805-4.842 17.847c-.985-.202-1.76-.321-2.514-.52c-13.908-3.668-27.825-7.296-41.699-11.09c-1.588-.433-2.441-.148-3.48.902c-6.485 6.558-13.026 13.059-19.518 19.61c-4.085 4.123-8.117 8.3-12.172 12.453h-1.074c-10.735-10.787-21.454-21.59-32.25-32.314c-.578-.573-1.915-.85-2.734-.635c-14.827 3.87-29.628 7.836-44.698 11.853c-1.896-7.128-3.786-14.228-5.674-21.332c-2.006-7.557-4.015-15.113-6.011-22.672c-.403-1.52-1.031-2.398-2.848-2.869c-13.827-3.577-27.592-7.398-41.4-11.054c-2.055-.543-2.628-1.211-2.01-3.46c3.765-13.715 7.276-27.5 11.055-41.214c.492-1.791.17-2.747-1.02-3.93c-10.087-10.044-20.08-20.185-30.228-30.168c-1.827-1.796-1.682-2.74.05-4.45c10.136-9.995 20.146-20.117 30.221-30.175c1.08-1.077 1.52-1.943 1.04-3.69c-3.768-13.72-7.242-27.523-11.036-41.238c-.66-2.384-.196-3.06 2.016-3.634c13.496-3.515 26.957-7.177 40.449-10.711c2.138-.562 3.292-1.504 3.888-3.834c3.65-14.283 7.511-28.513 11.31-42.76c.042-.161.182-.297.358-.574c9.413 2.497 18.872 4.99 28.32 7.521c5.498 1.472 10.967 3.052 16.48 4.465c.7.18 1.843-.084 2.343-.584c10.831-10.81 21.6-21.681 32.38-32.541zm-22.366 111.318c-15.388.025-30.776.01-46.162.01h-2.733v92.854c.446.084.699.172.953.172c16.55.009 33.1.062 49.649-.065c1.527-.012 3.366-.804 4.513-1.842c4.243-3.834 8.306-7.87 12.33-11.937c2.04-2.062 3.278-4.598 3.28-7.604c.002-16.581.023-33.163-.02-49.744c-.008-2.924-1.015-5.492-3.195-7.605c-3.791-3.678-7.508-7.435-11.2-11.213c-2.058-2.107-4.5-3.032-7.415-3.026zm49.31.17v92.733h61.996v-15.588h-45.535v-77.145h-16.46zm-54.392 15.395c2.149-.028 3.547.906 5.17 2.154c4.226 3.253 5.39 7.28 5.226 12.553c-.387 12.432-.063 24.883-.205 37.324c-.017 1.486-.917 3.113-1.791 4.416c-3.118 4.639-7.498 5.932-13.049 5.565c-7.379-.49-14.817-.122-22.537-.122v-61.85h2.795c8.13 0 16.262.067 24.39-.04z\\\"/>\"\n    },\n    \"ads\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M456.047 162.822c54.548 87.296 28.001 202.283-59.295 256.831c-68.97 43.098-155.229 35.575-215.306-12.538l8.928-5.579c56.745 43.623 136.858 49.883 201.123 9.728c82.654-51.647 107.789-160.52 56.142-243.174c-35.432-56.703-91.871-86.885-154.225-83.227c-17.05.997-31.495 5.937-31.495 5.937s-.753-5.19-1.84-8.363c76.361-20.631 148.487 4.4 195.969 80.385zm-340.11 138.984l8.95-5.592c-8.277-41.436-2.42-81.416 17.988-117.9c0 0-5.027-5.476-7.974-7.03c-21.787 39.43-28.807 85.961-18.963 130.523zm233.648 11.924c-1.04-1.486-1.673-4.312-1.895-8.477c-.15-5.5-.223-10.184-.223-14.052V235.44c0-14.646-5.188-24.61-15.567-29.89c-10.38-5.277-22.253-7.917-35.618-7.917c-20.537 0-35.022 5.352-43.46 16.06c-5.302 6.842-8.288 15.576-8.96 26.208h30.67c.753-4.684 2.258-8.401 4.521-11.151c3.163-3.717 8.553-5.576 16.165-5.576c6.783 0 11.926.947 15.431 2.843c3.504 1.896 5.257 5.335 5.257 10.316c0 4.09-2.286 7.101-6.852 9.033c-2.548 1.115-6.78 2.046-12.695 2.789l-10.898 1.337c-12.358 1.561-21.72 4.165-28.088 7.808c-11.61 6.692-17.413 17.508-17.413 32.453c0 11.524 3.606 20.427 10.824 26.71c7.217 6.281 16.356 9.423 27.426 9.423c8.675 0 16.453-1.97 23.334-5.909c5.757-3.346 10.845-7.398 15.257-12.156c.222 2.752.52 5.205.892 7.362c.371 2.156 1.041 4.46 2.008 6.914h34.573v-4.684c-2.088-.967-3.649-2.192-4.69-3.68zm-33.794-38.921c-.225 10.633-3.262 17.955-9.115 21.971c-5.852 4.016-12.249 6.022-19.194 6.022c-4.38 0-8.098-1.207-11.155-3.624c-3.059-2.415-4.587-6.338-4.587-11.766c0-6.096 2.502-10.595 7.508-13.494c2.956-1.709 7.828-3.16 14.61-4.349l7.234-1.338c3.618-.67 6.461-1.393 8.534-2.175a35.062 35.062 0 0 0 6.16-3.067v11.82zm-90.177-165.094C225.614 84.468 205.148 64 179.9 64c-25.249 0-45.712 20.468-45.712 45.715c0 25.247 20.467 45.715 45.714 45.715s45.713-20.468 45.713-45.715zm91.82 16.855c-20.215-3.2-40.097-1.796-58.576 3.438c-5.049 19.49-17.281 37.154-35.703 48.663c-13.78 8.61-29.137 12.6-44.259 12.386c-8.83 14.654-15.04 31.22-17.88 49.158c-4.595 29.004.296 57.318 12.372 81.788l-22.993 14.368c-7.495-3.976-16.863-3.879-24.484 1.07l-87.305 56.696c-11.185 7.265-14.364 22.219-7.101 33.403c7.264 11.185 22.215 14.362 33.399 7.099l87.307-56.698c7.704-5.002 11.608-13.654 10.919-22.21l22.226-13.888c20.563 28.367 51.963 48.878 89.302 54.792c74.576 11.811 144.606-39.069 156.418-113.645c11.813-74.576-39.066-144.605-113.642-156.419zm75.335 152.262c-8.458 53.402-58.604 89.835-112.004 81.377c-53.4-8.458-89.835-58.606-81.377-112.006c8.458-53.4 58.606-89.835 112.006-81.377c53.4 8.458 89.832 58.606 81.374 112.006z\\\"/>\",\n      \"width\": 512\n    },\n    \"ads-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm112.582 64c21.04 0 38.096 17.057 38.096 38.096c0 21.039-17.055 38.095-38.094 38.095c-21.04 0-38.096-17.056-38.096-38.095c0-21.04 17.053-38.096 38.094-38.096zm107.893 9.59c47.872-.261 91.32 23.293 122.232 72.762h-.002c45.457 72.746 23.335 168.568-49.412 214.025c-57.476 35.915-129.358 29.647-179.422-10.447l7.441-4.65c47.287 36.352 114.047 41.57 167.602 8.107c68.878-43.04 89.824-133.767 46.785-202.645c-29.526-47.252-76.56-72.404-128.521-69.355c-14.208.83-26.246 4.947-26.246 4.947s-.628-4.325-1.534-6.969c13.92-3.76 27.672-5.702 41.077-5.775zm-12.067 41.137c6.192-.045 12.47.415 18.787 1.416c62.147 9.844 104.545 68.202 94.701 130.35c-9.843 62.146-68.2 104.545-130.347 94.702c-31.116-4.928-57.282-22.021-74.418-45.66l-18.524 11.574c.575 7.13-2.679 14.34-9.1 18.508l-72.753 47.248c-9.32 6.053-21.78 3.405-27.834-5.916c-6.052-9.32-3.403-21.78 5.918-27.834l72.754-47.248c6.35-4.123 14.158-4.204 20.404-.89l19.16-11.975c-10.063-20.392-14.139-43.986-10.31-68.156c2.368-14.95 7.54-28.754 14.9-40.965c12.601.177 25.4-3.147 36.883-10.322c15.351-9.591 25.546-24.312 29.754-40.553a113.12 113.12 0 0 1 30.025-4.28zm1.336 33.947c-39.612-.216-74.532 28.5-80.92 68.828c-7.048 44.5 23.312 86.29 67.813 93.338c44.5 7.048 86.29-23.311 93.338-67.813c7.048-44.5-23.313-86.29-67.813-93.338a82.216 82.216 0 0 0-12.418-1.015zm-134.66 4.728c2.456 1.296 6.645 5.86 6.645 5.86c-17.008 30.403-21.889 63.72-14.99 98.25l-7.458 4.66c-8.203-37.135-2.353-75.911 15.803-108.77zm134.484 21.957c11.138 0 21.032 2.202 29.682 6.6c8.649 4.4 12.973 12.701 12.973 24.906v46.469c0 3.223.06 7.127.185 11.71c.186 3.471.713 5.827 1.58 7.065h-.002c.868 1.24 2.169 2.263 3.909 3.069v3.902h-28.811c-.806-2.044-1.365-3.964-1.674-5.762c-.31-1.797-.556-3.841-.742-6.134c-3.677 3.965-7.917 7.34-12.715 10.128c-5.734 3.284-12.216 4.926-19.445 4.926c-9.225 0-16.841-2.619-22.856-7.853c-6.014-5.236-9.02-12.654-9.02-22.258c0-12.454 4.837-21.468 14.513-27.045c5.307-3.036 13.107-5.205 23.406-6.506l9.082-1.115c4.93-.619 8.454-1.395 10.578-2.324c3.805-1.61 5.71-4.12 5.71-7.528c0-4.15-1.46-7.015-4.38-8.595c-2.921-1.58-7.207-2.37-12.86-2.37c-6.342 0-10.834 1.55-13.47 4.647c-1.886 2.292-3.14 5.39-3.768 9.293h-25.558c.56-8.86 3.048-16.138 7.467-21.84c7.03-8.923 19.103-13.385 36.216-13.385zm16.254 54.465a29.221 29.221 0 0 1-5.135 2.555c-1.727.652-4.096 1.256-7.11 1.814l-6.03 1.114c-5.651.991-9.71 2.2-12.174 3.625c-4.171 2.415-6.256 6.165-6.256 11.246c0 4.523 1.274 7.792 3.822 9.804c2.548 2.014 5.646 3.02 9.295 3.02c5.788 0 11.12-1.67 15.996-5.018c4.878-3.346 7.409-9.45 7.596-18.31h-.004v-9.85z\\\"/>\"\n    },\n    \"africarxiv\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M166.837 8.01c-9.87-.173-19.5 1.902-28.958 7.65l.009-.026c-4.663 2.837-9.57 6.947-14.223 7.941C108.44 26.837 95.6 35.512 81.107 40.12c-6.894 2.187-10.21 6.407-10.003 13.554c-2.828 5.123-7.292 8.33-12.479 10.78c-4.595 2.162-8.973 4.632-10.341 10.085c-.022.018-.045.034-.067.053C42.813 80.89 37.13 86.97 31.619 96.385l168.968-55.451c-7.31-6.949-14.9-12.83-6.452-23.493c-7.577.515-12.934 4.91-19.317 3.923c3.622-5.39 11.373-4.249 15.514-9.544c-7.997-2.182-15.819-3.676-23.495-3.81zm90.675 33.646c-7.12.442-13.97 1.004-19.879 6.118c-7.02 6.036-14.91 7.751-22.87 1.038c-6.008-5.07-11.863-4.11-18.676-.812c-15.732 7.635-31.869 14.457-47.826 21.604a125887.23 125887.23 0 0 0-111.023 50.03c-11.828 3.868-12.352 4.943-9.632 16.725c1.988 8.602 5.575 17.657-4.518 24.072a6.244 6.244 0 0 0-3.667 5.77c-.01.006-.019.009-.029.013c-2.62 9.154-.423 18.053 1.24 27.044c1.057 5.692 3.704 5.475 8.077 3.397c9.894-4.716 19.933-9.135 29.962-13.553c31.71-13.94 63.426-27.87 95.147-41.79a10.129 10.129 0 0 0 2.647-.242c-1.03.544-1.982 1.19-2.502 2.402l-32.529 19.065l-48.983 24.955c-14.033 2.422-26.204 10.003-39.505 14.304c-8.232 2.656-6.596 5.522-.985 9.217c5.25 6.325 12.985 7.888 20.24 10.346c.01-.006.02-.01.03-.017c5.622 2.636 11.21 5.36 16.895 7.868c5.286 2.35 10.2 3.162 13.417-3.542c1.808-3.804 5.097-4.356 9.036-2.548c6.138 2.86 12.636 2.945 19.206 1.81l-.006.006c.014.001.028 0 .04.002l.033.027l.046-.021c2.49.217 4.949.249 7.11-1.334c2.973 0 5.972-.235 8.909.063c13.987 1.428 28.552-3.326 42.024 4.12c2.558 1.409 4.943-1.382 7.229-2.547a17892.373 17892.373 0 0 0 72.737-37.437c32.167-16.577 64.324-33.151 96.467-49.723c2.756-1.427 9.035-2.05 3.56-7.625v-.046c-3.754-7.561-7.118-15.266-8.45-23.69c.01-.01.018-.02.026-.03c-.425-6.279-2.566-12.034-5.277-17.654c-2.35-4.816-4.996-6.155-10.481-3.715c-12.695 5.656-25.717 10.817-38.728 15.47c-13.012 4.654-25.093 11.963-39.08 13.86c-.014-.002-.028-.002-.042-.005l.007-.004c-.127-2.142 1.806-1.898 2.972-2.548L318.9 73.67c.253-6.443-2.06-12.235-4.518-17.982a.042.042 0 0 1-.015.007l.003-.007c-3.307-8.376-9.107-10.826-17.492-7.474a52.037 52.037 0 0 1-17.892 3.923v-.019l-.044.016l-4.78-.386c-6.723-1.437-10.951-6.976-16.653-10.093zm101.581 109.007c-1.563.094-3.33.75-5.414 1.844c-25.445 13.346-51.116 26.256-76.714 39.295c-30.08 15.36-60.206 30.559-90.177 46.082c-1.888.967-7.19.76-4.66 5.485c3.304 6.15 2.303 12.651 2.473 19.099c-.003 0-.006.003-.009.004v.026c-.072 3.16-.137 6.316-.197 9.47a33.432 33.432 0 0 0 5.421 14.124l.032.007l-.023.01l3.659 4.871l8.575 10.734c1.464 9.984 6.55 10.092 15.135 7.156c31.119-10.662 62.546-20.457 93.855-30.577l1.807 1.862a13.228 13.228 0 0 0 .025-.004l-34.125 16.15c-5.684 1.518-10.843 4.175-15.949 7.057a4.093 4.093 0 0 0-3.866 1.807a327.662 327.662 0 0 0-39.532 17.764a.904.904 0 0 0-1.184.397a13.048 13.048 0 0 0-7.382 3.334c-4.744 1.066-10.076 2.612-9.823 8.268c.632 14.14-4.274 26.997-7.924 40.188l-.009.003a11.015 11.015 0 0 0 1.112 12.56c2.783 3.334 6.478-.597 9.532-1.708a32126.206 32126.206 0 0 0 138.935-50.736c6.117-2.241 13.967-3.235 17.681-7.617c3.994-4.726-1.41-12.343-.994-18.822c.522-2.78 1.053-5.56 1.575-8.35c.002-.004.003-.006.008-.008c2.783-8.556 9.596-14.855 13.075-23.023l15.867-22.046c3.37-7.228 11.637-9.506 16.028-15.713l-.205.07l.16-.088c9.442-5.792 13.48-15.605 20.13-25.815l-42.936 13.191c-2.432.16-4.826.517-7.199.976a11.1 11.1 0 0 0 3.251-2.846c2.639-1.265 5.304-2.502 7.924-3.812c13.825-6.903 28.996-10.925 42.007-19.563a1.581 1.581 0 0 1-.903-.515c.298.162.596.325.903.515c1.256-3.768.786-7.6.073-11.332l.026.055c-1.012-5.286-3.334-7.997-9.035-4.184a28.499 28.499 0 0 1-12.135 4.98a46.182 46.182 0 0 1-.034.021a.14.14 0 0 1 .008-.04c-7.924-.597-16.102-.442-21.541-7.878h.026c-2.548-3.497-5.258-.977-7.842.053a46052.414 46052.414 0 0 0-59.899 24.117c-1.498.139-2.93.48-4.333.923c.857-.83 1.609-1.764 2.12-2.938a13397.233 13397.233 0 0 0 43.262-22.535c6.28-3.289 16.545-5.656 17.738-10.3c1.554-6.019-8.196-10.962-11.747-17.287c-1.987-3.518-4.025-4.918-6.63-4.761zm2.614 185.677c-.869-.058-1.986.193-3.42.783a35619.937 35619.937 0 0 1-151.43 62.094c-3.858 1.609-4.69 3.018-2.71 7.03c4.824 9.757 9.26 19.722 11.746 30.41a14.114 14.114 0 0 1-.018.003h.018v.012c.298 2.936 1.012 5.91.822 8.82c-.452 6.732.768 8.8 8.087 5.547c33.486-14.91 67.334-28.987 100.811-43.905c14.25-6.352 23.954-17.637 29.908-32.094a21.939 21.939 0 0 0-.034.003c.008-.003.011-.007.019-.015c8.638-9.885 9.985-21.703 9.036-34.118c-.218-2.82-.922-4.445-2.833-4.571zm55.596 18.477c-4.025.03-6.658 4.19-8.524 7.913c-1.668 3.317-2.876 6.868-4.29 10.32l-.012.011c-2.475 5.105-4.455 9.667-12.307 8.42c-5.521-.877-13.093 3.506-12.56 8.737c1.102 10.924-6.207 20.277-3.966 30.939c.862.791 1.701 1.09 2.527 1.112c-.997.604-1.928 1.327-2.717 2.304c-1.392 5.304-2.91 10.59-1.437 16.146c.008 0 .015-.003.027-.003c4.302 9.476 7.533 10.682 16.829 8.028c11.26-3.23 11.214-12.821 13.077-21.477c1.706-4.434 2.96-8.914 2.446-14.196l-16.265 4.933l-.01.045c-1.279.48-2.74.116-4.023.648c.83-.661 1.567-1.436 2.125-2.428c2.765-1.618 5.393-3.577 8.33-4.806c20.357-8.466 23.656-26.312 25.183-45.178c.09-4.04 2.891-9.678-2.62-11.214a6.52 6.52 0 0 0-1.813-.252zM325.55 413.99c-34.255 17.683-66.981 34.942-100.106 51.396c-8.512 4.238-10.012 8.846-5.63 16.482c1.86 6.9 6.7 11.243 12.641 14.658v.008l.006-.002c.001 0 .003 0 .004.002l.018.003c2.203 2.957 5.308 4.11 8.81 4.488c12.406 7.319 27.215.713 34.037-15.19c8.675-4.915 17.295-10.029 26.042-14.854c5.617-3.098 9.575-6.928 8.243-13.979c.003-.003.003-.008.007-.011c1.672-4.635 7.654-5.792 8.792-10.843c-1.02-10.906 8.176-19.879 7.146-32.14z\\\"/>\"\n    },\n    \"africarxiv-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm139.121 64.006c4.952.087 9.999 1.051 15.158 2.459c-2.671 3.416-7.673 2.678-10.01 6.156c4.119.637 7.575-2.197 12.463-2.53c-5.45 6.88-.554 10.674 4.163 15.157L99.883 153.023c3.556-6.074 7.223-9.997 10.709-14.06l.043-.035c.883-3.519 3.707-5.11 6.672-6.506c3.346-1.58 6.226-3.65 8.05-6.955c-.134-4.611 2.006-7.334 6.454-8.744c9.35-2.973 17.634-8.57 27.457-10.674c3.002-.641 6.167-3.293 9.175-5.123l-.006.015c6.103-3.708 12.317-5.047 18.684-4.935zm58.498 21.707h.002c3.678 2.011 6.406 5.585 10.742 6.512l3.084.25l.028-.012v.014a33.572 33.572 0 0 0 11.543-2.532c5.41-2.162 9.153-.583 11.287 4.82a.015.015 0 0 1-.002.006l.008-.005c1.585 3.707 3.079 7.445 2.916 11.601l-44.53 24.793c-.752.42-2 .263-1.918 1.645l-.004.002l.028.004c9.024-1.225 16.818-5.94 25.213-8.942c8.394-3.002 16.796-6.333 24.986-9.982c3.538-1.574 5.246-.709 6.762 2.398c1.749 3.626 3.13 7.337 3.404 11.389a.126.126 0 0 1-.018.02c.86 5.435 3.03 10.405 5.452 15.283v.029c3.532 3.597-.517 3.999-2.295 4.92a445703.092 445703.092 0 0 1-62.239 32.08a11630.136 11630.136 0 0 1-46.925 24.152c-1.475.752-3.015 2.552-4.664 1.643c-8.692-4.804-18.09-1.735-27.114-2.656c-1.894-.193-3.83-.041-5.748-.041c-1.394 1.02-2.98.999-4.586.859l-.03.014l-.02-.016l-.026-.002l.004-.004c-4.24.732-8.433.678-12.393-1.168c-2.541-1.166-4.662-.81-5.828 1.645c-2.075 4.325-5.246 3.8-8.656 2.285c-3.668-1.619-7.273-3.376-10.9-5.076c-.007.003-.014.005-.02.01c-4.681-1.586-9.672-2.594-13.058-6.674c-3.62-2.385-4.674-4.234.636-5.948c8.581-2.775 16.433-7.666 25.487-9.228l31.601-16.1l20.986-12.3c.336-.782.95-1.198 1.616-1.55a6.535 6.535 0 0 1-1.71.157c-20.465 8.981-40.927 17.968-61.384 26.96c-6.47 2.851-12.947 5.702-19.33 8.745c-2.822 1.34-4.529 1.481-5.211-2.192c-1.073-5.8-2.49-11.542-.799-17.447l.018-.008a4.028 4.028 0 0 1 2.365-3.724c6.511-4.14 4.198-9.98 2.916-15.53c-1.755-7.601-1.418-8.295 6.213-10.79a80080.777 80080.777 0 0 1 71.629-32.278c10.295-4.611 20.706-9.011 30.855-13.937c4.396-2.128 8.172-2.747 12.049.523c5.136 4.331 10.224 3.224 14.754-.67c3.812-3.299 8.231-3.661 12.824-3.947zm65.537 70.328h.002c1.68-.101 2.995.802 4.278 3.072c2.29 4.08 8.58 7.27 7.578 11.153c-.77 2.996-7.392 4.522-11.444 6.644a8607.79 8607.79 0 0 1-27.912 14.54c-.33.757-.814 1.36-1.367 1.896c.904-.286 1.829-.507 2.795-.596a29702.67 29702.67 0 0 1 38.644-15.56c1.668-.665 3.417-2.29 5.061-.034h-.018c3.51 4.798 8.784 4.698 13.897 5.082c-.003.01-.003.017-.004.026a29.795 29.795 0 0 0 .022-.014a18.386 18.386 0 0 0 7.83-3.213c3.678-2.46 5.175-.71 5.828 2.7l-.018-.036c.46 2.408.764 4.88-.047 7.31c-8.394 5.574-18.18 8.168-27.1 12.622c-1.69.845-3.41 1.645-5.113 2.46a7.16 7.16 0 0 1-2.097 1.837c1.53-.297 3.075-.527 4.644-.63l27.701-8.51c-4.29 6.586-6.896 12.917-12.988 16.653l-.101.059l.13-.047c-2.833 4.005-8.165 5.475-10.34 10.139l-10.236 14.222c-2.244 5.27-6.64 9.333-8.435 14.854a.016.016 0 0 0-.006.006c-.337 1.8-.679 3.592-1.016 5.387c-.268 4.18 3.217 9.093.64 12.142c-2.395 2.827-7.459 3.468-11.405 4.914a20727.226 20727.226 0 0 1-89.637 32.735c-1.97.717-4.353 3.252-6.149 1.101a7.106 7.106 0 0 1-.716-8.103l.006-.002c2.354-8.51 5.519-16.806 5.11-25.928c-.162-3.65 3.278-4.646 6.339-5.334a8.418 8.418 0 0 1 4.761-2.15a.583.583 0 0 1 .766-.256a211.395 211.395 0 0 1 25.504-11.461a2.64 2.64 0 0 1 2.494-1.166c3.294-1.86 6.622-3.574 10.29-4.553l22.015-10.42a8.534 8.534 0 0 1-.016.004l-1.166-1.201c-20.199 6.529-40.474 12.848-60.55 19.726c-5.539 1.895-8.822 1.825-9.766-4.617l-5.531-6.926l-2.362-3.142l.016-.006l-.022-.006a21.57 21.57 0 0 1-3.498-9.111c.039-2.035.083-4.071.13-6.11v-.017c.001-.001.003-.004.005-.004c-.11-4.16.537-8.353-1.596-12.32c-1.632-3.05 1.788-2.916 3.006-3.54c19.337-10.015 38.773-19.82 58.18-29.73c16.515-8.412 33.076-16.741 49.492-25.352c1.345-.706 2.484-1.128 3.492-1.189zm45.125 32.97a12.15 12.15 0 0 0-.582-.331a1.02 1.02 0 0 0 .582.332zm-43.437 86.821h.002c1.232.081 1.686 1.13 1.826 2.95c.612 8.009-.257 15.634-5.83 22.011c-.005.004-.007.008-.012.01a14.154 14.154 0 0 1 .022-.004c-3.842 9.327-10.102 16.609-19.295 20.707c-21.599 9.624-43.435 18.707-65.04 28.326c-4.721 2.099-5.508.763-5.216-3.58c.122-1.877-.34-3.795-.531-5.69v-.007h-.012a9.106 9.106 0 0 0 .012-.002c-1.604-6.896-4.466-13.324-7.579-19.62c-1.276-2.588-.74-3.497 1.748-4.535a22980.483 22980.483 0 0 0 97.698-40.06c.925-.38 1.646-.543 2.207-.506zm35.867 11.922h.002a4.2 4.2 0 0 1 1.168.164c3.556.991 1.75 4.629 1.691 7.234c-.985 12.172-3.114 23.685-16.248 29.147c-1.894.793-3.589 2.058-5.373 3.101c-.36.64-.836 1.14-1.37 1.567c.827-.344 1.77-.109 2.595-.418l.006-.03l10.494-3.183c.332 3.408-.478 6.3-1.578 9.16c-1.202 5.584-1.173 11.772-8.438 13.856c-5.997 1.711-8.082.933-10.857-5.18l-.018.002c-.95-3.585.03-6.994.928-10.416c.51-.63 1.108-1.097 1.752-1.487c-.533-.014-1.073-.208-1.63-.718c-1.445-6.88 3.27-12.911 2.56-19.96c-.344-3.375 4.54-6.203 8.101-5.638c5.066.805 6.344-2.138 7.942-5.432l.007-.005c.913-2.228 1.692-4.52 2.768-6.66c1.204-2.403 2.901-5.084 5.498-5.104zm-59.195 38.176l.007.011c.665 7.911-5.268 13.699-4.609 20.735c-.734 3.258-4.595 4.005-5.674 6.996c-.003.002-.002.006-.004.008c.86 4.549-1.694 7.019-5.318 9.017c-5.643 3.113-11.204 6.413-16.8 9.584c-4.402 10.26-13.956 14.521-21.96 9.8c-2.26-.245-4.262-.988-5.683-2.895l-.012-.002a.028.028 0 0 1-.004-.002l-.004.002v-.006c-3.833-2.203-6.956-5.006-8.156-9.457c-2.827-4.926-1.859-7.9 3.633-10.633c21.37-10.616 42.484-21.75 64.584-33.158z\\\"/>\"\n    },\n    \"archive\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M393.674 430.14V448H54.326l.004-17.86zm-13.395-26.791v22.325H67.721V403.35zM100.452 162.233l3.726 1.883l1.864 30.11l1.865 48.928v47.055l-1.865 58.656l-.31 39.515l-5.28 1.573H81.816l-5.59-1.573l-2.172-39.515l-1.868-58.343v-47.051l1.868-49.244l1.704-30.273l3.887-1.721zm267.909 0l3.73 1.883l1.861 30.11l1.862 48.928v47.055l-1.862 58.656l-.306 39.515l-5.285 1.573h-18.636l-5.592-1.573l-2.179-39.515l-1.861-58.343v-47.051l1.861-49.244l1.712-30.273l3.884-1.721zm-187.538 0l3.726 1.883l1.865 30.11l1.865 48.928v47.055l-1.865 58.656l-.307 39.515l-5.284 1.573h-18.638l-5.594-1.573l-2.172-39.515l-1.86-58.343v-47.051l1.86-49.244l1.712-30.273l3.88-1.721zm102.698 0l3.726 1.883l1.865 30.11l1.865 48.928v47.055l-1.865 58.656l-.307 39.515l-5.284 1.573h-18.638l-5.59-1.573l-2.176-39.515l-1.861-58.343v-47.051l1.861-49.244l1.712-30.273l3.883-1.721zm96.758-40.186v31.255H67.721v-31.255ZM220.785 64l163.96 37.546l-6.574 11.57H64.15l-9.823-9.383z\\\"/>\"\n    },\n    \"archive-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm173.32 64l136.633 31.29l-5.476 9.64H90.79l-8.186-7.819L221.32 96zM93.768 144.373h260.464v26.045H93.768v-26.045zm9.935 33.488h17.34l3.105 1.569l1.553 25.091l1.555 40.774v39.213l-1.555 48.879l-.258 32.93l-4.4 1.31h-15.53l-4.658-1.31l-1.81-32.93l-1.557-48.62V245.56l1.557-41.038l1.42-25.226l3.238-1.434zm66.973 0h17.344l3.105 1.569l1.553 25.091l1.554 40.774v39.213l-1.554 48.879l-.254 32.93l-4.404 1.31h-15.532l-4.662-1.31l-1.81-32.93l-1.551-48.62V245.56l1.55-41.038l1.428-25.226l3.233-1.434zm85.584 0h17.342l3.103 1.569l1.555 25.091l1.554 40.774v39.213l-1.554 48.879l-.256 32.93l-4.402 1.31h-15.534l-4.658-1.31l-1.812-32.93l-1.551-48.62V245.56l1.55-41.038l1.426-25.226l3.237-1.434zm70.697 0h17.344l3.11 1.569l1.55 25.091l1.55 40.774v39.213l-1.55 48.879l-.256 32.93l-4.404 1.31h-15.53l-4.66-1.31l-1.816-32.93l-1.55-48.62V245.56l1.55-41.038l1.428-25.226l3.234-1.434zm-233.19 200.93h260.465v18.604H93.768V378.79zm-11.16 22.326h282.788V416H82.605l.002-14.883z\\\"/>\"\n    },\n    \"arxiv\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M62.258 8.006a22.216 22.216 0 0 0-20.929 13.448c-3.404 8.169-.96 13.898 6.506 24.59c10.935 16.09 122.178 149.673 122.178 149.673l-24.619 23.038c-20.74 20.735-21.632 48.566-2.34 67.852l28.663 27.3l-79.976 98.235c-6.21 6.614-10.053 18.221-6.585 26.552a22.697 22.697 0 0 0 21.21 14.06a20.227 20.227 0 0 0 15.249-7.536l95.122-88.437L363.33 496.39a27.141 27.141 0 0 0 18.418 7.61a25.26 25.26 0 0 0 7.335-1.108a27.658 27.658 0 0 0 18.4-18.99a25.606 25.606 0 0 0-6.481-23.69L272.219 305.195l23.062-21.443c17.198-15.504 17.29-42.455.197-58.076l-25.257-24.228L357.417 98.46l.115-.133l.103-.14c7.793-10.123 11.52-17.92 7.502-27.806a36.169 36.169 0 0 0-23.647-18.37a24.07 24.07 0 0 0-3.166-.212l-.006.018a28.524 28.524 0 0 0-18.252 8.123l-.203.166l-.19.173L218.6 151.925L79.261 18.253S70.995 8.213 62.258 8.006zm276.06 51.214c.742.003 1.484.051 2.22.148a29.306 29.306 0 0 1 17.719 13.81c2.246 5.523 1.554 10.01-6.506 20.484L264.861 196.3l-40.882-39.22l100.68-91.304a21.77 21.77 0 0 1 13.66-6.536v-.021zM175.077 201.127L395.19 464.872c4.32 5.408 7.02 10.818 5.18 16.914a20.246 20.246 0 0 1-13.463 14.037a17.617 17.617 0 0 1-5.17.784a19.792 19.792 0 0 1-13.293-5.56l-220.15-209.694c-17.317-17.316-14.698-40.33 2.158-57.186z\\\"/>\"\n    },\n    \"arxiv-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm71.65 64.004c5.638.134 10.971 6.611 10.971 6.611l89.897 86.24l65.207-59.126l.123-.112l.13-.107a18.407 18.407 0 0 1 11.776-5.24l.004-.012c.683 0 1.366.046 2.043.137a23.332 23.332 0 0 1 15.256 11.851c2.592 6.378.187 11.409-4.84 17.94l-.067.09l-.074.085l-56.256 66.444l16.295 15.63c11.028 10.078 10.97 27.467-.127 37.47l-14.879 13.833l83.086 100.012a16.519 16.519 0 0 1 4.182 15.283a17.844 17.844 0 0 1-11.871 12.252a16.29 16.29 0 0 1-4.733.715a17.513 17.513 0 0 1-11.882-4.91l-94.577-90.07l-61.369 57.056a13.047 13.047 0 0 1-9.838 4.861a14.642 14.642 0 0 1-13.683-9.07c-2.238-5.375.242-12.863 4.248-17.13l51.598-63.378l-18.493-17.613c-12.446-12.443-11.871-30.397 1.51-43.775l15.883-14.864s-71.77-86.182-78.824-96.562c-4.817-6.898-6.394-10.595-4.198-15.865a14.333 14.333 0 0 1 13.502-8.676zm178.104 33.04v.015a14.043 14.043 0 0 0-8.813 4.216l-64.955 58.907l26.375 25.302l56.059-66.218c5.2-6.758 5.646-9.653 4.197-13.215a18.91 18.91 0 0 0-11.431-8.91a11.387 11.387 0 0 0-1.432-.096zm-105.318 91.554l-15.887 14.865c-10.876 10.875-12.565 25.722-1.393 36.894L317.19 407.643a12.769 12.769 0 0 0 8.577 3.587a11.35 11.35 0 0 0 3.336-.505a13.062 13.062 0 0 0 8.685-9.057c1.188-3.933-.555-7.423-3.342-10.912l-142.01-170.158z\\\"/>\"\n    },\n    \"biorxiv\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M396.317 272.785c7.388-9.691 14.778-17.97 20.564-27.25c15.465-24.803 39.678-64.238 45.3-75.09c2.87-5.807 7.053-9.925 9.695-10.18c2.645-.254 6.02-.346 8.877 1.438c2.857 1.787 5.052 6.099 3.052 14.545c-2.001 8.446-3.15 11.519-5.92 18.026c-16.22 35.495-40.017 66.068-65.032 95.639c-4.719 5.579-4.927 9.664-2.283 15.977c11.289 26.96 21.872 54.211 33.08 81.205c3.727 8.973 8.332 17.61 12.933 26.186c4.65 8.673 7.974 13.257 22.098 13.067c5.82-.02 16.882-1.572 17.818 6.852c1.024 9.207-10.156 10.579-16.82 11.938c-7.521 1.533-11.308 2.119-19.002 2.137c-17.738.038-38.699-6.75-47.382-22.507c-8.889-16.13-13.686-27.892-21.841-49.924c-5.353-14.464-11.365-28.7-17.66-44.791c-3.544 3.804-6.88 6.457-9.043 9.857c-26.847 36.397-42.436 65.84-54.46 86.511c-9.48 16.296-10.274 23.496-21.533 21.144c-10.266-4.196-7.303-17.972-6.495-21.462c4.763-20.569 19.837-40.775 31.583-58.536c13.129-19.853 29.268-37.697 43.654-56.748c2.13-2.82 3.593-8.191 2.382-11.172c-12.898-31.736-26.31-63.268-39.771-94.775c-7.322-15.62-12.301-25.58-41.097-24.497c-4.763-.433-7.652-1.688-7.574-7.187c0-6.67 4.503-9.037 7.803-10.016c32.536-9.655 65.227-6.812 82.16 29.56c10.49 22.527 19.777 45.611 29.629 68.437c1.449 3.346 3.019 6.638 5.286 11.615zM15.435 356.443c7.568-5.679 12.84-11.083 15.82-16.224c2.973-5.134 4.462-11.356 4.462-18.657V101.316c0-6.217-1.275-12.301-3.82-18.253a196.834 196.834 0 0 0-5.099-7.706C25.101 72.923 21.99 69.14 17.464 64h100.59c32.715 0 58.338 6.63 76.864 19.875c18.517 13.253 27.783 31.638 27.783 55.164c0 18.391-6.225 33.805-18.658 46.239c-7.035 7.034-13.93 12.168-20.687 15.412c-6.762 3.245-17.44 6.63-32.043 10.14l27.174 36.098c5.68 7.574 13.385 16.902 23.12 27.988c10.812 12.169 22.441 24.608 34.882 37.316c11.084 11.63 19.805 20.08 26.162 25.35c6.35 5.274 16.022 11.561 29.002 18.86h-65.707c-10.82 0-22.449-6.217-34.884-18.658c-14.602-14.869-29.475-33.12-44.616-54.757c-10.279-13.79-19.336-26.498-27.176-38.127c-6.223-9.19-15.148-23.12-26.771-41.779c50.836-7.028 76.254-26.77 76.254-59.219c0-30.281-21.497-45.427-64.492-45.427h-16.22v222.219c0 7.858 1.419 14.223 4.258 19.097c2.839 4.879 8.316 10.432 16.428 16.655H15.436Z\\\"/>\",\n      \"width\": 512\n    },\n    \"biorxiv-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zM25.22 96h83.825c27.262 0 48.615 5.525 64.053 16.563c15.43 11.044 23.152 26.366 23.152 45.97c0 15.326-5.186 28.17-15.547 38.531c-5.862 5.863-11.61 10.141-17.24 12.844c-5.635 2.705-14.534 5.524-26.703 8.45l22.646 30.081c4.733 6.312 11.153 14.086 19.266 23.325c9.01 10.14 18.7 20.505 29.068 31.095c9.237 9.691 16.505 16.733 21.803 21.125c5.292 4.396 13.35 9.635 24.168 15.717h-54.756c-9.016 0-18.708-5.181-29.07-15.549c-12.169-12.39-24.562-27.598-37.18-45.629c-8.565-11.491-16.113-22.082-22.646-31.773c-5.186-7.658-12.623-19.268-22.309-34.816c42.363-5.858 63.543-22.308 63.543-49.348c0-25.234-17.913-37.857-53.742-37.857H84.033v185.183c0 6.549 1.183 11.853 3.549 15.914c2.366 4.066 6.93 8.693 13.691 13.88H23.53v-.003c6.307-4.733 10.701-9.236 13.184-13.52c2.478-4.278 3.719-9.464 3.719-15.548v-183.54c0-5.18-1.064-10.248-3.186-15.208a164.444 164.444 0 0 0-4.248-6.422c-1.415-2.028-4.006-5.182-7.777-9.465zm243.202 78.688c17.806.12 33.712 7.751 43.414 28.59c8.74 18.772 16.48 38.009 24.69 57.03c1.207 2.789 2.516 5.53 4.406 9.678c6.156-8.075 12.315-14.974 17.136-22.707c12.887-20.668 33.064-53.531 37.75-62.574c2.39-4.84 5.877-8.272 8.078-8.484c2.204-.212 5.018-.288 7.399 1.199c2.38 1.489 4.21 5.08 2.543 12.12c-1.667 7.037-2.625 9.6-4.934 15.023c-13.517 29.579-33.347 55.054-54.193 79.697c-3.933 4.65-4.106 8.054-1.902 13.314c9.407 22.466 18.225 45.177 27.566 67.672c3.106 7.477 6.943 14.675 10.777 21.822c3.876 7.227 6.645 11.048 18.414 10.889c4.85-.016 14.07-1.31 14.85 5.709c.854 7.673-8.463 8.817-14.016 9.95c-6.268 1.277-9.424 1.765-15.836 1.78c-14.78.032-32.248-5.625-39.484-18.755c-7.407-13.442-11.405-23.244-18.201-41.604c-4.46-12.053-9.47-23.916-14.717-37.326c-2.954 3.17-5.734 5.38-7.537 8.213c-22.372 30.331-35.362 54.868-45.383 72.094c-7.9 13.58-8.561 19.578-17.943 17.619c-8.555-3.497-6.086-14.977-5.412-17.885c3.969-17.14 16.53-33.978 26.318-48.78c10.941-16.543 24.39-31.413 36.379-47.288c1.774-2.351 2.993-6.827 1.984-9.311c-10.748-26.447-21.924-52.725-33.142-78.98c-6.101-13.017-10.252-21.317-34.248-20.414c-3.97-.361-6.376-1.406-6.31-5.989c0-5.558 3.751-7.532 6.501-8.347c8.473-2.515 16.96-4.01 25.053-3.956z\\\"/>\"\n    },\n    \"ceur\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M128 384V128h64V64H64v384h192v-64ZM384 64H256v64h128v256h-64v64h128V64Z\\\"/>\",\n      \"width\": 512\n    },\n    \"ceur-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm16 64h106.668v53.334h-53.334v213.332H224V416H64V96zm160 0h160v320H277.332v-53.334h53.334V149.334H224V96z\\\"/>\"\n    },\n    \"ciencia-vitae\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M129.058 134.923L8 256l121.058 121.077l38.084-39.056L86.112 256l82.002-82.021Zm252.892 9.764a36.127 36.127 0 0 0-36.12 36.119a36.127 36.127 0 0 0 36.12 36.138a36.127 36.127 0 0 0 36.138-36.138a36.127 36.127 0 0 0-36.138-36.12zm-81.03 62.493l-38.083 39.056l120.085 121.077L504 246.236l-39.056-39.056l-82.022 82.021Zm-106.432 11.71a36.127 36.127 0 0 0-36.138 36.137a36.127 36.127 0 0 0 36.138 36.12a36.127 36.127 0 0 0 36.12-36.12a36.127 36.127 0 0 0-36.12-36.138z\\\"/>\",\n      \"width\": 512\n    },\n    \"ciencia-vitae-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm94.102 145.885l25.197 25.197L114.395 256l52.277 52.918l-24.57 25.197L64 256l78.102-78.115zm163.156 6.3a23.308 23.308 0 0 1 23.314 23.303a23.308 23.308 0 0 1-23.314 23.315a23.308 23.308 0 0 1-23.303-23.315a23.308 23.308 0 0 1 23.303-23.302zm-52.278 40.319l52.905 52.916l52.918-52.916L384 249.7l-78.115 78.113L228.41 249.7l24.57-25.197zm-68.666 7.553a23.308 23.308 0 0 1 23.303 23.316a23.308 23.308 0 0 1-23.303 23.303A23.308 23.308 0 0 1 161 255.373a23.308 23.308 0 0 1 23.314-23.316z\\\"/>\"\n    },\n    \"clarivate\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M235.356 8c-23.395 34.2-42.165 71.945-55.671 112.052c95.807 17.871 182.582 72.861 244.512 155c24.909-32.93 45.345-69.623 60.709-108.952C417.089 88.47 330.554 33.645 235.356 8Zm188.841 267.052c-61.93 70.41-148.71 117.578-244.512 132.912c13.582 34.382 32.388 66.745 55.864 96.036c95.105-22.017 181.595-69.006 249.357-135.496c-15.367-33.721-35.794-65.217-60.709-93.452ZM98.633 122.506c-16.252.199-32.456 1.151-48.632 2.97c-30.518 97.686-30.544 201.453-.066 299.15a486.068 486.068 0 0 0 129.748-2.84c-32.985-81.874-37.502-171.274-12.981-255.686a408.458 408.458 0 0 1 12.916-37.781c-26.776-4.205-53.9-6.126-80.987-5.813z\\\"/>\",\n      \"width\": 512\n    },\n    \"clarivate-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm162.682 64c61.418 16.545 117.247 51.916 161 102c-9.912 25.374-23.098 49.046-39.168 70.291c16.073 18.216 29.254 38.537 39.168 60.293c-43.717 42.897-99.517 73.212-160.875 87.416c-15.147-18.897-27.28-39.778-36.043-61.959c61.808-9.893 117.795-40.325 157.75-85.75c-39.955-52.993-95.939-88.47-157.75-100c8.713-25.876 20.824-50.226 35.918-72.291zm-88.211 73.875h.002a313.607 313.607 0 0 1 52.248 3.75A263.518 263.518 0 0 0 166.389 198c-15.82 54.459-12.906 112.137 8.375 164.959a313.599 313.599 0 0 1-83.71 1.832c-19.663-63.03-19.646-129.976.044-193c10.435-1.173 20.888-1.788 31.373-1.916z\\\"/>\"\n    },\n    \"closed-access\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M128.235 64c-56.61 0-102.673 46.06-102.673 102.673v95.804C13.768 281.153 6.93 303.257 6.93 326.932C6.93 393.682 61.248 448 128 448c66.755 0 121.068-54.317 121.068-121.068c0-23.36-6.657-45.191-18.163-63.71v-96.55C230.906 110.06 184.846 64 128.235 64zm0 41.117c33.937 0 61.552 27.613 61.552 61.556v56.182c-18.1-10.786-39.23-16.993-61.785-16.993c-22.363 0-43.325 6.103-61.322 16.719v-55.908c0-33.943 27.617-61.556 61.555-61.556zM128 246.981c44.084 0 79.947 35.865 79.947 79.951c0 44.082-35.864 79.954-79.947 79.954c-44.084 0-79.953-35.872-79.953-79.954c0-44.086 35.869-79.95 79.953-79.95zm.395 46.388c-18.734 0-33.922 15.188-33.922 33.93c0 18.73 15.188 33.917 33.922 33.917c18.736 0 33.922-15.186 33.922-33.917c0-18.742-15.186-33.93-33.922-33.93z\\\"/>\",\n      \"width\": 256\n    },\n    \"closed-access-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176.195 64c47.176 0 85.559 38.383 85.559 85.56v80.46c9.589 15.431 15.137 33.624 15.137 53.091C324.89 370.736 279.63 416 224 416c-55.627 0-100.892-45.264-100.892-100.889c0-19.728 5.698-38.15 15.526-53.715v-79.835c0-47.178 38.386-85.561 85.56-85.561zm0 34.264c-28.281 0-51.295 23.011-51.295 51.297v46.59c14.998-8.848 32.467-13.932 51.102-13.932c18.796 0 36.405 5.171 51.488 14.16V181.56c0-28.286-23.013-51.297-51.295-51.297zm-.193 118.22c-36.737 0-66.629 29.889-66.629 66.627c0 36.735 29.892 66.627 66.629 66.627c36.736 0 66.621-29.892 66.621-66.627c0-36.738-29.885-66.627-66.621-66.627zm.328 38.657c15.613 0 28.268 12.657 28.268 28.275c0 15.61-12.655 28.264-28.268 28.264c-15.612 0-28.268-12.655-28.268-28.264c0-15.618 12.656-28.275 28.268-28.275z\\\"/>\"\n    },\n    \"conversation\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M324.199 96H215.277c-84.567 0-154.25 69.683-154.25 154.25v6.088c0 30.444 9.472 58.182 25.709 83.214L5.552 416l118.393-37.21c25.708 19.62 58.182 30.445 92.685 30.445h107.569c85.92 0 154.25-69.683 154.25-152.897v-6.089C478.448 165.683 408.764 96 324.198 96ZM406 276c0 46.68-35.234 75.67-81.238 75.67H213.134C166.454 351.67 132 322.68 132 276v-40c0-46.68 34.453-81.201 81.134-81.201h111.628c46.68 0 81.238 34.52 81.238 81.201Z\\\" class=\\\"st1\\\"/>\",\n      \"width\": 484\n    },\n    \"conversation-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm157.918 115.73h73.705C336.848 147.73 384 194.885 384 252.11v4.119c0 56.309-46.237 103.462-104.377 103.462h-72.791c-23.348 0-45.32-7.325-62.717-20.601L64 364.27l54.936-51.733c-10.988-16.938-17.397-35.708-17.397-56.308v-4.12c0-57.224 47.154-104.379 104.379-104.379zm-1.451 39.79c-31.588 0-54.903 23.359-54.903 54.947v27.066c0 31.588 23.315 51.205 54.903 51.205h75.537c31.13 0 54.973-19.617 54.973-51.205v-27.066c0-31.588-23.385-54.947-54.973-54.947h-75.537z\\\"/>\"\n    },\n    \"coursera\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M503.86 251.974a165.971 165.971 0 0 0-.37-5.77v-.067c-1.845-20.917-8.756-40.492-20.48-58.172a127.018 127.018 0 0 0-17.916-21.47c-9.78-9.41-21.102-17.195-33.866-23.35c-19.207-9.175-40.426-13.805-63.07-13.805c-2.214 0-4.528.033-6.862.118c-15.903.721-31.282 3.74-45.743 9.058c-14.576 5.264-27.275 12.224-37.658 20.577c-2.114 1.679-4.412 3.74-6.878 6.006l-1.777 1.745l-2.432 2.583h.033l-1.14 1.124l-.555.603l-2.901 3.053a202.684 202.684 0 0 0-6.105 7.196l-.017-.033l-.066-.066c-3.976 4.831-7.648 9.829-10.35 14.326a246.474 246.474 0 0 0-5.334 8.822l-23.702 47.923l.033.033l-1.242 2.433l-2.616 5.3c-5.2 10.518-10.77 21.002-16.992 29.657c-13.872 15.215-29.555 22.663-49.72 22.663a75.83 75.83 0 0 1-4.327-.151c-12.144-.485-22.562-3.354-31.804-8.822a58.448 58.448 0 0 1-2.869-1.813c-7.547-5.015-13.336-11.457-17.663-19.49c-4.882-9.108-7.046-18.418-6.744-28.282c.015-.269.033-.505.033-.722c.655-15.7 6.642-27.911 18.703-38.462c2.935-2.534 6.006-4.68 9.209-6.592a26.267 26.267 0 0 1 1.358-.755c8.957-4.881 19.156-7.314 30.847-7.314l3.64.101c18.568.705 32.894 6.508 44.317 17.831l35.83-64.328c-8.573-5.737-18.251-10.668-28.92-14.678c-.402-.15-.822-.318-1.241-.452c-1.275-.453-2.534-.922-3.842-1.341c-11.34-3.79-23.234-6.124-35.478-7.18c-.296-.054-.63-.087-.932-.122c-1.879-.115-3.793-.351-5.67-.436a183.291 183.291 0 0 0-6.124-.134h-1.158c-22.526.085-43.462 4.697-62.6 13.84C59.26 153.492 41.882 168.538 29 187.93c-12.848 19.391-19.86 40.911-20.867 64.01c-.083 1.98-.133 3.94-.133 5.871c-.015 32.308 11.76 60.722 35.176 84.575c24.44 25.027 56.228 38.515 94.388 40.108c2.45.1 4.865.167 7.28.167c21.59 0 41.567-3.842 59.48-11.523c4.48-1.912 8.823-4.16 13.269-6.659a95.7 95.7 0 0 0 6.96-4.446l1.678-1.124l2.82-1.928c3.389-2.432 6.559-5.065 9.644-7.868l1.073-1.022c1.812-1.728 3.623-3.472 5.334-5.268l6.425-7.262l2.45-3.07l1.14-1.678l1.141-1.643c9.544-16.035 40.61-74.393 40.61-74.393v-.117l1.845-3.557l1.544-2.784c4.58-8.336 7.884-14.258 12.262-20.48l.117-.183c10.215-14.812 27.778-25.362 48.478-27.142c34.722-2.986 65.15 19.828 67.951 50.96c2.784 31.132-23.115 58.794-57.837 61.797c-7.23.62-14.258.134-20.883-1.325l-.168.066c-25.48-5.301-41.7-23.886-49.702-32.19l-33.414 61.444s10.382 10.467 17.496 15.7c7.13 5.216 16.339 10.35 23.686 13.536c17.831 7.616 37.223 12.18 58.643 12.18c2.482 0 1.98 0 4.563-.102c38.128-1.593 72.112-16.205 96.62-41.232c23.215-23.768 35.813-50.91 35.931-83.031v-.957a207.66 207.66 0 0 0-.138-5.386z\\\"/>\",\n      \"width\": 512\n    },\n    \"coursera-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm103.29 142.27h.747c1.299.01 2.63.033 3.95.087c1.211.055 2.448.207 3.66.282c.194.022.408.043.6.078c7.899.681 15.574 2.187 22.89 4.633c.844.27 1.656.573 2.478.865c.27.087.541.194.801.29c6.883 2.588 13.126 5.768 18.656 9.47l-23.115 41.504c-7.37-7.306-16.612-11.05-28.592-11.504l-2.347-.067c-7.543 0-14.124 1.57-19.903 4.719a16.947 16.947 0 0 0-.875.486c-2.066 1.234-4.048 2.62-5.941 4.254c-7.781 6.807-11.644 14.686-12.067 24.815c0 .14-.012.291-.021.464c-.195 6.365 1.202 12.37 4.352 18.247c2.791 5.182 6.525 9.34 11.394 12.576a37.708 37.708 0 0 0 1.852 1.168c5.962 3.527 12.683 5.378 20.517 5.691c.952.055 1.884.098 2.793.098c13.01 0 23.127-4.805 32.076-14.621c4.015-5.584 7.609-12.348 10.963-19.133l1.688-3.42l.802-1.568l-.021-.022l15.291-30.918a159.015 159.015 0 0 1 3.441-5.693c1.743-2.902 4.113-6.125 6.678-9.242l.043.043l.01.021a130.803 130.803 0 0 1 3.94-4.643l1.87-1.968l.358-.39l.736-.726h-.021l1.568-1.666l1.148-1.126c1.591-1.462 3.072-2.79 4.436-3.874c6.698-5.389 14.893-9.88 24.297-13.277c9.33-3.43 19.252-5.378 29.512-5.844c1.505-.054 2.997-.076 4.425-.076c14.61 0 28.3 2.988 40.692 8.908c8.235 3.971 15.54 8.992 21.85 15.063a81.945 81.945 0 0 1 11.558 13.851c7.564 11.407 12.022 24.037 13.213 37.532v.043c.097 1.244.183 2.466.238 3.722a133.974 133.974 0 0 1 .09 3.475v.617c-.076 20.724-8.204 38.234-23.182 53.568c-15.811 16.147-37.737 25.574-62.336 26.602c-1.666.065-1.342.066-2.943.066c-13.82 0-26.33-2.944-37.834-7.857c-4.74-2.056-10.681-5.369-15.281-8.734c-4.59-3.376-11.287-10.13-11.287-10.13l21.556-39.64c5.163 5.358 15.628 17.347 32.067 20.768l.107-.043c4.275.941 8.809 1.255 13.473.855c22.401-1.937 39.11-19.784 37.314-39.869c-1.807-20.085-21.438-34.804-43.84-32.877c-13.354 1.148-24.684 7.954-31.275 17.51l-.076.119c-2.824 4.014-4.956 7.834-7.91 13.213l-.996 1.795l-1.19 2.295v.076s-20.044 37.65-26.201 47.996l-.736 1.059l-.737 1.084l-1.58 1.98l-4.144 4.684c-1.104 1.158-2.272 2.286-3.442 3.4l-.691.658c-1.99 1.808-4.036 3.507-6.223 5.076l-1.818 1.245l-1.084.726a61.721 61.721 0 0 1-4.49 2.867c-2.868 1.612-5.67 3.064-8.559 4.297c-11.557 4.956-24.447 7.434-38.375 7.434c-1.558 0-3.117-.043-4.697-.108c-24.62-1.027-45.127-9.73-60.895-25.877c-15.108-15.389-22.704-33.72-22.695-54.564c0-1.245.031-2.51.086-3.787c.65-14.903 5.174-28.786 13.463-41.297c8.31-12.51 19.523-22.218 33.353-28.885c12.348-5.898 25.854-8.875 40.387-8.93z\\\"/>\"\n    },\n    \"crossref\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M310.362 40L25.168 134.018l192.067 65.984l93.127-30.67ZM9.638 139.13v131.969l192.034-65.985Zm207.597 71.096L25.195 276.21l77.543 25.536l192.067-65.957zm93.127 30.675l-192.066 65.985l192.066 65.985zm-207.624 71.097l-93.1 30.67V472l285.167-94.017Z\\\"/>\",\n      \"width\": 320\n    },\n    \"crossref-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm287.379 64v95.803l-68.983 22.717l-142.271-48.877L335.379 96zM112.62 169.43l142.246 48.877l-142.246 48.877V169.43zm153.775 52.664l57.46 18.935l-142.272 48.858l-57.44-18.916l142.252-48.877zm68.983 22.722v97.754l-142.272-48.877l142.272-48.877zM181.584 297.48l142.271 48.877L112.621 416v-95.803l68.963-22.717z\\\"/>\"\n    },\n    \"cv\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M249.18 328.324c-9.788 15.384-19.179 30.434-40.222 45.055c-11.256 7.89-37.164 23.306-73.99 23.306C64.709 396.685 8 345.605 8 255.801c0-78.486 53.345-140.486 128.466-140.486c30.434 0 57.474 10.521 77.387 26.304c18.414 14.65 27.038 29.304 34.563 42.456l-52.58 26.273c-3.762-8.626-8.29-17.649-19.913-27.406c-12.784-10.155-25.54-13.152-36.46-13.152c-42.821 0-65.364 39.825-65.364 84.145c0 58.238 29.7 87.143 65.364 87.143c34.563 0 48.48-24.042 57.474-39.426l52.243 26.673zm184.194-204.75H504l-92.037 265.22h-67.597l-90.904-265.22h70.625l54.843 188.6z\\\"/>\",\n      \"width\": 512\n    },\n    \"cv-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm98.88 133.234c19.636 0 37.082 6.789 49.929 16.971c11.88 9.452 17.444 18.907 22.298 27.393l-33.923 16.949c-2.427-5.565-5.347-11.387-12.846-17.682c-8.248-6.552-16.478-8.484-23.524-8.484c-27.626 0-42.17 25.693-42.17 54.287c0 37.573 19.161 56.22 42.17 56.22c22.3 0 31.278-15.51 37.08-25.435L219.6 302.66c-6.315 9.926-12.374 19.635-25.95 29.069c-7.262 5.09-23.977 15.037-47.736 15.037C100.586 346.766 64 313.81 64 255.87c0-50.636 34.415-90.637 82.88-90.637zm75.483 5.328h45.565L303.31 292.24l35.125-121.678H384l-59.379 171.112H281.01l-58.647-171.111z\\\"/>\"\n    },\n    \"datacite\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M223.326 57.92c-77.993 3.042-98.942 133.67-55.103 240.361c3.45 11.803 7.935 23.432 13.205 34.728C126.818 346.936 65.248 354.678 8 354.387c3.38.676 6.758 1.358 10.814 2.034c55.348 11.028 119.019 14.147 181.655 10.682c61.852 94.222 175.6 141.207 200.999-13.39c-.677.677-2.026.672-4.054 1.348c-32.044 69.595-89.288 55.357-133.59 6.232c116.078-14.943 216.774-52.363 237.02-103.576c27.044-70.311-123.71-120.343-300.164-114.258c-.603 0-1.206.022-1.81.025c8.9-51.908 41.114-83.115 103.22-54.785c-30.613-22.48-56.926-31.632-78.764-30.78Zm-24.706 87.176c90.64 10.741 169.414 47.365 136.587 103.827c-15.916 27.202-53.836 50.521-102.36 68.294c-3.255-5.923-6.36-11.995-9.191-18.262c-22.57-50.085-32.207-109.316-25.036-153.859z\\\"/>\",\n      \"width\": 512\n    },\n    \"datacite-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm152.963 64.01c16.956.311 37.08 7.87 60.256 24.888c-50.153-22.876-76.165 2.325-83.352 44.243c.487-.003.974-.022 1.461-.022c142.492-4.913 264.229 35.49 242.39 92.268c-16.35 41.356-97.663 71.573-191.4 83.64c35.776 39.67 82.001 51.167 107.877-5.033c1.638-.546 2.728-.542 3.274-1.088c-20.51 124.842-112.365 86.9-162.313 10.813c-50.58 2.797-101.996.28-146.691-8.625c-3.276-.546-6.003-1.097-8.733-1.643c46.23.235 95.95-6.018 140.05-17.264c-4.256-9.121-7.879-18.513-10.665-28.044c-35.401-86.158-18.484-191.641 44.498-194.098v-.002a58.343 58.343 0 0 1 3.348-.033zm-23.299 70.431c-5.79 35.97 1.991 83.801 20.217 124.247c2.287 5.06 4.794 9.963 7.422 14.746c39.185-14.352 69.807-33.182 82.66-55.149c26.509-45.595-37.105-75.17-110.299-83.844z\\\"/>\"\n    },\n    \"dataverse\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m234.559 151.334l-.042.002l-10.347-54.523c15.382-7.703 25.99-23.575 25.99-41.918C250.16 29.037 229.123 8 203.267 8c-25.858 0-46.899 21.037-46.899 46.897c0 25.858 21.04 46.897 46.9 46.897c.648 0 1.282-.073 1.927-.1l9.972 52.541c-27.26 8.325-47.149 33.695-47.149 63.643c0 22.043 10.817 41.559 27.376 53.676l-21.779 36.877a103.639 103.639 0 0 0-50.416-13.032c-57.514 0-104.303 46.79-104.303 104.3C18.896 457.21 65.686 504 123.2 504s104.3-46.79 104.3-104.3c0-32.216-14.686-61.06-37.71-80.208l22.93-38.827c6.852 2.391 14.18 3.758 21.84 3.758c36.692 0 66.543-29.851 66.543-66.543c0-36.696-29.853-66.547-66.545-66.547zm-26.611 248.365c0 46.727-38.018 84.746-84.75 84.746c-46.731 0-84.75-38.019-84.75-84.746c0-46.73 38.019-84.748 84.75-84.748c46.732 0 84.75 38.019 84.75 84.748zm-4.68-314.201c-16.875 0-30.604-13.727-30.604-30.601s13.729-30.601 30.603-30.601c16.875 0 30.6 13.727 30.6 30.6c0 16.875-13.727 30.602-30.6 30.602zm31.29 179.37c-25.91 0-46.989-21.08-46.989-46.99c0-25.911 21.08-46.99 46.99-46.99c25.91 0 46.99 21.081 46.99 46.99c.002 25.91-21.08 46.99-46.99 46.99z\\\"/>\",\n      \"width\": 320\n    },\n    \"dataverse-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm203.914 64c16.682 0 30.254 13.572 30.254 30.254c0 11.835-6.844 22.076-16.768 27.045l6.676 35.176l.026-.002h.002c23.672 0 42.931 19.259 42.931 42.933c0 23.672-19.26 42.932-42.931 42.932c-4.942 0-9.669-.883-14.09-2.426l-14.795 25.05c14.854 12.354 24.33 30.963 24.33 51.747c0 37.104-30.186 67.291-67.291 67.291s-67.293-30.187-67.293-67.291s30.187-67.291 67.293-67.291a66.859 66.859 0 0 1 32.525 8.408l14.051-23.79c-10.683-7.818-17.66-20.408-17.66-34.63c0-19.321 12.831-35.69 30.418-41.06l-6.434-33.899c-.416.018-.825.065-1.244.065c-16.683 0-30.258-13.574-30.258-30.256c0-16.684 13.575-30.256 30.258-30.256zm0 10.514c-10.887 0-19.744 8.855-19.744 19.742c0 10.886 8.857 19.742 19.744 19.742c10.885 0 19.742-8.856 19.742-19.742c0-10.887-8.855-19.742-19.742-19.742zm20.188 94.576c-16.716 0-30.315 13.599-30.315 30.316c0 16.716 13.598 30.315 30.315 30.315c16.715 0 30.318-13.599 30.316-30.315c0-16.716-13.6-30.316-30.316-30.316zm-71.844 92.943c-30.15 0-54.678 24.528-54.678 54.676c0 30.147 24.529 54.674 54.678 54.674c30.149 0 54.676-24.527 54.676-54.674c0-30.148-24.527-54.676-54.676-54.676z\\\"/>\"\n    },\n    \"dblp\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M32.247 40.013c-2.243-.152-3.888 1.011-2.65 5.636L65.389 179.21l-.006.003L31.73 194.85s-10.075 4.682-7.241 15.251l44.177 164.875s2.83 10.565 12.905 5.883c70.217-32.635 111.108-51.638 111.108-51.638l23.56-10.953s9.312-4.357 7.47-14.123c-.07-.374-.124-.738-.229-1.128l-20.369-76.023l-11.79-43.992c-1.318-4.69 0 0-12.155-45.64c0 0-2.832-10.57-15.067-18.073L39.002 42.58s-3.871-2.372-6.755-2.568zm275.111 90.152c-1.408-.024-3.04.318-4.93 1.196l-100.86 46.582l15.486 57.762l-.028-.019l19.591 73.44c.104.388.155.754.227 1.127c.921 8.41-7.468 14.123-7.468 14.123l-33.745 15.777l9.066 33.925l.14.558s2.832 10.57 15.067 18.073l125.097 76.708s12.233 7.503 9.4-3.067l-35.733-133.36l33.605-15.62c-.002 0 10.072-4.682 7.238-15.25l-44.177-164.872s-1.872-6.977-7.976-7.083z\\\"/>\",\n      \"width\": 384\n    },\n    \"dblp-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm57.664 64.01c2.136.145 5.004 1.902 5.004 1.902l92.664 56.82c9.064 5.559 11.162 13.39 11.162 13.39c9.004 33.807 8.027 30.332 9.004 33.806l8.732 32.586l15.088 56.314c.078.29.119.559.17.836c1.365 7.234-5.533 10.461-5.533 10.461l-17.451 8.113s-30.29 14.076-82.303 38.25c-7.463 3.468-9.558-4.357-9.558-4.357L99.918 222.002c-2.099-7.829 5.363-11.297 5.363-11.297l24.928-11.584l.004-.002l-26.512-98.935c-.918-3.426.302-4.287 1.963-4.174zm203.787 66.78c4.521.077 5.906 5.245 5.906 5.245l32.725 122.127c2.099 7.829-5.362 11.297-5.361 11.297l-24.893 11.57c26.468 98.779 7.978 29.779 26.469 98.785c2.097 7.83-6.963 2.272-6.963 2.272l-92.664-56.82c-9.064-5.559-11.162-13.387-11.162-13.387l-.102-.414l-6.717-25.13l24.997-11.687s6.213-4.23 5.53-10.46c-.052-.277-.089-.549-.165-.836l-14.514-54.399l.022.014l-11.471-42.787l74.71-34.504c1.4-.65 2.61-.905 3.653-.887z\\\"/>\"\n    },\n    \"depsy\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M393.81 49.796v398.091h-76.002v-32.014c-14.833 14.107-29.71 24.269-44.628 30.483c-14.928 6.218-31.1 9.327-48.525 9.327c-39.114 0-72.95-15.171-101.499-45.516c-28.549-30.345-42.819-68.07-42.819-113.169c0-46.77 13.812-85.095 41.433-114.979c27.622-29.88 61.173-44.821 100.663-44.821c18.166 0 35.218 3.436 51.158 10.302c15.945 6.868 30.684 17.168 44.217 30.901V28.065h36.04C323.826 15.16 290.751 8 256 8C119.034 8 8 119.034 8 256s111.034 248 248 248s248-111.034 248-248c0-85.97-43.75-161.713-110.19-206.204ZM237.913 207.352c-23.494 0-43.007 8.309-58.547 24.916c-15.537 16.614-23.307 37.91-23.307 63.893c0 26.169 7.905 47.701 23.721 64.588c15.816 16.89 35.282 25.333 58.406 25.333c23.862 0 43.656-8.304 59.374-24.916c15.723-16.608 23.586-38.372 23.586-65.284c0-26.352-7.863-47.696-23.586-64.031c-15.715-16.329-35.6-24.499-59.647-24.499z\\\"/>\",\n      \"width\": 512\n    },\n    \"depsy-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176 64c22.42 0 43.76 4.619 63.129 12.945h-23.254v96.99c-8.73-8.86-18.239-15.504-28.525-19.935c-10.285-4.43-21.286-6.646-33.006-6.646c-25.478 0-47.122 9.64-64.944 28.917c-17.82 19.28-26.73 44.005-26.73 74.18c0 29.096 9.206 53.435 27.625 73.012c18.419 19.577 40.248 29.365 65.482 29.365c11.243 0 21.676-2.006 31.307-6.017c9.624-4.01 19.222-10.565 28.791-19.666v20.654h49.033V122.965C355.774 151.669 384 200.535 384 256c0 88.365-71.635 160-160 160S64 344.365 64 256S135.635 96 224 96zm-11.668 128.615c15.513 0 28.342 5.27 38.48 15.805c10.145 10.539 15.22 24.31 15.22 41.31c0 17.363-5.075 31.405-15.22 42.12c-10.14 10.717-22.91 16.074-38.304 16.074c-14.919 0-27.478-5.446-37.682-16.344c-10.204-10.894-15.305-24.787-15.305-41.67c0-16.764 5.014-30.502 15.038-41.22c10.025-10.715 22.616-16.075 37.773-16.075z\\\"/>\"\n    },\n    \"doi\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M115.592 222.507c-9.726 0-18.734 7.074-24.986 14.417c-5.06 5.954-7.59 15.133-7.59 22.775c0 7.64 2.87 16.139 7.931 22.093c6.152 7.343 12.778 12.375 22.603 12.375c8.833 0 19.338-3.708 25.39-9.76c6.151-6.054 11.269-16.218 11.269-25.05c0-8.73-2.396-19.186-8.548-25.24c-6.153-6.154-17.338-11.61-26.07-11.61zm174.644 2.4c-10.12 0-18.358 3.98-24.709 11.937c-5.158 6.386-7.74 13.663-7.74 21.828c0 8.271 2.582 15.6 7.74 21.986c6.35 7.956 14.589 11.937 24.71 11.937c9.03 0 16.67-3.251 22.92-9.742c6.254-6.597 9.379-14.653 9.379-24.18c0-9.423-3.177-17.377-9.527-23.868c-6.25-6.595-13.843-9.898-22.773-9.898zM256 8C119.034 8 8 119.034 8 256s111.034 248 248 248s248-111.034 248-248S392.966 8 256 8Zm-58.826 323.79H151.24v-18.699c-4.665 5.855-15.639 11.824-20.4 14.502c-8.335 4.663-19.654 7.7-30.273 7.7c-17.168 0-32.45-5.424-45.845-17.231c-15.977-14.09-23.483-35.633-23.483-58.854c0-23.618 8.186-42.473 24.56-56.563c12.999-11.214 28.896-20.19 45.766-20.19c9.822 0 21.94.883 30.572 5.05c4.962 2.38 13.844 7.985 19.104 13.443v-98.502h45.936v229.345zm157.216-21.14c-15.281 17.588-36.667 26.384-64.154 26.384c-27.586 0-49.02-8.796-64.304-26.383c-12.6-14.448-18.904-32.193-18.904-53.235c0-18.95 6.35-35.752 19.053-50.408c15.38-17.693 37.261-26.54 65.64-26.54c26.099 0 46.937 8.845 62.518 26.54c12.702 14.448 19.052 31.667 19.052 51.664c.003 20.206-6.299 37.531-18.901 51.98zm38.769-199.217c5.359-5.36 11.858-8.038 19.499-8.038c7.64 0 14.14 2.679 19.499 8.038c5.358 5.26 8.037 11.71 8.037 19.35c0 7.74-2.679 14.289-8.037 19.648c-5.26 5.259-11.76 7.888-19.5 7.888c-7.642 0-14.142-2.679-19.498-8.038c-5.26-5.358-7.889-11.858-7.889-19.499c-.003-7.64 2.63-14.09 7.889-19.35zm43.91 220.242h-48.823V185.841h48.823z\\\"/>\",\n      \"width\": 512\n    },\n    \"doi-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176 64c88.365 0 160 71.635 160 160s-71.635 160-160 160S64 344.365 64 256S135.635 96 224 96zm-67.586 60.934v63.548c-3.393-3.521-9.125-7.137-12.326-8.673c-5.57-2.688-13.388-3.256-19.725-3.256c-10.884 0-21.139 5.79-29.525 13.025c-10.564 9.09-15.846 21.255-15.846 36.492c0 14.982 4.843 28.879 15.15 37.97c8.643 7.616 18.503 11.118 29.579 11.118c6.85 0 14.152-1.96 19.529-4.969c3.072-1.727 10.153-5.578 13.162-9.355v12.062h29.637V156.934h-29.635zm168.656.61c-4.929 0-9.122 1.73-12.58 5.186c-3.393 3.394-5.092 7.556-5.09 12.485c0 4.929 1.697 9.123 5.09 12.58c3.456 3.457 7.65 5.185 12.58 5.185c4.994 0 9.187-1.696 12.58-5.09c3.458-3.457 5.184-7.682 5.184-12.675c0-4.93-1.726-9.091-5.184-12.485c-3.457-3.457-7.65-5.185-12.58-5.185zm-78.023 49.726c-18.31 0-32.427 5.708-42.35 17.123c-8.194 9.455-12.293 20.296-12.293 32.521c0 13.576 4.068 25.023 12.198 34.344c9.86 11.346 23.688 17.021 41.486 17.021c17.733 0 31.53-5.673 41.389-17.02c8.13-9.32 12.197-20.499 12.195-33.534c0-12.902-4.096-24.011-12.291-33.332c-10.052-11.416-23.497-17.123-40.334-17.123zm62.273 3.466v94.086h31.498v-94.086H309.32zm-175.906 23.655c5.633 0 12.85 3.521 16.818 7.492c3.97 3.905 5.516 10.65 5.516 16.283c0 5.697-3.302 12.255-7.271 16.16c-3.904 3.906-10.68 6.297-16.38 6.297c-6.338 0-10.614-3.245-14.583-7.982c-3.266-3.842-5.118-9.325-5.118-14.254c0-4.93 1.634-10.852 4.899-14.694c4.033-4.737 9.844-9.3 16.12-9.3v-.002zm112.674 1.548c5.761 0 10.66 2.132 14.691 6.387c4.097 4.188 6.147 9.32 6.147 15.399c0 6.146-2.016 11.343-6.051 15.6c-4.033 4.187-8.96 6.284-14.787 6.284c-6.53 0-11.844-2.567-15.942-7.7c-3.327-4.121-4.994-8.848-4.994-14.184c0-5.269 1.667-9.964 4.994-14.084c4.098-5.134 9.413-7.702 15.942-7.702z\\\"/>\"\n    },\n    \"dryad\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M425.865 381.103c-26.598-2.345-77.19-5.394-78.306-16.887c.826-14.894 17.69-23.836 34.307-33.503c28.458-16.596 49.682-38.17 62.227-68.5c.703-1.66 5.725-17.508 5.477-16.285c-31.042 38.586-65.431 65.388-97.547 90.448c-10.747 8.34-24.572 13.07-37.53 18.028c-5.085 1.95-15.398 1.95-16.782-.644c-2.583-4.916-2.129-13.028.041-18.629c8.267-21.512 20.48-41.863 26.06-63.936c7.586-29.83 10.83-61.84 13.517-92.543c2.997-34.146 2.046-68.105 2.77-102.459c.123-5.435 0-15.268-1.86-21.284c-6.448 7.406-6.717 19.376-6.717 19.376c-5.849 32.404-4.34 77.856-10.788 76.32c-6.469-1.535-28.788-69.308-23.105-108.516c-14.57 9.003-9.796 41.054-4.506 60.077c4.506 16.16 9.775 33.005 15.748 47.9c6.303 15.683 3.327 33.96 3.017 50.929c-.207 10.932-3.038 21.969-5.745 32.694c-3.369 13.236-11.036 16.99-21.473 8.215c-12.38-10.393-23.684-22.84-32.757-36.262c-26.081-38.606-47.368-79.495-51.625-127.23c-.517-5.58-2.77-10.994-4.692-18.296c-8.617 21.969-4.112 32.88-2.521 47.9c5.704 53.521 35.919 95.8 65.865 138.057c14.466 20.455 18.992 41.78 9.96 66.965c-10.643 29.707-28.995 39.52-59.747 27.903c-34.1-12.925-47.182-41.283-55.614-74.931c-7.171-28.67-8.473-61.82-12.09-109.845c-1.818-24.437-5.828-40.577-15.458-42.236c1.798 11.68 6.076 30.183 7.79 43.087c3.184 23.94 2.378 39.975-.619 63.894c-.889 7.427-5.973 13.007-8.556 11.493c-20.522-11.907-28.066-56.24-30.173-74.412c-11.263 13.36 1.446 58.21 28.912 92.771c9.548 10.995 14.136 23.96 20.998 37.196c5.414 10.518 4.546 20.932-3.803 29.437c-8.66 8.858-21.225 10.497-32.57 7.551c-6.325-1.66-14.116-5.082-23.685-8.049c10.044 15.269 25.916 15.393 37.903 16.762c12.028 1.37 22.278.519 34.348.519c19.757.022 30.111 16.513 39.99 29.81c26.536 35.744 26.185 74.6 14.198 115.031c-1.488 5.041-2.252 10.31-3.616 15.393c-.455 1.743-1.716 3.299-2.584 4.834C67.05 467.236-4.89 344.468 9.907 230.432C30.615 70.634 163.667-2.575 275.783 9.23c162.192 17.052 237.13 149.965 227.375 263.295c-13.847 160.774-142.745 232.074-244.446 231.472c3.451-35.432 8.494-70.429 29.946-99.658c12.524-17.073 32.137-22.467 53.382-20.082c18.27 2.096 32.881 4.398 51.192 5.228c10.002-.663 21.265-1.888 32.632-8.38z\\\"/>\",\n      \"width\": 512\n    },\n    \"dryad-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.064 64.008c4.606.047 9.179.309 13.7.785c104.64 11.002 152.986 96.751 146.693 169.867c-8.933 103.725-92.094 149.726-157.707 149.338c2.227-22.86 5.48-45.44 19.32-64.297c8.08-11.015 20.733-14.494 34.44-12.955c11.786 1.352 21.214 2.838 33.027 3.373c6.454-.428 13.72-1.219 21.053-5.408c-17.16-1.513-49.8-3.48-50.52-10.895c.534-9.61 11.413-15.378 22.133-21.615c18.36-10.707 32.053-24.626 40.147-44.193c.453-1.071 3.693-11.295 3.533-10.506c-20.027 24.894-42.212 42.186-62.932 58.353c-6.933 5.38-15.854 8.432-24.215 11.631c-3.28 1.259-9.933 1.257-10.826-.416c-1.666-3.171-1.372-8.404.028-12.017c5.333-13.88 13.212-27.01 16.812-41.25c4.893-19.246 6.987-39.897 8.72-59.705c1.934-22.03 1.321-43.938 1.788-66.102c.08-3.507-.002-9.851-1.201-13.732c-4.16 4.778-4.332 12.5-4.332 12.5c-3.774 20.905-2.801 50.23-6.961 49.24c-4.174-.99-18.573-44.716-14.907-70.012c-9.4 5.809-6.32 26.487-2.906 38.76c2.907 10.426 6.305 21.295 10.158 30.904c4.067 10.118 2.148 21.91 1.948 32.858c-.134 7.053-1.96 14.172-3.707 21.091c-2.174 8.54-7.12 10.963-13.854 5.301c-7.986-6.705-15.28-14.735-21.133-23.394c-16.826-24.907-30.56-51.288-33.306-82.084c-.334-3.6-1.788-7.094-3.028-11.805c-5.56 14.173-2.653 21.213-1.627 30.902c3.68 34.53 23.174 61.808 42.494 89.07c9.334 13.197 12.253 26.956 6.426 43.204c-6.866 19.165-18.707 25.497-38.547 18.002c-22-8.338-30.439-26.635-35.879-48.344c-4.626-18.497-5.467-39.884-7.8-70.867c-1.174-15.766-3.76-26.178-9.973-27.248c1.16 7.535 3.92 19.472 5.027 27.797c2.054 15.444 1.533 25.79-.4 41.222c-.573 4.792-3.853 8.391-5.52 7.414c-13.24-7.682-18.106-36.283-19.466-48.007c-7.267 8.619.932 37.556 18.652 59.853c6.16 7.094 9.12 15.457 13.547 23.996c3.493 6.786 2.933 13.505-2.453 18.992c-5.587 5.715-13.694 6.774-21.014 4.873c-4.08-1.07-9.106-3.279-15.28-5.193c6.48 9.85 16.72 9.931 24.454 10.815c7.76.883 14.373.334 22.16.334c12.747.014 19.426 10.653 25.799 19.232c17.12 23.06 16.893 48.128 9.16 74.213c-.96 3.252-1.452 6.652-2.332 9.931c-.293 1.125-1.108 2.13-1.668 3.12c-88.693-20.652-135.105-99.859-125.559-173.43C77.756 142.852 153.984 95.3 223.064 96.008z\\\"/>\"\n    },\n    \"elsevier\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M68.408 418.612V111.51l-63.673-4.898v-24.49c34.285 1.47 58.775 2.45 73.959 2.45h180.735L264.327 64h25.469v103.347h-25.47l-9.795-55.837H131.102v139.102h91.102l6.857-41.143h24v108.245h-24l-6.857-40.653h-91.102v109.715c0 24.49 1.47 27.428 2.939 28.897c1.47 1.47 6.367 2.94 46.53 2.94h36.245c29.388 0 43.592-1.96 49.96-8.327c6.857-6.857 14.693-25.47 24.49-66.123h24.49l-9.797 101.878H101.714c-34.285 0-71.02.98-97.47 1.959v-24l63.674-4.898z\\\"/>\",\n      \"width\": 320\n    },\n    \"elsevier-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm262.94 64h21.224v86.123H310.94l-8.164-46.531H199.918V251.51h75.918l5.715-34.285h20v90.203h-20l-5.715-33.877h-75.918v91.43c0 20.408 1.225 22.855 2.45 24.08c1.224 1.224 5.305 2.449 38.775 2.449h30.205c24.49 0 36.326-1.632 41.632-6.938c5.715-5.714 12.245-21.226 20.409-55.103h20.408l-8.164 84.898H175.428c-28.572 0-59.184.817-81.225 1.633v-20l53.063-4.082l.408-.408V135.592L94.61 131.51v-20.408c28.572 1.224 48.98 2.04 61.633 2.04h150.613L310.94 96z\\\"/>\"\n    },\n    \"figshare\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M122.216 93.105c11.853.062 20.976-9.052 20.976-20.998c0-11.862-9.206-21.08-20.997-20.997c-11.233.104-20.77 9.527-21.04 20.75c-.227 11.304 9.58 21.203 21.06 21.244zM472.038 305.08c-11.626 0-21.246 9.61-21.101 21.12c.144 11.181 9.598 20.626 20.852 20.915c11.42.248 21.102-9.362 21.122-20.997c.023-11.945-9-21.018-20.874-21.039zm-82.44-211.976c11.813-.022 20.915-9.3 20.77-21.184c-.103-11.82-9.474-20.997-21.266-20.79c-11.212.207-20.708 9.775-20.77 20.976c-.062 11.388 9.702 21.039 21.266 20.998zM255.855 462c-11.626.041-21.328 9.734-21.121 21.1c.227 11.18 9.764 20.667 20.956 20.894c11.44.248 21.06-9.362 21.08-21.059c.022-11.945-8.978-20.976-20.915-20.935zm70.13-11.015c-11.564.082-20.874 9.403-20.853 20.831c.022 11.305 9.516 20.811 20.915 20.873c11.668.083 21.101-9.444 20.977-21.265c-.104-11.574-9.31-20.522-21.039-20.44zm157.43-215.923c-11.584-.063-21.018 9.01-21.266 20.418c-.227 11.388 9.744 21.473 21.122 21.39c11.357-.083 20.729-9.569 20.729-20.998c.062-11.635-8.958-20.77-20.584-20.81zM72.174 368.506c-11.71-.041-20.75 8.846-20.853 20.522c-.104 11.8 9.433 21.451 21.018 21.286c11.316-.166 20.79-9.837 20.75-21.1c-.063-11.408-9.392-20.708-20.915-20.708zm-.393-225.099c11.44.227 21.37-9.651 21.287-21.162c-.124-11.45-9.433-20.625-20.956-20.625c-11.75.022-20.729 8.928-20.79 20.604c-.063 11.553 9.04 20.977 20.459 21.184zm254.288-82.5c11.564.062 21.04-9.486 20.956-21.163c-.082-11.676-9.578-20.894-21.349-20.687c-11.295.186-20.625 9.796-20.5 21.08c.103 11.201 9.64 20.687 20.893 20.77zM60.857 326.14c.104-11.388-9.144-20.832-20.605-21.06c-11.708-.227-21.41 9.177-21.514 20.811c-.062 11.243 9.247 20.853 20.625 21.225c11.358.351 21.391-9.424 21.494-20.976zm378.763-182.9c11.317.145 20.936-9.3 21.019-20.666c.103-11.49-9.102-20.79-20.667-20.873c-11.585-.062-20.935 9.052-21.06 20.501c-.123 11.305 9.33 20.915 20.708 21.039zM49.355 255.73c-.042-11.614-9.103-20.625-20.77-20.583c-11.606.02-20.646 9.155-20.585 20.79c.063 11.532 9.372 20.873 20.79 20.79c11.441-.061 20.585-9.423 20.564-20.997zm206.48-206.065c11.419.083 20.75-9.217 20.77-20.75c.062-11.635-8.978-20.831-20.522-20.914c-11.419-.062-20.853 9.259-20.956 20.687c-.062 11.367 9.35 20.915 20.708 20.977zM439.62 368.547c-11.46.083-20.852 9.57-20.708 20.915c.104 11.304 9.827 20.873 21.06 20.728c11.358-.166 20.77-9.755 20.667-21.1c-.083-11.429-9.475-20.625-21.019-20.543zm11.544-183.125c-.207 11.18 9.371 20.956 20.625 21.1c11.378.166 20.957-9.196 21.04-20.583c.082-11.491-9.062-20.936-20.481-21.1c-11.337-.124-20.977 9.217-21.184 20.583zm-411.263 21.1c11.481-.02 20.604-9.362 20.563-20.955c-.022-11.573-9.227-20.77-20.73-20.687c-11.543.062-20.645 9.28-20.583 20.894c.022 11.552 9.268 20.81 20.749 20.749zM185.808 60.803c11.46-.082 20.667-9.444 20.604-20.997c-.041-11.615-9.247-20.75-20.79-20.687c-11.544.082-20.626 9.28-20.584 20.873c.062 11.532 9.371 20.894 20.77 20.81zM122.216 418.83c-11.523.082-20.874 9.465-20.73 20.831c.166 11.491 9.476 20.564 21.06 20.48c11.627-.082 20.605-9.154 20.522-20.81c-.103-11.594-9.226-20.563-20.852-20.501zm267.28.022c-11.585-.022-20.77 9.114-20.75 20.667c.042 11.532 9.206 20.645 20.812 20.625c11.647 0 20.645-9.011 20.645-20.667c0-11.635-8.978-20.625-20.708-20.625zm-203.522 32.26c-11.647-.144-20.812 8.784-20.936 20.357c-.123 11.615 8.855 20.832 20.419 20.998c11.543.166 20.79-8.907 20.956-20.46c.145-11.595-8.834-20.79-20.44-20.894zM325.096 85.438c.248 9.486 8.461 17.526 17.874 17.567c9.868.022 17.729-8.122 17.667-18.145c-.083-9.693-8.006-17.608-17.667-17.608c-9.558 0-18.143 8.742-17.874 18.186zM85.019 325.271c-10.033 0-17.46 7.44-17.48 17.505c0 9.94 7.509 17.67 17.336 17.856c9.826.186 18.163-8.184 17.997-18.062c-.165-9.858-7.86-17.298-17.853-17.298zm35.417-222.433c-9.826-.04-17.811 7.626-17.997 17.298c-.208 9.693 8.192 17.98 18.122 17.856c9.806-.083 17.563-7.915 17.543-17.67c-.022-9.755-7.82-17.463-17.667-17.484zm324.956 105.276c-9.474-.042-17.79 8.183-17.811 17.67c-.042 9.485 8.233 17.835 17.708 17.835c9.516.02 17.77-8.184 17.833-17.67c.022-9.527-8.192-17.794-17.73-17.835zm-324.997 200.94c9.557 0 17.667-8.164 17.667-17.773c0-9.672-8.027-17.712-17.667-17.712c-9.537 0-17.812 8.205-17.833 17.712c-.022 9.444 8.337 17.773 17.833 17.773zm324.997-105.668c9.765 0 17.77-7.916 17.833-17.505c0-9.63-7.923-17.566-17.646-17.649c-10.054-.124-18.308 7.998-18.143 17.753c.146 9.589 8.255 17.422 17.957 17.4zM285.893 427.385c-9.66.022-17.77 8.06-17.832 17.545c-.083 9.59 7.923 17.567 17.625 17.65c9.868.082 17.874-7.502 18.102-17.133c.207-9.858-8.006-18.083-17.895-18.062zm-17.75-360.857c-.103 9.444 8.151 17.752 17.668 17.835c9.598.062 17.77-8.06 17.832-17.629c.042-9.568-8.068-17.814-17.625-17.876c-9.413-.062-17.75 8.163-17.874 17.67zM67.56 169.116c.082 9.775 8.171 17.711 17.77 17.525c9.702-.227 17.48-8.287 17.315-18c-.124-9.817-8.068-17.587-17.812-17.422c-9.743.145-17.356 8.039-17.273 17.897zm376.86 173.35c-.207-9.444-8.006-17.091-17.46-17.111c-9.806-.063-17.812 7.832-17.812 17.442c0 9.63 8.089 17.546 17.812 17.463c9.703-.124 17.688-8.246 17.46-17.794zM83.964 225.825c0-9.734-8.026-17.711-17.625-17.608c-9.434.166-17.13 7.915-17.233 17.36c-.123 9.816 7.613 17.752 17.315 17.897c9.6.103 17.543-7.874 17.543-17.65zM342.721 408.99c-9.805.145-17.666 8.164-17.46 17.794c.228 9.796 8.089 17.298 17.998 17.215c9.806-.103 17.502-7.977 17.336-17.773c-.103-9.733-8.026-17.36-17.874-17.236zM225.611 84.218c9.62.227 17.667-7.667 17.77-17.401c.083-9.775-7.758-17.815-17.419-17.815c-9.412 0-17.253 7.667-17.46 17.112c-.144 9.858 7.448 17.917 17.11 18.104zm200.853 102.217c9.454.248 17.853-7.854 17.956-17.401c.145-9.507-8.006-17.712-17.626-17.732c-9.557-.022-17.708 8.163-17.667 17.69c.124 9.321 7.924 17.195 17.337 17.443zm-35.252 222.453c9.62.227 17.667-7.73 17.75-17.442c.041-9.776-7.82-17.773-17.44-17.773c-9.62.02-17.48 7.997-17.418 17.752c.062 9.507 7.633 17.236 17.108 17.463zM168.906 102.776c9.661-.022 17.46-8.06 17.419-17.814c-.062-9.734-8.15-17.67-17.75-17.443c-9.454.248-17.046 7.998-17.108 17.505c-.042 9.754 7.86 17.773 17.44 17.752zM66.132 303.2c10.013.165 17.73-7.254 17.833-17.153c.104-9.94-7.364-17.628-17.295-17.65c-9.64-.061-17.356 7.296-17.563 16.803c-.269 9.982 7.22 17.835 17.025 18zM392.04 102.963c-9.95-.207-17.75 7.254-17.915 17.07c-.145 10.003 7.302 17.65 17.19 17.712c9.972.123 17.626-7.42 17.668-17.319c0-9.63-7.407-17.277-16.943-17.463zM186.326 426.66c.04-9.899-7.552-17.545-17.46-17.525c-9.703 0-17.212 7.316-17.378 16.926c-.207 9.94 7.282 17.711 17.13 17.835c9.95.124 17.645-7.399 17.708-17.236zm56.993 18.497c.103-9.941-7.427-17.546-17.377-17.546c-9.889 0-17.481 7.646-17.44 17.587c.062 9.569 7.51 17.112 17.129 17.236c9.992.145 17.626-7.337 17.688-17.277zm76.625-37.324c.083-8.597-6.103-14.818-14.647-14.818c-8.171.042-15.101 6.923-14.977 14.838c.123 7.585 7.033 14.53 14.667 14.777c7.882.248 14.874-6.717 14.957-14.797zm-192.722-72.787c-8.73-.207-15.04 5.704-15.123 14.24c-.145 8.224 6.393 15.19 14.378 15.355c7.757.165 15.122-7.047 15.184-14.88c.104-7.688-6.62-14.508-14.44-14.714zm303.42-78.78c.269-7.772-6.206-14.715-14.026-15.025c-8.73-.29-15.205 5.497-15.536 13.888c-.33 8.225 6 15.252 14.088 15.665c7.82.393 15.143-6.551 15.474-14.529zM305.525 89.384c-8.192-.042-15.163 6.654-15.184 14.59c-.041 7.812 7.24 15.024 15.06 15.004c7.82-.062 14.44-6.696 14.544-14.59c.124-8.618-5.979-14.942-14.42-15.004zM112.08 162.337c.082 7.853 6.682 14.55 14.46 14.632c7.82.104 15.102-7.11 15.102-14.942c.021-7.977-6.89-14.693-15.082-14.632c-8.565.042-14.584 6.262-14.48 14.942zm280.995 44.103c-.104 7.894 7.137 15.045 15.04 14.921c8.067-.145 14.604-7.11 14.398-15.334c-.186-8.04-6.662-14.219-14.812-14.115c-7.903.082-14.564 6.695-14.626 14.528zm-43.03 163.699c-7.923-.145-15.08 6.964-15.018 14.941c.082 7.833 6.702 14.384 14.625 14.446c8.255.083 14.605-5.952 14.792-14.074c.186-8.267-6.289-15.148-14.398-15.313zM89.2 206.295c-.124 7.998 6.91 15.128 14.874 15.066c7.799-.062 14.398-6.696 14.48-14.611c.105-8.432-6.247-14.86-14.687-14.838c-7.965 0-14.502 6.468-14.667 14.384zm87.424 178.682c0-7.978-6.434-14.611-14.274-14.838c-7.923-.228-15.122 6.84-15.122 14.838c.021 7.915 6.537 14.446 14.48 14.549c8.565.145 14.916-6.076 14.916-14.55zm208.341-208.318c7.903.227 15.082-6.882 14.978-14.818c-.123-7.833-6.847-14.363-14.73-14.343c-8.046.022-14.522 6.448-14.584 14.363c-.103 7.853 6.454 14.59 14.336 14.797zm14.958 172.958c-.063-7.874-6.682-14.425-14.605-14.446c-8.047-.04-14.585 6.304-14.709 14.24c-.123 8.122 6.765 15.066 14.833 14.921c7.8-.144 14.502-6.944 14.481-14.714zm-303.67-79.112c7.861-.082 14.481-6.758 14.543-14.61c.022-7.957-6.454-14.446-14.44-14.57c-7.923-.083-14.667 6.344-14.894 14.177c-.227 7.977 6.765 15.086 14.792 15.003zm253.585-158.532c-7.8.022-14.544 6.696-14.626 14.55c-.104 8.163 6.702 14.838 14.998 14.693c8.027-.166 14.233-6.572 14.17-14.715c-.062-7.894-6.702-14.528-14.543-14.528zM162.12 141.216c8.089-.022 14.357-6.344 14.378-14.466c.041-7.978-6.393-14.612-14.254-14.777c-8.047-.166-14.957 6.8-14.833 14.942c.145 7.997 6.682 14.342 14.709 14.3zm93.962 288.917c7.923-.082 14.315-6.633 14.315-14.632c.041-8.039-6.413-14.59-14.295-14.693c-7.861-.083-14.585 6.427-14.792 14.322c-.186 8.142 6.64 15.086 14.771 15.003zm-.166-348.56c-7.923.041-14.605 6.489-14.791 14.343c-.186 8.018 6.64 14.921 14.853 14.921c8.089 0 14.419-6.262 14.543-14.322c.104-8.494-6.206-14.942-14.605-14.942zM422.43 305.39c.124-8.122-6.082-14.529-14.17-14.694c-8.192-.165-15.123 6.49-15.06 14.55c.082 7.77 6.805 14.466 14.625 14.528c7.882.082 14.502-6.469 14.605-14.384zM206.082 89.467c-7.965.248-14.233 6.84-14.068 14.86c.166 7.894 6.91 14.445 14.708 14.342c8.089-.103 14.544-7.047 14.295-15.272c-.227-7.978-6.847-14.156-14.936-13.93zM103.948 319.795c7.924-.02 14.44-6.489 14.503-14.466c.103-8.143-6.103-14.508-14.15-14.632c-8.317-.166-14.958 6.344-14.875 14.61c.083 7.916 6.724 14.53 14.522 14.488zm117.09 87.978c.063-8.143-6.103-14.467-14.191-14.59c-8.13-.125-14.605 6.034-14.833 14.053c-.207 8.142 6.496 15.086 14.585 15.066c7.84-.023 14.398-6.593 14.44-14.529zm-59.103-45.446c6.703-.083 11.957-5.477 12.02-12.276c.082-7.006-4.842-12.193-11.71-12.42c-6.909-.186-12.825 5.373-12.929 12.11c-.124 6.593 6 12.669 12.62 12.586zm213.369-126.995c.124 6.778 5.503 12.13 12.185 12.13c6.558 0 12.702-6.241 12.516-12.71c-.228-6.447-6.02-11.944-12.516-11.944c-7.178 0-12.288 5.27-12.185 12.524zm-59.186 151.526c6.66.248 12.453-5.56 12.453-12.504c0-7.026-4.902-12.007-11.915-12.11c-7.075-.104-12.765 5.331-12.765 12.193c.022 6.344 5.751 12.193 12.227 12.42zM124.8 195.156c-.186 6.592 5.875 12.793 12.495 12.751c6.951-.02 12.288-5.6 12.143-12.751c-.103-6.965-5.192-11.904-12.143-11.884c-6.682 0-12.35 5.394-12.495 11.884zm152.22-83.246c-6.517-.186-12.744 5.952-12.744 12.545c.042 6.572 5.544 12.048 12.206 12.152c7.261.123 12.495-5.022 12.495-12.235c-.063-6.592-5.503-12.255-11.957-12.462zM124.305 247.36c6.454.083 12.288-5.6 12.453-12.09c.166-6.489-5.337-12.275-11.895-12.482c-6.682-.227-12.371 5.022-12.66 11.635c-.332 6.82 5.357 12.876 12.101 12.938zm250.316-39.556c6.62 0 11.999-5.476 12.082-12.214c.083-6.902-5.006-12.172-11.812-12.317c-6.89-.166-12.744 5.56-12.6 12.338c.125 6.55 5.793 12.193 12.33 12.193zm-24.639 154.441c6.558.083 12.123-5.352 12.227-12.048c.166-6.779-4.945-12.276-11.668-12.504c-6.95-.227-12.598 5.27-12.598 12.276c-.022 6.634 5.42 12.193 12.04 12.276zm-154.554 24.469c6.868.041 12.412-5.745 12.185-12.751c-.228-6.882-5.44-11.822-12.371-11.697c-6.765.123-12.061 5.538-11.978 12.234c.041 6.613 5.606 12.173 12.164 12.214zM222.88 124.58c.062 6.633 5.482 11.966 12.226 12.007c6.827.022 12.102-5.208 12.205-11.986c.083-6.655-5.213-12.235-11.874-12.483c-6.724-.227-12.64 5.621-12.557 12.462zm12.267 274.74c6.703-.023 11.978-5.374 11.978-12.152c-.022-6.696-5.503-12.234-12.06-12.173c-6.6.022-12.02 5.6-11.978 12.276c.022 6.758 5.358 12.09 12.06 12.048zm-73.336-249.548c-6.786 0-12.288 5.374-12.288 11.987c0 6.55 5.565 12.028 12.246 12.028c6.744.022 12.123-5.332 12.123-12.028c0-6.779-5.234-11.987-12.081-11.987zm154.658-24.53c-6.661-.023-12.288 5.455-12.31 12.007c-.021 6.468 5.628 12.214 12.144 12.275c6.579.062 12.123-5.497 12.123-12.13c.041-6.841-5.172-12.111-11.957-12.153zm-27.597 262.09c.042-6.592-5.42-12.254-11.998-12.358c-6.413-.082-12.227 5.621-12.33 12.11c-.083 6.47 5.544 12.174 12.123 12.215c6.723.083 12.123-5.229 12.205-11.966zm98.616-98.619c6.62 0 12.206-5.518 12.206-12.048c.023-6.614-5.482-12.029-12.206-12.029c-6.847 0-12.06 5.187-12.06 12.008c0 6.716 5.337 12.07 12.06 12.07zm-250.833-11.946c.104-6.55-5.358-12.048-12.102-12.11c-6.785-.083-12.205 5.146-12.308 11.841c-.063 6.634 5.337 12.111 12.06 12.194c6.62.082 12.247-5.332 12.35-11.925zm249.965 39.267c-.104-6.862-5.337-11.904-12.227-11.78c-6.682.082-12.123 5.6-11.957 12.193c.145 6.613 5.73 12.028 12.371 11.883a12.016 12.016 0 0 0 11.813-12.296zM183.45 137.64c.166 6.675 5.771 12.048 12.412 11.841c6.641-.206 11.75-5.724 11.626-12.503c-.124-6.779-5.482-11.863-12.35-11.697c-6.702.166-11.833 5.56-11.688 12.359zm-45.884 166.572c-6.786-.124-12.227 5.042-12.392 11.738c-.166 6.655 5.172 12.235 11.854 12.4c6.66.166 12.164-5.166 12.288-11.862c.103-6.882-4.903-12.131-11.751-12.276zm212.479-154.44c-6.91.04-12.082 5.31-11.957 12.192c.103 6.593 5.213 11.697 11.75 11.822c6.869.123 12.206-5.084 12.268-11.925c0-6.944-5.151-12.11-12.06-12.09zm-93.528 6.302c5.4-.289 10.075-5.352 9.826-10.622c-.29-5.374-5.337-10.065-10.633-9.9c-5.462.186-10.054 4.981-10.033 10.416c.062 5.663 5.13 10.437 10.84 10.106zm78.281 35.01c-.062 5.393 4.717 10.25 10.096 10.333c5.358.082 10.26-4.733 10.323-10.106c.041-5.373-4.738-10.312-10.137-10.333c-5.296-.062-10.22 4.795-10.282 10.105zm-14.44 143.487c-5.42.166-10.136 5.001-10.054 10.333c.104 5.394 4.882 10.003 10.344 10.044c5.606 0 10.22-4.484 10.303-9.982c.062-5.745-4.82-10.56-10.593-10.395zM140.875 221.67c-.123 5.538 4.986 10.52 10.716 10.375c5.503-.124 10.054-4.837 9.971-10.334c-.082-5.435-4.757-10.003-10.281-10.023c-5.42-.02-10.26 4.65-10.406 9.982zm50.187 133.278c5.814.082 10.075-4.072 10.179-9.92c.123-5.766-4.2-10.333-9.806-10.457c-5.607-.083-10.158 4.402-10.24 10.064c-.042 5.91 4.033 10.19 9.867 10.313zm153.893-24.49c5.648.041 10.282-4.547 10.2-10.106c-.063-5.58-4.78-10.023-10.448-9.878c-5.461.124-9.826 4.485-9.91 9.816c-.103 5.601 4.386 10.148 10.158 10.168zm25.694-108.52c.022-5.91-4.096-10.168-9.91-10.25c-5.813-.062-10.053 4.133-10.115 10.003c-.104 5.724 4.262 10.312 9.868 10.354c5.648.082 10.116-4.403 10.158-10.106zM221.64 370.655c5.358.207 10.26-4.484 10.426-9.92c.124-5.497-4.365-10.333-9.826-10.54c-5.503-.226-10.137 4.3-10.303 9.92c-.145 5.663 4.138 10.334 9.703 10.54zm-76.005-104.717c5.606.124 10.302-4.463 10.344-10.044c.04-5.414-4.2-9.858-9.64-10.085c-5.648-.248-10.448 4.133-10.675 9.714c-.145 5.476 4.468 10.333 9.97 10.415zm66.26-114.265c.228 5.518 4.49 9.548 10.014 9.548c5.813 0 10.178-4.381 10.137-10.106c-.124-5.704-4.593-9.981-10.406-9.899c-5.71.145-9.93 4.67-9.744 10.457zm68.207.104c.248 5.518 4.53 9.465 10.137 9.34c5.502-.144 9.702-4.36 9.723-9.836c.022-5.642-4.51-10.086-10.24-9.982c-5.73.123-9.868 4.67-9.62 10.478zm-88.645 25.13c5.337-.103 9.62-4.484 9.681-9.92c.062-5.497-4.013-9.795-9.475-9.96c-5.771-.228-10.302 4.05-10.302 9.796c-.042 5.683 4.51 10.23 10.095 10.085zm129.606-19.901c-5.752-.228-10.344 4.133-10.406 9.816c0 5.373 4.323 9.9 9.661 10.085c5.38.227 10.385-4.547 10.427-9.94c.021-5.332-4.283-9.775-9.682-9.961zm-153.976 24.076c-5.4-.103-10.344 4.836-10.26 10.23c.082 5.27 4.612 9.817 9.888 9.92c5.585.103 10.178-4.526 10.095-10.168c-.082-5.373-4.448-9.878-9.723-9.982zm9.702 139.168c-.062-5.435-4.344-9.692-9.826-9.755c-5.647-.04-10.26 4.588-10.137 10.148c.104 5.394 4.448 9.61 9.93 9.692c5.772.083 10.137-4.277 10.033-10.085zm79.192 55.552c5.606 0 10.116-4.712 9.91-10.334c-.167-5.476-4.47-9.548-10.014-9.527c-5.503.062-9.868 4.258-10.013 9.61c-.186 5.415 4.634 10.272 10.116 10.25zm114.524-86.242c-.103-5.456-4.427-9.755-9.806-9.816c-5.606-.02-10.074 4.588-9.97 10.25c.123 5.704 4.696 9.92 10.426 9.672c5.482-.227 9.454-4.526 9.35-10.106zm-70.544 70.927c.022-5.538-4.757-10.292-10.24-10.167c-5.358.165-9.62 4.588-9.64 10.044c-.022 5.683 4.53 10.25 10.158 10.105c5.254-.144 9.702-4.691 9.723-9.982zm76.11-105.027c-.228-5.414-4.656-9.568-10.137-9.527c-5.441.063-9.868 4.361-9.971 9.693c-.145 5.415 4.737 10.313 10.178 10.25c5.502-.04 10.136-4.897 9.93-10.416zm-225.058 44.227c5.669.124 10.364-4.402 10.344-9.92c-.042-5.167-4.613-9.816-9.785-9.96c-5.317-.167-9.93 4.112-10.24 9.402c-.31 5.725 3.95 10.354 9.681 10.478zm15.702-66.484c-4.593-.145-8.792 3.968-8.792 8.556c.062 4.32 3.889 8.101 8.378 8.184c4.696.103 8.875-3.885 8.75-8.39c-.04-4.34-3.95-8.247-8.336-8.35zm-.27 28.437c-4.488.062-8.357 3.885-8.377 8.246c-.022 4.588 4.22 8.618 8.833 8.39c4.407-.186 8.213-4.216 8.068-8.556c-.123-4.36-4.075-8.122-8.523-8.08zm153.728-61.317c4.53-.104 8.482-4.444 8.213-8.97c-.29-4.277-4.365-8.018-8.626-7.915c-4.303.124-8.172 3.989-8.233 8.308c-.063 4.506 4.137 8.701 8.647 8.577zm-105.03 144.623c4.841-.516 7.82-3.43 8.192-8.37c.331-4.443-4.034-8.72-8.523-8.7c-4.448.04-8.668 4.319-8.565 8.72c.083 4.465 4.49 8.784 8.896 8.35zm27.204 8.639c4.303-.31 8.026-4.402 7.86-8.639c-.165-4.526-4.571-8.535-8.998-8.184c-4.345.331-7.986 4.361-7.841 8.68c.166 4.506 4.51 8.453 8.978 8.143zm-9.04-187.114c0 4.836 3.743 8.37 8.791 8.225c4.407-.103 8.275-3.885 8.275-8.184c.063-4.567-4.137-8.452-8.895-8.308c-4.634.166-8.172 3.72-8.172 8.267zM183.573 296.98c.042-4.319-3.889-8.287-8.213-8.37c-4.344-.061-8.316 3.865-8.378 8.185c-.041 4.36 3.848 8.349 8.192 8.37c4.366.061 8.317-3.824 8.4-8.185zm136.764 31.083c4.613-.165 8.171-3.802 8.15-8.308c-.041-4.815-3.868-8.35-8.874-8.184c-4.427.166-8.255 4.03-8.234 8.287c0 4.526 4.2 8.37 8.958 8.205zm8.068-113.5c-.022 5.125 2.565 8.018 7.696 8.349c4.985.372 8.77-3.1 8.854-7.957c.083-4.65-3.207-8.183-7.84-8.39c-5.09-.228-8.69 2.996-8.71 7.998zm8.647 90.767c4.468-.269 7.923-4.133 7.779-8.721c-.124-4.526-3.952-8.246-8.337-8.164c-4.634.083-8.378 4.278-8.068 9.052c.29 4.443 4.323 8.08 8.626 7.833zm-122.51-138.28c-4.468.146-8.233 3.99-8.192 8.309c.104 4.402 3.972 8.08 8.44 8.06c4.82 0 8.73-4.01 8.44-8.639c-.248-4.505-4.054-7.894-8.688-7.73zm55.835-8.638c-4.675-.124-8.358 3.224-8.523 7.791c-.166 4.464 3.454 8.246 7.985 8.412c4.593.144 8.296-3.286 8.462-7.833c.145-4.567-3.331-8.225-7.924-8.37zm26.686 8.721c-4.675 0-8.11 3.43-8.11 8.08c-.04 4.65 3.435 8.123 8.09 8.123c4.633.02 8.109-3.431 8.13-8.08c-.022-4.671-3.455-8.123-8.11-8.123zM278.22 345.256c0-4.608-3.62-8.308-8.089-8.349c-4.427-.02-8.233 3.803-8.254 8.205c-.042 4.36 3.827 8.308 8.171 8.328c4.407.062 8.172-3.699 8.172-8.184zm-94.438-25.75c-.124 4.691 3.186 8.184 7.84 8.35c4.738.144 8.234-3.1 8.379-7.792c.165-4.732-3.145-8.225-7.82-8.37c-4.675-.144-8.233 3.162-8.4 7.813zm161.733-85.89c-4.655-.082-8.233 3.348-8.295 7.936a8.186 8.186 0 0 0 8.006 8.328c4.551.083 8.171-3.41 8.254-8.019c.062-4.65-3.33-8.163-7.965-8.245zm-170.008-26.949c-4.51-.145-8.378 3.451-8.523 7.853c-.166 4.402 3.558 8.205 8.068 8.35c4.552.103 8.378-3.39 8.544-7.874c.145-4.361-3.579-8.184-8.088-8.329zm129.626 129.91c.083-4.547-3.475-8.35-7.923-8.474c-4.386-.082-8.192 3.68-8.254 8.164c-.124 4.484 3.558 8.37 7.923 8.473c4.365.124 8.172-3.638 8.254-8.164zm32.087-66.547c.022 4.464 3.744 8.184 8.172 8.184c4.55-.02 8.068-3.595 8.088-8.225c.022-4.63-3.475-8.122-8.11-8.122c-4.571 0-8.15 3.596-8.15 8.163zm-145.267-86.468c-4.385-.041-8.109 3.761-8.13 8.246c-.041 4.505 3.683 8.308 8.047 8.328c4.407.041 8.151-3.74 8.151-8.246c-.022-4.526-3.683-8.328-8.068-8.328z\\\"/>\",\n      \"width\": 512\n    },\n    \"figshare-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176.053 64c7.447.053 13.28 5.987 13.24 13.494c-.014 7.44-6.033 13.44-13.4 13.387c-7.328-.04-13.4-6.2-13.36-13.533c.067-7.374 6.153-13.388 13.52-13.348zm44.898 7.133c7.594-.134 13.72 5.814 13.774 13.347c.053 7.534-6.06 13.693-13.52 13.653c-7.26-.053-13.414-6.172-13.48-13.399c-.08-7.28 5.939-13.481 13.226-13.601zm-90.357.04c7.447-.04 13.387 5.853 13.414 13.347c.04 7.453-5.899 13.493-13.293 13.546c-7.354.054-13.36-5.985-13.4-13.425c-.027-7.48 5.831-13.414 13.279-13.467zm64.773 19.186c6.166.04 11.398 5.36 11.371 11.534c-.04 6.173-5.313 11.413-11.506 11.373c-6.14-.054-11.465-5.413-11.398-11.506c.08-6.134 5.46-11.44 11.533-11.4zm-38.746.094c6.233 0 11.292 5.188 11.238 11.494c-.066 6.28-5.258 11.373-11.464 11.227c-6.233-.12-11.131-5.322-11.038-11.682c.134-6.093 5.191-11.039 11.264-11.039zm-66.947 1.36c7.608-.054 13.547 5.893 13.547 13.546c0 7.707-5.886 13.587-13.534 13.547c-7.407-.026-13.734-6.413-13.587-13.707c.173-7.24 6.327-13.32 13.574-13.387zm172.199.013c7.607-.133 13.652 5.788 13.719 13.414c.093 7.667-5.778 13.652-13.399 13.666c-7.46.027-13.76-6.2-13.72-13.547c.04-7.226 6.166-13.4 13.4-13.533zm-29.764 10.4c6.233 0 11.345 5.107 11.399 11.36c.04 6.466-5.032 11.721-11.399 11.707c-6.072-.027-11.37-5.214-11.53-11.334c-.174-6.093 5.364-11.732 11.53-11.732zm-112.511.174c6.192-.147 11.41 4.972 11.45 11.252c.027 6.294-5.005 11.48-11.237 11.494c-6.18.014-11.28-5.16-11.252-11.453c.04-6.133 4.94-11.133 11.039-11.293zm56.35 9.067c5.418 0 9.488 4.16 9.421 9.64c-.08 5.2-4.164 9.239-9.383 9.239c-5.298 0-9.702-4.454-9.582-9.627c.12-5.067 4.431-9.225 9.543-9.252zm32.003 5.039h.002c5.446.04 9.38 4.12 9.3 9.68c-.066 5.093-4.337 9.374-9.382 9.414c-5.045.013-9.741-4.64-9.715-9.68c.013-5.12 4.51-9.44 9.795-9.414zm-64.156.053v.002c5.219-.147 9.488 3.84 9.635 8.986c.16 5.306-4.003 9.787-9.221 9.853c-5.032.067-9.383-4.16-9.49-9.254c-.107-5.173 3.937-9.427 9.076-9.587zM105.36 156.4c7.434 0 13.442 5.92 13.522 13.307c.053 7.427-6.354 13.799-13.735 13.652c-7.367-.133-13.239-6.213-13.199-13.666c.04-7.533 5.831-13.278 13.412-13.293zm237.33.053c7.461.053 13.401 6.054 13.334 13.467c-.053 7.333-6.26 13.425-13.56 13.332c-7.34-.08-13.44-6.279-13.36-13.572c.08-7.387 6.112-13.267 13.586-13.227zm-206.152.733c6.353.013 11.384 4.987 11.399 11.28c.013 6.294-4.992 11.346-11.319 11.4c-6.406.08-11.825-5.267-11.691-11.52c.12-6.24 5.272-11.187 11.611-11.16zm175.229.08c6.152.12 10.931 5.054 10.931 11.267c-.026 6.387-4.965 11.254-11.398 11.174c-6.38-.04-11.185-4.974-11.092-11.428c.107-6.333 5.139-11.147 11.559-11.013zm-74.207 5.773c4.164.133 7.674 3.788 7.714 8.041c0 4.653-3.377 7.972-8.062 7.893c-4.298-.067-7.848-3.6-7.875-7.84c0-4.253 4.018-8.214 8.223-8.094zm-74.047.041c5.071.107 9.222 4.386 9.195 9.533c-.013 5.24-4.057 9.318-9.275 9.332h-.002c-5.179.027-9.395-4.066-9.489-9.226c-.08-5.253 4.379-9.746 9.57-9.639zm121.025 0h.002c5.058.001 9.34 4.28 9.38 9.373c.041 5.253-3.961 9.385-9.14 9.492c-5.352.094-9.744-4.211-9.677-9.478c.053-5.066 4.404-9.372 9.435-9.387zm-73.805.094c4.298.16 7.714 3.76 7.66 8.053c-.066 4.373-3.47 7.746-7.874 7.732c-4.352-.027-7.847-3.466-7.887-7.746c-.053-4.414 3.764-8.186 8.101-8.04zm52.278 8.465c4.377.026 7.741 3.428 7.715 7.841c0 4.28-3.578 7.867-7.823 7.827c-4.204-.04-7.848-3.747-7.834-7.92c.014-4.227 3.644-7.763 7.942-7.748zm-78.278.027c4.432-.107 7.889 3.173 7.97 7.547c.08 4.373-3.218 7.933-7.503 8.066c-4.284.134-7.9-3.334-8.008-7.64c-.093-4.387 3.217-7.866 7.541-7.973zm39.078 6.627c3.417-.106 6.675 2.92 6.862 6.387c.16 3.4-2.857 6.667-6.34 6.853v-.002c-3.683.214-6.954-2.866-6.994-6.52c-.014-3.506 2.949-6.598 6.472-6.718zm-21.98 3.652c3.75-.053 6.633 2.707 6.713 6.387c.027 3.693-2.789 6.52-6.54 6.52c-3.563 0-6.313-2.599-6.46-6.159c-.12-3.733 2.603-6.654 6.287-6.748zm43.924.055c3.697-.067 6.62 2.8 6.605 6.44c-.013 3.533-2.723 6.252-6.273 6.345c-3.617.08-6.379-2.465-6.54-6.025c-.16-3.747 2.51-6.68 6.208-6.76zm-105.266 3.932c5.286-.04 9.743 4.294 9.729 9.441c0 5.053-4.697 9.705-9.742 9.639c-5.018-.054-9.275-4.373-9.329-9.44h-.002c-.066-5.6 3.819-9.614 9.344-9.64zm166.873.066c5.085-.013 9.422 4.2 9.502 9.254c.067 5.12-4.564 9.707-9.662 9.56c-5.085-.133-9.317-4.48-9.25-9.546c.04-5.107 4.219-9.254 9.41-9.268zm-144.13 1.469c4.417 0 7.794 3.36 7.794 7.732c0 4.32-3.471 7.774-7.822 7.76c-4.31 0-7.9-3.533-7.9-7.76c0-4.266 3.55-7.732 7.927-7.732zm121.44 0c4.459-.014 7.782 3.319 7.782 7.799c-.04 4.413-3.483 7.773-7.914 7.693c-4.218-.08-7.515-3.374-7.582-7.627c-.08-4.44 3.257-7.838 7.715-7.865zm-171.103.931c6.287-.106 11.41 4.908 11.49 11.24c.107 6.267-4.91 11.467-11.17 11.614c-6.192.12-11.41-5-11.464-11.307c-.054-6.36 4.858-11.453 11.144-11.547zm220.62.055c6.206.013 11.464 5.306 11.37 11.44c-.066 6.16-5.484 11.386-11.583 11.226c-6.073-.16-11.106-5.24-11.186-11.254c-.027-6.146 5.232-11.426 11.398-11.412zm-68.215 3.68c3.483.12 6.26 2.986 6.246 6.426c-.027 3.48-3.257 6.56-6.727 6.414c-3.444-.12-6.232-3.041-6.232-6.508c.04-3.667 3.002-6.479 6.713-6.332zm-83.483.013c3.524.107 6.154 2.88 6.113 6.426c-.04 3.507-2.802 6.334-6.246 6.4h-.002c-3.603.094-6.538-2.839-6.511-6.505c0-3.707 2.923-6.467 6.646-6.32zm32.139.76c3.07-.093 5.778 2.413 5.738 5.36c0 2.773-2.495 5.212-5.338 5.279c-3.257.093-5.672-2.185-5.672-5.305c0-2.933 2.282-5.227 5.272-5.334zm18.644.133c2.963.093 5.207 2.454 5.114 5.4c-.107 2.934-2.496 5.147-5.46 5.053c-2.923-.107-5.259-2.546-5.152-5.426c.107-2.946 2.482-5.107 5.498-5.027zm130.305 4.147c7.368.106 13.266 6.2 13.213 13.613c-.053 7.346-6.234 13.386-13.574 13.28c-7.26-.094-13.44-6.399-13.307-13.612c.134-7.333 6.354-13.361 13.668-13.281zm-279.105.027c7.42-.053 13.358 5.879 13.373 13.346c.026 7.48-5.86 13.506-13.268 13.52v.001c-7.407.04-13.372-5.934-13.387-13.387c-.04-7.493 5.834-13.44 13.282-13.48zm112.779 1.4c2.99-.106 5.445 2.08 5.605 4.987c.187 2.986-2.335 5.572-5.445 5.572c-2.883.013-5.378-2.36-5.445-5.2c-.027-2.786 2.402-5.265 5.285-5.359zm53.238.053c3.003 0 5.218 2.227 5.233 5.24c-.014 3-2.255 5.227-5.245 5.213c-3.002 0-5.245-2.24-5.218-5.24c0-3 2.214-5.213 5.23-5.213zm30.979 8.934c3.483.013 6.565 3.199 6.539 6.666c-.04 3.466-3.202 6.572-6.658 6.52c-3.47-.054-6.554-3.187-6.514-6.667c.04-3.426 3.216-6.56 6.633-6.52zm-114.834.066c3.403.067 6.22 2.973 6.273 6.44c.053 3.64-2.91 6.627-6.514 6.56c-3.403-.067-6.327-3-6.38-6.4c-.054-3.48 3.137-6.667 6.62-6.6zm-19.221 1.412c4.484-.013 7.769 3.175 7.836 7.668c.093 4.613-3.352 8.213-7.836 8.227c-4.271.026-8.18-3.974-8.06-8.227c.093-4.187 3.749-7.668 8.06-7.668zm153.287 0c4.391.093 7.675 3.494 7.621 7.947c-.053 4.347-3.524 7.881-7.795 7.881v-.002c-4.217 0-7.873-3.638-7.953-7.865c-.093-4.373 3.683-8.068 8.127-7.96zm-35.568.108c2.749-.067 5.38 2.347 5.566 5.107c.174 2.92-2.376 5.72-5.299 5.787c-2.91.08-5.62-2.626-5.58-5.533c.04-2.787 2.537-5.282 5.313-5.361zm-82.457.08h.002c2.828 0 5.19 2.453 5.205 5.373c0 2.906-2.417 5.347-5.26 5.32c-2.816-.013-5.218-2.466-5.191-5.373c.013-2.893 2.415-5.346 5.244-5.32zm-56.828 5.386c5.445-.013 9.541 4.135 9.474 9.575c-.053 5.106-4.31 9.385-9.342 9.425c-5.137.04-9.674-4.56-9.595-9.718v-.002c.107-5.106 4.325-9.28 9.463-9.28zm196.021 0c5.259-.066 9.437 3.921 9.557 9.108c.133 5.306-4.086 9.799-9.291 9.892c-5.099.08-9.768-4.533-9.701-9.627c.04-5.053 4.337-9.32 9.435-9.373zm-46.142 9.452a7.1 7.1 0 0 1 .603.001c2.99.134 5.112 2.414 5.059 5.415c-.054 3.133-2.497 5.372-5.713 5.132c-3.31-.213-4.98-2.08-4.965-5.386c.013-3.025 2.055-5.043 5.016-5.162zm-103.66.068c2.909.093 5.311 2.56 5.218 5.373c-.107 2.893-2.575 5.147-5.512 5.08c-2.91-.093-5.312-2.547-5.205-5.387c.094-2.84 2.589-5.16 5.498-5.066zm174.12.933c6.153.027 11.452 5.36 11.438 11.506c-.04 6.12-5.366 11.414-11.506 11.4c-6.113 0-11.45-5.385-11.424-11.505c.014-6.12 5.38-11.427 11.492-11.4zm-244.55.067c6.192-.067 11.37 5.08 11.37 11.36c0 6.306-5.125 11.453-11.318 11.386c-6.26-.093-11.251-5.212-11.171-11.545c.066-6.093 5.032-11.094 11.119-11.201zm54.8 2.24c3.564.013 6.58 2.96 6.633 6.467c.054 3.547-2.883 6.586-6.433 6.666c-3.697.093-6.992-3.12-6.912-6.693c.093-3.44 3.216-6.453 6.712-6.44zm135.135 0c3.75.053 6.407 2.8 6.393 6.613c-.027 3.68-2.91 6.573-6.553 6.52c-3.617-.027-6.434-2.987-6.367-6.68c.04-3.787 2.777-6.493 6.527-6.453zm-152.18 7.16c4.232.134 7.783 3.867 7.676 8.053c-.107 4.186-3.87 7.854-8.035 7.8c-4.35-.04-8.022-3.947-7.808-8.347c.186-4.267 3.856-7.652 8.168-7.506zm169.438.014c4.191 0 7.928 3.547 8.074 7.707c.12 4.173-3.843 8.2-8.074 8.2c-4.311 0-7.781-3.454-7.861-7.827c-.067-4.68 3.23-8.08 7.861-8.08zm-142.436 6.707c2.83.067 5.353 2.587 5.38 5.387c.08 2.906-2.617 5.478-5.647 5.412c-2.896-.053-5.364-2.493-5.404-5.28c0-2.96 2.708-5.612 5.671-5.519zm115.356.266c2.99.053 5.179 2.32 5.139 5.32c-.054 2.973-2.39 5.225-5.327 5.172a5.282 5.282 0 0 1-5.166-5.373c.04-2.96 2.35-5.173 5.354-5.12zm88.967.933c7.5.027 13.321 5.92 13.281 13.426c0 7.373-6.046 13.494-13.373 13.547c-7.34.053-13.774-6.452-13.627-13.799c.16-7.36 6.245-13.214 13.719-13.174zm-293.44.053c7.528-.027 13.374 5.788 13.4 13.281c.014 7.467-5.884 13.507-13.265 13.547c-7.367.053-13.374-5.974-13.414-13.414c-.04-7.507 5.792-13.4 13.28-13.414zm250.344 3.934c5.045.2 9.222 4.68 9.049 9.693c-.214 5.147-4.938 9.626-9.983 9.373c-5.218-.267-9.303-4.8-9.09-10.106c.214-5.413 4.392-9.147 10.024-8.96zm-206.62.052c5.153.08 9.332 4.267 9.317 9.4c-.04 5.067-4.31 9.373-9.382 9.426c-5.18.054-9.69-4.533-9.543-9.68c.146-5.053 4.497-9.199 9.609-9.146zm32.247 2.895a6.458 6.458 0 0 1 6.219 6.506c-.027 3.6-3.055 6.56-6.672 6.48c-3.55-.053-6.527-3.187-6.434-6.72c.147-3.6 3.243-6.426 6.887-6.266zm141.674.08c3.537-.027 6.394 2.653 6.54 6.146c.134 3.56-2.855 6.692-6.405 6.72c-3.51.04-6.66-3.119-6.567-6.612c.067-3.44 2.922-6.214 6.432-6.254zm-128.701 10.133c2.869-.027 5.418 2.4 5.498 5.213c.093 2.8-2.362 5.4-5.205 5.52c-2.977.146-5.714-2.453-5.7-5.413c.014-2.813 2.51-5.28 5.407-5.32zm115.435.146c2.99 0 5.247 2.254 5.233 5.24c-.014 2.987-2.283 5.294-5.22 5.307c-2.856 0-5.258-2.4-5.273-5.28c0-2.946 2.31-5.267 5.26-5.267zm27.174 1.787c4.338 0 7.887 3.493 7.873 7.76c0 4.213-3.602 7.773-7.873 7.773a7.738 7.738 0 0 1-7.781-7.787c0-4.4 3.363-7.746 7.781-7.746zm-169.637.014c4.351.04 7.876 3.586 7.809 7.812c-.067 4.254-3.698 7.747-7.969 7.694c-4.338-.053-7.821-3.588-7.781-7.867c.067-4.32 3.564-7.692 7.941-7.64zm207.114 2.307c6.272.053 11.384 5.171 11.384 11.384c-.04 6.187-5.204 11.295-11.504 11.295c-6.26.014-11.492-5.04-11.585-11.226c-.107-6.294 5.218-11.533 11.705-11.453zm-244.457.105c6.406.014 11.225 4.973 11.158 11.387c-.067 6.386-5.046 11.173-11.506 11.066c-6.326-.107-11.156-5.173-10.983-11.613c.134-6.133 5.111-10.88 11.33-10.84zm189.695 7.32c3.47.04 6.26 2.814 6.326 6.334c.067 3.6-2.494 6.373-6.031 6.52c-3.697.16-6.647-2.56-6.727-6.24c-.067-3.653 2.815-6.627 6.432-6.614zm-134.92.041c3.337.094 6.286 3.093 6.312 6.426c.014 3.56-3.016 6.48-6.673 6.4c-3.697-.08-6.447-3.066-6.246-6.76c.2-3.412 3.177-6.172 6.607-6.066zm119.305 5.573c2.83-.054 5.299 2.347 5.379 5.267c.093 2.96-2.135 5.452-5.018 5.625c-2.776.16-5.38-2.186-5.566-5.053c-.2-3.08 2.215-5.786 5.205-5.84zm-103.957.107c2.79.053 5.325 2.612 5.298 5.399c-.053 2.813-2.601 5.32-5.418 5.28c-2.802-.012-5.311-2.586-5.285-5.4c.04-2.786 2.602-5.319 5.405-5.279zm-45.846 1.346c5.192.08 9.196 4.186 9.129 9.44c-.04 5.146-4.244 9.32-9.356 9.333c-5.031.027-9.315-4.24-9.369-9.347c-.053-5.334 4.23-9.533 9.596-9.426zm196.101 0c5.219.106 9.223 4.24 9.143 9.48c-.066 5.107-4.337 9.333-9.422 9.28c-5.045-.04-9.382-4.36-9.435-9.374c-.04-5.2 4.43-9.493 9.714-9.386zm-174.64 8.72c4.418.094 7.649 3.48 7.582 7.92c-.08 4.32-3.63 7.76-7.928 7.653c-4.31-.107-7.755-3.707-7.648-8c.106-4.32 3.616-7.652 7.994-7.573zm152.793.026c4.445-.08 7.822 3.175 7.888 7.601a7.751 7.751 0 0 1-7.62 7.932c-4.285.093-7.89-3.4-7.983-7.666c-.107-4.253 3.404-7.814 7.715-7.867zm-215.574.533c7.393.147 13.36 6.241 13.293 13.588c-.067 7.453-6.54 13.76-13.868 13.533c-7.34-.24-13.346-6.44-13.306-13.693c.067-7.507 6.327-13.575 13.88-13.428zm278.57 0c7.66.014 13.48 5.868 13.467 13.574c-.013 7.507-6.26 13.707-13.627 13.547c-7.26-.187-13.36-6.28-13.453-13.494c-.094-7.426 6.112-13.627 13.613-13.627zm-82.149 3.48c3.658-.093 6.7 2.774 6.74 6.374c.054 3.586-2.936 6.548-6.58 6.521c-3.723-.013-6.619-2.947-6.552-6.56c.054-3.44 2.869-6.255 6.392-6.334zm-114.673.014c3.536.04 6.3 2.787 6.34 6.293c.066 3.747-2.752 6.561-6.475 6.508c-3.537-.053-6.34-2.774-6.406-6.254c-.08-3.587 2.897-6.573 6.54-6.547zm98.484.694c3.23-.107 5.7 2.172 5.727 5.279c.013 2.907-2.284 5.254-5.26 5.361c-3.07.107-5.78-2.373-5.78-5.293c-.013-2.747 2.457-5.24 5.313-5.347zm-82.215.08c3.016.093 5.152 2.347 5.045 5.4c-.093 3.026-2.35 5.119-5.406 5.025c-3.003-.106-5.138-2.359-5.059-5.384v-.002c.108-3 2.405-5.133 5.42-5.04zm-69.137 8.76c6.447 0 11.413 4.8 11.52 11.16c.107 6.373-5.273 11.772-11.613 11.652c-6.34-.12-11.184-5.106-11.184-11.52c.014-6.493 4.804-11.293 11.277-11.293zm220.608.052c6.1.013 11.13 4.948 11.264 11.041c.147 6.16-5.005 11.399-11.264 11.479c-6.273.053-11.492-5.053-11.492-11.266c0-6.2 5.166-11.294 11.492-11.254zm-136.87 1.627c2.897-.013 5.712 2.747 5.499 5.613c-.24 3.187-2.162 5.068-5.285 5.4c-2.843.28-5.685-2.506-5.739-5.386c-.066-2.84 2.656-5.6 5.526-5.627zm53.159.147c2.87.08 5.167 2.533 5.113 5.466c-.053 2.92-2.51 5.348-5.326 5.268c-2.816-.067-5.191-2.574-5.111-5.467c.04-2.893 2.494-5.32 5.324-5.267zm-68.24 4.173c3.617.08 6.406 3.027 6.326 6.747c-.067 3.773-2.816 6.453-6.567 6.4c-3.764-.08-6.393-2.84-6.367-6.652c.054-3.654 2.99-6.548 6.608-6.495zm83.175 0c3.724-.106 6.875 3 6.834 6.707c-.053 3.547-3.029 6.44-6.646 6.44c-3.524-.027-6.607-3-6.674-6.48c-.053-3.44 2.99-6.56 6.486-6.667zm-124.605.307h.002c5.044.135 9.381 4.535 9.314 9.494c-.04 5.053-4.79 9.707-9.794 9.6c-5.152-.107-9.371-4.6-9.278-9.906c.054-5.506 4.125-9.32 9.756-9.188zm166.514.08c5.111.013 9.383 4.24 9.424 9.32c.013 5.014-4.313 9.401-9.344 9.495c-5.205.093-9.648-4.387-9.569-9.627c.08-5.12 4.297-9.214 9.489-9.188zm-92.438 1.016c2.666.108 5.171 2.553 5.272 5.29c.107 2.734-2.296 5.373-5.073 5.573c-2.882.2-5.686-2.345-5.793-5.252c-.093-2.786 2.256-5.386 5.059-5.6c.179-.014.357-.018.535-.011zm18.123.103c2.883.027 5.219 2.414 5.219 5.387c0 2.893-2.429 5.321-5.272 5.281c-2.802-.013-5.298-2.56-5.271-5.373c.014-2.84 2.468-5.308 5.324-5.295zm-69.601.469c4.43.147 7.606 3.492 7.552 8.012c-.04 4.386-3.43 7.866-7.754 7.92c-4.27.053-8.22-3.866-8.14-8.12c.067-4.346 3.884-7.932 8.342-7.812zm121.48.04c4.338.146 7.634 3.692 7.527 8.065c-.066 4.32-3.655 7.827-7.886 7.774c-4.271-.053-7.782-3.64-7.768-7.92c0-4.52 3.643-8.066 8.127-7.92zm-82.775 8.065c3.523.134 6.42 3.253 6.34 6.8c-.107 3.506-3.27 6.533-6.727 6.4c-3.59-.133-6.353-3.146-6.26-6.8c.107-3.626 3.097-6.546 6.647-6.4zm43.537.08c3.537-.08 6.62 2.988 6.605 6.561c-.013 3.413-2.883 6.346-6.273 6.44c-3.63.093-6.567-2.853-6.553-6.52c.013-3.52 2.764-6.374 6.22-6.48zm-21.836 3.628c3.577-.014 6.354 2.613 6.46 6.146c.134 3.627-2.777 6.666-6.394 6.666c-3.536.013-6.645-3.12-6.525-6.613c.093-3.454 2.909-6.16 6.459-6.2zm39.213 4.066c4.524.067 7.687 3.28 7.687 7.812c0 4.48-3.737 8.227-8.035 8.067c-4.177-.147-7.872-3.92-7.887-8.014c0-4.427 3.67-7.932 8.235-7.865zm-78.332.014c4.471-.08 7.836 3.105 7.982 7.545c.147 4.52-3.43 8.253-7.861 8.226c-4.231-.027-7.821-3.612-7.848-7.879c-.053-4.32 3.362-7.813 7.727-7.892zm-79.399 4.025c7.435 0 13.452 6.002 13.493 13.361c.026 7.267-6.086 13.507-13.387 13.614c-7.474.106-13.628-6.122-13.56-13.735c.066-7.533 5.9-13.267 13.454-13.24zm237.063.027c7.447-.053 13.507 5.881 13.56 13.254c.067 7.32-6.006 13.505-13.334 13.612c-7.247.093-13.519-6.08-13.586-13.373c-.093-7.32 5.966-13.44 13.36-13.493zM163.58 329.64c5.058.146 9.21 4.425 9.21 9.572c0 5.466-4.098 9.48-9.624 9.387c-5.125-.067-9.328-4.28-9.342-9.387c0-5.16 4.644-9.719 9.756-9.572zm121.094 0c5.232.106 9.409 4.545 9.289 9.879c-.12 5.24-4.218 9.133-9.543 9.08c-5.112-.04-9.382-4.267-9.436-9.32c-.04-5.147 4.578-9.733 9.69-9.64zm-148.162 2.213c6.22 0 11.398 5.186 11.398 11.425c0 6.2-5.232 11.467-11.398 11.467c-6.127 0-11.518-5.373-11.504-11.467c.013-6.133 5.351-11.425 11.504-11.425zm174.922.066c6.206 0 11.278 5.16 11.252 11.467c-.054 6.266-5.245 11.398-11.452 11.252v.002c-6.112-.147-10.998-5.135-11.039-11.268c-.04-6.293 5.032-11.44 11.239-11.453zm-73.967.84c4.244.067 7.767 3.72 7.74 7.972c-.053 4.347-3.535 7.775-7.873 7.721c-4.244-.026-7.876-3.707-7.822-7.88c.066-4.188 3.817-7.866 7.955-7.813zm-26.973.013c4.231-.04 7.765 3.534 7.78 7.854c0 4.373-3.403 7.826-7.727 7.84c-4.324.026-7.767-3.414-7.781-7.774c-.027-4.306 3.47-7.905 7.728-7.92zm45.31 11.625c5.513 0 9.503 4.014 9.45 9.561c-.053 5.213-4.565 9.707-9.65 9.547c-4.925-.16-9.382-4.64-9.461-9.533c-.08-5.107 4.39-9.548 9.662-9.575zm-63.515.108c5.218.08 9.194 4.16 9.154 9.414c-.026 5.12-4.256 9.359-9.314 9.373c-5.219.013-9.544-4.466-9.41-9.719c.147-5.173 4.325-9.148 9.57-9.068zm31.777 4.92c5.086.067 9.25 4.294 9.223 9.48c0 5.16-4.124 9.386-9.236 9.44c-5.246.053-9.65-4.427-9.53-9.68c.134-5.093 4.472-9.294 9.543-9.24zm55.883 5.28c6.353-.08 11.465 4.84 11.531 11.12c.107 6.32-4.857 11.4-11.183 11.467c-6.393.053-11.465-4.787-11.611-11.107c-.134-6.214 4.937-11.388 11.263-11.48zm-112.164.093c6.393-.013 11.29 4.92 11.264 11.307c-.04 6.346-5.004 11.2-11.424 11.12c-6.353-.08-11.186-5.094-11.053-11.507c.107-6.2 4.954-10.92 11.213-10.92zm-30.097 6.254c7.5-.04 13.386 5.746 13.453 13.226c.053 7.52-5.74 13.373-13.24 13.426c-7.475.054-13.48-5.8-13.587-13.213c-.093-7.333 5.94-13.386 13.374-13.44zm172.439.013c7.568 0 13.36 5.8 13.36 13.307c0 7.52-5.807 13.334-13.321 13.334c-7.488.014-13.4-5.867-13.426-13.307c-.013-7.453 5.913-13.348 13.387-13.334zm-66.842 5.506c6.38-.013 11.679 5.295 11.545 11.655c-.147 6.213-5.311 11.106-11.678 11.052c-6.26-.053-11.424-5.2-11.37-11.386c.04-6.12 5.27-11.306 11.503-11.32zm-38.678.147c6.42 0 11.278 4.907 11.211 11.32c-.04 6.413-4.965 11.24-11.412 11.147c-6.206-.08-11.01-4.946-11.05-11.12c-.027-6.413 4.872-11.347 11.251-11.347zm64.545 15.08c7.568-.053 13.506 5.72 13.573 13.187c.08 7.627-6.006 13.773-13.534 13.72c-7.354-.041-13.48-6.174-13.494-13.468c-.013-7.373 5.995-13.386 13.455-13.44zm-90.33.082c7.488.067 13.28 5.998 13.186 13.478c-.107 7.454-6.072 13.309-13.52 13.202c-7.46-.107-13.253-6.054-13.174-13.547c.08-7.467 5.994-13.226 13.508-13.133zm45.084 7.025c7.701-.026 13.509 5.8 13.494 13.506c-.013 7.547-6.219 13.746-13.6 13.586c-7.22-.147-13.374-6.265-13.52-13.478c-.134-7.334 6.125-13.587 13.626-13.614z\\\"/>\"\n    },\n    \"google-scholar\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M343.759 106.662V79.43L363.524 64h-213.89L20.476 176.274h85.656a82.339 82.339 0 0 0-.219 6.225c0 20.845 7.22 38.087 21.672 51.861c14.453 13.797 32.252 20.648 53.327 20.648c4.923 0 9.75-.368 14.438-1.024c-2.907 6.5-4.374 12.523-4.374 18.142c0 9.875 4.499 20.43 13.467 31.642c-39.234 2.67-68.061 9.732-86.437 21.163c-10.531 6.5-19 14.704-25.39 24.531c-6.391 9.9-9.578 20.515-9.578 31.962c0 9.648 2.062 18.336 6.219 26.062c4.156 7.726 9.578 14.07 16.312 18.984c6.718 4.968 14.469 9.101 23.219 12.469c8.734 3.344 17.406 5.718 26.061 7.062A167.052 167.052 0 0 0 180.555 448c13.469 0 26.953-1.734 40.547-5.187c13.562-3.485 26.28-8.642 38.171-15.493c11.86-6.805 21.515-16.086 28.922-27.718c7.39-11.68 11.094-24.805 11.094-39.336c0-11.016-2.25-21.039-6.75-30.14c-4.468-9.073-9.938-16.542-16.452-22.345c-6.501-5.813-13-11.155-19.516-15.968c-6.5-4.845-12-9.75-16.468-14.813c-4.485-5.046-6.735-10.054-6.735-14.984c0-4.921 1.734-9.672 5.216-14.265c3.455-4.61 7.674-9.048 12.61-13.306c4.937-4.25 9.875-8.968 14.796-14.133c4.922-5.147 9.141-11.827 12.61-20.008c3.485-8.18 5.203-17.445 5.203-27.757c0-13.453-2.547-24.46-7.547-33.314c-.594-1.022-1.218-1.803-1.875-3.022l56.907-46.672v17.119c-7.393.93-6.624 5.345-6.624 10.635V245.96c0 5.958 4.875 10.834 10.834 10.834h3.989c5.958 0 10.833-4.875 10.833-10.834V117.293c0-5.277.778-9.688-6.561-10.63zm-107.36 222.48c1.14.75 3.704 2.78 7.718 6.038c4.05 3.243 6.797 5.695 8.266 7.414a443.553 443.553 0 0 1 6.376 7.547c2.813 3.375 4.718 6.304 5.718 8.734c1 2.477 2.016 5.461 3.047 8.946a38.27 38.27 0 0 1 1.485 10.562c0 17.048-6.564 29.68-19.656 37.859c-13.125 8.18-28.767 12.274-46.938 12.274c-9.187 0-18.203-1.093-27.063-3.196c-8.843-2.116-17.311-5.336-25.39-9.601c-8.078-4.258-14.577-10.204-19.5-17.797c-4.938-7.64-7.407-16.415-7.407-26.25c0-10.32 2.797-19.29 8.422-26.906c5.594-7.625 12.938-13.391 22.032-17.315c9.063-3.946 18.25-6.742 27.562-8.398a157.865 157.865 0 0 1 28.438-2.555c4.47 0 7.936.25 10.405.696c.455.219 3.032 2.07 7.735 5.563c4.704 3.462 7.625 5.595 8.75 6.384zm-3.359-100.579c-7.406 8.86-17.734 13.288-30.953 13.288c-11.86 0-22.298-4.764-31.266-14.312c-9-9.523-15.422-20.328-19.344-32.43c-3.937-12.109-5.906-23.984-5.906-35.648c0-13.694 3.596-25.352 10.781-34.976c7.187-9.65 17.5-14.485 30.938-14.485c11.875 0 22.374 5.038 31.437 15.157c9.094 10.085 15.61 21.413 19.517 33.968c3.922 12.54 5.873 24.53 5.873 35.984c0 13.446-3.702 24.61-11.076 33.454z\\\"/>\",\n      \"width\": 384\n    },\n    \"google-scholar-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm140.695 64h178.24l-16.47 12.86v22.693c6.116.785 5.469 4.46 5.469 8.857v107.223c0 4.965-4.062 9.03-9.028 9.03h-3.324c-4.966 0-9.03-4.065-9.03-9.03V140.41c0-4.408-.64-8.086 5.522-8.861v-14.266l-47.424 38.893c.548 1.016 1.068 1.667 1.563 2.52c4.167 7.377 6.289 16.548 6.289 27.76c0 8.592-1.432 16.314-4.336 23.13c-2.89 6.817-6.407 12.384-10.508 16.674c-4.101 4.304-8.215 8.236-12.33 11.777c-4.113 3.548-7.629 7.247-10.508 11.088c-2.901 3.828-4.347 7.787-4.347 11.889c0 4.108 1.876 8.28 5.613 12.486c3.724 4.219 8.305 8.306 13.723 12.344c5.429 4.01 10.846 8.463 16.263 13.306c5.43 4.836 9.987 11.061 13.711 18.621c3.75 7.586 5.625 15.938 5.625 25.118c0 12.109-3.087 23.046-9.246 32.779c-6.172 9.693-14.219 17.429-24.101 23.1c-9.91 5.709-20.508 10.006-31.809 12.91c-11.328 2.877-22.565 4.322-33.79 4.322a139.28 139.28 0 0 1-21.421-1.666c-7.212-1.12-14.438-3.098-21.717-5.885c-7.291-2.806-13.75-6.25-19.35-10.39c-5.611-4.095-10.13-9.382-13.593-15.82c-3.464-6.44-5.184-13.68-5.184-21.72c0-9.538 2.657-18.385 7.983-26.634c5.325-8.19 12.382-15.026 21.158-20.442c15.313-9.525 39.336-15.41 72.031-17.636c-7.473-9.343-11.223-18.14-11.223-26.37c0-4.682 1.222-9.7 3.645-15.117a86.788 86.788 0 0 1-12.031.854c-17.563 0-32.396-5.71-44.44-17.207c-12.044-11.479-18.058-25.846-18.058-43.217c0-1.816.052-3.419.181-5.19H81.064L188.695 96zm31.38 38.334c-11.2 0-19.793 4.029-25.782 12.07c-5.988 8.02-8.984 17.735-8.984 29.147c0 9.72 1.64 19.616 4.921 29.707c3.269 10.085 8.622 19.09 16.122 27.025c7.473 7.956 16.171 11.926 26.054 11.926c11.016 0 19.623-3.69 25.795-11.072c6.145-7.37 9.23-16.674 9.23-27.88c0-9.544-1.626-19.536-4.894-29.986c-3.256-10.462-8.685-19.902-16.264-28.306c-7.552-8.432-16.303-12.631-26.199-12.631zm18.517 172.08c-8.035 0-15.94.712-23.7 2.13c-7.76 1.38-15.416 3.71-22.968 6.999c-7.579 3.27-13.698 8.075-18.36 14.43c-4.687 6.346-7.02 13.821-7.02 22.422c0 8.195 2.06 15.506 6.175 21.873c4.102 6.327 9.518 11.284 16.25 14.832c6.732 3.554 13.789 6.236 21.158 8c7.383 1.751 14.897 2.664 22.553 2.664c15.142 0 28.175-3.411 39.113-10.229c10.91-6.816 16.38-17.342 16.38-31.549c0-2.988-.416-5.932-1.237-8.802c-.86-2.904-1.704-5.39-2.538-7.454c-.833-2.025-2.421-4.467-4.765-7.279a368.29 368.29 0 0 0-5.315-6.289c-1.224-1.432-3.512-3.477-6.886-6.18c-3.345-2.713-5.48-4.405-6.432-5.03h-.002c-.938-.658-3.372-2.436-7.291-5.321c-3.919-2.911-6.066-4.454-6.445-4.637c-2.058-.37-4.946-.58-8.67-.58z\\\"/>\"\n    },\n    \"hal\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M286.415 8c-.757 6.622-.946 13.433-.946 20.055c-.19 54.018 21.002 104.726 59.41 142.945c39.828 39.639 92.238 59.41 144.742 59.41c4.825 0 9.743-.19 14.567-.568c-1.986-18.069-5.674-35.76-11.256-52.41c-40.206.946-80.413-13.812-110.78-43.896c-28.381-28.191-43.895-65.652-43.706-105.29c0-2.744.189-5.488.189-7.948c-16.65-5.865-34.151-10.122-52.22-12.298Zm-66.6.379c-17.88 2.554-35.004 7-51.464 13.054c23.461 75.776 65.654 145.498 123.74 203.394c56.95 56.762 124.496 96.78 196.394 120.43c6.244-16.366 11.068-33.394 13.811-51.274c-63.194-21.19-122.604-56.762-172.743-106.712C278.28 136.186 241.006 75.168 219.815 8.38ZM394.26 47.827c-7.568 9.177-11.825 20.623-11.825 32.638c-.284 13.812 5.204 26.772 14.948 36.516s22.514 15.136 36.326 15.136h.19c11.825 0 22.894-3.877 32.07-11.256c-18.636-28.948-43.139-54.019-71.709-73.034zM100.333 60.031C86.521 71.1 73.75 83.491 62.493 97.115L412.52 449.792c14.002-11.068 26.394-23.745 37.463-37.462zm-78.71 108.225A243.359 243.359 0 0 0 8.38 219.72c64.897 21.191 125.916 57.139 177.19 108.224c50.14 49.95 86.845 109.55 108.414 174.447c17.88-2.744 35.002-7.379 51.274-13.812c-23.935-73.979-65.275-141.808-122.225-198.38c-58.465-57.802-127.62-98.387-201.409-121.943Zm8.091 116.648a206.963 206.963 0 0 0-21.902.753c2.175 18.07 6.243 35.57 12.013 52.22c40.774-1.514 82.21 13.056 113.24 43.896c28.38 28.191 43.895 65.655 43.706 105.293c0 1.703 0 3.688-.189 5.486A239.366 239.366 0 0 0 228.992 504c.379-5.487.756-11.07.756-16.746c.095-53.828-20.906-104.724-59.315-142.943c-38.74-38.574-89.576-58.46-140.719-59.407Zm51.508 98.288c-12.203 0-23.745 4.258-33.016 12.015c19.204 28.57 44.275 52.882 73.413 71.33c7.19-8.894 11.067-20.057 11.067-31.693c0-13.812-5.203-26.866-14.947-36.516c-9.744-9.744-22.514-15.136-36.326-15.136z\\\"/>\",\n      \"width\": 512\n    },\n    \"hal-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm195.623 64c11.657 1.404 22.948 4.15 33.69 7.934c0 1.586-.122 3.357-.122 5.127c-.122 25.573 9.888 49.741 28.198 67.93c19.591 19.408 45.531 28.93 71.47 28.32c3.601 10.741 5.98 22.155 7.262 33.812a121 121 0 0 1-9.398.367c-33.874 0-67.686-12.755-93.381-38.328c-24.78-24.657-38.452-57.372-38.33-92.223c0-4.272.123-8.667.611-12.939zm-42.969.244c13.672 43.09 37.719 82.456 70.8 115.414c32.347 32.226 70.676 55.176 111.446 68.848c-1.77 11.535-4.882 22.521-8.91 33.08c-46.385-15.258-89.963-41.077-126.705-77.697c-37.475-37.353-64.697-82.335-79.834-131.223c10.62-3.906 21.668-6.774 33.203-8.422zm112.547 25.451c18.432 12.268 34.24 28.443 46.264 47.12c-5.92 4.76-13.062 7.261-20.692 7.261h-.12c-8.912 0-17.152-3.479-23.438-9.765c-6.287-6.287-9.826-14.648-9.643-23.56c0-7.75 2.746-15.135 7.63-21.056zm-189.63 7.873l225.58 227.29c-7.142 8.85-15.138 17.028-24.17 24.17L99.155 153.493c7.263-8.789 15.503-16.785 24.414-23.926zm-50.782 69.823c47.606 15.197 92.223 41.382 129.941 78.673c36.743 36.499 63.414 80.258 78.856 127.987c-10.498 4.15-21.545 7.14-33.08 8.91c-13.916-41.87-37.598-80.32-69.945-112.545c-33.08-32.958-72.448-56.15-114.317-69.822a157.012 157.012 0 0 1 8.545-33.203zm5.22 75.255c32.996.611 65.793 13.442 90.786 38.329c24.78 24.657 38.329 57.494 38.268 92.222c0 3.662-.243 7.263-.487 10.803a154.427 154.427 0 0 1-33.812-7.387c.122-1.16.12-2.44.12-3.539c.123-25.573-9.886-49.741-28.196-67.93c-20.02-19.896-46.754-29.296-73.06-28.32a162.022 162.022 0 0 1-7.75-33.69c4.7-.411 9.418-.575 14.132-.488zm33.231 63.413h.123c8.911 0 17.15 3.479 23.436 9.765c6.286 6.226 9.644 14.648 9.644 23.559c0 7.507-2.502 14.71-7.14 20.447c-18.799-11.901-34.974-27.587-47.364-46.02c5.982-5.004 13.428-7.751 21.301-7.751z\\\"/>\"\n    },\n    \"hypothesis\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M95.997 64c-17.648 0-31.998 14.327-31.998 31.998v320.006c0 17.647 14.326 31.998 31.998 31.998h111.06L256.002 512l48.94-63.998h111.06c17.647 0 31.998-14.327 31.998-31.998V95.998C448.001 78.35 433.673 64 416.003 64zm32.001 64h48.13v112.032s16.045-31.984 47.871-31.984c32.003 0 64.436 15.954 64.436 65.695v110.26h-48.132v-95.944c0-26.06-16.302-36.06-32.304-32.055c-16 3.999-31.871 20.995-31.871 56.045v71.954h-48.13ZM368 320.002c17.676 0 32.002 14.278 32.002 31.894c0 17.618-14.326 31.895-32.002 31.895c-17.671 0-31.996-14.277-31.996-31.895c0-17.616 14.325-31.894 31.996-31.894z\\\"/>\",\n      \"width\": 512\n    },\n    \"hypothesis-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm50.283 64h251.434c13.884 0 25.14 11.275 25.14 25.14v251.434c0 13.884-11.275 25.143-25.14 25.143h-87.262L224.002 448l-38.457-50.283H98.283c-13.884 0-25.14-11.278-25.14-25.143V121.141C73.143 107.256 84.417 96 98.283 96zm25.145 50.285v201.147h37.816v-56.536c0-27.539 12.469-40.895 25.041-44.037c12.573-3.146 25.381 4.712 25.381 25.188v75.385h37.818v-86.633c0-39.083-25.482-51.617-50.627-51.617c-25.006 0-37.613 25.129-37.613 25.129v-88.026h-37.816zM312 297.146c-13.885 0-25.14 11.218-25.14 25.06c0 13.841 11.255 25.06 25.14 25.06c13.889 0 25.145-11.219 25.145-25.06c0-13.842-11.256-25.06-25.145-25.06z\\\"/>\"\n    },\n    \"ideas-repec\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m252.879 446.324l-94.223 25.247c-6.713 1.798-13.676-2.222-15.475-8.935c-1.798-6.712 2.222-13.676 8.934-15.474l94.223-25.247c6.713-1.798 13.676 2.221 15.475 8.934c1.8 6.713-2.222 13.676-8.934 15.475zm-43.626-289.558c-.844 11.486-7.341 17.96-17.428 17.796c-10.043-.162-17.352-7.045-17.111-17.526c.234-10.198 6.628-16.897 17.505-16.778c10.87.117 16.258 6.54 17.034 16.508zm120.795-38.71C292.565 56.148 218.325 26.069 149.354 46.22C88.995 63.856 49.64 103.71 35.33 165.003c-14.164 60.666 3.466 112.846 48.085 156.545c10.464 10.249 20.085 22.663 25.984 35.91c5.914 13.278 7.81 17.43 22.215 13.944c20.006-4.841 39.744-10.787 59.746-15.646c10.254-2.491 14.15-8.216 14.082-18.553c-.274-41.72-.182-83.443-.03-125.164c.033-9.444-2.935-17.22-13.096-17.456c-10.286-.239-13.435 7.277-13.349 16.905c.238 27.049.072 54.1.07 81.15c-.001 43.515 0 43.515-42.787 49.767c-16.266-18.638-31.078-35.392-45.653-52.351c-52.31-60.866-42.744-150.842 22.543-197.443c46.904-33.481 97.29-35.344 147.525-7.075c46.644 26.25 72.02 80.33 65.294 132.645c-4.493 34.948-21.181 62.845-45.933 86.826c-14.938 14.473-28.55 30.055-33.45 50.982c-2.292 9.788-7.78 14.643-17.262 16.98c1.772-1.647-102.202 27.486-102.202 27.486c-6.578 1.762-10.517 8.586-8.754 15.163l.271 1.017c1.763 6.577 8.586 10.517 15.164 8.755c0 0 119.3-32.058 120.864-32.501c11.048-3.05 17.061-10.915 17.313-22.141c.376-16.759 7.658-29.803 19.508-40.938c6.344-5.962 12.66-11.977 18.63-18.306c49.276-52.263 57.408-131.562 19.94-193.449z\\\"/>\",\n      \"width\": 384\n    },\n    \"ideas-repec-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.766 64.004c40.952-.298 80.367 21.271 102.492 57.814c27.754 45.843 21.731 104.582-14.77 143.295c-4.422 4.689-9.101 9.144-13.8 13.56c-8.778 8.248-14.173 17.912-14.452 30.325c-.186 8.316-4.64 14.142-12.824 16.4c-1.159.329-89.53 24.077-89.53 24.077c-4.872 1.305-9.926-1.615-11.232-6.487l-.2-.752c-1.306-4.872 1.613-9.927 6.486-11.232c0 0 77.017-21.58 75.705-20.36c7.023-1.73 11.089-5.327 12.787-12.578c3.63-15.502 13.712-27.044 24.777-37.765c18.335-17.764 30.695-38.427 34.024-64.315c4.982-38.752-13.814-78.812-48.366-98.256c-37.21-20.94-74.534-19.56-109.277 5.24c-48.361 34.52-55.448 101.169-16.7 146.255c10.797 12.562 21.769 24.973 33.817 38.779c31.695-4.632 31.694-4.632 31.695-36.865c.002-20.037.124-40.076-.052-60.112c-.064-7.131 2.269-12.698 9.888-12.521c7.527.175 9.725 5.934 9.7 12.93c-.112 30.904-.18 61.81.023 92.714c.05 7.658-2.836 11.897-10.432 13.743c-14.816 3.599-29.436 8.004-44.255 11.59c-10.671 2.582-12.075-.493-16.456-10.329c-4.37-9.812-11.496-19.008-19.248-26.6c-33.05-32.37-46.109-71.022-35.617-115.96c10.6-45.4 39.751-74.924 84.461-87.987a114.66 114.66 0 0 1 31.356-4.603zm.396 74.262c8.052.086 12.043 4.844 12.617 12.228c-.625 8.508-5.436 13.303-12.908 13.182c-7.44-.12-12.854-5.219-12.676-12.983c.174-7.554 4.91-12.515 12.967-12.427zm42.879 208.324c3.982.165 7.59 2.887 8.672 6.928c1.333 4.972-1.645 10.13-6.617 11.462L199.3 415.682c-4.973 1.332-10.13-1.645-11.463-6.618c-1.332-4.972 1.645-10.13 6.617-11.462L264.25 378.9a9.291 9.291 0 0 1 2.791-.31z\\\"/>\"\n    },\n    \"ieee\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m494.415 240.764l-1.337-.22c-42.004-28.95-81.141-61.694-118.012-98.837L334.319 98.58c-16.508-18.539-32.547-39.078-47.81-58.668l-18.544-26.624c-2.273-1.403-5.107-3.727-7.618-4.407c-5.468-2.402-11.366.502-15.828 3.932l-33.556 44.28C157.13 124.641 93.407 187.717 23.884 236.065c-5.5 4.351-13.669 8.597-15.37 15.769c-1.824 6.449 1.49 11.771 5.444 15.781c55.672 38.852 108.899 84.976 156.275 137.577c8.41 8.95 15.227 17.852 23.454 26.257c13.857 18.682 30.134 37.512 42.873 57.555c3.995 4.229 4.68 11.183 10.926 13.245c4.89 1.715 10.927 2.88 15.593 0l4.638-4.72C325.321 414.855 398.376 340.6 480 280.65c8.171-7.39 23.777-10.142 24-23.861c-.583-6.33-4.22-12.566-9.585-16.024zm-55.765 22.118c-9.296 23.543-28.182 42.31-44.698 62.87c-35.73 38.965-73.42 76.67-115.613 106.746c-8.533 6.116-20.046 11.764-30.274 6.91c-31.058-16.47-57.247-43.452-84.43-68.037c-31.526-29.616-63.162-64.102-87.057-100.175c-3.553-5.06-4.553-11.305-4.45-17.98c3.071-12.452 11.493-22.7 19.46-33.196c28.233-36.457 62.816-71.035 97.74-102.622c.805-.808 2.295-2.529 3.561-3.352c14.996-13.14 29.897-24.77 45.616-36.2c16.376-12.914 36.983-2.19 50.761 9.686c14.432 11.177 29.465 23.84 42.656 36.783l2.4 1.396c36.536 34.344 70.468 72.515 98.341 112.869c4.52 7.023 8.513 14.984 5.987 24.302zm-15.8-20.412c-36.073-52.883-83.416-99.714-133.583-140.629c-12.976-9.234-28.001-25.394-44.747-13.834c-52.001 36.406-102.05 85.782-142.348 136.136c-8.204 12.232-22.545 23.882-16.04 40.126c4.66 11.992 15.125 20.658 21.825 31.233c39.52 48.1 86.142 92.947 134.862 129.02c21.398 13.855 36.648-8.511 53.26-18.752c34.038-27.244 65.536-60.312 95.364-92.48v-.798c11.962-14.649 24.58-29.072 33.932-44.876c4.078-7.724 2.023-18.32-2.525-25.146zM250.555 135.96l4.541-14.763h.587a3359.057 3359.057 0 0 0 29.008 80.822l-20.026.345l-.449 2.452l2.974 72.473v1.177c-7.421 1.281-16.514.913-23.797.19l-.575-.784l3.33-74.72v-.547c-5.597-.588-12.655 0-18.354-.588l22.762-66.058zm-11.821 240.948c1.938-26.599 2.273-51.156 3.631-77.69c9.22.922 17.187.583 25.602.248l.581 3.53l3.303 74.153c-11.055 1.629-22.75.716-33.116-.241zm83.884-92.439c-47.804 15.089-107.913 14.4-153.192-5.812c-8.192-3.983-18.544-10.241-21.278-19.928c-2.07-17.739 16.711-27.54 29.477-34.025c7.512-3.317 15.124-7.01 23.455-7.478c7.717 5.784 15.81 10.382 23.768 15.579c-15.487 4.167-34.031 7.739-41.2 24.89c1.251 13.032 15.828 17.171 25.93 20.396c36.569 9.829 76.022 8.568 111.087-4.36c6.61-3.932 17.074-8.654 16.165-18.34c-1.161-10.363-12.869-14.976-21.047-18.2c-5.028.693-9.806 1.842-14.466 3.352c-2.49-7.165-4.644-14.437-7.632-21.332c15.508 4.154 30.967 8.398 46.977 11.305v.326c-3.282.348-6.925 1.49-10.093 2.758v.574c9.087 4.635 21.733 12.255 21.86 24.358c-2.165 14.649-18.01 21.33-29.81 25.937z\\\"/>\",\n      \"width\": 512\n    },\n    \"ieee-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176.125 64a6.743 6.743 0 0 1 2.68.568c1.62.44 3.447 1.94 4.914 2.844l11.965 17.178c9.846 12.639 20.195 25.889 30.845 37.85l26.287 27.822c23.788 23.963 49.037 45.09 76.137 63.767l.863.14c3.462 2.232 5.808 6.257 6.184 10.34c-.144 8.852-10.213 10.627-15.484 15.395c-52.661 38.678-99.793 86.582-136.957 139.922l-2.993 3.045c-3.01 1.858-6.903 1.106-10.058 0c-4.03-1.33-4.472-5.816-7.049-8.545c-8.218-12.93-18.72-25.08-27.66-37.133c-5.308-5.422-9.708-11.164-15.133-16.94c-30.565-33.935-64.905-63.693-100.822-88.759c-2.55-2.587-4.69-6.02-3.512-10.182c1.097-4.626 6.368-7.366 9.916-10.173c44.853-31.193 85.965-71.886 120.695-115.465l21.65-28.569c2.16-1.659 4.838-3.128 7.532-3.105zm-.926 41.275c-3.617.068-7.184 1.182-10.486 3.786c-10.141 7.374-19.755 14.877-29.43 23.355c-.817.53-1.778 1.643-2.297 2.164c-22.532 20.378-44.844 42.687-63.058 66.207c-5.14 6.772-10.573 13.382-12.555 21.416c-.067 4.307.579 8.337 2.871 11.602c15.416 23.273 35.826 45.521 56.166 64.629c17.537 15.86 34.433 33.268 54.47 43.894c6.6 3.131 14.027-.513 19.532-4.459c27.221-19.404 51.538-43.728 74.59-68.867c10.655-13.264 22.84-25.373 28.838-40.563c1.63-6.01-.948-11.146-3.863-15.677c-17.983-26.035-39.876-50.662-63.448-72.819l-1.547-.902c-8.51-8.35-18.208-16.52-27.52-23.73c-6.11-5.268-14.305-10.185-22.263-10.036zm1.285 7.752c7.677.066 14.7 7.048 20.979 11.516c32.365 26.397 62.908 56.61 86.182 90.728c2.934 4.405 4.26 11.24 1.628 16.223c-6.033 10.197-14.175 19.503-21.892 28.953v.514c-19.244 20.754-39.564 42.088-61.524 59.664c-10.717 6.607-20.556 21.038-34.36 12.1c-31.433-23.273-61.511-52.208-87.009-83.24c-4.322-6.823-11.075-12.413-14.08-20.15c-4.197-10.48 5.055-17.996 10.348-25.888c25.999-32.486 58.289-64.342 91.838-87.83c2.7-1.864 5.332-2.611 7.89-2.59zm-1.068 24.004l-2.928 9.524l-14.685 42.617c3.677.38 8.23 0 11.842.379v.353l-2.149 48.207l.371.506c4.699.466 10.564.704 15.352-.123v-.76L229.3 222.98l.289-1.583l12.92-.222a2167.06 2167.06 0 0 1-18.715-52.143h-.379zm-34.848 61.953c-5.374.302-10.286 2.685-15.132 4.825c-8.236 4.184-20.354 10.508-19.018 21.953c1.764 6.249 8.443 10.286 13.728 12.855c29.213 13.04 67.991 13.485 98.833 3.75h.001c7.614-2.972 17.835-7.283 19.23-16.734c-.08-7.809-8.238-12.724-14.1-15.715v-.37c2.043-.818 4.394-1.554 6.511-1.778v-.211c-10.33-1.875-20.303-4.613-30.308-7.293c1.927 4.448 3.317 9.138 4.923 13.761a54.098 54.098 0 0 1 9.334-2.162c5.276 2.08 12.83 5.057 13.578 11.742c.587 6.25-6.165 9.296-10.43 11.832c-22.622 8.34-48.074 9.154-71.667 2.813c-6.517-2.08-15.923-4.75-16.73-13.158c4.625-11.065 16.59-13.37 26.581-16.059c-5.134-3.353-10.355-6.32-15.334-10.05zm26.635 52.899c-.876 17.118-1.091 32.962-2.342 50.123c6.688.617 14.234 1.205 21.366.154l-2.131-47.84l-.375-2.277c-5.43.216-10.57.434-16.518-.16z\\\"/>\"\n    },\n    \"impactstory\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M485.437 284.52c-2.4-9.06-4.88-18.42-5-27.5c-.103-8.64 2.14-17.74 4.32-26.54c3-12.3 6.14-25.02 3.04-36.58c-3.1-11.6-12.16-21.02-20.92-30.14c-6.28-6.559-12.8-13.32-17.02-20.86c-4.46-7.94-7-17.26-9.44-26.28c-3.4-12.58-6.6-24.44-14.5-32.62c-8.12-8.42-20.58-12.24-32.64-16c-8.76-2.66-17.8-5.42-25.32-10c-7.56-4.58-14.24-11.36-20.72-17.92c-8.82-8.92-17.96-18.18-29.14-21.46c-3.32-.96-6.82-1.42-10.78-1.42c-8.12 0-16.84 2.08-25.3 4.02c-8.74 2.06-17.78 4.14-26.48 4.14l-.54-.04c-8.52-.08-17.46-2.4-26.1-4.64c-8.841-2.3-18-4.68-26.661-4.68c-3.7 0-7.02.42-10.22 1.26c-11.68 3.1-21.12 12.42-30.24 21.36c-6.36 6.32-12.92 12.78-20.26 17.14c-7.64 4.52-16.74 7.28-25.52 9.92c-12.6 3.82-24.52 7.46-32.52 15.78c-8.04 8.38-11.34 21-14.54 33.18c-2.28 8.9-4.68 18.12-8.94 25.86c-4.22 7.7-10.66 14.68-16.92 21.36c-8.56 9.24-17.46 18.78-20.26 30.18c-2.74 11.04.4 22.9 3.74 35.46c2.38 9.04 4.88 18.38 4.98 27.48c.098 8.64-2.14 17.76-4.3 26.54c-3.02 12.32-6.14 25.02-3.04 36.58c3.08 11.56 12.14 21.04 20.9 30.14c6.3 6.54 12.8 13.32 17 20.86c4.48 7.94 7.02 17.24 9.46 26.3c3.4 12.56 6.62 24.4 14.48 32.58c8.14 8.46 20.6 12.26 32.66 15.98c8.76 2.7 17.82 5.48 25.32 10.06c7.56 4.58 14.26 11.34 20.7 17.88c8.84 8.98 18 18.22 29.16 21.48c3.3.94 6.8 1.4 10.76 1.4c8.12 0 16.86-2.02 25.3-3.96c8.76-2.08 17.8-4.16 26.5-4.16h.58c8.5.124 17.46 2.42 26.08 4.64c8.82 2.34 17.98 4.7 26.66 4.7c3.7 0 7.021-.4 10.2-1.24c11.7-3.16 21.12-12.42 30.24-21.42c6.36-6.26 12.96-12.72 20.26-17.08c7.66-4.52 16.76-7.3 25.52-9.96c12.6-3.82 24.5-7.42 32.52-15.76c8.04-8.44 11.34-21 14.52-33.2c2.32-8.86 4.72-18.06 8.96-25.84c4.22-7.7 10.7-14.64 16.92-21.36c8.56-9.22 17.46-18.76 20.3-30.16c2.72-11.04-.42-22.9-3.76-35.46zm-229.44 179.92c-112.24 0-203.2-93.34-203.2-208.46c0-115.08 90.96-208.42 203.2-208.42s203.201 93.34 203.201 208.42c0 115.12-90.961 208.46-203.2 208.46zm.04-395.46c-103.28 0-187.02 83.74-187.02 187.001c0 103.3 83.741 187.04 187.02 187.04c103.3 0 187.04-83.74 187.04-187.04c0-103.26-83.74-187-187.04-187zm-25.96 66.42c0-4.4 3.52-7.92 7.88-7.92h39.46c4.34 0 7.88 3.54 7.88 7.92v33.5c0 4.4-3.52 7.88-7.88 7.88h-39.46c-4.36 0-7.88-3.48-7.88-7.88zm84.82 232.66c0 4.38-3.56 7.921-7.9 7.921h-98.6c-4.36 0-7.9-3.54-7.9-7.92V332.6c0-4.4 3.54-7.9 7.9-7.9h21.68v-71.04h-21.68c-4.36 0-7.9-3.52-7.9-7.88v-33.5c0-4.4 3.54-7.9 7.9-7.9h69.04c4.34 0 7.88 3.5 7.88 7.9v112.4h21.7c4.34 0 7.9 3.5 7.9 7.9v35.48z\\\"/>\",\n      \"width\": 512\n    },\n    \"impactstory-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm140.158 64c5.774 0 11.88 1.586 17.774 3.12c5.76 1.492 11.718 3.04 17.398 3.093l.361.027c5.8 0 11.826-1.386 17.653-2.76c5.64-1.293 11.454-2.68 16.867-2.68c2.64 0 4.974.306 7.187.946c7.454 2.187 13.546 8.36 19.426 14.307c4.32 4.373 8.774 8.894 13.815 11.947c5.012 3.053 11.039 4.895 16.879 6.668c8.04 2.506 16.346 5.052 21.76 10.666c5.266 5.453 7.4 13.36 9.667 21.746c1.628 6.013 3.32 12.226 6.293 17.52c2.813 5.026 7.159 9.535 11.346 13.908c5.84 6.08 11.88 12.358 13.947 20.092c2.067 7.706-.027 16.186-2.027 24.386c-1.453 5.867-2.948 11.934-2.879 17.694c.08 6.053 1.734 12.294 3.334 18.334h-.002c2.227 8.373 4.32 16.279 2.506 23.638c-1.893 7.6-7.827 13.961-13.533 20.108c-4.146 4.48-8.466 9.107-11.28 14.24c-2.827 5.187-4.426 11.32-5.972 17.227c-2.12 8.133-4.32 16.506-9.68 22.132c-5.346 5.56-13.281 7.962-21.682 10.508c-5.839 1.774-11.904 3.626-17.011 6.639c-4.868 2.907-9.268 7.213-13.508 11.387c-6.08 6-12.36 12.174-20.16 14.28c-2.12.56-4.333.827-6.8.827c-5.786 0-11.893-1.573-17.773-3.133c-5.746-1.48-11.72-3.011-17.386-3.094h-.387c-5.8 0-11.828 1.387-17.668 2.774c-5.627 1.293-11.452 2.64-16.865 2.64c-2.64 0-4.974-.307-7.174-.933c-7.44-2.173-13.546-8.333-19.44-14.32c-4.293-4.36-8.76-8.867-13.8-11.92c-5-3.053-11.04-4.908-16.88-6.707c-8.039-2.48-16.346-5.015-21.773-10.655c-5.24-5.453-7.387-13.345-9.654-21.718c-1.626-6.04-3.32-12.24-6.307-17.534c-2.8-5.026-7.133-9.548-11.334-13.908c-5.84-6.066-11.878-12.385-13.931-20.092c-2.067-7.706.012-16.173 2.025-24.386c1.44-5.854 2.933-11.934 2.867-17.694c-.066-6.066-1.733-12.293-3.32-18.32c-2.227-8.373-4.319-16.28-2.492-23.64c1.867-7.6 7.799-13.96 13.506-20.12c4.173-4.453 8.466-9.107 11.28-14.24c2.839-5.16 4.44-11.307 5.96-17.24c2.133-8.12 4.333-16.533 9.693-22.12c5.334-5.546 13.28-7.974 21.68-10.52c5.853-1.76 11.92-3.6 17.014-6.614c4.893-2.907 9.265-7.212 13.506-11.426c6.08-5.96 12.373-12.173 20.16-14.24c2.133-.56 4.347-.84 6.814-.84zm35.84 21.04c-74.827 0-135.467 62.226-135.467 138.946c0 76.747 60.64 138.975 135.467 138.975c74.827 0 135.467-62.228 135.467-138.975c0-76.72-60.64-138.947-135.467-138.947zm.027 14.28c68.866 0 124.694 55.828 124.694 124.668c0 68.867-55.828 124.694-124.694 124.694c-68.853 0-124.68-55.827-124.68-124.694c0-68.84 55.827-124.668 124.68-124.668zm-12.054 39a5.25 5.25 0 0 0-5.252 5.28v22.334a5.229 5.229 0 0 0 5.252 5.254h26.306a5.23 5.23 0 0 0 5.254-5.254V175.6c0-2.92-2.36-5.28-5.254-5.28h-26.306zm-19.705 51.268a5.252 5.252 0 0 0-5.268 5.266v22.333c0 2.907 2.36 5.252 5.268 5.252h14.453v47.362h-14.453a5.252 5.252 0 0 0-5.268 5.265v23.641c0 2.92 2.36 5.281 5.268 5.281h65.732c2.893 0 5.266-2.361 5.266-5.281h.013v-23.652a5.26 5.26 0 0 0-5.265-5.268h-14.467v-74.933a5.249 5.249 0 0 0-5.254-5.266h-46.025z\\\"/>\"\n    },\n    \"inaturalist\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M169.41 64c2.018 14.334 9.007 36.64 14.437 50.22c5.932 14.835 12.377 28.928 23.53 40.709l33.177 24.817c14.678 11.027 28.865 22.975 41.85 35.96c2.814 2.814 11.738 13.569 15.473 13.14c4.164-.47 3.39-8.077 3.359-11.048c-.178-15.265-8.621-37.613-15.432-51.266c-8.998-18.037-19.68-35.646-33.836-50.178c-10.253-10.525-27.098-22.557-39.663-30.435C203.161 80.185 179.16 65.83 169.41 64ZM7.241 107.942c1.203 13.36 9.74 23.331 18.832 32.434c15.537 15.557 31.115 25.298 49.173 37.32c7.272 4.833 24.985 16.425 32.434 19.177c-7.753 2.207-11.226.094-18.832 0c-12.294-.136-23.708.753-35.573 4.185c3.63 9.49 11.687 17.085 18.833 24.053c18.382 17.922 56.298 36.754 81.607 41.86l-18.833 2.385l-32.433 5.985c3.076 7.857 12.711 17.483 18.393 24.064c25.35 29.357 50.795 46.495 90.416 46.034l26.156-2.092c4.017-.042 11.53-.618 13.026 4.3c1.014 3.316-2.731 8.788-4.562 11.393c-4.896 6.947-16.07 20.308-22.065 26.115c-24.325 23.54-63.884 45.543-98.347 47.122c3.358 4.395 11.571 5.765 16.74 7.345c13.727 4.227 34.871 8.182 49.173 8.349c18.79.22 37.08-.743 55.451-5.106c64.114-15.223 112.576-56.486 139.872-116.258c16.583-36.315 15.485-76.313 29.39-105.67c4.435-9.375 8.819-15.621 16.97-22.17c2.343-1.894 8.558-5.504 7.595-9.02c-.868-3.159-6.926-4.11-9.688-4.75c-8.433-1.935-20.705-3.807-29.295-3.818h-14.647c-25.006.293-48.515 13.246-64.03 32.434l-17.473 25.11c-2.26 2.929-5.325 6.957-9.52 6.413c-3.359-.45-7.084-4.164-9.417-6.434l-15.986-16.542c-17.284-17.733-37.592-33.375-58.297-46.903c-47.133-30.77-101.684-50.47-156.936-60.43l-48.127-6.885zm372.462 94.633c13.727-1.34 14.647 15.327 4.185 17.89c-9.908 2.438-17.514-12.607-4.185-17.89z\\\"/>\"\n    },\n    \"inaturalist-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm130.508 64c8.126 1.526 28.126 13.488 35.746 18.266c10.471 6.565 24.508 16.592 33.053 25.363c11.796 12.11 20.699 26.783 28.197 41.814c5.676 11.378 12.711 30 12.86 42.721c.025 2.476.67 8.815-2.8 9.207c-3.112.358-10.549-8.604-12.894-10.95c-10.82-10.819-22.643-20.776-34.875-29.966l-27.647-20.682c-9.294-9.817-14.665-21.56-19.609-33.923c-4.525-11.317-10.348-29.905-12.031-41.85zm-135.14 36.62l40.107 5.735c46.043 8.3 91.501 24.718 130.779 50.36c17.254 11.273 34.177 24.308 48.58 39.086l13.322 13.783c1.945 1.892 5.05 4.988 7.848 5.363c3.496.454 6.05-2.904 7.933-5.345l14.561-20.924c12.93-15.99 32.52-26.785 53.357-27.03h12.207c7.159.01 17.385 1.571 24.413 3.184c2.301.532 7.35 1.324 8.074 3.957c.802 2.93-4.377 5.938-6.33 7.516c-6.792 5.458-10.446 10.664-14.143 18.476c-11.587 24.465-10.67 57.796-24.49 88.059c-22.747 49.81-63.133 84.195-116.56 96.88c-15.31 3.636-30.55 4.44-46.21 4.257c-11.918-.14-29.537-3.437-40.976-6.96c-4.307-1.316-11.153-2.457-13.951-6.119c28.719-1.316 61.686-19.652 81.957-39.27c4.995-4.838 14.306-15.972 18.386-21.76c1.526-2.172 4.647-6.731 3.801-9.495c-1.247-4.098-7.505-3.619-10.853-3.584l-21.797 1.744c-33.018.384-54.222-13.898-75.348-38.363c-4.734-5.484-12.763-13.505-15.326-20.053l27.027-4.986l15.694-1.988c-21.09-4.255-52.687-19.948-68.006-34.883c-5.955-5.807-12.668-12.137-15.694-20.045c9.887-2.86 19.399-3.602 29.643-3.488c6.339.078 9.235 1.84 15.695 0c-6.207-2.293-20.97-11.953-27.029-15.98c-15.048-10.019-28.03-18.136-40.976-31.1c-7.577-7.586-14.693-15.894-15.696-27.028zm311.427 78.798c-.337.006-.684.026-1.041.06c-11.108 4.403-4.77 16.942 3.486 14.91c8.446-2.069 7.991-15.168-2.445-14.97z\\\"/>\"\n    },\n    \"inpn\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M223.24 448c22.64-23.288 46.237-47.526 69.757-70.731c28.392-28.498 56.79-57.058 82.941-87.63c24.983-29.565 47.817-63.037 53.37-102.234c2.36-13.844 1.5-28.175-2.247-41.672c-5.91-23.946-19.088-46.079-39.244-60.664c-16.575-12.56-37.273-18.756-57.573-20.823c-41.45.81-82.131 23.985-101.307 61.179l-5.18 8.663l-5.343-8.56c-8.666-17.89-23.92-31.52-39.466-43.357c-10.268-8.873-23.109-12.304-35.879-15.713c-14.18-3.76-29.39-2.479-43.855-.933c-15.516 3.692-30.669 9.882-42.027 21.449c-13.966 11.385-26.24 25.833-31.732 43.238c-13.413 31.688-9.078 68.539 5.336 99.13c27.443 54.283 73.032 95.4 114.724 138.5c19.985 20.16 40.132 40.206 59.663 60.776c5.619 6.818 12.966 12.093 18.063 19.382zm-10.213-197.957c34.167-32.916 66.976-67.279 101.12-100.17c14.335-9.795 24.137 9.598 33.658 17.455c10.896 11.842-4.965 22.442-12.711 30.687c-37.867 37.76-75.526 75.742-113.524 113.358c-12.898 9.048-22.1-6.829-30.62-14.341c-18.08-18.639-37.448-36.202-54.517-55.684c-5.685-14.735 12.195-22.354 19.839-32.137c12.6-9.904 22.506 7.085 31.032 14.623c8.488 8.814 17.695 17.01 25.723 26.21z\\\"/>\"\n    },\n    \"inpn-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm90.375 64.002c6.153-.036 12.273.48 18.182 2.047c10.642 2.84 21.343 5.7 29.9 13.094c12.955 9.864 25.667 21.221 32.889 36.13l4.45 7.133l4.317-7.219c15.98-30.994 49.883-50.306 84.424-50.982c16.916 1.723 34.164 6.887 47.977 17.354c16.796 12.153 27.778 30.597 32.703 50.552c3.123 11.247 3.839 23.19 1.873 34.727c-4.628 32.664-23.656 60.557-44.475 85.195c-21.792 25.476-45.457 49.275-69.117 73.024c-19.6 19.338-39.264 39.536-58.13 58.943c-4.248-6.074-10.371-10.47-15.054-16.152c-16.275-17.142-33.064-33.845-49.718-50.645c-34.743-35.918-72.735-70.181-95.604-115.418c-12.012-25.492-15.623-56.2-4.445-82.607c4.576-14.505 14.803-26.546 26.441-36.033c9.466-9.64 22.094-14.797 35.024-17.874c6.027-.644 12.21-1.233 18.363-1.269zm167.092 69.309c-1.998.044-4.106.719-6.346 2.25c-28.453 27.408-55.793 56.044-84.266 83.474c-6.69-7.666-14.361-14.494-21.435-21.84c-7.105-6.281-15.359-20.439-25.86-12.185c-6.37 8.153-21.27 14.501-16.533 26.781c14.225 16.235 30.363 30.87 45.43 46.402c7.1 6.26 14.77 19.491 25.518 11.952c31.665-31.348 63.048-63 94.603-94.465c6.455-6.871 19.673-15.706 10.592-25.575c-6.446-5.32-13.047-16.985-21.703-16.794z\\\"/>\"\n    },\n    \"inspire\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M32 32v448h448V32Zm77.673 79.678a34.076 34.076 0 0 1 34.076 34.076a34.076 34.076 0 0 1-34.076 34.076a34.076 34.076 0 0 1-34.076-34.076a34.076 34.076 0 0 1 34.076-34.076zm76.17 9.02l64.173.16l116.23 187.258V120.698h59.132v280.626h-65.145l-112.25-185.413v185.413h-62.14ZM78.604 203.884h62.139v197.44H78.604z\\\"/>\",\n      \"width\": 512\n    },\n    \"inspire-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm16 64h320v320H64V96zm55.48 56.912a24.34 24.34 0 0 0-24.34 24.34a24.34 24.34 0 0 0 24.34 24.342a24.34 24.34 0 0 0 24.34-24.342a24.34 24.34 0 0 0-24.34-24.34zm54.409 6.443v200.448h44.384V227.365l80.178 132.438h46.533V159.355h-42.236v133.872L219.727 159.47l-45.838-.116zm-76.6 59.418v141.03h44.385v-141.03H97.289z\\\"/>\"\n    },\n    \"isidore\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M17.115 96C4.157 201.785 91.429 257.322 91.429 257.322S4.157 307.57 17.115 416c92.827-13.223 128.464-86.387 138.9-110.078c20.483 56.234 73.943 93.657 133.79 93.657c78.643 0 142.395-63.754 142.392-142.396c0-78.64-63.75-142.392-142.391-142.392h-.114c-59.044 0-111.933 36.532-132.95 91.71c-10.072-23.15-46.8-99.923-139.627-110.501Zm272.06 75.227h.63c47.473 0 85.956 38.484 85.956 85.956c.002 47.474-38.481 85.96-85.955 85.96s-85.958-38.486-85.956-85.96c0-47.227 38.099-85.956 85.326-85.956zm.63 53.146c-18.12 0-32.808 14.69-32.809 32.81c-.002 18.122 14.688 32.814 32.81 32.815c18.122 0 32.812-14.693 32.81-32.815c0-18.12-14.69-32.81-32.81-32.81z\\\"/>\"\n    },\n    \"isidore-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm17.008 101.04c71.337 8.129 99.563 67.129 107.305 84.919c16.15-42.404 56.796-70.479 102.171-70.479h.088C335.008 147.48 384 196.473 384 256.908c.002 60.437-48.99 109.433-109.428 109.434c-45.993 0-87.076-28.761-102.818-71.977c-8.02 18.207-35.409 74.434-106.746 84.596c-9.959-83.329 57.111-121.945 57.111-121.945s-67.07-42.681-57.111-123.977zm209.08 57.812c-36.294 0-65.573 29.762-65.572 66.056c-.002 36.484 29.573 66.062 66.056 66.063c36.484 0 66.059-29.58 66.057-66.063c0-36.482-29.575-66.056-66.057-66.056h-.484zm.484 40.843c13.926 0 25.215 11.288 25.215 25.213c.002 13.927-11.288 25.219-25.215 25.219s-25.217-11.292-25.215-25.219c0-13.925 11.29-25.212 25.215-25.213z\\\"/>\"\n    },\n    \"isni\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m39.95 405.858l-2.234-.245l-2.369-.48l-2.369-.48l-2.261-.742l-2.261-.743l-2.09-1.012l-2.088-1.011l-2.035-1.358l-2.034-1.357l-2.25-2.243l-2.249-2.243l-1.348-2.031l-1.349-2.03l-.802-1.602l-.802-1.6l-.699-1.863l-.698-1.863l-.608-2.42l-.608-2.422l-.343-2.049l-.344-2.048l-.054-116.777L8 140.462l.295-2.607l.296-2.607l.465-2.206l.465-2.206l.675-2.076l.676-2.076l1.361-2.703l1.362-2.702l1.258-1.757l1.258-1.757l1.78-1.782l1.78-1.781l1.713-1.211l1.714-1.21l1.256-.723l1.256-.722l2.14-.925l2.142-.925l2.16-.621l2.16-.622l1.565-.298l1.566-.299l2.235-.313l2.235-.312l211.576-.062l211.576-.062l3.632.194l3.632.193l2.328.38l2.328.379l2.126.554l2.126.554l2.158.857l2.157.857l1.397.756l1.397.756l1.583 1.081l1.583 1.082l1.373 1.193l1.373 1.193l1.199 1.373l1.198 1.373l1.188 1.77l1.189 1.769l1.113 2.328l1.113 2.328l.474 1.407l.475 1.406l.463 1.853l.464 1.853l.283 1.676l.284 1.676l.2 2.142l.199 2.142l-.058 116.497l-.058 116.497l-.343 2.049l-.344 2.048l-.607 2.422l-.608 2.42l-.699 1.863l-.699 1.863l-.802 1.6l-.802 1.602l-1.348 2.03l-1.349 2.031l-2.25 2.238l-2.248 2.237l-1.677 1.135l-1.676 1.136l-1.397.759l-1.397.759l-2.065.843l-2.066.842l-2.538.668l-2.538.668l-2.38.402l-2.381.402l-214.742.035l-214.743.035zm138.661-51.307l2.701-.185l2.514-.288l2.515-.288l2.76-.46l2.76-.458l1.71-.377l1.71-.377l2.886-.742l2.887-.742l2.328-.764l2.328-.764l2.282-.984l2.282-.984l2.188-1.25l2.188-1.25l1.795-1.235l1.795-1.236l1.837-1.518l1.837-1.52l2.06-2.112l2.06-2.113l1.523-1.916l1.522-1.915l1.444-2.182l1.445-2.182l1.318-2.608l1.318-2.607l.853-2.328l.853-2.328l.57-2.274l.57-2.274l.328-2.103l.328-2.103v-7.636l-.335-2.049l-.335-2.048l-.447-1.784l-.447-1.784l-.671-1.929l-.672-1.929l-.803-1.72l-.804-1.72l-1.025-1.737l-1.024-1.738l-1.398-1.871l-1.398-1.872l-1.822-1.916l-1.823-1.917l-1.781-1.488l-1.781-1.488l-2.235-1.496l-2.235-1.496l-2.98-1.454l-2.98-1.453l-4.47-1.675l-4.47-1.674l-3.632-1.214l-3.632-1.213l-3.445-1.022l-3.446-1.022l-3.818-1.125l-3.818-1.125l-8.195-2.347l-8.195-2.347l-3.538-1.1l-3.539-1.1l-2.794-.95l-2.793-.949l-.982-.59l-.982-.59l-.952-.937l-.951-.936l-.626-.966l-.625-.965l-.376-.955l-.377-.955l-.18-.804l-.18-.804l.278-1.094l.278-1.093l.675-1.383l.676-1.383l1.417-1.423l1.417-1.422l.881-.507l.882-.506l1.962-.36l1.962-.36l2.65-.372l2.651-.371l3.26-.289l3.259-.288l4.656-.113l4.656-.114l2.049.204l2.049.203l1.21.3l1.21.3l2.05.994l2.048.995l1.49 1.207l1.49 1.207l.721.872l.721.872l.977 1.556l.977 1.556l.701 1.92l.702 1.92l.36.717l.362.717l.778.848l.779.849l.798.355l.798.355h2.339l1.476-.387l1.477-.386l1.677-.207l1.678-.207l12.292-2.026l12.293-2.025l.421-.098l.422-.097l-.12-.508l-.118-.508l-1.262-3.818l-1.26-3.818l-.988-2.328l-.987-2.328l-1.089-2.12l-1.089-2.118l-1.088-1.732l-1.088-1.731l-1.057-1.405l-1.057-1.404l-1.293-1.424l-1.293-1.423l-1.515-1.37l-1.516-1.37l-1.696-1.218l-1.697-1.218l-3.352-1.664l-3.353-1.664l-3.073-1.204l-3.073-1.205l-2.673-.856l-2.673-.856l-3.008-.739l-3.007-.739l-2.514-.457l-2.515-.456l-2.328-.293l-2.328-.292l-2.514-.187l-2.515-.188h-7.449l-2.515.188l-2.514.187l-2.328.292l-2.328.293l-2.515.456l-2.514.457l-3.007.739l-3.008.739l-2.673.856l-2.673.856l-3.073 1.213l-3.073 1.214l-2.421 1.156l-2.421 1.157l-1.769 1.079l-1.768 1.08l-1.677 1.263l-1.678 1.264l-1.53 1.426l-1.53 1.426l-1.396 1.664l-1.396 1.663l-.91 1.353l-.91 1.352l-.853 1.505l-.852 1.506l-.828 1.94l-.83 1.94l-.597 1.863l-.597 1.862l-.443 1.956l-.442 1.956l-.324 2.328l-.323 2.328l-.01 4.842l-.01 4.842l.24 1.677l.24 1.676l.462 1.955l.462 1.956l.582 1.77l.581 1.769l.802 1.817l.8 1.817l1.068 1.813l1.066 1.812l.659.933l.659.934l1.12 1.397l1.12 1.396l1.588 1.594l1.588 1.594l1.49 1.184l1.49 1.184l1.676 1.107l1.676 1.106l1.862.94l1.863.94l1.676.689l1.676.688l2.98 1.213l2.98 1.213l3.072 1.061l3.073 1.062l6.798 1.931l6.8 1.931l13.037 3.578l13.037 3.578l2.652.715l2.651.715l1.167.588l1.166.589l1.31 1.324l1.309 1.325l.594 1.132l.593 1.133l.286 1.095l.285 1.095v4.127l-.281 1.11l-.282 1.11l-.734 1.49l-.733 1.49l-.894 1.062l-.894 1.063l-.932.72l-.93.722l-1.118.664l-1.118.663l-1.303.648l-1.304.647l-1.738.683l-1.738.684l-2.192.535l-2.193.535l-1.802.227l-1.802.227l-3.673-.1l-3.673-.1l-2.153-.466l-2.154-.467l-1.85-.612l-1.852-.612l-2.7-1.358l-2.7-1.359l-1.763-1.258l-1.762-1.258l-1.907-1.831l-1.908-1.832l-1.013-1.242l-1.013-1.241l-1.039-1.557l-1.038-1.556l-1.052-2.076l-1.052-2.075l-.863-.9l-.863-.9l-.691-.357l-.691-.357h-1.225l-4.173.564l-4.173.565l-4.953.723l-4.954.723l-8.334 1.264l-8.335 1.264v.577l1.201 3.561l1.2 3.561l1.133 2.585l1.132 2.586l1.324 2.42l1.323 2.422l1.182 1.796l1.18 1.795l1.485 1.906l1.483 1.906l1.701 1.84l1.701 1.838l2.082 1.792l2.081 1.792l1.77 1.261l1.769 1.261l1.747 1.056l1.747 1.055l2.164 1.084l2.164 1.085l2.608 1.032l2.607 1.032l2.887.862l2.887.86l2.141.538l2.142.538l2.887.56l2.887.561l2.7.371l2.701.371l2.514.203l2.515.204l.838.055l.838.056l3.911.03l3.911.031l2.7-.184zm-92.564-78.315v-73.66H48.053v147.32h37.994zm216.977 60.484v-13.177l.276-17.135l.275-17.135l.193-8.194l.193-8.195l.183-5.122l.182-5.122l.198-4.377l.198-4.376l.259-1.77l.259-1.77l.487-1.675l.488-1.677l.608-1.403l.608-1.404l.783-1.34l.784-1.342l1.103-1.464l1.103-1.465l1.68-1.598l1.68-1.6l1.832-1.218l1.83-1.22l1.386-.639l1.385-.64l1.956-.732l1.955-.733l1.863-.481l1.862-.481l1.34-.2l1.339-.199h5.001l1.592.278l1.59.277l1.367.488l1.367.488l1.397.725l1.397.725l1.228.924l1.228.924l1.228 1.302l1.228 1.302l.97 1.436l.968 1.436l.8 1.692l.8 1.693l.486 1.49l.485 1.49l.446 2.234l.446 2.235l.294 2.887l.295 2.887l.209 2.328l.208 2.328l.146 43.582l.145 43.582l.155 1.117l.154 1.118h38.554l.05-35.667l.052-35.666l-.187-13.968l-.187-13.969l-.284-4.097l-.284-4.098l-.287-2.98l-.287-2.98l-.37-2.328l-.37-2.328l-.542-2.142l-.542-2.141l-.65-1.863l-.65-1.862l-.668-1.563l-.67-1.562l-1.006-1.794l-1.007-1.793l-1.177-1.663l-1.178-1.662l-2.233-2.314l-2.232-2.315l-1.91-1.434l-1.91-1.434l-1.96-1.167l-1.958-1.167l-2.093-.94l-2.094-.94l-3.576-1.186l-3.575-1.186l-1.919-.468l-1.918-.467l-2.064-.36l-2.063-.361l-2.5-.221l-2.5-.222l-3.631.107l-3.632.107l-2.421.371l-2.422.371l-1.862.405l-1.862.406l-2.887.933l-2.887.934l-2.438 1.068l-2.438 1.068l-1.88 1.055l-1.88 1.055l-1.921 1.269l-1.922 1.268l-1.955 1.56l-1.956 1.56l-4.842 4.687l-4.843 4.687l-.372.416l-.373.417l-.093-9.379l-.093-9.378l-17.833-.048l-17.833-.047v147.509h38.553zm161.01-60.484V202.67l-18.95-.048l-18.95-.047v147.324l18.95-.047l18.95-.048zm0-113.145V146.05l-18.95-.048l-18.95-.047v34.273l18.95-.048l18.95-.047zm-377.987-.186V145.77H48.053v34.27h37.994z\\\"/>\",\n      \"width\": 512\n    },\n    \"isni-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm310.816 127.16l2.344.125l2.342.123l1.502.246l1.502.244l1.373.358l1.371.357l1.393.553l1.39.553l.903.488l.9.488l1.021.698l1.022.697l.885.77l.886.769l.774.887l.773.884l.766 1.143l.767 1.14l.717 1.503l.719 1.501l.307.909l.306.908l.3 1.195l.298 1.196l.184 1.08l.181 1.082l.13 1.382l.128 1.381l-.037 75.16l-.037 75.159l-.223 1.322l-.22 1.322l-.393 1.563l-.393 1.56l-.449 1.203l-.451 1.202l-.518 1.033l-.517 1.031l-.871 1.31l-.87 1.311l-1.45 1.443l-1.452 1.444l-1.082.732l-1.08.733l-.902.49l-.9.49l-1.335.543l-1.332.545l-1.636.43l-1.64.431l-1.534.258l-1.535.26l-138.545.023l-138.543.022l-1.442-.158l-1.441-.157l-1.53-.31l-1.527-.309l-1.459-.48l-1.459-.479l-1.347-.652l-1.348-.652l-1.313-.877l-1.312-.875l-1.451-1.448l-1.451-1.447l-.871-1.31l-.87-1.311l-.517-1.033l-.518-1.031l-.451-1.204l-.45-1.2l-.392-1.563l-.392-1.56l-.221-1.323l-.223-1.322l-.035-75.34l-.035-75.34l.191-1.682l.19-1.681l.3-1.424l.3-1.424l.435-1.338l.438-1.34l.876-1.744l.88-1.742l.812-1.135l.81-1.133l1.149-1.15l1.148-1.148l1.106-.782l1.105-.78l.81-.468l.811-.465l1.381-.597l1.381-.596l1.395-.4l1.392-.403l1.01-.191l1.012-.193l1.441-.202l1.441-.203l136.502-.039l136.5-.039zM89.84 184.885v22.109h24.514v-22.109H89.84zm243.924.119v22.111l12.226-.031l12.225-.031v-21.989l-12.225-.03l-12.226-.03zM166.2 217.928l-1.623.12l-1.621.122l-1.504.19l-1.502.187l-1.62.295l-1.624.295l-1.94.476l-1.939.477l-1.724.553l-1.725.552l-1.984.782l-1.983.783l-1.56.746l-1.563.746l-1.14.697l-1.141.696l-1.082.816l-1.082.814l-.989.922l-.988.92l-.9 1.072l-.9 1.073l-.587.873l-.587.873l-.551.97l-.549.971l-.535 1.252l-.533 1.252l-.387 1.201l-.385 1.203l-.285 1.262l-.285 1.262l-.21 1.502l-.208 1.502l-.008 3.123l-.006 3.125l.154 1.08l.155 1.082l.299 1.262l.298 1.261l.375 1.143l.375 1.14l.516 1.172l.518 1.174l.69 1.168l.687 1.17l.423.602l.426.603l.723.9l.722.901l1.024 1.03l1.025 1.027l.961.765l.961.764l1.082.713l1.082.713l1.201.607l1.202.608l1.082.443l1.082.443l1.922.784l1.921.783l1.983.683l1.982.686l4.387 1.246l4.387 1.246l8.41 2.309l8.412 2.306l1.709.463l1.71.461l.755.379l.752.38l.844.854l.845.856l.383.73l.383.73l.183.708l.186.705v2.662l-.182.717l-.181.717l-.475.96l-.473.961l-.576.686l-.578.686l-.6.464l-.601.465l-.72.43l-.721.428l-.842.418l-.84.416l-1.121.441l-1.121.441l-1.416.346l-1.414.346l-1.162.146l-1.163.147l-2.37-.065l-2.37-.064l-1.388-.3l-1.391-.304l-1.193-.394l-1.194-.395l-1.742-.877l-1.742-.877l-1.137-.81l-1.137-.813l-1.232-1.181l-1.23-1.182l-.653-.8l-.654-.801l-.67-1.004l-.67-1.004l-.68-1.34l-.677-1.338l-.557-.58l-.557-.582l-.447-.23l-.445-.231h-.791l-2.692.365l-2.691.363l-3.195.467l-3.198.467l-5.377.815l-5.377.816v.373l.776 2.297l.773 2.297l.73 1.668l.731 1.668l.856 1.562l.853 1.563l.762 1.158l.762 1.158l.957 1.229l.957 1.23l1.097 1.188l1.098 1.185l1.344 1.156l1.341 1.157l1.143.812l1.14.815l1.128.681l1.127.68l1.396.7l1.397.7l1.681.666l1.684.666l1.861.555l1.863.557l1.381.345l1.383.348l1.861.361l1.864.362l1.742.24l1.742.238l1.623.131l1.621.13l.541.038l.541.035l2.524.02l2.523.02l1.742-.12l.002.002l1.742-.121l1.622-.186l1.623-.185l1.78-.295l1.782-.297l1.102-.244l1.103-.242l1.863-.479l1.862-.478l1.502-.494l1.502-.493l1.472-.634l1.473-.635l1.41-.807l1.412-.806l1.158-.797l1.159-.797l1.185-.98l1.186-.98l1.328-1.362l1.328-1.364l.982-1.236l.983-1.236l.931-1.407l.934-1.408l.85-1.683l.85-1.682l.55-1.502l.55-1.502l.368-1.467l.37-1.467l.21-1.357l.211-1.355v-4.928l-.215-1.32l-.217-1.323l-.289-1.15l-.287-1.153l-.433-1.244l-.434-1.244l-.518-1.11l-.519-1.109l-.66-1.12l-.662-1.122l-.9-1.207l-.903-1.209l-1.176-1.236l-1.176-1.236l-1.15-.96l-1.148-.96l-1.442-.965l-1.443-.965l-1.922-.938l-1.922-.939l-2.885-1.08l-2.883-1.08l-2.343-.783l-2.344-.782l-2.223-.66l-2.222-.658l-2.463-.727l-2.463-.726l-5.287-1.514l-5.287-1.513l-2.284-.711l-2.283-.71l-1.802-.613l-1.803-.611l-.633-.38l-.633-.382l-.615-.605l-.613-.604l-.405-.623l-.402-.623l-.242-.615l-.244-.615l-.116-.52l-.117-.52l.18-.704l.18-.705l.435-.893l.436-.893l.914-.918l.914-.918l.568-.326l.57-.326l1.266-.232l1.266-.233l1.709-.24l1.71-.238l2.104-.188l2.102-.185l3.004-.073l3.004-.074l1.322.131l1.322.13l.781.194l.782.194l1.32.642l1.322.643l.961.777l.961.78l.467.562l.465.562l.629 1.004l.63 1.004l.454 1.239l.45 1.238l.235.463l.233.463l.502.547l.501.548l.516.229l.514.228h1.51l.953-.248l.95-.25l1.085-.134l1.082-.133l7.93-1.307l7.931-1.307l.272-.062l.271-.063l-.076-.328l-.076-.328l-.815-2.463l-.814-2.463l-.637-1.502l-.637-1.501l-.703-1.368l-.7-1.367l-.704-1.117l-.701-1.117l-.682-.906l-.683-.907l-.834-.918l-.834-.918l-.977-.884l-.978-.883l-1.094-.787l-1.096-.786l-2.162-1.074l-2.162-1.072l-1.982-.777l-1.985-.778l-1.724-.552l-1.725-.553l-1.94-.477l-1.939-.476l-1.623-.295l-1.621-.295l-1.502-.188l-1.502-.19l-1.623-.12l-1.623-.121H166.2zm117.637.328l-2.344.068l-2.344.07l-1.56.239l-1.563.24l-1.2.262l-1.204.26l-1.861.603l-1.864.602l-1.572.69l-1.572.689l-1.213.68l-1.213.68l-1.24.82l-1.24.818l-1.262 1.005l-1.262 1.006l-3.123 3.026l-3.125 3.023l-.24.268l-.24.27l-.06-6.052l-.06-6.05l-11.505-.032l-11.506-.029v95.166h24.874v-17.002l.178-11.055l.177-11.054l.125-5.287l.125-5.287l.118-3.305l.117-3.305l.129-2.822l.127-2.824l.168-1.143l.166-1.14l.314-1.083l.314-1.08l.393-.906l.393-.906l.505-.865l.504-.866l.713-.943l.711-.945l1.084-1.031l1.084-1.032l1.182-.787l1.181-.787l.893-.412l.895-.412l1.261-.473l1.262-.472l1.201-.311l1.201-.31l.866-.13l.863-.128h3.226l1.028.18l1.027.179l.881.314l.88.315l.903.467l.9.468l.794.596l.79.596l.794.84l.793.84l.625.927l.625.926l.515 1.092l.518 1.092l.312.96l.313.962l.289 1.443l.287 1.441l.19 1.864l.19 1.86l.134 1.503l.134 1.502l.094 28.117l.094 28.117l.101.72l.1.722h24.873l.031-23.01l.034-23.01l-.12-9.012l-.12-9.011l-.184-2.645l-.184-2.643l-.185-1.923l-.184-1.922l-.24-1.502l-.239-1.502l-.35-1.383l-.349-1.38l-.42-1.202l-.418-1.203l-.431-1.008l-.432-1.008l-.65-1.156l-.649-1.158l-.76-1.072l-.76-1.073l-1.44-1.492l-1.44-1.494l-1.233-.926l-1.232-.924l-1.264-.754l-1.263-.751l-1.35-.608l-1.352-.605l-2.306-.766l-2.307-.766l-1.238-.3l-1.238-.303l-1.33-.233l-1.332-.232l-1.614-.143l-1.611-.142zm49.926 3.275v95.049l12.226-.031l12.225-.031v-94.924l-12.225-.031l-12.226-.032zm-243.924.002v95.045h24.514v-95.045H89.84z\\\"/>\"\n    },\n    \"jstor\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M255.57 64.003c-25.283-.054-24.426.59-25.157 3.39c-.69 2.637 1.638 4.236 8.478 5.827c10.012 2.33 16.192 5.537 21.373 11.104c4.745 5.097 8.678 11.784 10.439 17.757c1.533 5.207 1.682 37.687.495 106.233c-.517 29.791-1.101 75.416-1.297 101.383c-.299 39.14-.567 48.352-1.548 53.806c-3.78 21.013-10.621 33.842-22.633 42.408c-8.027 5.742-17.797 8.31-28.428 7.475c-15.278-1.187-22.813-5.259-44.025-23.898c-5.573-4.877-10.278-8.758-10.464-8.566c-.565.578 15.69 50.465 16.623 51.043c.742.449 7.6 1.217 22.646 2.468c8.7.738 26.182-.195 33.673-1.767c14.934-3.144 24.749-7.793 36.436-17.225c16.522-13.314 28.475-35.32 32.677-60.19c2.349-13.898 2.625-27.927 2.638-136.09c.011-65.954.287-110.195.72-113.32c.96-6.907 5.434-15.763 10.86-21.48c4.991-5.264 10.854-8.368 20.376-10.784c3.76-.952 7.488-2.082 8.29-2.512c1.662-.889 2.011-4.502.546-5.658c-.571-.452-22.16-.893-57.69-1.172c-15.265-.12-26.6-.214-35.028-.232zm83.206 18.153c-.436-.094-2.103.627-4.875 2.193c-5.617 3.17-9.302 6.253-12.112 10.138c-4.748 6.57-4.395-2.812-4.825 127.738c-.432 130.29-.288 125.98-4.705 143.84c-2.236 9.016-3.866 13.282-8.835 23.003c-6.404 12.544-11.524 19.86-19.268 27.495c-11.585 11.453-27.446 20.697-41.844 24.418c-10.44 2.727-26.32 3.684-42.508 2.626c-7.135-.481-13.422-.707-13.96-.514c-1.28.481 5.54 2.438 12.938 3.753c8.27 1.508 32.62 1.545 41.074.07c23.945-4.107 42.439-15.305 58.611-35.485c6.073-7.571 8.485-11.29 12.213-18.798c4.273-8.565 6.678-14.826 8.872-23.07c4.142-15.548 4.023-11.291 4.042-141.116c.025-128.593-.085-125.173 3.697-132.594c2.36-4.636 4.972-7.83 8.985-11.003c2.146-1.697 2.94-2.601 2.5-2.694z\\\"/>\",\n      \"width\": 512\n    },\n    \"jstor-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.643 64.002c7.023.015 16.467.093 29.187.193c29.609.233 47.6.6 48.076.977c1.222.963.93 3.974-.455 4.715c-.668.358-3.775 1.3-6.908 2.093c-7.935 2.014-12.82 4.6-16.98 8.987c-4.521 4.764-8.25 12.144-9.05 17.9c-.36 2.604-.59 39.473-.599 94.434c-.01 90.136-.242 101.827-2.2 113.408c-3.501 20.725-13.461 39.063-27.23 50.158c-9.74 7.86-17.918 11.736-30.363 14.356c-6.242 1.31-20.81 2.087-28.06 1.472c-12.539-1.042-18.254-1.684-18.872-2.058c-.778-.481-14.324-42.054-13.853-42.535c.155-.16 4.077 3.075 8.72 7.138c17.678 15.533 23.955 18.925 36.686 19.914c8.86.695 17.003-1.443 23.692-6.228c10.01-7.138 15.712-17.829 18.86-35.34c.819-4.545 1.041-12.222 1.29-44.838c.163-21.639.65-59.66 1.08-84.486c.99-57.122.866-84.189-.412-88.528c-1.468-4.978-4.745-10.55-8.7-14.798c-4.317-4.639-9.466-7.311-17.81-9.252c-5.7-1.326-7.64-2.658-7.064-4.856c.61-2.332-.105-2.872 20.965-2.826zm69.337 15.127c.367.077-.295.832-2.084 2.246c-3.344 2.644-5.52 5.307-7.488 9.17c-3.151 6.184-3.059 3.333-3.08 110.494c-.016 108.187.084 104.64-3.367 117.596c-1.829 6.87-3.833 12.088-7.395 19.226c-3.106 6.256-5.116 9.355-10.177 15.664c-13.477 16.816-28.887 26.149-48.842 29.57c-7.045 1.23-27.336 1.2-34.229-.056c-6.165-1.096-11.85-2.728-10.783-3.129c.45-.16 5.69.029 11.635.43c13.49.882 26.724.083 35.424-2.19c11.998-3.1 25.215-10.803 34.869-20.347c6.454-6.363 10.72-12.46 16.057-22.912c4.14-8.101 5.5-11.658 7.363-19.17c3.68-14.884 3.559-11.292 3.92-119.867c.358-108.792.064-100.972 4.021-106.448c2.342-3.237 5.413-5.808 10.094-8.449c2.31-1.305 3.699-1.906 4.062-1.828z\\\"/>\"\n    },\n    \"lattes\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M97.872 434.733c-46.338-94.949-73.906-152.29-73.906-153.713c0-2.322 2.831-2 30.672 3.46c48.965 9.614 75.126 12.326 118.735 12.342c57.697.016 104.68-9.122 141.185-27.484c19.311-9.715 30.925-18.327 40.437-29.993c11.716-14.378 15.48-24.28 15.615-40.947c.118-15.852-2.018-24.211-11.19-43.608c-3.63-7.665-6.817-16.463-7.122-19.55c-.475-4.968-.068-5.68 3.595-6.104c8.003-.948 47.507 37.403 62.055 60.241c25.076 39.386 27.111 81.993 5.884 123.195c-13.04 25.314-27.45 42.828-51.577 62.734c-40.099 33.062-86.708 56.086-151.069 74.635c-34.57 9.97-90.471 22.059-101.984 22.059c-2.44 0-7.02-8.003-21.296-37.283l-.034.015zm12.904-153.121c-45.016-5.832-82.79-10.903-83.96-11.275c-2-.644-9.155-24.516-13.191-43.947c-1.017-4.917-2.51-17.939-3.323-28.958c-3.63-49.17 7.069-83.166 35.74-113.735C94.583 31.985 198.516 25.694 315.777 67.37c20.582 7.325 28.755 12.411 24.975 15.581c-2.797 2.34-21.753 2.306-54.51-.102c-51.204-3.764-90.183 3.357-110.274 20.176c-30.588 25.602-25.924 81.724 13.53 162.682c4.273 8.766 8.58 17.345 9.563 19.09c2.29 4.019.628 7.75-3.357 7.563c-1.697-.081-39.915-4.912-84.929-10.746zm151.016-44.047c-35.928-6.46-68.227-28.74-78.654-54.222c-5.002-12.241-4.765-28.213.576-37.774c4.832-8.648 17.31-18.65 28.484-22.839c18.6-6.968 51.17-4.188 74.907 6.41c22.533 10.055 42.507 27.738 49.932 44.184c9.53 21.109 1.593 44.66-18.82 55.901c-13.531 7.443-39.827 11.326-56.443 8.341h.018z\\\"/>\"\n    },\n    \"lattes-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm138.258 64c31.613.062 67.725 6.768 105.726 20.273c15.247 5.426 21.3 9.194 18.5 11.541c-2.072 1.734-16.115 1.708-40.379-.076c-37.929-2.788-66.8 2.487-81.683 14.946c-22.657 18.964-19.204 60.536 10.021 120.505c3.166 6.494 6.355 12.848 7.084 14.141c1.696 2.976.466 5.74-2.486 5.602c-1.257-.06-29.566-3.638-62.91-7.96c-33.345-4.32-61.327-8.077-62.193-8.353c-1.482-.477-6.782-18.16-9.772-32.553c-.753-3.642-1.858-13.288-2.46-21.45c-2.69-36.423 5.234-61.603 26.472-84.247c20.226-21.547 53.435-32.449 94.08-32.369zm47.974 58.445c11.978.033 25.523 2.678 36.512 7.584c16.69 7.448 31.486 20.548 36.986 32.73c7.06 15.637 1.18 33.08-13.94 41.407c-10.024 5.513-29.502 8.39-41.81 6.18h.014v-.002c-26.613-4.785-50.538-21.288-58.262-40.164c-3.705-9.068-3.53-20.898.426-27.98c3.58-6.406 12.823-13.816 21.1-16.919c5.166-1.935 11.788-2.856 18.974-2.836zm87.467 7.582c5.928-.702 35.19 27.706 45.965 44.623c18.575 29.175 20.084 60.736 4.36 91.256c-9.66 18.75-20.333 31.723-38.206 46.469c-29.702 24.49-64.227 41.545-111.902 55.285c-25.608 7.386-67.017 16.34-75.545 16.34c-1.808 0-5.199-5.928-15.773-27.617l-.026.012c-34.324-70.332-54.746-112.807-54.746-113.862c0-1.72 2.098-1.481 22.72 2.563c36.271 7.121 55.65 9.13 87.952 9.142c42.739.012 77.542-6.756 104.582-20.357c14.305-7.196 22.908-13.578 29.953-22.219c8.679-10.65 11.466-17.984 11.567-30.33c.088-11.742-1.495-17.934-8.29-32.303c-2.688-5.677-5.05-12.194-5.275-14.48c-.352-3.68-.049-4.209 2.664-4.522z\\\"/>\"\n    },\n    \"mathoverflow\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M202.213 207.128c10.086-6.205 19.394-10.861 27.151-13.964c7.757-3.103 13.964-4.654 19.394-4.654c10.861 0 19.394 3.878 25.601 10.861c6.208 6.981 9.308 17.067 9.308 29.478v76.8l4.655 4.654l14.74 1.551v10.084h-58.958v-10.084l12.413-1.55l4.654-4.655v-71.37c0-9.31-2.327-16.291-6.208-20.945c-3.878-4.655-10.086-6.981-18.618-6.981c-3.878 0-8.532.775-13.964 2.326c-5.43 1.552-10.861 3.879-17.067 6.981v90.764l4.655 4.655l13.186 1.55v10.085h-58.18V312.63l13.186-1.551l4.655-4.655v-71.37c0-9.31-2.327-16.29-6.208-20.945c-3.878-4.654-10.086-6.981-17.843-6.981c-4.654 0-9.308.775-13.964 2.327c-4.655 1.551-10.86 3.878-16.29 6.98V307.2l4.653 4.654l13.187 1.551v10.084H86.62v-10.084l14.74-1.551l4.654-4.654v-97.745H86.621v-8.532l31.807-9.31h10.086v14.74c9.308-5.43 17.842-9.31 24.823-12.413c6.981-2.327 13.187-3.878 18.618-3.878c6.981 0 12.413 1.551 17.843 4.654c4.656 2.327 9.31 6.206 12.415 12.413zm215.637-24.99c-70.595 0-88.435 61.284-88.435 88.437c0 33.358 25.6 55.079 65.938 55.079c71.37 0 88.438-62.836 88.438-86.109c0-36.463-23.273-57.408-65.94-57.408zm-20.167 119.465c-13.187 0-20.946-8.534-20.946-23.274c0-10.86 6.981-72.146 40.34-72.146c14.738 0 21.72 8.534 20.945 25.601c0 7.76-6.207 69.819-40.34 69.819zM28.209 64v384h384l-.01-86.4h-24.951v61.44H51.716V88.96H387.25v61.44h24.95l.011-86.399z\\\"/>\",\n      \"width\": 512\n    },\n    \"mathoverflow-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zM34.174 96h320.002l-.01 72h-20.791v-51.2H53.764v278.401h279.609V344h20.793l.008 72h-320V96zm324.701 98.447c35.557 0 54.951 17.454 54.951 47.84c0 19.394-14.224 71.758-73.699 71.758c-33.616 0-54.947-18.1-54.947-45.899c0-22.627 14.866-73.699 73.695-73.699zm-140.91 5.31c9.05 0 16.161 3.232 21.334 9.052c5.173 5.817 7.758 14.224 7.758 24.566v64l3.879 3.877l12.283 1.293v8.404h-49.133v-8.404l10.344-1.293l3.879-3.877v-59.477c0-7.758-1.938-13.574-5.172-17.453c-3.232-3.878-8.406-5.818-15.516-5.818c-3.232 0-7.11.647-11.637 1.94c-4.524 1.292-9.051 3.23-14.222 5.816v75.637l3.879 3.878l10.988 1.293v8.403h-48.483v-8.403l10.989-1.293l3.879-3.878v-59.475c0-7.758-1.94-13.577-5.174-17.455c-3.232-3.879-8.405-5.817-14.87-5.817c-3.878 0-7.756.647-11.636 1.94c-3.88 1.293-9.051 3.23-13.576 5.816v75.637l3.879 3.879l10.988 1.293v8.402H82.852v-8.402l12.283-1.293l3.879-3.879v-81.453H82.852v-7.111l26.505-7.758h8.405v12.283c7.757-4.525 14.868-7.758 20.685-10.344c5.818-1.939 10.99-3.232 15.516-3.232c5.817 0 10.344 1.293 14.869 3.879c3.88 1.939 7.758 5.17 10.346 10.343c8.405-5.17 16.16-9.05 22.625-11.636c6.464-2.586 11.637-3.88 16.162-3.88zm140.265 14.73c-27.798 0-33.615 51.07-33.615 60.12c0 12.284 6.465 19.395 17.453 19.395c28.444 0 33.618-51.716 33.618-58.182c.646-14.222-5.174-21.334-17.456-21.334z\\\"/>\"\n    },\n    \"mendeley\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M503.603 336.7c-2.374-20-13.393-34.687-34.013-39.452c-4.624-1.08-9.548-1.134-14.35-1.045c-18.724.354-30.115-8.486-32.843-26.98c-1.205-8.114-1.01-16.475-.425-24.695c.62-8.557 1.807-17.22 4.021-25.492c2.356-8.91 4.5-17.68 4.411-26.945c-.372-4.57-.39-9.212-1.098-13.747c-4.446-28.946-26.395-51.852-55.625-58.318c-28.274-6.306-57.043 5.474-73.943 29.036c-6.554 9.158-14.668 17.466-23.012 25.102c-11.39 10.222-26.732 10.47-38.796 1.559a104.313 104.313 0 0 1-24.447-25.386c-22.391-32.844-65.723-42.056-99.01-20.195c-26.537 17.414-36.12 45.563-31.036 76.83c1.434 8.805 4.163 17.343 5.633 26.13c2.09 12.188 3.118 24.535 1.01 36.918c-2.374 14.102-9.938 22.499-23.224 25.156c-3.508.726-7.228.69-10.824.868c-3.118.212-6.289 0-9.371.372c-11.001 1.559-19.558 7.67-27.53 14.934c-5.155 4.694-8.308 10.434-9.672 17.095c-.815 4.056-1.417 8.184-1.453 12.223c-.142 13.375 2.055 26.112 11.604 36.369c12.01 12.914 26.66 19.115 44.252 15.837c26.36-4.871 42.976-30.4 37.042-56.617c-1.488-6.378-4.358-12.365-6.306-18.619c-4.234-13.552-2.374-25.81 7.741-36.28c5.05-5.244 11.232-8.875 17.928-11.533c15.678-6.253 32.029-7.458 48.592-5.314c10.7 1.382 20.851 4.588 29.939 10.7c16.563 11.09 19.61 29.212 10.753 45.492c-11.444 21.063-6.395 46.874 12.649 61.595c12.294 9.496 26.342 11.994 41.418 10.54c35.678-3.418 56.847-41.275 38.778-73.092c-7.564-13.304-5.988-29.265 6.058-40.426c5.05-4.694 10.93-7.936 17.343-10.327c14.952-5.616 30.417-6.555 46.112-4.483c11.657 1.56 22.782 4.996 32.49 11.994c11.532 8.361 17.307 19.486 14.97 33.782c-.869 5.386-2.764 10.647-4.766 15.75c-3.756 9.318-5.031 18.883-3.42 28.804c3.544 21.772 21.897 38.07 44.289 38.867c20.035.69 41.914-12.95 46.697-34.864c1.63-7.316 2.338-14.686 1.434-22.143zm-247.391-41.861c-29.992 0-48.894-24.535-48.805-48.876c.07-26.82 21.967-48.31 49.07-48.238c26.839.036 48.61 21.79 48.54 48.468c-.106 24.252-18.902 48.646-48.805 48.646z\\\"/>\",\n      \"width\": 512\n    },\n    \"mendeley-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm110.531 135.139c14.703.16 29.01 7.448 38.04 20.691a67.3 67.3 0 0 0 15.77 16.379c7.784 5.749 17.681 5.589 25.03-1.006c5.383-4.926 10.62-10.286 14.848-16.195c10.903-15.2 29.464-22.801 47.705-18.733c18.858 4.172 33.018 18.95 35.887 37.625c.456 2.926.469 5.919.709 8.868c.057 5.977-1.326 11.636-2.846 17.384c-1.429 5.338-2.196 10.925-2.596 16.446c-.377 5.303-.502 10.699.276 15.933c1.76 11.932 9.108 17.635 21.189 17.406c3.097-.057 6.275-.023 9.258.674c13.303 3.075 20.412 12.55 21.943 25.453c.583 4.812.126 9.567-.926 14.288c-3.085 14.137-17.2 22.937-30.127 22.492c-14.446-.515-26.286-11.03-28.572-25.076c-1.04-6.4-.218-12.573 2.205-18.584c1.292-3.292 2.514-6.686 3.074-10.16c1.509-9.224-2.217-16.4-9.658-21.795c-6.263-4.515-13.44-6.733-20.96-7.739c-10.127-1.337-20.103-.73-29.749 2.893c-4.137 1.543-7.932 3.633-11.19 6.662c-7.77 7.2-8.788 17.499-3.907 26.082c11.657 20.527-2.002 44.95-25.02 47.156c-9.726.937-18.789-.675-26.72-6.8c-12.287-9.498-15.544-26.15-8.16-39.739c5.714-10.503 3.748-22.195-6.938-29.35c-5.863-3.942-12.414-6.012-19.317-6.904c-10.686-1.383-21.234-.605-31.35 3.43c-4.32 1.714-8.308 4.056-11.566 7.44c-6.526 6.754-7.726 14.662-4.994 23.406c1.257 4.034 3.108 7.899 4.069 12.013c3.828 16.915-6.893 33.385-23.899 36.528c-11.349 2.114-20.8-1.887-28.549-10.22c-6.16-6.617-7.578-14.833-7.486-23.462c.023-2.606.412-5.27.937-7.887c.88-4.297 2.915-8 6.24-11.029c5.144-4.686 10.665-8.63 17.762-9.635c1.989-.24 4.034-.103 6.045-.24c2.32-.114 4.72-.09 6.983-.559c8.571-1.714 13.452-7.132 14.984-16.23c1.36-7.99.696-15.955-.652-23.818c-.95-5.67-2.71-11.178-3.635-16.858c-3.28-20.172 2.905-38.333 20.025-49.568c8.054-5.29 17.017-7.758 25.838-7.662zm65.778 51.263c-17.487-.045-31.613 13.818-31.659 31.121c-.057 15.704 12.137 31.534 31.487 31.534c19.292 0 31.418-15.737 31.486-31.383c.046-17.212-14-31.248-31.314-31.272z\\\"/>\"\n    },\n    \"moodle\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M337.179 86.713C195.049 104.138 130.417 116.483 8 187.447l1.136 3.223l9.729.099c-.892 9.798-2.447 34.016-.461 70.433c-13.583 39.31-.345 66.015 12.087 95.065c1.97-30.216 1.768-63.31-7.512-96.246c-1.943-36.172-.347-59.956.53-69.207l81.152.775a371.222 371.222 0 0 0 2.403 47.57l.006.002c-1.134 6.657-1.703 13.71-1.703 21.161v164.964h79.367V269.517c-.013-8.703.945-16.233 2.858-22.611c20.455-3.355 39.75-10.883 56.958-22.184c13.423 6.674 20.14 21.6 20.14 44.795v155.77h79.353v-155.77c.058-32.575 13.514-48.857 40.373-48.847c26.858.01 40.287 16.291 40.287 48.847v155.77H504V260.322c-.01-33.995-11.815-59.715-35.412-77.164c-20.758-15.587-48.833-23.38-84.229-23.38c-38.714 0-65.392 9.202-80.03 27.61c-3.877-4.202-8.25-7.917-13.113-11.16c-10.753-12.04-31.792-28.45-31.792-28.45l78.763-57.555z\\\"/>\",\n      \"width\": 512\n    },\n    \"moodle-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm228.373 114.783l.65 2.264l-50.814 37.133s13.574 10.587 20.512 18.355a46.754 46.754 0 0 1 8.459 7.2c9.443-11.877 26.655-17.815 51.632-17.815c22.836 0 40.95 5.03 54.342 15.086c15.224 11.257 22.84 27.85 22.846 49.783v106.428h-51.158V264.72c0-21.004-8.664-31.508-25.992-31.514c-17.328-.006-26.01 10.497-26.047 31.514v100.496h-51.196V264.72c0-14.965-4.333-24.595-12.994-28.9c-11.101 7.29-23.55 12.147-36.748 14.312c-1.234 4.114-1.852 8.972-1.844 14.588v100.496h-51.203V258.789c0-4.807.366-9.358 1.098-13.652l-.004-.002a239.498 239.498 0 0 1-1.55-30.69l-52.356-.502c-.566 5.97-1.595 21.314-.342 44.65c5.988 21.25 6.118 42.6 4.846 62.094c-8.02-18.742-16.56-35.97-7.797-61.332c-1.281-23.495-.279-39.117.297-45.439l-6.278-.064l-.732-2.08c78.979-45.784 120.677-53.747 212.373-64.989z\\\"/>\"\n    },\n    \"mtmt\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" stroke-width=\\\".133\\\"><path d=\\\"M64 256v192h384V64H64Zm375.742 0v183.742H72.258V72.258h367.484Z\\\"/><path d=\\\"M326.606 277.232c-2.89 9.083-4.748 11.56-10.735 14.451c-5.368 2.684-7.226 4.749-7.226 8.671c0 4.336 1.032 5.161 5.987 5.161h5.987l.826 33.446c.62 27.664 1.239 34.89 4.336 40.464c5.987 10.942 21.47 15.277 40.464 11.561c5.78-1.238 6.4-2.064 6.4-9.083v-7.846l-11.561.413c-16.723.413-17.342-1.032-17.342-38.4v-30.555h28.903V289h-28.903v-22.71h-6.813c-6.4 0-7.02.619-10.323 10.942zm-149.058 12.18c-3.303 1.239-8.67 4.542-11.767 7.432c-5.987 5.575-5.575 5.781-8.878-4.748c-.62-2.064-3.716-3.097-9.29-3.097h-8.258v101.162h22.71v-32.826c0-18.168.825-35.303 1.858-37.987c3.716-9.29 10.322-13.833 21.058-13.833c8.051 0 10.529 1.033 14.038 5.368c3.923 5.161 4.336 8.258 4.336 42.323v36.955h22.709v-34.065c0-44.8 2.684-50.58 23.536-50.58c7.432 0 9.91 1.032 13.42 5.367c3.922 5.161 4.335 8.258 4.335 42.323v36.955h23.122l-.825-39.846c-.826-43.974-2.89-52.438-14.246-58.425c-15.07-7.64-36.335-5.162-47.07 5.367l-5.988 6.194l-3.922-5.161c-6.813-9.497-26.839-13.833-40.878-8.878zM326.606 130.65c-2.89 9.085-4.748 11.562-10.735 14.453c-5.368 2.683-7.226 4.748-7.226 8.67c0 4.336 1.032 5.162 5.987 5.162h5.987l.826 33.445c.62 27.664 1.239 34.89 4.336 40.464c5.987 10.942 21.47 15.278 40.464 11.562c5.78-1.239 6.4-2.065 6.4-9.084v-7.845l-11.561.413c-16.723.413-17.342-1.033-17.342-38.4v-30.555h28.903v-16.516h-28.903v-22.71h-6.813c-6.4 0-7.02.62-10.323 10.942zm-149.058 12.182c-3.303 1.238-8.67 4.541-11.767 7.432c-5.987 5.574-5.575 5.78-8.878-4.749c-.62-2.064-3.716-3.096-9.29-3.096h-8.258v101.16h22.71v-32.825c0-18.168.825-35.303 1.858-37.987c3.716-9.29 10.322-13.832 21.058-13.832c8.051 0 10.529 1.032 14.038 5.368c3.923 5.16 4.336 8.258 4.336 42.322v36.955h22.709v-34.065c0-44.8 2.684-50.58 23.536-50.58c7.432 0 9.91 1.032 13.42 5.368c3.922 5.16 4.335 8.258 4.335 42.322v36.955h23.122l-.825-39.845c-.826-43.974-2.89-52.439-14.246-58.426c-15.07-7.639-36.335-5.161-47.07 5.368l-5.988 6.193l-3.922-5.161c-6.813-9.497-26.839-13.832-40.878-8.877z\\\"/></g>\",\n      \"width\": 512\n    },\n    \"mtmt-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm16 64h320v320H64V96zm6.88 6.88v306.24h306.24V102.88H70.88zm220.561 39.544h5.678v18.926h24.086v13.761H297.12v25.463c0 31.14.516 32.344 14.451 32l9.635-.344v6.538c0 5.849-.517 6.538-5.334 7.57c-15.828 3.097-28.731-.517-33.72-9.635c-2.581-4.645-3.098-10.667-3.614-33.72l-.687-27.872h-4.99c-4.13 0-4.989-.688-4.989-4.3c0-3.27 1.548-4.989 6.022-7.225c4.989-2.409 6.536-4.473 8.945-12.043c2.753-8.602 3.27-9.12 8.603-9.12zm-120.877 17.56c9.113.257 18.22 3.665 22.124 9.106l3.269 4.303l4.988-5.163c8.947-8.774 26.668-10.838 39.227-4.472c9.462 4.99 11.183 12.042 11.871 48.687l.687 33.205h-19.267v-30.796c0-28.388-.345-30.967-3.613-35.268c-2.925-3.613-4.99-4.475-11.184-4.475c-17.376 0-19.611 4.82-19.611 42.153v28.386h-18.926v-30.796c0-28.388-.344-30.967-3.613-35.268c-2.925-3.613-4.99-4.475-11.7-4.475c-8.946 0-14.45 3.786-17.546 11.528c-.86 2.236-1.55 16.516-1.55 31.656v27.355h-18.924v-84.3h6.883c4.645 0 7.226.86 7.742 2.58c2.753 8.774 2.407 8.602 7.396 3.957c2.581-2.409 7.054-5.161 9.807-6.194c3.656-1.29 7.8-1.825 11.941-1.709zm120.877 104.59h5.678V283.5h24.086v13.764H297.12v25.46c0 31.14.516 32.345 14.451 32l9.635-.343v6.537c0 5.85-.517 6.538-5.334 7.57c-15.828 3.097-28.731-.516-33.72-9.634c-2.581-4.646-3.098-10.665-3.614-33.72l-.687-27.87h-4.99c-4.13 0-4.989-.69-4.989-4.303c0-3.269 1.548-4.988 6.022-7.225c4.989-2.408 6.536-4.473 8.945-12.043c2.753-8.602 3.27-9.119 8.603-9.119zm-120.877 17.56c9.113.258 18.22 3.667 22.124 9.108l3.269 4.301l4.988-5.162c8.947-8.774 26.668-10.838 39.227-4.473c9.462 4.99 11.183 12.043 11.871 48.688l.687 33.205h-19.267v-30.797c0-28.387-.345-30.967-3.613-35.268c-2.925-3.613-4.99-4.472-11.184-4.472c-17.376 0-19.611 4.817-19.611 42.15v28.387h-18.926v-30.797c0-28.387-.344-30.967-3.613-35.268c-2.925-3.613-4.99-4.472-11.7-4.472c-8.946 0-14.45 3.783-17.546 11.525c-.86 2.237-1.55 16.517-1.55 31.656v27.356h-18.924V283.5h6.883c4.645 0 7.226.86 7.742 2.58c2.753 8.774 2.407 8.602 7.396 3.957c2.581-2.408 7.054-5.161 9.807-6.193c3.656-1.29 7.8-1.826 11.941-1.71z\\\"/>\"\n    },\n    \"nakala\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M85.123 96.008c-17.68.227-35.906 5.43-53.799 15.955c36.535-5.081 60.197-2.362 60.197-2.362s-45.555 16.171-79.459 66.653c19.128-14.17 47.129-26.564 47.129-26.564s-15.938 17.09-22.426 37.334c-4.02 12.541-2.52 44.142 23.719 59.656c23.376 13.822 53.476 10.406 71.48-3.377a135.097 135.097 0 0 0-5.34 37.601A135.097 135.097 0 0 0 261.722 416a135.097 135.097 0 0 0 135.096-135.096a135.097 135.097 0 0 0-3.397-30.104c17.494 6.951 39.844 6.671 58.095-4.12c26.238-15.514 27.74-47.115 23.72-59.656c-6.49-20.244-22.427-37.334-22.427-37.334s28.001 12.394 47.129 26.564c-33.904-50.482-79.459-66.653-79.459-66.653s23.661-2.719 60.197 2.362c-57.222-33.66-117.858-12.88-153.092 50.988a135.097 135.097 0 0 0-65.862-17.145a135.097 135.097 0 0 0-74.513 22.406c-24.172-47.272-61.7-72.724-102.086-72.204Zm176.6 84.257a100.64 100.64 0 0 1 100.638 100.64a100.64 100.64 0 0 1-100.639 100.638a100.64 100.64 0 0 1-100.64-100.639a100.64 100.64 0 0 1 100.64-100.64Zm0 46.605a54.034 54.034 0 0 0-54.035 54.034a54.034 54.034 0 0 0 54.034 54.034a54.034 54.034 0 0 0 54.034-54.034a54.034 54.034 0 0 0-54.034-54.034zm16.141 9.21a20.608 20.608 0 0 1 .248 0a20.608 20.608 0 0 1 20.608 20.607a20.608 20.608 0 0 1-20.608 20.608a20.608 20.608 0 0 1-20.608-20.608a20.608 20.608 0 0 1 20.36-20.608z\\\"/>\",\n      \"width\": 512\n    },\n    \"nakala-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm63.92 119.06c26.49-.34 51.104 16.354 66.959 47.36a88.61 88.61 0 0 1 48.875-14.697a88.61 88.61 0 0 1 43.2 11.246c23.11-41.891 62.88-55.521 100.413-33.444c-23.964-3.332-39.484-1.548-39.484-1.548s29.88 10.605 52.117 43.716c-12.546-9.294-30.912-17.422-30.912-17.422s10.453 11.208 14.709 24.487c2.636 8.226 1.653 28.953-15.557 39.129c-11.97 7.078-26.631 7.262-38.105 2.703a88.61 88.61 0 0 1 2.228 19.744a88.61 88.61 0 0 1-88.61 88.611a88.61 88.61 0 0 1-88.612-88.611a88.61 88.61 0 0 1 3.504-24.662c-11.809 9.04-31.553 11.28-46.885 2.215c-17.21-10.176-18.193-30.903-15.557-39.13c4.256-13.278 14.71-24.486 14.71-24.486S76.545 194.4 64 203.693c22.237-33.11 52.117-43.716 52.117-43.716s-15.52-1.784-39.484 1.548c11.736-6.903 23.69-10.315 35.287-10.464zm115.834 55.264a66.01 66.01 0 0 0-66.01 66.01a66.01 66.01 0 0 0 66.01 66.01a66.01 66.01 0 0 0 66.01-66.01a66.01 66.01 0 0 0-66.01-66.01zm0 30.57a35.441 35.441 0 0 1 35.44 35.44a35.441 35.441 0 0 1-35.44 35.441a35.441 35.441 0 0 1-35.441-35.441a35.441 35.441 0 0 1 35.44-35.44zm10.588 6.04a13.517 13.517 0 0 0-13.356 13.517a13.517 13.517 0 0 0 13.518 13.516a13.517 13.517 0 0 0 13.516-13.516a13.517 13.517 0 0 0-13.516-13.517a13.517 13.517 0 0 0-.162 0z\\\"/>\"\n    },\n    \"obp\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M341.268 32v43.278c14.56-6.382 27.323-13.761 42.547-19.013v49.526c14.492-1.994 27.588-4.986 41.615-5.584v295.697C358.088 424.024 290.944 452.012 223.8 480c-67.143-27.988-133.954-55.975-201.23-84.096V99.941c12.963 1.729 25.527 3.39 39.421 5.252V56.265c15.423 5.252 28.32 12.498 43.145 19.544V32c48.463 35.965 90.145 74.59 118.2 126.974C251.19 106.59 293.07 68.164 341.267 32ZM117.235 55.733c-1.063 91.74-2.06 181.487-3.058 270.435c40.552 32.309 76.983 66.878 104.438 110.554v-8.442c0-78.445-.133-156.89.2-235.335c.066-10.77-2.327-20.409-7.114-29.783c-21.938-43.144-56.174-75.52-94.466-107.43Zm-82.7 332.327a960780.735 960780.735 0 0 0 174.507 72.994c-8.908-12.033-17.617-20.941-27.19-29.052c-33.638-28.519-72.328-48.396-112.88-64.816c-3.856-1.596-11.235-4.454-11.235-4.454c1.263-80.373 2.526-163.87 3.789-245.041l-26.99-4.255V388.06zM74.092 74.28c-1.53 93.868-2.992 187.005-4.455 280.275c44.74 17.949 86.689 39.887 124.05 70.002c-24.797-37.029-57.504-66.014-91.342-92.738c.864-81.636 1.728-162.075 2.593-242.381c-10.172-5.585-19.678-10.77-30.846-15.158Zm153.765 362.442c26.325-44.806 64.883-78.91 104.57-110.62c-.996-89.88-1.994-179.094-2.99-270.635c-9.973 8.642-18.615 15.755-26.725 23.334c-27.589 25.594-52.984 53.05-69.271 87.619c-3.058 6.448-5.784 12.897-5.784 20.475zm113.346-18.48c23.999-10.039 47.998-20.077 72.329-30.315V113.104c-9.773 1.662-19.146 3.191-29.051 4.853c1.263 81.436 2.46 164.934 3.722 245.24l-9.307 3.257c-17.616 6.848-34.768 14.626-51.388 23.6c-31.311 16.82-61.027 35.7-84.295 63.222l-5.517 7.778zm-91.342 10.17a28.369 28.369 0 0 1 1.729-1.595c.864-.731 1.728-1.463 2.526-2.26c36.364-30.58 77.98-52.253 122.188-70.002c-1.396-93.403-2.792-186.54-4.255-280.74c-10.902 5.385-21.14 9.44-30.314 15.822c.864 80.838 1.795 161.344 2.659 241.85c-11.368 9.572-22.802 18.68-33.638 28.452c-21.34 19.213-41.815 39.356-57.837 63.488z\\\"/>\"\n    },\n    \"obp-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm91.098 64c34.616 25.69 64.389 53.277 84.427 90.695c19.897-37.418 49.812-64.863 84.239-90.695v30.912c10.399-4.558 19.516-9.829 30.39-13.58v35.377c10.352-1.425 19.706-3.563 29.725-3.99v211.213A247293.685 247293.685 0 0 1 223.857 416c-47.96-19.991-95.681-39.982-143.736-60.068V144.529c9.26 1.235 18.234 2.423 28.158 3.752v-34.949c11.017 3.751 20.23 8.928 30.819 13.961V96zm160.213 16.762c-7.123 6.173-13.295 11.254-19.088 16.668c-19.707 18.281-37.847 37.892-49.48 62.584c-2.185 4.606-4.132 9.211-4.132 14.625l.143 178.449c18.804-32.005 46.345-56.365 74.693-79.016c-.712-64.2-1.424-127.924-2.136-193.31zm-151.57.19c-.76 65.528-1.474 129.634-2.186 193.17c28.965 23.077 54.988 47.768 74.6 78.966v-6.031c0-56.032-.096-112.064.142-168.096c.047-7.693-1.663-14.578-5.082-21.274c-15.67-30.817-40.124-53.943-67.475-76.736zm182.007 12.915c-7.787 3.846-15.1 6.744-21.652 11.303c.617 57.741 1.28 115.246 1.898 172.75c-8.12 6.838-16.287 13.342-24.027 20.322c-15.243 13.723-29.867 28.11-41.31 45.348l-2.186 3.562c.522-.522.904-.855 1.236-1.14c.617-.523 1.233-1.044 1.803-1.614c25.974-21.843 55.7-37.323 87.277-50.002c-.997-66.716-1.994-133.243-3.039-200.529zm-212.826.334a332470.68 332470.68 0 0 0-3.182 200.195c31.957 12.821 61.921 28.492 88.608 50.002c-17.712-26.449-41.075-47.153-65.244-66.242c.617-58.311 1.234-115.767 1.851-173.129c-7.265-3.988-14.056-7.692-22.033-10.826zm242.457 27.73c-6.98 1.188-13.675 2.28-20.75 3.467c.902 58.17 1.756 117.809 2.658 175.17l-6.648 2.328c-12.584 4.891-24.834 10.447-36.705 16.858c-22.366 12.014-43.592 25.497-60.211 45.156l-3.942 5.557l73.934-30.58c17.142-7.17 34.284-14.34 51.664-21.653V153.932zm-270.711.237v196.16c41.312 17.285 82.292 34.427 124.648 52.139c-6.363-8.595-12.584-14.957-19.421-20.75c-24.028-20.371-51.664-34.57-80.63-46.299c-2.753-1.14-8.025-3.182-8.025-3.182c.902-57.409 1.805-117.05 2.707-175.029l-19.279-3.039z\\\"/>\"\n    },\n    \"open-access\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M128.233 64c-56.46 0-102.67 46.212-102.67 102.672v14.023H66.68v-14.023c0-34.239 27.315-61.554 61.553-61.554s61.553 27.315 61.553 61.554v56.252c-18.113-10.823-39.251-17.06-61.786-17.06c-66.62 0-121.068 54.448-121.068 121.068S61.38 448 128 448s121.068-54.447 121.068-121.068c0-23.29-6.661-45.088-18.164-63.596v-96.664c0-56.46-46.21-102.672-102.67-102.672zM128 246.982c44.398 0 79.95 35.552 79.95 79.95c0 44.399-35.552 79.95-79.95 79.95s-79.95-35.551-79.95-79.95c0-44.398 35.552-79.95 79.95-79.95zm.395 46.393c-18.735 0-33.922 15.187-33.922 33.922s15.187 33.922 33.922 33.922c18.734 0 33.922-15.187 33.922-33.922s-15.188-33.922-33.922-33.922z\\\" color=\\\"currentColor\\\"/>\",\n      \"width\": 256\n    },\n    \"open-access-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176.193 64c47.05 0 85.56 38.51 85.56 85.56v80.553c9.586 15.424 15.138 33.588 15.138 52.996C324.89 370.626 279.517 416 224 416s-100.89-45.374-100.89-100.89c0-55.518 45.373-100.89 100.89-100.89c18.78 0 36.394 5.198 51.488 14.218V181.56c0-28.533-22.763-51.295-51.295-51.295c-28.531 0-51.293 22.762-51.293 51.295v11.685h-34.265V181.56c0-47.051 38.508-85.561 85.558-85.561zM224 248.484c-36.999 0-66.625 29.627-66.625 66.625c0 37 29.626 66.625 66.625 66.625c36.999 0 66.625-29.626 66.625-66.625c0-36.998-29.626-66.625-66.625-66.625zm.328 38.662c15.612 0 28.27 12.656 28.27 28.268s-12.658 28.27-28.27 28.27s-28.267-12.658-28.267-28.27s12.655-28.268 28.267-28.268z\\\"/>\"\n    },\n    \"open-data\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M255.993 8.045c-32.183-1.174-57.105 21.062-84.092 35.034c-36.705 21.758-74.502 41.83-110.476 64.716c-23.53 19.125-34.341 49.9-31.87 79.619c.137 52.692-.273 105.396.207 158.08c3.047 31.9 25.167 58.973 53.631 72.318c45.694 26.225 91.12 52.938 136.981 78.857c29.154 13.294 63.667 7.703 89.457-10.283c45.56-26.464 91.402-52.46 136.783-79.219c26.105-18.586 38.497-51.277 35.818-82.6c-.137-52.693.274-105.396-.207-158.08c-3.05-31.898-25.166-58.977-53.633-72.316c-45.695-26.22-91.129-52.915-136.988-78.837c-11.1-5.156-23.43-7.255-35.61-7.29Zm-28.695 132.69h57.4v230.52h-57.4v-230.52zm72.231 50.174h57.372v180.346h-57.372V190.909zm-144.452 94.08h57.39v86.266h-57.39v-86.267z\\\"/>\",\n      \"width\": 512\n    },\n    \"open-data-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm174.063 64.002a43.37 43.37 0 0 1 1.933.027c7.859.022 15.814 1.377 22.975 4.703c29.586 16.724 58.898 33.946 88.379 50.862c18.365 8.606 32.634 26.077 34.601 46.656c.31 33.99.045 67.992.133 101.986c1.729 20.21-6.266 41.3-23.107 53.291c-29.278 17.264-58.853 34.036-88.247 51.11c-16.639 11.603-38.905 15.21-57.714 6.633c-29.589-16.722-58.896-33.956-88.375-50.875c-18.364-8.61-32.634-26.076-34.6-46.657c-.31-33.99-.047-67.993-.135-101.988c-1.595-19.173 5.38-39.027 20.56-51.365c23.21-14.765 47.596-27.717 71.276-41.754c16.867-8.733 32.484-22.467 52.32-22.629zm-16.58 85.633v148.722h37.033V181.635h-37.034zm46.601 32.37v116.352h37.014V214.006h-37.014zm-93.195 60.698v55.654h37.025v-55.654H158.89z\\\"/>\"\n    },\n    \"open-materials\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M255.99 8c-14.46 0-28.915 3.167-39.89 9.51L69.398 102.207c-21.941 12.675-39.89 43.754-39.89 69.084v169.42c0 25.336 17.949 56.425 39.89 69.094l146.704 84.714c10.974 6.324 25.436 9.482 39.89 9.482c14.465 0 28.928-3.158 39.889-9.482l146.723-84.714c21.935-12.669 39.89-43.758 39.89-69.094V171.29c0-25.33-17.955-56.41-39.89-69.084L295.89 17.511C284.916 11.167 270.456 8 255.99 8zm-58.058 145.737L256 176.605l58.096-22.868l100.08 40.8l-58.068 22.857v100.098L256 358.272l-100.098-40.78V217.394l-58.087-22.858Zm-42.03 63.657L256 258.164l100.108-40.77L256 176.604Z\\\"/>\",\n      \"width\": 512\n    },\n    \"open-materials-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.994 64c9.333 0 18.66 2.044 25.74 6.137l94.655 54.64c14.151 8.178 25.736 28.229 25.736 44.57V310.65c0 16.347-11.585 36.405-25.736 44.579l-94.66 54.654c-7.072 4.08-16.402 6.117-25.735 6.117c-9.324 0-18.656-2.037-25.736-6.117l-94.647-54.654c-14.155-8.174-25.736-28.232-25.736-44.579V201.348c0-16.342 11.58-36.393 25.736-44.57l94.647-54.641c7.08-4.093 16.407-6.137 25.736-6.137zm-37.457 94.023l-64.592 26.323l37.475 14.748L224 204.777l-37.463-14.754zM224 204.777l64.586 26.317l37.463-14.748l-64.569-26.323L224 204.777zm64.586 26.317L224 257.396l-64.58-26.302v64.578l64.58 26.31l64.586-26.31v-64.578z\\\"/>\"\n    },\n    \"openedition\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M190.225 64.021c-55.201.962-107.105 34.339-129.017 88.773c-29.24 72.589 5.926 155.116 78.505 184.343a142.38 142.38 0 0 0 32.827 8.832L182.364 448h18.088l9.528-101.668c49.433-6.147 94.143-38.207 114.08-87.715c.042-.083.075-.181.117-.277c-33.703 20.808-83.804 33.83-134.97 13.238c-44.083-17.745-63.974-57.784-49.842-92.906c12.208-30.307 44.784-43.614 71.642-32.802c30.99 12.485 43.749 46.44 32.374 74.673c-5.542 13.791-17.293 25.048-28.895 33.99c43.968 15.92 93.52 1.555 109.363-22.54c19.688-29.907-4.547-87.825-4.547-87.825c-13.54-29.798-37.55-55.304-73.766-69.88c-18.145-7.303-36.91-10.587-55.311-10.267ZM19.332 308.56c2.716 31.275 63.888 104.888 148.464 103.702c-.04-.12-.075-.251-.14-.337c-24.191-63.469-84.298-102.688-148.324-103.365Zm337.475 41.483c-80.69 1.026-143.18 83.966-144.602 97.876c63.995 1.867 125.615-34.942 152.322-97.383c.041-.106.086-.226.14-.332a117.604 117.604 0 0 0-7.86-.161z\\\"/>\",\n      \"width\": 384\n    },\n    \"openedition-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h166.365l-9.826-102.031a142.374 142.374 0 0 1-32.826-8.832C99.134 339.91 63.969 257.382 93.209 184.793c21.912-54.434 73.814-87.81 129.016-88.772c18.4-.32 37.166 2.964 55.31 10.268c36.216 14.576 60.227 40.082 73.768 69.879c0 0 24.234 57.919 4.547 87.826c-15.844 24.094-65.396 38.459-109.364 22.54c11.602-8.942 23.353-20.2 28.895-33.991c11.375-28.233-1.385-62.188-32.375-74.674c-26.858-10.811-59.434 2.497-71.64 32.803c-14.133 35.122 5.757 75.161 49.841 92.906c51.166 20.592 101.266 7.57 134.969-13.238c-.041.096-.074.195-.115.277c-19.939 49.509-64.647 81.569-114.08 87.715L232.452 480H400c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm3.332 308.559c64.026.677 124.134 39.898 148.324 103.367c.066.086.1.215.14.336c-84.575 1.186-145.748-72.428-148.464-103.703zm337.475 41.484c2.603-.033 5.222.018 7.861.16c-.055.107-.1.228-.14.334c-26.708 62.441-88.328 99.25-152.323 97.383c1.422-13.91 63.912-96.85 144.602-97.877z\\\"/>\"\n    },\n    \"orcid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M336.62 194.538c-7.13-3.328-13.866-5.56-20.253-6.614c-6.365-1.095-16.574-1.612-30.71-1.612h-36.704v152.747h37.634c14.673 0 26.081-1.013 34.224-3.017c8.142-2.004 14.921-4.526 20.356-7.626a69.448 69.448 0 0 0 14.942-11.388c14.488-14.714 21.742-33.273 21.742-55.717c0-22.052-7.44-40.052-22.341-53.982c-5.498-5.166-11.822-9.444-18.89-12.793zM256 8C119.022 8 8 119.042 8 256s111.022 248 248 248s248-111.042 248-248S392.978 8 256 8Zm-82.336 357.513h-29.389V160.148h29.389zM158.95 138.696c-11.14 0-20.213-9.01-20.213-20.212c0-11.118 9.052-20.191 20.213-20.191c11.18 0 20.232 9.052 20.232 20.191a20.194 20.194 0 0 1-20.232 20.212zm241.386 163.597c-5.29 12.545-12.834 23.581-22.65 33.088c-9.982 9.837-21.597 17.194-34.844 22.196c-7.75 3.017-14.839 5.063-21.307 6.117c-6.49 1.013-18.828 1.509-37.076 1.509h-64.956V160.148h69.233c27.962 0 50.034 4.154 66.32 12.545c16.265 8.37 29.181 20.728 38.792 36.972c9.61 16.265 14.425 34.018 14.425 53.196c.023 13.765-2.666 26.908-7.936 39.432z\\\"/>\",\n      \"width\": 512\n    },\n    \"orcid-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176 64c88.373 0 160 71.64 160 160s-71.627 160-160 160S64 344.36 64 256S135.627 96 224 96zm-62.613 58.254c-7.2 0-13.04 5.852-13.04 13.025c0 7.227 5.853 13.041 13.04 13.041a13.03 13.03 0 0 0 13.052-13.04c0-7.187-5.839-13.026-13.052-13.026zm-9.467 39.906v132.494h18.959V194.16h-18.96zm48.533 0v132.293h41.908c11.773 0 19.734-.32 23.92-.973c4.174-.68 8.746-2 13.746-3.947c8.547-3.227 16.04-7.973 22.48-14.32c6.334-6.134 11.199-13.252 14.612-21.346h.002c3.4-8.08 5.133-16.561 5.12-25.441c0-12.373-3.107-23.825-9.307-34.319c-6.2-10.48-14.534-18.453-25.028-23.853c-10.507-5.413-24.745-8.094-42.785-8.094h-44.668zm19 16.88h23.68c9.12 0 15.708.334 19.814 1.04c4.12.68 8.467 2.121 13.067 4.268v-.002c4.56 2.16 8.639 4.92 12.185 8.254c9.614 8.987 14.414 20.599 14.414 34.826c0 14.48-4.68 26.454-14.027 35.947a44.802 44.802 0 0 1-9.639 7.348c-3.506 2-7.881 3.626-13.135 4.92c-5.253 1.293-12.61 1.945-22.078 1.945h-24.28v-98.547z\\\"/>\"\n    },\n    \"osf\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M256 8c-34.36 0-62.215 27.855-62.215 62.215c0 20.303 9.87 38.161 24.917 49.517C218.89 99.275 235.498 82.74 256 82.74c20.501 0 37.111 16.536 37.3 36.993c15.045-11.356 24.917-29.212 24.917-49.517C318.213 35.855 290.359 8 255.999 8Zm37.297 384.268c-.189 20.46-16.796 36.993-37.297 36.993c-20.501 0-37.11-16.536-37.297-36.993c-15.048 11.356-24.918 29.212-24.918 49.517C193.785 476.145 221.64 504 256 504s62.215-27.855 62.215-62.215c0-20.303-9.87-38.161-24.917-49.517zm148.488-198.483c-20.303 0-38.163 9.87-49.517 24.918c20.458.188 36.993 16.796 36.993 37.296c0 20.501-16.535 37.111-36.991 37.3c11.356 15.045 29.212 24.917 49.517 24.917C476.145 318.213 504 290.36 504 256s-27.855-62.215-62.215-62.215ZM82.739 256c0-20.501 16.535-37.111 36.993-37.297c-11.356-15.047-29.214-24.918-49.517-24.918C35.855 193.785 8 221.64 8 256.001c0 34.36 27.855 62.215 62.215 62.215c20.303 0 38.161-9.871 49.517-24.918c-20.458-.188-36.993-16.796-36.993-37.297zM431.363 80.637c-24.296-24.296-63.689-24.296-87.985 0c-14.357 14.357-20.003 33.963-17.393 52.634c-.082.08-.182.134-.264.215c-14.578 14.578-14.578 38.216 0 52.794c14.578 14.578 38.216 14.578 52.794 0c.083-.082.135-.182.218-.264c18.668 2.608 38.274-3.038 52.631-17.393c24.294-24.298 24.294-63.689-.003-87.986zM186.28 378.512c14.578-14.578 14.578-38.215 0-52.793c-14.578-14.579-38.217-14.578-52.795 0c-.083.082-.135.182-.215.262c-18.67-2.608-38.277 3.035-52.634 17.395c-24.297 24.295-24.297 63.688 0 87.984c24.296 24.296 63.689 24.296 87.985 0c14.357-14.357 20.003-33.963 17.393-52.634c.085-.078.184-.132.267-.215zm0-245.026c-.083-.082-.182-.134-.265-.215c2.608-18.668-3.038-38.275-17.393-52.634c-24.298-24.295-63.688-24.295-87.985 0c-24.297 24.298-24.297 63.689 0 87.986c14.357 14.357 33.964 20.003 52.632 17.394c.08.082.134.182.215.264c14.578 14.578 38.217 14.578 52.795 0c14.577-14.578 14.577-38.217 0-52.795zm245.082 209.89c-14.357-14.357-33.964-20.003-52.634-17.395c-.081-.082-.132-.182-.215-.262c-14.578-14.578-38.217-14.578-52.795 0c-14.578 14.578-14.578 38.215 0 52.793c.083.083.182.135.264.215c-2.608 18.671 3.038 38.277 17.394 52.634c24.295 24.296 63.688 24.296 87.984 0c24.298-24.295 24.298-63.688.003-87.984z\\\"/>\",\n      \"width\": 512\n    },\n    \"osf-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176 64c22.168 0 40.137 17.97 40.139 40.139c0 13.1-6.37 24.62-16.077 31.947c-.12-13.199-10.836-23.867-24.062-23.867s-23.941 10.668-24.062 23.867c-9.708-7.327-16.077-18.849-16.077-31.947C183.861 113.97 201.831 96 224 96zm-84.756 35.107c10.272 0 20.545 3.919 28.383 11.756c9.261 9.264 12.905 21.913 11.223 33.957c.053.052.116.086.17.139c9.405 9.405 9.405 24.655 0 34.06c-9.406 9.406-24.658 9.406-34.063 0c-.052-.053-.087-.116-.139-.17c-12.044 1.684-24.692-1.957-33.955-11.22c-15.676-15.676-15.676-41.09 0-56.766c7.838-7.837 18.109-11.756 28.381-11.756zm169.512 0c10.272 0 20.543 3.919 28.38 11.756c15.675 15.676 15.676 41.088.003 56.764c-9.263 9.261-21.913 12.905-33.957 11.223c-.054.053-.086.116-.139.17c-9.405 9.405-24.657 9.405-34.063 0c-9.405-9.406-9.405-24.656 0-34.061c.054-.052.12-.086.172-.139c-1.683-12.045 1.958-24.694 11.221-33.957c7.838-7.837 18.11-11.756 28.383-11.756zm-204.617 84.754c13.098 0 24.62 6.368 31.947 16.077c-13.199.12-23.867 10.835-23.867 24.062c0 13.226 10.668 23.941 23.867 24.063c-7.327 9.707-18.849 16.076-31.947 16.076C81.97 296.139 64 278.169 64 256c0-22.168 17.97-40.139 40.139-40.139zm239.722 0C366.03 215.861 384 233.832 384 256c0 22.168-17.97 40.137-40.137 40.139c-13.1 0-24.62-6.368-31.947-16.075c13.197-.121 23.865-10.838 23.865-24.064s-10.668-23.941-23.867-24.062c7.325-9.708 18.849-16.077 31.947-16.077zm-181.873 78.065a24.011 24.011 0 0 1 17.032 7.054c9.405 9.406 9.405 24.654 0 34.06c-.054.052-.118.087-.172.138c1.683 12.045-1.958 24.694-11.221 33.957c-15.675 15.674-41.09 15.674-56.764 0c-15.676-15.675-15.676-41.09 0-56.764c9.263-9.264 21.912-12.905 33.957-11.223c.052-.051.086-.114.139-.168a24.008 24.008 0 0 1 17.03-7.054zm124.024 0a24.007 24.007 0 0 1 17.029 7.054c.053.052.086.115.139.168c12.045-1.682 24.694 1.96 33.957 11.223h.002c15.674 15.675 15.674 41.091-.002 56.766c-15.675 15.674-41.09 15.674-56.764 0c-9.261-9.263-12.905-21.912-11.223-33.957c-.053-.052-.116-.086-.17-.139c-9.405-9.406-9.405-24.655 0-34.06a24.012 24.012 0 0 1 17.032-7.055zm-86.074 49.988c.12 13.199 10.836 23.867 24.062 23.867s23.941-10.667 24.063-23.867c9.707 7.327 16.076 18.849 16.076 31.947C264.139 398.03 246.169 416 224 416c-22.168 0-40.139-17.97-40.139-40.139c0-13.1 6.368-24.62 16.077-31.947z\\\"/>\"\n    },\n    \"overleaf\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M108.213 148.53C46.514 188.03 5.658 252.413 5.658 321.29C5.656 404.527 73.136 472 156.385 472c83.24 0 150.708-67.473 150.708-150.709c0-64.337-40.316-119.29-97.04-140.888c-10.91-4.149-34.61-11.613-53.533-10.02c-27.03 17.185-59.956 52.495-75.559 87.682c23.198-27.821 59.368-39.937 91.433-34.785c47.209 7.655 83.268 48.62 83.268 97.995c0 54.844-44.451 99.292-99.28 99.292c-30.216 0-57.294-13.496-75.495-34.785c-26.95-31.491-33.885-65.64-28.442-98.997C71.543 169.981 210.21 103.398 313.314 77.847c-33.65 17.802-94.347 47.064-136.795 78.919c123.833 47.8 143.845-56.556 201.823-103.255c-58.34-22.745-269.786-31.144-270.13 95.018Z\\\"/>\",\n      \"width\": 384\n    },\n    \"overleaf-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm244.39 64.002c29.07.094 55.461 4.478 69.641 10.006c-42.946 34.592-57.77 111.894-149.498 76.486c31.443-23.596 76.403-45.272 101.328-58.459c-76.372 18.927-179.09 68.248-193.236 154.77c-4.032 24.708 1.106 50.003 21.068 73.33c13.483 15.77 33.542 25.767 55.924 25.767c40.614 0 73.54-32.925 73.54-73.55c0-36.575-26.711-66.918-61.68-72.588c-23.752-3.816-50.543 5.157-67.727 25.765c11.557-26.064 35.946-52.22 55.969-64.949c14.017-1.18 31.573 4.349 39.654 7.422c42.017 15.999 71.88 56.704 71.88 104.361C309.254 366.02 259.28 416 197.62 416c-61.665 0-111.652-49.98-111.65-111.637c0-51.018 30.264-98.71 75.967-127.97c.17-62.79 70.93-80.584 130.455-80.391z\\\"/>\"\n    },\n    \"philpapers\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M281.155 248.037a68.317 68.31 0 0 0 28.962-16.224c19.803-17.994 29.704-41.954 29.704-71.877a117.71 117.698 0 0 0-8.652-45.647a84.382 84.374 0 0 0-24.71-33.822A78.394 78.387 0 0 0 272.894 64H205.17v188.418h29.704c20.039.013 35.466-1.448 46.283-4.38zm68.34-184.018a104.474 104.464 0 0 1 20.682 12.53c28.715 21.83 43.071 50.944 43.071 87.34c0 37.004-14.561 64.094-43.684 81.271c-15.161 8.898-33.56 14.256-55.194 16.075c-6.881.607-23.46.909-49.736.909h-59.41v108.874c0 20.617 1.164 35.933 3.49 45.944a51.328 51.323 0 0 0 12.885 24.707a53.281 53.276 0 0 0 7.334 6.33H448V64.02h-98.506ZM128.737 84.44a49.65 49.646 0 0 0-20.013-18.044a55.334 55.329 0 0 0-5.736-2.376H64V448h51.055a53.251 53.246 0 0 0 7.333-6.33a49.088 49.083 0 0 0 12.995-24.56c2.228-9.9 3.341-25.264 3.341-46.093v-223.5a269.161 269.136 0 0 0-2.283-40.19a62.109 62.103 0 0 0-7.703-22.89z\\\"/>\",\n      \"width\": 512\n    },\n    \"philpapers-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm133.64 64h56.438a65.329 65.322 0 0 1 27.97 13.723a70.318 70.312 0 0 1 20.593 28.185a98.091 98.082 0 0 1 7.209 38.04c0 24.935-8.25 44.901-24.752 59.896a56.931 56.926 0 0 1-24.135 13.52v.001c-9.014 2.444-21.87 3.661-38.568 3.65H181.64V96zM64 96.016h32.49a46.112 46.107 0 0 1 4.78 1.98a41.376 41.372 0 0 1 16.677 15.035h.002a51.757 51.752 0 0 1 6.418 19.074a224.301 224.28 0 0 1 1.903 33.493v186.25c0 17.357-.927 30.16-2.784 38.41a40.907 40.903 0 0 1-10.83 20.467a44.376 44.372 0 0 1-6.111 5.275H64V96.016zm237.912 0H384V416H201.443a44.4 44.397 0 0 1-6.111-5.275a42.773 42.77 0 0 1-10.736-20.59c-1.939-8.343-2.909-21.106-2.909-38.287v-90.729h49.508c21.897 0 35.712-.25 41.446-.756c18.028-1.516 33.361-5.982 45.996-13.396c24.269-14.315 36.404-36.889 36.404-67.725c0-30.33-11.966-54.593-35.895-72.785a87.062 87.053 0 0 0-17.234-10.441z\\\"/>\"\n    },\n    \"piazza\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M252.834 101.622c-19.857-19.834-44.035-32.09-72.073-36.538c-12.042-1.91-36.888-1.2-48.026 1.376c-53.683 12.41-93.768 54.333-102.416 107.114c-1.122 6.845-1.325 28.123-1.325 141.242h-.003V448h45.662v-77c0-87.87-.904-80.046 8.435-73.06c13.826 10.34 31.55 18.58 48.546 22.564c14.291 3.352 36.047 3.955 50.913 1.413c13.874-2.373 25.215-6.187 38.098-12.818c13.069-6.725 23.149-14.29 34.006-25.516c14.002-14.482 23.229-29.65 29.544-48.565c15.757-47.2 3.731-98.349-31.361-133.395zm-11.94 114.722c-6.432 24.517-22.703 44.107-45.41 54.677c-10.09 4.696-16.451 6.498-27.265 7.725c-4.432.502-8.864.864-9.848.803c-32.799-2.02-59.265-19.014-73.31-47.07c-10.603-21.18-11.387-47.63-2.054-69.22c4.437-10.262 8.2-16.143 15.167-23.713c10.864-11.802 23.201-19.518 38.903-24.334c7.137-2.189 9.23-2.418 22.636-2.467c12.851-.048 15.706.212 21.936 2.004c29.838 8.585 52.368 31.847 59.681 61.621c2.873 11.69 2.693 28.049-.436 39.975z\\\"/>\",\n      \"width\": 320\n    },\n    \"piazza-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm178.676 64c5.599.016 10.862.307 14.625.904c23.365 3.707 43.512 13.92 60.06 30.448c29.244 29.205 39.266 71.83 26.135 111.164c-5.263 15.762-12.953 28.402-24.621 40.47c-9.048 9.356-17.447 15.66-28.338 21.264c-10.736 5.525-20.187 8.702-31.748 10.68c-12.388 2.118-30.518 1.617-42.428-1.176c-14.162-3.32-28.934-10.187-40.455-18.805c-7.782-5.821-7.03-12.34-7.03 60.885V416h-38.05V305.014h.002c0-94.266.169-111.998 1.104-117.702c7.206-43.984 40.611-78.92 85.347-89.261c5.801-1.342 16.065-2.078 25.397-2.051zm-2.916 40.621c-11.173.041-12.915.23-18.862 2.055c-13.085 4.013-23.366 10.444-32.42 20.28c-5.805 6.307-8.94 11.209-12.638 19.76c-7.777 17.992-7.125 40.032 1.71 57.682c11.705 23.38 33.76 37.543 61.093 39.227c.82.05 4.513-.251 8.207-.67c9.011-1.023 14.312-2.524 22.72-6.437c18.923-8.809 32.482-25.134 37.842-45.565c2.608-9.938 2.757-23.57.363-33.31c-6.094-24.813-24.869-44.198-49.734-51.352c-5.192-1.493-7.572-1.71-18.281-1.67z\\\"/>\"\n    },\n    \"preregistered\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M255.967 8c-14.42 0-28.913 3.167-39.842 9.51L69.402 102.207c-21.954 12.675-39.899 43.754-39.899 69.084v169.42c0 25.336 17.945 56.425 39.9 69.094l146.722 84.714c10.929 6.324 25.421 9.482 39.842 9.482c14.486 0 28.97-3.158 39.9-9.482l146.722-84.714c21.922-12.669 39.908-43.758 39.908-69.094V171.29c0-25.33-17.986-56.41-39.908-69.084L295.866 17.511C284.937 11.167 270.453 8 255.967 8Zm99.189 144.373c4.227 0 8.45 1.602 11.651 4.813l17.847 17.827c6.402 6.428 6.402 16.938 0 23.36L228.22 354.823c-6.466 6.416-16.938 6.416-23.34 0l-68.942-68.913c-6.402-6.415-5.044-18.277 0-23.34l17.855-17.828c6.403-6.428 16.94-6.428 23.341 0l27.746 27.726c6.402 6.415 16.874 6.415 23.34 0l115.236-115.282a16.556 16.556 0 0 1 11.699-4.813z\\\"/>\",\n      \"width\": 512\n    },\n    \"preregistered-de\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M256.033 8c-14.485 0-28.97 3.167-39.899 9.51L69.402 102.207C47.48 114.881 29.503 145.96 29.503 171.29v169.42c0 25.336 17.977 56.425 39.9 69.094l146.731 84.714c10.929 6.324 25.414 9.482 39.9 9.482c14.42 0 28.903-3.158 39.832-9.482l146.732-84.714c21.922-12.669 39.899-43.758 39.899-69.094V171.29c0-25.33-17.977-56.41-39.899-69.084L295.866 17.511C284.937 11.167 270.454 8 256.033 8Zm-47.145 106.596h24.316c15.908 0 28.778 11.368 28.778 28.058c0 16.691-12.87 27.575-28.778 27.575h-24.316zm59.233 0h40.42v12.466h-27.092v9.151h21.21v11.69h-21.21v9.85h27.546v12.476h-40.874zm-45.849 12.466v30.692h10.932c7.954 0 14.872-5.568 14.872-15.1c0-9.544-6.918-15.592-14.872-15.592zm132.903 70.581c4.227 0 8.465 1.602 11.698 4.813l17.847 17.827c6.402 6.428 6.402 16.929 0 23.35L228.221 400.094c-6.402 6.415-16.938 6.415-23.34 0l-68.933-68.914c-6.402-6.415-5.044-18.277 0-23.34l17.846-17.828c6.467-6.428 16.94-6.428 23.341 0l27.746 27.726c6.402 6.415 16.938 6.415 23.34 0l115.302-115.282c3.201-3.211 7.424-4.813 11.652-4.813z\\\"/>\",\n      \"width\": 512\n    },\n    \"preregistered-de-plus\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M255.958 8c-14.397 0-28.877 3.18-39.805 9.52L69.412 102.215c-21.942 12.671-39.9 43.752-39.9 69.085v169.41c0 25.34 17.958 56.432 39.9 69.093l146.74 84.715c10.929 6.33 25.41 9.482 39.806 9.482c14.483 0 28.961-3.151 39.89-9.482l146.74-84.715c21.942-12.661 39.9-43.752 39.9-69.093V171.3c0-25.333-17.958-56.414-39.9-69.085L295.848 17.52C284.918 11.18 270.44 8 255.957 8Zm11.66 106.587h40.515v12.475h-27.149v9.142h21.238v11.698h-21.238v9.852h27.575v12.475h-40.94zm-59.886.009h24.42c15.793 0 28.77 11.369 28.77 28.058c0 16.69-12.977 27.584-28.77 27.584h-24.42zm13.404 12.475v30.682h11.017c7.853 0 14.768-5.564 14.768-15.099c0-9.544-6.915-15.583-14.768-15.583zm134.076 64.093c4.222 0 8.44 1.602 11.67 4.812l17.838 17.827c6.376 6.428 6.376 16.931 0 23.35L228.24 393.616c-6.462 6.419-16.888 6.419-23.35 0l-68.923-68.905c-6.377-6.419-4.998-18.283 0-23.35l17.827-17.827c6.462-6.428 16.974-6.428 23.35 0l27.746 27.726c6.462 6.42 16.888 6.42 23.35 0l115.292-115.283a16.525 16.525 0 0 1 11.68-4.812zm7.93 123.031h18.717v23.37h22.943v17.476h-22.858v22.849h-18.633v-22.85h-23.028v-17.477h22.858z\\\"/>\",\n      \"width\": 512\n    },\n    \"preregistered-de-plus-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.973 64c9.344 0 18.684 2.052 25.734 6.143l94.672 54.64c14.156 8.175 25.742 28.229 25.742 44.572V310.65c0 16.35-11.586 36.41-25.742 44.579l-94.672 54.654c-7.05 4.084-16.39 6.117-25.734 6.117c-9.288 0-18.63-2.033-25.68-6.117l-94.672-54.654c-14.156-8.17-25.742-28.23-25.742-44.579V201.355c0-16.343 11.586-36.397 25.742-44.572l94.672-54.64c7.05-4.09 16.392-6.143 25.68-6.143zm7.523 68.766v35.898h26.414v-8.049h-17.79v-6.355h13.7v-7.547h-13.7v-5.899h17.515v-8.048h-26.139zm-38.637.005v35.899h15.756c10.189 0 18.56-7.03 18.56-17.797s-8.371-18.102-18.56-18.102H192.86zm8.649 8.05h7.107c5.067 0 9.528 3.895 9.528 10.052c0 6.152-4.46 9.742-9.528 9.742h-7.107V172.82zm86.5 41.349c-2.724 0-5.45 1.035-7.535 3.105L206.09 291.65a10.685 10.685 0 0 1-15.065 0l-17.9-17.886c-4.114-4.147-10.895-4.147-15.064 0l-11.502 11.502c-3.225 3.268-4.114 10.923 0 15.064l44.466 44.453c4.17 4.142 10.896 4.142 15.065 0l100.955-100.941c4.114-4.142 4.114-10.918 0-15.065l-11.508-11.502a10.647 10.647 0 0 0-7.53-3.105zm5.115 79.375v15.078h-14.746v11.275h14.855v14.74h12.022v-14.74h14.748v-11.275h-14.803v-15.078h-12.076z\\\"/>\"\n    },\n    \"preregistered-de-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176.021 64c9.304 0 18.649 2.044 25.7 6.137l94.666 54.64c14.143 8.178 25.74 28.229 25.74 44.57V310.65c0 16.347-11.597 36.405-25.74 44.579l-94.666 54.654c-7.051 4.08-16.396 6.117-25.7 6.117c-9.345 0-18.691-2.037-25.742-6.117l-94.664-54.654c-14.143-8.174-25.742-28.232-25.742-44.579V201.348c0-16.342 11.599-36.393 25.742-44.57l94.664-54.641C205.33 98.044 214.676 96 224.021 96zm-30.416 68.771v35.893h15.688c10.263 0 18.566-7.023 18.566-17.79c0-10.77-8.303-18.103-18.566-18.103h-15.688zm38.215 0v35.893h26.37v-8.049h-17.772v-6.355h13.684v-7.541h-13.684v-5.905h17.478v-8.043H231.82zm-29.58 8.043h7.053c5.132 0 9.594 3.901 9.594 10.06c0 6.149-4.462 9.741-9.594 9.741h-7.053v-19.8zm85.744 45.538a10.576 10.576 0 0 0-7.517 3.103l-74.389 74.377c-4.13 4.139-10.928 4.139-15.058 0l-17.9-17.889c-4.131-4.147-10.887-4.147-15.06 0l-11.513 11.502c-3.254 3.267-4.13 10.92 0 15.059l44.473 44.46c4.13 4.14 10.928 4.14 15.058 0l100.967-100.943c4.13-4.142 4.13-10.917 0-15.064l-11.514-11.502a10.68 10.68 0 0 0-7.547-3.103z\\\"/>\"\n    },\n    \"preregistered-de-tc\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M255.967 8c-14.439 0-28.946 3.178-39.86 9.52l-146.73 84.694c-21.899 12.676-39.86 43.748-39.86 69.073v169.416c0 25.333 17.961 56.433 39.86 69.102l146.73 84.704c10.914 6.327 25.422 9.491 39.86 9.491c14.507 0 28.945-3.164 39.86-9.491l146.73-84.704c21.967-12.67 39.926-43.77 39.926-69.102V171.287c0-25.325-17.96-56.397-39.926-69.073L295.827 17.52C284.912 11.178 270.474 8 255.967 8Zm95.748 106.594c10.47 0 19.433 5.617 24.155 14.124l-12.996 3.42c-2.396-3.04-6.985-4.936-11.159-4.936c-8.76 0-14.303 6.294-14.303 15.033c0 9.184 6.023 14.881 14.303 14.881c5.064 0 9.991-2.585 12.182-6.233l12.864 3.354c-4.38 9.416-13.892 15.648-25.046 15.648c-15.261 0-27.574-11.623-27.574-27.65c0-16.02 12.313-27.64 27.574-27.64zm-73.46 2.065h43.167v11.471H305.83v39.662h-12.19V128.13h-15.383zm-130.588.01h22.29c14.61 0 26.456 10.45 26.456 25.793c0 15.337-11.847 25.33-26.457 25.33h-22.289zm55.368.008h37.18v11.462h-24.876v8.402h19.532v10.742H215.34v9.056h25.349v11.47h-37.653zm-43.176 11.452v28.2h10.097c7.339 0 13.67-5.108 13.67-13.868c0-8.772-6.331-14.332-13.67-14.332zm195.247 63.06c4.231 0 8.446 1.601 11.633 4.811l17.884 17.837c6.372 6.427 6.372 16.93 0 23.35l-156.44 156.449c-6.51 6.413-16.986 6.413-23.358 0l-68.932-68.913c-6.44-6.413-5.07-18.276 0-23.34l17.809-17.827c6.44-6.428 16.995-6.428 23.368 0l27.755 27.726c6.372 6.413 16.849 6.413 23.359 0l115.186-115.28a16.677 16.677 0 0 1 11.736-4.813z\\\"/>\",\n      \"width\": 512\n    },\n    \"preregistered-de-tc-plus\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M256.052 8c-14.463 0-29.023 3.164-39.87 9.51L69.459 102.207c-21.98 12.674-39.965 43.755-39.965 69.084V340.7c0 25.339 17.985 56.43 39.965 69.103l146.723 84.705c10.847 6.328 25.407 9.492 39.87 9.492c14.368 0 28.929-3.164 39.87-9.492l146.724-84.705c21.884-12.674 39.86-43.764 39.86-69.103V171.29c0-25.329-17.976-56.41-39.86-69.084L295.923 17.511C284.98 11.164 270.42 8 256.053 8Zm83.284 106.577c10.104 0 18.695 5.417 23.227 13.603l-12.466 3.297c-2.361-2.927-6.795-4.746-10.76-4.746c-8.498 0-13.698 6.07-13.698 14.474c0 8.857 5.766 14.342 13.697 14.342c4.91 0 9.63-2.493 11.708-5.996l12.457 3.22c-4.249 9.065-13.4 15.062-24.165 15.062c-14.73 0-26.533-11.19-26.533-26.628s11.804-26.628 26.533-26.628zm-72.75.53h41.575v11.037h-14.957v38.212h-11.85v-38.212h-14.768zm-114.354.096h21.673c14.199 0 25.69 10.137 25.69 25.018c0 14.89-11.491 24.6-25.69 24.6h-21.673zm53.804.389h35.873v11.035h-23.975v8.09h18.728v10.344h-18.728v8.734h24.354v11.036h-36.252zm-41.935 10.732v27.367h9.804c7.099 0 13.271-4.97 13.271-13.47c0-8.51-6.172-13.897-13.271-13.897zm191.092 64.85c4.221 0 8.446 1.601 11.709 4.812l17.79 17.828c6.431 6.432 6.431 16.928 0 23.35L228.24 393.624c-6.432 6.414-16.937 6.414-23.369 0L135.92 324.72c-6.338-6.423-5.013-18.29 0-23.35l17.874-17.828c6.432-6.432 16.937-6.432 23.37 0l27.707 27.726c6.432 6.414 16.937 6.414 23.37 0l115.301-115.282a16.427 16.427 0 0 1 11.651-4.812zm6.385 123.022h18.557v23.36h23v17.486h-22.81v22.84h-18.652v-22.84h-22.905v-17.487h22.81z\\\"/>\",\n      \"width\": 512\n    },\n    \"preregistered-de-tc-plus-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176.033 64c9.27 0 18.663 2.042 25.723 6.137l94.66 54.64c14.119 8.177 25.717 28.23 25.717 44.57v109.298c0 16.347-11.598 36.407-25.717 44.584l-94.66 54.648c-7.06 4.082-16.453 6.123-25.723 6.123c-9.33 0-18.724-2.04-25.722-6.123l-94.66-54.648c-14.181-8.177-25.784-28.237-25.784-44.584V201.348c0-16.342 11.603-36.394 25.783-44.57l94.66-54.641c7-4.095 16.393-6.137 25.724-6.137zm53.733 68.76c-9.503 0-17.12 7.22-17.12 17.18s7.617 17.177 17.12 17.177c6.944 0 12.848-3.869 15.59-9.717l-8.038-2.078c-1.34 2.26-4.385 3.87-7.552 3.87c-5.117 0-8.838-3.539-8.838-9.253c0-5.421 3.356-9.34 8.838-9.34c2.558 0 5.418 1.175 6.941 3.063l8.043-2.127c-2.924-5.281-8.466-8.775-14.984-8.775zm-46.936.342v7.119h9.527v24.654h7.645v-24.654h9.65v-7.12H230.83zm-73.777.062v32.012h13.982c9.16 0 16.574-6.267 16.574-15.873c0-9.6-7.413-16.139-16.574-16.139h-13.982zm34.713.25v31.768h23.388v-7.121h-15.713v-5.635h12.082v-6.674h-12.082v-5.219h15.47v-7.119h-23.145zm-27.055 6.924h6.324c4.58 0 8.563 3.474 8.563 8.965c0 5.484-3.983 8.691-8.563 8.691h-6.324v-17.656zm123.285 41.838a10.6 10.6 0 0 0-7.517 3.105l-74.39 74.375c-4.149 4.138-10.926 4.138-15.075 0l-17.875-17.886c-4.15-4.15-10.929-4.15-15.078 0l-11.532 11.501c-3.234 3.265-4.088 10.921 0 15.065l44.485 44.455c4.15 4.138 10.926 4.138 15.076 0l100.937-100.943c4.15-4.144 4.15-10.915 0-15.065l-11.478-11.502a10.731 10.731 0 0 0-7.553-3.103v-.002zm4.12 79.37v15.07h-14.718v11.282h14.778v14.735h12.033v-14.735h14.717v-11.28h-14.838v-15.071h-11.973z\\\"/>\"\n    },\n    \"preregistered-de-tc-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.979 64c9.359 0 18.674 2.051 25.716 6.143l94.664 54.64c14.173 8.179 25.76 28.224 25.76 44.563v109.3c0 16.344-11.587 36.409-25.76 44.583l-94.664 54.648c-7.042 4.082-16.357 6.123-25.716 6.123c-9.315 0-18.675-2.04-25.717-6.123l-94.664-54.648c-14.129-8.174-25.717-28.24-25.717-44.583v-109.3c0-16.34 11.588-36.384 25.717-44.563l94.664-54.64C205.304 98.05 214.664 96 223.979 96zm61.773 68.77c-9.846 0-17.791 7.498-17.791 17.834c0 10.34 7.945 17.837 17.791 17.837c7.196 0 13.332-4.02 16.158-10.095l-8.299-2.162c-1.413 2.353-4.592 4.021-7.859 4.021c-5.342 0-9.229-3.677-9.229-9.601c0-5.639 3.578-9.7 9.229-9.7c2.693 0 5.654 1.224 7.2 3.184l8.384-2.205c-3.046-5.488-8.83-9.113-15.584-9.113zm-47.393 1.334v7.4h9.924v25.588h7.865v-25.588h10.059v-7.4h-27.848zm-84.252.005v32.983h14.381c9.426 0 17.069-6.447 17.069-16.342c0-9.9-7.643-16.64-17.069-16.64h-14.38zm35.721.006v32.989h24.293v-7.4h-16.353v-5.845h12.601v-6.93h-12.601v-5.42h16.048v-7.394h-23.988zm-27.855 7.389h6.515c4.735 0 8.819 3.586 8.819 9.246c0 5.651-4.084 8.947-8.819 8.947h-6.515v-18.193zm125.966 40.682v.001c-2.73 0-5.472 1.033-7.572 3.104l-74.312 74.375c-4.2 4.138-10.96 4.138-15.07 0l-17.907-17.889c-4.111-4.146-10.92-4.146-15.076 0l-11.49 11.502c-3.272 3.267-4.156 10.921 0 15.059l44.472 44.459c4.112 4.138 10.87 4.138 15.07 0l100.928-100.934c4.111-4.142 4.111-10.918 0-15.064l-11.539-11.508c-2.055-2.071-4.774-3.105-7.504-3.105z\\\"/>\"\n    },\n    \"preregistered-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.979 64c9.345 0 18.69 2.044 25.742 6.137l94.658 54.64c14.143 8.178 25.748 28.229 25.748 44.57V310.65c0 16.347-11.605 36.405-25.748 44.579l-94.658 54.654c-7.051 4.08-16.397 6.117-25.742 6.117c-9.304 0-18.655-2.037-25.706-6.117l-94.658-54.654c-14.164-8.174-25.742-28.232-25.742-44.579V201.348c0-16.342 11.578-36.393 25.742-44.57l94.658-54.641C205.324 98.044 214.675 96 223.98 96zm63.992 93.145a10.678 10.678 0 0 0-7.547 3.103l-74.346 74.377c-4.172 4.139-10.928 4.139-15.058 0l-17.9-17.889c-4.131-4.147-10.93-4.147-15.06 0l-11.519 11.502c-3.254 3.267-4.13 10.92 0 15.059l44.479 44.46c4.13 4.14 10.886 4.14 15.058 0L307.002 218.82c4.13-4.143 4.13-10.923 0-15.07l-11.514-11.502a10.577 10.577 0 0 0-7.517-3.103z\\\"/>\"\n    },\n    \"preregistered-tc\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M255.967 8c-14.421 0-28.906 3.167-39.9 9.51L69.403 102.207c-21.987 12.675-39.899 43.754-39.899 69.084v169.42c0 25.336 17.912 56.425 39.899 69.093l146.666 84.715c10.993 6.324 25.478 9.482 39.898 9.482c14.486 0 28.906-3.158 39.9-9.482l146.732-84.715c21.922-12.668 39.899-43.757 39.899-69.093V171.29c0-25.33-17.977-56.41-39.9-69.084L295.867 17.511C284.872 11.167 270.452 8 255.966 8Zm25.993 106.596c11.446 0 21.216 6.111 26.324 15.365l-14.161 3.723c-2.651-3.305-7.572-5.371-12.163-5.371c-9.57 0-15.516 6.856-15.516 16.369c0 9.99 6.527 16.188 15.516 16.188c5.561 0 10.87-2.808 13.262-6.773l14.029 3.638c-4.786 10.243-15.134 17.022-27.291 17.022c-16.555 0-29.943-12.641-29.943-30.075c0-17.448 13.388-30.086 29.943-30.086zm-82.773 2.255h47.014v12.475h-16.947v43.167h-13.32v-43.167h-16.747Zm155.95 80.792c4.235 0 8.469 1.602 11.67 4.813l17.846 17.827c6.402 6.428 6.402 16.929 0 23.35L228.221 400.094c-6.467 6.415-16.939 6.415-23.34 0l-68.934-68.914c-6.402-6.415-5.044-18.277 0-23.34l17.847-17.828c6.402-6.428 16.874-6.428 23.34 0l27.746 27.726c6.402 6.415 16.874 6.415 23.341 0l115.236-115.282c3.2-3.211 7.444-4.813 11.68-4.813z\\\"/>\",\n      \"width\": 512\n    },\n    \"preregistered-tc-plus\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M255.924 8c-14.47 0-28.871 3.17-39.841 9.51l-146.73 84.694c-21.94 12.674-39.832 43.761-39.832 69.093v169.406c0 25.332 17.893 56.42 39.832 69.093l146.73 84.713c10.97 6.325 25.449 9.491 39.841 9.491c14.55 0 28.938-3.166 39.908-9.491l146.73-84.713c21.939-12.674 39.917-43.761 39.917-69.093V171.297c0-25.332-17.978-56.42-39.918-69.093L295.832 17.51C284.862 11.17 270.473 8 255.924 8Zm24.648 106.594c11.203 0 20.871 6.054 25.936 15.223l-14.048 3.675c-2.532-3.269-7.438-5.324-11.888-5.324c-9.514 0-15.422 6.795-15.422 16.217c0 9.89 6.445 16.028 15.422 16.028c5.371 0 10.665-2.778 13.044-6.707l13.886 3.6c-4.757 10.15-15.038 16.86-26.93 16.86c-16.496 0-29.773-12.517-29.773-29.78c0-17.272 13.277-29.792 29.773-29.792zm-81.966.578h46.5v12.362h-16.719v42.73h-13.214v-42.73h-16.567zm156.562 75.989c4.229 0 8.465 1.602 11.67 4.812l17.837 17.827c6.41 6.434 6.41 16.931 0 23.35L228.189 393.607c-6.411 6.419-16.835 6.419-23.246 0l-68.979-68.903c-6.41-6.418-5.02-18.283 0-23.35l17.847-17.827c6.41-6.426 16.91-6.426 23.32 0l27.812 27.726c6.411 6.419 16.835 6.419 23.246 0l115.318-115.28c3.206-3.21 7.432-4.812 11.661-4.812zm10.022 123.048h18.632v23.368h22.971v17.477h-22.81v22.838h-18.642v-22.838h-23.046v-17.477h22.895z\\\"/>\",\n      \"width\": 512\n    },\n    \"preregistered-tc-plus-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.951 64c9.387 0 18.669 2.044 25.746 6.135l94.664 54.642c14.155 8.177 25.754 28.234 25.754 44.577v109.292c0 16.344-11.6 36.4-25.754 44.577l-94.664 54.654c-7.077 4.08-16.36 6.123-25.746 6.123c-9.285 0-18.627-2.042-25.705-6.123l-94.664-54.654c-14.155-8.177-25.697-28.233-25.697-44.577V201.354c0-16.343 11.542-36.4 25.697-44.577l94.664-54.642c7.078-4.091 16.37-6.135 25.705-6.135zm15.903 68.77c-10.643 0-19.21 8.078-19.21 19.22c0 11.138 8.567 19.215 19.21 19.215c7.672 0 14.304-4.33 17.373-10.879l-8.96-2.322c-1.534 2.534-4.948 4.326-8.413 4.326c-5.792 0-9.95-3.96-9.95-10.34c0-6.078 3.812-10.463 9.95-10.463c2.87 0 6.034 1.327 7.667 3.436l9.065-2.371c-3.267-5.916-9.505-9.822-16.732-9.822zm-52.883.373v7.976h10.69v27.569h8.525v-27.569h10.787v-7.976H186.97zm101.008 49.025a10.594 10.594 0 0 0-7.522 3.105l-74.4 74.373c-4.136 4.141-10.86 4.141-14.996 0l-17.944-17.886c-4.136-4.146-10.909-4.146-15.045 0l-11.515 11.502c-3.24 3.269-4.136 10.923 0 15.064l44.504 44.453c4.135 4.141 10.86 4.141 14.996 0l100.959-100.941c4.135-4.141 4.135-10.914 0-15.065l-11.508-11.5a10.613 10.613 0 0 0-7.53-3.105zm6.466 79.387v15.076h-14.771v11.275h14.869v14.735h12.027v-14.735h14.715v-11.275h-14.818v-15.076h-12.022z\\\"/>\"\n    },\n    \"preregistered-tc-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm175.979 64c9.345 0 18.65 2.044 25.742 6.137l94.664 54.64c14.143 8.178 25.742 28.229 25.742 44.57V310.65c0 16.347-11.599 36.405-25.742 44.579l-94.664 54.654c-7.093 4.08-16.397 6.117-25.742 6.117c-9.304 0-18.65-2.037-25.743-6.117l-94.623-54.654c-14.185-8.174-25.74-28.232-25.74-44.579V201.348c0-16.342 11.555-36.393 25.74-44.57l94.623-54.641C205.33 98.044 214.675 96 223.98 96zm16.769 68.771c-10.68 0-19.318 8.154-19.318 19.41c0 11.249 8.638 19.405 19.318 19.405c7.844 0 14.52-4.374 17.607-10.982l-9.05-2.348c-1.544 2.557-4.969 4.37-8.557 4.37c-5.799 0-10.01-3.999-10.01-10.444c0-6.137 3.835-10.56 10.01-10.56c2.962 0 6.137 1.332 7.848 3.464l9.136-2.402c-3.295-5.97-9.6-9.913-16.984-9.913zm-53.402 1.456v8.048h10.806v27.85h8.592v-27.85h10.934v-8.048h-30.332zm100.613 52.125c-2.733 0-5.47 1.032-7.535 3.103l-74.346 74.377c-4.172 4.139-10.928 4.139-15.058 0l-17.9-17.889c-4.173-4.147-10.93-4.147-15.06 0l-11.513 11.502c-3.254 3.267-4.13 10.92 0 15.059l44.473 44.459c4.13 4.139 10.886 4.139 15.058 0L307.002 248.02c4.13-4.142 4.13-10.917 0-15.064l-11.514-11.502c-2.065-2.071-4.796-3.103-7.529-3.103z\\\"/>\"\n    },\n    \"protocols\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M98.213 64.016c-14.173-.403-24.682 7.037-31.085 21.866c-1.66 3.318-2.906 6.636-3.735 10.37c-5.393 20.325-8.293 41.48-7.048 62.22c.83 17.421-3.319 32.765-10.37 48.528c-14.518 31.94-24.888 65.541-29.036 100.8c-2.49 20.325 2.9 37.331 19.492 49.775c7.466 5.393 14.52 10.369 22.4 14.931c21.57 12.03 44.8 20.736 68.03 28.202c1.659.83 3.73 1.664 4.974 2.908c19.08 17.837 41.895 30.28 66.368 39.406c17.421 6.637 34.841 6.637 52.263 0c18.251-7.051 36.09-14.93 51.023-27.375c12.86-11.2 27.792-17.843 43.554-23.235c22.814-7.881 44.386-17.832 63.881-32.35c16.177-12.029 24.475-27.79 22.401-48.115c-.415-4.148-.419-8.296-1.248-12.444c-4.978-33.598-15.346-65.956-29.45-96.651c-5.806-13.274-11.202-26.133-7.469-41.48c-1.244-14.518-2.072-29.862-4.561-44.38c-1.66-12.03-4.15-23.647-9.957-34.432c-7.466-14.518-19.495-20.322-35.258-17.418c-5.392.83-11.201 2.487-16.179 4.56c-27.791 12.03-50.19 31.106-68.441 55.164c-1.66 2.49-3.319 3.322-6.222 3.322h-57.651c-2.489 0-4.15-.413-5.809-2.487c-10.784-15.348-24.06-28.208-38.992-38.993c-12.444-9.54-26.133-17.42-41.48-21.153c-3.656-.933-7.124-1.446-10.395-1.54Zm253.563 20.27c4.569.039 7.682 2.529 9.86 7.818c3.318 8.71 6.225 17.416 7.469 26.127c2.074 14.103 2.482 28.206 3.727 39.406c-.415 11.2-1.243 19.084-2.487 28.21c0 1.659.418 3.728 1.247 5.387c18.251 34.843 31.108 71.767 37.745 110.343c1.245 7.052 1.663 14.514 1.248 21.98c-.415 8.296-5.395 14.101-11.617 19.08c-14.933 12.443-32.766 20.744-50.603 27.795c-12.444 4.978-25.309 8.708-37.753 13.27c-2.489 1.245-4.974 2.488-7.048 4.562c-21.155 19.496-45.631 33.599-73.838 39.406c-6.222 1.244-14.097.421-20.319-1.653c-25.302-7.88-48.121-20.74-67.202-39.406c-1.244-1.244-2.902-2.08-4.561-2.495c-23.229-7.466-46.46-15.346-68.029-27.375c-5.807-3.319-11.61-7.05-17.418-10.783c-14.103-8.711-17.841-21.57-15.353-37.332c6.222-41.48 19.5-80.475 38.58-117.392c.83-2.074 1.248-4.56 1.248-6.635c-2.074-26.547-1.248-52.681 4.974-78.399c1.244-4.562 2.9-9.122 4.974-13.27c3.319-6.637 7.473-9.122 14.94-7.048c6.222 1.659 12.026 3.318 17.418 6.222c24.888 12.858 45.215 30.692 59.733 54.75c1.659 2.489 2.905 2.9 5.809 2.9c15.762-.415 31.105-1.652 46.867-1.652c10.785 0 21.573.823 32.358 1.652c2.903 0 4.15-.825 5.808-3.313c14.933-24.059 35.258-42.313 60.146-55.172c5.393-2.903 11.198-4.977 17.005-6.222c1.867-.518 3.549-.774 5.072-.761zM188.019 200.648a52.046 52.046 0 0 0-4.334.13c-1.66 0-2.902-.002-4.561.414c-26.962 5.392-51.852 16.593-74.251 32.77c-8.296 6.222-15.76 13.276-21.153 22.401c-12.444 20.74-18.67 43.136-19.914 67.194c-.415 2.904.833 4.978 3.322 6.222c12.444 6.637 24.886 13.694 37.745 19.5c9.955 4.564 20.738 7.876 31.523 12.024c1.244-6.637 2.492-12.444 3.322-18.666c5.807-24.474 18.662-43.135 42.306-53.09l2.495-1.247c12.859-4.148 18.666-13.27 20.74-26.128c2.489-15.762 4.557-31.526-.421-47.289c-3.267-10.525-7.479-14.07-16.819-14.234zm71.423.162c-8.353-.334-11.982 3.338-15.611 12.412c-.415 1.659-.825 2.902-1.24 4.56c-3.318 13.69-2.08 26.966-.421 40.655c1.66 15.347 8.716 25.715 23.648 31.523c24.059 9.125 36.5 28.618 42.307 52.676c1.659 6.222 2.903 12.03 4.148 18.666c6.637-2.489 13.272-4.56 19.079-7.048c17.421-6.222 34.428-13.692 49.776-24.062c2.489-1.66 3.736-3.317 3.321-6.635c-1.244-9.955-2.487-20.32-4.56-30.276c-7.467-31.524-24.476-55.171-53.511-69.69c-10.785-5.392-21.158-10.37-32.358-14.517c-9.955-3.733-20.319-6.224-30.689-7.883a36.643 36.643 0 0 0-3.889-.38zM228.9 330.613c-16.592.83-28.622 2.487-39.406 8.71c-7.467 4.562-9.952 9.538-7.049 17.005c6.222 16.177 17.415 29.034 32.763 37.745c5.807 3.318 12.032 3.731 17.84.413c15.762-8.711 26.547-21.98 33.183-38.572c2.49-6.222.832-10.783-4.56-14.93c-2.49-2.075-5.393-3.74-8.297-4.57c-9.54-2.489-19.082-4.556-24.474-5.8z\\\"/>\"\n    },\n    \"protocols-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm71.178 64.014c2.725.077 5.616.503 8.662 1.28c12.79 3.112 24.196 9.68 34.566 17.63c12.444 8.987 23.507 19.704 32.494 32.494c1.383 1.728 2.766 2.072 4.84 2.072h48.043c2.42 0 3.803-.693 5.186-2.767c15.21-20.049 33.873-35.947 57.033-45.971c4.148-1.728 8.989-3.11 13.482-3.8c13.136-2.42 23.161 2.416 29.383 14.515c4.84 8.987 6.914 18.669 8.297 28.693c2.074 12.098 2.764 24.884 3.8 36.983c-3.11 12.79 1.386 23.505 6.225 34.566c11.753 25.58 20.393 52.544 24.541 80.543c.692 3.457.695 6.914 1.041 10.371c1.729 16.938-5.186 30.071-18.667 40.096c-16.247 12.098-34.223 20.39-53.235 26.957c-13.135 4.493-25.58 10.03-36.295 19.363c-12.444 10.37-27.31 16.936-42.52 22.813c-14.517 5.53-29.034 5.53-43.552 0c-20.394-7.605-39.406-17.975-55.307-32.838c-1.037-1.037-2.762-1.733-4.144-2.424c-19.358-6.222-38.717-13.478-56.692-23.502c-6.567-3.802-12.444-7.948-18.666-12.442c-13.826-10.37-18.318-24.542-16.244-41.48c3.457-29.382 12.097-57.384 24.196-84c5.876-13.135 9.333-25.921 8.642-40.44c-1.037-17.283 1.38-34.911 5.873-51.85c.691-3.11 1.73-5.876 3.113-8.642c5.337-12.357 14.094-18.556 25.905-18.22zm211.302 16.89c-1.269-.01-2.67.203-4.226.635c-4.84 1.037-9.678 2.766-14.172 5.186c-20.74 10.715-37.677 25.928-50.121 45.976c-1.383 2.074-2.42 2.76-4.84 2.76c-8.987-.691-17.977-1.377-26.965-1.377c-13.135 0-25.921 1.031-39.056 1.377c-2.42 0-3.458-.342-4.84-2.416c-12.099-20.049-29.038-34.91-49.778-45.625c-4.493-2.42-9.33-3.803-14.515-5.186c-6.222-1.728-9.684.343-12.45 5.873c-1.728 3.457-3.109 7.257-4.146 11.059c-5.185 21.431-5.873 43.211-4.144 65.334c0 1.728-.348 3.801-1.04 5.53c-15.9 30.764-26.965 63.259-32.15 97.825c-2.074 13.136 1.04 23.85 12.793 31.11c4.84 3.11 9.676 6.22 14.516 8.986c17.974 10.025 37.334 16.59 56.691 22.813c1.383.345 2.764 1.04 3.8 2.078c15.902 15.555 34.917 26.272 56.003 32.84c5.185 1.728 11.746 2.413 16.931 1.377c23.506-4.84 43.903-16.592 61.532-32.838c1.728-1.729 3.799-2.764 5.873-3.801c10.37-3.802 21.093-6.91 31.463-11.059c14.863-5.876 29.724-12.794 42.168-23.164c5.185-4.148 9.335-8.987 9.681-15.9c.346-6.222-.003-12.44-1.04-18.317c-5.531-32.146-16.244-62.915-31.454-91.95c-.691-1.383-1.04-3.108-1.04-4.49c1.036-7.606 1.728-14.176 2.073-23.509c-1.037-9.333-1.379-21.085-3.107-32.838c-1.037-7.259-3.46-14.514-6.225-21.773c-1.814-4.407-4.407-6.483-8.215-6.516zm-136.464 96.97c7.783.136 11.293 3.091 14.015 11.862c4.148 13.136 2.426 26.271.352 39.407c-1.729 10.715-6.568 18.316-17.283 21.773l-2.08 1.04c-19.703 8.295-30.415 23.847-35.254 44.241c-.692 5.185-1.733 10.024-2.77 15.555c-8.987-3.457-17.973-6.217-26.27-10.02c-10.715-4.839-21.083-10.719-31.453-16.25c-2.074-1.037-3.113-2.765-2.767-5.185c1.037-20.049 6.224-38.711 16.594-55.994c4.493-7.605 10.713-13.483 17.627-18.668c18.666-13.481 39.408-22.815 61.877-27.309c1.382-.346 2.418-.344 3.8-.344c1.297-.086 2.5-.128 3.612-.109zm58.26.122c.405-.009.824-.006 1.26.012c.994.04 2.073.145 3.24.318c8.641 1.383 17.278 3.458 25.574 6.569c9.333 3.456 17.977 7.605 26.964 12.1c24.197 12.097 38.37 31.803 44.592 58.073c1.729 8.296 2.764 16.933 3.801 25.229c.346 2.765-.694 4.147-2.768 5.53c-12.79 8.64-26.962 14.867-41.48 20.052c-4.84 2.074-10.368 3.799-15.898 5.873c-1.037-5.53-2.075-10.37-3.457-15.555c-4.84-20.048-15.206-36.294-35.254-43.898c-12.444-4.84-18.325-13.478-19.707-26.268c-1.383-11.407-2.416-22.472.35-33.879c.345-1.382.687-2.418 1.032-3.8c2.836-7.09 5.671-10.222 11.75-10.356zm-24.194 108.182c4.494 1.037 12.446 2.76 20.397 4.834c2.42.691 4.84 2.078 6.914 3.806c4.493 3.457 5.874 7.259 3.8 12.444c-5.53 13.826-14.519 24.883-27.654 32.142c-4.84 2.766-10.026 2.422-14.865-.343c-12.79-7.26-22.118-17.975-27.303-31.456c-2.42-6.222-.349-10.367 5.873-14.17c8.987-5.184 19.011-6.566 32.838-7.257z\\\"/>\"\n    },\n    \"psyarxiv\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M55.514 64v185.773h194.437V64Zm48.202 50.73l12.458.903c.361 0 .543.182.543.543v12.094c.18 8.305 0 16.611.903 24.916c1.263 12.637 7.761 19.135 20.218 21.121c1.986.361 3.972.363 6.499.363v-59.577h13.903v59.577c16.068 1.264 27.26-8.668 27.62-23.833l.184-26.9l.18-5.956c0-1.444 1.084-2.528 2.528-2.528l11.192-.36v6.859c-.18 11.193.18 22.386-.903 33.399c-1.444 14.804-10.652 23.65-24.372 27.983c-5.055 1.625-10.292 1.626-16.069 1.626v24.012h-13.72V184.96c-11.193 0-17.15-1.806-24.372-5.417c-11.194-5.777-16.248-15.885-16.429-28.342c-.541-11.735-.363-23.653-.363-36.47zM55.514 261.508V447.82l194.437.18V261.508Zm206.535 0V447.82l194.437.18V261.508Zm74.514 44.57c5.89.213 11.817 3.984 14.672 10.314c3.25 7.04 5.955 14.08 8.843 21.3l1.989 4.514l11.552-27.44c3.61-8.666 4.875-9.207 15.165-7.401l-20.761 47.299l13 31.954c1.986 4.694 5.775 6.138 10.65 6.318c.36 3.07.362 5.598.362 7.765a14.082 14.082 0 0 1-19.859-6.14c-4.152-8.123-7.4-16.789-11.012-25.274l-2.168-5.237l-15.885 36.83h-12.098l21.664-49.284l-12.095-29.608c-2.166-5.236-6.68-6.138-11.734-6.5v-7.404c2.37-1.467 5.038-2.103 7.715-2.006zm-183.918 4.898h13.177l24.552 93.156h-12.997l-6.499-24.736H130.98l-8.487 17.151c-1.625 3.43-4.693 7.042-4.693 7.042h-12.095zm5.052 13.9l-21.664 44.051h32.317z\\\"/>\",\n      \"width\": 512\n    },\n    \"psyarxiv-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm8.928 64h162.031v154.81H56.928V96zm40.17 42.275c0 10.682-.149 20.614.302 30.393c.15 10.38 4.362 18.805 13.69 23.62c6.018 3.008 10.983 4.51 20.31 4.51v20.013h11.434v-20.012c4.814 0 9.178 0 13.39-1.354c11.435-3.61 19.108-10.983 20.311-23.32c.903-9.177.602-18.504.752-27.832v-5.715l-9.328.299c-1.204 0-2.105.904-2.105 2.107l-.15 4.963l-.153 22.418c-.301 12.638-9.628 20.913-23.018 19.86v-49.647h-11.586v49.647c-2.106 0-3.76-.002-5.416-.303c-10.38-1.655-15.794-7.068-16.847-17.6c-.753-6.92-.602-13.843-.752-20.763V139.48c0-.3-.153-.453-.453-.453l-10.381-.752zM56.928 260.59h162.031V416l-162.031-.15V260.59zm172.113 0h162.031V416l-162.031-.15V260.59zm61.26 37.14a11.266 11.266 0 0 0-5.594 1.674v6.17c4.213.301 7.974 1.053 9.78 5.416l10.077 24.674l-18.054 41.07h10.082l13.238-30.691l1.807 4.363c3.009 7.071 5.717 14.293 9.177 21.063a11.735 11.735 0 0 0 16.55 5.115c0-1.805-.003-3.913-.303-6.47c-4.063-.151-7.22-1.355-8.875-5.266l-10.834-26.627l17.302-39.416c-8.575-1.505-9.63-1.054-12.638 6.168l-9.627 22.865l-1.657-3.76c-2.407-6.018-4.66-11.884-7.369-17.752c-2.379-5.275-7.32-8.416-12.228-8.594c-.28-.01-.556-.01-.834-.002zm-152.43 4.082L98.754 378.99h10.078s2.558-3.008 3.912-5.867l7.072-14.293h33.248l5.416 20.613h10.833l-20.461-77.63h-10.98zm4.211 11.584l8.877 36.71h-26.932l18.055-36.71z\\\"/>\"\n    },\n    \"publons\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M282.067 122.981c-3.221-7.856-7.836-15.067-12.993-21.776c-12.29-15.522-28.523-28.691-47.878-33.997c-29.087-8.043-61.327-.414-85.05 17.843c-5.098 3.864-9.623 8.389-13.812 13.2c-2.006-10.384-2.628-21.005-4.98-31.31c-1.205-1.294-2.372-3.23-4.446-2.905c-5.158.1-9.948 2.272-14.643 4.19c-20.224 8.793-40.38 17.724-60.594 26.507c-2.135 1.017-4.803 1.542-6.167 3.667c-.445 2.846-.414 5.8-.03 8.656c1.226 2.805 4.278 4.088 6.76 5.6c6.52 3.666 13.546 6.678 19.266 11.61c5.138 4.228 7.854 10.73 8.32 17.27c.206 2.165.277 4.338.286 6.52c-.019 79.378.012 158.766-.019 238.144c-.513 10.029.14 20.146-1.472 30.095c-.83 4.683-3.517 9.92-8.635 10.848c-7.668.591-15.404-.287-23.06.395c-2.046.078-2.766 2.302-2.639 4.02c.02 4.565-.128 9.14.079 13.714c-.01 1.254 1.353 1.848 2.056 2.707c14.306-.374 28.603-1.413 42.909-1.58c27.347-.533 54.715-.05 82.015 1.6c2.144.01 5.523.039 5.996-2.677c.426-4.882.367-9.83.04-14.703c-.04-2.164-2.243-3.192-4.12-3.192c-5.909-.305-11.816-.038-17.725-.099c-3.437-.09-7.173.414-10.304-1.334c-3.122-1.897-4.21-5.691-5.05-9.021c-2.49-12.47-1.57-25.264-2.035-37.892c-.307-28.069-.73-56.14-.83-84.218c11.619 5.237 24.237 7.964 36.893 9.08c21.984 2.114 44.639-2.233 64.034-12.873c24.434-13.122 43.188-35.511 53.778-60.962c8.389-19.95 12.083-41.724 11.709-63.313c-.072-14.875-1.851-30.002-7.66-43.815zm-53.452 115.915c-4.357 15.523-13.18 30.856-27.794 38.682c-12.33 6.865-27.14 6.025-40.528 3.37c-10.394-2.057-19.829-7.4-27.784-14.268c-6.806-6.66-9.338-16.53-9.208-25.807c.13-40.41-.187-80.84.158-121.24c9.119-12.786 23.94-21.055 39.402-23.18c14.682-2.154 30.213 2.678 40.786 13.14c14.327 13.961 21.4 33.534 25.55 52.692c4.96 25.175 6.345 51.663-.582 76.61z\\\"/>\",\n      \"width\": 320\n    },\n    \"publons-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm137.371 64.012c1.358.141 2.211 1.495 3.09 2.44c1.96 8.586 2.478 17.438 4.15 26.091c3.49-4.01 7.262-7.78 11.51-11c19.77-15.215 46.636-21.572 70.875-14.87c16.13 4.422 29.656 15.396 39.899 28.33c4.297 5.592 8.144 11.6 10.828 18.147h-.002c4.841 11.511 6.324 24.116 6.384 36.512c.313 17.991-2.767 36.138-9.757 52.762c-8.826 21.21-24.453 39.866-44.815 50.8c-16.163 8.867-35.043 12.49-53.363 10.73c-10.547-.931-21.062-3.203-30.744-7.567c.083 23.398.437 46.79.693 70.181c.387 10.523-.38 21.186 1.695 31.577c.7 2.774 1.608 5.937 4.21 7.517c2.609 1.457 5.721 1.037 8.585 1.111c4.924.051 9.848-.172 14.772.082c1.564 0 3.4.857 3.433 2.66c.272 4.06.322 8.185-.033 12.253c-.395 2.263-3.211 2.24-4.998 2.23c-22.75-1.374-45.556-1.776-68.345-1.332c-11.922.14-23.837 1.004-35.758 1.316c-.585-.716-1.721-1.21-1.713-2.255c-.172-3.812-.05-7.624-.067-11.428c-.106-1.432.494-3.287 2.2-3.352c6.38-.568 12.827.165 19.216-.328c4.266-.773 6.504-5.138 7.196-9.04c1.343-8.292.8-16.722 1.228-25.079c.025-66.148 0-132.304.016-198.453c-.008-1.819-.068-3.63-.24-5.434c-.388-5.45-2.65-10.868-6.932-14.392c-4.767-4.11-10.623-6.62-16.057-9.674c-2.068-1.26-4.611-2.33-5.632-4.668c-.32-2.38-.346-4.841.025-7.213c1.136-1.77 3.36-2.207 5.139-3.055c16.845-7.318 33.642-14.761 50.496-22.09c3.912-1.597 7.904-3.407 12.203-3.49c.216-.034.42-.04.613-.02zm47.938 26.629a39.937 39.937 0 0 0-6.924.404c-12.886 1.77-25.237 8.66-32.836 19.314c-.288 33.667-.023 67.36-.131 101.036c-.108 7.73 2.002 15.956 7.674 21.505c6.63 5.723 14.49 10.176 23.152 11.89c11.156 2.212 23.499 2.912 33.774-2.81c12.178-6.52 19.531-19.298 23.162-32.234c5.772-20.79 4.617-42.863.484-63.842c-3.459-15.965-9.352-32.276-21.291-43.91c-7.159-7.084-17.046-11.07-27.064-11.353z\\\"/>\"\n    },\n    \"pubmed\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M120.193 177.738C123.188 77.35 64.278 64 64.278 64v31.262c-23.443-11.65-45.95-13.332-45.95-13.332v255.179s98.105-11.417 98.105 84.41c0 0 36.584-153.375 248.86 26.481c0-61.593.378-216.94.378-268.285c-195.715-142.584-245.478-1.977-245.478-1.977Zm187.206 173.82l-12.376-97.654h-.448l-40.728 97.654h-17.56l-38.936-97.654h-.448l-14.176 97.654h-43.875l28.801-169.619h43.427l34.435 90.65l36.466-90.65h43.875l25.682 169.62h-44.14z\\\"/>\",\n      \"width\": 384\n    },\n    \"pubmed-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm69.564 64s49.092 11.125 46.596 94.781c0 0 41.47-117.171 204.567 1.649c0 42.788-.315 172.242-.315 223.57c-176.897-149.88-207.385-22.068-207.385-22.068c0-79.856-81.754-70.34-81.754-70.34v-212.65s18.756 1.402 38.291 11.11V96zm86.147 98.283l-24.002 141.35h36.562l11.815-81.38h.373l32.447 81.38h14.633l33.94-81.38h.373l10.314 81.38h36.783l-21.402-141.35h-36.563l-30.388 75.541l-28.696-75.54h-36.19z\\\"/>\"\n    },\n    \"pubpeer\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M273.648 32c-19.935 0-36.199 16.258-36.199 36.193c0 1.968.204 3.884.509 5.769l-156.486 48.36c-5.59-12.794-18.354-21.783-33.169-21.783c-19.936 0-36.2 16.257-36.2 36.193c0 17.677 12.799 32.439 29.595 35.563v235.652c-17.744 2.3-31.54 17.506-31.54 35.86c0 19.934 16.26 36.193 36.194 36.193s36.193-16.26 36.193-36.193c0-11.773-5.695-22.232-14.446-28.85l80.106-132.374h89.577c2.302 17.746 17.511 31.545 35.866 31.545c19.936 0 36.193-16.263 36.193-36.199c0-18.355-13.794-33.56-31.54-35.86V104.06c17.746-2.301 31.54-17.51 31.54-35.866c0-19.935-16.257-36.193-36.193-36.193Zm0 9.307a26.813 26.813 0 0 1 26.886 26.886a26.819 26.819 0 0 1-26.886 26.892a26.824 26.824 0 0 1-26.892-26.892a26.819 26.819 0 0 1 26.892-26.886zm-33.042 41.574a36.44 36.44 0 0 0 9.731 12.943L60.022 410.322a35.856 35.856 0 0 0-9.017-2.375V172.792c18.677-1.396 33.491-17.037 33.491-36.06c0-1.863-.187-3.678-.46-5.466zm17.56 17.973a35.814 35.814 0 0 0 10.828 3.205v138.01c-16.218 2.103-29.109 14.99-31.212 31.207h-83.948zm-209.863 8.992a26.813 26.813 0 0 1 26.886 26.886a26.819 26.819 0 0 1-26.886 26.892a26.824 26.824 0 0 1-26.892-26.892a26.819 26.819 0 0 1 26.892-26.886zm225.345 141.197a26.813 26.813 0 0 1 26.886 26.886a26.819 26.819 0 0 1-26.886 26.892a26.824 26.824 0 0 1-26.892-26.892a26.819 26.819 0 0 1 26.892-26.886zM46.352 416.921a26.816 26.816 0 0 1 26.886 26.886a26.816 26.816 0 0 1-26.886 26.886a26.816 26.816 0 0 1-26.886-26.886a26.816 26.816 0 0 1 26.886-26.886z\\\" color=\\\"currentColor\\\"/>\",\n      \"width\": 320\n    },\n    \"pubpeer-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm257.178 64c14.24 0 25.851 11.612 25.851 25.852c0 13.11-9.852 23.975-22.527 25.619v98.578c12.675 1.643 22.527 12.504 22.527 25.615c0 14.24-11.612 25.856-25.851 25.856c-13.111 0-23.976-9.856-25.62-22.532h-63.984l-57.217 94.553c6.25 4.726 10.319 12.198 10.319 20.607c0 14.239-11.615 25.852-25.854 25.852c-14.238 0-25.851-11.613-25.851-25.852c0-13.11 9.853-23.971 22.527-25.615V196.211c-11.997-2.232-21.139-12.776-21.139-25.402c0-14.24 11.618-25.852 25.858-25.852c10.582 0 19.699 6.42 23.691 15.559l111.776-34.543c-.218-1.346-.364-2.716-.364-4.121c0-14.24 11.618-25.852 25.858-25.852zm0 6.648a19.156 19.156 0 0 0-19.21 19.204a19.16 19.16 0 0 0 19.21 19.209a19.156 19.156 0 0 0 19.203-19.21a19.15 19.15 0 0 0-19.203-19.203zm-23.602 29.696l-111.836 34.56c.196 1.278.328 2.574.328 3.905c0 13.587-10.581 24.759-23.922 25.755v167.97a25.62 25.62 0 0 1 6.442 1.696l135.94-224.642a26.026 26.026 0 0 1-6.952-9.244zm12.543 12.838L219.596 268.34h59.963c1.502-11.584 10.71-20.79 22.295-22.291V147.47a25.58 25.58 0 0 1-7.735-2.29zm-149.902 6.422a19.157 19.157 0 0 0-19.21 19.205a19.16 19.16 0 0 0 19.21 19.209a19.156 19.156 0 0 0 19.203-19.21a19.152 19.152 0 0 0-19.203-19.204zm160.96 100.855a19.157 19.157 0 0 0-19.208 19.205a19.16 19.16 0 0 0 19.209 19.209a19.156 19.156 0 0 0 19.203-19.209a19.152 19.152 0 0 0-19.203-19.205zM142.823 370.943a19.154 19.154 0 0 0-19.203 19.205a19.152 19.152 0 0 0 19.203 19.204a19.154 19.154 0 0 0 19.205-19.204a19.156 19.156 0 0 0-19.205-19.205z\\\"/>\"\n    },\n    \"researcherid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M18.56 448V64h133.856c34.224 0 58.672 3.456 73.344 10.352c14.672 6.896 26.72 18.864 36.144 35.888c9.424 17.024 14.144 37.408 14.144 61.168c0 30.032-7.2 54.224-21.616 72.56c-14.416 18.335-34.88 29.856-61.424 34.576c13.616 9.776 24.88 20.48 33.792 32.08c8.912 11.616 21.04 32.432 36.416 62.48L301.44 448H225.6l-45.984-83.552c-16.56-30.208-27.808-49.12-33.744-56.704c-5.936-7.584-12.224-12.832-18.864-15.712c-6.64-2.88-17.28-4.32-31.952-4.32h-13.12V448H18.56Zm63.376-221.6h47.152c28.816 0 47.152-1.264 55.008-3.792c7.856-2.528 14.224-7.632 19.12-15.328c4.896-7.68 7.328-17.904 7.328-30.64c0-12.224-2.448-22.048-7.328-29.472c-4.88-7.424-11.52-12.528-19.904-15.328c-5.936-1.92-23.136-2.88-51.6-2.88H81.936v97.44z\\\"/>\",\n      \"width\": 320\n    },\n    \"researcherid-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm58.133 64H217.68c28.52 0 48.894 2.88 61.12 8.627c12.227 5.747 22.266 15.72 30.12 29.906c7.853 14.187 11.787 31.175 11.787 50.975c0 25.027-6 45.185-18.014 60.465c-12.013 15.28-29.067 24.88-51.187 28.814c11.346 8.147 20.733 17.066 28.16 26.733c7.427 9.68 17.534 27.026 30.348 52.066L341.867 416h-63.201l-38.32-69.627c-13.8-25.173-23.173-40.934-28.12-47.254c-4.946-6.32-10.187-10.692-15.72-13.092c-5.533-2.4-14.399-3.6-26.625-3.6h-10.934V416h-52.814V96zm52.814 54.133v81.201h39.293c24.013 0 39.293-1.054 45.84-3.16c6.547-2.107 11.854-6.36 15.934-12.774c4.08-6.4 6.105-14.92 6.105-25.533c0-10.187-2.038-18.373-6.105-24.56c-4.067-6.187-9.601-10.44-16.588-12.774c-4.947-1.6-19.28-2.4-43-2.4h-41.479z\\\"/>\"\n    },\n    \"researchgate\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M228.66 408.101c-20.194-21.973-47.218-57.268-69.698-97.166c37.134-8.685 64.633-43.55 64.633-78.384c0-51.345-39.88-75.176-92.163-75.176c-27.023 0-48.583 1.365-68.716 1.365c-18.369 0-36.722 0-48.154-.445V171.6l17.401 3.192c11.97 2.302 18.783 7.765 18.783 36.214v180.6c0 28.435-6.813 33.928-18.783 36.2l-17.4 3.252v13.259c12.367-.445 33.912-1.351 55.473-1.351c20.624 0 47.217.906 58.68 1.35v-13.258l-23.847-3.253c-12.366-1.796-18.813-7.764-18.813-36.2v-76.542c11.002.921 20.624.921 35.325.921c27.96 49.95 54.551 87.56 69.652 104.962c13.78 16.526 34.85 27.054 61.442 27.054c7.781 0 16.023-1.367 21.054-3.683v-11.894c-16.496 0-32.992-11.477-44.87-24.321zM119.064 295.344c-15.591 0-22.434-.414-33.008-1.41V178.918c10.574-.92 24.752-.92 37.136-.92c38.531 0 61.427 20.195 61.427 56.839c0 36.215-24.736 60.506-65.555 60.506zm139.934-115.703c-.46-2.409-.875-5.217-1.243-8.456c-.383-3.268-.63-7.104-.782-11.63c-.154-4.496-.215-9.99-.215-16.282c0-6.323.061-11.74.215-16.25c.152-4.528.399-8.41.782-11.648c.368-3.223.782-6.046 1.243-8.455a50.885 50.885 0 0 1 1.78-6.982c3.943-11.923 10.405-20.885 19.443-26.901C289.244 67.02 300.308 64 313.443 64c6.752 0 12.875.782 18.307 2.377c5.371 1.581 10.189 3.76 14.44 6.553c4.189 2.762 7.81 6.015 10.802 9.698a52.87 52.87 0 0 1 7.474 11.878c.75 1.35.537 2.425-.66 3.176l-16.68 6.858c-1.413.753-2.41.37-3.193-1.12c-3.743-6.936-6.936-11.493-12.183-14.807c-5.31-3.3-10.22-4.865-18.308-4.865c-8.793 0-12.721 1.749-18.23 5.693c-5.463 3.867-9.468 8.732-11.832 16.143c-.474 1.335-.905 2.993-1.41 4.942c-.415 1.98-.753 4.404-.967 7.242c-.215 2.84-.415 6.353-.598 10.497c-.123 4.144-.184 9.177-.184 15.008c0 5.86.061 10.894.184 15.038c.184 4.128.383 7.641.598 10.48c.214 2.87.552 5.279.966 7.274c.507 1.919.937 3.575 1.411 4.927c2.364 7.38 5.74 11.415 10.712 14.654c4.911 3.284 10.557 5.648 19.35 5.648c7.811 0 14.962-2.225 19.626-5.618c4.62-3.39 8.456-7.87 10.175-13.994c.753-2.579 1.72-5.786 2.38-9.714c.598-3.929.598-8.087.598-13.825c0-.907-.508-1.367-1.352-1.367h-26.716c-1.504 0-2.24-.736-2.24-2.24v-15.314c0-1.52.736-2.257 2.24-2.257h49.028c1.535 0 2.257.737 2.257 2.257v13.09c0 6.935 0 13.365-.722 19.32c-.691 5.953-1.626 11.109-2.808 14.868c-3.744 11.77-9.682 20.15-18.782 26.394c-9.131 6.291-20.9 9.682-33.684 9.682c-13.135 0-24.199-3.022-33.221-9.022c-9.039-6.077-15.5-14.993-19.443-26.916a51.103 51.103 0 0 1-1.78-6.997z\\\"/>\",\n      \"width\": 384\n    },\n    \"researchgate-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm277.201 64c5.627 0 10.731.651 15.258 1.98c4.476 1.318 8.49 3.135 12.031 5.461c3.491 2.302 6.511 5.013 9.004 8.082a44.056 44.056 0 0 1 6.227 9.899c.626 1.125.449 2.02-.55 2.646l-13.9 5.715c-1.177.628-2.006.308-2.66-.933c-3.119-5.78-5.78-9.577-10.152-12.338c-4.425-2.75-8.518-4.055-15.258-4.055c-7.327 0-10.601 1.457-15.191 4.744c-4.553 3.223-7.89 7.276-9.86 13.451c-.395 1.114-.754 2.496-1.175 4.12c-.346 1.65-.627 3.67-.805 6.035c-.18 2.366-.347 5.295-.5 8.748c-.102 3.453-.152 7.646-.152 12.506c0 4.884.05 9.078.152 12.53c.153 3.44.32 6.37.5 8.735c.178 2.391.46 4.4.805 6.063c.421 1.598.78 2.977 1.175 4.103c1.97 6.15 4.783 9.514 8.926 12.213c4.092 2.737 8.798 4.707 16.125 4.707c6.51 0 12.469-1.855 16.356-4.682c3.85-2.825 7.046-6.559 8.478-11.662c.627-2.148 1.433-4.822 1.983-8.095c.498-3.274.5-6.738.5-11.52c0-.755-.424-1.14-1.127-1.14h-22.264c-1.253 0-1.867-.613-1.867-1.866v-12.761c0-1.267.614-1.881 1.867-1.881h40.857c1.28 0 1.881.614 1.881 1.88v10.907c0 5.78 0 11.14-.601 16.101c-.576 4.962-1.355 9.257-2.34 12.389c-3.12 9.81-8.07 16.793-15.653 21.996c-7.609 5.243-17.417 8.068-28.07 8.068c-10.946 0-20.165-2.516-27.683-7.517c-7.532-5.064-12.918-12.496-16.204-22.432a42.571 42.571 0 0 1-1.482-5.83c-.384-2.007-.73-4.348-1.037-7.047c-.32-2.723-.524-5.919-.65-9.691c-.129-3.746-.18-8.325-.18-13.568c0-5.27.052-9.782.18-13.541c.127-3.773.33-7.01.65-9.708c.306-2.685.653-5.037 1.037-7.044c.37-2.02.857-3.94 1.484-5.819c3.286-9.936 8.67-17.404 16.202-22.418C305.036 98.518 314.255 96 325.2 96zm-151.674 77.813c43.569 0 76.803 19.858 76.803 62.646c0 29.028-22.916 58.083-53.861 65.32c18.733 33.249 41.252 62.662 58.08 80.973c9.898 10.703 23.646 20.268 37.392 20.268v9.912c-4.192 1.93-11.06 3.068-17.545 3.068c-22.16 0-39.718-8.773-51.2-22.545c-12.585-14.502-34.746-45.845-58.046-87.469c-12.25 0-20.268 0-29.437-.767v63.785c0 23.696 5.372 28.671 15.678 30.168l19.873 2.709v11.05c-9.553-.37-31.714-1.126-48.9-1.126c-17.968 0-35.923.756-46.23 1.127V401.88l14.503-2.71c9.974-1.891 15.652-6.47 15.652-30.167V218.506c0-23.708-5.678-28.261-15.652-30.18l-14.502-2.66V174.58c9.526.37 24.821.37 40.129.37c16.776 0 34.744-1.137 57.263-1.137zm-6.867 17.185c-10.32 0-22.136 0-30.947.768v95.845c8.811.83 14.515 1.176 27.508 1.176c34.015 0 54.629-20.243 54.629-50.422c0-30.536-19.08-47.367-51.19-47.367z\\\"/>\"\n    },\n    \"ror\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m154.958 64l41.877 64.099L238.685 64zm175.114 0l41.884 64.099L413.799 64zm-48.298 78.76c-16.421 0-31.532 2.582-45.4 7.723c-13.835 5.14-25.806 12.523-35.914 22.114c-9.039 8.59-16.286 18.837-21.737 30.705c-.794-8.521-2.789-15.905-5.997-22.114c-4.243-8.211-10.006-14.73-17.216-19.594c-7.21-4.83-15.63-8.314-25.22-10.384c-9.59-2.07-19.735-3.106-30.395-3.106h-81.24v210.03h46.263v-83.968h22.835l43.918 83.969h55.474l-53.372-88.7c14.835-2.76 26.119-9.344 33.812-19.728c.345-.483.652-1.006.997-1.49a114.82 114.82 0 0 0-.101 4.9c0 16.8 2.826 32.05 8.45 45.676c5.623 13.627 13.488 25.259 23.596 34.85c10.074 9.59 22.045 16.966 35.914 22.107c13.834 5.14 28.98 7.728 45.4 7.728c16.422 0 31.533-2.588 45.401-7.728c13.834-5.14 25.806-12.517 35.914-22.108c10.074-9.59 17.939-21.222 23.596-34.849c.76-1.828 1.447-3.722 2.103-5.62v64.962h46.263v-83.97h22.842l43.912 83.97h55.474l-53.433-88.7c14.835-2.76 26.112-9.344 33.805-19.728c7.728-10.384 11.556-23.014 11.556-37.814c0-12.282-2.138-22.495-6.381-30.705c-4.244-8.211-10.006-14.73-17.216-19.594c-7.21-4.83-15.623-8.314-25.214-10.384c-9.59-2.07-19.735-3.106-30.395-3.106h-81.28v64.961a110.104 110.104 0 0 0-2.103-5.62c-5.623-13.626-13.488-25.258-23.597-34.848c-10.108-9.59-22.045-16.974-35.913-22.114c-13.834-5.14-28.98-7.722-45.401-7.722zm.035 42.706c9.9 0 18.833 1.694 26.837 5.04c8.004 3.347 14.87 8.073 20.632 14.11c5.727 6.037 10.143 13.214 13.213 21.494c3.07 8.314 4.589 17.312 4.589 27.006c0 9.901-1.518 18.944-4.589 27.154c-3.07 8.211-7.452 15.316-13.213 21.353c-5.727 6.037-12.594 10.729-20.632 14.11c-8.004 3.38-16.97 5.04-26.837 5.04c-9.902 0-18.834-1.694-26.838-5.04c-8.004-3.347-14.87-8.073-20.632-14.11c-5.727-6.037-10.143-13.142-13.213-21.353c-3.07-8.21-4.589-17.253-4.589-27.154c0-9.694 1.519-18.692 4.589-27.006c3.07-8.314 7.452-15.457 13.213-21.494c5.727-6.037 12.594-10.729 20.632-14.11c8.004-3.346 16.936-5.04 26.838-5.04zM64.952 187.26h30.254c4.14 0 8.415.316 12.762.903c4.346.586 8.209 1.719 11.555 3.409a21.917 21.917 0 0 1 8.315 7.284c2.173 3.174 3.281 7.414 3.281 12.762c0 5.692-1.242 10.14-3.726 13.314c-2.484 3.174-5.592 5.49-9.352 6.974c-3.76 1.483-7.964 2.379-12.587 2.655c-4.657.31-9.039.444-13.213.444H64.952zm370.133 0h30.254c4.14 0 8.422.316 12.768.903c4.347.586 8.21 1.719 11.556 3.409a21.917 21.917 0 0 1 8.315 7.284c2.173 3.174 3.275 7.414 3.275 12.762c0 5.692-1.243 10.14-3.727 13.314c-2.483 3.174-5.585 5.49-9.345 6.974c-3.76 1.483-7.97 2.379-12.594 2.655c-4.657.31-9.038.444-13.213.444h-27.289zm-238.25 196.608L154.958 448h83.727zm175.121 0L330.073 448H413.8z\\\"/>\",\n      \"width\": 576\n    },\n    \"ror-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm96.969 109.945h49.736l-24.86 38.078l-24.876-38.078zm104.023 0h49.737l-24.856 38.078l-24.88-38.078zm-28.691 46.787c9.755 0 18.753 1.533 26.97 4.586c8.239 3.054 15.33 7.44 21.334 13.137c6.005 5.697 10.678 12.608 14.018 20.703a65.39 65.39 0 0 1 1.248 3.338v-38.59h48.283c6.333 0 12.36.616 18.057 1.846c5.697 1.23 10.693 3.299 14.976 6.168c4.284 2.89 7.706 6.761 10.227 11.639c2.52 4.877 3.791 10.944 3.791 18.24c0 8.791-2.275 16.294-6.865 22.463c-4.57 6.168-11.268 10.079-20.08 11.718L384 316.672h-32.953L324.96 266.79h-13.568v49.88H283.91v-38.589a58.855 58.855 0 0 1-1.248 3.338c-3.36 8.095-8.033 15.004-14.017 20.701c-6.005 5.697-13.117 10.08-21.334 13.133c-8.239 3.053-17.214 4.592-26.97 4.592c-9.754 0-18.752-1.539-26.97-4.592c-8.238-3.054-15.348-7.436-21.332-13.133c-6.004-5.697-10.677-12.606-14.018-20.701c-3.34-8.095-5.019-17.153-5.019-27.133c0-.984.02-1.947.06-2.91c-.204.287-.388.598-.593.885c-4.57 6.168-11.272 10.079-20.084 11.718l31.705 52.692h-32.955l-26.088-49.881H91.482v49.88H64V191.907h48.26c6.332 0 12.357.616 18.054 1.846c5.698 1.23 10.7 3.299 14.983 6.168c4.283 2.89 7.706 6.761 10.226 11.639c1.906 3.688 3.092 8.074 3.563 13.136c3.238-7.05 7.543-13.137 12.912-18.24c6.005-5.697 13.116-10.083 21.334-13.137c8.238-3.053 17.214-4.586 26.969-4.586zm.021 25.37c-5.881 0-11.189 1.004-15.943 2.992c-4.775 2.008-8.854 4.796-12.256 8.383c-3.422 3.586-6.024 7.828-7.848 12.767c-1.824 4.939-2.726 10.284-2.726 16.043c0 5.882.902 11.254 2.726 16.131c1.824 4.877 4.446 9.097 7.848 12.684c3.422 3.586 7.501 6.393 12.256 8.38c4.754 1.988 10.062 2.995 15.943 2.995c5.861 0 11.187-.986 15.942-2.995c4.775-2.008 8.854-4.794 12.256-8.38c3.422-3.587 6.025-7.807 7.85-12.684c1.823-4.877 2.726-10.25 2.726-16.13c0-5.76-.903-11.105-2.727-16.044c-1.824-4.918-4.448-9.181-7.85-12.767c-3.422-3.587-7.5-6.395-12.255-8.383c-4.755-1.988-10.06-2.992-15.942-2.992zm-128.82 1.064v28.361h16.21c2.48 0 5.084-.079 7.85-.263c2.747-.164 5.243-.695 7.477-1.577a12.956 12.956 0 0 0 5.555-4.142c1.475-1.885 2.215-4.529 2.215-7.91c0-3.177-.659-5.695-1.95-7.58a13.024 13.024 0 0 0-4.94-4.328c-1.987-1.005-4.282-1.677-6.864-2.026a56.851 56.851 0 0 0-7.58-.535H91.502zm219.871 0v28.361h16.211c2.48 0 5.083-.079 7.85-.263c2.746-.164 5.246-.695 7.48-1.577a12.944 12.944 0 0 0 5.55-4.142c1.476-1.885 2.216-4.529 2.216-7.91c0-3.177-.655-5.695-1.946-7.58a13.024 13.024 0 0 0-4.94-4.328c-1.987-1.005-4.282-1.677-6.864-2.026a56.909 56.909 0 0 0-7.584-.535h-17.973zM169.846 331.957l24.86 38.098h-49.737l24.877-38.098zm104.027 0l24.856 38.098h-49.737l24.881-38.098z\\\"/>\"\n    },\n    \"sci-hub\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M248.783 8.004c-7.66.144-14.011 3.739-15.633 9.556c-1.846 6.6 2.965 13.888 11.132 17.822l-4.217 14.116l-.276.932l-.28.877c-19.635-9.602-48.37-14.954-53.348-15.83l-7.924 19.876l19.654 14.152h.018l36.49-1.064l-.3.95l-.28.933l-8.426 28.194l-.933 3.15l-.502 1.679l-.932 3.132l-.507 1.697l-.932 3.131l6.471 1.938l12.622 3.787l.95-3.154l-12.64-3.765l.503-1.697l12.644 3.787l.932-3.132l-12.625-3.787l.506-1.697l12.622 3.787l.932-3.135l-12.622-3.784l9.06-30.335l.281-.932l.28-.95l16.315-.485c-1.342-4.94-5.948-9.324-12.232-13.146l.263-.896l.276-.932l4.552-15.215c10.2 2.163 19.745-1.638 21.796-8.966c2.181-7.738-4.866-16.502-15.718-19.541c-2.717-.765-5.418-1.1-7.971-1.053zm-101.944.492v5.91l-1.286-.502c-12.175-4.866-21.72-4.716-25.207-4.417l4.752 7.512l-1.992-.28c-9.248-1.324-21.445 2.014-25.976 3.394l7.403 5.127l-.837.783C62.06 64.973 58.683 98.926 58.44 105.918c-.018.373-.018.672-.018.896l.058.037l.893.692l17.825 13.667l58.828 21.999l51.238-16.07l1.173-.376a.726.726 0 0 1-.091-.167h-.022c-.28-.466-.558-.914-.82-1.38c-15.55-26.756 1.454-47.49 7.514-53.624c.391-.391.747-.744 1.027-1.005l.055-.059l-1.118-.8l-18.999-13.722l7.924-19.895l.466-1.194l.223-.54c-.038-.167-.094-.316-.15-.484v-.018c-3.002-9.136-15.903-18.478-20.266-21.424v6.544l-1.512-1.231c-4.419-3.599-12.623-7.72-15.83-9.268Zm103.426 5.055c1.614-.03 3.318.185 5.033.67c6.862 1.92 11.318 7.46 9.938 12.345c-1.38 4.904-8.055 7.306-14.916 5.386c-6.88-1.94-11.318-7.456-9.938-12.36c1.02-3.678 5.042-5.953 9.883-6.041zM167.33 33.427a8.768 8.768 0 0 1 7.571 4.344c.168.261.3.54.43.82c.13.28.242.58.335.877c.298.858.448 1.788.448 2.739a8.766 8.766 0 0 1-4.774 7.811c-.28.15-.558.263-.856.375c-.28.13-.579.224-.896.299a8.918 8.918 0 0 1-2.258.299c-4.848 0-8.78-3.936-8.78-8.784a8.782 8.782 0 0 1 8.78-8.78zm0 1.864c-3.803 0-6.915 3.094-6.915 6.916c0 3.804 3.112 6.92 6.915 6.92c.56 0 1.12-.078 1.643-.209c.298-.074.616-.164.895-.276c.299-.112.577-.263.856-.412a6.925 6.925 0 0 0 3.525-6.023a6.62 6.62 0 0 0-.316-2.032v-.018a3.732 3.732 0 0 0-.336-.86a3.92 3.92 0 0 0-.447-.82a6.897 6.897 0 0 0-5.82-3.186zM57.363 108.343c-3.934 1.64-7.498 3.803-10.612 6.562c-12.231 10.852-16.182 30.188-11.744 57.466l.018.073c0 .112.3 3.039 1.828 9.006c.261 1.08.578 2.239.932 3.506c.28 1.007.597 2.09.933 3.227c1.939 6.451 4.882 14.933 9.3 25.56c.187.467.393.933.598 1.417c.112.261.223.522.335.802c.186.466.392.932.597 1.398l.335.787c.186.447.392.91.597 1.376a455.169 455.169 0 0 0 5.95 13.11c.038.075.072.148.128.222c.485.82 1.493 2.37 3.227 4.308c.186.224.392.446.597.67l.335.335c.186.205.392.41.597.616c.112.112.223.223.335.317c.187.205.392.392.597.579c2.275 2.144 5.315 4.55 9.305 6.955c.186.112.392.223.597.335c.112.075.223.13.335.204c.187.112.392.227.597.339c.112.074.224.13.335.185c.187.112.393.224.598.335a61.62 61.62 0 0 0 2.982 1.548l2.702 1.322c.41.205.839.41 1.268.634c.391.186.802.374 1.194.579c.578.28 1.174.561 1.752.86c.317.148.615.298.932.447c.317.15.615.295.932.444c1.25.616 2.519 1.231 3.824 1.865c.41.205.838.41 1.267.615c.392.187.803.393 1.195.58l.018.018c1.193.559 2.367 1.137 3.598 1.715c.298.149.615.317.932.466c.317.15.615.299.932.448c2.741 1.305 5.555 2.666 8.445 4.028l.022.018c.429.186 1.379.655 1.435.673c0 0 1.566.743 1.864.893c3.04 1.435 6.154 2.908 9.305 4.362c.298.15.615.299.932.448c.298.15.615.3.932.43c30.728 14.357 65.424 29.666 88.991 37.385c3.599-6.171 31.437-54.8 33.227-81.817l.058-.765c.094-1.305.185-2.63.073-3.71c0-.038-.017-.055-.017-.074c-3.486-14.45-6.227-24.89-7.607-28.918c-.69-1.957-1.359-4.101-2.086-6.376c-5.724-18.049-14.004-44.117-43.296-57.859h-.018l-53.81 16.894l-59.815-22.411zm-18.645 86.085v81.61l9.3-9.305v-48.16c-3.02-7.03-5.369-13.033-7.177-18.03a252.274 252.274 0 0 1-2.123-6.115zm11.762 29.738v66.788l9.305-9.304v-37.906a583.585 583.585 0 0 1-4.866-9.975c-.26-.466-.392-.763-.43-.82l.038-.017a449.368 449.368 0 0 1-4.046-8.766zm193.911 3.878c-3.076 29.46-32.424 79.207-33.692 81.351l-.372.652l-.71-.244c-23.456-7.57-58.226-22.896-89.14-37.308c-.299-.15-.616-.277-.933-.426c-.298-.15-.615-.3-.932-.448c-3.151-1.473-6.265-2.93-9.304-4.385c-.205-.093-.411-.183-.598-.277l-.335-.167a4.282 4.282 0 0 1-.597-.28c-.112-.038-.223-.094-.335-.15a8.956 8.956 0 0 1-.597-.299c-3.188-1.491-6.284-2.984-9.305-4.439c-.316-.149-.633-.298-.932-.448c-.317-.149-.634-.295-.932-.444c-.858-.41-1.696-.821-2.535-1.213a68.21 68.21 0 0 0-1.194-.579l-.018-.018c-.43-.186-.84-.392-1.25-.597c-1.677-.802-3.32-1.603-4.905-2.367a21.74 21.74 0 0 0-.932-.466c-.317-.15-.615-.299-.932-.448a22.288 22.288 0 0 1-.688-.335a34.182 34.182 0 0 0-1.177-.58c-.429-.205-.857-.41-1.267-.615c-1.585-.783-3.13-1.527-4.603-2.254c-.746-.373-1.473-.727-2.163-1.1c-.205-.112-.392-.224-.597-.317a3.024 3.024 0 0 0-.336-.19c-.205-.111-.392-.222-.597-.334c-.112-.056-.223-.13-.335-.186a10.076 10.076 0 0 1-.597-.353c-3.86-2.238-6.918-4.496-9.304-6.566c-.206-.168-.411-.353-.598-.52a4.815 4.815 0 0 0-.335-.3c-.205-.204-.41-.37-.597-.556c-.112-.112-.223-.205-.335-.317l-.222-.226l.222.448l.335.67c.187.41.392.802.597 1.213l.335.67c.205.391.392.784.598 1.176a573.182 573.182 0 0 0 9.304 17.676c.205.355.392.727.597 1.1c.112.187.223.392.335.598c.187.354.392.727.597 1.081l.336.615c.205.355.392.71.597 1.082a745.473 745.473 0 0 0 9.304 16.238c.187.336.389.692.594 1.027l.338.557c.187.336.389.673.594 1.009c.112.187.227.389.339.575c.186.317.388.655.593.991c.28.466.562.95.841 1.417a752.04 752.04 0 0 0 8.464 13.834c.186.317.392.633.597.969c.093.168.204.338.335.524c.186.317.392.633.597.969c.112.168.205.334.335.52c.187.318.392.634.597.951a579.142 579.142 0 0 0 5.146 8.092a40.334 40.334 0 0 0 4.159 3.693c.186.167.392.317.597.448c.112.093.223.187.335.262c.187.149.392.295.597.426c.112.093.224.17.335.244c.205.149.393.28.598.411c2.573 1.753 5.65 3.467 9.304 5.033c.298.13.615.263.932.393c.299.13.616.26.933.372c6.6 2.61 14.952 4.753 25.524 5.815c41.28 4.177 95.762-1.602 114.37-31.453c-5.538-26.513-11.3-52.152-15.98-71.897zM62.247 248.572v68.486l9.304-9.305V266.01a596.43 596.43 0 0 1-9.304-17.437zm11.766 21.854v65.277l9.304-9.305v-39.861a781.427 781.427 0 0 1-9.304-16.11zm11.762 20.23v54.37l9.305-9.305v-28.955c-.28-.69-.466-1.289-.503-1.773c-.018-.018-.018-.018 0-.037l-.018-.018a934.465 934.465 0 0 1-8.784-14.283zm175.139 11.879a45.579 45.579 0 0 1-5.39 6.562v.018c2.592 6.134 6.824 39.06 12.585 97.942c3.618 37.049 2.03 45.759-1.474 47.437c-1.306.634-2.87.706-3.522.706c-.168 0-.28-.019-.299-.019c-14.673-.521-39.993-21.423-75.233-62.126c-24.742-28.583-45.923-57.39-48.31-60.633c-7.402-1.156-13.611-2.852-18.795-4.847c-.316-.13-.633-.245-.932-.376c-.317-.13-.634-.24-.932-.39c-3.617-1.49-6.694-3.114-9.304-4.792v2.444a730.5 730.5 0 0 0 6.73 10.106c.167.26.356.521.524.8c.186.262.352.523.539.784c3.3 4.903 6.675 9.808 10.105 14.712a967.882 967.882 0 0 0 6.639 9.414c4.773 6.73 9.637 13.425 14.541 20.025a823.614 823.614 0 0 0 6.544 8.766c40.572 53.698 82.508 99.732 106.17 110.844c9.583 4.475 16.162 5.275 20.134 2.404c8.148-5.873 5.706-26.772 2.61-53.248c-1.136-9.64-2.292-19.615-3.13-30.15c-1.996-25.413-10.553-71.952-19.8-116.384zm-6.807 7.997c-2.032 1.939-4.29 3.768-6.751 5.502c.503 24.258 2.815 44.244 4.661 60.335c2.368 20.585 3.806 33-.408 38.147c-1.212 1.473-2.89 2.312-4.996 2.48c-.112.019-.227.019-.357.019c-15.588 0-81.665-77.638-85.973-82.728a238.122 238.122 0 0 1-14.468-1.027c-1.361-.13-2.668-.298-3.955-.466c11.038 14.935 89.367 119.405 121.027 120.524c.038 0 1.716.076 2.946-.502c4.177-2.014 2.239-26.982.412-45.59c-7.086-72.42-10.553-92.09-12.138-96.695zm-156.566.652v30.542l9.305-9.304v-8.318c-1.846-2.76-3.637-5.555-5.39-8.296l-.018-.037a33.472 33.472 0 0 1-3.896-4.588zm147.968 6.077a64.554 64.554 0 0 1-7.25 4.16c5.463 37.085 1.657 54.425 1.49 55.134l-.074.411l-.353.204c-.876.503-1.903.747-3.059.747c-5.966 0-15.792-6.62-29.85-20.062c-10.684-10.2-20.344-21.164-22.6-23.737c-4.363.261-8.799.39-13.293.39c-2.535 0-5.11-.035-7.683-.128c20.36 23.941 71.283 80.769 83.346 80.769h.28c1.604-.131 2.813-.725 3.708-1.825c3.71-4.53 2.237-17.342 0-36.733c-1.846-15.867-4.102-35.501-4.662-59.33zm-9.005 5.037c-6.638 3.15-14.264 5.725-22.84 7.72c-8.447 1.94-17.733 3.28-27.503 3.951c12.68 14.525 42.662 45.775 51.854 41.767c.54-2.853 3.299-20.25-1.511-53.438zm-127.196 5.535v13.463l5.39-5.39a675.123 675.123 0 0 1-5.39-8.073zm17.32 25.434c-2.574 10.236-8.633 29.383-17.714 26.773c-12.324-3.524-24.795 2.016-21.402 10.947c0 0 3.226-5.09 17.713-2.313c14.47 2.76 18.624-5.24 18.624-5.24s5.352 6.638 28.864 5.743c-2.145-2.853-4.306-5.723-6.45-8.613c-7.887.746-20.307-.598-13.277-18.273a1568.487 1568.487 0 0 1-6.359-9.024z\\\"/>\",\n      \"width\": 320\n    },\n    \"sci-hub-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h54.73v-62.73a796.662 796.662 0 0 0 12.426 23.283V480h3.287v-33.547c3.86 6.872 7.994 14.044 12.426 21.514V480h3.283v-6.531c1.304 2.17 2.645 4.35 3.979 6.531h2.889a1167.235 1167.235 0 0 1-5.74-9.492c-.374-.623-.75-1.27-1.124-1.893a93.553 93.553 0 0 1-.795-1.322c-.149-.25-.301-.521-.45-.77a36.898 36.898 0 0 1-.792-1.345l-.453-.744a38.108 38.108 0 0 1-.793-1.372a995.36 995.36 0 0 1-12.426-21.685c-.274-.498-.522-.97-.797-1.443l-.447-.823a40.632 40.632 0 0 1-.797-1.445c-.15-.274-.3-.547-.449-.797c-.274-.497-.523-.995-.797-1.469a765.45 765.45 0 0 1-12.426-23.605c-.274-.523-.522-1.05-.796-1.572l-.448-.895c-.274-.548-.55-1.07-.799-1.617l-.445-.897l-.299-.6l.3.304c.147.149.295.274.444.423c.25.249.525.468.8.743c.149.124.297.25.447.4c.25.224.522.47.796.693c3.188 2.764 7.272 5.782 12.426 8.77c.274.175.523.323.797.473c.15.074.3.173.45.248c.273.149.522.298.796.447c.15.075.298.156.447.252c.275.125.523.274.797.424c.922.498 1.893.97 2.889 1.468c1.967.971 4.032 1.965 6.148 3.01c.548.274 1.119.548 1.692.822c.523.249 1.047.5 1.57.774c.299.15.597.296.92.445c.424.2.82.4 1.244.6c.424.2.823.399 1.246.623c2.117 1.02 4.308 2.09 6.55 3.16c.547.274 1.094.55 1.667.799l.022.021c.523.249 1.048.5 1.595.774c1.12.523 2.24 1.07 3.385 1.619c.398.2.823.392 1.246.592c.398.2.82.4 1.244.6c4.034 1.941 8.166 3.937 12.424 5.929c.274.15.525.274.799.398c.15.075.298.144.447.198c.274.15.525.28.799.377l.445.222c.25.125.523.247.797.371c4.059 1.942 8.22 3.887 12.428 5.854c.423.2.846.4 1.244.6c.424.199.848.368 1.246.568c22.59 10.532 46.711 21.42 69.067 30.785h6.494c-24.176-9.984-50.826-21.991-75.567-33.55a18.878 18.878 0 0 1-1.242-.577c-.423-.2-.848-.396-1.246-.596c-4.208-1.942-8.367-3.91-12.426-5.828c-.398-.199-2.49-1.19-2.49-1.19c-.075-.025-1.343-.653-1.916-.902l-.031-.021c-3.86-1.818-7.617-3.634-11.278-5.377c-.423-.2-.822-.4-1.246-.6c-.423-.2-.846-.423-1.244-.623c-1.643-.772-3.21-1.544-4.805-2.29l-.021-.022c-.523-.249-1.073-.527-1.596-.776c-.572-.274-1.143-.546-1.691-.82c-1.743-.846-3.437-1.667-5.106-2.488c-.423-.2-.822-.394-1.246-.594c-.423-.2-.82-.4-1.244-.6c-.772-.398-1.567-.773-2.34-1.146c-.523-.274-1.07-.526-1.593-.775c-.573-.3-1.146-.572-1.694-.846c-1.22-.598-2.439-1.191-3.61-1.764a84.11 84.11 0 0 1-3.982-2.068a20.685 20.685 0 0 1-.796-.447c-.15-.075-.3-.15-.45-.246a22.13 22.13 0 0 1-.797-.454c-.148-.1-.297-.177-.447-.273c-.274-.15-.548-.296-.797-.445c-5.328-3.212-9.388-6.426-12.425-9.29a11.19 11.19 0 0 1-.797-.773c-.15-.125-.3-.274-.45-.424c-.274-.274-.547-.546-.796-.82l-.446-.45c-.274-.298-.55-.595-.799-.894c-2.315-2.59-3.663-4.656-4.31-5.752c-.074-.099-.117-.203-.17-.299a607.987 607.987 0 0 1-7.947-17.505c-.274-.623-.549-1.24-.797-1.838l-.447-1.051a55.32 55.32 0 0 1-.797-1.867c-.15-.374-.3-.722-.45-1.07c-.274-.648-.548-1.27-.796-1.893c-5.902-14.193-9.833-25.52-12.422-34.135a273.662 273.662 0 0 1-1.244-4.308c-.473-1.694-.898-3.24-1.247-4.684c-2.041-7.968-2.439-11.876-2.439-12.025l-.021-.096c-5.927-36.428-.651-62.25 15.683-76.742c4.158-3.686 8.92-6.573 14.174-8.764l25.12 19.27l79.878 29.93l71.861-22.561h.02c39.117 18.35 50.174 53.162 57.818 77.265c.971 3.038 1.867 5.902 2.787 8.516c1.843 5.378 5.501 19.32 10.157 38.617c0 .021.021.044.021.098c.15 1.444.03 3.212-.096 4.955l-.074 1.021c-1.771 26.735-22.622 69.27-35.27 92.887h2.878c12.402-23.189 31.837-63.077 34.664-90.145l.004.002c5.9 24.894 13.081 56.86 20.09 90.143H400c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm303.834 64.006h.006c3.408-.063 7.013.386 10.64 1.406c14.492 4.059 23.904 15.762 20.99 26.096c-2.738 9.785-15.487 14.863-29.107 11.974l-6.078 20.319l-.37 1.242l-.349 1.197c8.392 5.105 14.542 10.957 16.334 17.555l-21.787.646l-.375 1.272l-.375 1.244l-12.1 40.51l16.856 5.054l-1.244 4.188l-16.855-5.059l-.678 2.266l16.861 5.059l-1.244 4.183l-16.885-5.058l-.672 2.265l16.881 5.028l-1.27 4.21l-16.855-5.054l-8.642-2.588l1.244-4.182l.676-2.267l1.246-4.182l.672-2.242l1.244-4.207l11.254-37.65l.373-1.247l.4-1.27l-48.729 1.42h-.021l-26.248-18.896l10.584-26.545c6.648 1.17 45.022 8.318 71.242 21.141l.373-1.172l.371-1.246l5.631-18.848c-10.906-5.253-17.332-14.986-14.867-23.8c2.166-7.768 10.645-12.569 20.873-12.762zm-136.137.666c4.283 2.067 15.24 7.57 21.14 12.375l2.02 1.644v-8.738c5.827 3.934 23.055 16.408 27.065 28.61v.023c.075.224.144.422.197.646l-.295.721l-.623 1.596l-10.582 26.566l25.373 18.324l1.49 1.07l-.074.077c-.373.349-.848.817-1.37 1.34c-8.093 8.192-30.802 35.88-10.036 71.611c.348.623.722 1.22 1.096 1.844h.03a.91.91 0 0 0 .124.224l-1.566.5l-68.426 21.461l-78.56-29.378l-23.805-18.25l-1.194-.926l-.074-.053c0-.298 0-.7.021-1.197c.324-9.338 4.835-54.678 60.436-106.694l1.12-1.045l-9.89-6.847c6.051-1.843 22.34-6.3 34.69-4.531l2.66.373l-6.346-10.032c4.657-.398 17.403-.6 33.662 5.899l1.717.67v-7.883zm138.121 6.74c-6.465.118-11.836 3.157-13.199 8.068c-1.843 6.55 4.084 13.917 13.272 16.506c9.163 2.565 18.077-.644 19.92-7.193c1.842-6.524-4.109-13.922-13.272-16.486a23.227 23.227 0 0 0-6.72-.895zm-110.755 26.543v.002c-6.474 0-11.725 5.25-11.725 11.725c0 6.474 5.25 11.73 11.725 11.73c1.045 0 2.07-.152 3.017-.4c.423-.1.822-.225 1.195-.399c.398-.149.77-.3 1.143-.5a11.71 11.71 0 0 0 6.375-10.433c0-1.27-.199-2.511-.598-3.657a9.422 9.422 0 0 0-.447-1.171a9.255 9.255 0 0 0-.574-1.094a11.711 11.711 0 0 0-10.112-5.803zm0 2.49v.004a9.21 9.21 0 0 1 7.771 4.254c.25.349.45.722.6 1.096c.198.373.349.748.445 1.146v.022c.274.846.424 1.767.424 2.713c0 3.436-1.894 6.451-4.707 8.045c-.374.198-.745.4-1.143.548a9.01 9.01 0 0 1-1.195.372a9.331 9.331 0 0 1-2.196.277c-5.079 0-9.234-4.163-9.234-9.242c0-5.105 4.155-9.235 9.234-9.235zM71.309 344.963a339.3 339.3 0 0 0 2.837 8.166c2.416 6.673 5.549 14.689 9.583 24.076v64.318l-12.42 12.424V344.963zm15.709 39.713l.003.004a600.76 600.76 0 0 0 5.405 11.705l-.053.021c.05.075.224.473.572 1.096a780.111 780.111 0 0 0 6.498 13.318v50.621l-12.425 12.426v-89.191z\\\"/>\"\n    },\n    \"scirate\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M132.624 316.69c-13.343-14.745-20.054-42.183-20.054-82.291v-54.792c0-37.322-5.817-63.581-17.533-78.835c-11.675-15.293-31.16-22.923-58.353-22.923c-5.959 0-11.41.225-16.453.592c-5.045.427-9.743 1.037-14.157 1.831v14.785h10.597c12.326 0 20.909 3.824 25.668 11.532c4.78 7.75 7.14 25.486 7.14 53.147v68.013c0 42.123 13.016 74.197 39.233 96.163c19.628 16.475 46.637 27.234 81.03 32.401v-20.177c-16.392-4.272-29.043-10.516-37.118-19.444zm246.752 0c13.343-14.745 20.054-42.183 20.054-82.291v-54.792c0-37.322 5.817-63.581 17.533-78.835c11.675-15.293 31.16-22.923 58.353-22.923c5.959 0 11.41.225 16.453.592c5.045.427 9.743 1.037 14.157 1.831v14.785h-10.597c-12.326 0-20.909 3.824-25.668 11.532c-4.78 7.75-7.14 25.486-7.14 53.147v68.013c0 42.123-13.016 74.197-39.234 96.163c-19.627 16.475-46.636 27.234-81.03 32.401v-20.177c16.393-4.272 29.044-10.516 37.119-19.444zM303.959 87.167c8.42-6.692 25.525-10.536 51.234-11.493V64H156.807v11.673c26.176.957 43.383 4.801 51.683 11.493c8.318 6.731 12.407 20.033 12.407 39.905v257.614c0 20.807-4.089 34.515-12.407 41.023c-8.3 6.57-25.507 10.108-51.683 10.658V448h197.716l.671-11.634c-25.505-.55-42.568-4.353-51.072-11.41c-8.418-6.956-12.732-20.441-12.732-40.27V127.07c0-19.872 4.17-33.174 12.57-39.905z\\\"/>\",\n      \"width\": 512\n    },\n    \"scirate-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm112.498 101.084h127.004v7.473c-16.459.612-27.408 3.073-32.799 7.357c-5.377 4.31-8.047 12.826-8.047 25.547v164.922c0 12.695 2.761 21.328 8.15 25.781c5.445 4.518 16.37 6.953 32.698 7.305l-.43 7.447H160.498v-7.447c16.757-.352 27.773-2.617 33.086-6.823c5.325-4.166 7.943-12.943 7.943-26.263V173.46c0-12.721-2.618-21.238-7.943-25.547c-5.313-4.284-16.329-6.745-33.086-7.357v-7.473zm-76.902 8.865c17.409 0 29.882 4.885 37.357 14.676c7.5 9.765 11.225 26.575 11.225 50.469v35.078c0 25.677 4.295 43.241 12.838 52.682c5.169 5.715 13.269 9.714 23.763 12.449v12.916c-22.018-3.308-39.31-10.196-51.875-20.742c-16.784-14.063-25.117-34.596-25.117-61.563v-43.54c0-17.71-1.51-29.063-4.57-34.024c-3.047-4.935-8.543-7.383-16.434-7.383H64V143.5a97.745 97.745 0 0 1 9.063-1.172a144.62 144.62 0 0 1 10.533-.379zm280.808 0c3.815 0 7.304.144 10.534.38c3.229.273 6.236.663 9.062 1.171v9.467h-6.783c-7.89 0-13.387 2.448-16.434 7.383c-3.06 4.96-4.57 16.315-4.57 34.023v43.541c0 26.967-8.333 47.5-25.117 61.563c-12.566 10.546-29.857 17.434-51.875 20.742v-12.916c10.494-2.735 18.594-6.734 23.763-12.45c8.543-9.44 12.838-27.004 12.838-52.681v-35.078c0-23.894 3.725-40.704 11.225-50.469c7.475-9.79 19.948-14.676 37.357-14.676z\\\"/>\"\n    },\n    \"scopus\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M64 64v384h384V64Zm116.815 99.926c22.222 0 32.04 2.586 45.736 8.27l-1.292 20.411c-14.729-8.785-26.356-11.367-43.152-11.367c-19.379 0-29.2 14.727-29.2 28.163c0 18.088 17.313 24.807 33.592 34.626c20.93 12.403 42.636 23.514 42.636 48.062c0 32.299-27.65 48.577-54.006 48.577c-18.863 0-32.557-2.843-45.993-9.044l3.102-20.414c13.178 8.01 24.547 11.889 41.86 11.889c17.57 0 32.297-11.887 32.297-28.424c0-17.054-16.535-23.516-32.297-33.076c-21.189-12.92-44.444-24.29-44.444-50.646s19.379-47.027 51.161-47.027zm161.705 0c26.097 0 37.725 3.102 51.937 9.82l-1.55 19.38c-15.504-8.527-31.783-11.886-52.971-11.886c-33.592 0-62.274 26.613-62.274 69.765c0 40.826 29.2 71.575 65.892 71.575c16.795 0 33.591-3.359 49.353-11.886l1.55 19.638c-13.953 6.977-31.523 9.82-52.71 9.82c-42.12 0-87.338-31.01-87.338-87.597c0-49.612 37.982-88.63 88.11-88.63z\\\" opacity=\\\".999\\\"/>\",\n      \"width\": 512\n    },\n    \"scopus-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm16 64h320v320H64V96zm97.346 83.271c-26.486 0-42.633 17.227-42.633 39.19c0 21.963 19.378 31.439 37.035 42.205c13.135 7.967 26.914 13.35 26.914 27.563c0 13.78-12.272 23.687-26.914 23.687c-14.427 0-23.901-3.233-34.883-9.908l-2.586 17.012c11.198 5.167 22.61 7.537 38.328 7.537c21.964 0 45.004-13.565 45.004-40.48c0-20.457-18.088-29.718-35.529-40.054c-13.566-8.182-27.992-13.78-27.992-28.853c0-11.197 8.182-23.469 24.332-23.469c13.996 0 23.687 2.15 35.96 9.47l1.077-17.007c-11.413-4.737-19.595-6.893-38.113-6.893zm134.754 0c-41.774 0-73.426 32.515-73.426 73.858c0 47.157 37.682 72.998 72.781 72.998c17.657 0 32.298-2.37 43.926-8.184l-1.291-16.365c-13.135 7.106-27.133 9.906-41.13 9.906c-30.576 0-54.907-25.624-54.907-59.646c0-35.96 23.9-58.137 51.892-58.137c17.657 0 31.225 2.799 44.145 9.904l1.29-16.15c-11.842-5.598-21.532-8.184-43.28-8.184z\\\"/>\"\n    },\n    \"semantic-scholar\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M379.087 75.202c18.168 40.684 25.533 83.89 32.421 127.21c-1.265.358-2.528.72-3.794 1.082c-.91-2.534-1.984-5.021-2.707-7.61c-5.218-18.653-10.48-37.296-15.474-56.011c-1.797-6.733-6.035-10.084-12.096-13.381c-8.901-4.842-17.313-11.084-24.69-18.046c-4.707-4.44-8.735-7.149-15.413-7.078c-44.46.47-88.925.515-133.384.924c-2.963.03-6.63 1.124-8.728 3.065c-8.089 7.484-15.671 15.514-25.642 25.556c26.3 64.04 39.522 133.84 33.845 208.044c-12.626-8.084-22.4-14.48-22.981-31.418c-2.904-84.661-29.02-161.225-83.58-227.108c-1.228-1.482-1.838-3.476-2.738-5.23h284.96ZM48.73 107.847c12.663 0 25.332-.2 37.984.172c2.51.072 6.022 1.668 7.277 3.68c37.836 60.79 67.334 124.635 71.155 197.682c.018.29-.282.594-1.362 2.716c-22.612-77.293-63.404-142.735-115.872-201.39c.274-.952.545-1.906.819-2.86zM8 161.029c18.09-.658 33.39-1.318 48.692-1.602c1.541-.03 3.36 2.009 4.65 3.443c29.848 33.202 56.936 68.281 73.633 110.235c3.177 7.98 5.351 16.36 7.989 24.555C108.379 243.235 60.254 202.538 8 161.028Zm194.474 275.77c-31.481-50.066-61.803-98.29-92.128-146.513l1.112-1.428c2.542 2.047 56.622 45.412 80.91 65.302c6.766 5.541 11.878 5.441 18.915-.274c82.584-67.085 174.737-117.862 272.583-158.809c5.223-2.185 10.64-3.916 15.983-5.816c1.186-.42 2.44-.654 4.151-.222c-113.623 65.987-222.022 138.239-301.526 247.76Z\\\"/>\",\n      \"width\": 512\n    },\n    \"semantic-scholar-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm71.564 107.355H303.41c11.722 26.248 16.474 54.123 20.918 82.07c-.816.232-1.63.467-2.447.7c-.588-1.635-1.282-3.238-1.748-4.908c-3.367-12.035-6.76-24.063-9.983-36.137c-1.159-4.344-3.892-6.507-7.802-8.635c-5.743-3.123-11.17-7.148-15.93-11.64c-3.037-2.865-5.635-4.614-9.943-4.569c-28.685.304-57.372.334-86.055.598c-1.912.019-4.278.724-5.63 1.977c-5.22 4.828-10.111 10.01-16.544 16.488c16.967 41.316 25.497 86.349 21.834 134.222c-8.146-5.215-14.452-9.343-14.826-20.271c-1.874-54.62-18.724-104.014-53.924-146.52c-.792-.956-1.185-2.243-1.766-3.375zm-17.03 21.028c4.084-.003 8.168.024 12.25.144c1.62.047 3.885 1.078 4.695 2.375c24.41 39.22 43.44 80.41 45.906 127.537c.011.187-.182.383-.88 1.752c-14.587-49.866-40.905-92.087-74.755-129.93c.177-.613.35-1.228.527-1.843c4.085 0 8.171-.033 12.256-.035zm-7.12 33.312c.994-.019 2.168 1.295 3 2.221c19.257 21.42 36.734 44.052 47.506 71.12c2.05 5.147 3.453 10.554 5.154 15.841c-22.312-35.113-53.362-61.368-87.074-88.148c11.67-.425 21.542-.85 31.414-1.034zm287.12 18.97a4.404 4.404 0 0 1 1.466.134c-73.305 42.572-143.24 89.187-194.533 159.846l-59.438-94.526l.72-.92c1.64 1.321 36.529 29.297 52.198 42.13c4.365 3.574 7.663 3.51 12.203-.177c53.28-43.28 112.733-76.04 175.86-102.457c3.37-1.41 6.866-2.528 10.312-3.754a4.81 4.81 0 0 1 1.211-.277z\\\"/>\"\n    },\n    \"springer\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M293.32 352.078c2.705-12.462 4.874-24.384 7.044-36.304h.536c4.882 0 8.673-3.798 8.673-8.125c0-4.352-3.248-8.136-7.587-8.678a404.129 404.129 0 0 0 1.627-35.763c4.333-.555 8.13-3.799 8.13-8.666c0-4.353-3.798-8.137-8.673-8.137a355.134 355.134 0 0 0-4.874-34.679c3.246-.54 5.96-3.797 5.96-8.136c0-4.327-3.255-8.123-8.132-8.123c-.542 0-1.627 0-2.17.53c-3.247-11.352-7.58-22.188-13.004-31.965c2.712-1.086 4.34-3.771 4.34-7.039c0-4.339-3.8-8.137-8.674-8.137c-1.085 0-2.712.542-3.79 1.085c-7.047-9.75-14.634-18.946-23.85-26.554c1.086-1.085 1.627-2.712 1.627-4.856c0-4.353-3.255-8.15-8.132-8.15c-2.71 0-4.873 1.085-6.5 3.255c-9.759-5.967-20.596-11.38-31.973-15.175v-2.17c0-4.313-3.255-8.122-8.13-8.122c-3.79 0-7.045 2.724-8.131 5.953c-5.959-1.072-12.463-2.144-19.508-2.686c-4.334-15.731-13.547-29.821-39.56-27.096c0 0 1.085 11.921.557 22.742c-7.056-7.05-21.149-11.92-35.781-6.507l5.42 36.874l-15.172 21.115l-14.632 5.439l-9.759 29.265l-54.734 74.225s-.543 1.083-.543 2.697c0 1.64 1.627 3.825 1.627 3.825l34.684 40.09l13.006-10.85l-.542 16.26h39.56c0-19.49 22.762-53.107 37.94-58.518h31.428c-27.096 41.2-75.87 60.146-79.661 111.083h-21.68v15.717h255.788V352.08h-22.757zm-16.261.543H98.22c1.627-20.587 14.091-35.776 28.181-49.853c38.482-37.944 69.368-62.302 69.368-124.101h-15.718c0 18.417-3.791 34.148-9.752 47.166c0 .53-40.644.53-40.644.53l-11.384-14.078l-11.922 10.28l8.13 9.75c-14.633 10.837-30.35 33.065-35.227 52.024H67.877v-26.555l-4.875-3.24l-21.136 17.874l-18.972-22.757l50.402-69.369l8.13-23.299l28.723-9.752l-4.339-12.475l9.214-13.547l-3.795-26.556c8.13 3.799 14.09 9.234 14.09 22.785l14.633 2.697c4.34-19.515 4.34-39.029 4.34-39.029c13.006 8.136 11.934 44.984 11.377 50.423l15.719 2.685s.536-5.411.536-11.922c0-4.312 0-8.666-.536-14.09c100.253 11.933 137.1 114.883 105.67 244.41zM89.013 185.73l-1.627-20.073l25.469-2.712l.542 9.778zM60.29 416.59h255.246V448H60.29ZM46.74 256.156l-11.377-4.326c3.789-5.425 5.96-13.007 5.96-19.517l9.75.544c.545 7.05-.542 17.888-4.332 23.299z\\\"/>\",\n      \"width\": 320\n    },\n    \"springer-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm155.543 64.004c17.345.222 23.957 10.979 27.23 22.86c5.871.451 11.293 1.344 16.258 2.238c.906-2.691 3.617-4.961 6.776-4.961c4.062 0 6.775 3.174 6.775 6.77v1.806c9.481 3.162 18.51 7.674 26.643 12.646c1.355-1.808 3.159-2.713 5.418-2.713c4.064 0 6.777 3.165 6.777 6.793c0 1.787-.452 3.141-1.358 4.045c7.68 6.34 14.004 14.004 19.875 22.13c.9-.453 2.255-.905 3.159-.905c4.062 0 7.228 3.165 7.228 6.781c0 2.723-1.355 4.96-3.615 5.865c4.52 8.148 8.13 17.18 10.836 26.639c.452-.441 1.356-.443 1.809-.443c4.064 0 6.775 3.164 6.775 6.77c0 3.616-2.26 6.33-4.965 6.78a295.935 295.935 0 0 1 4.06 28.899c4.063 0 7.23 3.153 7.23 6.781c0 4.056-3.165 6.758-6.776 7.22c0 9.483-.453 19.869-1.356 29.804c3.616.451 6.323 3.605 6.323 7.232c0 3.605-3.16 6.772-7.229 6.772h-.445c-1.808 9.933-3.617 19.866-5.871 30.251l-.002.002h18.964v13.098H140.907v-13.098h18.067c3.158-42.447 43.804-58.235 66.384-92.568h-26.191c-12.648 4.51-31.615 32.524-31.615 48.766h-32.967l.451-13.551l-10.838 9.04l-28.904-33.407s-1.356-1.821-1.356-3.188c0-1.345.454-2.248.454-2.248L140 187.057l8.134-24.389l12.193-4.531l12.643-17.596l-4.518-30.728c12.194-4.511 23.938-.453 29.818 5.421c.44-9.017-.464-18.95-.464-18.95a49.064 49.064 0 0 1 5.736-.28zm7.367 14.26s-.001 16.26-3.617 32.523L195.1 140.54c0-11.292-4.968-15.82-11.743-18.986l3.163 22.129l-7.678 11.29l3.615 10.395l-23.936 8.127l-6.775 19.416l-42 57.807l15.809 18.965l17.613-14.895l4.062 2.7v22.13h9.48c4.065-15.8 17.162-34.323 29.356-43.353l-6.773-8.127l9.934-8.567l9.486 11.733s33.871 0 33.871-.442c4.968-10.848 8.125-23.958 8.125-39.306h13.1c0 51.499-25.739 71.798-57.807 103.418c-11.742 11.73-22.129 24.389-23.484 41.545h149.03c26.192-107.94-4.514-193.73-88.058-203.674c.447 4.52.446 8.149.446 11.742c0 5.425-.446 9.934-.446 9.934l-13.1-2.239c.465-4.532 1.359-35.237-9.48-42.017zm-26.197 68.191l.451 8.149l-20.32 10.837l-1.356-16.726l21.225-2.26zm-59.61 57.805l8.126.453c.453 5.876-.453 14.907-3.612 19.416v.002l-9.48-3.606c3.157-4.52 4.967-10.84 4.967-16.265zm15.805 153.566h212.705V416H140.908v-26.174z\\\"/>\"\n    },\n    \"ssrn\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M71.79 157.666c-35.216 0-59.469 20.592-59.469 49.494c0 12.957 4.322 23.592 12.627 32.23c9.302 9.633 19.265 14.95 42.52 22.923c24.252 7.641 28.906 9.966 33.89 13.62c8.637 6.976 13.62 16.61 13.62 26.908c0 20.93-19.935 37.874-44.519 37.874c-14.95 0-30.562-5.984-40.197-15.618c-7.308-7.309-12.292-15.614-16.61-28.238c-.665-1.661-1.332-2.654-2.66-2.654c-1.662 0-2.992 1.658-2.992 3.984c0 2.657 1.334 10.301 3.66 17.61c1.993 6.976 3.322 11.625 3.322 12.29c1.993 9.966 2.325 10.3 4.983 12.626c6.976 5.315 27.569 10.297 42.85 10.297c38.205 0 65.45-24.251 65.45-58.137c0-24.917-16.278-42.854-49.831-53.817c-33.554-10.963-35.217-11.965-42.858-20.27c-5.315-5.98-7.974-12.952-7.974-20.926c0-17.94 14.617-30.898 34.883-30.898c24.251 0 46.842 14.289 53.154 33.89c1.661 5.315 2.328 6.306 4.321 6.306c1.33 0 2.654-1.658 2.654-3.984c0-.996-.33-3.324-.662-5.982c-3.654-22.59-3.989-23.583-4.321-27.57c0-4.651-.997-6.644-3.322-6.644c-.332 0-.992.33-1.324.662c-3.322 2.657-3.66 2.99-5.32 2.99c-.665 0-1.658-.329-2.654-.661c-17.608-7.309-20.598-8.305-33.222-8.305zm108.631.661c-25.248 0-44.846 10.298-53.816 26.909l1.992 13.62c.332 1.992.33 3.325.33 3.99c0 5.315-3.318 9.3-7.636 10.297c.996 10.299 5.311 19.268 12.62 26.577c9.302 9.634 19.271 14.951 42.526 22.924c23.92 7.973 28.9 9.965 33.883 13.62c8.638 6.644 13.62 16.61 13.62 26.908c0 20.93-19.928 37.874-44.512 37.874c-14.95 0-30.569-5.977-40.203-15.612a58.289 58.289 0 0 1-7.968-9.966c-1.993 4.65-4.324 9.302-6.982 13.288c1.994 9.302 2.326 9.966 4.984 11.959c6.976 5.315 27.575 10.297 42.857 10.297c37.872 0 65.45-24.251 65.45-58.137c-.664-24.252-17.278-41.86-50.832-53.155c-33.886-11.295-35.548-11.958-42.857-20.264c-5.315-5.98-7.974-12.959-7.974-20.932c0-18.272 14.617-30.892 34.882-30.892c24.252 0 46.51 14.283 53.155 33.883c1.661 5.316 2.66 6.314 4.321 6.314c1.33 0 2.66-1.665 2.66-3.99c0-.997-.335-2.987-.668-5.977c-3.654-22.59-3.982-23.59-4.315-27.576c0-4.651-.996-6.644-3.322-6.644c-.664 0-.998.336-1.33.668c-3.322 2.658-3.653 2.985-5.314 2.985c-.664 0-1.332-.33-2.66-.662c-17.276-7.641-20.599-8.306-32.891-8.306zm96.342 3.653c-6.312 0-13.287.337-20.263.669c-14.95.996-14.949.993-21.925.993h-2.66c.664 1.66.999 3.655.999 6.313c.332 2.658.33 3.987 2.323 14.95l2.329 14.618c.332 1.994.33 3.32.33 3.984c0 2.99-.997 5.65-2.99 7.644v52.155c5.98 8.638 8.967 18.604 8.967 29.9c0 12.956-3.655 24.586-9.967 34.22c-1.66 11.96-5.978 14.95-16.941 18.272c-2.658.665-3.322.993-3.322 2.654c0 1.993.995 2.66 3.653 2.66c.996 0 4.324-.33 6.981-.662c4.651-.664 11.628-.999 18.272-.999c12.957 0 27.24.335 30.561 1c3.655.332 6.645.661 8.306.661c2.325 0 4.321-.999 4.321-2.66s-1.66-2.653-4.983-2.985c-19.269-1.993-25.58-8.97-24.916-27.907v-49.171c.332-4.65.991-5.315 7.968-4.983h14.95c5.98 0 7.644 1 10.634 5.652c.997 1.66 1.661 2.652 1.661 2.984l33.553 51.494c13.62 20.93 25.578 28.906 42.189 28.906c9.966 0 19.27-2.656 19.27-5.314c0-.996-.993-1.998-2.322-1.998c-14.286.332-23.922-7.64-40.865-33.553l-37.874-55.146c21.926-11.295 33.89-27.244 33.89-47.51c0-14.617-5.98-27.57-16.611-35.544c-10.631-7.973-24.256-11.297-45.518-11.297zm223.253 2.33c-1.661 0-3.654.33-6.644.662c-3.322.664-6.648.999-12.296.999c-7.973 0-21.263-.667-26.246-1l-5.976-.33c-2.658 0-3.99.993-3.99 2.654c0 1.993 1 2.995 3.99 3.66c25.912 3.654 28.234 9.633 27.57 73.087v65.112c0 4.32-.333 5.316-1.661 4.984c-.665 0-1.66-.997-3.654-3.322L346.198 168.625c-2.658-2.99-4.316-3.984-7.306-3.984c-.997 0-2.66-.001-4.653.33h-2.33c-.663 0-6.64.002-10.627-.33c1.66.996 3.322 2.325 4.983 3.322c11.96 8.97 19.27 24.248 19.27 40.859c0 2.657-.335 5.318-.667 7.643v86.376l3.322 4.983c2.99 4.32 5.318 7.975 7.643 11.297v-97.342c0-4.65.66-5.976 2.654-5.976c1.329 0 1.661.331 3.322 1.992l114.615 131.556c4.318 4.983 4.32 4.983 6.313 4.983c3.322 0 4.321-1.994 4.321-7.974v-2.654c.333-7.973.331-20.268.331-37.543v-88.368l.331-8.636c-.332-32.89.995-36.213 13.62-39.535c1.993-.332 2.66-1 2.66-2.33c0-1.66-1.658-2.984-3.984-2.984zm-230.559 6.975c12.625 0 26.243 4.32 33.884 11.297c9.634 7.973 15.28 21.259 15.28 33.883c0 22.59-14.285 36.544-38.204 36.544h-15.281c-8.97-.332-9.636-.998-9.636-9.636v-55.146c0-9.302 0-10.301 1.661-12.627c1.994-2.658 5.984-4.315 12.296-4.315z\\\"/>\",\n      \"width\": 512\n    },\n    \"ssrn-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm57.154 160.559c8.145 0 10.074.642 21.434 5.357c.643.214 1.282.428 1.71.428c1.072 0 1.291-.215 3.434-1.93c.215-.214.64-.428.854-.428c1.5 0 2.144 1.287 2.144 4.287c.215 2.572.43 3.213 2.788 17.788c.214 1.714.427 3.216.427 3.859c0 1.5-.855 2.57-1.713 2.57c-1.286 0-1.715-.639-2.787-4.068c-4.072-12.646-18.648-21.865-34.295-21.865c-13.074 0-22.504 8.361-22.504 19.935c0 5.144 1.716 9.642 5.145 13.5c4.93 5.358 6.003 6.005 27.65 13.078c21.648 7.073 32.15 18.646 32.15 34.721c0 21.862-17.578 37.508-42.226 37.508c-9.86 0-23.145-3.215-27.646-6.645c-1.715-1.5-1.93-1.716-3.215-8.146c0-.429-.857-3.427-2.143-7.928c-1.5-4.715-2.361-9.647-2.361-11.361c0-1.5.858-2.57 1.93-2.57c.857 0 1.288.64 1.716 1.712c2.787 8.145 6.002 13.502 10.717 18.217c6.216 6.216 16.289 10.076 25.934 10.076c15.86 0 28.72-10.93 28.72-24.433c0-6.645-3.214-12.86-8.787-17.362c-3.215-2.357-6.217-3.857-21.863-8.787c-15.003-5.144-21.432-8.573-27.433-14.789c-5.359-5.572-8.147-12.434-8.147-20.793c0-18.647 15.648-31.931 38.367-31.931zm70.086.427c7.93 0 10.074.428 21.219 5.358c.857.214 1.288.427 1.717.427c1.071 0 1.284-.21 3.428-1.925c.214-.215.43-.432.859-.432c1.5 0 2.142 1.287 2.142 4.287c.215 2.572.426 3.217 2.784 17.791c.214 1.93.431 3.213.431 3.856c0 1.5-.86 2.574-1.716 2.574c-1.072 0-1.716-.645-2.788-4.074c-4.286-12.646-18.646-21.86-34.293-21.86c-13.074 0-22.505 8.142-22.505 19.93c0 5.144 1.715 9.648 5.144 13.506c4.715 5.358 5.789 5.785 27.65 13.072c21.648 7.287 32.367 18.649 32.795 34.295c0 21.862-17.792 37.508-42.226 37.508c-9.86 0-23.15-3.215-27.65-6.645c-1.715-1.286-1.93-1.713-3.215-7.715c1.714-2.572 3.22-5.571 4.505-8.572c1.5 2.358 3.212 4.5 5.141 6.43c6.216 6.216 16.293 10.072 25.938 10.072c15.86 0 28.716-10.932 28.716-24.435c0-6.645-3.214-13.073-8.787-17.36c-3.215-2.357-6.427-3.643-21.86-8.787c-15.002-5.144-21.435-8.575-27.437-14.79c-4.715-4.716-7.5-10.503-8.142-17.147c2.786-.643 4.928-3.214 4.928-6.643c0-.429.001-1.288-.213-2.574l-1.285-8.787c5.787-10.717 18.431-17.36 34.72-17.36zm62.156 2.356c13.718 0 22.507 2.145 29.366 7.289c6.858 5.144 10.717 13.5 10.717 22.932c0 13.074-7.72 23.363-21.866 30.65l24.436 35.578c10.93 16.718 17.149 21.863 26.365 21.648c.857 0 1.498.647 1.498 1.29c0 1.714-6.004 3.427-12.433 3.427c-10.717 0-18.432-5.145-27.22-18.648l-21.646-33.223c0-.214-.427-.854-1.07-1.926c-1.929-3-3.003-3.646-6.861-3.646h-9.647c-4.5-.214-4.926.214-5.14 3.215v31.724c-.43 12.217 3.644 16.718 16.076 18.004c2.143.215 3.215.854 3.215 1.926s-1.29 1.717-2.79 1.717c-1.071 0-3-.214-5.357-.428c-2.143-.429-11.358-.644-19.717-.644c-4.286 0-8.788.215-11.789.644c-1.714.214-3.86.428-4.504.428c-1.714 0-2.357-.431-2.357-1.717c0-1.072.43-1.284 2.144-1.713c7.073-2.143 9.858-4.071 10.93-11.787c4.072-6.216 6.43-13.72 6.43-22.078c0-7.287-1.927-13.718-5.785-19.291v-33.649c1.286-1.286 1.93-3 1.93-4.93c0-.428 0-1.284-.214-2.57l-1.503-9.431c-1.287-7.073-1.284-7.932-1.499-9.647c0-1.714-.215-3-.644-4.072h1.717c4.5 0 4.5.002 14.144-.64c4.501-.215 9.002-.432 13.074-.432zm144.034 1.504c1.5 0 2.57.854 2.57 1.925c0 .858-.43 1.288-1.717 1.502c-8.144 2.144-9.001 4.287-8.787 25.506l-.213 5.573v57.011c0 11.146.002 19.077-.213 24.221v1.713c0 3.858-.645 5.144-2.789 5.144c-1.286 0-1.286 0-4.072-3.214l-73.945-84.875c-1.072-1.072-1.286-1.286-2.143-1.286c-1.286 0-1.713.855-1.713 3.856v62.801c-1.5-2.144-3.002-4.501-4.931-7.287l-2.143-3.215v-55.727c.214-1.5.432-3.217.432-4.931c0-10.717-4.718-20.575-12.434-26.362c-1.072-.643-2.143-1.5-3.215-2.142c2.572.214 6.429.212 6.858.212h1.502c1.286-.214 2.359-.212 3.002-.212c1.929 0 2.998.64 4.712 2.57l80.59 91.736c1.286 1.5 1.927 2.143 2.356 2.143c.857.214 1.072-.429 1.072-3.215v-42.008c.429-40.937-1.07-44.796-17.787-47.154c-1.93-.429-2.574-1.074-2.574-2.36c0-1.071.86-1.712 2.574-1.712l3.855.212c3.215.215 11.79.645 16.934.645c3.644 0 5.788-.216 7.932-.645c1.929-.214 3.215-.425 4.287-.425zm-148.748 4.5c-4.073 0-6.646 1.068-7.932 2.783c-1.072 1.5-1.072 2.145-1.072 8.146v35.579c0 5.572.43 6.002 6.217 6.216h9.857c15.432 0 24.648-9.001 24.648-23.576c0-8.144-3.641-16.717-9.857-21.861c-4.93-4.501-13.717-7.287-21.861-7.287z\\\"/>\"\n    },\n    \"stackoverflow\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m252.083 64l-27.489 20.396l101.987 137.46l27.488-20.396Zm-63.404 54.986l-21.73 26.155l131.693 109.53l21.729-26.164zm-50.552 70.947l-14.186 31.481l155.197 72.272l14.186-31.039zm-29.264 77.599l-7.093 33.698l167.608 35.032l7.093-33.707zm-78.932 43.45V448h308.177V310.981h-34.14v102.88H64.079V310.98Zm68.288 34.148v34.14h171.159v-34.14z\\\"/>\",\n      \"width\": 384\n    },\n    \"stackoverflow-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm226.068 64l84.99 114.55l-22.908 16.997l-84.988-114.55L274.068 96zm-52.836 45.822l109.745 91.268l-18.11 21.803l-109.742-91.276l18.107-21.795zm-42.127 59.121l129.333 60.596l-11.823 25.867l-129.33-60.228l11.82-26.235zM154.72 265.61l139.674 29.186l-5.913 28.09L148.81 293.69l5.91-28.082zm-65.78 36.21h28.46v85.732h199.906v-85.733h28.449V416H88.94V301.818zm56.909 28.456h142.63v28.45H145.85v-28.45z\\\"/>\"\n    },\n    \"viaf\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M226.01 64c-28.704 0-36.498.46-36.498 2.227c0 1.248 2.438 3.092 5.414 4.013c9.465 2.938 9.542 3.86 7.027 73.92l-3.207 83.328c-.98 19.95-.979 19.948 2.746 19.41c2.611-.384 23.058-24.192 64.127-74.61l86.266-100.895c3.053-1.536 5.568-3.84 5.568-5.088c0-1.844-5.26-2.305-23.96-2.305c-26.19 0-30.682 1.766-18.778 7.469c6.259 2.937 6.565 3.475 5.72 9.177a41.283 41.283 0 0 1-5.26 12.731c-4.204 6.624-76.262 95.71-76.876 95.02c-.999-.999 3.36-93.332 4.722-101.358c1.92-10.714 7.258-17.797 13.594-17.797c2.208 0 4.511-1.152 5.03-2.611c.768-2.323-3.802-2.631-35.635-2.631zm180.46 0c-34.732 0-42.374.384-42.374 2.4c0 1.46 2.67 2.842 6.72 3.534c9.62 1.612 13.902 6.7 12.52 14.879c-1.824 10.56-35.944 134.65-38.479 139.738a24.574 24.574 0 0 1-17.625 13.19c-16.416 2.764-4.818 4.148 35.118 4.148s52.895-1.46 37.093-4.149c-8.697-1.478-13.67-5.626-13.67-11.328c0-6.182 35.27-137.049 38.938-144.537c3.283-6.7 11.616-12.633 17.875-12.633c2.362 0 4.8-1.152 5.338-2.611c.845-2.323-4.436-2.631-41.453-2.631zM219.98 264.793c-2.38 0-22.002 23.5-65.97 79.008l-84.807 98.113c-2.285.614-4.587 2.227-5.125 3.629c-.749 2.074 3.359 2.457 24.824 2.457c21.754 0 25.729-.384 25.729-2.611c0-1.479-1.382-2.631-3.13-2.631c-1.746 0-4.819-1.458-6.95-3.32c-5.645-4.839-3.13-11.33 12.595-31.97l13.286-17.509l25.498-.078h25.498l-1.074 16.34c-1.901 27.974-4.898 34.31-16.956 36.384c-3.36.538-6.411 1.997-6.718 3.245c-.596 1.69 7.565 2.15 36.806 2.15c30.99 0 37.631-.384 37.631-2.38c0-1.402-1.9-3.016-4.205-3.554c-2.208-.614-5.415-3.166-6.932-5.7c-2.918-4.705-2.687-18.587 2.286-145.595c.979-25.132.902-25.978-2.286-25.978zm142.524 5.318l-69.85 1.537c0 .845 2.438 2.074 5.414 2.707a27.262 27.262 0 0 1 9.389 3.916c3.437 2.63 3.743 3.86 2.898 11.866c-.998 9.638-32.524 126.183-37.093 137.127c-3.821 9.1-8.93 13.575-17.262 15.111c-3.974.691-7.468 2.303-7.852 3.475c-.537 1.69 9.005 2.15 42.663 2.15c37.478 0 43.373-.307 43.373-2.611c0-1.863-1.767-2.631-6.26-2.631c-3.437 0-7.95-1.228-10.004-2.764c-6.413-4.704-5.432-10.791 11.521-71.924l3.36-12.095l11.674 1.228c6.412.691 13.593 2.17 15.82 3.244c5.722 2.688 8.851 10.1 8.851 20.66c0 7.7.441 8.928 2.899 8.467c2.208-.46 5.031-8.468 12.289-34.906c7.93-29.3 8.927-34.462 6.719-35c-1.536-.384-3.82 1.228-5.28 3.475c-9.542 15.417-19.45 21.58-37.863 23.423c-10.982 1.152-12.056.999-11.902-1.92c0-1.785 4.05-17.03 8.773-34.003l8.793-30.815l19.008.076c29.453.23 39.918 7.007 42.51 27.666c.768 6.47 1.689 8.315 4.05 8.315c2.132 0 3.59-1.996 4.743-6.623l8.469-37.23c0-1.383-20.852-1.92-69.85-1.92zm-178.867 54.952c.614.69-2.516 53.183-3.207 53.875l-40.608-.461l43.815-53.414z\\\"/>\",\n      \"width\": 512\n    },\n    \"viaf-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm151.008 64c26.528 0 30.335.257 29.695 2.193c-.432 1.216-2.351 2.176-4.191 2.176c-5.28 0-9.728 5.902-11.328 14.83c-1.136 6.688-4.768 83.633-3.936 84.465c.512.576 60.56-73.664 64.065-79.184a34.395 34.395 0 0 0 4.382-10.607c.704-4.752.449-5.2-4.767-7.648c-9.92-4.752-6.176-6.225 15.648-6.225c15.584 0 19.967.384 19.967 1.92c0 1.04-2.095 2.96-4.639 4.24l-71.888 84.08c-34.224 42.016-51.264 61.856-53.44 62.176c-3.104.448-3.105.448-2.289-16.176l2.674-69.44c2.096-58.383 2.03-59.15-5.857-61.599c-2.48-.768-4.512-2.306-4.512-3.346c0-1.472 6.496-1.855 30.416-1.855zm150.385 0c30.848 0 35.247.257 34.543 2.193c-.448 1.216-2.48 2.176-4.448 2.176c-5.216 0-12.16 4.944-14.896 10.527c-3.056 6.24-32.447 115.296-32.447 120.448c0 4.752 4.142 8.207 11.39 9.44c13.168 2.24 2.37 3.456-30.91 3.456s-42.946-1.153-29.266-3.457a20.477 20.477 0 0 0 14.688-10.99c2.112-4.24 30.546-107.65 32.066-116.45c1.152-6.815-2.417-11.054-10.433-12.398c-3.376-.576-5.6-1.729-5.6-2.945c0-1.68 6.369-2 35.313-2zm-155.41 167.328c2.655 0 2.72.705 1.904 21.649c-4.144 105.84-4.337 117.408-1.905 121.328c1.264 2.112 3.938 4.238 5.778 4.75c1.92.448 3.504 1.793 3.504 2.96c0 1.665-5.536 1.985-31.36 1.985c-24.368 0-31.168-.385-30.672-1.793c.256-1.04 2.8-2.255 5.6-2.703c10.048-1.728 12.545-7.008 14.129-30.32l.894-13.618h-21.248l-21.248.067l-11.07 14.592c-13.104 17.2-15.2 22.608-10.496 26.64c1.776 1.552 4.335 2.766 5.791 2.766c1.456 0 2.607.961 2.607 2.193c0 1.856-3.311 2.176-21.439 2.176c-17.888 0-21.312-.319-20.688-2.047c.448-1.168 2.368-2.513 4.272-3.025l70.672-81.76c36.64-46.256 52.99-65.84 54.974-65.84zm118.769 4.432c40.832 0 58.209.447 58.209 1.6l-7.057 31.025c-.96 3.856-2.177 5.52-3.953 5.52c-1.968 0-2.735-1.538-3.375-6.93c-2.16-17.216-10.882-22.863-35.426-23.055l-15.84-.063l-7.326 25.678c-3.936 14.144-7.312 26.848-7.312 28.336c-.128 2.432.768 2.562 9.92 1.602c15.344-1.536 23.6-6.674 31.553-19.522c1.216-1.872 3.118-3.214 4.398-2.894c1.84.448 1.01 4.75-5.598 29.166c-6.048 22.032-8.402 28.705-10.242 29.09c-2.048.384-2.414-.641-2.414-7.057c0-8.8-2.609-14.977-7.377-17.217c-1.856-.896-7.84-2.127-13.183-2.703L288 339.312l-2.799 10.08c-14.128 50.944-14.945 56.016-9.601 59.936c1.712 1.28 5.472 2.303 8.336 2.303c3.744 0 5.216.641 5.216 2.193c0 1.92-4.912 2.176-36.144 2.176c-28.048 0-35.999-.385-35.551-1.793c.32-.976 3.231-2.318 6.543-2.894c6.944-1.28 11.2-5.01 14.385-12.594c3.808-9.12 30.078-106.24 30.91-114.272c.704-6.672.45-7.696-2.414-9.888a22.717 22.717 0 0 0-7.824-3.262c-2.48-.528-4.512-1.552-4.512-2.256l58.207-1.281zm-149.055 45.793l-36.511 44.511l33.837.383c.576-.576 3.186-44.318 2.674-44.894z\\\"/>\"\n    },\n    \"wiley\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M256.398 8C201.051 8 135.401 21.81 87.651 70.029c-39.793 40.163-61.959 96.802-61.959 185.268c0 105.966 32.477 162.679 76.371 199.82C143.823 490.425 198.833 504 255.016 504c57.67 0 107.288-13.766 145.828-42.298c53.335-39.465 85.463-99.73 85.463-207.038c0-97.618-30.397-160.294-74.754-196.141C365.15 21.008 311.853 8 256.398 8Zm0 26.316c74.657 0 109.335 11.928 141.26 38.713c20.93 17.57 36.085 44.17 46.023 78.878h-54.624a5.191 5.191 0 0 0-5.202 5.202v2.765a5.191 5.191 0 0 0 4.686 5.156s4.642.605 7.476 4.241a5.191 5.191 0 0 0 .024.024c3.158 4.033 4.397 9.18-.094 21.653c-4.905 13.606-42.155 98.468-48.203 110.631c-2.062 4.138-2.626 7.385-3.843 11.342c-.142-.216-.23-.39-.375-.61a433.097 433.097 0 0 0-7.476-10.896c-2.328-3.277-9.024-11.416-18.512-22.871c-9.49-11.455-21.53-25.862-33.698-40.377a5.191 5.191 0 0 0-.024-.024c-.738-.876-1.716-1.815-2.601-2.765c.837-.977 1.859-2.007 2.695-3.07a4492.046 4492.046 0 0 0 31.26-40.072c8.147-10.564 13.686-17.84 14.295-18.606c4.765-6.003 9.572-10.678 10.264-11.108a5.191 5.191 0 0 0 2.46-4.405v-1.031a5.191 5.191 0 0 0-5.202-5.203h-55.655c.081-14.539.114-28.33.304-32.62c.851-19.401 2.23-25.488 11.858-36.416c4.727-5.374 8.74-7.92 8.74-7.92a5.191 5.191 0 0 0 1.711-6.913c-.685-1.213-.82-1.547-.82-1.547a5.191 5.191 0 0 0-7.194-2.578c-1.099.58-4.419 1.42-8.6 1.828c-4.182.408-9.299.54-14.67.54c-10.686 0-46.2-.657-62.263-.657c-16.697 0-28.35 4.025-36.815 11.506c-4.367 3.856-8.034 9.352-11.014 14.342c-1.49 2.494-2.78 4.835-3.75 6.772c-.969 1.937-1.543 3.048-2.015 4.71a5.191 5.191 0 0 0 2.133 5.741l1.992 1.313a5.191 5.191 0 0 0 6.655-.797c2.05-2.192 7.772-6.953 13.146-8.74c7.458-2.49 13.86-3.188 23.622-3.188c9.788 0 34.766.703 42.532.703c5.321 0 9.07-.64 13.03-1.195c-8.598 10.015-16.334 23.059-16.334 47.875c0 2.044.012 4.777.024 7.265h-69.505a5.191 5.191 0 0 0-5.202 5.202v1.078a5.191 5.191 0 0 0 2.273 4.288s5.502 3.71 13.263 13.147c3.376 4.082 26.367 31.694 52.75 63.81c1.05 1.274 2.05 2.262 3.164 3.421c-.887.961-1.563 1.664-3.117 3.586a5.191 5.191 0 0 0-.024 0a3347.33 3347.33 0 0 0-33.651 42.673a1903.822 1903.822 0 0 0-11.319 14.716c-2.857 3.763-4.496 5.936-5.366 7.264c-1.826 2.774-2.055 3.324-3.07 4.875c-1.062-3.73-1.273-5.896-4.968-14.178c-3.032-6.791-15.972-33.644-28.776-60.084c-12.805-26.44-25.37-52.245-27.16-55.937c-4.568-9.36-3.015-13.896-.914-16.919c1.294-1.87 3.717-3.332 6.022-3.843a5.191 5.191 0 0 0 4.078-5.062v-2.858a5.191 5.191 0 0 0-5.203-5.203H67.381a5.191 5.191 0 0 0-1.055 1.055c7.686-27.961 19.546-50.104 36.253-68.403c29.056-31.819 69.866-50.22 153.82-50.22ZM64.522 162.803a5.191 5.191 0 0 0 1.828 2.227s2.68 1.05 2.812 1.171c.229.21 1.653 1.986 2.906 3.937c1.253 1.951 2.537 4.162 3.515 5.882a5.191 5.191 0 0 0 .023.024c1.373 2.402 7.681 14.911 15.912 31.519a14018 14018 0 0 1 28.87 58.654a23896.35 23896.35 0 0 1 28.191 57.812c7.796 16.037 13.382 27.62 14.037 29.058c5.418 11.914 5.858 14.083 5.858 14.083a5.191 5.191 0 0 0 5.062 4.03h1.195a5.191 5.191 0 0 0 4.336-2.342s7.974-12.133 20.176-27.465c4.006-5.036 23.244-31.29 45.25-59.733c.285 43.262.92 89.689 1.196 114.662c.17 15.582-1.83 25.207-4.804 30.112c-2.974 4.906-6.447 6.328-13.545 6.328c-2.476 0-4.386-.935-5.952-1.64c6.825-2.92 12-9.874 12.115-19.545c.156-11.469-9.115-23.263-23.855-23.058c-7.854.102-14.933 3.427-19.755 8.998c-4.822 5.57-7.429 13.203-7.429 21.77c0 7.212 2.676 16.405 9.936 24.02c7.261 7.615 19.1 13.168 36.042 12.982c20.08-.22 33.645-8.833 41.665-19.333c8.02-10.5 10.867-22.484 11.6-30.464c1.062-11.56.89-21.764.89-39.369c0-10.957-.467-43.21-.96-72.644c21.643 26.843 40.416 50.245 43.352 53.991c11.064 14.157 15.162 20.388 15.162 20.388a5.191 5.191 0 0 0 4.335 2.342h1.546a5.191 5.191 0 0 0 4.922-3.585s3.877-11.69 8.483-21.254l.024-.024c2.858-5.904 20.299-44.899 37.728-83.847l23.996-53.616c6.626-14.805 11.382-25.425 11.834-26.387c1.322-2.803 2.987-5.998 4.593-8.694c1.606-2.695 3.4-4.971 3.843-5.366a5.191 5.191 0 0 0 0-.024c1.87-1.664 3.97-3.04 5.18-3.351c6.006 25.849 10.006 54.777 10.006 89.892c0 88.96-15.62 140.47-54.484 178.613c-36.2 35.513-77.229 43.633-146.672 43.633c-74.783 0-116.068-12.853-151.031-47.805c-39.54-39.54-49.235-106.446-49.235-174.44c0-36.695 3.31-66.381 9.304-92.143zm223.98 11.811c2.918-.003 3.785-.003 6.28 0c-1.377 1.642-6.884 8.393-13.708 16.849c.034-5.538.068-11.164.118-16.825c2.375-.004 3.595-.02 7.31-.024zm-57.905.024h13.498c.054 5.2.13 10.639.188 16.427c-8.097-9.65-11.976-14.3-13.685-16.427zm23.06 94.25a2.402 2.402 0 0 1-.212.282c.062-.125.152-.153.211-.281z\\\"/>\",\n      \"width\": 512\n    },\n    \"wiley-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm176.258 64c35.777 0 70.162 8.392 100.1 32.596c28.617 23.127 48.228 63.563 48.228 126.543c0 69.23-20.729 108.111-55.139 133.572C292.583 407.119 260.572 416 223.365 416c-36.247 0-71.738-8.757-98.68-31.537c-28.318-23.962-49.27-60.55-49.27-128.916c0-57.075 14.3-93.616 39.974-119.527C146.195 104.91 188.549 96 224.258 96zm0 16.979c-54.164 0-80.492 11.87-99.238 32.398c-10.779 11.806-18.43 26.092-23.39 44.13a3.35 3.35 0 0 1 .68-.679h38.387a3.35 3.35 0 0 1 3.356 3.356v1.845a3.35 3.35 0 0 1-2.631 3.266c-1.487.33-3.05 1.272-3.885 2.478c-1.355 1.95-2.357 4.878.59 10.916c1.154 2.382 9.26 19.03 17.521 36.088c8.261 17.058 16.61 34.382 18.567 38.764c2.384 5.343 2.52 6.74 3.205 9.147c.654-1 .802-1.355 1.98-3.145c.562-.857 1.62-2.258 3.463-4.686c1.844-2.427 4.344-5.68 7.301-9.494a2159.942 2159.942 0 0 1 21.711-27.531a3.35 3.35 0 0 1 .016 0c1.002-1.24 1.437-1.694 2.01-2.314c-.719-.748-1.364-1.385-2.042-2.207c-17.021-20.72-31.853-38.535-34.03-41.168c-5.009-6.088-8.558-8.48-8.558-8.48a3.35 3.35 0 0 1-1.466-2.768v-.696a3.35 3.35 0 0 1 3.355-3.355h44.842c-.007-1.605-.016-3.37-.016-4.688c0-16.01 4.993-24.425 10.54-30.886c-2.555.357-4.974.771-8.407.771c-5.01 0-21.127-.455-27.441-.455c-6.298 0-10.427.45-15.239 2.057c-3.467 1.153-7.16 4.224-8.482 5.638a3.35 3.35 0 0 1-4.293.516l-1.285-.848a3.35 3.35 0 0 1-1.375-3.703c.304-1.072.673-1.79 1.299-3.039a69.355 69.355 0 0 1 2.42-4.37c1.922-3.218 4.287-6.765 7.105-9.253c5.46-4.827 12.98-7.422 23.752-7.422c10.364 0 33.276.422 40.17.422c3.465 0 6.765-.084 9.463-.348c2.698-.263 4.84-.804 5.549-1.177a3.35 3.35 0 0 1 4.642 1.662s.087.215.53.998a3.35 3.35 0 0 1-1.106 4.459s-2.589 1.644-5.639 5.111c-6.21 7.05-7.101 10.977-7.65 23.494c-.123 2.768-.143 11.665-.195 21.045h35.906a3.35 3.35 0 0 1 3.355 3.356v.666a3.35 3.35 0 0 1-1.585 2.841c-.447.278-3.55 3.293-6.624 7.166c-.392.494-3.966 5.19-9.222 12.006a2899.653 2899.653 0 0 1-20.168 25.852c-.54.686-1.198 1.35-1.738 1.98c.57.613 1.201 1.22 1.677 1.785a3.35 3.35 0 0 1 .016.014c7.85 9.365 15.618 18.66 21.74 26.05c6.122 7.391 10.441 12.642 11.944 14.757a278.93 278.93 0 0 1 4.824 7.03c.093.14.148.252.24.392c.785-2.553 1.15-4.647 2.48-7.317c3.902-7.847 27.936-62.597 31.1-71.375c2.897-8.047 2.098-11.368.06-13.97a3.35 3.35 0 0 1-.015-.014c-1.828-2.346-4.824-2.736-4.824-2.736a3.35 3.35 0 0 1-3.024-3.327V192.2a3.35 3.35 0 0 1 3.358-3.355h35.24c-6.412-22.393-16.188-39.555-29.691-50.89c-20.597-17.281-42.97-24.975-91.135-24.975zm-123.791 82.894c-3.867 16.62-6.002 35.774-6.002 59.447c0 43.868 6.254 87.033 31.764 112.543c22.556 22.55 49.192 30.842 97.439 30.842c44.802 0 71.273-5.24 94.627-28.152c25.074-24.608 35.15-57.84 35.15-115.233c0-22.655-2.58-41.32-6.455-57.996c-.78.201-2.135 1.089-3.342 2.162a3.35 3.35 0 0 0 0 .002a3.35 3.35 0 0 0 0 .002a3.35 3.35 0 0 0 0 .002a3.35 3.35 0 0 0 0 .002a3.35 3.35 0 0 0 0 .002a3.35 3.35 0 0 0 0 .002a3.35 3.35 0 0 0 0 .002a3.35 3.35 0 0 0 0 .002c-.286.255-1.442 1.724-2.478 3.463a68.853 68.853 0 0 0-2.965 5.607c-.292.62-3.36 7.472-7.635 17.024l-15.48 34.592c-11.245 25.127-22.498 50.285-24.342 54.093l-.014.016c-2.971 6.17-5.474 13.713-5.474 13.713a3.35 3.35 0 0 1-3.174 2.312h-.998a3.35 3.35 0 0 1-2.797-1.511s-2.643-4.02-9.781-13.153c-1.894-2.417-14.007-17.515-27.97-34.834c.318 18.99.62 39.798.62 46.867c0 11.358.111 17.942-.574 25.4c-.473 5.149-2.31 12.88-7.484 19.655c-5.175 6.774-13.927 12.331-26.881 12.473c-10.93.12-18.568-3.462-23.252-8.375c-4.685-4.913-6.41-10.845-6.41-15.498c0-5.528 1.68-10.451 4.79-14.045c3.112-3.594 7.68-5.74 12.747-5.805c9.51-.132 15.491 7.477 15.39 14.877c-.075 6.239-3.413 10.724-7.816 12.607c1.01.456 2.242 1.06 3.84 1.06c4.579 0 6.82-.918 8.738-4.083c1.919-3.165 3.209-9.375 3.1-19.428c-.178-16.111-.588-46.064-.772-73.974c-14.198 18.35-26.609 35.288-29.193 38.537c-7.872 9.891-13.018 17.719-13.018 17.719a3.35 3.35 0 0 1-2.797 1.511h-.771a3.35 3.35 0 0 1-3.266-2.6s-.284-1.399-3.78-9.085c-.422-.928-4.024-8.402-9.054-18.748a15487.389 15487.389 0 0 0-18.19-37.297a9052.692 9052.692 0 0 0-18.624-37.842c-5.31-10.714-9.38-18.785-10.266-20.334a3.35 3.35 0 0 1-.015-.016a85.718 85.718 0 0 0-2.268-3.795c-.808-1.258-1.727-2.404-1.875-2.539c-.086-.078-1.814-.755-1.814-.755a3.35 3.35 0 0 1-1.178-1.438zm144.502 7.62c-2.398.001-3.185.012-4.717.015c-.032 3.653-.052 7.283-.074 10.855c4.402-5.455 7.955-9.811 8.843-10.87a909.84 909.84 0 0 0-4.052 0zm-37.358.015c1.103 1.373 3.607 4.371 8.83 10.597c-.037-3.734-.086-7.243-.12-10.597h-8.71z\\\"/>\"\n    },\n    \"zenodo\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M0 139.636v232.728h640V139.636Zm452.426 29.091c2.12 0 4 .78 5.614 2.335c1.632 1.554 2.443 3.459 2.443 5.716v34.569c-2.83 4.003-3.528 11.132-3.648 15.914c.864-2.813 2.83-6.895 3.648-8.221c.663-1.08 1.83-2.858 2.886-4.188a36.647 36.647 0 0 1 3.057-3.403a39.851 39.851 0 0 1 5.722-4.654a40.353 40.353 0 0 1 6.471-3.505c4.582-1.973 9.573-2.972 14.95-2.972c5.221 0 10.18 1 14.846 2.972c4.666 1.978 8.723 4.706 12.182 8.159c3.461 3.47 6.227 7.527 8.278 12.187c2.04 4.667 3.068 9.62 3.08 14.841v31.597c0 5.23-.994 10.174-2.966 14.846c-1.984 4.655-4.75 8.726-8.273 12.188c-3.54 3.462-7.63 6.175-12.296 8.153c-4.666 1.99-9.619 2.972-14.84 2.972c-5.234 0-10.175-.982-14.841-2.972c-4.67-1.978-8.735-4.694-12.194-8.153c-3.461-3.462-6.222-7.53-8.267-12.188c-.15-.349-.283-.699-.426-1.05c-.14.351-.278.701-.426 1.05c-2.057 4.655-4.82 8.726-8.284 12.188c-3.462 3.462-7.516 6.175-12.17 8.153c-4.67 1.99-9.63 2.972-14.853 2.972c-5.37 0-10.37-.982-14.949-2.972c-4.602-1.978-8.658-4.694-12.187-8.153c-3.54-3.462-6.295-7.53-8.267-12.188c-.114-.276-.216-.555-.33-.835c-.101.28-.204.56-.312.835c-1.978 4.655-4.75 8.726-8.273 12.188c-3.54 3.462-7.635 6.175-12.295 8.153c-4.666 1.99-9.62 2.972-14.841 2.972c-5.234 0-10.18-.982-14.841-2.972c-4.67-1.978-8.734-4.694-12.193-8.153c-2.377-2.377-4.398-5.062-6.108-8v11.062c0 2.267-.818 4.18-2.426 5.728c-1.638 1.562-3.505 2.335-5.625 2.335c-2.27 0-4.183-.773-5.739-2.335c-1.55-1.548-2.324-3.464-2.324-5.728v-61.693c0-2.955-.608-5.79-1.807-8.471c-1.21-2.685-2.788-5.066-4.772-7.114c-1.97-2.045-4.348-3.63-7.097-4.773a22.437 22.437 0 0 0-8.597-1.687c-3.09 0-6 .559-8.67 1.687c-2.697 1.14-5.069 2.728-7.102 4.773a21.96 21.96 0 0 0-4.784 7.114c-1.138 2.682-1.694 5.519-1.694 8.471v24.392h-71.46v7.205c0 2.976.603 5.795 1.796 8.483c1.204 2.685 2.788 5.057 4.772 7.102c1.981 2.051 4.36 3.638 7.097 4.773a22.496 22.496 0 0 0 8.597 1.682c4.523 0 8.58-1.153 12.181-3.489c3.616-2.33 6.34-5.467 8.176-9.437l1.319-2.71a7.382 7.382 0 0 1 2.852-3.705c1.33-.925 2.87-1.375 4.557-1.375h20.108s-.03.034-.03.04h.03v28.738c0 2.266-.806 4.174-2.438 5.722c-1.632 1.562-3.49 2.335-5.613 2.335c-2.264 0-4.177-.773-5.722-2.335c-1.574-1.548-2.341-3.458-2.341-5.722v-11.068c-2.886 5.091-6.857 9.346-11.88 12.767c-6.217 4.25-13.278 6.358-21.2 6.358c-5.245 0-10.177-.976-14.846-2.966a38.588 38.588 0 0 1-9.04-5.375c-.311 4.25-3.853 7.602-8.182 7.602h-61.227a8.213 8.213 0 0 1-8.21-8.21v-5.358a8.2 8.2 0 0 1 1.62-4.892l53.033-71.403h-45.21a8.205 8.205 0 0 1-8.205-8.205c0-4.53 3.676-8.21 8.205-8.21h57.528c4.533 0 8.205 3.68 8.205 8.21v1.284c3.334-3.095 7.107-5.599 11.375-7.426c4.576-1.972 9.561-2.966 14.943-2.966c5.222 0 10.178.994 14.847 2.966c4.66 1.978 8.714 4.706 12.17 8.16c3.468 3.47 6.228 7.526 8.284 12.187c.137.308.256.623.381.932c.125-.309.239-.624.364-.932c1.984-4.66 4.737-8.714 8.29-12.188a39.575 39.575 0 0 1 12.175-8.159c4.597-1.972 9.585-2.966 14.944-2.966c5.245 0 10.18.994 14.846 2.966c4.67 1.978 8.734 4.706 12.2 8.16c3.461 3.47 6.221 7.526 8.26 12.187c.143.334.273.674.41 1.006c.13-.332.255-.672.397-1.006a37.39 37.39 0 0 1 8.267-12.188a39.548 39.548 0 0 1 12.194-8.159c4.581-1.972 9.572-2.966 14.948-2.966c5.222 0 10.18.994 14.847 2.966c4.66 1.978 8.723 4.706 12.182 8.16c3.462 3.47 6.227 7.526 8.278 12.187c.152.349.29.707.426 1.062c.146-.355.284-.713.438-1.062c2.027-4.66 4.8-8.714 8.25-12.188c3.476-3.453 7.535-6.183 12.204-8.159c4.667-1.972 9.602-2.966 14.836-2.966c4.096 0 8.028.635 11.767 1.904a42.056 42.056 0 0 1 10.488 5.307v-30.75c0-2.258.785-4.163 2.33-5.716c1.568-1.557 3.467-2.336 5.727-2.336zm-244.738 47.705c-3.113 0-6.017.559-8.7 1.687c-2.682 1.14-5.063 2.728-7.09 4.773c-2.063 2.048-3.647 4.431-4.784 7.114c-1.138 2.682-1.688 5.519-1.688 8.471v8.262h44.512v-8.262c0-2.955-.592-5.79-1.796-8.471c-1.21-2.685-2.789-5.066-4.773-7.114c-1.97-2.045-4.341-3.63-7.102-4.773a22.406 22.406 0 0 0-8.58-1.687zm142.971 0c-3.113 0-6.01.564-8.693 1.693c-2.68 1.14-5.063 2.728-7.102 4.773a21.98 21.98 0 0 0-4.767 7.108c-1.138 2.682-1.694 5.519-1.694 8.471v31.597c0 2.976.597 5.798 1.796 8.483c1.198 2.685 2.789 5.057 4.773 7.102c1.98 2.051 4.347 3.638 7.096 4.773a22.467 22.467 0 0 0 8.591 1.682c3.095 0 6.006-.553 8.682-1.682a22.192 22.192 0 0 0 7.114-4.773a22.126 22.126 0 0 0 4.76-7.102c1.144-2.688 1.694-5.507 1.694-8.483v-31.597c0-2.955-.597-5.79-1.795-8.471c-1.216-2.685-2.795-5.06-4.773-7.108c-1.975-2.045-4.341-3.63-7.108-4.773a22.362 22.362 0 0 0-8.574-1.693zm71.455 0c-2.97 0-5.83.564-8.597 1.693c-2.743 1.14-5.113 2.728-7.097 4.773c-1.978 2.048-3.562 4.425-4.772 7.108a20.77 20.77 0 0 0-1.801 8.471v31.597c0 2.976.561 5.798 1.698 8.483a22.035 22.035 0 0 0 4.785 7.102a21.845 21.845 0 0 0 7.09 4.773c2.683 1.129 5.58 1.682 8.694 1.682a22.37 22.37 0 0 0 8.58-1.682c2.766-1.135 5.129-2.722 7.107-4.773a24.456 24.456 0 0 0 4.773-7.102c1.204-2.688 1.795-5.507 1.795-8.483v-31.597c0-2.955-.556-5.79-1.687-8.471a22.152 22.152 0 0 0-4.773-7.108a22.278 22.278 0 0 0-7.108-4.773c-2.688-1.129-5.58-1.693-8.687-1.693zm71.454 0c-3.113 0-6.005.564-8.693 1.693a22.238 22.238 0 0 0-7.102 4.773a21.98 21.98 0 0 0-4.767 7.108c-1.138 2.682-1.7 5.519-1.7 8.471v31.597c0 2.976.6 5.798 1.802 8.483c1.201 2.685 2.794 5.057 4.778 7.102c1.979 2.051 4.348 3.638 7.091 4.773a22.517 22.517 0 0 0 8.597 1.682c3.101 0 6.005-.553 8.687-1.682a22.232 22.232 0 0 0 7.108-4.773a22.301 22.301 0 0 0 4.773-7.102c1.126-2.688 1.688-5.507 1.688-8.483h-.006v-31.597c0-2.955-.597-5.79-1.796-8.471c-1.216-2.685-2.794-5.06-4.778-7.108c-1.97-2.045-4.342-3.63-7.103-4.773a22.39 22.39 0 0 0-8.58-1.693zm-323.903 16.835l-42.926 57.813h48.88c.047 0 .09.006.137.006a40.65 40.65 0 0 1-3.364-6.165c-2.062-4.672-3.08-9.613-3.08-14.847v-31.597c0-1.766.126-3.502.353-5.21z\\\"/>\",\n      \"width\": 640\n    },\n    \"zotero\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M31.264 64h276.752v54.624L79.072 401.392h228.944V448H11.984v-53.424l229.76-283.968H31.264Z\\\"/>\",\n      \"width\": 320\n    },\n    \"zotero-square\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M48 32C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H48zm68.72 64h230.626v45.52L156.56 377.16h190.785V416H100.654v-44.52L292.12 134.84H116.721V96z\\\"/>\"\n    }\n  },\n  \"suffixes\": {\n    \"\": \"Regular\",\n    \"square\": \"Square\"\n  },\n  \"width\": 448,\n  \"height\": 512\n}\n"
  },
  {
    "path": "modules/blox/data/icons/brands.yaml",
    "content": "icons:\n  github: <svg fill=\"currentColor\" viewBox=\"3 3 18 18\"><path d=\"M12 3C7.0275 3 3 7.12937 3 12.2276C3 16.3109 5.57625 19.7597 9.15374 20.9824C9.60374 21.0631 9.77249 20.7863 9.77249 20.5441C9.77249 20.3249 9.76125 19.5982 9.76125 18.8254C7.5 19.2522 6.915 18.2602 6.735 17.7412C6.63375 17.4759 6.19499 16.6569 5.8125 16.4378C5.4975 16.2647 5.0475 15.838 5.80124 15.8264C6.51 15.8149 7.01625 16.4954 7.18499 16.7723C7.99499 18.1679 9.28875 17.7758 9.80625 17.5335C9.885 16.9337 10.1212 16.53 10.38 16.2993C8.3775 16.0687 6.285 15.2728 6.285 11.7432C6.285 10.7397 6.63375 9.9092 7.20749 9.26326C7.1175 9.03257 6.8025 8.08674 7.2975 6.81794C7.2975 6.81794 8.05125 6.57571 9.77249 7.76377C10.4925 7.55615 11.2575 7.45234 12.0225 7.45234C12.7875 7.45234 13.5525 7.55615 14.2725 7.76377C15.9937 6.56418 16.7475 6.81794 16.7475 6.81794C17.2424 8.08674 16.9275 9.03257 16.8375 9.26326C17.4113 9.9092 17.76 10.7281 17.76 11.7432C17.76 15.2843 15.6563 16.0687 13.6537 16.2993C13.98 16.5877 14.2613 17.1414 14.2613 18.0065C14.2613 19.2407 14.25 20.2326 14.25 20.5441C14.25 20.7863 14.4188 21.0746 14.8688 20.9824C16.6554 20.364 18.2079 19.1866 19.3078 17.6162C20.4077 16.0457 20.9995 14.1611 21 12.2276C21 7.12937 16.9725 3 12 3Z\"></path></svg>\n  instagram: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 15 15\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12.91 12.909c.326-.327.582-.72.749-1.151c.16-.414.27-.886.302-1.578c.032-.693.04-.915.04-2.68c0-1.765-.008-1.987-.04-2.68c-.032-.692-.142-1.164-.302-1.578a3.185 3.185 0 0 0-.75-1.151a3.187 3.187 0 0 0-1.151-.75c-.414-.16-.886-.27-1.578-.302C9.487 1.007 9.265 1 7.5 1c-1.765 0-1.987.007-2.68.04c-.692.03-1.164.14-1.578.301a3.2 3.2 0 0 0-1.151.75a3.2 3.2 0 0 0-.75 1.151c-.16.414-.27.886-.302 1.578C1.007 5.513 1 5.735 1 7.5c0 1.765.007 1.987.04 2.68c.03.692.14 1.164.301 1.578c.164.434.42.826.75 1.151c.325.33.718.586 1.151.75c.414.16.886.27 1.578.302c.693.031.915.039 2.68.039c1.765 0 1.987-.008 2.68-.04c.692-.03 1.164-.14 1.578-.301a3.323 3.323 0 0 0 1.151-.75ZM2 6.735v1.53c-.002.821-.002 1.034.02 1.5c.026.586.058 1.016.156 1.34c.094.312.199.63.543 1.012c.344.383.675.556 1.097.684c.423.127.954.154 1.415.175c.522.024.73.024 1.826.024H8.24c.842.001 1.054.002 1.526-.02c.585-.027 1.015-.059 1.34-.156c.311-.094.629-.2 1.011-.543c.383-.344.556-.676.684-1.098c.127-.422.155-.953.176-1.414C13 9.247 13 9.04 13 7.947v-.89c0-1.096 0-1.303-.023-1.826c-.021-.461-.049-.992-.176-1.414c-.127-.423-.3-.754-.684-1.098c-.383-.344-.7-.449-1.011-.543c-.325-.097-.755-.13-1.34-.156A27.29 27.29 0 0 0 8.24 2H7.057c-1.096 0-1.304 0-1.826.023c-.461.021-.992.049-1.415.176c-.422.128-.753.301-1.097.684c-.344.383-.45.7-.543 1.012c-.098.324-.13.754-.156 1.34c-.022.466-.022.679-.02 1.5ZM7.5 5.25a2.25 2.25 0 1 0 0 4.5a2.25 2.25 0 0 0 0-4.5ZM4.25 7.5a3.25 3.25 0 1 1 6.5 0a3.25 3.25 0 0 1-6.5 0Zm6.72-2.72a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5Z\" clip-rule=\"evenodd\"/></svg>\n  facebook: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z\"/></svg>\n  discord: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z\"></path></svg>\n  twitter: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z\"></path></svg>\n  bluesky: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 568 501\"> <path fill=\"currentColor\" d=\"M123.121 33.6637C188.241 82.5526 258.281 181.681 284 234.873C309.719 181.681 379.759 82.5526 444.879 33.6637C491.866 -1.61183 568 -28.9064 568 57.9464C568 75.2916 558.055 203.659 552.222 224.501C531.947 296.954 458.067 315.434 392.347 304.249C507.222 323.8 536.444 388.56 473.333 453.32C353.473 576.312 301.061 422.461 287.631 383.039C285.169 375.812 284.017 372.431 284 375.306C283.983 372.431 282.831 375.812 280.369 383.039C266.939 422.461 214.527 576.312 94.6667 453.32C31.5556 388.56 60.7778 323.8 175.653 304.249C109.933 315.434 36.0535 296.954 15.7778 224.501C9.94525 203.659 0 75.2916 0 57.9464C0 -28.9064 76.1345 -1.61183 123.121 33.6637Z\"/></svg>\n  mastodon: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M23.268 5.313c-.35-2.578-2.617-4.61-5.304-5.004C17.51.242 15.792 0 11.813 0h-.03c-3.98 0-4.835.242-5.288.309C3.882.692 1.496 2.518.917 5.127.64 6.412.61 7.837.661 9.143c.074 1.874.088 3.745.26 5.611.118 1.24.325 2.47.62 3.68.55 2.237 2.777 4.098 4.96 4.857 2.336.792 4.849.923 7.256.38.265-.061.527-.132.786-.213.585-.184 1.27-.39 1.774-.753a.057.057 0 0 0 .023-.043v-1.809a.052.052 0 0 0-.02-.041.053.053 0 0 0-.046-.01 20.282 20.282 0 0 1-4.709.545c-2.73 0-3.463-1.284-3.674-1.818a5.593 5.593 0 0 1-.319-1.433.053.053 0 0 1 .066-.054c1.517.363 3.072.546 4.632.546.376 0 .75 0 1.125-.01 1.57-.044 3.224-.124 4.768-.422.038-.008.077-.015.11-.024 2.435-.464 4.753-1.92 4.989-5.604.008-.145.03-1.52.03-1.67.002-.512.167-3.63-.024-5.545zm-3.748 9.195h-2.561V8.29c0-1.309-.55-1.976-1.67-1.976-1.23 0-1.846.79-1.846 2.35v3.403h-2.546V8.663c0-1.56-.617-2.35-1.848-2.35-1.112 0-1.668.668-1.67 1.977v6.218H4.822V8.102c0-1.31.337-2.35 1.011-3.12.696-.77 1.608-1.164 2.74-1.164 1.311 0 2.302.5 2.962 1.498l.638 1.06.638-1.06c.66-.999 1.65-1.498 2.96-1.498 1.13 0 2.043.395 2.74 1.164.675.77 1.012 1.81 1.012 3.12z\"></path></svg>\n  youtube: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path fill=\"currentColor\" d=\"M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104l.022.26l.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105l-.009.104c-.05.572-.124 1.14-.235 1.558a2.007 2.007 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006l-.087-.004l-.171-.007l-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.007 2.007 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31.4 31.4 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103l.003-.052l.008-.104l.022-.26l.01-.104c.048-.519.119-1.023.22-1.402a2.007 2.007 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007l.172-.006l.086-.003l.171-.007A99.788 99.788 0 0 1 7.858 2h.193zM6.4 5.209v4.818l4.157-2.408L6.4 5.209z\"/></svg>\n  x: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"currentColor\" d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"/></svg>\n  linkedin: <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1em\" viewBox=\"0 0 448 512\"><path fill=\"currentColor\" d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"/></svg>\n  cv: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path fill=\"currentColor\" style=\"stroke-width:.07717\" d=\"M249.18 328.324c-9.788 15.384-19.179 30.434-40.222 45.055-11.256 7.89-37.164 23.306-73.99 23.306C64.709 396.685 8 345.605 8 255.801c0-78.486 53.345-140.486 128.466-140.486 30.434 0 57.474 10.521 77.387 26.304 18.414 14.65 27.038 29.304 34.563 42.456l-52.58 26.273c-3.762-8.626-8.29-17.649-19.913-27.406-12.784-10.155-25.54-13.152-36.46-13.152-42.821 0-65.364 39.825-65.364 84.145 0 58.238 29.7 87.143 65.364 87.143 34.563 0 48.48-24.042 57.474-39.426l52.243 26.673zm184.194-204.75H504l-92.037 265.22h-67.597l-90.904-265.22h70.625l54.843 188.6z\"/></svg>\n  telegram: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"M236.88 26.19a9 9 0 0 0-9.16-1.57L25.06 103.93a14.22 14.22 0 0 0 2.43 27.21L80 141.45V200a15.92 15.92 0 0 0 10 14.83 15.91 15.91 0 0 0 17.51-3.73l25.32-26.26L173 220a15.88 15.88 0 0 0 10.51 4 16.3 16.3 0 0 0 5-.79 15.85 15.85 0 0 0 10.67-11.63L239.77 35a9 9 0 0 0-2.89-8.81Zm-61.14 36-89.59 64.16-49.6-9.73ZM96 200v-47.48l24.79 21.74Zm87.53 8-82.68-72.5 119-85.29Z\"/></svg>\n  whatsapp: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"m187.58 144.84-32-16a8 8 0 0 0-8 .5l-14.69 9.8a40.55 40.55 0 0 1-16-16l9.8-14.69a8 8 0 0 0 .5-8l-16-32A8 8 0 0 0 104 64a40 40 0 0 0-40 40 88.1 88.1 0 0 0 88 88 40 40 0 0 0 40-40 8 8 0 0 0-4.42-7.16ZM152 176a72.08 72.08 0 0 1-72-72 24 24 0 0 1 19.29-23.54l11.48 23L101 118a8 8 0 0 0-.73 7.51 56.47 56.47 0 0 0 30.15 30.15A8 8 0 0 0 138 155l14.61-9.74 23 11.48A24 24 0 0 1 152 176ZM128 24a104 104 0 0 0-91.82 152.88l-11.35 34.05a16 16 0 0 0 20.24 20.24l34.05-11.35A104 104 0 1 0 128 24Zm0 192a87.87 87.87 0 0 1-44.06-11.81 8 8 0 0 0-6.54-.67L40 216l12.47-37.4a8 8 0 0 0-.66-6.54A88 88 0 1 1 128 216Z\"/></svg>\n  weixin: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"M231.79 187.33a80 80 0 0 0-62.21-114.74 80 80 0 1 0-145.37 66.74l-7.66 26.82A14 14 0 0 0 30 184a13.65 13.65 0 0 0 3.84-.54l26.82-7.66a78.86 78.86 0 0 0 25.77 7.63 80 80 0 0 0 108.89 40.37l26.82 7.66a14 14 0 0 0 17.3-17.3ZM65.36 160.21a8 8 0 0 0-6-.68l-26.41 7.55 7.55-26.41a8 8 0 0 0-.68-6 64 64 0 0 1 111.86-62.24A80.12 80.12 0 0 0 80 152a79.31 79.31 0 0 0 1.31 14.3 63.34 63.34 0 0 1-15.95-6.09Zm150.17 28.46 7.55 26.41-26.41-7.55a8 8 0 0 0-6 .68 63.95 63.95 0 1 1 25.57-25.57 8 8 0 0 0-.71 6.03ZM144 140a12 12 0 1 1-12-12 12 12 0 0 1 12 12Zm56 0a12 12 0 1 1-12-12 12 12 0 0 1 12 12Z\"/></svg>\n  arxiv: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><g style=\"stroke-width:.645161\"><path fill=\"currentColor\" d=\"M119.65 351.996a14.333 14.333 0 0 1-13.502-8.676c-2.196-5.27-.62-8.967 4.197-15.865 7.055-10.38 78.824-96.562 78.824-96.562l-15.882-14.864c-13.381-13.378-13.956-31.333-1.51-43.775l18.492-17.613-51.598-63.377c-4.005-4.268-6.485-11.756-4.248-17.131a14.643 14.643 0 0 1 13.684-9.07 13.05 13.05 0 0 1 9.838 4.86l61.369 57.057 94.576-90.07A17.51 17.51 0 0 1 325.773 32c1.604.004 3.198.245 4.732.715a17.844 17.844 0 0 1 11.871 12.252 16.52 16.52 0 0 1-4.181 15.283l-83.086 100.012 14.879 13.834c11.096 10.003 11.154 27.39.127 37.469l-16.295 15.63 56.256 66.444.074.086.066.09c5.028 6.531 7.432 11.561 4.84 17.94a23.335 23.335 0 0 1-15.256 11.85c-.676.092-1.36.137-2.043.138l-.004-.012a18.402 18.402 0 0 1-11.775-5.24l-.13-.108-.124-.111-65.207-59.127-89.896 86.24s-5.334 6.478-10.971 6.611zm178.104-33.041a11.33 11.33 0 0 0 1.432-.096 18.907 18.907 0 0 0 11.431-8.91c1.45-3.562 1.003-6.457-4.197-13.215l-56.059-66.218-26.375 25.302 64.955 58.906a14.045 14.045 0 0 0 8.813 4.217v.014zm-105.318-91.553 142.01-170.158c2.787-3.49 4.53-6.98 3.342-10.912a13.062 13.062 0 0 0-8.686-9.057 11.366 11.366 0 0 0-3.336-.506 12.77 12.77 0 0 0-8.576 3.588L175.157 175.642c-11.172 11.172-9.482 26.02 1.393 36.895z\" style=\"stroke-width:.416233\" transform=\"matrix(1.55 0 0 -1.55 -123.2 553.6)\"/></g></svg>\n  google-scholar: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 384 512\"><path fill=\"currentColor\" d=\"M343.759 106.662V79.43L363.524 64h-213.89L20.476 176.274h85.656a82.339 82.339 0 0 0-.219 6.225c0 20.845 7.22 38.087 21.672 51.861 14.453 13.797 32.252 20.648 53.327 20.648 4.923 0 9.75-.368 14.438-1.024-2.907 6.5-4.374 12.523-4.374 18.142 0 9.875 4.499 20.43 13.467 31.642-39.234 2.67-68.061 9.732-86.437 21.163-10.531 6.5-19 14.704-25.39 24.531-6.391 9.9-9.578 20.515-9.578 31.962 0 9.648 2.062 18.336 6.219 26.062 4.156 7.726 9.578 14.07 16.312 18.984 6.718 4.968 14.469 9.101 23.219 12.469 8.734 3.344 17.406 5.718 26.061 7.062A167.052 167.052 0 0 0 180.555 448c13.469 0 26.953-1.734 40.547-5.187 13.562-3.485 26.28-8.642 38.171-15.493 11.86-6.805 21.515-16.086 28.922-27.718 7.39-11.68 11.094-24.805 11.094-39.336 0-11.016-2.25-21.039-6.75-30.14-4.468-9.073-9.938-16.542-16.452-22.345-6.501-5.813-13-11.155-19.516-15.968-6.5-4.845-12-9.75-16.468-14.813-4.485-5.046-6.735-10.054-6.735-14.984 0-4.921 1.734-9.672 5.216-14.265 3.455-4.61 7.674-9.048 12.61-13.306 4.937-4.25 9.875-8.968 14.796-14.133 4.922-5.147 9.141-11.827 12.61-20.008 3.485-8.18 5.203-17.445 5.203-27.757 0-13.453-2.547-24.46-7.547-33.314-.594-1.022-1.218-1.803-1.875-3.022l56.907-46.672v17.119c-7.393.93-6.624 5.345-6.624 10.635V245.96c0 5.958 4.875 10.834 10.834 10.834h3.989c5.958 0 10.833-4.875 10.833-10.834V117.293c0-5.277.778-9.688-6.561-10.63zm-107.36 222.48c1.14.75 3.704 2.78 7.718 6.038 4.05 3.243 6.797 5.695 8.266 7.414a443.553 443.553 0 0 1 6.376 7.547c2.813 3.375 4.718 6.304 5.718 8.734 1 2.477 2.016 5.461 3.047 8.946a38.27 38.27 0 0 1 1.485 10.562c0 17.048-6.564 29.68-19.656 37.859-13.125 8.18-28.767 12.274-46.938 12.274-9.187 0-18.203-1.093-27.063-3.196-8.843-2.116-17.311-5.336-25.39-9.601-8.078-4.258-14.577-10.204-19.5-17.797-4.938-7.64-7.407-16.415-7.407-26.25 0-10.32 2.797-19.29 8.422-26.906 5.594-7.625 12.938-13.391 22.032-17.315 9.063-3.946 18.25-6.742 27.562-8.398a157.865 157.865 0 0 1 28.438-2.555c4.47 0 7.936.25 10.405.696.455.219 3.032 2.07 7.735 5.563 4.704 3.462 7.625 5.595 8.75 6.384zm-3.359-100.579c-7.406 8.86-17.734 13.288-30.953 13.288-11.86 0-22.298-4.764-31.266-14.312-9-9.523-15.422-20.328-19.344-32.43-3.937-12.109-5.906-23.984-5.906-35.648 0-13.694 3.596-25.352 10.781-34.976 7.187-9.65 17.5-14.485 30.938-14.485 11.875 0 22.374 5.038 31.437 15.157 9.094 10.085 15.61 21.413 19.517 33.968 3.922 12.54 5.873 24.53 5.873 35.984 0 13.446-3.702 24.61-11.076 33.454z\" style=\"stroke-width:.0647871\"/></svg>\n  orcid: <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 512 512\"><path d=\"M336.62 194.538c-7.13-3.328-13.866-5.56-20.253-6.614-6.365-1.095-16.574-1.612-30.71-1.612h-36.704v152.747h37.634c14.673 0 26.081-1.013 34.224-3.017 8.142-2.004 14.921-4.526 20.356-7.626a69.448 69.448 0 0 0 14.942-11.388c14.488-14.714 21.742-33.273 21.742-55.717 0-22.052-7.44-40.052-22.341-53.982-5.498-5.166-11.822-9.444-18.89-12.793zM256 8C119.022 8 8 119.042 8 256s111.022 248 248 248 248-111.042 248-248S392.978 8 256 8Zm-82.336 357.513h-29.389V160.148h29.389zM158.95 138.696c-11.14 0-20.213-9.01-20.213-20.212 0-11.118 9.052-20.191 20.213-20.191 11.18 0 20.232 9.052 20.232 20.191a20.194 20.194 0 0 1-20.232 20.212zm241.386 163.597c-5.29 12.545-12.834 23.581-22.65 33.088-9.982 9.837-21.597 17.194-34.844 22.196-7.75 3.017-14.839 5.063-21.307 6.117-6.49 1.013-18.828 1.509-37.076 1.509h-64.956V160.148h69.233c27.962 0 50.034 4.154 66.32 12.545 16.265 8.37 29.181 20.728 38.792 36.972 9.61 16.265 14.425 34.018 14.425 53.196.023 13.765-2.666 26.908-7.936 39.432z\" style=\"stroke-width:.07717\"/></svg>\n  reddit: <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 28.901 28.901\"><path d=\"M28.901,13.375v0.183c0,0.66-0.2,1.261-0.598,1.803c-0.374,0.519-0.842,0.915-1.405,1.191 c0.021,0.119,0.039,0.248,0.051,0.387c0.013,0.14,0.021,0.278,0.021,0.425c0,1.431-0.481,2.723-1.443,3.879 c-0.844,1.034-1.865,1.866-3.068,2.498c-1.204,0.631-2.459,1.104-3.77,1.415c-0.71,0.146-1.416,0.262-2.123,0.353 c-0.702,0.091-1.408,0.137-2.117,0.137c-1.082,0-2.147-0.095-3.194-0.282c-1.044-0.187-2.061-0.465-3.047-0.838 c-1.034-0.397-2.015-0.909-2.94-1.533c-0.929-0.625-1.697-1.407-2.31-2.347c-0.325-0.491-0.571-1.021-0.74-1.586 c-0.169-0.566-0.254-1.13-0.254-1.695c0-0.121,0.008-0.249,0.019-0.389c0.014-0.138,0.028-0.267,0.055-0.387 c-0.59-0.325-1.048-0.725-1.371-1.191C0.245,14.831,0.021,14.24,0,13.629c0-0.445,0.097-0.868,0.297-1.273 c0.199-0.403,0.458-0.767,0.783-1.091c0.348-0.324,0.73-0.577,1.147-0.757c0.414-0.182,0.868-0.271,1.359-0.271h0.037h0.289 c0.494,0,0.962,0.073,1.405,0.217c0.423,0.144,0.807,0.343,1.157,0.596c0.046-0.024,0.101-0.049,0.162-0.072 c0.059-0.024,0.125-0.049,0.197-0.074c1.037-0.564,2.143-0.975,3.328-1.235c1.186-0.257,2.367-0.43,3.545-0.512 c0-0.544,0.049-1.089,0.146-1.642c0.095-0.553,0.294-1.078,0.595-1.569c0.24-0.423,0.553-0.78,0.939-1.076 c0.384-0.293,0.821-0.501,1.315-0.621h0.036c0.374-0.072,0.738-0.107,1.101-0.107c0.964,0,1.938,0.196,2.923,0.595 c0.397-0.587,0.947-1.024,1.662-1.299h0.033c0.445-0.123,0.868-0.184,1.265-0.184c0.494,0,0.927,0.085,1.298,0.254h0.038 c0.587,0.216,1.081,0.583,1.479,1.1c0.396,0.542,0.591,1.126,0.579,1.749c0,0.146-0.014,0.254-0.036,0.327 c-0.049,0.42-0.169,0.795-0.362,1.127c-0.193,0.33-0.439,0.622-0.74,0.873c-0.663,0.543-1.413,0.812-2.255,0.812h-0.413 c-0.844-0.07-1.552-0.401-2.131-0.989c-0.276-0.277-0.498-0.588-0.665-0.93c-0.169-0.344-0.254-0.726-0.254-1.146v-0.11 c-0.396-0.144-0.793-0.273-1.193-0.388c-0.395-0.112-0.806-0.172-1.225-0.172h-0.325c-0.686,0.071-1.167,0.381-1.443,0.922 c-0.216,0.371-0.358,0.774-0.423,1.208c-0.066,0.434-0.103,0.866-0.103,1.299c1.184,0.072,2.339,0.246,3.476,0.523 c1.137,0.274,2.225,0.685,3.255,1.227l0.037,0.036c0.047,0,0.098,0.023,0.145,0.072c0.194-0.146,0.355-0.247,0.486-0.306 c0.611-0.398,1.316-0.59,2.112-0.579c0.301,0,0.62,0.036,0.956,0.109h0.036c0.731,0.193,1.377,0.57,1.93,1.135 C28.52,11.961,28.829,12.619,28.901,13.375z M4.885,12.076c-0.169-0.047-0.327-0.095-0.476-0.144 c-0.15-0.049-0.317-0.071-0.496-0.071H3.767H3.733c-0.445,0.048-0.866,0.22-1.262,0.523c-0.352,0.322-0.54,0.703-0.579,1.137v0.108 c0,0.3,0.085,0.546,0.254,0.74c0.118,0.216,0.259,0.376,0.415,0.486c0.274-0.541,0.609-1.041,0.998-1.499 C3.951,12.9,4.395,12.474,4.885,12.076z M25.129,17.4c0-0.494-0.087-0.968-0.262-1.427c-0.177-0.456-0.406-0.889-0.693-1.298 c-0.618-0.796-1.364-1.449-2.257-1.969c-0.891-0.515-1.828-0.911-2.814-1.189l-0.578-0.145l-0.559-0.143 c-0.563-0.122-1.145-0.212-1.741-0.272c-0.594-0.06-1.175-0.091-1.738-0.091c-1.626,0-3.178,0.219-4.656,0.65 c-0.988,0.278-1.92,0.68-2.807,1.209c-0.884,0.529-1.639,1.189-2.263,1.983c-0.639,0.796-0.956,1.703-0.956,2.726 c0,0.397,0.047,0.739,0.144,1.029c0.219,0.758,0.615,1.459,1.193,2.11c0.566,0.565,1.211,1.081,1.945,1.55l0.272,0.127l0.254,0.146 c1.034,0.541,2.136,0.936,3.309,1.181c1.172,0.247,2.36,0.37,3.564,0.37h0.612c0.201,0,0.409-0.01,0.612-0.037 c1.203-0.097,2.383-0.317,3.536-0.667c1.154-0.348,2.225-0.854,3.211-1.515c0.663-0.469,1.203-0.986,1.623-1.552 c0.495-0.613,0.819-1.269,0.976-1.967c0.047-0.12,0.072-0.247,0.072-0.378L25.129,17.4L25.129,17.4z M9.415,17.579 c0.169,0.071,0.354,0.107,0.56,0.107c0.468,0,0.891-0.156,1.263-0.47c0.398-0.323,0.596-0.721,0.596-1.188V15.99v-0.072 c0-0.443-0.187-0.822-0.559-1.135c-0.396-0.325-0.832-0.488-1.3-0.488c-0.145,0-0.267,0.011-0.359,0.037 c-0.325,0.048-0.612,0.176-0.857,0.388c-0.249,0.21-0.418,0.466-0.516,0.768c-0.049,0.07-0.073,0.149-0.073,0.233v0.236 c0,0.396,0.109,0.744,0.327,1.046C8.736,17.292,9.041,17.483,9.415,17.579z M19.518,19.764c-0.189-0.098-0.353-0.146-0.486-0.146 c-0.143,0-0.297,0.036-0.451,0.11c-1.31,0.733-2.737,1.105-4.276,1.117c-1.154,0-2.225-0.222-3.211-0.667 c-0.143-0.049-0.319-0.162-0.522-0.343c-0.049-0.024-0.102-0.046-0.161-0.071c-0.061-0.024-0.123-0.049-0.183-0.071 c-0.143-0.049-0.252-0.075-0.325-0.075c-0.071,0-0.181,0.026-0.324,0.075h-0.04c-0.144,0.047-0.28,0.153-0.413,0.323 c-0.071,0.12-0.107,0.271-0.107,0.451c0,0.144,0.036,0.294,0.107,0.449c0.072,0.122,0.182,0.218,0.326,0.289 c1.383,0.867,2.896,1.301,4.545,1.301c0.085,0,0.177,0,0.269,0c0.794,0,1.565-0.076,2.31-0.226c0.746-0.15,1.47-0.389,2.167-0.712 c0.095-0.049,0.197-0.098,0.308-0.146c0.107-0.047,0.222-0.107,0.34-0.179c0.123-0.05,0.226-0.121,0.311-0.217 c0.118-0.119,0.189-0.247,0.215-0.381c0.025-0.047,0.038-0.106,0.038-0.179c0-0.071-0.025-0.181-0.076-0.325 C19.805,19.96,19.685,19.834,19.518,19.764z M20.652,15.449c0.075,0.193,0.11,0.374,0.11,0.541c0,0.373-0.11,0.711-0.326,1.013 c-0.299,0.323-0.606,0.516-0.919,0.576h-0.053c-0.193,0.071-0.362,0.107-0.505,0.107c-0.449,0-0.843-0.131-1.191-0.395 c-0.35-0.218-0.561-0.536-0.635-0.958v-0.036c-0.021-0.071-0.033-0.176-0.033-0.308c0-0.372,0.115-0.691,0.343-0.955 c0.216-0.301,0.5-0.51,0.848-0.633c0.216-0.07,0.428-0.107,0.631-0.107c0.374,0,0.728,0.098,1.065,0.29 C20.337,14.814,20.559,15.101,20.652,15.449z M22.062,6.321v0.071c0,0.398,0.156,0.729,0.468,0.994 C22.859,7.661,23.217,7.8,23.613,7.8h0.108c0.398,0,0.752-0.139,1.065-0.414c0.299-0.277,0.474-0.608,0.522-0.994V6.321 c0-0.421-0.173-0.769-0.522-1.046c-0.301-0.302-0.667-0.445-1.102-0.432c-0.167,0-0.306,0.01-0.415,0.035 c-0.349,0.071-0.63,0.241-0.845,0.504C22.179,5.638,22.062,5.947,22.062,6.321z M27.041,13.558c0-0.218-0.063-0.453-0.181-0.705 c-0.169-0.301-0.428-0.547-0.776-0.741c-0.349-0.167-0.704-0.251-1.065-0.251c-0.349,0-0.671,0.071-0.971,0.216 c0.492,0.397,0.938,0.823,1.332,1.28c0.398,0.458,0.729,0.968,0.994,1.535c0.169-0.146,0.317-0.32,0.452-0.522 C26.97,14.126,27.041,13.857,27.041,13.558z\"></path></svg>\n\n  # AI/ML Platforms\n  huggingface: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 475 439\"><path d=\"M235.793 396.126a187.281 187.281 0 00187.285-187.284A187.283 187.283 0 00235.793 21.558 187.287 187.287 0 0048.509 208.842a187.286 187.286 0 00187.284 187.284z\" fill=\"#FFD21E\"/><path d=\"M423.078 208.842A187.283 187.283 0 00235.793 21.558 187.283 187.283 0 0048.509 208.842a187.283 187.283 0 00319.714 132.43 187.284 187.284 0 0054.855-132.43zm-396.127 0a208.842 208.842 0 11417.685 0 208.842 208.842 0 01-417.685 0z\" fill=\"#FF9D0B\"/><path d=\"M296.641 157.912c6.898 2.371 9.593 16.491 16.545 12.827a26.946 26.946 0 008.24-40.841 26.952 26.952 0 00-28.632-8.767 26.942 26.942 0 00-19.055 23.099 26.943 26.943 0 003.014 15.352c3.288 6.198 13.744-3.88 19.941-1.724l-.053.054zm-126.923 0c-6.898 2.371-9.647 16.491-16.545 12.827a26.946 26.946 0 01-8.24-40.841 26.952 26.952 0 0128.632-8.767 26.944 26.944 0 0116.041 38.451c-3.288 6.198-13.797-3.88-19.941-1.724l.053.054z\" fill=\"#3A3B45\"/><path d=\"M234.446 287.205c52.979 0 70.063-47.212 70.063-71.464 0-12.612-8.461-8.624-22.043-1.941-12.557 6.198-29.426 14.768-47.966 14.768-38.75 0-70.063-37.08-70.063-12.827 0 24.252 17.031 71.464 70.063 71.464h-.054z\" fill=\"#FF323D\"/></svg>\n\n  # Development\n  hugo: <svg viewBox=\"0 0 370 391\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-rule=\"evenodd\" fill-rule=\"evenodd\"><path d=\"m207.5 22.4 114.4 66.6c13.5 7.9 21.9 22.4 21.9 38v136.4c0 17.3-9.3 33.3-24.5 41.8l-113.5 63.9a49.06 49.06 0 0 1 -48.5-.2l-104.5-60.1c-16.4-9.5-26.6-27-26.6-45.9v-129.5c0-19.1 9.9-36.8 26.1-46.8l102.8-63.5c16-9.9 36.2-10.1 52.4-.7z\" fill=\"#ff4088\" stroke=\"#c9177e\" stroke-width=\"27\" /><path d=\"m105.6 298.2v-207.2h43.4v75.5h71.9v-75.5h43.5v207.2h-43.5v-90.6h-71.9v90.6z\" fill=\"#fff\" /></g></svg>\n"
  },
  {
    "path": "modules/blox/data/icons/devicon.json",
    "content": "{\n\t\"prefix\": \"devicon\",\n\t\"info\": {\n\t\t\"name\": \"Devicon\",\n\t\t\"total\": 764,\n\t\t\"author\": {\n\t\t\t\"name\": \"konpa\",\n\t\t\t\"url\": \"https://github.com/devicons/devicon/tree/master\"\n\t\t},\n\t\t\"license\": {\n\t\t\t\"title\": \"MIT\",\n\t\t\t\"spdx\": \"MIT\",\n\t\t\t\"url\": \"https://github.com/devicons/devicon/blob/master/LICENSE\"\n\t\t},\n\t\t\"samples\": [\n\t\t\t\"windows8\",\n\t\t\t\"tensorflow\",\n\t\t\t\"logstash\"\n\t\t],\n\t\t\"height\": 32,\n\t\t\"displayHeight\": 16,\n\t\t\"category\": \"Brands / Social\",\n\t\t\"palette\": true\n\t},\n\t\"lastModified\": 1704871196,\n\t\"icons\": {\n\t\t\"aarch64\": {\n\t\t\t\"body\": \"<path fill=\\\"#1b3888\\\" d=\\\"M70.089 26.264c-11.411-6.789-25.108-8.22-37.713-4.746C17.432 25.636 5.38 37.116.079 51.603q-.024.066-.051.002q-.009-.025-.021-.048q-.011-.024-.005-.05q5.007-19.766 21.5-31.155c18.216-12.576 42.79-12.044 60.643.992a.114.114 0 0 1-.023.2l-11.654 4.748a.428.426-40.7 0 1-.38-.028zm1.236.714a.03.03 0 0 1 .004-.053l11.754-4.79a.159.157 53.2 0 1 .157.022q15.7 12.43 19.523 31.957c1.583 8.085.993 16.763-1.342 24.58c-6.383 21.37-26.086 36.61-48.391 37.292q-1.702.053-.017-.197q15.939-2.362 27.578-14.218c9.91-10.092 14.767-24.64 13.257-38.754q-1.105-10.342-6.506-19.415q-5.976-10.043-16.017-16.424\\\"/><path fill=\\\"#45a945\\\" d=\\\"M110.985 10.209h.22Q126.873 27.613 128 51.114v4.793q-1.1 23.145-16.098 40.192c-12.77 14.514-31.675 22.415-51.067 21.64q-1.181-.049-2.343-.21q-.007-.002 0-.002q21.11-.9 36.825-14.431c12.675-10.914 20.095-27.247 20.07-44.035c-.026-16.352-6.81-31.694-18.68-42.812a.131.131 0 0 1 .04-.218z\\\"/><g fill=\\\"#221e1f\\\"><path d=\\\"M45.531 33.66q1.107.914 1.543 1.642q1.4 2.34 2.937 4.6q.078.112-.06.112l-2.089-.01a.21.207-14.8 0 1-.176-.102c-.965-1.602-1.962-3.38-3.182-4.79q-1.033-1.195-2.644-.953q-.076.012-.076.089V39.9q0 .108-.106.108H40.01q-.19 0-.188-.188l.074-13.263q0-.098.097-.098c1.672-.01 3.817-.203 5.233.324c2.958 1.1 3.256 5.371.322 6.743q-.114.053-.017.133zm-3.715-5.45l-.009 4.065a.049.049 0 0 0 .049.048l1.573.005a2.117 1.86.1 0 0 2.121-1.857v-.44a2.117 1.86.1 0 0-2.113-1.866l-1.573-.002a.049.049 0 0 0-.048.047\\\"/><path d=\\\"M53.476 31.047c-2.095 2.364-1.983 5.86.756 7.693c1.848 1.239 4.272 1.321 6.35.68a.095.097-.3 0 1 .12.12l-.557 1.84q-.034.112-.15.133q-3.504.635-6.42-.959c-4.02-2.197-4.642-7.314-1.737-10.665c3.148-3.631 8.288-2.59 11.455.394q.091.086.053.205l-.548 1.795q-.049.157-.155.032c-2.314-2.695-6.533-4.238-9.167-1.268M34.074 37.32l-5.242 1.522a.08.08 0 0 0-.057.067l-.47 4.19a.08.08 0 0 1-.06.068l-1.756.495a.08.08 0 0 1-.102-.087l1.636-14.542a.08.08 0 0 1 .06-.067l1.225-.343a.08.08 0 0 1 .085.025l9.391 11.337a.08.08 0 0 1-.038.127l-1.76.527a.08.08 0 0 1-.084-.025l-2.743-3.27a.08.08 0 0 0-.085-.024m-5.068-.492a.064.064 0 0 0 .082.068l3.652-1.09a.064.064 0 0 0 .032-.1l-3.125-3.808a.064.064 0 0 0-.112.034zm44.053 2.681l2.456-5.12a.102.102 0 0 1 .135-.048l1.596.747a.102.102 0 0 1 .05.138L71.51 47.308a.102.102 0 0 1-.135.048l-1.594-.755a.102.102 0 0 1-.049-.136l2.454-5.134a.102.102 0 0 0-.047-.135l-6.425-3.064a.102.102 0 0 0-.136.047l-2.443 5.132a.102.102 0 0 1-.135.048l-1.6-.755a.102.102 0 0 1-.05-.138l5.787-12.084a.102.102 0 0 1 .135-.047l1.598.765a.102.102 0 0 1 .047.135l-2.466 5.126a.102.102 0 0 0 .048.135l6.423 3.06a.102.102 0 0 0 .136-.047zM20.64 42.112l-4.792 2.596a.083.083 0 0 0-.042.08l.428 4.196a.083.083 0 0 1-.043.08l-1.602.85a.083.083 0 0 1-.121-.066L12.965 35.29a.083.083 0 0 1 .044-.08l1.122-.584a.083.083 0 0 1 .09.006l11.6 9.084a.083.083 0 0 1-.01.138l-1.611.872a.083.083 0 0 1-.089-.006l-3.383-2.6a.083.083 0 0 0-.089-.007zm-5.048.564a.066.066 0 0 0 .095.048l3.339-1.806a.066.066 0 0 0 .01-.11l-3.903-3.048a.066.066 0 0 0-.104.06zm2.486 33.819c9.624-5.043 20.785.733 20.857 11.991c.042 6.849-4.88 13.113-11.718 14.364q-1.96.36-4.217.142c-6.02-.578-10.621-4.243-12.677-9.895Q9.28 90.233 9.17 87.425c-.548-13.953 7.825-26.289 19.223-33.656q.082-.055.142.023l4.054 5.147a.097.097 0 0 1-.026.144c-6.402 3.844-12.28 10.102-14.6 17.315q-.062.188.114.097zm13.851 11.79c-.216-5-4.854-7.583-9.467-6.993q-3.28.422-5.976 2.481q-.08.064-.104.161c-1.209 5 .559 11.005 6.15 12.343q1.725.415 3.431.055c4.012-.85 6.134-4.129 5.966-8.047m37.535-1.512v15.599a.087.087 0 0 1-.087.086h-6.76a.087.087 0 0 1-.086-.086V86.773a.087.087 0 0 0-.087-.087H42.188a.087.087 0 0 1-.086-.086l-.003-3.112a.087.087 0 0 1 .02-.055l24.318-29.687a.087.087 0 0 1 .065-.032h2.875a.087.087 0 0 1 .087.087v26.5a.087.087 0 0 0 .087.087h5.015a.087.087 0 0 1 .087.087l-.002 6.125a.087.087 0 0 1-.087.086h-5.013a.087.087 0 0 0-.087.087m-6.933-19.93a.064.064 0 0 0-.112-.04L51.554 80.285a.064.064 0 0 0 .05.103h10.863a.064.064 0 0 0 .064-.063z\\\"/></g><path fill=\\\"#0581ab\\\" d=\\\"M114.095 52.37c3.836 33.88-22.178 63.495-56.162 64.247q-.049 0-.01-.03l.044-.036q.02-.02.05-.025q18.857-2.672 31.817-16.14c16.212-16.85 19.282-42.72 7.753-63.007q-5.162-9.086-13.329-15.573a.093.093 0 0 1 .023-.159l11.593-4.72a.246.246 0 0 1 .26.048c9.92 9.368 16.418 21.78 17.961 35.394z\\\"/>\"\n\t\t},\n\t\t\"adonisjs\": {\n\t\t\t\"body\": \"<path fill=\\\"#5A45FF\\\" fill-rule=\\\"evenodd\\\" d=\\\"M0 64c0 51.617 12.383 64 64 64c51.617 0 64-12.383 64-64c0-51.617-12.383-64-64-64C12.383 0 0 12.383 0 64m25.808 13.295l20.075-45.621C49.27 23.984 55.788 19.813 64 19.813c8.212 0 14.729 4.17 18.118 11.86l20.074 45.622c.912 2.216 1.694 5.084 1.694 7.56c0 11.34-7.951 19.291-19.292 19.291c-3.862 0-6.93-.985-10.035-1.983c-3.182-1.022-6.403-2.057-10.559-2.057c-4.108 0-7.408 1.044-10.653 2.071c-3.138.993-6.225 1.969-9.941 1.969c-11.34 0-19.292-7.95-19.292-19.29c0-2.477.783-5.345 1.695-7.561zM64 39.625l-19.813 44.84c5.866-2.738 12.644-4.041 19.813-4.041c6.909 0 13.947 1.303 19.552 4.04z\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"adonisjs-wordmark\": {\n\t\t\t\"body\": \"<path fill-rule=\\\"evenodd\\\" d=\\\"M0 63.626c0 15.828 3.797 19.626 19.626 19.626c15.828 0 19.626-3.798 19.626-19.626C39.252 47.797 35.454 44 19.626 44C3.797 44 0 47.797 0 63.626m7.914 4.077l6.156-13.99c1.04-2.358 3.038-3.637 5.556-3.637c2.518 0 4.516 1.279 5.556 3.637l6.155 13.99c.28.68.52 1.559.52 2.318c0 3.478-2.438 5.916-5.916 5.916c-1.184 0-2.125-.302-3.077-.608c-.976-.314-1.964-.631-3.238-.631c-1.26 0-2.272.32-3.267.635c-.962.304-1.909.604-3.049.604c-3.477 0-5.915-2.438-5.915-5.916c0-.76.24-1.639.52-2.318zM19.626 56.15L13.55 69.9c1.799-.84 3.877-1.239 6.076-1.239c2.118 0 4.277.4 5.995 1.24zm92.552-2.547c-1.363 0-2.347.965-2.347 2.31c0 1.343.984 2.308 2.347 2.308c1.362 0 2.347-.965 2.347-2.309c0-1.344-.985-2.309-2.347-2.309M69.253 73.44c-3.634 0-6.264-2.687-6.264-6.89c0-4.277 2.63-6.964 6.264-6.964c1.685 0 2.934.568 3.672 1.684v-7.06h3.785v18.927h-3.785v-1.344c-.72 1.098-1.968 1.647-3.672 1.647m-2.403-6.89c0-2.346 1.268-3.88 3.198-3.88c1.95 0 3.199 1.515 3.199 3.862c0 2.309-1.25 3.804-3.199 3.804c-1.93 0-3.198-1.495-3.198-3.785zm15.803-.037c0-2.328 1.268-3.823 3.16-3.823c1.912 0 3.18 1.495 3.18 3.823s-1.268 3.823-3.18 3.823c-1.892 0-3.16-1.495-3.16-3.823m41.713 3.009c0 .7-.53 1.117-1.874 1.117c-1.514 0-2.46-.795-2.46-1.76h-3.785c.094 2.611 2.574 4.56 6.17 4.56c3.406 0 5.583-1.513 5.583-4.2c0-2.007-1.287-3.408-3.842-3.919l-2.744-.549c-.833-.17-1.325-.586-1.325-1.135c0-.814.833-1.25 1.892-1.25c1.514 0 2.101.701 2.101 1.534h3.596c-.095-2.46-2.025-4.334-5.621-4.334c-3.35 0-5.621 1.684-5.621 4.24c0 2.308 1.495 3.35 3.729 3.822l2.725.587c.889.19 1.476.568 1.476 1.287m-14.062-9.633h3.785v13.248h-3.785V59.888zm-11.583 0v1.381c.965-1.116 2.252-1.684 3.842-1.684c2.972 0 4.902 1.93 4.902 4.92v8.63h-3.785V65.3c0-1.608-.909-2.573-2.479-2.573c-1.571 0-2.48.965-2.48 2.574v7.835h-3.785V59.888h3.785zm-12.907-.303c-4.032 0-7.022 2.914-7.022 6.927c0 4.012 2.99 6.927 7.022 6.927c4.05 0 7.04-2.915 7.04-6.927c0-4.013-2.99-6.927-7.04-6.927m-31.57 3.085c-1.93 0-3.198 1.533-3.198 3.88c0 2.29 1.268 3.785 3.199 3.785c1.95 0 3.198-1.495 3.198-3.804c0-2.347-1.249-3.861-3.198-3.861zm-7.059 3.88c0 4.202 2.631 6.889 6.246 6.889c1.722 0 2.952-.55 3.69-1.647v1.344h3.786V59.888h-3.785v1.381c-.757-1.116-2.007-1.684-3.691-1.684c-3.615 0-6.246 2.687-6.246 6.965z\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"aftereffects\": {\n\t\t\t\"body\": \"<path fill=\\\"#1F0740\\\" d=\\\"M6.5 6.5h115v115H6.5z\\\"/><path fill=\\\"#D490C5\\\" d=\\\"M0 0v128h128V0zm121.5 121.5H6.5V6.5h115z\\\"/><path fill=\\\"#D490C5\\\" d=\\\"M103.5 59.2s-.6-14.6-16.5-14.6c-16 0-17.3 22-17.3 22v4.7S72.5 89.6 86 89.6s14.8-2.6 14.8-2.6v-8.1s-19.3 9.2-21.2-10h24v-9.7zm-9 2.4h-15s0-8.3 7.5-9.2c8.2 0 7.5 9.2 7.5 9.2m-44-31.7H38.4v3.8l-16 54.9h9.4l4.4-16.1H53l4.5 16.1h10.3zM38.2 63.1l6.4-24.5L51 63.1z\\\"/>\"\n\t\t},\n\t\t\"akka\": {\n\t\t\t\"body\": \"<path fill=\\\"#0b5567\\\" d=\\\"M105.506 103.661c18.26 14.599 29.96-28.993.865-37.03c-24.416-6.765-48.984 4.833-73.602 31.893c0 0 45.473-16.633 72.737 5.137\\\"/><path fill=\\\"#15a9ce\\\" d=\\\"M33.176 98.168c17.498-18.159 46.593-38.403 73.704-30.926c6.307 1.78 10.783 5.442 13.683 9.817l-25.637-51.73c-3.662-5.85-13.021-4.629-18.311-.153L8.862 81.942c-6.155 5.29-6.51 14.7-.814 20.397c5.036 5.036 13.022 5.493 18.566 1.017z\\\"/>\"\n\t\t},\n\t\t\"akka-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0b5567\\\" d=\\\"M67.132 57.89v-2.53h4.127v12.113c0 1.472.352 2.032 1.265 2.032c.249 0 .56-.041.85-.062v3.34c-.456.165-1.14.269-2.032.269c-.996 0-1.784-.166-2.406-.56c-.767-.519-1.244-1.203-1.41-2.095c-1.203 1.825-3.194 2.717-5.953 2.717c-2.447 0-4.5-.85-6.201-2.613c-1.66-1.763-2.489-3.9-2.489-6.471c0-2.572.83-4.708 2.489-6.43c1.68-1.762 3.754-2.613 6.201-2.613c2.82 0 4.916 1.245 5.559 2.904zm-1.224 9.935c1.037-.995 1.555-2.281 1.555-3.795c0-1.514-.518-2.78-1.555-3.795c-.996-.996-2.282-1.515-3.754-1.515c-1.473 0-2.676.519-3.692 1.515c-.954.995-1.452 2.28-1.452 3.795c0 1.514.477 2.78 1.452 3.795c.996.996 2.199 1.514 3.692 1.514c1.472 0 2.758-.518 3.754-1.514m9.291 4.895V48.724h4.107v14.02l6.409-7.363h4.729l-6.783 7.757l7.508 9.603h-4.687l-5.475-6.99l-1.722 1.93v5.04Zm17.07 0V48.724h4.106v14.02l6.409-7.363h4.75l-6.783 7.757l7.508 9.603h-4.687l-5.475-6.99l-1.722 1.93v5.04Zm28.434-14.83v-2.53h4.128v12.113c0 1.472.352 2.032 1.265 2.032c.249 0 .56-.041.85-.062v3.34c-.456.165-1.14.269-2.032.269c-.996 0-1.784-.166-2.406-.56c-.768-.519-1.245-1.203-1.41-2.095c-1.203 1.825-3.194 2.717-5.953 2.717c-2.447 0-4.5-.85-6.201-2.613c-1.66-1.763-2.489-3.9-2.489-6.471c0-2.572.83-4.708 2.489-6.43c1.68-1.762 3.754-2.613 6.201-2.613c2.8 0 4.895 1.245 5.558 2.904zm-1.244 9.935c1.037-.995 1.556-2.281 1.556-3.795c0-1.514-.519-2.78-1.556-3.795c-.995-.996-2.281-1.515-3.754-1.515c-1.472 0-2.675.519-3.692 1.515c-.954.995-1.451 2.28-1.451 3.795c0 1.514.477 2.78 1.451 3.795c.996.996 2.199 1.514 3.692 1.514c1.473 0 2.759-.518 3.754-1.514m-77.07 12.32c7.445 5.953 12.215-11.822.352-15.099c-9.955-2.758-19.973 1.97-30.011 13.004c0 0 18.542-6.782 29.658 2.095z\\\"/><path fill=\\\"#15a9ce\\\" d=\\\"M12.896 77.905c7.135-7.404 18.998-15.659 30.052-12.61c2.572.726 4.397 2.22 5.58 4.003L38.075 48.205c-1.494-2.385-5.31-1.887-7.467-.062L2.982 71.289c-2.51 2.157-2.655 5.994-.332 8.317a5.661 5.661 0 0 0 7.57.415z\\\"/>\"\n\t\t},\n\t\t\"algolia\": {\n\t\t\t\"body\": \"<path fill=\\\"#003dff\\\" d=\\\"M63.998-.042C29.024-.042.511 28.16.006 63.015c-.512 35.402 28.208 64.734 63.613 64.94c10.934.063 21.465-2.612 30.817-7.693a1.5 1.5 0 0 0 .276-2.438l-5.987-5.309c-1.216-1.08-2.95-1.385-4.447-.747c-6.528 2.777-13.622 4.195-20.93 4.106c-28.608-.351-51.722-24.153-51.266-52.761c.45-28.244 23.567-51.084 51.916-51.084h51.924v92.295l-29.46-26.176c-.952-.848-2.414-.681-3.182.335c-4.728 6.262-12.431 10.155-20.987 9.564c-11.868-.82-21.483-10.373-22.374-22.236c-1.062-14.152 10.15-26.004 24.082-26.004c12.598 0 22.973 9.697 24.056 22.018a4.297 4.297 0 0 0 1.416 2.85l7.672 6.801c.87.77 2.253.3 2.465-.845c.553-2.957.748-6.041.53-9.203c-1.237-18.02-15.831-32.514-33.858-33.625c-20.667-1.275-37.946 14.894-38.494 35.161c-.535 19.75 15.647 36.776 35.399 37.212a36.028 36.028 0 0 0 22.067-6.904l38.492 34.122c1.651 1.462 4.255.292 4.255-1.915V2.39a2.434 2.434 0 0 0-2.432-2.43z\\\"/>\"\n\t\t},\n\t\t\"algolia-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#003dff\\\" d=\\\"M14.561 49.429C6.604 49.429.117 55.845.002 63.776C-.115 71.83 6.42 78.504 14.475 78.551a14.461 14.461 0 0 0 7.011-1.75a.34.34 0 0 0 .063-.554l-1.362-1.208a.962.962 0 0 0-1.012-.17a11.768 11.768 0 0 1-4.762.934c-6.51-.08-11.768-5.495-11.664-12.004c.102-6.426 5.362-11.622 11.812-11.622h11.813v20.998L19.67 67.22a.494.494 0 0 0-.724.076a5.491 5.491 0 0 1-4.775 2.176c-2.7-.186-4.888-2.36-5.09-5.06a5.5 5.5 0 0 1 5.478-5.916a5.502 5.502 0 0 1 5.474 5.01a.976.976 0 0 0 .321.647l1.746 1.548a.341.341 0 0 0 .561-.192c.126-.674.17-1.375.12-2.094c-.28-4.1-3.601-7.398-7.702-7.65c-4.703-.29-8.634 3.388-8.759 8c-.121 4.493 3.56 8.366 8.055 8.465a8.195 8.195 0 0 0 5.02-1.57l8.758 7.763a.582.582 0 0 0 .968-.435V49.983a.553.553 0 0 0-.553-.553zm62.026 6.104h-2.875c-2.819 0-5.299 1.485-6.746 3.736a8.433 8.433 0 0 0-1.34 4.588c0 .319.018.65.054.967a8.38 8.38 0 0 0 2.953 5.51c.17.15.352.29.542.415a4.69 4.69 0 0 0 5.402-.145c.95-.675 1.683-1.664 2.01-2.783v2.929h-.007v.646c0 1.273-.333 2.23-1.01 2.877c-.677.645-1.81.969-3.395.969c-.649 0-1.678-.035-2.716-.14a.346.346 0 0 0-.366.245l-.745 2.513c-.06.202.074.41.282.439c1.254.18 2.478.273 3.185.273c2.85 0 4.963-.627 6.346-1.878c1.252-1.131 1.932-2.85 2.052-5.159V55.877a.344.344 0 0 0-.344-.344zm0 3.736s.038 8.109 0 8.355c-.704.57-1.58.792-2.535.857l-.028.002a4.384 4.384 0 0 1-.425 0c-2.356-.123-4.344-2.171-4.344-4.626c0-.598.114-1.166.316-1.69c.654-1.696 2.26-2.898 4.142-2.898h2.875zm47.787-3.736h-2.875c-2.819 0-5.299 1.485-6.746 3.736a8.459 8.459 0 0 0-1.34 4.589a8.4 8.4 0 0 0 3.007 6.475c.17.151.352.29.542.416a4.69 4.69 0 0 0 2.81.78l.062-.004l.153-.012l.059-.007c.053-.006.106-.012.16-.02l.036-.006c1.917-.295 3.588-1.796 4.132-3.66v3.37c0 .19.154.344.344.344h2.938c.19 0 .344-.154.344-.344V55.877a.344.344 0 0 0-.344-.344zm0 12.06c-.711.592-1.63.815-2.613.881c-.01 0-.02.002-.029.003c-.065.004-.13.005-.196.005c-2.462 0-4.495-2.091-4.495-4.626c0-.597.115-1.166.316-1.689c.654-1.697 2.26-2.899 4.142-2.899h2.875zm-72.245-12.06h-2.875c-2.819 0-5.299 1.485-6.746 3.736a8.459 8.459 0 0 0-1.34 4.589a8.4 8.4 0 0 0 3.007 6.475c.17.151.352.29.542.416a4.69 4.69 0 0 0 2.81.78l.062-.004l.153-.012l.059-.007a4.88 4.88 0 0 0 .16-.02l.036-.006c1.917-.295 3.588-1.796 4.132-3.66v3.37c0 .19.154.344.344.344h2.939c.19 0 .343-.154.343-.344V55.877a.344.344 0 0 0-.343-.344zm0 12.06c-.711.592-1.63.815-2.613.881c-.01 0-.02.002-.029.003c-.065.004-.13.005-.196.005c-2.462 0-4.495-2.091-4.495-4.626c0-.597.115-1.166.316-1.689c.654-1.697 2.26-2.899 4.142-2.899h2.875zm42.985-9.846a6.608 6.608 0 0 0-2.377-1.65c-.928-.38-1.938-.574-3.035-.574c-1.094 0-2.107.185-3.026.574a6.96 6.96 0 0 0-2.375 1.65c-.669.713-1.188 1.566-1.56 2.567c-.372 1-.538 2.178-.538 3.4a8.6 8.6 0 0 0 .556 3.16c.372 1.01.883 1.872 1.542 2.586a6.913 6.913 0 0 0 2.366 1.659c.92.398 2.338.602 3.054.61c.714 0 2.144-.222 3.072-.61a6.767 6.767 0 0 0 2.376-1.66c.658-.713 1.17-1.575 1.53-2.585c.363-1.01.539-1.936.539-3.16c0-1.222-.195-2.4-.585-3.4c-.372-1.001-.882-1.854-1.54-2.567zm-2.59 9.544c-.668.918-1.606 1.381-2.802 1.381c-1.198 0-2.135-.454-2.804-1.38c-.668-.919-1.003-1.983-1.003-3.568c0-1.567.326-2.864.995-3.78c.667-.919 1.605-1.371 2.801-1.371c1.198 0 2.135.453 2.803 1.37c.669.908 1.012 2.214 1.012 3.781c0 1.585-.333 2.64-1.002 3.567m10.288-1.817v-15.7a.344.344 0 0 0-.397-.34l-2.94.462a.345.345 0 0 0-.292.34l.01 15.925c0 .753 0 5.403 5.594 5.565a.345.345 0 0 0 .355-.344v-2.377a.34.34 0 0 0-.299-.34c-2.031-.234-2.031-2.773-2.031-3.19zm5.115-11.885h2.959c.19 0 .344-.153.344-.343v-3.473a.344.344 0 0 0-.398-.34l-2.959.464a.344.344 0 0 0-.29.34v3.008c0 .19.153.344.343.344zm0 1.944h2.96c.19 0 .343.153.343.344v15.509c0 .19-.153.344-.344.344h-2.96a.343.343 0 0 1-.343-.344V55.877c0-.19.153-.344.344-.344m-45.542 9.941v-15.7a.344.344 0 0 0-.398-.34l-2.94.462a.345.345 0 0 0-.292.34l.01 15.925c0 .753 0 5.403 5.594 5.565a.345.345 0 0 0 .355-.344v-2.377a.34.34 0 0 0-.299-.34c-2.03-.234-2.03-2.773-2.03-3.19z\\\"/>\"\n\t\t},\n\t\t\"alpinejs\": {\n\t\t\t\"body\": \"<path fill=\\\"#77c1d2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M98.444 35.562L126 62.997L98.444 90.432L70.889 62.997z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#2d3441\\\" fill-rule=\\\"evenodd\\\" d=\\\"m29.556 35.562l57.126 56.876H31.571L2 62.997z\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"alpinejs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#2d3441\\\" d=\\\"m43.342 68.821l.734-2.373h4.655l.734 2.373h3.388L48.56 55.329h-4.092L39.924 68.82h3.418zm4.655-4.756H44.89l1.578-4.936zm10.133 4.756V54.947h-3.217v13.874zm6.636 4.805v-5.222l.01.009c.101.093.209.177.324.251l.058.036c.489.295 1.099.442 1.83.442c.838 0 1.624-.208 2.357-.623c.734-.416 1.327-1.015 1.779-1.8c.452-.784.679-1.733.679-2.845c0-1.119-.223-2.071-.669-2.855c-.446-.784-1.024-1.384-1.734-1.8s-1.461-.623-2.252-.623c-.596 0-1.159.152-1.689.457c-.381.22-.709.536-.985.948l-.04.061l-.262-1.144h-2.624v14.708zm1.709-7.419a2.12 2.12 0 0 1-.855-.171a1.544 1.544 0 0 1-.623-.472a1.125 1.125 0 0 1-.231-.704v-1.629l.001-.069a1.77 1.77 0 0 1 .196-.789l.029-.052c.151-.258.36-.457.628-.598c.268-.141.573-.211.915-.211c.422 0 .786.097 1.091.292c.305.194.541.469.709.824c.168.355.251.771.251 1.247c0 .563-.112 1.015-.337 1.357c-.225.342-.499.59-.824.744a2.212 2.212 0 0 1-.95.231m9.802-8.566c.59 0 1.056-.156 1.397-.467c.342-.312.513-.752.513-1.322c0-.556-.171-1-.513-1.332c-.342-.332-.808-.498-1.397-.498c-.61 0-1.081.166-1.412.498c-.332.332-.498.776-.498 1.332c0 .57.166 1.01.498 1.322c.331.311.802.467 1.412.467m1.608 11.18v-9.963h-3.217v9.963zm6.917 0v-4.172l.001-.102c.008-.676.091-1.229.251-1.659l.025-.064c.184-.459.431-.793.739-1a1.777 1.777 0 0 1 1.015-.312c.362 0 .67.126.925.377s.382.638.382 1.161v5.771h3.237V63.05c0-.865-.127-1.632-.382-2.302c-.255-.67-.652-1.196-1.191-1.578c-.54-.382-1.235-.573-2.086-.573c-.744 0-1.409.208-1.996.623c-.364.258-.68.607-.949 1.049l-.028.046l-.326-1.397h-2.835v9.902h3.218zm13.682.321c.818 0 1.54-.147 2.166-.442c.627-.295 1.136-.694 1.528-1.196s.638-1.062.739-1.679H99.72a.975.975 0 0 1-.462.573a1.586 1.586 0 0 1-.774.181c-.362 0-.662-.085-.9-.256a1.56 1.56 0 0 1-.538-.719c-.121-.308-.181-.674-.181-1.096v.02h5.951c.159-.711.19-1.403.093-2.075l-.017-.112a4.758 4.758 0 0 0-.744-1.905a4.121 4.121 0 0 0-1.493-1.342c-.617-.332-1.34-.498-2.172-.498c-.838 0-1.622.208-2.352.623c-.731.416-1.32 1.014-1.769 1.795c-.449.781-.674 1.717-.674 2.81s.226 2.037.679 2.835c.452.798 1.044 1.411 1.774 1.84a4.553 4.553 0 0 0 2.343.643m1.528-6.243H96.88v-.003c.024-.275.079-.519.165-.733l.027-.063a1.59 1.59 0 0 1 .583-.714c.251-.164.548-.246.89-.246c.308 0 .561.062.759.186c.198.124.35.288.457.493c.107.204.179.427.216.669c.018.121.03.24.034.359zm6.324 6.102c.637 0 1.163-.193 1.578-.578c.416-.385.623-.876.623-1.473c0-.596-.208-1.092-.623-1.488c-.416-.395-.942-.593-1.578-.593c-.637 0-1.154.198-1.553.593c-.399.395-.598.891-.598 1.488c0 .59.199 1.079.598 1.468c.398.389.916.583 1.553.583m6.142-11.36c.59 0 1.056-.156 1.397-.467c.342-.312.513-.752.513-1.322c0-.556-.171-1-.513-1.332c-.342-.332-.808-.498-1.397-.498s-1.059.166-1.407.498c-.349.332-.523.776-.523 1.332c0 .57.174 1.01.523 1.322c.348.311.818.467 1.407.467m-1.92 16.337c1.173 0 2.061-.32 2.664-.96c.603-.64.905-1.721.905-3.242V58.878h-3.237v10.837c0 .576-.102.962-.307 1.156c-.204.194-.514.292-.93.292c-.322 0-.67-.047-1.046-.141a8.018 8.018 0 0 1-.995-.312v2.765c.462.127.922.243 1.377.347c.457.104.979.156 1.569.156m11.089-4.836c.831 0 1.575-.154 2.232-.462c.657-.308 1.175-.709 1.553-1.201c.379-.493.568-1.014.568-1.563c0-.603-.194-1.106-.583-1.508c-.389-.402-.922-.737-1.598-1.005l-2.734-1.096c-.422-.147-.633-.349-.633-.603c0-.188.101-.338.302-.452c.201-.114.476-.171.824-.171c.422 0 .724.079.905.236a.718.718 0 0 1 .271.558h2.946c-.007-.952-.365-1.736-1.076-2.352c-.71-.617-1.726-.925-3.046-.925c-1.407 0-2.517.271-3.328.814c-.811.543-1.216 1.253-1.216 2.131c0 .623.193 1.161.578 1.614s.933.826 1.644 1.121l2.403.935c.255.101.442.201.563.302a.497.497 0 0 1 .181.402a.569.569 0 0 1-.131.357a.889.889 0 0 1-.392.266a1.866 1.866 0 0 1-.664.101c-.442 0-.793-.067-1.051-.201c-.258-.134-.394-.375-.407-.724h-2.905c-.007.771.193 1.409.598 1.915s.97.885 1.694 1.136c.723.25 1.557.375 2.502.375\\\"/><path fill=\\\"#77c1d2\\\" fill-rule=\\\"evenodd\\\" d=\\\"m27.508 54.436l7.288 7.256l-7.288 7.256l-7.288-7.256z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#2d3441\\\" fill-rule=\\\"evenodd\\\" d=\\\"m9.288 54.436l15.109 15.043H9.821L2 61.692z\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"amazonwebservices-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#252f3e\\\" d=\\\"M36.379 53.64c0 1.56.168 2.825.465 3.75c.336.926.758 1.938 1.347 3.032c.207.336.293.672.293.969c0 .418-.254.84-.8 1.261l-2.653 1.77c-.379.25-.758.379-1.093.379c-.422 0-.844-.211-1.266-.59a13.28 13.28 0 0 1-1.516-1.98a34.153 34.153 0 0 1-1.304-2.485c-3.282 3.875-7.41 5.813-12.38 5.813c-3.535 0-6.355-1.012-8.421-3.032c-2.063-2.023-3.114-4.718-3.114-8.086c0-3.578 1.262-6.484 3.833-8.671c2.566-2.192 5.976-3.286 10.316-3.286c1.43 0 2.902.125 4.46.336c1.56.211 3.161.547 4.845.926v-3.074c0-3.2-.676-5.43-1.98-6.734C26.061 32.633 23.788 32 20.546 32c-1.473 0-2.988.168-4.547.547a33.416 33.416 0 0 0-4.547 1.433c-.676.293-1.18.461-1.473.547c-.296.082-.507.125-.675.125c-.59 0-.883-.422-.883-1.304v-2.063c0-.676.082-1.18.293-1.476c.21-.293.59-.586 1.18-.883c1.472-.758 3.242-1.39 5.304-1.895c2.063-.547 4.254-.8 6.57-.8c5.008 0 8.672 1.136 11.032 3.41c2.316 2.273 3.492 5.726 3.492 10.359v13.64Zm-17.094 6.403c1.387 0 2.82-.254 4.336-.758c1.516-.508 2.863-1.433 4-2.695c.672-.8 1.18-1.684 1.43-2.695c.254-1.012.422-2.23.422-3.665v-1.765a34.401 34.401 0 0 0-3.871-.719a31.816 31.816 0 0 0-3.961-.25c-2.82 0-4.883.547-6.274 1.684c-1.387 1.136-2.062 2.734-2.062 4.84c0 1.98.504 3.453 1.558 4.464c1.012 1.051 2.485 1.559 4.422 1.559m33.809 4.547c-.758 0-1.262-.125-1.598-.422c-.34-.254-.633-.84-.887-1.64L40.715 29.98c-.25-.843-.38-1.39-.38-1.687c0-.672.337-1.05 1.013-1.05h4.125c.8 0 1.347.124 1.644.421c.336.25.59.84.84 1.64l7.074 27.876l6.57-27.875c.208-.84.462-1.39.797-1.64c.34-.255.93-.423 1.688-.423h3.367c.8 0 1.348.125 1.684.422c.336.25.633.84.8 1.64l6.653 28.212l7.285-28.211c.25-.84.547-1.39.84-1.64c.336-.255.887-.423 1.644-.423h3.914c.676 0 1.055.336 1.055 1.051c0 .21-.043.422-.086.676c-.043.254-.125.59-.293 1.05L80.801 62.57c-.254.84-.547 1.387-.887 1.64c-.336.255-.883.423-1.598.423h-3.62c-.801 0-1.348-.13-1.684-.422c-.34-.297-.633-.844-.801-1.684l-6.527-27.16l-6.485 27.117c-.21.844-.46 1.391-.8 1.684c-.337.297-.926.422-1.684.422Zm54.105 1.137c-2.187 0-4.379-.254-6.484-.758c-2.106-.504-3.746-1.055-4.84-1.684c-.676-.379-1.137-.8-1.305-1.18a2.919 2.919 0 0 1-.254-1.18v-2.148c0-.882.336-1.304.97-1.304c.25 0 .503.043.757.129c.25.082.629.25 1.05.418a23.102 23.102 0 0 0 4.634 1.476c1.683.336 3.324.504 5.011.504c2.653 0 4.715-.465 6.145-1.39c1.433-.926 2.191-2.274 2.191-4c0-1.18-.379-2.145-1.136-2.946c-.758-.8-2.192-1.516-4.254-2.191l-6.106-1.895c-3.074-.969-5.348-2.398-6.734-4.293c-1.39-1.855-2.106-3.918-2.106-6.105c0-1.77.38-3.328 1.137-4.676a10.829 10.829 0 0 1 3.031-3.453c1.262-.965 2.696-1.684 4.38-2.188c1.683-.504 3.452-.715 5.304-.715c.926 0 1.894.043 2.82.168c.969.125 1.852.293 2.738.461c.84.211 1.641.422 2.399.676c.758.254 1.348.504 1.77.758c.59.336 1.011.672 1.261 1.05c.254.34.379.802.379 1.391v1.98c0 .884-.336 1.348-.969 1.348c-.336 0-.883-.171-1.597-.507c-2.403-1.094-5.098-1.641-8.086-1.641c-2.399 0-4.293.379-5.598 1.18c-1.309.797-1.98 2.02-1.98 3.746c0 1.18.421 2.191 1.261 2.988c.844.8 2.403 1.602 4.633 2.316l5.98 1.895c3.032.969 5.22 2.316 6.524 4.043c1.305 1.727 1.938 3.707 1.938 5.895c0 1.812-.38 3.453-1.094 4.882c-.758 1.434-1.77 2.696-3.074 3.707c-1.305 1.051-2.864 1.809-4.672 2.36c-1.895.586-3.875.883-6.024.883m0 0\\\"/><path fill=\\\"#f90\\\" d=\\\"M118 73.348c-4.432.063-9.664 1.052-13.621 3.832c-1.223.883-1.012 2.062.336 1.894c4.508-.547 14.44-1.726 16.21.547c1.77 2.23-1.976 11.62-3.663 15.79c-.504 1.26.59 1.769 1.726.8c7.41-6.231 9.348-19.242 7.832-21.137c-.757-.925-4.388-1.79-8.82-1.726M1.63 75.859c-.927.116-1.347 1.236-.368 2.121c16.508 14.902 38.359 23.872 62.613 23.872c17.305 0 37.43-5.43 51.281-15.66c2.273-1.688.297-4.254-2.02-3.204c-15.534 6.57-32.421 9.77-47.788 9.77c-22.778 0-44.8-6.273-62.653-16.633c-.39-.231-.755-.304-1.064-.266z\\\"/>\"\n\t\t},\n\t\t\"anaconda\": {\n\t\t\t\"body\": \"<path fill=\\\"#3eb049\\\" d=\\\"M59.3 127.602c-11.206-1.075-21.253-4.403-29.288-9.7l-1.688-1.113l-.406-3.133c-.45-3.488-.922-9.035-.918-10.86v-1.19l5.242-.043c2.883-.024 6.117-.133 7.188-.25c1.699-.18 2.035-.149 2.652.238c5.715 3.586 14.445 5.965 21.871 5.957c11.899-.008 22.414-4.395 30.902-12.89c3.754-3.759 5.817-6.583 8.07-11.06c6.188-12.273 6.321-26.316.372-38.601c-5.89-12.16-17.375-21.094-30.5-23.719c-3.383-.68-8.043-1.039-10.828-.84l-2.27.165l.574-.813c.32-.445 2.426-2.7 4.684-5.008l4.106-4.195l-1.688-1.57C64.988 6.75 61.691 4 59.219 2.168L57.102.602l.796-.188C59.473.043 68.664.156 71.953.586c27.024 3.531 48.594 23.16 54.45 49.555c1.917 8.629 1.956 18.187.117 27.117c-2.325 11.27-8.235 22.383-16.442 30.91A64.013 64.013 0 0 1 69.906 127.5c-2.547.238-8.594.293-10.605.102zm-39.987-18.344c-3.622-3.617-8.516-9.492-8.184-9.824c.062-.063 1.43.156 3.035.48c2.438.496 7.922 1.328 8.75 1.328c.125 0 .23 1.035.234 2.352c.004 2.156.23 5.246.618 8.437c.109.899.07 1.266-.13 1.266c-.156 0-2.105-1.817-4.323-4.04zM27 96.336c0-1.941.504-7.723.691-7.926c.09-.094.852.738 1.696 1.852c.84 1.117 2.746 3.23 4.234 4.695l2.703 2.672H27zm-4.945.887c-4.032-.496-12.22-2.07-12.871-2.473c-.2-.125.039-1.094.84-3.41c1.058-3.047 3.554-9.035 3.945-9.453c.097-.102 1.414.457 2.926 1.246c1.515.789 3.71 1.844 4.886 2.351l2.133.914l-.148 1.102c-.34 2.57-.614 6.047-.618 7.898c-.003 1.094-.09 1.973-.187 1.954c-.102-.02-.508-.079-.906-.13zM4.527 86.852a68.035 68.035 0 0 1-3.082-10.657C.7 72.5.723 72.473 3.02 74.285c1.062.84 3.097 2.32 4.52 3.285c1.42.97 2.585 1.801 2.585 1.844c0 .047-.445 1.047-.988 2.219a109.642 109.642 0 0 0-2.075 4.906c-.597 1.523-1.164 2.86-1.265 2.965c-.098.105-.668-1.09-1.27-2.652m17.34-6.235c-1.851-.851-5.21-2.566-5.668-2.89c-.094-.067 2.383-4.149 3.645-6.004l.988-1.457l.172.726c1.105 4.625 1.77 6.977 2.457 8.688c.45 1.12.805 2.035.793 2.035c-.016-.004-1.09-.496-2.387-1.098M9.25 73.38c-2.602-1.817-6.95-5.238-7.223-5.68c-.257-.418 8.602-9.004 9.293-9.004c.114 0 1.075 1.14 2.133 2.532c1.063 1.394 2.48 3.164 3.156 3.933c.676.77 1.23 1.45 1.23 1.512c0 .062-.85 1.387-1.894 2.941c-1.039 1.551-2.246 3.45-2.675 4.211c-.43.762-.918 1.387-1.09 1.387c-.168 0-1.489-.824-2.93-1.832M.242 61.824c.035-3.027 1.055-9.922 2.055-13.883c.992-3.921.797-3.894 2.598-.332c.867 1.723 2.058 3.934 2.64 4.918l1.059 1.782l-1.828 1.566c-1.004.86-2.883 2.605-4.176 3.875C1.297 61.023.242 61.957.242 61.824m19.38-.793c-1.903-2.27-4.177-5.422-4.056-5.617c.164-.266 2.973-2.172 5.258-3.57c1.531-.938 1.649-.973 1.496-.457c-.562 1.925-1.36 5.972-1.582 8.02c-.144 1.316-.285 2.421-.316 2.452c-.031.032-.39-.343-.8-.828m-8.364-12.07c-2.5-4.356-5.387-10.586-5.051-10.895c.54-.504 9.703-3.07 12.41-3.476l1.055-.16l.531 3.215c.29 1.77.777 4.253 1.086 5.523l.559 2.312l-1.98 1.125c-1.09.622-3.177 1.926-4.634 2.899l-2.648 1.77zm14.805-9.977a161.737 161.737 0 0 1-.708-4.062l-.203-1.36l1.23-.144c.68-.078 2.532-.215 4.118-.3l2.887-.153l-.989 1.055c-1.632 1.742-3.488 4.082-4.695 5.93l-1.137 1.737zm-16.16-8.816c1.648-2.793 6.855-9.422 8.62-10.98l.52-.461v10.132l-2.11.41c-1.835.356-5.757 1.313-7.152 1.743c-.426.133-.418.062.121-.844zm14.73-8.176c.043-3.324.14-6.105.219-6.183c.27-.274 11.554 1.972 11.98 2.382c.04.04-.3 1.301-.754 2.809c-.457 1.512-1.02 3.57-1.254 4.574l-.426 1.836l-3.398.15c-1.871.082-4.086.222-4.922.312l-1.523.164zm16.105 4.942c0-.11.957-3.567 1.465-5.286l.477-1.609l2.945 1.211c3.902 1.605 3.813 1.547 2.941 1.91c-2.035.856-5.39 2.48-6.421 3.117c-1.094.672-1.407.817-1.407.657m10.848-9.688c-.863-.433-2.723-1.254-4.133-1.824l-2.566-1.035l.25-.715c.316-.906 3.847-7.985 4.508-9.04l.496-.792l1.507 1.015c1.973 1.336 5.598 4.047 6.793 5.086l.95.825l-2.52 2.875c-1.383 1.578-2.785 3.214-3.117 3.632l-.602.766zm-15.79-5.578a145.584 145.584 0 0 0-4.698-1.117l-1.57-.324l2.124-1.262a82.044 82.044 0 0 1 3.86-2.133c1.855-.937 7.449-3.242 7.57-3.121c.04.039-.39.984-.96 2.098c-.567 1.113-1.458 3-1.977 4.195c-.52 1.191-1.004 2.234-1.079 2.312c-.074.079-1.546-.214-3.27-.648m0 0\\\"/>\"\n\t\t},\n\t\t\"anaconda-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#3eb049\\\" d=\\\"M24.473 90.629c-2.543-2.793-4.649-5.078-4.684-5.078c-.035 0-.062 2.187-.062 4.855c0 4.313-.012 4.867-.118 4.969c-.168.168-2.375.168-2.543 0c-.105-.105-.117-.914-.117-7.816c0-7.54.004-7.7.14-7.774c.079-.043.286-.078.462-.078h.316l4.602 4.895c2.531 2.691 4.625 4.894 4.656 4.894c.027 0 .055-2.101.055-4.672v-4.668l.16-.117c.238-.164 2.289-.164 2.523 0l.164.117v7.653c0 7.324-.004 7.664-.132 7.777c-.082.074-.262.121-.465.121h-.332zm29.914 4.973a7.964 7.964 0 0 1-6.508-5.86c-.23-.887-.305-2.273-.176-3.176a8.032 8.032 0 0 1 3.113-5.242c.645-.492 1.942-1.125 2.7-1.324c1.875-.488 3.863-.328 5.504.441c1.023.48 2.132 1.336 2.132 1.649c0 .25-1.488 1.781-1.73 1.781c-.098 0-.348-.137-.555-.3c-.953-.758-2.137-1.13-3.406-1.067c-1.344.062-2.258.473-3.238 1.457c-1.121 1.125-1.676 2.805-1.453 4.394c.175 1.239.613 2.11 1.507 3.012c.965.973 2.055 1.422 3.442 1.43c1.164.004 2.039-.285 3.078-1.008c.254-.176.535-.32.625-.32c.242 0 1.73 1.523 1.73 1.77c0 .32-1.004 1.14-2.027 1.656c-1.379.695-3.129.957-4.738.707m15.082-.008a7.918 7.918 0 0 1-4.32-2.188c-3.067-3.035-3.137-8.05-.16-11.207c3.093-3.277 8.331-3.304 11.48-.062c.695.718 1.101 1.304 1.527 2.203c.957 2.023.996 4.43.11 6.562c-.333.793-1.04 1.832-1.688 2.473c-1.824 1.809-4.375 2.621-6.95 2.219zm2.57-2.918c1.773-.457 3.211-1.895 3.7-3.692c.195-.714.175-1.925-.04-2.629c-.289-.937-.633-1.503-1.36-2.23c-1.066-1.07-2.136-1.527-3.581-1.527c-.633 0-.918.035-1.352.168c-1.62.5-2.863 1.668-3.449 3.242c-.293.785-.363 1.992-.172 2.863c.45 2.016 2.184 3.598 4.317 3.942c.39.062 1.457-.012 1.937-.137m17.188-2.086l-4.66-5.113l-.02 4.87c-.016 4.41-.031 4.887-.137 5.008c-.11.118-.254.133-1.281.133c-1.059 0-1.168-.011-1.3-.144c-.145-.145-.15-.246-.15-7.746s.005-7.598.15-7.743c.105-.109.237-.148.491-.144h.348l4.598 4.894c2.527 2.692 4.625 4.891 4.656 4.891c.035 0 .058-2.098.058-4.664c0-4.426.008-4.668.137-4.785c.11-.102.313-.121 1.278-.121c1.046 0 1.156.011 1.289.148c.144.145.148.242.148 7.742s-.004 7.602-.148 7.746c-.102.102-.243.145-.473.145h-.328zM.219 95.344c-.078-.082-.145-.176-.145-.215c0-.09 6.91-15.035 7.051-15.25c.14-.215.61-.242.781-.043c.14.164 6.996 15.152 6.996 15.3c0 .06-.058.165-.132.231c-.11.102-.313.121-1.27.121c-1.016 0-1.152-.015-1.316-.144c-.114-.086-.395-.621-.758-1.422l-.578-1.281l-3.352.02l-3.351.015l-.594 1.304c-.438.961-.64 1.329-.774 1.403c-.132.074-.492.101-1.297.101c-1.02.004-1.128-.007-1.261-.14m9.5-5.18c0-.129-2.192-4.867-2.246-4.855c-.055.007-2.207 4.746-2.211 4.863c0 .031 1 .055 2.226.055c1.227 0 2.23-.028 2.23-.063zm22.48 5.246c-.07-.043-.125-.16-.125-.265c0-.235 6.903-15.215 7.07-15.344c.133-.106.516-.121.66-.031c.137.09 7.028 15.175 7.028 15.386a.31.31 0 0 1-.14.258c-.083.043-.633.074-1.278.074c-1.07 0-1.14-.008-1.316-.164c-.102-.094-.43-.715-.746-1.426l-.567-1.257h-6.668l-.617 1.328c-.46 1.004-.66 1.355-.797 1.426c-.226.113-2.312.125-2.504.015m9.442-5.273c0-.145-2.145-4.82-2.215-4.828c-.047-.008-2.239 4.789-2.239 4.898c0 .012 1.004.02 2.227.02c1.734 0 2.23-.02 2.227-.09m57.402 5.242c-.11-.11-.121-.762-.121-7.672c0-6.922.012-7.559.121-7.672c.11-.11.422-.117 3.379-.086c3.504.035 3.605.043 4.758.457c2.218.797 3.988 2.578 4.738 4.77c.312.91.398 1.46.394 2.57c0 1.176-.152 1.934-.601 3.012c-.8 1.926-2.598 3.601-4.598 4.285c-1.11.379-1.234.39-4.691.426c-2.953.027-3.27.02-3.379-.09m6.402-2.711c.29-.063.809-.25 1.149-.41c.5-.238.734-.41 1.21-.89c.657-.661.946-1.118 1.247-1.981c.191-.54.207-.664.203-1.68c0-.992-.02-1.152-.195-1.68c-.508-1.511-1.512-2.558-3.004-3.129l-.594-.226l-1.883-.027l-1.879-.024v10.164h1.61c1.203 0 1.746-.027 2.136-.117m7.79 2.668c-.083-.086-.137-.207-.122-.273c.07-.247 6.953-15.102 7.059-15.227c.066-.078.21-.129.375-.129c.168 0 .312.05.383.129c.136.164 6.996 15.16 6.996 15.305c0 .058-.059.16-.133.226c-.113.102-.316.121-1.27.121c-1.015 0-1.152-.015-1.316-.144c-.113-.086-.398-.621-.758-1.422l-.578-1.281l-3.355.02l-3.356.015l-.594 1.304c-.43.954-.64 1.332-.77 1.403c-.128.074-.495.101-1.292.101c-1.035.004-1.125-.007-1.27-.148zm9.503-5.172c0-.125-2.187-4.867-2.242-4.86c-.055.008-2.207 4.75-2.21 4.868c0 .031 1 .055 2.226.055s2.226-.028 2.226-.063m-60.054-19.2c-3.395-.323-6.442-1.331-8.875-2.937l-.512-.336l-.121-.953c-.137-1.054-.281-2.738-.281-3.289v-.363l1.59-.012c.874-.008 1.855-.039 2.18-.074c.515-.055.616-.047.8.07c1.734 1.086 4.379 1.809 6.629 1.805c3.605 0 6.797-1.332 9.367-3.906c1.137-1.137 1.762-1.992 2.445-3.352c1.875-3.719 1.918-7.976.114-11.699c-1.786-3.688-5.266-6.395-9.243-7.188c-1.027-.207-2.437-.316-3.285-.253l-.687.046l.175-.246c.098-.132.735-.816 1.418-1.515l1.247-1.274l-.512-.476a32.162 32.162 0 0 0-2.473-2.063l-.64-.472l.242-.059c.476-.113 3.261-.078 4.258.05c8.19 1.071 14.726 7.02 16.503 15.02c.579 2.617.594 5.512.036 8.219c-.704 3.418-2.496 6.785-4.985 9.371a19.392 19.392 0 0 1-12.176 5.856c-.77.074-2.601.09-3.214.03m-12.118-5.558c-1.097-1.097-2.582-2.875-2.48-2.976c.02-.02.434.047.918.144c.742.153 2.402.403 2.652.403c.04 0 .07.312.07.714c.004.653.07 1.59.188 2.555c.035.274.023.383-.039.383c-.047 0-.637-.55-1.309-1.223m2.329-3.918c0-.586.152-2.34.21-2.398c.028-.031.258.222.512.558c.258.34.836.98 1.285 1.426l.82.809h-2.827zm-1.497.27c-1.222-.149-3.707-.625-3.902-.75c-.062-.035.012-.328.254-1.031c.32-.926 1.078-2.739 1.195-2.868c.032-.03.43.141.887.38c.461.238 1.125.558 1.48.71l.649.278l-.047.336c-.102.777-.184 1.832-.187 2.394c0 .328-.024.598-.055.59c-.031-.004-.152-.024-.274-.04zm-5.312-3.145a20.71 20.71 0 0 1-.938-3.226c-.222-1.121-.218-1.13.48-.578c.321.254.938.699 1.368.996c.434.293.785.543.785.558c0 .012-.136.317-.3.672a37.319 37.319 0 0 0-.63 1.485c-.18.464-.351.867-.382.898c-.028.031-.203-.328-.383-.805m5.254-1.886c-.563-.258-1.578-.778-1.719-.875c-.027-.024.723-1.258 1.106-1.82l.3-.442l.051.219c.336 1.402.535 2.113.746 2.632c.133.34.242.618.239.618c-.004 0-.329-.153-.723-.332m-3.824-2.196c-.79-.55-2.106-1.586-2.188-1.718c-.078-.13 2.606-2.731 2.817-2.731c.03 0 .324.344.644.766c.324.422.754.96.957 1.191c.207.234.371.441.371.461c0 .02-.258.418-.57.89a24.64 24.64 0 0 0-.813 1.278c-.129.23-.277.418-.332.418c-.05 0-.449-.25-.886-.555m-2.73-3.5c.01-.918.32-3.008.624-4.21c.3-1.188.238-1.18.785-.098c.266.52.625 1.191.801 1.488l.32.543l-.554.473a35.78 35.78 0 0 0-1.266 1.175c-.39.383-.71.668-.71.63zm5.874-.242c-.578-.687-1.265-1.64-1.23-1.703c.05-.078.902-.656 1.593-1.082c.465-.281.5-.293.454-.137a19.74 19.74 0 0 0-.48 2.43c-.044.398-.087.734-.095.742c-.011.012-.12-.102-.242-.25m-2.535-3.66c-.758-1.316-1.633-3.207-1.531-3.3c.164-.153 2.941-.93 3.761-1.056l.32-.046l.16.976c.087.535.235 1.29.33 1.672l.17.7l-.6.343a26.9 26.9 0 0 0-1.407.879l-.8.535zm4.488-3.02a34.149 34.149 0 0 1-.215-1.234l-.062-.41l.371-.043c.207-.024.77-.067 1.25-.094l.875-.047l-.3.32a14.185 14.185 0 0 0-1.423 1.797l-.343.528zm-4.898-2.675c.5-.844 2.074-2.852 2.613-3.329l.156-.136v3.07l-.64.125a30.82 30.82 0 0 0-2.168.527c-.13.04-.125.02.039-.257m4.465-2.477c.011-1.008.039-1.852.062-1.875c.086-.082 3.504.602 3.633.723c.012.011-.09.394-.23.851a33.966 33.966 0 0 0-.38 1.387l-.128.555l-1.028.047a31.06 31.06 0 0 0-1.492.093l-.46.051zm4.879 1.5c0-.035.293-1.082.445-1.602l.144-.488l.891.367c1.184.485 1.156.47.895.578c-.618.258-1.637.75-1.95.946c-.328.203-.425.246-.425.199m3.289-2.937a21.682 21.682 0 0 0-1.254-.555l-.778-.313l.079-.215c.093-.277 1.164-2.421 1.363-2.742l.152-.238l.457.309c.598.402 1.696 1.222 2.059 1.539l.285.25l-.762.87c-.418.481-.844.977-.945 1.102l-.184.23zm-4.785-1.692a45.856 45.856 0 0 0-1.426-.34l-.477-.097l.645-.38c.355-.21.883-.503 1.172-.648c.562-.285 2.257-.984 2.293-.945c.011.012-.118.297-.29.633c-.171.34-.44.91-.601 1.273c-.156.364-.305.676-.328.7c-.02.027-.465-.063-.989-.196zm0 0\\\"/>\"\n\t\t},\n\t\t\"android\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M21.012 91.125c-5.538.003-10.038-4.503-10.039-10.04l-.002-30.739c-.002-5.532 4.497-10.037 10.028-10.038c2.689-.002 5.207 1.041 7.105 2.937s2.942 4.418 2.944 7.099l-.003 30.74a9.924 9.924 0 0 1-2.931 7.094a9.962 9.962 0 0 1-7.102 2.947m-.008-48.12c-4.053-.002-7.338 3.291-7.339 7.341l.005 30.736a7.347 7.347 0 0 0 7.341 7.348a7.338 7.338 0 0 0 7.339-7.347V50.342a7.345 7.345 0 0 0-7.346-7.337\\\"/><path fill=\\\"#fff\\\" d=\\\"m99.742 44.527l-2.698-.001l-66.119.009l-2.699.001l-.002-2.699c-.006-11.08 6.03-21.385 15.917-27.473l-3.844-7.017c-.47-.822-.588-1.863-.314-2.815a3.732 3.732 0 0 1 1.814-2.239a3.605 3.605 0 0 1 1.759-.447c1.362 0 2.609.739 3.267 1.933l4.023 7.329a37.842 37.842 0 0 1 13.099-2.305c4.606-.002 9.023.777 13.204 2.311l4.017-7.341a3.711 3.711 0 0 1 3.263-1.932a3.712 3.712 0 0 1 1.761.438A3.706 3.706 0 0 1 88 4.524a3.69 3.69 0 0 1-.318 2.832l-3.842 7.013c9.871 6.101 15.9 16.398 15.899 27.459zM80.196 15.403l5.123-9.355a1.019 1.019 0 1 0-1.783-.981l-5.176 9.45c-4.354-1.934-9.229-3.021-14.382-3.016c-5.142-.005-10.008 1.078-14.349 3.005l-5.181-9.429a1.009 1.009 0 0 0-1.379-.405c-.497.266-.68.891-.403 1.379l5.125 9.348c-10.07 5.194-16.874 15.084-16.868 26.439l66.118-.008c.003-11.351-6.789-21.221-16.845-26.427M48.94 29.86a2.772 2.772 0 0 1 .003-5.545a2.78 2.78 0 0 1 2.775 2.774a2.775 2.775 0 0 1-2.778 2.771m30.107-.006a2.767 2.767 0 0 1-2.772-2.771a2.788 2.788 0 0 1 2.773-2.778a2.79 2.79 0 0 1 2.767 2.779a2.769 2.769 0 0 1-2.768 2.77m-27.336 96.305c-5.533-.001-10.036-4.501-10.037-10.038l-.002-13.567l-2.638.003a10.453 10.453 0 0 1-7.448-3.082a10.437 10.437 0 0 1-3.083-7.452l-.01-47.627v-2.701h2.699l65.623-.01l2.7-.002v2.699l.007 47.633c.001 5.809-4.725 10.536-10.532 10.535l-2.654.002l.003 13.562c0 5.534-4.502 10.039-10.033 10.039a9.933 9.933 0 0 1-7.098-2.937a9.952 9.952 0 0 1-2.947-7.096v-13.568H61.75v13.565c-.002 5.535-4.503 10.043-10.039 10.042\\\"/><path fill=\\\"#fff\\\" d=\\\"M31.205 92.022a7.82 7.82 0 0 0 7.831 7.837h5.333l.006 16.264c-.001 4.05 3.289 7.341 7.335 7.342a7.342 7.342 0 0 0 7.338-7.348l.001-16.259l9.909-.003l-.001 16.263c.004 4.051 3.298 7.346 7.343 7.338c4.056.003 7.344-3.292 7.343-7.344l-.005-16.259l5.353-.001c4.319.001 7.832-3.508 7.832-7.837l-.009-47.635l-65.621.012zm75.791-.91c-5.536.001-10.039-4.498-10.038-10.036l-.008-30.738c.002-5.537 4.498-10.041 10.031-10.041c5.54-.001 10.046 4.502 10.045 10.038l.003 30.736c.001 5.534-4.498 10.042-10.033 10.041m-.01-48.116c-4.053-.004-7.337 3.287-7.337 7.342l.003 30.737a7.336 7.336 0 0 0 7.342 7.34a7.338 7.338 0 0 0 7.338-7.343l-.008-30.736a7.335 7.335 0 0 0-7.338-7.34\\\"/><path fill=\\\"#A4C439\\\" d=\\\"M21.004 43.005c-4.053-.002-7.338 3.291-7.339 7.341l.005 30.736a7.338 7.338 0 0 0 7.342 7.343a7.33 7.33 0 0 0 7.338-7.342V50.342a7.345 7.345 0 0 0-7.346-7.337m59.192-27.602l5.123-9.355a1.023 1.023 0 0 0-.401-1.388a1.022 1.022 0 0 0-1.382.407l-5.175 9.453c-4.354-1.938-9.227-3.024-14.383-3.019c-5.142-.005-10.013 1.078-14.349 3.005l-5.181-9.429a1.01 1.01 0 0 0-1.378-.406a1.007 1.007 0 0 0-.404 1.38l5.125 9.349c-10.07 5.193-16.874 15.083-16.868 26.438l66.118-.008c.003-11.351-6.789-21.221-16.845-26.427M48.94 29.86a2.772 2.772 0 0 1 .003-5.545a2.78 2.78 0 0 1 2.775 2.774a2.775 2.775 0 0 1-2.778 2.771m30.107-.006a2.77 2.77 0 0 1-2.772-2.771a2.793 2.793 0 0 1 2.773-2.778a2.79 2.79 0 0 1 2.767 2.779a2.767 2.767 0 0 1-2.768 2.77M31.193 44.392l.011 47.635a7.822 7.822 0 0 0 7.832 7.831l5.333.002l.006 16.264c-.001 4.05 3.291 7.342 7.335 7.342c4.056 0 7.342-3.295 7.343-7.347l-.004-16.26l9.909-.003l.004 16.263c0 4.047 3.293 7.346 7.338 7.338c4.056.003 7.344-3.292 7.343-7.344l-.005-16.259l5.352-.004a7.835 7.835 0 0 0 7.836-7.834l-.009-47.635zm83.134 5.943a7.338 7.338 0 0 0-7.341-7.339c-4.053-.004-7.337 3.287-7.337 7.342l.006 30.738a7.334 7.334 0 0 0 7.339 7.339a7.337 7.337 0 0 0 7.338-7.343z\\\"/>\"\n\t\t},\n\t\t\"android-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M13.699 108.645h8.047v17.421h-3.492V112.04l-3.116.012h-.749c-1.74 0-2.707.073-2.9.218c-1.039.282-1.917.882-2.634 1.8c-.772 1.104-1.159 2.203-1.159 3.298c0 1.353.523 2.598 1.57 3.733c.701.668 1.305 1.071 1.813 1.208c.507.258 1.381.387 2.621.387h2.429v3.371h-2.911c-2.159 0-3.983-.568-5.474-1.704c-1.079-.854-1.8-1.627-2.162-2.319c-.902-1.434-1.354-2.9-1.354-4.398v-.507c0-2.094.785-4.015 2.356-5.763c.95-.926 1.728-1.51 2.331-1.752c.436-.242 1.035-.471 1.801-.688c.684-.195 1.679-.291 2.983-.291m25.625 3.479c.346.467.596.866.749 1.196c.226.395.438.926.641 1.595c.241.806.362 1.901.362 3.286v7.865h-3.492v-8.24c0-2.771-1.252-4.623-3.757-5.557c-.572-.161-1.075-.246-1.511-.254c-.435.008-.934.093-1.498.254c-2.505.934-3.757 2.787-3.757 5.557v8.24h-3.504v-7.865c0-1.385.121-2.48.362-3.286c.201-.668.415-1.2.641-1.595c.153-.338.406-.737.761-1.196c1.877-2.304 4.209-3.456 6.995-3.456c2.788 0 5.123 1.152 7.008 3.456m9.798-3.467c2.345 0 3.689.052 4.036.157c.95.113 2.021.512 3.213 1.196c.652.403 1.346 1.019 2.078 1.848c1.305 1.619 1.957 3.459 1.957 5.521a8.461 8.461 0 0 1-.7 3.419c-.918 2.086-2.429 3.592-4.53 4.519c-.975.5-2.473.749-4.494.749h-7.406l-.387-.073v-3.31h8.167c.87 0 1.542-.077 2.018-.229c1.265-.427 2.19-1.063 2.778-1.909c.717-1.071 1.075-2.114 1.075-3.129c0-1.023-.31-2.03-.93-3.021c-.387-.572-.813-1.006-1.28-1.305c-.854-.701-2.074-1.051-3.661-1.051h-8.167v-3.383h6.233zm13.097 0h11.188c1.973 0 3.52.592 4.639 1.776c.5.467.846.918 1.039 1.353c.436.87.652 1.72.652 2.549v.495c0 1.273-.552 2.517-1.654 3.733c-.709.676-1.354 1.111-1.934 1.305c1.466 1.563 2.199 3.628 2.199 6.198h-3.516v-.266c0-1.901-.77-3.411-2.308-4.531c-.878-.62-2.026-.93-3.443-.93h-6.862v-3.359h11.405c1.248 0 2.094-.616 2.537-1.848c.048-.25.08-.459.096-.628c0-.685-.285-1.305-.857-1.86c-.491-.387-1.015-.58-1.57-.58c0-.032-.169-.048-.508-.048H62.219zm28.041.011h.12c2.675 0 4.958 1.096 6.851 3.286c1.225 1.643 1.836 3.431 1.836 5.364v.121c0 2.674-1.119 4.945-3.358 6.813c-1.627 1.208-3.411 1.813-5.352 1.813h-.121c-2.658 0-4.934-1.087-6.826-3.262c-.66-.926-1.123-1.776-1.39-2.549a9.19 9.19 0 0 1-.471-2.839v-.121c0-2.626 1.083-4.873 3.25-6.742c1.466-1.047 2.803-1.635 4.011-1.764c.37-.079.853-.12 1.45-.12m-5.232 8.675c0 1.514.592 2.843 1.776 3.987c1.055.902 2.162 1.353 3.322 1.353h.338c.935 0 1.885-.318 2.852-.955c.998-.733 1.675-1.667 2.029-2.803c.112-.298.193-.81.241-1.534c0-1.482-.575-2.791-1.728-3.927c-1.079-.958-2.263-1.438-3.552-1.438c-1.506 0-2.843.628-4.011 1.885c-.491.645-.802 1.192-.931 1.643c-.223.629-.336 1.225-.336 1.789m15.851-8.675h3.491v17.397h-3.491zm11.61-.011c2.344 0 3.688.052 4.035.157c.95.113 2.021.512 3.213 1.196c.652.403 1.346 1.019 2.078 1.848c1.305 1.619 1.957 3.459 1.957 5.521a8.461 8.461 0 0 1-.7 3.419c-.918 2.086-2.429 3.592-4.53 4.519c-.975.5-2.473.749-4.494.749h-7.406l-.387-.073v-3.31h8.167c.87 0 1.542-.077 2.018-.229c1.265-.427 2.19-1.063 2.778-1.909c.717-1.071 1.075-2.114 1.075-3.129c0-1.023-.31-2.03-.93-3.021c-.387-.572-.813-1.006-1.28-1.305c-.854-.701-2.074-1.051-3.661-1.051h-8.167v-3.383h6.234zM29.19 76.835c-4.484.002-8.128-3.646-8.129-8.13l-.001-24.891c-.001-4.479 3.642-8.127 8.121-8.128a8.072 8.072 0 0 1 5.753 2.377a8.078 8.078 0 0 1 2.384 5.749l-.002 24.892a8.037 8.037 0 0 1-2.373 5.744a8.065 8.065 0 0 1-5.753 2.387m-.006-38.964a5.945 5.945 0 0 0-5.943 5.944l.004 24.889a5.943 5.943 0 1 0 11.887.001V43.812a5.947 5.947 0 0 0-5.948-5.941\\\"/><path fill=\\\"#fff\\\" d=\\\"m92.942 39.104l-2.186-.001l-53.54.007l-2.186.001l-.001-2.186c-.005-8.972 4.883-17.316 12.889-22.246l-3.112-5.682a2.995 2.995 0 0 1 1.214-4.093a2.92 2.92 0 0 1 1.424-.362c1.103 0 2.113.599 2.645 1.565l3.258 5.935a30.63 30.63 0 0 1 10.607-1.866c3.729-.001 7.307.629 10.691 1.871l3.253-5.944a3.003 3.003 0 0 1 2.642-1.564c.496-.001.99.12 1.426.354a3.007 3.007 0 0 1 1.467 1.819a2.977 2.977 0 0 1-.258 2.293l-3.11 5.678c7.993 4.94 12.875 13.279 12.874 22.235zM77.115 15.52l4.148-7.576a.825.825 0 1 0-1.444-.794l-4.191 7.652a28.588 28.588 0 0 0-11.646-2.442a28.521 28.521 0 0 0-11.619 2.434l-4.194-7.635a.818.818 0 0 0-1.117-.328a.816.816 0 0 0-.327 1.117l4.149 7.569c-8.154 4.206-13.663 12.214-13.658 21.409l53.539-.006c.002-9.193-5.497-17.184-13.64-21.4M51.806 27.227a2.245 2.245 0 0 1 .003-4.49a2.251 2.251 0 0 1 2.246 2.247a2.248 2.248 0 0 1-2.249 2.243m24.379-.005a2.24 2.24 0 0 1-2.245-2.244a2.259 2.259 0 0 1 2.245-2.25a2.258 2.258 0 0 1 2.24 2.25a2.241 2.241 0 0 1-2.24 2.244m-22.136 77.983c-4.48-.001-8.126-3.645-8.127-8.128L45.92 86.09l-2.136.002a8.457 8.457 0 0 1-6.031-2.496a8.45 8.45 0 0 1-2.497-6.034l-.008-38.566v-2.188h2.186l53.138-.008l2.187-.001v2.186l.006 38.571c0 4.704-3.826 8.532-8.529 8.531l-2.148.001l.002 10.981c0 4.481-3.646 8.129-8.124 8.129a8.048 8.048 0 0 1-5.748-2.378a8.06 8.06 0 0 1-2.386-5.746V86.088h-3.653v10.985c-.002 4.482-3.648 8.133-8.13 8.132\\\"/><path fill=\\\"#fff\\\" d=\\\"M37.444 77.563a6.332 6.332 0 0 0 6.341 6.346h4.318l.005 13.169a5.948 5.948 0 0 0 5.94 5.945a5.945 5.945 0 0 0 5.941-5.95V83.908l8.024-.002l-.001 13.168a5.946 5.946 0 0 0 11.891-.004l-.004-13.166l4.334-.001a6.346 6.346 0 0 0 6.343-6.346l-.007-38.573l-53.136.009zm61.372-.738c-4.483.001-8.13-3.642-8.129-8.126l-.006-24.89c.001-4.484 3.642-8.131 8.122-8.131c4.486-.001 8.135 3.646 8.135 8.128l.002 24.889c.001 4.481-3.642 8.131-8.124 8.13m-.007-38.962a5.94 5.94 0 0 0-5.941 5.945l.002 24.889a5.94 5.94 0 0 0 5.945 5.943a5.94 5.94 0 0 0 5.941-5.946l-.006-24.889a5.94 5.94 0 0 0-5.941-5.942\\\"/><path fill=\\\"#A4C439\\\" d=\\\"M29.184 37.871a5.945 5.945 0 0 0-5.943 5.944l.004 24.889a5.942 5.942 0 0 0 5.945 5.946a5.936 5.936 0 0 0 5.942-5.945V43.812a5.947 5.947 0 0 0-5.948-5.941M77.115 15.52l4.148-7.576a.829.829 0 0 0-.325-1.124a.827.827 0 0 0-1.119.33l-4.19 7.655a28.504 28.504 0 0 0-11.646-2.444a28.51 28.51 0 0 0-11.619 2.434L48.17 7.16a.82.82 0 0 0-1.116-.329a.816.816 0 0 0-.328 1.117l4.149 7.57c-8.154 4.206-13.663 12.214-13.658 21.409l53.539-.006c.001-9.194-5.498-17.185-13.641-21.401M51.806 27.227a2.245 2.245 0 0 1 .003-4.49a2.251 2.251 0 0 1 2.246 2.247a2.248 2.248 0 0 1-2.249 2.243m24.379-.005a2.243 2.243 0 0 1-2.245-2.244a2.263 2.263 0 0 1 2.245-2.25a2.258 2.258 0 0 1 2.24 2.25a2.24 2.24 0 0 1-2.24 2.244m-38.75 11.771l.008 38.572a6.334 6.334 0 0 0 6.342 6.341l4.318.001l.005 13.169a5.948 5.948 0 0 0 5.94 5.945a5.95 5.95 0 0 0 5.945-5.949l-.003-13.164l8.024-.002l.003 13.168c0 3.277 2.667 5.948 5.942 5.942a5.946 5.946 0 0 0 5.945-5.946L79.9 83.904l4.334-.003a6.345 6.345 0 0 0 6.345-6.344l-.007-38.572zm67.317 4.813a5.941 5.941 0 0 0-5.943-5.943a5.94 5.94 0 0 0-5.941 5.945l.005 24.89a5.937 5.937 0 0 0 5.942 5.942a5.94 5.94 0 0 0 5.941-5.946z\\\"/>\"\n\t\t},\n\t\t\"androidstudio\": {\n\t\t\t\"body\": \"<path fill=\\\"#073042\\\" d=\\\"M51.3 17.7H23.2C17.6 17.7 13 22.3 13 28c-.2 5.5 4.2 10.1 9.7 10.3h28.9z\\\"/><path fill=\\\"#4285F4\\\" d=\\\"M115 109.3H23.2c-5.7 0-10.2-4.6-10.2-10.3V27.9c0 5.7 4.6 10.3 10.2 10.4h76.9s15-1.3 15 10v61z\\\"/><path fill=\\\"#3870B2\\\" d=\\\"M72.2 72.9C76.3 69.8 77.1 64 74 60c-1.7-2.2-4.3-3.6-7.1-3.7h.3c.5-.1 1.1-.1 1.6 0v-5.7c0-.7-.3-1.3-.9-1.6c-.9-.5-2-.2-2.5.7c-.2.3-.3.6-.2 1v5.8c-5 .8-8.5 5.5-7.7 10.6v.1c.4 2.4 1.7 4.6 3.7 6l-16.9 36.2h11l7.8-16.6c.9-2 3.3-2.9 5.4-1.9c.8.4 1.5 1.1 1.9 1.9l8.1 16.6h11.2zm-5.7-1.6c-3.2 0-5.7-2.6-5.7-5.8c0-3.2 2.6-5.7 5.8-5.6c1.5 0 2.8.6 3.9 1.6c2.3 2.2 2.3 5.8.1 8.1c-1 1-2.5 1.7-4.1 1.7\\\"/><path fill=\\\"#FFF\\\" d=\\\"M45.2 22.7h39.4v7.2H45.2z\\\"/><path fill=\\\"#073042\\\" d=\\\"M63.5 59.8c3.1 0 5.7 2.6 5.6 5.8c0 3.1-2.6 5.7-5.8 5.6c-3.1 0-5.6-2.6-5.6-5.7c0-1.5.6-2.9 1.7-4s2.6-1.7 4.1-1.7m2.2-3.3v-6c0-.7-.3-1.3-.9-1.6c-.9-.5-2-.2-2.5.7c-.2.3-.3.6-.2 1v5.8c-5 .8-8.5 5.5-7.7 10.6v.1c.4 2.4 1.7 4.6 3.7 6l-21.3 45.7c-.8 1.6-.7 3.6.4 5.1c1.6 2.3 4.7 2.9 7 1.3c.8-.5 1.4-1.3 1.8-2.1l14.2-30.4c.9-2 3.3-2.9 5.4-1.9c.8.4 1.5 1.1 1.9 1.9L82 122.8c1.2 2.5 4.2 3.5 6.7 2.3c2.5-1.2 3.5-4.2 2.3-6.7L69.1 72.9c4-3.2 4.7-9.1 1.5-13.1c-1.2-1.6-2.9-2.7-4.9-3.3\\\"/><path fill=\\\"#3DDC84\\\" d=\\\"M78.8 29.1c-1.5 0-2.7-1.1-2.7-2.6c0-.7.3-1.5.8-2c1.1-1 2.7-1 3.8 0c.5.5.8 1.2.8 1.9c-.1 1.5-1.2 2.6-2.7 2.7M49.2 29c-1.5 0-2.7-1.2-2.7-2.6c0-.7.3-1.4.8-1.9c.9-1.1 2.6-1.3 3.7-.4h.1c1.1 1 1.2 2.7.2 3.8l-.3.4c-.5.5-1.2.8-1.9.8m30.5-16.2l5.3-9.2c.3-.5.1-1.1-.3-1.5c-.5-.2-1-.1-1.3.3L77.8 12C69 8.1 59 8.1 50.3 12l-5.4-9.4c-.2-.3-.6-.6-1-.6s-.8.2-1 .6c-.2.3-.2.8 0 1.1l5.4 9.2C38.9 18 32.8 27.6 31.9 38.2h64.2c-.8-10.7-7-20.2-16.4-25.3\\\"/><path fill=\\\"#073042\\\" d=\\\"M105.6 58.1h-4.2c-.2.1-.4.3-.4.6v66.5c0 .3.2.5.5.5h4.4c5.1 0 9.2-4.2 9.2-9.2V48.8c0 5.1-4.1 9.2-9.2 9.2h-.3z\\\"/>\"\n\t\t},\n\t\t\"androidstudio-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M7.6 50c1.4 0 2.8.6 3.7 1.8v-1.5h2.5v11.5h-1.7c-.4 0-.8-.3-.8-.8v-.8c-.9 1.1-2.3 1.8-3.7 1.7C4.5 61.8 2 59.2 2 56v-.1c-.1-3.1 2.3-5.8 5.6-5.9m.4 2.3c-1.9 0-3.5 1.6-3.4 3.5v.2c-.2 1.9 1.3 3.6 3.2 3.7c1.9.2 3.6-1.3 3.7-3.2V56c.1-1.9-1.3-3.5-3.2-3.7zm8.6-2.1h2.5v1.5c.8-1.2 2.1-1.9 3.5-1.8c2.7 0 4.4 1.9 4.4 4.8v6.9h-1.7c-.4 0-.8-.3-.8-.8v-5.7c0-1.8-.9-2.9-2.4-2.9c-1.7 0-3 1.3-3 3.8v5.7h-1.7c-.4 0-.8-.4-.8-.8zm18-.3c1.4 0 2.8.6 3.7 1.7v-7.3h2.5v17.3h-1.6c-.4 0-.8-.3-.8-.8V60c-.9 1.1-2.3 1.8-3.7 1.8c-3.2-.1-5.6-2.8-5.5-5.9v-.1c-.2-3 2.2-5.7 5.4-5.9m.5 2.3c-1.9 0-3.5 1.6-3.4 3.5v.2c-.2 1.9 1.3 3.6 3.2 3.7c1.9.2 3.6-1.3 3.7-3.2v-.5c.1-1.9-1.3-3.5-3.2-3.7zm8.7-2.1h2.5v2.1c.4-1.3 1.7-2.2 3-2.2c.3 0 .7 0 1 .1v2.6c-.4-.1-.8-.2-1.3-.2c-1.4 0-2.8 1.2-2.8 3.5v5.6h-1.8c-.4 0-.8-.3-.8-.8zM57.2 62c-3.3 0-5.9-2.7-5.9-6s2.7-5.9 6-5.9s5.9 2.7 5.9 6c0 3.2-2.7 5.9-5.9 5.9zm0-2.4c1.9 0 3.5-1.5 3.5-3.5V56c0-1.9-1.6-3.5-3.5-3.5s-3.5 1.6-3.5 3.5c-.1 1.9 1.4 3.5 3.3 3.6zm9.3-11.9c-.9 0-1.7-.8-1.7-1.7c0-.9.8-1.7 1.7-1.7c.9 0 1.7.8 1.7 1.7c0 .9-.7 1.7-1.7 1.7m-1.2 2.5h2.5v11.5h-1.7c-.2 0-.4-.1-.6-.2c-.1-.2-.2-.4-.2-.6zm10.2-.2c1.5 0 2.9.6 3.8 1.8v-7.4h2.5v17.3H80c-.4 0-.8-.3-.8-.8v-.8c-.9 1.1-2.2 1.8-3.7 1.8c-3.2-.1-5.7-2.7-5.6-5.9v-.1c-.2-3.1 2.3-5.8 5.6-5.9c-.1-.1-.1-.1 0 0m.4 2.2c-1.9 0-3.4 1.6-3.4 3.5v.2c-.2 1.9 1.3 3.6 3.2 3.7s3.6-1.3 3.7-3.2v-.5c.1-1.9-1.3-3.5-3.2-3.7zM29.8 79.7v-5.6h-2.4v-2.3h2.4v-3.2h2.5v3.2h3.3v2.3h-3.3v5.2c0 1.5.6 2 2 2c.5 0 .9-.1 1.4-.2v2.3c-.6.2-1.3.3-1.9.3c-2 .2-3.8-1.2-4-3.2c-.1-.4-.1-.6 0-.8m39.7-2.1c0-3.4 2.7-6.1 6.1-6.1c3.4 0 6.1 2.7 6.1 6.1c0 3.4-2.7 6.1-6.1 6.1c-3.3 0-6.1-2.6-6.1-5.9zm9.6 0c-.1-2-1.7-3.6-3.7-3.5c-2 .1-3.6 1.7-3.5 3.7s1.7 3.6 3.7 3.5c1.9-.1 3.4-1.6 3.5-3.5zm-59.3 2.3c.2 1.1 1.3 1.9 2.4 1.7c1.1 0 1.9-.5 1.9-1.2s-.5-1.2-1.7-1.5l-1.9-.5c-1.7-.3-3-1.8-3-3.5c0-2 1.7-3.3 4.3-3.3s4.2 1.4 4.5 3.5h-2.5c-.2-.9-1-1.5-1.9-1.4c-1 0-1.7.4-1.7 1.2s.5 1.1 1.6 1.4l2 .5c2.1.5 3.1 1.7 3.1 3.5c0 2.2-1.9 3.4-4.6 3.4c-1.3 0-2.5-.3-3.5-1.1c-.9-.6-1.5-1.6-1.5-2.7zm25.4 1.9c-.7 1.2-2 1.9-3.4 1.8c-2.7 0-4.3-1.9-4.3-4.9v-7h2.6v6.5c0 1.9.8 3 2.3 3c1.7 0 2.8-1.4 2.8-3.8v-5.7h2.6v11.6h-2.6zm14 0c-.9 1.1-2.2 1.8-3.6 1.8c-3.2-.1-5.7-2.7-5.6-5.8v-.2c-.2-3.1 2.3-5.8 5.4-6h.2c1.4 0 2.8.6 3.7 1.8v-7.3h2.5v17.3h-2.6zm-5.7-1.6c.6.7 1.5 1.1 2.5 1.1c.9 0 1.8-.4 2.5-1.1c1.3-1.5 1.3-3.8 0-5.3c-.6-.7-1.5-1.1-2.5-1.1c-.9 0-1.9.3-2.5 1.1c-1.3 1.6-1.3 3.8 0 5.3m12.4-14.3c.9.1 1.6.9 1.6 1.8c-.1.8-.7 1.5-1.6 1.6c-.6 0-1.2-.3-1.5-.8c-.3-.5-.3-1.2 0-1.7s.9-.9 1.5-.9m1.3 5.9v11.6h-2.5V71.8z\\\"/><path fill=\\\"#073042\\\" d=\\\"M105.7 49.3h-8.9c-1.8 0-3.3 1.5-3.3 3.3c-.1 1.8 1.3 3.2 3.1 3.3h9.2z\\\"/><path fill=\\\"#4285F4\\\" d=\\\"M125.9 78.4H96.7c-1.8 0-3.3-1.5-3.3-3.3V52.5c0 1.8 1.4 3.3 3.3 3.3h24.4s4.8-.4 4.8 3.2z\\\"/><path fill=\\\"#3870B2\\\" d=\\\"M112.3 66.8c1.3-1 1.6-2.8.6-4.1c-.5-.7-1.4-1.1-2.3-1.2h.6v-1.8c0-.2-.1-.4-.3-.5c-.3-.2-.6-.1-.8.2c-.1.1-.1.2-.1.3v1.9c-1.6.2-2.7 1.8-2.5 3.4c.1.8.5 1.5 1.2 1.9l-5.4 11.5h3.5l2.5-5.3c.3-.6 1.1-.9 1.7-.6c.3.1.5.3.6.6l2.6 5.3h3.6zm-1.8-.5c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8c.5 0 .9.2 1.2.5c.7.7.7 1.9 0 2.6c-.2.3-.7.5-1.2.5\\\"/><path fill=\\\"#FFF\\\" d=\\\"M103.7 50.9h12.5v2.3h-12.5z\\\"/><path fill=\\\"#073042\\\" d=\\\"M109.5 62.7c1 0 1.8.8 1.8 1.8s-.8 1.8-1.8 1.8s-1.8-.8-1.8-1.8c0-.5.2-.9.5-1.3c.4-.3.8-.5 1.3-.5m.7-1.1v-1.9c0-.2-.1-.4-.3-.5c-.3-.2-.6-.1-.8.2c-.1.1-.1.2-.1.3v1.9c-1.6.2-2.7 1.8-2.5 3.4c.1.8.5 1.5 1.2 1.9l-6.8 14.5c-.3.5-.2 1.1.1 1.6c.5.7 1.5.9 2.2.4c.2-.2.4-.4.6-.7l4.5-9.7c.3-.6 1.1-.9 1.7-.6c.3.1.5.3.6.6l4.6 9.6c.4.8 1.3 1.1 2.1.7s1.1-1.3.7-2.1l-7-14.5c1.3-1 1.5-2.9.5-4.2c-.1-.3-.6-.7-1.3-.9\\\"/><path fill=\\\"#3DDC84\\\" d=\\\"M114.4 52.9c-.5 0-.9-.4-.9-.8c0-.2.1-.5.3-.6c.3-.3.9-.3 1.2 0c.2.2.2.4.3.6c-.1.4-.4.8-.9.8m-9.4 0c-.5 0-.9-.4-.9-.8c0-.2.1-.5.3-.6c.3-.4.8-.4 1.2-.1c.4.3.4.9.1 1.2l-.1.1c-.2.1-.4.2-.6.2m9.7-5.1l1.7-2.9c.1-.2 0-.4-.1-.5c-.1-.1-.3 0-.4.1l-1.8 3c-2.8-1.2-6-1.2-8.7 0l-1.7-3c-.1-.1-.2-.2-.3-.2c-.1 0-.2.1-.3.2c-.1.1-.1.2 0 .4l1.7 2.9c-3 1.6-4.9 4.7-5.2 8H120c-.4-3.4-2.3-6.4-5.3-8\\\"/><path fill=\\\"#073042\\\" d=\\\"M123 62.1h-1.3c-.1 0-.1.1-.1.2v21.2c0 .1.1.2.2.2h1.4c1.6 0 2.9-1.3 2.9-2.9V59.1c-.1 1.7-1.4 3-3.1 3\\\"/>\"\n\t\t},\n\t\t\"angular\": {\n\t\t\t\"body\": \"<path fill=\\\"#DD0031\\\" d=\\\"m64 15.36l-47.668 17l7.27 63.027L64 117.762l40.398-22.375l7.27-63.028Zm0 0\\\"/><path fill=\\\"#C3002F\\\" d=\\\"M64 15.36v11.367v-.051v91.086l40.398-22.375l7.27-63.028Zm0 0\\\"/><path fill=\\\"#FFF\\\" d=\\\"M64 26.676L34.203 93.492h11.11L51.3 78.54h25.293l5.992 14.953h11.11Zm8.703 42.648H55.297L64 48.383Zm0 0\\\"/>\"\n\t\t},\n\t\t\"angular-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#FFF\\\" d=\\\"M41.4 71.2V57.7h1.7l8.3 10.9V57.7H53v13.5h-1.7l-8.3-11v11zm25.1-.5c-1.1.4-2.3.6-3.5.6c-4.9 0-7.3-2.3-7.3-7c0-4.4 2.4-6.7 7.1-6.7c1.4 0 2.6.2 3.8.6v1.5c-1.2-.5-2.4-.7-3.6-.7c-3.7 0-5.5 1.8-5.5 5.2c0 3.8 1.8 5.6 5.5 5.6c.6 0 1.2-.1 1.9-.2v-4.5h1.7zm2.8-4.7v-8.3H71V66c0 2.6 1.3 3.9 3.9 3.9s3.9-1.3 3.9-3.9v-8.3h1.7V66c0 3.5-1.9 5.3-5.6 5.3s-5.6-1.8-5.6-5.3m16.1-8.3v12.1h7.1v1.4h-8.8V57.7zM95 71.2h-1.8l6.7-15.3l6.7 15.3h-1.9L103 67h-4.5l.5-1.4h3.4l-2.5-6.1zm13.5 0V57.7h5.8c2.6 0 3.9 1.1 3.9 3.2c0 1.8-1.3 3.1-3.8 3.9l4.6 6.4h-2.3l-4.3-6.1V64c2.6-.4 3.9-1.4 3.9-3c0-1.2-.7-1.9-2.1-1.9h-3.9v12.1z\\\"/><path fill=\\\"#DD0031\\\" d=\\\"M23 49.1L8.9 54L11 72.3l12 6.6l11.9-6.5L37 54z\\\"/><path fill=\\\"#C3002f\\\" d=\\\"M23 49.1v29.8l11.9-6.5L37 54z\\\"/><path fill=\\\"#FFF\\\" d=\\\"m23 52.4l-8.8 19.4h3.3l1.8-4.4h7.5l1.8 4.4h3.3zm2.6 12.4h-5.1l2.6-6.1z\\\"/>\"\n\t\t},\n\t\t\"angularjs\": {\n\t\t\t\"body\": \"<path fill=\\\"#B3B3B3\\\" d=\\\"M63.81 1.026L4.553 21.88l9.363 77.637l49.957 27.457l50.214-27.828l9.36-77.635z\\\"/><path fill=\\\"#A6120D\\\" d=\\\"M117.536 25.998L63.672 7.629v112.785l45.141-24.983z\\\"/><path fill=\\\"#DD1B16\\\" d=\\\"m11.201 26.329l8.026 69.434l44.444 24.651V7.627z\\\"/><path fill=\\\"#F2F2F2\\\" d=\\\"m78.499 67.67l-14.827 6.934H48.044l-7.347 18.374l-13.663.254l36.638-81.508zm-1.434-3.491L63.77 37.858L52.864 63.726h10.807z\\\"/><path fill=\\\"#B3B3B3\\\" d=\\\"m63.671 11.724l.098 26.134l12.375 25.888H63.698l-.027 10.841l17.209.017l8.042 18.63l13.074.242z\\\"/>\"\n\t\t},\n\t\t\"angularjs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#ccc\\\" d=\\\"M33.427 71.28V58.318h1.677l7.932 10.442V58.318h1.585V71.28h-1.677l-7.93-10.533V71.28zm24.064-.508c-1.045.399-2.172.599-3.381.599c-4.694 0-7.042-2.251-7.042-6.753c0-4.26 2.266-6.391 6.797-6.391c1.301 0 2.509.182 3.626.545v1.45a9.653 9.653 0 0 0-3.444-.635c-3.534 0-5.301 1.678-5.301 5.03c0 3.595 1.738 5.394 5.22 5.394c.556 0 1.172-.073 1.85-.219v-4.404h1.676zm2.675-4.495v-7.958h1.676v7.958c0 2.489 1.239 3.735 3.717 3.735c2.477 0 3.716-1.246 3.716-3.735v-7.958h1.677v7.958c0 3.396-1.798 5.095-5.393 5.095s-5.393-1.698-5.393-5.095m15.453-7.959v11.603H82.4v1.359h-8.457V58.318zm9.2 12.962h-1.74l6.444-14.671l6.445 14.671H94.11l-1.677-4.079h-4.287l.462-1.358h3.264l-2.421-5.874zm12.916 0V58.318h5.529c2.466 0 3.698 1.037 3.698 3.109c0 1.687-1.205 2.935-3.616 3.743l4.45 6.109h-2.212l-4.123-5.828v-1.096c2.477-.394 3.715-1.346 3.715-2.855c0-1.196-.688-1.795-2.065-1.795h-3.699V71.28zm16.343-12.962v9.228c0 2.489-1.465 3.734-4.396 3.734v-1.359c1.813 0 2.72-.793 2.72-2.375v-9.228zm2.991 12.509v-1.541c1.36.483 2.828.726 4.405.726c2.23 0 3.346-.815 3.346-2.449c0-1.387-.823-2.084-2.467-2.084h-1.668c-2.713 0-4.07-1.177-4.07-3.534c0-2.478 1.738-3.717 5.214-3.717c1.51 0 2.915.183 4.214.545v1.541c-1.3-.484-2.704-.727-4.214-.727c-2.357 0-3.535.786-3.535 2.357c0 1.39.797 2.084 2.392 2.084h1.668c2.761 0 4.143 1.18 4.143 3.534c0 2.539-1.674 3.809-5.021 3.809c-1.579 0-3.046-.182-4.407-.544\\\"/><path d=\\\"M33.852 70.856v-12.96h1.676l7.931 10.441V57.896h1.587v12.96h-1.677l-7.931-10.533v10.533zm24.064-.507c-1.045.399-2.172.599-3.381.599c-4.694 0-7.043-2.25-7.043-6.752c0-4.261 2.267-6.392 6.799-6.392c1.299 0 2.508.183 3.625.545v1.45a9.653 9.653 0 0 0-3.444-.635c-3.534 0-5.302 1.678-5.302 5.03c0 3.596 1.74 5.394 5.221 5.394c.556 0 1.173-.072 1.85-.218v-4.405h1.676zm2.674-4.495v-7.959h1.676v7.958c0 2.489 1.239 3.735 3.717 3.735s3.717-1.246 3.717-3.735v-7.958h1.676v7.958c0 3.397-1.797 5.095-5.393 5.095s-5.393-1.698-5.393-5.094m15.453-7.959v11.602h6.78v1.359h-8.456V57.895zm9.201 12.961h-1.741l6.445-14.671l6.445 14.671h-1.86l-1.677-4.079H88.57l.463-1.359h3.262l-2.42-5.874zm12.915 0v-12.96h5.529c2.466 0 3.697 1.036 3.697 3.108c0 1.686-1.204 2.935-3.615 3.743l4.45 6.109h-2.212l-4.123-5.827v-1.098c2.477-.394 3.716-1.345 3.716-2.855c0-1.196-.689-1.794-2.067-1.794h-3.698v11.574z\\\"/><path fill=\\\"#A6120D\\\" d=\\\"M114.502 57.895v9.228c0 2.49-1.465 3.734-4.396 3.734v-1.359c1.813 0 2.72-.793 2.72-2.375v-9.228zm2.991 12.508v-1.541c1.36.482 2.827.726 4.405.726c2.229 0 3.345-.816 3.345-2.448c0-1.389-.822-2.084-2.466-2.084h-1.668c-2.713 0-4.07-1.179-4.07-3.535c0-2.478 1.737-3.717 5.213-3.717c1.511 0 2.915.183 4.215.544v1.542c-1.3-.484-2.704-.727-4.215-.727c-2.356 0-3.535.786-3.535 2.357c0 1.389.797 2.084 2.393 2.084h1.668c2.761 0 4.143 1.179 4.143 3.535c0 2.538-1.674 3.808-5.022 3.808c-1.578 0-3.046-.182-4.406-.544\\\"/><path fill=\\\"#B3B3B3\\\" d=\\\"M16.218 47.913L1.08 53.24l2.392 19.833l12.762 7.014l12.828-7.108l2.391-19.833z\\\"/><path fill=\\\"#A6120D\\\" d=\\\"M29.942 54.292L16.183 49.6v28.811l11.531-6.382z\\\"/><path fill=\\\"#DD1B16\\\" d=\\\"m2.778 54.377l2.051 17.737l11.354 6.297V49.6z\\\"/><path fill=\\\"#F2F2F2\\\" d=\\\"m19.971 64.938l-3.788 1.771H12.19l-1.877 4.694l-3.49.064l9.359-20.821zm-.367-.892l-3.396-6.724l-2.786 6.608h2.761z\\\"/><path fill=\\\"#B3B3B3\\\" d=\\\"m16.183 50.646l.024 6.676l3.162 6.614h-3.18l-.006 2.769l4.395.004l2.055 4.759l3.34.062z\\\"/>\"\n\t\t},\n\t\t\"angularmaterial\": {\n\t\t\t\"body\": \"<path fill=\\\"#ffa726\\\" d=\\\"M63.934.656L5.25 21.66l8.863 77.719l49.82 27.77l49.887-27.77l9.059-77.719Zm0 0\\\"/><path fill=\\\"#fb8c00\\\" d=\\\"M63.934.656v126.492l49.886-27.77l9.059-77.718Zm0 0\\\"/><path fill=\\\"#ffe0b2\\\" d=\\\"m72.797 96.688l-41.55-20.02l23.827-14.703L96.887 82.05Zm0 0\\\"/><path fill=\\\"#fff3e0\\\" d=\\\"m72.797 81.262l-41.55-20.086l23.827-14.637l41.813 20.086Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"m72.797 65.84l-41.55-20.09l23.827-14.703l41.813 20.086Zm0 0\\\"/>\"\n\t\t},\n\t\t\"ansible\": {\n\t\t\t\"body\": \"<path fill=\\\"#1A1918\\\" d=\\\"M126 64c0 34.2-27.8 62-62 62S2 98.2 2 64S29.8 2 64 2s62 27.8 62 62\\\"/><path fill=\\\"#FFF\\\" d=\\\"m65 39.9l16 39.6l-24.1-19.1zm28.5 48.7L68.9 29.2c-.7-1.7-2.1-2.6-3.8-2.6c-1.7 0-3.2.9-3.9 2.6L34 94.3h9.3L54 67.5l32 25.9c1.3 1 2.2 1.5 3.4 1.5c2.4 0 4.5-1.8 4.5-4.4c.1-.5-.1-1.2-.4-1.9\\\"/>\"\n\t\t},\n\t\t\"ansible-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#1A1918\\\" d=\\\"M40.1 125.86c-.2 0-.4-.1-.6-.3l-6.9-9v9.2H31v-11.3c0-.5.4-.8.8-.8c.2 0 .5.1.6.3l6.9 9v-9.2h1.6v11.3c0 .5-.4.8-.8.8m12.9.1c-1.6 0-3.2-.3-4.7-.9l.4-1.3c1.4.5 2.9.8 4.4.8c2 0 3-.7 3-1.7c0-.9-.8-1.4-3.6-2.7c-2.8-1.3-3.8-2.1-3.8-3.8c0-2 1.6-2.9 4.5-2.9c1.2 0 3.1.3 4.2.6l-.2 1.3c-1.2-.3-2.7-.5-3.9-.5c-2.1 0-2.9.4-2.9 1.4c0 1 .6 1.4 3.5 2.7c3.1 1.4 3.9 2.1 3.9 3.6c-.1 2.4-2.2 3.4-4.8 3.4m12.1-12.2h1.6v12h-1.6zm15.4 6.6h-4v4.1h4c1.4 0 2.2-.9 2.2-2.1c0-1.1-.9-2-2.2-2m-.8-5.2h-3.2v3.8h3.2c1.3 0 2.2-.8 2.2-2c0-1.1-.8-1.8-2.2-1.8m.8 10.6h-4.8c-.5 0-.8-.4-.8-.8v-10.4c0-.4.4-.8.8-.8h4c2.5 0 3.9 1.2 3.9 3.1c0 1-.6 2-1.5 2.5c1.4.4 2.3 1.6 2.3 2.9c-.1 2-1.7 3.5-3.9 3.5m11.6 0c-.4 0-.8-.4-.8-.8v-11.2h1.6v10.6h6.4v1.5zm18.3.2c-3.3 0-5.3-1.2-5.3-3.7c0-1.2.7-2.3 1.9-2.8c-1-.7-1.6-1.6-1.6-2.6c0-2.2 1.7-3.3 5-3.3c1.1 0 2.6.1 3.9.4l-.2 1.3c-1.4-.2-2.6-.3-3.8-.3c-2.1 0-3.2.6-3.2 2c0 1.1 1 2 2.4 2h2.8c.4 0 .7.3.7.7c0 .4-.3.7-.7.7h-3c-1.6 0-2.6.8-2.6 2c0 1.8 1.6 2.3 3.6 2.3c1.1 0 2.6-.1 3.8-.4l.2 1.3c-1 .2-2.6.4-3.9.4m-91.4-9.9l2.8 7.1l-4.3-3.4zm5 8.7l-4.4-10.7c-.1-.3-.4-.5-.7-.5s-.6.2-.7.5l-4.8 11.7H15l1.9-4.8l5.7 4.6c.2.2.4.3.6.3c.4 0 .8-.3.8-.8c.1 0 .1-.2 0-.3m90.5-72.36c0 27.8-22.6 50.4-50.4 50.4c-27.8 0-50.4-22.6-50.4-50.4C13.7 24.6 36.3 2 64.1 2c27.8 0 50.4 22.6 50.4 50.4\\\"/><path fill=\\\"#FFF\\\" d=\\\"M64.9 32.8L78 65L58.3 49.5zm23.2 39.6l-20-48.3c-.6-1.4-1.7-2.1-3.1-2.1c-1.4 0-2.6.7-3.2 2.1l-22 53h7.5L56 55.2l26 21c1 .8 1.8 1.2 2.8 1.2c2 0 3.7-1.5 3.7-3.6c0-.3-.2-.8-.4-1.4\\\"/>\"\n\t\t},\n\t\t\"antdesign\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconAntdesign0\\\" x1=\\\".621\\\" x2=\\\"1.082\\\" y1=\\\"0\\\" y2=\\\".379\\\" gradientTransform=\\\"matrix(94.54297 0 0 127.17188 .418 .406)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#4285eb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2ec7ff\\\"/></linearGradient><linearGradient id=\\\"deviconAntdesign1\\\" x1=\\\".696\\\" x2=\\\".54\\\" y1=\\\"0\\\" y2=\\\"1.085\\\" gradientTransform=\\\"matrix(94.54297 0 0 127.17188 .418 .406)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#29cdff\\\"/><stop offset=\\\".379\\\" stop-color=\\\"#148eff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0a60ff\\\"/></linearGradient><linearGradient id=\\\"deviconAntdesign2\\\" x1=\\\".697\\\" x2=\\\".167\\\" y1=\\\"-.13\\\" y2=\\\"1.174\\\" gradientTransform=\\\"matrix(31.49219 0 0 49.5586 96.176 39.402)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fa816e\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#f74a5c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f51d2c\\\"/></linearGradient><linearGradient id=\\\"deviconAntdesign3\\\" x1=\\\".681\\\" x2=\\\".304\\\" y1=\\\"-.357\\\" y2=\\\"1.149\\\" gradientTransform=\\\"matrix(30.21094 0 0 30.1836 49.227 49.188)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fa8e7d\\\"/><stop offset=\\\".513\\\" stop-color=\\\"#f74a5c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f51d2c\\\"/></linearGradient></defs><path fill=\\\"url(#deviconAntdesign0)\\\" d=\\\"M58.617 2.672L2.676 58.566a7.672 7.672 0 0 0 0 10.868l55.941 55.894a7.684 7.684 0 0 0 10.871 0l23.457-23.437a6.891 6.891 0 0 0 0-9.746a6.9 6.9 0 0 0-9.754 0l-17.78 17.765c-.75.75-1.888.75-2.634 0L18.102 65.277c-.747-.75-.747-1.886 0-2.632l44.675-44.637c.746-.746 1.883-.746 2.633 0l17.781 17.765a6.9 6.9 0 0 0 9.754 0a6.891 6.891 0 0 0 0-9.746L69.492 2.594c-3.02-2.938-7.879-2.914-10.875.078m0 0\\\"/><path fill=\\\"url(#deviconAntdesign1)\\\" d=\\\"M58.617 2.672L2.676 58.566a7.672 7.672 0 0 0 0 10.868l55.941 55.894a7.684 7.684 0 0 0 10.871 0l23.457-23.437a6.891 6.891 0 0 0 0-9.746a6.9 6.9 0 0 0-9.754 0l-17.78 17.765c-.75.75-1.888.75-2.634 0L18.102 65.277c-.747-.75-.747-1.886 0-2.632l44.675-44.637c1.864-1.606 4.903-4.86 9.371-5.621c3.317-.567 6.946.68 10.883 3.734c-2.633-2.633-7.144-7.14-13.539-13.527c-3.02-2.938-7.879-2.914-10.875.078m0 0\\\"/><path fill=\\\"url(#deviconAntdesign2)\\\" d=\\\"M98.36 86.945a6.9 6.9 0 0 0 9.753 0l17.301-17.285a7.667 7.667 0 0 0 0-10.863l-17.453-17.379a6.91 6.91 0 0 0-9.762.012a6.884 6.884 0 0 0 0 9.746l11.79 11.777a1.826 1.826 0 0 1 0 2.629l-11.63 11.621a6.88 6.88 0 0 0 0 9.742Zm0 0\\\"/><path fill=\\\"url(#deviconAntdesign3)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M79.438 64.281c0-8.336-6.762-15.094-15.106-15.094c-8.34 0-15.105 6.758-15.105 15.094c0 8.332 6.765 15.09 15.105 15.09c8.344 0 15.106-6.758 15.106-15.09m0 0\\\"/>\"\n\t\t},\n\t\t\"antdesign-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconAntdesignWordmark0\\\" x1=\\\"1.008\\\" x2=\\\"-.136\\\" y1=\\\".517\\\" y2=\\\".469\\\" gradientTransform=\\\"matrix(76.74219 0 0 13.48438 50.727 13.668)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0d1a26\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#283e52\\\"/></linearGradient><linearGradient id=\\\"deviconAntdesignWordmark1\\\" x1=\\\".621\\\" x2=\\\"1.082\\\" y1=\\\"0\\\" y2=\\\".379\\\" gradientTransform=\\\"matrix(29.55469 0 0 37.57813 1.25 1.195)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#4285eb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2ec7ff\\\"/></linearGradient><linearGradient id=\\\"deviconAntdesignWordmark2\\\" x1=\\\".696\\\" x2=\\\".54\\\" y1=\\\"0\\\" y2=\\\"1.085\\\" gradientTransform=\\\"matrix(29.55469 0 0 37.57813 1.25 1.195)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#29cdff\\\"/><stop offset=\\\".379\\\" stop-color=\\\"#148eff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0a60ff\\\"/></linearGradient><linearGradient id=\\\"deviconAntdesignWordmark3\\\" x1=\\\".697\\\" x2=\\\".167\\\" y1=\\\"-.13\\\" y2=\\\"1.174\\\" gradientTransform=\\\"matrix(9.35938 0 0 13.9375 31.191 13.082)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fa816e\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#f74a5c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f51d2c\\\"/></linearGradient><linearGradient id=\\\"deviconAntdesignWordmark4\\\" x1=\\\".681\\\" x2=\\\".304\\\" y1=\\\"-.357\\\" y2=\\\"1.149\\\" gradientTransform=\\\"matrix(9.67578 0 0 9.23828 16.156 15.46)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fa8e7d\\\"/><stop offset=\\\".513\\\" stop-color=\\\"#f74a5c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f51d2c\\\"/></linearGradient></defs><path fill=\\\"url(#deviconAntdesignWordmark0)\\\" d=\\\"M58.348 24.203h2.355l-3.687-10.535H54.41l-3.683 10.535h2.277l.809-2.555h3.726zm-2.7-8.52h.051l1.36 4.313h-2.766zm6.25 8.52h2.149v-4.492c0-1.012.61-1.715 1.57-1.715c.965 0 1.45.586 1.45 1.606v4.601h2.144v-5.047c0-1.832-.984-2.926-2.734-2.926c-1.211 0-2.043.57-2.461 1.54h-.043v-1.395h-2.07v7.828zm9.543-9.629v1.801h-1.109v1.605h1.11v4.114c0 1.523.722 2.136 2.574 2.136c.433 0 .8-.035 1.02-.085v-1.57a3.388 3.388 0 0 1-.52.038c-.633 0-.926-.285-.926-.883v-3.746h1.453V16.38H73.59v-1.805zm8.235-.906v10.535h4.05c3.18 0 5.051-1.965 5.051-5.308c0-3.344-1.87-5.227-5.05-5.227zm2.219 1.816h1.566c1.953 0 3.055 1.215 3.055 3.418c0 2.278-1.07 3.477-3.055 3.477h-1.566zm11.96 2.301c.954 0 1.61.688 1.653 1.688h-3.344c.074-.98.75-1.688 1.691-1.688m1.68 4.024c-.2.597-.8.984-1.586.984c-1.094 0-1.804-.766-1.804-1.887v-.129h5.425v-.652c0-2.379-1.445-3.918-3.738-3.918c-2.328 0-3.797 1.621-3.797 4.117c0 2.504 1.453 4.043 3.88 4.043c1.944 0 3.358-1.027 3.593-2.558zm3.309-3.133c0 1.152.761 1.926 2.254 2.262l1.453.324c.707.168.972.386.972.781c0 .508-.492.832-1.308.832c-.852 0-1.375-.379-1.477-1.04h-2.093c.117 1.528 1.41 2.536 3.511 2.536c2.078 0 3.504-1.016 3.504-2.555c0-1.168-.64-1.789-2.219-2.14l-1.503-.32c-.692-.165-1.032-.426-1.032-.813c0-.504.485-.84 1.227-.84c.797 0 1.3.387 1.347 1.016h1.973c-.027-1.52-1.312-2.512-3.289-2.512c-2.02 0-3.32.977-3.32 2.469m15.726 3.863c-1.066 0-1.726-.836-1.726-2.266c0-1.421.668-2.312 1.726-2.312c1.07 0 1.754.906 1.754 2.312c0 1.418-.683 2.266-1.754 2.266m-.039 4.613c2.36 0 3.93-1.191 3.93-3.058v-7.719h-2.113v1.367h-.04c-.41-.898-1.3-1.492-2.43-1.492c-2 0-3.233 1.527-3.233 4.008c0 2.445 1.27 3.922 3.195 3.922c1.14 0 2.066-.57 2.433-1.403h.043v1.375c0 .903-.617 1.516-1.726 1.516c-.817 0-1.43-.371-1.602-.91h-2.101c.172 1.394 1.574 2.394 3.644 2.394m5.63-2.949v-7.828h2.07v1.395h.042c.422-.973 1.25-1.54 2.461-1.54c1.75 0 2.735 1.094 2.735 2.926v5.047h-2.145v-4.601c0-1.02-.484-1.606-1.449-1.606c-.96 0-1.57.703-1.57 1.715v4.492h-2.149zm0 0\\\" transform=\\\"translate(0 42)\\\"/><path fill=\\\"#0f1e2b\\\" fill-rule=\\\"evenodd\\\" d=\\\"M107.063 66.832h2.148v-7.828h-2.149zm0 0\\\"/><path fill=\\\"#f54254\\\" d=\\\"M108.195 57.488c.793 0 1.414-.62 1.414-1.398c0-.785-.62-1.406-1.414-1.406c-.785 0-1.406.62-1.406 1.406c-.004.37.145.73.41.992c.262.262.621.406.996.406m0 0\\\"/><path fill=\\\"url(#deviconAntdesignWordmark1)\\\" d=\\\"M19.164 1.219L1.25 18.332a2.281 2.281 0 0 0 0 3.328l17.914 17.113c.961.918 2.52.918 3.48 0l7.512-7.175a2.04 2.04 0 0 0 0-2.985a2.287 2.287 0 0 0-3.12 0l-5.696 5.442a.609.609 0 0 1-.844 0L6.191 20.387a.542.542 0 0 1 0-.805L20.496 5.914a.601.601 0 0 1 .844 0l5.695 5.441c.875.82 2.246.82 3.121 0a2.04 2.04 0 0 0 0-2.984l-7.511-7.176c-.965-.898-2.52-.89-3.48.024Zm0 0\\\" transform=\\\"translate(0 42)\\\"/><path fill=\\\"url(#deviconAntdesignWordmark2)\\\" d=\\\"M19.164 1.219L1.25 18.332a2.281 2.281 0 0 0 0 3.328l17.914 17.113c.961.918 2.52.918 3.48 0l7.512-7.175a2.04 2.04 0 0 0 0-2.985a2.287 2.287 0 0 0-3.12 0l-5.696 5.442a.609.609 0 0 1-.844 0L6.191 20.387a.542.542 0 0 1 0-.805L20.496 5.914c.598-.492 1.57-1.488 3.004-1.723c1.063-.171 2.223.211 3.484 1.145l-4.34-4.14c-.964-.9-2.519-.891-3.48.023m0 0\\\" transform=\\\"translate(0 42)\\\"/><path fill=\\\"url(#deviconAntdesignWordmark3)\\\" d=\\\"M31.89 27.02a2.279 2.279 0 0 0 3.122 0l5.539-5.293a2.27 2.27 0 0 0 0-3.325l-5.586-5.32c-.863-.824-2.266-.824-3.125.004a2.037 2.037 0 0 0 0 2.98l3.773 3.606a.547.547 0 0 1 0 .808l-3.722 3.555a2.04 2.04 0 0 0 0 2.984zm0 0\\\" transform=\\\"translate(0 42)\\\"/><path fill=\\\"url(#deviconAntdesignWordmark4)\\\" d=\\\"M16.156 20.082c0-2.562 2.16-4.621 4.836-4.621c2.68 0 4.84 2.059 4.84 4.621c0 2.559-2.16 4.617-4.84 4.617c-2.676 0-4.836-2.058-4.836-4.617m0 0\\\" transform=\\\"translate(0 42)\\\"/>\"\n\t\t},\n\t\t\"apache\": {\n\t\t\t\"body\": \"<path fill=\\\"url(#deviconApache0)\\\" d=\\\"M86.522.606c-2.007 1.185-5.348 4.54-9.318 9.407l3.652 6.903c2.57-3.666 5.177-6.977 7.807-9.8l.304-.325l-.304.326c-.852.933-3.437 3.955-7.333 9.94c3.755-.185 9.518-.956 14.222-1.756c1.407-7.844-1.37-11.429-1.37-11.429S90.654-1.83 86.521.606Z\\\"/><use href=\\\"#deviconApachea\\\"/><use href=\\\"#deviconApachea\\\" opacity=\\\".35\\\"/><use href=\\\"#deviconApacheb\\\"/><use href=\\\"#deviconApacheb\\\" opacity=\\\".35\\\"/><path fill=\\\"url(#deviconApache1)\\\" d=\\\"M70.071 34.76a219.903 219.903 0 0 1 3.37-6.081a171.901 171.901 0 0 1 3.585-5.97c.067-.112.148-.23.215-.341a144.48 144.48 0 0 1 3.607-5.444l-3.651-6.904a71.1 71.1 0 0 0-.83 1.03a156.993 156.993 0 0 0-3.274 4.23a201.146 201.146 0 0 0-3.889 5.392a233.315 233.315 0 0 0-3.703 5.48a214.99 214.99 0 0 0-3.163 4.978c-.037.06-.074.126-.11.193l4.762 9.407a213.91 213.91 0 0 1 3.081-5.97\\\"/><path fill=\\\"url(#deviconApache2)\\\" d=\\\"M48.383 87.735a421.232 421.232 0 0 0-1.896 5.296c-.008.022-.015.052-.03.074c-.089.252-.185.511-.266.763c-.43 1.215-.8 2.311-1.652 4.793c1.4.637 2.526 2.325 3.592 4.236a7.624 7.624 0 0 0-2.489-5.273c6.911.31 12.867-1.437 15.948-6.489c.274-.452.526-.919.755-1.43c-1.4 1.778-3.14 2.526-6.407 2.348c-.007 0-.014.008-.022.008c.008 0 .015-.008.022-.008c4.815-2.155 7.222-4.222 9.363-7.644c.504-.814 1-1.696 1.504-2.681c-4.208 4.318-9.074 5.548-14.207 4.615l-3.852.422c-.126.326-.237.644-.363.97\\\"/><path fill=\\\"url(#deviconApache3)\\\" d=\\\"M50.183 79.12c.83-2.147 1.689-4.325 2.563-6.517a441.794 441.794 0 0 1 2.593-6.341a748.43 748.43 0 0 1 2.71-6.392c.934-2.17 1.897-4.333 2.882-6.489a352.9 352.9 0 0 1 2.948-6.34c.355-.756.726-1.511 1.089-2.26c.63-1.296 1.266-2.585 1.91-3.859c.038-.066.067-.14.104-.207l-4.762-9.407a6.52 6.52 0 0 1-.237.378a219.844 219.844 0 0 0-3.296 5.555a208.386 208.386 0 0 0-3.223 5.837a248.13 248.13 0 0 0-2.6 5.044c-.17.34-.333.689-.503 1.03a143.907 143.907 0 0 0-2.822 6.185a115.935 115.935 0 0 0-2.54 6.429c-.49 1.34-.927 2.63-1.334 3.874c-.333 1.059-.645 2.126-.956 3.185a99.189 99.189 0 0 0-1.83 7.451l4.786 9.444c.63-1.688 1.281-3.407 1.948-5.14c.2-.496.378-.985.57-1.46\\\"/><path fill=\\\"url(#deviconApache4)\\\" d=\\\"M42.828 76.595c-.6 3.022-1.03 6.03-1.245 9.022l-.022.31c-1.496-2.392-5.488-4.725-5.481-4.703c2.867 4.148 5.037 8.267 5.355 12.31c-1.533.312-3.63-.14-6.051-1.029c2.526 2.326 4.422 2.963 5.17 3.14c-2.326.149-4.74 1.742-7.178 3.579c3.563-1.452 6.445-2.03 8.504-1.563c-3.274 9.258-6.548 19.48-9.83 30.339c1.008-.296 1.608-.978 1.941-1.889c.585-1.963 4.46-14.866 10.54-31.806c.178-.481.349-.97.526-1.452c.045-.14.097-.274.149-.4c.637-1.777 1.31-3.592 1.992-5.444c.156-.422.311-.844.474-1.266c0-.008.008-.015.008-.023l-4.793-9.444a6.652 6.652 0 0 1-.06.319Z\\\"/><path fill=\\\"url(#deviconApache5)\\\" d=\\\"M67.723 41.5c-.14.282-.274.563-.415.845c-.414.851-.83 1.718-1.259 2.607c-.46.963-.918 1.94-1.385 2.948c-.237.504-.474 1.015-.711 1.533a414.713 414.713 0 0 0-2.163 4.8a388.508 388.508 0 0 0-2.748 6.326c-.881 2.088-1.793 4.244-2.696 6.48c-.867 2.12-1.74 4.312-2.63 6.563a411.904 411.904 0 0 0-2.392 6.208c-.037.096-.074.207-.111.303c-.8 2.111-1.608 4.282-2.415 6.504c-.015.051-.037.096-.052.155l3.852-.422c-.074-.015-.156-.022-.23-.037c4.6-.57 10.726-4.015 14.674-8.259c1.822-1.955 3.474-4.266 5-6.97c1.133-2.007 2.207-4.244 3.229-6.71a98.187 98.187 0 0 0 2.563-7.023c-1.06.556-2.267.97-3.6 1.252c-.237.052-.474.096-.718.14c-.245.045-.49.082-.741.112c0 0 .007 0 .007-.007c4.296-1.652 7-4.837 8.963-8.74c-1.126.77-2.963 1.777-5.163 2.258a16.586 16.586 0 0 1-1.14.208h.014c1.496-.622 2.748-1.326 3.837-2.148c.237-.178.467-.356.674-.548c.333-.29.645-.593.956-.904c.192-.207.377-.415.563-.63c.43-.51.83-1.059 1.2-1.651c.11-.186.23-.363.333-.556c.148-.274.281-.548.415-.807a43.48 43.48 0 0 0 1.459-3.222c.192-.474.355-.904.503-1.319c.06-.163.111-.318.163-.474c.156-.452.274-.852.37-1.207c.149-.534.238-.956.282-1.26c-.148.112-.31.23-.504.341c-1.296.778-3.518 1.474-5.31 1.808l3.533-.386l-3.533.386c-.023.007-.052.007-.082.014c-.185.03-.355.06-.54.082l.088-.045l-12.095 1.326a.37.37 0 0 1-.045.126\\\"/><path fill=\\\"url(#deviconApache6)\\\" d=\\\"M81.337 17.057a182.438 182.438 0 0 0-3.518 5.651a247.572 247.572 0 0 0-3.674 6.4a280.913 280.913 0 0 0-3.289 6.155a332.218 332.218 0 0 0-3.074 6.111l12.096-1.326c3.526-1.622 5.096-3.081 6.622-5.207c.4-.585.815-1.192 1.215-1.83a74.934 74.934 0 0 0 3.548-6.2c1.051-2.05 1.977-4.08 2.688-5.917a30.467 30.467 0 0 0 1.067-3.2c.222-.837.393-1.637.526-2.4c-4.689.807-10.459 1.578-14.207 1.763\\\"/><use href=\\\"#deviconApachec\\\"/><use href=\\\"#deviconApachec\\\" opacity=\\\".35\\\"/><path fill=\\\"url(#deviconApache7)\\\" d=\\\"M73.516 58.729c-.245.044-.49.081-.741.111c.252-.022.503-.067.74-.111Z\\\"/><use href=\\\"#deviconApached\\\"/><use href=\\\"#deviconApached\\\" opacity=\\\".35\\\"/><path fill=\\\"url(#deviconApache8)\\\" d=\\\"M75.449 52.566c.074-.007.155-.022.23-.037c-.075.008-.149.03-.23.037\\\"/><use href=\\\"#deviconApachee\\\"/><use href=\\\"#deviconApachee\\\" opacity=\\\".35\\\"/><path fill=\\\"url(#deviconApache9)\\\" d=\\\"M75.449 52.566c.007 0 .007-.007 0 0c.007-.007.007 0 0 0\\\"/><defs><linearGradient id=\\\"deviconApache0\\\" x1=\\\"80.277\\\" x2=\\\"107.078\\\" y1=\\\"10.871\\\" y2=\\\"3.42\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#F59723\\\"/><stop offset=\\\".312\\\" stop-color=\\\"#F69822\\\"/><stop offset=\\\".838\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApache1\\\" x1=\\\"21.611\\\" x2=\\\"76.124\\\" y1=\\\"131.156\\\" y2=\\\"14.252\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApache2\\\" x1=\\\"39.903\\\" x2=\\\"72.387\\\" y1=\\\"122.505\\\" y2=\\\"52.841\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#282661\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662E8C\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9E2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#CC2032\\\"/></linearGradient><linearGradient id=\\\"deviconApache3\\\" x1=\\\"23.576\\\" x2=\\\"78.089\\\" y1=\\\"124.078\\\" y2=\\\"7.174\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApache4\\\" x1=\\\"29.138\\\" x2=\\\"57.786\\\" y1=\\\"116.292\\\" y2=\\\"54.855\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#282661\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662E8C\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9E2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#CC2032\\\"/></linearGradient><linearGradient id=\\\"deviconApache5\\\" x1=\\\"35.68\\\" x2=\\\"90.192\\\" y1=\\\"129.722\\\" y2=\\\"12.818\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApache6\\\" x1=\\\"31.692\\\" x2=\\\"86.205\\\" y1=\\\"136.692\\\" y2=\\\"19.788\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApache7\\\" x1=\\\"39.272\\\" x2=\\\"93.784\\\" y1=\\\"131.397\\\" y2=\\\"14.493\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApache8\\\" x1=\\\"38.865\\\" x2=\\\"93.378\\\" y1=\\\"131.208\\\" y2=\\\"14.303\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApache9\\\" x1=\\\"69.406\\\" x2=\\\"81.455\\\" y1=\\\"65.493\\\" y2=\\\"39.654\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><path id=\\\"deviconApachea\\\" fill=\\\"#BD202E\\\" d=\\\"M74.234 58.596c-.467.081-.94.17-1.437.252c0 0-.007 0-.007.007l.74-.111c.23-.052.467-.096.704-.148\\\"/><path id=\\\"deviconApacheb\\\" fill=\\\"#BD202E\\\" d=\\\"M75.456 52.559s0 .007 0 0c-.007 0-.007 0-.007.007c.074-.007.155-.022.23-.037c.31-.044.614-.096.91-.17c-.37.067-.74.133-1.133.2\\\"/><path id=\\\"deviconApachec\\\" fill=\\\"#BD202E\\\" d=\\\"M73.516 58.729c-.245.044-.49.081-.741.111c.252-.022.503-.067.74-.111Z\\\"/><path id=\\\"deviconApached\\\" fill=\\\"#BD202E\\\" d=\\\"M75.449 52.566c.074-.007.155-.022.23-.037c-.075.008-.149.03-.23.037\\\"/><path id=\\\"deviconApachee\\\" fill=\\\"#BD202E\\\" d=\\\"M75.449 52.566c.007 0 .007-.007 0 0c.007-.007.007 0 0 0\\\"/></defs>\"\n\t\t},\n\t\t\"apache-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"url(#deviconApacheWordmark0)\\\" d=\\\"M20.825 40.232c-.768.453-2.045 1.735-3.563 3.596l1.396 2.639c.983-1.402 1.98-2.667 2.985-3.746l.116-.125l-.116.125c-.326.357-1.314 1.512-2.803 3.8c1.435-.071 3.638-.365 5.436-.671c.538-3-.523-4.37-.523-4.37s-1.348-2.18-2.928-1.248\\\"/><use href=\\\"#deviconApacheWordmark9\\\"/><use href=\\\"#deviconApacheWordmark9\\\" opacity=\\\".35\\\"/><use href=\\\"#deviconApacheWordmarka\\\"/><use href=\\\"#deviconApacheWordmarka\\\" opacity=\\\".35\\\"/><path fill=\\\"url(#deviconApacheWordmark1)\\\" d=\\\"M14.535 53.289a84.41 84.41 0 0 1 1.289-2.325c.45-.787.909-1.546 1.37-2.282c.026-.043.057-.088.082-.13c.456-.723.918-1.42 1.38-2.082l-1.397-2.64c-.104.128-.21.258-.317.394a60.057 60.057 0 0 0-1.251 1.617c-.485.646-.98 1.337-1.487 2.062a82.256 82.256 0 0 0-2.625 3.998l-.043.074l1.821 3.596a81.55 81.55 0 0 1 1.178-2.282\\\"/><path fill=\\\"url(#deviconApacheWordmark2)\\\" d=\\\"M6.244 73.541c-.24.66-.484 1.337-.725 2.025c-.003.008-.006.02-.011.028c-.034.097-.071.196-.102.292c-.164.464-.306.883-.632 1.832c.535.244.966.89 1.374 1.62a2.917 2.917 0 0 0-.952-2.016c2.642.118 4.919-.55 6.097-2.481c.105-.173.201-.351.289-.546c-.535.68-1.2.965-2.45.897c-.002 0-.005.003-.008.003c.003 0 .005-.003.008-.003c1.841-.824 2.761-1.614 3.58-2.922c.192-.312.382-.649.575-1.025c-1.609 1.65-3.47 2.12-5.432 1.764l-1.472.161c-.048.125-.09.247-.139.371\\\"/><path fill=\\\"url(#deviconApacheWordmark3)\\\" d=\\\"M6.932 70.248c.317-.821.646-1.654.98-2.492c.323-.804.651-1.614.991-2.424c.34-.81.685-1.628 1.036-2.444c.357-.83.725-1.656 1.102-2.48c.37-.816.745-1.626 1.127-2.424c.136-.29.277-.578.416-.864c.24-.495.485-.988.73-1.475c.015-.026.026-.054.04-.08l-1.82-3.596c-.029.048-.06.1-.09.145a79.726 79.726 0 0 0-3.486 6.284c-.066.13-.128.262-.193.393a55.064 55.064 0 0 0-1.08 2.364a46.74 46.74 0 0 0-1.481 3.939c-.127.405-.246.813-.365 1.218a37.936 37.936 0 0 0-.699 2.849l1.83 3.61c.24-.646.49-1.303.744-1.965c.077-.19.144-.377.218-.558\\\"/><path fill=\\\"url(#deviconApacheWordmark4)\\\" d=\\\"M4.12 69.282a28.027 28.027 0 0 0-.476 3.45l-.008.118c-.572-.914-2.098-1.806-2.096-1.798c1.096 1.586 1.926 3.16 2.048 4.706c-.586.12-1.388-.053-2.314-.393c.966.89 1.69 1.133 1.977 1.2c-.89.057-1.812.666-2.744 1.368c1.362-.555 2.463-.776 3.25-.597c-1.25 3.54-2.503 7.447-3.757 11.599c.385-.114.614-.374.742-.722c.224-.75 1.705-5.684 4.03-12.16l.2-.555c.018-.054.037-.105.057-.153c.244-.68.501-1.373.762-2.081c.06-.162.119-.323.181-.484l.003-.009l-1.832-3.61z\\\"/><path fill=\\\"url(#deviconApacheWordmark5)\\\" d=\\\"M13.638 55.866c-.054.107-.105.215-.159.322c-.159.326-.317.657-.481.997a110.056 110.056 0 0 0-.802 1.713a156.01 156.01 0 0 0-.827 1.835c-.342.773-.696 1.58-1.05 2.419c-.337.798-.685 1.622-1.03 2.477a204.444 204.444 0 0 0-1.921 4.882l-.042.116c-.306.807-.615 1.637-.923 2.487c-.006.02-.015.036-.02.06l1.472-.162c-.028-.006-.06-.009-.088-.014c1.759-.219 4.1-1.535 5.61-3.158c.697-.747 1.328-1.63 1.912-2.665c.433-.767.843-1.622 1.234-2.565c.34-.824.666-1.719.98-2.684c-.405.212-.867.37-1.376.478a7.674 7.674 0 0 1-.558.096s.003 0 .003-.002c1.642-.632 2.676-1.85 3.426-3.342c-.43.294-1.133.68-1.974.864a6.406 6.406 0 0 1-.436.079h.006a6.61 6.61 0 0 0 1.467-.821c.09-.068.178-.136.258-.21c.127-.11.246-.226.365-.345a5.551 5.551 0 0 0 .674-.872c.042-.071.087-.14.127-.213c.057-.105.108-.21.159-.308a16.625 16.625 0 0 0 .75-1.736a6.68 6.68 0 0 0 .062-.181c.06-.173.105-.326.142-.462a4.19 4.19 0 0 0 .108-.482a1.888 1.888 0 0 1-.193.13c-.496.298-1.345.564-2.03.692l1.35-.147l-1.35.147c-.009.003-.02.003-.031.005c-.071.012-.136.023-.207.032l.034-.017l-4.624.506a.14.14 0 0 1-.017.049\\\"/><path fill=\\\"url(#deviconApacheWordmark6)\\\" d=\\\"M18.842 46.52a69.722 69.722 0 0 0-1.421 2.289a94.468 94.468 0 0 0-1.328 2.32a107.547 107.547 0 0 0-2.433 4.688l4.625-.507c1.347-.62 1.948-1.178 2.531-1.99c.153-.224.312-.456.465-.7a28.68 28.68 0 0 0 1.356-2.37c.402-.784.756-1.56 1.028-2.262c.173-.445.311-.858.408-1.224c.084-.32.15-.625.2-.917c-1.792.309-3.998.603-5.43.674Z\\\"/><use href=\\\"#deviconApacheWordmarkb\\\"/><use href=\\\"#deviconApacheWordmarkb\\\" opacity=\\\".35\\\"/><path fill=\\\"url(#deviconApacheWordmark7)\\\" d=\\\"M16.591 60.096a.922.922 0 0 0 .088-.014c-.028.003-.057.011-.088.014\\\"/><use href=\\\"#deviconApacheWordmarkc\\\"/><use href=\\\"#deviconApacheWordmarkc\\\" opacity=\\\".35\\\"/><path fill=\\\"url(#deviconApacheWordmark8)\\\" d=\\\"M16.591 60.096c.003 0 .003-.003 0 0c.003-.003.003 0 0 0\\\"/><path fill=\\\"#cb2533\\\" d=\\\"M82.837 74.447a19.717 19.717 0 0 1-1.522-.39c-.393-.152-1.743-.844-1.901-.974a11.576 11.576 0 0 0-.625-.483c-.382-.285-1.202-1.105-1.487-1.488a16.216 16.216 0 0 0-.296-.387c-.04-.05-.11-.133-.152-.186c-.09-.11-.85-1.395-.85-1.437c0-.015-.08-.204-.176-.42c-.097-.216-.234-.56-.305-.764a11.17 11.17 0 0 0-.193-.52c-.079-.182-.293-1.193-.37-1.745c-.083-.584-.08-2.187.003-2.712c.22-1.38.395-1.971.9-3.05c.077-.166.14-.341.14-.39c0-.048.034-.088.075-.088c.04 0 .074-.043.074-.096c0-.053.206-.408.459-.79c.409-.62 1.34-1.65 1.955-2.161c.636-.529 1.893-1.217 2.644-1.448c.221-.068.485-.153.587-.188c.378-.13 1.103-.225 2.043-.267c1.212-.054 2.483.104 3.38.42c.67.237 1.284.52 1.325.612c.013.03.057.056.096.056c.157 0 1 .639 1.507 1.14c.586.582.97 1.09 1.273 1.69c.19.376.192.395.06.486a8.883 8.883 0 0 0-.216.154a3.755 3.755 0 0 1-.272.17c-.106.06-.347.206-.536.323c-.383.237-.53.22-.642-.077c-.315-.828-1.76-2.188-2.744-2.581c-1.083-.434-1.74-.563-2.855-.562c-1.18.001-1.94.146-2.884.551c-.323.138-1.011.55-1.155.69c-.055.053-.122.096-.15.096c-.078 0-.904.815-1.268 1.251c-.393.473-1.077 1.688-1.238 2.203a7.099 7.099 0 0 1-.182.52c-.316.718-.501 2.46-.386 3.62c.078.795.243 1.627.387 1.95c.036.082.088.233.115.335c.12.45.819 1.754 1.186 2.21c.365.454 1.033 1.156 1.337 1.405c.347.285 1.474.99 1.584.99c.027 0 .136.046.241.101c.106.055.49.18.855.278c.557.15.822.177 1.665.17c1.41-.014 2.306-.257 3.491-.95c.777-.455 1.85-1.504 2.229-2.18c.142-.254.293-.463.334-.464c.157-.002 1.597.781 1.597.87c0 .103-.433.929-.518.987a.746.746 0 0 0-.14.2c-.177.336-.99 1.131-1.756 1.717c-.407.31-1.483.857-2.229 1.132c-.99.365-1.592.462-2.97.483c-.736.012-1.422.006-1.524-.013Zm-59.276-.104c0-.042.032-.134.072-.205c.04-.07.142-.296.227-.5c.085-.204.184-.438.22-.52c.036-.082.27-.633.52-1.226c.25-.592.484-1.143.521-1.225c.037-.082.154-.366.26-.632c.106-.265.223-.55.26-.631l.224-.52c.087-.204.206-.477.264-.606c.059-.128.106-.255.106-.282c0-.042.143-.385.373-.895c.036-.081.153-.366.259-.631c.106-.266.223-.55.26-.632c.037-.081.154-.365.26-.63c.105-.266.222-.55.259-.632c.037-.082.137-.316.224-.52a131.676 131.676 0 0 0 .63-1.486c.189-.45.373-.884.41-.965c.036-.082.203-.483.37-.892c.168-.408.335-.81.372-.891c.036-.082.183-.433.326-.78c.8-1.946.984-2.386 1.162-2.786c.036-.081.153-.366.26-.631c.106-.266.258-.625.337-.799l.145-.315h1.614l.166.39c.206.485.433 1.011.52 1.207c.253.567.372.852.372.891c0 .042.142.378.414.977c.058.129.106.256.106.283c0 .042.115.318.371.894c.253.568.372.852.372.892c0 .024.069.202.154.394c.084.191.203.465.264.608c.062.143.141.327.178.409c.036.082.152.366.258.631c.106.266.222.55.259.632c.036.081.27.633.52 1.225c.251.593.486 1.144.522 1.226c.037.082.12.282.187.446c.683 1.677.955 2.337 1.039 2.525c.055.123.237.557.406.966a63.101 63.101 0 0 0 .595 1.411c.086.204.187.439.224.52c.037.082.153.366.259.632c.106.265.223.55.26.63c.36.798.817 1.923.817 2.01c0 .09-.182.108-1.072.108c-1.047 0-1.073-.004-1.123-.167c-.046-.15-.218-.569-.405-.984a26.47 26.47 0 0 1-.261-.632a33.296 33.296 0 0 0-.483-1.151a28.372 28.372 0 0 1-.259-.632c-.105-.265-.222-.55-.259-.63c-.225-.501-.372-.853-.372-.892c0-.025-.062-.186-.138-.357a54.03 54.03 0 0 1-.24-.553l-.104-.242H28.26l-.15.353c-.082.194-.24.587-.353.873c-.111.286-.265.66-.342.832a2.42 2.42 0 0 0-.139.356c0 .04-.146.392-.372.892c-.037.082-.153.366-.26.631c-.105.266-.223.55-.26.632c-.039.081-.19.449-.338.817l-.307.761c-.049.118-2.177.135-2.177.018Zm13-7.803c0-.07-.11-.338-.414-1.01a1.449 1.449 0 0 1-.107-.286c0-.028-.048-.157-.108-.286a44.727 44.727 0 0 1-.52-1.274a57.218 57.218 0 0 0-.483-1.188a36.26 36.26 0 0 1-.41-1.04a47.07 47.07 0 0 0-.408-1.04a40.717 40.717 0 0 1-.177-.408a67.71 67.71 0 0 0-.265-.61a2.545 2.545 0 0 1-.155-.408a.924.924 0 0 0-.096-.245a8.45 8.45 0 0 1-.274-.669a8.5 8.5 0 0 0-.275-.668a.862.862 0 0 1-.096-.279c-.002-.156-.136-.103-.19.074a4.222 4.222 0 0 1-.148.39a67.17 67.17 0 0 0-.404.966l-.523 1.263l-1.402 3.38c-.652 1.572-1.239 2.985-1.304 3.138l-.117.278h3.938c2.712 0 3.937-.024 3.937-.078Zm7.279-2.076v-9.953h4.141c4.325.002 5.108.042 5.802.3c.49.183 1.248.559 1.387.688c.053.05.208.172.344.274c.958.712 1.874 2.135 2.223 3.455c.338 1.278.2 3.018-.336 4.23c-.77 1.741-2.065 2.946-3.7 3.442c-.329.099-.98.122-4.123.146l-3.733.028v7.345H43.84v-9.954Zm8.815.737c1.37-.19 2.481-1.233 3.036-2.854c.19-.557.234-2.096.077-2.714c-.215-.84-.607-1.538-1.19-2.114c-.29-.286-.626-.57-.748-.631a1.603 1.603 0 0 1-.26-.151a2.415 2.415 0 0 0-.37-.184c-.313-.135-.567-.146-3.845-.168l-3.51-.024v8.92h3.115c1.826 0 3.355-.033 3.695-.08m4.16 9.161c-.018-.03.096-.356.252-.724c.157-.368.574-1.37.926-2.229c.353-.857.686-1.66.741-1.782c.055-.123.239-.557.408-.966c.296-.715.456-1.096.595-1.411c.036-.082.203-.483.372-.891c.168-.41.35-.844.404-.966c.054-.123.27-.64.48-1.151l.598-1.449c.252-.61 1.096-2.607 1.192-2.823c.036-.081.153-.365.258-.631c.106-.266.223-.55.26-.631c.036-.082.138-.316.225-.52c.086-.205.205-.477.264-.606c.058-.129.106-.256.106-.282c0-.042.115-.32.371-.895c.148-.331.36-.842.525-1.263a4.32 4.32 0 0 1 .242-.539c.047-.064.314-.092.867-.092h.8l.096.241c.195.485 1.048 2.51 1.26 2.99c.036.082.202.483.37.891c.167.409.335.81.373.892c.037.081.321.767.63 1.522c.31.756.593 1.441.63 1.523c.037.082.24.566.453 1.077a268.143 268.143 0 0 0 1.554 3.677c.037.082.154.366.26.632c.182.452.33.802.484 1.15c.036.083.153.367.26.632c.106.266.241.588.3.717s.107.257.107.285c0 .028.1.268.223.533c.122.264.223.499.223.52c0 .022.048.145.106.274c.06.129.194.451.3.717c.107.265.225.55.261.631c.258.572.373.857.373.925c0 .119-2.04.105-2.137-.015c-.04-.051-.366-.811-.723-1.69a214.273 214.273 0 0 0-1.039-2.525c-.106-.266-.224-.55-.26-.632a31.823 31.823 0 0 1-.444-1.059l-.096-.242l-4.419.02l-4.419.019l-.44 1.077l-.51 1.249c-.04.094-.072.188-.072.208c0 .032-.162.414-.373.882c-.036.082-.154.366-.26.632a40.8 40.8 0 0 1-.291.705c-.054.123-.209.5-.345.836l-.246.613h-1.021c-.562 0-1.036-.025-1.054-.056m12.949-7.783c0-.037-.256-.673-.477-1.186c-.053-.123-.174-.44-.27-.706a7.963 7.963 0 0 0-.27-.668a.933.933 0 0 1-.097-.246c-.001-.052-.131-.37-.372-.906a26.042 26.042 0 0 1-.261-.631a34.421 34.421 0 0 0-.291-.706c-.054-.122-.159-.39-.234-.594a6.526 6.526 0 0 0-.232-.557a.926.926 0 0 1-.096-.249c0-.035-.048-.168-.107-.297a25.64 25.64 0 0 1-.38-.94a38.074 38.074 0 0 0-.635-1.541c-.128-.301-.213-.277-.34.097a5.39 5.39 0 0 1-.168.442c-.039.081-.14.315-.227.52c-.086.204-.187.438-.224.52c-.06.133-.868 2.065-1.864 4.456c-.205.49-.401.959-.438 1.04c-.036.082-.203.483-.37.891c-.166.41-.352.853-.412.987s-.109.26-.109.279c0 .019 1.772.034 3.937.034s3.937-.017 3.937-.039m24.92 7.748c-.02-.052-.028-4.524-.018-9.937l.02-9.842h1.93l.02 4.4l.019 4.402h11.661v-8.84h2.005v19.908h-2.005v-9.285H96.655l-.02 4.624l-.019 4.624l-.948.02c-.718.016-.958-.002-.985-.074Zm20.02-9.863v-9.953h13.073v1.857h-11.068v6.982h9.657v1.782h-9.657v7.429H128v1.857h-13.296z\\\"/><defs><linearGradient id=\\\"deviconApacheWordmark0\\\" x1=\\\"18.437\\\" x2=\\\"28.683\\\" y1=\\\"44.156\\\" y2=\\\"41.307\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#F59723\\\"/><stop offset=\\\".312\\\" stop-color=\\\"#F69822\\\"/><stop offset=\\\".838\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApacheWordmark1\\\" x1=\\\"-3.991\\\" x2=\\\"16.849\\\" y1=\\\"90.141\\\" y2=\\\"45.448\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApacheWordmark2\\\" x1=\\\"3.002\\\" x2=\\\"15.421\\\" y1=\\\"86.834\\\" y2=\\\"60.201\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#282661\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662E8C\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9E2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#CC2032\\\"/></linearGradient><linearGradient id=\\\"deviconApacheWordmark3\\\" x1=\\\"-3.24\\\" x2=\\\"17.6\\\" y1=\\\"87.435\\\" y2=\\\"42.743\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApacheWordmark4\\\" x1=\\\"-1.114\\\" x2=\\\"9.839\\\" y1=\\\"84.459\\\" y2=\\\"60.971\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#282661\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662E8C\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9E2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#CC2032\\\"/></linearGradient><linearGradient id=\\\"deviconApacheWordmark5\\\" x1=\\\"1.387\\\" x2=\\\"22.228\\\" y1=\\\"89.593\\\" y2=\\\"44.9\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApacheWordmark6\\\" x1=\\\"-.137\\\" x2=\\\"20.703\\\" y1=\\\"92.257\\\" y2=\\\"47.565\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApacheWordmark7\\\" x1=\\\"2.605\\\" x2=\\\"23.445\\\" y1=\\\"90.161\\\" y2=\\\"45.468\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><linearGradient id=\\\"deviconApacheWordmark8\\\" x1=\\\"14.281\\\" x2=\\\"18.887\\\" y1=\\\"65.038\\\" y2=\\\"55.16\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9C2063\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#C82037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#CC2135\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E87726\\\"/></linearGradient><path id=\\\"deviconApacheWordmark9\\\" fill=\\\"#BD202E\\\" d=\\\"M16.127 62.401c-.179.031-.36.065-.55.096c0 0-.002 0-.002.003l.283-.042c.087-.02.178-.037.269-.057\\\"/><path id=\\\"deviconApacheWordmarka\\\" fill=\\\"#BD202E\\\" d=\\\"M16.594 60.093s0 .003 0 0c-.003 0-.003 0-.003.003a.954.954 0 0 0 .088-.014a3.45 3.45 0 0 0 .348-.065z\\\"/><path id=\\\"deviconApacheWordmarkb\\\" fill=\\\"#BD202E\\\" d=\\\"M16.591 60.096a.922.922 0 0 0 .088-.014c-.028.003-.057.011-.088.014\\\"/><path id=\\\"deviconApacheWordmarkc\\\" fill=\\\"#BD202E\\\" d=\\\"M16.591 60.096c.003 0 .003-.003 0 0c.003-.003.003 0 0 0\\\"/></defs>\"\n\t\t},\n\t\t\"apacheairflow\": {\n\t\t\t\"body\": \"<path fill=\\\"#017cee\\\" d=\\\"m2.544 127l60.81-62.332a1.124 1.124 0 0 0 .135-1.437c-3.698-5.162-10.521-6.058-13.05-9.527c-7.49-10.275-9.39-16.092-12.61-15.73a.984.984 0 0 0-.585.308L15.278 60.8C2.64 73.744.824 102.275.496 126.167a1.19 1.19 0 0 0 2.048.833\\\"/><path fill=\\\"#00ad46\\\" d=\\\"M126.99 125.46L64.658 64.647a1.124 1.124 0 0 0-1.439-.136c-5.162 3.7-6.058 10.521-9.527 13.05c-10.275 7.49-16.092 9.391-15.73 12.61a.984.984 0 0 0 .308.583l22.518 21.966c12.944 12.638 41.475 14.454 65.367 14.782a1.19 1.19 0 0 0 .835-2.041z\\\"/><path fill=\\\"#04d659\\\" d=\\\"M60.792 112.72c-7.076-6.903-10.355-20.559 3.206-48.719c-22.046 9.853-29.771 22.803-25.972 26.511z\\\"/><path fill=\\\"#00c7d4\\\" d=\\\"M125.45 1.011L64.643 63.343a1.122 1.122 0 0 0-.136 1.437c3.7 5.163 10.52 6.058 13.05 9.527c7.49 10.275 9.393 16.092 12.61 15.73a.98.98 0 0 0 .585-.308l21.966-22.518c12.638-12.944 14.454-41.475 14.782-65.367a1.193 1.193 0 0 0-2.05-.832z\\\"/><path fill=\\\"#11e1ee\\\" d=\\\"M112.73 67.211c-6.903 7.076-20.559 10.355-48.721-3.206c9.853 22.046 22.803 29.771 26.511 25.972z\\\"/><path fill=\\\"#e43921\\\" d=\\\"m1.002 2.55l62.332 60.807a1.124 1.124 0 0 0 1.436.135c5.163-3.7 6.058-10.52 9.527-13.05c10.275-7.49 16.092-9.39 15.731-12.61a.99.99 0 0 0-.308-.584L67.202 15.282C54.258 2.644 25.727.828 1.835.5a1.19 1.19 0 0 0-.833 2.05\\\"/><path fill=\\\"#ff7557\\\" d=\\\"M67.212 15.284c7.076 6.904 10.355 20.559-3.206 48.721C86.052 54.153 93.777 41.2 89.978 37.494z\\\"/><path fill=\\\"#0cb6ff\\\" d=\\\"M15.279 60.8C22.183 53.724 35.838 50.445 64 64.006C54.148 41.96 41.197 34.235 37.489 38.034z\\\"/><circle cx=\\\"64.009\\\" cy=\\\"63.995\\\" r=\\\"2.718\\\" fill=\\\"#4a4848\\\"/>\"\n\t\t},\n\t\t\"apacheairflow-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#017cee\\\" d=\\\"m1.28 88.016l23.182-23.763a.428.428 0 0 0 .052-.548c-1.41-1.968-4.01-2.31-4.975-3.632c-2.855-3.917-3.58-6.134-4.807-5.997a.375.375 0 0 0-.223.118l-8.374 8.584C1.318 67.713.625 78.59.5 87.698a.454.454 0 0 0 .78.318\\\"/><path fill=\\\"#00ad46\\\" d=\\\"M48.724 87.43L24.961 64.246a.428.428 0 0 0-.549-.052c-1.968 1.41-2.309 4.011-3.631 4.975c-3.918 2.856-6.135 3.58-5.998 4.807a.375.375 0 0 0 .118.222l8.584 8.374c4.935 4.818 15.811 5.51 24.92 5.636a.454.454 0 0 0 .319-.778\\\"/><path fill=\\\"#04d659\\\" d=\\\"M23.486 82.575c-2.698-2.632-3.948-7.838 1.222-18.573c-8.404 3.756-11.35 8.693-9.901 10.107z\\\"/><path fill=\\\"#00c7d4\\\" d=\\\"M48.137 39.987L24.956 63.75a.428.428 0 0 0-.052.548c1.41 1.968 4.01 2.31 4.975 3.632c2.856 3.917 3.581 6.134 4.807 5.997a.373.373 0 0 0 .223-.118l8.374-8.584c4.818-4.935 5.51-15.811 5.635-24.92a.455.455 0 0 0-.78-.318z\\\"/><path fill=\\\"#11e1ee\\\" d=\\\"M43.287 65.224c-2.632 2.698-7.838 3.948-18.574-1.222c3.756 8.404 8.693 11.35 10.107 9.901z\\\"/><path fill=\\\"#e43921\\\" d=\\\"m.692 40.573l23.763 23.181a.428.428 0 0 0 .548.052c1.968-1.41 2.31-4.011 3.632-4.975c3.917-2.856 6.135-3.58 5.997-4.807a.378.378 0 0 0-.117-.223l-8.585-8.374c-4.934-4.818-15.81-5.51-24.92-5.635a.454.454 0 0 0-.317.78z\\\"/><path fill=\\\"#ff7557\\\" d=\\\"M25.934 45.428c2.698 2.632 3.948 7.838-1.222 18.574c8.404-3.756 11.35-8.694 9.901-10.107z\\\"/><path fill=\\\"#0cb6ff\\\" d=\\\"M6.135 62.78c2.632-2.698 7.838-3.948 18.574 1.222c-3.756-8.404-8.693-11.35-10.107-9.901z\\\"/><circle cx=\\\"24.712\\\" cy=\\\"63.998\\\" r=\\\"1.036\\\" fill=\\\"#4a4848\\\"/><path fill=\\\"#51504f\\\" d=\\\"M55.376 55.586a.188.188 0 0 1-.183-.183a.377.377 0 0 1 .009-.102l2.274-5.933a.285.285 0 0 1 .294-.201h.623a.286.286 0 0 1 .294.201l2.265 5.933l.018.102a.188.188 0 0 1-.183.183h-.467a.237.237 0 0 1-.157-.046a.29.29 0 0 1-.073-.11l-.504-1.302h-3.008l-.504 1.302a.26.26 0 0 1-.082.11a.221.221 0 0 1-.146.046zm3.944-2.247l-1.238-3.255l-1.238 3.255zm2.732 3.989a.212.212 0 0 1-.156-.064a.198.198 0 0 1-.055-.147v-6.086a.198.198 0 0 1 .055-.146a.212.212 0 0 1 .156-.064h.422a.22.22 0 0 1 .21.21v.403a1.742 1.742 0 0 1 1.504-.705a1.72 1.72 0 0 1 1.44.605a2.578 2.578 0 0 1 .523 1.563q.009.1.009.311t-.01.312a2.606 2.606 0 0 1-.522 1.563a1.736 1.736 0 0 1-1.44.605A1.772 1.772 0 0 1 62.702 55v2.128a.198.198 0 0 1-.055.146a.183.183 0 0 1-.147.065zm1.944-2.393a1.089 1.089 0 0 0 .945-.404a1.864 1.864 0 0 0 .329-1.064q.009-.09.009-.265q0-1.733-1.285-1.733a1.123 1.123 0 0 0-.953.422a1.736 1.736 0 0 0-.339.987l-.01.348l.01.358a1.531 1.531 0 0 0 .349.945a1.151 1.151 0 0 0 .944.406zm4.628.74a1.915 1.915 0 0 1-.834-.184a1.596 1.596 0 0 1-.615-.493a1.223 1.223 0 0 1-.22-.707a1.2 1.2 0 0 1 .493-.986a2.796 2.796 0 0 1 1.357-.514l1.367-.192v-.266q0-.935-1.07-.935a1.151 1.151 0 0 0-.658.175a1.132 1.132 0 0 0-.385.394a.25.25 0 0 1-.073.12a.148.148 0 0 1-.11.037h-.395a.19.19 0 0 1-.201-.202a.962.962 0 0 1 .201-.493a1.588 1.588 0 0 1 .615-.486a2.22 2.22 0 0 1 1.018-.211a1.934 1.934 0 0 1 1.48.486a1.671 1.671 0 0 1 .45 1.193v2.97a.211.211 0 0 1-.064.157a.197.197 0 0 1-.146.055h-.422a.192.192 0 0 1-.212-.21v-.394a1.582 1.582 0 0 1-.587.493a2.103 2.103 0 0 1-.99.195zm.193-.688a1.299 1.299 0 0 0 .972-.385a1.547 1.547 0 0 0 .385-1.128v-.257l-1.063.157a2.4 2.4 0 0 0-.982.311a.626.626 0 0 0-.329.541a.645.645 0 0 0 .303.569a1.304 1.304 0 0 0 .713.195zm5.463.688a2.102 2.102 0 0 1-1.54-.55a2.252 2.252 0 0 1-.587-1.563l-.01-.367l.01-.367a2.22 2.22 0 0 1 .587-1.55a2.082 2.082 0 0 1 1.54-.56a2.399 2.399 0 0 1 1.119.24a1.708 1.708 0 0 1 .678.587a1.398 1.398 0 0 1 .247.697a.164.164 0 0 1-.055.146a.231.231 0 0 1-.156.055h-.44a.218.218 0 0 1-.138-.037a.377.377 0 0 1-.092-.146a1.174 1.174 0 0 0-.44-.623a1.247 1.247 0 0 0-.715-.193a1.193 1.193 0 0 0-.905.358a1.605 1.605 0 0 0-.358 1.07l-.009.328l.01.312a1.62 1.62 0 0 0 .357 1.082a1.19 1.19 0 0 0 .905.349a1.297 1.297 0 0 0 .715-.184a1.228 1.228 0 0 0 .44-.632a.377.377 0 0 1 .092-.146a.188.188 0 0 1 .138-.046h.44a.212.212 0 0 1 .156.064a.164.164 0 0 1 .055.146a1.44 1.44 0 0 1-.247.697a1.709 1.709 0 0 1-.678.587a2.365 2.365 0 0 1-1.12.248zm3.354-.092a.192.192 0 0 1-.211-.21v-6.087a.198.198 0 0 1 .055-.146a.213.213 0 0 1 .156-.064h.458a.22.22 0 0 1 .212.21v2.138a1.782 1.782 0 0 1 .623-.513a1.935 1.935 0 0 1 .89-.183a1.7 1.7 0 0 1 1.366.568a2.173 2.173 0 0 1 .494 1.495v2.586a.211.211 0 0 1-.065.156a.197.197 0 0 1-.146.055h-.458a.192.192 0 0 1-.21-.21v-2.545a1.46 1.46 0 0 0-.321-1.009a1.14 1.14 0 0 0-.905-.358a1.218 1.218 0 0 0-.926.367a1.398 1.398 0 0 0-.339 1v2.54a.211.211 0 0 1-.064.155a.197.197 0 0 1-.146.056zm7.275.092a2.028 2.028 0 0 1-1.513-.576a2.416 2.416 0 0 1-.614-1.595l-.01-.312l.01-.303a2.429 2.429 0 0 1 .623-1.577a2.22 2.22 0 0 1 3.072.064a2.561 2.561 0 0 1 .56 1.743v.156a.211.211 0 0 1-.065.155a.198.198 0 0 1-.146.055h-3.173v.083a1.735 1.735 0 0 0 .358 1.018a1.096 1.096 0 0 0 .889.411a1.286 1.286 0 0 0 .687-.164a1.398 1.398 0 0 0 .404-.358a.493.493 0 0 1 .12-.128a.322.322 0 0 1 .155-.028h.45a.207.207 0 0 1 .138.047a.158.158 0 0 1 .055.128a.802.802 0 0 1-.257.486a2.064 2.064 0 0 1-.706.493a2.508 2.508 0 0 1-1.037.204zm1.256-2.824v-.028a1.494 1.494 0 0 0-.348-1.027a1.244 1.244 0 0 0-1.834 0a1.549 1.549 0 0 0-.33 1.027v.028z\\\"/><path fill=\\\"#51504f\\\" d=\\\"m55.244 55.531l-.05.05zm-.046-.23l-.066-.025zm2.275-5.932l.066.025zm1.21 0l-.066.023zm2.265 5.933l.07-.013a.053.053 0 0 0 0-.012zm.018.1h.071v-.012zm-.055.129l.05.05zm-.751.009l-.05.05l.008.004zm-.074-.11l.067-.022zm-.504-1.302l.066-.026a.07.07 0 0 0-.066-.045zm-3.007 0v-.07a.07.07 0 0 0-.066.044zm-.504 1.302l-.066-.026zm-.083.11l.046.054zm3.329-2.2v.07a.07.07 0 0 0 .065-.095zm-1.238-3.256l.066-.025a.07.07 0 0 0-.132 0zm-1.238 3.255l-.066-.024a.07.07 0 0 0 .066.095zm-1.467 2.176a.105.105 0 0 1-.082-.034l-.1.1a.247.247 0 0 0 .178.075zm-.082-.034a.106.106 0 0 1-.035-.082h-.14a.247.247 0 0 0 .075.178zm-.035-.082a.313.313 0 0 1 .008-.083l-.134-.044a.423.423 0 0 0-.013.123zm.008-.076l2.274-5.933l-.131-.05l-2.274 5.933zm2.275-5.935a.233.233 0 0 1 .082-.117a.247.247 0 0 1 .143-.038v-.142a.387.387 0 0 0-.222.063a.373.373 0 0 0-.137.186zm.227-.155h.624v-.142h-.624zm.624 0a.247.247 0 0 1 .143.038a.233.233 0 0 1 .083.117l.132-.048a.37.37 0 0 0-.136-.186a.387.387 0 0 0-.224-.063zm.227.156l2.265 5.933l.132-.05l-2.265-5.933zm2.262 5.922l.018.1l.14-.025l-.019-.1zm.017.088a.107.107 0 0 1-.034.082l.1.1a.247.247 0 0 0 .075-.18zm-.034.082a.107.107 0 0 1-.082.034v.141a.247.247 0 0 0 .178-.076zm-.082.034h-.468v.141h.468zm-.468 0a.17.17 0 0 1-.11-.03l-.091.11a.307.307 0 0 0 .201.062zm-.106-.025a.215.215 0 0 1-.056-.082l-.134.044a.354.354 0 0 0 .09.137zm-.057-.082l-.504-1.303l-.132.05l.504 1.303zm-.57-1.347h-3.008v.14h3.008zm-3.074.045l-.505 1.302l.132.051l.504-1.301zm-.505 1.305a.193.193 0 0 1-.062.082l.091.107a.329.329 0 0 0 .104-.141zm-.061.082a.152.152 0 0 1-.102.03v.14a.291.291 0 0 0 .191-.062zm-.102.03h-.468v.14h.468zm3.541-2.202l-1.238-3.255l-.131.05l1.238 3.255zm-1.37-3.255l-1.238 3.255l.132.05l1.238-3.255zm-1.172 3.351h2.476v-.14h-2.476zm5.052 3.855l-.05.05zm0-6.383l.05.05zm.725 0l-.054.046l.009.008zm.064.55h-.07a.07.07 0 0 0 .127.042zm2.943-.1l-.055.043zm.524 1.562h-.071zm0 .623l-.07-.006zm-.524 1.563l.056.044zm-2.925-.082l.056-.043a.07.07 0 0 0-.127.043zm-.055 2.274l-.05-.05zm2.292-2.733l-.057-.042zm.329-1.064l-.07-.006v.004zm-2.228-1.577l-.056-.043zm-.34.987h-.07zm-.009.348h-.07zm.01.357h-.071zm.348.945l.054-.044zm-1 2.727a.142.142 0 0 1-.106-.044l-.1.1a.281.281 0 0 0 .206.082zm-.106-.044a.13.13 0 0 1-.035-.097h-.141a.267.267 0 0 0 .076.197zm-.035-.097v-6.086h-.141v6.086zm0-6.086a.13.13 0 0 1 .035-.097l-.1-.1a.266.266 0 0 0-.075.197zm.035-.097a.142.142 0 0 1 .106-.043v-.142a.281.281 0 0 0-.206.082zm.106-.043h.422v-.142h-.422zm.422 0a.113.113 0 0 1 .093.04l.107-.092a.254.254 0 0 0-.201-.09zm.101.047a.113.113 0 0 1 .04.093h.14a.254.254 0 0 0-.089-.2zm.04.093v.403h.14v-.403zm.127.445a1.672 1.672 0 0 1 1.447-.677v-.14a1.81 1.81 0 0 0-1.563.735zm1.447-.677a1.65 1.65 0 0 1 1.384.576l.11-.087a1.79 1.79 0 0 0-1.494-.632zm1.384.576a2.504 2.504 0 0 1 .507 1.517l.141-.005a2.647 2.647 0 0 0-.538-1.6zm.507 1.521c.009.065.01.165.01.306h.14c0-.14 0-.246-.01-.318zm.01.306c0 .141 0 .242-.01.306l.14.013c.008-.071.01-.178.01-.319zm-.01.31a2.533 2.533 0 0 1-.507 1.518l.11.087a2.673 2.673 0 0 0 .538-1.6zm-.507 1.517a1.665 1.665 0 0 1-1.384.576v.14a1.81 1.81 0 0 0 1.494-.631zm-1.384.576a1.7 1.7 0 0 1-1.43-.658l-.112.082a1.841 1.841 0 0 0 1.54.716zm-1.556-.617v2.128h.141v-2.128zm0 2.128a.128.128 0 0 1-.035.097l.1.1a.267.267 0 0 0 .075-.197zm-.038.1a.114.114 0 0 1-.094.04v.142a.253.253 0 0 0 .2-.09zm-.094.04h-.449v.142h.45zm1.494-2.252a1.158 1.158 0 0 0 1.002-.433l-.113-.082a1.02 1.02 0 0 1-.888.374zm1.001-.432a1.937 1.937 0 0 0 .345-1.103l-.14-.006a1.795 1.795 0 0 1-.317 1.025zm.344-1.099c.008-.065.01-.156.01-.273H65.2c0 .115 0 .201-.01.259zm.01-.273a2.242 2.242 0 0 0-.335-1.342a1.19 1.19 0 0 0-1.02-.462v.14a1.051 1.051 0 0 1 .905.405a2.11 2.11 0 0 1 .308 1.258zm-1.354-1.804a1.194 1.194 0 0 0-1.01.45l.112.082a1.054 1.054 0 0 1 .897-.393zm-1.01.45a1.81 1.81 0 0 0-.354 1.03l.141.007a1.668 1.668 0 0 1 .33-.952zm-.354 1.032l-.009.348h.14l.01-.348zm-.009.352l.009.357h.141l-.009-.357zm.009.358a1.604 1.604 0 0 0 .364.987l.11-.09a1.46 1.46 0 0 1-.33-.904zm.364.987a1.22 1.22 0 0 0 .999.43v-.141a1.08 1.08 0 0 1-.89-.378zm4.793.919l.03-.064zm-.614-.494l-.057.04zm.276-1.696l.042.055zm1.357-.514l.01.07zm1.366-.192l.01.07a.07.07 0 0 0 .06-.07zm-1.733-1.027l.038.059zm-.385.394l-.062-.034a.068.068 0 0 0-.008.012zm-.073.12l-.045-.055l-.008.004zm-.652-.018l-.053.046l.008.007zm-.055-.147h-.07zm.202-.493l-.058-.04zm.614-.486l.031.063zm2.495.274l-.052.048zm.384 4.32l.05.05zm-.724 0l-.054.046a.035.035 0 0 0 .009.007zm-.055-.55h.07a.07.07 0 0 0-.128-.04zm-.587.493l-.033-.062zm.183-.87l-.051-.05zm.385-1.386h.07a.07.07 0 0 0-.082-.07zm-1.064.156l.01.07zm-.98.311l.037.06zm-.028 1.11l-.039.058zm.522.81a1.843 1.843 0 0 1-.804-.177l-.06.127a1.984 1.984 0 0 0 .864.19zm-.804-.177a1.529 1.529 0 0 1-.588-.474l-.114.083a1.665 1.665 0 0 0 .641.517zm-.586-.471a1.151 1.151 0 0 1-.208-.666h-.142a1.292 1.292 0 0 0 .233.746zm-.208-.666a1.13 1.13 0 0 1 .468-.935l-.087-.11a1.27 1.27 0 0 0-.522 1.045zm.468-.936a2.727 2.727 0 0 1 1.323-.499l-.02-.14a2.863 2.863 0 0 0-1.39.528zm1.323-.499l1.366-.192l-.02-.14l-1.367.192zm1.427-.262v-.266h-.14v.266zm0-.266a.95.95 0 0 0-.292-.754a1.263 1.263 0 0 0-.851-.252v.142a1.127 1.127 0 0 1 .758.216a.81.81 0 0 1 .247.648zm-1.143-1.006a1.222 1.222 0 0 0-.7.187l.082.117a1.082 1.082 0 0 1 .62-.165zm-.699.186a1.194 1.194 0 0 0-.41.42l.122.069a1.058 1.058 0 0 1 .362-.37zm-.41.431a.186.186 0 0 1-.052.087l.088.11a.322.322 0 0 0 .096-.152zm-.057.092a.082.082 0 0 1-.06.016v.14a.219.219 0 0 0 .16-.057zm-.06.016h-.395v.14h.395zm-.395 0a.148.148 0 0 1-.1-.038l-.092.107a.29.29 0 0 0 .192.072zm-.093-.03a.148.148 0 0 1-.038-.102h-.14a.29.29 0 0 0 .07.193zm-.038-.098a.905.905 0 0 1 .189-.458l-.115-.083a1.03 1.03 0 0 0-.215.533zm.189-.458a1.516 1.516 0 0 1 .588-.463l-.062-.127a1.66 1.66 0 0 0-.641.508zm.589-.463a2.147 2.147 0 0 1 .987-.204v-.14a2.287 2.287 0 0 0-1.05.219zm.987-.204a1.865 1.865 0 0 1 1.424.463l.104-.095a2.003 2.003 0 0 0-1.528-.508zm1.425.464a1.6 1.6 0 0 1 .43 1.144h.14a1.741 1.741 0 0 0-.468-1.24zm.43 1.144v2.972h.14v-2.972zm0 2.972a.141.141 0 0 1-.043.106l.099.1a.283.283 0 0 0 .082-.206zm-.043.106a.13.13 0 0 1-.098.034v.141a.268.268 0 0 0 .197-.076zm-.098.034h-.421v.141h.421zm-.421 0a.164.164 0 0 1-.11-.037l-.092.106a.302.302 0 0 0 .202.073zm-.102-.03a.16.16 0 0 1-.04-.11h-.14a.301.301 0 0 0 .072.201zm-.04-.11v-.394h-.14v.394zm-.127-.435a1.518 1.518 0 0 1-.562.473l.065.125a1.655 1.655 0 0 0 .613-.517zm-.562.473a2.036 2.036 0 0 1-.948.194v.141a2.175 2.175 0 0 0 1.014-.21zm-.756-.352a1.37 1.37 0 0 0 1.023-.407l-.101-.098a1.228 1.228 0 0 1-.922.363zm1.023-.407a1.62 1.62 0 0 0 .405-1.177h-.14a1.48 1.48 0 0 1-.366 1.08zm.405-1.177v-.256h-.14v.256zm-.082-.329l-1.064.156l.02.14l1.064-.156zm-1.064.156a2.467 2.467 0 0 0-1.01.323l.078.118a2.333 2.333 0 0 1 .953-.3zm-1.009.322a.695.695 0 0 0-.363.6h.142a.556.556 0 0 1 .298-.481zm-.363.6a.715.715 0 0 0 .334.627l.078-.117a.576.576 0 0 1-.271-.51zm.336.629a1.376 1.376 0 0 0 .753.203v-.14a1.234 1.234 0 0 1-.677-.182zm4.676.27l-.05.05zm-.587-1.562h-.07zm-.009-.367h-.07zm.009-.367h-.07zm.587-1.55l.05.05zm2.66-.32l-.033.062zm.678.586l-.06.037zm.247.697h-.07zm-.055.146l.046.054zm-.734.019l.045-.056zm-.092-.147l-.066.024zm-.44-.623l-.04.058zm-1.623.164l-.051-.048zm-.358 1.07h-.07zm-.009.328h-.07zm.01.312h-.072zm.357 1.082l-.051.049zm1.623.165l.038.06zm.44-.633l-.065-.027zm.092-.146l.045.055l.008-.005zm.734.018l-.05.05zm.055.147l-.07-.008zm-.247.696l-.059-.038zm-.678.587l-.033-.062zm-1.119.165a2.032 2.032 0 0 1-1.491-.53l-.1.1a2.171 2.171 0 0 0 1.59.571zm-1.49-.529a2.182 2.182 0 0 1-.567-1.512l-.141.005a2.32 2.32 0 0 0 .607 1.605zm-.567-1.512l-.01-.366h-.14l.009.366zm-.01-.363l.01-.367h-.141l-.009.367zm.01-.366a2.147 2.147 0 0 1 .566-1.503l-.1-.1a2.286 2.286 0 0 0-.607 1.598zm.566-1.503a2.013 2.013 0 0 1 1.491-.538v-.141a2.152 2.152 0 0 0-1.59.58zm1.491-.538a2.332 2.332 0 0 1 1.086.23l.065-.125a2.467 2.467 0 0 0-1.151-.247zm1.086.23a1.637 1.637 0 0 1 .651.562l.12-.075a1.775 1.775 0 0 0-.706-.612zm.652.563a1.33 1.33 0 0 1 .236.658l.14-.007a1.471 1.471 0 0 0-.258-.732zm.236.666a.09.09 0 0 1-.03.082l.092.107a.231.231 0 0 0 .082-.207zm-.03.082a.164.164 0 0 1-.11.038v.14a.303.303 0 0 0 .202-.072zm-.11.038h-.44v.14h.44zm-.44 0a.151.151 0 0 1-.094-.022l-.088.11a.284.284 0 0 0 .182.053zm-.094-.022a.32.32 0 0 1-.07-.118l-.13.054a.438.438 0 0 0 .112.175zm-.07-.115a1.245 1.245 0 0 0-.468-.658l-.077.119a1.105 1.105 0 0 1 .412.588zm-.466-.658a1.316 1.316 0 0 0-.755-.205v.141a1.18 1.18 0 0 1 .676.18zm-.755-.205a1.262 1.262 0 0 0-.96.38l.103.098a1.122 1.122 0 0 1 .857-.336zm-.96.38a1.675 1.675 0 0 0-.376 1.119l.14.005a1.54 1.54 0 0 1 .339-1.027zm-.376 1.12l-.009.329h.14l.01-.33zm-.009.334l.009.311l.14-.004l-.008-.311zm.009.312a1.688 1.688 0 0 0 .377 1.128l.102-.097a1.554 1.554 0 0 1-.338-1.037zm.377 1.128a1.26 1.26 0 0 0 .959.37v-.14a1.121 1.121 0 0 1-.857-.33zm.959.37a1.366 1.366 0 0 0 .753-.194l-.077-.119a1.226 1.226 0 0 1-.676.172zm.755-.195a1.296 1.296 0 0 0 .467-.668l-.133-.047a1.159 1.159 0 0 1-.412.598zm.465-.664a.32.32 0 0 1 .07-.118l-.087-.11a.438.438 0 0 0-.113.175zm.077-.124a.118.118 0 0 1 .088-.025v-.141a.255.255 0 0 0-.188.067zm.088-.025h.44v-.141h-.44zm.44 0a.142.142 0 0 1 .106.043l.1-.1a.283.283 0 0 0-.206-.082zm.11.046a.09.09 0 0 1 .03.083l.14.014a.231.231 0 0 0-.082-.208zm.03.09a1.369 1.369 0 0 1-.237.663l.119.076a1.513 1.513 0 0 0 .259-.731zm-.237.663a1.636 1.636 0 0 1-.651.562l.065.125a1.778 1.778 0 0 0 .706-.612zm-.652.563a2.303 2.303 0 0 1-1.085.23v.14a2.434 2.434 0 0 0 1.151-.246zm2.112.153l-.053.046l.008.008zm0-6.392l.05.05zm.762 0l-.054.046l.009.008zm.064 2.284h-.07a.07.07 0 0 0 .126.043zm.623-.514l.032.064zm2.256.385l-.053.046zm.431 4.237l-.05-.05zm-.76 0l-.054.046l.008.007zm-.376-3.701l-.054.046zm-1.834.009l-.051-.049zm-.403 3.695l-.05-.05zm-.606-.016a.164.164 0 0 1-.11-.038l-.092.107a.302.302 0 0 0 .201.073zm-.102-.03a.164.164 0 0 1-.038-.11h-.141a.302.302 0 0 0 .072.201zm-.038-.11v-6.086h-.141v6.086zm0-6.086a.128.128 0 0 1 .035-.097l-.1-.1a.268.268 0 0 0-.075.197zm.035-.097a.141.141 0 0 1 .106-.044v-.14a.282.282 0 0 0-.206.082zm.106-.044h.458v-.14h-.458zm.458 0a.113.113 0 0 1 .093.04l.107-.093a.253.253 0 0 0-.2-.089zm.1.047a.113.113 0 0 1 .04.093h.141a.254.254 0 0 0-.088-.2zm.04.093v2.138h.141v-2.138zm.126 2.18a1.707 1.707 0 0 1 .599-.493l-.062-.127a1.849 1.849 0 0 0-.648.534zm.6-.493a1.869 1.869 0 0 1 .858-.176v-.141a2.005 2.005 0 0 0-.922.19zm.858-.176a1.63 1.63 0 0 1 1.316.543l.107-.092a1.77 1.77 0 0 0-1.42-.593zm1.316.545a2.103 2.103 0 0 1 .478 1.448h.14a2.243 2.243 0 0 0-.513-1.541zm.478 1.448v2.586h.14v-2.586zm0 2.586a.142.142 0 0 1-.044.106l.1.1a.284.284 0 0 0 .082-.206zm-.044.106a.128.128 0 0 1-.097.035v.14a.269.269 0 0 0 .197-.075zm-.097.035h-.458v.14h.458zm-.458 0a.164.164 0 0 1-.11-.038l-.092.107a.302.302 0 0 0 .201.072zm-.102-.03a.164.164 0 0 1-.038-.111h-.141a.303.303 0 0 0 .071.201zm-.038-.111v-2.542h-.141v2.54zm0-2.54a1.529 1.529 0 0 0-.339-1.056l-.105.094a1.39 1.39 0 0 1 .303.961zm-.338-1.055a1.21 1.21 0 0 0-.961-.382v.141a1.07 1.07 0 0 1 .854.334zm-.961-.382a1.288 1.288 0 0 0-.977.39l.102.096a1.151 1.151 0 0 1 .875-.344zm-.977.39a1.463 1.463 0 0 0-.359 1.048h.142a1.323 1.323 0 0 1 .32-.95zm-.359 1.048v2.54h.142v-2.543zm0 2.54a.141.141 0 0 1-.043.106l.099.1a.283.283 0 0 0 .082-.206zm-.043.106a.128.128 0 0 1-.098.034v.141a.269.269 0 0 0 .197-.076zm-.098.034h-.458v.141h.458zm5.304-.415l-.05.049zm-.614-1.595h-.07zm-.01-.312h-.07v.004zm.01-.303l-.07-.005zm.623-1.577l-.05-.05zm3.072.064l-.053.046zm.494 2.056l.05.05zm-3.32.055v-.07a.07.07 0 0 0-.07.07zm0 .082h-.07zm.358 1.019l-.056.043zm1.578.246l.037.06zm.403-.357l-.056-.042zm.12-.129l.032.064h.008zm.74.018l-.045.055zm-.202.615l-.052-.047zm-.705.493l.028.064zm.22-2.623v.071a.07.07 0 0 0 .07-.07zm-.35-1.054l-.054.045zm-1.833 0l-.054-.045zm-.33 1.054h-.07a.07.07 0 0 0 .07.071zm1.257 2.755a1.957 1.957 0 0 1-1.463-.557l-.1.099a2.097 2.097 0 0 0 1.562.598zm-1.462-.556a2.352 2.352 0 0 1-.595-1.551l-.141.007a2.49 2.49 0 0 0 .634 1.64zm-.595-1.55l-.009-.311h-.14l.009.311zm-.009-.307l.01-.303l-.142-.004l-.01.303zm.01-.3a2.361 2.361 0 0 1 .604-1.533l-.102-.098a2.502 2.502 0 0 0-.643 1.621zm.603-1.533a1.917 1.917 0 0 1 1.444-.565v-.141a2.056 2.056 0 0 0-1.545.608zm1.444-.565a1.897 1.897 0 0 1 1.524.626l.107-.092a2.037 2.037 0 0 0-1.63-.675zm1.525.626a2.492 2.492 0 0 1 .542 1.696h.141a2.632 2.632 0 0 0-.575-1.789zm.542 1.696v.156h.141v-.156zm0 .156a.141.141 0 0 1-.044.106l.1.1a.284.284 0 0 0 .082-.206zm-.044.106a.128.128 0 0 1-.097.035v.14a.269.269 0 0 0 .197-.075zm-.097.035h-3.173v.14h3.173zm-3.243.07v.083h.141v-.082zm0 .083a1.81 1.81 0 0 0 .372 1.058l.111-.087a1.667 1.667 0 0 1-.343-.978zm.373 1.06a1.166 1.166 0 0 0 .944.438v-.141a1.026 1.026 0 0 1-.835-.387zm.944.438a1.355 1.355 0 0 0 .726-.176l-.074-.12a1.218 1.218 0 0 1-.651.154zm.726-.176a1.462 1.462 0 0 0 .423-.377l-.115-.082a1.327 1.327 0 0 1-.383.339zm.421-.375a1.029 1.029 0 0 1 .067-.083a.23.23 0 0 1 .021-.02l.009-.005l-.064-.126a.268.268 0 0 0-.068.056a1.275 1.275 0 0 0-.076.093zm.1-.11a.27.27 0 0 1 .12-.018v-.14a.385.385 0 0 0-.193.037zm.12-.018h.45v-.14h-.45zm.45 0a.137.137 0 0 1 .091.03l.09-.109a.277.277 0 0 0-.182-.062zm.091.03a.088.088 0 0 1 .03.074h.14a.228.228 0 0 0-.082-.183zm.03.074a.74.74 0 0 1-.24.439l.106.094a.868.868 0 0 0 .274-.533zm-.24.44a1.99 1.99 0 0 1-.682.478l.06.128a2.138 2.138 0 0 0 .73-.513zm-.681.477a2.438 2.438 0 0 1-1.007.195v.141a2.577 2.577 0 0 0 1.065-.208zm.32-2.559v-.027h-.141v.027zm0-.027a1.563 1.563 0 0 0-.366-1.074l-.106.094a1.424 1.424 0 0 1 .329.98zm-.366-1.07a1.206 1.206 0 0 0-.97-.428v.142a1.07 1.07 0 0 1 .862.378zm-.97-.428a1.206 1.206 0 0 0-.971.429l.107.09a1.07 1.07 0 0 1 .863-.378zm-.972.429a1.616 1.616 0 0 0-.347 1.07h.141a1.475 1.475 0 0 1 .314-.983zm-.347 1.07v.026h.141v-.027zm.07.097h2.513v-.14h-2.512zM53.47 77.124a.478.478 0 0 1-.466-.466a.947.947 0 0 1 .023-.257l5.778-15.074a.725.725 0 0 1 .745-.512h1.584a.725.725 0 0 1 .746.512l5.757 15.074l.047.257a.48.48 0 0 1-.466.466h-1.189a.604.604 0 0 1-.396-.117a.74.74 0 0 1-.186-.28l-1.281-3.308h-7.642l-1.282 3.309a.658.658 0 0 1-.21.28a.566.566 0 0 1-.372.116zm10.018-5.708l-3.145-8.27l-3.144 8.27zm6.73-8.667a.487.487 0 0 1-.535-.535v-1.258a.587.587 0 0 1 .14-.397a.54.54 0 0 1 .396-.164h1.468a.557.557 0 0 1 .56.56v1.257a.539.539 0 0 1-.165.396a.586.586 0 0 1-.396.14zm.187 14.375a.488.488 0 0 1-.536-.536V65.544a.503.503 0 0 1 .14-.372a.54.54 0 0 1 .396-.165h1.118a.558.558 0 0 1 .536.536v11.043a.539.539 0 0 1-.164.396a.504.504 0 0 1-.373.14zm5.643 0a.487.487 0 0 1-.535-.536v-11.02a.588.588 0 0 1 .14-.396a.54.54 0 0 1 .396-.165h1.07a.557.557 0 0 1 .558.56v1.024a3.5 3.5 0 0 1 3.262-1.584h.905a.558.558 0 0 1 .535.536v.954a.466.466 0 0 1-.164.373a.503.503 0 0 1-.373.14h-1.398a2.632 2.632 0 0 0-1.98.746a2.675 2.675 0 0 0-.723 1.98v6.85a.54.54 0 0 1-.165.396a.589.589 0 0 1-.396.14zm10.062 0a.488.488 0 0 1-.535-.536v-9.716h-1.98a.487.487 0 0 1-.536-.535v-.792a.503.503 0 0 1 .14-.373a.538.538 0 0 1 .395-.164h1.98v-1.166q0-3.96 4.008-3.96h1.304a.558.558 0 0 1 .536.536v.792a.54.54 0 0 1-.164.395a.504.504 0 0 1-.373.14h-1.257a1.727 1.727 0 0 0-1.468.56a2.671 2.671 0 0 0-.42 1.653v1.049h4.986v-4.588a.504.504 0 0 1 .14-.372a.54.54 0 0 1 .396-.165h1.07a.558.558 0 0 1 .536.536v16.168a.539.539 0 0 1-.165.396a.504.504 0 0 1-.373.14h-1.07a.487.487 0 0 1-.536-.536v-9.714H87.74v9.715a.54.54 0 0 1-.165.397a.505.505 0 0 1-.373.14zm17.19.233a5.335 5.335 0 0 1-3.985-1.445a5.623 5.623 0 0 1-1.49-3.844l-.025-1.001l.024-1.002a5.537 5.537 0 0 1 1.514-3.821a6.077 6.077 0 0 1 7.921 0a5.54 5.54 0 0 1 1.514 3.82q.023.257.023 1.003t-.023 1.001a5.57 5.57 0 0 1-1.514 3.844a5.256 5.256 0 0 1-3.964 1.444zm0-1.793a2.946 2.946 0 0 0 2.302-.932a4.055 4.055 0 0 0 .932-2.68q.023-.233.023-.885t-.023-.885a4.055 4.055 0 0 0-.932-2.68a2.946 2.946 0 0 0-2.303-.931a3.02 3.02 0 0 0-2.33.932a3.972 3.972 0 0 0-.904 2.68l-.023.884l.023.885a3.972 3.972 0 0 0 .904 2.68a3.02 3.02 0 0 0 2.326.93zm11.312 1.562a.696.696 0 0 1-.465-.14a1.086 1.086 0 0 1-.28-.442l-3.309-10.81l-.046-.233a.473.473 0 0 1 .14-.35a.527.527 0 0 1 .35-.14h1.024a.503.503 0 0 1 .373.14a.531.531 0 0 1 .21.257l2.586 8.783l2.773-8.69a.626.626 0 0 1 .21-.329a.597.597 0 0 1 .442-.164h.792a.599.599 0 0 1 .443.164a.625.625 0 0 1 .21.33l2.772 8.689l2.586-8.783a.539.539 0 0 1 .164-.256a.587.587 0 0 1 .397-.14h1.048a.446.446 0 0 1 .33.14a.474.474 0 0 1 .14.35l-.048.232l-3.284 10.81a1.088 1.088 0 0 1-.28.442a.74.74 0 0 1-.494.14h-.904a.707.707 0 0 1-.77-.582l-2.702-8.34l-2.702 8.34a.763.763 0 0 1-.792.582z\\\"/>\"\n\t\t},\n\t\t\"apachekafka\": {\n\t\t\t\"body\": \"<path fill=\\\"#231f20\\\" d=\\\"M86.758 70.89c-4.992 0-9.465 2.208-12.528 5.68l-7.851-5.547a21.275 21.275 0 0 0 1.312-7.32c0-2.531-.46-4.95-1.27-7.203l7.837-5.488c3.062 3.457 7.523 5.652 12.5 5.652c9.207 0 16.703-7.48 16.703-16.672c0-9.195-7.496-16.672-16.703-16.672c-9.211 0-16.707 7.477-16.707 16.672c0 1.645.25 3.23.699 4.735l-7.84 5.488a21.578 21.578 0 0 0-13.36-7.746v-9.43c7.567-1.586 13.27-8.293 13.27-16.312C62.82 7.53 55.324.055 46.117.055c-9.21 0-16.707 7.476-16.707 16.672c0 7.91 5.555 14.539 12.969 16.238v9.547c-10.117 1.773-17.84 10.59-17.84 21.191c0 10.652 7.797 19.5 17.992 21.211V95c-7.492 1.64-13.12 8.309-13.12 16.273c0 9.196 7.495 16.672 16.706 16.672c9.207 0 16.703-7.476 16.703-16.672c0-7.964-5.629-14.632-13.117-16.273V84.914a21.592 21.592 0 0 0 13.133-7.625l7.902 5.586a16.45 16.45 0 0 0-.687 4.688c0 9.195 7.496 16.671 16.707 16.671c9.207 0 16.703-7.476 16.703-16.671c0-9.196-7.496-16.672-16.703-16.672zm0-38.984c4.465 0 8.097 3.63 8.097 8.086c0 4.453-3.632 8.082-8.097 8.082c-4.469 0-8.102-3.629-8.102-8.082c0-4.457 3.633-8.086 8.102-8.086m-48.742-15.18c0-4.456 3.632-8.081 8.101-8.081c4.465 0 8.098 3.625 8.098 8.082c0 4.457-3.633 8.082-8.098 8.082c-4.469 0-8.101-3.625-8.101-8.082zm16.199 94.547c0 4.457-3.633 8.082-8.098 8.082c-4.469 0-8.101-3.625-8.101-8.082c0-4.457 3.632-8.082 8.101-8.082c4.465 0 8.098 3.625 8.098 8.082m-8.102-36.296c-6.226 0-11.293-5.059-11.293-11.274c0-6.219 5.067-11.277 11.293-11.277c6.23 0 11.297 5.058 11.297 11.277c0 6.215-5.066 11.274-11.297 11.274m40.645 20.668c-4.469 0-8.102-3.625-8.102-8.082c0-4.458 3.633-8.083 8.102-8.083c4.465 0 8.097 3.625 8.097 8.082c0 4.458-3.632 8.083-8.097 8.083m0 0\\\"/>\"\n\t\t},\n\t\t\"apachekafka-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#231F20\\\" d=\\\"M15.885 41.203a3.29 3.29 0 0 0-2.371-.996a3.25 3.25 0 0 0-2.356.996h-.015a3.418 3.418 0 0 0-.973 2.406c0 .95.371 1.797.973 2.403l.015.015a3.256 3.256 0 0 0 2.356.989a3.3 3.3 0 0 0 2.37-.989l.009-.015a3.388 3.388 0 0 0 .972-2.403c0-.941-.37-1.797-.972-2.406zm-2.371 46.59c.933 0 1.77-.387 2.37-.992l.009-.016a3.39 3.39 0 0 0 .972-2.394c0-.95-.37-1.801-.972-2.414h-.008a3.275 3.275 0 0 0-2.371-.997a3.23 3.23 0 0 0-2.356.997h-.015a3.43 3.43 0 0 0-.973 2.414c0 .937.371 1.789.973 2.394l.015.016a3.29 3.29 0 0 0 2.356.992M31.736 77.48a3.296 3.296 0 0 0 2.035-1.582l.063-.117a3.43 3.43 0 0 0 .266-2.465a3.363 3.363 0 0 0-1.563-2.074l-.047-.031a3.281 3.281 0 0 0-2.488-.305a3.278 3.278 0 0 0-2.035 1.586a3.442 3.442 0 0 0 1.222 4.656h.004c.801.47 1.703.555 2.543.332M16.943 60.512a4.808 4.808 0 0 0-3.43-1.45a4.8 4.8 0 0 0-3.425 1.45a4.958 4.958 0 0 0-1.41 3.484c0 1.363.539 2.594 1.41 3.496a4.805 4.805 0 0 0 6.855 0a5 5 0 0 0 1.414-3.496a4.943 4.943 0 0 0-1.414-3.484m-1.93-5.801a9.162 9.162 0 0 1 5.032 2.644h.012c.21.215.418.454.609.692l3.34-1.965a7.366 7.366 0 0 1-.11-4.18a7.278 7.278 0 0 1 3.364-4.449l.054-.039a7.078 7.078 0 0 1 5.418-.707a7.235 7.235 0 0 1 4.383 3.426v.004a7.464 7.464 0 0 1 .723 5.566a7.283 7.283 0 0 1-3.363 4.457l-.457.274h-.047a7.13 7.13 0 0 1-4.973.46a7.179 7.179 0 0 1-3.496-2.18l-3.332 1.962a9.615 9.615 0 0 1 0 6.652l3.332 1.957a7.102 7.102 0 0 1 3.496-2.183a7.006 7.006 0 0 1 5.477.738l.109.055v.003a7.314 7.314 0 0 1 3.254 4.403a7.454 7.454 0 0 1-.723 5.558l-.062.125l-.004-.011a7.295 7.295 0 0 1-4.313 3.32a7.156 7.156 0 0 1-5.476-.734v-.016a7.307 7.307 0 0 1-3.364-4.453a7.34 7.34 0 0 1 .11-4.172l-3.34-1.961a9.204 9.204 0 0 1-.61.68l-.011.011a9.103 9.103 0 0 1-5.031 2.63v3.925c1.386.297 2.629 1 3.601 1.992l.008.008a7.375 7.375 0 0 1 2.11 5.188a7.358 7.358 0 0 1-2.11 5.171l-.008.024c-1.312 1.324-3.113 2.148-5.101 2.148a7.16 7.16 0 0 1-5.094-2.148h-.008v-.024A7.361 7.361 0 0 1 6.3 84.391c0-2.024.808-3.864 2.113-5.188v-.008h.008a7.137 7.137 0 0 1 3.598-1.992v-3.926a9.092 9.092 0 0 1-5.028-2.629l-.011-.011a9.46 9.46 0 0 1-2.711-6.64a9.467 9.467 0 0 1 2.71-6.642h.012a9.164 9.164 0 0 1 5.028-2.644V50.8a7.261 7.261 0 0 1-3.598-1.996h-.008v-.012A7.383 7.383 0 0 1 6.3 43.609c0-2.011.808-3.855 2.113-5.183l.008-.004a7.136 7.136 0 0 1 5.094-2.156c1.988 0 3.789.824 5.101 2.156v.004h.008a7.393 7.393 0 0 1 2.11 5.183a7.38 7.38 0 0 1-2.11 5.184l-.008.012a7.256 7.256 0 0 1-3.601 1.996v3.91zm18.758-2.61l-.027-.039a3.366 3.366 0 0 0-2.008-1.546a3.301 3.301 0 0 0-2.547.34h.004a3.36 3.36 0 0 0-1.562 2.07a3.45 3.45 0 0 0 .336 2.586l.015.02c.461.8 1.2 1.34 2.02 1.554a3.22 3.22 0 0 0 2.535-.332l.043-.02a3.403 3.403 0 0 0 1.52-2.043a3.471 3.471 0 0 0-.329-2.59m14.817 1.149h3.726v11.578l5.375-6.05h4.47l-6.49 7.007l6.517 8.883h-4.27l-5.602-7.934v7.934h-3.726zm17.898 13.543c0 1.969 1.39 4.836 4.75 4.836c2.075 0 3.442-1.102 4.153-2.547c.37-.7.539-1.45.597-2.227a5.015 5.015 0 0 0-.43-2.234c-.652-1.5-2.1-2.805-4.347-2.805c-3.016 0-4.723 2.489-4.723 4.95zm13.196 7.875h-3.727v-2.285c-.992 1.847-3.07 2.773-5.262 2.773c-5.004 0-7.933-3.965-7.933-8.449c0-5.004 3.554-8.418 7.933-8.418c2.844 0 4.578 1.531 5.262 2.809v-2.32h3.727zM83.9 61.703h-1.93v-2.926h1.93v-.894c0-4.723 3.532-5.004 6.204-5.035v2.918c-.938 0-2.473 0-2.473 2.234v.777h2.473v2.926H87.63v12.965H83.9zm8.739-8.453h3.726v11.578l5.375-6.05h4.465l-6.484 7.007l6.511 8.883h-4.265l-5.602-7.934v7.934H92.64V53.25m17.893 13.543c0 1.969 1.395 4.836 4.75 4.836c2.074 0 3.442-1.102 4.153-2.547c.37-.7.543-1.45.597-2.227a5.015 5.015 0 0 0-.43-2.234c-.652-1.5-2.101-2.805-4.347-2.805c-3.012 0-4.723 2.489-4.723 4.95zm13.2 7.875h-3.727v-2.285c-.996 1.847-3.07 2.773-5.262 2.773c-5.008 0-7.933-3.965-7.933-8.449c0-5.004 3.554-8.418 7.933-8.418c2.844 0 4.578 1.531 5.262 2.809v-2.32h3.726v15.89\\\"/>\"\n\t\t},\n\t\t\"apachespark\": {\n\t\t\t\"body\": \"<path fill=\\\"#e15919\\\" d=\\\"M57.646.004c-2.269.064-4.51 1.143-6.384 3.223c-1.03 1.146-1.905 2.51-2.63 3.855c-1.89 3.54-2.262 7.547-2.962 11.43l-3.852 21.81c-.148.856-.532 1.21-1.3 1.455l-28.268 8.98c-2.06.673-4.125 1.543-5.947 2.7c-5.558 3.53-6.38 9.338-2.207 14.438c1.842 2.256 4.216 3.843 6.85 4.996l17.603 7.843c.147.08.304.132.463.162l3.717 2.682s-3.7 40.948 3.246 43.781c-.061-.01-.41-.082-.41-.082s.704.761 2.603.537c1.454.27 1.262.226.074-.01c2.583-.334 7.337-2.497 15.578-10.784a47.396 47.396 0 0 0 1.776-1.676l17.8-19.217l4.163 1.465c.15.207.367.34.714.443l19.823 6.031c2.709.836 5.389 1.448 8.277 1.026c5.156-.755 8.951-5 8.9-10.192c-.02-2.28-.82-4.339-1.87-6.324l-13.128-24.898c-.418-.787-.405-1.296.196-2l22.054-25.922c1.428-1.703 2.717-3.529 3.465-5.645c1.643-4.67-.482-8.382-5.33-9.289c-2.229-.398-4.427-.188-6.6.385l-31.597 8.395c-.93.25-1.39.075-1.895-.772l-12.9-21.434c-.975-1.615-2.14-3.194-3.477-4.527C62.212.89 59.915-.059 57.646.004m.944 19.736c.51.358.768.727 1.01 1.125l13.88 23.13c.382.628.725.85 1.485.648l24.443-6.497l5.885-1.54c-.087.493-.302.79-.537 1.068l-20.16 23.672c-.57.688-.623 1.17-.194 1.976l12.743 24.16l.585 1.237l-.015.02l-22.727-6.264l-.006-.018l-4.298-1.205l-25.493 28.256l4.663-37.15l-4.184-1.82l.008-.007l-23.674-9.4c.454-.413.86-.585 1.285-.717l28.777-9.096c.676-.21 1.061-.47 1.125-1.242l.403-2.355l3.875-21.807l1.12-6.174z\\\"/>\"\n\t\t},\n\t\t\"apachespark-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#e15919\\\" d=\\\"M117.085 64.337c-.109-.237-.16-.357-.22-.47c-1.604-3.049-3.203-6.102-4.826-9.152c-.16-.308-.14-.489.08-.753c2.553-2.978 5.074-5.98 7.63-8.944a.777.777 0 0 0 .205-.405a839.8 839.8 0 0 0-2.232.58c-3.078.818-6.184 1.632-9.233 2.461c-.289.076-.417-.008-.561-.248a1047.83 1047.83 0 0 0-5.278-8.74a1.222 1.222 0 0 0-.384-.425c-.14.782-.285 1.555-.425 2.332c-.49 2.753-.982 5.486-1.467 8.247c-.052.297-.124.598-.152.894c-.024.28-.168.389-.429.469c-3.63 1.142-7.257 2.292-10.884 3.442c-.16.052-.316.116-.489.273c2.97 1.178 5.94 2.356 8.949 3.558c-.109.084-.18.152-.26.204c-1.856 1.199-3.716 2.4-5.567 3.603c-.224.148-.4.168-.65.056c-2.22-.998-4.451-1.98-6.68-2.97c-.997-.444-1.89-1.037-2.588-1.895c-1.579-1.927-1.266-4.123.838-5.482c.689-.44 1.47-.765 2.252-1.022c3.558-1.158 7.133-2.276 10.68-3.398c.296-.096.436-.228.492-.553c.477-2.753.97-5.526 1.467-8.247c.268-1.47.408-2.977 1.122-4.328c.276-.52.6-1.03.997-1.462c1.42-1.575 3.395-1.631 4.91-.132c.504.504.937 1.098 1.314 1.715a976.243 976.243 0 0 1 4.905 8.122c.192.321.364.385.717.293c3.98-1.07 7.959-2.12 11.958-3.174c.825-.216 1.655-.296 2.5-.136c1.836.34 2.637 1.74 2.016 3.518c-.28.806-.77 1.487-1.318 2.132c-2.781 3.27-5.567 6.56-8.332 9.814c-.224.269-.228.46-.072.761c1.667 3.138 3.314 6.268 4.99 9.442c.396.749.7 1.534.709 2.396c.02 1.964-1.419 3.57-3.37 3.859c-1.09.16-2.108-.072-3.134-.389a824.96 824.96 0 0 0-7.506-2.284c-.228-.072-.32-.164-.36-.413c-.289-1.759-.602-3.514-.906-5.277c-.008-.048.004-.1.012-.209c2.85.79 5.69 1.563 8.62 2.377\\\"/><path fill=\\\"#3a383d\\\" d=\\\"M57.648 54.455c-2.095 0-3.855 1.764-3.855 3.856c0 1.639 1.094 2.945 2.838 2.945a3.62 3.62 0 0 0 1.49-.342h.004l.186-1.566a2.518 2.518 0 0 1-1.526.529c-.949 0-1.549-.75-1.549-1.707c0-1.254 1.07-2.342 2.268-2.342c.577 0 1.047.226 1.336.547l.195-1.58a2.891 2.891 0 0 0-1.387-.34m15.245.068l-1.16 6.59h3.652l.232-1.33h-2.275l.23-1.326h2.092l.23-1.324h-2.087l.23-1.28h2.277l.233-1.33zm-1.16 6.59h-.003v.01l.002-.01zm-4.247-6.58l-.465 2.612h-2.865l.461-2.61h-1.379l-1.162 6.6h1.375l.465-2.653h2.869l-.46 2.653h1.378l1.162-6.602zm-35.515.002l-3.528 6.6h1.6l.717-1.406h2.256l.216 1.406h1.479l-1.201-6.6zm16.365 0l-3.527 6.6h1.6l.716-1.406h2.256l.213 1.406h1.482l-1.203-6.6zm-9.197.012l-1.162 6.596h1.378l.428-2.413h.91c1.434 0 2.442-.957 2.442-2.384c0-1.13-.77-1.787-1.875-1.787h-2.114zm1.15 1.338h.805l-.004.002c.36 0 .601.203.601.6c0 .601-.38.921-.869.921h-.802zm-7.81.46l.32 2.057h-1.354l1.034-2.056zm16.37 0l.32 2.057h-1.355l1.036-2.056zm-33.07.887c-4.048.123-7.145 2.042-9.32 5.565c-.933 1.5-1.293 3.19-1.041 4.99c.229 1.631.949 3.057 2.012 4.287c1.522 1.795 3.165 3.488 4.74 5.239c.66.73 1.335 1.462 1.877 2.279c.94 1.419.7 2.995-.57 4.125a5.678 5.678 0 0 1-1.415.916c-1.955.886-3.905.342-5.115-1.45c-.4-.604-.673-1.302-1.002-1.96c-.06-.128-.108-.26-.172-.42C3.85 81.829 1.951 82.85 0 83.893c.316.782.588 1.554.941 2.283c.997 2.044 2.55 3.51 4.782 4.164c1.675.497 3.39.548 5.113.271c3.92-.62 6.863-2.66 8.738-6.142c1.014-1.9 1.443-3.919 1.09-6.063c-.296-1.823-1.257-3.299-2.455-4.617c-1.319-1.463-2.71-2.844-4.045-4.287c-.8-.874-1.585-1.763-2.303-2.701c-.649-.853-.558-1.932.135-2.686c.782-.845 1.765-1.22 2.91-1.14c1.38.092 2.325.889 3.09 1.955c.297.416.55.865.83 1.31c1.744-1.301 3.484-2.597 5.287-3.937c-.469-.628-.903-1.228-1.369-1.809c-1.567-1.98-3.598-3.17-6.142-3.262a14.075 14.075 0 0 0-.823 0m8.334 5.07l.01.014l.025-.039c-.011.01-.023.017-.035.026zm74.782-4.064c-.104.032-.148.031-.176.051c-2.036 1.31-4.072 2.62-6.104 3.947c-.1.064-.185.226-.2.35c-.562 4.205-1.11 8.41-1.663 12.613c-.577 4.412-1.158 8.785-1.732 13.197c-.072.553-.132 1.11-.2 1.682h5.897c.565-4.288 1.13-8.574 1.703-12.947c.152.217.24.343.324.47c2.64 4.044 5.337 8.107 8.002 12.167c.164.252.333.336.629.336c2.262-.008 4.501 0 6.748.003v-.048c-.077-.08-.172-.153-.236-.24l-10.635-14.967c-.069-.095-.124-.197-.19-.301c.102-.112.19-.213.278-.309c2.063-2.184 4.117-4.352 6.181-6.512c.181-.193.254-.357.206-.625c-.244-1.33-.465-2.668-.694-4.003c-.08-.465-.164-.929-.256-1.475c-3.258 3.587-6.452 7.142-9.65 10.68l-.072-.051c.613-4.657 1.227-9.318 1.84-14.018m13.228 31.87v.03l.018-.03zm-48.42-24.583c-.471.011-.95.046-1.437.106c-6.676.825-12.25 6.72-12.536 13.44c-.117 2.89.693 5.51 2.633 7.714c3.586 4.096 9.362 4.38 13.774 2.344c.092-.04.175-.189.191-.3c.29-2.145.568-4.292.865-6.556l.018-.033c-.914.95-1.874 1.66-3.004 2.11c-2.228.878-4.39.872-6.43-.487c-2.096-1.402-2.994-3.921-2.425-6.554c.826-3.967 4.693-6.776 8.74-6.348c1.96.205 3.442 1.158 4.332 2.95c.834 1.686.967 3.496.758 5.32c-.332 2.925-.754 5.86-1.135 8.78c-.076.57-.14 1.138-.207 1.72h5.236c.02-.114.04-.206.053-.293c.332-2.512.682-5.053.998-7.586c.221-1.78.504-3.563.584-5.362c.125-2.72-.708-5.193-2.508-7.256c-2.307-2.65-5.2-3.786-8.5-3.709m-26.678.153c-.957.004-1.932.12-2.92.334c-5.442 1.194-10.11 5.895-11.046 11.38c-.533 3.095-.859 6.204-1.276 9.317c-.364 2.725-.72 5.448-1.078 8.168c-.1.774-.197 1.553-.297 2.326c.088.024.124.045.164.045c1.623.004 3.246.004 4.866.008c.204.005.265-.084.289-.272a553.527 553.527 0 0 1 .636-4.949c.164-1.238.328-2.473.504-3.783l.037.064c.16.1.265.16.358.223c2.556 1.792 5.414 2.299 8.45 1.842c2.93-.445 5.495-1.756 7.63-3.824c3.238-3.174 4.925-6.97 4.412-11.545c-.372-3.214-1.946-5.815-4.7-7.586c-1.897-1.226-3.922-1.758-6.029-1.748m48.965.582a35.62 35.62 0 0 0-1.133.027c-3.154.124-6.27 2.932-6.763 6.065c-.365 2.349-.645 4.704-.953 7.048c-.361 2.681-.718 5.41-1.075 8.123c-.1.781-.195 1.559-.3 2.364h5.486c.137-1.07.271-2.128.408-3.182l1.65-12.533c.045-.341.084-.688.184-1.008c.27-.826 1.075-1.398 1.957-1.402c1.09-.008 2.175-.004 3.29-.004l.716-5.442l-.023-.037c-1.167 0-2.31-.03-3.444-.02zm-49.736 4.752c2.655-.012 5.006 1.567 5.842 4.136c.205.633.27 1.307.357 1.768h.027c-.176 3.233-1.562 5.515-4.123 7.049c-1.935 1.158-4.023 1.486-6.183.705c-2.681-.95-4.124-3.548-3.852-6.229c.33-3.638 2.884-6.43 6.434-7.255a6.867 6.867 0 0 1 1.498-.174m77.142 16.33v.369h.87v2.396h.453v-2.396l.004.002h.867v-.371zm2.754.002v2.763h.454v-2.306h.015l.904 2.306h.29l.91-2.306h.011v2.306h.461v-2.763h-.7l-.813 2.103l-.827-2.103z\\\"/>\"\n\t\t},\n\t\t\"apl\": {\n\t\t\t\"body\": \"<path fill=\\\"#24a148\\\" d=\\\"M88.105 97.048h32.763l-1.792 3.95c-6.234 12.691-15.571 22.645-27.493 25.855l-3.478.663zm-42.177 0h36.588v30.881h-.509c-3.352-.12-6.863-.74-10.524-1.927c-7.976-2.585-8.014-2.63-15.52-.021c-2.999 1.042-5.9 1.668-8.7 1.922l-1.336.063zm-38.602 0H40.34v30.688l-1.16-.15c-13.214-2.298-23.6-13.222-30.35-27.18zm80.78-42.828h39.508l.287 3.317c.481 9.784-.792 20.234-3.644 30.005l-1.26 3.916h-34.89zm-42.177 0h36.588v37.238H45.929zm-45.539 0h39.95v37.238H5.143l-1.382-4.285C.558 76.287-.674 64.711.356 54.465zm25.326-30.534c3.441-.071 7.251.489 11.446 1.78l3.178 1.094v22.07H1.253l.898-3.891C5.578 32.56 13.203 23.946 25.716 23.687zm56.801-4.523V48.63H45.929V29.013l1.327.636a94.527 94.527 0 0 1 7.467 4.284c8.794-6.308 16.723-10.682 23.824-13.423zm14.896-2.278c16.268.667 25.617 13.045 29.058 29.315l.406 2.43H88.105V17.7l.48-.114c3.143-.592 6.084-.813 8.828-.7zM34.556.033h18.58c1.346 0 2.195.52 2.549 1.56c.26.765-.584 9.668-2.533 26.707C39.92 11.23 33.19 2.358 32.962 1.685c-.177-.52-.073-.933.312-1.239c.335-.275.762-.413 1.282-.413\\\"/><path fill=\\\"#defbe6\\\" d=\\\"m20.439 66.046l-3.304 8.555h6.958zm41.545-2.528v7.895h3.226c.052.025.11.038.175.038h.136c.881 0 1.646-.078 2.294-.233c.648-.156 1.192-.376 1.633-.662c.44-.31.777-.719 1.01-1.224c.233-.506.35-1.096.35-1.77c0-.726-.117-1.341-.35-1.847a3.013 3.013 0 0 0-1.01-1.225c-.441-.285-1.044-.506-1.808-.66c-.764-.157-1.69-.234-2.78-.234zm31.914-3.344h14.967V63.4h-2.332a7.09 7.09 0 0 0-.991.195c-.272.078-.486.181-.642.31a1.18 1.18 0 0 0-.35.545a2.729 2.729 0 0 0-.116.856v17.461h5.364c1.374.052 2.469-.116 3.285-.506c.817-.389 1.38-.972 1.691-1.75a14.12 14.12 0 0 0 .661-2.605c.156-.96.247-1.997.272-3.112l3.693-.077v11.394H93.898v-3.189h2.022a.34.34 0 0 0 .156.04h.116c.311 0 .583-.033.816-.098a1.22 1.22 0 0 0 .545-.291a1.18 1.18 0 0 0 .35-.545a2.75 2.75 0 0 0 .116-.856V65.23c0-.285-.039-.544-.116-.778a1.178 1.178 0 0 0-.35-.545a1.749 1.749 0 0 0-.642-.31a3.647 3.647 0 0 0-.991-.117l-2.022-.078zm-42.449 0h17.105c1.478.052 2.773.24 3.887.564c1.115.323 2.048.797 2.8 1.418a6.008 6.008 0 0 1 1.71 2.295c.389.907.583 1.97.583 3.19c0 1.192-.2 2.242-.602 3.15a5.574 5.574 0 0 1-1.808 2.254c-.803.597-1.82 1.044-3.052 1.343c-1.23.298-2.663.447-4.296.447l-5.791-.078v6.339c0 .363.038.667.116.913c.078.247.195.434.35.565c.155.129.37.226.642.29c.271.066.602.098.99.098l2.45-.078v3.228H51.45v-3.189h2.022a.34.34 0 0 0 .155.04h.117c.31 0 .583-.033.816-.098a1.21 1.21 0 0 0 .545-.291c.155-.13.272-.312.349-.545c.078-.234.117-.519.117-.856V65.229c0-.285-.04-.545-.117-.778a1.172 1.172 0 0 0-.35-.545a1.754 1.754 0 0 0-.64-.31a3.647 3.647 0 0 0-.992-.117l-2.022-.078zm-32.642 0h5.909L32.8 78.802c.053.129.091.24.118.33a.88.88 0 0 0 .116.253c.026.103.058.194.097.272c.04.078.072.156.098.234c.051.077.09.155.116.232a.99.99 0 0 0 .116.234c.026.078.059.15.098.213c.039.065.071.124.097.176c.207.389.434.726.68 1.011c.246.285.499.505.758.661c.285.181.642.31 1.07.389c.427.078.952.116 1.574.116v3.19H23.356v-3.267h1.36a.3.3 0 0 0 .117.039h.311a4.037 4.037 0 0 0 1.283-.195a.93.93 0 0 0 .408-.31a.796.796 0 0 0 .136-.468c0-.13-.013-.265-.039-.408a5.141 5.141 0 0 0-.117-.486c-.051-.156-.11-.318-.174-.486a6.224 6.224 0 0 1-.175-.525l-.078-.156l-.078-.155l-.078-.156a1.52 1.52 0 0 1-.077-.194a10.215 10.215 0 0 0-.311-.7a15.44 15.44 0 0 0-.136-.33a5.746 5.746 0 0 0-.137-.293v-.077h-9.68a1.56 1.56 0 0 1-.077.194a.344.344 0 0 0-.039.156a1.47 1.47 0 0 1-.078.194a33.28 33.28 0 0 1-.077.156a3.161 3.161 0 0 1-.233.622a1.725 1.725 0 0 1-.098.233a1.788 1.788 0 0 0-.097.234a.244.244 0 0 0-.058.097a.326.326 0 0 0-.02.097l-.058.117a.274.274 0 0 0-.02.117c-.077.155-.136.31-.174.466a7.03 7.03 0 0 1-.137.467l-.077.467a2.61 2.61 0 0 0-.04.427c0 .181.033.344.098.486a.53.53 0 0 0 .33.292c.13.052.344.09.642.117c.298.025.667.038 1.108.038l1.127-.077v3.266H6.367v-3.266a.132.132 0 0 0 .097.039h.292c.415 0 .797-.026 1.147-.078c.35-.052.654-.13.913-.233c.285-.13.558-.35.817-.662c.259-.31.505-.712.738-1.205a10.569 10.569 0 0 1 .311-.7l.078-.156a1.49 1.49 0 0 0 .078-.194l.078-.156l.077-.155v-.058c0-.014.013-.033.04-.06l.019-.018c.013-.013.02-.033.02-.058c0-.027.006-.053.019-.078a.293.293 0 0 1 .058-.078c.052-.078.09-.15.117-.214c.025-.065.064-.136.116-.214l.097-.195c.04-.077.072-.155.097-.233c.078-.13.15-.272.214-.428c.065-.155.123-.31.175-.466z\\\"/>\"\n\t\t},\n\t\t\"appcelerator\": {\n\t\t\t\"body\": \"<path fill=\\\"#AC162C\\\" d=\\\"M125.477 111.872L67.719 11.834a4.29 4.29 0 0 0-7.434 0L2.523 111.872c-.77 1.328-.77 2.81 0 4.141c.769 1.328 2.185 1.987 3.718 1.987h115.521c1.534 0 2.945-.659 3.715-1.987c.77-1.331.77-2.813 0-4.141m-36.748-8.075l.155-4.336l-16.666 2.944l-.758-.699l.215-5.706h-.435s-4.567 7.553-14.682 7.553c-7.503 0-14.572-3-14.572-15.176C41.986 76.083 51.228 72 60.908 72H71v-5.052c0-4.895-3.252-7.721-9.343-7.721c-6.852 0-15.006 1.087-15.006 1.087L46 59.552v-8.265s8.751-1.086 17.784-1.086C72.049 50.201 82 52.376 82 64.556v28.027l5.625-1.056l-1.555-4.057l13.907 6.094zM52.534 87.56c0 5.655 3.903 6.879 7.708 6.879c3.59 0 7.758-.954 10.758-5.413V80h-7.262c-7.4 0-11.204 1.686-11.204 7.56\\\"/>\"\n\t\t},\n\t\t\"appcelerator-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#AC162C\\\" d=\\\"M108.722 86.325L66.089 12.483a3.163 3.163 0 0 0-5.487 0L17.966 86.325a3.091 3.091 0 0 0 0 3.132c.567.98 1.612 1.543 2.744 1.543h85.27c1.132 0 2.174-.563 2.742-1.543a3.091 3.091 0 0 0 0-3.132m-27.125-5.962l.114-3.2l-12.302 2.173l-.56-.319l.16-4.017h-.321s-3.371 5.379-10.837 5.379c-5.538 0-10.756-2.26-10.756-11.248C47.095 60.059 53.916 57 61.062 57H69v-3.836c0-3.612-2.645-5.7-7.141-5.7c-5.058 0-11.228.803-11.228.803L50 47.705v-6.101s6.674-.802 13.34-.802c6.102 0 13.66 1.606 13.66 10.596v20.688l3.967-.779l-1.24-2.994l10.219 4.498zM54.88 68.479c0 4.173 3.126 5.027 5.935 5.027c2.65 0 5.186-.754 8.186-4.045V63h-5.85c-5.463 0-8.271 1.144-8.271 5.479\\\"/><path fill=\\\"#555759\\\" d=\\\"M10.819 112.77H8.552l-.178-.178l.049-1.351h-.101s-1.069 1.784-3.438 1.784c-1.759 0-3.415-.711-3.415-3.567c0-2.878 2.166-3.848 4.434-3.848h2.472v-1.145c0-1.146-.816-1.809-2.242-1.809c-1.606 0-3.541.255-3.541.255l-.18-.177v-1.938s2.039-.254 4.154-.254c1.936 0 4.254.51 4.254 3.362zm-2.445-5.22H6.565c-1.732 0-2.624.38-2.624 1.757c0 1.326.967 1.605 1.858 1.605c.841 0 1.758-.228 2.574-1.275zm5.911-6.754h2.293l.177.179l-.051 1.351h.102s1.046-1.784 3.415-1.784c1.937 0 3.286.74 3.286 3.593v5.197c0 2.855-2.446 3.694-4.561 3.694c-.867 0-1.528-.051-2.191-.102v4.179h-2.47zm2.47 9.962a13.97 13.97 0 0 0 2.318.053c1.07-.104 1.987-.536 1.987-2.063v-4.459c0-1.3-.636-1.632-1.579-1.632c-.866 0-1.758.356-2.727 1.551zm9.886-9.962h2.293l.178.179l-.052 1.351h.103s1.045-1.784 3.413-1.784c1.938 0 3.288.74 3.288 3.593v5.197c0 2.855-2.447 3.694-4.562 3.694c-.865 0-1.529-.051-2.19-.102v4.179h-2.471zm2.47 9.962c.661.077 1.631.104 2.317.053c1.07-.104 1.987-.536 1.987-2.063v-4.459c0-1.3-.637-1.632-1.579-1.632c-.866 0-1.757.356-2.726 1.551v6.55zm17.707-7.745s-1.451-.254-3.059-.254c-1.426 0-2.624.205-2.624 2.038v4.001c0 1.836 1.198 2.038 2.624 2.038c1.607 0 3.059-.256 3.059-.256l.179.179v2.012s-1.708.256-3.822.256c-2.116 0-4.509-.662-4.509-3.517v-5.427c0-2.852 2.393-3.541 4.509-3.541c2.114 0 3.822.254 3.822.254v2.04zm11.414 4.537h-6.395v1.247c0 1.836 1.197 2.038 2.624 2.038c1.604 0 3.211-.256 3.211-.256l.175.179v2.012s-1.857.256-3.973.256c-2.113 0-4.51-.662-4.51-3.517v-5.17c0-2.981 2.422-3.797 4.689-3.797c2.266 0 4.661.74 4.661 3.797c0 1.3-.205 2.801-.229 2.955zm-6.394-3.391v1.452h4.203c.051-.305.128-.866.103-1.425c-.052-1.147-.868-1.529-2.089-1.529c-1.301 0-2.217.458-2.217 1.502m12.227-8.203v16.814h-2.472V95.956zm11.974 11.594h-6.393v1.247c0 1.836 1.198 2.038 2.622 2.038c1.605 0 3.211-.256 3.211-.256l.177.179v2.012s-1.858.256-3.974.256s-4.511-.662-4.511-3.517v-5.17c0-2.981 2.42-3.797 4.688-3.797c2.271 0 4.665.74 4.665 3.797c0 1.3-.204 2.801-.229 2.955zm-6.393-3.391v1.452h4.201c.051-.305.128-.866.101-1.425c-.05-1.147-.864-1.529-2.089-1.529c-1.296 0-2.213.458-2.213 1.502m15.946-1.146c-1.044 0-2.344 0-3.718 1.276v8.481h-2.473v-11.974h2.295l.178.179l-.052 1.351h.103c-.155 0 1.298-1.935 3.845-1.784v2.294zm11.058 9.757h-2.27l-.178-.178l.053-1.351h-.104s-1.069 1.784-3.438 1.784c-1.758 0-3.414-.711-3.414-3.567c0-2.878 2.166-3.848 4.434-3.848h2.469v-1.145c0-1.146-.815-1.809-2.242-1.809c-1.604 0-3.54.255-3.54.255l-.177-.177v-1.938s2.037-.254 4.151-.254c1.935 0 4.256.51 4.256 3.362zm-2.448-5.22h-1.808c-1.731 0-2.622.38-2.622 1.757c0 1.326.964 1.605 1.857 1.605c.842 0 1.757-.228 2.572-1.275zm6.089-4.792H99.02v-1.962h1.271v-2.548h2.473v2.548h2.879v1.962h-2.879v6.801c0 .97.509 1.353 1.377 1.353c.839 0 1.578-.101 1.578-.101l.181.177v1.782s-.894.256-2.242.256c-2.167 0-3.366-1.198-3.366-3.467zm16.742 6.498c0 3.081-2.399 3.77-4.663 3.77c-2.27 0-4.69-.79-4.69-3.77v-4.917c0-2.981 2.421-3.797 4.69-3.797c2.264 0 4.663.714 4.663 3.797zm-2.448-4.587c0-1.35-.841-2.012-2.215-2.012c-1.506 0-2.217.687-2.217 2.012v4.255c0 1.4.813 1.988 2.217 1.988c1.5 0 2.215-.664 2.215-1.988zm11.769-1.656c-1.044 0-2.342 0-3.72 1.276v8.481h-2.47v-11.974h2.293l.177.179l-.051 1.351h.102c-.151 0 1.302-1.935 3.846-1.784v2.294z\\\"/>\"\n\t\t},\n\t\t\"apple\": {\n\t\t\t\"body\": \"<path d=\\\"M97.905 67.885c.174 18.8 16.494 25.057 16.674 25.137c-.138.44-2.607 8.916-8.597 17.669c-5.178 7.568-10.553 15.108-19.018 15.266c-8.318.152-10.993-4.934-20.504-4.934c-9.508 0-12.479 4.776-20.354 5.086c-8.172.31-14.395-8.185-19.616-15.724C15.822 94.961 7.669 66.8 18.616 47.791c5.438-9.44 15.158-15.417 25.707-15.571c8.024-.153 15.598 5.398 20.503 5.398c4.902 0 14.106-6.676 23.782-5.696c4.051.169 15.421 1.636 22.722 12.324c-.587.365-13.566 7.921-13.425 23.639M82.272 21.719c4.338-5.251 7.258-12.563 6.462-19.836c-6.254.251-13.816 4.167-18.301 9.416c-4.02 4.647-7.54 12.087-6.591 19.216c6.971.54 14.091-3.542 18.43-8.796\\\"/>\"\n\t\t},\n\t\t\"appwrite\": {\n\t\t\t\"body\": \"<path fill=\\\"#f02e65\\\" d=\\\"M40.162 23.768C24.121 25.189 10.496 36.065 5.473 51.443C4.028 55.874 3.53 59.05 3.53 64.026s.498 8.151 1.943 12.582c7.701 23.505 34.334 34.595 56.466 23.529L64 99.094l2.085 1.043c18.222 9.123 40.377 3.293 51.703-13.672c2.962-4.407 5.237-10.118 6.208-15.544c.356-2.085.474-3.744.474-6.895c0-4.976-.497-8.152-1.943-12.583c-7.701-23.505-34.334-34.594-56.442-23.529L64 28.957l-2.061-1.043a41.323 41.323 0 0 0-14.904-4.17c-3.152-.261-3.792-.261-6.873.024m10.142 8.601c2.322.45 6.801 2.203 9.525 3.744c3.721 2.085 7.938 5.995 10.521 9.739c1.398 2.037 3.27 5.876 4.336 8.933c1.517 4.265 1.517 14.217 0 18.481c-1.848 5.214-4.194 9.266-7.345 12.607c-3.744 3.981-7.227 6.326-12.44 8.364c-3.317 1.303-5.307 1.73-9.217 1.919c-4.787.237-9.1-.331-12.488-1.682c-.853-.356-1.73-.663-1.99-.711c-.498-.118-4.763-2.488-6.208-3.46c-1.54-1.042-5.331-4.762-6.801-6.682c-.734-.971-1.35-1.824-1.35-1.895c0-.071-.545-1.067-1.209-2.204c-1.161-2.014-1.943-3.649-1.753-3.649c.047 0-.213-.758-.592-1.682c-1.161-2.772-1.517-5.213-1.517-10.165c0-4.953.356-7.394 1.517-10.166c.379-.924.639-1.682.592-1.682c-.19 0 .592-1.635 1.753-3.649c.664-1.137 1.209-2.132 1.209-2.204c0-.071.616-.924 1.35-1.895c1.47-1.92 5.261-5.64 6.801-6.682c1.422-.972 5.71-3.342 6.208-3.46c.26-.047 1.256-.403 2.227-.782c2.156-.853 3.554-1.184 6.043-1.469c2.559-.284 8.577-.094 10.828.332\\\"/><path fill=\\\"#f02e65\\\" d=\\\"M44.973 49.737c-.048.119-.664 2.536-1.327 5.403c-.688 2.867-1.777 7.393-2.393 10.07c-1.185 4.905-1.896 8.128-1.896 8.554c0 .118.735.214 1.635.214h1.635l.734-3.271c.427-1.777 1.375-5.852 2.133-9.051c.759-3.199 1.682-7.085 2.038-8.649c.355-1.564.711-2.985.782-3.151c.071-.213-.332-.284-1.564-.284c-.924 0-1.73.071-1.777.165m-12.725 10.26l-2.18 2.37l.64.758c.355.426 1.327 1.493 2.156 2.37l1.517 1.611h4.313l-2.038-2.204c-1.114-1.184-2.038-2.322-2.038-2.464c0-.166.853-1.232 1.896-2.369c1.042-1.161 1.895-2.157 1.895-2.275c0-.095-.9-.166-1.99-.166h-1.967zm16.587-2.227c0 .071.403.521.9 1.019c1.849 1.848 3.152 3.412 3.081 3.72c-.047.166-.948 1.279-2.038 2.44l-1.966 2.157h2.203l2.204-.024l2.013-2.203c1.115-1.232 2.015-2.323 2.015-2.465c0-.118-.948-1.232-2.133-2.487l-2.132-2.299H50.92c-1.161 0-2.085.071-2.085.142\\\"/>\"\n\t\t},\n\t\t\"appwrite-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f02e65\\\" d=\\\"m46.601 65.259l.023-8.302l.82-.023l.82-.023l.024 1.21l.023 1.212l.222-.383c.652-1.127 1.87-1.917 3.289-2.116c2.836-.391 5.151 1.058 5.91 3.703c.322 1.134.307 3.173-.046 4.27c-.368 1.165-1.02 2.085-1.94 2.713c-.528.368-.812.506-1.456.713c-.659.207-2.56.207-3.22 0c-1.073-.345-1.9-.966-2.499-1.886l-.26-.406l-.023 3.81l-.016 3.802h-1.686zm6.992 1.51a3.49 3.49 0 0 0 1.433-.82c.322-.307.836-.974.836-1.096c0-.031.053-.161.115-.292c.2-.437.345-1.272.345-1.955c-.008-2.023-1.035-3.618-2.645-4.124c-.353-.107-.69-.146-1.418-.146c-1.066 0-1.38.085-2.147.56c-1.77 1.104-2.376 3.772-1.349 5.934c.49 1.027 1.618 1.862 2.806 2.062c.498.084 1.525.023 2.024-.123m6.884-1.51l.023-8.302l.828-.023l.82-.023v2.499l.238-.414c.743-1.288 2.054-2.078 3.68-2.193c1.8-.138 3.196.353 4.292 1.503c.476.498.935 1.272 1.204 2.024c.291.805.406 2.583.237 3.518c-.092.514-.36 1.419-.452 1.541c-.03.046-.084.161-.115.269c-.153.498-.989 1.471-1.648 1.916c-.506.337-1.296.667-1.901.774c-.598.115-2.33.039-2.775-.122c-.437-.154-1.166-.53-1.388-.706c-.521-.429-.996-.989-1.242-1.44c-.115-.216-.122.045-.13 3.625v3.848h-1.687zm6.999 1.502c1.326-.421 2.177-1.333 2.576-2.752c.168-.598.145-2.338-.039-2.913c-.153-.475-.521-1.211-.69-1.38c-.053-.053-.184-.207-.291-.33c-.238-.283-.95-.75-1.257-.827a1.12 1.12 0 0 1-.33-.138c-.069-.054-.521-.085-1.226-.085h-1.12l-.651.322c-.706.345-.974.56-1.388 1.097c-.437.56-.674 1.119-.805 1.87c-.199 1.142-.061 2.308.384 3.197c.544 1.08 1.563 1.832 2.805 2.062c.483.092 1.572.03 2.032-.123m-57.472-1.763c-.023-.023-.016-.168.023-.322c.115-.46.299-1.234.452-1.893c.077-.338.192-.836.26-1.112c.062-.276.154-.651.2-.843a14.2 14.2 0 0 1 .161-.667l.092-.33h.406c.23 0 .414.023.414.062a20.12 20.12 0 0 1-.268 1.165c-.061.276-.184.79-.268 1.15s-.2.858-.261 1.111s-.16.683-.222.959c-.177.766-.177.766-.583.766c-.2 0-.383-.015-.406-.046m-1.472-1.87l-.514-.545l.476-.529l.475-.536h.521c.292 0 .53.023.53.061c0 .03-.147.215-.323.406c-.605.644-.598.552-.107 1.058c.238.253.43.491.43.537c0 .054-.192.084-.484.084h-.49zm3.404.452c0-.046.191-.284.429-.537c.49-.506.498-.421-.1-1.058c-.184-.199-.33-.375-.33-.406c0-.038.238-.061.53-.061h.52l.476.536c.46.514.468.537.337.675c-.076.077-.306.322-.505.537l-.376.398h-.49c-.3 0-.491-.03-.491-.084m24.493 4.791a6.48 6.48 0 0 1-1.457-.521c-.583-.291-.567-.284-1.234-.943c-.46-.452-.629-.69-.897-1.265c-.514-1.08-.629-1.64-.621-3.05c0-1.42.115-2.002.613-3.044c.26-.537.46-.82.859-1.227c.628-.628.759-.728 1.357-1.02c1.525-.743 3.695-.69 5.075.123c.697.407 1.21.935 1.625 1.656l.237.406v-2.568h1.61l-.015 5.696l-.023 5.688l-.782.023l-.79.023l-.007-1.326c-.008-1.25-.008-1.31-.123-1.058c-.399.912-1.502 1.832-2.706 2.27c-.337.122-2.361.222-2.721.137m2.721-1.625c.713-.245 1.073-.468 1.525-.928c.545-.56.545-.56.836-1.172c.146-.315.291-.798.368-1.265c.115-.644.115-.836.03-1.365c-.252-1.602-.965-2.698-2.123-3.258c-.291-.146-.59-.291-.674-.33c-.238-.122-1.71-.16-2.193-.06c-.69.145-1.326.49-1.809.988c-.667.675-.767.836-1.035 1.687c-.253.774-.245 2.353.008 3.158c.467 1.449 1.525 2.4 2.997 2.683c.521.1 1.587.03 2.07-.138m79.266 1.625c-1.104-.199-2.353-.828-3.012-1.525c-.36-.376-.913-1.188-1.089-1.61c-.353-.843-.452-1.418-.452-2.722c0-1.096.023-1.349.176-1.878c.606-2.1 2.009-3.426 4.094-3.879c1.74-.368 3.618-.046 4.937.859c.437.299 1.15 1.02 1.21 1.226c.032.077.078.146.116.146c.03 0 .077.061.107.138c.023.07.077.184.115.245c.1.154.268.56.43 1.035c.145.43.237 1.901.16 2.446l-.053.352h-8.272v.2c0 .299.215.981.437 1.372c.36.652 1.242 1.111 2.139 1.111c1.135 0 2.07-.62 2.33-1.548l.085-.291h1.548c.982 0 1.587.03 1.633.076c.092.092-.038.706-.237 1.127a1.4 1.4 0 0 0-.115.292c0 .115-.568.896-.905 1.25c-.59.612-1.38 1.088-2.323 1.402c-.399.13-.72.169-1.679.184c-.651.015-1.272.008-1.38-.008m3.657-7.206c-.084-.843-.56-1.464-1.426-1.847c-.628-.284-1.579-.269-2.192.015c-.775.368-1.204.874-1.457 1.694c-.214.706-.46.644 2.5.644h2.621zM75.985 68.25c-.023-.054-.138-.499-.268-.982c-.123-.483-.338-1.28-.468-1.763a251.15 251.15 0 0 1-.713-2.683a91.864 91.864 0 0 0-.421-1.587a51.58 51.58 0 0 1-.36-1.303c-.438-1.656-.744-2.829-.775-2.99l-.038-.176h3.135l.092.483c.046.26.13.698.192.973c.199.905.352 1.641.467 2.262c.07.337.169.82.223 1.073c.061.253.16.736.237 1.073c.146.713.284 1.35.43 1.986c.115.514.076.56.375-.49c.376-1.327.637-2.224.997-3.489c.414-1.44.782-2.736.958-3.35a3.93 3.93 0 0 1 .146-.437c.038-.053.582-.084 1.656-.084h1.602l.084.33c.054.176.207.736.36 1.241c.399 1.357.437 1.488.867 2.99c.383 1.319.475 1.633.728 2.492l.222.774c.062.214.13.406.146.422c.015.023.092-.253.153-.598c.07-.353.177-.859.238-1.135c.054-.276.16-.774.238-1.112c.068-.337.176-.835.237-1.111c.207-.989.43-2.04.53-2.53c.168-.866.344-1.625.39-1.694c.023-.038.682-.069 1.464-.069h1.426l-.054.322c-.03.184-.1.506-.16.713a87.05 87.05 0 0 0-.499 1.801c-.038.146-.138.514-.222.805c-.084.3-.291 1.089-.475 1.763c-.177.675-.422 1.61-.552 2.07c-.123.468-.345 1.296-.491 1.84c-.146.552-.322 1.188-.383 1.418s-.13.514-.154.637l-.038.207h-3.419l-.084-.322c-.039-.184-.13-.522-.2-.752s-.191-.644-.268-.92s-.2-.682-.26-.896a495.515 495.515 0 0 1-.905-3.052c-.084-.29-.2-.674-.253-.843s-.138-.467-.2-.667c-.053-.207-.122-.368-.153-.368c-.046 0-.168.384-.452 1.38c-.077.276-.245.843-.383 1.265c-.261.82-.315.997-.683 2.3c-.138.467-.276.904-.314.973c-.046.077-.077.177-.077.23s-.115.453-.245.882l-.253.79h-1.671c-1.265 0-1.679-.023-1.702-.092m15.96.038c-.03-.023-.053-2.63-.053-5.788v-5.734h3.066v1.817l.644-.629c.905-.881 1.932-1.341 3.005-1.341h.414l-.015 1.632l-.023 1.626l-.89.046c-.482.03-.996.076-1.134.107c-.72.153-1.364.629-1.656 1.204c-.306.613-.345 1.111-.345 4.17v2.944h-1.48c-.82 0-1.51-.023-1.532-.054zm8.571-.115c-.023-.1-.03-2.69-.023-5.773l.023-5.596h3.067v11.5l-1.51.022l-1.518.016zm9.161.046c-1.219-.238-2.062-.79-2.453-1.61c-.422-.897-.46-1.272-.46-4.37v-2.867h-1.61l.016-1.28l.023-1.288l.79-.023l.781-.023V53.93l1.556.015l1.549.023l.023 1.395l.015 1.403h2.453v2.606h-2.453v2.745c0 2.944.008 2.967.406 3.266c.184.13.36.16 1.15.199l.936.038v2.683l-1.074.016c-.674.007-1.288-.031-1.648-.1m-8.356-13.032c-.774-.238-1.226-1.004-1.104-1.863c.077-.583.468-1.05 1.058-1.273c.422-.16 1.41-.122 1.771.062c.422.222.728.613.851 1.08c.107.4.1.484-.015.875c-.284.988-1.403 1.48-2.56 1.119z\\\"/><path fill=\\\"#f02e65\\\" d=\\\"M10.351 54.412a8.335 8.335 0 0 0-7.184 5.732c-.3.918-.403 1.576-.403 2.607c0 1.03.103 1.688.403 2.606c1.595 4.868 7.111 7.165 11.695 4.873l.427-.216l.432.216a8.366 8.366 0 0 0 10.709-2.832c.613-.913 1.085-2.096 1.286-3.219c.073-.432.098-.776.098-1.428c0-1.031-.103-1.689-.403-2.607c-1.594-4.868-7.111-7.165-11.69-4.873l-.432.216l-.427-.216a8.552 8.552 0 0 0-3.087-.864c-.653-.054-.786-.054-1.424.005m2.101 1.781c.481.094 1.409.457 1.973.776c.771.432 1.644 1.242 2.179 2.017c.29.422.678 1.217.899 1.85c.314.884.314 2.945 0 3.828c-.384 1.08-.869 1.92-1.522 2.612c-.775.824-1.497 1.31-2.577 1.732c-.687.27-1.099.358-1.909.398c-.991.049-1.885-.069-2.586-.349a3.181 3.181 0 0 0-.413-.147c-.102-.024-.986-.516-1.285-.717c-.319-.216-1.104-.986-1.409-1.384a4.439 4.439 0 0 1-.28-.392c0-.015-.113-.221-.25-.457c-.241-.417-.403-.755-.363-.755c.01 0-.044-.157-.123-.349c-.24-.574-.314-1.08-.314-2.105c0-1.026.074-1.532.314-2.106c.079-.192.133-.349.123-.349c-.04 0 .122-.338.363-.755c.137-.236.25-.442.25-.457c0-.015.128-.191.28-.393c.305-.397 1.09-1.168 1.409-1.383c.294-.201 1.183-.693 1.285-.717a4.31 4.31 0 0 0 .462-.162c.446-.177.736-.245 1.252-.304c.53-.059 1.776-.02 2.242.068m34.541-16.886l-.01.042l-.018.077l-.015.066l.013.001h.012l.006-.024l.016-.07l.016-.066l.006-.024c0-.002-.003-.003-.012-.003zm-.097.079l-.017.019l.005.005l.016.018l.012.013h.033l-.016-.017a.188.188 0 0 1-.016-.019l.015-.018a.156.156 0 0 0 .015-.018l-.015-.001h-.016zm.127-.017l.007.008c.014.014.024.026.023.028c0 .002-.007.01-.016.019l-.014.017h.016l.017-.001l.016-.016l.015-.019a.104.104 0 0 0-.016-.019l-.017-.018h-.015z\\\"/>\"\n\t\t},\n\t\t\"archlinux\": {\n\t\t\t\"body\": \"<g fill=\\\"#1791cf\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M61.113 4.886C55.82 17.79 52.63 26.23 46.738 38.75c3.614 3.804 8.047 8.242 15.246 13.25c-7.742-3.168-13.02-6.348-16.968-9.649c-7.54 15.645-19.352 37.934-43.325 80.77c18.844-10.817 33.45-17.485 47.059-20.031a33.989 33.989 0 0 1-.895-8.024l.024-.602c.297-12.003 6.578-21.238 14.016-20.609c7.437.625 13.222 10.871 12.921 22.875c-.054 2.262-.312 4.434-.761 6.45c13.465 2.62 27.914 9.273 46.5 19.94c-3.664-6.706-6.934-12.757-10.059-18.519c-4.922-3.793-10.055-8.726-20.523-14.074c7.195 1.863 12.347 4.008 16.363 6.406C74.578 38.121 72.004 30.308 61.113 4.886m0 0\\\"/><path d=\\\"M121.14 112.57v-3.242h-1.214v-.434h2.93v.434h-1.223v3.242zm2.223 0v-3.676h.735l.875 2.602c.082.242.14.426.175.543c.043-.133.11-.328.2-.586l.882-2.559h.66v3.676h-.472v-3.078l-1.074 3.078h-.442l-1.066-3.129v3.129z\\\"/></g>\"\n\t\t},\n\t\t\"archlinux-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#4c4c4c\\\" fill-rule=\\\"evenodd\\\" d=\\\"M42.28 56.008c-1.723-.004-3.153.347-3.704.539l-.57 3.039c0 .012 2.832-.75 4.082-.703c2.066.074 2.254.781 2.219 1.734c.035.059-.532-.863-2.32-.89c-2.255-.04-5.438.789-5.434 4.156c-.063 3.789 2.859 4.902 4.851 4.922c1.79-.032 2.625-.668 3.086-1.012c.602-.621 1.293-1.25 1.953-2.004c-.625 1.121-1.164 1.895-1.726 2.488v.5l2.718-.453l.02-7.312c-.027-1.035.598-4.992-5.176-5.004m-.391 6.367c1.128.016 2.421.563 2.421 1.887c.008 1.203-1.523 1.851-2.515 1.84c-.996-.012-2.317-.774-2.324-1.946c.02-1.05 1.246-1.808 2.418-1.781m7.36-5.691l-.02 12.109l3.168-.605l.004-6.864c0-1.023 1.477-2.218 3.328-2.199c.395-.703 1.133-2.5 1.313-2.91c-4.137-.008-4.188 1.176-4.91 1.762c-.008-1.114 0-1.782 0-1.782zm17.824 1.589c-.031-.015-1.652-1.875-4.91-1.89c-3.055-.05-6.48 1.12-6.535 6.183c.027 4.454 3.289 6.196 6.55 6.23c3.489.036 4.88-2.16 4.962-2.214c-.418-.355-1.977-1.883-1.977-1.883s-.973 1.371-2.863 1.387c-1.89.02-3.532-1.445-3.555-3.484c-.023-2.043 1.508-3.149 3.57-3.239c1.782 0 2.813 1.14 2.813 1.14zm3.992-5.828l-2.992.696l.024 15.773l2.945-.527l.035-7.422c.004-.777 1.137-1.973 3.027-1.934c1.805.016 2.211 1.192 2.204 1.336l.054 8.594l2.903-.508l.011-9.11c.02-.878-1.941-2.73-5.09-2.741c-1.5 0-2.328.336-2.75.586c-.722.55-1.546 1.078-2.359 1.753c.75-.953 1.379-1.613 1.996-2.101zm0 0\\\"/><path fill=\\\"#1791cf\\\" fill-rule=\\\"evenodd\\\" d=\\\"m81.799 52.856l1.347-.333l.067 15.899l-1.371.23zm3.668 4.746l1.183-.52l.008 11.399l-1.14.234zm-.282-4.114l.954-.77l.793.876l-.954.789zm3.688 3.907l1.348-.274l.007 2.383c0 .102.739-2.66 4.313-2.602c3.465.02 4.035 2.676 4.016 3.274l.042 8.379l-1.183.254l-.008-8.278c.016-.242-.539-2.285-2.988-2.293c-2.453-.007-4.149 1.758-4.149 2.89l.02 7.294l-1.367.351zm21.496 11.222l-1.352.27l-.004-2.383c0-.102-.742 2.664-4.312 2.602c-3.469-.02-4.035-2.676-4.016-3.27l-.043-8.383l1.434-.285l.02 8.277c0 .227.273 2.32 2.726 2.328c2.45.004 4.168-1.46 4.18-3.667l-.02-6.536l1.336-.336zm2.645-11.317l-.95.731l3.63 4.696l-3.868 5.425l1.004.735l3.633-5.035l3.754 5.156l.93-.735l-4.024-5.511l3.207-4.461l-.984-.824l-2.922 4.125zM21.861 45.176c-1.578 3.828-2.531 6.332-4.289 10.047c1.078 1.129 2.403 2.445 4.547 3.93c-2.309-.942-3.883-1.883-5.059-2.864c-2.25 4.645-5.77 11.254-12.921 23.961c5.62-3.207 9.976-5.187 14.035-5.941a9.934 9.934 0 0 1-.266-2.38l.004-.179c.09-3.562 1.965-6.3 4.184-6.113c2.214.183 3.941 3.226 3.851 6.785a9.917 9.917 0 0 1-.226 1.914c4.015.777 8.324 2.75 13.867 5.914c-1.094-1.988-2.07-3.785-3-5.492c-1.469-1.125-3-2.59-6.121-4.176c2.144.55 3.683 1.188 4.879 1.899c-9.47-17.446-10.239-19.762-13.485-27.305m0 0\\\"/><path fill=\\\"#1791cf\\\" d=\\\"M122.912 67.918v-.984h-.371V66.8h.89v.133h-.37v.984zm.676 0v-1.117h.226l.266.789c.023.074.043.129.055.164c.011-.04.03-.098.058-.176l.27-.777h.203v1.117h-.145v-.934l-.328.934h-.136l-.325-.953v.953zm-83.824 9.203v-.96H39.4v-.13h.871v.13h-.363v.96zm.66 0v-1.09h.218l.262.77l.055.164c.012-.04.031-.098.058-.176l.262-.758h.195v1.09h-.14v-.914l-.32.914h-.13l-.32-.93v.93z\\\"/>\"\n\t\t},\n\t\t\"arduino\": {\n\t\t\t\"body\": \"<g fill=\\\"#00979c\\\" fill-rule=\\\"evenodd\\\"><path d=\\\"M.3 66.5v-9.6c.2-.1.2-.3.2-.5c3-13.1 11.2-21 24.2-24.1c1.1-.3 2.3-.2 3.4-.6h6.4c.1.2.4.1.6.1c6.4.7 12.2 3 17.3 7c4.4 3.3 7.8 7.5 10.9 12c.4.6.6.6 1 0c1.8-2.6 3.7-5.1 5.9-7.4c5.3-5.7 11.7-9.7 19.5-11.1c1.1-.3 2.4-.2 3.5-.6h6.2c.1.2.3.1.5.1c1.9.2 3.7.6 5.5 1.1c13.4 3.9 22.9 16.2 22.1 30.1c-.6 11.7-6.5 20.1-16.8 25.4c-5.1 2.8-10.7 3.5-16.5 3.4c-7.6-.1-14.2-2.7-19.9-7.7c-4-3.5-7.1-7.7-10-12.1c-.4-.6-.6-.5-1 .1c-1.8 2.7-3.7 5.4-5.9 8c-3.9 4.4-8.4 8-14 9.9c-6.9 2.4-13.9 2.5-20.9.6c-10.1-2.9-17-9.3-20.8-19.1c-.6-1.6-.9-3.4-1.4-5m31.8 14.7c5.7.2 10.6-1.7 14.8-5.6c4.3-4 7.4-9 10.5-13.9c.1-.3.1-.5-.1-.8c-2.6-4.1-5.3-8.2-8.9-11.6c-6.9-6.6-15-8.8-24.1-5.9c-7.5 2.5-12.3 7.8-13.4 15.8c-1.1 7.5 1.8 13.5 7.8 18c4 2.9 8.5 4.1 13.4 4m63.4 0c2.2 0 4.4-.1 6.5-.7c7.9-2.4 13.1-7.3 14.6-15.5c1.5-8.1-1.6-14.6-8.4-19.2c-7.5-5.2-18.4-4.7-26 1c-5.1 3.8-8.5 8.9-11.9 14.2c-.2.3-.1.5 0 .8c2.7 4.3 5.4 8.6 8.9 12.3c4.4 4.7 9.7 7.4 16.3 7.1m0 0\\\"/><path d=\\\"M32 58.5c3.2 0 6.5.1 9.7 0c.8 0 .9.2.9 1c-.1.9-.1 1.8 0 2.7c.1.8-.1 1-1 1H28.8c-2.2 0-4.4-.1-6.6 0c-.7 0-.9-.2-.9-1c.1-.9.1-1.8 0-2.8c0-.7.2-.9.9-.9c3.2.1 6.5 0 9.8 0m63-6.4c.8 0 1.6.1 2.3 0c.5 0 .7.2.7.7c-.1 1.4 0 2.8-.1 4.2c0 .7.2.9.9.9c1.3-.1 2.7 0 4.1-.1c.6 0 .8.1.8.8v4.6c0 .5-.2.7-.7.7c-1.4-.1-2.8 0-4.3-.1c-.6 0-.8.2-.8.8c.1 1.4 0 2.8.1 4.2c0 .6-.2.9-.8.9c-1.5-.1-3-.1-4.5 0c-.6 0-.8-.2-.8-.8c.1-1.5 0-2.9.1-4.4c0-.5-.2-.7-.7-.7c-1.4.1-2.8 0-4.2.1c-.8 0-.9-.3-.9-.9c0-1.4.1-2.8 0-4.2c-.1-.8.3-1 1-1c1.4.1 2.7 0 4.1.1c.5 0 .7-.2.7-.7c-.1-1.4 0-2.9-.1-4.3c0-.6.2-.8.8-.8c.8.1 1.5 0 2.3 0m29.852-27.623c-.133.199-.18.265-.223.332c-.242.363-.055 1.097-.664 1.086c-.54-.012-.403-.684-.594-1.051c-.05-.098-.11-.188-.277-.461c0 .504.008.789 0 1.078c-.008.195.035.441-.274.457c-.312.016-.293-.234-.297-.43c-.007-.68-.007-1.355-.003-2.031c0-.23-.036-.496.324-.504c.27-.004.504-.015.617.336c.144.43.195.91.527 1.324c.317-.402.371-.867.492-1.293c.102-.347.317-.37.598-.37c.356.003.34.253.344.488c.004.68.004 1.355-.004 2.035c-.004.191.023.445-.281.449c-.305 0-.282-.242-.285-.442c-.008-.289 0-.574 0-1.003m-3.712-1.532c.087 0 .18-.015.262 0c.325.063.828-.187.934.2c.144.543-.426.27-.668.386c-.242.117-.195.332-.2.528c-.011.468-.007.937-.007 1.406c0 .258-.05.473-.383.46c-.305-.01-.293-.234-.293-.437a36.975 36.975 0 0 1-.004-1.316c.012-.375.016-.727-.523-.676c-.188.016-.352-.039-.352-.277c0-.328.254-.262.442-.27c.265-.012.527-.004.793-.004zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"arduino-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#00979C\\\" fill-rule=\\\"evenodd\\\"><path d=\\\"M.316 55.504v-9.555c.223-.125.164-.355.207-.547C3.531 32.316 11.734 24.45 24.668 21.31c1.133-.274 2.32-.247 3.422-.653h6.37c.145.274.415.164.63.188c6.422.687 12.203 2.957 17.316 6.914c4.364 3.37 7.84 7.547 10.938 12.058c.383.559.566.575.953.004c1.773-2.61 3.707-5.097 5.86-7.41c5.35-5.738 11.706-9.695 19.511-11.144c1.172-.22 2.383-.207 3.52-.61h6.19c.13.23.36.157.556.18c1.843.207 3.664.547 5.453 1.062c13.449 3.864 22.933 16.184 22.136 30.133c-.668 11.645-6.562 20.032-16.78 25.418c-5.157 2.719-10.75 3.489-16.524 3.375c-7.625-.148-14.254-2.77-19.969-7.773c-3.965-3.469-7.082-7.64-9.945-12.016c-.426-.652-.59-.57-.973.02c-1.812 2.789-3.758 5.492-5.96 8c-3.868 4.406-8.337 8-13.93 9.96c-6.915 2.422-13.965 2.516-20.954.54C12.414 76.707 5.468 70.3 1.723 60.48c-.618-1.617-.875-3.335-1.407-4.976m31.79 14.684c5.734.238 10.62-1.688 14.765-5.543c4.324-4.024 7.383-9.004 10.488-13.946c.188-.297.13-.531-.05-.808c-2.645-4.121-5.356-8.203-8.934-11.602c-6.883-6.543-14.992-8.742-24.04-5.852C16.778 34.855 12 40.234 10.884 48.22c-1.043 7.445 1.855 13.457 7.812 17.941c3.965 2.988 8.532 4.164 13.41 4.028zm63.347 0c2.246.058 4.457-.09 6.59-.731c7.82-2.332 13.105-7.293 14.578-15.43c1.469-8.105-1.668-14.593-8.39-19.226c-7.493-5.168-18.415-4.66-26.055 1.023c-5.074 3.774-8.524 8.91-11.875 14.133c-.196.3-.145.531.027.805c2.688 4.3 5.379 8.597 8.863 12.324c4.407 4.715 9.704 7.394 16.262 7.102m32.227 29.007c-.297.942-.535 1.903-.895 2.82c-2.234 5.68-10.222 7.204-14.055 2.684c-1.304-1.539-1.878-3.386-2.097-5.347c-.305-2.743-.297-5.465.734-8.098c1.457-3.695 4.61-5.613 8.754-5.3c3.777.284 6.29 2.538 7.188 6.433c.117.5.058 1.047.37 1.5zm-12.618-2.61c.004 1.509.086 3.009.622 4.438c.406 1.106 1.086 1.942 2.293 2.254c2.156.559 3.925-.328 4.582-2.472c.843-2.77.804-5.59.007-8.364c-.515-1.808-1.605-2.601-3.316-2.632c-1.828-.036-2.96.746-3.617 2.507c-.512 1.38-.563 2.825-.57 4.27zm-17.753-3.14v12.278c0 1.21 0 1.21-1.254 1.21c-.618 0-1.239-.042-1.856.012c-.691.063-.906-.18-.898-.882c.031-3.626.015-7.25.015-10.876c0-2.71.02-5.421-.011-8.132c-.008-.618.168-.817.789-.793c1.207.047 2.418.05 3.625-.004c.601-.024.883.191 1.125.719c1.886 4.09 3.8 8.164 5.71 12.242c.048.097.114.191.31.515V98.68c0-3.86.015-7.72-.016-11.578c-.004-.649.144-.891.824-.84c.851.062 1.707.035 2.562.008c.48-.02.672.117.672.636a4570.62 4570.62 0 0 0 0 19.364c0 .488-.144.68-.652.671a90.154 90.154 0 0 0-3.98.004c-.544.016-.684-.316-.864-.703a3437.438 3437.438 0 0 0-5.64-12.176c-.094-.199-.106-.464-.461-.62zm-65.496 3.7c1.515 1.218 2.117 2.906 2.914 4.472c.77 1.52 1.5 3.063 2.273 4.582c.262.52.313.774-.426.746a58.648 58.648 0 0 0-3.707 0c-.5.016-.722-.191-.914-.625c-.863-1.965-1.765-3.914-2.648-5.87c-.485-1.075-1.254-1.731-2.461-1.9c-.715-.097-.903.13-.89.837c.042 2.238-.009 4.476.03 6.715c.012.656-.16.886-.832.847c-.941-.058-1.886-.035-2.828-.008c-.5.012-.746-.101-.746-.675c.02-6.454.012-12.903.016-19.356c0-.281-.074-.644.39-.629c3.145.102 6.313-.332 9.426.367c4.277.961 4.817 4.575 4.047 7.247c-.504 1.753-1.86 2.71-3.645 3.25zm-5.84-4.711v2.207c0 .242-.008.492.34.492c1.203.012 2.421.097 3.539-.496c1.011-.54 1.43-1.426 1.28-2.664c-.12-1.012-.679-1.641-1.804-1.895a9.13 9.13 0 0 0-1.926-.223c-1.77-.02-1.386-.164-1.43 1.344c-.011.41 0 .824 0 1.235zm13.015 4.148c0-3.125.02-6.246-.015-9.371c-.008-.703.136-.984.91-.95c2.5.102 5.012-.156 7.504.15c4.734.581 7.175 3.054 7.707 7.85c.261 2.329.176 4.653-.66 6.891c-1.317 3.512-4.067 5.13-7.602 5.618c-2.398.328-4.824.117-7.242.171c-.649.016-.602-.386-.602-.812zm4.348-.016v4.766c0 2.04 0 2.04 2.078 1.953c2.578-.11 4.223-1.433 4.832-3.953c.488-2.008.438-4.031-.062-6.027c-.5-1.985-1.813-3.094-3.864-3.325c-.726-.082-1.468-.054-2.199-.12c-.621-.06-.809.18-.797.796c.035 1.969.012 3.942.012 5.91m-25.84 10.375c-2.367 0-2.367 0-3.004-2.238c-.508-1.781-.508-1.781-2.363-1.781c-1.477 0-2.95.027-4.422-.012c-.547-.015-.777.168-.906.692c-.223.914-.563 1.8-.785 2.714c-.125.508-.383.649-.871.633a40.27 40.27 0 0 0-2.915 0c-.66.028-.722-.183-.542-.77c1.472-4.75 2.917-9.507 4.37-14.265c.5-1.629 1.024-3.254 1.493-4.894c.148-.528.351-.774.949-.754c1.504.046 3.008.03 4.508.007c.46-.007.664.141.8.594a5006.596 5006.596 0 0 0 5.93 19.324c.176.57.09.813-.562.758c-.555-.047-1.117-.008-1.68-.008m-6.867-15.66l-.184.012c-.777 2.672-1.558 5.34-2.336 8.012c.137.039.192.07.25.07c.942.008 1.883.016 2.825.016c1.804.004 1.808 0 1.312-1.7c-.621-2.136-1.246-4.277-1.867-6.41m46.445 2.684c0-2.328.012-4.656-.011-6.988c-.004-.516.12-.739.683-.711c.973.043 1.95.05 2.918-.004c.652-.035.777.23.773.816c-.019 3.922-.011 7.844-.003 11.766c0 .676.02 1.355.09 2.027c.187 1.848 1.28 2.781 3.288 2.84c2.012.062 3.149-.809 3.422-2.672a14.01 14.01 0 0 0 .141-2.023c.016-3.922.023-7.844-.012-11.762c-.004-.738.125-1.07.953-.996c.907.082 1.829.039 2.739.012c.48-.016.683.113.68.632c-.032 4.48.046 8.965-.083 13.442c-.109 3.89-2.644 6.41-6.543 6.844c-1.664.187-3.3.093-4.89-.434c-2.551-.852-4.008-2.902-4.106-5.895c-.07-2.296-.011-4.597-.011-6.894zm25.895-7.688c2.035 0 4.066.02 6.101-.015c.575-.008.785.16.746.746a17.403 17.403 0 0 0 0 2.117c.036.563-.191.707-.714.691c-1.063-.035-2.122.008-3.184-.02c-.496-.015-.734.083-.734.665c.023 4.066.02 8.133.004 12.2c-.004.542.167.726.707.706c1.058-.027 2.12.024 3.18-.02c.6-.019.769.212.741.774c-.039.734-.03 1.473-.004 2.207c.02.473-.175.61-.62.61c-4.126-.012-8.25-.012-12.38 0c-.492.003-.69-.153-.671-.657a27.82 27.82 0 0 0-.004-2.21c-.024-.532.152-.735.703-.72c1.09.032 2.18-.007 3.27.012c.5.012.66-.175.656-.672c-.012-4.093-.012-8.191 0-12.289c0-.46-.164-.613-.618-.605c-1.09.023-2.183-.024-3.27.02c-.597.023-.788-.196-.737-.762c.086-.899-.375-2.043.199-2.633c.5-.512 1.625-.129 2.476-.145c1.38-.015 2.77 0 4.153 0m41.883-61.8c-.133.199-.18.265-.223.332c-.242.363-.055 1.097-.664 1.086c-.54-.012-.403-.684-.594-1.051c-.05-.098-.11-.188-.277-.461c0 .504.008.789 0 1.078c-.008.195.035.441-.274.457c-.312.016-.293-.234-.297-.43c-.007-.68-.007-1.355-.003-2.031c0-.23-.036-.496.324-.504c.27-.004.504-.015.617.336c.144.43.195.91.527 1.324c.317-.402.371-.867.492-1.293c.102-.347.317-.37.598-.37c.356.003.34.253.344.488c.004.68.004 1.355-.004 2.035c-.004.191.023.445-.281.449c-.305 0-.282-.242-.285-.442c-.008-.289 0-.574 0-1.003m-3.712-1.532c.087 0 .18-.015.262 0c.325.063.828-.187.934.2c.144.543-.426.27-.668.386c-.242.117-.195.332-.2.528c-.011.468-.007.937-.007 1.406c0 .258-.05.473-.383.46c-.305-.01-.293-.234-.293-.437a36.975 36.975 0 0 1-.004-1.316c.012-.375.016-.727-.523-.676c-.188.016-.352-.039-.352-.277c0-.328.254-.262.442-.27c.265-.012.527-.004.793-.004zm0 0\\\"/><path d=\\\"M31.977 47.543c3.238 0 6.48.023 9.718-.02c.758-.011.953.223.907.942a19.358 19.358 0 0 0 0 2.734c.054.758-.149 1.004-.954.996c-4.3-.043-8.601-.023-12.898-.023c-2.18 0-4.36-.031-6.535.02c-.762.019-.957-.235-.914-.95c.058-.937.05-1.887 0-2.828c-.035-.676.16-.898.87-.89c3.267.042 6.54.019 9.806.019m63.039-6.414c.765 0 1.535.023 2.3-.008c.5-.02.66.156.653.66c-.028 1.414.02 2.828-.024 4.242c-.023.641.133.875.82.848c1.383-.055 2.77.004 4.153-.023c.535-.012.812.093.797.715a112.75 112.75 0 0 0-.004 4.597c.012.555-.2.7-.727.692c-1.414-.032-2.828.015-4.242-.024c-.601-.02-.82.133-.8.774c.046 1.414-.008 2.828.027 4.242c.015.593-.13.836-.774.816a91.282 91.282 0 0 0-4.507-.004c-.583.016-.762-.172-.747-.754c.04-1.472-.007-2.945.024-4.418c.008-.5-.145-.664-.649-.652c-1.414.027-2.832-.031-4.242.027c-.726.028-.894-.234-.879-.906c.043-1.383.067-2.77-.004-4.152c-.043-.817.262-.992 1.012-.961c1.356.058 2.711-.008 4.067.027c.539.016.71-.148.695-.699c-.035-1.41.015-2.828-.024-4.242c-.015-.598.133-.852.774-.809c.765.051 1.531.012 2.3.012zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"argocd\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconArgocd0\\\"><path d=\\\"M42 41h44v51H42zm0 0\\\"/></clipPath><clipPath id=\\\"deviconArgocd1\\\"><use href=\\\"#deviconArgocdc\\\"/></clipPath><clipPath id=\\\"deviconArgocd2\\\"><use href=\\\"#deviconArgocdc\\\"/></clipPath><clipPath id=\\\"deviconArgocd3\\\"><path d=\\\"m85.695 41.133l-2.55 58.238H44.887l-2.125-58.238\\\"/></clipPath><clipPath id=\\\"deviconArgocd4\\\"><use href=\\\"#deviconArgocdc\\\"/></clipPath><mask id=\\\"deviconArgocd5\\\"><g filter=\\\"url(#deviconArgocdb)\\\"><use href=\\\"#deviconArgocdc\\\" fill-opacity=\\\".251\\\"/></g></mask><mask id=\\\"deviconArgocd6\\\"><g filter=\\\"url(#deviconArgocdb)\\\"><use href=\\\"#deviconArgocdc\\\" fill-opacity=\\\".22\\\"/></g></mask><mask id=\\\"deviconArgocd7\\\"><g filter=\\\"url(#deviconArgocdb)\\\"><use href=\\\"#deviconArgocdc\\\" fill-opacity=\\\".502\\\"/></g></mask><g id=\\\"deviconArgocd8\\\" clip-path=\\\"url(#deviconArgocd4)\\\"><path fill=\\\"#fbdfc3\\\" d=\\\"M58.488 30.508a2.974 2.974 0 1 1-5.948-.003a2.974 2.974 0 0 1 5.948.003m0 0\\\"/></g><g id=\\\"deviconArgocd9\\\" clip-path=\\\"url(#deviconArgocd2)\\\"><path fill=\\\"#e34e3b\\\" d=\\\"M84.422 65.363s2.55-22.531-.852-31.031C77.195 19.453 62.316 20.73 62.316 20.73s8.5 3.399 8.926 16.153c.426 8.926 0 22.105 0 22.105zm0 0\\\"/></g><g id=\\\"deviconArgocda\\\" clip-path=\\\"url(#deviconArgocd1)\\\"><path fill=\\\"#e9654b\\\" d=\\\"M83.145 90.867V87.47c-5.95 3.398-12.329 6.8-19.977 6.8c-8.504 0-14.031-3.824-19.555-6.8l.422 3.398s6.38 6.805 19.555 6.805c12.328-.426 19.555-6.805 19.555-6.805zm0 0\\\"/></g><filter id=\\\"deviconArgocdb\\\" width=\\\"100%\\\" height=\\\"100%\\\" x=\\\"0%\\\" y=\\\"0%\\\" filterUnits=\\\"objectBoundingBox\\\"><feColorMatrix in=\\\"SourceGraphic\\\" values=\\\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\\\"/></filter><path id=\\\"deviconArgocdc\\\" d=\\\"M0 0h128v128H0z\\\"/></defs><path fill=\\\"#e9654b\\\" d=\\\"M44.035 89.594s-.847 2.55-2.125 3.824a3.844 3.844 0 0 1-2.972 1.277a49.946 49.946 0 0 1-6.38 1.274s2.977.426 6.38.851c1.273 0 1.273 0 2.124.426c2.126 0 2.973-1.277 2.973-1.277zm39.11 0s.851 2.55 2.125 3.824a3.858 3.858 0 0 0 2.976 1.277a49.8 49.8 0 0 0 6.375 1.274s-2.973.426-6.8.851c-1.274 0-1.274 0-2.126.426c-2.55 0-2.976-1.277-2.976-1.277zm0 0\\\"/><path fill=\\\"#b6cfea\\\" d=\\\"M109.926 47.508c0 25.355-20.555 45.91-45.91 45.91c-25.356 0-45.91-20.555-45.91-45.91c0-25.352 20.554-45.906 45.91-45.906c25.355 0 45.91 20.554 45.91 45.906m0 0\\\"/><path fill=\\\"#e6f5f8\\\" d=\\\"M108.227 47.508c0 24.418-19.793 44.21-44.211 44.21c-24.414 0-44.207-19.792-44.207-44.21C19.809 23.094 39.602 3.3 64.016 3.3c24.418 0 44.21 19.793 44.21 44.207zm0 0\\\"/><path fill=\\\"#d0e8f0\\\" d=\\\"M100.148 48.36c0 19.956-16.175 36.132-36.132 36.132c-19.954 0-36.133-16.176-36.133-36.133c0-19.953 16.18-36.132 36.133-36.132c19.957 0 36.132 16.18 36.132 36.132zm0 0\\\"/><path fill=\\\"#ee794b\\\" d=\\\"M42.762 65.363s2.976 48.035 2.976 48.887c0 .422.426 1.273-1.703 2.125c-2.125.848-8.926 2.55-8.926 2.55h10.203c4.676 0 4.676-3.827 4.676-4.675c0-.852 1.274-19.129 1.274-19.129s.425 21.68.425 22.527c0 .852-.425 2.125-3.398 2.977c-2.125.426-8.504 1.7-8.504 1.7h9.778c5.953 0 5.953-3.825 5.953-3.825l1.273-19.129s.426 19.129.426 21.254c0 1.7-1.274 2.977-5.953 3.824c-2.973.852-6.801 1.703-6.801 1.703h11.055c5.523-.425 6.375-4.254 6.375-4.254l9.351-47.609zm0 0\\\"/><path fill=\\\"#ee794b\\\" d=\\\"M85.27 65.363s-2.973 48.035-2.973 48.887c0 .422-.426 1.273 1.7 2.125c2.124.848 8.925 2.55 8.925 2.55H82.719c-4.676 0-4.676-3.827-4.676-4.675c0-.852-1.273-19.129-1.273-19.129s-.426 21.68-.426 22.527c0 .852.426 2.125 3.402 2.977l8.5 1.7H78.47c-5.95 0-5.95-3.825-5.95-3.825l-1.277-19.129s-.426 19.129-.426 21.254c0 1.7 1.278 2.977 5.954 3.824c2.976.852 6.8 1.703 6.8 1.703H72.52c-5.528-.425-6.38-4.254-6.38-4.254L56.79 74.29zm.425-23.379c0 11.903-9.777 21.254-21.254 21.254c-11.476 0-21.254-9.777-21.254-21.254c0-11.476 9.778-21.254 21.254-21.254c11.477 0 21.254 9.352 21.254 21.254m0 0\\\"/><g clip-path=\\\"url(#deviconArgocd0)\\\"><g clip-path=\\\"url(#deviconArgocd3)\\\"><path fill=\\\"#ee794b\\\" d=\\\"M102.273 53.46c0 20.895-16.937 37.833-37.832 37.833c-20.894 0-37.832-16.938-37.832-37.832c0-20.895 16.938-37.832 37.832-37.832c20.895 0 37.832 16.937 37.832 37.832zm0 0\\\"/></g></g><use href=\\\"#deviconArgocd9\\\" mask=\\\"url(#deviconArgocd6)\\\"/><use href=\\\"#deviconArgocd8\\\" mask=\\\"url(#deviconArgocd7)\\\"/><path fill=\\\"#010101\\\" d=\\\"M71.668 73.863c0 7.227-3.402 11.907-7.652 11.907s-7.653-5.528-7.653-12.754c0 0 3.403 6.8 8.078 6.8c4.676 0 7.227-5.953 7.227-5.953m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M71.668 73.863c0 4.68-3.402 7.227-7.652 7.227s-7.227-3.399-7.227-7.649c0 0 3.402 4.25 8.078 4.25c4.676 0 6.801-3.828 6.801-3.828m0 0\\\"/><path fill=\\\"#e9654b\\\" d=\\\"M92.07 53.887c0 7.277-5.898 13.175-13.175 13.175c-7.278 0-13.18-5.898-13.18-13.175c0-7.278 5.902-13.18 13.18-13.18c7.277 0 13.175 5.902 13.175 13.18m-29.754 0c0 7.277-5.902 13.175-13.18 13.175c-7.277 0-13.175-5.898-13.175-13.175c0-7.278 5.898-13.18 13.176-13.18c7.277 0 13.18 5.902 13.18 13.18zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M89.098 53.887c0 5.633-4.57 10.203-10.203 10.203c-5.633 0-10.204-4.57-10.204-10.203c0-5.637 4.57-10.203 10.204-10.203c5.632 0 10.203 4.566 10.203 10.203m-30.61 0c0 5.633-4.566 10.203-10.199 10.203c-5.637 0-10.203-4.57-10.203-10.203a10.201 10.201 0 0 1 10.203-10.203c5.633 0 10.2 4.566 10.2 10.203zm0 0\\\"/><path fill=\\\"#010101\\\" d=\\\"M51.262 52.61a2.975 2.975 0 1 1-5.95.003a2.975 2.975 0 0 1 5.95-.004zm30.609 0a2.976 2.976 0 1 1-5.951.001a2.976 2.976 0 0 1 5.951-.002zm0 0\\\"/><path fill=\\\"#b6cfea\\\" d=\\\"M17.258 58.988a2.005 2.005 0 0 1-2.125-2.125V39.86a2.008 2.008 0 0 1 .582-1.543a2.008 2.008 0 0 1 1.543-.582a2.005 2.005 0 0 1 2.125 2.125v17.004c.035.57-.18 1.133-.586 1.54a2.008 2.008 0 0 1-1.54.585zm92.668 0a2.003 2.003 0 0 1-1.54-.586a2.008 2.008 0 0 1-.585-1.539V39.86a2.011 2.011 0 0 1 .586-1.543a2 2 0 0 1 1.539-.582a2 2 0 0 1 1.539.582c.41.407.62.97.586 1.543v17.004a1.994 1.994 0 0 1-.586 1.54a2.003 2.003 0 0 1-1.54.585zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M51.688 13.504a2.125 2.125 0 1 1-4.25 0a2.125 2.125 0 0 1 4.25 0M34.262 70.89a1.559 1.559 0 0 1-1.278-.425c-5.101-6.375-7.652-14.453-7.652-22.531a37.933 37.933 0 0 1 5.102-19.13a41.641 41.641 0 0 1 13.601-13.6a1.873 1.873 0 0 1 2.13.425a1.874 1.874 0 0 1-.427 2.125a34.305 34.305 0 0 0-17.43 29.754a33.487 33.487 0 0 0 7.227 20.832c.426.426.426 1.7-.426 2.125c-.425.426-.425.426-.847.426zm0 0\\\"/><use href=\\\"#deviconArgocda\\\" mask=\\\"url(#deviconArgocd5)\\\"/>\"\n\t\t},\n\t\t\"argocd-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M73.281 94.387c-4.875-1.207-9.836.789-12.402 4.984a11.12 11.12 0 0 0 1.184 13.145c3.417 3.8 8.585 4.847 13.222 2.68c.445-.208.824-.669 1.406-.47c.125 2.391-.191 3.704-1.214 5.04c-2.786 3.648-7.93 3.273-10.551-.774c-1.028-1.59-2.2-2.02-3.516-1.293c-1.39.778-1.652 2.145-.691 3.809a11.23 11.23 0 0 0 5.965 5.008c.453.168.394.168 1.086.43c.789.308 3.222.386 4.351.179a10.29 10.29 0 0 0 1.438-.41c4.699-1.403 7.996-5.543 8.109-10.45c.086-3.831.102-7.663-.008-11.495a11.13 11.13 0 0 0-8.379-10.383m-9.136 10.789a6.301 6.301 0 1 1 6.363 6.226a6.272 6.272 0 0 1-4.473-1.793a6.277 6.277 0 0 1-1.89-4.433m41.382-3.309c-1.687-5.222-6.886-8.543-12.21-7.758c-5.536.813-9.614 5.391-9.715 10.899c-.09 5.398 3.796 10.082 9.238 11.125c5.277 1.015 10.676-2.094 12.55-7.203c.184-.512.63-1.598.684-2.387a12.25 12.25 0 0 0-.14-3.25a14.09 14.09 0 0 0-.407-1.426m-10.757 9.535a6.233 6.233 0 0 1 .164-12.465a6.238 6.238 0 0 1 6.195 6.231a6.282 6.282 0 0 1-1.887 4.437a6.27 6.27 0 0 1-4.472 1.797m-50.715-8.617c-1.47-6.48-7.809-10.137-14.094-8.168c-6.313 1.98-9.582 8.832-7.094 14.875c2.403 5.852 9.684 8.531 15.418 5.668c.676-.34 1.184-.832 1.836.184c.578.89 1.582 1.183 2.672.742c1.062-.43 1.523-1.234 1.516-2.348c-.008-1.59 0-3.18 0-5.175c-.102-1.66.207-3.743-.254-5.778m-10.852 8.617c-3.578-.047-6.39-2.832-6.289-6.234c.094-3.379 3.04-6.215 6.441-6.2c3.426.016 6.145 2.891 6.098 6.438c-.039 3.492-2.695 6.043-6.25 5.996m0 0\\\"/><path fill=\\\"#010101\\\" d=\\\"M59.98 96.297c-.12-1.606-1.472-2.426-3.57-2.195a11.2 11.2 0 0 0-9.906 9.136c-.367 1.922-.086 3.88-.168 5.492c0 1.735-.008 3.149 0 4.563c.016 1.941.875 3.016 2.41 3.031c1.535.024 2.473-1.066 2.496-2.976c.024-2.703-.023-5.414.016-8.118c.047-3.378 2.387-6.066 5.726-6.207c1.985-.082 3.098-1.398 2.996-2.726m0 0\\\"/><path fill=\\\"#fefefe\\\" d=\\\"M58.523 71.27c.008 0 .012.02.012.066l.024.934c.046-.243.09-.48.14-.727c-.035-.453-.394-.223-.176-.273m19.571-25.512c-.008.008-.02.008-.028.015c.008.008.02.016.028.02c-.008-.004 0-.02 0-.035M65.766 14.445v.004h.023c-.008 0-.016-.004-.023-.004m0 0\\\"/><path fill=\\\"#fe733e\\\" d=\\\"M76.246 77.332c.098-1.082.043-2.176.18-3.25c.297-2.367.011-4.781.633-7.117c.304-1.211-.672-2.625.582-3.688l-.313-1.027c-.351-.582-.172-1.148.035-1.715c-.023-2.074 0-4.148.375-6.2c.11-2.85.23-5.698.344-8.554c-.008-.008-.023-.015-.031-.023c-6.094 2.797-11.84-1.121-12.817-5.82c-.64-3.086-.296-6.004 2.114-8.36c.402-.394.746-.851 1.117-1.285c.984-5.898.297-11.313-4.742-15.535c.75-.434 1.43-.188 2.043-.301v-.008c-6.184-1.55-13.688 2.68-16.172 9.14a14.22 14.22 0 0 0-1.024 6.02c6.133-2.843 11.63.551 13.145 5.72c1.574 5.378-2.617 11.07-8.192 11.151a15.636 15.636 0 0 1-4.707-.699c.114 2.969.227 5.938.344 8.907c.215 1.945.45 3.886.352 5.847c.015.461.027.926.043 1.387c-.016.305-.028.613-.043.926c.453 1.863.55 3.78.691 5.691a1.09 1.09 0 0 1-.027-.148c.008.05.023.093.027.148c.152 3.242.242 6.496.473 9.742c.097 1.34-.39 2.012-1.63 2.356c-1.46.41-2.898.902-4.347 1.367c1.91.238 3.836.324 5.758.25c2.066-.043 3.008-.961 3.207-3.012c.129-1.305.242-2.61.36-3.918c.136-2.363.269-4.734.402-7.097h.293v6.75c.035 1.02.05 2.05.117 3.07c.3 4.77.441 4.738-4.309 5.7a1.761 1.761 0 0 0-.316.136c.285.183.566.37.852.566a.305.305 0 0 1 .21.14c1.133.009 2.274.106 3.391 0c2.04-.19 3-1.28 3.148-3.304c.09-1.297.223-2.594.336-3.894c-.18-1.723.082-3.414.403-5.11c-.008-.312-.016-.617-.02-.93c0-.046-.015-.074-.015-.07c-.22.055.14-.176.18.278c.034-.2.081-.403.117-.606v7.82c.023.918.05 1.829.066 2.743c.039 3.32-.172 3.62-3.332 4.566c-.875.262-1.785.418-2.649.707c-.628.219-1.425.098-2.015.836c2.574-.094 4.984.195 7.379-.191c2.476-.403 3.46-1.403 3.968-3.82c.372-1.774.528-3.602 1.208-5.403c.078.125.14.254.195.39c.344 1.676.683 3.364 1.012 5.044c.464 2.347 1.418 3.347 3.804 3.765c2.469.426 4.969.133 7.528.195c-.368-.628-.942-.523-1.403-.656c-1.59-.465-3.207-.86-4.765-1.398c-1.133-.395-1.95-1.117-1.934-2.512c.04-3.82.016-7.637.016-11.457h.46c.165 2.395.36 4.781.489 7.176c.289 5.535.945 6.137 6.504 5.832c.312-.524 1.082-.11 1.37-.672c-1.335-.008-2.5-.648-3.722-1.059a1.579 1.579 0 0 1-1.058-1.609c.058-3.926-.09-7.863.441-11.773c.32 3.285.574 6.574.828 9.855c.117 1.535.813 2.738 2.422 2.84c2.18.152 4.363.039 6.55.039a23.037 23.037 0 0 0-3.519-1.297c-2.672-.86-2.656-.867-2.41-3.582m-16.8-55.965a2.002 2.002 0 0 1-1.985 1.985c-1.168.02-2.05-.653-2.07-2.172c.125-1.106.746-1.86 2.058-1.887c1.395-.023 2.02.918 1.996 2.074zm8.968 32.625c.008 3.02-2.305 5.656-4.945 5.649c-2.492-.008-5.035-2.95-4.946-5.723c-.136-.82-.277-1.648-.464-2.797c1.785 1.215 3.28 2.461 5.289 2.508c2.05.035 3.664-1.016 5.34-2.246c.359.984-.543 1.75-.274 2.61zm0 0\\\"/><path fill=\\\"#b5d2f3\\\" d=\\\"M49.52 60.527c-.149-.054-.293-.12-.434-.172c-2.043-.835-3.813-2.117-5.453-3.542c-5.922-5.118-9.832-11.524-10.778-19.297c-1.074-8.832.903-16.985 6.793-23.989c5.38-6.386 12.235-10.109 20.418-10.964c9.094-.95 17.262 1.593 24.137 7.874c5.738 5.239 9.086 11.727 9.945 19.356c.73 6.5-.441 12.781-3.78 18.484c-3.04 5.184-7.083 9.391-12.548 12.055c-.152.074-.3.148-.449.219c-.207.566-.394 1.133-.035 1.715c.113-.125.246-.239.387-.336c8.257-4.371 13.984-10.867 16.664-19.91c.23-.766.59-1.149 1.445-1.06c1.164.122 1.477-.655 1.477-1.624c.007-3.723.011-7.441.007-11.16c0-.797-.191-1.68-1.02-1.77c-1.523-.176-1.71-1.289-2.015-2.37c-1.789-6.294-5.234-11.532-10.351-15.552C73.41.227 61.863-1.266 49.75 4.313c-9.004 4.14-14.738 11.324-17.336 20.937c-.164.598-.09 1.309-1.105 1.098c-1.446-.297-1.989.554-1.997 1.836c-.023 3.722-.007 7.437-.007 11.16c0 1.238.625 1.894 1.82 1.601c1.094-.27 1.355.278 1.582 1.114a29.418 29.418 0 0 0 4.781 9.8c3.207 4.348 7.114 7.84 12.082 10.063c-.015-.461-.03-.934-.05-1.395m0 0\\\"/><path fill=\\\"#fe684b\\\" d=\\\"M49.527 62.84c-1.105 3.094-4.043 3.02-6.543 3.797c1.88.484 3.79 1.043 5.668.722c1.121-.195 1.336.207 1.5.871c.016.055.024.106.04.16c.007.044.019.094.027.15c-.14-1.919-.239-3.83-.692-5.7m0 0\\\"/><path fill=\\\"#fe6446\\\" d=\\\"M77.059 66.973c2.386 1.082 4.64-.008 6.945-.32c-2.254-.958-5.172-.466-6.356-3.368c-1.261 1.063-.285 2.477-.59 3.688zm0 0\\\"/><path fill=\\\"#fe733e\\\" d=\\\"M47.43 84.574h3.847c-.066-.043-.14-.09-.207-.14c-.285-.188-.566-.371-.851-.567c-.844-.047-1.633.14-2.79.707zm27.914 0h3.742c-.758-.437-1.504-.812-2.371-.672c-.29.57-1.067.153-1.371.672m0 0\\\"/><path fill=\\\"#e2f5fc\\\" d=\\\"M77.828 60.324c5.465-2.656 9.5-6.863 12.543-12.054c3.344-5.704 4.516-11.985 3.785-18.48c-.86-7.642-4.199-14.13-9.945-19.36c-6.875-6.274-15.043-8.825-24.137-7.867c-8.176.847-15.039 4.578-20.418 10.964c-5.898 7.004-7.867 15.157-6.793 23.989c.946 7.78 4.856 14.18 10.778 19.297c1.648 1.425 3.418 2.714 5.453 3.542c.14.06.281.118.433.172c.094-1.96-.136-3.902-.351-5.847l-.45-.32c-1.511-1.098-2.812-2.45-4.117-3.778c-.394-.402-.886-.746-.886-1.402c-.88.636-1.516.195-2.028-.504c-2.867-3.91-4.597-8.246-4.828-13.121c-.207-4.313.18-8.504 1.992-12.54c2.305-5.124 5.848-9.042 10.606-11.953c.808-.492 1.27-.05 1.828.317a1.902 1.902 0 0 0 1.383-.688l-.07-.156c-.477-1.008-.5-2.148.648-2.418c1.156-.273 1.812.664 1.82 1.88c8.633-2.833 16.656-1.684 23.903 3.843c5.414 4.133 8.515 9.676 9.464 16.433c1.223 8.688-1.714 15.895-7.773 21.989a10.479 10.479 0 0 1-2.43 1.851a11.36 11.36 0 0 1-.472.23c-.371 2.052-.395 4.126-.371 6.2c.132-.07.273-.145.433-.219m0 0\\\"/><path fill=\\\"#cdecf6\\\" d=\\\"M80.652 52.27c6.051-6.094 8.989-13.301 7.774-21.989c-.946-6.765-4.051-12.308-9.465-16.433c-7.242-5.528-15.277-6.668-23.898-3.844c-.016.008-.032.023-.047.031c-.68.434-1.207 1.363-2.184.781a1.594 1.594 0 0 1-.172-.109c-.34.414-.844.668-1.383.684c-.02.09-.05.171-.082.261c-.617 1.739-2.476 2.196-3.718 3.239c-3.38 2.828-5.887 6.214-7.364 10.316c-2.37 6.61-1.886 13.082 1.29 19.336a20.865 20.865 0 0 0 1.827 2.895c.375.496.547 1.117.477 1.734v.023c0 .649.492 1 .887 1.403c1.316 1.328 2.605 2.68 4.12 3.773c.15.106.298.219.446.324c-.113-2.968-.226-5.937-.344-8.906c-.007 0-.007-.008-.015-.008c-2.578-1.695-4.473-3.86-4.801-7.082c-.41-3.972 1.258-6.914 4.512-9.054c.015-.008.031-.024.043-.028a14.22 14.22 0 0 1 1.023-6.02c2.484-6.452 9.988-10.69 16.172-9.14c.008 0 .016.004.023.008c4.102.664 7.473 2.535 9.891 5.976c1.93 2.75 2.93 5.79 2.723 9.176c2.328 1.766 4.207 3.84 4.511 6.906c.41 4.125-1.351 7.137-4.816 9.243v.035c-.113 2.851-.234 5.699-.344 8.558a6.61 6.61 0 0 0 .469-.234a9.937 9.937 0 0 0 2.445-1.855m0 0\\\"/><path fill=\\\"#fe6b3c\\\" d=\\\"M70.605 29.281c2.56-1.261 5.043-.582 7.512.23c.09.028.188.06.278.09c.207-3.394-.793-6.43-2.723-9.175c-2.418-3.438-5.79-5.313-9.89-5.977h-.024c-.613.121-1.29-.133-2.043.301c5.043 4.223 5.734 9.637 4.742 15.535c.156-.074.305-.14.465-.215c.574-.261 1.133-.515 1.683-.789m0 0\\\"/><path fill=\\\"#fe6142\\\" d=\\\"M82.914 36.516c-.305-3.067-2.187-5.141-4.512-6.907a7.625 7.625 0 0 0-.277-.09c-2.477-.812-4.953-1.492-7.512-.23c-.55.273-1.117.535-1.68.797c-.156.074-.304.14-.46.215c-.371.426-.715.89-1.118 1.285c-2.418 2.355-2.753 5.273-2.113 8.36c.977 4.706 6.723 8.624 12.824 5.835c.008-.008.02-.008.028-.015c3.469-2.114 5.238-5.133 4.82-9.25m-9.121 8.242a7.076 7.076 0 0 1-6.106-3.602a7.078 7.078 0 0 1 .086-7.086a7.08 7.08 0 0 1 6.188-3.457c3.969.032 7.008 3.157 6.977 7.172c-.032 3.98-3.133 7.012-7.145 6.973m0 0\\\"/><path fill=\\\"#fe6143\\\" d=\\\"M48.52 29.629c-3.254 2.14-4.922 5.082-4.512 9.058c.328 3.223 2.222 5.383 4.8 7.079c.008 0 .008.007.016.007c1.524.473 3.114.707 4.707.7c5.567-.082 9.766-5.766 8.192-11.153c-1.516-5.168-7.02-8.562-13.145-5.718a.276.276 0 0 0-.058.027m4.445 15.129c-4.067.015-7.215-3.102-7.2-7.145c.008-3.968 3.106-7.043 7.094-7.066a7.11 7.11 0 0 1 6.305 10.637a7.105 7.105 0 0 1-6.2 3.574zm0 0\\\"/><path fill=\\\"#070909\\\" d=\\\"M59.46 54.574c-.273-.277-.476-.648-.937-.656c-.09 2.773 2.446 5.715 4.946 5.723c2.648.007 4.953-2.63 4.945-5.649c-1 .516-1.633 1.574-2.785 1.887c-2.29.629-4.39.469-6.168-1.305zm0 0\\\"/><path fill=\\\"#fdfcfb\\\" d=\\\"M68.688 51.383c-1.676 1.23-3.282 2.281-5.34 2.246c-2.012-.04-3.504-1.293-5.29-2.508c.196 1.149.329 1.969.465 2.797c.461.016.664.379.938.656c1.77 1.774 3.879 1.934 6.168 1.305c1.152-.313 1.785-1.363 2.785-1.887c-.27-.86.633-1.625.273-2.61zm0 0\\\"/><path fill=\\\"#fea777\\\" d=\\\"M57.45 19.3c-1.321.02-1.942.774-2.06 1.887c.02 1.52.903 2.184 2.07 2.168a1.997 1.997 0 0 0 1.985-1.98c.024-1.164-.601-2.105-1.996-2.074zm0 0\\\"/><path fill=\\\"#fdfefe\\\" d=\\\"M43.707 49.168a2.428 2.428 0 0 0-.477-1.738a21.238 21.238 0 0 1-1.828-2.895c-3.175-6.25-3.668-12.726-1.289-19.336c1.477-4.101 3.985-7.488 7.364-10.316c1.242-1.043 3.101-1.492 3.718-3.238a1.52 1.52 0 0 0 .082-.258c-.558-.367-1.02-.809-1.824-.317c-4.762 2.91-8.305 6.828-10.61 11.953c-1.812 4.036-2.198 8.227-1.991 12.54c.238 4.867 1.964 9.21 4.828 13.117c.515.703 1.156 1.144 2.027.508zm0 0\\\"/><path fill=\\\"#fbfdfe\\\" d=\\\"M55.008 10.035c.015-.008.031-.023.047-.031c-.016-1.215-.664-2.156-1.82-1.879c-1.15.277-1.13 1.418-.65 2.418l.067.156c.055.04.11.078.172.114c.977.585 1.504-.352 2.184-.778m0 0\\\"/><path fill=\\\"#fefefe\\\" d=\\\"M80.938 37.79c.03-4.005-3.008-7.13-6.977-7.169a7.071 7.071 0 0 0-6.188 3.457a7.078 7.078 0 0 0-.085 7.086a7.076 7.076 0 0 0 6.105 3.602c4.012.03 7.113-3 7.144-6.977zm-6.797.776c-1.34.024-2.125-.738-2.246-2.058c-.036-.606.183-1.2.605-1.637a2.151 2.151 0 0 1 1.613-.66c1.313.098 2.051.863 2.207 2.238c-.18 1.223-.804 2.094-2.18 2.117zM52.86 30.555a7.015 7.015 0 0 0-7.094 7.066c-.008 4.043 3.132 7.16 7.199 7.145a7.105 7.105 0 1 0-.106-14.211zm.007 8.011c-1.328.016-2.125-.746-2.23-2.082a2.16 2.16 0 0 1 .62-1.629a2.15 2.15 0 0 1 1.626-.636c1.297.11 2.058.863 2.18 2.238c-.165 1.258-.852 2.094-2.196 2.11zm0 0\\\"/><path fill=\\\"#090b0b\\\" d=\\\"M74.113 34.21a2.162 2.162 0 0 0-1.617.657a2.167 2.167 0 0 0-.601 1.64c.12 1.329.906 2.083 2.246 2.06c1.367-.024 2-.895 2.18-2.118c-.157-1.375-.895-2.14-2.208-2.238zm0 0\\\"/><path fill=\\\"#090c0c\\\" d=\\\"M52.883 34.219a2.15 2.15 0 0 0-1.625.636a2.16 2.16 0 0 0-.621 1.63c.105 1.335.902 2.097 2.23 2.081c1.344-.015 2.031-.851 2.196-2.109c-.13-1.383-.891-2.133-2.18-2.238m0 0\\\"/>\"\n\t\t},\n\t\t\"astro\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconAstro0\\\" x1=\\\"882.997\\\" x2=\\\"638.955\\\" y1=\\\"27.113\\\" y2=\\\"866.902\\\" gradientTransform=\\\"scale(.1)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#000014\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#150426\\\"/></linearGradient><linearGradient id=\\\"deviconAstro1\\\" x1=\\\"1001.68\\\" x2=\\\"790.326\\\" y1=\\\"652.45\\\" y2=\\\"1094.91\\\" gradientTransform=\\\"scale(.1)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff1639\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff1639\\\" stop-opacity=\\\"0\\\"/></linearGradient></defs><path fill=\\\"url(#deviconAstro0)\\\" d=\\\"M81.504 9.465c.973 1.207 1.469 2.836 2.457 6.09l21.656 71.136a90.079 90.079 0 0 0-25.89-8.765L65.629 30.28a1.833 1.833 0 0 0-3.52.004L48.18 77.902a90.104 90.104 0 0 0-26.003 8.778l21.758-71.14c.996-3.25 1.492-4.876 2.464-6.083a8.023 8.023 0 0 1 3.243-2.398c1.433-.575 3.136-.575 6.535-.575H71.72c3.402 0 5.105 0 6.543.579a7.988 7.988 0 0 1 3.242 2.402Zm0 0\\\"/><path fill=\\\"#ff5d01\\\" d=\\\"M84.094 90.074c-3.57 3.055-10.696 5.137-18.903 5.137c-10.07 0-18.515-3.137-20.754-7.356c-.8 2.418-.98 5.184-.98 6.954c0 0-.527 8.675 5.508 14.71a5.671 5.671 0 0 1 5.672-5.671c5.37 0 5.367 4.683 5.363 8.488v.336c0 5.773 3.527 10.719 8.543 12.805a11.62 11.62 0 0 1-1.172-5.098c0-5.508 3.23-7.555 6.988-9.938c2.989-1.894 6.309-4 8.594-8.222a15.513 15.513 0 0 0 1.875-7.41a15.55 15.55 0 0 0-.734-4.735m0 0\\\"/><path fill=\\\"url(#deviconAstro1)\\\" d=\\\"M84.094 90.074c-3.57 3.055-10.696 5.137-18.903 5.137c-10.07 0-18.515-3.137-20.754-7.356c-.8 2.418-.98 5.184-.98 6.954c0 0-.527 8.675 5.508 14.71a5.671 5.671 0 0 1 5.672-5.671c5.37 0 5.367 4.683 5.363 8.488v.336c0 5.773 3.527 10.719 8.543 12.805a11.62 11.62 0 0 1-1.172-5.098c0-5.508 3.23-7.555 6.988-9.938c2.989-1.894 6.309-4 8.594-8.222a15.513 15.513 0 0 0 1.875-7.41a15.55 15.55 0 0 0-.734-4.735m0 0\\\"/>\"\n\t\t},\n\t\t\"astro-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M21.023 43.973c.344.425.52 1.004.872 2.156l7.664 25.2a31.983 31.983 0 0 0-9.164-3.106l-4.993-16.875a.652.652 0 0 0-.62-.47a.653.653 0 0 0-.626.47l-4.93 16.867a31.842 31.842 0 0 0-9.203 3.11l7.7-25.2c.351-1.152.53-1.727.875-2.156a2.854 2.854 0 0 1 1.144-.848c.512-.203 1.113-.203 2.317-.203h5.5c1.207 0 1.808 0 2.316.203c.45.18.844.473 1.148.852m0 0\\\"/><path fill=\\\"#ff5d01\\\" d=\\\"M21.941 72.527c-1.265 1.082-3.785 1.82-6.691 1.82c-3.566 0-6.555-1.109-7.348-2.605c-.285.856-.347 1.836-.347 2.461c0 0-.188 3.074 1.949 5.215c0-1.11.902-2.012 2.008-2.012c1.902 0 1.902 1.66 1.898 3.008v.121a4.912 4.912 0 0 0 3.027 4.535a4.13 4.13 0 0 1-.417-1.808c0-1.95 1.144-2.676 2.472-3.52c1.059-.672 2.235-1.418 3.047-2.914c.422-.777.66-1.672.66-2.625c0-.582-.09-1.144-.258-1.676m0 0\\\"/><path d=\\\"M47.156 70.938c3.207 0 5.614-1.145 6.598-3.086c0 .925.062 1.878.215 2.62h5.273c-.246-1.077-.37-2.558-.37-4.503v-4.754c0-4.504-2.653-6.633-8.54-6.633c-5.148 0-8.602 2.129-9 5.617h5.484c.188-1.511 1.45-2.344 3.516-2.344c2.035 0 3.176.833 3.176 2.56v.464l-5.578.492c-2.715.277-4.254.742-5.336 1.48c-1.14.774-1.727 1.946-1.727 3.395c0 2.899 2.406 4.688 6.29 4.688Zm2.035-3.211c-1.789 0-2.867-.711-2.867-1.852c0-1.172.895-1.79 3.145-2.066l4.133-.434v.93c0 2.066-1.79 3.422-4.41 3.422Zm21.169 3.211c5.367 0 8.109-2.008 8.109-5.247c0-2.683-1.54-4.164-5.274-4.66l-4.652-.523c-1.328-.188-1.883-.524-1.883-1.266c0-.894.895-1.297 2.93-1.297c2.805 0 4.746.649 6.32 1.914l2.496-2.5c-1.722-1.789-4.715-2.777-8.414-2.777c-5.21 0-8.11 1.855-8.11 4.969c0 2.715 1.79 4.226 5.49 4.722l4.19.493c1.665.214 2.16.523 2.16 1.324c0 .926-.925 1.422-3.085 1.422c-3.203 0-5.364-.864-6.813-2.469l-2.836 2.344c1.883 2.343 5.086 3.55 9.371 3.55Zm12.46-12.403v6.508c0 3.824 2.16 5.77 6.785 5.77c1.418 0 2.528-.157 3.575-.465V66.34a9.507 9.507 0 0 1-2.125.246c-1.946 0-2.899-.863-2.899-2.684v-5.367h5.055v-3.488h-5.055v-5.645l-5.336 1.973v3.672h-3.453v3.488Zm18.047-3.488h-4.87v15.426h5.331v-5.77c0-1.664.371-3.176 1.39-4.133c.802-.742 1.942-1.14 3.544-1.14c.586 0 1.05.058 1.574.12v-4.843c-.34-.062-.586-.062-1.02-.062c-3.05 0-5.117 1.761-5.949 4.628Zm17.508 15.891c5.64 0 9.617-2.997 9.617-8.208c0-5.183-3.976-8.148-9.617-8.148c-5.672 0-9.648 2.965-9.648 8.148c0 5.211 3.976 8.208 9.648 8.208m0-3.551c-2.59 0-4.223-1.664-4.223-4.657c0-2.996 1.633-4.597 4.223-4.597c2.559 0 4.191 1.601 4.191 4.597c0 2.993-1.632 4.657-4.191 4.657m0 0\\\"/>\"\n\t\t},\n\t\t\"atom\": {\n\t\t\t\"body\": \"<path fill=\\\"#67595D\\\" fill-rule=\\\"evenodd\\\" d=\\\"M38.622 66.979c-.806 1.674-1.508 3.089-2.175 4.522c-3.338 7.177-6.103 14.553-7.53 22.367c-.794 4.346-1.228 8.724-.093 13.087c.975 3.749 3.004 5.674 6.475 5.833c1.519.071 3.108-.251 4.587-.668c3.916-1.109 7.323-3.251 10.618-5.571c.8-.564 1.618-.916 2.616-.545c1.768.658 2.408 3.002.917 4.115c-5.381 4.009-11.076 7.466-18.049 7.68c-5.711.176-9.845-2.887-11.667-8.331c-1.36-4.062-1.44-8.24-.941-12.432c1.482-12.478 6.298-23.815 12.081-34.805c.497-.944.527-1.694.175-2.703c-1.444-4.147-2.787-8.33-4.106-12.519c-.25-.794-.506-1.02-1.368-.831c-5.666 1.246-11.248 2.767-16.274 5.744c-1.941 1.15-3.803 2.578-5.355 4.208c-2.581 2.71-2.63 5.709-.521 8.803c1.84 2.701 4.433 4.548 7.169 6.217c.856.524 1.759.97 2.621 1.484c1.253.749 1.682 2.201 1.039 3.409c-.645 1.209-2.092 1.688-3.406 1.012c-3.844-1.976-7.429-4.321-10.304-7.611c-1.762-2.016-3.053-4.282-3.48-6.968c-.532-3.35.428-6.302 2.44-8.954c2.075-2.733 4.8-4.683 7.775-6.303c5.276-2.873 10.961-4.589 16.801-5.854c.4-.087.796-.195 1.338-.33c-.275-1.558-.57-3.07-.806-4.593c-.957-6.194-1.398-12.393.123-18.567c.602-2.442 1.547-4.75 3.191-6.695c3.356-3.967 7.672-4.85 12.512-3.668c4.784 1.169 8.801 3.818 12.547 6.901c1.06.872 1.089 2.447.224 3.462c-.883 1.035-2.256 1.17-3.458.351c-1.888-1.285-3.724-2.658-5.686-3.819c-2.248-1.329-4.662-2.272-7.352-2.285c-2.222-.011-3.949.893-5.215 2.693c-1.604 2.283-2.177 4.917-2.48 7.618c-.641 5.713.12 11.329 1.233 16.918c.119.594.347.804.972.741c4.51-.45 9.021-.899 13.538-1.276c.982-.081 1.623-.436 2.232-1.206c5.87-7.415 12.305-14.281 19.875-20.01c4.217-3.191 8.673-5.973 13.8-7.492c3.212-.951 6.463-1.303 9.698-.166c4.04 1.42 6.298 4.49 7.462 8.452c1.234 4.206 1.041 8.494.54 12.781a46.552 46.552 0 0 1-.528 3.277c-.281 1.478-1.377 2.261-2.853 2.089c-1.342-.156-2.218-1.235-2.077-2.733c.195-2.066.666-4.121.687-6.183c.025-2.44-.027-4.943-.535-7.313c-1.059-4.928-4.468-6.861-9.511-5.749c-3.783.833-7.138 2.613-10.332 4.718c-6.561 4.324-12.162 9.731-17.362 15.577c-.967 1.087-1.897 2.208-2.837 3.318c-.057.066-.053.184-.125.465h1.361c13.391.135 26.585 1.727 39.479 5.438c6.14 1.768 12.067 4.072 17.521 7.465c2.902 1.805 5.566 3.894 7.673 6.62c4.297 5.56 3.936 11.802-1.007 16.781c-3.338 3.363-7.449 5.487-11.828 7.137c-1.239.465-2.603-.218-3.077-1.405c-.521-1.304.044-2.653 1.37-3.296c2.022-.98 4.125-1.829 6.037-2.993a21.078 21.078 0 0 0 4.347-3.499c2.677-2.849 2.776-5.963.506-9.151c-1.7-2.388-3.984-4.134-6.44-5.66c-6.06-3.766-12.71-6.099-19.557-7.92c-7.138-1.899-14.39-3.224-21.755-3.748c-5.869-.417-11.759-.537-17.639-.816c-.849-.041-1.429.21-1.901.938c-3.447 5.316-6.933 10.607-10.362 15.935c-.25.388-.356 1.086-.185 1.497c5.805 13.814 13.157 26.708 22.9 38.155c4.102 4.817 8.563 9.272 13.98 12.643c2.542 1.581 5.195 2.9 8.272 3.105c2.788.188 4.822-.979 6.206-3.345c1.304-2.229 1.827-4.695 2.061-7.229c.756-8.177-.861-16.064-3.005-23.87c-2.196-7.996-5.304-15.654-8.865-23.136c-.287-.602-.522-1.317-.491-1.965c.057-1.179.987-2.018 2.15-2.2c1.022-.16 2.098.402 2.609 1.498c1.274 2.728 2.567 5.451 3.734 8.226c3.602 8.571 6.502 17.365 8.034 26.563c1.069 6.42 1.58 12.863.096 19.294a22.23 22.23 0 0 1-1.439 4.21c-2.527 5.524-7.651 8.02-13.588 6.722c-4.827-1.057-8.901-3.579-12.702-6.592c-6.991-5.541-12.663-12.297-17.793-19.535c-5.848-8.245-10.787-17.013-14.925-26.234c-.155-.343-.333-.676-.637-1.295m-2.528-21.95l3.196 10.164c2.525-3.854 4.879-7.446 7.411-11.313zm28.374 26.238c-4.017-.005-7.286-3.261-7.278-7.249c.007-4.052 3.272-7.281 7.356-7.28c4.014.002 7.276 3.255 7.279 7.255c.002 4.047-3.267 7.279-7.357 7.274\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"atom-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#67595D\\\" d=\\\"M49.66 53.23h1.14l8.19 21.57H58l-2.79-7.35H45.16l-2.82 7.35h-.99zm5.19 13.32L50.23 54.4l-4.71 12.15zm12.99-12.39h-6.72v-.93h14.46v.93h-6.721V74.8h-1.02V54.16zm14.879 1.95c1.681-2.24 4.11-3.36 7.29-3.36c3.2 0 5.641 1.11 7.32 3.33c1.5 2.021 2.25 4.67 2.25 7.951c0 3.299-.75 5.939-2.25 7.92c-1.68 2.199-4.12 3.3-7.32 3.3s-5.63-1.101-7.29-3.3c-1.5-1.98-2.25-4.621-2.25-7.92c0-3.261.75-5.901 2.25-7.921m.75 15.15c1.48 2.081 3.66 3.12 6.54 3.12c2.9 0 5.09-1.039 6.57-3.12c1.3-1.819 1.95-4.229 1.95-7.229c0-2.98-.66-5.39-1.98-7.23c-1.5-2.1-3.68-3.15-6.54-3.15s-5.04 1.05-6.54 3.15c-1.3 1.84-1.949 4.25-1.949 7.23s.649 5.389 1.949 7.229M106.6 53.23h1.44l7.859 15.179l7.561-15.179h1.41V74.8h-.9V54.49l-7.8 15.15h-.601L107.5 54.49V74.8h-.9z\\\"/><path fill=\\\"#67595D\\\" fill-rule=\\\"evenodd\\\" d=\\\"m13.217 64.784l-.572 1.191c-.88 1.89-1.607 3.833-1.984 5.891c-.208 1.144-.322 2.297-.023 3.446c.257.987.79 1.494 1.704 1.536c.4.019.82-.066 1.209-.176c1.03-.292 1.929-.856 2.796-1.467c.21-.149.427-.242.689-.144c.465.173.634.79.241 1.083c-1.418 1.057-2.917 1.967-4.754 2.022c-1.504.047-2.592-.76-3.071-2.193c-.359-1.07-.38-2.171-.249-3.274c.391-3.286 1.66-6.271 3.183-9.166c.131-.249.138-.446.046-.711a109.395 109.395 0 0 1-1.081-3.297c-.067-.21-.135-.269-.361-.219c-1.491.328-2.961.729-4.286 1.512a6.613 6.613 0 0 0-1.409 1.108c-.68.714-.693 1.503-.138 2.319c.484.711 1.168 1.197 1.888 1.638l.69.391c.33.196.443.58.274.897a.653.653 0 0 1-.896.267c-1.014-.52-1.958-1.138-2.715-2.005c-.463-.53-.804-1.128-.917-1.835c-.14-.882.113-1.66.643-2.357c.547-.721 1.265-1.234 2.048-1.66c1.39-.757 2.888-1.208 4.425-1.542l.353-.087c-.072-.411-.15-.809-.213-1.21c-.251-1.63-.367-3.263.032-4.889c.159-.644.408-1.251.841-1.764c.884-1.044 2.021-1.277 3.295-.966c1.261.309 2.318 1.006 3.306 1.818c.278.23.286.645.059.912c-.233.272-.595.308-.912.092c-.496-.338-.98-.7-1.497-1.005c-.592-.35-1.228-.599-1.935-.602c-.586-.002-1.042.235-1.374.709c-.423.601-.573 1.295-.653 2.006c-.168 1.505.031 2.984.324 4.456c.031.156.092.212.257.195c1.187-.119 2.376-.236 3.564-.335a.759.759 0 0 0 .588-.319c1.546-1.953 3.241-3.761 5.234-5.27c1.111-.84 2.283-1.573 3.635-1.974c.846-.25 1.702-.343 2.554-.043c1.063.374 1.658 1.183 1.965 2.227c.325 1.107.274 2.237.143 3.366c-.034.289-.085.577-.139.863c-.074.389-.364.595-.752.55c-.354-.041-.584-.325-.546-.72c.051-.543.175-1.084.18-1.627c.007-.644-.007-1.302-.141-1.926c-.278-1.298-1.177-1.807-2.505-1.515c-.996.22-1.88.688-2.721 1.243c-1.728 1.139-3.203 2.563-4.572 4.103c-.255.286-.5.581-.747.874l-.034.123h.359c3.527.035 7.002.455 10.397 1.432c1.616.466 3.178 1.073 4.613 1.966c.765.475 1.466 1.025 2.021 1.744c1.131 1.463 1.036 3.108-.266 4.418c-.879.886-1.961 1.445-3.115 1.88a.643.643 0 0 1-.811-.37c-.137-.344.012-.698.361-.868c.533-.258 1.086-.48 1.59-.788a5.529 5.529 0 0 0 1.145-.922c.705-.75.731-1.57.133-2.409c-.447-.628-1.048-1.089-1.695-1.491c-1.596-.992-3.348-1.606-5.15-2.085c-1.88-.5-3.789-.849-5.729-.987c-1.546-.11-3.098-.142-4.646-.215c-.224-.01-.376.056-.5.247c-.908 1.4-1.826 2.794-2.729 4.197a.497.497 0 0 0-.05.395c1.529 3.638 3.466 7.033 6.031 10.047c1.08 1.27 2.256 2.442 3.683 3.33c.669.417 1.367.765 2.178.817c.734.051 1.27-.257 1.634-.88c.345-.587.481-1.236.544-1.904c.198-2.152-.228-4.23-.792-6.286c-.579-2.105-1.396-4.123-2.334-6.093c-.075-.158-.139-.347-.13-.518c.015-.311.26-.531.566-.58c.27-.042.552.105.687.395c.336.718.677 1.436.983 2.167c.949 2.257 1.713 4.573 2.116 6.995c.281 1.69.416 3.388.025 5.081a5.819 5.819 0 0 1-.379 1.108c-.666 1.455-2.016 2.112-3.579 1.771c-1.271-.278-2.344-.943-3.345-1.736c-1.841-1.459-3.335-3.238-4.686-5.145a40.635 40.635 0 0 1-3.931-6.909zm-.666-5.781l.843 2.677l1.951-2.979zm7.472 6.91a1.913 1.913 0 0 1-1.916-1.908a1.918 1.918 0 0 1 1.937-1.917A1.918 1.918 0 0 1 21.961 64a1.914 1.914 0 0 1-1.938 1.913\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"awk-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#0a094d\\\"><path d=\\\"M114.33 75.056c.136-.547-.375-1.063-.715-.723c-.418.422-.703.25-.582-.347c.07-.36.035-.563-.102-.563c-.36 0-.23-.527.207-.836c.23-.16.801-.293 1.27-.297c.469 0 .98-.09 1.133-.203c.218-.152.168-.176-.22-.09c-.276.063-.734.024-1.01-.082c-.38-.144-.645-.12-1.075.094c-.715.355-.703.36-.703-.078c0-.25-.153-.383-.485-.422l-.48-.063l.41-.437c.438-.469.914-.48 2.2-.066c.84.27.769.004-.133-.504c-.852-.477-1.434-1.137-3.598-4.07c-2.305-3.118-2.469-3.52-2.57-6.153l-.086-2.203l-1.196-1.402c-.656-.77-1.28-1.454-1.386-1.52c-.106-.062-.618-.168-1.137-.23c-1.067-.125-1.133-.278-.547-1.27c.46-.789 1.07-.879 1.953-.293c.313.207.692.367.848.363c.176-.007.12-.09-.14-.218c-.235-.11-.423-.262-.423-.336c0-.211 2.477-.375 3.2-.207c1.5.343 1.98.87 2.234 2.445c.172 1.066.285 1.281 1.058 2.008c.473.449 1.344 1.047 1.934 1.328s1.414.789 1.836 1.125c.992.789 2.547 3.062 3.078 4.492c.23.621.512 1.238.625 1.379c.309.371-.187.625-.988.5a13.79 13.79 0 0 0-1.598-.117c-.52-.008-1.055-.106-1.191-.215c-.348-.281-1.266-2.363-1.434-3.242c-.293-1.563-.855-2.14-2.832-2.91c-1.418-.551-1.523-.637-2.285-1.825c-.7-1.09-.832-1.91-.3-1.87c.546.042.398-.688-.192-.97c-.403-.195-.668-.203-1.153-.042c-.418.136-.886.148-1.406.03c-.426-.097-.777-.132-.777-.077c0 .05.437.57.973 1.152c1.562 1.711 1.687 1.988 1.546 3.461c-.082.852-.05 1.352.098 1.531c.121.145.203.336.184.422c-.02.09.105.477.273.863c.172.383.313.828.313.985c0 .16.132.289.296.289c.22 0 .258.11.16.422c-.113.351-.09.386.133.199c.22-.18.313-.11.512.379c.133.328.324.797.422 1.043c.098.242.34.484.54.535c.202.05.41.324.476.613c.062.285.27.688.457.89c.187.204.402.552.472.774c.176.551 1.024 1.117 1.805 1.207c.492.059.652.164.652.442c0 .199.098.343.215.32c.121-.023.32.086.45.234c.124.153.316.278.425.278c.11 0 0-.211-.242-.469s-.39-.523-.324-.59c.066-.062.344.149.617.477c.547.648 1.176 1.054 1.36.87c.066-.062-.262-.44-.723-.843c-.461-.398-.774-.789-.7-.867c.079-.078.352.062.61.312c1.242 1.203 2.25 1.864 2.855 1.864c.285 0 .282-.035-.02-.368c-.179-.199-.277-.445-.214-.55a.217.217 0 0 0-.07-.301c-.102-.063-.578-.875-1.059-1.805c-.48-.93-1.031-1.773-1.227-1.879c-.699-.375-.324-.492 1.458-.457l1.816.04l1.562 1.663c.86.918 1.532 1.696 1.493 1.735c-.036.039-.239-.02-.45-.133c-.52-.281-.57-.262-.457.172c.11.418-.129.496-.468.152c-.125-.12-.29-.156-.368-.078c-.078.082.36.606.977 1.164c.66.602 1.047 1.082.938 1.176c-.247.21-4.247-.055-4.739-.32c-.219-.118-.742-.211-1.164-.211c-.637 0-.765.062-.765.37c0 .755-.614 1.872-1.434 2.622c-.465.422-.887.77-.934.77s-.035-.2.028-.438m.902-1.223c-.082-.25-.062-.261.082-.054c.152.207.242.171.477-.192c.156-.246.312-.617.347-.82c.051-.32-.027-.367-.504-.313c-.671.078-1.199.336-1.644.797c-.403.422-.414.547-.043.547c.156 0 .426.168.598.371c.367.426.855.188.687-.336m-.656-.605c.469-.39.777-.473.777-.211c0 .152-.828.601-1.09.59c-.07-.004.067-.176.313-.38zm6.515-2.625c-.066-.106-.203-.188-.304-.188c-.106 0-.137.082-.07.188c.062.101.199.187.3.187c.106 0 .137-.086.074-.187m-.582-2.371c.512-.196.329-.45-.242-.332c-.308.058-.597.015-.668-.102c-.176-.281-.535-.262-.437.023c.043.13.281.29.531.36c.254.07.473.137.488.144c.02.012.168-.03.328-.093m-1.77-.996c0-.09-.132-.22-.296-.282c-.461-.175-.523-.136-.266.168c.258.313.563.375.563.114zm-2.41-2.317c-.136-.137-.222-.148-.222-.027c0 .25.223.472.348.347c.054-.054-.004-.199-.125-.32zm.508-.61c-.324-.32-1.546-1.042-1.628-.956c-.059.054-.07.129-.028.16c.043.031.324.246.621.473c.446.335 1.325.613 1.035.324zm1.34-.476c0-.226-.691-.672-1.32-.847c-.422-.122-.402-.079.191.441c.66.582 1.13.75 1.13.406zm-1.847-3.05c-.137-.137-.223-.149-.223-.032c0 .254.223.473.348.348c.054-.05-.004-.195-.125-.317zm-1.352-.985c0-.047-.086-.137-.187-.2c-.106-.062-.188-.026-.188.083c0 .11.082.2.188.2c.101 0 .187-.036.187-.083m-2.527-.77c-.387-.289-.602-.242-.395.086c.067.114.266.2.442.196c.277-.004.273-.04-.047-.281zm-4.242-4.976a.196.196 0 0 0-.2-.191c-.109 0-.148.085-.086.191c.067.102.157.187.2.187c.047 0 .086-.085.086-.187m-3.575-.191c0-.102-.191-.184-.425-.184c-.34.004-.368.039-.141.184c.367.238.566.238.566 0m10.657 15.3c-.067-.07-.125-.25-.125-.402c0-.219.054-.227.28-.04c.157.13.286.31.286.4c0 .195-.262.218-.441.042m-2.579-2.867c-.355-.3-.578-.617-.496-.703c.086-.086.243-.008.348.18c.102.187.39.414.64.511c.25.094.458.258.458.364c0 .32-.262.222-.95-.352m-10.66-11.93l-.605-.218l.476-.614c.352-.449.633-.609 1.047-.609c.313 0 .532.063.493.14c-.04.079-.215.458-.395.844c-.176.391-.34.7-.367.692a84.463 84.463 0 0 1-.649-.235M20.498 34.126h.922c1.03 0 1.355.164 1.675.84c.422.918.422.918.68.918h.371v-2.691c-.422.16-.758.207-1.277.207h-6.29c-.695 0-.968-.047-1.324-.207v2.691h.5c.16 0 .258-.129.34-.465c.242-.984.676-1.293 1.805-1.293h1.016v8.762c0 .469-.11.613-.5.68l-.16.015c-.192.031-.29.13-.29.305v.277h3.485v-.277c0-.176-.098-.274-.258-.305l-.18-.015c-.386-.051-.515-.211-.515-.68zm6.281 4.133c.39-.535 1.164-.906 1.89-.906c.45 0 .872.148 1.16.437c.29.274.387.563.387 1.211v3.758c0 .582-.03.645-.468.758l-.078.035c-.165.047-.227.129-.227.32v.293h3.016v-.293c0-.191-.063-.304-.207-.32l-.13-.035c-.406-.113-.452-.176-.452-.758v-3.953c0-.711-.196-1.195-.645-1.547c-.469-.371-1.18-.598-1.922-.598c-.789 0-1.469.227-2.324.758v-4.066l-2.242.047v.293c0 .191.066.304.195.32l.145.035c.402.11.453.176.453.758v7.953c0 .582-.051.645-.453.758l-.145.035c-.129.016-.195.129-.195.32v.293h3.035v-.293c0-.191-.067-.289-.227-.32l-.113-.035c-.402-.113-.453-.176-.453-.758zm12.867 2.031v-.144c-.031-2.13-1.293-3.485-3.226-3.485c-2.114 0-3.649 1.614-3.649 3.825c0 2.289 1.664 3.953 3.938 3.953c1.308 0 2.195-.47 3.066-1.614l-.516-.386c-.777.949-1.406 1.304-2.261 1.304c-1.532 0-2.645-1.324-2.645-3.164v-.289zm-1.629-.726H34.42c.128-1.387.835-2.211 1.902-2.211c1.098 0 1.695.726 1.695 2.035zM7.572 69.614h2.34c1.008 0 1.84-.19 2.515-.562c1.18-.676 1.856-1.758 1.856-2.996c0-1.082-.5-1.953-1.586-2.707c-.656-.465-1.235-.602-2.434-.602h-5.61v.328c0 .215.056.293.31.372l.117.035c.289.156.441.254.46.254c.098.097.137.289.137.597v9.79c0 .577-.078.675-.597.812l-.098.02c-.234.058-.328.171-.328.367v.328h3.945v-.328c0-.235-.039-.29-.293-.368l-.094-.02c-.562-.136-.64-.234-.64-.812zm0-.87v-5.126h2.285c1.43 0 2.398 1.043 2.398 2.594c0 1.606-1.027 2.531-2.804 2.531zm9.493-1.915l-2.712.059v.348c0 .23.04.347.156.367l.407.117c.347.117.386.191.386.852v5.394c0 .64-.02.695-.347.852l-.25.097c-.274.078-.352.153-.352.387v.348h3.832v-.348c0-.234-.117-.367-.308-.387l-.313-.039c-.48-.137-.539-.215-.52-.91v-.89c0-1.313.192-2.36.618-3.383c.328-.774.773-1.317 1.101-1.317c.078 0 .137.02.332.117c.23.098.442.153.657.153c.578 0 1.023-.407 1.023-.946c0-.601-.48-1.046-1.16-1.046c-.559 0-1.043.292-1.567.93c-.425.523-.656 1.007-.984 2.05zm7.726-.23c-1.352 0-2.418.441-3.344 1.41c-.813.852-1.258 1.992-1.258 3.21c0 2.708 1.973 4.68 4.68 4.68c2.554 0 4.527-2.05 4.527-4.699c0-2.648-1.953-4.601-4.605-4.601m.02.676c1.663 0 2.593 1.41 2.593 3.945c0 2.574-.91 4.004-2.555 4.004c-1.738 0-2.668-1.488-2.668-4.215c0-2.324.989-3.734 2.63-3.734m7.014 5.394c.485.176.95.254 1.548.254c2.05 0 3.695-1.488 3.695-3.328c0-.637-.254-1.297-.695-1.836c-.332-.387-.332-.387-.332-.523c0-.176.117-.329.234-.329c.04 0 .078.02.152.133a.831.831 0 0 0 .641.293c.484 0 .812-.328.812-.793c0-.504-.464-.89-1.046-.89c-.715 0-1.18.425-1.41 1.316c-.813-.406-1.376-.562-2.07-.562c-2.165 0-3.829 1.449-3.829 3.328c0 1.101.52 1.972 1.547 2.59l-1.625 3.386v.02c-.02.078.039.133.117.133c.04 0 .133-.02.309-.055c1.004-.195 1.992-.313 2.765-.313c2.11 0 3.348.621 3.348 1.645c0 .969-1.2 1.723-2.73 1.723c-1.22 0-2.032-.29-2.032-.735c0-.039 0-.078.02-.117c.039-.309.058-.406.058-.504c0-.48-.425-.851-1.004-.851c-.62 0-1.066.406-1.066.988c0 1.101 1.625 1.894 3.89 1.894c2.59 0 4.43-1.199 4.43-2.902c0-1.621-1.664-2.668-4.238-2.668c-.734 0-1.625.117-2.242.27zm1.509-5.59c1.12 0 1.879.989 1.879 2.516c0 1.625-.758 2.648-1.938 2.648c-1.16 0-1.914-.984-1.914-2.53c0-1.587.773-2.634 1.973-2.634\\\"/><path d=\\\"m39.918 66.83l-2.707.059v.348c0 .23.04.347.153.367l.406.117c.348.117.387.191.387.852v5.394c0 .64-.02.695-.348.852l-.25.097c-.273.078-.348.153-.348.387v.348h3.829v-.348c0-.234-.118-.367-.31-.387l-.308-.039c-.484-.137-.543-.215-.523-.91v-.89c0-1.313.191-2.36.617-3.383c.332-.774.774-1.317 1.106-1.317c.074 0 .132.02.328.117c.23.098.445.153.656.153c.582 0 1.027-.407 1.027-.946c0-.601-.484-1.046-1.164-1.046c-.558 0-1.043.292-1.566.93c-.426.523-.656 1.007-.985 2.05zm11.676 7.93c-.215.176-.328.234-.504.234c-.562 0-.812-.543-.812-1.761v-2.399c0-1.18-.192-2.242-.504-2.765c-.52-.832-1.797-1.414-3.133-1.414c-1.527 0-2.785.738-2.785 1.605c0 .504.406.871.969.871c.558 0 .984-.406 1.043-1.004c.058-.582.25-.793.793-.793c.523 0 .988.25 1.336.735c.308.425.386.832.464 2.129c-3.597.367-5.457 1.449-5.457 3.19c0 1.509 1.278 2.59 3.059 2.59c1.082 0 1.66-.288 2.648-1.277c.387.91.871 1.278 1.684 1.278c.637 0 1.39-.446 1.39-.852a.352.352 0 0 0-.038-.133zm-3.058-3.54v.446c0 1.18-.075 1.817-.25 2.242c-.348.754-1.043 1.239-1.817 1.239c-.87 0-1.472-.676-1.472-1.684c0-1.45 1.238-2.36 3.539-2.629z\\\"/><path d=\\\"m53.965 66.83l-2.574.059v.348c0 .23.078.367.254.386l.152.04c.485.136.543.21.543.91v5.394c0 .695-.058.773-.543.91l-.152.04c-.176.019-.254.152-.254.386v.348h3.715v-.348c0-.234-.098-.367-.27-.387l-.214-.039c-.48-.137-.54-.215-.54-.91v-5.3c.54-.716 1.372-1.18 2.051-1.18c.348 0 .715.136 1.024.386c.425.332.562.7.562 1.567v4.527c0 .695-.058.773-.543.91l-.136.04c-.192.038-.27.152-.27.386v.348h3.656v-.348c0-.234-.097-.367-.273-.387L60 74.877c-.484-.137-.542-.215-.542-.91v-5.32c.484-.637 1.277-1.063 1.972-1.063c.426 0 .91.176 1.18.446c.293.289.406.675.406 1.41v4.527c0 .695-.059.773-.52.91l-.156.04c-.175.038-.25.152-.25.386v.348h3.617v-.348c0-.234-.078-.367-.234-.387l-.172-.039c-.484-.137-.543-.215-.543-.91v-4.602c0-.91-.136-1.375-.523-1.84c-.445-.519-1.352-.87-2.262-.87c-1.043 0-1.723.292-2.785 1.257c-.523-.87-1.297-1.257-2.516-1.257c-1.004 0-1.836.37-2.707 1.218zm14.559 0l-2.574.059v.348c0 .23.078.367.25.386l.156.04c.484.136.543.21.543.91v5.394c0 .695-.059.773-.543.91l-.156.04c-.172.019-.25.152-.25.386v.348h3.715v-.348c0-.234-.098-.367-.27-.387l-.215-.039c-.484-.137-.543-.215-.543-.91v-5.3c.543-.716 1.375-1.18 2.051-1.18c.348 0 .715.136 1.027.386c.426.332.559.7.559 1.567v4.527c0 .695-.059.773-.54.91l-.136.04c-.195.038-.27.152-.27.386v.348h3.657v-.348c0-.234-.098-.367-.274-.387l-.152-.039c-.484-.137-.543-.215-.543-.91v-5.32c.484-.637 1.277-1.063 1.973-1.063c.426 0 .91.176 1.18.446c.288.289.406.675.406 1.41v4.527c0 .695-.059.773-.524.91l-.152.04c-.176.038-.254.152-.254.386v.348h3.617v-.348c0-.234-.074-.367-.23-.387l-.176-.039c-.48-.137-.54-.215-.54-.91v-4.602c0-.91-.136-1.375-.523-1.84c-.445-.519-1.355-.87-2.261-.87c-1.047 0-1.723.292-2.785 1.257c-.524-.87-1.297-1.257-2.516-1.257c-1.008 0-1.836.37-2.707 1.218zm14.672 0l-2.688.059v.348c.078.289.098.328.29.386l.117.04c.503.136.539.21.539.91v5.394c0 .695-.055.773-.54.91l-.117.04c-.191.058-.21.097-.289.386v.348h3.637v-.348l-.059-.156c-.02-.059-.039-.098-.039-.114a.447.447 0 0 0-.21-.117l-.098-.039c-.485-.137-.543-.215-.543-.91zm-1.18-3.578c-.617 0-1.14.504-1.14 1.102c0 .64.503 1.16 1.14 1.16c.621 0 1.121-.5 1.121-1.14c0-.618-.5-1.122-1.12-1.122zm4.945 3.578l-2.574.059v.348c0 .23.078.328.309.386l.097.04c.504.136.543.21.543.91v5.394c0 .695-.058.773-.543.91l-.097.04c-.23.058-.309.152-.309.386v.348h3.676v-.348c0-.234-.098-.367-.27-.387l-.175-.039c-.485-.137-.54-.215-.54-.91v-5.375c.422-.66 1.294-1.105 2.067-1.105c.563 0 1.105.195 1.434.503c.308.31.406.735.406 1.684v4.293c0 .695-.059.773-.563.91l-.21.04c-.176.019-.274.152-.274.386v.348h3.734v-.348c0-.234-.078-.367-.23-.387l-.176-.039c-.484-.137-.543-.215-.543-.91v-4.758c0-.89-.133-1.336-.578-1.777c-.523-.524-1.238-.777-2.281-.777c-1.219 0-1.82.214-2.903 1.085z\\\"/><path d=\\\"M96.16 72.67c.485.176.95.254 1.547.254c2.051 0 3.696-1.488 3.696-3.328c0-.637-.254-1.297-.695-1.836c-.333-.387-.333-.387-.333-.523c0-.176.118-.329.235-.329c.039 0 .078.02.152.133a.831.831 0 0 0 .64.293c.485 0 .813-.328.813-.793c0-.504-.465-.89-1.047-.89c-.714 0-1.18.425-1.41 1.316c-.812-.406-1.375-.562-2.07-.562c-2.164 0-3.828 1.449-3.828 3.328c0 1.101.52 1.972 1.547 2.59l-1.625 3.386v.02c-.02.078.039.133.117.133c.039 0 .133-.02.308-.055c1.004-.195 1.993-.313 2.766-.313c2.11 0 3.348.621 3.348 1.645c0 .969-1.2 1.723-2.73 1.723c-1.22 0-2.032-.29-2.032-.735c0-.039 0-.078.02-.117c.039-.309.058-.406.058-.504c0-.48-.426-.851-1.004-.851c-.62 0-1.066.406-1.066.988c0 1.101 1.625 1.894 3.89 1.894c2.59 0 4.43-1.199 4.43-2.902c0-1.621-1.664-2.668-4.238-2.668c-.734 0-1.625.117-2.242.27zm1.508-5.59c1.122 0 1.875.989 1.875 2.516c0 1.625-.753 2.648-1.933 2.648c-1.16 0-1.914-.984-1.914-2.53c0-1.587.773-2.634 1.972-2.634M55.782 90.05V79.544c0-.578.078-.676.597-.812l.098-.02c.234-.055.309-.152.309-.367v-.328H52.86v.328c0 .195.097.312.308.367l.118.02c.523.136.601.234.601.812v9.809c0 .52-.137.715-.601.851l-.118.02c-.25.074-.308.152-.308.367v.328h9.246v-3.25h-.484c-.25 0-.368.098-.446.426c-.21.93-.347 1.18-.754 1.469c-.425.308-1.199.484-2.183.484z\\\"/><path d=\\\"M70.59 90.03c-.21.175-.328.23-.504.23c-.558 0-.812-.54-.812-1.758v-2.398c0-1.18-.192-2.242-.5-2.766c-.524-.832-1.8-1.414-3.137-1.414c-1.527 0-2.785.738-2.785 1.606c0 .503.406.87.969.87c.562 0 .984-.406 1.043-1.003c.058-.582.254-.793.793-.793c.523 0 .988.25 1.336.734c.308.426.386.832.465 2.125C63.86 85.834 62 86.916 62 88.658c0 1.508 1.278 2.59 3.06 2.59c1.081 0 1.663-.289 2.647-1.277c.387.91.872 1.277 1.684 1.277c.637 0 1.39-.445 1.39-.851a.354.354 0 0 0-.034-.137zm-3.054-3.54v.446c0 1.18-.079 1.816-.254 2.242c-.348.754-1.043 1.238-1.817 1.238c-.87 0-1.472-.676-1.472-1.683c0-1.45 1.238-2.36 3.543-2.63z\\\"/><path d=\\\"m72.961 82.1l-2.57.058v.348c0 .23.074.328.309.387l.097.039c.5.133.54.21.54.91v5.395c0 .695-.06.773-.54.91l-.097.039c-.235.058-.309.152-.309.386v.348h3.672v-.347c0-.235-.094-.368-.27-.387l-.171-.04c-.485-.136-.543-.214-.543-.91v-5.374c.425-.66 1.296-1.106 2.07-1.106c.558 0 1.101.195 1.43.504c.308.309.406.734.406 1.684v4.293c0 .695-.059.773-.559.91l-.215.039c-.175.02-.27.152-.27.386v.348h3.731v-.347c0-.235-.074-.368-.23-.387l-.176-.04c-.48-.136-.539-.214-.539-.91V84.48c0-.89-.137-1.336-.582-1.782c-.52-.519-1.238-.773-2.281-.773c-1.219 0-1.82.215-2.903 1.086z\\\"/><path d=\\\"M82.16 87.94c.485.175.95.254 1.547.254c2.051 0 3.696-1.493 3.696-3.329c0-.636-.25-1.296-.695-1.835c-.329-.387-.329-.387-.329-.524c0-.176.114-.328.23-.328c.04 0 .079.02.157.133c.133.176.387.293.637.293c.484 0 .812-.332.812-.793c0-.504-.465-.89-1.043-.89c-.715 0-1.18.425-1.414 1.316c-.812-.407-1.37-.563-2.07-.563c-2.164 0-3.828 1.45-3.828 3.328c0 1.102.523 1.973 1.547 2.59l-1.625 3.387v.02c-.02.074.039.132.117.132c.039 0 .137-.02.308-.059c1.008-.19 1.993-.308 2.766-.308c2.11 0 3.348.621 3.348 1.644c0 .97-1.2 1.723-2.727 1.723c-1.219 0-2.031-.289-2.031-.734c0-.04 0-.078.02-.117c.039-.31.058-.407.058-.504c0-.485-.426-.852-1.008-.852c-.617 0-1.062.406-1.062.988c0 1.102 1.625 1.895 3.886 1.895c2.594 0 4.43-1.2 4.43-2.902c0-1.625-1.664-2.668-4.234-2.668c-.738 0-1.625.117-2.246.27zm1.512-5.59c1.121 0 1.875.988 1.875 2.515c0 1.625-.754 2.649-1.933 2.649c-1.16 0-1.918-.984-1.918-2.531c0-1.586.777-2.633 1.976-2.633\\\"/><path d=\\\"M94.243 90.92h2.726v-.347c0-.235-.074-.348-.27-.387l-.136-.04c-.48-.136-.54-.214-.54-.91V82.1l-2.784.058v.348c0 .23.094.367.27.387l.175.039c.48.133.54.21.54.91v5.414c-.946.715-1.372.89-2.071.89c-.637 0-1.235-.214-1.547-.542c-.29-.328-.367-.617-.367-1.547V82.1l-2.688.058v.348c0 .23.098.367.25.387l.156.039c.485.133.543.21.543.91v4.602c0 1.683 1.141 2.726 2.938 2.726c.988 0 2.07-.406 2.805-1.062z\\\"/><path d=\\\"M105.42 90.03c-.211.175-.329.23-.5.23c-.563 0-.813-.54-.813-1.758v-2.398c0-1.18-.195-2.242-.504-2.766c-.523-.832-1.8-1.414-3.133-1.414c-1.527 0-2.785.738-2.785 1.606c0 .503.406.87.965.87c.563 0 .988-.406 1.047-1.003c.058-.582.25-.793.793-.793c.52 0 .984.25 1.332.734c.312.426.387.832.465 2.125c-3.598.371-5.453 1.453-5.453 3.195c0 1.508 1.277 2.59 3.054 2.59c1.086 0 1.664-.289 2.653-1.277c.386.91.867 1.277 1.68 1.277c.64 0 1.394-.445 1.394-.851c0-.04-.02-.098-.04-.137zm-3.055-3.54v.446c0 1.18-.078 1.816-.25 2.242c-.348.754-1.047 1.238-1.82 1.238c-.872 0-1.47-.676-1.47-1.683c0-1.45 1.24-2.36 3.54-2.63z\\\"/><path d=\\\"M107.75 87.94c.48.175.946.254 1.547.254c2.051 0 3.696-1.493 3.696-3.329c0-.636-.254-1.296-.7-1.835c-.328-.387-.328-.387-.328-.524c0-.176.118-.328.235-.328c.035 0 .074.02.152.133a.831.831 0 0 0 .64.293c.481 0 .813-.332.813-.793c0-.504-.465-.89-1.047-.89c-.715 0-1.18.425-1.41 1.316c-.812-.407-1.375-.563-2.07-.563c-2.168 0-3.832 1.45-3.832 3.328c0 1.102.523 1.973 1.55 2.59l-1.624 3.387v.02c-.02.074.039.132.113.132c.039 0 .137-.02.312-.059c1.004-.19 1.993-.308 2.766-.308c2.105 0 3.344.621 3.344 1.644c0 .97-1.2 1.723-2.727 1.723c-1.219 0-2.031-.289-2.031-.734c0-.04 0-.078.02-.117c.038-.31.058-.407.058-.504c0-.485-.426-.852-1.008-.852c-.617 0-1.062.406-1.062.988c0 1.102 1.625 1.895 3.886 1.895c2.594 0 4.43-1.2 4.43-2.902c0-1.625-1.664-2.668-4.234-2.668c-.735 0-1.625.117-2.242.27zm1.508-5.59c1.121 0 1.875.988 1.875 2.515c0 1.625-.754 2.649-1.933 2.649c-1.16 0-1.914-.984-1.914-2.531c0-1.586.773-2.633 1.972-2.633\\\"/><path d=\\\"M121.26 86.276v-.172c-.039-2.555-1.547-4.18-3.867-4.18c-2.535 0-4.371 1.938-4.371 4.586c0 2.746 1.992 4.738 4.719 4.738c1.566 0 2.629-.562 3.675-1.933l-.62-.465c-.93 1.14-1.684 1.566-2.708 1.566c-1.836 0-3.172-1.586-3.172-3.789v-.351zm-1.953-.868h-4.312c.152-1.664 1.003-2.652 2.28-2.652c1.317 0 2.032.871 2.032 2.438z\\\"/></g><path fill=\\\"#e70000\\\" d=\\\"M45.856 40.626L39.418 56.38c-.675 1.457-1.117 1.965-1.863 2.137c-.574.168-.746.336-.746.71v.645h5.727v-.644c0-.34-.133-.477-.543-.61c-.844-.273-1.118-.507-1.118-1.086c0-.304.102-.71.407-1.492l.949-2.472h8.91l1.152 2.812c.239.578.375 1.086.375 1.39c0 .407-.238.61-1.015.848c-.512.133-.68.27-.68.61v.644h7.219v-.644c0-.305-.102-.442-.375-.543c-.98-.305-1.082-.406-1.66-1.594l-8.438-20.293c-.066-.203-.101-.238-.168-.238c-.066 0-.066 0-.34.168l-1.726 1.05c-.305.204-.477.407-.477.579c0 .066.035.168.07.304zm4.61 11.418h-7.59l3.792-9.387zm18.511-6.742l4.95 14.906h1.32l6.335-19.515c.711-1.864.747-1.93 1.829-2.305c.238-.031.34-.168.34-.406v-.711h-5.254v.71c0 .274.207.477.543.544c.812.136 1.085.34 1.085.78c0 .372-.171 1.118-.44 1.997l-4.306 13.316l-4.707-14.164c-.203-.64-.203-.64-.203-.879c0-.543.168-.68 1.219-.984c.406-.133.574-.305.574-.61v-.71h-6.808v.71c0 .305.203.477.543.544c.812.136 1.015.34 1.285 1.289l.847 2.675l-3.93 11.79l-4.472-13.586l-.168-.543c-.137-.371-.172-.508-.172-.676c0-.508.309-.848.817-.914c.777-.137.945-.239.945-.578v-.711h-6.774v.71c0 .239.102.376.336.477c.883.27 1.086.473 1.426 1.59l6.606 20.16h1.289z\\\"/><path fill=\\\"#e70000\\\" d=\\\"M86.168 47.13v-7.184c0-1.015.137-1.183 1.016-1.421l.137-.036c.441-.132.543-.27.543-.64v-.578H81.05v.578s.035.066.274.437c.03.07.132.137.336.203l.203.036c.847.238.984.441.984 1.421v17.247c0 1.02-.137 1.187-1.05 1.425l-.169.032c-.406.101-.578.304-.578.644v.578h6.813v-.578c0-.37-.102-.508-.543-.644l-.137-.032c-.879-.238-1.016-.406-1.016-1.425v-9.079l8.266 9.012c.238.305.375.543.375.746c0 .407-.305.61-1.117.778c-.406.07-.543.238-.543.644v.578h8.133v-.578c0-.473-.07-.574-.614-.71c-.742-.204-.878-.27-1.93-1.458l-9.554-10.469l6.945-6.37c.442-.372.883-.747 1.32-1.083c.204-.172.848-.476 1.051-.543c1.223-.34 1.223-.34 1.223-.644v-.746h-7.219v.746c0 .304.168.472.711.574c.813.172 1.086.34 1.086.645c0 .238-.375.812-.68 1.117z\\\"/>\"\n\t\t},\n\t\t\"azure\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconAzure0\\\" x1=\\\"60.919\\\" x2=\\\"18.667\\\" y1=\\\"9.602\\\" y2=\\\"134.423\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#114A8B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0669BC\\\"/></linearGradient><linearGradient id=\\\"deviconAzure1\\\" x1=\\\"74.117\\\" x2=\\\"64.344\\\" y1=\\\"67.772\\\" y2=\\\"71.076\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-opacity=\\\".3\\\"/><stop offset=\\\".071\\\" stop-opacity=\\\".2\\\"/><stop offset=\\\".321\\\" stop-opacity=\\\".1\\\"/><stop offset=\\\".623\\\" stop-opacity=\\\".05\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconAzure2\\\" x1=\\\"68.742\\\" x2=\\\"115.122\\\" y1=\\\"5.961\\\" y2=\\\"129.525\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#3CCBF4\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2892DF\\\"/></linearGradient></defs><path fill=\\\"url(#deviconAzure0)\\\" d=\\\"M46.09.002h40.685L44.541 125.137a6.485 6.485 0 0 1-6.146 4.413H6.733a6.482 6.482 0 0 1-5.262-2.699a6.474 6.474 0 0 1-.876-5.848L39.944 4.414A6.488 6.488 0 0 1 46.09 0z\\\" transform=\\\"translate(.587 4.468)scale(.91904)\\\"/><path fill=\\\"#0078d4\\\" d=\\\"M97.28 81.607H37.987a2.743 2.743 0 0 0-1.874 4.751l38.1 35.562a5.991 5.991 0 0 0 4.087 1.61h33.574z\\\"/><path fill=\\\"url(#deviconAzure1)\\\" d=\\\"M46.09.002A6.434 6.434 0 0 0 39.93 4.5L.644 120.897a6.469 6.469 0 0 0 6.106 8.653h32.48a6.942 6.942 0 0 0 5.328-4.531l7.834-23.089l27.985 26.101a6.618 6.618 0 0 0 4.165 1.519h36.396l-15.963-45.616l-46.533.011L86.922.002z\\\" transform=\\\"translate(.587 4.468)scale(.91904)\\\"/><path fill=\\\"url(#deviconAzure2)\\\" d=\\\"M98.055 4.408A6.476 6.476 0 0 0 91.917.002H46.575a6.478 6.478 0 0 1 6.137 4.406l39.35 116.594a6.476 6.476 0 0 1-6.137 8.55h45.344a6.48 6.48 0 0 0 6.136-8.55z\\\" transform=\\\"translate(.587 4.468)scale(.91904)\\\"/>\"\n\t\t},\n\t\t\"azure-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconAzureWordmark0\\\" x1=\\\"60.919\\\" x2=\\\"18.667\\\" y1=\\\"9.602\\\" y2=\\\"134.423\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#114A8B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0669BC\\\"/></linearGradient><linearGradient id=\\\"deviconAzureWordmark1\\\" x1=\\\"74.117\\\" x2=\\\"64.344\\\" y1=\\\"67.772\\\" y2=\\\"71.077\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-opacity=\\\".3\\\"/><stop offset=\\\".071\\\" stop-opacity=\\\".2\\\"/><stop offset=\\\".321\\\" stop-opacity=\\\".1\\\"/><stop offset=\\\".623\\\" stop-opacity=\\\".05\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconAzureWordmark2\\\" x1=\\\"68.742\\\" x2=\\\"115.122\\\" y1=\\\"5.961\\\" y2=\\\"129.525\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#3CCBF4\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2892DF\\\"/></linearGradient></defs><path fill=\\\"#0089d6\\\" d=\\\"M90.717 76.293c-2.73-.175-4.317-1.728-4.737-4.633c-.112-.773-.112-.793-.124-5.81l-.011-4.856h2.416l.009 4.697c.009 4.233.014 4.73.055 5.027c.164 1.209.491 2.022 1.049 2.605c.446.467.968.74 1.691.885c.34.069 1.311.069 1.622 0a3.587 3.587 0 0 0 1.838-.996c.591-.59 1.028-1.427 1.24-2.373l.07-.319l.008-4.736l.008-4.738h2.467V75.94h-2.441v-1.182c0-.802-.009-1.178-.028-1.172a.975.975 0 0 0-.139.213a4.959 4.959 0 0 1-1.889 1.889c-.92.505-1.843.685-3.104.605m27.7-.012a6.409 6.409 0 0 1-2.807-.916c-1.748-1.08-2.782-2.86-3.084-5.308c-.105-.848-.118-1.986-.03-2.706c.195-1.61.828-3.19 1.73-4.317c.23-.29.755-.813 1.044-1.044a6.512 6.512 0 0 1 2.666-1.271c.566-.123 1.562-.181 2.163-.126c1.51.14 2.892.85 3.832 1.967c.956 1.135 1.48 2.721 1.548 4.674a26.028 26.028 0 0 1 .005 1.193l-.013.636l-5.286.006l-5.286.007v.236c0 .717.174 1.534.476 2.23c.26.599.709 1.253 1.075 1.57a4.73 4.73 0 0 0 2.68 1.132c.374.035 1.326-.002 1.751-.067c1.215-.187 2.37-.663 3.301-1.36c.11-.083.215-.16.234-.171c.027-.017.034.197.033 1.1v1.12l-.251.155a8.757 8.757 0 0 1-3.542 1.226c-.382.047-1.783.068-2.24.034zm4.6-9.455c0-1.201-.507-2.536-1.224-3.223a3.366 3.366 0 0 0-1.867-.904c-.348-.054-1.081-.033-1.448.04a3.787 3.787 0 0 0-1.977 1.05a5.382 5.382 0 0 0-1.309 2.092c-.1.29-.216.765-.253 1.029l-.017.126h8.095zm-71.705 9.08l3.989-10.467l3.978-10.434h2.556l.106.27c.324.831 7.963 20.642 7.963 20.652c0 .007-.612.012-1.36.012h-1.36l-1.1-2.928l-1.102-2.928h-8.866l-.038.1c-.021.054-.492 1.372-1.046 2.927l-1.006 2.829h-1.363c-1.078 0-1.36-.006-1.351-.033m12.861-8.057c0-.005-.74-2.011-1.646-4.46c-1.694-4.578-1.789-4.854-1.923-5.589c-.063-.344-.095-.354-.132-.04a7.306 7.306 0 0 1-.23 1.007c-.045.139-.808 2.23-1.696 4.648a732.32 732.32 0 0 0-1.615 4.42c0 .012 1.63.022 3.621.022c1.992 0 3.621-.004 3.621-.008m6.553 7.71v-.382l4.417-6.065l4.417-6.065l-4-.013l-3.998-.013l-.007-1.014l-.007-1.013h11.568v.684l-4.417 6.098c-2.43 3.354-4.418 6.104-4.418 6.11c0 .007 1.964.013 4.364.013h4.365v2.04H70.726zm32.411.363c-.01-.01-.017-3.373-.017-7.473v-7.456h2.414v1.537c0 .846.01 1.537.022 1.537c.013 0 .072-.138.131-.307a5.31 5.31 0 0 1 1.349-2.075a3.499 3.499 0 0 1 1.907-.947c.207-.033.382-.04.796-.029c.52.014.791.052 1.107.155l.1.032V63.4l-.285-.142a3.04 3.04 0 0 0-1.599-.32c-.389.02-.644.07-.955.186a3.021 3.021 0 0 0-1.521 1.241a7.206 7.206 0 0 0-1.01 2.9c-.02.177-.031 1.622-.036 4.469l-.007 4.207h-1.189c-.654 0-1.197-.008-1.207-.018z\\\"/><path fill=\\\"url(#deviconAzureWordmark0)\\\" d=\\\"M46.09.002h40.685L44.541 125.137a6.485 6.485 0 0 1-6.146 4.413H6.733a6.482 6.482 0 0 1-5.262-2.699a6.474 6.474 0 0 1-.876-5.848L39.944 4.414A6.488 6.488 0 0 1 46.09 0z\\\" transform=\\\"translate(2.435 44.576)scale(.29986)\\\"/><path fill=\\\"#0078d4\\\" d=\\\"M33.983 69.745H14.638a.895.895 0 0 0-.612 1.55l12.431 11.603a1.955 1.955 0 0 0 1.334.525h10.954z\\\"/><path fill=\\\"url(#deviconAzureWordmark1)\\\" d=\\\"M46.09.002A6.434 6.434 0 0 0 39.93 4.5L.644 120.897a6.469 6.469 0 0 0 6.106 8.653h32.48a6.941 6.941 0 0 0 5.328-4.531l7.834-23.089l27.985 26.101a6.618 6.618 0 0 0 4.165 1.519h36.396l-15.963-45.616l-46.533.011L86.922.002z\\\" transform=\\\"translate(2.435 44.576)scale(.29986)\\\"/><path fill=\\\"url(#deviconAzureWordmark2)\\\" d=\\\"M98.055 4.408A6.476 6.476 0 0 0 91.917.002H46.575a6.478 6.478 0 0 1 6.137 4.406l39.35 116.594a6.476 6.476 0 0 1-6.137 8.55h45.344a6.48 6.48 0 0 0 6.136-8.55z\\\" transform=\\\"translate(2.435 44.576)scale(.29986)\\\"/>\"\n\t\t},\n\t\t\"azuredevops\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconAzuredevops0\\\" x1=\\\"9\\\" x2=\\\"9\\\" y1=\\\"16.97\\\" y2=\\\"1.03\\\" gradientTransform=\\\"scale(7.11111)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0078d4\\\"/><stop offset=\\\".16\\\" stop-color=\\\"#1380da\\\"/><stop offset=\\\".53\\\" stop-color=\\\"#3c91e5\\\"/><stop offset=\\\".82\\\" stop-color=\\\"#559cec\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5ea0ef\\\"/></linearGradient></defs><path fill=\\\"url(#deviconAzuredevops0)\\\" d=\\\"M120.89 28.445v69.262l-28.445 23.324l-44.09-16.07v15.93L23.395 88.25l72.746 5.688V31.574ZM96.64 31.93L55.82 7.11v16.285L18.348 34.418L7.109 48.852v32.785l16.075 7.11V46.718Zm0 0\\\"/>\"\n\t\t},\n\t\t\"azuresqldatabase\": {\n\t\t\t\"body\": \"<defs><radialGradient id=\\\"deviconAzuresqldatabase0\\\" cx=\\\"9.36\\\" cy=\\\"10.57\\\" r=\\\"7.07\\\" fx=\\\"9.36\\\" fy=\\\"10.57\\\" gradientTransform=\\\"matrix(73.03125 0 0 37.1875 29.797 56.535)\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f2f2f2\\\"/><stop offset=\\\".58\\\" stop-color=\\\"#eee\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e6e6e6\\\"/></radialGradient><linearGradient id=\\\"deviconAzuresqldatabase1\\\" x1=\\\"2.59\\\" x2=\\\"15.41\\\" y1=\\\"10.16\\\" y2=\\\"10.16\\\" gradientTransform=\\\"scale(7.11111)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#005ba1\\\"/><stop offset=\\\".07\\\" stop-color=\\\"#0060a9\\\"/><stop offset=\\\".36\\\" stop-color=\\\"#0071c8\\\"/><stop offset=\\\".52\\\" stop-color=\\\"#0078d4\\\"/><stop offset=\\\".64\\\" stop-color=\\\"#0074cd\\\"/><stop offset=\\\".82\\\" stop-color=\\\"#006abb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#005ba1\\\"/></linearGradient></defs><path fill=\\\"url(#deviconAzuresqldatabase1)\\\" d=\\\"M64 36.55c-25.172 0-45.582-7.109-45.582-16.495v87.89c0 9.032 20.055 16.356 44.941 16.5H64c25.172 0 45.582-7.113 45.582-16.5v-87.89c0 9.172-20.41 16.496-45.582 16.496Zm0 0\\\"/><path fill=\\\"#e8e8e8\\\" d=\\\"M109.582 20.055c0 9.172-20.41 16.496-45.582 16.496s-45.582-7.11-45.582-16.496c0-9.387 20.41-16.5 45.582-16.5s45.582 7.113 45.582 16.5\\\"/><path fill=\\\"#50e6ff\\\" d=\\\"M98.988 18.703c0 5.832-15.718 10.524-34.988 10.524s-34.988-4.692-34.988-10.524C29.012 12.871 44.73 8.25 64 8.25s34.988 4.691 34.988 10.453\\\"/><path fill=\\\"#198ab3\\\" d=\\\"M64 21.332a82.193 82.193 0 0 0-27.664 4.055A81.213 81.213 0 0 0 64 29.227a79.334 79.334 0 0 0 27.664-4.125A84.332 84.332 0 0 0 64 21.332m0 0\\\"/><path fill=\\\"url(#deviconAzuresqldatabase0)\\\" d=\\\"M91.734 81.066V56.891h-6.402v29.367h17.496v-5.192ZM40.961 69.191a13.064 13.064 0 0 1-3.629-2.203a3.13 3.13 0 0 1-.852-2.277a2.418 2.418 0 0 1 1.067-2.133a4.847 4.847 0 0 1 2.988-.855a11.533 11.533 0 0 1 7.11 2.062v-6.113a18.236 18.236 0 0 0-7.11-1.137a11.67 11.67 0 0 0-7.754 2.414a7.68 7.68 0 0 0-2.984 6.332c0 3.625 2.273 6.469 7.11 8.602c1.57.668 3.05 1.527 4.41 2.562a2.982 2.982 0 0 1 1.066 2.274c0 .879-.426 1.699-1.137 2.207a5.786 5.786 0 0 1-3.203.781a11.801 11.801 0 0 1-7.75-2.988v6.613a15.411 15.411 0 0 0 7.61 1.707c2.98.176 5.933-.648 8.39-2.348a7.681 7.681 0 0 0 2.348-6.468a7.458 7.458 0 0 0-1.778-4.977a17.225 17.225 0 0 0-5.902-4.055m37.262 11.305a16.634 16.634 0 0 0 2.347-8.957A16.509 16.509 0 0 0 78.223 64a12.87 12.87 0 0 0-4.977-5.332a14.228 14.228 0 0 0-7.113-1.852a15.015 15.015 0 0 0-7.68 1.922A13.217 13.217 0 0 0 53.262 64a17.48 17.48 0 0 0-1.848 8.105a16.06 16.06 0 0 0 1.707 7.114a12.526 12.526 0 0 0 4.906 5.261a14.679 14.679 0 0 0 7.11 2.133l6.117 7.11h8.605l-8.75-7.82a12.736 12.736 0 0 0 7.114-5.407m-7.114-1.777a6.673 6.673 0 0 1-5.402 2.488a6.538 6.538 0 0 1-5.406-2.559a10.842 10.842 0 0 1-2.063-7.109a10.903 10.903 0 0 1 2.063-7.113a7.104 7.104 0 0 1 5.547-2.63a6.181 6.181 0 0 1 5.336 2.63a11.533 11.533 0 0 1 1.918 7.113a10.353 10.353 0 0 1-1.993 7.18m0 0\\\"/>\"\n\t\t},\n\t\t\"babel\": {\n\t\t\t\"body\": \"<path d=\\\"M87.44 43.79v-.27H87v.27zm2.94 7.08V51h.31a1.18 1.18 0 0 1 .09-.43v-.27c-.13 0-.26.21-.38.58zM78.9 59.79a14.06 14.06 0 0 0-2.35-3c0-.32.5-.79 1.59-1.42l3.11-2.71a7.79 7.79 0 0 0 1.23-4.31v-.46c-.12-1.38-1.12-2.49-3-3.34q-1.68-1.13-6-1.25A35.58 35.58 0 0 0 64 45.94a38.58 38.58 0 0 1-3.63 2.29v.23a.86.86 0 0 0 .36-.16a.21.21 0 0 1 .26.21l.23-.12h.11v.1a12.78 12.78 0 0 1-2.53 2l.13.24h-.11l-.28-.1c0 .08-.11.14-.34.16v.1l.27.34a1 1 0 0 1-.39-.09a1.88 1.88 0 0 0-1.16.63l.16-.69a56.31 56.31 0 0 0 1.16-6.5v-.12a4.73 4.73 0 0 1-1.13-1.05a3.71 3.71 0 0 0 0-.49v-.1H57q-1.84 2.77-7.11 9.45q-4 4.75-4.14 5.28c-1.09 1.13-1.61 1.81-1.56 2c-.29.19-.41.37-.36.58a.12.12 0 0 1-.16-.09a3.17 3.17 0 0 1-2.08 1.45l-1 .22a.23.23 0 0 0-.19.28v.12l.36-.08v.1l-.82.32l-1.45.34h-.76c-.11.11.61 0 .33.06l-1 .22c-.58.13-.89.08-1-.15h-.11a.55.55 0 0 1 0 .24l.12-.16l-.76.18q-.08-.53-3.09-3.86c0-.43.67-1.05 2.12-1.86l4.08-3.59q1.37-1.76 1.63-5.65l-.05-.59c-.16-1.83-1.48-3.3-4-4.44c-1.47-1-4.12-1.53-7.94-1.61A47.83 47.83 0 0 0 15.69 45a47.39 47.39 0 0 1-4.78 3v.32a1.25 1.25 0 0 0 .48-.19a.27.27 0 0 1 .34.26l.32-.18h.16v.15a18.64 18.64 0 0 1-3.34 2.6l.18.28H8.9l-.34-.12c0 .09-.15.16-.48.19v.17l.37.41a1.36 1.36 0 0 1-.5-.1a3.17 3.17 0 0 0-2.13 1.57l.18.28a4.47 4.47 0 0 1 1.06-.85v.46a1.53 1.53 0 0 0-.48.19L7 54a12.62 12.62 0 0 1 2.43-2c.44.11.67.25.68.4h.34a26 26 0 0 1 7.14-3.86v.32q-.66 1-.89 1a1 1 0 0 0 .23.59q.06.6-3.21 8.1Q6.37 75.88 1.34 84.21a1.07 1.07 0 0 0 .2.45a4.16 4.16 0 0 0 1.57-.6h.18v.32h.31l.32-.18c0 .09.11.14.33.12v.32A2.83 2.83 0 0 1 3.77 86a7.36 7.36 0 0 0-1.08 2.4v.15H3a19.54 19.54 0 0 0 3.06-4.41a48.82 48.82 0 0 0 9-3.38a8.39 8.39 0 0 0 4.74-1.63v-.17l-.78.23h-.18v-.17a7.07 7.07 0 0 0 3.17-1q4.46-3.44 6.74-4.87q4.68-3.44 6.07-6.7l.52-.12a6.82 6.82 0 0 0 .75 0c0-.08 0-.13.1-.15c.7-.07.36 0 .81-.06l1.17-.27c-.07 0-.1.06-.08.13l.18-.11h-.09h.2l-.09.06a1.15 1.15 0 0 0 .43 0l.08.34l-5.42 8.33l-1.18 1.48l-.58 1.92h.11l.58-.24l-.19.75l.06.22l.16.2c-.07 0-.1.07-.08.15v.12l.24-.06q.53-.46.45-.84a2.21 2.21 0 0 0 .76.06v.12c-.23.06-.35.24-.37.56v.12h.13c1.94-2.12 6.69-9.35 10.5-14.27q-.18-.8 6-2.22h.13q.22 1-1 4.67a12.58 12.58 0 0 0-.71 2.44a18.72 18.72 0 0 0-.92 3.22l-1.45 4.76a43.48 43.48 0 0 0-2.16 7.71a.94.94 0 0 1 .4 0l.2-.18a.12.12 0 0 0 .16.09l.01-.38h.63c.19 0 .34-.28.48-.71c0-.64.1-1 .39-1.06a10.28 10.28 0 0 1 .72-2.32a10.29 10.29 0 0 1 .81-2.6c.55-2 1-3 1.21-3.06l.06.24l-.4 1a50.69 50.69 0 0 1-2.12 7.35l.21.89h.13q2.6-5.59 7.48-22.14a2.89 2.89 0 0 1 1.39-2.25l-.19-.2v-.1a1.27 1.27 0 0 0 .78-.44c0-.08-.34-.21-1-.37l1.62-7a2.4 2.4 0 0 1 .62-.48v.35a.86.86 0 0 0-.36.16l.31.44a10 10 0 0 1 1.83-1.57c.34.09.5.21.52.32h.24a19.75 19.75 0 0 1 5.43-2.91v.23q-.49.74-.67.75a1 1 0 0 0 .15.45a42.43 42.43 0 0 1-2.41 6.16a167.45 167.45 0 0 1-9.44 19.55a.87.87 0 0 0 .17.34a3 3 0 0 0 1.18-.46h.11v.23h.26l.23-.12q0 .1.25.08V76a2.11 2.11 0 0 1-.4 1.06a5.31 5.31 0 0 0-.85 1.82V79h.24a14.72 14.72 0 0 0 2.32-3.35a37.54 37.54 0 0 0 6.8-2.56a6.39 6.39 0 0 0 3.62-1.24v-.12l-.61.18h-.13v-.12a5.36 5.36 0 0 0 2.4-.77c2.25-1.73 4-3 5.12-3.7c3.6-2.62 5.27-5.13 5.07-7.55zm-.61.16l.08.94c-.11.23-.23.35-.34.36l-.14-1.6c.26.09.39.19.4.3M7.73 52.37h-.16v-.29l.62-.08v.15a1.24 1.24 0 0 0-.47.19zM4.59 83.78a2 2 0 0 0-1-.21v-.46c0-.18.08-.3.31-.34s.33.13.34.43a6.79 6.79 0 0 1 .89-1l.34.14c-.11.93-.4 1.41-.86 1.44zm33.55-35.1c-.16 0-.48-.48-.93-1.45v-.29c.3 0 .61.46.93 1.45zm-.44-3.48l-.13.31l-4.57-1.9q4.56.15 4.69 1.59zM18.46 61.72l-.64.06v-.29l.64-.06zm-.52-9.92h.16v.46c-.15 0-.34.23-.59.66v-.32c.29-.34.44-.61.42-.79zM16.58 55l.06.61h-.16l-.06-.61zm-.71 1.14h.31c0 .5-.17.77-.42.79h-.16a1.46 1.46 0 0 0 .27-.77zm-.53 1.58h.18v.15l-.29.48h-.31v-.15a.4.4 0 0 0 .42-.49zm-.52 1.43l-.09.76h-.16l-.07-.75h.32zM9.59 74c-.21 1-.43 1.57-.66 1.59v-.15A1.67 1.67 0 0 1 9.59 74m-1 2.08v.15a.27.27 0 0 1-.28.34v-.15q0-.27.28-.34m-.28 4.31h.48v.17a1.25 1.25 0 0 0-.48.19H8c0-.16.08-.28.28-.34zm13.79-4.26a25.55 25.55 0 0 0-4.8 2.73q-4.37 1.53-4.3 1.91A48.06 48.06 0 0 0 7.8 83a1.86 1.86 0 0 1-.85-.22a1.37 1.37 0 0 1 .71-1.3a2.75 2.75 0 0 1 1.31.2a12.79 12.79 0 0 1 2.53-.83v-.32l-1 .08a13.15 13.15 0 0 1 2.8-1.31h.48v.15c-.83.07-1.29.32-1.39.75c0 .2.13.28.34.26c.62-.39.93-.62.92-.69q1.78-.34 9.81-5.13v.29c0 .14-.45.53-1.37 1.2zm-8.22 2.7a3.17 3.17 0 0 0 2-.93c.22 0 .34.07.35.26a7.16 7.16 0 0 0-2.19 1h-.16v-.31zm13.31-10.19l-4.11 3.26a42 42 0 0 1-4.93 3q-7.3 4-9.07 4.17H8.9q.22-.82 6.5-13.31a35.45 35.45 0 0 0 8.71-2.58l1-.08a5.59 5.59 0 0 1 4.49 1.15l.06.61q-1.12 3.21-2.45 3.76zm-8-4.52l.66-.06v.15l-.66.06zm9.29-1.57h.48c.45.21.68.4.7.57v.15a1.36 1.36 0 0 1-1.19-.67zm1.31-7.48a19 19 0 0 1-3.52 2.62c-.63.06-3 1-7.07 2.76a1.29 1.29 0 0 0-.65-.11v-.29a3.81 3.81 0 0 1 .79-2.22c.32-1.68.66-2.64 1-2.87l3.4-7.65q-.06-.71 2.18-1.09h.48v.44c1.46-.22 2.38-.35 2.73-.38c2.7-.23 4.11.32 4.22 1.63h.31l-.07-.77L34 47a2.12 2.12 0 0 1 1.28 1.59a2.48 2.48 0 0 1-.69 1.59c-.2 0-.33-.13-.34-.43h-.34l-.07.93q-2.05 3.07-3 3.16c-.56.77-.9 1.16-1 1.16zm2.09 5.36a1.2 1.2 0 0 0-.67-.26v-.46h.31l.68.4a.27.27 0 0 1-.28.34zM34 63c.3.12.48.25.51.37h-.24l-.22.18zm.21 1.29v-.12l.39-.09v.12zm.94 1.05c.4-.07.6-.09 1.34-.26v.12l-1.42.33a1.8 1.8 0 0 0 0-.19zm1.38.59a6.06 6.06 0 0 0-1.42.2v-.12l1.18-.38l.57-.13l.06.22c-.25.06-.07.06-.36.21zm1.26-.3a.26.26 0 0 1-.32-.19l.36-.08a.22.22 0 0 1 .3.19zm3.41-3.67v-.12l.59-.14l.06.22h-.62zm3.64 22.34a.92.92 0 0 0 0-.37h.13a.21.21 0 0 1 .29.17v.12l-.48.11zm2.56-21.39h-.26a7.4 7.4 0 0 1-1.06.35l-.24.06a.24.24 0 0 1-.31-.17l1.71-.39l.56-.26l.19.21a1.24 1.24 0 0 0-.58.24zm1.31-.42v-.12a.71.71 0 0 0 .32-.21l1.21-.28V62a9.37 9.37 0 0 0-1.53.48zM48.9 60a1 1 0 0 0-.34.21c0-.08-.19-.08-.5 0c-.06-.23.84-.56 2.69-1l.26-.06l.06.22c-1.3.38-2 .6-2.17.62zm3.26-3.52C52 58 51.51 58.83 50.58 59v-.12l-.82.32l-.36.08a.92.92 0 0 1-.5 0l-.11-.28a49.26 49.26 0 0 1 3.56-4.91h.28a5.09 5.09 0 0 1-.48 2.39zm5.77-4.94h-.11v-.23h.48v.12a1.57 1.57 0 0 0-.36.15zm-2.38 23.9a1.5 1.5 0 0 0-.75-.17v-.35q0-.18.22-.25c.16 0 .25.09.27.34a4.08 4.08 0 0 1 .67-.77l.25.1c-.09.71-.31 1.08-.64 1.11zM81 48.79c-.12 0-.35-.36-.72-1.12v-.23c.23 0 .48.34.72 1.09zm-.34-2.66l-.11.24l-3.45-1.44c2.3.07 3.49.48 3.56 1.2M66.07 58.67h-.48v-.23h.48v.22zm-.4-7.54h.13v.35q-.18 0-.45.5v-.23a1.08 1.08 0 0 0 .31-.62zm-1 2.42v.46h-.13v-.46zm-.55.87h.24q0 .59-.31.62h-.13a1.26 1.26 0 0 0 .2-.61zm-.39 1.19h.11v.12l-.21.37h-.24V56c.25 0 .36-.15.34-.38zm-.39 1.08l-.08.6h-.11v-.59h.24zm-4 11.3q-.24 1.17-.5 1.2v-.1a1.33 1.33 0 0 1 .51-1.1zm-.74 1.57v.1a.21.21 0 0 1-.22.27v-.12q0-.18.22-.25m-.21 3.28h.37v.12a1.07 1.07 0 0 0-.36.14h-.24q0-.2.22-.25zm10.46-3.23a21.75 21.75 0 0 0-3.65 2.06c-2.24.78-3.34 1.27-3.33 1.46A35.34 35.34 0 0 0 58 74.87a1.45 1.45 0 0 1-.64-.18a1 1 0 0 1 .54-1a2.1 2.1 0 0 1 1 .15a10.82 10.82 0 0 1 1.93-.62v-.23l-.76.06a10 10 0 0 1 2.14-1h.37v.1c-.63.06-1 .24-1.06.58a.21.21 0 0 0 .26.21c.47-.31.69-.48.69-.54q1.34-.24 7.44-3.9v.23c0 .1-.34.4-1 .91zm-6.24 2a2.5 2.5 0 0 0 1.55-.7a.21.21 0 0 1 .26.21a5.93 5.93 0 0 0-1.66.71h-.13v-.22zm10.09-7.68l-3.1 2.5a30.14 30.14 0 0 1-3.77 2.3q-5.53 3-6.89 3.16h-.13q.17-.63 4.95-10.1a27.26 27.26 0 0 0 6.61-2l.75-.07a4.2 4.2 0 0 1 3.4.89v.46c-.57 1.6-1.18 2.54-1.85 2.83zm-6.09-3.43h.48v.12h-.48zm7.05-1.2h.37c.34.17.52.32.53.44v.1a1 1 0 0 1-.91-.51zm1-5.67a14.26 14.26 0 0 1-2.66 2a35.65 35.65 0 0 0-5.37 2.08a1.22 1.22 0 0 0-.49-.07v-.23a2.93 2.93 0 0 1 .59-1.69c.24-1.29.51-2 .79-2.17l2.6-5.81c0-.34.52-.62 1.64-.84h.37v.35q1.65-.27 2.07-.31c2-.18 3.12.23 3.21 1.24h.24v-.56h.24a1.55 1.55 0 0 1 1 1.18a1.93 1.93 0 0 1-.6 1.2c-.16 0-.25-.09-.27-.34h-.24l-.07.7c-1 1.57-1.79 2.39-2.26 2.42c-.42.57-.68.86-.8.87zm1.09 3.88v-.35h.24l.52.32a.22.22 0 0 1-.22.25a1 1 0 0 0-.51-.2zM32.36 80.13l-.24.06l-.21.18a.21.21 0 0 0 .29.17c.16 0 .22-.13.19-.28v-.12zm-.92-1.84v.12c.16 0 .22-.13.19-.28v-.12a.22.22 0 0 0-.19.28M38 62.69l.28-.07l-.06-.24l-.28.07zm84.55 7.1a15.73 15.73 0 0 1-3.78.57v.23h.4l.31-.12c2.8-.31 3.13-.2 3.1-.51v-.11zm-15.25 2v.23zm-1.75-6.14l-.25-.08a4.21 4.21 0 0 0-.3 1v.1c.2 0 .37-.34.54-1zm17.58 4.07v.23l.41.07v-.23zm-19.29 2.38l-.63-.07l-.11.24v.12l3.77-.32v-.23l-3 .26zm-1.71-8.26v-.12H102l-.23.15l.13.22c.18 0 .26-.1.24-.26zM124.91 68h.18c.1 0 .15-.09.14-.24l-.1-.22a3 3 0 0 0-1.46.37v-.11l-.77.07c0-.23-.08-.35-.19-.34h-.4c-.47 0-.69 0-.92.2c0-.08 0-.12-.08-.12h-.45l-.26.15c0-.08 0-.12-.08-.12l-.16.14v-.12h-.77v.23l.32.08h.3a.54.54 0 0 0 .34.07l.26-.13V68a19.08 19.08 0 0 1-2.46.47a.42.42 0 0 0-.25-.1a.2.2 0 0 1-.19-.21l.52-.07a3.26 3.26 0 0 0 .35.09c.42-.21.44-.29.66-.31v-.23a15.16 15.16 0 0 1-2.66.25h-.08v-.23c2.31-.28 1.54-.12 2.33-.34c0 .08 0 .12.08.12a.54.54 0 0 1 .32-.16h.16a8.46 8.46 0 0 0 2.68-.35v.1l.26-.13h.24c0-.23.34-.27.46-.28v-.25c-2.81.57-3.55.41-4.33.63v-.1a3.41 3.41 0 0 1-1 .08a.49.49 0 0 0-.23.15c0-.08 0-.12-.09-.12l-2.39.39c0-.07 0-.1-.09-.09a12.17 12.17 0 0 1-2.56.46a.78.78 0 0 0-.31.13c0-.07 0-.1-.13-.09l-1 .08l-.68.17c0-.07 0-.1-.13-.09a5.43 5.43 0 0 1-1 .19c-.17 0 .08 0 0-.1l-.21.12h-1.16c-1.8.22-1.6.25-1.8.26h-.67a.09.09 0 0 1-.1.11c-.76-.1-1.16-.22-1.16-.36q.15-1.09.53-1.12h.13l-.11.24h.13c.24-.13.35-.25.34-.36v-.25h-.24v-.23a.84.84 0 0 1 .07-.47l.55-.89v.23h.26v-.23l-.15-.21a1 1 0 0 1 .47-.27v-.12h-.35v-.35a10 10 0 0 0 1-2.57l.25.1c.16 0 .23-.1.22-.27h-.24v-.1a.89.89 0 0 1 .09-.49a1.56 1.56 0 0 0 .52-1.22c.07 0 .11 0 .12.11c.33-.19.58-.68.76-1.5a46.85 46.85 0 0 0 2.27-6.22c2-5.52 2-6.1 2.25-7.41h-.24a.84.84 0 0 1-.09.48a1 1 0 0 0-.39-.09v-.1a2.83 2.83 0 0 1 .61-1.71h.05l.21.8h.24a7.33 7.33 0 0 1 .19-1c0-.12-.1-.2-.29-.21l-.23.15v-1.3H113a.91.91 0 0 1-.32-.51l-1.33.13a1.23 1.23 0 0 0-.15-.41c0-.12.29-.24.9-.36l.27.1l.25-.15c0 .08.06.12.15.11l.25-.15c0 .08.06.12.15.11h.12v-.27h-1.46l-.25.17v-.18q-9.38.77-10.65.89h-1.32c0 .1-.08.16-.27.18l-.27-.12l-.91.23a6.08 6.08 0 0 1-1.08 0a.93.93 0 0 1-.51.2l2.67-.17a1.22 1.22 0 0 1-.65.21a.9.9 0 0 1-.53-.09a15.14 15.14 0 0 1-2 .47l-.27-.1l-4.36.67a1.09 1.09 0 0 0-.59-.09a7.26 7.26 0 0 0-1.16.25l-2.11.88l.16.26a1.16 1.16 0 0 0 .43-.17l.75.07l-.09.7a1.88 1.88 0 0 0-1.2 1.34c-1 .46-1.55.78-1.55 1v.12h.16l.28-.15l.33.39v.54q0 .25-5.21 11c-3 6.9-4.6 10.67-4.75 11.35c-1 .29-1.63.71-1.81 1.27c0 .18.33.3.92.34v.27l-.27.45v.54q0 .42 2.26.64c0-.09 0-.15.14-.16a8.14 8.14 0 0 1-.28 2H78a3.47 3.47 0 0 0 1-1.92h.13c.15 0 .31.16.49.52q-.28.11-2 4.45l.16.26H78q2.05-5.2 2.58-5.75q2.7-.24 9.33-1l.28-.17a.13.13 0 0 0 .17.13h.29l.28-.17a.13.13 0 0 0 .17.13l3.35-.29c.89-.07 1.3-.34 1.27-.8c0-.12.51-.26 1.57-.41a1.28 1.28 0 0 1 .46.08c0-.08.52-.17 1.58-.26c0-.56.21-.86.52-.89v-.27a4.63 4.63 0 0 0-1 .23a6.27 6.27 0 0 1-1.33-.16a1.23 1.23 0 0 1-.43.17l-2.33.07l-.28.15q0-.13-.17-.11h-.13l-.3.15c0-.08-.25-.15-.74-.21l-.3.18h-.58v-.15q4.5-.49 4.44-1.22a.26.26 0 0 1 .32.27l.88-.22v-.27l-7.18.2c0 .09 0 .15-.14.16l-.88-.07a1.06 1.06 0 0 0-.56.2l-.33-.12a10 10 0 0 0-2 .33a12.73 12.73 0 0 0-2 0l-1.61.14l-.75-.08c0-.48.89-2.81 2.79-7a6.11 6.11 0 0 1 1.54-2.64a1.08 1.08 0 0 1 .46.11l1.15-.39l.59.09a13.45 13.45 0 0 0 3.45-.85a1.61 1.61 0 0 1 .75.07l.88-.21l2.61-.22a17.3 17.3 0 0 0 3.62-.74v-.27c-.48 0-.74 0-.75-.23c0-.36-.38-.51-1.06-.46v-.27l.72-.21l1.88-.16v-.27h-1.16v-.29l.73-.07c.2 0 .28-.11.26-.3c-1 0-1.47 0-1.48-.15q-10.23.5-10.26.19a1.17 1.17 0 0 0-.43.19l-.18-.28q2.71-5.76 3.18-5.8a1.61 1.61 0 0 1-.23.72v.12h.29c.72-1.71 1.32-2.6 1.83-2.64c2.14-.19-.3-.33 4.29-1a.9.9 0 0 0 .41.11q2.7-.54 7.52-1.14v-.27l-1.71.16v-.27a.93.93 0 0 0 .51-.2v.15a1 1 0 0 0 .39-.19a1.22 1.22 0 0 1 .68.08a9.92 9.92 0 0 1 1.43-.29l1.07-.1c.26-.17.38-.32.37-.46v-.12a3.38 3.38 0 0 1-.94-.06a.27.27 0 0 1 .24-.3l2-.19l.91-.23c0 .1.06.14.13.14a1 1 0 0 0 .39-.19h.15a7.42 7.42 0 0 0-.4 1.09h-.26a1.14 1.14 0 0 0-.15-.48h-.13c-2.42 6.75-3.5 9.89-5.74 15.07c-.41 1.32-.75 2.06-1.05 2.22a.21.21 0 0 0 .26.21a3.25 3.25 0 0 1-.46 1.93c-1 3-1.72 4.61-2.08 4.91l.23 1.41a.22.22 0 0 1-.22.25h-.24c0-.39-.18-.58-.43-.55h-.13a5.54 5.54 0 0 0-.72 1.72h.24a.81.81 0 0 0 .45-.75h.48l.28.1a1.5 1.5 0 0 0-.31.85l.13.22l-.32.75v.12a1.51 1.51 0 0 1 .91.26a1.63 1.63 0 0 0 .74-.3h3.12l.9-.31a21 21 0 0 0 1.93-.08h.39l.21-.14v.12a6.11 6.11 0 0 1 1.9.02v.12h-.55v.23a.79.79 0 0 0 .44-.17c.14 0 .22.07.23.23a3.28 3.28 0 0 0-.75.17l-.24-.08c-.38.1-.3.13-.56.15l-.38-.07a.09.09 0 0 1-.09.11a.2.2 0 0 0 .23.21h.39l2-.18l.77-.17c0 .07 0 .1.1.09l.37-.14l.7-.06c.54 0 .53-.08 1.7-.27c0-.07 0-.1.07-.11v.1a17.2 17.2 0 0 0 2.34-.45v.06c.48-.11.21-.08.34-.18c0 .08 0 .12.08.12h.34v-.25h-.84a3.59 3.59 0 0 1-.76.06l-1.71.09v-.12l1-.13h.34l.2-.14v.12c1.34-.11 1.82.22 8-1.1c.34 0 .31-.31.52-.89a.58.58 0 0 1-.33-.07a9.7 9.7 0 0 1-1.77.26c-.08 0-.15-.07-.18-.21v-.1h1a2.4 2.4 0 0 0 1-.34c0 .08-.19.13-.07.12zM79 68.77h-.44a8.27 8.27 0 0 1 .7-2h.29a7.62 7.62 0 0 1-.55 2m.53-2.12v-.12c0-.15.08-.25.29-.3v.12c0 .18-.08.28-.29.3m5.82 4.5v.12l-.73.07v-.12zm-.88-.07c0 .15-.21.32-.7.48l-.89-.07h-.29v-.27l1.91-.18zM90.4 44H90v-.15c0-.15.07-.25.26-.3h.16l.3.12a.26.26 0 0 1-.27.3zm6.66-1.3h.14v.27h-.4a.27.27 0 0 1 .24-.3zm-1.68.59l-.66-.07V43a7.16 7.16 0 0 0 1.69-.32c0 .1.1.14.27.12v.27h-.26a.9.9 0 0 1-.53-.09a1.14 1.14 0 0 1-.51.19zm.83 2.41v-.12l1.07-.1v.12zm1.15-.93v-.15h.52v.15zm.12-1.83h-.14l.12-.29l1.19-.11v.15a7.18 7.18 0 0 0-1.18.24zm.61 2.57v-.27h.52q.27 0 .28.25l-.78.07zm3.16-4.3l-.67.19h-.12a6.85 6.85 0 0 1-1.21 0c.87-.06 1.7-.12 2-.17zm-.72 3v.12l-.92.08v-.12zm1.51.72c0-.11-.19-.19-.55-.22l-.92.26h-.71c-.16-.11-.24-.19-.25-.24h.82l1.84-.3h.94v.15a5.29 5.29 0 0 0-1.18.24zm9.49-2.45h.21a3.58 3.58 0 0 1 1.11-.75a6.55 6.55 0 0 1-1.57 3.27l-.52-.32a17.07 17.07 0 0 0 .77-2.22zm-1.6 2.75h.13c-.18.34-.34.51-.47.52v-.35a.8.8 0 0 0 .36-.16zm-1 2.47a3.5 3.5 0 0 1 .72-1.72V46c-.13.93-.34 1.43-.61 1.46v.59a1.32 1.32 0 0 0-.32.75h-.13l-.07-.81c.15 0 .27-.15.35-.39zm-.4 1.34a3.4 3.4 0 0 1-.27 1h-.13v-.35c.18-.41.33-.62.43-.62zM101 70.8v-.1h.24v.35c-.13 0-.22-.07-.26-.23zm10.74.28c0-.08 0-.12-.13-.11L111 71v-.1l1.43-.12v.12a1.26 1.26 0 0 0-.75.18zm-.72-.3c.06 0 0 .06 0 .07s-.07 0 0-.07m.07-1.68l-.8.07V69h.71l.63-.16c0 .07 0 .1.13.09c.75-.13.68-.17 1-.2c.12 0 .2.07.21.21l-1.93.17zm2.8-.24a3.19 3.19 0 0 0-.79-.06v-.1l.72-.07v.1c-.07 0 .2 0 .07.12zm.06-.13v-.1h.39v.1zm.87-.07v-.1a.68.68 0 0 0 .28-.15a.28.28 0 0 1 .32.26zm1.11-.14v-.12h.48v.12zm.66-.06c0-.14 0-.22.17-.24l.16.21a.09.09 0 0 1 .07-.11l.12.22l-.52-.07zm-7 3v-.23h-.07v.23zm16.37-4.24c.07 0 .11-.09-.07-.12s.09.12-.09.13v.08l.1-.07l-.1.08l-.2.25l.39-.14v-.23zm.68.53h-.07v.23h.55c0-.15-.37-.2-.49-.2zm-.85-.41\\\"/><path fill=\\\"#f9dc3e\\\" d=\\\"M90 50.13v.15h.31a1.18 1.18 0 0 1 .09-.43v-.27c-.13 0-.26.21-.38.58zM87 43v-.27h-.44V43zm-8.52 16a14.07 14.07 0 0 0-2.35-3c0-.32.5-.79 1.59-1.42L80.84 52a7.79 7.79 0 0 0 1.23-4.31v-.46c-.12-1.38-1.12-2.49-3-3.34q-1.68-1.13-6-1.25a35.58 35.58 0 0 0-9.41 2.58a38.64 38.64 0 0 1-3.63 2.29v.23a.87.87 0 0 0 .36-.16a.21.21 0 0 1 .26.21l.23-.12h.11v.1a12.79 12.79 0 0 1-2.52 2l.13.24h-.11l-.28-.1c0 .08-.11.14-.34.16v.1l.27.34a1 1 0 0 1-.39-.09a1.88 1.88 0 0 0-1.16.63l.16-.69a56.27 56.27 0 0 0 1.16-6.5v-.12a4.73 4.73 0 0 1-1.13-1.05a3.71 3.71 0 0 0 0-.49v-.1h-.11q-1.85 2.77-7.11 9.45q-4 4.75-4.14 5.28c-1.09 1.13-1.61 1.81-1.56 2c-.29.19-.41.37-.36.58a.12.12 0 0 1-.16-.09a3.17 3.17 0 0 1-2.08 1.45l-1 .22a.23.23 0 0 0-.19.28v.12l.36-.08v.1l-.82.32l-1.45.34h-.76c-.11.11.61 0 .33.06l-1 .22c-.58.13-.89.08-1-.15h-.11a.54.54 0 0 1 0 .24l-.06-.23l-.76.18q-.08-.53-3.09-3.86c0-.43.67-1.05 2.12-1.86L38 53.14q1.37-1.76 1.63-5.65l-.06-.61c-.16-1.83-1.48-3.3-4-4.44c-1.47-1-4.12-1.53-7.94-1.61a47.82 47.82 0 0 0-12.36 3.37a47.39 47.39 0 0 1-4.78 3v.32a1.25 1.25 0 0 0 .48-.19a.27.27 0 0 1 .34.26l.32-.18h.16v.15a18.64 18.64 0 0 1-3.34 2.6l.18.28h-.14l-.34-.12c0 .09-.15.16-.48.19v.17l.37.41a1.36 1.36 0 0 1-.5-.1a3.17 3.17 0 0 0-2.13 1.57l.18.28A4.47 4.47 0 0 1 6.66 52v.46a1.53 1.53 0 0 0-.48.19l.38.58a12.63 12.63 0 0 1 2.43-2c.44.11.67.25.68.4h.34a26 26 0 0 1 7.14-3.86v.32q-.66 1-.89 1a1 1 0 0 0 .23.59q.06.6-3.21 8.1Q6 75.13.92 83.47a1.08 1.08 0 0 0 .2.45a4.17 4.17 0 0 0 1.57-.6h.18v.32h.31l.32-.18c0 .09.11.14.33.12v.32a2.83 2.83 0 0 1-.52 1.42a7.37 7.37 0 0 0-1.08 2.4v.15h.31a19.55 19.55 0 0 0 3.06-4.41a48.85 48.85 0 0 0 9-3.38a8.39 8.39 0 0 0 4.74-1.63v-.17l-.78.23h-.18v-.17a7.07 7.07 0 0 0 3.17-1q4.46-3.44 6.74-4.87q4.68-3.44 6.08-6.7l.52-.12a6.81 6.81 0 0 0 .75 0c0-.08 0-.13.1-.15c.7-.07.36 0 .81-.06l1.14-.44h.2l-.09.06a1.14 1.14 0 0 0 .43 0l.08.34L33 73.85l-1.18 1.48l-.58 1.94h.11l.58-.24l-.19.75l.06.22l.16.2c-.07 0-.1.07-.08.15v.12l.24-.06q.53-.46.45-.84a2.21 2.21 0 0 0 .76.06v.12c-.23.06-.35.24-.37.56v.12h.13c1.94-2.12 6.69-9.35 10.5-14.27q-.18-.8 6-2.22h.13q.22 1-1 4.67a12.58 12.58 0 0 0-.65 2.39a18.69 18.69 0 0 0-.92 3.22L45.69 77a43.46 43.46 0 0 0-2.16 7.71a1 1 0 0 1 .4 0l.21-.18a.12.12 0 0 0 .16.09l-.08-.34h.63c.19 0 .34-.28.48-.71c0-.64.1-1 .39-1.06a10.29 10.29 0 0 1 .72-2.32a10.29 10.29 0 0 1 .81-2.6c.55-2 1-3 1.21-3.06l.06.24l-.4 1A50.68 50.68 0 0 1 46 83.14l.21.89h.13q2.6-5.59 7.48-22.14a2.89 2.89 0 0 1 1.39-2.25l-.19-.2v-.1a1.27 1.27 0 0 0 .78-.44c0-.08-.34-.21-1-.37l1.62-7a2.41 2.41 0 0 1 .62-.48v.35a.87.87 0 0 0-.36.16L57 52a10 10 0 0 1 1.83-1.57c.34.09.5.21.52.32h.24a19.75 19.75 0 0 1 5.41-2.9v.23q-.49.74-.67.75a1 1 0 0 0 .15.45a42.49 42.49 0 0 1-2.41 6.16A167.41 167.41 0 0 1 52.66 75a.87.87 0 0 0 .17.34a3 3 0 0 0 1.17-.46h.11v.23h.26l.23-.12q0 .1.25.08v.25a2.12 2.12 0 0 1-.4 1.06a5.31 5.31 0 0 0-.85 1.82v.12h.24a14.72 14.72 0 0 0 2.32-3.35A37.55 37.55 0 0 0 63 72.36a6.39 6.39 0 0 0 3.62-1.24V71l-.61.18h-.11v-.12a5.36 5.36 0 0 0 2.4-.77c2.25-1.73 4-3 5.12-3.7C77 64 78.68 61.46 78.48 59m-.62.16l.08.94c-.11.23-.23.35-.34.36l-.14-1.6c.26.09.39.19.4.3M7.31 51.62h-.16v-.29l.64-.06v.15a1.24 1.24 0 0 0-.47.19zM4.17 83a2 2 0 0 0-1-.21v-.46c0-.18.08-.3.31-.34s.33.13.34.43a6.78 6.78 0 0 1 .89-1l.34.14c-.11.93-.4 1.41-.86 1.44zm33.55-35.1c-.16 0-.48-.48-.93-1.45v-.29c.3 0 .61.46.93 1.45zm-.45-3.48l-.13.31l-4.56-1.9q4.56.15 4.69 1.59M18 61l-.64.06v-.29l.64-.06zm-.52-9.92h.16v.46c-.15 0-.34.23-.59.66v-.32c.29-.34.44-.61.42-.79zm-1.35 3.19l.06.61h-.16l-.03-.63zm-.71 1.14h.31c0 .5-.17.77-.42.79h-.16a1.46 1.46 0 0 0 .27-.77zm-.5 1.59h.18v.15l-.29.48h-.31v-.15a.4.4 0 0 0 .42-.49zm-.52 1.43l-.09.76h-.16l-.07-.75h.32zM9.17 73.25c-.21 1-.43 1.57-.66 1.59v-.15a1.67 1.67 0 0 1 .67-1.44zm-1 2.08v.15a.27.27 0 0 1-.28.34v-.15q0-.27.28-.34m-.28 4.31h.48v.17a1.25 1.25 0 0 0-.48.19h-.31c0-.16.08-.28.28-.34zm13.79-4.26a25.56 25.56 0 0 0-4.8 2.73q-4.37 1.54-4.33 1.89a48 48 0 0 0-5.17 2.3a1.86 1.86 0 0 1-.85-.22a1.37 1.37 0 0 1 .71-1.3a2.75 2.75 0 0 1 1.31.22a12.78 12.78 0 0 1 2.53-.83v-.32l-1 .08a13.17 13.17 0 0 1 2.8-1.31h.48v.15c-.83.07-1.29.32-1.39.75c0 .2.13.28.34.26c.62-.39.93-.62.92-.69q1.77-.34 9.81-5.13v.29c0 .14-.45.53-1.37 1.2zm-8.22 2.7a3.17 3.17 0 0 0 2-.93c.22 0 .34.07.35.26a7.17 7.17 0 0 0-2.19 1h-.16v-.31zM26.77 67.9l-4.11 3.26a40.68 40.68 0 0 1-4.94 3q-7.3 4-9.07 4.17h-.18q.22-.82 6.5-13.31a35.47 35.47 0 0 0 8.71-2.58l1-.08a5.59 5.59 0 0 1 4.49 1.15l.06.61c-.74 2.13-1.56 3.38-2.44 3.75zm-8-4.52l.66-.06v.15l-.66.06zM28 61.81h.48c.45.21.68.4.7.57v.15a1.36 1.36 0 0 1-1.18-.72m1.31-7.48a19 19 0 0 1-3.52 2.62c-.63.06-3 1-7.07 2.76a1.29 1.29 0 0 0-.65-.11v-.29a3.81 3.81 0 0 1 .79-2.22c.32-1.68.66-2.64 1-2.87l3.4-7.65q-.06-.71 2.18-1.09h.48v.44c1.46-.22 2.38-.35 2.73-.38c2.7-.23 4.11.32 4.22 1.63h.31l-.07-.77h.34a2.12 2.12 0 0 1 1.28 1.59a2.48 2.48 0 0 1-.69 1.59c-.21 0-.33-.13-.34-.43h-.34l-.07.93q-2.05 3.07-3 3.16c-.56.77-.9 1.16-1 1.16zm2.09 5.36a1.2 1.2 0 0 0-.67-.26v-.46h.31l.68.4a.27.27 0 0 1-.28.34zm2.16 2.56c.3.12.48.25.51.37h-.24l-.22.18l-.06-.62zm.2 1.29v-.12l.39-.09v.12zm.94 1.05c.4-.07.6-.09 1.34-.26v.12l-1.42.33a1.87 1.87 0 0 0 0-.19zm1.38.59a6.06 6.06 0 0 0-1.42.2v-.12l1.19-.38l.57-.13l.06.22c-.26.06-.07.06-.37.21zm1.26-.3a.26.26 0 0 1-.32-.19l.36-.08a.22.22 0 0 1 .3.19zm3.41-3.67v-.12l.59-.14l.06.22h-.62zm3.64 22.34a.92.92 0 0 0 0-.37h.13a.21.21 0 0 1 .29.17v.12l-.48.11zM47 62.16h-.26a7.38 7.38 0 0 1-1.06.35l-.24.06a.24.24 0 0 1-.31-.17l1.68-.4l.56-.26l.19.21a1.25 1.25 0 0 0-.58.24zm1.31-.42v-.12a.71.71 0 0 0 .32-.21l1.21-.28v.12a9.36 9.36 0 0 0-1.53.48zm.19-2.45a1 1 0 0 0-.34.21c0-.08-.19-.08-.5 0c-.06-.23.84-.56 2.69-1l.26-.06l.06.22c-1.3.38-2 .6-2.17.62zm3.26-3.52c-.13 1.48-.65 2.32-1.57 2.53v-.12l-.82.32l-.36.08a.91.91 0 0 1-.5 0l-.07-.33A49.32 49.32 0 0 1 52 53.34h.28a5.09 5.09 0 0 1-.48 2.39zm5.77-4.94h-.11v-.23h.48v.12a1.57 1.57 0 0 0-.36.15zm-2.4 23.86a1.49 1.49 0 0 0-.75-.17v-.35q0-.18.22-.25c.16 0 .25.09.27.34a4.09 4.09 0 0 1 .67-.77l.25.1c-.09.71-.31 1.08-.64 1.11zM80.6 48c-.12 0-.35-.36-.72-1.12v-.23c.23 0 .48.34.72 1.09zm-.34-2.66l-.11.24l-3.45-1.44c2.3.07 3.49.48 3.56 1.2M65.65 57.93h-.48v-.23h.48zm-.4-7.54h.13v.35q-.18 0-.45.5v-.23a1.08 1.08 0 0 0 .31-.62zm-1 2.42v.46h-.13v-.46zm-.55.87h.24q0 .59-.31.61h-.13a1.26 1.26 0 0 0 .2-.61m-.39 1.19h.11V55l-.21.37h-.24v-.12c.25 0 .36-.15.34-.38M62.9 56l-.08.6h-.12v-.59h.24zm-4 11.3q-.24 1.17-.5 1.2v-.1a1.33 1.33 0 0 1 .51-1.1zm-.74 1.57v.1a.21.21 0 0 1-.22.27v-.12q0-.18.22-.25M58 72.11h.37v.12a1.07 1.07 0 0 0-.36.14h-.24q0-.2.22-.25zm10.46-3.23a21.75 21.75 0 0 0-3.65 2.06c-2.24.78-3.34 1.27-3.33 1.46a35.33 35.33 0 0 0-3.9 1.72a1.45 1.45 0 0 1-.64-.18a1 1 0 0 1 .54-1a2.1 2.1 0 0 1 1 .15a10.83 10.83 0 0 1 1.93-.62v-.23l-.75.07a10 10 0 0 1 2.14-1h.37v.1c-.63.06-1 .24-1.06.58a.21.21 0 0 0 .26.21c.47-.31.69-.48.69-.54q1.34-.24 7.44-3.9v.23c0 .09-.34.39-1 .9zm-6.24 2a2.5 2.5 0 0 0 1.55-.7c.16 0 .25.06.26.21a5.92 5.92 0 0 0-1.66.71h-.13v-.22zm10.08-7.74l-3.1 2.5A30.16 30.16 0 0 1 65.41 68q-5.53 3-6.89 3.16h-.13q.17-.63 4.95-10.1a27.26 27.26 0 0 0 6.61-2l.75-.06a4.2 4.2 0 0 1 3.4.89v.46c-.53 1.65-1.1 2.55-1.82 2.83zm-6.09-3.43h.48v.12h-.48zm7.05-1.2h.37c.34.17.52.32.53.44v.1a1 1 0 0 1-.91-.51zm1-5.67a14.26 14.26 0 0 1-2.66 2A35.66 35.66 0 0 0 66.2 57a1.23 1.23 0 0 0-.49-.07v-.23a2.92 2.92 0 0 1 .56-1.7c.24-1.29.51-2 .79-2.17L69.67 47c0-.34.52-.62 1.64-.84h.37v.35q1.65-.27 2.07-.31c2-.18 3.12.23 3.21 1.24h.24v-.56h.24a1.55 1.55 0 0 1 1 1.18a1.93 1.93 0 0 1-.49 1.22c-.16 0-.25-.09-.27-.34h-.24l-.07.7C76.25 51.16 75.5 52 75 52c-.42.57-.68.86-.8.87zm1.09 3.88v-.35h.24l.52.32a.22.22 0 0 1-.22.25a1 1 0 0 0-.51-.2zM31.94 79.39l-.24.06l-.21.18a.21.21 0 0 0 .29.17c.16 0 .22-.13.19-.28v-.12zM31 77.55v.12c.16 0 .22-.13.19-.28v-.12a.22.22 0 0 0-.19.28m6.6-12.39l.18-.11h-.09a.11.11 0 0 0-.08.13zm0-3.21l.28-.07l-.06-.24l-.28.07zm65.85 9.41l-.63-.07l-.11.24v.12l3.77-.32v-.23l-3 .26zm3.45-.29v.23zM122.7 69v.23l.41.07v-.23zm-.58 0a15.72 15.72 0 0 1-3.78.57v.23h.4l.31-.12c2.8-.31 3.13-.2 3.1-.51V69zm-17-4.12l-.25-.08a4.2 4.2 0 0 0-.3 1v.1c.2 0 .37-.34.54-1zm-3.41-1.84V63h-.13l-.23.15l.13.22c.18 0 .26-.1.24-.26zm7.41 7.66v-.23H109v.23zm15.37-3.47h.18c.1 0 .15-.09.14-.24l-.1-.22a3 3 0 0 0-1.46.37v-.12l-.77.07c0-.23-.08-.35-.19-.34h-.4c-.47 0-.69 0-.92.2c0-.08 0-.12-.08-.12h-.45l-.26.15c0-.08 0-.12-.08-.12l-.16.14h-.77v.23l.32.08h.3a.54.54 0 0 0 .34.07l.26-.13v.1a19.08 19.08 0 0 1-2.46.47a.43.43 0 0 0-.25-.1a.2.2 0 0 1-.19-.21l.52-.07a3.19 3.19 0 0 0 .35.09c.42-.21.44-.29.66-.31v-.23a15.19 15.19 0 0 1-2.66.25h-.08v-.23c2.31-.28 1.54-.12 2.33-.34c0 .08 0 .12.08.12a.54.54 0 0 1 .32-.16h.16a8.46 8.46 0 0 0 2.68-.35v.1l.26-.13h.24c0-.23.34-.27.46-.28v-.25c-2.81.57-3.55.41-4.33.63v-.1a3.41 3.41 0 0 1-1 .08a.49.49 0 0 0-.23.15c0-.08 0-.12-.09-.12l-2.39.39c0-.07 0-.1-.09-.09a12.17 12.17 0 0 1-2.56.46a.78.78 0 0 0-.31.13c0-.07 0-.1-.13-.09l-1 .08l-.68.17c0-.07 0-.1-.13-.09a5.41 5.41 0 0 1-1 .19c-.17 0 .08 0 0-.1l-.21.12h-1.16c-1.8.22-1.6.25-1.8.26h-.67a.09.09 0 0 1-.1.11c-.76-.1-1.16-.22-1.16-.36q.15-1.09.53-1.12h.13l-.11.24h.13c.24-.13.35-.25.34-.36v-.25h-.24v-.23a.84.84 0 0 1 .07-.47l.55-.89v.23h.26v-.23l-.15-.21a1 1 0 0 1 .47-.27v-.12h-.35v-.35a10 10 0 0 0 1-2.57l.25.1c.16 0 .23-.1.22-.27h-.24v-.1a.89.89 0 0 1 .09-.49a1.56 1.56 0 0 0 .52-1.22c.07 0 .11 0 .12.11c.33-.19.58-.68.76-1.5a46.87 46.87 0 0 0 2.47-6.25c2.05-5.52 2-6.1 2.25-7.41h-.24a.84.84 0 0 1-.09.48a1 1 0 0 0-.39-.09v-.1a2.83 2.83 0 0 1 .61-1.71h.11l.21.8h.24a7.3 7.3 0 0 1 .19-1c0-.12-.1-.2-.29-.21l-.23.15v-1.3h-.12a.91.91 0 0 1-.32-.51l-1.33.13a1.22 1.22 0 0 0-.15-.41c0-.12.29-.24.9-.36l.27.1l.25-.15c0 .08.06.12.15.11l.25-.15c0 .08.06.12.15.11h.12v-.27h-1.46l-.25.17v-.15q-9.38.77-10.65.89h-1.32c0 .1-.08.16-.27.18l-.27-.12l-.91.23a6.06 6.06 0 0 1-1.08 0a.93.93 0 0 1-.51.2l2.67-.17a1.22 1.22 0 0 1-.65.21a.9.9 0 0 1-.53-.09a15.15 15.15 0 0 1-2 .47l-.27-.1l-4.36.67a1.09 1.09 0 0 0-.59-.09a7.24 7.24 0 0 0-1.16.25l-2.11.88l.16.26a1.17 1.17 0 0 0 .43-.17l.75.07l-.09.7A1.88 1.88 0 0 0 87.24 45c-1 .46-1.55.78-1.55 1v.12h.16l.28-.15l.33.39v.54q0 .25-5.21 11c-3 6.9-4.6 10.67-4.75 11.35c-1 .29-1.63.71-1.81 1.27c0 .18.33.3.92.34v.27l-.27.45v.54q0 .42 2.26.64c0-.09 0-.15.14-.16a8.16 8.16 0 0 1-.28 2h.16a3.47 3.47 0 0 0 .88-1.73h.13c.15 0 .31.16.49.52q-.28.11-2 4.45l.16.26h.16q2.05-5.2 2.58-5.75q2.7-.24 9.33-1l.28-.17a.13.13 0 0 0 .17.13h.29l.28-.17a.13.13 0 0 0 .17.13l3.46-.4c.89-.07 1.3-.34 1.27-.8c0-.12.51-.26 1.57-.41a1.28 1.28 0 0 1 .46.08c0-.08.52-.17 1.58-.26c0-.56.2-.86.52-.89v-.27a4.63 4.63 0 0 0-1 .23a6.26 6.26 0 0 1-1.33-.16a1.23 1.23 0 0 1-.43.17l-2.33.07l-.28.15q0-.13-.17-.11h-.13l-.3.15c0-.08-.25-.15-.74-.21l-.3.18h-.58v-.09q4.5-.49 4.44-1.22a.26.26 0 0 1 .32.27l.88-.22v-.27l-7.18.2c0 .09 0 .15-.14.16l-.88-.07a1.06 1.06 0 0 0-.56.2l-.33-.12a10 10 0 0 0-2 .33a12.73 12.73 0 0 0-2 0l-1.61.14l-.85-.1c0-.48.89-2.81 2.79-7a6.11 6.11 0 0 1 1.54-2.64a1.08 1.08 0 0 1 .46.11l1.15-.39l.59.09a13.45 13.45 0 0 0 3.45-.85a1.62 1.62 0 0 1 .75.07l.88-.21l2.58-.18a17.3 17.3 0 0 0 3.62-.74v-.27c-.48 0-.74 0-.75-.23c0-.36-.38-.51-1.06-.46v-.27l.72-.21l1.88-.16v-.27h-1.16v-.29l.73-.07c.2 0 .28-.11.26-.3c-1 0-1.47 0-1.48-.15q-10.23.5-10.26.19a1.17 1.17 0 0 0-.43.19l-.18-.28q2.71-5.76 3.18-5.8a1.69 1.69 0 0 1-.22.72v.12h.29c.72-1.71 1.32-2.6 1.83-2.64c2.14-.19-.3-.33 4.29-1a.89.89 0 0 0 .41.11q2.7-.55 7.52-1.14v-.27l-1.71.16v-.27a.93.93 0 0 0 .51-.2v.15a1 1 0 0 0 .39-.19a1.23 1.23 0 0 1 .68.08a9.92 9.92 0 0 1 1.44-.29l1.07-.1c.26-.17.38-.32.37-.46v-.12a3.38 3.38 0 0 1-.94-.06a.27.27 0 0 1 .24-.3l2-.19l.91-.23c0 .1.06.14.13.14a1 1 0 0 0 .39-.19h.15a7.45 7.45 0 0 0-.4 1.09h-.26a1.14 1.14 0 0 0-.15-.48h-.13c-2.42 6.75-3.5 9.89-5.74 15.07c-.41 1.32-.75 2.06-1.05 2.22a.21.21 0 0 0 .26.21a3.25 3.25 0 0 1-.46 1.93c-1 3-1.72 4.61-2.08 4.91L101 68a.22.22 0 0 1-.22.25h-.24c0-.39-.18-.58-.43-.55h-.13a5.54 5.54 0 0 0-.72 1.72h.24a.81.81 0 0 0 .45-.75h.48l.28.1a1.49 1.49 0 0 0-.31.85l.13.22l-.32.75v.12a1.51 1.51 0 0 1 .91.26a1.63 1.63 0 0 0 .74-.3h3.12l.9-.31a20.9 20.9 0 0 0 2.23-.07h.39l.21-.14v.12a6.11 6.11 0 0 1 1.84.07v.12H110v.23a.79.79 0 0 0 .44-.17c.14 0 .22.07.23.23a3.28 3.28 0 0 0-.75.17l-.24-.08c-.38.1-.3.13-.56.15l-.38-.07a.09.09 0 0 1-.09.11a.2.2 0 0 0 .23.21h.39l2-.18l.77-.17c0 .07 0 .1.1.09l.37-.14l.7-.06c.54 0 .53-.08 1.71-.27c0-.07 0-.1.07-.11v.1a17.2 17.2 0 0 0 2.41-.5v.06c.48-.11.21-.08.34-.18c0 .08 0 .12.08.12h.34v-.25h-.84a3.59 3.59 0 0 1-.76.06l-1.71.09v-.12l1-.13h.34l.2-.14v.12c1.34-.11 1.82.22 8-1.1c.34 0 .31-.31.52-.89a.58.58 0 0 1-.33-.07a9.7 9.7 0 0 1-1.77.26c-.08 0-.15-.07-.18-.21v-.1h1a2.4 2.4 0 0 0 1-.34c0 .08-.2.13-.08.12zM78.61 68h-.44a8.26 8.26 0 0 1 .7-2h.29a7.62 7.62 0 0 1-.55 2m.53-2.12v-.12c0-.15.08-.25.29-.3v.12c0 .18-.08.28-.29.3M85 70.4v.12l-.73.07v-.12zm-.88-.07c0 .15-.21.32-.7.48l-.89-.07h-.29v-.27l1.91-.18zM90 43.22h-.44v-.15c0-.15.07-.25.26-.3h.16l.3.12a.26.26 0 0 1-.27.3zm6.66-1.3h.14v.27h-.4a.27.27 0 0 1 .24-.3zM95 42.5l-.66-.07v-.13A7.15 7.15 0 0 0 96 42c0 .1.1.14.27.12v.27h-.26a.9.9 0 0 1-.53-.09a1.14 1.14 0 0 1-.51.19zm.83 2.41v-.12l1.07-.1v.12zm1.11-.91v-.15h.52V44zm.12-1.83h-.14l.12-.29l1.19-.11v.15a7.2 7.2 0 0 0-1.18.24zm.61 2.57v-.27h.52q.27 0 .28.25l-.78.07zm3.16-4.3l-.67.19H100a6.85 6.85 0 0 1-1.21 0c.87-.06 1.7-.12 2-.17zm-.72 3v.12l-.92.08v-.12zm1.51.72c0-.11-.19-.19-.55-.22l-.92.26h-.71c-.16-.11-.24-.19-.25-.24h.82l1.84-.3h.94v.15a5.28 5.28 0 0 0-1.18.24zm9.49-2.45h.21a3.57 3.57 0 0 1 1.11-.75a6.55 6.55 0 0 1-1.57 3.27l-.52-.32a17 17 0 0 0 .77-2.22zm-1.6 2.75h.13c-.18.34-.34.51-.47.52v-.35a.79.79 0 0 0 .36-.16zm-1 2.47a3.5 3.5 0 0 1 .72-1.72v.12c-.13.93-.34 1.43-.61 1.46v.59a1.32 1.32 0 0 0-.32.75h-.13l-.07-.81c.15 0 .27-.15.35-.39zm-.4 1.34a3.41 3.41 0 0 1-.27 1h-.13v-.35c.18-.41.33-.62.43-.62zm-7.52 21.82v-.1h.24v.35c-.13 0-.22-.07-.26-.23zm10.74.28c0-.08 0-.12-.13-.11l-.61.06v-.12h.06L112 70v.12a1.26 1.26 0 0 0-.75.18zm-.72-.3c.06 0 0 .06 0 .07s-.07 0 0-.07m.07-1.68l-.8.07v-.16l.73-.07l.63-.16c0 .07 0 .1.13.09c.75-.13.68-.17 1-.2c.12 0 .2.07.21.21l-1.93.17zm2.8-.24a3.19 3.19 0 0 0-.79-.06V68l.72-.07V68c-.07 0 .2 0 .07.12zm.06-.13v-.1h.39v.1zm.87-.07v-.1a.68.68 0 0 0 .28-.15a.28.28 0 0 1 .32.26zm1.11-.14v-.12h.48v.12zm.66-.06c0-.14 0-.22.17-.24l.16.21a.09.09 0 0 1 .07-.11l.12.22l-.52-.07zm9.34-1.2c.07 0 .11-.09-.07-.12s.09.12-.09.13v.08l.1-.07l-.1.08l-.2.25l.39-.14v-.23zm.68.53h-.07v.23h.55c0-.15-.37-.2-.49-.2z\\\"/>\"\n\t\t},\n\t\t\"backbonejs\": {\n\t\t\t\"body\": \"<path fill=\\\"#002A41\\\" d=\\\"M14.646 2.701v66.305l49.353 28.132V78.015l-33.017-18.82V29.633l33.017 18.821v-17.62z\\\"/><path fill=\\\"#0071B5\\\" d=\\\"M113.353 2.701v66.305L64 97.138V78.015l33.016-18.82V29.633L64 48.454v-17.62zM14.646 125.303V58.998l49.353-28.134v19.125L30.982 68.808v28.059l33.017-18.82v19.124z\\\"/><path fill=\\\"#002A41\\\" d=\\\"M113.353 125.303V58.998L64 30.864v19.125l33.016 18.819v28.059L64 78.047v19.124z\\\"/>\"\n\t\t},\n\t\t\"backbonejs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#002A41\\\" d=\\\"M22.579 2.502v55.647l41.42 23.61V65.71l-27.71-15.795v-24.81L63.999 40.9V26.113z\\\"/><path fill=\\\"#0071B5\\\" d=\\\"M105.42 2.502v55.647L64 81.759V65.71l27.709-15.795v-24.81L64 40.9V26.113zM22.579 105.397V49.749l41.42-23.611v16.051l-27.71 15.794v23.548l27.71-15.795v16.049l-41.42 23.611z\\\"/><path fill=\\\"#002A41\\\" d=\\\"M105.42 105.397V49.749L64 26.138v16.051l27.709 15.794v23.548L64 65.736v16.049l41.42 23.611zm-93.509 6.225h3.39c1.592 0 2.744.238 3.455.714s1.067 1.228 1.067 2.257c0 .711-.199 1.298-.596 1.76s-.975.762-1.735.898v.082c1.822.312 2.732 1.27 2.732 2.873c0 1.072-.362 1.91-1.087 2.511c-.726.602-1.738.903-3.041.903H11.91zm1.396 5.137h2.298c.985 0 1.693-.155 2.126-.464c.432-.309.648-.83.648-1.563c0-.673-.241-1.158-.723-1.457c-.481-.298-1.247-.447-2.298-.447h-2.052zm0 1.182v4.489h2.503c.969 0 1.697-.188 2.188-.562c.489-.375.734-.962.734-1.761c0-.744-.25-1.291-.751-1.641s-1.263-.525-2.285-.525zm17.037 5.679l-1.493-3.816h-4.81l-1.477 3.816h-1.412l4.744-12.047h1.173l4.72 12.047zm-1.928-5.072l-1.396-3.718a20.157 20.157 0 0 1-.559-1.731c-.12.525-.292 1.103-.517 1.731l-1.411 3.718zm10.159-5.851c-1.318 0-2.359.439-3.122 1.317c-.764.878-1.146 2.081-1.146 3.607c0 1.57.368 2.783 1.104 3.64c.735.856 1.784 1.284 3.146 1.284c.838 0 1.792-.15 2.864-.451v1.223c-.831.312-1.857.468-3.077.468c-1.768 0-3.131-.536-4.091-1.608c-.961-1.072-1.44-2.596-1.44-4.571c0-1.236.23-2.32.693-3.25a4.983 4.983 0 0 1 2.002-2.15c.873-.503 1.9-.755 3.082-.755c1.258 0 2.358.23 3.299.689l-.591 1.198c-.906-.428-1.815-.641-2.723-.641m14.132 10.923h-1.641l-4.375-5.819l-1.255 1.116v4.703H44.04v-11.999h1.396v5.95l5.44-5.95h1.649l-4.825 5.211zm1.649-11.998h3.39c1.592 0 2.744.238 3.455.714s1.067 1.228 1.067 2.257c0 .711-.199 1.298-.596 1.76s-.975.762-1.735.898v.082c1.822.312 2.732 1.27 2.732 2.873c0 1.072-.362 1.91-1.087 2.511c-.726.602-1.738.903-3.041.903h-4.186zm1.396 5.137h2.298c.985 0 1.693-.155 2.126-.464c.432-.309.648-.83.648-1.563c0-.673-.241-1.158-.723-1.457c-.481-.298-1.247-.447-2.298-.447h-2.052zm0 1.182v4.489h2.503c.969 0 1.697-.188 2.188-.562c.489-.375.734-.962.734-1.761c0-.744-.25-1.291-.751-1.641s-1.263-.525-2.285-.525zm19.91-.336c0 1.92-.485 3.431-1.457 4.53c-.971 1.1-2.321 1.649-4.05 1.649c-1.768 0-3.131-.54-4.091-1.621c-.961-1.081-1.44-2.606-1.44-4.576c0-1.953.481-3.467 1.444-4.542c.963-1.075 2.33-1.613 4.104-1.613c1.723 0 3.069.547 4.037 1.641c.969 1.096 1.453 2.606 1.453 4.532m-9.561 0c0 1.625.347 2.857 1.038 3.697c.692.84 1.698 1.26 3.017 1.26c1.329 0 2.333-.418 3.012-1.256c.679-.837 1.018-2.071 1.018-3.701c0-1.614-.338-2.838-1.014-3.672s-1.676-1.251-2.999-1.251c-1.33 0-2.341.42-3.033 1.26c-.693.838-1.039 2.06-1.039 3.663m21.608 6.015h-1.592l-6.557-10.07h-.066a44.04 44.04 0 0 1 .132 3.25v6.82h-1.289v-11.999h1.576l6.541 10.029h.065a84.968 84.968 0 0 1-.074-1.424a24.85 24.85 0 0 1-.041-1.719v-6.886h1.305zm9.988 0h-6.688v-11.999h6.688v1.239h-5.293v3.866h4.973v1.231h-4.973v4.415h5.293zm2.257-.87c0-.366.083-.644.25-.833c.167-.188.406-.283.718-.283c.317 0 .565.094.743.283c.178.189.267.467.267.833c0 .356-.091.629-.271.821c-.181.191-.427.287-.739.287c-.278 0-.51-.086-.693-.258s-.275-.456-.275-.85m3.127 4.03c-.515 0-.919-.074-1.215-.222v-1.19c.389.109.794.164 1.215.164c.542 0 .953-.164 1.235-.492c.281-.329.422-.802.422-1.42v-11.999h1.396v11.884c0 1.039-.263 1.845-.788 2.417c-.525.572-1.281.858-2.265.858m13.008-6.352c0 1.056-.384 1.879-1.149 2.47s-1.806.886-3.118.886c-1.423 0-2.518-.183-3.283-.55v-1.346a8.592 8.592 0 0 0 1.608.492c.58.121 1.154.181 1.724.181c.93 0 1.63-.177 2.101-.529c.471-.353.706-.844.706-1.473c0-.416-.083-.756-.25-1.022c-.167-.265-.446-.51-.837-.734c-.392-.224-.986-.479-1.785-.763c-1.116-.399-1.914-.873-2.393-1.42c-.479-.547-.718-1.261-.718-2.142c0-.924.347-1.66 1.042-2.208c.694-.547 1.614-.821 2.758-.821c1.192 0 2.289.219 3.291.657l-.436 1.215c-.99-.416-1.953-.624-2.889-.624c-.738 0-1.315.159-1.731.476s-.624.758-.624 1.321c0 .416.077.756.229 1.022c.153.265.412.509.776.73c.363.222.92.467 1.67.735c1.258.449 2.124.93 2.598 1.444c.473.515.71 1.182.71 2.003\\\"/>\"\n\t\t},\n\t\t\"ballerina\": {\n\t\t\t\"body\": \"<path fill=\\\"#46C0BC\\\" d=\\\"M29 35.926V0h30.082v47.43zm0 26.994l20.59-7.873L29 47.173zm0 11.247V128h15.458l14.624-47.936v-17.4zm70.587-38.241V0H69.506v47.43zm0 11.246l-20.589 7.875l20.59 7.873zM69.506 62.664v17.4L84.129 128h15.458V74.167z\\\"/>\"\n\t\t},\n\t\t\"ballerina-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#46c0bc\\\" d=\\\"M36.223 55.534V27.259h23.675v37.329zm0 21.246l16.204-6.197l-16.204-6.197zm0 8.852V128h12.166l11.51-37.728V76.577Zm55.555-30.098V27.259H68.102v37.329zm0 8.852l-16.205 6.197l16.205 6.197zM68.102 76.577v13.695L79.612 128h12.166V85.632ZM14.083 21.618H4.216V.598h9.342c5.305 0 7.568 2.263 7.568 5.703c0 2.371-1.593 4.037-3.874 4.4c2.535.47 4.508 2.136 4.508 5.141c0 3.64-2.77 5.776-7.677 5.776M8.29 9.342h4.997c2.498 0 3.567-1.104 3.567-2.661c0-1.575-1.069-2.698-3.567-2.698H8.29Zm0 3.169v5.74h5.34c2.608 0 3.875-1.105 3.875-2.843c0-1.775-1.267-2.897-3.874-2.897zm28.425 5.54c0 .76.399 1.141 1.032 1.141c.398 0 .797-.109 1.231-.308v2.137c-.633.507-1.43.941-2.77.941c-1.665 0-2.933-1.068-3.24-2.843c-.834 1.739-2.698 2.88-5.143 2.88c-2.806 0-4.67-1.504-4.67-4.038c0-2.807 2.208-3.965 5.612-4.599l4.037-.76v-.435c0-1.63-.869-2.643-2.57-2.643c-1.666 0-2.572.995-2.897 2.444l-3.64-.326c.507-3.006 2.807-5.106 6.7-5.106c3.802 0 6.3 1.81 6.3 5.667v5.848zm-3.893-3.295l-2.77.561c-1.828.362-2.969.833-2.969 2.21c0 1.031.742 1.81 2.028 1.81c2.1 0 3.711-1.575 3.711-4.074zm36.7 1.955c-.742 3.332-3.331 5.305-7.115 5.305c-4.545 0-7.804-2.897-7.804-7.532s3.296-7.966 7.713-7.966c4.798 0 7.279 3.331 7.279 7.333v1.267H58.55c.127 2.408 1.83 3.875 4.002 3.875c1.973 0 3.168-.87 3.73-2.608zm-3.838-3.693c-.073-1.901-1.177-3.567-3.404-3.567c-2.209 0-3.44 1.593-3.675 3.567zm16.385-2.173c-.76-.434-1.43-.633-2.408-.633c-2.064 0-3.476 1.466-3.476 4.146v7.278h-4.001V6.916h4.02v2.807c.524-1.666 2.063-3.205 4.11-3.205c.905 0 1.629.235 2.063.597zM84.061.598h4.11v3.91h-4.11Zm4.074 6.318v14.72h-4.002V6.916Zm7.296 14.702H91.43V6.898h4.001v2.408c.743-1.665 2.607-2.806 4.798-2.806c3.93 0 5.378 2.661 5.378 5.938v9.18h-4.002v-8.383c0-2.263-.905-3.567-2.879-3.567c-2.027 0-3.295 1.594-3.295 4.074zm26.09-3.567c0 .76.399 1.141 1.032 1.141c.398 0 .797-.109 1.231-.308v2.137c-.633.507-1.43.941-2.77.941c-1.666 0-2.933-1.068-3.24-2.843c-.833 1.739-2.698 2.88-5.142 2.88c-2.806 0-4.672-1.504-4.672-4.038c0-2.807 2.209-3.965 5.613-4.599l4.038-.76v-.435c0-1.63-.87-2.643-2.572-2.643c-1.665 0-2.57.995-2.897 2.444l-3.638-.326c.506-3.006 2.806-5.106 6.698-5.106c3.803 0 6.301 1.81 6.301 5.667v5.848zm-3.91-3.295l-2.77.561c-1.83.362-2.97.833-2.97 2.21c0 1.031.742 1.81 2.027 1.81c2.101 0 3.713-1.575 3.713-4.074zM45.822 0v8.02l-5.087-1.955V0Zm-1.611 9.306l-3.476 1.322V7.966Zm1.611 1.286v2.933l-2.48 8.093h-2.607v-9.09ZM47.578 0v8.02l5.088-1.955V0Zm1.594 9.306l3.494 1.322V7.966Zm-1.594 1.286v2.933l2.463 8.093h2.625v-9.09z\\\"/>\"\n\t\t},\n\t\t\"bamboo\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconBamboo0\\\" x1=\\\"11.217\\\" x2=\\\"11.217\\\" y1=\\\"7.486\\\" y2=\\\"21.607\\\" gradientTransform=\\\"scale(4)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient><linearGradient id=\\\"deviconBamboo1\\\" x1=\\\"11.168\\\" x2=\\\"11.168\\\" y1=\\\"7.486\\\" y2=\\\"21.607\\\" gradientTransform=\\\"scale(4)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"#2684ff\\\" d=\\\"M104.133 70.633h-20c-1.235 0-2.465.96-2.602 2.191c-1.097 7.946-7.945 14.11-16.164 14.11l5.344 24.656c19.45-2.602 34.652-18.492 36.023-38.219c.137-1.504-1.097-2.738-2.601-2.738m-34.387-.683l28.766-24.657c1.234-1.098 1.234-2.879 0-3.973L69.746 16.664c-1.644-1.508-4.246-.273-4.246 1.918v49.313c-.137 2.328 2.465 3.562 4.246 2.054zm0 0\\\"/><path fill=\\\"url(#deviconBamboo0)\\\" d=\\\"M24.273 75.977C26.88 96.247 44.273 112 65.367 112V86.934c-9.039 0-16.437-7.262-16.437-16.301zm0 0\\\"/><path fill=\\\"url(#deviconBamboo1)\\\" d=\\\"M24 70.223v.41h25.066c0-9.04 7.399-16.301 16.438-16.301L60.16 29.676C39.89 32.28 24.137 49.402 24 70.223m0 0\\\"/>\"\n\t\t},\n\t\t\"bamboo-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconBambooWordmark0\\\" x1=\\\"11.217\\\" x2=\\\"11.217\\\" y1=\\\"7.486\\\" y2=\\\"21.607\\\" gradientTransform=\\\"translate(-2.193 -13.325)scale(4.06815)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient><linearGradient id=\\\"deviconBambooWordmark1\\\" x1=\\\"11.168\\\" x2=\\\"11.168\\\" y1=\\\"7.486\\\" y2=\\\"21.607\\\" gradientTransform=\\\"translate(-2.193 -13.325)scale(4.06815)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"#2684ff\\\" d=\\\"M103.71 58.512H83.376c-1.254 0-2.508.976-2.648 2.23C79.614 68.82 72.646 75.09 64.29 75.09l5.434 25.074c19.78-2.644 35.242-18.805 36.636-38.867c.141-1.531-1.113-2.785-2.648-2.785zm-34.968-.696l29.254-25.078c1.254-1.113 1.254-2.925 0-4.039L68.742 3.625c-1.672-1.535-4.32-.281-4.32 1.95v50.152c-.137 2.367 2.508 3.62 4.32 2.09zm0 0\\\"/><path fill=\\\"url(#deviconBambooWordmark0)\\\" d=\\\"M22.496 63.945c2.645 20.617 20.34 36.637 41.793 36.637V75.09c-9.195 0-16.719-7.383-16.719-16.578zm0 0\\\"/><path fill=\\\"url(#deviconBambooWordmark1)\\\" d=\\\"M22.215 58.094v.418H47.71c0-9.196 7.523-16.578 16.715-16.578l-5.434-25.075c-20.617 2.645-36.637 20.059-36.777 41.235zm0 0\\\"/><path fill=\\\"#253858\\\" d=\\\"M11.371 104.098h8.07c3.934 0 5.836 1.933 5.836 5.035c0 2.336-1.066 3.77-3.234 4.27c2.832.464 4.27 2.03 4.27 4.765c0 3.07-2.07 5.203-6.403 5.203h-8.539zm2.668 2.504v5.734h5.07c2.5 0 3.536-1.137 3.536-3.004s-1.102-2.766-3.536-2.766h-5.07zm0 8.101v6h6.004c2.531 0 3.668-.898 3.668-2.832c0-2.07-1.102-3.168-3.734-3.168zm25.242 6.031c-.933 1.934-2.699 2.934-4.968 2.934c-3.899 0-5.868-3.3-5.868-7.633c0-4.137 2.067-7.637 6.168-7.637c2.133 0 3.801.97 4.668 2.868v-2.567h2.535v14.672h-2.535zm-4.265.567c2.265 0 4.265-1.434 4.265-4.7v-1.167c0-3.266-1.832-4.7-4-4.7c-2.836 0-4.3 1.868-4.3 5.266c0 3.535 1.398 5.3 4.035 5.3zm23.074 2.07h-2.535V114.5c0-2.633-1.067-3.8-3.47-3.8c-2.331 0-3.968 1.566-3.968 4.534v8.168h-2.531v-14.668h2.531v2.399c.934-1.735 2.668-2.7 4.637-2.7c2.5 0 4.203 1.266 4.934 3.567c.835-2.266 2.8-3.566 5.238-3.566c3.3 0 5.101 2.234 5.101 6.367v8.601h-2.535v-8.168c0-3.035-1.066-4.535-3.469-4.535c-2.332 0-3.968 1.567-3.968 4.535v8.137zm16.004-2.601v2.566h-2.531V102.53h2.53v8.77c.934-1.934 2.704-2.934 4.97-2.934c3.902 0 5.87 3.301 5.87 7.637c0 4.133-2.07 7.633-6.167 7.633c-2.137.035-3.805-.934-4.672-2.867zm4.27-10.036c-2.266 0-4.27 1.434-4.27 4.7v1.168c0 3.27 1.836 4.703 4.004 4.703c2.832 0 4.3-1.868 4.3-5.27c0-3.535-1.398-5.3-4.035-5.3zM86.965 116c0-4.398 2.57-7.602 6.972-7.602c4.368 0 6.934 3.204 6.934 7.602c0 4.402-2.566 7.668-6.933 7.668c-4.372 0-6.973-3.266-6.973-7.668m2.469 0c0 2.8 1.367 5.3 4.535 5.3c3.101 0 4.469-2.53 4.469-5.3c0-2.766-1.333-5.266-4.47-5.266c-3.132 0-4.534 2.465-4.534 5.266m13.507 0c0-4.398 2.567-7.602 6.97-7.602c4.366 0 6.933 3.204 6.933 7.602c0 4.402-2.567 7.668-6.934 7.668c-4.402 0-6.969-3.266-6.969-7.668m2.465 0c0 2.8 1.367 5.3 4.535 5.3c3.102 0 4.47-2.53 4.47-5.3c0-2.766-1.333-5.266-4.47-5.266c-3.168 0-4.535 2.465-4.535 5.266m0 0\\\"/>\"\n\t\t},\n\t\t\"bash\": {\n\t\t\t\"body\": \"<path fill=\\\"none\\\" d=\\\"M4.24 4.24h119.53v119.53H4.24z\\\"/><path fill=\\\"#293138\\\" d=\\\"M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2c2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96M79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42c-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6c.06-.06.12-.1.18-.13c.11-.06.22-.07.31-.03c1.14.38 2.59.2 3.99-.5c1.78-.9 2.97-2.72 2.95-4.52c-.02-1.64-.9-2.31-3.05-2.33c-2.74.01-5.3-.53-5.34-4.57c-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44c.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.77.77 0 0 1-.19.14c-.1.05-.19.06-.28.05c-.49-.11-1.65-.36-3.48.56c-1.92.97-2.59 2.64-2.58 3.88c.02 1.48.77 1.93 3.39 1.97c3.49.06 4.99 1.58 5.03 5.09c.05 3.44-1.79 7.15-4.61 9.41m26.34-60.5l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9c-.65.11-1.32.19-1.98.19c-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63c-1.27-2.67-4.09-3.39-7.38-1.47\\\"/><path fill=\\\"#4FA847\\\" d=\\\"m99.12 90.73l-9.4 5.62c-.25.15-.43.31-.43.61v2.46c0 .3.2.43.45.28l9.54-5.8c.25-.15.29-.42.29-.72v-2.17c0-.3-.2-.42-.45-.28\\\"/>\"\n\t\t},\n\t\t\"beats\": {\n\t\t\t\"body\": \"<path fill=\\\"#07c\\\" d=\\\"M93.352 54.215A39.83 39.83 0 0 0 96 40C96 17.906 78.094 0 56 0H12v48h60c7.86 0 15.168 2.3 21.352 6.215\\\"/><path fill=\\\"#00bfb3\\\" d=\\\"M102.809 62.496C94.399 79.922 76.609 92 56 92H12v36h60c22.09 0 40-17.914 40-40a39.828 39.828 0 0 0-9.191-25.512\\\"/><path fill=\\\"#343741\\\" d=\\\"M93.352 54.215A39.793 39.793 0 0 0 72 48H12v32h44c17.078 0 31.613-10.719 37.352-25.785\\\"/>\"\n\t\t},\n\t\t\"behance\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconBehance0\\\" x1=\\\"64\\\" x2=\\\"64\\\" y1=\\\"2.16\\\" y2=\\\"125.84\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#005cff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0047ad\\\"/></linearGradient></defs><rect width=\\\"123.68\\\" height=\\\"123.67\\\" x=\\\"2.16\\\" y=\\\"2.16\\\" fill=\\\"url(#deviconBehance0)\\\" rx=\\\"14.59\\\" ry=\\\"14.59\\\"/><path fill=\\\"#fff\\\" d=\\\"M52.63 60.28s10.5-.78 10.5-13.09s-8.59-18.32-19.47-18.32H7.86v68.8h35.8s21.85.69 21.85-20.31c0 0 .96-17.08-12.88-17.08m-29-19.18h20s4.87 0 4.87 7.16s-2.86 8.2-6.11 8.2H23.64zm19.1 44.34H23.64V67.06h20s7.25-.1 7.25 9.45c.02 7.95-5.28 8.85-8.15 8.93zm51.93-39.06c-26.46 0-26.43 26.43-26.43 26.43s-1.82 26.3 26.43 26.3c0 0 23.54 1.34 23.54-18.29h-12.1s.4 7.4-11 7.4c0 0-12.11.81-12.11-12h35.65s3.87-29.84-23.98-29.84m10.76 20.68h-22.6s1.48-10.6 12.11-10.6s10.49 10.6 10.49 10.6M79.86 32.93h28.38v8.47H79.86z\\\"/>\"\n\t\t},\n\t\t\"behance-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0071e0\\\" d=\\\"M12.7 52.5a11.13 11.13 0 0 1 2.93.33a6.35 6.35 0 0 1 2.28.89a3.76 3.76 0 0 1 1.46 1.71a6.46 6.46 0 0 1 .49 2.6a4.54 4.54 0 0 1-.86 2.84a5.88 5.88 0 0 1-2.28 1.87a5.44 5.44 0 0 1 3.09 2.11a6.4 6.4 0 0 1 1.06 3.58a6.48 6.48 0 0 1-.65 2.93a5.41 5.41 0 0 1-1.79 2a8.42 8.42 0 0 1-2.6 1.14a12.09 12.09 0 0 1-2.93.41H2.06V52.5zm-.65 9.1a3.7 3.7 0 0 0 2.2-.6a2.37 2.37 0 0 0 .81-2a3.09 3.09 0 0 0-.24-1.3a2.31 2.31 0 0 0-.73-.81A4.08 4.08 0 0 0 13 56.4a6.57 6.57 0 0 0-1.3-.08H7v5.28zm.24 9.59a7.16 7.16 0 0 0 1.39-.19a2.85 2.85 0 0 0 1.14-.49a2.9 2.9 0 0 0 .81-.89a3.88 3.88 0 0 0 .37-1.43a3.13 3.13 0 0 0-1-2.52a4.29 4.29 0 0 0-2.6-.73H7v6.26zM28 71.11a4 4 0 0 0 2.93 1a4.44 4.44 0 0 0 2.36-.65A3.25 3.25 0 0 0 34.48 70h4a7.93 7.93 0 0 1-2.93 4.23a8.68 8.68 0 0 1-4.71 1.3a9.56 9.56 0 0 1-3.49-.65a6.49 6.49 0 0 1-2.6-1.79a6.45 6.45 0 0 1-1.63-2.68a9.56 9.56 0 0 1-.57-3.49a9.41 9.41 0 0 1 .57-3.41a8.76 8.76 0 0 1 1.71-2.76a8.25 8.25 0 0 1 2.6-1.79a9.12 9.12 0 0 1 3.41-.65a7.58 7.58 0 0 1 3.66.81a6.6 6.6 0 0 1 2.5 2.16a9.85 9.85 0 0 1 1.46 3.09a17.05 17.05 0 0 1 .16 3.58H26.84A4.67 4.67 0 0 0 28 71.11m5.12-8.53a3.52 3.52 0 0 0-2.52-.89a3.87 3.87 0 0 0-1.79.41a4.27 4.27 0 0 0-1.14.89a2.17 2.17 0 0 0-.57 1.14a5.59 5.59 0 0 0-.16 1.06h7.31a4.31 4.31 0 0 0-1.15-2.61zM45 52.5V61a4.78 4.78 0 0 1 2.19-2a6.15 6.15 0 0 1 2.6-.65a7.31 7.31 0 0 1 2.93.49a4.41 4.41 0 0 1 1.79 1.38a5.54 5.54 0 0 1 .89 2.11a14 14 0 0 1 .3 2.67v10h-4.47v-9.17a5.69 5.69 0 0 0-.65-3a2.38 2.38 0 0 0-2.19-1a3.12 3.12 0 0 0-2.6 1.06a6 6 0 0 0-.79 3.59V75h-4.5V52.5zm13.95 8.61a6 6 0 0 1 1.79-1.71a7.94 7.94 0 0 1 2.44-.89a15 15 0 0 1 2.68-.24c.81 0 1.63.08 2.52.16a6.74 6.74 0 0 1 2.28.65a4.75 4.75 0 0 1 1.71 1.38a4.05 4.05 0 0 1 .63 2.36v8.53a17.16 17.16 0 0 0 .16 2.11a3.41 3.41 0 0 0 .58 1.54h-4.55a2 2 0 0 1-.33-.73a2.76 2.76 0 0 1-.08-.81A6.23 6.23 0 0 1 66.26 75a9.09 9.09 0 0 1-2.93.41a6.53 6.53 0 0 1-2.19-.33a5.28 5.28 0 0 1-1.79-.89a4.68 4.68 0 0 1-1.22-1.54a5.87 5.87 0 0 1-.41-2.19a4.72 4.72 0 0 1 .49-2.28a5.32 5.32 0 0 1 1.22-1.46a6 6 0 0 1 1.79-.81a15 15 0 0 1 2-.41l2-.24q1-.12 1.71-.24a4.25 4.25 0 0 0 1.22-.57a1.16 1.16 0 0 0 .41-1.06a2.15 2.15 0 0 0-.24-1.14a2.47 2.47 0 0 0-.65-.65a2.91 2.91 0 0 0-.89-.33a5 5 0 0 0-1.14-.08a3 3 0 0 0-2 .57a2.73 2.73 0 0 0-.89 1.87h-4.53a4.85 4.85 0 0 1 .73-2.52m8.86 6.34c-.24.08-.57.16-.89.24s-.65.08-1.06.16s-.73.08-1.06.16l-1 .24a1.91 1.91 0 0 0-.81.41a2.19 2.19 0 0 0-.57.65a1.58 1.58 0 0 0-.24 1.06a1.73 1.73 0 0 0 .24 1A2.19 2.19 0 0 0 63 72a2.91 2.91 0 0 0 .89.33a4.29 4.29 0 0 0 1.06.08A4.48 4.48 0 0 0 67 72a3.27 3.27 0 0 0 1-1.05a2.42 2.42 0 0 0 .41-1.22a4.66 4.66 0 0 0 .08-1V67a3.29 3.29 0 0 1-.68.45m11.94-8.77V61h.08a4.78 4.78 0 0 1 2.19-2a6.86 6.86 0 0 1 2.76-.65a7.31 7.31 0 0 1 2.93.49a3.93 3.93 0 0 1 1.79 1.38a7.26 7.26 0 0 1 1 2.11a14 14 0 0 1 .22 2.67v10h-4.47v-9.17a5.69 5.69 0 0 0-.65-3a2.48 2.48 0 0 0-2.28-1.06A3.25 3.25 0 0 0 80.65 63a6 6 0 0 0-.81 3.58v8.53h-4.48V58.68zm20.97 2.92a3.09 3.09 0 0 0-1.79.49a3.76 3.76 0 0 0-1.22 1.3a5.33 5.33 0 0 0-.65 1.71a7.28 7.28 0 0 0-.16 1.9a13.29 13.29 0 0 0 .16 1.79a4.87 4.87 0 0 0 .65 1.63a4.08 4.08 0 0 0 1.14 1.22a3.09 3.09 0 0 0 1.79.49a3.66 3.66 0 0 0 2.52-.89a3.77 3.77 0 0 0 1.06-2.44h4.31a7.5 7.5 0 0 1-2.52 5a8.16 8.16 0 0 1-5.36 1.71a8.7 8.7 0 0 1-3.33-.65a7.25 7.25 0 0 1-2.6-1.71A8 8 0 0 1 93 70.46a9 9 0 0 1-.57-3.33a9.56 9.56 0 0 1 .57-3.5a9 9 0 0 1 1.63-2.84a8.49 8.49 0 0 1 2.6-1.87a9.56 9.56 0 0 1 3.49-.65a10.32 10.32 0 0 1 2.76.41a7.07 7.07 0 0 1 2.36 1.14a5 5 0 0 1 1.71 2a6.9 6.9 0 0 1 .73 2.76h-4.39a2.84 2.84 0 0 0-3.17-2.98m-74.77-7.56h9.1v2.19h-9.1zm89.32 17.07a4.1 4.1 0 0 0 2.93 1a4.44 4.44 0 0 0 2.36-.65a3.25 3.25 0 0 0 1.21-1.46h3.9a7.93 7.93 0 0 1-2.93 4.23A8.68 8.68 0 0 1 118 75.5a9.56 9.56 0 0 1-3.49-.65a7.48 7.48 0 0 1-4.23-4.47a9.56 9.56 0 0 1-.57-3.49a9.41 9.41 0 0 1 .57-3.41a8.76 8.76 0 0 1 1.72-2.77a8.25 8.25 0 0 1 2.6-1.79a9.45 9.45 0 0 1 3.41-.65a7.05 7.05 0 0 1 3.58.81a6.6 6.6 0 0 1 2.52 2.19a9.85 9.85 0 0 1 1.46 3.09a10.79 10.79 0 0 1 .33 3.66h-11.77a4.61 4.61 0 0 0 1.14 3.09m5.2-8.53a3.52 3.52 0 0 0-2.52-.89a3.87 3.87 0 0 0-1.79.41a3.28 3.28 0 0 0-1.16.9a3 3 0 0 0-.57 1.14a5.59 5.59 0 0 0-.16 1.06h7.31a5.55 5.55 0 0 0-1.14-2.6z\\\"/>\"\n\t\t},\n\t\t\"bitbucket\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconBitbucket0\\\" x1=\\\"28.593\\\" x2=\\\"16.672\\\" y1=\\\"14.226\\\" y2=\\\"23.532\\\" gradientTransform=\\\"scale(4)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".176\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"#2684ff\\\" d=\\\"M19.082 20c-1.918 0-3.355 1.758-3.039 3.516l12.95 79.289c.32 2.078 2.077 3.515 4.155 3.515h62.66c1.442 0 2.72-1.12 3.04-2.558l13.109-80.086c.316-1.918-1.121-3.516-3.039-3.516zM74.07 77.227H54.09l-5.278-28.293h30.215zm0 0\\\"/><path fill=\\\"url(#deviconBitbucket0)\\\" d=\\\"M107.64 48.934H78.868L74.07 77.227H54.09l-23.5 27.972s1.12.961 2.719.961h62.66c1.441 0 2.719-1.12 3.039-2.558zm0 0\\\"/>\"\n\t\t},\n\t\t\"bitbucket-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconBitbucketWordmark0\\\" x1=\\\"28.593\\\" x2=\\\"16.672\\\" y1=\\\"14.226\\\" y2=\\\"23.532\\\" gradientTransform=\\\"matrix(4 0 0 4 .255 -8.676)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".176\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"#2684ff\\\" d=\\\"M19.336 11.324c-1.918 0-3.356 1.758-3.035 3.516l12.945 79.285c.32 2.078 2.078 3.52 4.156 3.52h62.664c1.438 0 2.715-1.122 3.036-2.56L112.21 15c.32-1.918-1.121-3.516-3.04-3.516zm54.988 57.227h-19.98L49.07 40.258h30.211zm0 0\\\"/><path fill=\\\"url(#deviconBitbucketWordmark0)\\\" d=\\\"M107.895 40.258H79.12L74.324 68.55h-19.98L30.848 96.523s1.117.961 2.715.961h62.664c1.437 0 2.714-1.12 3.035-2.558zm0 0\\\"/><path fill=\\\"#253858\\\" d=\\\"M3.523 102.59h8.368c4.078 0 6.046 1.941 6.046 5.047c0 2.34-1.105 3.777-3.351 4.281c2.937.465 4.422 2.039 4.422 4.777c0 3.075-2.14 5.215-6.633 5.215H3.523zm2.766 8.258h5.254c2.594 0 3.664-1.137 3.664-3.008s-1.14-2.778-3.664-2.778H6.289zm0 2.37v6.016h6.223c2.625 0 3.8-.902 3.8-2.84c0-2.07-1.14-3.175-3.87-3.175zm17.215-11.663c1.07 0 1.832.636 1.832 1.773c0 1.102-.762 1.77-1.832 1.77c-1.074 0-1.832-.637-1.832-1.77c0-1.137.758-1.773 1.832-1.773m-1.352 5.648h2.63v14.707h-2.63zm12.582 12.332c.621 0 1.176-.133 1.66-.2v2.442c-.449.133-.968.235-1.761.235c-3.25 0-4.84-1.84-4.84-4.582v-7.887H27.34v-2.34h2.453v-3.11h2.559v3.11h4.043v2.34h-4.043v7.789c0 1.3.793 2.203 2.382 2.203m7.606-.23v2.57h-2.63v-20.82h2.63v8.789c.965-1.938 2.797-2.942 5.148-2.942c4.043 0 6.082 3.309 6.082 7.657c0 4.144-2.14 7.652-6.394 7.652c-2.211 0-3.903-.969-4.836-2.906m4.457-10.028c-2.352 0-4.422 1.438-4.422 4.711v1.172c0 3.274 1.898 4.711 4.145 4.711c2.937 0 4.46-1.871 4.46-5.281c-.035-3.574-1.488-5.313-4.183-5.313m9.503-2.074h2.63v8.89c0 2.641 1.105 3.813 3.593 3.813c2.418 0 4.114-1.574 4.114-4.547v-8.156h2.625v14.707h-2.625v-2.406c-.969 1.738-2.766 2.707-4.805 2.707c-3.492 0-5.496-2.34-5.496-6.383v-8.625zm27.618 14.305c-.898.469-2.316.668-3.7.668c-5.425 0-7.948-3.172-7.948-7.688c0-4.445 2.523-7.617 7.949-7.617c1.383 0 2.418.164 3.629.7v2.34c-.97-.434-2.004-.704-3.422-.704c-3.942 0-5.563 2.41-5.563 5.281c0 2.875 1.657 5.282 5.633 5.282c1.555 0 2.524-.2 3.457-.536v2.274zm2.972.402v-20.855h2.626v13.035l6.53-6.887h3.423l-7.153 7.219l7.465 7.488H96.22l-6.703-6.887v6.887zm21.532.3c-5.703 0-8.192-3.175-8.192-7.687c0-4.445 2.56-7.62 7.188-7.62c4.703 0 6.566 3.14 6.566 7.62v1.137h-11.093c.382 2.508 2.039 4.11 5.632 4.11c1.766 0 3.25-.332 4.633-.801v2.34c-1.242.668-3.18.902-4.734.902zm-5.567-8.722h8.504c-.136-2.742-1.418-4.281-4.043-4.281c-2.765 0-4.183 1.738-4.46 4.281zm20.255 6.047c.624 0 1.175-.133 1.66-.2v2.442c-.45.133-.97.235-1.762.235c-3.25 0-4.84-1.84-4.84-4.582v-7.887h-2.453v-2.34h2.453v-3.11h2.559v3.11h4.043v2.34h-4.043v7.789c0 1.3.793 2.203 2.382 2.203zm0 0\\\"/>\"\n\t\t},\n\t\t\"blazor\": {\n\t\t\t\"body\": \"<path fill=\\\"#5c2d91\\\" d=\\\"M127.352 43.199c-5.727 35.891-36.562 62.379-72.902 62.633a54.053 54.053 0 0 1-10.656-.648c-15.18-2.574-26.496-15.402-27.16-30.785c.125-17.336 14.148-31.359 31.488-31.484S79.68 56.617 80.047 73.953c.129 5.254-2.145 9.871-6.824 10c-5 0-7.344-3.57-7.344-8.379V62.215a8.183 8.183 0 0 0-8.117-8.191H46.559c-8.977-.062-16.832 6.012-19.035 14.715s1.824 17.781 9.75 21.996a19.5 19.5 0 0 0 23.688-4.223l.391-.582l.391.645a13.795 13.795 0 0 0 11.762 5.602A15.54 15.54 0 0 0 87.902 75.93a42.175 42.175 0 0 0-1.16-10.328a39.57 39.57 0 0 0-42.969-30.926C23.645 36.879 8.43 53.922 8.512 74.168c.262 21.543 17.512 39.023 39.047 39.566c0 0 2.93.266 6.242.195a84.49 84.49 0 0 0 45.289-13.516c.191-.125.383.129.254.328a66.49 66.49 0 0 1-51.785 21.18A46.734 46.734 0 0 1 0 73.977a48.37 48.37 0 0 1 19.426-38.73a47.38 47.38 0 0 1 27.941-9.223h15.031a42.29 42.29 0 0 0 31.203-13.777a.59.59 0 0 1 .68-.141a.598.598 0 0 1 .359.598a42.378 42.378 0 0 1-6.562 18.969a.583.583 0 0 0 .051.633a.58.58 0 0 0 .598.215a45.45 45.45 0 0 0 31.602-26.055a.8.8 0 0 1 1.367 0a57.58 57.58 0 0 1 5.656 36.734zM46.52 61.824c-6.422 0-11.633 5.207-11.633 11.633A11.64 11.64 0 0 0 46.52 85.09c6.426 0 11.633-5.211 11.633-11.633V62.602a.84.84 0 0 0-.801-.801zm0 0\\\"/>\"\n\t\t},\n\t\t\"blender\": {\n\t\t\t\"body\": \"<path fill=\\\"#235785\\\" d=\\\"M66.332 70.032c.24-4.242 2.327-7.987 5.485-10.634c3.094-2.602 7.248-4.193 11.809-4.193c4.537 0 8.69 1.59 11.78 4.193c3.163 2.647 5.237 6.392 5.485 10.634c.24 4.35-1.523 8.41-4.605 11.417c-3.158 3.05-7.627 4.977-12.66 4.977c-5.037 0-9.526-1.915-12.664-4.977c-3.094-3.006-4.853-7.044-4.606-11.397zm0 0\\\"/><path fill=\\\"#e87500\\\" d=\\\"M39.245 79.002c.028 1.66.564 4.89 1.36 7.404c1.682 5.336 4.537 10.273 8.49 14.599c4.062 4.465 9.074 8.055 14.85 10.61c6.073 2.67 12.665 4.037 19.505 4.037c6.84-.009 13.432-1.4 19.504-4.102c5.776-2.582 10.79-6.168 14.85-10.657c3.974-4.374 6.82-9.307 8.491-14.647a37 37 0 0 0 1.595-8.163c.208-2.69.12-5.405-.263-8.12a37.535 37.535 0 0 0-5.417-14.714c-2.574-4.15-5.916-7.76-9.89-10.813l.012-.004l-39.955-30.506c-.036-.028-.068-.056-.104-.08c-2.619-2.002-7.044-1.994-9.91.008c-2.914 2.031-3.25 5.385-.656 7.496l-.012.008l16.682 13.484l-50.789.051h-.068c-4.197.004-8.239 2.739-9.03 6.213c-.82 3.521 2.035 6.46 6.412 6.46l-.008.016l25.736-.048l-46.05 34.99c-.056.044-.12.088-.176.132C.069 85.95-1.33 91.446 1.4 94.9c2.778 3.522 8.666 3.546 13.047.02l25.058-20.41s-.368 2.758-.336 4.397zm64.56 9.219c-5.168 5.228-12.416 8.21-20.227 8.21c-7.831.012-15.079-2.918-20.248-8.142c-2.526-2.559-4.377-5.473-5.528-8.591a22.202 22.202 0 0 1-1.271-9.602a22.446 22.446 0 0 1 2.778-9.039c1.507-2.714 3.59-5.18 6.14-7.267c5.033-4.058 11.42-6.28 18.1-6.28c6.709-.008 13.097 2.174 18.13 6.236c2.55 2.075 4.625 4.529 6.14 7.243a22.302 22.302 0 0 1 2.774 9.043a22.313 22.313 0 0 1-1.271 9.598c-1.147 3.142-3.002 6.056-5.533 8.615zm0 0\\\"/>\"\n\t\t},\n\t\t\"blender-wordmark\": {\n\t\t\t\"body\": \"<defs><symbol id=\\\"deviconBlenderWordmark0\\\"><path d=\\\"M1.297-1.313h.125c.082 0 .144-.019.187-.062a.237.237 0 0 0 .063-.172c0-.082-.024-.14-.063-.172c-.043-.031-.109-.047-.203-.047h-.11zM2-1.546a.39.39 0 0 1-.266.39l.422.673h-.375l-.328-.579h-.156v.579H.969v-1.532h.453c.195 0 .344.043.437.125c.094.075.141.188.141.344M.172-1.25a1.284 1.284 0 0 1 .64-1.11a1.35 1.35 0 0 1 .657-.171c.238 0 .457.058.656.172c.195.117.352.273.469.468c.125.2.187.414.187.641c0 .23-.058.445-.172.64a1.43 1.43 0 0 1-.484.47a1.27 1.27 0 0 1-.656.171c-.242 0-.461-.054-.657-.172a1.23 1.23 0 0 1-.468-.468a1.222 1.222 0 0 1-.172-.641m.219 0c0 .2.046.383.14.547c.094.156.223.289.39.39c.177.094.36.141.548.141a1.107 1.107 0 0 0 .953-.531c.094-.164.14-.348.14-.547c0-.188-.054-.363-.156-.531a1.042 1.042 0 0 0-.39-.39a1.045 1.045 0 0 0-1.079-.017a1.113 1.113 0 0 0-.406.391c-.094.168-.14.352-.14.547m0 0\\\"/></symbol></defs><path fill=\\\"#235785\\\" d=\\\"M20.74 65.962c.075-1.296.727-2.441 1.707-3.25c.96-.796 2.256-1.285 3.667-1.285c1.41 0 2.706.489 3.667 1.285c.98.809 1.631 1.954 1.707 3.25c.07 1.332-.475 2.57-1.439 3.489c-.98.933-2.374 1.52-3.935 1.52c-1.56 0-2.96-.587-3.94-1.52c-.96-.918-1.509-2.157-1.434-3.489m0 0\\\"/><path fill=\\\"#e87500\\\" d=\\\"M12.186 68.591c.012.508.178 1.492.423 2.266a11.935 11.935 0 0 0 2.643 4.469c1.264 1.367 2.821 2.465 4.619 3.246a15.173 15.173 0 0 0 6.065 1.23a15.178 15.178 0 0 0 6.065-1.254a13.744 13.744 0 0 0 4.62-3.257c1.228-1.336 2.113-2.848 2.639-4.477c.26-.824.426-1.66.493-2.5a11.313 11.313 0 0 0-1.766-6.988a12.655 12.655 0 0 0-3.07-3.313h.004l-12.43-9.332c-.012-.008-.02-.02-.032-.023c-.818-.614-2.189-.614-3.086 0c-.905.62-1.007 1.648-.201 2.297h-.004l5.184 4.125l-15.801.015h-.02c-1.308 0-2.564.84-2.81 1.899c-.256 1.078.629 1.972 1.988 1.976v.008l8.01-.016L1.426 69.69a.28.28 0 0 0-.056.039c-1.347 1.008-1.786 2.687-.936 3.75c.861 1.078 2.695 1.082 4.058.004l7.8-6.238s-.115.84-.107 1.347zm20.044 2.82c-1.608 1.602-3.856 2.508-6.294 2.516c-2.438.004-4.686-.898-6.294-2.496a7.388 7.388 0 0 1-1.719-2.629a6.683 6.683 0 0 1-.391-2.937a6.77 6.77 0 0 1 .861-2.766a7.625 7.625 0 0 1 1.909-2.223c1.564-1.246 3.552-1.921 5.634-1.921c2.082-.004 4.07.664 5.63 1.906a7.612 7.612 0 0 1 1.913 2.215c.478.847.774 1.78.861 2.765a6.62 6.62 0 0 1-.395 2.934a7.3 7.3 0 0 1-1.715 2.637zm0 0\\\"/><path fill=\\\"#235785\\\" d=\\\"M105.897 65.943c.122-1.313 1.158-2.14 2.738-2.14s2.616.827 2.738 2.14zm5.314 3.23c-.407.973-1.359 1.547-2.659 1.547c-1.62 0-2.714-.992-2.758-2.558h9.333V67.7c0-3.918-2.355-6.125-6.575-6.125c-4.093 0-6.57 2.226-6.57 5.715c0 3.507 2.516 5.73 6.57 5.73c2.438 0 4.323-.816 5.488-2.25zm-46.719-3.226c.123-1.309 1.158-2.137 2.742-2.137c1.58 0 2.612.828 2.734 2.137zm5.314 3.234c-.403.973-1.359 1.547-2.659 1.547c-1.62 0-2.714-.992-2.758-2.559h9.33v-.457c0-3.925-2.352-6.129-6.572-6.129c-4.097 0-6.567 2.227-6.567 5.715c0 3.508 2.513 5.727 6.567 5.727c2.434 0 4.323-.813 5.492-2.246zM56.38 59.208h3.363V72.67H56.38zm18.176 3.579h3.382v.8c1.201-1.25 2.64-1.882 4.26-1.882c1.868 0 3.283.632 4.014 1.707c.612.89.652 1.96.652 3.37v5.887h-3.39v-5.171c0-2.149-.443-3.137-2.367-3.137c-1.948 0-3.169 1.133-3.169 3.039v5.27h-3.382zm23.209 4.671c0 1.844-1.26 3.051-3.208 3.051c-1.948 0-3.209-1.168-3.209-3.031c0-1.89 1.241-3.055 3.209-3.055c1.948 0 3.208 1.188 3.208 3.035m0-4.226c-.857-.895-2.094-1.387-3.817-1.387c-3.71 0-6.246 2.238-6.246 5.594c0 3.289 2.516 5.59 6.187 5.59c1.683 0 2.916-.418 3.876-1.352v.992h3.386V58.353l-3.386.855zm-49.078 1.191c1.968 0 3.205 1.168 3.205 3.059c0 1.863-1.257 3.027-3.205 3.027c-1.948 0-3.204-1.207-3.204-3.05c0-1.848 1.256-3.036 3.204-3.036m-3.204-5.215l-3.386-.851v14.316h3.386v-.992c.952.934 2.189 1.348 3.876 1.348c3.67 0 6.184-2.301 6.184-5.59c0-3.356-2.537-5.594-6.247-5.594c-1.723 0-2.96.492-3.813 1.39zm70.477 13.465v-9.886h3.387v.613c1.015-1.195 2.086-1.79 3.307-1.79c.245 0 .55.04.952.079v2.816c-.324-.039-.687-.039-1.074-.039c-1.968 0-3.185 1.27-3.185 3.426v4.781zm0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" x=\\\"124.496\\\" y=\\\"15.002\\\" fill=\\\"#216191\\\" href=\\\"#deviconBlenderWordmark0\\\" transform=\\\"matrix(1.01151 0 0 1 -.743 47.138)\\\"/>\"\n\t\t},\n\t\t\"bootstrap\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconBootstrap0\\\" x1=\\\"76.079\\\" x2=\\\"523.48\\\" y1=\\\"10.798\\\" y2=\\\"365.95\\\" gradientTransform=\\\"translate(1.11 14.613)scale(.24566)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#9013fe\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#6610f2\\\"/></linearGradient><linearGradient id=\\\"deviconBootstrap1\\\" x1=\\\"193.51\\\" x2=\\\"293.51\\\" y1=\\\"109.74\\\" y2=\\\"278.87\\\" gradientTransform=\\\"translate(0 52)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f1e5fc\\\"/></linearGradient><filter id=\\\"deviconBootstrap2\\\" width=\\\"197\\\" height=\\\"249\\\" x=\\\"161.9\\\" y=\\\"135.46\\\" color-interpolation-filters=\\\"sRGB\\\" filterUnits=\\\"userSpaceOnUse\\\"><feFlood flood-opacity=\\\"0\\\" result=\\\"BackgroundImageFix\\\"/><feColorMatrix in=\\\"SourceAlpha\\\" values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\\\"/><feOffset dy=\\\"4\\\"/><feGaussianBlur stdDeviation=\\\"8\\\"/><feColorMatrix values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0\\\"/><feBlend in2=\\\"BackgroundImageFix\\\" result=\\\"effect1_dropShadow\\\"/><feBlend in=\\\"SourceGraphic\\\" in2=\\\"effect1_dropShadow\\\" result=\\\"shape\\\"/></filter></defs><path fill=\\\"url(#deviconBootstrap0)\\\" d=\\\"M14.985 27.712c-.237-6.815 5.072-13.099 12.249-13.099h73.54c7.177 0 12.486 6.284 12.249 13.099c-.228 6.546.068 15.026 2.202 21.94c2.141 6.936 5.751 11.319 11.664 11.883v6.387c-5.913.564-9.523 4.947-11.664 11.883c-2.134 6.914-2.43 15.394-2.202 21.94c.237 6.815-5.072 13.098-12.249 13.098h-73.54c-7.177 0-12.486-6.284-12.249-13.098c.228-6.546-.068-15.026-2.203-21.94c-2.14-6.935-5.76-11.319-11.673-11.883v-6.387c5.913-.563 9.533-4.947 11.673-11.883c2.135-6.914 2.43-15.394 2.203-21.94\\\"/><path fill=\\\"url(#deviconBootstrap1)\\\" d=\\\"M267.1 364.46c47.297 0 75.798-23.158 75.798-61.355c0-28.873-20.336-49.776-50.532-53.085v-1.203c22.185-3.609 39.594-24.211 39.594-47.219c0-32.783-25.882-54.138-65.322-54.138h-88.74v217zm-54.692-189.48h45.911c24.958 0 39.131 11.128 39.131 31.279c0 21.505-16.484 33.535-46.372 33.535h-38.67zm0 161.96v-71.431h45.602c32.661 0 49.608 12.03 49.608 35.49c0 23.459-16.484 35.941-47.605 35.941z\\\" filter=\\\"url(#deviconBootstrap2)\\\" transform=\\\"translate(1.494 2.203)scale(.24566)\\\"/>\"\n\t\t},\n\t\t\"bootstrap-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"url(#deviconBootstrapWordmark0)\\\" d=\\\"M14.985 15.15c-.237-6.815 5.072-13.099 12.249-13.099h73.54c7.177 0 12.486 6.284 12.249 13.099c-.228 6.546.068 15.026 2.202 21.94c2.141 6.936 5.751 11.319 11.664 11.883v6.387c-5.913.563-9.523 4.947-11.664 11.883c-2.134 6.914-2.43 15.394-2.202 21.94c.237 6.815-5.072 13.098-12.249 13.098h-73.54c-7.177 0-12.486-6.284-12.249-13.098c.228-6.546-.068-15.026-2.203-21.94c-2.14-6.935-5.76-11.319-11.673-11.883v-6.387c5.913-.563 9.533-4.947 11.673-11.883c2.135-6.914 2.43-15.394 2.203-21.94\\\"/><g filter=\\\"url(#deviconBootstrapWordmark2)\\\"><path fill=\\\"url(#deviconBootstrapWordmark1)\\\" d=\\\"M67.11 79.174c11.619 0 18.62-5.689 18.62-15.072c0-7.093-4.995-12.228-12.413-13.041v-.296c5.45-.886 9.726-5.947 9.726-11.6c0-8.053-6.358-13.299-16.047-13.299h-21.8v53.308zM53.674 32.627h11.279c6.13 0 9.613 2.733 9.613 7.684c0 5.282-4.05 8.238-11.392 8.238h-9.5zm0 39.787V54.866h11.203c8.023 0 12.186 2.955 12.186 8.718s-4.049 8.83-11.694 8.83z\\\"/><path fill=\\\"#fff\\\" d=\\\"M67.11 79.174c11.619 0 18.62-5.689 18.62-15.072c0-7.093-4.995-12.228-12.413-13.041v-.296c5.45-.886 9.726-5.947 9.726-11.6c0-8.053-6.358-13.299-16.047-13.299h-21.8v53.308zM53.674 32.627h11.279c6.13 0 9.613 2.733 9.613 7.684c0 5.282-4.05 8.238-11.392 8.238h-9.5zm0 39.787V54.866h11.203c8.023 0 12.186 2.955 12.186 8.718s-4.049 8.83-11.694 8.83z\\\"/></g><path fill=\\\"#7952B3\\\" d=\\\"M11.398 121.43v-17.738h5.047c1.533 0 2.75.375 3.649 1.126c.899.75 1.348 1.727 1.348 2.931c0 1.007-.272 1.881-.816 2.623c-.545.742-1.295 1.27-2.252 1.583v.05c1.196.14 2.153.593 2.87 1.36c.717.759 1.076 1.748 1.076 2.969c0 1.517-.544 2.746-1.632 3.686c-1.089.94-2.462 1.41-4.12 1.41zm2.078-15.858v5.727h2.128c1.138 0 2.033-.272 2.684-.816c.651-.553.977-1.329.977-2.326c0-1.723-1.134-2.585-3.402-2.585zm0 7.595v6.383h2.82c1.22 0 2.165-.289 2.833-.866c.676-.577 1.014-1.369 1.014-2.375c0-2.095-1.427-3.142-4.28-3.142zm17.466 8.563c-1.872 0-3.369-.59-4.49-1.769c-1.113-1.187-1.67-2.758-1.67-4.713c0-2.127.581-3.789 1.744-4.985c1.163-1.195 2.734-1.793 4.713-1.793c1.888 0 3.36.581 4.416 1.744c1.063 1.163 1.595 2.775 1.595 4.836c0 2.021-.573 3.641-1.72 4.862c-1.137 1.212-2.667 1.818-4.588 1.818m.148-11.553c-1.303 0-2.333.445-3.092 1.336c-.759.882-1.138 2.102-1.138 3.661c0 1.501.383 2.685 1.15 3.55c.767.867 1.793 1.3 3.08 1.3c1.311 0 2.318-.425 3.019-1.275c.709-.849 1.063-2.057 1.063-3.624c0-1.583-.354-2.804-1.063-3.662c-.701-.857-1.708-1.286-3.019-1.286m14.696 11.553c-1.872 0-3.369-.59-4.49-1.769c-1.113-1.187-1.67-2.758-1.67-4.713c0-2.127.581-3.789 1.744-4.985c1.163-1.195 2.734-1.793 4.713-1.793c1.888 0 3.36.581 4.416 1.744c1.064 1.163 1.596 2.775 1.596 4.836c0 2.021-.573 3.641-1.72 4.862c-1.138 1.212-2.668 1.818-4.59 1.818Zm.148-11.553c-1.303 0-2.333.445-3.092 1.336c-.759.882-1.138 2.102-1.138 3.661c0 1.501.383 2.685 1.15 3.55c.767.867 1.793 1.3 3.08 1.3c1.311 0 2.318-.425 3.019-1.275c.709-.849 1.063-2.057 1.063-3.624c0-1.583-.354-2.804-1.063-3.662c-.701-.857-1.708-1.286-3.02-1.286ZM61.21 121.31c-.478.264-1.109.396-1.893.396c-2.218 0-3.327-1.237-3.327-3.711v-7.496h-2.177v-1.732h2.177v-3.092l2.029-.656v3.748h3.19v1.732h-3.19v7.137c0 .849.144 1.456.433 1.819c.288.363.766.544 1.434.544c.511 0 .953-.14 1.324-.42zm1.942-.34v-2.177c1.105.816 2.321 1.224 3.649 1.224c1.781 0 2.672-.593 2.672-1.78c0-.339-.078-.623-.235-.854a2.138 2.138 0 0 0-.619-.631a4.326 4.326 0 0 0-.915-.482a34.7 34.7 0 0 0-1.126-.458a16.416 16.416 0 0 1-1.484-.668a4.918 4.918 0 0 1-1.064-.767a3.059 3.059 0 0 1-.643-.977c-.14-.363-.21-.787-.21-1.274c0-.593.136-1.117.408-1.571a3.53 3.53 0 0 1 1.088-1.15a5.01 5.01 0 0 1 1.547-.706a6.94 6.94 0 0 1 1.806-.235c1.097 0 2.078.19 2.944.57v2.053c-.932-.611-2.004-.916-3.217-.916c-.38 0-.721.045-1.026.136a2.5 2.5 0 0 0-.792.36a1.735 1.735 0 0 0-.507.568a1.493 1.493 0 0 0-.173.718c0 .329.058.605.173.828c.123.223.3.421.532.594c.23.173.511.33.841.47c.33.14.705.293 1.126.458c.56.214 1.063.437 1.509.668a4.9 4.9 0 0 1 1.138.767c.313.28.552.606.717.977c.173.371.26.812.26 1.323c0 .627-.14 1.171-.42 1.633c-.273.462-.64.845-1.102 1.15a5.078 5.078 0 0 1-1.595.681a7.852 7.852 0 0 1-1.893.223c-1.303 0-2.433-.252-3.39-.755zm17.39.34c-.477.264-1.108.396-1.892.396c-2.218 0-3.327-1.237-3.327-3.711v-7.496h-2.177v-1.732h2.177v-3.092l2.029-.656v3.748h3.19v1.732h-3.19v7.137c0 .849.144 1.456.433 1.819c.288.363.766.544 1.434.544c.511 0 .953-.14 1.324-.42v1.731Zm9.316-10.49c-.355-.272-.866-.408-1.534-.408c-.866 0-1.592.408-2.177 1.224c-.577.817-.866 1.93-.866 3.34v6.457h-2.028v-12.666h2.028v2.61h.05c.289-.891.73-1.583 1.323-2.078c.593-.503 1.257-.755 1.992-.755c.527 0 .931.058 1.212.174zm11.271 10.61H99.1v-1.98h-.05c-.881 1.518-2.18 2.277-3.894 2.277c-1.262 0-2.252-.334-2.97-1.002c-.709-.668-1.063-1.555-1.063-2.66c0-2.367 1.393-3.743 4.18-4.13l3.798-.533c0-2.152-.87-3.228-2.61-3.228c-1.525 0-2.902.519-4.131 1.558v-2.078c1.245-.791 2.68-1.187 4.305-1.187c2.977 0 4.465 1.575 4.465 4.725zm-2.03-6.407l-3.054.42c-.94.132-1.65.367-2.128.705c-.478.33-.717.92-.717 1.769c0 .619.219 1.126.656 1.522c.445.387 1.035.58 1.769.58c1.006 0 1.835-.35 2.486-1.05c.66-.709.99-1.604.99-2.685l-.001-1.261Zm7.93 4.577h-.05v7.657h-2.028v-18.493h2.029v2.226h.049c.998-1.682 2.458-2.523 4.379-2.523c1.633 0 2.907.569 3.822 1.707c.915 1.129 1.373 2.647 1.373 4.552c0 2.119-.515 3.818-1.546 5.096c-1.031 1.27-2.441 1.905-4.23 1.905c-1.641 0-2.907-.709-3.798-2.128zm-.05-5.109v1.77c0 1.047.338 1.937 1.015 2.671c.685.726 1.55 1.089 2.597 1.089c1.229 0 2.19-.47 2.883-1.41c.7-.94 1.05-2.247 1.05-3.922c0-1.41-.325-2.515-.976-3.315c-.651-.8-1.534-1.2-2.647-1.2c-1.18 0-2.128.412-2.845 1.237c-.718.817-1.077 1.843-1.077 3.08\\\"/><defs><linearGradient id=\\\"deviconBootstrapWordmark0\\\" x1=\\\"19.8\\\" x2=\\\"129.708\\\" y1=\\\"4.704\\\" y2=\\\"91.95\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#9013FE\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#6610F2\\\"/></linearGradient><linearGradient id=\\\"deviconBootstrapWordmark1\\\" x1=\\\"49.032\\\" x2=\\\"73.598\\\" y1=\\\"29.374\\\" y2=\\\"70.922\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F1E5FC\\\"/></linearGradient><filter id=\\\"deviconBootstrapWordmark2\\\" width=\\\"48.641\\\" height=\\\"61.415\\\" x=\\\"41.143\\\" y=\\\"22.795\\\" color-interpolation-filters=\\\"sRGB\\\" filterUnits=\\\"userSpaceOnUse\\\"><feFlood flood-opacity=\\\"0\\\" result=\\\"BackgroundImageFix\\\"/><feColorMatrix in=\\\"SourceAlpha\\\" result=\\\"hardAlpha\\\" values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\\\"/><feOffset dy=\\\".983\\\"/><feGaussianBlur stdDeviation=\\\"1.965\\\"/><feColorMatrix values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0\\\"/><feBlend in2=\\\"BackgroundImageFix\\\" result=\\\"effect1_dropShadow_2_2\\\"/><feBlend in=\\\"SourceGraphic\\\" in2=\\\"effect1_dropShadow_2_2\\\" result=\\\"shape\\\"/></filter></defs>\"\n\t\t},\n\t\t\"bower\": {\n\t\t\t\"body\": \"<path fill=\\\"#543828\\\" d=\\\"M46.101 9.864h7.332c.12.08.229.199.36.234c2.424.639 4.973.98 7.255 1.951c7.659 3.259 12.356 9.269 15.074 16.983c.135.383.374.926.679 1.018c1.661.502 3.359.886 5.046 1.311l.159-.17c4.635-9.04 12.091-14.244 21.982-16.054c2.585-.473 5.199-.382 7.849.44c-.24.292-.386.483-.548.66c-3.333 3.625-5.945 7.624-6.685 12.627a124.667 124.667 0 0 1-.826 4.807c-.826 4.396-2.32 8.477-5.692 11.619c-4.313 4.021-9.632 4.987-15.263 4.909c-.317-.005-.746-.415-.918-.743c-.465-.889-.819-1.835-1.209-2.739c-3.777.782-4.886 1.832-5.263 4.975c1.126.142 2.251.292 3.379.424c9.738 1.141 19.439 2.521 29.006 4.706c4.515 1.03 8.997 2.186 13.158 4.332c2.222 1.146 3.528 2.922 4.087 5.316c.123.528.311 1.042.469 1.562v3.422c-.154.396-.346.781-.458 1.188c-.479 1.738-1.369 3.213-2.778 4.345c-1.741 1.399-3.803 1.953-6.044 2.147c.467 2.801-1.018 4.57-3.207 5.775c-1.366.752-2.897 1.429-4.42 1.618c-2.185.273-4.428.07-6.615.07c-1.659 3.07-4.553 3.729-7.632 3.946c-3.094.219-5.933-.626-8.458-2.409c-1.026 1.567-2.249 2.221-4.288 2.39c-3.199.267-6.224-.357-9.1-1.758l-.383-.152l.16.347c1.957 3.599 4.017 7.148 5.813 10.825c.59 1.205.714 2.747.675 4.125c-.073 2.54-1.413 4.173-3.574 4.805c-.219 2.064-1.291 3.624-2.999 4.767c-2.042 1.364-4.298 1.845-6.73 1.592c-.425-.044-1.099-.162-1.252.049c-1.242 1.707-3.045 2.424-4.943 3.012h-2.688c-1.657-.427-3.16-2.046-5.066-.602c-.288.219-.78.202-1.183.229c-2.129.141-5.616-1.191-6.581-4.109c-.993-2.997-2.229-5.916-3.381-8.925l-.225.375c-2.691 5.244-8.401 7.127-13.666 4.519a23.427 23.427 0 0 1-7.37-5.746C5.522 88.066-.151 69.882 3.598 49.206c3.51-19.357 18.501-34.412 37.677-38.426c1.602-.335 3.217-.612 4.826-.916m23.22 32.264c2.978.206 5.924.25 8.746-1.01c2.612-1.167 5.361-1.271 8.137-.747c1.845.349 3.673.78 5.509 1.174c-.833-.911-1.76-1.687-2.733-2.396c-4.688-3.413-9.795-5.791-15.667-6.202c-.516-.035-1.297.01-1.536.33c-1.835 2.465-2.922 5.218-2.78 8.358c-.272 2.088.322 3.999 1.086 5.828l9.769-4.403l-.091-.956c-1.687.39-3.287.864-4.923 1.109c-1.935.291-3.896.372-5.517-1.085m30.023-19.352l.178.189c-3.875 3.768-6.503 8.372-8.886 13.078l6.398 5.414c1.897-2.502 2.677-5.352 3.339-8.255c1.163-5.104 1.409-10.529 5.312-14.722c-7.317-.312-18.214 7.333-20.596 14.37l3.764 2.086c.205-.384.371-.748.582-1.082c1.216-1.921 2.331-3.919 3.692-5.732c1.664-2.215 3.616-4.181 6.217-5.346m-13.608 41.87c2.256.224 4.512.441 6.767.671l21.305 2.175c1.018.104 2.037.196 3.264.314c-.581-1.829-1.342-3.184-2.988-3.746c-1.532-.523-3.112-.907-4.672-1.352c-6.173-1.232-12.317-2.641-18.527-3.648c-6.053-.981-12.171-1.562-18.265-2.283c-.376-.045-.904.094-1.163.349c-1.156 1.138-2.239 2.349-3.35 3.533c-6.162 4.474-13.242 5.656-20.63 5.749c1.862-.662 3.771-1.191 5.615-1.892c5.889-2.235 11.081-5.454 14.823-10.692c.564-.79.671-1.383.167-2.286c-1.735-3.113-2.602-6.507-2.549-10.062c.063-4.262 1.527-8.041 4.438-11.203c.503-.546.601-1.032.286-1.737c-1.986-4.443-5.002-7.97-9.186-10.477c-5.135-3.078-10.739-3.342-16.436-2.495c-12.789 1.902-22.662 8.46-29.581 19.308c-6.361 9.973-8.408 20.957-6.752 32.622c.509 3.582 1.414 7.092 3.083 10.351c.368.855.666 1.747 1.113 2.559c7.785 14.139 19.685 21.977 35.819 23.179c9.486.707 17.671-4.715 20.619-13.509c.672-2.001 1.359-4.029.318-6.132c2.107 1.849 4.627 2.597 7.365 2.858c2.771.266 5.042-.714 6.24-2.878c.323.114.67.21.994.355c2.243 1.009 4.593 1.323 7.029 1.13c3.153-.25 4.634-1.637 4.954-4.616c1.566.145 3.137.449 4.696.404c4.513-.128 6.674-2.652 5.703-6.289c1.774-.086 3.601-.033 5.38-.297c1.844-.273 3.334-1.283 4.547-3.125l-17.228-3.397l-17.222-3.3l.023-.141zm-2.859-23.242c.434 1.724.796 3.112 1.13 4.508c.177.734.625.921 1.335.862c2.732-.229 5.367-.8 7.814-2.082c.334-.175.648-.389 1.301-.784l-6.737-1.802l-.887 1.631l-.199-.047v-1.766z\\\"/><path fill=\\\"#E95927\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.385 77.845c-1.669-3.259-2.574-6.769-3.083-10.351c-1.656-11.665.391-22.649 6.752-32.622c6.919-10.848 16.792-17.405 29.581-19.308c5.696-.847 11.301-.583 16.436 2.495c4.184 2.507 7.199 6.033 9.186 10.477c.314.705.217 1.191-.286 1.737c-2.91 3.162-4.374 6.941-4.438 11.203c-.053 3.555.813 6.948 2.549 10.062c.504.903.397 1.496-.167 2.286c-3.742 5.238-8.935 8.457-14.823 10.692c-1.844.7-3.753 1.229-5.615 1.892c7.388-.093 14.468-1.275 20.63-5.749c-1.299 2.195-2.396 4.545-3.932 6.561c-7.346 9.644-17.288 14.144-29.805 10.629c-1.274-.357-2.367-.515-3.473.43c-.47.399-1.163.576-1.784.755c-6.049 1.732-11.963 1.376-17.728-1.189m38.57-50.9c-6.052.009-10.706 4.711-10.698 10.808c.008 5.856 4.912 10.729 10.771 10.7c5.923-.03 10.727-4.915 10.717-10.9c-.01-5.913-4.794-10.617-10.79-10.608\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#FBCD00\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.385 77.845c5.765 2.565 11.679 2.921 17.728 1.188c.621-.179 1.314-.355 1.784-.755c1.105-.944 2.198-.787 3.473-.43c12.517 3.515 22.459-.985 29.805-10.629c1.535-2.016 2.633-4.365 3.932-6.561c1.11-1.185 2.193-2.396 3.35-3.533c.259-.255.787-.394 1.163-.349c6.094.722 12.212 1.302 18.265 2.283c6.21 1.008 12.354 2.416 18.527 3.647c-.232.062-.461.161-.696.18c-7.659.591-15.318 1.174-22.979 1.759H81.74l-.023.141c5.74 1.101 11.48 2.2 17.221 3.3c-.218.703-.228 1.645-.699 2.061c-.946.835-2.073 1.685-3.26 1.971c-1.396.337-2.935.083-4.41.085l-.042-.081l.064.064c.247 1.488.049 2.885-1.188 3.871c-.845.674-1.775 1.31-2.77 1.71c-2.583 1.042-5.186 1.062-7.675-.411c-.648 2.701-2.735 3.404-4.944 3.8c-2.257.403-4.417.021-6.292-1.515l-.229.234l1.763 4.065c1.042 2.103.354 4.131-.317 6.132c-2.948 8.794-11.133 14.216-20.619 13.509c-16.135-1.202-28.034-9.04-35.819-23.179c-.45-.81-.748-1.702-1.116-2.557m56.113 1.512l-.05.076l.075.012z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3DAF00\\\" fill-rule=\\\"evenodd\\\" d=\\\"M90.566 72.203c1.477-.002 3.016.252 4.411-.085c1.187-.286 2.313-1.136 3.26-1.971c.472-.416.481-1.357.699-2.061l17.229 3.397c-1.213 1.842-2.703 2.852-4.547 3.125c-1.779.264-3.605.211-5.38.297c.971 3.637-1.19 6.161-5.703 6.289c-1.56.045-3.13-.26-4.696-.404c-.32 2.979-1.801 4.366-4.954 4.616c-2.437.193-4.786-.121-7.029-1.13c-.324-.146-.671-.241-.994-.355c-1.198 2.164-3.47 3.144-6.24 2.878c-2.738-.262-5.258-1.01-7.365-2.858l-1.764-4.065l.229-.234c1.875 1.536 4.035 1.918 6.292 1.515c2.209-.396 4.296-1.099 4.944-3.8c2.489 1.473 5.092 1.453 7.675.411c.994-.4 1.925-1.036 2.77-1.71c1.236-.986 1.435-2.383 1.188-3.871z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#25A7F0\\\" fill-rule=\\\"evenodd\\\" d=\\\"M99.344 22.776c-2.602 1.165-4.554 3.131-6.217 5.347c-1.361 1.813-2.477 3.812-3.692 5.732c-.211.334-.377.698-.582 1.082l-3.764-2.086c2.382-7.037 13.278-14.682 20.596-14.37c-3.902 4.192-4.148 9.618-5.312 14.722c-.662 2.903-1.441 5.753-3.339 8.255l-6.398-5.414c2.383-4.706 5.011-9.311 8.886-13.078l.196-.329z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#CBCBCA\\\" fill-rule=\\\"evenodd\\\" d=\\\"M68.996 41.635c-.142-3.141.945-5.894 2.78-8.358c.239-.32 1.021-.365 1.536-.33c5.872.411 10.979 2.789 15.667 6.202c.974.71 1.9 1.485 2.733 2.396c-1.836-.394-3.664-.825-5.509-1.174c-2.775-.524-5.524-.42-8.137.747c-2.822 1.26-5.769 1.216-8.746 1.01z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3EAE00\\\" fill-rule=\\\"evenodd\\\" d=\\\"M85.736 64.646c7.66-.585 15.319-1.168 22.979-1.759c.235-.019.464-.118.696-.18c1.56.445 3.14.829 4.672 1.353c1.646.563 2.407 1.917 2.988 3.746c-1.227-.118-2.246-.211-3.264-.314l-21.305-2.175c-2.254-.229-4.51-.447-6.766-.671\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#25A5EC\\\" fill-rule=\\\"evenodd\\\" d=\\\"m82.877 41.404l3.757.521v1.766l.199.047l.887-1.631l6.737 1.802c-.652.396-.967.609-1.301.784c-2.447 1.282-5.082 1.854-7.814 2.082c-.71.059-1.158-.128-1.335-.862c-.334-1.396-.696-2.785-1.13-4.509\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C9C8C7\\\" fill-rule=\\\"evenodd\\\" d=\\\"m68.996 41.635l.325.493c1.621 1.457 3.582 1.376 5.516 1.085c1.636-.245 3.236-.72 4.923-1.109l.091.956l-9.769 4.403c-.764-1.829-1.359-3.74-1.086-5.828\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#FBCB00\\\" fill-rule=\\\"evenodd\\\" d=\\\"M49.955 26.945c5.996-.01 10.78 4.694 10.79 10.607c.01 5.985-4.794 10.87-10.717 10.9c-5.859.028-10.764-4.844-10.771-10.7c-.008-6.096 4.646-10.798 10.698-10.807m6.45 10.728c.003-3.607-2.813-6.472-6.389-6.501c-3.521-.028-6.431 2.876-6.463 6.451a6.387 6.387 0 0 0 6.408 6.458c3.614.006 6.441-2.806 6.444-6.408\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3DAF00\\\" fill-rule=\\\"evenodd\\\" d=\\\"m90.589 72.187l-.064-.064l.042.081zm-23.091 7.17l.025.088l-.075-.011z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#543828\\\" fill-rule=\\\"evenodd\\\" d=\\\"m99.344 22.776l.374-.14l-.196.329z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#553928\\\" fill-rule=\\\"evenodd\\\" d=\\\"M56.405 37.673c-.003 3.603-2.83 6.414-6.443 6.408a6.387 6.387 0 0 1-6.408-6.458c.032-3.575 2.942-6.479 6.463-6.451c3.575.029 6.391 2.893 6.388 6.501m-6.454-.243c1.059-.417 2.145-.67 3.029-1.237c1.103-.707 1.011-2.047-.024-2.86c-1.486-1.167-4.486-1.164-5.944.006c-1.027.825-1.11 2.16-.013 2.872c.849.551 1.897.798 2.952 1.219\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M49.951 37.43c-1.055-.421-2.103-.668-2.952-1.22c-1.098-.712-1.015-2.047.013-2.872c1.458-1.17 4.458-1.173 5.944-.006c1.035.813 1.127 2.153.024 2.86c-.885.568-1.971.821-3.029 1.238\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"bower-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#543828\\\" d=\\\"M20.033 115.859c.49-.421.897-.938 1.223-1.552c.323-.613.485-1.218.485-1.813c0-.255-.021-.511-.065-.77a4.167 4.167 0 0 0-.263-.867a4.465 4.465 0 0 0-.506-.907a4.259 4.259 0 0 0-.842-.841c-.354-.276-.761-.513-1.216-.71s-1.015-.223-1.676-.346c-.661-.123-1.391-.053-2.188-.053H8v18h6.473c1.043 0 2 .128 2.872-.03c.872-.157 1.605-.258 2.202-.508c.596-.248 1.121-.498 1.577-.849c.455-.35.816-.675 1.084-1.031c.268-.354.484-.716.65-1.111c.167-.395.278-.737.336-1.04a4.82 4.82 0 0 0-.802-3.689a5.208 5.208 0 0 0-2.359-1.883M11 111h3.236c.788 0 1.454-.164 1.998-.016c.543.148.939.231 1.188.485c.251.255.424.442.521.683c.096.24.145.471.145.752l-.014.274c-.123 1.184-1.183 1.933-3.005 2.266c-.754.131-2.069.212-4.069.256zm8.724 10.674c-.162.285-.359.52-.591.704c-.232.184-.537.341-.914.473s-.723.23-1.038.296a9.168 9.168 0 0 1-1.13.151c-.438.035-.783-.127-1.032-.123c-.25.004-.551-.176-.901-.176H11v-5.051c2-.097 3.29-.145 3.36-.145c1.691 0 3.078.258 4.072.775c.995.517 1.514 1.227 1.514 2.129c-.001.361-.06.683-.222.967m22.97-13.019c-1.481-.745-3.172-1.117-5.074-1.117c-1.919 0-3.623.388-5.112 1.163c-1.49.776-2.655 1.894-3.497 3.353s-1.262 3.147-1.262 5.067c0 1.542.27 2.927.809 4.153c.538 1.227 1.266 2.224 2.182 2.99a9.72 9.72 0 0 0 3.108 1.748c1.157.399 2.38.599 3.667.599c1.955 0 3.686-.407 5.193-1.223a8.681 8.681 0 0 0 3.509-3.438c.833-1.477 1.249-3.17 1.249-5.08c0-1.884-.425-3.538-1.275-4.962a8.383 8.383 0 0 0-3.497-3.253m.815 11.37c-.377.859-.876 1.538-1.498 2.038a6.835 6.835 0 0 1-4.298 1.512c-1.876 0-3.439-.613-4.693-1.841c-1.253-1.227-1.879-2.853-1.879-4.876c0-.851.122-1.628.368-2.334c.245-.705.573-1.299.985-1.781a5.873 5.873 0 0 1 1.438-1.216c.549-.328 1.12-.569 1.716-.723s1.21-.23 1.841-.23s1.251.077 1.859.23c.609.153 1.2.401 1.775.743a6.357 6.357 0 0 1 1.512 1.248c.434.491.781 1.106 1.044 1.848c.264.74.396 1.557.396 2.451c0 1.095-.189 2.073-.566 2.931m28.262 2.329L67.327 108h-3.05l-5.402 14.354L54.577 108h-3.496l6.164 18h3.169l5.283-14.288L70.193 126h3.167l7.164-18h-3.496zM85 126h13v-3H88v-5h9v-3h-9v-4h10v-3H85zm31.062-8.29a4.866 4.866 0 0 0 1.274-1.354c.312-.5.539-1.024.684-1.563s.218-1.109.218-1.706c0-.691-.084-1.317-.25-1.874c-.167-.557-.379-1.018-.638-1.381s-.583-.682-.973-.954a5.356 5.356 0 0 0-1.131-.617a6.76 6.76 0 0 0-1.248-.336c-.47-.083-.868-.001-1.196-.025c-.329-.021-.69.1-1.085.1H104v18h3v-7h3.245l5.231 7h4.312l-5.639-7.602c.736-.218 1.373-.293 1.913-.688m-3.293-1.858c-.43.109-.846.121-1.248.156c-.404.035-.868-.008-1.394-.008H107v-5h3.745c2.689 0 4.035.758 4.035 2.502c0 .465-.091.809-.27 1.152c-.18.341-.407.561-.684.753s-.628.336-1.057.445M48.079 1.389h6.563c.107.072.205.179.322.21c2.17.572 4.451.878 6.493 1.747c6.855 2.916 11.06 8.295 13.492 15.2c.121.342.335.828.606.911c1.488.448 3.008.792 4.517 1.173l.144-.152C84.363 12.387 91.037 7.729 99.89 6.109c2.313-.423 4.654-.341 7.025.395l-.491.592c-2.982 3.243-5.321 6.823-5.982 11.301a114.721 114.721 0 0 1-.739 4.303c-.739 3.934-2.077 7.586-5.095 10.398c-3.86 3.599-8.62 4.464-13.661 4.394c-.283-.004-.667-.371-.821-.665c-.416-.795-.732-1.643-1.082-2.451c-3.38.699-4.373 1.64-4.71 4.452c1.008.126 2.015.261 3.024.379c8.716 1.021 17.398 2.256 25.96 4.212c4.041.923 8.053 1.956 11.777 3.878c1.988 1.026 3.158 2.615 3.658 4.758c.11.473.278.933.419 1.397v3.063c-.139.354-.31.699-.41 1.063c-.428 1.557-1.225 2.876-2.486 3.89c-1.559 1.252-3.403 1.747-5.409 1.922c.418 2.507-.911 4.091-2.871 5.169c-1.223.673-2.593 1.279-3.955 1.448c-1.955.244-3.964.063-5.922.063c-1.484 2.748-4.074 3.338-6.83 3.532c-2.769.195-5.31-.561-7.57-2.156c-.918 1.402-2.013 1.987-3.837 2.139c-2.863.238-5.57-.319-8.145-1.573l-.343-.137l.144.311c1.752 3.222 3.595 6.398 5.203 9.689c.527 1.078.639 2.459.604 3.691c-.064 2.273-1.265 3.734-3.198 4.301c-.196 1.848-1.156 3.243-2.685 4.266c-1.827 1.222-3.847 1.65-6.024 1.425c-.38-.04-.983-.146-1.12.043c-1.111 1.528-2.725 2.17-4.425 2.696h-2.406c-1.482-.382-2.828-1.831-4.534-.538c-.258.195-.698.181-1.059.204c-1.905.126-5.026-1.066-5.891-3.678c-.888-2.684-1.994-5.295-3.024-7.987l-.202.335c-2.408 4.693-7.52 6.379-12.23 4.044a20.977 20.977 0 0 1-6.597-5.143C11.761 71.382 6.684 55.106 10.039 36.602C13.18 19.276 26.598 5.802 43.76 2.209c1.433-.299 2.879-.547 4.319-.82m20.782 28.877c2.665.185 5.303.225 7.828-.903c2.338-1.045 4.798-1.139 7.282-.669c1.651.313 3.288.698 4.931 1.051c-.746-.815-1.575-1.51-2.446-2.145c-4.195-3.056-8.767-5.184-14.022-5.552c-.461-.032-1.161.009-1.375.296c-1.642 2.206-2.615 4.669-2.488 7.48c-.244 1.868.288 3.58.972 5.217l8.743-3.941l-.081-.856c-1.51.35-2.942.774-4.406.994c-1.732.261-3.486.332-4.938-.972m26.872-17.32l.158.17c-3.468 3.372-5.82 7.493-7.952 11.705l5.727 4.846c1.698-2.239 2.396-4.789 2.988-7.389c1.041-4.567 1.261-9.424 4.754-13.176c-6.549-.278-16.302 6.563-18.435 12.862l3.369 1.866c.184-.344.332-.669.521-.968c1.088-1.72 2.086-3.508 3.305-5.131c1.489-1.982 3.236-3.742 5.565-4.785M83.554 50.42c2.019.2 4.038.396 6.056.602c6.356.646 12.712 1.298 19.068 1.945c.911.094 1.823.176 2.92.281c-.52-1.636-1.2-2.849-2.674-3.353c-1.371-.468-2.786-.812-4.181-1.21c-5.525-1.103-11.025-2.363-16.583-3.265c-5.417-.879-10.894-1.397-16.347-2.044c-.337-.04-.81.084-1.042.313c-1.034 1.018-2.004 2.102-2.997 3.162c-5.515 4.004-11.853 5.063-18.464 5.146c1.666-.593 3.375-1.066 5.025-1.693c5.271-2.001 9.917-4.881 13.267-9.57c.505-.706.601-1.236.15-2.046a17.754 17.754 0 0 1-2.282-9.005c.057-3.813 1.367-7.196 3.973-10.027c.449-.487.537-.923.255-1.554c-1.777-3.978-4.477-7.134-8.221-9.378c-4.596-2.754-9.612-2.99-14.71-2.232c-11.446 1.702-20.283 7.571-26.476 17.28c-5.694 8.926-7.525 18.757-6.043 29.197c.455 3.206 1.266 6.348 2.76 9.265c.328.765.596 1.563.995 2.289c6.969 12.654 17.619 19.67 32.06 20.746c8.491.633 15.815-4.221 18.455-12.092c.601-1.79 1.216-3.605.284-5.487c1.887 1.654 4.141 2.324 6.593 2.559c2.479.237 4.513-.639 5.585-2.576c.289.103.599.188.889.318c2.008.902 4.111 1.184 6.292 1.011c2.822-.224 4.146-1.465 4.434-4.132c1.402.131 2.808.402 4.204.363c4.038-.115 5.973-2.375 5.104-5.63c1.589-.076 3.223-.029 4.815-.266c1.65-.244 2.984-1.148 4.069-2.797L95.368 53.5l-15.413-2.954l.021-.126zm-2.559-20.801c.389 1.542.712 2.785 1.011 4.034c.158.657.56.825 1.195.771c2.445-.204 4.804-.715 6.994-1.862c.299-.157.58-.349 1.164-.703l-6.03-1.611l-.794 1.46l-.178-.043v-1.58z\\\"/><path fill=\\\"#E95927\\\" fill-rule=\\\"evenodd\\\" d=\\\"M17.009 62.234c-1.494-2.917-2.305-6.059-2.76-9.265c-1.482-10.44.349-20.271 6.043-29.197c6.192-9.709 15.029-15.578 26.476-17.28c5.098-.758 10.114-.521 14.71 2.232c3.744 2.244 6.443 5.4 8.221 9.378c.282.631.194 1.066-.255 1.554c-2.605 2.831-3.916 6.214-3.973 10.027a17.764 17.764 0 0 0 2.282 9.005c.45.81.354 1.34-.15 2.046c-3.35 4.689-7.996 7.569-13.267 9.57c-1.65.627-3.359 1.101-5.025 1.693c6.611-.083 12.949-1.142 18.464-5.146c-1.163 1.965-2.145 4.067-3.519 5.871c-6.575 8.632-15.474 12.659-26.677 9.514c-1.141-.32-2.118-.461-3.107.384c-.42.358-1.041.517-1.597.676c-5.414 1.551-10.708 1.234-15.866-1.062m34.519-45.557c-5.416.008-9.582 4.217-9.575 9.673c.007 5.242 4.396 9.603 9.642 9.577c5.301-.026 9.6-4.398 9.591-9.756c-.009-5.293-4.291-9.502-9.658-9.494\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#FBCD00\\\" fill-rule=\\\"evenodd\\\" d=\\\"M17.009 62.234c5.158 2.296 10.452 2.613 15.866 1.063c.556-.159 1.177-.317 1.597-.676c.989-.845 1.967-.704 3.107-.384c11.203 3.146 20.102-.882 26.677-9.514c1.374-1.804 2.355-3.906 3.519-5.871c.993-1.061 1.963-2.145 2.997-3.162c.232-.229.705-.353 1.042-.313c5.453.646 10.93 1.165 16.347 2.044c5.558.901 11.058 2.162 16.582 3.265c-.208.055-.412.145-.623.16c-6.854.529-13.71 1.051-20.565 1.574h-3.577l-.021.126L95.37 53.5c-.196.629-.204 1.471-.626 1.844c-.848.747-1.855 1.508-2.918 1.764c-1.249.302-2.626.074-3.947.075l-.038-.071l.059.057c.221 1.333.043 2.583-1.063 3.465c-.757.604-1.59 1.172-2.479 1.531c-2.313.932-4.641.95-6.869-.368c-.58 2.418-2.447 3.047-4.425 3.4c-2.021.361-3.953.02-5.632-1.355l-.206.21l1.579 3.639c.932 1.882.316 3.697-.284 5.487c-2.64 7.871-9.964 12.725-18.455 12.092c-14.44-1.076-25.091-8.092-32.06-20.746c-.402-.727-.669-1.525-.997-2.29m50.221 1.353l-.045.067l.066.011z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3DAF00\\\" fill-rule=\\\"evenodd\\\" d=\\\"M87.876 57.183c1.322-.001 2.699.227 3.948-.075c1.063-.256 2.07-1.017 2.918-1.764c.422-.373.43-1.215.626-1.844l15.419 3.04c-1.085 1.648-2.419 2.553-4.069 2.797c-1.593.236-3.227.189-4.815.266c.869 3.255-1.065 5.515-5.104 5.63c-1.396.039-2.802-.232-4.204-.363c-.287 2.667-1.611 3.908-4.434 4.132c-2.181.173-4.284-.108-6.292-1.011c-.29-.131-.6-.216-.889-.318c-1.072 1.938-3.106 2.813-5.585 2.576c-2.452-.234-4.706-.904-6.593-2.559l-1.579-3.639l.206-.21c1.679 1.375 3.611 1.717 5.632 1.355c1.978-.354 3.845-.982 4.425-3.4c2.229 1.318 4.557 1.3 6.869.368c.89-.359 1.723-.928 2.479-1.531c1.105-.882 1.283-2.132 1.063-3.465z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#25A7F0\\\" fill-rule=\\\"evenodd\\\" d=\\\"M95.733 12.946c-2.329 1.043-4.076 2.803-5.564 4.786c-1.219 1.623-2.217 3.411-3.305 5.131c-.189.299-.338.624-.521.968l-3.369-1.866c2.133-6.299 11.886-13.141 18.435-12.862c-3.493 3.752-3.713 8.608-4.754 13.176c-.592 2.6-1.29 5.149-2.988 7.389l-5.727-4.846c2.132-4.212 4.484-8.333 7.952-11.705l.177-.295z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#CBCBCA\\\" fill-rule=\\\"evenodd\\\" d=\\\"M68.57 29.825c-.127-2.812.847-5.274 2.488-7.48c.214-.287.914-.328 1.375-.296c5.256.368 9.827 2.496 14.022 5.552c.871.635 1.7 1.329 2.446 2.145c-1.643-.353-3.279-.738-4.931-1.051c-2.484-.47-4.944-.376-7.282.669c-2.525 1.128-5.163 1.088-7.828.903z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3EAE00\\\" fill-rule=\\\"evenodd\\\" d=\\\"M83.554 50.42c6.855-.523 13.711-1.045 20.565-1.574c.211-.016.415-.105.623-.16c1.396.398 2.811.742 4.182 1.21c1.474.504 2.154 1.717 2.674 3.353c-1.097-.105-2.009-.188-2.92-.281c-6.356-.647-12.712-1.299-19.068-1.945c-2.018-.207-4.038-.402-6.056-.603\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#25A5EC\\\" fill-rule=\\\"evenodd\\\" d=\\\"m80.995 29.619l3.362.466v1.58l.178.043l.794-1.46l6.03 1.611c-.584.354-.865.546-1.164.703c-2.19 1.147-4.549 1.658-6.994 1.862c-.636.054-1.037-.114-1.195-.771c-.299-1.249-.622-2.492-1.011-4.034\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C9C8C7\\\" fill-rule=\\\"evenodd\\\" d=\\\"m68.57 29.825l.291.441c1.451 1.304 3.206 1.232 4.937.972c1.464-.22 2.896-.645 4.406-.994l.081.856l-8.743 3.941c-.684-1.636-1.216-3.348-.972-5.216\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#FBCB00\\\" fill-rule=\\\"evenodd\\\" d=\\\"M51.528 16.677c5.366-.008 9.648 4.201 9.657 9.494c.009 5.357-4.29 9.729-9.591 9.756c-5.245.025-9.635-4.335-9.642-9.577c-.006-5.456 4.16-9.665 9.576-9.673m5.773 9.602c.003-3.229-2.517-5.793-5.717-5.818c-3.151-.025-5.756 2.574-5.785 5.773a5.717 5.717 0 0 0 5.736 5.78c3.234.006 5.763-2.511 5.766-5.735\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3DAF00\\\" fill-rule=\\\"evenodd\\\" d=\\\"m87.897 57.168l-.059-.057l.038.071zM67.23 63.587l.022.079l-.066-.011z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#543828\\\" fill-rule=\\\"evenodd\\\" d=\\\"m95.733 12.946l.335-.125l-.177.295z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#553928\\\" fill-rule=\\\"evenodd\\\" d=\\\"M57.301 26.279c-.003 3.225-2.532 5.741-5.766 5.735a5.716 5.716 0 0 1-5.736-5.78c.029-3.199 2.634-5.799 5.785-5.773c3.2.025 5.72 2.589 5.717 5.818m-5.777-.218c.948-.373 1.92-.6 2.712-1.107c.986-.632.904-1.832-.022-2.56c-1.33-1.045-4.015-1.042-5.319.005c-.921.738-.995 1.934-.012 2.57c.761.494 1.698.716 2.641 1.092\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M51.524 26.061c-.943-.376-1.881-.598-2.642-1.092c-.983-.637-.909-1.832.012-2.57c1.305-1.047 3.989-1.05 5.319-.005c.927.728 1.009 1.928.022 2.56c-.791.507-1.762.734-2.711 1.107\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"browserstack\": {\n\t\t\t\"body\": \"<path fill=\\\"#f4b960\\\" d=\\\"M64.147.295a63.852 63.852 0 0 0-.505.017a57.673 57.673 0 0 1 .455.049a50.022 50.022 0 0 1 1.2-.052a63.852 63.852 0 0 0-1.15-.014M76.68 1.538a50.022 50.022 0 0 1 38.96 48.78a50.022 50.022 0 0 1-.329 5.416a57.673 57.673 0 0 1 .036 1.94a57.673 57.673 0 0 1-57.673 57.672A57.673 57.673 0 0 1 .322 63.41a63.852 63.852 0 0 0-.026.737A63.852 63.852 0 0 0 64.148 128A63.852 63.852 0 0 0 128 64.147a63.852 63.852 0 0 0-51.32-62.61z\\\"/><path fill=\\\"#e66f32\\\" d=\\\"M57.673 0A57.673 57.673 0 0 0 0 57.673a57.673 57.673 0 0 0 57.673 57.673a57.673 57.673 0 0 0 57.673-57.673a57.673 57.673 0 0 0-.037-1.948a50.022 50.022 0 0 1-.045.36a45.903 45.903 0 0 1-43.64 43.87a42.667 42.667 0 0 1-5.42.384a42.667 42.667 0 0 1-.3-.012a50.022 50.022 0 0 1-.287.012a50.022 50.022 0 0 1-50.022-50.023A50.022 50.022 0 0 1 64.063.358a57.673 57.673 0 0 0-6.39-.357z\\\"/><path fill=\\\"#e43c41\\\" d=\\\"M65.618.295a50.022 50.022 0 0 0-50.022 50.022a50.022 50.022 0 0 0 50.022 50.022a50.022 50.022 0 0 0 .3-.01A42.667 42.667 0 0 1 23.54 57.672a42.667 42.667 0 0 1 .071-1.734a45.903 45.903 0 0 1-.07-1.797a45.903 45.903 0 0 1 .386-5.677a35.604 35.604 0 0 1 6.431-18.388A45.903 45.903 0 0 1 69.444 8.24a45.903 45.903 0 0 1 45.903 45.903a45.903 45.903 0 0 1-.08 2.043a50.022 50.022 0 0 0 .375-5.868A50.022 50.022 0 0 0 65.62.296z\\\"/><path fill=\\\"#bdd041\\\" d=\\\"M69.443 8.24A45.903 45.903 0 0 0 30.53 29.852a35.604 35.604 0 0 1 28.908-14.846a35.604 35.604 0 0 1 1.405.032a30.014 30.014 0 0 1 4.186-.326a30.014 30.014 0 0 1 5.903.59a42.667 42.667 0 0 1 37.94 42.372a42.667 42.667 0 0 1-37.238 42.288a45.903 45.903 0 0 0 43.71-45.82a45.903 45.903 0 0 0-45.9-45.903zM23.931 48.39a45.903 45.903 0 0 0-.39 5.753a45.903 45.903 0 0 0 .066 1.792a42.667 42.667 0 0 1 .301-3.615a35.604 35.604 0 0 1-.074-1.708a35.604 35.604 0 0 1 .097-2.224z\\\"/><path fill=\\\"#6db54c\\\" d=\\\"M70.61 15.238a30.014 30.014 0 0 1 24.433 29.488a30.014 30.014 0 0 1-.094 2.18a26.189 26.189 0 0 1 .094 1.938a26.189 26.189 0 0 1-.013.816a35.604 35.604 0 0 1 .013.951a35.604 35.604 0 0 1-35.604 35.604a35.604 35.604 0 0 1-35.538-33.998a42.667 42.667 0 0 0-.36 5.456a42.667 42.667 0 0 0 42.666 42.667a42.667 42.667 0 0 0 42.667-42.667a42.667 42.667 0 0 0-38.263-42.436z\\\"/><path fill=\\\"#aedae6\\\" d=\\\"M59.438 15.007a35.604 35.604 0 0 0-35.604 35.604a35.604 35.604 0 0 0 35.604 35.604a35.604 35.604 0 0 0 35.604-35.604a35.604 35.604 0 0 0-.013-.943a26.189 26.189 0 0 1-26.176 25.366a26.189 26.189 0 0 1-3.776-.298a22.364 22.364 0 0 1-.049.003a30.014 30.014 0 0 1-30.014-30.014a30.014 30.014 0 0 1 25.772-29.691a35.604 35.604 0 0 0-1.346-.028z\\\"/><path fill=\\\"#56b8de\\\" d=\\\"M65.029 14.712a30.014 30.014 0 0 0-30.014 30.014A30.014 30.014 0 0 0 65.029 74.74a22.364 22.364 0 0 1-5.788-.762a22.364 22.364 0 0 1-1.86-.587a22.364 22.364 0 0 1-5.179-2.695a22.364 22.364 0 0 1-1.547-1.189a22.364 22.364 0 0 1-1.439-1.318a22.364 22.364 0 0 1-2.506-2.986a22.364 22.364 0 0 1-4.045-12.827a22.364 22.364 0 0 1 .076-1.714a26.189 26.189 0 0 1-.077-1.817a26.189 26.189 0 0 1 26.19-26.189a26.189 26.189 0 0 1 26.108 24.247a30.014 30.014 0 0 0 .08-2.177a30.014 30.014 0 0 0-30.014-30.014z\\\"/><path fill=\\\"#00b1d5\\\" d=\\\"M68.854 22.657a26.189 26.189 0 0 0-26.189 26.189a26.189 26.189 0 0 0 .069 1.88a22.364 22.364 0 0 1 .008-.196a22.364 22.364 0 0 1 .229-1.834a22.364 22.364 0 0 1 .379-1.81a22.364 22.364 0 0 1 1.198-3.493a22.364 22.364 0 0 1 .812-1.66a22.364 22.364 0 0 1 .946-1.588a22.364 22.364 0 0 1 3.577-4.221a22.364 22.364 0 0 1 1.41-1.195a22.364 22.364 0 0 1 1.505-1.073a22.364 22.364 0 0 1 1.587-.948a22.364 22.364 0 0 1 3.383-1.483a22.364 22.364 0 0 1 7.26-1.21a22.364 22.364 0 0 1 .618.007a22.364 22.364 0 0 1 1.23.067a22.364 22.364 0 0 1 1.224.136a22.364 22.364 0 0 1 5.912 1.672a22.364 22.364 0 0 1 1.115.526a22.364 22.364 0 0 1 2.134 1.231a22.364 22.364 0 0 1 .51.345a22.364 22.364 0 0 1 .995.73a22.364 22.364 0 0 1 .48.385a22.364 22.364 0 0 1 2.237 2.117a22.364 22.364 0 0 1 1.567 1.9a22.364 22.364 0 0 1 .357.503a22.364 22.364 0 0 1 .99 1.56a22.364 22.364 0 0 1 .857 1.638a22.364 22.364 0 0 1 .255.56a22.364 22.364 0 0 1 .464 1.143a22.364 22.364 0 0 1 .208.58a22.364 22.364 0 0 1 .369 1.176a22.364 22.364 0 0 1 .159.595a22.364 22.364 0 0 1 .472 2.42a22.364 22.364 0 0 1 .076.611a22.364 22.364 0 0 1 .059.612a22.364 22.364 0 0 1 .067 1.232a22.364 22.364 0 0 1 .01.616A22.364 22.364 0 0 1 65.027 74.74a22.364 22.364 0 0 1-.071-.003a26.189 26.189 0 0 0 3.898.297a26.189 26.189 0 0 0 26.189-26.189a26.189 26.189 0 0 0-26.19-26.189z\\\"/><path fill=\\\"#221f1f\\\" d=\\\"M65.029 30.012a22.364 22.364 0 0 0-22.364 22.364A22.364 22.364 0 0 0 65.029 74.74a22.364 22.364 0 0 0 22.364-22.364a22.364 22.364 0 0 0-22.364-22.364m10.707 7.575a4.414 7.062 24.166 0 1 1.14.248a4.414 7.062 24.166 0 1 1.136 8.25a4.414 7.062 24.166 0 1-6.918 4.637a4.414 7.062 24.166 0 1-1.135-8.25a4.414 7.062 24.166 0 1 5.776-4.884z\\\"/><path fill=\\\"#fff\\\" d=\\\"M76.878 37.836a4.414 7.062 24.166 0 1 1.135 8.25a4.414 7.062 24.166 0 1-6.918 4.636a4.414 7.062 24.166 0 1-1.135-8.249a4.414 7.062 24.166 0 1 6.917-4.637z\\\"/>\"\n\t\t},\n\t\t\"browserstack-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M125.52 127.66c-.169 0-.253-.084-.422-.253l-2.786-4.222l-1.52 1.604v2.618c0 .084-.084.253-.253.253h-2.11c-.085 0-.254-.084-.254-.253v-13.931c0-.085.084-.254.253-.254h2.11c.085 0 .254.085.254.254v8.274l3.8-4.053a.464.464 0 0 1 .421-.253h2.364c.085 0 .254.084.085.253l-3.546 3.715l3.968 6.079c.084.084.084.253-.085.253zm-17.31-2.53c-.253-.675-.422-1.435-.422-2.533s.084-1.857.422-2.533c.675-1.857 2.364-2.786 4.56-2.786c1.688 0 2.954.591 3.798 1.604c.085.085.085.254-.084.254l-1.435 1.182c-.085.084-.254.084-.338-.085c-.591-.59-1.098-.844-2.026-.844c-1.014 0-1.773.422-2.111 1.35c-.253.507-.253 1.098-.253 1.858s.084 1.351.253 1.942c.338.844 1.097 1.35 2.11 1.35c.93 0 1.52-.337 2.027-.843c.084-.085.253-.085.338-.085l1.435 1.182c.084.085.084.253.084.253c-.844.93-2.195 1.52-3.799 1.52c-2.195.085-3.884-.929-4.559-2.786m-4.13 2.53c-.084 0-.253-.084-.253-.253v-.76c-.507.675-1.52 1.182-3.124 1.182c-2.026 0-3.715-.929-3.715-3.124c0-2.195 1.689-3.293 4.39-3.293h2.195c.085 0 .085-.084.085-.084v-.507c0-1.182-.591-1.688-2.449-1.688c-1.182 0-2.026.338-2.532.675c-.085.085-.254.085-.338-.084l-.844-1.351c-.085-.084-.085-.253.084-.253c.844-.591 2.11-1.013 3.884-1.013c3.377 0 4.559 1.097 4.559 3.546v6.585c0 .084-.085.253-.253.253zm-.253-3.377v-.76c0-.084-.085-.084-.085-.084h-1.857c-1.689 0-2.364.422-2.364 1.35c0 .845.675 1.267 1.942 1.267c1.435-.085 2.364-.591 2.364-1.773m-9.461 3.637c-2.195 0-3.124-1.013-3.124-2.955v-5.403c0-.085-.084-.085-.084-.085h-.676c-.084 0-.253-.084-.253-.253v-1.435c0-.085.085-.254.253-.254h.676c.084 0 .084-.084.084-.084v-2.786c0-.085.085-.253.253-.253h2.111c.085 0 .253.084.253.253v2.786c0 .084.085.084.085.084h1.52c.084 0 .253.085.253.254v1.435c0 .084-.085.253-.253.253h-1.52c-.085 0-.085.085-.085.085v5.319c0 .675.338.928 1.014.928h.59c.085 0 .254.085.254.253v1.69c0 .083-.085.252-.253.252zm-16.294-1.78c-.084-.084-.084-.253-.084-.338l1.435-1.52c.084-.084.253-.084.338-.084c1.013.76 2.532 1.52 4.221 1.52c1.857 0 2.955-.844 2.955-2.11c0-1.014-.675-1.69-2.786-2.027l-.844-.085c-2.955-.422-4.644-1.688-4.644-4.052c0-2.617 2.11-4.39 5.235-4.39c1.941 0 3.799.59 4.98 1.435c.085.084.085.169.085.253l-1.097 1.52c-.085.084-.254.084-.338.084c-1.266-.76-2.448-1.097-3.715-1.097c-1.604 0-2.448.76-2.448 1.942c0 1.013.76 1.688 2.87 1.941l.845.085c2.955.422 4.643 1.688 4.643 4.221s-2.026 4.475-5.825 4.475c-2.449.084-4.644-.76-5.826-1.773m-8.021 1.52c-.084 0-.253-.084-.253-.253v-9.794c0-.084.084-.253.253-.253h2.11c.085 0 .254.084.254.253v.844h.084c.507-.76 1.52-1.35 2.87-1.35c.845 0 1.774.337 2.28.844c.085.084.085.253.085.253l-1.182 1.435c-.085.085-.253.085-.338.085c-.506-.253-1.013-.507-1.688-.507c-1.436 0-2.111.929-2.111 2.618v5.487c0 .085-.085.254-.253.254zm-11.229-2.53c-.253-.675-.422-1.435-.422-2.533s.084-1.857.422-2.533c.675-1.857 2.28-2.786 4.56-2.786c2.279 0 3.883 1.098 4.558 2.786c.253.676.422 1.436.422 3.124c0 .085-.084.253-.253.253h-6.923c-.084 0-.084.085-.084.085c0 .253.084.59.168.76c.423 1.013 1.182 1.52 2.449 1.52s2.026-.423 2.617-.93c.085-.084.253-.084.422-.084l1.351 1.098c.084.084.084.253.084.253c-.928 1.013-2.532 1.773-4.559 1.773c-2.532.085-4.221-.928-4.812-2.786m6.67-4.56c-.253-.843-1.098-1.35-2.11-1.35s-1.858.507-2.196 1.35c-.084.254-.084.507-.084.845c0 .085.084.085.084.085h4.39c.085 0 .085-.085.085-.085c-.085-.253-.085-.59-.17-.844zm-17.814 5.74c-.085-.084-.085-.253 0-.253l1.35-1.267a.257.257 0 0 1 .338 0c.76.676 2.111 1.182 3.293 1.182c1.35 0 2.026-.506 2.026-1.182c0-.59-.422-1.013-1.857-1.097l-1.182-.085c-2.195-.253-3.377-1.266-3.377-2.955c0-1.941 1.52-3.292 4.221-3.292c1.689 0 3.124.506 4.137 1.182c.085.084.085.253.085.253l-1.098 1.182c-.084.084-.253.084-.338.084c-.675-.422-1.857-.844-2.87-.844c-1.098 0-1.689.422-1.689 1.098c0 .59.422.928 1.858 1.097l1.182.085c2.28.253 3.377 1.35 3.377 2.955c0 2.026-1.604 3.461-4.644 3.461c-2.28.085-3.883-.76-4.812-1.604m-6.08 1.35c-.084 0-.252-.084-.252-.253l-2.111-6.586h-.085l-2.11 6.501c-.085.085-.085.253-.254.253H34.93c-.084 0-.253-.084-.253-.253l-3.462-9.793c-.084-.085.085-.254.17-.254h2.194c.169 0 .253.085.253.254l2.111 6.754h.085l2.11-6.754c.085-.085.17-.254.254-.254h1.688c.085 0 .253.085.253.254l2.196 6.754h.084l2.026-6.754c.085-.17.085-.254.254-.254h2.195c.084 0 .253.085.169.254l-3.378 9.793c-.084.085-.084.253-.253.253zm-20.515-2.53c-.253-.675-.422-1.35-.422-2.533s.084-1.857.422-2.533c.675-1.857 2.28-2.786 4.559-2.786c2.28 0 3.884 1.013 4.559 2.786c.253.676.422 1.351.422 2.533s-.084 1.858-.422 2.533c-.675 1.857-2.28 2.786-4.56 2.786c-2.279 0-3.967-.929-4.558-2.786m6.67-.591c.253-.507.253-1.013.253-1.857c0-.845-.085-1.351-.253-1.858c-.338-.844-1.013-1.35-2.111-1.35c-1.013 0-1.773.506-2.11 1.35c-.254.591-.254 1.013-.254 1.858c0 .844.084 1.35.253 1.857c.338.844 1.013 1.35 2.11 1.35c1.014 0 1.69-.506 2.112-1.35m-14.691 3.121c-.085 0-.254-.084-.254-.253v-9.794c0-.084.085-.253.254-.253h2.11c.085 0 .254.084.254.253v.844h.084c.507-.76 1.52-1.35 2.87-1.35c.845 0 1.774.337 2.28.844c.084.084.084.253.084.253l-1.182 1.435c-.084.085-.253.085-.337.085c-.507-.253-1.013-.507-1.689-.507c-1.435 0-2.11.929-2.11 2.618v5.487c0 .085-.085.254-.254.254zM.06 113.65c0-.084.084-.253.253-.253h5.825c3.293 0 4.813 1.52 4.813 3.799c0 1.689-.844 2.533-1.858 3.04v.084c.93.337 2.111 1.52 2.111 3.292c0 2.87-1.942 4.222-5.319 4.222H.314c-.084 0-.253-.085-.253-.253V113.65zm5.994 5.741c1.35 0 2.195-.76 2.195-1.857c0-1.182-.844-1.942-2.195-1.942H2.931c-.084 0-.084.084-.084.084v3.546c0 .085.084.085.084.085c-.084.084 3.124.084 3.124.084zm-3.208 6.079H6.14c1.52 0 2.364-.76 2.364-2.026c0-1.267-.845-2.027-2.364-2.027H2.847c-.085 0-.085.085-.085.085v3.715c-.084.253.085.253.085.253z\\\"/><path fill=\\\"#f4b960\\\" d=\\\"M64.035.231a50.08 50.08 0 0 0-.396.014a45.234 45.234 0 0 1 .357.038a39.233 39.233 0 0 1 .941-.041a50.08 50.08 0 0 0-.902-.011m9.83.975a39.233 39.233 0 0 1 30.557 38.259a39.233 39.233 0 0 1-.258 4.248a45.234 45.234 0 0 1 .028 1.521a45.234 45.234 0 0 1-45.234 45.234a45.234 45.234 0 0 1-44.982-40.734a50.08 50.08 0 0 0-.02.578a50.08 50.08 0 0 0 50.08 50.08a50.08 50.08 0 0 0 50.08-50.08A50.08 50.08 0 0 0 73.865 1.206\\\"/><path fill=\\\"#e66f32\\\" d=\\\"M58.958 0a45.234 45.234 0 0 0-45.234 45.234a45.234 45.234 0 0 0 45.234 45.234a45.234 45.234 0 0 0 45.234-45.234a45.234 45.234 0 0 0-.029-1.528a39.233 39.233 0 0 1-.035.282A36.002 36.002 0 0 1 69.9 78.396a33.464 33.464 0 0 1-4.25.302a33.464 33.464 0 0 1-.236-.01a39.233 39.233 0 0 1-.225.01a39.233 39.233 0 0 1-39.233-39.234A39.233 39.233 0 0 1 63.97.281a45.234 45.234 0 0 0-5.012-.28z\\\"/><path fill=\\\"#e43c41\\\" d=\\\"M65.189.231a39.233 39.233 0 0 0-39.233 39.233a39.233 39.233 0 0 0 39.233 39.233a39.233 39.233 0 0 0 .235-.008a33.464 33.464 0 0 1-33.237-33.455a33.464 33.464 0 0 1 .056-1.36a36.002 36.002 0 0 1-.055-1.41a36.002 36.002 0 0 1 .303-4.452a27.925 27.925 0 0 1 5.044-14.422A36.002 36.002 0 0 1 68.19 6.463a36.002 36.002 0 0 1 36.002 36.002a36.002 36.002 0 0 1-.063 1.602a39.233 39.233 0 0 0 .294-4.602A39.233 39.233 0 0 0 65.19.232z\\\"/><path fill=\\\"#bdd041\\\" d=\\\"M68.189 6.462a36.002 36.002 0 0 0-30.52 16.952A27.925 27.925 0 0 1 60.342 11.77a27.925 27.925 0 0 1 1.102.025a23.54 23.54 0 0 1 3.283-.256a23.54 23.54 0 0 1 4.63.463a33.464 33.464 0 0 1 29.757 33.233a33.464 33.464 0 0 1-29.206 33.167a36.002 36.002 0 0 0 34.282-35.937A36.002 36.002 0 0 0 68.189 6.463zm-35.696 31.49a36.002 36.002 0 0 0-.306 4.513a36.002 36.002 0 0 0 .052 1.405a33.464 33.464 0 0 1 .236-2.835a27.925 27.925 0 0 1-.058-1.34a27.925 27.925 0 0 1 .076-1.744z\\\"/><path fill=\\\"#6db54c\\\" d=\\\"M69.104 11.951a23.54 23.54 0 0 1 19.163 23.128a23.54 23.54 0 0 1-.074 1.71a20.54 20.54 0 0 1 .074 1.52a20.54 20.54 0 0 1-.01.64a27.925 27.925 0 0 1 .01.746A27.925 27.925 0 0 1 60.342 67.62a27.925 27.925 0 0 1-27.873-26.665a33.464 33.464 0 0 0-.283 4.279A33.464 33.464 0 0 0 65.65 78.698a33.464 33.464 0 0 0 33.464-33.464a33.464 33.464 0 0 0-30.01-33.283\\\"/><path fill=\\\"#aedae6\\\" d=\\\"M60.342 11.77a27.925 27.925 0 0 0-27.925 27.925A27.925 27.925 0 0 0 60.342 67.62a27.925 27.925 0 0 0 27.925-27.925a27.925 27.925 0 0 0-.01-.74a20.54 20.54 0 0 1-20.53 19.895a20.54 20.54 0 0 1-2.962-.233a17.54 17.54 0 0 1-.038.002a23.54 23.54 0 0 1-23.54-23.54A23.54 23.54 0 0 1 61.4 11.792a27.925 27.925 0 0 0-1.056-.022z\\\"/><path fill=\\\"#56b8de\\\" d=\\\"M64.727 11.539a23.54 23.54 0 0 0-23.54 23.54a23.54 23.54 0 0 0 23.54 23.54a17.54 17.54 0 0 1-4.54-.598a17.54 17.54 0 0 1-1.459-.46a17.54 17.54 0 0 1-4.061-2.114a17.54 17.54 0 0 1-1.214-.932a17.54 17.54 0 0 1-1.128-1.034a17.54 17.54 0 0 1-1.966-2.342a17.54 17.54 0 0 1-3.172-10.06a17.54 17.54 0 0 1 .059-1.344a20.54 20.54 0 0 1-.06-1.425a20.54 20.54 0 0 1 20.54-20.54a20.54 20.54 0 0 1 20.478 19.017a23.54 23.54 0 0 0 .063-1.708a23.54 23.54 0 0 0-23.54-23.54\\\"/><path fill=\\\"#00b1d5\\\" d=\\\"M67.727 17.77a20.54 20.54 0 0 0-20.54 20.54a20.54 20.54 0 0 0 .054 1.474a17.54 17.54 0 0 1 .006-.153a17.54 17.54 0 0 1 .18-1.439a17.54 17.54 0 0 1 .297-1.419a17.54 17.54 0 0 1 .94-2.74a17.54 17.54 0 0 1 .637-1.302a17.54 17.54 0 0 1 .742-1.245a17.54 17.54 0 0 1 2.805-3.311a17.54 17.54 0 0 1 1.106-.937a17.54 17.54 0 0 1 1.18-.842a17.54 17.54 0 0 1 1.245-.743a17.54 17.54 0 0 1 2.653-1.163a17.54 17.54 0 0 1 5.695-.95a17.54 17.54 0 0 1 .484.006a17.54 17.54 0 0 1 .965.053a17.54 17.54 0 0 1 .96.106a17.54 17.54 0 0 1 4.637 1.312a17.54 17.54 0 0 1 .874.412a17.54 17.54 0 0 1 1.674.966a17.54 17.54 0 0 1 .4.27a17.54 17.54 0 0 1 .78.573a17.54 17.54 0 0 1 .377.302a17.54 17.54 0 0 1 1.754 1.66a17.54 17.54 0 0 1 1.229 1.491a17.54 17.54 0 0 1 .28.394a17.54 17.54 0 0 1 .776 1.224a17.54 17.54 0 0 1 .673 1.284a17.54 17.54 0 0 1 .2.44a17.54 17.54 0 0 1 .364.896a17.54 17.54 0 0 1 .163.455a17.54 17.54 0 0 1 .289.922a17.54 17.54 0 0 1 .125.467a17.54 17.54 0 0 1 .37 1.897a17.54 17.54 0 0 1 .06.48a17.54 17.54 0 0 1 .046.48a17.54 17.54 0 0 1 .053.966a17.54 17.54 0 0 1 .007.483a17.54 17.54 0 0 1-17.54 17.54a17.54 17.54 0 0 1-.056-.002a20.54 20.54 0 0 0 3.057.233a20.54 20.54 0 0 0 20.54-20.54a20.54 20.54 0 0 0-20.54-20.54z\\\"/><path fill=\\\"#221f1f\\\" d=\\\"M64.727 23.539a17.54 17.54 0 0 0-17.54 17.54a17.54 17.54 0 0 0 17.54 17.54a17.54 17.54 0 0 0 17.54-17.54a17.54 17.54 0 0 0-17.54-17.54m8.398 5.941a3.462 5.539 24.166 0 1 .894.195a3.462 5.539 24.166 0 1 .891 6.47a3.462 5.539 24.166 0 1-5.426 3.637a3.462 5.539 24.166 0 1-.89-6.471a3.462 5.539 24.166 0 1 4.53-3.83z\\\"/><path fill=\\\"#fff\\\" d=\\\"M74.02 29.675a5.539 3.462-65.834 0 1 .89 6.47a5.539 3.462-65.834 0 1-5.426 3.637a5.539 3.462-65.834 0 1-.89-6.47a5.539 3.462-65.834 0 1 5.425-3.637z\\\"/>\"\n\t\t},\n\t\t\"bun\": {\n\t\t\t\"body\": \"<path d=\\\"M113.744 41.999a18.558 18.558 0 0 0-.8-.772c-.272-.246-.528-.524-.8-.771s-.528-.525-.8-.771c-.272-.247-.528-.525-.8-.772s-.528-.524-.8-.771s-.528-.525-.8-.772s-.528-.524-.8-.771c7.936 7.52 12.483 17.752 12.656 28.481c0 25.565-26.912 46.363-60 46.363c-18.528 0-35.104-6.526-46.128-16.756l.8.772l.8.771l.8.772l.8.771l.8.772l.8.771l.8.771c11.008 10.662 27.952 17.527 46.928 17.527c33.088 0 60-20.797 60-46.285c0-10.893-4.864-21.215-13.456-29.33\\\"/><path fill=\\\"#fbf0df\\\" d=\\\"M116.8 65.08c0 23.467-25.072 42.49-56 42.49s-56-19.023-56-42.49c0-14.55 9.6-27.401 24.352-35.023C43.904 22.435 53.088 14.628 60.8 14.628S75.104 21 92.448 30.058C107.2 37.677 116.8 50.53 116.8 65.08\\\"/><path fill=\\\"#f6dece\\\" d=\\\"M116.8 65.08a32.314 32.314 0 0 0-1.28-8.918c-4.368 51.377-69.36 53.846-94.912 38.48c11.486 8.584 25.66 13.144 40.192 12.928c30.88 0 56-19.054 56-42.49\\\"/><path fill=\\\"#fffefc\\\" d=\\\"M39.248 27.234c7.152-4.135 16.656-11.896 26-11.911a15.372 15.372 0 0 0-4.448-.695c-3.872 0-8 1.93-13.2 4.83c-1.808 1.018-3.68 2.144-5.664 3.317c-3.728 2.222-8 4.736-12.8 7.251C13.904 37.972 4.8 51.071 4.8 65.08v1.836c9.696-33.033 27.312-35.547 34.448-39.682\\\"/><path fill=\\\"#ccbea7\\\" d=\\\"M56.192 18.532A24.553 24.553 0 0 1 53.867 29.1a25.407 25.407 0 0 1-6.683 8.671c-.448.386-.096 1.127.48.91c5.392-2.02 12.672-8.068 9.6-20.272c-.128-.695-1.072-.51-1.072.123m3.632 0a24.474 24.474 0 0 1 3.646 10.12c.445 3.587.08 7.224-1.07 10.662c-.192.54.496 1.003.88.556c3.504-4.32 6.56-12.899-2.592-22.156c-.464-.4-1.184.216-.864.756zm4.416-.262a25.702 25.702 0 0 1 7.521 7.925A24.71 24.71 0 0 1 75.2 36.414c-.016.13.02.26.101.365a.543.543 0 0 0 .718.117a.509.509 0 0 0 .221-.313c1.472-5.384.64-14.564-11.472-19.332c-.64-.246-1.056.587-.528.957zM34.704 34.315a27.418 27.418 0 0 0 9.91-5.222a26.262 26.262 0 0 0 6.842-8.663c.288-.556 1.2-.34 1.056.277c-2.768 12.343-12.032 14.92-17.792 14.58c-.608.016-.592-.802-.016-.972\\\"/><path d=\\\"M60.8 111.443c-33.088 0-60-20.798-60-46.363c0-15.429 9.888-29.823 26.448-38.448c4.8-2.469 8.912-4.953 12.576-7.128c2.016-1.203 3.92-2.33 5.76-3.379C51.2 12.916 56 10.771 60.8 10.771c4.8 0 8.992 1.852 14.24 4.845c1.6.88 3.2 1.836 4.912 2.885c3.984 2.376 8.48 5.06 14.4 8.131c16.56 8.625 26.448 23.004 26.448 38.448c0 25.565-26.912 46.363-60 46.363m0-96.814c-3.872 0-8 1.928-13.2 4.829c-1.808 1.018-3.68 2.144-5.664 3.317c-3.728 2.222-8 4.736-12.8 7.251C13.904 37.972 4.8 51.071 4.8 65.08c0 23.436 25.12 42.506 56 42.506s56-19.07 56-42.506c0-14.01-9.104-27.108-24.352-35.023c-6.048-3.086-10.768-5.986-14.592-8.27c-1.744-1.033-3.344-1.99-4.8-2.838c-4.848-2.778-8.384-4.32-12.256-4.32\\\"/><path fill=\\\"#b71422\\\" d=\\\"M72.08 76.343c-.719 2.839-2.355 5.383-4.672 7.267a11.07 11.07 0 0 1-6.4 2.9a11.13 11.13 0 0 1-6.608-2.9c-2.293-1.892-3.906-4.436-4.608-7.267a1.073 1.073 0 0 1 .05-.5a1.11 1.11 0 0 1 .272-.428a1.19 1.19 0 0 1 .958-.322h19.744a1.185 1.185 0 0 1 .947.33a1.073 1.073 0 0 1 .317.92\\\"/><path fill=\\\"#ff6164\\\" d=\\\"M54.4 83.733a11.24 11.24 0 0 0 6.592 2.932a11.239 11.239 0 0 0 6.576-2.932a16.652 16.652 0 0 0 1.6-1.65a10.904 10.904 0 0 0-3.538-2.564a11.26 11.26 0 0 0-4.302-1a10.121 10.121 0 0 0-4.549 1.192a9.71 9.71 0 0 0-3.451 3.097c.368.323.688.632 1.072.925\\\"/><path d=\\\"M54.656 82.514a8.518 8.518 0 0 1 2.97-2.347a8.836 8.836 0 0 1 3.734-.862a9.78 9.78 0 0 1 6.4 2.608c.368-.386.72-.787 1.056-1.188c-2.035-1.87-4.726-2.933-7.536-2.978a10.487 10.487 0 0 0-4.335.975a10.125 10.125 0 0 0-3.489 2.666c.378.396.779.772 1.2 1.126\\\"/><path d=\\\"M60.944 87.436a12.078 12.078 0 0 1-7.12-3.086c-2.477-2.02-4.22-4.75-4.976-7.791c-.054-.27-.045-.55.027-.817a1.83 1.83 0 0 1 .389-.726a2.25 2.25 0 0 1 .81-.595a2.32 2.32 0 0 1 .998-.192h19.744c.343-.007.683.06.996.196a2.3 2.3 0 0 1 .812.591c.182.212.313.46.382.728c.07.267.076.545.018.815c-.756 3.042-2.5 5.771-4.976 7.791a12.078 12.078 0 0 1-7.104 3.086m-9.872-11.417c-.256 0-.32.108-.336.139c.676 2.638 2.206 4.999 4.368 6.742a10.122 10.122 0 0 0 5.84 2.7a10.207 10.207 0 0 0 5.84-2.67c2.155-1.745 3.679-4.106 4.352-6.741a.333.333 0 0 0-.14-.113a.348.348 0 0 0-.18-.026z\\\"/><path fill=\\\"#febbd0\\\" d=\\\"M85.152 77.3c5.17 0 9.36-2.377 9.36-5.308s-4.19-5.307-9.36-5.307c-5.17 0-9.36 2.376-9.36 5.307c0 2.931 4.19 5.307 9.36 5.307zm-48.432 0c5.17 0 9.36-2.377 9.36-5.308s-4.19-5.307-9.36-5.307c-5.17 0-9.36 2.376-9.36 5.307c0 2.931 4.19 5.307 9.36 5.307z\\\"/><path d=\\\"M41.12 69.863a9.052 9.052 0 0 0 4.902-1.425a8.578 8.578 0 0 0 3.254-3.812a8.22 8.22 0 0 0 .508-4.913a8.41 8.41 0 0 0-2.408-4.357a8.92 8.92 0 0 0-4.514-2.33a9.12 9.12 0 0 0-5.096.48a8.755 8.755 0 0 0-3.96 3.131a8.287 8.287 0 0 0-1.486 4.725c0 2.252.927 4.412 2.577 6.005c1.65 1.594 3.888 2.492 6.223 2.496m39.632 0a9.054 9.054 0 0 0 4.915-1.403a8.582 8.582 0 0 0 3.275-3.802a8.22 8.22 0 0 0 .528-4.917a8.408 8.408 0 0 0-2.398-4.368a8.92 8.92 0 0 0-4.512-2.344a9.12 9.12 0 0 0-5.103.473a8.756 8.756 0 0 0-3.967 3.13a8.287 8.287 0 0 0-1.49 4.73c-.004 2.245.914 4.4 2.555 5.994c1.64 1.593 3.869 2.495 6.197 2.507\\\"/><path fill=\\\"#fff\\\" d=\\\"M38.4 61.902a3.4 3.4 0 0 0 1.844-.531c.547-.35.974-.847 1.227-1.43a3.088 3.088 0 0 0 .195-1.847a3.16 3.16 0 0 0-.902-1.639a3.351 3.351 0 0 0-1.696-.878a3.426 3.426 0 0 0-1.916.179a3.29 3.29 0 0 0-1.489 1.176a3.113 3.113 0 0 0-.559 1.776c0 .844.347 1.654.964 2.253a3.374 3.374 0 0 0 2.332.94zm39.632 0a3.4 3.4 0 0 0 1.844-.531c.547-.35.974-.847 1.227-1.43a3.088 3.088 0 0 0 .195-1.847a3.16 3.16 0 0 0-.902-1.639a3.351 3.351 0 0 0-1.696-.878a3.426 3.426 0 0 0-1.916.179a3.29 3.29 0 0 0-1.489 1.176a3.113 3.113 0 0 0-.559 1.776c0 .84.342 1.644.953 2.242c.61.598 1.44.94 2.311.952z\\\"/>\"\n\t\t},\n\t\t\"c\": {\n\t\t\t\"body\": \"<path fill=\\\"#659AD3\\\" d=\\\"M115.4 30.7L67.1 2.9c-.8-.5-1.9-.7-3.1-.7c-1.2 0-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.4 1 3.5l106.8-62c-.6-1.2-1.5-2.1-2.4-2.7\\\"/><path fill=\\\"#03599C\\\" d=\\\"M10.7 95.3c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7c1.2 0 2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c0-.9-.1-1.9-.6-2.8z\\\"/><path fill=\\\"#fff\\\" d=\\\"M85.3 76.1C81.1 83.5 73.1 88.5 64 88.5c-13.5 0-24.5-11-24.5-24.5s11-24.5 24.5-24.5c9.1 0 17.1 5 21.3 12.5l13-7.5c-6.8-11.9-19.6-20-34.3-20c-21.8 0-39.5 17.7-39.5 39.5s17.7 39.5 39.5 39.5c14.6 0 27.4-8 34.2-19.8z\\\"/>\"\n\t\t},\n\t\t\"cairo\": {\n\t\t\t\"body\": \"<path fill=\\\"#f39914\\\" d=\\\"M36.242 20.629c-2.241.554-1.136 2.765-1.5 3.977c-.93 3.085-5.78 4.066-8.206 6.161c-2.374 2.048-3.788 4.441-5.62 6.696c-1.547 1.898-3.476 3.758-3.787 5.933c-.353 2.466-.225 5.252.896 7.612c1.392 2.923 3.035 6.634 5.363 9.239c1.789 2 2.035 2.664 5.043 3.719c.953.433 1.19.647 2.487.916l.256-1.592l1.115-1.313c-1.5-1.833-3.772-2.002-5.084-3.339c-2.19-2.23-2.903-4.508-4.205-7.061c-1.244-2.446-2.863-4.315-2.996-6.913c-.057-1.113-.548-3.111.036-4.115c.387-.666 2.237-1.505 2.865-2.141c1.944-1.972 1.064-4.463 3.314-6.29c2.001-1.626 5.389-2.89 7.76-4.379c1.645-1.031 2.66-1.402 3.015-2.853c.389-1.599-.867-2.782-.752-4.257m55.514 0c.115 1.475-1.14 2.658-.75 4.257c.354 1.45 1.369 1.822 3.013 2.853c2.372 1.488 5.76 2.753 7.76 4.38c2.249 1.827 1.368 4.317 3.312 6.289c.628.636 2.478 1.475 2.866 2.141c.583 1.004.093 3.002.036 4.115c-.133 2.598-1.753 4.467-2.996 6.913c-1.302 2.553-2.017 4.832-4.203 7.061c-1.312 1.337-3.584 1.506-5.084 3.34l1.115 1.312l.254 1.592c1.297-.269 1.536-.483 2.489-.916c3.005-1.055 3.252-1.719 5.04-3.719c2.33-2.605 3.97-6.316 5.367-9.24c1.12-2.359 1.249-5.145.897-7.61c-.311-2.176-2.245-4.036-3.791-5.934c-1.832-2.255-3.247-4.648-5.619-6.696c-2.425-2.095-7.276-3.076-8.206-6.161c-.364-1.212.742-3.423-1.5-3.977M63.991 43.658c-9.634 0-17.443 2.967-17.443 6.626c0 3.2 7.809 2.303 17.443 2.303c9.631 0 17.444.728 17.444-2.303c0-3.66-7.812-6.626-17.444-6.626m-8.693 9.71c-9.955 0-18.64 4.08-23.393 10.151a58.49 58.49 0 0 0-.72 5.762c1.242-.012 26.318-.211 28.556 1.995l4.248 4.19l4.248-4.19c2.237-2.206 27.317-2.007 28.557-1.995a57.966 57.966 0 0 0-.73-5.808c-4.76-6.045-13.424-10.105-23.357-10.105zm41.509 16.085l-.002.196c-7.27-.068-26.532.14-28.304 1.886L64.21 75.77l2.796 6.722l-2.828 34.898c17.515-.13 31.79-18.406 32.728-41.408c.03-.797-3.248-1.665-3.248-2.392c0-.63 3.283-1.412 3.259-2.105a56.196 56.196 0 0 0-.11-2.032m-65.636.001c-.049.673-.085 1.35-.11 2.031c-.024.692 3.259 1.476 3.259 2.106c0 .728-3.28 1.595-3.249 2.393c.939 23.001 15.22 41.277 32.73 41.408l-2.83-34.898l.018-.04v-.001l2.779-6.683l-4.292-4.233c-1.771-1.747-21.033-1.955-28.303-1.887zm-10.102 4.752c-4.267.153-3.498 4.662-1.955 8.664c1.78 4.618 2.583 9.48 4.498 14.047c.88 2.097 2.17 4.143 4.484 4.743c.116-2.645-.288-3.34-1.917-5.305c-1.379-1.66-1.043-3.935-1.904-5.802c-1.123-2.448-1.316-4.907-2.283-7.37c-.427-1.091-2.612-4.38-2.023-5.601c.998-2.07 2.878-.026 3.819.65c1.323.953 2.028.698 3.663.91c.186.025 1.116.678 3.29 1.67l-.254-2.303c-2.98-1.436-3.242-3.065-6.503-3.91c-1.163-.3-2.125-.422-2.915-.393m85.858 0c-.791-.029-1.754.092-2.918.394c-3.258.844-3.518 2.473-6.5 3.909l-.254 2.303c2.174-.992 3.104-1.646 3.29-1.67c1.635-.212 2.338.043 3.66-.91c.942-.677 2.822-2.72 3.82-.65c.589 1.221-1.596 4.51-2.023 5.6c-.966 2.464-1.16 4.923-2.282 7.37c-.862 1.868-.526 4.143-1.902 5.803c-1.63 1.966-2.034 2.66-1.917 5.305c2.314-.6 3.602-2.646 4.48-4.743c1.917-4.568 2.72-9.43 4.5-14.047c1.545-4.002 2.315-8.511-1.954-8.664M63.99 76.214l-2.637 6.339l2.637 32.524c.628-7.755 2.63-32.449 2.635-32.524zM36.74 99.722c-2.095 2.8-2.193 5.089-3.154 7.321c-1.655 3.846-.049 9.048 3.09 11.815c1.898 1.686 4.988 3.017 7.25 4.12c3.148 1.534 6.308 3.538 9.827 4.2c.779.146 2.76.406 2.1-1.104c-.307-.702-2.538-1.44-3.183-1.798c-2.606-1.45-5.135-3.3-7.57-5.073c-2.978-2.152-6.536-3.507-8.878-6.486c-.958-1.218-1.111-1.543-.883-2.945c.217-1.336.422-2.877.703-4.214c.317-1.507.762-2.965 1.567-4.318zm54.52 0l-.868 1.517c.803 1.353 1.249 2.811 1.566 4.319c.282 1.337.486 2.877.704 4.214c.227 1.401.074 1.727-.884 2.945c-2.341 2.978-5.897 4.334-8.876 6.486c-2.434 1.772-4.968 3.623-7.575 5.072c-.644.359-2.875 1.097-3.182 1.798c-.657 1.51 1.32 1.25 2.099 1.105c3.52-.662 6.685-2.667 9.831-4.2c2.262-1.104 5.35-2.435 7.25-4.12c3.138-2.767 4.743-7.969 3.09-11.815c-.962-2.232-1.06-4.522-3.154-7.321z\\\"/><path fill=\\\"#162284\\\" d=\\\"M64 .708c-10.678 0-19.366 8.687-19.366 19.365c0 10.678 8.687 19.366 19.366 19.366s19.365-8.687 19.365-19.366C83.365 9.395 74.678.708 64 .708m0 .635c10.328 0 18.731 8.402 18.731 18.73c0 10.329-8.403 18.732-18.731 18.732c-10.328 0-18.731-8.403-18.731-18.731C45.269 9.746 53.671 1.343 64 1.343m-8.714 10.016v17.428h17.428V11.359H55.57zm.285.285h5.43v5.43h-5.43zm5.714 0h5.43v5.43h-5.43zm5.715 0h5.429v5.43h-5.43zm-3 .714a2 2 0 0 0-2 2a2 2 0 0 0 2 2.001a2 2 0 0 0 2-2a2 2 0 0 0-2-2m-8.429 5h5.43v5.43h-5.43zm5.714 0h5.43v5.43h-5.43zm5.715 0h5.429v5.43h-5.43zm2.714.715a2 2 0 0 0-2 2a2 2 0 0 0 2 2a2 2 0 0 0 2-2a2 2 0 0 0-2-2m-14.143 5h5.43v5.43h-5.43zm5.715 0h5.429v5.43h-5.43zm5.714 0h5.43v5.43H67zm-8.714.714a2 2 0 0 0-2 2a2 2 0 0 0 2 2a2 2 0 0 0 2-2a2 2 0 0 0-2-2m5.714 0a2 2 0 0 0-2 2a2 2 0 0 0 2 2a2 2 0 0 0 2-2a2 2 0 0 0-2-2m5.715 0a2 2 0 0 0-2 2a2 2 0 0 0 2 2a2 2 0 0 0 2-2a2 2 0 0 0-2-2\\\"/>\"\n\t\t},\n\t\t\"cairo-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f39914\\\" d=\\\"M4.67 54.373c-.498.123-.253.614-.334.883c-.206.685-1.282.902-1.821 1.367c-.527.455-.84.986-1.248 1.487c-.343.42-.771.834-.84 1.316c-.078.548-.05 1.166.2 1.69c.308.649.673 1.473 1.19 2.05c.396.445.451.592 1.119.826c.211.096.264.144.552.203l.056-.353l.248-.291c-.333-.407-.837-.445-1.128-.741c-.486-.495-.645-1.001-.934-1.568c-.276-.543-.635-.958-.665-1.534c-.012-.247-.121-.69.008-.913c.086-.148.497-.335.636-.476c.432-.437.236-.99.736-1.396c.444-.36 1.196-.641 1.722-.972c.365-.229.59-.311.67-.633c.086-.355-.193-.618-.167-.945m12.322 0c.025.327-.254.59-.167.945c.079.322.304.404.669.633c.526.33 1.278.611 1.722.972c.5.406.304.959.735 1.396c.14.141.55.328.636.476c.13.222.021.666.008.913c-.03.576-.389.991-.665 1.534c-.289.567-.447 1.073-.933 1.568c-.29.296-.795.334-1.128.74l.248.292l.056.353c.288-.06.34-.107.553-.203c.667-.234.721-.381 1.118-.825c.517-.578.881-1.402 1.192-2.051c.248-.524.277-1.142.199-1.69c-.07-.482-.499-.895-.842-1.316c-.407-.5-.72-1.032-1.247-1.487c-.538-.465-1.615-.682-1.821-1.367c-.081-.27.164-.76-.333-.883m-6.163 5.112c-2.139 0-3.872.658-3.872 1.47c0 .71 1.733.511 3.872.511c2.137 0 3.872.162 3.872-.51c0-.813-1.734-1.472-3.872-1.472m-1.93 2.155c-2.21 0-4.137.905-5.192 2.253a12.95 12.95 0 0 0-.16 1.279c.276-.003 5.842-.047 6.338.443l.943.93l.943-.93c.497-.49 6.063-.446 6.339-.443a12.865 12.865 0 0 0-.162-1.29c-1.057-1.341-2.98-2.242-5.185-2.242zm9.214 3.57v.044c-1.614-.016-5.89.03-6.283.418l-.953.94l.62 1.492l-.627 7.746c3.888-.029 7.056-4.085 7.265-9.19c.006-.178-.721-.37-.721-.532c0-.14.728-.313.723-.467a12.473 12.473 0 0 0-.024-.451m-14.57 0c-.01.15-.018.3-.024.451c-.005.154.724.328.724.468c0 .161-.728.353-.721.53c.208 5.106 3.378 9.163 7.264 9.192l-.628-7.746l.004-.01l.617-1.483l-.953-.94c-.393-.387-4.668-.433-6.282-.418zm-2.242 1.055c-.947.034-.776 1.035-.434 1.923c.395 1.025.574 2.104.999 3.118c.195.465.481.92.995 1.053c.026-.587-.064-.741-.426-1.178c-.305-.368-.23-.873-.422-1.288c-.25-.543-.292-1.089-.507-1.635c-.095-.243-.58-.973-.449-1.244c.222-.46.639-.005.848.145c.293.211.45.155.813.202c.041.005.248.15.73.37l-.056-.51c-.662-.32-.72-.681-1.444-.869a2.299 2.299 0 0 0-.647-.087m19.057 0a2.304 2.304 0 0 0-.647.087c-.723.188-.781.55-1.443.868l-.056.511c.482-.22.688-.365.73-.37c.363-.047.519.01.812-.202c.21-.15.627-.604.848-.145c.13.271-.354 1.001-.449 1.243c-.214.547-.257 1.093-.507 1.636c-.19.415-.116.92-.422 1.288c-.361.436-.451.59-.425 1.178c.513-.133.8-.588.994-1.053c.426-1.014.604-2.093 1-3.118c.342-.888.513-1.89-.435-1.923m-9.53.446l-.585 1.407l.585 7.219l.585-7.22zm-6.049 5.218c-.465.621-.486 1.13-.7 1.625c-.367.853-.01 2.008.686 2.622c.422.374 1.107.67 1.61.915c.698.34 1.4.785 2.18.932c.173.032.613.09.467-.245c-.068-.156-.564-.32-.707-.4c-.578-.321-1.14-.732-1.68-1.125c-.661-.478-1.45-.779-1.97-1.44c-.213-.27-.247-.343-.197-.654c.049-.296.094-.638.156-.935c.07-.335.17-.658.348-.959zm12.102 0l-.193.336c.179.3.278.624.348.959c.063.297.108.639.156.935c.05.311.017.384-.196.654c-.52.661-1.309.962-1.97 1.44c-.54.393-1.103.804-1.681 1.126c-.143.08-.639.243-.707.399c-.146.335.293.277.466.245c.781-.147 1.484-.592 2.182-.932c.502-.245 1.188-.54 1.61-.915c.696-.614 1.052-1.769.685-2.622c-.213-.496-.235-1.004-.7-1.625\\\"/><path fill=\\\"#162284\\\" d=\\\"M10.831 49.952a4.303 4.303 0 0 0-4.298 4.298a4.303 4.303 0 0 0 4.298 4.299a4.303 4.303 0 0 0 4.298-4.299a4.303 4.303 0 0 0-4.298-4.298m0 .14a4.162 4.162 0 0 1 4.158 4.158a4.162 4.162 0 0 1-4.158 4.158a4.162 4.162 0 0 1-4.157-4.158a4.162 4.162 0 0 1 4.157-4.157m-1.934 2.224v3.869h3.868v-3.869H8.96zm.063.064h1.205v1.205H8.96zm1.269 0h1.205v1.205h-1.205zm1.268 0h1.205v1.205h-1.205zm-.666.158a.444.444 0 0 0-.444.444a.444.444 0 0 0 .444.444a.444.444 0 0 0 .444-.444a.444.444 0 0 0-.444-.444m-1.87 1.11h1.204v1.205H8.96zm1.268 0h1.205v1.205h-1.205zm1.268 0h1.205v1.205h-1.205zm.602.158a.444.444 0 0 0-.443.444a.444.444 0 0 0 .443.444a.444.444 0 0 0 .444-.444a.444.444 0 0 0-.444-.444m-3.139 1.11h1.205v1.205H8.96zm1.269 0h1.205v1.205h-1.205zm1.268 0h1.205v1.205h-1.205zm-1.934.159a.444.444 0 0 0-.444.444a.444.444 0 0 0 .444.444a.444.444 0 0 0 .444-.444a.444.444 0 0 0-.444-.444m1.268 0a.444.444 0 0 0-.444.444a.444.444 0 0 0 .444.444a.444.444 0 0 0 .444-.444a.444.444 0 0 0-.444-.444m1.269 0a.444.444 0 0 0-.444.444a.444.444 0 0 0 .444.444a.444.444 0 0 0 .444-.444a.444.444 0 0 0-.444-.444\\\"/><path fill=\\\"#f39914\\\" d=\\\"M123.33 54.373c.498.123.252.614.333.883c.206.685 1.283.902 1.821 1.367c.527.455.841.986 1.248 1.487c.343.42.772.834.84 1.316c.079.548.05 1.166-.199 1.69c-.309.649-.673 1.473-1.19 2.05c-.397.445-.452.592-1.119.826c-.212.096-.264.144-.552.203l-.057-.353l-.247-.291c.332-.407.837-.445 1.128-.741c.486-.495.644-1.001.933-1.568c.276-.543.636-.958.665-1.534c.013-.247.122-.69-.008-.913c-.086-.148-.496-.335-.636-.476c-.431-.437-.236-.99-.735-1.396c-.444-.36-1.196-.641-1.723-.972c-.365-.229-.59-.311-.669-.633c-.086-.355.193-.618.167-.945m-12.322 0c-.025.327.253.59.167.945c-.079.322-.304.404-.67.633c-.526.33-1.278.611-1.722.972c-.499.406-.303.959-.735 1.396c-.14.141-.55.328-.636.476c-.13.222-.02.666-.008.913c.03.576.389.991.665 1.534c.289.567.448 1.073.933 1.568c.291.296.795.334 1.128.74l-.247.292l-.057.353c-.287-.06-.34-.107-.552-.203c-.667-.234-.722-.381-1.119-.825c-.517-.578-.881-1.402-1.191-2.051c-.249-.524-.277-1.142-.199-1.69c.069-.482.498-.895.841-1.316c.407-.5.721-1.032 1.248-1.487c.538-.465 1.615-.682 1.821-1.367c.08-.27-.165-.76.333-.883m6.163 5.112c2.138 0 3.871.658 3.871 1.47c0 .71-1.733.511-3.871.511s-3.872.162-3.872-.51c0-.813 1.734-1.472 3.872-1.472m1.93 2.155c2.209 0 4.137.905 5.192 2.253c.073.418.127.844.16 1.279c-.276-.003-5.842-.047-6.339.443l-.943.93l-.943-.93c-.496-.49-6.063-.446-6.338-.443c.032-.439.087-.868.162-1.29c1.056-1.341 2.98-2.242 5.184-2.242zm-9.214 3.57v.044c1.614-.016 5.89.03 6.282.418l.953.94l-.62 1.492l.627 7.746c-3.887-.029-7.056-4.085-7.264-9.19c-.007-.178.72-.37.72-.532c0-.14-.728-.313-.723-.467c.006-.151.014-.302.025-.451m14.569 0c.01.15.019.3.024.451c.005.154-.723.328-.723.468c0 .161.728.353.72.53c-.208 5.106-3.377 9.163-7.264 9.192l.628-7.746l-.004-.01l-.617-1.483l.953-.94c.393-.387 4.668-.433 6.282-.418zm2.242 1.055c.947.034.776 1.035.434 1.923c-.395 1.025-.573 2.104-.998 3.118c-.196.465-.482.92-.996 1.053c-.026-.587.064-.741.426-1.178c.306-.368.231-.873.422-1.288c.25-.543.293-1.089.507-1.635c.095-.243.58-.973.45-1.244c-.222-.46-.64-.005-.848.145c-.294.211-.45.155-.814.202c-.04.005-.247.15-.73.37l.057-.51c.661-.32.72-.681 1.443-.869c.258-.066.472-.093.647-.087m-19.057 0c.176-.006.39.02.648.087c.723.188.78.55 1.442.868l.057.511c-.483-.22-.69-.365-.73-.37c-.363-.047-.52.01-.813-.202c-.209-.15-.626-.604-.848-.145c-.13.271.355 1.001.45 1.243c.214.547.257 1.093.506 1.636c.191.415.117.92.422 1.288c.362.436.451.59.426 1.178c-.514-.133-.8-.588-.995-1.053c-.425-1.014-.604-2.093-.999-3.118c-.343-.888-.513-1.89.434-1.923m9.53.446l.586 1.407l-.586 7.219l-.585-7.22zm6.05 5.218c.464.621.486 1.13.7 1.625c.366.853.01 2.008-.687 2.622c-.421.374-1.107.67-1.61.915c-.698.34-1.4.785-2.18.932c-.173.032-.613.09-.466-.245c.068-.156.563-.32.706-.4c.579-.321 1.14-.732 1.68-1.125c.661-.478 1.451-.779 1.971-1.44c.213-.27.247-.343.196-.654c-.048-.296-.094-.638-.156-.935a3.08 3.08 0 0 0-.348-.959zm-12.103 0l.193.336c-.178.3-.277.624-.348.959c-.062.297-.108.639-.156.935c-.05.311-.016.384.196.654c.52.661 1.31.962 1.97 1.44c.54.393 1.103.804 1.682 1.126c.143.08.638.243.706.399c.146.335-.293.277-.466.245c-.781-.147-1.484-.592-2.182-.932c-.502-.245-1.188-.54-1.609-.915c-.697-.614-1.053-1.769-.686-2.622c.214-.496.235-1.004.7-1.625\\\"/><path fill=\\\"#162284\\\" d=\\\"M117.17 49.952a4.303 4.303 0 0 1 4.298 4.298c0 2.37-1.928 4.299-4.298 4.299s-4.298-1.928-4.298-4.299a4.303 4.303 0 0 1 4.298-4.298m0 .14a4.162 4.162 0 0 0-4.157 4.158a4.162 4.162 0 0 0 4.157 4.158a4.162 4.162 0 0 0 4.158-4.158a4.162 4.162 0 0 0-4.158-4.157m1.934 2.224v3.869h-3.868v-3.869h3.805zm-.063.064h-1.205v1.205h1.205zm-1.268 0h-1.206v1.205h1.206zm-1.269 0H115.3v1.205h1.205zm.666.158a.444.444 0 0 1 .444.444a.444.444 0 0 1-.444.444a.444.444 0 0 1-.444-.444a.444.444 0 0 1 .444-.444m1.87 1.11h-1.204v1.205h1.205zm-1.268 0h-1.205v1.205h1.205zm-1.268 0H115.3v1.205h1.205zm-.602.158a.444.444 0 0 1 .444.444a.444.444 0 0 1-.444.444a.444.444 0 0 1-.444-.444a.444.444 0 0 1 .444-.444m3.139 1.11h-1.205v1.205h1.205zm-1.269 0h-1.205v1.205h1.205zm-1.268 0h-1.205v1.205h1.205zm1.934.159a.444.444 0 0 1 .444.444a.444.444 0 0 1-.444.444a.444.444 0 0 1-.444-.444a.444.444 0 0 1 .444-.444m-1.268 0a.444.444 0 0 1 .444.444a.444.444 0 0 1-.444.444a.444.444 0 0 1-.444-.444a.444.444 0 0 1 .444-.444m-1.269 0a.444.444 0 0 1 .444.444a.444.444 0 0 1-.444.444a.444.444 0 0 1-.444-.444a.444.444 0 0 1 .444-.444m-51.893-1.961a1.507 1.507 0 0 0-1.55 1.506a1.507 1.507 0 1 0 3.013 0a1.507 1.507 0 0 0-1.463-1.506m-29.041 5.996c-4.608 0-7.682 3.308-7.682 7.887c0 4.313 3.133 7.888 7.682 7.888c1.004 0 2.332-.089 3.484-.62l-.207-2.483c-.856.561-2.037.857-2.982.857c-3.574 0-5.022-2.954-5.022-5.642c0-2.866 1.742-5.643 4.844-5.643c.886 0 1.95.208 3.014.65l.236-2.304c-.797-.325-2.244-.59-3.367-.59m14.699 0c-1.92 0-3.574.59-4.963 1.418l.149 2.363c1.122-.945 2.805-1.537 4.37-1.537c2.777 0 3.723 1.33 3.723 3.93c-1.093-.06-1.86-.059-2.953-.059c-2.865 0-7.002 1.182-7.002 4.963c0 3.28 2.274 4.698 5.524 4.698c2.54 0 4.018-1.39 4.668-2.305h.058v1.95h2.6c-.06-.444-.117-1.24-.117-2.954v-6.234c0-4.107-1.744-6.233-6.057-6.233m28.984 0c-1.595 0-3.191 1.122-3.93 2.688h-.058v-2.334h-2.6V74.53h2.777v-6.854c0-3.781 1.624-6.144 4.106-6.144c.473 0 1.035.058 1.537.265v-2.48c-.59-.118-1.005-.207-1.832-.207zm14.344 0c-4.608 0-7.68 3.308-7.68 7.887c0 4.313 3.13 7.888 7.68 7.888c4.52 0 7.652-3.575 7.652-7.888c0-4.579-3.073-7.887-7.652-7.887m-30.42.354V74.53h2.777V59.465zm30.42 1.89c2.954 0 4.697 2.777 4.697 5.643c0 2.688-1.448 5.642-4.697 5.642c-3.279 0-4.727-2.954-4.727-5.642c0-2.866 1.743-5.643 4.727-5.643m-41.82 5.938c.59 0 1.18.06 1.772.06v1.328c0 2.245-1.448 3.96-4.196 3.96c-1.27 0-2.806-.857-2.806-2.452c0-2.659 3.724-2.896 5.23-2.896\\\"/>\"\n\t\t},\n\t\t\"cakephp\": {\n\t\t\t\"body\": \"<path fill=\\\"#d43d44\\\" d=\\\"M2 73.69V93c0 10.69 27.75 19.35 62 19.35V93C29.75 93 2 84.36 2 73.69m62-19.35l48.5 12c8.44-3.3 13.51-7.5 13.51-12V35c0-10.68-27.76-19.35-62-19.35S2 24.29 2 35v19.34C2 65 29.75 73.69 64 73.69zm48.49 31.4L64 73.69V93l48.5 12.05c8.43-3.27 13.5-7.46 13.5-12.05V73.69c0 4.55-5.07 8.74-13.51 12.05\\\"/>\"\n\t\t},\n\t\t\"cakephp-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#d43d44\\\" d=\\\"m17.73 61.51l12.49 3.1c2.17-.85 3.48-1.93 3.48-3.1v-5c0-2.75-7.15-5-16-5s-16 2.23-16 5v5c0 2.75 7.15 5 16 5v-5z\\\"/><path fill=\\\"#d43d44\\\" d=\\\"m30.23 69.6l-12.49-3.1v5l12.49 3.11c2.17-.85 3.48-1.93 3.48-3.11v-5c0 1.17-1.31 2.25-3.48 3.1M1.77 66.5v5c0 2.75 7.15 5 16 5v-5c-8.85-.02-16-2.25-16-5\\\"/><path fill=\\\"#414143\\\" d=\\\"M47.42 71a6.69 6.69 0 0 1-6.8-6.82a6.74 6.74 0 0 1 6.91-6.85a6.84 6.84 0 0 1 5.22 2L50.9 61.5a4.89 4.89 0 0 0-3.39-1.5a3.93 3.93 0 0 0-3.84 4.13a3.93 3.93 0 0 0 3.84 4.16A4.78 4.78 0 0 0 51 66.78l1.86 1.87A6.76 6.76 0 0 1 47.42 71m13.4-.2v-1.1a3.89 3.89 0 0 1-3.07 1.3c-1.91 0-3.48-1.1-3.48-3.11c0-2.22 1.68-3.24 4.09-3.24a7.19 7.19 0 0 1 2.48.42v-.17c0-1.19-.74-1.86-2.18-1.86a7.46 7.46 0 0 0-2.8.55l-.72-2.2a9 9 0 0 1 3.94-.82c3.14 0 4.52 1.63 4.52 4.38v5.85zm.06-4.09a4.42 4.42 0 0 0-1.88-.38c-1.23 0-2 .49-2 1.4c0 .78.64 1.23 1.57 1.23c1.34 0 2.25-.73 2.25-1.78zm11.73 4.09L70 66.65l-1 1.06v3.09h-2.92V57H69v7.37l3.37-3.69h3.44l-3.86 4l4 6.15h-3.34zm13.63-4.07h-7.06a2.35 2.35 0 0 0 2.48 2a3.33 3.33 0 0 0 2.46-1l1.65 1.46a5.36 5.36 0 0 1-9.45-3.35a5.05 5.05 0 0 1 5-5.28c3.39 0 4.94 2.63 4.94 5.51c.01.22 0 .39-.02.66m-4.9-4a2.26 2.26 0 0 0-2.2 2.16h4.34a2.17 2.17 0 0 0-2.15-2.12z\\\"/><path fill=\\\"#d43d44\\\" d=\\\"M93.85 66.82h-2.22v4h-2.91V57.54h5.41c3.16 0 5.07 1.87 5.07 4.58c0 3.11-2.38 4.7-5.35 4.7m2.4-4.64c0-1.31-.91-2-2.37-2h-2.25v4.05h2.31a2.05 2.05 0 0 0 2.31-2zm13.4 8.62v-5.33h-5.38v5.33h-2.91V57.54h2.91v5.24h5.38v-5.24h2.92V70.8zm11.23-3.98h-2.21v4h-2.92V57.54h5.41c3.16 0 5.07 1.87 5.07 4.58c0 3.11-2.38 4.7-5.35 4.7m2.4-4.64c0-1.31-.91-2-2.37-2h-2.25v4.05H121a2.05 2.05 0 0 0 2.31-2z\\\"/>\"\n\t\t},\n\t\t\"canva\": {\n\t\t\t\"body\": \"<g fill=\\\"#00c4cc\\\"><path d=\\\"M59.39.152c-.484.051-1.995.23-3.328.387c-5.374.613-11.468 2.227-16.816 4.48C19.891 13.106 5.324 30.849 1.305 51.2C.359 56.04.129 58.418.129 64c0 7.195.715 12.16 2.61 18.434c6.195 20.53 22.323 36.632 42.906 42.851c6.195 1.871 11.187 2.586 18.355 2.586c7.195 0 12.16-.715 18.434-2.61c20.53-6.195 36.632-22.323 42.851-42.906c1.871-6.195 2.586-11.187 2.586-18.355c0-3.047-.152-6.527-.332-7.809c-2.074-14.796-8.168-27.238-18.328-37.402C99.07 8.703 86.68 2.586 72.19.512c-1.996-.282-11.238-.54-12.8-.36m-20.863 40.32c1.36.41 1.996.794 2.918 1.715c1.793 1.82 2.203 2.817 2.203 5.555c0 2.051-.078 2.434-.691 3.508c-1.18 1.996-3.918 3.84-5.812 3.89c-1.333.028-1.278-.562.18-2.097c1.945-2.023 2.226-2.79 2.226-5.813c-.024-2.917-.383-3.914-1.739-4.734c-1.128-.691-2.355-.64-4.148.203c-4.66 2.23-9.703 9.653-11.672 17.258c-2.613 10.137 2.02 18.25 9.649 16.867c2.226-.41 6.425-2.558 8.246-4.25c1.508-1.379 1.508-1.406 1.66-3.12c.336-3.587 2.867-7.169 6.25-8.833c1.558-.77 1.945-.844 4.043-.844c1.996 0 2.457.102 3.43.637c3.097 1.77 2.457 5.89-.895 5.89c-1.945 0-2.945-1-1.535-1.534c1.383-.512.867-2.434-.742-2.868c-1.895-.488-4.047.793-5.403 3.25c-1.64 2.97-1.715 6.504-.156 8.114c1.512 1.613 3.406.336 4.867-3.329c.766-1.867 1.867-2.867 3.149-2.867c1.125 0 1.332.692.843 2.793c-.718 3.25-.23 4.094 1.793 3.098c.664-.309 1.766-1.023 2.43-1.535l1.254-1l.848-4.43c.922-4.965 1.277-5.633 3.172-5.988c1.82-.336 2.23.562 1.562 3.402l-.36 1.59l1.333-1.36c3.148-3.226 7.015-4.812 8.347-3.48c.715.715.637 1.613-.386 4.785c-.485 1.512-1.153 3.895-1.457 5.25c-.461 2.047-.489 2.535-.23 2.868c.82.972 3.327-.028 5.554-2.204l1.305-1.277l.156-2.844c.152-3.277.457-4.453 1.328-5.504c.82-.972 2.305-1.687 3.098-1.484c.793.207.793.973.078 3.227c-1 3.097-.895 10.238.129 10.238c.41 0 2.507-2.2 3.84-4.043l.996-1.36l-.793-.816c-1.383-1.46-1.715-2.406-1.715-4.789c0-1.738.129-2.379.562-3.227c.719-1.328 1.844-2.3 3.176-2.687c1.406-.434 3.148.281 3.863 1.562c.719 1.305.54 4.223-.383 6.223l-.664 1.457h.895c1.23 0 1.715-.305 3.918-2.379c1.152-1.101 2.484-2.05 3.48-2.511c3.918-1.84 8.528-.895 9.293 1.921c.64 2.254-.765 3.84-3.226 3.66c-1.766-.128-2.098-.59-1.074-1.456c1.843-1.54 0-3.508-2.637-2.793c-1.434.386-3.047 1.996-3.89 3.867c-1.692 3.738-.794 8.14 1.636 8.14c.973 0 2.691-1.921 3.355-3.789c.793-2.152 2.457-3.507 3.711-3.02c.692.255.743.946.309 3.122c-.488 2.383-.563 4.61-.18 5.633c.153.382.614 1.101 1.051 1.586c.816.921.844 1.254.152 1.691c-.332.23-.77.129-1.843-.46c-1.485-.77-2.766-2.153-3.227-3.458l-.281-.766l-1.024.766c-.59.41-1.511.871-2.047 1.023c-2.125.563-4.738-.894-5.964-3.351c-.489-.95-.641-3.738-.282-4.813c.204-.59.204-.59-.617-.18c-.433.231-1.355.485-2.07.563c-1.18.13-1.36.258-2.535 1.742c-1.664 2.07-4.61 4.864-5.813 5.454c-2.558 1.277-3.402.918-4.07-1.72l-.461-1.765l-1.102.973c-1.406 1.23-4.222 2.715-5.836 3.074c-1.535.332-3.175-.156-3.84-1.18c-.995-1.535-.663-4.785.922-9.164c1.176-3.25.333-3.3-2.636-.203c-2.203 2.328-3.149 3.992-3.762 6.578c-.64 2.688-1.41 3.66-3.148 4.07c-1.051.231-1.54-.41-1.332-1.816l.152-1.129l-.973.668c-1.383.946-3.125 1.817-4.328 2.149c-1.203.332-2.789-.024-3.172-.692c-.691-1.175-.691-1.175-1.765-.332c-2.332 1.895-5.66 1.356-7.348-1.152l-.54-.793l-1.687 1.562c-4.867 4.454-10.957 6.45-15.464 5.067c-5.735-1.738-8.907-6.656-8.856-13.746c.024-7.117 3.172-14.617 8.473-20.172c2.996-3.125 5.812-4.969 8.68-5.66c2.07-.512 3.328-.485 5.296.129zm0 0\\\"/><path d=\\\"M90.418 58.676c-.563.562-.356 2.816.36 4.25c.359.742.742 1.332.87 1.332c.102 0 .332-.59.512-1.309c.64-2.66-.512-5.504-1.742-4.273m0 0\\\"/></g>\"\n\t\t},\n\t\t\"capacitor\": {\n\t\t\t\"body\": \"<path fill=\\\"#53b9ff\\\" d=\\\"M19.93 27.059L.156 46.859l30.496 30.59L0 108.191l19.715 19.813L50.43 97.25l30.547 30.531l19.777-19.8Zm0 0\\\"/><path fill=\\\"#119eff\\\" d=\\\"M70.258 77.45L50.43 97.25l30.547 30.531l19.777-19.8Zm0 0\\\"/><path fill-opacity=\\\".2\\\" d=\\\"M70.258 77.45L50.43 97.25l7.633 7.59Zm0 0\\\"/><path fill=\\\"#53b9ff\\\" d=\\\"M97.285 50.492L128 19.738L108.215 0L77.512 30.691L46.957.156L27.184 19.957l80.82 80.922l19.777-19.8Zm0 0\\\"/><path fill=\\\"#119eff\\\" d=\\\"m57.68 50.492l19.828-19.8L46.957.155L27.184 19.957Zm0 0\\\"/><path fill-opacity=\\\".2\\\" d=\\\"m57.68 50.492l19.828-19.8l-7.633-7.594Zm0 0\\\"/>\"\n\t\t},\n\t\t\"capacitor-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M66.29 59.285c3.468 0 5.5 2.711 5.5 6.082c0 3.38-2.032 6.082-5.5 6.082c-1.688 0-2.919-.71-3.54-1.504v5.168h-3.242V59.555H62.5v1.422c.746-1.063 2.102-1.692 3.79-1.692m-28.267-3.273c4.485 0 6.758 3.047 7.168 5.695h-3.449C41.332 60.113 39.86 59 37.992 59c-2.476 0-4.258 1.965-4.258 4.758c0 2.762 1.782 4.722 4.258 4.722c1.867 0 3.34-1.109 3.75-2.703h3.45c-.41 2.649-2.684 5.696-7.169 5.696c-4.457 0-7.546-3.446-7.546-7.715c0-4.301 3.09-7.746 7.546-7.746m13.278 3.273c1.687 0 3.031.617 3.789 1.692v-1.422h2.992V71.18H55.09v-1.418c-.75 1.062-2.102 1.687-3.79 1.687c-3.468 0-5.5-2.71-5.5-6.082c0-3.379 2.032-6.082 5.5-6.082Zm26.754 0c1.687 0 3.03.617 3.789 1.692v-1.422h2.992V71.18h-2.992v-1.418c-.75 1.062-2.102 1.687-3.79 1.687c-3.468 0-5.5-2.71-5.5-6.082c0-3.379 2.032-6.082 5.5-6.082Zm13.699 0c3.715 0 5.476 2.555 5.703 4.528h-3.332c-.254-.997-1.207-1.727-2.395-1.727c-1.738 0-2.738 1.332-2.738 3.281c0 1.953 1 3.285 2.738 3.285c1.188 0 2.141-.73 2.395-1.73h3.332c-.227 1.976-1.988 4.527-5.703 4.527c-3.473 0-5.996-2.617-5.996-6.082s2.523-6.082 5.996-6.082m22.465 0c3.828 0 6.273 2.778 6.273 6.082c0 3.309-2.445 6.082-6.273 6.082c-3.832 0-6.278-2.773-6.278-6.082c0-3.305 2.446-6.082 6.278-6.082m13.394.153c.114 0 .387.023.387.023v2.957s-.34-.063-.629-.063c-1.867 0-2.844.91-2.844 3.043v5.797h-3.207V59.547h2.957v1.508c.426-.692 1.332-1.617 3.336-1.617m-21.625-2.778v2.887h2.492v2.57h-2.492v9.07h-3.242V56.66Zm-4.691 2.887V71.18H98.05V59.547Zm-49.309 2.516c-1.8 0-2.941 1.417-2.941 3.304c0 1.887 1.14 3.309 2.941 3.309s2.942-1.422 2.942-3.309c.008-1.887-1.133-3.305-2.942-3.305Zm13.614 0c-1.801 0-2.942 1.417-2.942 3.304c-.008 1.887 1.133 3.309 2.942 3.309c1.8 0 2.941-1.422 2.941-3.309c0-1.887-1.14-3.305-2.941-3.305Zm13.14 0c-1.8 0-2.941 1.417-2.941 3.304c0 1.887 1.14 3.309 2.941 3.309s2.942-1.422 2.942-3.309c.007-1.887-1.133-3.305-2.942-3.305Zm35.477 0c-1.711 0-3.031 1.218-3.031 3.304s1.32 3.309 3.03 3.309c1.712 0 3.032-1.223 3.032-3.309c0-2.086-1.32-3.305-3.031-3.305Zm-14.547-7.266c1.144 0 1.965.8 1.965 1.91c0 1.113-.82 1.89-1.965 1.89c-1.14 0-1.961-.777-1.961-1.89c0-1.11.82-1.91 1.96-1.91Zm0 0\\\"/><path fill=\\\"#53b9ff\\\" d=\\\"M3.797 56.902L.03 60.676l5.809 5.828L0 72.359l3.754 3.774l5.851-5.86l5.82 5.817l3.766-3.774Zm0 0\\\"/><path fill=\\\"#119eff\\\" d=\\\"m13.383 66.504l-3.778 3.77l5.82 5.816l3.766-3.774Zm0 0\\\"/><path fill-opacity=\\\".2\\\" d=\\\"m13.383 66.504l-3.778 3.77l1.454 1.445Zm0 0\\\"/><path fill=\\\"#53b9ff\\\" d=\\\"m18.531 61.367l5.852-5.855l-3.77-3.762l-5.847 5.848l-5.82-5.817l-3.77 3.77l15.398 15.414l3.766-3.77Zm0 0\\\"/><path fill=\\\"#119eff\\\" d=\\\"m10.988 61.367l3.778-3.77l-5.82-5.816l-3.77 3.77Zm0 0\\\"/><path fill-opacity=\\\".2\\\" d=\\\"m10.988 61.367l3.774-3.77l-1.453-1.449Zm0 0\\\"/>\"\n\t\t},\n\t\t\"carbon\": {\n\t\t\t\"body\": \"<path d=\\\"M53.316 127.094c-13.828-2.641-24.859-8.398-34.437-17.973C-1.914 88.328-5.875 56.875 9.074 31.309C17.551 16.813 31.715 6.371 49.047 1.836c8.141-2.129 21.766-2.129 29.906 0c14.188 3.711 25.898 11.066 34.387 21.586c6.461 8.02 10.141 15.367 12.824 25.625c2.129 8.141 2.129 21.766 0 29.906c-6.277 24.004-23.273 41.016-47.125 47.18c-6.629 1.715-19.293 2.188-25.723.961m22.191-24.953c4.637-1.891 8.102-4.883 11.227-9.691c2.133-3.285 4.145-8.914 4.145-11.605c0-1.41-.219-1.484-4.492-1.484c-4.996 0-4.973-.02-6.383 5.574c-.922 3.66-4.203 7.77-7.684 9.625c-2.488 1.328-3.582 1.508-8.047 1.328c-4.32-.172-5.594-.488-7.746-1.91c-3.113-2.062-6.289-6.687-7.605-11.066c-2.383-7.949-2.66-26.223-.539-35.535c2.184-9.574 8.395-15.359 16.504-15.371c7.852-.012 13.488 4.969 15.754 13.918l.688 2.719h9.727l-.41-2.996c-.227-1.648-1.316-4.961-2.422-7.355c-6.055-13.141-21.758-18.172-35.551-11.391c-6.379 3.137-11.187 9.598-14.059 18.895c-1.73 5.609-1.73 30.805 0 36.414c2.621 8.496 7.402 15.402 12.887 18.613c6.652 3.898 16.371 4.434 24.008 1.32zm0 0\\\"/>\"\n\t\t},\n\t\t\"cassandra\": {\n\t\t\t\"body\": \"<path fill=\\\"#bae6fa\\\" d=\\\"M63.797 38.701c-12.142.273-24.5 4.01-38.479 11.752c-2.538 2.933-3.848 6.112-3.57 9.34c.94 10.97 19.725 18.315 41.956 16.408c22.235-1.908 39.495-12.346 38.554-23.313c-.177-2.058-.982-3.99-2.32-5.755c-12.72-5.7-24.335-8.699-36.14-8.432Z\\\"/><path fill=\\\"#fff\\\" d=\\\"M65.369 38.684c-9.877-.018-19.85 2.232-30.689 7.062c-.455 1.74-.7 3.55-.7 5.415c0 13.01 11.748 23.559 26.24 23.559c14.49 0 26.239-10.548 26.239-23.559c0-3.506-.862-6.83-2.393-9.82c-6.32-1.722-12.49-2.645-18.697-2.657\\\" opacity=\\\".35\\\"/><path fill=\\\"#fff\\\" d=\\\"M60.22 37.763c-4.697-.287-12.79 2.163-19.537 4.607a20.031 20.031 0 0 0-1.594 7.846c0 11.4 10.335 20.642 21.268 20.642c10.86 0 20.47-9.258 21.268-20.64c.26-3.709-1.017-7.2-2.787-10.214c-6.997-1.23-14.42-1.984-18.619-2.24\\\"/><path fill=\\\"#353333\\\" d=\\\"M48.17 48.72c.576-1.276 1.448-1.9 2.293-2.969c-.093-.253-.3-1.082-.3-1.37a2.322 2.322 0 0 1 3.178-2.155a16.913 16.913 0 0 1 13.986-3.07c.466.105.92.231 1.367.371c-5.025-.697-10.688 1.083-14.54 4.192c.117.277.443 1.07.443 1.391c0 1.282-.829 1.593-2.11 1.593c-.293 0-.57-.056-.828-.153c-.87 1.168-1.937 3.394-2.459 4.786c2.13 1.906 4.056 2.595 6.563 3.534c-.005-.12.086-.23.086-.352c0-3.866 3.403-7.007 7.27-7.007a6.993 6.993 0 0 1 6.892 5.824c1.73-1.1 3.4-1.943 4.674-3.573c-.296-.362-.618-1.39-.618-1.895c0-1.162.944-2.105 2.109-2.105c.164 0 .322.023.477.06a18.418 18.418 0 0 0 1.445-4.192c-6.045-4.474-17.74-3.863-17.74-3.863s-9.308-.486-15.608 2.584c.42 3.038 1.632 5.925 3.42 8.37\\\"/><path fill=\\\"#353333\\\" d=\\\"M77.062 46.977c.429.384.662.723.844 1.052c.567 1.016-.568 1.947-1.73 1.947a2.12 2.12 0 0 1-.347-.035c-1.311 2.047-3.606 4.674-5.646 5.996c3.128.513 6.077 1.764 8.424 3.7c1.708-3.063 3.02-7.483 3.02-11.237c0-2.86-1.264-4.955-3.167-6.492c-.101 1.531-.92 3.674-1.398 5.07m-25.384 19.39c1.041-2.877 3.605-5.107 6.03-7.068c-.356-.486-.887-1.688-1.108-2.258a16.965 16.965 0 0 1-7.605-4.812c-.013.065-.03.13-.048.194a15.34 15.34 0 0 0-.26 5.102a3.047 3.047 0 0 1 2.486 2.998c0 .885-.777 2.166-1.378 2.725c.655 1.413 1.1 2.095 1.883 3.12\\\"/><path fill=\\\"#353333\\\" d=\\\"M51.495 68.785c-1.244-1.237-2.103-3.702-2.91-5.25a2.93 2.93 0 0 1-.463.04c-1.686 0-3.452-1.416-3.052-3.053c.222-.906.846-1.498 1.865-1.992c-.233-1.877-.296-4.575.14-6.525c.125-.557.39-.82.566-1.35c-1.86-2.723-3.063-6.296-3.063-9.839c0-.13.008-.257.01-.385c-3.143 1.576-5.5 4.06-5.5 7.967c0 8.648 4.98 17.132 12.39 20.456c.006-.023.01-.047.017-.07M69.717 56.83a6.997 6.997 0 0 1-6.599 4.68a6.95 6.95 0 0 1-4.318-1.5c-2.454 1.91-4.68 5.267-5.81 8.179c.506.545.86.996 1.43 1.48c1.716.448 4.08 0 5.937 0c7.473 0 14.09-3.325 17.883-9.153c-2.523-1.747-5.498-3.409-8.523-3.686\\\"/><path fill=\\\"#1185b0\\\" d=\\\"M47.978 49.73a16.908 16.908 0 0 1 2.143-3.524a2.323 2.323 0 0 1 2.174-3.135c.301 0 .59.06.855.165a16.922 16.922 0 0 1 15.353-2.698c-5.026-.696-10.217.843-14.07 3.952a2.322 2.322 0 0 1-2.966 3.07a15.664 15.664 0 0 0-2.103 3.852c1.83 1.971 4.074 3.53 6.582 4.468c-.006-.12-.017-.237-.017-.36a6.997 6.997 0 0 1 6.997-6.999c3.466 0 6.335 2.52 6.895 5.824a18.132 18.132 0 0 0 4.537-4.142a2.086 2.086 0 0 1-.481-1.324c0-1.164.943-2.107 2.107-2.107c.164 0 .322.024.477.06a18.403 18.403 0 0 0 1.445-4.19c-6.043-4.477-17.74-3.866-17.74-3.866s-9.308-.486-15.608 2.586c.421 3.037 1.632 5.926 3.42 8.368\\\"/><path fill=\\\"#1185b0\\\" d=\\\"M77.388 47.321c.429.384.703.937.703 1.558a2.108 2.108 0 0 1-2.107 2.107c-.118 0-.233-.017-.347-.036a17.043 17.043 0 0 1-5.087 5.118a17.025 17.025 0 0 1 8.198 3.684a21.158 21.158 0 0 0 2.687-10.342c0-2.86-1.263-4.954-3.167-6.49c-.1 1.53-.4 3.006-.88 4.401M52 67.06a16.978 16.978 0 0 1 5.278-7.42a6.971 6.971 0 0 1-.87-1.586a16.965 16.965 0 0 1-7.603-4.812c-.015.065-.033.128-.048.192a15.295 15.295 0 0 0-.263 5.102A3.05 3.05 0 0 1 50 63.773a18.331 18.331 0 0 0 2 3.287\\\"/><path fill=\\\"#1185b0\\\" d=\\\"M51.486 68.749a16.96 16.96 0 0 1-3.09-4.202a3 3 0 0 1-.466.039a3.053 3.053 0 0 1-3.052-3.053c0-1.209.705-2.25 1.724-2.744a16.884 16.884 0 0 1 .283-5.773a17.13 17.13 0 0 1 .45-1.633a16.885 16.885 0 0 1-2.948-9.557c0-.129.007-.257.01-.386c-3.144 1.576-5.5 4.061-5.5 7.97c0 8.647 5.164 16.085 12.574 19.41zm18.039-10.91a6.997 6.997 0 0 1-6.599 4.68a6.96 6.96 0 0 1-4.318-1.498c-2.454 1.911-4.305 4.515-5.436 7.426a18.67 18.67 0 0 0 1.62 1.547a21.38 21.38 0 0 0 5.373.685c7.473 0 14.04-3.858 17.834-9.686c-2.522-1.747-5.448-2.876-8.474-3.154\\\"/><path fill=\\\"#fff\\\" d=\\\"m60.95 49.56l-3.663-6.55l1.982 6.953l-5.942-4.32l4.655 5.848l-7.377-2.713l5.821 4.307l-7.464.23l7.632 1.97l-7.64 1.653l7.541.545l-6.36 4.073l6.55-2.374l-4.545 5.756l5.741-4.632l-2.066 7.722l4.432-6.284l-.622 7.423l2.517-6.73l2.143 7.072l.52-7.093l3.18 6.052l-1.878-6.92l5.82 4.508l-3.758-5.75l6.386 2.49l-4.883-4.8l6.548.514l-6.45-2.474l6.467-1.542l-6.49-.332l5.28-4.037l-5.992 2.148l4.073-5.645l-5.626 3.74l1.967-6.608l-3.864 5.447l-.087-6.884l-2.544 6.131l-2.118-6.203zm0 0\\\"/><path fill=\\\"#353333\\\" d=\\\"M.93 68.41C20.982 48.354 37 42.164 51.535 39.337c1.925-.374 2.288-4.577 2.288-4.577s.268 3.096 1.615 3.5c1.345.403 3.096-4.847 3.096-4.847s-1.615 4.711 0 4.982c1.615.268 4.575-4.578 4.575-4.578s-1.21 4.173-.402 4.442c.807.27 4.844-6.057 4.844-6.057s-2.421 4.173-.134 4.577c2.29.405 5.628-2.848 5.628-2.848s-2.625 2.975-1.455 3.387c4.98 1.75 9.01-4.723 9.01-4.723s-.934 2.838-3.356 5.934c5.248 1.347 9.147-6.56 9.147-6.56l-3.9 7.907c2.02 1.076 10.096-8.21 10.096-8.21s-4.173 7.267-6.595 8.746c1.345 1.08 6.19-3.228 6.19-3.228s-3.902 4.843-2.421 5.113c2.153 1.75 10.093-9.018 10.093-9.018s-3.094 6.326-7.672 11.306c3.825 1.913 13.326-10.363 13.326-10.363s-.27 3.902-7.133 10.095c5.113-.673 11.71-10.364 11.71-10.364s-2.424 7.268-8.212 12.381c5.022-.52 13.055-12.92 13.055-12.92s-3.096 8.613-9.42 13.594c6.998 1.55 17.093-8.884 17.093-8.884s-3.971 7.404-9.152 10.433c5.788 2.22 13.728-6.932 13.728-6.932s-7.94 12.248-20.593 11.71c-4.15-.177-16.706-12.595-43.609-11.576C27.445 43.106 19.906 58.18.93 68.41\\\" opacity=\\\".35\\\"/><path fill=\\\"#353333\\\" d=\\\"M93.409 30.142s-8.075 9.287-10.095 8.21l3.899-7.908s-3.9 7.907-9.146 6.562c2.42-3.096 3.355-5.935 3.355-5.935s-4.03 6.474-9.01 4.723c-1.17-.41 1.455-3.385 1.455-3.385s-3.34 3.251-5.627 2.847c-2.288-.403.134-4.576.134-4.576s-4.037 6.327-4.847 6.057c-.806-.268.405-4.442.405-4.442s-2.96 4.846-4.575 4.577c-1.615-.27 0-4.98 0-4.98s-1.75 5.25-3.096 4.845c-1.347-.403-1.615-3.499-1.615-3.499s-.364 4.203-2.288 4.575c-14.536 2.828-30.553 9.02-50.608 29.073c18.977-10.23 26.514-25.304 62.047-26.649c26.903-1.02 39.458 11.397 43.609 11.574c12.653.54 20.594-11.71 20.594-11.71s-7.941 9.152-13.73 6.931c5.183-3.027 9.153-10.43 9.153-10.43s-10.095 10.43-17.092 8.882c6.324-4.979 9.419-13.59 9.419-13.59s-8.033 12.397-13.055 12.92c5.788-5.115 8.21-12.385 8.21-12.385s-6.595 9.692-11.71 10.366c6.866-6.192 7.136-10.095 7.136-10.095s-9.5 12.276-13.325 10.363c4.573-4.98 7.67-11.306 7.67-11.306s-7.94 10.768-10.094 9.018c-1.481-.27 2.424-5.115 2.424-5.115s-4.845 4.307-6.192 3.23c2.422-1.48 6.594-8.748 6.594-8.748zm12.916 22.638c-1.354-.092-2.548.414-3.158 2.075C96.907 66.767 83.785 73.43 68.44 75.65c-15.344 2.22-26.65-1.006-35.937-3.623C20.29 68.583 10.6 74.709 0 69.392c2.452 1.94 5.25 3.836 13.325 3.86c2.738.01 11.507-.43 13.122.983c1.615 1.414-5.45 8.076-5.45 8.076s11.955-10.108 13.122-6.662c.726 2.145-3.432 7.875-3.432 7.875s4.17-5.658 7.27-6.865c2.126-.83 3.92-.73 5.45 1.414c1.01 1.412-4.845 8.277-4.845 8.277s7.872-7.671 9.286-7.267c1.414.402 0 7.267 0 7.267s2.896-6.956 4.44-7.47c2.12-.706-4.845 16.15-4.845 16.15s8.507-15.595 10.095-15.946c2.726-.606 4.544 10.9 4.544 10.9s-1.328-10.052.1-10.7c9.04-4.09 3.838 17.363 3.838 17.363s5.912-14.558 2.28-17.787c9.588 6.358 8.42 17.787 8.42 17.787s2.52-5.442-4.552-18.823c3.838-.2 9.596 9.94 9.596 9.94s-6.257-11.104-2.017-11.305c8.424-.4 9.287 14.737 9.287 14.737s2.523-2.12-4.24-16.96c4.306-2.758 14.738 13.73 14.738 13.73s-9.623-16.084-8.075-17.161c1.546-1.077 7.202 5.116 7.202 5.116s-4.307-5.922-3.165-6.528c1.144-.607 12.586 11.777 12.586 11.777s-10.096-12.115-8.346-13.596c1.035-.877 4.035.745 6.325 2.216c-3.21-2.296-7.821-5.889-6.325-6.666c3.096-1.607 11.913 3.844 11.913 3.844s-5.317-4.374-4.443-5.45c.875-1.078 11.305 6.864 11.305 6.864s-9.22-7.27-9.69-9.086c-.472-1.816 7.27.606 7.27.606s-8.548-3.97-8.682-5.114c-.136-1.146 5.652 1.278 5.652 1.278s-3.754-3.086-6.734-3.286m-.266 17.01a109.786 109.786 0 0 0 2.827 1.956s-1.25-.942-2.827-1.956\\\"/><path fill=\\\"#353333\\\" d=\\\"M.404 70.603c10.598 5.317 20.29-.807 32.504 2.634c9.286 2.617 20.592 5.846 35.935 3.623c15.345-2.218 28.467-8.882 34.728-20.794c1.95-5.317 9.892 1.21 9.892 1.21s-5.788-2.42-5.654-1.277c.136 1.144 8.68 5.113 8.68 5.113s-7.737-2.42-7.266-.605c.472 1.818 9.689 9.086 9.689 9.086s-10.428-7.942-11.304-6.866c-.875 1.077 4.44 5.454 4.44 5.454s-8.814-5.454-11.91-3.845c-2.226 1.155 9.152 8.623 9.152 8.623s-7.403-5.653-9.152-4.172c-1.75 1.48 8.346 13.593 8.346 13.593S97.04 69.997 95.898 70.603c-1.146.605 3.163 6.527 3.163 6.527s-5.654-6.19-7.2-5.113c-1.548 1.077 8.076 17.159 8.076 17.159s-10.432-16.487-14.74-13.728c6.765 14.838 4.24 16.96 4.24 16.96s-.862-15.14-9.286-14.74c-4.24.202 2.018 11.307 2.018 11.307s-5.76-10.142-9.596-9.94c7.07 13.38 4.55 18.82 4.55 18.82S78.29 86.432 68.7 80.072c3.634 3.23-2.28 17.787-2.28 17.787s5.204-21.453-3.836-17.363c-1.429.646-.1 10.7-.1 10.7s-1.819-11.51-4.542-10.901c-1.59.352-10.095 15.948-10.095 15.948s6.965-16.858 4.845-16.15c-1.544.515-4.44 7.47-4.44 7.47s1.411-6.864 0-7.268c-1.415-.405-9.289 7.268-9.289 7.268s5.857-6.864 4.845-8.278c-1.53-2.142-3.323-2.243-5.45-1.414c-3.097 1.207-7.268 6.865-7.268 6.865s4.158-5.73 3.432-7.875C33.356 73.415 21.4 83.525 21.4 83.525s7.065-6.664 5.45-8.076c-1.615-1.414-10.385-.976-13.122-.983C5.653 74.44 2.855 72.545.403 70.604\\\" opacity=\\\".35\\\"/>\"\n\t\t},\n\t\t\"cassandra-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#bae6fa\\\" d=\\\"M63.797 30.797c-12.142.273-24.5 4.01-38.479 11.752c-2.538 2.933-3.848 6.112-3.57 9.34c.94 10.969 19.725 18.314 41.956 16.407c22.235-1.908 39.495-12.345 38.554-23.312c-.177-2.058-.982-3.99-2.32-5.755c-12.72-5.7-24.335-8.7-36.14-8.432Z\\\"/><path fill=\\\"#fff\\\" d=\\\"M65.369 30.78c-9.877-.018-19.85 2.232-30.689 7.062c-.455 1.739-.7 3.55-.7 5.415c0 13.01 11.748 23.558 26.24 23.558c14.49 0 26.239-10.548 26.239-23.558c0-3.506-.862-6.83-2.393-9.82c-6.32-1.722-12.49-2.645-18.697-2.657\\\" opacity=\\\".35\\\"/><path fill=\\\"#fff\\\" d=\\\"M60.22 29.859c-4.697-.287-12.79 2.163-19.537 4.607a20.031 20.031 0 0 0-1.594 7.846c0 11.4 10.335 20.641 21.268 20.641c10.86 0 20.47-9.257 21.268-20.64c.26-3.708-1.017-7.2-2.787-10.213c-6.997-1.231-14.42-1.984-18.619-2.241\\\"/><path fill=\\\"#353333\\\" d=\\\"M48.17 40.816c.576-1.276 1.448-1.9 2.293-2.97c-.093-.252-.3-1.081-.3-1.37a2.322 2.322 0 0 1 3.178-2.154a16.913 16.913 0 0 1 13.986-3.07c.466.105.92.23 1.367.37c-5.025-.696-10.688 1.084-14.54 4.193c.117.277.443 1.07.443 1.39c0 1.283-.829 1.594-2.11 1.594c-.293 0-.57-.056-.828-.153c-.87 1.168-1.937 3.394-2.459 4.786c2.13 1.906 4.056 2.595 6.563 3.534c-.005-.121.086-.231.086-.352c0-3.866 3.403-7.007 7.27-7.007a6.993 6.993 0 0 1 6.892 5.824c1.73-1.1 3.4-1.943 4.674-3.573c-.296-.362-.618-1.39-.618-1.895c0-1.162.944-2.105 2.109-2.105c.164 0 .322.023.477.06a18.418 18.418 0 0 0 1.445-4.192c-6.045-4.474-17.74-3.863-17.74-3.863s-9.308-.486-15.608 2.584c.42 3.038 1.632 5.925 3.42 8.37\\\"/><path fill=\\\"#353333\\\" d=\\\"M77.062 39.073c.429.384.662.723.844 1.052c.567 1.016-.568 1.947-1.73 1.947a2.12 2.12 0 0 1-.347-.035c-1.311 2.047-3.606 4.674-5.646 5.996c3.128.513 6.077 1.764 8.424 3.7c1.708-3.063 3.02-7.483 3.02-11.237c0-2.86-1.264-4.955-3.167-6.492c-.101 1.53-.92 3.674-1.398 5.069M51.678 58.464c1.041-2.877 3.605-5.107 6.03-7.068c-.356-.486-.887-1.688-1.108-2.258a16.965 16.965 0 0 1-7.605-4.812c-.013.065-.03.129-.048.194a15.34 15.34 0 0 0-.26 5.102a3.047 3.047 0 0 1 2.486 2.998c0 .885-.777 2.166-1.378 2.725c.655 1.412 1.1 2.094 1.883 3.119\\\"/><path fill=\\\"#353333\\\" d=\\\"M51.495 60.88c-1.244-1.237-2.103-3.702-2.91-5.25a2.93 2.93 0 0 1-.463.04c-1.686 0-3.452-1.415-3.052-3.052c.222-.906.846-1.498 1.865-1.992c-.233-1.877-.296-4.575.14-6.525c.125-.557.39-.82.566-1.35c-1.86-2.723-3.063-6.296-3.063-9.84c0-.13.008-.256.01-.384c-3.143 1.576-5.5 4.059-5.5 7.967c0 8.648 4.98 17.13 12.39 20.455c.006-.023.01-.047.017-.07m18.222-11.953a6.997 6.997 0 0 1-6.599 4.68a6.95 6.95 0 0 1-4.318-1.5c-2.454 1.91-4.68 5.266-5.81 8.178c.506.545.86.996 1.43 1.48c1.716.448 4.08 0 5.937 0c7.473 0 14.09-3.325 17.883-9.152c-2.523-1.747-5.498-3.41-8.523-3.686\\\"/><path fill=\\\"#1185b0\\\" d=\\\"M47.978 41.826a16.908 16.908 0 0 1 2.143-3.524a2.323 2.323 0 0 1 2.174-3.135c.301 0 .59.059.855.165a16.922 16.922 0 0 1 15.353-2.699c-5.026-.695-10.217.844-14.07 3.953a2.322 2.322 0 0 1-2.966 3.07a15.664 15.664 0 0 0-2.103 3.852c1.83 1.97 4.074 3.53 6.582 4.468c-.006-.12-.017-.237-.017-.36a6.997 6.997 0 0 1 6.997-7c3.466 0 6.335 2.52 6.895 5.825a18.132 18.132 0 0 0 4.537-4.142a2.086 2.086 0 0 1-.481-1.324c0-1.164.943-2.107 2.107-2.107c.164 0 .322.024.477.06a18.403 18.403 0 0 0 1.445-4.19c-6.043-4.477-17.74-3.866-17.74-3.866s-9.308-.486-15.608 2.586c.421 3.037 1.632 5.926 3.42 8.368\\\"/><path fill=\\\"#1185b0\\\" d=\\\"M77.388 39.417c.429.384.703.937.703 1.558a2.108 2.108 0 0 1-2.107 2.107c-.118 0-.233-.017-.347-.036a17.043 17.043 0 0 1-5.087 5.118a17.025 17.025 0 0 1 8.198 3.684a21.158 21.158 0 0 0 2.687-10.342c0-2.86-1.263-4.954-3.167-6.49c-.1 1.53-.4 3.006-.88 4.4M52 59.156a16.978 16.978 0 0 1 5.278-7.42a6.971 6.971 0 0 1-.87-1.585a16.965 16.965 0 0 1-7.603-4.812c-.015.065-.033.128-.048.192a15.295 15.295 0 0 0-.263 5.102A3.05 3.05 0 0 1 50 55.869a18.331 18.331 0 0 0 2 3.286\\\"/><path fill=\\\"#1185b0\\\" d=\\\"M51.486 60.844a16.96 16.96 0 0 1-3.09-4.202a3 3 0 0 1-.466.039a3.053 3.053 0 0 1-3.052-3.052c0-1.21.705-2.25 1.724-2.744a16.884 16.884 0 0 1 .283-5.773a17.13 17.13 0 0 1 .45-1.633a16.885 16.885 0 0 1-2.948-9.557c0-.13.007-.257.01-.386c-3.144 1.576-5.5 4.06-5.5 7.97c0 8.647 5.164 16.084 12.574 19.41zm18.039-10.91a6.997 6.997 0 0 1-6.599 4.68a6.96 6.96 0 0 1-4.318-1.497c-2.454 1.91-4.305 4.514-5.436 7.425a18.67 18.67 0 0 0 1.62 1.547a21.38 21.38 0 0 0 5.373.685c7.473 0 14.04-3.858 17.834-9.685c-2.522-1.747-5.448-2.876-8.474-3.154\\\"/><path fill=\\\"#fff\\\" d=\\\"m60.95 41.655l-3.663-6.55l1.982 6.954l-5.942-4.32l4.655 5.848l-7.377-2.713l5.821 4.307l-7.464.23l7.632 1.97l-7.64 1.653l7.541.545l-6.36 4.073l6.55-2.374l-4.545 5.755l5.741-4.631l-2.066 7.721l4.432-6.283l-.622 7.422l2.517-6.73l2.143 7.072l.52-7.092l3.18 6.051l-1.878-6.92l5.82 4.508l-3.758-5.75l6.386 2.49l-4.883-4.8l6.548.515l-6.45-2.474l6.467-1.542l-6.49-.332l5.28-4.037l-5.992 2.148l4.073-5.645l-5.626 3.74l1.967-6.608l-3.864 5.447l-.087-6.884l-2.544 6.13l-2.118-6.202zm0 0\\\"/><path fill=\\\"#353333\\\" d=\\\"M.93 60.505C20.982 40.45 37 34.26 51.535 31.433c1.925-.374 2.288-4.577 2.288-4.577s.268 3.096 1.615 3.499c1.345.404 3.096-4.846 3.096-4.846s-1.615 4.71 0 4.982c1.615.268 4.575-4.578 4.575-4.578s-1.21 4.173-.402 4.442c.807.27 4.844-6.057 4.844-6.057s-2.421 4.173-.134 4.577c2.29.405 5.628-2.848 5.628-2.848s-2.625 2.975-1.455 3.387c4.98 1.749 9.01-4.723 9.01-4.723s-.934 2.838-3.356 5.934c5.248 1.347 9.147-6.561 9.147-6.561l-3.9 7.908c2.02 1.076 10.096-8.21 10.096-8.21s-4.173 7.267-6.595 8.746c1.345 1.079 6.19-3.228 6.19-3.228s-3.902 4.843-2.421 5.113c2.153 1.75 10.093-9.018 10.093-9.018S96.76 31.7 92.182 36.68c3.825 1.913 13.326-10.363 13.326-10.363s-.27 3.902-7.133 10.095c5.113-.673 11.71-10.364 11.71-10.364s-2.424 7.268-8.212 12.38c5.022-.52 13.055-12.92 13.055-12.92s-3.096 8.614-9.42 13.595c6.998 1.549 17.093-8.884 17.093-8.884s-3.971 7.404-9.152 10.433c5.788 2.22 13.728-6.932 13.728-6.932s-7.94 12.248-20.593 11.71c-4.15-.177-16.706-12.595-43.609-11.576c-35.53 1.347-43.069 16.42-62.045 26.65\\\" opacity=\\\".35\\\"/><path fill=\\\"#353333\\\" d=\\\"M93.409 22.238s-8.075 9.287-10.095 8.21l3.899-7.908s-3.9 7.907-9.146 6.562c2.42-3.096 3.355-5.935 3.355-5.935s-4.03 6.474-9.01 4.723c-1.17-.41 1.455-3.385 1.455-3.385s-3.34 3.25-5.627 2.847c-2.288-.403.134-4.576.134-4.576s-4.037 6.327-4.847 6.057c-.806-.268.405-4.442.405-4.442s-2.96 4.846-4.575 4.577c-1.615-.27 0-4.98 0-4.98s-1.75 5.25-3.096 4.845c-1.347-.403-1.615-3.5-1.615-3.5s-.364 4.204-2.288 4.576C37.822 32.737 21.805 38.928 1.75 58.98c18.977-10.23 26.514-25.303 62.047-26.648c26.903-1.021 39.458 11.397 43.609 11.574c12.653.54 20.594-11.71 20.594-11.71s-7.941 9.152-13.73 6.93c5.183-3.026 9.153-10.43 9.153-10.43s-10.095 10.43-17.092 8.883c6.324-4.98 9.419-13.591 9.419-13.591s-8.033 12.398-13.055 12.92c5.788-5.114 8.21-12.384 8.21-12.384s-6.595 9.692-11.71 10.366c6.866-6.192 7.136-10.095 7.136-10.095s-9.5 12.276-13.325 10.363c4.573-4.98 7.67-11.306 7.67-11.306s-7.94 10.768-10.094 9.018c-1.481-.27 2.424-5.115 2.424-5.115s-4.845 4.307-6.192 3.23c2.422-1.48 6.594-8.748 6.594-8.748zm12.916 22.638c-1.354-.092-2.548.414-3.158 2.075c-6.26 11.911-19.382 18.573-34.726 20.793c-15.344 2.22-26.65-1.006-35.937-3.623C20.29 60.678 10.6 66.804 0 61.487c2.452 1.941 5.25 3.836 13.325 3.86c2.738.01 11.507-.429 13.122.983c1.615 1.414-5.45 8.076-5.45 8.076s11.955-10.108 13.122-6.662c.726 2.145-3.432 7.875-3.432 7.875s4.17-5.658 7.27-6.865c2.126-.83 3.92-.729 5.45 1.414c1.01 1.412-4.845 8.277-4.845 8.277s7.872-7.67 9.286-7.267c1.414.402 0 7.267 0 7.267s2.896-6.956 4.44-7.47c2.12-.706-4.845 16.15-4.845 16.15S55.95 71.53 57.538 71.18c2.726-.606 4.544 10.901 4.544 10.901s-1.328-10.053.1-10.7c9.04-4.09 3.838 17.362 3.838 17.362s5.912-14.558 2.28-17.787c9.588 6.358 8.42 17.787 8.42 17.787s2.52-5.442-4.552-18.823c3.838-.2 9.596 9.94 9.596 9.94s-6.257-11.104-2.017-11.305c8.424-.4 9.287 14.737 9.287 14.737s2.523-2.12-4.24-16.96c4.306-2.758 14.738 13.73 14.738 13.73S89.909 63.977 91.457 62.9c1.546-1.077 7.202 5.116 7.202 5.116s-4.307-5.922-3.165-6.528c1.144-.607 12.586 11.777 12.586 11.777S97.984 61.15 99.734 59.67c1.035-.877 4.035.745 6.325 2.216c-3.21-2.296-7.821-5.888-6.325-6.665c3.096-1.607 11.913 3.843 11.913 3.843s-5.317-4.373-4.443-5.45c.875-1.077 11.305 6.864 11.305 6.864s-9.22-7.27-9.69-9.085c-.472-1.816 7.27.606 7.27.606s-8.548-3.97-8.682-5.114c-.136-1.146 5.652 1.278 5.652 1.278s-3.754-3.086-6.734-3.286zm-.266 17.009a109.786 109.786 0 0 0 2.827 1.956s-1.25-.942-2.827-1.956\\\"/><path fill=\\\"#353333\\\" d=\\\"M.404 62.698c10.598 5.317 20.29-.807 32.504 2.634c9.286 2.617 20.592 5.846 35.935 3.623c15.345-2.218 28.467-8.882 34.728-20.793c1.95-5.317 9.892 1.21 9.892 1.21s-5.788-2.421-5.654-1.277c.136 1.144 8.68 5.113 8.68 5.113s-7.737-2.421-7.266-.605c.472 1.818 9.689 9.085 9.689 9.085s-10.428-7.941-11.304-6.865c-.875 1.077 4.44 5.453 4.44 5.453s-8.814-5.453-11.91-3.845c-2.226 1.155 9.152 8.623 9.152 8.623s-7.403-5.653-9.152-4.172c-1.75 1.48 8.346 13.593 8.346 13.593S97.04 62.092 95.898 62.698c-1.146.605 3.163 6.527 3.163 6.527s-5.654-6.19-7.2-5.113c-1.548 1.077 8.076 17.16 8.076 17.16s-10.432-16.488-14.74-13.729c6.765 14.838 4.24 16.96 4.24 16.96s-.862-15.14-9.286-14.74c-4.24.202 2.018 11.307 2.018 11.307s-5.76-10.142-9.596-9.939c7.07 13.38 4.55 18.82 4.55 18.82S78.29 78.526 68.7 72.166c3.634 3.23-2.28 17.787-2.28 17.787S71.625 68.5 62.585 72.59c-1.429.646-.1 10.7-.1 10.7s-1.819-11.509-4.542-10.9c-1.59.351-10.095 15.947-10.095 15.947s6.965-16.858 4.845-16.15c-1.544.515-4.44 7.47-4.44 7.47s1.411-6.864 0-7.268c-1.415-.405-9.289 7.268-9.289 7.268s5.857-6.864 4.845-8.278c-1.53-2.142-3.323-2.243-5.45-1.414c-3.097 1.207-7.268 6.865-7.268 6.865s4.158-5.729 3.432-7.875C33.356 65.51 21.4 75.62 21.4 75.62s7.065-6.664 5.45-8.076c-1.615-1.414-10.385-.976-13.122-.983C5.653 66.535 2.855 64.64.403 62.699\\\" opacity=\\\".35\\\"/><path fill=\\\"#353333\\\" d=\\\"M40.875 91.112c-.492 0-1.349.097-1.908.223c0 .284-.044.664-.245 2.437c-.164 1.43-.97 7.05-1.282 8.644c.842-.023 1.676-.186 1.922-.328c.15-.082.23-.23.283-.529c.626-3.83 2.035-5.06 2.743-5.06c.357 0 .462.41.38.917c-.2 1.132-.38 2.11-.53 3.092c-.179 1.185-.163 1.968-.03 1.968c.277 0 1.446-.06 1.99-.29c0-.493.112-1.514.18-2.02c.163-1.118.26-1.73.41-2.586c.274-1.654-.135-2.757-1.313-2.757c-1.266 0-2.354.775-3.189 2.168c.328-2.153.604-4.158.753-5.178c.067-.41.067-.7-.164-.7zm67.29 0c-.425 0-1.43.141-1.87.223c-.023.693-.38 3.026-.514 3.786c-.291-.186-.738-.298-1.215-.298c-2.795 0-4.456 2.444-4.456 5.111c0 1.61.663 2.542 1.729 2.542c1.229 0 2.384-.657 3.19-2.005c0 .052-.038.365-.053.58c-.03.672.037 1.425.149 1.425c.275 0 1.349-.045 1.87-.276c-.014-.492.022-1.364.12-2.25c.11-1.05.834-5.783 1.214-8.265c.067-.395.03-.573-.164-.573m-91.323 3.484c-.527-.023-1.755.335-2.02.503c-.016.447-.18 1.713-.299 2.4a276.072 276.072 0 0 1-1.28 8.263c.461-.015 1.347-.097 1.742-.224c.298-.082.41-.298.477-.745c.112-.723.276-1.72.447-2.787c.373.328.931.47 1.572.47c2.578 0 4.106-2.526 4.106-5.142c0-1.214-.47-2.51-1.87-2.51c-1.297 0-2.317.87-3.003 1.87h-.038c.082-.538.284-1.87.262-2.087a.712.712 0 0 0-.096-.01zm-6.372.227c-1.17 0-2.452.26-3.502 1.333c-1.245 1.245-1.558 2.937-1.558 3.905c0 1.632.604 2.415 1.573 2.415c1.334 0 2.6-.902 3.241-1.983c-.015.142-.052.44-.067.67c-.052.642-.015 1.313.134 1.313c.276 0 1.297-.06 1.84-.29c-.037-.35 0-1.283.083-1.976c.18-1.557.574-4.307.738-5.007c-.656-.15-1.714-.38-2.482-.38m17.15 0c-1.17 0-2.45.26-3.502 1.333c-1.244 1.245-1.557 2.937-1.557 3.905c0 1.632.603 2.415 1.572 2.415c1.334 0 2.6-.902 3.242-1.983c-.015.142-.053.44-.068.67c-.052.642-.014 1.313.135 1.313c.275 0 1.296-.06 1.84-.29c-.037-.35 0-1.283.082-1.976c.18-1.557.574-4.307.738-5.007c-.656-.15-1.714-.38-2.482-.38m7.832 0c-2.758 0-4.449 2.28-4.449 4.865c0 1.938 1.02 2.788 2.496 2.788c1.282 0 2.17-.44 2.698-.97c.29-.29.395-.618.395-.93c0-.313-.15-.575-.269-.664c-.454.432-1.282.976-2.086.976c-.753 0-1.08-.58-1.08-1.55c0-1.527.737-3.07 2.235-3.07c.358 0 .655.083.968.194c.261 0 .671-.753.626-1.2c-.298-.29-.894-.44-1.534-.44zm14.656 0c-2.548 0-4.128 2.414-4.128 4.814c0 1.706.731 2.84 2.534 2.84c1.43 0 2.385-.538 2.862-1.067c.178-.194.29-.522.29-.887c0-.313-.082-.544-.209-.64c-.514.447-1.318.983-2.272.983c-.783 0-1.133-.455-1.133-1.26v-.215c1.483-.097 4.076-.82 4.076-2.847c0-.969-.686-1.72-2.02-1.72zm11.151 0c-2.757 0-4.448 2.28-4.448 4.865c0 1.938 1.02 2.788 2.496 2.788c1.281 0 2.168-.44 2.698-.97c.29-.29.394-.618.394-.93c0-.313-.149-.575-.268-.664c-.455.432-1.282.976-2.087.976c-.752 0-1.08-.58-1.08-1.55c0-1.527.738-3.07 2.236-3.07c.357 0 .655.083.968.194c.26 0 .67-.753.626-1.2c-.298-.29-.894-.44-1.535-.44zm7.267 0c-1.17 0-2.452.26-3.503 1.333c-1.245 1.245-1.558 2.937-1.558 3.905c0 1.632.605 2.415 1.574 2.415c1.334 0 2.6-.902 3.24-1.983c-.014.142-.051.44-.066.67c-.052.642-.015 1.313.134 1.313c.276 0 1.296-.06 1.84-.29c-.037-.35 0-1.283.083-1.976c.179-1.557.573-4.307.737-5.007c-.655-.15-1.713-.38-2.481-.38m6.57 0c-1.706 0-2.891 1.132-2.891 2.496c0 .655.26 1.23 1.117 1.855c.984.708 1.23.954 1.23 1.237c0 .328-.343.574-.872.574c-.59 0-1.408-.246-1.84-.514c-.314.216-.395.954-.15 1.363c.217.336.94.642 1.759.642c1.945 0 3.093-1.297 3.093-2.497c0-.723-.313-1.23-1.118-1.803c-1.066-.775-1.311-1.006-1.311-1.319c0-.41.394-.604.834-.604c.313 0 .573.067.804.15c.59.208.94-.56.955-1.036c-.276-.313-.917-.544-1.61-.544m5.668 0c-1.707 0-2.892 1.132-2.892 2.496c0 .655.26 1.23 1.118 1.855c.984.708 1.23.954 1.23 1.237c0 .328-.343.574-.872.574c-.59 0-1.41-.246-1.841-.514c-.313.216-.395.954-.15 1.363c.217.336.94.642 1.76.642c1.944 0 3.092-1.297 3.092-2.497c0-.723-.313-1.23-1.118-1.803c-1.065-.775-1.31-1.006-1.31-1.319c0-.41.394-.604.833-.604c.313 0 .574.067.805.15c.589.208.94-.56.954-1.036c-.275-.313-.916-.544-1.61-.544zm7.59 0c-1.17 0-2.451.26-3.502 1.333c-1.245 1.245-1.558 2.937-1.558 3.905c0 1.632.604 2.415 1.573 2.415c1.333 0 2.6-.902 3.24-1.983c-.014.142-.051.44-.066.67c-.052.642-.015 1.313.134 1.313c.276 0 1.297-.06 1.84-.29c-.036-.35 0-1.283.082-1.976c.18-1.557.574-4.307.738-5.007c-.656-.15-1.714-.38-2.481-.38m6.162 0c-.186 0-1.647.298-1.922.394c.044.358-.038 1.245-.246 2.631c-.231 1.513-.545 3.562-.746 4.568c1.073-.023 1.595-.149 1.84-.298c.202-.112.314-.313.38-.64c.709-3.98 2.154-4.949 2.78-4.949c.454 0 .455.574.395 1.051c-.15.827-.417 2.25-.544 3.04c-.164.954-.15 1.856-.037 1.856c.283 0 1.527-.082 1.96-.29c-.015-.493.067-1.216.179-2.02c.149-.954.342-1.99.447-2.713c.223-1.55-.15-2.63-1.32-2.63c-1.393 0-2.384.916-3.137 2.138h-.03c.016-.104.03-.283.045-.395c.164-1.237.135-1.743-.044-1.743m16.832 0c-.275 0-1.513.276-1.818.41c.03.298.015 1.05-.037 1.482c-.164 1.61-.59 4.352-.835 5.7c.522-.022 1.625-.148 1.9-.312c.186-.082.283-.216.336-.53c.685-3.747 1.788-4.634 2.347-4.634c.298 0 .522.104.723.2c.38-.409.805-1.496.737-2.04a1.016 1.016 0 0 0-.685-.276c-.678 0-1.714.424-2.586 2.347h-.045c.23-1.46.112-2.347-.037-2.347m8.3 0c-1.17 0-2.451.26-3.502 1.333c-1.244 1.245-1.558 2.937-1.558 3.905c0 1.632.604 2.415 1.573 2.415c1.334 0 2.6-.902 3.24-1.983c-.014.142-.051.44-.066.67c-.052.642-.015 1.313.134 1.313c.276 0 1.297-.06 1.841-.29c-.037-.35 0-1.283.082-1.976c.179-1.557.573-4.307.737-5.007c-.655-.15-1.713-.38-2.481-.38m-69.867 1.23c.41 0 .56.365.56.61c0 .604-.709 1.312-2.207 1.431c.268-1.378 1.02-2.042 1.647-2.042zm-39.654.133c.246 0 .492.067.67.134a2.078 2.078 0 0 0-.066.373c-.41 2.682-1.87 4.113-2.697 4.113c-.328 0-.522-.38-.522-1.058c0-.804.245-1.818.82-2.608c.558-.76 1.184-.954 1.795-.954m17.15 0c.246 0 .492.067.671.134a2 2 0 0 0-.067.373c-.41 2.682-1.87 4.113-2.697 4.113c-.328 0-.522-.38-.522-1.058c0-.804.246-1.818.82-2.608c.56-.76 1.184-.954 1.795-.954m40.906 0c.246 0 .492.067.67.134c-.03.112-.051.21-.066.373c-.41 2.682-1.87 4.113-2.698 4.113c-.327 0-.521-.38-.521-1.058c0-.804.245-1.818.819-2.608c.559-.76 1.185-.954 1.796-.954m19.828 0c.246 0 .492.067.67.134a2 2 0 0 0-.067.373c-.41 2.682-1.87 4.113-2.697 4.113c-.328 0-.522-.38-.522-1.058c0-.804.247-1.818.82-2.608c.56-.76 1.185-.954 1.796-.954m31.294 0c.246 0 .492.067.67.134c-.03.112-.051.21-.066.373c-.41 2.682-1.87 4.113-2.698 4.113c-.327 0-.521-.38-.521-1.058c0-.804.246-1.818.82-2.608c.559-.76 1.184-.954 1.795-.954m-14.642.015c.432 0 .708.135.924.328a5.008 5.008 0 0 0-.097.53c-.417 2.384-1.863 3.725-2.6 3.725c-.36 0-.627-.395-.627-1.163c0-1.43.723-3.42 2.4-3.42m-85.818.298c.395 0 .611.41.611 1.051c0 1.498-.678 3.383-2.317 3.383a1.36 1.36 0 0 1-.969-.425c.03-.134.03-.2.067-.41c.395-2.086 1.654-3.599 2.608-3.599\\\"/>\"\n\t\t},\n\t\t\"centos\": {\n\t\t\t\"body\": \"<path fill=\\\"#932279\\\" d=\\\"m59.033 64.192l-27.305 26.66l-27.302-26.66l27.302-26.651zm0 0\\\"/><path fill=\\\"#efa724\\\" d=\\\"M64.72 58.736L37.824 31.91L64.72 5.084L91.61 31.91zm0 0\\\"/><path fill=\\\"#9ccd2a\\\" d=\\\"m91.675 96.563l-27.307 26.661l-27.3-26.661l27.302-26.65zm0 0\\\"/><path fill=\\\"#262577\\\" d=\\\"M97.362 91.108L70.466 64.277l26.895-26.821l26.895 26.821zm0 0\\\"/><path fill=\\\"#efa724\\\" d=\\\"M70.066 69.484h36.461v36.401H70.066zm0 0\\\"/><path fill=\\\"#932279\\\" d=\\\"M70.216 22.454h36.577v36.231H70.216zm0 0\\\"/><path fill=\\\"#262577\\\" d=\\\"M21.1 69.484h38.084v37.753H21.1zm0 0\\\"/><path fill=\\\"#9ccd2a\\\" d=\\\"M21.1 20.928h38.084v37.538H21.1zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M64.722.464L48.268 17.227H19.739v28.395L2.483 62.837l17.256 17.229v28.149h27.697l16.93 16.901l16.935-16.901h27.983V80.148l16.89-17.229l-16.66-16.973V17.454H81.392zm-.005 3.9l12.841 13.089h-8.71v33.645l-4.13 4.206l-4.175-4.257v-33.82h-8.445zm-42.26 15.633h23.107l-9.661 9.841l21.92 22.356v3.418h-4.105L31.723 33.653L22.458 42.9zm26.937 0h8.43v28.277L39.743 29.836zm22.177.215h8.695l9.431 9.626L71.569 48.32zm12.529 0h22.697v22.951l-9.436-9.62l-21.856 22.291h-3.934v-3.599l21.961-22.398zm13.261 17.245l9.436 9.615v8.761H79.339zm-65.633.067l18.117 18.089H22.457V46.78zM19.74 49.487v8.878h32.864l4.49 4.472l-4.03 4.027H19.739v9.328L6.364 62.837zm89.776.358l12.825 13.074l-13.057 13.315V66.86H76.246l-3.86-3.94l4.249-4.329h32.878zm-48.974 5.117l4.175 4.247l4.13-4.201v3.581h3.955l-4.249 4.329l3.86 3.94h-3.7v4.222l-4.346-4.339l-3.819 3.817v-3.694H56.94l4.03-4.027l-.966-.956l-3.524-3.516h4.065zm-38.08 14.656H50.3L31.728 88.161l-9.265-9.256zm31.712 0h3.65v3.659L35.127 95.928l9.546 9.527H22.462V82.777l9.261 9.247zm17.256 0h3.689l22.241 22.68l.961-.967l8.24-8.413v22.546H84.06l9.551-9.533l-.966-.972L71.43 73.795zm7.519 0h27.613v9.39l-9.201 9.379zm-14.577.998l4.34 4.335v33.267h8.716l-13.055 13.028l-13.055-13.028h9.231V74.431zm-6.547 6.534v28.307h-9.27l-9.546-9.527zm13.606.512L89.737 95.93l-9.551 9.533H71.43zm0 0\\\"/>\"\n\t\t},\n\t\t\"centos-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M55.789 71.121h-6.703a7.39 7.39 0 0 1-2.016-.285c-1.289-.406-2.309-1.332-3.059-2.777c-.68-1.316-1.02-2.848-1.02-4.598c0-1.687.301-3.18.91-4.473c.664-1.441 1.613-2.41 2.84-2.937a7.504 7.504 0 0 1 2.93-.605h6.074v3h-6.312c-1.027 0-1.773.578-2.234 1.723c-.363.898-.543 2.074-.543 3.52c0 1.227.23 2.262.695 3.109c.535 1.004 1.285 1.508 2.254 1.508l6.184-.023v2.84m11.164.07H61.66c-1.289 0-2.41-.566-3.363-1.703c-.941-1.148-1.41-2.473-1.41-3.961c0-1.629.512-3.035 1.539-4.211c1.043-1.199 2.199-1.793 3.473-1.793h5.031v2.395h-3.687c-.461 0-.859.043-1.191.137c-.32.074-.617.23-.891.469c-.508.449-.758 1.051-.758 1.813h6.504v2.422h-6.484c0 .355.035.668.109.914c.086.242.254.492.5.742c.246.238.535.402.867.492a5.85 5.85 0 0 0 1.258.113h3.797v2.172m12.367-.07h-3.016v-7.637a1.02 1.02 0 0 0-.129-.512a1.72 1.72 0 0 0-.371-.473a1.482 1.482 0 0 0-.996-.379H71.86v9h-3.016v-11.6h5.77c1.027 0 1.773.059 2.234.18c.723.18 1.301.57 1.734 1.188a4.07 4.07 0 0 1 .738 2.352v7.879m8.66-9.18h-2.93v5.266c0 .473.16.871.477 1.184c.363.313.84.473 1.434.473h.891v2.258h-2.801a2.82 2.82 0 0 1-2.145-.941a2.625 2.625 0 0 1-.676-1.227a7.288 7.288 0 0 1-.152-1.59v-5.422h-1.906v-2.418h1.906v-4.078h2.973v4.078h2.93zm17.699 1.324c0 3.043-.816 5.219-2.449 6.539c-1.332 1.059-3.27 1.59-5.813 1.59c-2.82 0-4.902-.609-6.25-1.84c-1.473-1.34-2.211-3.5-2.211-6.469c0-2.434.656-4.332 1.973-5.687c1.434-1.484 3.574-2.223 6.422-2.223c3.137 0 5.352.707 6.637 2.133c1.129 1.25 1.691 3.238 1.691 5.957m-3.859-.09c0-1.539-.355-2.766-1.062-3.676c-.797-1.02-1.977-1.523-3.535-1.523c-1.535 0-2.691.543-3.473 1.637c-.648.91-.977 2.098-.977 3.563c0 1.688.262 2.93.781 3.734c.723 1.125 2.063 1.68 4.016 1.68c1.648 0 2.805-.539 3.469-1.633c.52-.852.781-2.109.781-3.781m21.223 3.09c0 1.367-.441 2.527-1.324 3.473s-2 1.406-3.359 1.406l-10.738-.023v-2.816h8.852c.59 0 1.09-.141 1.496-.43c.461-.328.691-.773.691-1.34c0-1.332-.91-1.996-2.73-1.996h-4.469c-1.289 0-2.414-.406-3.383-1.227c-.969-.828-1.453-1.871-1.453-3.145c0-1.398.469-2.539 1.41-3.402c.953-.883 2.203-1.32 3.75-1.32h10.262v2.691H113c-.406 0-.816.176-1.234.535c-.406.344-.609.75-.609 1.234a1.81 1.81 0 0 0 .586 1.363c.406.363.891.535 1.453.535h4.926c1.531 0 2.73.414 3.598 1.234c.883.805 1.324 1.883 1.324 3.227\\\"/><g fill-rule=\\\"evenodd\\\"><path fill=\\\"#912178\\\" d=\\\"m18.883 62.203l1.199 1.176l-1.199 1.176h-8.449v3.922l-5.152-5.098l5.152-5.012v3.836zm0 0\\\"/><path fill=\\\"#eea623\\\" d=\\\"M22.707 60.82L21.516 62l-1.195-1.18v-8.336h-3.977l5.172-5.078l5.078 5.078h-3.887zm0 0\\\"/><path fill=\\\"#232375\\\" d=\\\"m24.109 64.594l-1.199-1.18l1.199-1.176h8.445v-3.922l5.152 5.098l-5.152 5.016v-3.836zm0 0\\\"/><path fill=\\\"#9ccc28\\\" d=\\\"m20.285 65.973l1.191-1.18l1.195 1.18v8.336h3.973l-5.168 5.078l-5.082-5.078h3.891zm0 0\\\"/></g><path fill=\\\"#9ccc28\\\" d=\\\"M10.133 52.188h10.262v10.125H10.133zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M9.766 51.827v10.849h10.995V51.827zm.733.723h9.529v9.402h-9.529z\\\"/><path fill=\\\"#912178\\\" d=\\\"M22.594 52.188H32.86v10.125H22.594zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M22.227 51.827v10.849h10.999V51.827zm.733.723h9.533v9.402H22.96z\\\"/><path fill=\\\"#eea623\\\" d=\\\"M22.594 64.481H32.86v10.125H22.594zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M22.227 64.12v10.848h10.999V64.12zm.733.723h9.533v9.402H22.96z\\\"/><path fill=\\\"#232375\\\" d=\\\"M10.133 64.481h10.262v10.125H10.133zm0 0\\\"/><g fill=\\\"#fff\\\"><path d=\\\"M9.766 64.12v10.848h10.995V64.12zm.733.723h9.529v9.402h-9.529z\\\"/><path d=\\\"m4.907 63.399l.259.256l7.517 7.416l7.776-7.672l-7.776-7.671zm1.037 0l6.739-6.649l6.739 6.649l-6.739 6.649zm7.776-8.695l.259.256l7.517 7.416l7.776-7.672l-7.776-7.672zm1.037 0l6.74-6.649l6.739 6.649l-6.739 6.649zm15.552 1.023l-7.776 7.667l.259.256l7.517 7.42l7.776-7.676zm0 1.023l6.74 6.645l-6.739 6.652l-6.74-6.653zM13.72 72.09l.259.256l7.517 7.416l7.776-7.672l-7.776-7.668zm1.037 0l6.739-6.645l6.74 6.645l-6.74 6.649z\\\"/></g>\"\n\t\t},\n\t\t\"ceylon\": {\n\t\t\t\"body\": \"<defs><radialGradient id=\\\"deviconCeylon0\\\" cx=\\\"93.44\\\" cy=\\\"1113.51\\\" r=\\\"69.83\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 1148.01)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ab710a\\\"/></radialGradient></defs><path fill=\\\"#ab710a\\\" d=\\\"M40.42 90.46a15.35 15.35 0 0 1-2.8-1c-2.05 3.22-6.8 11.37-7.48 18.75h12.3a62.21 62.21 0 0 1-2.02-17.75m39.86-6.54a91.7 91.7 0 0 0-5.71 17.18c-.53 2.38 1.08 4.75.78 7.11h15.47c-4.08-11.26-5-27.64-7.11-34.19c-.05-.09-3.37 9.98-3.43 9.9\\\"/><path fill=\\\"#e3a835\\\" d=\\\"M124.32 45.19c-3.52-5-11.55-9.2-13.42-14.91c-.48-1.46-.56-4.46.36-5.86s-.54-1-.54-1c-2 .77-2.86-1.43-2.86-1.43c-.3-.77.11-3.12-1.61-1.84c-3.1 2.33-2.08 8-1.5 10.28a23.76 23.76 0 0 0 5.9 10.34c1 .93 7.3 7.86 6.44 11.41a2.85 2.85 0 0 1-2.15 2.62c-4.59.92-6.08-4.71-6.08-4.71c-3.44-14.69-9-19.83-9-19.83A109.06 109.06 0 0 0 73 32.62c-34.37-1.29-60.23 9.27-60.23 9.27c-7.56 10.85-12 31-12 31s0 .1.07.11a.27.27 0 0 0 .26-.13a63.4 63.4 0 0 1 9.57-9.66c-.72 28 5.62 45 5.62 45h12C29.14 98.12 37.06 87 37.06 87c4.46 3.38 14.54 2.38 14.54 2.38c1.78 6.74 5.4 18.82 5.4 18.82h14.46a91.43 91.43 0 0 1 7.87-26.64S82.91 73.44 83 71c.23-4.25 4.25-5.51 6.43-5.51s12.1 5.54 19.51 5.17c12.91-.65 18-6.62 18.25-13.43c.2-4.68-.9-9.23-2.87-12.04M82.83 59.62a2.23 2.23 0 0 1-.27.54a1.48 1.48 0 0 1-.51.47a1.39 1.39 0 0 1-.73.16a2.16 2.16 0 0 1-.66-.15a6.29 6.29 0 0 1-1.88-1.32c-.27-.25-.52-.51-.76-.76l-.7-.73a4.47 4.47 0 0 0-1.48-.83c-.59-.21-1.23-.38-1.9-.54s-1.34-.33-2.07-.57a4.96 4.96 0 0 1-.58-.23l-.29-.11a2.44 2.44 0 0 1-.38-.27a2.49 2.49 0 0 1-.56-.7a3.05 3.05 0 0 1-.28-.74a4.93 4.93 0 0 1-.1-1.32a8.71 8.71 0 0 1 .13-1.16a17 17 0 0 1 .55-2.13q.33-1 .73-2c.13-.33.26-.65.41-1a10.66 10.66 0 0 1 .52-1A11.25 11.25 0 0 1 74.94 42a12.89 12.89 0 0 1 1.81-1.14a10.3 10.3 0 0 1 2-.8a18.29 18.29 0 0 0-3.08 2.71A12.3 12.3 0 0 0 73.48 46a8.65 8.65 0 0 0-.34.89l-.31 1c-.2.65-.4 1.3-.56 1.95a18 18 0 0 0-.41 1.91a7.8 7.8 0 0 0-.09.9a2.84 2.84 0 0 0 .06.75a.65.65 0 0 0 .16.34l.14.08l.39.16c.58.22 1.25.39 1.92.6a17.92 17.92 0 0 1 2.05.75a5.53 5.53 0 0 1 2 1.4c.25.31.43.58.64.86l.61.81c.2.26.41.51.63.74a3.66 3.66 0 0 0 .67.58a.81.81 0 0 0 .61.17a1.12 1.12 0 0 0 .59-.51a4.75 4.75 0 0 0 .44-.89c.13-.32.23-.65.34-1a5.93 5.93 0 0 1-.19 2.13m12.78-8.92a2.19 2.19 0 1 1-.88-2.52a1.92 1.92 0 0 1 .88 2.52\\\"/><path fill=\\\"url(#deviconCeylon0)\\\" d=\\\"M124.32 45.19c-3.52-5-11.55-9.2-13.42-14.91c-.48-1.46-.56-4.46.36-5.86s-.54-1-.54-1c-2 .77-2.86-1.43-2.86-1.43c-.3-.77.11-3.12-1.61-1.84c-3.1 2.33-2.08 8-1.5 10.28a23.76 23.76 0 0 0 5.9 10.34c1 .93 7.3 7.86 6.44 11.41a2.85 2.85 0 0 1-2.15 2.62c-4.59.92-6.08-4.71-6.08-4.71c-3.44-14.69-9-19.83-9-19.83A109.06 109.06 0 0 0 73 32.62c-34.37-1.29-60.23 9.27-60.23 9.27c-7.56 10.85-12 31-12 31s0 .1.07.11a.27.27 0 0 0 .26-.13a63.4 63.4 0 0 1 9.57-9.66c-.72 28 5.62 45 5.62 45h12C29.14 98.12 37.06 87 37.06 87c4.46 3.38 14.54 2.38 14.54 2.38c1.78 6.74 5.4 18.82 5.4 18.82h14.46a91.43 91.43 0 0 1 7.87-26.64S82.91 73.44 83 71c.23-4.25 4.25-5.51 6.43-5.51s12.1 5.54 19.51 5.17c12.91-.65 18-6.62 18.25-13.43c.2-4.68-.9-9.23-2.87-12.04M82.83 59.62a2.23 2.23 0 0 1-.27.54a1.48 1.48 0 0 1-.51.47a1.39 1.39 0 0 1-.73.16a2.16 2.16 0 0 1-.66-.15a6.29 6.29 0 0 1-1.88-1.32c-.27-.25-.52-.51-.76-.76l-.7-.73a4.47 4.47 0 0 0-1.48-.83c-.59-.21-1.23-.38-1.9-.54s-1.34-.33-2.07-.57a4.96 4.96 0 0 1-.58-.23l-.29-.11a2.44 2.44 0 0 1-.38-.27a2.49 2.49 0 0 1-.56-.7a3.05 3.05 0 0 1-.28-.74a4.93 4.93 0 0 1-.1-1.32a8.71 8.71 0 0 1 .13-1.16a17 17 0 0 1 .55-2.13q.33-1 .73-2c.13-.33.26-.65.41-1a10.66 10.66 0 0 1 .52-1A11.25 11.25 0 0 1 74.94 42a12.89 12.89 0 0 1 1.81-1.14a10.3 10.3 0 0 1 2-.8a18.29 18.29 0 0 0-3.08 2.71A12.3 12.3 0 0 0 73.48 46a8.65 8.65 0 0 0-.34.89l-.31 1c-.2.65-.4 1.3-.56 1.95a18 18 0 0 0-.41 1.91a7.8 7.8 0 0 0-.09.9a2.84 2.84 0 0 0 .06.75a.65.65 0 0 0 .16.34l.14.08l.39.16c.58.22 1.25.39 1.92.6a17.92 17.92 0 0 1 2.05.75a5.53 5.53 0 0 1 2 1.4c.25.31.43.58.64.86l.61.81c.2.26.41.51.63.74a3.66 3.66 0 0 0 .67.58a.81.81 0 0 0 .61.17a1.12 1.12 0 0 0 .59-.51a4.75 4.75 0 0 0 .44-.89c.13-.32.23-.65.34-1a5.93 5.93 0 0 1-.19 2.13m12.78-8.92a2.19 2.19 0 1 1-.88-2.52a1.92 1.92 0 0 1 .88 2.52\\\" opacity=\\\".45\\\"/>\"\n\t\t},\n\t\t\"ceylon-wordmark\": {\n\t\t\t\"body\": \"<defs><radialGradient id=\\\"deviconCeylonWordmark0\\\" cx=\\\"39.14\\\" cy=\\\"1098.91\\\" r=\\\"27.32\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 1148.01)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ab710a\\\"/></radialGradient><radialGradient id=\\\"deviconCeylonWordmark1\\\" cx=\\\"46.35\\\" cy=\\\"1093.1\\\" r=\\\"14.18\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 1148.01)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d5d5d5\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#141006\\\"/></radialGradient></defs><path fill=\\\"#ab710a\\\" d=\\\"M18.4 71a6 6 0 0 1-1.09-.39c-.8 1.26-2.66 4.45-2.93 7.33h4.81A24.34 24.34 0 0 1 18.4 71M34 68.43a35.87 35.87 0 0 0-2.24 6.72c-.21.93.42 1.86.3 2.78h6.05c-1.59-4.4-2-10.81-2.78-13.37c-.02-.04-1.33 3.9-1.33 3.87\\\"/><path fill=\\\"#e3a835\\\" d=\\\"M51.22 53.27c-1.38-2-4.52-3.6-5.25-5.83a3.3 3.3 0 0 1 .14-2.29c.33-.5-.21-.38-.21-.38c-.78.3-1.12-.56-1.12-.56c-.12-.3 0-1.22-.63-.72c-1.21.91-.81 3.12-.59 4a9.3 9.3 0 0 0 2.31 4c.37.37 2.86 3.07 2.52 4.47a1.11 1.11 0 0 1-.84 1c-1.8.36-2.38-1.84-2.38-1.84c-1.35-5.75-3.52-7.76-3.52-7.76a42.66 42.66 0 0 0-10.51.91A62.3 62.3 0 0 0 7.57 52c-3 4.24-4.69 12.12-4.69 12.12a.11.11 0 0 0 .1 0a24.8 24.8 0 0 1 3.74-3.78C6.48 71.26 9 77.93 9 77.93h4.7c.33-3.94 3.43-8.31 3.43-8.31c1.75 1.32 5.69.93 5.69.93c.69 2.65 2.11 7.37 2.11 7.37h5.66a35.77 35.77 0 0 1 3.08-10.42a23.05 23.05 0 0 0 1.45-4.12a2.39 2.39 0 0 1 2.51-2.16c.85 0 4.73 2.17 7.63 2c5.05-.25 7-2.59 7.14-5.25a8.09 8.09 0 0 0-1.18-4.7M35 58.92a.87.87 0 0 1-.11.21a.58.58 0 0 1-.2.18a.54.54 0 0 1-.29.06a.84.84 0 0 1-.26-.06a2.46 2.46 0 0 1-.74-.52l-.3-.3l-.27-.29a1.75 1.75 0 0 0-.58-.31c-.23-.08-.48-.15-.74-.21s-.52-.13-.81-.22l-.22-.09l-.12-.06l-.15-.1a1 1 0 0 1-.22-.28a1.19 1.19 0 0 1-.11-.29a1.93 1.93 0 0 1 0-.51a3.41 3.41 0 0 1 .05-.46a6.63 6.63 0 0 1 .22-.83q.13-.4.29-.78l.16-.39a4.17 4.17 0 0 1 .2-.39A4.4 4.4 0 0 1 31.9 52a5 5 0 0 1 .71-.45a4 4 0 0 1 .77-.31a7.16 7.16 0 0 0-1.21 1.06a4.81 4.81 0 0 0-.85 1.27a3.39 3.39 0 0 0-.13.35l-.12.38c-.08.25-.15.51-.22.76a7 7 0 0 0-.16.75a3.05 3.05 0 0 0 0 .35a1.11 1.11 0 0 0 0 .29a.25.25 0 0 0 .06.13h.06l.15.06c.23.08.49.15.75.24a7 7 0 0 1 .8.29a2.16 2.16 0 0 1 .79.55c.1.12.17.23.25.34l.24.32l.25.29a1.43 1.43 0 0 0 .26.23a.32.32 0 0 0 .24.07a.44.44 0 0 0 .23-.2a1.86 1.86 0 0 0 .17-.35c.05-.12.09-.25.13-.39a2.32 2.32 0 0 1-.07.89m5-3.49a.86.86 0 1 1-.34-1a.75.75 0 0 1 .34 1\\\"/><path fill=\\\"url(#deviconCeylonWordmark0)\\\" d=\\\"M51.22 53.27c-1.38-2-4.52-3.6-5.25-5.83a3.3 3.3 0 0 1 .14-2.29c.33-.5-.21-.38-.21-.38c-.78.3-1.12-.56-1.12-.56c-.12-.3 0-1.22-.63-.72c-1.21.91-.81 3.12-.59 4a9.3 9.3 0 0 0 2.31 4c.37.37 2.86 3.07 2.52 4.47a1.11 1.11 0 0 1-.84 1c-1.8.36-2.38-1.84-2.38-1.84c-1.35-5.75-3.52-7.76-3.52-7.76a42.66 42.66 0 0 0-10.51.91A62.3 62.3 0 0 0 7.57 52c-3 4.24-4.69 12.12-4.69 12.12a.11.11 0 0 0 .1 0a24.8 24.8 0 0 1 3.74-3.78C6.48 71.26 9 77.93 9 77.93h4.7c.33-3.94 3.43-8.31 3.43-8.31c1.75 1.32 5.69.93 5.69.93c.69 2.65 2.11 7.37 2.11 7.37h5.66a35.77 35.77 0 0 1 3.08-10.42a23.05 23.05 0 0 0 1.45-4.12a2.39 2.39 0 0 1 2.51-2.16c.85 0 4.73 2.17 7.63 2c5.05-.25 7-2.59 7.14-5.25a8.09 8.09 0 0 0-1.18-4.7M35 58.92a.87.87 0 0 1-.11.21a.58.58 0 0 1-.2.18a.54.54 0 0 1-.29.06a.84.84 0 0 1-.26-.06a2.46 2.46 0 0 1-.74-.52l-.3-.3l-.27-.29a1.75 1.75 0 0 0-.58-.31c-.23-.08-.48-.15-.74-.21s-.52-.13-.81-.22l-.22-.09l-.12-.06l-.15-.1a1 1 0 0 1-.22-.28a1.19 1.19 0 0 1-.11-.29a1.93 1.93 0 0 1 0-.51a3.41 3.41 0 0 1 .05-.46a6.63 6.63 0 0 1 .22-.83q.13-.4.29-.78l.16-.39a4.17 4.17 0 0 1 .2-.39A4.4 4.4 0 0 1 31.9 52a5 5 0 0 1 .71-.45a4 4 0 0 1 .77-.31a7.16 7.16 0 0 0-1.21 1.06a4.81 4.81 0 0 0-.85 1.27a3.39 3.39 0 0 0-.13.35l-.12.38c-.08.25-.15.51-.22.76a7 7 0 0 0-.16.75a3.05 3.05 0 0 0 0 .35a1.11 1.11 0 0 0 0 .29a.25.25 0 0 0 .06.13h.06l.15.06c.23.08.49.15.75.24a7 7 0 0 1 .8.29a2.16 2.16 0 0 1 .79.55c.1.12.17.23.25.34l.24.32l.25.29a1.43 1.43 0 0 0 .26.23a.32.32 0 0 0 .24.07a.44.44 0 0 0 .23-.2a1.86 1.86 0 0 0 .17-.35c.05-.12.09-.25.13-.39a2.32 2.32 0 0 1-.07.89m5-3.49a.86.86 0 1 1-.34-1a.75.75 0 0 1 .34 1\\\" opacity=\\\".45\\\"/><path fill=\\\"url(#deviconCeylonWordmark1)\\\" d=\\\"M118.41 61.43a7.61 7.61 0 0 0-5.41 2.46l-2.46-2.12h-1.14v3.57a8.45 8.45 0 0 0-14.24 0V57l-4.28-3.71h-1.17v8.52h-3.23l-3.82 7.51l-3.84-7.51H73l1.26 2.48a8.15 8.15 0 0 0-6.24-2.82c-5.29 0-8.86 3.78-8.86 8.43a8.75 8.75 0 0 0 .13 1.49a9.16 9.16 0 0 1-4.52 1.21a4.15 4.15 0 0 1-4.3-4.33a4.2 4.2 0 0 1 4.3-4.37c2.48 0 3.59 1 5 1.48V59.9a9.1 9.1 0 0 0-5.63-1.74a12.25 12.25 0 0 0-1.41.08c-.13 1.71-1.2 5.15-7.57 5.47h-.55a10 10 0 0 0-1.06 4.51c0 5.52 4.41 10.07 10.59 10.07a8.91 8.91 0 0 0 5.63-1.81v-3.35c1.25 3 4.27 5 8.61 5a9.81 9.81 0 0 0 7-2.89l-2.06-2.37a5.64 5.64 0 0 1-3.81 1.35c-3 0-4.86-1.54-4.71-3.72H76a7.72 7.72 0 0 0-.08-3.11L79.74 75l-4.92 9.69h5.63l9.26-18.17v11.31h5.45v-3.55a8.45 8.45 0 0 0 14.24 0v3.57h5.48V67.43a3.06 3.06 0 0 1 2.8-1.78c1.35 0 2 .83 2 3.35v8.83h5.48V67.49c-.04-3.14-1.95-6.06-6.75-6.06m-53.34 5.91a3.4 3.4 0 0 1 3-2.46a2.39 2.39 0 0 1 2.61 2.46zm37.19 6.86c-1.45 0-2.68-2-2.68-4.4s1.23-4.4 2.68-4.4s2.71 2 2.71 4.4s-1.23 4.4-2.71 4.4\\\"/>\"\n\t\t},\n\t\t\"chrome\": {\n\t\t\t\"body\": \"<circle cx=\\\"64.149\\\" cy=\\\"64.236\\\" r=\\\"60.999\\\" fill=\\\"#fff\\\"/><path fill-opacity=\\\".1\\\" d=\\\"M102.966 75.327c0-21.439-17.379-38.819-38.817-38.819s-38.818 17.38-38.818 38.819h11.09c0-15.314 12.415-27.727 27.727-27.727c15.313 0 27.727 12.413 27.727 27.727\\\"/><circle cx=\\\"66.922\\\" cy=\\\"71.999\\\" r=\\\"21.072\\\" fill-opacity=\\\".1\\\"/><linearGradient id=\\\"deviconChrome0\\\" x1=\\\"395.191\\\" x2=\\\"395.191\\\" y1=\\\"484.168\\\" y2=\\\"484.723\\\" gradientTransform=\\\"matrix(82 0 0 82 -32341.5 -39660.313)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#81B4E0\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0C5A94\\\"/></linearGradient><circle cx=\\\"64.149\\\" cy=\\\"64.235\\\" r=\\\"22.736\\\" fill=\\\"url(#deviconChrome0)\\\"/><linearGradient id=\\\"deviconChrome1\\\" x1=\\\"-608.91\\\" x2=\\\"-608.91\\\" y1=\\\"-597.648\\\" y2=\\\"-547.185\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F06B59\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF2227\\\"/></linearGradient><path fill=\\\"url(#deviconChrome1)\\\" d=\\\"M119.602 36.508C104.336 5.792 67.06-6.732 36.343 8.534A62.105 62.105 0 0 0 12.578 29.3l24.955 43.253c-4.597-14.606 3.521-30.174 18.127-34.77a27.676 27.676 0 0 1 7.935-1.274\\\"/><linearGradient id=\\\"deviconChrome2\\\" x1=\\\"-657.835\\\" x2=\\\"-632.327\\\" y1=\\\"-491.393\\\" y2=\\\"-533.537\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#388B41\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4CB749\\\"/></linearGradient><path fill=\\\"url(#deviconChrome2)\\\" d=\\\"M12.578 29.3c-19.1 28.492-11.486 67.071 17.005 86.171a62.133 62.133 0 0 0 29.575 10.319l26.063-44.363c-9.745 11.811-27.22 13.486-39.032 3.74a27.717 27.717 0 0 1-8.657-12.613\\\"/><linearGradient id=\\\"deviconChrome3\\\" x1=\\\"-572.385\\\" x2=\\\"-599.557\\\" y1=\\\"-486.91\\\" y2=\\\"-552.345\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#E4B022\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#FCD209\\\"/></linearGradient><path fill=\\\"url(#deviconChrome3)\\\" d=\\\"M59.158 125.791c34.204 2.585 64.027-23.047 66.613-57.25a62.097 62.097 0 0 0-6.17-32.031H63.595c15.312.07 27.67 12.541 27.598 27.854a27.725 27.725 0 0 1-5.972 17.064\\\"/><linearGradient id=\\\"deviconChrome4\\\" x1=\\\"-649.391\\\" x2=\\\"-649.391\\\" y1=\\\"-528.885\\\" y2=\\\"-573.247\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\".15\\\"/><stop offset=\\\".3\\\" stop-opacity=\\\".06\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\".03\\\"/></linearGradient><path fill=\\\"url(#deviconChrome4)\\\" d=\\\"m12.578 29.3l24.955 43.253a27.725 27.725 0 0 1 1.107-18.854L13.686 27.636\\\"/><linearGradient id=\\\"deviconChrome5\\\" x1=\\\"-588.158\\\" x2=\\\"-618.657\\\" y1=\\\"-514.559\\\" y2=\\\"-483.505\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\".15\\\"/><stop offset=\\\".3\\\" stop-opacity=\\\".06\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\".03\\\"/></linearGradient><path fill=\\\"url(#deviconChrome5)\\\" d=\\\"m59.158 125.791l26.063-44.363a27.731 27.731 0 0 1-16.082 9.426l-11.091 34.937\\\"/><linearGradient id=\\\"deviconChrome6\\\" x1=\\\"-588.6\\\" x2=\\\"-584.163\\\" y1=\\\"-505.621\\\" y2=\\\"-549.431\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\".15\\\"/><stop offset=\\\".3\\\" stop-opacity=\\\".06\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\".03\\\"/></linearGradient><path fill=\\\"url(#deviconChrome6)\\\" d=\\\"M119.602 36.508H63.595a27.727 27.727 0 0 1 21.626 10.537l35.491-8.873\\\"/>\"\n\t\t},\n\t\t\"chrome-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#77787A\\\" d=\\\"M23.649 125.01c-.782.374-2.52.953-4.732.953c-4.972 0-8.206-3.371-8.206-8.41c0-5.074 3.473-8.786 8.853-8.786c1.771 0 3.337.443 4.154.886l-.681 2.281c-.715-.374-1.839-.784-3.474-.784c-3.78 0-5.823 2.828-5.823 6.232c0 3.813 2.452 6.162 5.721 6.162a8.58 8.58 0 0 0 3.678-.783zm3.508-23.597h2.996v10.317h.068a5.647 5.647 0 0 1 2.146-2.146a6.137 6.137 0 0 1 3.064-.817c2.213 0 5.754 1.362 5.754 7.015v9.806h-2.996v-9.466c0-2.655-.987-4.868-3.814-4.868c-1.94 0-3.438 1.361-4.018 2.961c-.17.443-.204.886-.204 1.431v9.942h-2.996zm18.898 12.836c0-1.941-.034-3.61-.136-5.142h2.622l.136 3.269h.102c.75-2.212 2.589-3.61 4.598-3.61c.307 0 .544.035.816.069v2.827c-.307-.068-.612-.068-1.021-.068c-2.111 0-3.609 1.566-4.019 3.813c-.067.41-.102.919-.102 1.396v8.784h-2.997zm25.709 2.963c0 6.094-4.257 8.751-8.207 8.751c-4.426 0-7.899-3.269-7.899-8.479c0-5.482 3.644-8.717 8.173-8.717c4.732 0 7.933 3.439 7.933 8.445m-13.041.171c0 3.608 2.043 6.332 4.971 6.332c2.86 0 5.005-2.689 5.005-6.401c0-2.792-1.396-6.3-4.937-6.3c-3.508.001-5.039 3.269-5.039 6.369m16.82-3.815a82.28 82.28 0 0 0-.136-4.461h2.621l.137 2.69h.103c.92-1.566 2.452-3.031 5.21-3.031c2.212 0 3.915 1.362 4.63 3.303h.068a6.492 6.492 0 0 1 1.873-2.145c.987-.75 2.043-1.159 3.609-1.159c2.213 0 5.447 1.431 5.447 7.151v9.67h-2.927v-9.296c0-3.2-1.193-5.073-3.576-5.073c-1.736 0-3.03 1.26-3.575 2.689a5.096 5.096 0 0 0-.238 1.499v10.181H85.86v-9.875c0-2.622-1.158-4.495-3.438-4.495c-1.839 0-3.235 1.498-3.712 2.996c-.17.409-.238.954-.238 1.465v9.908h-2.929zm30.066 4.324c.068 4.052 2.622 5.721 5.652 5.721c2.146 0 3.473-.375 4.563-.851l.545 2.146c-1.055.476-2.894 1.055-5.516 1.055c-5.073 0-8.104-3.371-8.104-8.342c0-4.972 2.928-8.853 7.729-8.853c5.415 0 6.811 4.699 6.811 7.729c0 .614-.034 1.056-.103 1.396h-11.577zm8.786-2.144c.034-1.872-.783-4.836-4.154-4.836c-3.064 0-4.358 2.759-4.597 4.836z\\\"/><circle cx=\\\"64.114\\\" cy=\\\"49.495\\\" r=\\\"46.537\\\" fill=\\\"#fff\\\"/><path fill-opacity=\\\".1\\\" d=\\\"M93.729 57.956c0-16.356-13.26-29.615-29.614-29.615C47.759 28.341 34.5 41.6 34.5 57.956h8.461c0-11.683 9.471-21.153 21.152-21.153c11.683 0 21.153 9.47 21.153 21.153\\\"/><circle cx=\\\"66.229\\\" cy=\\\"55.417\\\" r=\\\"16.077\\\" fill-opacity=\\\".1\\\"/><linearGradient id=\\\"deviconChromeWordmark0\\\" x1=\\\"395.19\\\" x2=\\\"395.19\\\" y1=\\\"337.859\\\" y2=\\\"338.282\\\" gradientTransform=\\\"matrix(82 0 0 82 -32341.5 -27672.313)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#81B4E0\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0C5A94\\\"/></linearGradient><circle cx=\\\"64.114\\\" cy=\\\"49.494\\\" r=\\\"17.346\\\" fill=\\\"url(#deviconChromeWordmark0)\\\"/><linearGradient id=\\\"deviconChromeWordmark1\\\" x1=\\\"-609.405\\\" x2=\\\"-609.405\\\" y1=\\\"-597.665\\\" y2=\\\"-559.165\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F06B59\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF2227\\\"/></linearGradient><path fill=\\\"url(#deviconChromeWordmark1)\\\" d=\\\"M106.421 28.341C94.773 4.908 66.334-4.648 42.9 6.999a47.373 47.373 0 0 0-18.131 15.843l19.038 33c-3.507-11.144 2.686-23.021 13.83-26.527a21.146 21.146 0 0 1 6.053-.973\\\"/><linearGradient id=\\\"deviconChromeWordmark2\\\" x1=\\\"-646.731\\\" x2=\\\"-627.271\\\" y1=\\\"-516.6\\\" y2=\\\"-548.753\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#388B41\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4CB749\\\"/></linearGradient><path fill=\\\"url(#deviconChromeWordmark2)\\\" d=\\\"M24.77 22.841c-14.572 21.737-8.764 51.171 12.974 65.743a47.397 47.397 0 0 0 22.563 7.871L80.19 62.61c-7.435 9.012-20.767 10.29-29.778 2.854a21.14 21.14 0 0 1-6.604-9.623\\\"/><linearGradient id=\\\"deviconChromeWordmark3\\\" x1=\\\"-581.539\\\" x2=\\\"-602.269\\\" y1=\\\"-513.181\\\" y2=\\\"-563.102\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#E4B022\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#FCD209\\\"/></linearGradient><path fill=\\\"url(#deviconChromeWordmark3)\\\" d=\\\"M60.307 96.455c26.094 1.973 48.847-17.582 50.819-43.676a47.378 47.378 0 0 0-4.706-24.438H63.69c11.683.054 21.11 9.567 21.056 21.251A21.146 21.146 0 0 1 80.19 62.61\\\"/><linearGradient id=\\\"deviconChromeWordmark4\\\" x1=\\\"-640.289\\\" x2=\\\"-640.289\\\" y1=\\\"-545.204\\\" y2=\\\"-579.049\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\".15\\\"/><stop offset=\\\".3\\\" stop-opacity=\\\".06\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\".03\\\"/></linearGradient><path fill=\\\"url(#deviconChromeWordmark4)\\\" d=\\\"m24.77 22.841l19.038 33a21.153 21.153 0 0 1 .845-14.385L25.615 21.572\\\"/><linearGradient id=\\\"deviconChromeWordmark5\\\" x1=\\\"-593.573\\\" x2=\\\"-616.841\\\" y1=\\\"-534.274\\\" y2=\\\"-510.583\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\".15\\\"/><stop offset=\\\".3\\\" stop-opacity=\\\".06\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\".03\\\"/></linearGradient><path fill=\\\"url(#deviconChromeWordmark5)\\\" d=\\\"M60.307 96.455L80.19 62.61a21.161 21.161 0 0 1-12.269 7.192L59.46 96.455\\\"/><linearGradient id=\\\"deviconChromeWordmark6\\\" x1=\\\"-593.91\\\" x2=\\\"-590.526\\\" y1=\\\"-527.459\\\" y2=\\\"-560.879\\\" gradientTransform=\\\"translate(675 599.775)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\".15\\\"/><stop offset=\\\".3\\\" stop-opacity=\\\".06\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\".03\\\"/></linearGradient><path fill=\\\"url(#deviconChromeWordmark6)\\\" d=\\\"M106.421 28.341H63.69a21.153 21.153 0 0 1 16.5 8.038l27.076-6.769\\\"/>\"\n\t\t},\n\t\t\"clarity\": {\n\t\t\t\"body\": \"<path fill=\\\"#13171a\\\" d=\\\"M86.987 0H41.013C18.437 0 .136 18.34.136 40.964v46.072C.136 109.659 18.438 128 41.013 128h45.974c22.576 0 40.877-18.34 40.877-40.964V40.964C127.864 18.34 109.563 0 86.987 0\\\"/><path fill=\\\"#7e858b\\\" d=\\\"M38.497 31.809a18.27 18.27 0 0 1 13.24-4.71v6.07a11.165 11.165 0 0 0-8.573 3.317a15.979 15.979 0 0 0-2.913 10.382v34.13a15.98 15.98 0 0 0 2.913 10.383a11.078 11.078 0 0 0 8.771 3.616v5.937a18.27 18.27 0 0 1-13.24-4.744a19.514 19.514 0 0 1-4.865-14.627V46.437a19.61 19.61 0 0 1 4.667-14.628\\\"/><path fill=\\\"#f7f8f9\\\" d=\\\"M59.714 31.809a18.346 18.346 0 0 1 13.239-4.71v6.07a11.233 11.233 0 0 0-8.606 3.317a15.98 15.98 0 0 0-2.88 10.382v34.13a15.98 15.98 0 0 0 2.88 10.383a11.149 11.149 0 0 0 8.772 3.615v5.938a18.344 18.344 0 0 1-13.406-4.744a19.51 19.51 0 0 1-3.918-6.815a19.544 19.544 0 0 1-.914-7.812V46.437a19.571 19.571 0 0 1 4.832-14.628z\\\"/><path fill=\\\"#7e858b\\\" d=\\\"M80.997 31.809a18.38 18.38 0 0 1 13.239-4.71v6.07a11.266 11.266 0 0 0-8.638 3.317A15.978 15.978 0 0 0 82.883 47v33.998c-.27 3.69.748 7.36 2.88 10.382a11.188 11.188 0 0 0 8.77 3.615v5.938a18.412 18.412 0 0 1-13.238-4.744a19.673 19.673 0 0 1-5.03-14.627V46.434a19.708 19.708 0 0 1 4.732-14.627z\\\"/>\"\n\t\t},\n\t\t\"clarity-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#13171a\\\" d=\\\"M24.365 46.046H11.468C5.135 46.046 0 51.191 0 57.538v12.925c0 6.347 5.134 11.492 11.468 11.492h12.897c6.334 0 11.468-5.145 11.468-11.492V57.538c0-6.347-5.134-11.492-11.468-11.492\\\"/><path fill=\\\"#7e858b\\\" d=\\\"M10.762 54.969a5.133 5.133 0 0 1 3.714-1.321v1.702a3.132 3.132 0 0 0-2.405.931a4.483 4.483 0 0 0-.817 2.912v9.575a4.483 4.483 0 0 0 .817 2.913a3.111 3.111 0 0 0 2.46 1.014v1.666a5.125 5.125 0 0 1-3.713-1.33a5.474 5.474 0 0 1-1.365-4.104v-9.854a5.501 5.501 0 0 1 1.309-4.104\\\"/><path fill=\\\"#f7f8f9\\\" d=\\\"M16.714 54.969a5.147 5.147 0 0 1 3.714-1.321v1.702a3.151 3.151 0 0 0-2.414.931a4.483 4.483 0 0 0-.808 2.913v9.575a4.483 4.483 0 0 0 .808 2.912a3.128 3.128 0 0 0 2.46 1.014v1.666a5.146 5.146 0 0 1-3.76-1.33a5.474 5.474 0 0 1-1.356-4.104v-9.854a5.492 5.492 0 0 1 1.356-4.104\\\"/><path fill=\\\"#7e858b\\\" d=\\\"M22.684 54.969a5.156 5.156 0 0 1 3.714-1.321v1.702a3.16 3.16 0 0 0-2.423.931a4.483 4.483 0 0 0-.762 2.95v9.538a4.483 4.483 0 0 0 .808 2.912a3.139 3.139 0 0 0 2.46 1.014v1.666a5.165 5.165 0 0 1-3.714-1.33a5.507 5.507 0 0 1-1.41-4.104v-9.854a5.53 5.53 0 0 1 1.327-4.104\\\"/><path fill=\\\"#13171a\\\" d=\\\"M55.156 60.441a4.33 4.33 0 0 0-2.87-.828a3.931 3.931 0 0 0-2.404.735a4.717 4.717 0 0 0-1.532 1.935a6.385 6.385 0 0 0-.53 2.587a5.75 5.75 0 0 0 1.208 3.722a4.077 4.077 0 0 0 3.417 1.536a4.348 4.348 0 0 0 2.525-.717a3.49 3.49 0 0 0 1.375-2.038h2.59a5.871 5.871 0 0 1-1.095 2.661a6.164 6.164 0 0 1-2.313 1.861a7.509 7.509 0 0 1-3.277.69a6.25 6.25 0 0 1-3.52-1.08a7.633 7.633 0 0 1-2.562-2.866a7.987 7.987 0 0 1-.929-3.722a8.19 8.19 0 0 1 .929-3.834a7.381 7.381 0 0 1 2.535-2.791a6.278 6.278 0 0 1 3.538-1.07a6.64 6.64 0 0 1 4.819 1.6a6.052 6.052 0 0 1 1.857 3.936h-2.61a3.418 3.418 0 0 0-1.15-2.317zm6.769-10.431h2.59v16.824a4.243 4.243 0 0 0 .483 2.475a2.09 2.09 0 0 0 1.793.707c.501-.018 1-.07 1.495-.158v2.373c-.687.147-1.387.222-2.09.223a4.263 4.263 0 0 1-3.166-1.116a5.096 5.096 0 0 1-1.142-3.61zm19.787 22.211v-2.503a5.104 5.104 0 0 1-4.643 2.847a6.549 6.549 0 0 1-3.714-1.08a7.58 7.58 0 0 1-2.572-2.865a7.94 7.94 0 0 1-.928-3.787a8.053 8.053 0 0 1 .928-3.862a7.235 7.235 0 0 1 2.572-2.829a6.722 6.722 0 0 1 3.65-1.033a5.09 5.09 0 0 1 4.707 2.894V57.52h2.563v14.7zm-1.198-3.582a5.591 5.591 0 0 0 1.198-3.722a5.768 5.768 0 0 0-1.198-3.797a4.18 4.18 0 0 0-3.444-1.48a4.255 4.255 0 0 0-3.418 1.461a5.433 5.433 0 0 0-1.272 3.723a5.646 5.646 0 0 0 1.254 3.721a4.742 4.742 0 0 0 5.276 1.15a4.742 4.742 0 0 0 1.576-1.066zm7.168 3.582V57.519h2.59v2.624a5.328 5.328 0 0 1 1.802-2.122a5.136 5.136 0 0 1 2.879-.725c.39 0 .78.063 1.151.186v2.568a5.245 5.245 0 0 0-1.244-.158c-3.065 0-4.587 1.935-4.587 5.788v6.513zm10.744-18.899a1.86 1.86 0 0 1-.566-1.377a1.865 1.865 0 0 1 .566-1.368a1.858 1.858 0 0 1 1.374-.568a1.787 1.787 0 0 1 1.356.568a1.862 1.862 0 0 1 .548 1.368a1.862 1.862 0 0 1-.548 1.377a1.79 1.79 0 0 1-1.356.568a1.854 1.854 0 0 1-1.374-.568m.065 4.16h2.59V72.22h-2.59zm4.949.037h.66a2.074 2.074 0 0 0 1.652-.53c.318-.446.472-.989.437-1.536v-2.726h2.367v4.792h3.622v2.345h-3.622v6.97a4.19 4.19 0 0 0 .53 2.447a2.264 2.264 0 0 0 1.857.688a13.21 13.21 0 0 0 1.718-.158v2.41c-.722.119-1.451.18-2.183.186a4.483 4.483 0 0 1-3.417-1.172a5.395 5.395 0 0 1-1.114-3.806v-7.565h-2.507zm10.36-.037h2.656l4.429 11.51l4.466-11.51h2.684l-8.673 22.239h-2.618l2.869-7.5z\\\"/>\"\n\t\t},\n\t\t\"clion\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconClion0\\\" x1=\\\"39.01\\\" x2=\\\"66.51\\\" y1=\\\"23.27\\\" y2=\\\"23.27\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff318c\\\"/><stop offset=\\\".15\\\" stop-color=\\\"#fb348c\\\"/><stop offset=\\\".28\\\" stop-color=\\\"#f03c8c\\\"/><stop offset=\\\".42\\\" stop-color=\\\"#de4a8c\\\"/><stop offset=\\\".54\\\" stop-color=\\\"#c45d8b\\\"/><stop offset=\\\".67\\\" stop-color=\\\"#a2778b\\\"/><stop offset=\\\".79\\\" stop-color=\\\"#79958a\\\"/><stop offset=\\\".91\\\" stop-color=\\\"#49b98a\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#21d789\\\"/></linearGradient><linearGradient id=\\\"deviconClion1\\\" x1=\\\"27.99\\\" x2=\\\"13.87\\\" y1=\\\"16.68\\\" y2=\\\"111.42\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".09\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".9\\\" stop-color=\\\"#009ae5\\\"/></linearGradient><linearGradient id=\\\"deviconClion2\\\" x1=\\\"92.05\\\" x2=\\\"-4.53\\\" y1=\\\"13.4\\\" y2=\\\"115.4\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".09\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".9\\\" stop-color=\\\"#009ae5\\\"/></linearGradient><linearGradient id=\\\"deviconClion3\\\" x1=\\\"62.84\\\" x2=\\\"95.87\\\" y1=\\\"77.02\\\" y2=\\\"81.72\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".09\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".9\\\" stop-color=\\\"#009ae5\\\"/></linearGradient></defs><path fill=\\\"url(#deviconClion0)\\\" d=\\\"M47.555 51.25L50.09 5.484l26.613 14.75Zm0 0\\\"/><path fill=\\\"url(#deviconClion1)\\\" d=\\\"M47.555 51.25L50.09 5.484L16.297 26.781L5.484 91.527Zm0 0\\\"/><path fill=\\\"url(#deviconClion2)\\\" d=\\\"m120.188 40.559l-15.06-30.61l-28.425 10.285L47.555 51.25L5.485 91.527l37.949 27.621l47.703-43.02Zm0 0\\\"/><path fill=\\\"url(#deviconClion3)\\\" d=\\\"M100.57 72.582v27.988H54.613l20.2 15.63l29.257 6.316l18.446-41.754Zm0 0\\\"/><path d=\\\"M27.43 27.43h73.14v73.14H27.43Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M36.547 86.746h27.43v4.574h-27.43ZM64.063 36.5h6.093v22.418h12.008V64H64.062ZM34.597 50.434v-.075a14.06 14.06 0 0 1 4.156-10.234a14.06 14.06 0 0 1 10.266-4.078a14.282 14.282 0 0 1 10.898 4.266l-3.84 4.476a10.222 10.222 0 0 0-7.086-3.121c-4.656 0-8.008 3.863-8.008 8.605v.086c0 4.743 3.278 8.692 8.008 8.692c3.172 0 5.098-1.219 7.317-3.242l3.8 3.925a14.138 14.138 0 0 1-11.347 4.875a13.94 13.94 0 0 1-10.082-4.09a13.94 13.94 0 0 1-4.082-10.085\\\"/>\"\n\t\t},\n\t\t\"clion-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M8.16 44.965h21.754v21.754H8.16Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M10.871 62.61h8.16v1.359h-8.16Zm8.188-14.95h1.812v6.664h3.57v1.516H19.06Zm-8.77 4.145v-.024a4.187 4.187 0 0 1 4.293-4.254a4.25 4.25 0 0 1 3.242 1.27l-1.144 1.328a3.038 3.038 0 0 0-2.102-.93c-1.39 0-2.387 1.153-2.387 2.563v.023c0 1.41.977 2.586 2.387 2.586c.938 0 1.516-.363 2.176-.965l1.129 1.168a4.213 4.213 0 0 1-3.38 1.453a4.16 4.16 0 0 1-4.214-4.218\\\"/><path d=\\\"M37.348 55.887v-.059c0-6.187 4.66-11.242 11.343-11.242c4.106 0 6.559 1.367 8.579 3.36l-3.047 3.507C52.547 49.93 50.836 49 48.66 49c-3.668 0-6.308 3.043-6.308 6.777v.059c0 3.734 2.578 6.84 6.308 6.84c2.485 0 3.992-.996 5.719-2.54l3.047 3.079c-2.239 2.39-4.715 3.887-8.922 3.887c-6.418-.024-11.156-4.965-11.156-11.215m21.707-10.938h4.785v17.406h10.855v4.348h-15.64Zm17.535-.933h4.972v4.195H76.59Zm.125 6.03h4.71v16.657h-4.71Zm6.683 8.419v-.059c0-4.789 3.852-8.672 9.043-8.672c5.196 0 8.993 3.825 8.993 8.61v.062c0 4.785-3.856 8.672-9.047 8.672c-5.188 0-8.989-3.805-8.989-8.613m13.364 0v-.059c0-2.457-1.77-4.597-4.38-4.597c-2.706 0-4.323 2.078-4.323 4.535v.062c0 2.457 1.773 4.602 4.382 4.602c2.715 0 4.329-2.082 4.329-4.543Zm6.46-8.418h4.716v2.351c1.085-1.402 2.488-2.675 4.878-2.675c3.579 0 5.657 2.363 5.657 6.187v10.793h-4.711V57.41c0-2.234-1.059-3.387-2.864-3.387c-1.8 0-2.949 1.153-2.949 3.387v9.293h-4.715ZM38.997 82.012v1.11h-.867v-8.208h.867v3.566a2.615 2.615 0 0 1 2.227-1.296c1.39 0 2.773 1.09 2.773 3.015v.02c0 1.902-1.371 3.027-2.773 3.027c-.907 0-1.75-.469-2.227-1.234m4.113-1.778v-.027c0-1.371-.945-2.246-2.047-2.246a2.175 2.175 0 0 0-2.105 2.238v.02a2.18 2.18 0 0 0 2.105 2.254c1.126 0 2.047-.836 2.047-2.239m6.407-2.925h.918L48 83.313c-.5 1.203-1.063 1.64-1.938 1.64a2.583 2.583 0 0 1-1.238-.293l.293-.683c.281.148.594.222.91.214c.52 0 .848-.27 1.196-1.09l-2.645-5.8h.957l2.11 4.847Zm5.047 4.53l.636-.55c.485.727.98 1.125 1.813 1.125c.89 0 1.539-.644 1.539-1.89v-5.282h.898v5.262a2.845 2.845 0 0 1-.726 2.07a2.43 2.43 0 0 1-1.727.649a2.696 2.696 0 0 1-2.434-1.383Zm6.48-1.605v-.027c0-1.672 1.18-3.023 2.789-3.023c1.719 0 2.711 1.375 2.711 3.07c.004.094.004.187 0 .281h-4.621a2.025 2.025 0 0 0 2.047 1.969a2.395 2.395 0 0 0 1.828-.82l.558.484a2.985 2.985 0 0 1-2.39 1.086a2.905 2.905 0 0 1-2.11-.883a2.918 2.918 0 0 1-.812-2.137m4.621-.336c-.09-1.062-.695-1.98-1.852-1.98c-1.011 0-1.777.84-1.89 1.98Zm2.484 1.684v-3.508h-.808v-.765h.808v-1.754h.868v1.754h1.84v.765h-1.84v3.395c0 .707.39.965.976.965c.293.004.582-.067.844-.2v.727a2.175 2.175 0 0 1-1.047.246c-.934.012-1.64-.445-1.64-1.625Zm4.13-6.34h3.35a2.876 2.876 0 0 1 2.06.695c.332.333.511.79.503 1.258v.024a1.89 1.89 0 0 1-1.246 1.816c.93.281 1.688.817 1.688 1.899v.023c0 1.348-1.137 2.145-2.856 2.145h-3.5Zm5.015 2.078c0-.773-.617-1.28-1.742-1.28h-2.395v2.706h2.328c1.067 0 1.813-.48 1.813-1.402Zm-1.652 2.215h-2.485v2.778h2.63c1.187 0 1.933-.528 1.933-1.403v-.027c.011-.84-.703-1.336-2.078-1.336Zm4.632-2.226h.868v1.52c.18-.485.504-.9.93-1.188a2.456 2.456 0 0 1 1.44-.434v.934h-.07c-1.27 0-2.3.91-2.3 2.668v2.312h-.868Zm3.93 4.125v-.028c0-1.226 1.012-1.879 2.484-1.879a6.037 6.037 0 0 1 1.79.25v-.183c0-1.051-.641-1.586-1.735-1.586a3.997 3.997 0 0 0-1.762.426l-.261-.727a4.84 4.84 0 0 1 2.113-.484a2.567 2.567 0 0 1 1.879.64c.422.461.637 1.075.594 1.7v3.55h-.828v-.875a2.557 2.557 0 0 1-2.106 1c-1.078.008-2.168-.61-2.168-1.804m4.274-.45v-.562a6.014 6.014 0 0 0-1.707-.246c-1.09 0-1.704.472-1.704 1.203v.027c0 .723.68 1.156 1.454 1.156c1.09-.003 1.957-.652 1.957-1.578m2.578-5.898h.988v.953h-.988Zm.058 2.223h.864v5.8h-.864Zm2.735 0h.863v1.015a2.206 2.206 0 0 1 1.992-1.14c1.406 0 2.227.945 2.227 2.328v3.625h-.868v-3.39c0-1.09-.582-1.759-1.605-1.759a1.714 1.714 0 0 0-1.27.528a1.706 1.706 0 0 0-.476 1.285v3.328h-.863Zm6.336 5.07l.437-.617a3.366 3.366 0 0 0 2.012.722c.699 0 1.203-.359 1.203-.918v-.027c0-.582-.684-.809-1.45-1.023c-.91-.258-1.921-.57-1.921-1.637v-.012c0-1 .832-1.664 1.98-1.664a3.993 3.993 0 0 1 2.086.64l-.39.66a3.296 3.296 0 0 0-1.72-.562c-.687 0-1.124.364-1.124.844v.024c0 .55.726.765 1.496 1c.898.27 1.867.617 1.867 1.664v.023c0 1.086-.914 1.738-2.07 1.738a3.964 3.964 0 0 1-2.406-.855m0 0\\\"/>\"\n\t\t},\n\t\t\"clojure\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\"><path fill=\\\"#FFF\\\" d=\\\"M64 0C28.712 0 0 28.6 0 63.751c0 35.155 28.712 63.753 64 63.753s64-28.598 64-63.753C128 28.6 99.288 0 64 0\\\"/><path fill=\\\"#91DC47\\\" d=\\\"M61.659 64.898a265.825 265.825 0 0 0-1.867 4.12c-2.322 5.241-4.894 11.62-5.834 15.706c-.337 1.455-.546 3.258-.542 5.258c0 .79.043 1.622.11 2.469a30.74 30.74 0 0 0 10.533 1.87a30.796 30.796 0 0 0 9.642-1.566a18.09 18.09 0 0 1-2.011-2.12c-4.11-5.221-6.403-12.872-10.031-25.737M46.485 38.96c-7.85 5.51-12.986 14.6-13.005 24.9c.019 10.145 5.001 19.116 12.653 24.65c1.877-7.789 6.582-14.92 13.637-29.214a114.691 114.691 0 0 0-1.43-3.72c-1.955-4.884-4.776-10.556-7.294-13.124c-1.283-1.342-2.84-2.502-4.561-3.492\\\"/><path fill=\\\"#63B132\\\" d=\\\"M90.697 98.798c-4.05-.506-7.392-1.116-10.317-2.144a36.708 36.708 0 0 1-16.32 3.807c-20.293 0-36.742-16.383-36.745-36.602c0-10.97 4.852-20.805 12.528-27.512c-2.053-.495-4.194-.783-6.38-.779c-10.782.101-22.162 6.044-26.9 22.095c-.443 2.337-.337 4.103-.337 6.197c0 31.818 25.895 57.613 57.835 57.613c19.561 0 36.841-9.682 47.305-24.489c-5.66 1.405-11.103 2.077-15.763 2.091c-1.747 0-3.387-.093-4.906-.277\\\"/><path fill=\\\"#90B4FE\\\" d=\\\"M79.829 87.634c.357.176 1.167.464 2.293.783c7.579-5.542 12.504-14.469 12.523-24.558h-.003c-.028-16.82-13.693-30.43-30.582-30.462a30.765 30.765 0 0 0-9.602 1.554c6.21 7.05 9.196 17.127 12.084 28.148l.005.013c.005.009.924 3.06 2.501 7.11c1.566 4.042 3.797 9.048 6.23 12.696c1.597 2.444 3.354 4.2 4.551 4.716\\\"/><path fill=\\\"#5881D8\\\" d=\\\"M17.057 30.311c5.463-3.408 11.04-4.637 15.908-4.593c6.722.02 12.008 2.096 14.544 3.516c.612.352 1.194.73 1.764 1.12a36.714 36.714 0 0 1 14.786-3.096c20.295.003 36.747 16.386 36.75 36.601c-.003 10.192-4.188 19.408-10.934 26.044a45.3 45.3 0 0 0 5.225.29c6.406.004 13.329-1.404 18.52-5.753c3.384-2.84 6.22-6.998 7.792-13.233c.307-2.408.484-4.856.484-7.347c0-31.817-25.892-57.614-57.835-57.614c-19.372 0-36.508 9.5-47.004 24.065\\\"/></g>\"\n\t\t},\n\t\t\"clojurescript\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\"><path fill=\\\"#96CA4B\\\" d=\\\"M35.563 79.748c-3.83 0-6.724-1.118-8.714-3.355c-1.99-2.237-2.985-5.44-2.985-9.612c0-4.262 1.025-7.527 3.106-9.824c2.08-2.297 5.065-3.446 9.015-3.446c2.653 0 5.065.484 7.176 1.481l-1.628 4.323c-2.262-.877-4.131-1.33-5.608-1.33c-4.372 0-6.543 2.902-6.543 8.705c0 2.841.543 4.957 1.628 6.408c1.085 1.42 2.683 2.146 4.794 2.146c2.382 0 4.643-.604 6.784-1.783v4.685c-.965.574-1.99.967-3.075 1.21c-1.086.271-2.412.392-3.95.392m21.829-.453h-5.367V43.688h5.367z\\\"/><path fill=\\\"#5F7FBF\\\" d=\\\"M65.985 90.539c-1.598 0-2.955-.181-4.01-.574v-4.262a12.3 12.3 0 0 0 3.166.423c2.291 0 3.437-1.3 3.437-3.9v-28.26h5.367V82.59c0 2.6-.694 4.595-2.05 5.925c-1.387 1.36-3.347 2.025-5.91 2.025zm2.261-43.254c0-.968.272-1.693.784-2.207c.513-.514 1.266-.786 2.261-.786c.935 0 1.689.272 2.201.786c.513.514.784 1.27.784 2.207c0 .906-.271 1.632-.784 2.176c-.512.514-1.266.786-2.2.786c-.965 0-1.72-.272-2.262-.786c-.543-.544-.784-1.27-.784-2.176m33.8 24.816c0 2.478-.905 4.352-2.684 5.682c-1.81 1.33-4.372 1.965-7.719 1.965c-3.377 0-6.06-.514-8.11-1.541v-4.655c2.954 1.36 5.728 2.055 8.291 2.055c3.287 0 4.945-.997 4.945-2.992c0-.635-.181-1.18-.543-1.602c-.362-.424-.965-.877-1.809-1.33c-.844-.454-1.99-.968-3.497-1.542c-2.895-1.118-4.885-2.267-5.91-3.385c-1.025-1.119-1.538-2.6-1.538-4.383c0-2.177.875-3.839 2.623-5.048c1.75-1.21 4.101-1.783 7.116-1.783c2.955 0 5.759.604 8.412 1.813l-1.749 4.05c-2.713-1.118-5.005-1.692-6.874-1.692c-2.834 0-4.251.816-4.251 2.418c0 .786.362 1.45 1.115 2.025c.724.544 2.352 1.3 4.824 2.267c2.08.816 3.588 1.542 4.553 2.207c.935.665 1.628 1.45 2.11 2.327c.453.847.694 1.904.694 3.144z\\\"/><path fill=\\\"#96CA4B\\\" stroke=\\\"#96CA4B\\\" stroke-width=\\\"6\\\" d=\\\"M58.176 117.864C30.678 115.416 9.03 92.171 9.03 63.97c0-28.202 21.648-51.416 49.146-53.864V4.03C27.332 6.51 3 32.443 3 64s24.332 57.491 55.176 59.97z\\\"/><path fill=\\\"#5F7FBF\\\" stroke=\\\"#5F7FBF\\\" stroke-width=\\\"6\\\" d=\\\"M67.824 4.03v6.076C95.322 12.554 116.97 35.798 116.97 64c0 28.202-21.648 51.446-49.146 53.894v6.076C98.668 121.49 123 95.557 123 64S98.668 6.509 67.824 4.03z\\\"/></g>\"\n\t\t},\n\t\t\"cloudflare\": {\n\t\t\t\"body\": \"<path fill=\\\"#FFF\\\" d=\\\"m115.679 69.288l-15.591-8.94l-2.689-1.163l-63.781.436v32.381h82.061z\\\"/><path fill=\\\"#F38020\\\" d=\\\"M87.295 89.022c.763-2.617.472-5.015-.8-6.796c-1.163-1.635-3.125-2.58-5.488-2.689l-44.737-.581c-.291 0-.545-.145-.691-.363s-.182-.509-.109-.8c.145-.436.581-.763 1.054-.8l45.137-.581c5.342-.254 11.157-4.579 13.192-9.885l2.58-6.723c.109-.291.145-.581.073-.872c-2.906-13.158-14.644-22.97-28.672-22.97c-12.938 0-23.913 8.359-27.838 19.952a13.35 13.35 0 0 0-9.267-2.58c-6.215.618-11.193 5.597-11.811 11.811c-.145 1.599-.036 3.162.327 4.615C10.104 70.051 2 78.337 2 88.549c0 .909.073 1.817.182 2.726a.895.895 0 0 0 .872.763h82.57c.472 0 .909-.327 1.054-.8z\\\"/><path fill=\\\"#FAAE40\\\" d=\\\"M101.542 60.275c-.4 0-.836 0-1.236.036c-.291 0-.545.218-.654.509l-1.744 6.069c-.763 2.617-.472 5.015.8 6.796c1.163 1.635 3.125 2.58 5.488 2.689l9.522.581c.291 0 .545.145.691.363c.145.218.182.545.109.8c-.145.436-.581.763-1.054.8l-9.924.582c-5.379.254-11.157 4.579-13.192 9.885l-.727 1.853c-.145.363.109.727.509.727h34.089c.4 0 .763-.254.872-.654c.581-2.108.909-4.325.909-6.614c0-13.447-10.975-24.422-24.458-24.422\\\"/>\"\n\t\t},\n\t\t\"cloudflare-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#404041\\\" d=\\\"M18.344 74.922h-2.75v9.892h7.528v-2.398h-4.778zm12.959-.211c-3.05 0-5.342 2.31-5.342 5.148v.035c0 2.839 2.257 5.113 5.307 5.113c3.05 0 5.342-2.31 5.342-5.148v-.035c0-2.839-2.257-5.113-5.307-5.113m2.521 5.183c0 1.428-1.005 2.645-2.521 2.645c-1.499 0-2.521-1.234-2.521-2.662v-.035c0-1.428 1.005-2.645 2.504-2.645c1.516 0 2.539 1.234 2.539 2.662zm12.571.6c0 1.375-.723 2.028-1.816 2.028s-1.816-.67-1.816-2.098v-5.501h-2.786v5.554c0 3.103 1.763 4.514 4.566 4.514c2.821 0 4.637-1.393 4.637-4.584v-5.483h-2.786v5.57zm10.791-5.572h-3.808v9.891h3.755c3.562 0 5.642-2.116 5.642-4.972v-.035c0-2.856-2.063-4.884-5.589-4.884m2.785 4.955c0 1.604-1.093 2.504-2.733 2.504v-.018h-1.111v-5.025h1.111c1.64 0 2.733.917 2.733 2.504zm6.788 4.937h2.733v-3.527h4.69v-2.274h-4.69V77.32h5.184v-2.398h-7.917zm14.458-9.892h-2.733v9.892h7.529v-2.398h-4.796zm11.954-.07l-4.196 9.962h2.874l.705-1.763h3.808l.723 1.763h2.944l-4.214-9.962zm.211 6.065l1.111-2.803l1.093 2.803zm18.954-2.574v-.035c0-.987-.3-1.745-.882-2.31c-.67-.688-1.71-1.076-3.227-1.076h-4.672v9.909h2.75v-2.997h1.199l1.992 2.997h3.174l-2.363-3.456c1.218-.511 2.029-1.516 2.029-3.032m-2.768.159c0 .705-.529 1.164-1.463 1.164h-1.816v-2.363h1.798c.917 0 1.481.388 1.481 1.164zM119 82.486v-1.569h4.743v-2.169H119V77.25h5.237v-2.328h-7.952v9.892h8.022v-2.328zM7.325 77.197c1.128 0 1.992.688 2.345 1.64h2.892c-.458-2.363-2.539-4.108-5.219-4.108c-3.05 0-5.342 2.31-5.342 5.148v.035c0 2.839 2.257 5.113 5.307 5.113c2.609 0 4.655-1.693 5.184-3.949l-2.891-.018c-.388.864-1.199 1.481-2.257 1.481c-1.499 0-2.521-1.252-2.521-2.662v-.035c-.002-1.429 1.003-2.645 2.502-2.645\\\"/><path fill=\\\"#FFF\\\" d=\\\"m120.993 59.143l-7.564-4.338l-1.305-.564l-30.942.212v15.709h39.811z\\\"/><path fill=\\\"#F38020\\\" d=\\\"M107.223 68.716c.37-1.269.229-2.433-.388-3.297c-.564-.793-1.516-1.252-2.662-1.305l-21.704-.282a.404.404 0 0 1-.335-.176a.486.486 0 0 1-.053-.388a.596.596 0 0 1 .511-.388l21.898-.282c2.592-.123 5.413-2.222 6.4-4.796l1.252-3.262a.694.694 0 0 0 .035-.423a14.24 14.24 0 0 0-13.911-11.143c-6.277 0-11.601 4.055-13.505 9.68a6.48 6.48 0 0 0-4.496-1.252a6.42 6.42 0 0 0-5.73 5.73a6.7 6.7 0 0 0 .159 2.239a9.11 9.11 0 0 0-8.851 9.115c0 .441.035.882.088 1.322c.035.212.212.37.423.37h40.058a.545.545 0 0 0 .511-.388z\\\"/><path fill=\\\"#FAAE40\\\" d=\\\"M114.134 54.77c-.194 0-.406 0-.599.018c-.141 0-.264.106-.317.247l-.846 2.944c-.37 1.269-.229 2.433.388 3.297c.564.793 1.516 1.252 2.662 1.305l4.619.282c.141 0 .264.071.335.176a.496.496 0 0 1 .053.388a.596.596 0 0 1-.511.388l-4.813.282c-2.609.123-5.413 2.222-6.4 4.796l-.353.899c-.071.176.053.353.247.353h16.538c.194 0 .37-.123.423-.317c.282-1.023.441-2.098.441-3.209c-.001-6.524-5.326-11.849-11.867-11.849\\\"/>\"\n\t\t},\n\t\t\"cloudflareworkers\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconCloudflareworkers0\\\" x1=\\\"-.556\\\" x2=\\\"-.628\\\" y1=\\\"128.705\\\" y2=\\\"128.977\\\" gradientTransform=\\\"matrix(155.9359 0 0 -364.3 119.128 47001.098)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#eb6f07\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fab743\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkers0)\\\" d=\\\"M33.882 9.694L48.491 36.05L35.075 60.199a7.75 7.75 0 0 0 0 7.543l13.416 24.209l-14.609 26.356a15.501 15.501 0 0 1-6.559-6.172L4.068 71.737a15.563 15.563 0 0 1 0-15.503l23.255-40.398a15.501 15.501 0 0 1 6.559-6.142\\\"/><linearGradient id=\\\"deviconCloudflareworkers1\\\" x1=\\\"-.594\\\" x2=\\\"-.715\\\" y1=\\\"129.358\\\" y2=\\\"129.519\\\" gradientTransform=\\\"matrix(149.7049 0 0 -194.8 131.59 25305.098)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d96504\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#d96504\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkers1)\\\" d=\\\"M35.075 60.229a7.75 7.75 0 0 0 0 7.513l13.416 24.209l-14.609 26.356a15.501 15.501 0 0 1-6.559-6.172L4.068 71.737c-1.848-3.19 8.497-7.006 31.007-11.478z\\\" opacity=\\\".7\\\"/><linearGradient id=\\\"deviconCloudflareworkers2\\\" x1=\\\"-2.234\\\" x2=\\\"-2.109\\\" y1=\\\"128.901\\\" y2=\\\"128.689\\\" gradientTransform=\\\"matrix(95.8 0 0 -101.1 239.4 13048.3)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#eb6f07\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#eb720a\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkers2)\\\" d=\\\"m35.373 12.347l13.118 23.702l-2.176 3.786l-11.568-19.587c-3.339-5.456-8.437-2.624-14.818 8.408l.954-1.64l6.44-11.18a15.51 15.51 0 0 1 6.499-6.142l1.521 2.653z\\\" opacity=\\\".5\\\"/><linearGradient id=\\\"deviconCloudflareworkers3\\\" x1=\\\"-.847\\\" x2=\\\"-.919\\\" y1=\\\"128.688\\\" y2=\\\"128.96\\\" gradientTransform=\\\"matrix(207.975 0 0 -375 275.025 48376)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ee6f05\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fab743\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkers3)\\\" d=\\\"m100.665 15.835l23.255 40.398a15.485 15.485 0 0 1 0 15.503l-23.255 40.398a15.504 15.504 0 0 1-13.416 7.752H63.994l28.92-52.145a7.75 7.75 0 0 0 0-7.513L63.994 8.084h23.255a15.502 15.502 0 0 1 13.416 7.751\\\"/><linearGradient id=\\\"deviconCloudflareworkers4\\\" x1=\\\"-2.602\\\" x2=\\\"-2.229\\\" y1=\\\"128.679\\\" y2=\\\"128.977\\\" gradientTransform=\\\"matrix(118.9101 0 0 -375.1 361.09 48388.902)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d96504\\\" stop-opacity=\\\".8\\\"/><stop offset=\\\".498\\\" stop-color=\\\"#d96504\\\" stop-opacity=\\\".2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#d96504\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkers4)\\\" d=\\\"m86.057 119.708l-22.957.208l27.787-52.413a8.053 8.053 0 0 0 0-7.573L63.1 8.084h5.247l29.158 51.608a8.048 8.048 0 0 1-.03 7.99a4670.283 4670.283 0 0 0-18.693 32.796c-5.665 9.957-3.22 16.367 7.275 19.23\\\"/><linearGradient id=\\\"deviconCloudflareworkers5\\\" x1=\\\"-.561\\\" x2=\\\"-.634\\\" y1=\\\"128.688\\\" y2=\\\"128.96\\\" gradientTransform=\\\"matrix(201.2571 0 0 -375 180.743 48376)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffa95f\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ffebc8\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkers5)\\\" d=\\\"M40.739 119.886c-2.385 0-4.77-.566-6.857-1.58l28.681-51.727a5.353 5.353 0 0 0 0-5.188L33.882 9.694a15.492 15.492 0 0 1 6.857-1.61h23.255l28.92 52.145a7.75 7.75 0 0 1 0 7.513l-28.92 52.145H40.739z\\\"/><linearGradient id=\\\"deviconCloudflareworkers6\\\" x1=\\\"-2.816\\\" x2=\\\"-2.552\\\" y1=\\\"128.861\\\" y2=\\\"128.719\\\" gradientTransform=\\\"matrix(109.2571 0 0 -375 364.743 48376)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".5\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".1\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkers6)\\\" d=\\\"M90.886 61.391L61.311 8.084h2.683l28.92 52.145a7.75 7.75 0 0 1 0 7.513l-28.92 52.145h-2.683l29.576-53.308a5.35 5.35 0 0 0-.001-5.188\\\" opacity=\\\".6\\\"/><linearGradient id=\\\"deviconCloudflareworkers7\\\" x1=\\\"-2.34\\\" x2=\\\"-2.001\\\" y1=\\\"128.779\\\" y2=\\\"128.952\\\" gradientTransform=\\\"matrix(107.2571 0 0 -371.4 274.743 47913.2)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".5\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".1\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkers7)\\\" d=\\\"M62.563 61.391L33.882 9.694c.894-.477 1.968-.835 2.981-1.133c6.321 11.359 15.652 28.592 28.025 51.668a7.75 7.75 0 0 1 0 7.513L36.416 119.29c-1.014-.298-1.55-.507-2.504-.954l28.622-51.727a5.353 5.353 0 0 0 0-5.188z\\\" opacity=\\\".6\\\"/>\"\n\t\t},\n\t\t\"cloudflareworkers-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#232324\\\" d=\\\"M9.604 112.546L2.536 91.812h4.882l4.292 13.948l4.613-14.001h3.889l4.654 14.001l4.292-13.948h4.761l-7.068 20.734h-3.956l-4.667-13.465l-4.667 13.465zm32.992.268c-4.909 0-8.543-3.634-8.543-8.181v-.067c0-4.56 3.675-8.248 8.61-8.248c4.922 0 8.556 3.634 8.556 8.181v.067c0 4.56-3.675 8.248-8.61 8.248zm.067-3.889c2.588 0 4.131-1.971 4.131-4.292v-.067c0-2.32-1.69-4.359-4.184-4.359c-2.588 0-4.131 1.971-4.131 4.292v.067c-.001 2.32 1.689 4.359 4.184 4.359m11.775 3.487V96.613h4.479v3.192c.912-2.186 2.387-3.594 5.043-3.487v4.694h-.241c-2.977 0-4.801 1.797-4.801 5.566v5.834zm12.338 0V90.954h4.479v11.44l5.23-5.74h5.364l-5.995 6.209l6.209 9.549H76.94l-4.131-6.437l-1.556 1.65v4.788h-4.477zm24.234.402c-4.761 0-8.275-3.353-8.275-8.181v-.067c0-4.52 3.219-8.248 7.832-8.248c5.297 0 7.725 4.104 7.725 8.597c0 .362-.027.778-.054 1.194H87.201c.443 2.039 1.864 3.098 3.876 3.098c1.502 0 2.602-.469 3.849-1.623l2.562 2.28a7.928 7.928 0 0 1-6.478 2.95m-3.849-9.522h6.706c-.268-2.012-1.435-3.353-3.313-3.353c-1.837 0-3.044 1.328-3.393 3.353m14.484 9.12V96.613h4.479v3.192c.912-2.186 2.387-3.594 5.043-3.487v4.694h-.241c-2.977 0-4.801 1.797-4.801 5.566v5.834zm17.81.402a11.137 11.137 0 0 1-6.813-2.387l1.918-2.95a8.99 8.99 0 0 0 5.002 1.878c1.314 0 1.904-.469 1.904-1.18v-.054c0-.979-1.542-1.301-3.286-1.837c-2.226-.644-4.734-1.676-4.734-4.748v-.067c0-3.219 2.602-5.016 5.794-5.016c2.012 0 4.211.671 5.928 1.837l-1.717 3.085a9.413 9.413 0 0 0-4.292-1.475c-1.1 0-1.663.483-1.663 1.1v.067c0 .885 1.502 1.287 3.219 1.878c2.226.751 4.801 1.811 4.801 4.694v.067c.001 3.512-2.627 5.108-6.061 5.108\\\"/><path fill=\\\"#656566\\\" d=\\\"M18.576 84.731h4.828v2.387h-7.618v-9.897h2.79zm18.521-2.602v.027a5.23 5.23 0 0 1-5.418 5.163c-3.085 0-5.391-2.28-5.391-5.123v-.04a5.232 5.232 0 0 1 5.307-5.153l.111.003c3.098 0 5.391 2.28 5.391 5.123m-2.83.027c0-1.422-1.033-2.655-2.575-2.655c-1.515 0-2.548 1.207-2.548 2.642v.04c0 1.422 1.046 2.655 2.562 2.655c1.542 0 2.562-1.207 2.562-2.642v-.04zm12.741.644c0 1.368-.724 2.025-1.837 2.025s-1.851-.671-1.851-2.106V77.22h-2.816v5.552h-.014c0 3.111 1.797 4.52 4.654 4.52s4.694-1.395 4.694-4.573V77.22h-2.83zm16.616-.698v.04c0 2.857-2.119 4.976-5.727 4.976h-3.809v-9.897h3.862c3.582 0 5.674 2.025 5.674 4.881m-2.843.04c0-1.583-1.113-2.508-2.776-2.508h-1.127v5.056h1.127c1.663 0 2.776-.912 2.776-2.508zm6.88 4.963h2.776v-3.527h4.748v-2.28h-4.748v-1.676h5.244v-2.401h-8.02zm14.672-9.884h-2.776v9.897h7.644v-2.387h-4.868zm14.779-.068l4.292 9.965h-2.991l-.738-1.757h-3.862l-.711 1.757h-2.91l4.251-9.965zm-.228 6.062l-1.1-2.803l-1.127 2.816h2.226zm14.914.47l2.401 3.46h-3.219l-2.012-3.004h-1.22v3.004h-2.79v-9.924h4.734c1.542 0 2.588.389 3.272 1.073c.59.563.899 1.328.899 2.32v.027c0 1.515-.832 2.521-2.065 3.044m-.738-2.924c0-.778-.563-1.167-1.502-1.167h-1.824v2.374h1.851c.939 0 1.475-.456 1.475-1.167zm9.576 4.023v-1.583h4.801v-2.173h-4.801v-1.475h5.297v-2.334h-8.06v9.897H126v-2.334h-5.364zM7.405 79.5c1.14 0 2.012.671 2.374 1.636h2.924a5.217 5.217 0 0 0-5.284-4.117A5.23 5.23 0 0 0 2 82.183v.027c0 2.843 2.28 5.123 5.378 5.123a5.257 5.257 0 0 0 5.257-3.956l-2.924-.013c-.402.858-1.22 1.475-2.293 1.475c-1.515 0-2.548-1.247-2.548-2.655v-.04c0-1.437 1.006-2.644 2.535-2.644\\\"/><linearGradient id=\\\"deviconCloudflareworkersWordmark0\\\" x1=\\\"-.445\\\" x2=\\\"-.477\\\" y1=\\\"128.845\\\" y2=\\\"128.968\\\" gradientTransform=\\\"matrix(155.9359 0 0 -364.3 119.128 47001.098)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#eb6f07\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fab743\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkersWordmark0)\\\" d=\\\"m50.414 15.905l6.571 11.856l-6.035 10.863a3.489 3.489 0 0 0 0 3.393l6.035 10.89l-6.571 11.856a6.968 6.968 0 0 1-2.95-2.776L37.003 43.813a7.002 7.002 0 0 1 0-6.974l10.461-18.172a6.97 6.97 0 0 1 2.95-2.762\\\"/><linearGradient id=\\\"deviconCloudflareworkersWordmark1\\\" x1=\\\"-.516\\\" x2=\\\"-.57\\\" y1=\\\"129.598\\\" y2=\\\"129.671\\\" gradientTransform=\\\"matrix(149.7049 0 0 -194.8 131.59 25305.098)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d96504\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#d96504\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkersWordmark1)\\\" d=\\\"M50.951 38.637a3.49 3.49 0 0 0 0 3.38l6.035 10.89l-6.571 11.856a6.968 6.968 0 0 1-2.95-2.776L37.003 43.813c-.831-1.435 3.822-3.152 13.948-5.163z\\\" opacity=\\\".7\\\"/><linearGradient id=\\\"deviconCloudflareworkersWordmark2\\\" x1=\\\"-2.013\\\" x2=\\\"-1.956\\\" y1=\\\"128.876\\\" y2=\\\"128.781\\\" gradientTransform=\\\"matrix(95.8 0 0 -101.1 239.4 13048.3)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#eb6f07\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#eb720a\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkersWordmark2)\\\" d=\\\"m51.085 17.098l5.901 10.662l-.979 1.703l-5.204-8.811c-1.502-2.454-3.795-1.18-6.665 3.782l.429-.738l2.897-5.029a6.976 6.976 0 0 1 2.924-2.763l.684 1.194z\\\" opacity=\\\".5\\\"/><linearGradient id=\\\"deviconCloudflareworkersWordmark3\\\" x1=\\\"-.939\\\" x2=\\\"-.972\\\" y1=\\\"128.83\\\" y2=\\\"128.953\\\" gradientTransform=\\\"matrix(207.975 0 0 -375 275.025 48376)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ee6f05\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fab743\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkersWordmark3)\\\" d=\\\"m80.456 18.667l10.461 18.172a6.968 6.968 0 0 1 0 6.974L80.456 61.985a6.975 6.975 0 0 1-6.035 3.487H63.96l13.009-23.456a3.49 3.49 0 0 0 0-3.38L63.96 15.18h10.461a6.977 6.977 0 0 1 6.035 3.487\\\"/><linearGradient id=\\\"deviconCloudflareworkersWordmark4\\\" x1=\\\"-2.545\\\" x2=\\\"-2.378\\\" y1=\\\"128.826\\\" y2=\\\"128.96\\\" gradientTransform=\\\"matrix(118.9101 0 0 -375.1 361.09 48388.902)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d96504\\\" stop-opacity=\\\".8\\\"/><stop offset=\\\".498\\\" stop-color=\\\"#d96504\\\" stop-opacity=\\\".2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#d96504\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkersWordmark4)\\\" d=\\\"m73.884 65.392l-10.327.094l12.499-23.577a3.623 3.623 0 0 0 0-3.406L63.557 15.18h2.36l13.116 23.215a3.623 3.623 0 0 1-.013 3.594a2105.601 2105.601 0 0 0-8.409 14.752c-2.547 4.48-1.448 7.363 3.273 8.651\\\"/><linearGradient id=\\\"deviconCloudflareworkersWordmark5\\\" x1=\\\"-.572\\\" x2=\\\"-.604\\\" y1=\\\"128.83\\\" y2=\\\"128.953\\\" gradientTransform=\\\"matrix(201.2571 0 0 -375 180.743 48376)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffa95f\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ffebc8\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkersWordmark5)\\\" d=\\\"M53.499 65.472a7.13 7.13 0 0 1-3.085-.711l12.902-23.268a2.41 2.41 0 0 0 0-2.334L50.414 15.905a6.964 6.964 0 0 1 3.085-.724H63.96l13.009 23.456a3.49 3.49 0 0 1 0 3.38L63.96 65.472z\\\"/><linearGradient id=\\\"deviconCloudflareworkersWordmark6\\\" x1=\\\"-2.781\\\" x2=\\\"-2.663\\\" y1=\\\"128.908\\\" y2=\\\"128.844\\\" gradientTransform=\\\"matrix(109.2571 0 0 -375 364.743 48376)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".5\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".1\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkersWordmark6)\\\" d=\\\"M76.057 39.16L62.753 15.18h1.207l13.009 23.456a3.49 3.49 0 0 1 0 3.38L63.96 65.472h-1.207l13.304-23.979a2.407 2.407 0 0 0 0-2.333\\\" opacity=\\\".6\\\"/><linearGradient id=\\\"deviconCloudflareworkersWordmark7\\\" x1=\\\"-2.134\\\" x2=\\\"-1.982\\\" y1=\\\"128.873\\\" y2=\\\"128.951\\\" gradientTransform=\\\"matrix(107.2571 0 0 -371.4 274.743 47913.2)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".5\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".1\\\"/></linearGradient><path fill=\\\"url(#deviconCloudflareworkersWordmark7)\\\" d=\\\"M63.316 39.16L50.414 15.905c.402-.215.885-.376 1.341-.51c2.843 5.11 7.041 12.861 12.607 23.242a3.49 3.49 0 0 1 0 3.38L51.554 65.204a6.758 6.758 0 0 1-1.127-.429l12.875-23.268a2.41 2.41 0 0 0 0-2.334z\\\" opacity=\\\".6\\\"/>\"\n\t\t},\n\t\t\"cmake\": {\n\t\t\t\"body\": \"<path fill=\\\"#064F8C\\\" d=\\\"M62.8.4L.3 123.8l68.1-57.9z\\\"/><path fill=\\\"#249847\\\" d=\\\"m123.8 127.7l-84-33.9L0 127.7z\\\"/><path fill=\\\"#BE2128\\\" d=\\\"M128 126.6L65.6 2.5l9.2 102.6z\\\"/><path fill=\\\"#CDCDCE\\\" d=\\\"m71.9 104l-3.1-34.9L42 92z\\\"/>\"\n\t\t},\n\t\t\"cmake-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#064F8C\\\" d=\\\"m.1 80.1l18.4-15.6l-1.6-17.7z\\\"/><path fill=\\\"#249847\\\" d=\\\"M10.8 72.1L0 81.2h33.4z\\\"/><path fill=\\\"#BE2128\\\" d=\\\"m17.7 47.4l2.5 27.7l14.3 5.8z\\\"/><path fill=\\\"#172C36\\\" d=\\\"M43.1 66.5c-.5 1.7-.2 3.6.8 5.1c1.1 1.4 2.7 2.1 4.5 2c.9 0 1.7-.1 2.6-.3c.7-.1 1.3-.3 2-.6l-.5 3.3c-.8.2-1.5.4-2.3.5c-.9.1-1.7.2-2.6.2c-3.4 0-5.9-.9-7.4-2.7s-1.9-4.2-1.2-7.4c.6-3 2.1-5.7 4.5-7.7c2.4-1.9 5.4-3 8.5-2.9c.9 0 1.8.1 2.7.3c.6.1 1.3.3 1.9.6l-1.1 3.5c-.5-.4-1.2-.6-1.8-.8c-.7-.2-1.5-.3-2.2-.3c-2 0-3.9.7-5.3 2c-1.7 1.4-2.7 3.2-3.1 5.2m32.3-10.1h6.4l-4.2 19.9h-3.8l3.5-16.5l-8.9 16.5h-3.8l-1.9-16.6l-3.5 16.6h-3.8l4.2-19.9H66l1.5 15.1zM91.1 74c-.7.9-1.6 1.7-2.6 2.2c-.8.4-1.7.6-2.6.6c-1.3.1-2.5-.3-3.4-1.2c-.7-.8-1-1.9-.8-3c.3-1.6 1.2-2.9 2.6-3.8c1.7-1 3.7-1.4 5.7-1.3h2.4l.1-.3c.2-1 .1-1.8-.4-2.2c-.7-.5-1.5-.7-2.3-.7c-.8 0-1.7.2-2.5.5c-.8.2-1.6.6-2.3 1.2l.6-3.3c.8-.3 1.7-.6 2.6-.8c.9-.2 1.9-.4 2.8-.4c2.2 0 3.7.5 4.5 1.5c.8 1.1 1 2.7.5 4.9l-.9 3.9l-.6 3.3c-.1 1-.2 1.4-.2 1.4h-3.4v-.7c-.1-.6 0-1.2.2-1.8m.7-4.1l.1-.3h-1.7c-1.1 0-2.2.2-3.2.7c-.7.3-1.2 1-1.3 1.7c-.1.5 0 1 .3 1.4c.5.4 1.1.5 1.7.5c1.1 0 2.1-.4 2.9-1.2c.5-.9.9-1.8 1.2-2.8M102.2 55h3.8l-2.7 12.7l5.9-6h4.6l-6.8 6.6l4.5 8.1h-4.9l-3.4-7.2l-1.5 7.2h-3.8zm23.3 20.6c-.8.4-1.6.7-2.4.8c-.9.2-1.8.3-2.8.3c-2.6 0-4.4-.7-5.4-2s-1.3-3.2-.8-5.7c.4-2.1 1.4-4.1 3-5.5c1.5-1.4 3.4-2.1 5.4-2.1c2.5 0 4.1.8 4.8 2.3c.8 1.5.9 3.7.2 6.6h-10.1c-.1.8.1 1.7.5 2.4c.7 1 1.8 1.5 3 1.3c1 0 2-.2 3-.6c.7-.2 1.4-.6 2.1-1zm-7.6-8h6.6c.3-.9.1-1.8-.4-2.6c-.5-.6-1.3-.9-2.1-.9c-1.1 0-2.1.4-2.8 1.2c-.5.8-.9 1.5-1.3 2.3\\\"/><path fill=\\\"#CDCDCE\\\" d=\\\"m11.3 71.6l8.1 3.2l-.8-9.4z\\\"/>\"\n\t\t},\n\t\t\"codeac\": {\n\t\t\t\"body\": \"<path fill=\\\"#005096\\\" d=\\\"M110.876 40.621L91.138 22.228v-3.814L79.758 7.017l-9.15 4.29h-.142l-1.583 3.245l-15.322-.048L38.524 7.54h-8.168l-3.688 7.914v15.211l-4.748 4.749l-4.195-.428v7.456L2.118 49.754v11.92l3.99 8.53l3.323.333l4.052 8.658l8.975.776l8.152 8.073l3.324 3.308l29.82 29.63h14.864l47.264-80.36ZM31.892 16.514l1.883-4.13h5.857l8.627 4.13l-10.226 4.749l-2.675-5.81h-1.962v8.47l-1.583 1.582Zm35.962 82.119L55.43 86.16H35.74L25.021 75.222l-8.373-.712l-1.583-3.545h16.89l8.578-8.548l-11.507 5.366l-19.643-2.042l-2.422-5.207v-5.208l4.653.49l1.583 3.831l1.71 3.989l8.183-8.183l-6.49.633l-1.74-4.274l-4.828-.475l19.659-9.18l1.076.11l4.321 9.26l14.452 1.266l6.394-13.897l-6.331-.633l-4.179 8.927v-9.355L28.014 36l9.07-9.054l16.461-7.613l13.17.095l-3.863 8.326h3.483l5.429-11.666l6.949-3.245l7.597 7.582v18.994l4.828 2.248V29.003l17.554 14.8Zm6.72-57.363l4.954 2.311v-18.25l-11.555 5.382h6.6z\\\"/>\"\n\t\t},\n\t\t\"codepen\": {\n\t\t\t\"body\": \"<path d=\\\"m125.571 39.926l-58.5-39c-1.997-1.23-4.128-1.24-6.142 0l-58.5 39C.929 40.926 0 42.712 0 44.497v39c0 1.786.929 3.572 2.429 4.571l58.5 39.006c1.996 1.229 4.128 1.24 6.142 0l58.5-39.006c1.5-.999 2.429-2.785 2.429-4.57v-39c0-1.786-.929-3.572-2.429-4.572m-56.07-24.144l43.07 28.715l-19.214 12.858L69.5 41.425V15.784zm-11.001 0v25.644L34.642 57.354L15.428 44.498zm-47.5 39l13.786 9.215L11 73.212zm47.5 57.43L15.428 83.497L34.642 70.64L58.5 86.569zM64 76.997l-19.428-13l19.428-13l19.428 13zm5.5 35.215V86.569L93.357 70.64l19.214 12.857l-43.07 28.715zm47.5-39l-13.786-9.215L117 54.783z\\\"/>\"\n\t\t},\n\t\t\"codepen-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M30.116 52.32c-.189 0-.378.056-.561.17l-10.677 7.117a1.02 1.02 0 0 0-.443.834v7.118c0 .326.17.652.443.834l10.676 7.119c.365.224.754.226 1.121 0l10.677-7.12a1.02 1.02 0 0 0 .443-.833v-7.117c0-.326-.17-.651-.443-.834L30.676 52.49a1.063 1.063 0 0 0-.56-.17m-1.005 2.88v4.68l-4.354 2.908l-3.507-2.347zm2.008 0l7.86 5.24l-3.506 2.348l-4.354-2.907zm17.399.944c-.614 0-1.112.499-1.113 1.113v13.55c0 .614.498 1.112 1.113 1.112h4.837c4.426 0 7.885-3.458 7.885-7.884v-.006c0-4.426-3.458-7.885-7.885-7.885zm67.688 0c-.55.026-1.072.453-1.073 1.113v13.55a1.113 1.113 0 0 0 2.225 0V60.474l8.655 11.02c.652.83 1.986.369 1.987-.687v-13.55a1.113 1.113 0 0 0-2.225 0v10.332l-8.655-11.02a1.083 1.083 0 0 0-.915-.424zm-108.322.005C3.459 56.149 0 59.609 0 64.035s3.458 7.884 7.885 7.884c2.231 0 4.16-.908 5.592-2.23a1.113 1.113 0 1 0-1.51-1.635c-1.083 1-2.444 1.64-4.083 1.64c-3.313 0-5.66-2.346-5.66-5.66c0-3.313 2.347-5.66 5.66-5.66c1.676 0 2.995.553 4.051 1.61a1.113 1.113 0 0 0 1.573-1.574c-1.459-1.46-3.429-2.26-5.623-2.26zm59.016 0c-.614 0-1.112.498-1.113 1.113v13.55c0 .614.498 1.112 1.113 1.112h8.707a1.113 1.113 0 0 0 0-2.225h-7.595v-4.547h4.692a1.113 1.113 0 1 0 0-2.225h-4.692v-4.552h7.595a1.113 1.113 0 0 0 0-2.226zm16.446 0c-.614 0-1.112.498-1.112 1.113v13.55a1.113 1.113 0 0 0 2.226 0v-4.698h4.687c2.735 0 4.982-2.247 4.982-4.982c0-2.736-2.247-4.983-4.982-4.983zm16.453 0c-.614 0-1.112.498-1.112 1.113v6.764a.348.348 0 0 0-.006.014l.006.013v6.759c0 .614.498 1.112 1.112 1.112h8.697a1.113 1.113 0 0 0 0-2.225h-7.585v-4.547h4.683a1.113 1.113 0 0 0 0-2.225h-4.683v-4.552h7.595a1.113 1.113 0 0 0 0-2.226zm-50.169 2.22h3.724c3.314 0 5.66 2.346 5.66 5.66v.006c0 3.313-2.346 5.659-5.66 5.659H49.63Zm34.829.007h4.687a2.758 2.758 0 0 1 0 5.514H84.46Zm-54.345 3.252L33.66 64l-3.546 2.372L26.568 64zm-9.673.69L22.957 64l-2.516 1.68zm19.346 0v3.364L37.271 64zm-15.031 2.895l4.354 2.907v4.68l-7.86-5.24zm10.716 0l3.507 2.346l-7.861 5.24v-4.68z\\\"/>\"\n\t\t},\n\t\t\"coffeescript\": {\n\t\t\t\"body\": \"<path fill=\\\"#28334C\\\" d=\\\"M50.3 29.6c11.7-1 15-8.5 28.7-9.8c6.7-.6 11 .8 11.4 3.1c.4 2.2-2.9 3.7-7 4c-5.6.6-8-1.5-8.4-3.4c-4.1.4-4.8 2.2-4.6 3.5c.4 2.4 5.5 4.7 14.1 3.9c9.8-.8 13-4.6 12.2-8.5c-1-5-8.5-9.2-22-8c-17.3 1.6-17.2 9.5-28.9 10.5c-4.8.4-7.5-.7-8-2.6c-.3-1.9 2-2.8 4.8-3c2.6-.2 5.7.2 7.2 1c1.1-.6 1.5-1.1 1.3-1.8c-.4-1.8-4-2.6-8.5-2.2c-8.7.8-8.7 4.7-8.4 6.4c1.1 4.7 7.8 7.7 16.1 6.9m58.6 19.8c-10.8 2.5-24.6 4.1-41.2 4.1c-16.9 0-30.7-1.8-41.5-4.1c-9.6-2.5-14.8-5.2-16.6-8c.9 6.3 2.5 12.4 4.6 18.2c-2.4 1.5-4.7 3.5-6.7 6C3.7 70.4 2 76 2.3 81.5c.3 5.5 3 10 7.3 13.5c4.5 3.5 9.3 4.5 14.8 3.5c2.1-.3 4.5-1.5 6.6-2.1c-4.5 0-8.3-1.5-12.1-4.5c-4.1-3-7-7.3-7.6-12.4c-1-4.8 0-9.3 2.7-13.2c.6-.8 1.2-1.4 1.9-2c1.5 3.8 3.3 7.4 5.2 10.9c4.1 6.3 8.3 11.8 12.4 17.7c1.8 3.5 3 7 3.8 10.4c2.7 3.8 6.6 6.5 11.4 7.9c5.9 2.1 12.1 2.9 18.4 2.9h.7c6.3 0 12.9-1 19-3c4.5-1.5 8.3-4 11.1-8h.3c.7-3 1.8-6.8 3.5-10.3c4.1-5.9 8.3-11.4 12.4-17.7c5.5-10 9.3-21.4 11.4-33.6c-2.1 3-7.3 5.8-16.6 7.9m-82.7-8.7c10.8 2.7 24.6 4.1 41.2 4.1c16.9 0 30.4-1.5 41.2-4.1c11.4-2.7 16.9-6.3 16.9-9.6c0-2.5-2.5-4.8-7-6.6c1 .7 1.8 1.8 1.8 3c0 3.5-5.2 6.3-15.6 8.6c-9.6 2.1-22 3.6-37 3.6c-14.5 0-27.4-1.5-36.7-3.5c-10-2.5-15.3-5.2-15.3-8.6c0-1.5.7-2.7 2.7-4.1c-6.3 2.5-9.6 4.5-9.6 7.6c.3 3.5 5.9 7 17.4 9.6\\\"/>\"\n\t\t},\n\t\t\"coffeescript-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#28334C\\\" d=\\\"M113.7 105.8c-1.4 0-2.4.5-3.2 1.2l.4-2.1l-3.8.2l-2.1 9.8c-.4 1-1.4 2.2-2.4 2.2c-.7 0-1.1-.3-1.1-1.1c0-.2 0-.6.1-.9l2-9.2h-4l-1.8 8.7c-.1.7-.2 1.2-.2 1.8c0 2.3 1.3 3.2 2.9 3.2c1 0 2.6-.3 4-2l-1.8 8.6l4.1-1l1.4-6.6c.3.5 1 1 2.3 1c5.2 0 6.6-5.9 6.6-9.6c-.1-3.1-1.5-4.2-3.4-4.2m-4.2 11.5c-.6 0-.9-.3-1-.6l1.6-7.6c.5-.8 1.3-1.3 1.9-1.3c.5 0 1.3.1 1.3 2.2c0 2.6-.9 7.3-3.8 7.3m14-11.3c.5-3 .9-4.3.9-4.3l-4 .6l-.8 3.7h-.9l-.2 1h.9l-1.7 8.1c-.1.5-.2 1-.2 1.4c0 1.8.8 3.1 2.7 3.1c.9 0 2.1-.3 2.9-2.7c-.2.1-.5.1-.7.1c-.7 0-.9-.4-.9-1l.1-.9l1.7-8.2h1.6l.2-1h-1.6zm-23.3-3.7c0 1.2.9 2.1 2.1 2.1c1.2 0 2.1-.9 2.1-2.1s-1-2.1-2.1-2.1s-2.1.9-2.1 2.1m-38.4 6c0-1.3-.6-2.6-3-2.6c-5.4 0-7.2 6.2-7.3 9.4c-1.2 1.3-2.5 2.3-4.4 2.3c-1.3 0-1.9-.4-1.9-2.3c0-.3 0-.7.1-1.1c3.2-.2 6.2-2.6 6.2-5.7c0-1.3-.6-2.6-3-2.6c-5.6 0-7.3 6.5-7.3 9.6c0 3.1 1.7 4.3 4.2 4.3c2.8 0 4.7-1.5 6.2-3.3c.4 2.3 1.9 3.3 4.1 3.3c2.2 0 4.1-.9 4.7-4c-.9.7-2.2 1.4-3.2 1.4c-.9 0-1.7-.6-1.7-2.3c0-.2 0-.5.1-.8c3.2-.1 6.2-2.4 6.2-5.6m-2.8-1.1c.5 0 .7.4.7 1.1c0 2.3-1.8 4.4-4 4.5c.6-2.6 2-5.6 3.3-5.6m-10.4 0c.5 0 .7.4.7 1.1c0 2.3-1.8 4.3-3.9 4.5c.5-2.8 1.9-5.6 3.2-5.6m24.4-2.6c.4.4.7.6 1.3.6c1.3 0 2.2-1.2 2.2-2.8c0-3-3.1-3.2-4.4-3.2c-3.5 0-6.3 2-6.3 4.9c0 4 5.5 5.6 5.5 10.3c0 2.3-1.3 3.6-3.2 3.6c-1.7 0-2.6-1.3-2.6-2.6c0-1.8 1.7-2.5 3.2-2.5c-.1-1.4-1.5-1.8-2.4-1.8c-1.9 0-4 1.5-4 4.4c0 3.3 2.7 4.7 5.8 4.7c4 0 7.6-2.2 7.6-6.8c0-5.8-6.1-6.4-6.1-10.4c0-1.6 1-2.4 2.5-2.4s2 .9 2 1.8c.2.8-.3 1.7-1.1 2.2M42.8 106H40l.5-2.3c.4-1.8 1.3-2.1 1.8-2.1s1 .2 1 .8c0 .2 0 .6-.1.6h1.3c.1 0 .1-.5.1-1c0-1.8-1.6-2.9-3.2-2.9c-1.2 0-2.6.4-3.7 1.7c-.5-1-1.7-1.7-2.9-1.7c-1.8 0-4.1.8-4.9 4.6l-1.2 5.7c-.8.3-1.5.5-2.2.5c-.1 0-.2 0-.3-.1c0-2.8-1.1-4.3-3.5-4.4c-5.5 0-7.3 6.2-7.4 9.4c-1.2 1.4-3 2.2-4.9 2.2c-2.6 0-3.2-1.8-3.2-4.2c0-5.5 2.7-12.6 5.6-12.6c1.2 0 1.7.8 1.7 1.7c0 1-.6 2.1-1.3 2.5c.5.6 1.1.7 1.6.7c1.4 0 1.9-1 1.9-2.5c0-2.6-2-3.6-4.5-3.6c-7.1 0-9.4 9.2-9.4 14.1s1.9 6.6 5.9 6.6c2.1 0 5-1 6.8-3.4c.4 2.1 2.1 3 4.2 3c3.3 0 6-3.1 6.5-8.1c.8-.1 1.6-.3 2.3-.6l-1.8 8.5c-2.6.8-4.7 1.6-4.7 4.1c0 1.8 1.6 2.9 3.2 2.9c1.2 0 2.6-.3 3.7-1.7c.4 1 1.4 1.7 2.9 1.7c1.8 0 4.1-.7 4.9-4.6l3.1-14.6h2.7zM24 111.5c-.4 3.2-1.8 5.7-3.1 5.6c-1 0-1.4-.4-1.4-2.2c0-2.7 1.6-7.6 3.6-7.6c.7 0 1 .4 1 1.6c-.5.2-.8.7-.8 1.5c0 .5.1 1 .7 1.1m2.4 10.3c-.4 1.6-1 2.1-1.6 2.1c-.6 0-1.1-.5-1.1-.9c0-1.5 1.3-2.2 3-2.8zm6.4 0c-.4 1.6-1 2.1-1.6 2.1c-.7 0-1.3-.1-1.6-.5c.2-.5.4-1 .5-1.7l.5-2.5l2.8-.5zm.8-3.8l-2.8.5l2.4-11.5h2.7zm3.1-14.9l-.6 2.9h-2.7l.5-2.2c.4-1.8 1.3-2.1 1.8-2.1c.6 0 1 .3 1 .9c.1.1.1.3 0 .5m61.4 4.9c0-1.1-.7-2.1-1.9-2.1c-1.3 0-2.4.9-3.3 1.7l.4-1.7l-3.9.1l-1.8 8.6c-1.3 1.5-2.7 2.7-4.8 2.7c-1.3 0-2-.4-2-2.3c0-3 1.8-8 3.5-8c.5 0 .7.4.7 1.1c0 .5-.1 1-.3 1.6c.3.2.6.3.9.3c.8 0 1.4-.7 1.4-2c0-1.2-.6-2.5-3-2.5c-5.5 0-7.3 6.5-7.3 9.6c0 3.1 1.7 4.3 4.2 4.3c2.7 0 4.6-1.2 6.1-2.9l-.7 3.3h3.9l2.1-10.5c.7-.6 1.2-1.1 2-1.1s.1 1.7 1.6 1.7c1.6.2 2.2-1 2.2-1.9M52.3 18c10-.9 12.9-7.3 24.6-8.3c5.8-.5 9.4.7 9.8 2.7c.4 1.9-2.5 3.2-5.9 3.5c-4.8.5-6.8-1.2-7.2-2.9c-3.6.4-4.1 1.9-3.9 3c.4 2 4.7 4 12.1 3.4c8.3-.7 11.1-3.9 10.5-7.3c-.9-4.3-7.3-7.9-18.8-6.8c-14.8 1.3-14.7 8.2-24.8 9c-4.1.4-6.4-.6-6.8-2.2c-.3-1.6 1.7-2.4 4.1-2.6c2.2-.2 4.9.2 6.1.9c1-.5 1.2-1 1.2-1.5c-.4-1.5-3.5-2.2-7.3-1.9c-7.5.7-7.5 4-7.2 5.5c.6 3.5 6.4 6.1 13.5 5.5m-20.7 9.5c9.2 2.3 21 3.6 35.2 3.6c14.5 0 26-1.2 35.2-3.6c9.8-2.3 14.5-5.4 14.5-8.3c0-2.1-2.1-4.1-5.9-5.7c.9.6 1.5 1.5 1.5 2.6c0 3-4.4 5.4-13.3 7.4c-8.3 1.8-18.8 3.1-31.7 3.1c-12.4 0-23.4-1.2-31.4-3c-8.5-2.1-13.1-4.4-13.1-7.4c0-1.2.6-2.3 2.3-3.6c-5.4 2.1-8.3 3.8-8.3 6.5c.4 3.1 5.2 6.1 15 8.4M17.5 73.9c3.8 3 8 3.8 12.7 3c1.8-.3 3.8-1.2 5.7-1.8c-3.8 0-7.1-1.2-10.4-3.8c-3.6-2.6-5.9-6.2-6.5-10.7c-.9-4.1 0-8 2.3-11.3l1.6-1.8c1.3 3.2 2.8 6.4 4.4 9.3C30.9 62.2 34.4 66.9 38 72c1.5 3 2.6 5.9 3.3 8.9c2.3 3.3 5.7 5.5 9.8 6.7c5.1 1.8 10.4 2.4 15.7 2.4h.6c5.4 0 11-.7 16.2-2.4c3.8-1.2 7.1-3.6 9.5-6.6h.3c.6-3 1.5-6 3-9c3.6-5.1 7.1-9.8 10.7-15.2c4.7-8.5 8-18.3 9.8-28.8c-1.9 2.7-6.3 5-14.3 6.8c-9.2 2.1-21 3.5-35.2 3.5c-14.5 0-26.3-1.5-35.5-3.6c-8.3-2.1-12.7-4.4-14.2-6.8c.8 5.4 2.1 10.6 3.9 15.6c-2.1 1.3-4 3-5.7 5.1c-3.3 4.1-4.7 8.9-4.4 13.6s2.4 8.7 6 11.7\\\"/>\"\n\t\t},\n\t\t\"composer\": {\n\t\t\t\"body\": \"<path d=\\\"M45.34 127.9c-.53-.49-.21-1.76.73-2.91c.56-.67 1.89-2.56 2.94-4.2c2.35-3.65 3.23-4.52 4.07-4c.49.31.59.84.52 2.77l-.1 2.44l1-1.22c1.89-2.46 3.67-4.21 4.27-4.21c1.33 0 1.54.88 1 4.07c-.39 2.34-.39 3.15-.07 3.67c.91 1.47.14 2.77-1.65 2.77c-1.12 0-1.54-1.23-1.26-3.64l.25-2.14l-.81 1c-1.85 2.49-3.6 4-4.59 4s-1.08-.18-1.4-2.24c-.07-.46-.56 0-1.75 1.68C47 128 46 128.6 45.34 127.9\\\"/><path d=\\\"M38.47 126.53c-.7-.88-.77-1.3-.63-3a9.32 9.32 0 0 1 2.7-6c1-1 1.54-1.33 2.48-1.33a2.91 2.91 0 0 0 1.61-.38c.71-.7 2.18 0 2.81 1.22c1.68 3.58-2.31 9.67-6.8 10.27c-1.22.2-1.5.1-2.17-.78m4.66-2.53a6.55 6.55 0 0 0 1.87-4.19c-.07-.74-.32-1-1.09-1.06c-1.57-.17-3 1.44-3.57 4.07c-.4 2.06 1.04 2.69 2.79 1.18\\\"/><path d=\\\"M70 126.57c-1-1-.95-4.17.14-6.48c.94-2.1 2.31-3.26 6.3-5.57c1.68-1 2.91-1.82 2.77-2s-.7-.39-1.23-.63c-.91-.39-1.12-.25-4.27 2.66c-2.45 2.24-3.4 3.4-3.71 4.38c-.42 1.47-2.17 2.9-4.66 3.88c-1.4.53-1.61.77-2 2.11c-.39 1.54-1.23 2.17-2.35 1.71c-.77-.28-.59-1.57.91-6.09a39 39 0 0 0 1.33-4.38c-.07-.07-4.13-.91-9-1.93l-8.93-1.82l-8.83-.17c-6.94-.11-8.86-.25-8.86-.6c0-.59.87-.77 6.3-1.26a80.72 80.72 0 0 1 14.89.25c1.82.17 2.34.14 2.06-.18c-.73-.81-16.95-5.08-18.56-4.87c-.8.11-.7.21 1.12 1.65c1.19.94 1.82 1.64 1.54 1.71c-.66.25-8.4-3.85-8.4-4.44c0-.42.73-.46 4.66-.28a70.71 70.71 0 0 1 7.25.73a10.17 10.17 0 0 0 2.8.32c.1-.07-.28-.56-.81-1c-.8-.7-.94-1-.77-2c.21-1.16.21-1.16-7.14-6.55c-4.38-3.19-7.39-5.64-7.39-6c0-1-.88-1.82-2.49-2.42l-1.54-.59l-.21-5.57c-.14-3.08-.25-8.65-.28-12.36c0-6.34-.07-6.83-.81-7.78s-.73-1.22-.38-3c.42-2.27.28-2.55-1.51-2.55S16 55.12 16.58 49c.32-3.08.6-5.68.7-5.75a20.57 20.57 0 0 1 4.55.88c.63.18.81-.07 1.34-2l.59-2.21l-1.09-2.42c-.87-1.93-1.19-2.35-1.71-2.17c-1.09.31-2-2.31-.95-2.87c.42-.25.25-1.12-1-5.22c-3.75-12-4.31-16.18-2.24-16.25c.73 0 2.27 1.85 3.85 4.66c2.63 4.62 2.31 4.48 4 1.75c3.71-6 4.9-7 6.62-5.92a3.48 3.48 0 0 0 1.57.56c1 0 7-2.24 9.91-3.75s4-1.43 3.86.25c0 1.05-.42 1.57-2.77 3.74l-2.7 2.53l.63 2.13a7.3 7.3 0 0 0 1 2.31a110.29 110.29 0 0 0 9.63-5.64c5.11-3.18 9.56-5.74 9.88-5.7a.8.8 0 0 1 .56.77c0 .49-1.68 1.75-6 4.55c-3.33 2.14-5.85 4-5.61 4a5.81 5.81 0 0 1 1.2.84c1.33 1.22 1 2.31-1.55 5C48 26 46.84 27.8 44.28 33c-2 4-2.52 4.55-5.39 6c-1.08.53-1.51 1-1.51 1.51a2.2 2.2 0 0 1-.56 1.36c-.7.77-2 5.26-1.61 5.61a32.68 32.68 0 0 0 3.51 1a11.83 11.83 0 0 1 3.22 1c0 .49-2.1 8.44-2.31 8.8c-.11.17-.56.21-1.05.1c-.7-.18-.84-.1-.81.6a10 10 0 0 0 .28 1.68c.21.73.39.56 1.58-1.65a46.38 46.38 0 0 1 8.26-9.84a41.93 41.93 0 0 1 4.73-2.91a14.75 14.75 0 0 1 6.48-2.1a17 17 0 0 1 5.36 0c3 .56 6.86 2.56 8.47 4.34l1.34 1.5h3.36c2.9 0 3.6.14 5.15 1a21.43 21.43 0 0 1 2.87 1.85A28.13 28.13 0 0 1 91.11 60c.6 1.26.88 1.61 1 1.16a4.83 4.83 0 0 0-.73-2.24l-.91-1.65l.7-1.33c.38-.77.73-1.51.8-1.65s-.21-.14-.63.11s-.91.28-1 .1c-.73-.73-5.64-10-5.5-10.4a12.11 12.11 0 0 1 3.36-1.37a10.19 10.19 0 0 0 3.19-1.26a14.66 14.66 0 0 0-.49-1.92a7.53 7.53 0 0 0-2.31-3.37a8.85 8.85 0 0 0-2.24-1.75c-.77 0-5.29-2.34-6.94-3.6c-2.2-1.72-3-2.11-7.18-3.4c-3.43-1.09-3.6-1.19-3.6-2.1c0-1.82.91-2.42 4.9-3.15c2-.39 3.82-.78 4-.81c.49-.18-3.18-4-6-6.23c-4.17-3.33-4.27-3.4-4.27-4.28c0-1.29 1.19-2.13 2.87-2.1A7.93 7.93 0 0 1 74 10.5l2.49 1.64l-3.28-3.32C70.17 5.7 70 5.38 70 4s.14-1.51.87-1.79a1.2 1.2 0 0 0 .88-1c0-1 1.15-1.51 3.22-1.23s7.81 3.29 11.84 6.34a15.81 15.81 0 0 0 2.66 1.75a13.5 13.5 0 0 0-1.16-3.22C87.08 2 87 1.74 87.5.87a2.33 2.33 0 0 1 3.58-.39c1.78 1.4 6.58 10.19 7.88 14.43a52.07 52.07 0 0 1 1.75 12.54c-.07 2 .14 2.84 1.4 6.13a30.21 30.21 0 0 0 1.79 4.13c.17.18 2-.21 4.27-.94a17.28 17.28 0 0 1 4.2-1c.28.32-.49 10.27-.84 10.83a2.78 2.78 0 0 1-1.3.63c-.59.14-1 .35-1 .45a10.61 10.61 0 0 0 1.4 2c1 1.12 1.37 1.93 1.2 2.28a2.62 2.62 0 0 0-.18.91c0 .21.11 1.54.18 3s.24 3.26.38 4c.28 1.61-.21 3.11-3.33 10.61a64.44 64.44 0 0 0-3.92 15.48a24.27 24.27 0 0 1-1.54 5.32a10.84 10.84 0 0 0-1.19 4.49c0 1.47.1 1.78.52 1.61a14.83 14.83 0 0 1 4-.49a35.5 35.5 0 0 1-2.87 3l-2.88 2.86l2-.67c2.42-.8 4.87-1.26 4.87-.84c0 .18-.59.6-1.29 1c-1.58.81-5.12 3.54-4.14 3.19a19.24 19.24 0 0 1 3.51-.38c3.29-.18 3.43-.25-6 2.41A115.7 115.7 0 0 0 81 114.2c-3 1.51-3 1.58-2.48 2.21s.8 1.89.42 4.13c-.21 1.23-.18 1.47.31 1.47a4.14 4.14 0 0 1 1.75 1.23a4.08 4.08 0 0 0 1.93 1.23c.88 0 .84-.11-1.19-3c-1.51-2.06-1.54-3.08-.21-4.44c2-2 6.34-.81 5.43 1.57a1.06 1.06 0 0 1-1.72.21a1.8 1.8 0 0 0-2.1 0a6.86 6.86 0 0 0 1.4 2.49c1.89 2.59 2.1 4.17.67 5.08c-.77.52-1.12.56-2.66.17c-2.25-.49-4.07-1.61-4.35-2.63c-.17-.7-.28-.63-1.82.85a8.18 8.18 0 0 1-5.11 2.45a2.31 2.31 0 0 1-1.26-.7zm4.55-2.91c1.47-1.47 2.35-3.75 1.68-4.52c-.52-.67-2.17-.56-2.84.17c-1.36 1.51-2.17 5-1.19 5.43c.8.35.98.26 2.31-1.08zm-8.65-3.4c1.37-1 1.68-1.82.77-2.17c-.7-.25-1.79.73-2.24 2s-.25 1.29 1.43.17zm6.13-7a26.1 26.1 0 0 0 2.38-2.26c.07-.1-.64-.52-1.55-.87c-2.38-1-5.25-.88-8.58.35a13.44 13.44 0 0 0-2.73 1.19a12.07 12.07 0 0 0 2.56 1.16a25.6 25.6 0 0 1 3.57 1.64a4.3 4.3 0 0 0 1.51.7a10.69 10.69 0 0 0 2.81-1.95zm16.7-5.15c2.32-1.12 5.89-2.69 8-3.5c2.24-.88 3.78-1.68 3.78-2a4.54 4.54 0 0 1 .73-1.65c.39-.66.63-1.19.49-1.19a136.38 136.38 0 0 0-12.5 5.5c-5.08 2.45-5.53 2.77-5.53 3.61s.31 1.5.66 1.29c.03-.03 2.02-1.01 4.33-2.1zm-3.57-52.5a9.15 9.15 0 0 0-1.72-1.44c-.59-.42-.38-.14.53.7c1.71 1.58 2.24 1.89 1.19.74m16.42 69.55a26.12 26.12 0 0 0-2.31-2.27a5.78 5.78 0 0 0-.38 1.61a5.54 5.54 0 0 1-.6 2.1c-.56.67-2 .6-2.31-.11a19.15 19.15 0 0 1 .77-4.62c1.3-5.46 1.68-6.16 3.19-5.78c.42.11.87 0 1-.17c.42-.63 2.84-.46 3.47.24c1 1.16.52 4.07-1 5.29c-.49.42-.49.53 0 1.33a7.55 7.55 0 0 0 1.93 1.72c1.47.94 1.75 2 .67 2.59c-1.44.74-2.24.39-4.49-1.93zm-.17-5.53c.87-.81 1-1.65.28-1.65s-2 1.65-2 2.35s.53.35 1.72-.7\\\"/><path d=\\\"M87.19 126.7c-.56-.21-.77-.52-.63-.91a64.49 64.49 0 0 1 2.2-6.93a15.82 15.82 0 0 1 1.44-1.33c1.09-.88 1.44-1 4.13-1s3 .07 3 .67c0 1-.88 1.5-3.58 1.75c-2 .17-2.55.35-2.66.84s.14.6 1.65.6s1.78.07 1.78.84c0 1.08-.45 1.36-2.59 1.61s-2.55.91-.38.77c2.52-.21 3.39.14 3.25 1.22c-.1.91-.24 1-2.76 1.37c-1.47.21-2.94.49-3.33.59a2.65 2.65 0 0 1-1.52-.09m-58.53-.59c-1.33-2.52 1.05-8.09 4.21-9.7c1.89-1 4.51-.49 4.51.87c0 .88-1.15 1.47-2.24 1.19c-1.29-.31-2.27.42-3.22 2.42c-1.4 3-1.12 3.22 2.38 1.93c2.42-.88 3.16-.6 2.45.94c-.52 1.12-3.74 2.7-6.05 2.91c-1.41.14-1.7.03-2.04-.56\\\"/><g fill=\\\"#6a5439\\\"><path d=\\\"M49.61 108c-.7-.24-2.42-.73-3.82-1.08c-1.61-.39-2.59-.81-2.7-1.16a11.82 11.82 0 0 0-.66-1.65a3.63 3.63 0 0 1-.32-2.27l.21-1.23l-4.48-3.33c-2.45-1.85-5.78-4.27-7.35-5.35c-2.88-2-4.31-3.51-4.31-4.52a7.38 7.38 0 0 1 .52-1.79c.67-1.54.07-1.75-1.22-.38c-.77.8-.84.8-1.86.31s-1.09-.59-.49-5.74c0-.28-.07-3-.21-6s-.35-7.07-.46-9.07a13 13 0 0 0-.7-4.59c-.77-1.29-.24-4 .74-4c1.47.07 11.59 1.65 12.26 1.89s.8.81 1.19 3.23c.24 1.57.63 3.57.8 4.37a2.4 2.4 0 0 1-.49 2.63c-2.1 2.87-5.18 11.45-5.14 14.29v1.93l.53-1.23c.73-1.75 3.71-6.65 4.06-6.65c.14 0 .17.52.07 1.15c-.35 1.72.7 7.43 1.54 8.62c1 1.36 2.77 2.83 3.43 2.83c.49 0 .49-.07 0-.63a2.26 2.26 0 0 1-.59-1.4c0-.73 0-.73.84.11A12.31 12.31 0 0 0 43.59 89c1.65.84 1.79 1 2 2.53a28.19 28.19 0 0 1-.42 7.49c-.24.88-.24.88.88-.17a20.57 20.57 0 0 0 2.34-2.7l1.23-1.65l1 .63c1.19.74 3.82 3.12 3.82 3.47a6.06 6.06 0 0 1-.74 1.44c-.59 1-.66 1.5-.45 3.53c.21 2.21.17 2.42-.53 2.81a2.6 2.6 0 0 0-1.09 1.26c-.38.94-.42.94-2.13.31z\\\"/><path d=\\\"M63 105.17a8.5 8.5 0 0 1-4.2-3.68a32.65 32.65 0 0 0-7.53-7.81c-2-1.37-3.85-3.26-4.2-4.38a1.64 1.64 0 0 0-1.16-1a13.37 13.37 0 0 1-1.65-.45c-.87-.35-3.25-4.31-3.53-5.89c-.25-1.36.1-1.92 2.17-3.11c2.7-1.61 5-2.17 10.47-2.59c6.34-.49 8.58-1 11.94-2.77a8.42 8.42 0 0 1 2.6-1.09a8.49 8.49 0 0 1-1.79 1.89c-1.93 1.76-1.79 1.9 1.05 1a9.63 9.63 0 0 0 5.32-4.62l.51-1.02l1.16 1.79c2 3.08 8.72 7.56 12.57 8.4a5.19 5.19 0 0 1 2.32 1c.52.59.56.84.17 1.75a2.61 2.61 0 0 0-.28 1.26c.25.25 1.37-1.54 1.65-2.59s.7-1.26 1.4-.81c.42.28.42.56-.14 2c-.84 2.18-2.59 4-3.93 4c-.8 0-1.15.32-1.92 1.75a10.29 10.29 0 0 1-5 4.28c-1.22.42-1.61 1-.7 1a6.26 6.26 0 0 0 1.44-.35c.91-.35 1-.32.74.59a20.65 20.65 0 0 1-3.89 7c-1.86 2.1-5.22 3.74-9.11 4.48c-3.36.67-4.9.63-6.48 0zm-.7-4.21c0-1.4 1-2.52 3.12-3.29c1.86-.7 2.35-.74 3.68-.39c2.1.53 2.27.5 1.29-.31s-4-.91-6.51-.07c-1.54.52-1.82.77-2.21 2c-.49 1.43-.28 3.15.28 2.8a.9.9 0 0 0 .3-.7zm-.63-6.34c1.58-.56 1.72-.56 3.08.07s1.47.63 3.68-.14A7.08 7.08 0 0 1 71.5 94c.91.21 1.57-.32 1-.88c-.28-.28-4.44.35-5.81.91a1.9 1.9 0 0 1-1.51-.35c-.94-.63-2.17-.59-4.79.11c-1.65.45-2 .7-1.3 1.12s.64.41 2.53-.29zm6.94-4.13a7.53 7.53 0 0 1 1.75-1.93a.33.33 0 0 0 .35-.35c0-.8-1.3-.24-2.66 1.09c-1.16 1.12-1.65 1.4-2.25 1.19a1.94 1.94 0 0 1-1-2.56c.42-1.08 0-3.46-.81-4.93c-.66-1.16-.66-1.2 0-1.93A4.82 4.82 0 0 0 65.4 78c0-.74-.14-.67-1.4.73s-1.47 1.51-2.87 1.3c-2.59-.39-7.42-.91-8.4-.91a3.81 3.81 0 0 0-2.11 1l-1.12 1l2.63-.12c3.08-.21 9.32.74 10.16 1.51c.63.56 1.36 3 1.36 4.48a3.61 3.61 0 0 1-.87 1.89c-.84 1-.84 1.09-.25 1.27a6.84 6.84 0 0 1 1.65 1.26c1.57 1.59 2.66 1.39 4.38-.92zm-24-6.06a10.31 10.31 0 0 1-1.09-1.93c-.63-1.54-1.22-1.68-1.22-.31a3.33 3.33 0 0 0 1.29 2.17c1.29 1.23 2.1 1.26 1.01.07zm36.7-.28a13.43 13.43 0 0 0 2-1.75a6.57 6.57 0 0 0-1.65.7a12.34 12.34 0 0 1-3.78 1.09c-1.75.17-2.28.1-3.22-.49c-.64-.42-1.16-.88-1.16-1.06s1-.31 2.21-.31c1.92 0 5.56-.81 6.27-1.44c.17-.14-1.2-.17-3-.1c-3.47.14-8.13-.39-8.93-1.05a6.73 6.73 0 0 1-1-1.65c-.59-1.43-1-.94-.66.81a4 4 0 0 0 2.87 3c.66.18 1 .53 1.12 1c.14.81 1.68 1.82 2.8 1.82a1.69 1.69 0 0 1 1 .32a5.49 5.49 0 0 0 2.66.7a7.46 7.46 0 0 0 2.52-1.58zm-23.6.56a6.86 6.86 0 0 1 2.45-.7c1.16 0 1.44-.52.42-.77a8.73 8.73 0 0 0-2.45.07a19.79 19.79 0 0 1-3.61 0c-2-.24-3.36-.1-3.68.39c-.1.17.35.31 1 .31a4.71 4.71 0 0 1 2.21.7c1.3.88 1.95.88 3.65 0z\\\"/><path d=\\\"M83.86 104.43a35.87 35.87 0 0 1-1.29-3.36l-.77-2.35l1.26-3.12c.7-1.71 1.26-3.22 1.26-3.32a8.27 8.27 0 0 1 1.36-1.58L87 89.37l.39 2.52c.35 2.63 2.56 7.88 3.26 7.88c.21 0 .31-.21.21-.45a29.36 29.36 0 0 1-.63-3.09a13.06 13.06 0 0 1 0-5.21l.49-2.63l.28 1.89c.31 2.38 1.19 4.66 2.1 5.5c.73.66.73.66.52-.91A34.77 34.77 0 0 1 94 82.68c.21-.81.21-.81 1.26-.18a13.45 13.45 0 0 1 3.92 5.15c.35.74.7 1.26.81 1.19c.28-.31-.81-5-1.47-6.3a20 20 0 0 0-2.91-3.4l-2.36-2.24l2.9.28a20.59 20.59 0 0 1 4.35.74a4.14 4.14 0 0 0 1.61.35c.24-.25-1.54-2.28-3-3.4a10 10 0 0 0-2.48-1.4c-1.76-.56-2.18-1-2.18-2a18.12 18.12 0 0 0-.73-3.29L93 65.8l.8-2.49l.81-2.48L93.6 59l-1-1.85l.91-1.23a3.76 3.76 0 0 0 .87-2c-.1-.71.35-1 4.1-2.35c2.31-.84 4.94-1.86 5.85-2.24a9.44 9.44 0 0 1 2.07-.7a6 6 0 0 1 1.75 1.43c1.22 1.3 1.33 1.58 1.15 2.77c-.14.81-.07 1.4.18 1.54c.42.28.52 2.31.14 2.31a10.89 10.89 0 0 1-1.61-.38a4.27 4.27 0 0 0-1.93-.14c-.45.17 0 .52 1.51 1.29a10.41 10.41 0 0 1 2.5 1.55c.53.63-.17 3.72-1.36 6.24c-2.91 6-4.2 10.4-5.43 18.63a22.16 22.16 0 0 1-1.79 6.76a11.81 11.81 0 0 0-1.36 5.18c-.25 3-.25 3-1.3 3.33c-.56.18-1.82.7-2.8 1.16c-1.47.66-4.1 1.82-10.58 4.59c-1.08.49-1.15.45-1.61-.46m-37.37-9.7c0-2.07.46-2.7 1.33-1.86c.49.53.49.7-.1 2c-.95 2.06-1.23 2.03-1.23-.14\\\"/><path d=\\\"M88.38 92c-.67-3.29-.42-4.52.91-4.52c.74 0 .74-.07.14 2.74c-.56 2.55-.81 2.97-1.05 1.78M38.76 79.35c0-1.71 1.44-3.53 3.58-4.59a49.35 49.35 0 0 1 7.46-2.1c10.64-2.31 16.63-5.25 16.63-8.16v-.87l-1.64 1.22a33.18 33.18 0 0 1-3.16 2c-2.06 1-7.91 2.39-12.32 2.88c-6.06.59-10.13 1.92-12.61 4l-1.19 1l.24-1c.42-1.75 4.59-7.67 6.73-9.63c6.93-6.37 12.32-8.61 20.1-8.37c3.85.11 4.13.18 6.3 1.37c5.47 3 6 7.11 1.58 11.59a27.29 27.29 0 0 1-8.93 5.57c-1.89.59-3.15.77-13.55 1.86c-5.36.59-6.83 1.15-7.92 3c-.95 1.67-1.3 1.74-1.3.23m47.13-.91a7.32 7.32 0 0 1-2.62-1.19s1.61-.1 3.57-.14c2.56 0 3.92.11 4.8.49c1.12.46 1.19.56.56.81a18.92 18.92 0 0 1-6.31.03\\\"/><path d=\\\"M83.65 75.4c-4.9-1.34-9.49-4.59-10.23-7.22c-.38-1.47.14-4.83.74-4.83c.18 0 .63.45 1 1a60.23 60.23 0 0 0 8.93 7.81A34.07 34.07 0 0 0 92.72 74c2 .21 4.21.94 4.21 1.4a37.34 37.34 0 0 1-4.63.11c-2.55 0-5.11.07-5.71.17a8.57 8.57 0 0 1-2.94-.28m-45.49-.74c.07-.84.49-1.16 2.52-2.14s3.22-1.26 7.88-1.85c3-.35 6.23-.81 7.14-1s1.58-.18 1.4 0c-.66.56-2.69 1.12-8.4 2.24c-5 1-6.45 1.4-8.34 2.45l-2.31 1.27z\\\"/><path d=\\\"M89.4 72.66c-4.24-1.08-7.81-3.18-11.88-6.9c-2.41-2.2-2.83-3.22-2.45-5.81l.32-2l2.27-.11c3.26-.14 4.84.35 8 2.59c5.36 3.82 6.48 5.75 2 3.44l-2.45-1.26l1.58 1.36c.87.74 1.92 1.72 2.38 2.21c1.23 1.29 4 5.57 4.06 6.23s-1.49.85-3.83.25M39.84 63.7c0-.77 2.13-4.52 4.23-7.46c4.73-6.66 11.14-10.48 17.66-10.55a8.61 8.61 0 0 1 4.83 1.09c3.5 1.68 5 2.94 6.23 5.57A9 9 0 0 1 74 57c0 3.57-.35 3.68-3.08 1.12a10.11 10.11 0 0 0-4.66-2.87c-5.57-1.71-13.9-.35-19.51 3.22a38.64 38.64 0 0 0-4.13 3.33c-2.47 2.28-2.78 2.53-2.78 1.9\\\"/><path d=\\\"M85.65 58.9c-2.91-1.58-3.15-1.61-6.69-1.79l-3.64-.17l-.25-2.31c-.17-1.93-.1-2.39.39-2.74c1.68-1.26 5.56.32 9.38 3.82c2.31 2.14 4.66 4.83 4.14 4.8a34 34 0 0 1-3.33-1.61m-57.51-3.64c-5.39-.74-9.91-1.47-10-1.61a16.75 16.75 0 0 1 .17-4.14c.28-2.9.53-3.85.91-3.92c.67-.14 20.32 5 20.7 5.39s-1.19 5.47-1.64 5.57c-.23.04-4.78-.55-10.14-1.29M22.85 52a2.55 2.55 0 0 0 .15-3.15a1.58 1.58 0 0 0-2.46.1a2.74 2.74 0 0 0 .21 3c.7.68 1.25.68 2.1.05M90 50.14c-2-3.5-2.56-4.59-2.24-4.76c.8-.49 22.31-6.55 22.69-6.41a.54.54 0 0 1 .35.63a30 30 0 0 0-.38 3.26a11.74 11.74 0 0 1-.46 3c-.14.15-4.16 1.62-9 3.3s-8.96 3.15-9.18 3.22s-1.02-.91-1.78-2.24m19.54-7.42c.53-1 .07-1.79-1-1.79s-1.54.74-1.22 1.79c.22.87 1.68.87 2.21 0zm-81.19 3.71L24 45.31l.21-1.23a12.74 12.74 0 0 1 .91-2.69l.7-1.44L24.43 37c-1.23-2.38-1.37-2.94-1-3.32c1.08-1.09 14-8.83 15.09-9a4.09 4.09 0 0 0 2-1.12a16.49 16.49 0 0 1 3.71-2.24a30.32 30.32 0 0 0 4-2.1c1.4-1 2.59-.81 2.73.38c.07.7-.38 1.51-2 3.33c-1.93 2.21-3.82 5-6.8 10.3a9.45 9.45 0 0 1-3.46 3.5c-1.9 1.26-2.39 1.75-2.39 2.45a3.92 3.92 0 0 1-.59 1.75a17.52 17.52 0 0 0-1.51 3.64A10.14 10.14 0 0 1 33 47.45a43.83 43.83 0 0 1-4.65-1.02m64.76-5.57c-1.51-4.2-1.93-5.18-2.35-5.18s-.87-.6-1.33-1.33c-.77-1.23-1.09-1.4-3.08-1.82c-2.73-.56-2.91-.67-6.48-3.09a13.75 13.75 0 0 0-6.27-2.66a13.6 13.6 0 0 1-3.54-1.08c-.38-1.33 1.75-1.93 7.53-2.11c4.17-.1 4.38-.17 6.13-1.29c1.47-.95 1.68-1.19 1-1.26a5.11 5.11 0 0 0-2 .42c-2.07.87-2.77.73-3.85-.88A43.27 43.27 0 0 0 74 15.85c-4.34-3.74-5-4.55-4.52-5.07s2.38.49 5.36 2.48c2.07 1.4 8 4.91 8.23 4.91c1 0-5-7.18-9.32-11.25c-1.64-1.54-2.17-2.8-1.36-3.29c.56-.35 2.35.77 8.12 5.11c5.43 4.1 7.36 5.22 5.33 3.09A76.63 76.63 0 0 0 76 4.09c-1.75-1-2.42-1.79-2-2.42a.87.87 0 0 1 .7-.32c.88 0 6.51 3 9.88 5.22s4.8 3.79 4.23 4.63s-.35 1.05.5.84a2.13 2.13 0 0 1 1.82.56l1 .8l-.21-1.78a28 28 0 0 0-1.82-5.57c-1.62-3.75-1.65-4.56-.32-4.28c1.61.29 7 10.44 8.41 15.7c1.12 4.2 1.4 8.05.77 10.15c-.49 1.54-.46 1.65.77 4.56c1.68 3.88 2.62 6.58 2.41 6.83s-8.14 2.62-8.51 2.62c-.14 0-.35-.35-.52-.77m-71.24-9.28c-.28-.49-2.66-8-3.75-11.87C17 15.64 16.83 14 17.53 14c.52 0 1.61 1.75 4.44 7c1.2 2.2 2.32 4.17 2.49 4.38c.53.52.39-.39-.28-1.72l-.56-1.23l1.51-2.55c2.73-4.63 4.2-6.59 4.9-6.59c.39 0 1.3.81 2.21 2a56.84 56.84 0 0 0 3.88 4.21c2.39 2.24 2.7 3 1.55 3.71c-.81.49-3.09-.6-5.36-2.59l-1.68-1.47l-.46.84c-.56 1-.63 2.24-.14 2.55c.18.11.42-.17.56-.66l.21-.88l2.42 1.61a14.79 14.79 0 0 1 2.34 1.72c-.21.18-13.27 7.5-13.41 7.5a.46.46 0 0 1-.28-.25m16.01-11.52l-1.69-2l1.05-.84c2.32-1.89 2.53-1.82 3.65 1.51l.7 2.06l-.77.6a3.85 3.85 0 0 1-1 .63a11.86 11.86 0 0 1-1.94-1.96m-3.64-4.38c-.63-.81-1-1.54-.8-1.72a18.75 18.75 0 0 1 2.94-1.33c1.43-.59 3.85-1.71 5.36-2.52l2.69-1.47v.91c0 .67-.7 1.47-2.87 3.36A30 30 0 0 1 37 16.27l-1.65.85z\\\"/></g><g fill=\\\"#55514c\\\"><path d=\\\"M54.34 113.36a4.32 4.32 0 0 1-.56-2.17a18.2 18.2 0 0 0-.42-2.49c-.18-.38.1-1 .8-1.78a2.52 2.52 0 0 0 .88-2.45c-.21-1.23.52-4.14 1.08-4.24c.18 0 .91.8 1.65 1.89a9.86 9.86 0 0 0 3.43 3.15a7.51 7.51 0 0 1 2.1 1.47c0 .14-.42.25-.94.28a15.62 15.62 0 0 0-2.73.49l-1.76.49h3c1.65 0 3.47 0 4 .07h1.05l-.88.39c-4.13 1.72-6.69 3-7.95 4c-1.46 1.18-2.09 1.39-2.75.9m24.37-2.73a22.43 22.43 0 0 0-3.71-1.44c-2.67-.8-3.82-1.54-3-1.89c.46-.17 6 1.09 7.78 1.75c.42.18.59.07.59-.31c0-.77-2.06-1.61-4.44-1.86a5.3 5.3 0 0 1-2.07-.49c-.07-.17.6-.66 1.54-1.15a14.7 14.7 0 0 0 3.36-2.7c.91-1 1.75-1.68 1.93-1.51a19.54 19.54 0 0 1 1.09 2.35c.66 1.68.73 2.17.38 2.91a5.07 5.07 0 0 0-.17 2.27a2.17 2.17 0 0 1-.39 2.07c-.68.87-1.31.87-2.89 0m-10.57-2.7c-.56-.1-1-.38-1-.66s.49-.49 1.92-.49s1.93.1 1.93.52a.51.51 0 0 1-.49.53c-.28 0-.7.07-1 .1a4.6 4.6 0 0 1-1.36 0\\\"/><path d=\\\"M63 105.17a9.07 9.07 0 0 1-4.48-4.07a26 26 0 0 0-7.15-7.39c-2.06-1.33-3.92-3.25-4.3-4.41a1.57 1.57 0 0 0-1.16-1c-.52-.1-1.19-.28-1.47-.35c-1.23-.31-4.2-6.09-3.75-7.28c.32-.84 3.19-2.52 5.64-3.33a35.62 35.62 0 0 1 7.22-1.08c6-.46 8.23-1 11.59-2.63a10.82 10.82 0 0 1 2.66-1.12a7.78 7.78 0 0 1-1.8 1.83c-2 1.72-1.78 1.93 1 1.09a9.08 9.08 0 0 0 5.07-4a5.78 5.78 0 0 1 1-1.4a7.1 7.1 0 0 1 1.16 1.58c1.68 2.8 8.72 7.46 12.5 8.26c2.21.46 3.12 1.37 2.56 2.63s-.53 1.79.14 1.16a7.45 7.45 0 0 0 1-1.93c.49-1.47.8-1.68 1.54-1.23c.42.28.38.56-.11 1.86c-1 2.49-2.17 3.75-3.71 4c-1 .18-1.44.46-1.75 1.23a14.58 14.58 0 0 1-5.36 4.9c-1.75.63-1.65 1.12.14.84c1.4-.24 1.44-.21 1.19.56a23.43 23.43 0 0 1-3.75 6.8c-1.71 2-5.46 3.81-9.1 4.55c-3.37.67-5 .67-6.59 0zm-.52-4.66c.56-2.66 5.11-4.24 8-2.77c.88.46.74-.28-.17-.91s-4.56-.7-6.59.07a2.88 2.88 0 0 0-2 1.89c-.49 1.3-.31 3.29.28 2.91a3 3 0 0 0 .43-1.19zm-.74-5.85c1.54-.53 1.75-.53 3 .07s1.43.59 3.61-.18a6.68 6.68 0 0 1 3.08-.55c.94.25 1.64-.35 1.08-.91c-.28-.28-4.44.35-5.81.91a1.76 1.76 0 0 1-1.51-.35a3.55 3.55 0 0 0-3.53-.21a4.37 4.37 0 0 1-1.61.39a1.76 1.76 0 0 0-1.27.49c-.42.49-.24.59 1.06.87a13.79 13.79 0 0 0 1.85-.53zm6.69-3.82a7 7 0 0 1 1.61-2c.88-.53.84-1 0-1a4.28 4.28 0 0 0-2 1.4c-1.47 1.58-1.86 1.69-2.63.81c-.38-.46-.56-1.37-.52-3.15a6.68 6.68 0 0 0-.89-3.8c-.77-1.26-.77-1.3-.11-2A4.82 4.82 0 0 0 65.4 78c0-.74-.14-.67-1.4.7s-1.47 1.5-2.69 1.33c-2.07-.32-7.53-.91-8.58-.91a3.81 3.81 0 0 0-2.11 1l-1.12 1l2.63-.12c3.08-.21 9.32.74 10.16 1.51c.63.56 1.36 3 1.36 4.48a3.61 3.61 0 0 1-.87 1.89c-.84 1-.84 1.09-.25 1.26a7.22 7.22 0 0 1 1.65 1.27a2.81 2.81 0 0 0 2.13 1c.99.01 1.27-.2 2.07-1.57zm-23.8-6.41a8.15 8.15 0 0 1-1.05-1.89c-.66-1.61-1.29-1.72-1.29-.28a2.12 2.12 0 0 0 .77 1.68c.38.32 1 .84 1.29 1.12c.74.7.99.14.28-.63m36 .32A13.61 13.61 0 0 0 82.74 83c.7-.77.67-.77-1 .11c-2.42 1.22-5.22 1.5-6.79.7c-2-1-1.76-1.44.73-1.41c2 0 5.57-.8 6.31-1.47c.17-.14-1.2-.17-3-.1c-3.75.17-8.2-.42-9-1.19a3.56 3.56 0 0 1-.8-1.58c-.32-1.61-1.05-1.26-.81.42a3.93 3.93 0 0 0 2.84 3.4c.73.21 1.12.52 1.19 1c.14 1 .8 1.5 2.42 1.92c.73.18 1.82.46 2.38.63c1.64.44 2.03.37 3.46-.68zm-23.25.1a10.78 10.78 0 0 1 2.7-.8c1.4-.21 1.54-.28.91-.63a5.86 5.86 0 0 0-2.81-.14a22.06 22.06 0 0 1-4 0a6.87 6.87 0 0 0-2.8.14c-.91.39-.91.39.49.63a6 6 0 0 1 2.28.81c1.1.69 1.85.69 3.27-.01zM28.1 55.22c-5.39-.77-9.91-1.47-10-1.61c-.39-.39.52-7.88.94-8s20.46 5 20.81 5.39s-1.3 5.75-1.68 5.68C38 56.62 33.5 56 28.1 55.22m-5-3.47a2.25 2.25 0 0 0-.1-3a1.81 1.81 0 0 0-2.32 0a3 3 0 0 0 .14 3.22c.7.73 1.36.66 2.24-.22zM90 50.14c-2-3.5-2.56-4.59-2.24-4.76s22.1-6.55 22.55-6.55s.11 6.62-.35 7.07c-.14.15-4.09 1.58-8.82 3.23s-8.83 3-9.18 3.18s-.88-.31-1.96-2.17m19.72-7.81a1.36 1.36 0 0 0-1.09-1.75a2.09 2.09 0 0 0-1.54 1.58a1.79 1.79 0 0 0 .56 1c.66.68 1.71.26 2.06-.83zm-81.37 4.1L24 45.31l.21-1.19a17.52 17.52 0 0 1 .91-2.7l.7-1.47l-1.22-2.49a12.43 12.43 0 0 1-1.26-3.15c0-.52 1.71-1.75 6.86-4.94a77.11 77.11 0 0 1 8.13-4.62a5.81 5.81 0 0 0 2.17-1.19c1.22-1.16 9.35-5.15 10-4.9c1 .38.56 1.92-1.26 3.92A54.18 54.18 0 0 0 42.88 32a16 16 0 0 1-5.39 5.53a2.09 2.09 0 0 0-1.26 1.83a4.51 4.51 0 0 1-.67 1.82a16.46 16.46 0 0 0-1.33 3.36A10.71 10.71 0 0 1 33 47.45a43.83 43.83 0 0 1-4.65-1.02m64.72-5.67c-.17-.49-.35-1-.35-1c0-.81-1.57-4-2-4s-.87-.6-1.33-1.33c-.74-1.19-1.05-1.37-3.5-2A15 15 0 0 1 80 29.58c-2.9-2-3.6-2.27-6.48-2.83a10.24 10.24 0 0 1-3.39-1.05c-.49-1.33 1.57-1.93 7.42-2.11c4.17-.1 4.38-.17 6.13-1.29c1.47-.95 1.68-1.19 1-1.26a5.11 5.11 0 0 0-2 .42c-2 .87-2.7.7-3.92-1a51.39 51.39 0 0 0-5.08-4.94c-3.82-3.29-4.8-4.44-4.13-4.86c.42-.25 2.73.91 5.36 2.69c2 1.37 7.88 4.84 8.16 4.84c1 0-2.77-4.59-8.51-10.48c-2.42-2.45-3-3.57-2.21-4.06a2.54 2.54 0 0 1 1.53.35A130.87 130.87 0 0 1 85 12.32a1.65 1.65 0 0 0 1.19.59c.67 0 .63-.07-.31-1.08a72 72 0 0 0-9.77-7.71C74.27 3.11 73.6 2.3 74 1.67s1.16-.35 4.1 1.12c3.64 1.82 8.3 4.9 9.87 6.52c1 1 1.13 1.36.88 1.89c-.53.94-.42 1.12.49.87a2 2 0 0 1 1.79.56l1 .77l-.21-1.78a26.21 26.21 0 0 0-1.79-5.54A17.05 17.05 0 0 1 88.73 2c.32-.53 1.4-.35 2 .32a62.17 62.17 0 0 1 5.18 8.93c2.74 5.81 4.14 13.24 3 16.28l-.52 1.51l1.89 4.59a47.34 47.34 0 0 1 1.89 5c0 .35-2.42 1.23-8.13 2.87c-.44.13-.72-.11-.97-.74m-71.2-9.18c-.32-.53-3.47-10.82-4.13-13.38c-.77-3-.84-4.24-.21-4.24s2.83 3.79 4.9 7.88c1.93 3.82 3.15 5 1.79 1.75l-.53-1.29l1.82-3.05c4.24-6.93 4.41-7 6.59-4.13a49.5 49.5 0 0 0 3.9 4.27a13.69 13.69 0 0 1 2.49 2.87c0 .28-.39.63-.84.84c-1 .49-3.12-.52-5.33-2.55c-.84-.77-1.68-1.3-1.85-1.19c-.57.35-.88 2.66-.46 3.08s.46.1.6-.53l.19-.91l2.42 1.61a12.73 12.73 0 0 1 2.31 1.68c-.18.18-13.24 7.5-13.38 7.5a.46.46 0 0 1-.28-.21M38.16 20.3a11.44 11.44 0 0 1-1.55-2.06c-.07-.18.53-.84 1.27-1.44c1.64-1.33 1.85-1.19 3 1.86l.77 2.1l-.8.63a3.85 3.85 0 0 1-1 .63a11 11 0 0 1-1.69-1.72m-4.06-4.8c-.52-.7-.8-1.36-.66-1.54a18.75 18.75 0 0 1 2.94-1.33c1.43-.59 3.85-1.71 5.36-2.52l2.69-1.47v.91c0 1.4-7 7.15-8.79 7.22c-.31 0-1.01-.57-1.54-1.27\\\"/></g><g fill=\\\"#895730\\\"><path d=\\\"M46.7 94.62c.28-2 .32-2.06 1-1.5c.49.35.46.59-.14 1.78a4.33 4.33 0 0 1-.91 1.37a3.78 3.78 0 0 1 .05-1.65m41.71-3.22c-.28-1.29-.31-3.54-.1-3.54a3.35 3.35 0 0 0 .74-.24c.56-.18.59 0 .35 1.68a15.46 15.46 0 0 1-.53 2.56c-.21.56-.28.49-.46-.46M38.43 79c0-1.5 1.26-3.11 3.12-4.1a55 55 0 0 1 6.9-1.9c7-1.57 8.65-2.06 12-3.57c3.61-1.65 4.87-2.66 5.36-4.34a3.19 3.19 0 0 0 .19-1.6c-.11-.14-.91.35-1.75 1.05a22.19 22.19 0 0 1-3.47 2.13c-2.45 1.12-8.41 2.46-13.21 3c-4.3.46-8.4 1.68-10.57 3.15c-.84.56-1.58.88-1.65.7a13.66 13.66 0 0 1 1.72-3.22C41 64 47.43 58.79 53.63 56.83a21.72 21.72 0 0 1 7.18-.94c4.1-.07 4.56 0 6.34.84c3.19 1.5 5.61 4 5.61 5.81a8.82 8.82 0 0 1-2.11 5a27.48 27.48 0 0 1-8.19 6c-1.89.84-6.34 1.65-11.94 2.11c-8.58.7-9.64 1-11.28 3.5l-.81 1.15zm48.51-.59a9.13 9.13 0 0 1-2.45-.6c-.59-.38-.31-.45 1.75-.52c3.44-.11 4.63 0 5.47.45c.38.21.66.42.59.46c-.3.28-3.82.42-5.36.21m-4.41-3.54c-4.9-1.72-8.48-4.45-8.93-6.79c-.21-1.2.07-4.38.42-4.38a18.25 18.25 0 0 1 2 1.85c3 3 6.93 6.27 8.47 6.94c1.3.59 4.77 1.29 9.32 1.89A5.53 5.53 0 0 1 96 75c.46.35-.66.42-5.49.46c-5.18.08-6.37-.03-7.98-.59\\\"/><path d=\\\"M38.09 74.8c0-1.58 4.13-3.19 10.15-3.89c2.59-.31 5.36-.66 6.13-.77c3.05-.35-.28.56-5.81 1.61c-4.24.81-6.24 1.37-7.81 2.21c-1.19.63-2.24 1.15-2.38 1.22s-.28-.1-.28-.38m52.53-2.03c-3.68-.7-6.51-2.07-10.37-5c-4.65-3.53-5.46-4.72-5.14-7.67c.17-1.92.21-2 1.4-2.1c2.31-.28 6.13.35 7.25 1.19c.59.42 2 1.37 3 2.11c1.89 1.22 3.65 3 3.33 3.32a6 6 0 0 1-2-.77a28 28 0 0 0-2.73-1.22c-.84-.32-.81-.25.28.59c3.47 2.66 7.35 7.57 7.35 9.32c.08.68-.06.68-2.37.23m-50.78-9.25c0-.66 2.17-4.31 4.09-6.93a33.55 33.55 0 0 1 8.62-8.2A20.09 20.09 0 0 1 62.6 45.9a13.16 13.16 0 0 1 10.09 6.38c.77 1.51.91 2.24.94 4.66a11.55 11.55 0 0 1-.24 3.11c-.14.14-1-.56-1.86-1.54c-2-2.27-4.48-3.46-8.16-4c-7-1-16.21 2.24-21.43 7.57c-1.4 1.47-2.1 1.92-2.1 1.43z\\\"/><path d=\\\"M86.77 59.28A13.09 13.09 0 0 0 78.71 57a11.76 11.76 0 0 1-3.25-.24a10.19 10.19 0 0 1-.28-2.56L75 52l1.82-.1c3-.18 6.58 2 10.26 6.23c1.92 2.13 1.79 2.66-.31 1.15\\\"/></g><g fill=\\\"#7b7870\\\"><path d=\\\"M54.27 113a3.37 3.37 0 0 1-.42-1.89a7.43 7.43 0 0 0-.35-2.38c-.28-.77-.18-1.09.7-2.07a2.5 2.5 0 0 0 .8-2.56a5.89 5.89 0 0 1 .49-2.9l.67-1.54l1.57 2.2a9.13 9.13 0 0 0 3.54 3.3c2.21 1.19 2.52 1.61 1.19 1.61s-4.41.77-4.2 1.08a14.92 14.92 0 0 0 3.92.11l3.75-.18l-2.8 1.22c-3.29 1.36-6 2.87-6.76 3.82a1.35 1.35 0 0 1-2.1.18m24.9-2.23a19.34 19.34 0 0 0-3.85-1.54c-2-.63-3.12-1.19-3.19-1.54s0-.56.17-.56s5.82 1.47 7.39 1.92c.56.21.77.11.77-.31c0-.77-1.61-1.51-4.2-1.93c-1.19-.21-2.24-.42-2.31-.45a7.31 7.31 0 0 1 1.86-1.16a9.07 9.07 0 0 0 3.19-2.7a7.83 7.83 0 0 1 1.51-1.68a8.82 8.82 0 0 1 1.19 2.42c.81 2 .88 2.52.53 3.15a3.82 3.82 0 0 0-.18 2.17c.38 2.31-1.05 3.44-2.88 2.21m-10.93-2.94a1.51 1.51 0 0 1-1-.63c-.07-.28.45-.42 1.82-.42s2 .14 2 .49c-.06.56-1.59.87-2.82.56\\\"/><path d=\\\"M64 105.45a12.19 12.19 0 0 1-4.23-2.39a19.83 19.83 0 0 1-1.34-2a25.19 25.19 0 0 0-6.9-7.21A13.22 13.22 0 0 1 47 89.09a2 2 0 0 0-1.4-.81c-1.44-.17-2.45-1.26-3.89-4.06s-1.36-3.71.84-5.11c2.6-1.65 5.4-2.35 11.14-2.77c6.1-.45 7.95-.87 11.35-2.63a18.46 18.46 0 0 1 2.77-1.26c.14 0-.63.84-1.69 1.79L64.18 76l1.5-.21a9.13 9.13 0 0 0 6.62-4.66L73 70l1.44 1.89c2.48 3.18 9.28 7.53 12.64 8.09a4 4 0 0 1 2 .87c.56.63.56.77 0 1.9c-.32.66-.43 1.22-.25 1.22c.49 0 1.75-2.14 1.75-2.91c0-.45.21-.63.81-.52c.91.14.87.8-.18 3c-.77 1.61-2.38 2.87-3.71 2.87a1.13 1.13 0 0 0-1.12.88a12.45 12.45 0 0 1-5.12 4.94c-1.92.73-2 1.36-.17 1c1.37-.21 1.4-.21 1.12.73a24.28 24.28 0 0 1-3.71 6.73c-2.21 2.41-6.9 4.31-11.74 4.73a10.12 10.12 0 0 1-2.76.03m-1.61-4.77c.28-1.43 1-2.17 3.19-3a7.29 7.29 0 0 1 5.25.14c.56.21.53.07-.24-.74s-1.23-1-2.8-1c-2 0-5.26.94-5.89 1.72a4.23 4.23 0 0 0-.59 1.71c-.31 2.29.69 3.38 1.08 1.17m-.49-6a2.54 2.54 0 0 1 2.8 0c1.33.6 1.44.6 3.75-.1a12.82 12.82 0 0 1 3.26-.67c.56 0 .91-.14 1-.56s-.07-.59-1.75-.38a23.13 23.13 0 0 0-3.26.7c-1.26.42-1.54.38-2.91-.28s-1.61-.7-2.73-.14a6 6 0 0 1-2 .56c-1 0-1.89.87-1.19 1.15s1.6.26 3.03-.3zm5.33-2.31a14.06 14.06 0 0 0 1.64-2.1a5.36 5.36 0 0 1 1.44-1.69a.33.33 0 0 0 .35-.35c0-.84-1.58-.24-2.77 1.05a5.41 5.41 0 0 1-1.65 1.41c-.91 0-1.36-1.23-1.36-3.65a8.11 8.11 0 0 0-.77-3.92l-.77-1.47L64 81a4.46 4.46 0 0 0 1.5-2.66c.32-1.33-.45-1.3-1.36.1s-1.68 1.68-5.43 1.16a50 50 0 0 0-5.29-.46c-1.68 0-2.07.11-2.87 1l-.91.94l3.75.07a47.9 47.9 0 0 1 6.2.53c2.1.38 2.48.59 3 1.51a8.87 8.87 0 0 1 .84 2.62a3.15 3.15 0 0 1-.67 2.91C62 89.86 62 90 62.53 90.21a9.17 9.17 0 0 1 1.93 1.4c1.4 1.26 1.92 1.39 2.77.74zm-22.14-7.1a1.7 1.7 0 0 0-.49-1a6.83 6.83 0 0 1-1.05-1.79c-.53-1.3-1.09-1.61-1.37-.81s.46 2.11 1.61 3.12c1.34 1.11 1.3 1.11 1.3.48m35.58-.52A13.61 13.61 0 0 0 82.74 83c.67-.77.67-.77-1.12.14c-2.42 1.19-6.2 1.3-7.39.21s-1-1.16.77-.91s5.67-.56 6.76-1.4c.53-.39.18-.42-2.35-.25c-3.36.21-8.16-.35-9.31-1.12a2.49 2.49 0 0 1-.95-1.54c-.31-1.47-.94-1.36-.94.11a4.37 4.37 0 0 0 3 3.71c.77.24 1.23.63 1.3 1.16c.1.77.8 1.22 3.43 2.1c2.28.79 3.19.66 4.73-.46m-23.32.14a9.53 9.53 0 0 1 2.65-.77c1.54-.21 2.17-.77 1-.84c-3.12-.18-8.9-.11-9.67.17c-1.23.39-.6 1 .8.7a2.76 2.76 0 0 1 1.93.56a2.69 2.69 0 0 0 3.29.18m-30.3-29.84a76.38 76.38 0 0 1-8.93-1.54a40.27 40.27 0 0 1 .77-7.89c.21-.21 20.56 5 20.91 5.33c.18.14-.52 3.19-1 4.62c-.43 1.02-.89.98-11.75-.52m-3.67-3.68a1.55 1.55 0 0 0 0-1.93c-1.06-1.85-3.16-1.33-3.16.81s2.1 2.97 3.16 1.12m65.95-2.45a11.58 11.58 0 0 1-1.58-3.47c.42-.39 22.55-6.69 22.76-6.48a16.66 16.66 0 0 1-.14 3.57l-.31 3.4l-8.93 3.06c-4.91 1.72-9.14 3.12-9.46 3.12s-1.29-1.31-2.34-3.2m19.92-5.78c1.19-1.09.39-2.87-1.08-2.38a1.53 1.53 0 0 0-.56 2.52c.84.56.87.56 1.64-.14m-80.62 3.22l-4.38-1.12l.11-1a12.85 12.85 0 0 1 .84-2.66l.7-1.64l-1.26-2.53a13.68 13.68 0 0 1-1.26-3.11c0-.74 12.85-8.86 14.92-9.42a6.6 6.6 0 0 0 2.2-1.2c1.33-1.22 9.35-5.28 10-5c1.08.46.56 2-1.4 4.13a40.85 40.85 0 0 0-6.06 8.9a15.23 15.23 0 0 1-5.36 5.74a2.65 2.65 0 0 0-1.54 2.07a4.93 4.93 0 0 1-.74 1.86a12 12 0 0 0-1.22 3.15a14.85 14.85 0 0 1-1 2.8a22.52 22.52 0 0 1-4.55-.97m64.13-6.62c-.39-1.05-.81-2.35-1-2.84a2 2 0 0 0-1-1.22a4.39 4.39 0 0 1-1.51-1.51c-.63-1.08-1-1.29-3.29-1.78a15.88 15.88 0 0 1-5.92-2.84c-3-2-3.75-2.31-6.45-2.84c-3-.59-3.78-1.08-3-2c.49-.59 7.57-1.44 9.53-1.12c1.33.21 1.68.1 3.43-1.09s1.89-1.33 1-1.43a4.29 4.29 0 0 0-2 .42c-1.68.87-2.35.7-3.75-1.05c-.94-1.12-8.51-8.06-9.14-8.34c0 0-.1-.35-.17-.7c-.18-1.12.52-1 2.87.49c5.67 3.5 10.47 6.31 10.86 6.31s.21-.35-.25-1C82.29 16 75.18 8 73.32 6.33c-2.07-1.93-1.44-3.5.84-2.14c1.65 1 9.46 6.9 10.75 8.13c1.58 1.47 2.24.87.74-.7A66.91 66.91 0 0 0 76 4c-1.93-1-2.52-2.1-1.43-2.45s10.78 5.11 13.27 7.6c1.12 1.12 1.33 2 .63 2.7c-.39.38-.25.45.67.28a2 2 0 0 1 2 .49c.49.35 1 .52 1.08.35c.32-.49-.7-3.89-2.2-7.36A13.91 13.91 0 0 1 88.73 2c.32-.53 1.4-.35 1.93.32A74.09 74.09 0 0 1 96.22 12c2.39 5.29 3.51 11.94 2.63 15.41c-.45 1.68-.42 1.78 1 5.25c1.61 3.78 2.45 6.1 2.24 6.31c0 0-1.82.63-4 1.22l-4.27 1.3c-.21.1-.7-.67-1.12-1.79zM20.43 27c-3-9.18-3.88-13.07-3-13.07c.59 0 .73.25 4.06 6.31c2.63 4.8 3.57 6.2 3.08 4.55c-.8-2.66-.66-3.15 2-7.35c1.75-2.7 2.84-4.07 3.33-4.14s1.09.39 2.1 1.75a51.31 51.31 0 0 0 4 4.34a13.69 13.69 0 0 1 2.49 2.87c0 .25-.32.6-.74.81c-.91.52-3.12-.53-5.36-2.49c-.87-.77-1.75-1.33-1.92-1.19c-.57.32-.88 2.63-.43 3.08c.22.21.39.25.39.07a1.89 1.89 0 0 1 .32-.84c.24-.35.77-.14 2.48 1c1.19.8 2 1.61 1.86 1.75s-12.72 7.36-12.93 7.36c0 0-.8-2.18-1.68-4.8zm17.73-6.73a7.85 7.85 0 0 1-1.48-2.17c0-.56 2.28-2.14 2.84-2s2 4.31 1.75 4.77a2.82 2.82 0 0 1-.94.7c-.63.34-.88.17-2.17-1.3m-4.03-4.8c-.53-.74-.81-1.4-.67-1.54a23.19 23.19 0 0 1 2.35-1c1.19-.47 3.47-1.56 5.19-2.43c3-1.62 3.67-1.72 3.29-.46c-.25.74-4.87 4.76-6.87 6c-1.72 1.01-2.24.96-3.29-.57\\\"/></g><g fill=\\\"#96918a\\\"><path d=\\\"M54.27 113a3.37 3.37 0 0 1-.42-1.89a8.27 8.27 0 0 0-.32-2.35c-.24-.66-.14-1 .6-2a4 4 0 0 0 .94-3a10.68 10.68 0 0 1 .56-3l.56-1.22l1.3 2c1.19 1.89 4.34 4.45 5.46 4.45a.37.37 0 0 1 .35.35c0 .21-.38.35-.87.35c-1.44 0-4.38.73-4.21 1a13.45 13.45 0 0 0 4 .14l3.75-.14l-1.82.66a33.55 33.55 0 0 0-7.64 4.1c-1 1-1.57 1-2.2.42zm25-2.2a22.46 22.46 0 0 0-3.92-1.57c-2.21-.74-3.29-1.3-3.29-1.65c0-.59.63-.49 5.22.84a14.55 14.55 0 0 0 3.11.67c.35-.39-.31-1.3-1.15-1.61a21.5 21.5 0 0 0-3.19-.74l-2.35-.42l2-1a11.07 11.07 0 0 0 3.3-2.78a8.31 8.31 0 0 1 1.54-1.72a10.47 10.47 0 0 1 1.16 2.42c.81 2 .88 2.52.53 3.15a3.74 3.74 0 0 0-.18 2.14c.18 1.08.11 1.47-.49 2.06c-.85.84-1.38.91-2.29.21\\\"/><path d=\\\"M63.55 105.24a8.44 8.44 0 0 1-4.77-3.79c-1.12-2.27-4.62-6-7.42-7.81a11.5 11.5 0 0 1-3.68-3.54c-.91-1.4-1.43-1.89-2-1.89c-1.33 0-2.56-1.26-3.92-4.06c-1.19-2.35-1.26-2.7-.84-3.47c.59-1.12 5.39-3.57 7.42-3.81c.84-.11 3.68-.35 6.34-.56c5.4-.46 7.46-1 10.58-2.6s3-1.5.87.46C64.39 75.75 64.28 75.92 65 76c2.52 0 6.06-2.28 7.35-4.8l.65-1.3l.74 1.19c2.21 3.57 10.65 9.07 13.9 9.07a1.85 1.85 0 0 1 1.44.87c.49.77.49.91 0 1.65a2.76 2.76 0 0 0-.56 1.32c0 .91 2.1-1.68 2.1-2.63c0-.63.18-.87.7-.87c1 0 .88 1.22-.35 3.43c-.94 1.61-1.26 1.89-2.66 2.24a2.78 2.78 0 0 0-2.24 1.72a12.09 12.09 0 0 1-5.19 4.55c-1.19.53-1.5.77-1.12 1a1.83 1.83 0 0 0 1.3 0c1.16-.42 1.16-.42 1.16.42c0 1.19-2.53 5.64-4.07 7.22c-1.82 1.78-3.5 2.69-6.86 3.57c-3.68.97-6.17 1.18-7.74.59m-1-4.73c.49-1.61.81-1.89 3-2.73a6.26 6.26 0 0 1 5 0c1.3.42.6-.7-.84-1.37c-1.29-.63-3-.52-5.78.25a3.19 3.19 0 0 0-2.62 2.84c-.39 2.5.56 3.21 1.22 1.01zM62 94.69c1.19-.49 1.4-.49 2.38 0c1.44.7 2.17.67 4.38-.17a5.65 5.65 0 0 1 2.94-.46c1 .18 1.05.14 1-.63c-.07-.52-.32-.8-.63-.73s-1.47.28-2.63.45a9.94 9.94 0 0 0-2.48.7c-.32.25-.88.14-1.86-.35c-1.68-.87-2.1-.91-3.4-.21a5.09 5.09 0 0 1-1.75.53c-.95 0-1.79.91-1.12 1.15a4.26 4.26 0 0 0 3.17-.28m5.12-2.27a6.27 6.27 0 0 0 1.54-1.89a4.24 4.24 0 0 1 1.61-1.79c.38-.14.63-.39.52-.56c-.45-.7-1.68-.25-3 1.08a7.75 7.75 0 0 1-1.68 1.41c-.81 0-1.26-1.3-1.26-3.82a9.34 9.34 0 0 0-.7-4c-.63-1.33-.63-1.33.1-2.1a6.48 6.48 0 0 0 1.47-3.12c0-.66-.91-.28-1.57.74c-1 1.47-1.86 1.64-5.54 1.15c-1.78-.21-4.09-.42-5.18-.42c-1.72 0-2 .07-3 1l-1 1.09l2.1-.25c2.14-.21 9.18.6 10.37 1.26c.63.32 1.15 1.69 1.54 3.86a2.29 2.29 0 0 1-.67 2.31c-1.05 1.22-1.15 1.86-.35 1.86a5 5 0 0 1 1.93 1.22c1.51 1.42 1.79 1.49 2.81.97zm-22.63-8.51a8 8 0 0 1-1.08-1.72c-.46-1.09-.95-1.26-1.26-.46s.14 1.65 1.5 2.88c1 .84 1.3 1 1.37.56a1.78 1.78 0 0 0-.53-1.26m37.1.1l1.85-1.75l-1.93.88c-2.55 1.15-6.12 1.22-7.28.17a3.75 3.75 0 0 1-.77-.91a4.81 4.81 0 0 1 1.72.07a9.73 9.73 0 0 0 4.37-.56a12.76 12.76 0 0 0 2.88-1.12c.1-.18-1.13-.21-2.91-.07a31.5 31.5 0 0 1-9-.77a4.2 4.2 0 0 1-1.4-1.82l-.73-1.65l-.14 1.37c-.14 1.71.66 2.94 2.66 3.88c.8.39 1.43 1 1.47 1.27c0 .8.59 1.22 2.8 2c3.36 1.15 4.27 1 6.41-1zm-23.51.7a7.85 7.85 0 0 1 2.53-.7c.91 0 1.36-.66.52-.73a76.25 76.25 0 0 0-10 .1c-1.08.39-.59 1.09.56.84a2.69 2.69 0 0 1 2 .46c1.31.87 2.54.91 4.39.03M27.47 55l-9-1.26v-1a46.56 46.56 0 0 1 .84-7.11a36.68 36.68 0 0 1 5.36 1.23c2.84.77 7.5 2 10.37 2.69c4 1.05 5.15 1.47 5.15 1.93a14.28 14.28 0 0 1-.74 2.73c-.91 2.59.28 2.48-11.98.79m-4.27-3.21c.53-.6.6-.95.32-2s-.46-1.3-1.41-1.4c-1.29-.14-2 .59-2 2c.01 1.99 1.83 2.8 3.09 1.4m66.13-2.91c-1.23-2.17-1.69-3.29-1.41-3.43c.84-.45 22.38-6.65 22.56-6.45a18.33 18.33 0 0 1-.14 3.57l-.28 3.36l-8.93 3.07c-4.91 1.7-9.13 3.1-9.46 3.1s-1.29-1.36-2.34-3.22m19.92-5.74c1.33-1.19.32-3-1.29-2.28a1.54 1.54 0 0 0-.46 2.45c.56.56.98.53 1.75-.17m-81.32 3.08c-3.68-.95-3.68-1-3.57-2a13 13 0 0 1 .84-2.69l.73-1.72l-1.33-2.7A11.53 11.53 0 0 1 23.41 34c.25-.63 13.34-8.65 15-9.11a4.72 4.72 0 0 0 2.1-1.19a16.94 16.94 0 0 1 3.74-2.21c1.76-.84 3.72-1.89 4.45-2.31a3.1 3.1 0 0 1 1.82-.56c1.09.42.63 1.89-1.33 4a54.87 54.87 0 0 0-6.62 9.74a11.83 11.83 0 0 1-4.69 4.83a3.11 3.11 0 0 0-1.68 2.07a8.58 8.58 0 0 1-.88 2.21A17.14 17.14 0 0 0 34 44.89c-.75 2.8-.57 2.77-6.07 1.33m65.53-5.08a21.74 21.74 0 0 1-1.12-2.8c-.53-1.58-1-2.49-1.47-2.59s-1-.77-1.3-1.51c-.63-1.19-.88-1.36-2.7-1.71a17.4 17.4 0 0 1-7.39-3.44a11.79 11.79 0 0 0-5.74-2.38c-3.22-.66-4.06-1.26-2.94-2.06c.77-.56 7.81-1.34 9.45-1.06c1.12.21 1.55.07 3.3-1.08s1.89-1.37 1.19-1.47a7.64 7.64 0 0 0-2.56.49l-1.75.63l-1.89-2.1a72.25 72.25 0 0 0-5.4-5.19c-2.24-1.92-3.53-3.29-3.53-3.74c0-.63.07-.63 1.19-.18a30.18 30.18 0 0 1 3.43 2c3.19 2.17 8.41 5.22 8.93 5.22a.44.44 0 0 0 .46-.35c0-.42-4.66-5.71-8.83-10a14.7 14.7 0 0 1-2.73-3.43c0-.74 1.15-.74 2.38 0c1.75 1.12 10.4 7.71 10.89 8.27s1.44.8 1.44.31c0-.87-7.46-7.14-10.47-8.82c-1.86-1.05-2.49-1.89-1.89-2.49s9.77 4.31 13 7.21c1.33 1.2 1.93 2.63 1.09 2.63a.38.38 0 0 0-.35.35c0 .21.59.35 1.37.35a2.48 2.48 0 0 1 1.78.53c.81.94 1.12 0 .67-1.79a39.55 39.55 0 0 0-1.77-4.82c-1.4-3.29-1.61-4.42-.87-4.42s1.57.85 3.57 4.21a45.58 45.58 0 0 1 5.36 12.33c.84 3.39 1 8 .45 9.84a2.68 2.68 0 0 0 .29 2.59c1 2 3.36 8.13 3.18 8.27s-2 .7-4.27 1.36c-2.91.84-4.24 1.12-4.45.84M20.22 26.33c-4.41-13.84-3.88-16.11 1.33-5.89c1.9 3.68 3 5.5 3.3 5.22c.14-.1 0-.91-.35-1.79c-.6-1.57-.6-1.57.42-3.36c2.31-4.17 4.48-7.25 5.11-7.25a2.56 2.56 0 0 1 1.44 1.16a57.13 57.13 0 0 0 3.92 4.34c1.71 1.79 3 3.43 3 3.64a1.42 1.42 0 0 1-.88.7c-.91.32-2.77-.59-5.08-2.52a11.76 11.76 0 0 0-1.85-1.36c-.39 0-1.23 2.41-1 2.94c.31.77.88.7 1.09-.14c.1-.39.24-.7.35-.7c.52 0 4.3 2.91 4.06 3.12s-9.28 5.35-12.79 7.28a29.53 29.53 0 0 1-2.07-5.39m17.97-6.06a8.27 8.27 0 0 1-1.51-2c0-.49 2-2.18 2.63-2.18s2 3.65 1.86 4.49a1.94 1.94 0 0 1-.81.94c-.63.39-.84.29-2.17-1.25m-3.96-4.7a4.93 4.93 0 0 1-.8-1.43A9 9 0 0 1 35.88 13c1.29-.53 3.68-1.65 5.25-2.49c4.52-2.38 4.45-1.19-.14 2.77c-2.87 2.45-4.55 3.54-5.43 3.54c-.24-.05-.84-.58-1.33-1.25\\\"/></g><g fill=\\\"#bfbebe\\\"><path d=\\\"M54.48 113.05c-.46-.25-.63-.81-.67-2a9.12 9.12 0 0 0-.28-2.35c-.21-.49 0-1 .63-1.82a4.34 4.34 0 0 0 1-3a9.44 9.44 0 0 1 .52-3l.53-1.19l1.29 2a9.45 9.45 0 0 0 4.49 4c1.61.74 1.75 1.16.35 1.16c-1.58 0-4.59.77-4.38 1.12a13.55 13.55 0 0 0 3.92.1c3-.14 3.57-.1 2.87.21c-5.11 2.35-7.32 3.5-8.16 4.31c-1.13.95-1.24.98-2.11.46m24.93-2.25a37.58 37.58 0 0 0-4.09-1.57c-2.07-.7-3.26-1.3-3.26-1.61s0-.49.1-.49s1.86.49 4.07 1.05a20.1 20.1 0 0 0 4.16.87c.35-.35-.31-1.26-1.22-1.61a23.33 23.33 0 0 0-3.22-.77l-2.25-.35l2-1a9.13 9.13 0 0 0 3.3-2.75a7.87 7.87 0 0 1 1.57-1.71a8.86 8.86 0 0 1 1.16 2.38c.77 2 .84 2.59.53 3.22a3.59 3.59 0 0 0-.21 2.1c.17 1.09.07 1.51-.5 2.07c-.88.84-.98.84-2.14.17m-12.01-3.22c-.6-.56-.1-.8 1.68-.8c1.47 0 1.93.1 1.93.52s-.42.53-1.68.53a4.67 4.67 0 0 1-1.93-.25\\\"/><path d=\\\"M61.69 104.32a6.63 6.63 0 0 1-2.87-2.87a26.23 26.23 0 0 0-7.46-7.84A12.83 12.83 0 0 1 47.58 90c-.81-1.29-1.3-1.75-1.93-1.75c-1.3 0-2.52-1.22-3.85-3.92a16.5 16.5 0 0 1-1.26-2.87c0-.74 1.85-2.24 3.85-3.15c2.45-1.12 4.27-1.47 10.16-2c5.57-.42 7.32-.84 10.85-2.6l2.6-1.29l-1.9 1.75c-1.71 1.54-1.82 1.75-1.1 1.83c2.52 0 6.06-2.28 7.35-4.84l.65-1.3l.56 1c1.69 3.26 10.72 9.25 13.91 9.25a2.42 2.42 0 0 1 1.4.7c.67.66.67.77.18 1.75c-.6 1.16-.67 1.75-.22 1.75s1.79-2.24 1.79-3.12c0-.49.21-.73.7-.73c.84 0 .88.63.14 2.38s-2.17 3.22-3.36 3.22c-.77 0-1.16.32-1.89 1.51a11 11 0 0 1-4.84 4.52c-1.43.73-1.92 1.12-1.61 1.33a1.68 1.68 0 0 0 1.3 0c1.12-.42 1.16-.42 1.16.35c0 1.16-2.46 5.57-4 7.15c-2.63 2.66-7.5 4.45-12.33 4.45a6.6 6.6 0 0 1-4.2-1.05m.91-3.92c.7-2 2.8-3.15 5.61-3a14.7 14.7 0 0 1 2.55.43c1 .45.67-.5-.52-1.23c-1.4-.84-2.91-.88-5.61-.14c-2.45.7-3.43 1.75-3.43 3.64c0 2.26.7 2.4 1.4.3m-.6-5.71c1.19-.49 1.4-.49 2.38 0a4.15 4.15 0 0 0 4 0a8.76 8.76 0 0 1 2.87-.56c1.36 0 1.5 0 1.4-.74c-.07-.45-.32-.73-.63-.63s-1.16.18-1.93.28a16.63 16.63 0 0 0-2.69.53a2.74 2.74 0 0 1-2.4-.24c-1.51-.7-2.1-.7-3.4 0a2.44 2.44 0 0 1-1.47.35c-.59-.21-1.82.74-1.51 1.19s2 .46 3.47-.14zm6.52-3.81a11.76 11.76 0 0 1 2-2.25c.45-.28.49-.35 0-.73c-.67-.56-1.54-.11-2.77 1.36c-1 1.09-2.1 1.37-2.59.63a11.85 11.85 0 0 1-.28-3.08a9.62 9.62 0 0 0-.67-3.88c-.63-1.27-.63-1.27.25-2.21S66 78 65.54 77.32c-.14-.24-.7.14-1.5 1.12l-1.3 1.47l-4.2-.38c-2.28-.25-4.73-.46-5.43-.49a4.09 4.09 0 0 0-3.4 1.85c-.31.49-.14.53 1.44.25a14 14 0 0 1 3.4-.07a70.63 70.63 0 0 1 7.11 1.08c1.57.42 2.27 5.4.94 6.59c-.8.73-.91 1.58-.21 1.58a5.22 5.22 0 0 1 1.86 1.22c1.89 1.72 2.59 1.61 4.31-.66zM45.2 85.13a15 15 0 0 0-.81-1.47a13.79 13.79 0 0 1-.91-1.58c-.53-.94-1.33-.87-1.47.07c-.07.56.35 1.27 1.4 2.32c1.51 1.53 2.17 1.78 1.79.66m36.21-1.23c2.42-2.11 2.52-2.77.18-1.3a7.69 7.69 0 0 1-3.72.91c-2.27.14-2.62.07-3.5-.67l-1-.84h2.39a16.35 16.35 0 0 0 4.41-.66c3-1 2.94-1.4-.18-1.12c-2.73.24-8.72-.32-9.84-.91a2.22 2.22 0 0 1-.79-1.31a3.07 3.07 0 0 0-.66-1.44c-.42-.31-.49-.14-.49 1.16c0 1.85.94 3.08 2.94 3.92c.8.35 1.26.77 1.26 1.19c0 .67.52 1 3.15 1.93s3.96.75 5.85-.86m-23.78 1a11.59 11.59 0 0 1 2.45-.73c.81-.14 1.47-.39 1.47-.56c0-.42.18-.39-5.08-.46c-4.55-.07-6.37.18-5.95.84a2.49 2.49 0 0 0 1.54.35a4.11 4.11 0 0 1 2 .53a3.58 3.58 0 0 0 3.57.05zM34 55.85c-1.54-.24-5.68-.8-9.18-1.26l-6.41-.84v-.88a72.63 72.63 0 0 1 .88-7.32s2.41.53 5.29 1.3L35 49.55c3 .77 5.15 1.5 5.15 1.75a21.18 21.18 0 0 1-.7 2.73c-.84 2.63-.56 2.56-5.45 1.82m-10.92-4c1.29-1.19.56-3.6-1.13-3.6s-2.59 2.17-1.33 3.78a1.82 1.82 0 0 0 2.48-.14zm67.75-.48c-.24-.46-1.12-1.89-1.89-3.26c-1.26-2.13-1.33-2.49-.84-2.73c1.12-.49 22.24-6.55 22.38-6.41a18.69 18.69 0 0 1-.11 3.47c-.17 2.62-.35 3.39-.8 3.57c-1.51.63-17.69 6.13-17.93 6.13s-.53-.35-.81-.77m18.53-8.2a1.54 1.54 0 0 0-.25-2.38c-1.29-.8-2.66 1.23-1.68 2.45c.57.63 1.23.63 1.93-.07M29.33 46.5c-1.44-.38-3.19-.84-3.92-1l-1.26-.32l.45-1.68c.25-.91.67-2.13.88-2.69c.38-.95.31-1.3-.84-3.58a16.41 16.41 0 0 1-1.26-3c0-.6 12.71-8.48 15.16-9.39a5 5 0 0 0 2.14-1.23c.1-.31 1.82-1.29 3.78-2.24A51 51 0 0 0 49 19c.91-.59 1-.59 1.58 0c.77.74.66.91-2.7 5.08a48.67 48.67 0 0 0-4 6.06c-2.06 3.82-3.81 5.88-5.91 7c-1.27.67-1.62 1-1.79 2.07a7.29 7.29 0 0 1-.81 2.1a20.57 20.57 0 0 0-1.29 3.33c-.9 2.84-.93 2.84-4.75 1.86m63.6-6.69c-.31-.84-.77-2.14-1-2.91s-.74-1.43-1.19-1.5a2.34 2.34 0 0 1-1.26-1.3c-.53-1.08-.78-1.22-3.23-1.75a16.19 16.19 0 0 1-6.06-2.84c-2.8-1.82-3.88-2.31-6-2.76c-1.44-.32-2.91-.63-3.22-.74c-.91-.28-.77-1.15.24-1.54a38.11 38.11 0 0 1 9.14-.84c.91.17 1.55 0 3.09-.95a7.56 7.56 0 0 0 2-1.47c0-.42-2.35-.1-3.75.49l-1.12.46l-2.24-2.45a74.2 74.2 0 0 0-5.47-5.19a16.4 16.4 0 0 1-3.18-3.22c0-.84 1.15-.52 3.15.81c1 .7 3.71 2.34 5.92 3.67c5.67 3.37 6.23 3.23 2.8-.77c-1.16-1.36-3.78-4.2-5.78-6.3c-3.71-3.89-4.31-4.9-2.84-4.9c.74 0 12.09 8.12 12.65 9.07c.31.49 1.26.49 1.26 0c0-.87-7.29-7-10.61-8.89c-1.79-1-2.32-1.79-1.72-2.39S85.54 6.82 88 9.38c.88.94 1 1.19.6 1.78c-.6 1-.56 1.05.74 1.05a3.8 3.8 0 0 1 1.92.56c.46.32.91.49 1 .39c.35-.39-.63-4-2-7.15c-1.51-3.46-1.68-4.31-.94-4.31s1.5.85 3.6 4.38a42.75 42.75 0 0 1 5.26 12c.87 3.43.91 4.55.45 11a24.12 24.12 0 0 0 1.75 5.22a19.15 19.15 0 0 1 1.54 4.59A52.26 52.26 0 0 1 94 41.28c-.3 0-.75-.63-1.07-1.47m-71.06-8.58c-.35-.56-3.75-11.94-4.27-14.25c-.67-2.81-.32-3.65.84-2c.38.56 1.85 3.16 3.22 5.71s2.63 4.84 2.8 5c.6.67.7-.1.18-1.36a6.74 6.74 0 0 1-.56-1.9a74.14 74.14 0 0 1 5.35-9c.46-.42 1.65.38 2.56 1.75a33.81 33.81 0 0 0 3.75 4.17c1.5 1.47 2.7 2.9 2.63 3.15c-.46 1.36-3.47.35-6.31-2.17c-1.68-1.44-1.68-1.44-2-.63c-.63 1.71-.7 2.2-.42 2.69s1.09.21 1.09-.52c0-.28.07-.49.18-.49a23.69 23.69 0 0 1 4 2.91c.07.31-12 7.25-12.58 7.25a.55.55 0 0 1-.46-.31m16.25-11.17a9.61 9.61 0 0 1-1.44-1.93a7.09 7.09 0 0 1 2.7-2.07c.6 0 2 4.24 1.61 4.87c-.63 1.07-1.4.77-2.87-.87m-3.82-4.49c-.45-.66-.73-1.36-.63-1.54a6.68 6.68 0 0 1 1.86-.94c.91-.35 3.19-1.4 5-2.31a35.87 35.87 0 0 1 3.57-1.72c1.79 0-5.74 6.93-8.19 7.53c-.63.14-.91-.04-1.61-1.02\\\"/></g><path fill=\\\"#f4e4cc\\\" d=\\\"M54.69 113.15a3.21 3.21 0 0 1-.6-1.82a21.84 21.84 0 0 0-.42-2.52c-.21-.77 0-1.19.7-2.1a2.28 2.28 0 0 0 .74-2.18a6.55 6.55 0 0 1 .35-2.8l.59-1.75l.74 1c2.06 2.69 3.22 3.78 4.8 4.59l1.75.84l-1.16.24c-5.67 1.09-5.81 1.72-.35 1.44c3.43-.21 3.64-.18 2.52.28c-3.46 1.36-6.62 3-7.67 4c-1.22 1.19-1.4 1.26-2 .84zm24.37-2.59A39.1 39.1 0 0 0 75 109c-1.62-.52-2.91-1.15-2.91-1.36c0-.49 2.91.07 6.41 1.26c1.92.63 2 .63 2 0c0-1-.91-1.5-3.78-2.13l-2.7-.6l1.69-.8a12.69 12.69 0 0 0 3.29-2.66l1.61-1.85l.77 1.92a8.42 8.42 0 0 1 .64 4.73a15.56 15.56 0 0 1-.32 3.12c-.36.59-1.48.56-2.64-.07m-11.31-2.94c-.59-.63-.14-.88 1.44-.77c.91.07 1.64.28 1.64.45c0 .42-2.69.7-3.08.32m-5.32-2.98a7.75 7.75 0 0 1-3.72-3.57a31.17 31.17 0 0 0-7.18-7.46a12.75 12.75 0 0 1-4.34-4.49c-.21-.59-.66-.87-1.71-1.05c-1.55-.24-2.11-.84-3.68-3.95c-1.26-2.49-1.19-3.37.31-4.52a20.39 20.39 0 0 1 9-2.94c5.74 0 11.24-1.12 14.6-3l1.58-.88l-1.72 1.58c-1 .84-1.68 1.61-1.57 1.72a6.38 6.38 0 0 0 1.89-.18a9.5 9.5 0 0 0 5.99-3.9L73 70.42l1.3 1.68c2.35 3.05 9.35 7.53 12.47 8c2 .28 2.63 1.12 2.1 2.74c-.81 2.48.56 1.85 1.65-.74c.59-1.47 1.5-2.1 1.5-1c0 1.86-2.41 5.11-3.78 5.11s-1.51.25-2.63 2.17a10.42 10.42 0 0 1-5 4.17c-.63.21-1.16.53-1.16.7c0 .56.88.7 1.86.35c1.26-.49 1.23-.07-.28 3c-2.28 4.73-5.43 7.14-10.93 8.3c-3.47.74-6 .67-7.63-.21zm.17-4.2c.35-1.23.63-1.54 2.21-2.28a6.19 6.19 0 0 1 5.11-.45c1.44.52 1.79.14.81-.85c-.67-.63-1.19-.77-3.15-.77c-2.67 0-5.5.91-6.06 2a6.09 6.09 0 0 0-.14 3.78c.38.6.84.07 1.22-1.43m5.4-5.57a12.92 12.92 0 0 1 3.36-.7c1.51 0 2-.53 1.3-1.26c-.35-.39-.77-.42-1.68-.14a9.36 9.36 0 0 1-2.35.35a2.08 2.08 0 0 0-1.33.35c-.31.52-1.51.42-2.45-.21s-1-.56-4.31.14c-1.82.38-2.49.94-1.93 1.5c.39.39 1.62.32 4.17-.21a2.93 2.93 0 0 1 2.1.32a10.87 10.87 0 0 1 1 .56l2.07-.7zm-.1-3.19c.45-.59 1.33-1.65 1.92-2.31s1.05-1.37 1-1.54c-.39-.63-1.23-.28-2.73 1.08c-1.69 1.55-2 1.65-2.77.88c-.39-.39-.49-1-.35-2.56a6.24 6.24 0 0 0-.56-3.71l-.74-1.68l.88-1c.87-1 1.5-3.29 1-3.74c-.11-.14-.84.45-1.54 1.29l-1.33 1.54l-3.82-.42c-2.1-.21-4.52-.49-5.39-.59a2.91 2.91 0 0 0-2.88.91a5.94 5.94 0 0 0-1.33 1.33a7.21 7.21 0 0 0 2.7.14c2.84-.18 8.58.49 9.67 1c.87.46 1.64 2.38 1.64 4.17a3.55 3.55 0 0 1-.91 2.55c-.87 1-.91 1.09-.28 1.23a7.14 7.14 0 0 1 2 1.3c1.67 1.53 2.76 1.57 3.85.13zm-22.46-6.06a3.27 3.27 0 0 0-.7-1.36a7.44 7.44 0 0 1-1.12-2C43.2 81 42.18 81 42 82.19c-.07.56.35 1.26 1.4 2.31c1.6 1.65 2.04 1.89 2.04 1.12m13.31-1.12c.28 0 1.12-.21 1.86-.31c1-.18 1.26-.32 1-.67c-.48-.52-9.61-.66-10.61-.14s-.7 1 .7 1a7 7 0 0 1 2.67.7c1.26.63 1.43.63 2.62.14a16.86 16.86 0 0 1 1.76-.72m23-.38c2.13-1.83 2-2.32-.32-1.12c-2.07 1-5.6 1.29-6.79.52s-1.09-1.09.87-1c1.72.14 7-1.16 7-1.68a28.37 28.37 0 0 0-5.5-.42a27.85 27.85 0 0 1-6.34-.56a4.86 4.86 0 0 1-1.4-1.72c-.74-1.57-1.33-1.5-1.23.14a3.92 3.92 0 0 0 2.59 3.57a2.8 2.8 0 0 1 1.68 1.51c.25.7.77 1.05 2.39 1.61a15.47 15.47 0 0 0 3.57.74c1.42.05 1.81-.16 3.53-1.59zM27.68 55c-5.08-.74-9.28-1.4-9.42-1.51a23.86 23.86 0 0 1 .21-4.13c.39-3.29.53-3.86 1-3.72c.31.11 4.9 1.3 10.19 2.7s9.77 2.63 9.91 2.77s0 1.36-.45 2.77c-.67 2.1-.88 2.48-1.51 2.45c-.4-.06-4.88-.65-9.93-1.33m-4.3-3.16c.91-1.78-.28-4.16-1.86-3.71a2.22 2.22 0 0 0-1.09 3.61c.7.96 2.42 1.03 2.95.08zM89.57 49a14.15 14.15 0 0 1-1.65-3.33c.21-.24 22.45-6.79 22.56-6.65a27.61 27.61 0 0 1-.74 6.65c-.31.39-17.37 6.52-18.14 6.52A20.61 20.61 0 0 1 89.57 49m19.93-5.71a2.22 2.22 0 0 0 .31-1.5c-.14-1.3-1.68-1.58-2.48-.42c-1.12 1.52.98 3.34 2.17 1.87zm-80.98 2.9a38.14 38.14 0 0 1-4-1.16c-.21-.25.28-2.24 1-4c.42-1 .35-1.33-.87-3.93a11 11 0 0 1-1.09-3.18c.42-.67 13.76-8.65 15.13-9.07a4 4 0 0 0 1.93-1.06a22.37 22.37 0 0 1 4.31-2.62C47.05 20.09 49 19 49.36 18.8a.75.75 0 0 1 1.12 0c.88.74.67 1.3-1.15 3.33A48.68 48.68 0 0 0 43 31.48a11.39 11.39 0 0 1-3.89 4.65c-1.22.91-2.45 1.82-2.66 2A2 2 0 0 0 36 39.5a2.12 2.12 0 0 1-.52 1.43a11.87 11.87 0 0 0-1.4 3.36c-.49 1.65-1.09 3-1.33 2.91s-2.14-.45-4.21-1zm63.99-7.75c-.73-2.06-1.22-2.94-1.78-3.15A3.19 3.19 0 0 1 89.4 34c-.53-1.05-1-1.29-4.66-2.1a18.32 18.32 0 0 1-4.63-2.45a14 14 0 0 0-6.37-2.87a32.14 32.14 0 0 1-3.36-.84c-.11-.07-.07-.35 0-.63c.28-.7 1.54-.95 6.9-1.2c4.59-.21 4.77-.24 6.55-1.4c1-.66 1.79-1.36 1.65-1.54c-.25-.42-2-.1-3.4.63s-2 .39-3.22-1.33a52.58 52.58 0 0 0-5.15-5C70 12 69 10.81 70 10.81c.59 0 2.17.91 5.88 3.29c5.08 3.3 7.32 4.49 7.6 4.07c.14-.21 0-.81-.38-1.33C82.22 15.57 76.23 9 74 6.75c-2-1.86-2.24-2.49-1.4-2.8s1.57.24 7.84 5c3.16 2.35 5.89 4.31 6.06 4.31c1.79 0-4.48-5.78-9.84-9c-2.47-1.47-3.17-2.56-1.73-2.56c1 0 6.8 3.12 10.23 5.5c2.94 2.07 4.06 3.4 3.39 4.07s-.42.94.81.94a2.51 2.51 0 0 1 1.61.53a1.54 1.54 0 0 0 1 .52c.88 0 .25-2.83-1.5-6.93a30.08 30.08 0 0 1-1.6-4.13c0-.74.84-.6 1.65.31a61.15 61.15 0 0 1 5.56 9.56c2.42 5.29 3.58 12.51 2.56 15.87c-.35 1.15-.28 1.57.74 3.92c2.2 5.15 2.8 7 2.34 7.15c-1.19.45-7.49 2.27-7.81 2.27S93 40 92.51 38.44M20.26 26c-4.38-13.91-4-15.38 1.29-5.36c1.2 2.2 2.39 4.34 2.67 4.73c.84 1.12 1 .38.35-1.48L24 22.12l2.49-4c3.36-5.4 3.36-5.4 4.94-3.44c.7.88 2.55 2.91 4.16 4.52a24.74 24.74 0 0 1 2.88 3.22c0 .18-.42.42-.91.53c-1.2.31-2.77-.46-5-2.49c-1-.87-2-1.5-2.14-1.4a5.1 5.1 0 0 0-.91 3.15c.28.77 1.19.63 1.33-.17c.11-.63.32-.56 2.31.77a14.78 14.78 0 0 1 2.1 1.51c-.28.24-12.15 6.82-12.64 7s-.88-.76-2.35-5.32m17.79-6.12l-1.51-1.78l1.23-1a4.7 4.7 0 0 1 1.61-1c.21 0 .74 1.06 1.19 2.35c.74 2.24.74 2.35.11 2.8c-.91.63-.98.59-2.63-1.37m-3.68-4.34c-.52-.74-.8-1.37-.63-1.54a25.31 25.31 0 0 1 2.77-1.23a44.12 44.12 0 0 0 4.94-2.34c4.1-2.25 3.82-.95-.67 2.76c-2.48 2.1-4.66 3.58-5.29 3.58a6.43 6.43 0 0 1-1.12-1.23\\\"/><path fill=\\\"#fff\\\" d=\\\"M54.83 113.15c-.49-.1-.63-.49-.63-1.82c0-1-.14-1.82-.35-1.93c-.63-.38-.35-1.78.52-2.62c.7-.67.84-1.12.81-2.6a9.08 9.08 0 0 1 .49-3l.49-1.23l.7 1a13.82 13.82 0 0 0 4.66 4.59l1.61.81l-2.1.42c-3 .59-3.37.7-3.12 1.12c.14.21 1.5.28 3.78.14c2.77-.18 3.36-.14 2.66.17c-4.87 2.21-6.69 3.19-7.74 4.07a3.1 3.1 0 0 1-1.78.87zm24.51-2.45a24.22 24.22 0 0 0-4.13-1.65c-3.22-1-4.24-1.82-1.82-1.43a43.08 43.08 0 0 1 4.24 1c1.57.46 2.94.74 3 .56c.63-1-1.75-2.31-4.83-2.66l-1.76-.21l1.58-.8a14.92 14.92 0 0 0 3.2-2.51a12.77 12.77 0 0 1 1.75-1.79a7.63 7.63 0 0 1 .91 1.86c.63 1.57.7 2.21.46 4.59c-.21 2.2-.39 2.83-1 3.22s-.79.34-1.6-.18m-11.62-3.19c-.11-.17.45-.38 1.29-.45c1.61-.18 2.1-.07 1.82.45s-2.83.42-3.11 0M27.68 55c-5-.74-9.28-1.4-9.42-1.51a23.86 23.86 0 0 1 .21-4.13c.39-3.29.53-3.86 1-3.72c.31.11 4.9 1.34 10.19 2.7s9.77 2.63 9.91 2.77s0 1.36-.45 2.77c-.67 2.1-.88 2.48-1.51 2.45c-.4-.06-4.88-.65-9.93-1.33m-4.3-3.16A2.71 2.71 0 0 0 23 48.5c-1.06-.74-1.55-.7-2.39.14a2.26 2.26 0 0 0-.14 3.08c.66.98 2.38 1.05 2.91.1zM89.57 49a19.93 19.93 0 0 1-1.65-3.33c.07-.1 4.49-1.43 9.74-3l11.28-3.29l1.64-.49l-.21 3a20.34 20.34 0 0 1-.49 3.54c-.21.38-17.37 6.69-18.24 6.69A19.22 19.22 0 0 1 89.57 49m19.93-5.71a2.22 2.22 0 0 0 .31-1.5c-.14-1.33-1.71-1.58-2.52-.39c-.7 1-.7 1.16 0 1.82a1.48 1.48 0 0 0 2.21.02z\\\"/>\"\n\t\t},\n\t\t\"confluence\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconConfluence0\\\" x1=\\\"26.791\\\" x2=\\\"11.792\\\" y1=\\\"28.467\\\" y2=\\\"19.855\\\" gradientTransform=\\\"translate(-21.334 -18.666)scale(5.33331)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\".918\\\" stop-color=\\\"#2380fb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient><linearGradient id=\\\"deviconConfluence1\\\" x1=\\\"5.209\\\" x2=\\\"20.208\\\" y1=\\\"2.523\\\" y2=\\\"11.136\\\" gradientTransform=\\\"translate(-21.334 -18.666)scale(5.33331)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\".918\\\" stop-color=\\\"#2380fb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"url(#deviconConfluence0)\\\" d=\\\"M4.655 96.303a332.061 332.061 0 0 0-4.062 6.577c-1.156 1.933-.578 4.448 1.354 5.61l26.484 16.25c1.934 1.16 4.443.577 5.604-1.355a185.798 185.798 0 0 1 3.866-6.579c10.442-17.213 21.071-15.28 40.014-6.186l26.293 12.374c2.124.97 4.447 0 5.41-1.933l12.569-28.43c.963-1.938 0-4.448-1.939-5.418c-5.604-2.516-16.618-7.74-26.285-12.573c-35.76-17.219-66.114-16.057-89.306 21.663Zm0 0\\\"/><path fill=\\\"url(#deviconConfluence1)\\\" d=\\\"M123.343 31.697a332.061 332.061 0 0 0 4.063-6.577c1.16-1.933.577-4.448-1.355-5.61L99.567 3.26c-1.933-1.16-4.443-.577-5.604 1.355a178.066 178.066 0 0 1-3.865 6.579c-10.443 17.213-21.072 15.28-40.015 6.186L23.79 5.006c-2.124-.97-4.441 0-5.41 1.933L5.816 35.369c-.968 1.938 0 4.454 1.933 5.418c5.604 2.516 16.624 7.74 26.285 12.573c35.767 17.027 66.115 16.056 89.307-21.663zm0 0\\\"/>\"\n\t\t},\n\t\t\"confluence-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconConfluenceWordmark0\\\" x1=\\\"26.791\\\" x2=\\\"11.792\\\" y1=\\\"28.467\\\" y2=\\\"19.855\\\" gradientTransform=\\\"translate(4.574 -5.311)scale(3.677)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\".918\\\" stop-color=\\\"#2380fb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient><linearGradient id=\\\"deviconConfluenceWordmark1\\\" x1=\\\"5.209\\\" x2=\\\"20.208\\\" y1=\\\"2.523\\\" y2=\\\"11.136\\\" gradientTransform=\\\"translate(4.574 -5.311)scale(3.677)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\".918\\\" stop-color=\\\"#2380fb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"url(#deviconConfluenceWordmark0)\\\" d=\\\"M22.49 73.952a233.377 233.377 0 0 0-2.798 4.535c-.797 1.332-.4 3.068.935 3.87l18.257 11.199c1.333.802 3.065.4 3.866-.932a119.995 119.995 0 0 1 2.664-4.534c7.196-11.871 14.526-10.535 27.589-4.27l18.127 8.535c1.462.67 3.065 0 3.73-1.332l8.663-19.605c.666-1.332 0-3.065-1.333-3.735c-3.865-1.732-11.461-5.332-18.126-8.666c-24.655-11.87-45.58-11.069-61.573 14.935Zm0 0\\\"/><path fill=\\\"url(#deviconConfluenceWordmark1)\\\" d=\\\"M104.324 29.41a233.495 233.495 0 0 0 2.799-4.532c.797-1.336.396-3.068-.936-3.87L87.93 9.804c-1.332-.796-3.066-.396-3.865.937a123.233 123.233 0 0 1-2.665 4.535c-7.2 11.865-14.526 10.533-27.59 4.266l-18.126-8.535c-1.462-.667-3.064 0-3.73 1.335l-8.662 19.6c-.666 1.337 0 3.07 1.331 3.736c3.867 1.736 11.462 5.336 18.127 8.67c24.656 11.737 45.58 11.07 61.574-14.938m0 0\\\"/><path fill=\\\"#253858\\\" d=\\\"M13.685 117.542c-1.094.73-2.826 1.031-4.65 1.031c-5.78 0-9.035-3.457-9.035-9.013c0-5.338 3.255-9.07 9.002-9.07c1.706 0 3.439.334 4.683 1.214v2.334c-1.244-.788-2.644-1.213-4.682-1.213c-4.138 0-6.57 2.733-6.57 6.768c0 4.036 2.554 6.705 6.72 6.705c1.856 0 3.288-.425 4.564-1.059v2.304zm1.674-5.915c0-4.01 2.342-6.918 6.358-6.918c3.985 0 6.329 2.91 6.329 6.918c0 4.004-2.344 6.978-6.329 6.978c-3.984-.032-6.358-2.974-6.358-6.978m2.251 0c0 2.55 1.248 4.825 4.139 4.825c2.828 0 4.076-2.307 4.076-4.825c0-2.521-1.218-4.797-4.076-4.797c-2.89 0-4.139 2.247-4.139 4.797m24.49 6.704h-2.312v-8.072c0-2.394-.975-3.457-3.163-3.457c-2.134 0-3.62 1.427-3.62 4.128v7.433h-2.316V105.01h2.316v2.184c.848-1.579 2.43-2.459 4.226-2.459c3.073 0 4.837 2.126 4.837 5.797v7.798zm9.884-13.348v2.121h-3.47v11.227h-2.247v-11.228h-2.162v-2.12h2.162v-1.46c0-2.486 1.4-4.154 4.257-4.154c.699 0 1.154.118 1.55.21v2.125c-.396-.091-.911-.123-1.458-.123c-1.431 0-2.13.82-2.13 2.034v1.367zm6.053 13.407c-2.188 0-3.588-1.03-3.588-3.488V99.396h2.312v15.232c0 1.218.789 1.641 1.796 1.641c.241 0 .392 0 .665-.03v2.064c-.21.06-.606.087-1.185.087m3.132-13.407h2.312v8.067c0 2.4.974 3.46 3.163 3.46c2.129 0 3.62-1.426 3.62-4.126v-7.402h2.315v13.35h-2.314v-2.186c-.853 1.579-2.436 2.459-4.228 2.459c-3.072 0-4.836-2.126-4.836-5.796v-7.827zm21.263 13.59c-5.02 0-7.208-2.882-7.208-6.978c0-4.036 2.252-6.918 6.327-6.918c4.136 0 5.78 2.855 5.78 6.918v1.03h-9.764c.333 2.277 1.791 3.735 4.955 3.735c1.555 0 2.862-.304 4.08-.73v2.126c-1.127.607-2.832.817-4.171.817zm-4.929-7.89h7.485c-.123-2.486-1.248-3.881-3.56-3.881c-2.434 0-3.68 1.547-3.925 3.881m23.91 7.648h-2.311v-8.072c0-2.394-.974-3.457-3.164-3.457c-2.129 0-3.619 1.427-3.619 4.128v7.433h-2.312V105.01h2.312v2.184c.853-1.579 2.434-2.459 4.226-2.459c3.072 0 4.836 2.126 4.836 5.797v7.798zm12.683-.365c-.79.424-2.038.607-3.254.607c-4.774 0-6.993-2.882-6.993-6.978c0-4.036 2.22-6.918 6.993-6.918c1.216 0 2.128.15 3.195.639v2.124c-.853-.396-1.764-.638-3.014-.638c-3.465 0-4.896 2.185-4.896 4.793c0 2.609 1.464 4.793 4.96 4.793c1.368 0 2.22-.183 3.04-.483v2.061zm9.004.607c-5.016 0-7.208-2.882-7.208-6.978c0-4.036 2.252-6.918 6.328-6.918c4.135 0 5.78 2.855 5.78 6.918v1.03h-9.765c.333 2.277 1.797 3.735 4.96 3.735c1.55 0 2.858-.304 4.075-.73v2.126c-1.126.607-2.799.817-4.171.817zm-4.896-7.89h7.485c-.123-2.486-1.248-3.881-3.56-3.881c-2.463 0-3.68 1.547-3.925 3.881m0 0\\\"/>\"\n\t\t},\n\t\t\"consul\": {\n\t\t\t\"body\": \"<path fill=\\\"#e03875\\\" d=\\\"M116.407 42.787a5.255 5.255 0 0 1-3.723-8.964a5.249 5.249 0 0 1 5.73-1.136a5.253 5.253 0 0 1-2.007 10.1m-9.874 18.237a5.24 5.24 0 0 1-5.14-5.243a5.24 5.24 0 0 1 5.14-5.242a5.24 5.24 0 0 1 5.137 5.242a5.24 5.24 0 0 1-5.137 5.243m15.642-.607a5.246 5.246 0 0 1-5.246-5.242a5.244 5.244 0 1 1 10.489 0a5.267 5.267 0 0 1-5.243 5.242m-15.642 17.044a5.252 5.252 0 0 1-4.86-3.24a5.249 5.249 0 0 1 6.862-6.862a5.252 5.252 0 0 1-2.002 10.1zm15.642.594a5.242 5.242 0 0 1-5.282-5.198a5.24 5.24 0 1 1 10.48-.084a5.26 5.26 0 0 1-5.198 5.282M64.2 77.851c-7.656 0-13.863-6.207-13.859-13.863c0-7.656 6.212-13.864 13.867-13.86c7.656.005 13.86 6.216 13.852 13.872c-.012 7.648-6.211 13.844-13.859 13.852zm51.912 18.132a5.242 5.242 0 0 1-5.235-5.245a5.242 5.242 0 0 1 10.485.004a5.25 5.25 0 0 1-5.25 5.242zM64.603 128c-28.641.008-53.8-19.01-61.599-46.566C-4.799 53.879 6.658 24.49 31.05 9.487C55.442-5.517 86.837-2.49 107.912 16.9L92.777 32.787C75.952 17.602 50.12 18.484 34.37 34.78c-15.747 16.297-15.747 42.14 0 58.438c15.75 16.297 41.582 17.178 58.407 1.995l15.135 15.886a63.863 63.863 0 0 1-43.31 16.9zm0 0\\\"/>\"\n\t\t},\n\t\t\"consul-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M27.786 101.141v-2.99h-2.71v2.99h-1.394v-7.174h1.394v3.015h2.71v-3.01h1.394v7.176zm6.515 0h-1.086l-.098-.351a3.05 3.05 0 0 1-1.61.457c-.982 0-1.404-.619-1.404-1.542c0-1.054.477-1.457 1.57-1.457h1.294v-.544c0-.568-.162-.773-1.025-.773a7.57 7.57 0 0 0-1.492.162l-.17-.99a7.398 7.398 0 0 1 1.859-.25c1.697 0 2.198.576 2.198 1.859zm-1.357-1.957h-.971c-.442 0-.565.118-.565.517c0 .394.123.516.546.516a2.169 2.169 0 0 0 1.013-.264zm4.186 2.06a6.465 6.465 0 0 1-1.859-.297l.194-.99c.521.15 1.06.225 1.602.229c.62 0 .687-.13.687-.526c0-.394-.068-.476-.94-.677c-1.322-.305-1.475-.62-1.475-1.627c0-1.002.477-1.503 2.02-1.503a7.655 7.655 0 0 1 1.614.186l-.134 1.03a9.795 9.795 0 0 0-1.48-.151c-.62 0-.687.131-.687.446c0 .415 0 .447.762.62c1.504.382 1.653.568 1.653 1.634c0 1.065-.303 1.63-1.933 1.63zm6.191-.103v-3.616c0-.28-.127-.414-.434-.414c-.494.051-.97.202-1.405.438v3.591h-1.313v-7.256l1.348.205v2.272a4.96 4.96 0 0 1 1.97-.5c.895 0 1.238.619 1.238 1.535v3.751zm2.474-5.911v-1.24h1.35v1.24zm0 5.911v-5.177h1.35v5.177zm2.426-5.137c0-1.295.785-2.049 2.625-2.049a8.838 8.838 0 0 1 2.008.233l-.158 1.156a11.538 11.538 0 0 0-1.808-.178c-.959 0-1.274.317-1.274 1.071v2.725c0 .754.315 1.07 1.275 1.07c.607-.012 1.211-.07 1.807-.178l.158 1.164a8.834 8.834 0 0 1-2.008.23c-1.855 0-2.625-.758-2.625-2.052zm7.615 5.24c-1.858 0-2.347-.976-2.347-2.033v-1.313c0-1.066.497-2.045 2.347-2.045s2.344.979 2.344 2.045v1.313c.032 1.057-.465 2.036-2.316 2.036zm0-4.282c-.718 0-.998.308-.998.892v1.393c0 .62.28.895.998.895s.994-.307.994-.895v-1.394c.052-.584-.248-.871-.966-.871zm6.152.087a11.03 11.03 0 0 0-1.394.754v3.338h-1.357v-5.177h1.142l.086.572a6.333 6.333 0 0 1 1.416-.683zm5.417 2.37c0 1.145-.532 1.828-1.784 1.828a7.648 7.648 0 0 1-1.435-.15v2.119l-1.354.202v-7.426h1.073l.131.43a2.951 2.951 0 0 1 1.707-.546c1.086 0 1.662.62 1.662 1.805zm-3.22.582c.395.087.794.133 1.196.141c.49 0 .675-.221.675-.69v-1.858c0-.427-.17-.663-.663-.663a1.927 1.927 0 0 0-1.24.469zm36.458 27.678v-21.926l3.903-.545v22.467zm-12.558-15.57v10.871c0 .837.354 1.239 1.238 1.239a10.804 10.804 0 0 0 4.08-1.302v-10.808h3.899v15.566H94.33l-.383-1.306a15.586 15.586 0 0 1-6.233 1.63c-2.589 0-3.515-1.819-3.515-4.605V112.11zM76.003 128a18.283 18.283 0 0 1-5.374-.896l.545-2.971c1.51.43 3.07.66 4.636.675c1.727 0 1.98-.387 1.98-1.566c0-.96-.19-1.445-2.714-2.053c-3.804-.927-4.254-1.885-4.254-4.888c0-3.133 1.381-4.505 5.816-4.505c1.574 0 3.142.184 4.672.543l-.387 3.098a26.445 26.445 0 0 0-4.28-.455c-1.694 0-1.981.384-1.981 1.343c0 1.238.098 1.345 2.209 1.889c4.333 1.152 4.758 1.729 4.758 4.92c.012 3.015-.927 4.865-5.626 4.865zm-11.924-.324V116.79c0-.836-.352-1.239-1.236-1.239a10.707 10.707 0 0 0-4.06 1.313v10.8h-3.901v-15.552h2.97l.383 1.313a15.603 15.603 0 0 1 6.235-1.63c2.588 0 3.515 1.82 3.515 4.602v11.28zm-18.631.323c-5.344 0-6.806-2.939-6.806-6.135v-3.933c0-3.196 1.43-6.136 6.806-6.136c5.373 0 6.774 2.939 6.774 6.136v3.933c0 3.196-1.44 6.135-6.774 6.135m0-12.882c-2.08 0-2.877.931-2.877 2.687v4.186c0 1.756.798 2.687 2.877 2.687c2.078 0 2.872-.931 2.872-2.687v-4.185c0-1.757-.798-2.687-2.872-2.687zm-21.994-2.876c0-3.899 2.266-6.192 7.576-6.192a24 24 0 0 1 5.784.707l-.445 3.485a31.27 31.27 0 0 0-5.212-.545c-2.783 0-3.678.96-3.678 3.232v8.195c0 2.264.895 3.223 3.677 3.223a31.598 31.598 0 0 0 5.212-.536l.446 3.48a24.03 24.03 0 0 1-5.784.706c-5.31 0-7.576-2.272-7.576-6.191zm0 0\\\"/><path fill=\\\"#e03875\\\" d=\\\"M94.271 25.72a3.16 3.16 0 0 1-2.924-1.946a3.156 3.156 0 0 1 .687-3.44a3.147 3.147 0 0 1 3.44-.683a3.151 3.151 0 0 1 1.946 2.92a3.151 3.151 0 0 1-3.149 3.149m-5.939 10.964a3.154 3.154 0 0 1-3.151-3.152a3.154 3.154 0 0 1 3.151-3.153a3.154 3.154 0 0 1 3.154 3.152a3.154 3.154 0 0 1-3.153 3.153zm9.404-.367a3.151 3.151 0 1 1 0-6.3a3.151 3.151 0 0 1 3.152 3.151a3.162 3.162 0 0 1-3.152 3.15zm-9.404 10.247a3.16 3.16 0 0 1-2.92-1.95a3.155 3.155 0 0 1 4.124-4.122a3.155 3.155 0 0 1 1.95 2.92a3.159 3.159 0 0 1-3.153 3.152zm9.404.36a3.157 3.157 0 0 1-3.177-3.13a3.151 3.151 0 1 1 6.301-.047a3.166 3.166 0 0 1-3.125 3.176zm-34.848-.127a8.33 8.33 0 0 1-8.333-8.333a8.33 8.33 0 0 1 8.336-8.33c4.6 0 8.33 3.737 8.326 8.338a8.331 8.331 0 0 1-8.333 8.325zM94.09 57.7a3.151 3.151 0 0 1-3.145-3.156a3.151 3.151 0 1 1 6.301.004a3.155 3.155 0 0 1-3.156 3.151zM63.128 76.941c-17.215.008-32.339-11.426-37.03-27.99c-4.688-16.564 2.197-34.224 16.86-43.248c14.662-9.02 33.535-7.201 46.203 4.454l-9.099 9.553c-10.112-9.127-25.642-8.597-35.107 1.2c-9.467 9.792-9.467 25.33 0 35.127c9.464 9.794 24.995 10.327 35.107 1.196l9.1 9.553a38.372 38.372 0 0 1-26.034 10.156Zm0 0\\\"/>\"\n\t\t},\n\t\t\"contao\": {\n\t\t\t\"body\": \"<path fill=\\\"#f37a00\\\" d=\\\"M13.852 74.892c3.414 15.793 6.253 30.828 16.199 41.648H11.082c-4.434 0-8.035-3.558-8.062-7.968V18.677c.007-4.422 3.613-8.004 8.062-8.004h13.703a52.21 52.21 0 0 0-8.723 10.25C5.22 37.454 9.677 55.478 13.852 74.892m102.996-64.219H95.34c5.094 5.063 9.387 11.621 12.629 19.774l-32.7 6.863c-3.582-6.828-9.027-12.508-19.683-10.277c-5.879 1.238-9.774 4.515-11.504 8.105c-2.121 4.426-3.164 9.39 1.914 32.973C51.074 91.697 54.062 95.81 57.816 99c3.051 2.578 7.973 4.012 13.852 2.774c10.66-2.23 13.289-9.61 13.754-17.29l32.695-6.87c.774 16.824-4.465 29.87-13.707 38.894h12.438c4.437.004 8.043-3.559 8.07-7.973V18.677c-.008-4.426-3.621-8.008-8.07-8.004m0 0\\\"/>\"\n\t\t},\n\t\t\"contao-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f37a00\\\" d=\\\"M60.449 71.955a6.953 6.953 0 0 1-5.045-2.007c-1.889-1.847-1.839-4.133-1.839-7.286c0-3.156-.053-5.443 1.839-7.293a6.965 6.965 0 0 1 5.045-2.003c3.5 0 6.224 1.95 6.883 5.768h-3.716c-.367-1.463-1.314-2.59-3.152-2.59a3.063 3.063 0 0 0-2.337.943c-.708.778-.919 1.647-.919 5.167c0 3.517.218 4.382.92 5.156a3.07 3.07 0 0 0 2.336.95c1.838 0 2.785-1.13 3.152-2.593h3.716c-.659 3.834-3.413 5.788-6.883 5.788M78.44 70.31c-.839.874-2.233 1.644-4.256 1.644c-2.022 0-3.386-.774-4.228-1.644c-1.234-1.256-1.548-2.78-1.548-5.213c0-2.432.314-3.926 1.548-5.186c.842-.873 2.206-1.64 4.228-1.64c2.023 0 3.417.767 4.256 1.64c1.237 1.256 1.551 2.777 1.551 5.186c0 2.413-.314 3.953-1.547 5.21zm-2.654-8.446a2.161 2.161 0 0 0-1.602-.59a2.115 2.115 0 0 0-1.578.59c-.704.694-.785 1.847-.785 3.233c0 1.39.08 2.567.785 3.256a2.13 2.13 0 0 0 1.578.598a2.177 2.177 0 0 0 1.602-.598c.712-.693.789-1.873.789-3.256c0-1.383-.077-2.54-.786-3.233zm13.866 9.937v-8.09c0-1.824-1.18-2.436-2.26-2.436c-1.077 0-2.283.612-2.283 2.436v8.086h-3.417V58.422h3.34v1.233a4.72 4.72 0 0 1 3.413-1.383c1.368 0 2.47.426 3.233 1.18c1.107 1.069 1.39 2.33 1.39 3.796v8.55zm9.875 0c-2.785 0-3.969-1.927-3.969-3.83v-6.624h-1.432v-2.535h1.44V54.86c1.429 0 3.42-.736 3.42-.736v4.689h2.406v2.54h-2.406v6.411c0 .77.368 1.207 1.184 1.207h1.23v2.823zm10.713 0v-1.157c-.915.904-1.78 1.283-3.359 1.283c-1.578 0-2.677-.383-3.497-1.184a4.243 4.243 0 0 1-1.13-3.007c0-2.133 1.498-3.872 4.677-3.872h3.225v-.667c0-1.459-.728-2.106-2.543-2.106c-1.31 0-1.916.31-2.624 1.107l-2.187-2.08c1.34-1.44 2.654-1.847 4.94-1.847c3.835 0 5.83 1.59 5.83 4.723v8.807zm-.08-5.647h-2.697c-1.237 0-1.919.564-1.919 1.51c0 .946.632 1.54 1.97 1.54c.941 0 1.55-.073 2.152-.64c.364-.337.494-.87.494-1.697zm15.007 4.156c-.838.874-2.233 1.644-4.255 1.644c-2.026 0-3.39-.77-4.229-1.644c-1.237-1.256-1.547-2.777-1.547-5.209c0-2.432.31-3.93 1.547-5.19c.839-.87 2.206-1.636 4.229-1.636c2.022 0 3.417.766 4.255 1.636c1.234 1.26 1.548 2.78 1.548 5.19c0 2.41-.318 3.95-1.551 5.206zm-2.65-8.446a2.207 2.207 0 0 0-1.605-.59a2.13 2.13 0 0 0-1.574.59c-.713.698-.793 1.847-.793 3.237c0 1.39.08 2.563.793 3.256c.413.406.984.62 1.574.594a2.195 2.195 0 0 0 1.605-.594c.705-.693.785-1.873.785-3.256c0-1.383-.096-2.543-.793-3.237zM4.995 66.199c1.077 4.985 1.974 9.732 5.113 13.147H4.12a2.538 2.538 0 0 1-2.545-2.515V48.454a2.538 2.538 0 0 1 2.545-2.527h4.326a16.481 16.481 0 0 0-2.753 3.236C2.27 54.38 3.677 60.07 4.995 66.199m32.512-20.272h-6.789c1.608 1.598 2.963 3.669 3.987 6.242l-10.322 2.167c-1.131-2.156-2.85-3.949-6.214-3.245c-1.856.391-3.085 1.426-3.631 2.559c-.67 1.397-1 2.964.604 10.408c1.603 7.446 2.546 8.744 3.731 9.752c.963.813 2.517 1.266 4.373.875c3.365-.704 4.195-3.033 4.341-5.458l10.321-2.169c.244 5.311-1.41 9.43-4.327 12.278h3.926a2.538 2.538 0 0 0 2.548-2.516V48.454a2.539 2.539 0 0 0-2.548-2.527m0 0\\\"/>\"\n\t\t},\n\t\t\"corejs\": {\n\t\t\t\"body\": \"<path d=\\\"m56.053 2.71l.049 5.22l3.642 1.89v.395c.001.573.153 1.029.524 1.58c.18.269.328.5.328.516c0 .016-.608.044-1.35.062l-1.346.033l-.69.367c-2.824 1.507-2.884 5.573-.1 7.055c.567.304.584.321.36.414c-1.013.42-2.129.991-2.775 1.422c-1.52 1.012-2.928 2.717-3.521 4.262c-.15.39-.302.7-.338.69c-.035-.014-1.3-.853-2.81-1.868l-2.745-1.844l-.01-10.64H43.76v5.746l.002 5.746l3.353 2.262c2.877 1.938 3.35 2.29 3.31 2.459c-.023.109-.089.492-.144.855c-.102.665-.207.839-.468.762a491.32 491.32 0 0 0-3.405-.856a1148.11 1148.11 0 0 1-3.603-.9c-.28-.073-.703-.492-2.412-2.381c-2.736-3.023-2.72-3.006-2.96-3.006c-.256 0-1.052.72-1.052.953c0 .094.692.93 1.537 1.86a685.26 685.26 0 0 1 2.574 2.841c.674.75 1.137 1.188 1.324 1.247c.158.05 2.077.538 4.264 1.087l3.977.998h13.185V20.02h1.516v11.918h13.185l3.977-.999a310.904 310.904 0 0 0 4.264-1.087c.187-.06.65-.497 1.324-1.247c.57-.635 1.729-1.913 2.574-2.841c.845-.93 1.537-1.766 1.537-1.86c0-.233-.796-.953-1.053-.953c-.239 0-.223-.017-2.959 3.006c-1.709 1.889-2.132 2.308-2.412 2.38c-.187.05-1.808.454-3.603.901c-1.795.447-3.326.833-3.404.856c-.261.077-.367-.097-.47-.762a20.32 20.32 0 0 0-.144-.855c-.04-.17.434-.521 3.31-2.46l3.354-2.261l.002-5.746v-5.746h-1.51l-.01 10.64l-2.744 1.844a173.915 173.915 0 0 1-2.81 1.867c-.037.011-.189-.298-.339-.69c-.593-1.544-2.001-3.249-3.521-4.26c-.646-.432-1.762-1.003-2.776-1.423c-.223-.093-.206-.11.362-.414c2.783-1.482 2.723-5.548-.102-7.055l-.69-.367l-1.345-.033c-.742-.018-1.35-.046-1.35-.062s.148-.247.328-.516c.371-.551.523-1.007.524-1.58V9.82l3.642-1.89l.05-5.22h-1.23l-.05 4.472l-1.398.72c-1.337.688-1.401.71-1.502.53c-.23-.41-.99-1.03-1.63-1.332A4.945 4.945 0 0 0 64 6.613a4.945 4.945 0 0 0-2.139.487c-.64.303-1.399.923-1.629 1.332c-.1.18-.165.158-1.502-.53l-1.398-.72l-.05-4.471h-1.23zM49.53 33.45l-.338.671c-.29.578-.367.663-.545.62c-.567-.139-5.635-1.102-5.794-1.102c-.19 0-7.891 7.62-7.891 7.806c0 .053.233.33.52.614l.523.513l7.326-7.295l2.389.47c1.434.28 2.387.511 2.386.575c0 .058-1.044 2.3-2.318 4.979l-2.314 4.869L64 66.65l20.525-20.48l-2.314-4.87c-1.274-2.678-2.318-4.92-2.318-4.978c-.001-.064.952-.295 2.386-.576l2.389-.469l7.326 7.295l.524-.513c.286-.283.52-.56.52-.614c0-.187-7.703-7.806-7.892-7.806c-.159 0-5.227.963-5.794 1.101c-.178.044-.254-.04-.545-.619l-.338-.672h-2.883c-1.956 0-2.885.033-2.885.1c0 .055.64 2.585 1.42 5.623c.78 3.038 1.418 5.56 1.418 5.605c0 .121-1.321.443-1.414.344c-.043-.047-.704-2.532-1.467-5.523l-1.478-5.793l-.092-.356h-6.33v28.567h-1.516V33.449h-6.33l-.092.356l-1.478 5.793c-.763 2.99-1.424 5.476-1.467 5.523c-.093.1-1.414-.223-1.414-.344c0-.045.638-2.567 1.418-5.605c.78-3.038 1.42-5.568 1.42-5.623c0-.067-.929-.1-2.885-.1h-2.883zm-18.21 1.982L2.001 64.752l1.463 1.465l1.465 1.467l2.324-2.317l15.545 15.559c12.857 12.87 15.59 15.565 15.816 15.582c.15.013 4.796-.245 10.322-.569l10.051-.59l1.985 1.99l-15.604 15.604l-1.408-1.406c-.774-.774-1.456-1.388-1.512-1.369c-.14.048-6.433 4.658-6.44 4.717c-.002.027 2.335 2.387 5.196 5.248c4.914 4.913 5.211 5.19 5.338 5.012c.074-.103 1.155-1.57 2.404-3.262l2.272-3.074l-1.436-1.444l-1.433-1.441L64 100.274l15.65 15.65l-1.433 1.441l-1.436 1.444l2.272 3.074c1.249 1.692 2.33 3.159 2.404 3.262c.127.178.424-.1 5.338-5.012c2.86-2.861 5.198-5.221 5.195-5.248c-.006-.06-6.3-4.669-6.44-4.717c-.055-.019-.737.595-1.51 1.37l-1.41 1.405L67.028 97.34l1.985-1.99l10.05.59c5.527.323 10.173.58 10.323.568c.226-.017 2.96-2.712 15.816-15.582l15.545-15.559l2.324 2.317l1.465-1.467l1.463-1.465l-29.318-29.32l-2.934 2.931l1.16 1.158l1.158 1.159l-31.12 31.12l.603 10.263l.601 10.26l-.996 1.009c-.586.596-1.036.981-1.152.988c-.116-.007-.566-.392-1.152-.988l-.996-1.01l.601-10.26l.604-10.261L31.936 40.68l1.158-1.159l1.16-1.158zM30.196 46.32l5.946 5.948l-17.307 17.31l-6.055-6.064l5.627-5.577a3260.8 3260.8 0 0 1 8.71-8.595l3.08-3.022zm67.606 0l3.08 3.022a3260.8 3260.8 0 0 1 8.709 8.596l5.627 5.576l-6.055 6.064l-17.307-17.31zm-58.018 9.588l9.41 9.412l-7.183 7.188l-1.52-1.512l-2.926 2.932l1.508 1.515l-7.185 7.188l-9.412-9.412l8.654-8.655zm48.43 0l8.654 8.656l8.654 8.655l-9.412 9.412l-7.185-7.188l1.508-1.515l-2.926-2.932l-1.52 1.512l-7.183-7.188zM52.885 69.01l4.885 4.885l-.385 6.662a1639.48 1639.48 0 0 0-.387 6.802c0 .078-2.54-2.4-5.648-5.51l-5.653-5.65l3.594-3.595zm22.23 0l3.594 3.594l3.594 3.595l-5.653 5.65c-3.108 3.11-5.648 5.588-5.648 5.51c0-.078-.175-3.138-.387-6.802l-.385-6.662zm-32.35 10.12l5.653 5.651c5.176 5.173 5.633 5.655 5.393 5.686c-.402.053-12.005.745-12.702.758l-.615.011l-2.459-2.459l-2.457-2.459l7.188-7.187zm42.47 0l7.187 7.188l-2.457 2.46l-2.46 2.458l-.614-.011c-.697-.013-12.3-.705-12.702-.758c-.24-.031.217-.513 5.393-5.686l5.652-5.65z\\\"/>\"\n\t\t},\n\t\t\"corejs-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M11.572 73.785a44.698 44.698 0 0 1-.904-.917c.04-.033 1.08-.793 1.108-.81c.034-.021.049-.01.285.226l.248.248l2.737-2.736l-.349-.35l-1.762.105c-.968.056-1.783.102-1.809.099c-.04-.002-.52-.475-2.774-2.731L5.627 64.19l-.407.406l-.514-.514l5.14-5.14l.514.513l-.405.407l5.455 5.455l-.105 1.8l-.106 1.8l.173.173c.094.097.186.177.202.178c.018.002.099-.07.205-.175l.174-.177l-.105-1.8l-.106-1.799l5.456-5.455l-.406-.407l.513-.513l5.14 5.14l-.512.514l-.408-.406l-2.725 2.727c-2.254 2.257-2.734 2.73-2.773 2.733c-.027.002-.84-.044-1.81-.1l-1.762-.104l-.348.35l2.737 2.736l.246-.247c.136-.136.256-.244.265-.24c.024.007 1.128.817 1.129.826c0 .004-.409.419-.911.92c-.861.862-.914.91-.935.879l-.422-.571l-.398-.54l.502-.505l-2.744-2.745l-2.744 2.745l.503.506l-.417.567c-.23.312-.422.567-.427.567c-.004 0-.418-.409-.919-.91zm1.112-5.126a85.96 85.96 0 0 0 1.145-.07c.003-.003-.44-.45-.985-.995l-.99-.99l-1.26 1.26l.43.431c.352.352.44.431.476.431c.025 0 .558-.03 1.185-.067zm7.444-.364l.431-.431l-1.26-1.26l-.991.99c-.908.908-.987.992-.945.997c.07.01 2.105.131 2.227.133l.108.002zm-5.712-1.425l.069-1.184l-.857-.857l-1.26 1.26l.985.987c.543.542.988.984.99.982c.002-.002.034-.537.072-1.188zm3.74-1.41l-.63-.63l-.857.856l.067 1.168l.068 1.192c0 .014.445-.42.99-.965l.991-.99zm-7.082.364l-.132-.133l.512-.513l.267.265l1.26-1.26l-1.65-1.65l-3.035 3.034l1.65 1.65l1.26-1.26zm10.265-1.774l-1.517-1.517l-1.65 1.65l1.26 1.26l.266-.265l.512.514l-.264.265l1.26 1.26l1.65-1.65zM10.17 61.372l-.522-.52l-.54.529c-.297.291-.984.97-1.526 1.507l-.987.978l1.062 1.063l3.034-3.035zm13.398 1.516a564.66 564.66 0 0 0-1.526-1.506l-.541-.53l-1.043 1.043l3.035 3.033l1.061-1.063zm32.315 4.826a2.881 2.881 0 0 1-1.014-.298a2.717 2.717 0 0 1-.73-.518a2.719 2.719 0 0 1-.638-.863c-.214-.443-.298-.847-.299-1.433c0-.593.1-1.034.342-1.496a2.717 2.717 0 0 1 .537-.714c.31-.31.594-.506.945-.654c.571-.24 1.286-.305 1.94-.173a3.037 3.037 0 0 1 2.09 1.644c.201.428.286.837.286 1.397c.002.933-.275 1.64-.873 2.24a2.943 2.943 0 0 1-1.626.846a5.593 5.593 0 0 1-.96.022m21.849-4.536a.398.398 0 0 1-.213-.254c-.044-.147-.007-.265.153-.482a2.41 2.41 0 0 1 1.224-.894c.296-.095.502-.123.914-.124c.28 0 .403.007.531.03c.45.08.77.223 1.067.474c.236.2.544.623.584.803a.4.4 0 0 1-.216.444l-.089.047H77.82zM30.75 64V49.44h95.918v29.121H30.75zm70.747 10.414c1.155-.116 2.058-.619 2.621-1.46c.268-.401.45-.873.55-1.425c.09-.484.085-.214.085-6.368v-5.729l-.04-.079a.519.519 0 0 0-.107-.137c-.128-.11-.113-.109-1.347-.104c-1.09.005-1.11.005-1.185.04a.437.437 0 0 0-.222.235c-.023.069-.026.63-.026 5.566c0 3.632-.006 5.542-.017 5.64c-.044.392-.148.64-.346.839c-.259.258-.617.362-1.171.34a2.695 2.695 0 0 1-1.046-.246a.45.45 0 0 0-.23-.053a.358.358 0 0 0-.307.133c-.103.118-.1.079-.1 1.146c0 1.087-.003 1.043.118 1.164c.18.18 1.059.433 1.723.497c.21.02.85.02 1.047 0zm-56.71-4.053c.773-.083 1.65-.296 2.497-.606c.554-.203.967-.39 1.048-.475a.37.37 0 0 0 .096-.217c0-.065-.457-1.721-.499-1.811a.473.473 0 0 0-.224-.243c-.123-.06-.213-.05-.422.047a7.77 7.77 0 0 1-2.03.628a5.414 5.414 0 0 1-1.054.033a3.225 3.225 0 0 1-1.959-.93c-.594-.593-.877-1.295-.877-2.181c0-.864.28-1.56.86-2.144c.51-.512 1.169-.829 1.943-.935a4.89 4.89 0 0 1 1.078.017a7.211 7.211 0 0 1 1.865.548c.17.079.213.092.294.092c.078 0 .108-.01.166-.05c.136-.095.167-.16.513-1.037c.18-.46.333-.859.338-.886c.027-.136-.079-.29-.256-.38a11.29 11.29 0 0 0-.88-.354c-.884-.321-1.788-.541-2.536-.617a7.942 7.942 0 0 0-1.14.008a5.87 5.87 0 0 0-1.79.473a6.15 6.15 0 0 0-1.807 1.25c-.876.877-1.36 1.88-1.537 3.186c-.03.224-.036.348-.037.788c0 .549.01.706.082 1.125c.261 1.508 1.06 2.746 2.375 3.68a5.574 5.574 0 0 0 2.82 1.014c.252.02.777.007 1.073-.023m35.683.023c1.42-.094 2.442-.362 3.488-.911c.331-.175.41-.235.467-.357l.038-.082v-.929c0-.733-.006-.942-.023-.99a.43.43 0 0 0-.188-.224c-.066-.04-.098-.047-.195-.047c-.108 0-.132.008-.363.115c-.961.44-1.927.7-2.888.773a3.743 3.743 0 0 1-2.338-.598a2.722 2.722 0 0 1-.942-.994a3.476 3.476 0 0 1-.202-.487l-.011-.044h3.738c4.199 0 3.846.01 3.983-.126c.126-.126.132-.163.12-.819c-.011-.704-.039-.99-.145-1.516a5.527 5.527 0 0 0-.488-1.427c-.378-.769-.89-1.375-1.624-1.923c-.699-.521-1.368-.792-2.273-.915a9.05 9.05 0 0 0-1.384-.01c-1.309.15-2.338.618-3.222 1.464c-1.034.986-1.614 2.266-1.72 3.797c-.104 1.522.286 2.912 1.123 3.99c.514.659 1.27 1.268 2.077 1.673c.935.47 1.898.66 2.972.588zm-23.277-.046c1.371-.189 2.507-.74 3.424-1.662c.911-.915 1.446-2.009 1.619-3.316a9.657 9.657 0 0 0 .008-1.442c-.15-1.198-.571-2.16-1.321-3.036c-1.148-1.335-2.749-2.04-4.637-2.039c-1.69 0-3.131.543-4.235 1.595c-1.222 1.165-1.825 2.634-1.777 4.333c.036 1.327.425 2.417 1.218 3.416c.19.24.677.73.909.918c.849.68 1.833 1.088 2.967 1.23c.384.047.362.046.994.041c.479-.003.625-.01.83-.039zm57.053.007c1.535-.184 2.68-.758 3.37-1.688c.131-.178.32-.549.393-.772a3.282 3.282 0 0 0-.01-1.985c-.382-1.187-1.505-2.026-3.33-2.49a35.839 35.839 0 0 0-.829-.182a10.86 10.86 0 0 1-1.102-.274c-.474-.146-.566-.184-.729-.305c-.148-.112-.222-.23-.231-.364c-.017-.269.155-.478.527-.642c.424-.187.873-.236 1.484-.162c1.1.13 2.18.427 3.077.846c.258.12.374.14.506.09a.49.49 0 0 0 .237-.253c.014-.048.02-.34.02-1.062c0-.847-.004-1.006-.026-1.066c-.056-.161-.13-.211-.592-.403c-1.06-.442-2.107-.705-3.08-.775a9.98 9.98 0 0 0-1.343.026c-1.53.155-2.654.699-3.293 1.592c-.428.6-.603 1.433-.478 2.28c.069.469.213.862.449 1.218c.132.2.488.564.699.713c.53.377 1.215.68 2.104.937c.125.036.635.167 1.132.292c1.294.325 1.592.43 1.806.638c.109.104.151.2.151.337c0 .169-.05.278-.181.411c-.292.291-.695.394-1.88.48c-.666.048-1.492-.118-2.417-.485a17.591 17.591 0 0 1-1.323-.635c-.185-.1-.265-.113-.407-.07a.496.496 0 0 0-.256.255c-.015.05-.02.34-.02 1.11v1.044l.04.084c.046.098.13.173.247.22c1.274.498 2.274.803 3.195.97c.19.034.334.055.713.1c.15.017 1.164-.005 1.377-.03m-46.324-.27a.577.577 0 0 0 .128-.102c.119-.133.111.108.111-3.36v-3.118l.082-.136a2.55 2.55 0 0 1 .404-.532a3.524 3.524 0 0 1 2.126-1.05c.194-.024.598-.024.835 0c.16.016.203.015.274-.006a.397.397 0 0 0 .249-.212l.043-.085V59.2l-.04-.084a.396.396 0 0 0-.235-.212c-.308-.099-1-.063-1.525.08c-.724.2-1.595.69-2.1 1.181l-.11.109l-.006-.546c-.006-.623-.008-.633-.15-.764c-.134-.124-.11-.12-1.323-.12c-1.194 0-1.178-.003-1.309.11a.513.513 0 0 0-.11.145l-.04.084v10.614l.04.084a.473.473 0 0 0 .103.137c.123.103.1.1 1.349.097c1.132-.003 1.137-.003 1.204-.04m28.31-4.773a.402.402 0 0 0 .213-.192l.05-.089v-1.037c0-.952-.003-1.042-.03-1.098a.436.436 0 0 0-.215-.214l-.087-.04h-6.22l-.078.04a.448.448 0 0 0-.22.258c-.036.122-.036 1.987 0 2.108c.033.11.113.202.215.25l.084.04h3.114c2.758 0 3.12-.003 3.175-.026zm7.508-7.444a1.74 1.74 0 0 0 1.232-1.235c.061-.236.07-.593.022-.83a1.69 1.69 0 0 0-.394-.805c-.385-.447-.9-.653-1.506-.603a1.748 1.748 0 0 0-1.35.852a1.926 1.926 0 0 0-.047 1.743c.24.487.67.801 1.247.912c.193.036.593.02.795-.034zm-91.332.29c-.388-.098-.72-.183-.739-.19a1.568 1.568 0 0 1-.216-.212a65.317 65.317 0 0 0-.451-.5c-.149-.163-.269-.308-.269-.325c0-.04.139-.167.184-.167c.043 0 .04-.003.519.527c.3.331.374.404.423.418l.631.157l.598.15c.045.014.064-.017.082-.133a3.406 3.406 0 0 1 .025-.15c.007-.03-.076-.091-.58-.432l-.588-.396V54.88h.265v1.866l.483.323c.265.178.486.325.492.328a.392.392 0 0 0 .059-.122c.104-.27.351-.57.617-.747a3.22 3.22 0 0 1 .487-.249c.04-.016.037-.02-.063-.073c-.488-.26-.478-.972.017-1.236l.121-.065l.237-.006c.13-.003.236-.008.236-.01a.883.883 0 0 0-.057-.091a.463.463 0 0 1-.092-.277v-.069l-.639-.331l-.009-.916h.217l.008.785l.245.126c.234.12.246.125.264.092a.762.762 0 0 1 .285-.233a.866.866 0 0 1 .75 0a.77.77 0 0 1 .286.233c.018.033.03.029.264-.092l.244-.126l.01-.785h.214l-.008.916l-.639.331v.07a.463.463 0 0 1-.091.276a1.103 1.103 0 0 0-.058.09c0 .003.106.008.236.011l.236.006l.121.065c.495.264.506.977.018 1.236c-.1.054-.102.057-.063.073c.177.074.373.174.486.25c.266.177.514.476.618.747a.394.394 0 0 0 .059.12c.006-.001.228-.15.493-.327l.481-.323v-.933l.001-.933h.266v2.014l-.589.397c-.504.34-.586.402-.58.431l.025.15c.018.117.036.149.083.134l.596-.15l.632-.157c.05-.013.123-.087.424-.418c.479-.53.476-.527.518-.527c.045 0 .184.127.184.167c0 .017-.12.163-.27.326l-.45.498c-.118.132-.2.209-.233.219c-.027.01-.364.094-.748.19l-.697.176h-2.312v-2.09h-.266v2.09l-2.329-.002zm1.364 4.477l-1.796-1.8l.407-.853c.223-.47.406-.863.407-.873c0-.011-.168-.052-.42-.102l-.418-.082l-1.285 1.28l-.091-.09a.482.482 0 0 1-.092-.109c0-.032 1.35-1.368 1.384-1.368c.028 0 .917.17 1.016.193c.032.008.044-.007.095-.108l.06-.118h.506c.342 0 .504.005.504.017c0 .01-.112.453-.249.987s-.248.974-.248.982c0 .022.232.078.248.06c.007-.008.123-.443.256-.969l.26-1.014l.017-.063h1.11v5.008h.265v-5.008h1.11l.016.063l.26 1.014c.133.525.25.961.256.97c.017.017.248-.04.248-.061c0-.008-.111-.45-.248-.982a61.632 61.632 0 0 1-.249-.987c0-.012.163-.017.506-.017h.505l.06.118c.05.101.064.116.095.108a35.03 35.03 0 0 1 1.015-.193c.034 0 1.384 1.336 1.384 1.368c0 .01-.04.06-.091.109l-.092.09l-1.284-1.28l-.419.083c-.252.05-.419.089-.419.1c0 .01.183.404.407.874l.406.853l-3.607 3.6z\\\"/>\"\n\t\t},\n\t\t\"cosmosdb\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path fill=\\\"#59B3D8\\\" d=\\\"M105.825 58.635c5.491 22.449-8.458 45.049-31.156 50.48c-22.695 5.429-45.547-8.365-51.036-30.815c-5.492-22.449 8.458-45.049 31.153-50.48l.078-.018c22.588-5.46 45.374 8.223 50.896 30.565z\\\"/><path fill=\\\"#B6DEEC\\\" d=\\\"M58.747 85.194c-.013-6.137-5.055-11.1-11.259-11.085h-1.701c1.442-5.932-2.248-11.895-8.246-13.322a11.182 11.182 0 0 0-2.703-.306H23.162c-2.525 12.851 1.246 26.127 10.174 35.796h14.149c6.205.015 11.247-4.948 11.262-11.083M72.69 39.233c0 .649.085 1.296.255 1.925h-4.861c-6.445 0-11.667 5.168-11.667 11.543c0 6.372 5.222 11.54 11.667 11.54h38.645c-1.258-13.787-9.486-26.01-21.862-32.477h-4.605c-4.177-.002-7.562 3.339-7.572 7.469m34.043 33.587H83.679c-5.259-.013-9.531 4.187-9.552 9.385a9.241 9.241 0 0 0 1.148 4.471c-5.003 1.546-7.792 6.814-6.228 11.765c1.242 3.934 4.938 6.607 9.106 6.589h6.427c12.314-6.454 20.607-18.51 22.153-32.21\\\"/><path fill=\\\"#B7D332\\\" d=\\\"M17.382 40.624a1.286 1.286 0 0 1-1.3-1.275v-.003c-.021-8.064-6.637-14.587-14.79-14.579A1.286 1.286 0 0 1 0 23.489c0-.703.579-1.275 1.292-1.275c8.143.007 14.756-6.503 14.79-14.554a1.29 1.29 0 0 1 1.356-1.227c.672.028 1.21.56 1.241 1.227c.021 8.061 6.639 14.584 14.792 14.577c.713 0 1.292.572 1.292 1.277c0 .706-.579 1.279-1.292 1.279c-8.148-.011-14.766 6.507-14.792 14.566c-.01.7-.589 1.265-1.297 1.265\\\"/><path fill=\\\"#0072C5\\\" d=\\\"M108.6 122.793a.764.764 0 0 1-.768-.759c-.018-4.821-3.98-8.719-8.854-8.709a.762.762 0 0 1-.77-.756c0-.419.342-.759.765-.759h.005c4.872.002 8.826-3.893 8.844-8.711a.77.77 0 0 1 .778-.767a.77.77 0 0 1 .775.767c.018 4.818 3.972 8.713 8.843 8.711a.761.761 0 0 1 .77.756a.759.759 0 0 1-.765.759h-.005c-4.871-.002-8.828 3.893-8.843 8.714a.764.764 0 0 1-.773.754z\\\"/><path fill=\\\"#000\\\" d=\\\"M126.317 30.84c-4.035-6.539-14.175-8.049-29.306-4.384a121.688 121.688 0 0 0-13.893 4.384a42.829 42.829 0 0 1 8.187 5.173c2.574-.836 5.101-1.59 7.512-2.173a53.33 53.33 0 0 1 12.335-1.727c4.957 0 7.691 1.211 8.606 2.686c1.496 2.423.119 8.816-8.681 18.871c-1.566 1.789-3.326 3.601-5.179 5.423a175.936 175.936 0 0 1-31.843 24.149a176.032 176.032 0 0 1-36.329 17.105c-15.317 4.936-25.773 4.836-28.119 1.048c-2.342-3.788 2.344-13.048 13.776-24.29a41.005 41.005 0 0 1-.938-9.735c-18.2 16.271-24.09 30.365-19.387 37.981c2.463 3.985 7.844 6.229 15.705 6.229a80.772 80.772 0 0 0 27.183-5.932a194.648 194.648 0 0 0 32.11-15.926a193.405 193.405 0 0 0 28.884-21.148a118.565 118.565 0 0 0 9.947-9.941c10.207-11.655 13.466-21.268 9.43-27.793\\\"/></g>\"\n\t\t},\n\t\t\"cosmosdb-wordmark\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconCosmosdbWordmark0\\\"><path d=\\\"M18.121 4H44v25H18.121Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconCosmosdbWordmark1\\\"><path d=\\\"M19 17h90.648v63H19Zm0 0\\\"/></clipPath></defs><path fill=\\\"#59b3d8\\\" fill-rule=\\\"evenodd\\\" d=\\\"M93.832 41.523c3.914 15.899-6.031 31.903-22.223 35.75c-16.187 3.844-32.488-5.921-36.402-21.824c-3.914-15.898 6.031-31.902 22.223-35.75l.054-.008c16.11-3.867 32.364 5.82 36.301 21.641Zm0 0\\\"/><path fill=\\\"#b6deec\\\" fill-rule=\\\"evenodd\\\" d=\\\"M60.254 60.332c-.008-4.344-3.606-7.86-8.031-7.852h-1.215c1.031-4.199-1.602-8.421-5.88-9.433a8.032 8.032 0 0 0-1.929-.215h-8.328c-1.8 9.102.887 18.504 7.258 25.348h10.094c4.422.011 8.02-3.5 8.03-7.848Zm9.945-32.547c0 .461.059.918.18 1.363h-3.465c-4.598 0-8.324 3.657-8.324 8.176c0 4.512 3.726 8.172 8.324 8.172h27.563c-.899-9.766-6.766-18.422-15.594-23h-3.285c-2.977-.004-5.395 2.363-5.399 5.29ZM94.48 51.57H78.035c-3.75-.011-6.797 2.965-6.812 6.649a6.5 6.5 0 0 0 .82 3.164c-3.57 1.097-5.559 4.828-4.445 8.332c.886 2.785 3.523 4.68 6.496 4.668h4.586c8.78-4.574 14.699-13.113 15.8-22.813m0 0\\\"/><g clip-path=\\\"url(#deviconCosmosdbWordmark0)\\\"><path fill=\\\"#b7d332\\\" fill-rule=\\\"evenodd\\\" d=\\\"M30.75 28.77a.919.919 0 0 1-.93-.903v-.004c-.011-5.71-4.73-10.332-10.547-10.324a.912.912 0 0 1-.921-.902c0-.5.414-.907.921-.907c5.809.004 10.524-4.605 10.547-10.304a.923.923 0 0 1 .965-.871h.004c.48.02.863.398.887.87c.015 5.708 4.734 10.325 10.547 10.321c.511 0 .922.406.922.906s-.41.907-.922.907c-5.809-.008-10.532 4.605-10.547 10.312a.92.92 0 0 1-.926.899m0 0\\\"/></g><path fill=\\\"#0072c5\\\" fill-rule=\\\"evenodd\\\" d=\\\"M95.813 86.96a.548.548 0 0 1-.551-.538c-.012-3.414-2.84-6.172-6.313-6.168a.541.541 0 0 1-.55-.531v-.004a.54.54 0 0 1 .546-.535h.004c3.473 0 6.293-2.758 6.309-6.172c0-.301.246-.543.55-.543h.004c.301 0 .551.242.551.543c.012 3.414 2.836 6.172 6.309 6.172c.3-.004.543.234.55.53v.005a.543.543 0 0 1-.542.535h-.008c-3.473 0-6.297 2.758-6.309 6.172a.544.544 0 0 1-.55.535Zm0 0\\\"/><g clip-path=\\\"url(#deviconCosmosdbWordmark1)\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M108.45 21.84c-2.88-4.63-10.114-5.7-20.907-3.106a87.923 87.923 0 0 0-9.906 3.106a30.67 30.67 0 0 1 5.84 3.664c1.832-.59 3.636-1.129 5.355-1.54a38.454 38.454 0 0 1 8.8-1.222c3.536 0 5.485.86 6.138 1.903c1.066 1.714.085 6.242-6.192 13.363c-1.117 1.265-2.371 2.55-3.691 3.84a125.468 125.468 0 0 1-22.715 17.101a126.108 126.108 0 0 1-25.914 12.117c-10.922 3.493-18.38 3.422-20.055.743c-1.672-2.684 1.672-9.243 9.828-17.204a28.822 28.822 0 0 1-.672-6.894C21.38 59.234 17.18 69.215 20.531 74.609c1.758 2.82 5.598 4.41 11.203 4.41a58.042 58.042 0 0 0 19.387-4.199a139.292 139.292 0 0 0 22.906-11.28A137.995 137.995 0 0 0 94.63 48.562a83.771 83.771 0 0 0 7.094-7.04c7.277-8.253 9.605-15.062 6.726-19.683Zm0 0\\\"/></g><path fill=\\\"#0c65c4\\\" fill-rule=\\\"evenodd\\\" d=\\\"M85.188 86.58c-.461 0-.867.086-1.215.258a2.632 2.613 0 0 0-.879.684a3.152 3.152 0 0 0-.547.996a4.34 4.31 0 0 0-.215 1.184h5.555c.024-.973-.195-1.739-.652-2.29c-.461-.554-1.14-.832-2.047-.832m-33.196-1.238h5.835a.66.66 0 0 1 .223.035a.43.43 0 0 1 .164.114a.565.565 0 0 1 .106.199c.027.086.043.191.043.316v.36c0 .105-.012.203-.024.293c-.015.09-.039.18-.07.261c-.027.086-.07.18-.125.278c-.05.097-.117.207-.192.324l-4.468 6.941h4.773c.063 0 .117.016.164.04c.051.027.09.07.125.132a.88.88 0 0 1 .086.238c.024.102.036.227.036.368c0 .14-.012.261-.036.367c-.023.098-.047.18-.078.246a.277.277 0 0 1-.125.133a.371.371 0 0 1-.172.039h-6.266a.53.53 0 0 1-.39-.156c-.102-.106-.153-.282-.153-.528v-.383a1.496 1.496 0 0 1 .215-.793c.051-.093.117-.199.192-.32l4.492-6.941H51.99c-.12 0-.214-.059-.289-.184c-.07-.125-.105-.324-.105-.602c0-.132.008-.254.02-.355a.73.73 0 0 1 .077-.246a.271.271 0 0 1 .122-.133a.366.366 0 0 1 .175-.043Zm10.238-.055c.184 0 .332.004.453.016a.843.843 0 0 1 .29.07c.07.036.12.07.152.11a.25.25 0 0 1 .043.152v5.887c0 .594.046 1.066.132 1.422c.086.355.22.656.395.91c.18.25.402.445.676.582c.27.136.586.207.95.207c.468 0 .933-.16 1.394-.492c.464-.332.957-.813 1.48-1.45v-7.066c0-.059.008-.11.04-.152a.361.361 0 0 1 .152-.11a.87.87 0 0 1 .285-.07c.117-.012.273-.016.46-.016c.18 0 .333.004.45.016a.775.775 0 0 1 .285.07c.067.036.117.07.152.11a.226.226 0 0 1 .051.152v10.11a.26.26 0 0 1-.039.152a.352.352 0 0 1-.14.11c-.07.027-.157.05-.266.062c-.11.02-.242.023-.403.023a2.56 2.56 0 0 1-.421-.023a.886.886 0 0 1-.262-.063c-.066-.035-.11-.066-.133-.11a.344.342 0 0 1-.031-.151v-1.337c-.582.637-1.152 1.102-1.719 1.395c-.57.29-1.14.438-1.723.438c-.675 0-1.25-.114-1.715-.34a2.97 2.97 0 0 1-1.12-.914a3.582 3.582 0 0 1-.618-1.348c-.125-.512-.187-1.137-.187-1.871v-6.133c0-.059.011-.11.039-.152a.361.361 0 0 1 .152-.11a.897.897 0 0 1 .297-.07a4.7 4.7 0 0 1 .45-.016m23.056-.156c.797 0 1.48.13 2.043.38a3.87 3.87 0 0 1 1.383 1.03c.363.43.629.938.8 1.516c.168.578.254 1.2.254 1.86v.335c0 .293-.074.5-.222.625a.754.749 0 0 1-.504.184h-6.708c0 .562.055 1.066.172 1.516c.114.453.301.836.567 1.156c.266.324.613.57 1.035.742c.426.176.945.258 1.555.258c.488 0 .918-.04 1.297-.117c.382-.079.71-.168.984-.262a9.315 9.248 0 0 0 .68-.266c.18-.078.316-.117.406-.117a.23.23 0 0 1 .14.04a.241.241 0 0 1 .098.116a.83.83 0 0 1 .051.22a2.826 2.826 0 0 1 .008.597c-.008.07-.02.133-.028.187a.441.441 0 0 1-.058.153a.633.633 0 0 1-.102.132c-.043.04-.164.106-.367.2a4.957 4.957 0 0 1-.793.273a9.799 9.799 0 0 1-1.125.242a7.93 7.93 0 0 1-1.363.11c-.84 0-1.57-.117-2.2-.352a4.067 4.067 0 0 1-1.59-1.031c-.43-.457-.753-1.027-.972-1.719c-.219-.687-.328-1.488-.328-2.402c0-.871.113-1.649.34-2.344c.226-.692.55-1.281.976-1.762a4.245 4.245 0 0 1 1.547-1.113c.602-.258 1.277-.387 2.023-.387Zm-7.31 0a3.44 3.44 0 0 1 .723.078c.137.028.258.063.368.102a.66.66 0 0 1 .23.113c.047.035.078.07.094.105c.012.036.027.079.039.13c.012.054.02.128.023.23c0 .101.004.238.004.41c0 .164-.004.305-.011.414a.978.978 0 0 1-.047.266a.349.346 0 0 1-.086.144c-.031.035-.078.051-.137.051a.598.598 0 0 1-.222-.05a2.84 2.82 0 0 0-.294-.098a4.876 4.841 0 0 0-.367-.098a2.234 2.218 0 0 0-.441-.047c-.188 0-.375.04-.555.113c-.183.075-.371.2-.574.372c-.2.171-.406.402-.625.687c-.219.281-.461.633-.723 1.043v6.649a.26.26 0 0 1-.047.152a.383.383 0 0 1-.148.11c-.067.027-.16.05-.282.062c-.12.02-.273.023-.464.023c-.18 0-.332-.004-.453-.023a1.183 1.175 0 0 1-.29-.063c-.07-.035-.117-.066-.144-.11a.259.259 0 0 1-.04-.151v-10.11c0-.059.013-.11.032-.152a.32.32 0 0 1 .137-.11a.748.748 0 0 1 .262-.07a3.97 3.97 0 0 1 .418-.016c.164 0 .3.004.414.016a.671.671 0 0 1 .254.07a.41.41 0 0 1 .128.11a.276.276 0 0 1 .04.152v1.473c.28-.406.542-.735.789-.989c.242-.254.476-.456.695-.601a2.07 2.07 0 0 1 .648-.3a2.457 2.44 0 0 1 .653-.087m-34.243-1.707l-2.523 7.242h5.09l-2.555-7.242Zm.067-2c.242 0 .441.008.601.016a1.986 1.972 0 0 1 .383.062a.55.55 0 0 1 .227.13c.05.054.093.128.125.21l4.91 13.5c.058.164.09.297.094.399c.004.101-.024.175-.086.23a.527.527 0 0 1-.297.098a4.42 4.42 0 0 1-.559.023a7.32 7.32 0 0 1-.562-.015a1.24 1.24 0 0 1-.317-.055a.335.335 0 0 1-.16-.11a.929.922 0 0 1-.094-.167l-1.257-3.536h-6.086l-1.2 3.489a.532.532 0 0 1-.09.175a.458.458 0 0 1-.164.125a.881.881 0 0 1-.305.07c-.132.02-.304.024-.515.024a4.09 4.09 0 0 1-.54-.027a.542.542 0 0 1-.292-.106c-.055-.05-.082-.129-.078-.23a1.32 1.32 0 0 1 .097-.399l4.91-13.5a.518.518 0 0 1 .118-.203a.478.478 0 0 1 .215-.125c.094-.027.215-.05.363-.062a9.96 9.96 0 0 1 .559-.016m61.643 29.703v5.122h2.82a3.83 3.83 0 0 0 1.164-.157c.328-.105.622-.262.871-.464c.254-.208.45-.465.594-.77c.145-.309.215-.664.215-1.066c0-.438-.07-.82-.207-1.149a2.16 2.16 0 0 0-.613-.828a2.65 2.65 0 0 0-1.004-.516c-.403-.113-.906-.172-1.52-.172ZM72.14 108.5c-.559 0-1.036.097-1.434.293a2.56 2.541 0 0 0-.984.824a3.618 3.618 0 0 0-.579 1.265a6.368 6.368 0 0 0-.187 1.594c0 .555.05 1.074.152 1.563c.102.484.274.91.512 1.273c.242.363.563.652.969.867c.402.211.902.317 1.504.317c.547 0 1.023-.098 1.43-.29c.398-.195.734-.468.992-.82c.257-.355.445-.773.57-1.261c.121-.485.184-1.02.184-1.606a7.23 7.23 0 0 0-.157-1.547a3.792 3.792 0 0 0-.507-1.28a2.525 2.525 0 0 0-.961-.872c-.399-.211-.903-.32-1.504-.32m-39.69 0c-.554 0-1.03.097-1.43.293a2.6 2.581 0 0 0-.988.824a3.783 3.783 0 0 0-.578 1.265a6.555 6.555 0 0 0-.187 1.594c0 .555.054 1.074.156 1.563c.102.484.274.91.512 1.273c.242.363.562.652.965.867c.406.211.906.317 1.508.317c.546 0 1.023-.098 1.425-.29a2.687 2.668 0 0 0 .997-.82a3.66 3.66 0 0 0 .566-1.261a6.63 6.63 0 0 0 .183-1.606a7.52 7.52 0 0 0-.152-1.547a3.792 3.792 0 0 0-.508-1.28a2.523 2.523 0 0 0-.96-.872c-.403-.211-.903-.32-1.509-.32m50.815-1.551c.274 0 .543.023.817.07c.27.043.515.098.734.168a3.15 3.15 0 0 1 .91.426c.078.059.133.11.156.156a.511.511 0 0 1 .059.153a2.25 2.25 0 0 1 .05.512c0 .124-.003.237-.015.331a.835.829 0 0 1-.058.23a.277.277 0 0 1-.098.126a.19.189 0 0 1-.121.043c-.07 0-.168-.043-.293-.125a4.395 4.395 0 0 0-.5-.262a5.015 5.015 0 0 0-.719-.266a3.322 3.322 0 0 0-.945-.125c-.317 0-.594.036-.836.11c-.242.07-.442.171-.594.3a1.288 1.279 0 0 0-.352.47c-.078.18-.117.37-.117.581c0 .293.074.536.227.738c.148.196.343.372.586.52c.242.153.515.285.824.402c.312.122.625.246.945.375a10.872 10.794 0 0 1 .953.426a3.604 3.579 0 0 1 .832.57a2.729 2.71 0 0 1 .582.81c.145.316.22.69.22 1.124c0 .516-.094.977-.29 1.383a2.901 2.88 0 0 1-.816 1.023a3.824 3.824 0 0 1-1.27.63c-.488.14-1.031.21-1.617.21a6.237 6.193 0 0 1-1.035-.082a6.51 6.51 0 0 1-.883-.215a4.582 4.582 0 0 1-.66-.27a1.912 1.912 0 0 1-.399-.253a.658.658 0 0 1-.18-.316a2.028 2.028 0 0 1-.058-.547c0-.145.008-.262.023-.36c.016-.097.036-.176.059-.238a.277.277 0 0 1 .094-.129a.258.258 0 0 1 .145-.04c.081 0 .203.052.367.154c.16.1.359.21.597.331a5.918 5.876 0 0 0 .844.332c.324.098.7.153 1.121.153c.317 0 .602-.035.86-.102a2.165 2.15 0 0 0 .668-.297a1.355 1.345 0 0 0 .433-.504c.102-.199.152-.441.152-.718c0-.286-.074-.524-.218-.715a2.154 2.154 0 0 0-.582-.52a5.105 5.068 0 0 0-.817-.398c-.3-.117-.613-.235-.934-.363a10.157 10.084 0 0 1-.937-.434a3.378 3.354 0 0 1-.82-.59a2.633 2.633 0 0 1-.582-.832c-.149-.32-.223-.707-.223-1.156c0-.395.078-.777.23-1.14c.157-.364.391-.68.696-.954c.312-.273.7-.492 1.164-.656c.461-.168 1.004-.25 1.621-.25m-11.055 0c.84 0 1.566.125 2.192.37c.62.247 1.14.606 1.554 1.08c.418.472.727 1.046.934 1.718c.207.676.312 1.437.312 2.281c0 .824-.11 1.582-.328 2.273a5.016 5.016 0 0 1-.98 1.793c-.43.5-.977.89-1.625 1.172c-.657.282-1.41.422-2.27.422c-.84 0-1.567-.125-2.191-.371a3.978 3.978 0 0 1-1.555-1.078a4.555 4.555 0 0 1-.926-1.719c-.207-.672-.309-1.437-.309-2.289c0-.824.11-1.582.325-2.277c.214-.692.539-1.29.972-1.79a4.314 4.314 0 0 1 1.621-1.167c.653-.278 1.407-.418 2.274-.418m-17.84 0c.421 0 .8.05 1.136.148c.336.098.633.235.887.406a2.885 2.864 0 0 1 .656.63c.184.245.332.519.453.816c.34-.367.664-.68.97-.93c.304-.258.597-.465.882-.621c.281-.156.559-.27.824-.34c.266-.07.54-.11.809-.11c.656 0 1.207.114 1.652.345c.446.23.805.535 1.078.917c.278.38.473.829.59 1.34a7.26 7.26 0 0 1 .176 1.621v6.395a.26.26 0 0 1-.043.149a.377.377 0 0 1-.148.109a1.18 1.18 0 0 1-.285.066a3.62 3.62 0 0 1-.45.02c-.187 0-.344-.004-.465-.02a1.268 1.268 0 0 1-.289-.066a.342.342 0 0 1-.152-.11a.231.231 0 0 1-.043-.148v-6.144a5.42 5.42 0 0 0-.117-1.169a2.621 2.621 0 0 0-.364-.91a1.683 1.683 0 0 0-.632-.586a1.92 1.92 0 0 0-.903-.203c-.43 0-.863.168-1.297.496c-.433.328-.91.813-1.43 1.45v7.066a.26.26 0 0 1-.042.149a.41.41 0 0 1-.156.109a1.27 1.27 0 0 1-.29.066a3.63 3.63 0 0 1-.45.02a3.74 3.74 0 0 1-.448-.02a1.261 1.261 0 0 1-.293-.066a.328.328 0 0 1-.149-.11a.256.256 0 0 1-.039-.148v-6.144c0-.426-.043-.817-.125-1.169a2.876 2.876 0 0 0-.37-.91a1.733 1.733 0 0 0-.63-.586a1.915 1.915 0 0 0-.898-.203c-.434 0-.867.168-1.3.496c-.439.328-.915.813-1.427 1.45v7.066a.23.23 0 0 1-.047.149a.352.352 0 0 1-.148.109a1.14 1.14 0 0 1-.282.066a3.78 3.78 0 0 1-.464.02a3.62 3.62 0 0 1-.45-.02a1.265 1.265 0 0 1-.288-.066a.329.329 0 0 1-.15-.11a.256.256 0 0 1-.038-.148v-10.11a.36.36 0 0 1 .031-.152a.319.319 0 0 1 .137-.113a.778.778 0 0 1 .262-.066c.105-.012.246-.02.418-.02c.168 0 .304.008.414.02c.109.011.191.03.254.066c.062.035.105.07.128.113c.028.043.04.09.04.153v1.336c.574-.637 1.132-1.102 1.672-1.399c.539-.297 1.082-.445 1.632-.445Zm-11.02 0c.273 0 .542.023.816.07c.27.043.515.098.734.168c.22.067.407.137.559.219c.156.078.273.148.351.207c.078.059.133.11.156.156a.511.511 0 0 1 .06.153c.01.054.023.124.035.206c.011.082.015.184.015.305c0 .125-.004.238-.015.332a.835.829 0 0 1-.06.23a.3.3 0 0 1-.093.126a.21.208 0 0 1-.125.043c-.07 0-.168-.043-.293-.125a4.395 4.395 0 0 0-.5-.262a5.005 5.005 0 0 0-.719-.266a3.318 3.318 0 0 0-.945-.125c-.316 0-.594.036-.836.11c-.242.07-.441.171-.594.3a1.288 1.279 0 0 0-.351.47c-.078.18-.117.37-.117.581c0 .293.074.536.226.738a2.18 2.164 0 0 0 .586.52c.242.153.516.285.824.402c.313.122.625.246.945.375a10.872 10.794 0 0 1 .954.426a3.604 3.579 0 0 1 .832.57a2.729 2.71 0 0 1 .582.81c.144.316.219.69.219 1.124c0 .516-.094.977-.29 1.383a2.901 2.88 0 0 1-.816 1.023a3.826 3.826 0 0 1-1.27.63c-.488.14-1.03.21-1.617.21a6.237 6.193 0 0 1-1.035-.082a6.506 6.506 0 0 1-.883-.215a4.571 4.571 0 0 1-.66-.27a1.915 1.915 0 0 1-.398-.253a.658.658 0 0 1-.18-.316a2.027 2.027 0 0 1-.059-.547c0-.145.012-.262.024-.36c.015-.097.035-.176.058-.238a.275.275 0 0 1 .094-.129a.259.259 0 0 1 .145-.04c.082 0 .203.052.367.154c.16.1.363.21.598.331a5.918 5.876 0 0 0 .843.332c.325.098.7.153 1.121.153c.317 0 .602-.035.86-.102a2.165 2.15 0 0 0 .668-.297a1.355 1.345 0 0 0 .433-.504c.102-.199.153-.441.153-.718c0-.286-.075-.524-.219-.715a2.153 2.153 0 0 0-.582-.52a5.105 5.068 0 0 0-.816-.398c-.301-.117-.614-.235-.934-.363a10.157 10.084 0 0 1-.938-.434a3.378 3.354 0 0 1-.82-.59a2.632 2.632 0 0 1-.582-.832c-.148-.32-.223-.707-.223-1.156c0-.395.078-.777.23-1.14c.157-.364.391-.68.696-.954c.313-.273.7-.492 1.164-.656c.461-.168 1.004-.25 1.621-.25Zm-10.825 0c.836 0 1.566.125 2.191.37c.621.247 1.14.606 1.555 1.08a4.65 4.65 0 0 1 .934 1.718c.207.676.308 1.437.308 2.281c0 .824-.105 1.582-.328 2.273a4.95 4.95 0 0 1-.977 1.793c-.433.5-.976.89-1.628 1.172c-.653.282-1.407.422-2.266.422c-.84 0-1.57-.125-2.192-.371a3.979 3.979 0 0 1-1.554-1.078c-.414-.473-.723-1.043-.93-1.719c-.203-.672-.305-1.437-.305-2.289c0-.824.11-1.582.32-2.277c.22-.692.54-1.29.977-1.79a4.314 4.314 0 0 1 1.621-1.167c.649-.278 1.406-.418 2.274-.418m58.701-2.032v11.313h2.004c.934 0 1.723-.117 2.364-.351a3.845 3.845 0 0 0 1.605-1.067c.434-.48.754-1.078.97-1.8c.214-.723.323-1.579.323-2.567c0-.79-.097-1.52-.297-2.195a4.716 4.716 0 0 0-.922-1.762a4.302 4.302 0 0 0-1.585-1.157c-.645-.277-1.47-.414-2.481-.414Zm14.216-.035v4.707h2.21c.505 0 .911-.066 1.216-.195c.312-.133.566-.309.77-.527a2.073 2.058 0 0 0 .445-.778c.093-.292.144-.601.144-.914c0-.351-.05-.671-.148-.953a1.79 1.778 0 0 0-.465-.726a2.028 2.028 0 0 0-.82-.454c-.34-.105-.79-.16-1.348-.16Zm-1.215-1.574h3.328c.875 0 1.59.082 2.149.25c.558.164 1.023.402 1.398.719a2.97 2.948 0 0 1 .84 1.156c.191.457.285.973.285 1.551c0 .344-.043.676-.125.988a3.281 3.258 0 0 1-.367.871a2.945 2.924 0 0 1-.61.711a3.275 3.275 0 0 1-.843.52c.398.074.773.21 1.121.41a3.383 3.358 0 0 1 .91.758c.258.304.465.668.614 1.078c.152.41.226.863.226 1.36c0 .456-.059.878-.176 1.261a3.672 3.646 0 0 1-.488 1.04a3.597 3.57 0 0 1-.766.808a4.39 4.36 0 0 1-1.008.586a5.816 5.775 0 0 1-1.199.351a7.818 7.818 0 0 1-1.465.121h-3.824a.834.834 0 0 1-.492-.175c-.153-.118-.23-.32-.23-.614v-12.96c0-.294.077-.497.23-.614a.834.834 0 0 1 .492-.176m-14.22 0h3.313c1.266 0 2.34.164 3.211.492c.88.325 1.614.793 2.203 1.403c.594.61 1.04 1.351 1.344 2.218c.309.872.461 1.848.461 2.942c0 1.262-.16 2.36-.488 3.297c-.324.941-.797 1.718-1.418 2.34c-.625.617-1.387 1.078-2.29 1.386c-.905.305-1.984.461-3.238.461H90.01a.836.836 0 0 1-.497-.175c-.152-.118-.23-.32-.23-.614v-12.96c0-.294.078-.497.23-.614a.836.836 0 0 1 .497-.176m-68.545-.18c.426 0 .836.043 1.234.122s.77.175 1.106.296c.34.118.644.258.906.414c.266.157.45.29.55.391c.102.102.169.176.196.23a.721.721 0 0 1 .074.184c.02.07.035.156.047.254c.012.098.016.215.016.348c0 .148-.008.277-.02.379a.981.981 0 0 1-.07.265a.359.359 0 0 1-.11.157a.226.225 0 0 1-.152.054c-.105 0-.254-.074-.445-.222a8.183 8.183 0 0 0-.73-.485a6.177 6.177 0 0 0-1.094-.48c-.43-.145-.942-.22-1.54-.22a4.05 4.05 0 0 0-1.78.388a3.76 3.76 0 0 0-1.372 1.14c-.379.5-.672 1.113-.883 1.836c-.207.723-.312 1.551-.312 2.477c0 .922.101 1.738.304 2.441c.2.711.489 1.3.864 1.778c.375.476.836.836 1.383 1.078c.543.242 1.16.363 1.851.363c.582 0 1.094-.07 1.528-.211c.437-.144.808-.3 1.117-.476c.308-.176.558-.336.758-.481c.195-.14.351-.211.465-.211c.05 0 .097.012.136.031c.035.024.07.067.09.13a.945.945 0 0 1 .05.265a4.174 4.174 0 0 1 .009.742a1.645 1.633 0 0 1-.04.235a.698.693 0 0 1-.074.18a.866.866 0 0 1-.16.19a3.238 3.238 0 0 1-.472.344a6.19 6.19 0 0 1-.899.45a7.77 7.77 0 0 1-1.234.37a7.14 7.14 0 0 1-1.524.153c-.949 0-1.808-.16-2.574-.473a5.185 5.185 0 0 1-1.957-1.394c-.54-.613-.953-1.371-1.242-2.274c-.293-.902-.438-1.941-.438-3.117c0-1.203.156-2.281.469-3.223c.316-.945.754-1.746 1.32-2.398a5.616 5.616 0 0 1 2.032-1.5c.785-.344 1.66-.52 2.617-.52m0 0\\\"/>\"\n\t\t},\n\t\t\"couchbase\": {\n\t\t\t\"body\": \"<path fill=\\\"#EA2328\\\" d=\\\"M107.258 75.223c.172 3.945-2.66 7.394-6.586 8.015c-7.582 1.301-23.387 2.121-36.668 2.121c-13.277 0-29.086-.8-36.676-2.12c-4.34-.747-6.586-4.2-6.586-8.016v-25c.047-3.871 2.778-7.2 6.586-8.024a84.485 84.485 0 0 1 11.5-.75a2.86 2.86 0 0 1 2.79 2.899V61.96c7.8 0 14.542-.457 22.402-.457c7.863 0 14.546.457 22.378.457V44.492a2.842 2.842 0 0 1 2.637-3.035h.145a85.055 85.055 0 0 1 11.496.746c3.804.828 6.535 4.152 6.582 8.02ZM64.004 0C28.656 0 0 28.66 0 64c0 35.348 28.656 64 64 64c35.348 0 64-28.652 64-64c0-35.34-28.656-64-64-64Zm0 0\\\"/>\"\n\t\t},\n\t\t\"couchbase-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M44.193 70.806c-4.515 0-6.783-3.247-6.783-6.85c0-3.581 2.357-6.806 6.827-6.806c1.713 0 2.936.378 3.982 1.045l-1.29 2.113c-.734-.467-1.535-.756-2.736-.756c-2.424 0-3.714 1.935-3.714 4.337c0 2.469 1.245 4.515 3.758 4.515c1.424 0 2.27-.49 2.959-1.001l1.178 2.024c-.667.6-2.246 1.379-4.18 1.379zm9.586-8.096c-1.446 0-1.913 1.223-1.913 3.003s.578 3.047 2.024 3.047c1.468 0 1.957-1.201 1.957-2.98c-.022-1.78-.6-3.07-2.068-3.07m.044 8.096c-3.38 0-4.848-2.535-4.848-5.027c0-2.49 1.468-5.093 4.848-5.093S58.74 63.2 58.74 65.69c-.023 2.47-1.513 5.116-4.916 5.116m9.164-9.875v6.183c0 .956.333 1.423 1.245 1.423c.979 0 1.713-.934 1.913-1.156v-6.45h2.713v6.806c0 1.267.134 2.246.267 2.824h-2.691c-.089-.267-.178-.89-.2-1.29a3.84 3.84 0 0 1-3.114 1.513c-2.135 0-2.891-1.357-2.891-3.136v-6.74h2.758zm12.566 9.875c-3.114 0-5.027-2.024-5.027-5.049c0-3.247 2.158-5.07 5.116-5.07c1.557 0 2.49.466 2.958.756l-.868 1.868c-.422-.267-1.045-.556-2.001-.556c-1.513 0-2.313 1.179-2.313 2.936c0 1.756.756 3.024 2.38 3.024c1.112 0 1.756-.4 2.046-.578l.823 1.824c-.445.29-1.335.845-3.114.845m10.409-.222v-6.206c0-.956-.334-1.423-1.246-1.423c-.978 0-1.735.912-1.935 1.156v6.45h-2.713V56.327h2.713v5.738c.49-.533 1.424-1.379 3.003-1.379c2.135 0 2.891 1.357 2.891 3.136v6.74h-2.713zm7.65-2.113c.179.066.579.2 1.29.2c1.402 0 2.27-1.023 2.27-3.003c0-1.78-.601-2.847-1.98-2.847c-.8 0-1.423.512-1.58.712zm0-12.121v5.338c.446-.445 1.29-1.001 2.358-1.001c2.403 0 4.093 1.645 4.093 4.982c0 3.314-2.224 5.138-5.16 5.138c-2.202 0-3.536-.556-4.026-.779v-13.7h2.736zm12.923 9.986h-.334c-1.49 0-2.535.445-2.535 1.535c0 .69.556.978 1.156.978c.912 0 1.446-.534 1.713-.8zm.289 4.248c-.09-.245-.134-.734-.156-1.023c-.422.511-1.334 1.267-2.691 1.267c-1.646 0-2.914-.978-2.914-2.713c0-2.513 2.58-3.425 5.138-3.425h.334v-.534c0-.8-.334-1.29-1.535-1.29c-1.245 0-2.09.645-2.446.89l-1.18-1.646c.58-.534 1.869-1.401 3.937-1.401c2.67 0 3.937 1.023 3.937 3.603v3.38c0 1.335.134 2.27.267 2.892zm7.317.223c-1.735 0-2.847-.512-3.447-.913l.912-1.89c.378.267 1.312.8 2.38.8c1 0 1.556-.289 1.556-.822c0-.623-1.09-.801-2.468-1.468c-1.335-.645-2.113-1.379-2.113-2.847c0-1.824 1.445-2.98 3.647-2.98c1.646 0 2.67.511 3.114.756l-.934 1.846c-.378-.223-1.135-.6-2.046-.6c-.912 0-1.312.31-1.312.822c0 .623.89.779 2.001 1.223c1.513.623 2.602 1.335 2.602 2.936c-.044 2.069-1.512 3.136-3.892 3.136m11.187-6.228c-.022-1.068-.445-1.935-1.601-1.935c-1.068 0-1.69.69-1.868 1.935zm-1.023 4.226c1.312 0 2.024-.423 2.513-.667l.868 1.734c-.645.356-1.624.934-3.626.934c-3.247 0-5.093-2.024-5.093-5.115c0-3.07 2.113-5.004 4.804-5.004c3.047 0 4.515 2.113 4.182 5.716h-6.072c.111 1.445.867 2.402 2.424 2.402\\\"/><path fill=\\\"#EA2328\\\" d=\\\"M14.724 49.276C6.606 49.276 0 55.859 0 64c0 8.118 6.583 14.724 14.724 14.724c8.118 0 14.724-6.583 14.724-14.724c0-8.14-6.606-14.724-14.724-14.724m9.942 17.304c0 .89-.512 1.668-1.513 1.846c-1.734.311-5.382.49-8.429.49c-3.047 0-6.695-.179-8.43-.49c-1-.178-1.512-.956-1.512-1.846v-5.738c0-.89.69-1.713 1.513-1.846c.511-.09 1.712-.178 2.646-.178c.356 0 .645.267.645.69v4.025l5.16-.111l5.16.111v-4.026c0-.422.29-.69.645-.69c.934 0 2.135.09 2.647.179c.845.133 1.512.956 1.512 1.846c-.044 1.89-.044 3.825-.044 5.738\\\"/>\"\n\t\t},\n\t\t\"couchdb\": {\n\t\t\t\"body\": \"<path fill=\\\"#e42528\\\" d=\\\"M101.4 77.2c0 5-2.7 7.5-7.6 7.7H33.9c-4.9 0-7.6-2.5-7.6-7.7c0-5 2.7-7.5 7.6-7.7h60.2c4.9.2 7.3 2.7 7.3 7.7m-7.3 11.5H33.9c-4.9 0-7.6 2.4-7.6 7.7c0 5 2.7 7.4 7.6 7.7h60.2c4.9 0 7.6-2.5 7.6-7.7c-.3-5.3-2.7-7.7-7.6-7.7m18.6-42.1c-4.9 0-7.6 2.5-7.6 7.4v42.1c0 5 2.7 7.5 7.6 7.7c7.4-.2 11.3-7.7 11.3-22.9V62c0-10.2-3.9-15.2-11.3-15.4m-97.4 0C7.9 46.8 4 51.8 4 62v18.9c0 15.2 3.9 22.7 11.3 22.9c4.9 0 7.6-2.4 7.6-7.7V54.3c-.2-5-2.7-7.5-7.6-7.7m97.4-3.8c0-12.7-6.6-18.7-18.6-18.9H33.9c-12.2.2-18.6 6.5-18.6 18.9c7.4 0 11.3 4 11.3 11.5s3.9 11.4 11.3 11.4h52.5c7.3 0 11.3-3.9 11.3-11.4c-.3-7.7 3.9-11.2 11-11.5\\\"/>\"\n\t\t},\n\t\t\"couchdb-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#444\\\" d=\\\"M57.9 63.22c-3.19 0-4.71 2.2-4.71 5.56s1.52 5.55 4.71 5.55s4.64-2.26 4.64-5.55s-1.46-5.56-4.64-5.56m0 9.63c-2.1 0-2.74-1.68-2.74-4.07c0-2.59.7-4.07 2.74-4.07s2.73 1.48 2.73 4.07c0 2.39-.71 4.07-2.73 4.07m16.02-9.5H72v8.53c-.25.19-.51.32-.82.51a4.8 4.8 0 0 1-2.1.52c-1.53 0-2-1-2-3.36v-6.13h-1.87v6.2c0 3.29 1.09 4.78 3.44 4.78a5 5 0 0 0 2.67-.71a4.06 4.06 0 0 0 1-.71l.25 1.35l1.4-.13V63.35zm2.68 5.49c0 4.07 2.29 5.49 4.51 5.49a9.53 9.53 0 0 0 2.17-.26a8 8 0 0 0 .82-.26l.2-1.48c-.26.06-.58.19-.9.26a8.58 8.58 0 0 1-2 .26c-1.85 0-2.87-1.23-2.87-4s1-4.13 2.87-4.13a8.58 8.58 0 0 1 2 .26c.32.06.58.19.9.26l-.13-1.43a3 3 0 0 0-.83-.25a8.94 8.94 0 0 0-2.16-.26c-2.28-.08-4.58 1.21-4.58 5.54m10.18 5.49h1.92V66a7.93 7.93 0 0 1 3-1.1c1.27 0 1.91.71 1.91 3.55v5.88h1.91v-6c0-3.49-1-4.85-3.31-4.85a5.18 5.18 0 0 0-3.56 1.23v-5.43l-1.91.2v14.85zM108 60.51a7.33 7.33 0 0 0-4.71-1.23H99v15h4.7c5.16 0 6.37-3.1 6.37-7.82c.01-3.24-.83-4.92-2.07-5.95m-4.9 12.34H101v-12h2.8c3.43 0 4.39 1.88 4.39 5.75c-.02 4.83-1.1 6.25-5.11 6.25zm18.49-6.14a5.1 5.1 0 0 0-1.66-.52a2.93 2.93 0 0 0 2.61-3c0-2.84-1.4-3.94-5.22-3.94h-4.07v15.02h4.84c3.43 0 5.15-1.36 5.15-4.33a3.5 3.5 0 0 0-1.65-3.23m-6.49-5.88h2c2.61 0 3.63.46 3.63 2.33c0 1.61-.83 2.52-3.19 2.52h-2.44zm2.48 12h-2.48V67h2.48c2.61 0 3.82.65 3.82 3s-1.27 2.85-3.81 2.85zm-70.64 1.5a15.48 15.48 0 0 0 2.94-.33a9.12 9.12 0 0 1 1.12-.31l.19-1.62l-1.14.39a11.54 11.54 0 0 1-2.86.39c-2.74 0-4.08-1.81-4.08-6.27c0-4.65 1.59-6.13 4.27-6.13a14.42 14.42 0 0 1 2.73.32c.45.06.77.26 1.15.32l-.19-1.68c-.32-.13-.7-.19-1.08-.32a16.12 16.12 0 0 0-2.87-.32c-3.5 0-6.11 1.87-6.11 7.68c0 3 .64 5 1.72 6.2a5.29 5.29 0 0 0 4.21 1.68\\\"/><path fill=\\\"#e42528\\\" d=\\\"M30 67.42a1.82 1.82 0 0 1-2 2H12.52a1.76 1.76 0 0 1-2-2a1.82 1.82 0 0 1 2-2h15.59a1.77 1.77 0 0 1 1.89 2m-1.91 3H12.52a1.77 1.77 0 0 0-2 2a1.82 1.82 0 0 0 2 2h15.59a1.77 1.77 0 0 0 2-2c-.11-1.42-.72-2.03-2-2.03zm4.84-10.91a1.74 1.74 0 0 0-2 1.93v10.89a1.82 1.82 0 0 0 2 2c1.91-.06 2.93-2 2.93-5.94v-4.91c.02-2.65-1-3.94-2.91-4zm-25.26 0c-1.91.06-2.93 1.35-2.93 4v4.91c0 3.94 1 5.88 2.93 5.94a1.76 1.76 0 0 0 2-2V61.48a1.85 1.85 0 0 0-1.98-2zm25.26-1c0-3.3-1.72-4.85-4.84-4.91H12.52c-3.18.06-4.83 1.68-4.83 4.91a2.63 2.63 0 0 1 2.92 3a2.64 2.64 0 0 0 2.93 3h13.62a2.64 2.64 0 0 0 2.93-3c-.07-2 1-2.91 2.86-3z\\\"/>\"\n\t\t},\n\t\t\"cplusplus\": {\n\t\t\t\"body\": \"<path fill=\\\"#00599c\\\" d=\\\"M118.766 95.82c.89-1.543 1.441-3.28 1.441-4.843V36.78c0-1.558-.55-3.297-1.441-4.84l-55.32 31.94Zm0 0\\\"/><path fill=\\\"#004482\\\" d=\\\"m68.36 126.586l46.933-27.094c1.352-.781 2.582-2.129 3.473-3.672l-55.32-31.94L8.12 95.82c.89 1.543 2.121 2.89 3.473 3.672l46.933 27.094c2.703 1.562 7.13 1.562 9.832 0Zm0 0\\\"/><path fill=\\\"#659ad2\\\" d=\\\"M118.766 31.941c-.891-1.546-2.121-2.894-3.473-3.671L68.359 1.172c-2.703-1.563-7.129-1.563-9.832 0L11.594 28.27C8.89 29.828 6.68 33.66 6.68 36.78v54.196c0 1.562.55 3.3 1.441 4.843L63.445 63.88Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.445 26.035c-20.867 0-37.843 16.977-37.843 37.844s16.976 37.844 37.843 37.844c13.465 0 26.024-7.247 32.77-18.91L79.84 73.335c-3.38 5.84-9.66 9.465-16.395 9.465c-10.433 0-18.922-8.488-18.922-18.922c0-10.434 8.49-18.922 18.922-18.922c6.73 0 13.017 3.629 16.39 9.465l16.38-9.477c-6.75-11.664-19.305-18.91-32.77-18.91zM92.88 57.57v4.207h-4.207v4.203h4.207v4.207h4.203V65.98h4.203v-4.203h-4.203V57.57zm15.766 0v4.207h-4.204v4.203h4.204v4.207h4.207V65.98h4.203v-4.203h-4.203V57.57z\\\"/>\"\n\t\t},\n\t\t\"crystal\": {\n\t\t\t\"body\": \"<path d=\\\"m127.806 81.328l-46.325 45.987c-.185.185-.464.276-.65.185l-63.283-16.863c-.279-.095-.464-.28-.464-.464L.035 47.317c-.09-.275 0-.46.186-.645L46.55.685c.184-.185.463-.276.649-.185l63.28 16.863c.278.095.463.28.463.464L127.9 80.682c.185.275.09.46-.094.645zM65.726 31.28L3.557 47.778c-.095 0-.185.185-.095.28l45.495 45.156c.09.095.28.095.28-.09l16.675-61.748c.095 0-.09-.185-.184-.094zm0 0\\\"/>\"\n\t\t},\n\t\t\"crystal-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"m17.62 18.317l.37 2.9c-1.726.554-3.885.801-6.537.801c-3.207 0-5.428-.802-6.723-2.467s-1.973-4.502-1.973-8.511c0-4.009.616-6.908 1.973-8.511C6.025.864 8.246.062 11.453.062c2.344 0 4.379.246 6.106.678l-.37 2.96a83.626 83.626 0 0 0-5.736-.185c-1.789 0-2.96.555-3.639 1.604c-.617 1.11-.987 3.084-.987 5.982s.309 4.934.987 5.983c.678 1.11 1.85 1.604 3.639 1.604c2.59-.062 4.687-.185 6.167-.37zm19.613 3.331h-4.132l-1.727-6.6c-.37-1.294-1.234-1.911-2.467-1.911h-3.824v8.511h-3.824V.37C23.11.185 25.7.123 29.03.123c2.714 0 4.626.432 5.736 1.357c1.11.925 1.665 2.529 1.665 4.873c0 1.665-.308 2.898-.925 3.762c-.617.863-1.665 1.418-3.084 1.603v.185c.617.124 1.172.494 1.727.987c.555.494.925 1.234 1.11 2.159zM25.145 9.991h3.824c1.356 0 2.343-.246 2.837-.74c.493-.493.74-1.357.74-2.652c0-1.295-.247-2.158-.74-2.652c-.494-.431-1.419-.678-2.837-.678h-3.824Zm23.806 4.503v7.154h-3.885v-7.216L38.096.37h4.071l3.886 8.264c.123.309.431 1.172.863 2.59h.247c.431-1.356.74-2.22.863-2.59L51.912.37h4.009zm17.023-1.234l-4.318-1.357c-1.541-.493-2.652-1.233-3.268-2.22c-.617-.987-.987-2.282-.987-3.947c0-2.344.555-3.886 1.603-4.626C60.114.37 61.964 0 64.678 0c2.59 0 4.811.247 6.661.74l-.246 2.714c-2.344-.062-4.441-.124-6.353-.124c-1.418 0-2.344.124-2.837.432c-.493.309-.74.925-.74 2.035c0 .864.185 1.48.493 1.85c.309.37.987.68 1.85.987l4.071 1.296c1.604.493 2.775 1.295 3.392 2.282c.679.986.987 2.282.987 3.947c0 2.344-.555 3.947-1.665 4.749c-1.11.802-3.084 1.233-5.86 1.233c-2.343 0-4.625-.246-6.907-.678l.247-2.837c3.577.062 5.859.123 6.722.123c1.419 0 2.344-.185 2.837-.493c.494-.309.679-1.049.679-2.097c0-.925-.185-1.542-.494-1.912c-.061-.432-.678-.74-1.541-.987M91.137 3.7h-6.6v17.948h-3.885V3.7h-6.476V.432h16.961zm12.643 11.965h-7.894l-1.727 6.045h-3.947l6.353-20.23c.185-.678.678-1.048 1.418-1.048h3.762c.74 0 1.234.37 1.419 1.048l6.29 20.168h-3.947zm-.925-3.207l-2.158-7.339c-.309-1.11-.432-1.727-.494-1.789h-.801l-.494 1.789l-2.097 7.34zM115.807.37v16.344c0 .678.123 1.11.432 1.357c.246.246.74.37 1.418.37h7.401l.185 2.96c-2.035.185-4.81.247-8.45.247c-3.206 0-4.81-1.48-4.81-4.44V.37Zm-8.511 96.707l-30.838 30.775c-.123.124-.308.185-.431.124l-42.124-11.287c-.185-.061-.309-.185-.309-.308L22.308 74.318c-.062-.184 0-.308.123-.431L53.268 43.11c.124-.123.309-.185.432-.123l42.124 11.286c.185.062.309.185.309.308l11.286 42.063c0 .123-.061.308-.123.432zM65.912 63.525l-41.384 11.04c-.062 0-.123.124-.062.185l30.283 30.221c.062.062.185.062.185-.062l11.101-41.322c.062 0-.061-.123-.123-.062\\\"/>\"\n\t\t},\n\t\t\"csharp\": {\n\t\t\t\"body\": \"<path fill=\\\"#9B4F96\\\" d=\\\"M115.4 30.7L67.1 2.9c-.8-.5-1.9-.7-3.1-.7c-1.2 0-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.4 1 3.5l106.8-62c-.6-1.2-1.5-2.1-2.4-2.7\\\"/><path fill=\\\"#68217A\\\" d=\\\"M10.7 95.3c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7c1.2 0 2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c0-.9-.1-1.9-.6-2.8z\\\"/><path fill=\\\"#fff\\\" d=\\\"M85.3 76.1C81.1 83.5 73.1 88.5 64 88.5c-13.5 0-24.5-11-24.5-24.5s11-24.5 24.5-24.5c9.1 0 17.1 5 21.3 12.5l13-7.5c-6.8-11.9-19.6-20-34.3-20c-21.8 0-39.5 17.7-39.5 39.5s17.7 39.5 39.5 39.5c14.6 0 27.4-8 34.2-19.8zM97 66.2l.9-4.3h-4.2v-4.7h5.1L100 51h4.9l-1.2 6.1h3.8l1.2-6.1h4.8l-1.2 6.1h2.4v4.7h-3.3l-.9 4.3h4.2v4.7h-5.1l-1.2 6h-4.9l1.2-6h-3.8l-1.2 6h-4.8l1.2-6h-2.4v-4.7H97zm4.8 0h3.8l.9-4.3h-3.8z\\\"/>\"\n\t\t},\n\t\t\"css3\": {\n\t\t\t\"body\": \"<path fill=\\\"#1572B6\\\" d=\\\"M18.814 114.123L8.76 1.352h110.48l-10.064 112.754l-45.243 12.543z\\\"/><path fill=\\\"#33A9DC\\\" d=\\\"m64.001 117.062l36.559-10.136l8.601-96.354h-45.16z\\\"/><path fill=\\\"#fff\\\" d=\\\"M64.001 51.429h18.302l1.264-14.163H64.001V23.435h34.682l-.332 3.711l-3.4 38.114h-30.95z\\\"/><path fill=\\\"#EBEBEB\\\" d=\\\"m64.083 87.349l-.061.018l-15.403-4.159l-.985-11.031H33.752l1.937 21.717l28.331 7.863l.063-.018z\\\"/><path fill=\\\"#fff\\\" d=\\\"m81.127 64.675l-1.666 18.522l-15.426 4.164v14.39l28.354-7.858l.208-2.337l2.406-26.881z\\\"/><path fill=\\\"#EBEBEB\\\" d=\\\"M64.048 23.435v13.831H30.64l-.277-3.108l-.63-7.012l-.331-3.711zm-.047 27.996v13.831H48.792l-.277-3.108l-.631-7.012l-.33-3.711z\\\"/>\"\n\t\t},\n\t\t\"css3-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#131313\\\" d=\\\"M89.234 5.856H81.85l7.679 8.333v3.967H73.713v-4.645h7.678l-7.678-8.333V1.207h15.521zm-18.657 0h-7.384l7.679 8.333v3.967H55.055v-4.645h7.679l-7.679-8.333V1.207h15.522zm-18.474.19h-7.968v7.271h7.968v4.839H38.471V1.207h13.632z\\\"/><path fill=\\\"#1572B6\\\" d=\\\"m27.613 116.706l-8.097-90.813h88.967l-8.104 90.798l-36.434 10.102z\\\"/><path fill=\\\"#33A9DC\\\" d=\\\"m64.001 119.072l29.439-8.162l6.926-77.591H64.001z\\\"/><path fill=\\\"#fff\\\" d=\\\"M64 66.22h14.738l1.019-11.405H64V43.677h27.929l-.267 2.988l-2.737 30.692H64z\\\"/><path fill=\\\"#EBEBEB\\\" d=\\\"m64.067 95.146l-.049.014l-12.404-3.35l-.794-8.883H39.641l1.561 17.488l22.814 6.333l.052-.015V95.146z\\\"/><path fill=\\\"#fff\\\" d=\\\"M77.792 76.886L76.45 91.802l-12.422 3.353v11.588l22.833-6.328l.168-1.882l1.938-21.647z\\\"/><path fill=\\\"#EBEBEB\\\" d=\\\"M64.039 43.677v11.137H37.136l-.224-2.503l-.507-5.646l-.267-2.988zM64 66.221v11.138H51.753l-.223-2.503l-.508-5.647l-.267-2.988z\\\"/>\"\n\t\t},\n\t\t\"cypressio\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconCypressio0\\\" x1=\\\"323.384\\\" x2=\\\"56.936\\\" y1=\\\"12.396\\\" y2=\\\"577.503\\\" gradientTransform=\\\"translate(-.876 -.754)scale(.13472)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#69d3a7\\\"/><stop offset=\\\".823\\\" stop-color=\\\"#2ab586\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1cae7f\\\"/></linearGradient><linearGradient id=\\\"deviconCypressio1\\\" x1=\\\"992.991\\\" x2=\\\"568.87\\\" y1=\\\"483.702\\\" y2=\\\"758.304\\\" gradientTransform=\\\"translate(-.876 -.754)scale(.13472)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".081\\\" stop-color=\\\"#69d3a7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#69d3a7\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconCypressio2\\\" x1=\\\"5.828\\\" x2=\\\"704.494\\\" y1=\\\"697.848\\\" y2=\\\"917.116\\\" gradientTransform=\\\"translate(-.876 -.754)scale(.13472)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".077\\\" stop-color=\\\"#1cae7f\\\"/><stop offset=\\\".164\\\" stop-color=\\\"#1ca379\\\"/><stop offset=\\\".316\\\" stop-color=\\\"#1c8568\\\"/><stop offset=\\\".516\\\" stop-color=\\\"#1b554d\\\"/><stop offset=\\\".719\\\" stop-color=\\\"#1b1e2e\\\"/></linearGradient></defs><path d=\\\"M44.984 50.817c5.173 0 9.377 2.762 11.532 7.558l.162.378l8.676-2.95l-.175-.445c-3.355-8.192-11.101-13.27-20.195-13.27c-6.4 0-11.6 2.047-15.897 6.264c-4.271 4.19-6.427 9.458-6.427 15.655c0 6.157 2.17 11.397 6.427 15.574c4.297 4.217 9.498 6.264 15.897 6.264c9.094 0 16.827-5.092 20.195-13.27l.175-.444l-8.69-2.95l-.148.39c-1.94 4.729-6.251 7.544-11.532 7.544c-3.597 0-6.642-1.253-9.04-3.732c-2.439-2.505-3.665-5.671-3.665-9.376c0-3.732 1.2-6.83 3.665-9.458c2.411-2.479 5.443-3.732 9.04-3.732\\\" class=\\\"st0\\\"/><path fill=\\\"url(#deviconCypressio1)\\\" d=\\\"m82.652 125.13l-2.586-8.528c23.334-7.086 39.015-28.224 39.015-52.595c0-6.723-1.199-13.297-3.57-19.522l8.326-3.166A63.468 63.468 0 0 1 128 64.02c-.013 28.305-18.228 52.865-45.348 61.11\\\"/><path fill=\\\"#69d3a7\\\" d=\\\"M116.67 47.894C109.543 24.641 88.378 9.026 63.993 9.026a56.039 56.039 0 0 0-9.861.876l-1.577-8.77A64.836 64.836 0 0 1 63.993.108c28.319 0 52.906 18.147 61.191 45.159z\\\"/><path fill=\\\"url(#deviconCypressio0)\\\" d=\\\"M4.096 86.532C1.374 79.338 0 71.753 0 64.007C0 31 24.776 3.664 57.634.43l.876 8.865C30.232 12.085 8.905 35.607 8.905 64.006a54.82 54.82 0 0 0 3.516 19.387z\\\"/><path d=\\\"M64.33 42.896L81.79 85.63l-12.718 30.85l8.905 1.779l30.96-75.364h-9.62l-12.353 31.31l-12.449-31.31z\\\" class=\\\"st0\\\"/><path fill=\\\"url(#deviconCypressio2)\\\" d=\\\"m70.675 112.601l-1.872 4.54c-.431 1.038-1.415 1.752-2.52 1.792c-.767.027-1.522.054-2.303.054c-24.452 0-46.224-16.369-52.946-39.81l-8.569 2.451c7.814 27.228 33.102 46.25 61.501 46.264h.014c.889 0 1.778-.013 2.667-.054c4.567-.188 8.65-3.058 10.4-7.302l2.534-6.156z\\\"/>\"\n\t\t},\n\t\t\"cypressio-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconCypressioWordmark0\\\" x1=\\\"434.707\\\" x2=\\\"796.936\\\" y1=\\\"-3615.323\\\" y2=\\\"-4002.476\\\" gradientTransform=\\\"matrix(.05424 0 0 -.05424 -.38 -159.587)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".094\\\" stop-color=\\\"#58d09e\\\"/><stop offset=\\\".988\\\" stop-color=\\\"#58d09e\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconCypressioWordmark1\\\" x1=\\\"1.925\\\" x2=\\\"693.949\\\" y1=\\\"-4338.691\\\" y2=\\\"-4522.885\\\" gradientTransform=\\\"matrix(.05424 0 0 -.05424 -.38 -159.587)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".077\\\" stop-color=\\\"#58d09e\\\"/><stop offset=\\\".762\\\" stop-color=\\\"#1b1e2e\\\"/></linearGradient></defs><path fill=\\\"#69d3a7\\\" d=\\\"M.917 70.837A25.852 25.852 0 0 1 0 64.003c0-10.588 6.65-20.27 16.543-24.088l1.302 3.357C9.324 46.56 3.602 54.891 3.602 64.002c0 1.997.265 3.977.786 5.886z\\\"/><path fill=\\\"url(#deviconCypressioWordmark0)\\\" d=\\\"M45.664 53.773c-3.85-7.393-11.433-11.987-19.78-11.987c-2.957 0-5.832.57-8.538 1.687l-1.383-3.325a25.807 25.807 0 0 1 9.92-1.963c9.698 0 18.501 5.331 22.976 13.923z\\\"/><path fill=\\\"#1b1e2e\\\" d=\\\"M104.318 55.14c-1.914 0-3.53.493-4.81 1.47c-1.307.97-1.969 2.234-1.969 3.769c0 2.218 1.404 3.884 3.764 4.453c.613.141 1.259.261 1.883.375c2.348.429 4.566.836 4.566 2.414c0 1.22-1.415 2.067-3.443 2.067c-2.061 0-3.2-.826-3.477-2.524l-.033-.19l-3.785.794l.03.173c.554 3.054 3.267 4.875 7.265 4.875c2.028 0 3.77-.504 5.164-1.502c1.394-.981 2.097-2.25 2.097-3.77c.011-3.964-3.513-4.632-6.355-5.163c-2.067-.385-3.852-.727-3.852-2.164c0-1.14 1.216-1.936 2.951-1.936c1.92 0 2.966.824 3.215 2.516l.028.19l3.79-.792l-.025-.173c-.51-3.01-3.196-4.881-7.004-4.881zm16.424 0c-1.915 0-3.53.493-4.81 1.47c-1.307.97-1.97 2.234-1.97 3.769c0 2.218 1.405 3.884 3.765 4.453a42.8 42.8 0 0 0 1.882.375c2.349.429 4.567.836 4.567 2.414c0 1.22-1.415 2.067-3.444 2.067c-2.06 0-3.2-.826-3.476-2.524l-.033-.19l-3.785.794l.03.173c.554 3.054 3.267 4.875 7.264 4.875c2.029 0 3.769-.504 5.168-1.502c1.394-.981 2.1-2.25 2.1-3.77c.005-3.964-3.527-4.632-6.363-5.163c-2.067-.385-3.85-.727-3.85-2.164c0-1.14 1.216-1.936 2.951-1.936c1.92 0 2.966.824 3.215 2.516l.028.19l3.79-.792l-.027-.173c-.51-3.01-3.194-4.881-7.002-4.881zm-34.42.005c-2.5 0-4.616.851-6.303 2.533c-1.703 1.703-2.564 3.83-2.564 6.33c0 2.484.873 4.606 2.604 6.293c1.735 1.703 3.838 2.531 6.425 2.531c3.504 0 6.521-1.778 8.067-4.762l.086-.174l-3.205-1.42l-.077.151c-.927 1.795-2.712 2.871-4.767 2.871c-2.669 0-4.709-1.628-5.262-4.172h13.75l.018-.162c.298-2.75-.413-5.131-2.1-7.084c-1.687-1.947-3.933-2.936-6.672-2.936zm-68.168.005c-2.587 0-4.692.83-6.427 2.534c-1.725 1.692-2.604 3.818-2.604 6.33c0 2.484.873 4.604 2.604 6.29c1.735 1.704 3.84 2.534 6.427 2.534c3.678 0 6.807-2.055 8.168-5.363l.076-.18l-3.515-1.193l-.065.158c-.78 1.909-2.527 3.052-4.664 3.052c-1.453 0-2.685-.51-3.656-1.507c-.987-1.015-1.48-2.289-1.48-3.786c0-1.507.487-2.76 1.48-3.818c.971-1.02 2.203-1.525 3.656-1.525c2.088 0 3.791 1.113 4.664 3.06l.07.15l3.51-1.193l-.076-.177c-1.356-3.309-4.485-5.366-8.168-5.366m37.225 0c-2.354 0-4.29.836-5.76 2.49v-2.17h-3.793v23.557h3.793v-8.683c1.47 1.649 3.406 2.488 5.76 2.488c2.37 0 4.393-.85 6.01-2.537c1.594-1.692 2.396-3.808 2.396-6.287c0-2.511-.802-4.638-2.396-6.324c-1.617-1.682-3.64-2.534-6.01-2.534m19.625.024c-1.926-.05-3.754.784-5.045 2.326v-2.03h-3.793v17.032h3.793v-9.605c0-1.54.618-2.718 1.844-3.499c1.215-.775 2.674-.923 4.459-.435l.226.066v-3.644l-.14-.033a6.48 6.48 0 0 0-1.344-.178m-49.024.297l7.057 17.27l-5.021 12.177l3.601.715L44.021 55.47h-3.894l-5.002 12.654l-5.027-12.654zm60.342 3.006c2.381 0 4.28 1.485 4.893 3.812h-9.78c.673-2.327 2.571-3.812 4.887-3.812m-31.562.199c1.453 0 2.685.51 3.656 1.508c.976 1.008 1.447 2.256 1.447 3.818c0 1.54-.476 2.784-1.447 3.787c-.97 1.004-2.203 1.508-3.656 1.508c-1.476 0-2.667-.494-3.655-1.508c-.987-1.014-1.482-2.29-1.482-3.787c0-1.54.484-2.793 1.482-3.818c.988-1.02 2.18-1.508 3.655-1.508\\\"/><path fill=\\\"url(#deviconCypressioWordmark1)\\\" d=\\\"m28.66 83.35l-.879 2.12a1.179 1.179 0 0 1-1.02.727a24.19 24.19 0 0 1-.894.022c-10.322-.005-19.456-7.284-21.723-17.313l-3.515.792c1.27 5.625 4.459 10.729 8.977 14.379a25.984 25.984 0 0 0 16.218 5.738h.054c.347 0 .689-.01 1.03-.021a4.775 4.775 0 0 0 4.204-2.951l1.144-2.777z\\\"/>\"\n\t\t},\n\t\t\"d3js\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconD3js0\\\" x1=\\\"-201.009\\\" x2=\\\"-200.098\\\" y1=\\\"376.844\\\" y2=\\\"375.873\\\" gradientTransform=\\\"matrix(82.4907 0 0 -81.4303 16634.416 30700.326)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f9a03c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f7974e\\\"/></linearGradient><path fill=\\\"url(#deviconD3js0)\\\" d=\\\"M126.334 90.59a37.18 37.18 0 0 0 .128-1.647C126.5 88.288 87.094 50.9 87.094 50.9h-.942s39.94 42.13 40.182 39.69\\\"/><linearGradient id=\\\"deviconD3js1\\\" x1=\\\"-199.257\\\" x2=\\\"-197.514\\\" y1=\\\"373.615\\\" y2=\\\"371.916\\\" gradientTransform=\\\"matrix(40.2105 0 0 -40.4122 8003.203 15127)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f9a03c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f7974e\\\"/></linearGradient><path fill=\\\"url(#deviconD3js1)\\\" d=\\\"M42.26 77.62a26.282 26.282 0 0 1-.328.702c-1.256 2.62 17.585 21.038 19.1 18.8c.07-.098.14-.202.208-.3c.077-.118.152-.23.228-.348c1.213-1.84-18.67-20.05-19.207-18.854z\\\"/><linearGradient id=\\\"deviconD3js2\\\" x1=\\\"-199.836\\\" x2=\\\"-198.286\\\" y1=\\\"374.252\\\" y2=\\\"372.475\\\" gradientTransform=\\\"matrix(41.0403 0 0 -39.9333 8224.5 14997.683)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f9a03c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f7974e\\\"/></linearGradient><path fill=\\\"url(#deviconD3js2)\\\" d=\\\"M68.886 103.52c-.053.118-.433.76-.78 1.098c-.058.117 18.394 18.417 18.394 18.417h1.66c.002 0-17.32-18.74-19.274-19.514z\\\"/><linearGradient id=\\\"deviconD3js3\\\" x1=\\\"-201.143\\\" x2=\\\"-200.795\\\" y1=\\\"379.263\\\" y2=\\\"378.804\\\" gradientTransform=\\\"matrix(255.8347 0 0 -242.016 51476.605 91789.102)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f26d58\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f9a03c\\\"/></linearGradient><path fill=\\\"url(#deviconD3js3)\\\" d=\\\"M126.488 88.61c-.863 19.13-16.69 34.425-36.024 34.425H87.85l-19.31-19.022a69.313 69.313 0 0 0 4.38-6.98h17.544c5.55 0 10.064-4.514 10.064-10.065c0-5.55-4.515-10.064-10.064-10.064H80.082A69.373 69.373 0 0 0 81.306 64c0-4.48-.44-8.852-1.26-13.1h6.45l39.88 39.295a48.62 48.62 0 0 0 .112-1.585M11.962 4.772H1.472v26.003h10.49c18.32 0 33.23 14.903 33.23 33.225c0 4.984-1.113 9.716-3.088 13.964L61.24 96.82A58.882 58.882 0 0 0 71.2 64c0-32.658-26.574-59.228-59.236-59.228z\\\"/><linearGradient id=\\\"deviconD3js4\\\" x1=\\\"-200.962\\\" x2=\\\"-200.452\\\" y1=\\\"378.553\\\" y2=\\\"378.218\\\" gradientTransform=\\\"matrix(160.7307 0 0 -174.8133 32360.78 66184.883)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#b84e51\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f68e48\\\"/></linearGradient><path fill=\\\"url(#deviconD3js4)\\\" d=\\\"M90.464 4.772H47.986a69.81 69.81 0 0 1 24.82 26.003h17.658c5.55 0 10.064 4.513 10.064 10.064c0 5.55-4.515 10.06-10.064 10.06h-3.968l39.88 39.296a36.65 36.65 0 0 0 .152-3.228c0-8.766-3.146-16.807-8.368-23.066c5.223-6.256 8.368-14.3 8.368-23.063c0-19.887-16.177-36.068-36.064-36.068z\\\"/><linearGradient id=\\\"deviconD3js5\\\" x1=\\\"-200.619\\\" x2=\\\"-200.595\\\" y1=\\\"377.137\\\" y2=\\\"376.532\\\" gradientTransform=\\\"matrix(176.7653 0 0 -92.6293 35504.598 35022.56)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f9a03c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f7974e\\\"/></linearGradient><path fill=\\\"url(#deviconD3js5)\\\" d=\\\"M87.85 123.035H48.29a69.95 69.95 0 0 0 20.25-19.022zM61.24 96.82L42.106 77.965c-5.287 11.362-16.807 19.264-30.143 19.264H1.472v26h10.49c20.53 0 38.648-10.5 49.28-26.407z\\\"/>\"\n\t\t},\n\t\t\"dart\": {\n\t\t\t\"body\": \"<path fill=\\\"#00c4b3\\\" d=\\\"m35.2 34.9l-8.3-8.3v59.7l.1 2.8c0 1.3.2 2.8.7 4.3l65.6 23.1l16.3-7.2z\\\"/><path fill=\\\"#22d3c5\\\" d=\\\"m109.6 109.3l-16.3 7.2l-65.4-23.1c1.3 4.8 4 10.1 7 13.2l21.3 21.2l47.6.1z\\\"/><path fill=\\\"#0075c9\\\" d=\\\"M1.7 65.1C-.4 67.3.7 72 4 75.5l14.7 14.8l9.2 3.3c-.3-1.5-.7-3-.7-4.3l-.1-2.8l-.2-59.8m82.7 82.6l7.2-16.4l-23-65.6c-1.5-.3-3-.6-4.3-.7l-2.9-.1l-59.6.1\\\"/><path fill=\\\"#00a8e1\\\" d=\\\"M93.6 27.3c.2 0 .2 0 0 0c.2 0 .2 0 0 0m16 82l17.7-5.8V54.8l-20.4-20.5c-3-3-8.3-5.8-13.2-7l23.1 65.6\\\"/><path fill=\\\"#00c4b3\\\" d=\\\"M90.5 18.2L75.7 3.5c-3.4-3.4-8-4.4-10.4-2.3L26.9 26.6h59.5l2.9.1c1.3 0 2.8.2 4.3.7z\\\"/>\"\n\t\t},\n\t\t\"dart-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#231f20\\\" d=\\\"M65.3 55.4c2.8 2.6 4.2 6.1 4.2 10.6s-1.4 8.1-4.1 10.8c-2.7 2.6-6.9 4-12.4 4h-9.8V51.7h10.1c5.2 0 9.2 1.2 12 3.7m-4.8 17.3c1.6-1.5 2.4-3.7 2.4-6.6c0-2.9-.8-5.1-2.4-6.7c-1.6-1.5-4.1-2.4-7.4-2.4h-3.8v18h4.2c3.1 0 5.4-.8 7-2.3m32.1 8.1h-5.8V78c-1.7 2-3.6 3-6 3s-4.4-.7-6-2.1c-1.6-1.4-2.4-3.2-2.4-5.5s.8-4 2.5-5.1c1.7-1.1 4-1.7 6.9-1.7h4.6v-.2c0-2.4-1.2-3.6-3.8-3.6c-1.1 0-2.2.2-3.4.6c-1.2.4-2.2 1-3.1 1.6l-2.8-4.1c3-2.2 6.3-3.2 10.1-3.2c2.7 0 4.9.7 6.6 2.1c1.7 1.4 2.5 3.5 2.5 6.5v14.5zm-6.3-8.6v-.9h-3.9c-2.5 0-3.8.7-3.8 2.2c0 .8.3 1.4.9 1.8c.6.4 1.4.6 2.6.6c1.1 0 2.1-.3 2.9-1c.9-.7 1.3-1.6 1.3-2.7m22.8-8.4c-1.9 0-3.4.6-4.3 2c-.9 1.3-1.5 3.1-1.5 5.3v9.8h-6.2V58.4h6.2v2.9c.8-.9 2-1.7 3.2-2.3c1.2-.6 2.6-1 3.9-1v5.9zm11.3-.9v9.9c0 .9.2 1.5.7 2c.4.5 1 .7 1.6.7c1.2 0 2.2-.5 3-1.6l2.3 4.4c-1.9 1.8-4 2.7-6.1 2.7c-2.2 0-4-.7-5.5-2.1c-1.5-1.4-2.2-3.4-2.2-5.8V51.7h6.2V58h6.6l-3.4 5z\\\"/><path fill=\\\"#00c4b3\\\" d=\\\"m9.3 56.3l-2.2-2.2v16.4c0 .3.1.7.2 1.1l17.3 6.1l4.3-1.9z\\\"/><path fill=\\\"#22d3c5\\\" d=\\\"m28.9 75.9l-4.3 1.9l-17.3-6.1c.3 1.3 1 2.7 1.8 3.5l5.6 5.6h12.5z\\\"/><path fill=\\\"#0075c9\\\" d=\\\"M.5 64.2c-.6.6-.3 1.8.6 2.8L5 70.9l2.4.9c-.1-.4-.2-.8-.2-1.1V70l-.1-15.9\\\"/><path fill=\\\"#0075c9\\\" d=\\\"m28.9 75.9l1.9-4.3l-6.1-17.3c-.4-.1-.8-.2-1.1-.2H7.1\\\"/><path fill=\\\"#00a8e1\\\" d=\\\"m28.9 75.9l4.7-1.5V61.5l-5.4-5.4c-.8-.8-2.2-1.5-3.5-1.8l6.1 17.3\\\"/><path fill=\\\"#00c4b3\\\" d=\\\"m23.9 51.9l-4-3.9c-.9-.9-2.1-1.2-2.7-.6L7.1 54.1h16.5c.3 0 .7.1 1.1.2z\\\"/>\"\n\t\t},\n\t\t\"datagrip\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconDatagrip0\\\" x1=\\\"92.39\\\" x2=\\\"95.19\\\" y1=\\\"40.62\\\" y2=\\\"65.06\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".16\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".54\\\" stop-color=\\\"#419fbc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#6b57ff\\\"/></linearGradient><linearGradient id=\\\"deviconDatagrip1\\\" x1=\\\"66.85\\\" x2=\\\"73.95\\\" y1=\\\"30.12\\\" y2=\\\"11.96\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6b57ff\\\"/><stop offset=\\\".95\\\" stop-color=\\\"#21d789\\\"/></linearGradient><linearGradient id=\\\"deviconDatagrip2\\\" x1=\\\"27.62\\\" x2=\\\"34.52\\\" y1=\\\"52.97\\\" y2=\\\"83.01\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6b57ff\\\"/><stop offset=\\\".02\\\" stop-color=\\\"#685cfb\\\"/><stop offset=\\\".28\\\" stop-color=\\\"#4a91ca\\\"/><stop offset=\\\".51\\\" stop-color=\\\"#34b7a7\\\"/><stop offset=\\\".69\\\" stop-color=\\\"#26ce91\\\"/><stop offset=\\\".8\\\" stop-color=\\\"#21d789\\\"/></linearGradient><linearGradient id=\\\"deviconDatagrip3\\\" x1=\\\"10.48\\\" x2=\\\"94.6\\\" y1=\\\"52.51\\\" y2=\\\"98.96\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".08\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".89\\\" stop-color=\\\"#6b57ff\\\"/></linearGradient><linearGradient id=\\\"deviconDatagrip4\\\" x1=\\\"10.99\\\" x2=\\\"95.54\\\" y1=\\\"41.31\\\" y2=\\\"41.31\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".31\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".49\\\" stop-color=\\\"#59a3b2\\\"/><stop offset=\\\".77\\\" stop-color=\\\"#b74af7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff45ed\\\"/></linearGradient></defs><path fill=\\\"url(#deviconDatagrip0)\\\" d=\\\"m115.055 23.676l7.46 47.906l-13.788 8.023Zm0 0\\\"/><path fill=\\\"url(#deviconDatagrip1)\\\" d=\\\"M115.055 23.676L73.156 5.484l-11.691 9.704Zm0 0\\\"/><path fill=\\\"url(#deviconDatagrip2)\\\" d=\\\"M84.566 122.516L19.555 70.719L6.496 109.984Zm0 0\\\"/><path fill=\\\"url(#deviconDatagrip3)\\\" d=\\\"M93.621 89.781L5.484 59.5l79.082 63.016Zm0 0\\\"/><path fill=\\\"url(#deviconDatagrip4)\\\" d=\\\"M5.484 6.316V59.5l101.559 34.902l8.012-70.726Zm0 0\\\"/><path d=\\\"M27.43 27.281h73.14v73.145H27.43Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M34.852 36.79h11.812c9.508 0 16.094 6.534 16.094 15.058v.082c0 8.535-6.586 15.14-16.094 15.14H34.852Zm6.656 6.01v18.286h5.156a8.632 8.632 0 0 0 9.121-9.043v-.113a8.698 8.698 0 0 0-9.12-9.13Zm22.43 9.216v-.086a15.549 15.549 0 0 1 15.847-15.664a16.613 16.613 0 0 1 11.899 4.156l-4.192 5.062a11.193 11.193 0 0 0-7.914-3.074c-4.875 0-8.703 4.293-8.703 9.438v.082c0 5.535 3.816 9.61 9.18 9.61a10.646 10.646 0 0 0 6.289-1.806v-4.34H79.64v-5.753h13.152v13.152a19.633 19.633 0 0 1-12.934 4.805c-9.433 0-15.921-6.645-15.921-15.582ZM34.156 86.699h27.43v4.57h-27.43Zm0 0\\\"/>\"\n\t\t},\n\t\t\"dataspell\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconDataspell0\\\" x1=\\\"118.662\\\" x2=\\\"12.607\\\" y1=\\\"48.537\\\" y2=\\\"48.537\\\" gradientTransform=\\\"translate(5.818 5.818)scale(.72727)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".917\\\" stop-color=\\\"#fcf84a\\\"/></linearGradient><linearGradient id=\\\"deviconDataspell1\\\" x1=\\\"122.892\\\" x2=\\\"122.892\\\" y1=\\\"46.19\\\" y2=\\\"178.551\\\" gradientTransform=\\\"translate(5.818 5.818)scale(.72727)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#087cfa\\\"/></linearGradient><linearGradient id=\\\"deviconDataspell2\\\" x1=\\\"210.443\\\" x2=\\\"53.987\\\" y1=\\\"166.793\\\" y2=\\\"39.294\\\" gradientTransform=\\\"translate(5.818 5.818)scale(.72727)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".105\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".967\\\" stop-color=\\\"#087cfa\\\"/></linearGradient><linearGradient id=\\\"deviconDataspell3\\\" x1=\\\"138.334\\\" x2=\\\"28.056\\\" y1=\\\"-12.316\\\" y2=\\\"112.666\\\" gradientTransform=\\\"translate(5.818 5.818)scale(.72727)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".235\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".74\\\" stop-color=\\\"#087cfa\\\"/></linearGradient><linearGradient id=\\\"deviconDataspell4\\\" x1=\\\"79.87\\\" x2=\\\"79.87\\\" y1=\\\"7.553\\\" y2=\\\"94.991\\\" gradientTransform=\\\"translate(5.818 5.818)scale(.72727)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".084\\\" stop-color=\\\"#878585\\\"/><stop offset=\\\".538\\\"/></linearGradient></defs><path fill=\\\"url(#deviconDataspell0)\\\" d=\\\"M80.605 5.816L82.91 53.09L24 76.363L5.816 29.332Zm0 0\\\"/><path fill=\\\"#21d789\\\" d=\\\"m122.184 33.453l-50.91 22.063l9.331-49.7Zm0 0\\\"/><path fill=\\\"url(#deviconDataspell1)\\\" d=\\\"m68.242 44.363l53.942-10.91v51.031L85.09 98.426l-15.153-13.82Zm0 0\\\"/><path fill=\\\"url(#deviconDataspell2)\\\" d=\\\"m45.816 29.453l37.22 5.758l39.148 48.82l-37.579 14.516l-14.5-14.395Zm0 0\\\"/><path fill=\\\"url(#deviconDataspell3)\\\" d=\\\"M29.816 5.816L82.91 35.152l-18.305 87.032h-30.91L6.91 94.547Zm0 0\\\"/><path fill=\\\"url(#deviconDataspell4)\\\" d=\\\"M99.453 28.547H28.547v70.906h70.906Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M62.816 87.242h-26.39v4.332h26.39Zm-26.09-49.605h10.368c8.41 0 14.086 5.672 14.086 13.105c0 7.434-5.672 13.301-14.086 13.301l-10.367.195Zm5.868 5.476v15.844h4.5c4.695 0 8.02-3.129 8.02-7.824c0-4.696-3.13-8.02-8.02-8.02ZM64 60.22l3.426-4.137c2.367 2.008 4.965 3.191 7.918 3.191c2.367 0 3.902-.945 3.902-2.48v-.121c0-1.535-.945-2.246-5.32-3.426c-5.434-1.3-8.864-2.836-8.864-8.156v-.117c0-4.844 3.903-8.035 9.336-8.035c3.903 0 7.211 1.18 9.93 3.425l-3.074 4.375c-2.363-1.656-4.727-2.601-6.973-2.601c-2.246 0-3.426 1.062-3.426 2.363v.117c0 1.774 1.18 2.363 5.79 3.547c5.437 1.418 8.507 3.309 8.507 8.035v.121c0 5.317-4.015 8.27-9.808 8.27c-4.016-.117-8.153-1.535-11.344-4.371m0 0\\\"/>\"\n\t\t},\n\t\t\"dataspell-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M20.113 56.688H5.484v14.624h14.63Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M12.8 68.559H7.313v.925h5.489ZM7.313 58.516h2.149c1.73 0 2.898 1.168 2.898 2.73v.024c0 1.535-1.191 2.73-2.898 2.73h-2.15Zm1.223 1.097v3.29h.926c.973 0 1.656-.657 1.656-1.633v-.024c0-.976-.656-1.66-1.656-1.66h-.926Zm4.266 3.606l.707-.852c.488.414 1.023.656 1.656.656c.488 0 .805-.195.805-.511v-.024c0-.316-.196-.465-1.121-.707c-1.121-.293-1.828-.586-1.828-1.683v-.024c0-1 .804-1.656 1.925-1.656c.805 0 1.489.242 2.047.707l-.633.926c-.488-.344-.976-.535-1.437-.535c-.465 0-.707.218-.707.484v.027c0 .364.242.485 1.195.73c1.121.294 1.754.684 1.754 1.657v.027c0 1.094-.828 1.704-2.023 1.704c-.829-.047-1.684-.34-2.34-.926m0 0\\\"/><path d=\\\"M25.648 56.734h5.657c4.558 0 7.703 3.121 7.703 7.22V64c0 4.098-3.145 7.266-7.703 7.266h-5.657Zm3.196 2.903v8.75h2.46c2.61 0 4.364-1.754 4.364-4.34V64c0-2.559-1.754-4.363-4.363-4.363Zm11.191 8.433v-.047c0-2.414 1.852-3.535 4.485-3.535c1.12 0 1.925.196 2.707.461v-.195c0-1.317-.805-2.024-2.391-2.024c-1.195 0-2.047.223-3.07.61l-.782-2.41c1.22-.54 2.414-.903 4.317-.903c1.73 0 2.972.461 3.754 1.243c.828.828 1.195 2.046 1.195 3.535v6.437h-3.047v-1.195c-.758.851-1.832 1.414-3.367 1.414c-2.07 0-3.8-1.195-3.8-3.39Zm7.238-.73v-.559a4.894 4.894 0 0 0-2-.418c-1.34 0-2.168.54-2.168 1.54v.046c0 .856.708 1.34 1.73 1.34c1.438 0 2.438-.805 2.438-1.95Zm5.293.758v-5.27H51.25v-2.68h1.316v-2.851h3.145v2.851h2.61v2.707h-2.61v4.754c0 .73.316 1.07 1.023 1.07c.586 0 1.098-.144 1.559-.386v2.535c-.656.387-1.438.633-2.484.633c-1.926-.023-3.243-.781-3.243-3.363m6.582-.028v-.047c0-2.414 1.852-3.535 4.485-3.535c1.12 0 1.926.196 2.707.461v-.195c0-1.317-.805-2.024-2.387-2.024c-1.195 0-2.05.223-3.074.61l-.781-2.41c1.218-.54 2.414-.903 4.316-.903c1.73 0 2.977.461 3.754 1.243c.832.828 1.195 2.046 1.195 3.535v6.437h-3.047v-1.195c-.757.851-1.828 1.414-3.363 1.414c-2.074 0-3.805-1.195-3.805-3.39Zm7.243-.73v-.559a4.922 4.922 0 0 0-2-.418c-1.34 0-2.172.54-2.172 1.54v.046c0 .856.707 1.34 1.734 1.34c1.438 0 2.438-.805 2.438-1.95Zm4.214 1.805l1.88-2.27c1.316 1.074 2.683 1.758 4.34 1.758c1.316 0 2.097-.512 2.097-1.367v-.047c0-.805-.488-1.219-2.926-1.852c-2.926-.758-4.805-1.562-4.805-4.437v-.051c0-2.633 2.121-4.363 5.07-4.363c2.122 0 3.927.656 5.391 1.851l-1.66 2.414c-1.289-.902-2.558-1.437-3.777-1.437c-1.219 0-1.88.558-1.88 1.265v.051c0 .95.638 1.266 3.122 1.903c2.953.753 4.61 1.828 4.61 4.363v.047c0 2.879-2.196 4.511-5.34 4.511c-2.168-.023-4.387-.78-6.122-2.34ZM83.7 60.148h3.145v1.586c.758-1.05 1.828-1.804 3.465-1.804c2.582 0 5.046 2.023 5.046 5.754v.046c0 3.707-2.414 5.754-5.046 5.754c-1.684 0-2.707-.754-3.465-1.656v4.777H83.7Zm8.535 5.582v-.046c0-1.856-1.246-3.075-2.707-3.075c-1.465 0-2.707 1.22-2.707 3.075v.046c0 1.856 1.22 3.075 2.707 3.075c1.461-.028 2.707-1.22 2.707-3.075m4.094.024v-.047c0-3.168 2.27-5.777 5.488-5.777c3.704 0 5.41 2.875 5.41 6.02c0 .245-.023.538-.046.831h-7.707c.32 1.438 1.316 2.168 2.707 2.168c1.05 0 1.828-.34 2.707-1.144l1.804 1.582c-1.046 1.293-2.535 2.074-4.535 2.074c-3.363.047-5.828-2.293-5.828-5.707m7.852-.926c-.196-1.414-1.024-2.363-2.34-2.363c-1.317 0-2.145.926-2.414 2.363Zm4.73-8.703h3.145v15.14h-3.145Zm5.41 0h3.149v15.14h-3.149Zm0 0\\\"/>\"\n\t\t},\n\t\t\"dbeaver\": {\n\t\t\t\"body\": \"<path fill=\\\"#382a24\\\" d=\\\"M59.691 2.094h8.371c23.727 2.445 41 14.258 51.813 35.445c3.223 7.078 5.152 14.461 5.785 22.152v8.371c-2.445 23.727-14.258 41-35.445 51.813c-7.078 3.223-14.461 5.152-22.153 5.785h-8.37c-23.727-2.445-41-14.258-51.817-35.445c-3.223-7.078-5.148-14.461-5.781-22.153v-8.37c2.445-23.727 14.258-41 35.445-51.817C44.617 4.652 52 2.727 59.691 2.094m0 0\\\"/><path fill=\\\"#e1d7cb\\\" d=\\\"M111.383 63.383c-.266-6.586-1.988-12.742-5.168-18.461a13.7 13.7 0 0 0 .617-5.906c-.508-1.262-1.45-1.957-2.832-2.094a83.255 83.255 0 0 0-6.398-.121c.441-.2.933-.324 1.476-.371a43.914 43.914 0 0 0-10.34-10.953c-5.183-4.274-11.175-6.407-17.968-6.399c-5.375.11-10.383 1.543-15.016 4.305c-9.809 5.61-17.93 13.074-24.371 22.402c-2 .23-4.012.352-6.028.367c-10.464-1.644-13.5 2.38-9.109 12.063a158.88 158.88 0 0 1 4.922 10.832c-.223 2.95-.387 5.902-.492 8.86A248.742 248.742 0 0 0 11.69 93.66c-.164.328-.328.328-.492 0c-8.031-15.05-9.797-30.805-5.293-47.262c6.77-20.222 20.27-33.722 40.492-40.492C68.355.13 87.883 4.641 104.984 19.446c15.66 15.304 21.774 33.808 18.34 55.507c-2.812 14.043-9.582 25.734-20.308 35.078c-.54.473-1.114.801-1.723.985c-1.535-4.579-1.25-9.047.86-13.414a72.913 72.913 0 0 0 7.386-16.247c1.758-5.918 2.371-11.906 1.844-17.972m0 0\\\"/><path fill=\\\"#fcfcfc\\\" d=\\\"M88.738 25.477a43.914 43.914 0 0 1 10.34 10.953a4.507 4.507 0 0 0-1.476.37a42.537 42.537 0 0 0-12.309 2.708c-3.856.187-7.711.308-11.57.367c-.98.398-1.965.441-2.953.125c-2.778-.117-5.075-1.227-6.895-3.324c-2.73-1.668-5.602-1.996-8.613-.985c-2.13 1.461-2.91 3.47-2.34 6.032c1.308 2.324 1.676 4.785 1.11 7.386a9.527 9.527 0 0 0-.618 1.23A122.545 122.545 0 0 0 35.2 71.263a40.046 40.046 0 0 0-3.691 8.613c-.492 4.273 1.273 7.184 5.293 8.742a26.73 26.73 0 0 0 6.89 1.723c-1.968 1.496-4.187 1.988-6.644 1.476a35.732 35.732 0 0 1-8.984-2.832a250.424 250.424 0 0 0-8.247 16.246a165.412 165.412 0 0 1-4.8-5.66a1.046 1.046 0 0 1 0-.984a196.52 196.52 0 0 1 6.89-14.523c1.282 2.269 3.13 3.789 5.54 4.554c-1.93-1.851-3.122-4.11-3.571-6.77a31.083 31.083 0 0 1 1.234-12.554c4.938-15.84 13.84-28.93 26.707-39.262c5.551-3.965 11.704-6.508 18.461-7.633c6.403-.437 12.559.586 18.461 3.079Zm0 0\\\"/><path fill=\\\"#382a24\\\" d=\\\"M70.77 40a89.404 89.404 0 0 0-10.094 4.309a100.73 100.73 0 0 0-6.524 5.293a.607.607 0 0 1-.12-.493c.566-2.601.198-5.062-1.11-7.386c-.57-2.563.21-4.57 2.34-6.032c3.011-1.011 5.883-.683 8.613.985c1.82 2.097 4.117 3.207 6.895 3.324m0 0\\\"/><path fill=\\\"#372923\\\" d=\\\"M97.602 36.8c2.132-.042 4.265 0 6.398.122c1.383.137 2.324.832 2.832 2.094a13.7 13.7 0 0 1-.617 5.906c-1.508 4.21-3.809 7.941-6.89 11.203c-2.157 1.457-4.454 1.703-6.895.738c-5.399-1.61-9.707-4.687-12.922-9.234c-1.024-2.582-.328-4.594 2.094-6.027c1.23-.7 2.46-1.395 3.691-2.094A42.537 42.537 0 0 1 97.602 36.8m0 0\\\"/><path fill=\\\"#887363\\\" d=\\\"M85.293 39.508c-1.23.699-2.461 1.394-3.691 2.094c-2.422 1.433-3.118 3.445-2.094 6.027c3.215 4.547 7.523 7.625 12.922 9.234c2.441.965 4.738.719 6.894-.738c3.082-3.262 5.383-6.992 6.89-11.203c3.18 5.719 4.903 11.875 5.169 18.46a55.431 55.431 0 0 1-4.797 11.079a33.985 33.985 0 0 1-3.078 3.816a51.437 51.437 0 0 0-3.445 2.586l-.247-.37a32.512 32.512 0 0 0 .86-12.677a9.456 9.456 0 0 0-1.23-3.199a43.144 43.144 0 0 1-4.184 15.754c-3.172 5.95-8.051 8.043-14.645 6.274c-9.86-2.813-18.515-7.696-25.972-14.645a37.628 37.628 0 0 0 2.464 8.617c1.52 4.586 1.93 9.262 1.23 14.028a15.734 15.734 0 0 1-.984 2.957a117.498 117.498 0 0 0-8.617 16.984a51.671 51.671 0 0 0-1.968 6.644a.94.94 0 0 1-.618.493c-10.257-3.22-19.039-8.715-26.336-16.493a250.509 250.509 0 0 1 8.247-16.246a35.732 35.732 0 0 0 8.984 2.832c2.457.512 4.676.02 6.644-1.476a26.73 26.73 0 0 1-6.89-1.723c-4.02-1.558-5.785-4.469-5.293-8.742a40.046 40.046 0 0 1 3.691-8.613A122.545 122.545 0 0 1 53.414 50.34c.176-.426.383-.836.617-1.23a.607.607 0 0 0 .121.492a100.73 100.73 0 0 1 6.524-5.293A89.404 89.404 0 0 1 70.77 40c.988.316 1.972.273 2.953-.125c3.863-.059 7.718-.184 11.57-.367m0 0\\\"/><path fill=\\\"#fbfbfb\\\" d=\\\"M102.031 83.078a88.223 88.223 0 0 1-5.785 16.738c-.52.973-1.3 1.63-2.34 1.97l-.246-.372a25.19 25.19 0 0 0 1.477-9.23a43.549 43.549 0 0 1-4.059 10.586c-1.89.777-3.82.898-5.785.367a7.794 7.794 0 0 1-1.356-2.582a55.403 55.403 0 0 1-1.105-9.356c7.805.528 14.203-2.18 19.2-8.12Zm0 0\\\"/>\"\n\t\t},\n\t\t\"debian\": {\n\t\t\t\"body\": \"<path fill=\\\"#A80030\\\" d=\\\"M73.776 67.531c-2.065.028.391 1.063 3.087 1.479a27.453 27.453 0 0 0 2.023-1.741c-1.679.41-3.387.419-5.11.262m11.086-2.763c1.229-1.697 2.127-3.556 2.442-5.478c-.276 1.369-1.019 2.553-1.72 3.801c-3.86 2.431-.363-1.443-.002-2.916c-4.15 5.225-.57 3.133-.72 4.593m4.093-10.648c.249-3.72-.733-2.544-1.063-1.125c.384.201.69 2.622 1.063 1.125M65.944 3.283c1.102.198 2.381.35 2.202.612c1.206-.263 1.48-.506-2.202-.612m2.202.613l-.779.161l.725-.064zm34.372 51.634c.123 3.34-.978 4.961-1.969 7.829l-1.786.892c-1.46 2.838.142 1.802-.903 4.059c-2.281 2.027-6.921 6.345-8.406 6.738c-1.084-.023.734-1.278.972-1.771c-3.052 2.098-2.449 3.147-7.118 4.422l-.136-.305c-11.516 5.417-27.51-5.318-27.299-19.966c-.123.931-.349.697-.605 1.074c-.594-7.537 3.481-15.107 10.353-18.196c6.722-3.329 14.602-1.963 19.417 2.524c-2.644-3.465-7.909-7.137-14.148-6.793c-6.111.097-11.828 3.98-13.735 8.196c-3.132 1.972-3.495 7.6-4.859 8.628c-1.835 13.491 3.453 19.318 12.398 26.175c1.407.949.396 1.093.587 1.815c-2.972-1.392-5.694-3.493-7.931-6.065c1.186 1.739 2.468 3.429 4.125 4.756c-2.803-.949-6.546-6.79-7.64-7.028c4.832 8.649 19.599 15.169 27.333 11.935c-3.579.131-8.124.073-12.145-1.413c-1.688-.869-3.984-2.669-3.574-3.007c10.553 3.944 21.456 2.988 30.586-4.333c2.323-1.81 4.861-4.887 5.594-4.93c-1.105 1.661.188.8-.66 2.266c2.316-3.733-1.005-1.521 2.394-6.448l1.256 1.729c-.467-3.098 3.848-6.861 3.41-11.762c.99-1.499 1.104 1.612.054 5.061c1.457-3.825.384-4.44.759-7.597c.404 1.062.935 2.188 1.208 3.308c-.95-3.696.975-6.226 1.45-8.373c-.467-.208-1.464 1.634-1.692-2.732c.034-1.896.528-.993.718-1.46c-.373-.215-1.349-1.668-1.944-4.456c.431-.655 1.151 1.698 1.739 1.795c-.378-2.217-1.028-3.907-1.053-5.609c-1.713-3.579-.606.478-1.996-1.536c-1.823-5.687 1.513-1.32 1.738-3.903c2.763 4.003 4.339 10.208 5.062 12.777c-.552-3.133-1.443-6.168-2.532-9.105c.839.354-1.352-6.446 1.091-1.943c-2.609-9.6-11.166-18.569-19.038-22.778c.962.881 2.179 1.989 1.743 2.162c-3.915-2.331-3.227-2.513-3.787-3.498c-3.19-1.297-3.399.104-5.511.003c-6.012-3.188-7.171-2.85-12.703-4.848l.252 1.177c-3.984-1.327-4.641.503-8.945.004c-.263-.205 1.379-.74 2.73-.937c-3.85.508-3.67-.759-7.438.14c.929-.651 1.909-1.082 2.9-1.637c-3.139.191-7.495 1.828-6.151.339c-5.121 2.286-14.218 5.493-19.322 10.28l-.161-1.073c-2.339 2.809-10.2 8.387-10.826 12.022l-.625.146c-1.218 2.06-2.004 4.396-2.97 6.517c-1.592 2.713-2.334 1.044-2.107 1.469c-3.132 6.349-4.687 11.683-6.03 16.057c.958 1.432.022 8.614.385 14.364c-1.572 28.394 19.928 55.962 43.43 62.329c3.445 1.23 8.567 1.184 12.924 1.311c-5.141-1.471-5.806-.778-10.813-2.525c-3.614-1.701-4.405-3.644-6.964-5.864l1.014 1.79c-5.019-1.775-2.918-2.198-7.002-3.491l1.083-1.412c-1.627-.123-4.309-2.74-5.042-4.191l-1.779.07c-2.138-2.638-3.277-4.538-3.194-6.011l-.575 1.024c-.652-1.119-7.865-9.893-4.123-7.85c-.696-.637-1.62-1.035-2.622-2.856l.762-.871c-1.802-2.316-3.315-5.287-3.2-6.276c.96 1.298 1.627 1.54 2.287 1.763c-4.548-11.285-4.803-.622-8.248-11.487l.729-.059c-.559-.842-.898-1.756-1.347-2.652l.316-3.161c-3.274-3.786-.916-16.098-.443-22.851c.328-2.746 2.733-5.669 4.563-10.252l-1.114-.192c2.131-3.717 12.167-14.928 16.815-14.351c2.251-2.829-.446-.011-.886-.723c4.945-5.119 6.5-3.617 9.838-4.537c3.6-2.137-3.089.833-1.383-.815c6.223-1.589 4.41-3.613 12.528-4.42c.857.487-1.987.752-2.701 1.385c5.185-2.536 16.408-1.959 23.697 1.408c8.458 3.952 17.961 15.638 18.336 26.631l.427.114c-.216 4.37.669 9.424-.865 14.066zM51.233 70.366l-.29 1.448c1.357 1.845 2.435 3.843 4.167 5.283c-1.246-2.434-2.173-3.44-3.877-6.731m3.208-.126c-.718-.795-1.144-1.751-1.62-2.704c.456 1.675 1.388 3.114 2.255 4.578zm56.785-12.343l-.304.762a36.72 36.72 0 0 1-3.599 11.487a36.107 36.107 0 0 0 3.903-12.249M66.353 2.293c1.396-.513 3.433-.281 4.914-.617c-1.93.162-3.852.259-5.75.503zM17.326 28.362c.322 2.979-2.242 4.135.567 2.171c1.506-3.39-.588-.935-.567-2.171M14.025 42.15c.646-1.986.764-3.18 1.011-4.328c-1.788 2.285-.823 2.773-1.011 4.328\\\"/>\"\n\t\t},\n\t\t\"debian-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#A80030\\\" d=\\\"M69.687 42.927c-1.289.018.243.663 1.926.923c.467-.364.886-.73 1.263-1.087c-1.048.257-2.114.262-3.189.164m6.917-1.724c.771-1.061 1.33-2.221 1.527-3.419c-.174.854-.636 1.591-1.074 2.372c-2.409 1.518-.228-.9-.002-1.823c-2.589 3.265-.356 1.958-.451 2.87m2.557-6.649c.157-2.321-.457-1.586-.663-.701c.24.125.431 1.637.663.701M64.795 2.819c.689.123 1.488.217 1.373.383c.756-.167.926-.318-1.373-.383m1.374.383l-.483.101l.451-.043zm21.46 32.233c.077 2.085-.609 3.098-1.229 4.89l-1.115.555c-.912 1.772.091 1.125-.563 2.534c-1.425 1.266-4.319 3.959-5.246 4.206c-.677-.014.458-.798.607-1.105c-1.906 1.308-1.53 1.964-4.445 2.76l-.085-.191c-7.188 3.383-17.173-3.319-17.043-12.463c-.075.581-.218.435-.377.668c-.37-4.704 2.173-9.428 6.464-11.361c4.195-2.075 9.115-1.225 12.119 1.58c-1.649-2.163-4.938-4.455-8.829-4.243c-3.815.063-7.385 2.486-8.575 5.119c-1.954 1.229-2.182 4.742-3.033 5.386c-1.146 8.421 2.155 12.059 7.741 16.339c.876.592.246.683.364 1.134c-1.856-.868-3.554-2.18-4.951-3.786c.742 1.084 1.541 2.139 2.576 2.967c-1.751-.591-4.088-4.24-4.77-4.388c3.016 5.4 12.234 9.47 17.064 7.45c-2.236.083-5.073.046-7.583-.882c-1.057-.542-2.488-1.665-2.232-1.874c6.589 2.46 13.394 1.862 19.095-2.708c1.451-1.13 3.035-3.052 3.493-3.078c-.688 1.038.118.499-.412 1.415c1.443-2.331-.628-.95 1.493-4.024l.784 1.079c-.294-1.937 2.403-4.285 2.129-7.345c.618-.936.688 1.008.033 3.16c.91-2.388.241-2.771.474-4.743c.251.663.585 1.367.755 2.066c-.593-2.308.607-3.885.905-5.227c-.295-.129-.915 1.02-1.059-1.705c.021-1.185.33-.621.448-.912c-.23-.134-.841-1.042-1.211-2.782c.267-.41.718 1.06 1.084 1.12c-.236-1.383-.641-2.438-.658-3.501c-1.069-2.234-.378.299-1.244-.959c-1.14-3.55.943-.824 1.085-2.436c1.725 2.498 2.706 6.372 3.16 7.977c-.346-1.956-.902-3.852-1.583-5.686c.526.222-.845-4.023.683-1.212c-1.629-5.993-6.971-11.593-11.885-14.219c.601.55 1.358 1.24 1.088 1.349c-2.445-1.454-2.017-1.569-2.366-2.183c-1.989-.81-2.122.067-3.438.002c-3.753-1.992-4.476-1.781-7.93-3.026l.156.735c-2.486-.828-2.896.312-5.583.001c-.163-.126.861-.462 1.705-.583c-2.403.316-2.292-.476-4.644.086c.578-.407 1.192-.677 1.811-1.022c-1.959.119-4.68 1.141-3.841.21c-3.196 1.428-8.875 3.43-12.063 6.418l-.1-.669c-1.459 1.752-6.367 5.234-6.759 7.506l-.391.091c-.758 1.286-1.25 2.744-1.853 4.067c-.993 1.694-1.457.652-1.315.918c-1.954 3.962-2.927 7.292-3.765 10.023c.597.893.015 5.377.239 8.966c-.979 17.728 12.441 34.938 27.112 38.91c2.15.771 5.348.744 8.067.819c-3.208-.918-3.622-.485-6.75-1.575c-2.254-1.063-2.748-2.276-4.346-3.663l.633 1.117c-3.133-1.108-1.822-1.372-4.371-2.179l.676-.88c-1.016-.077-2.689-1.711-3.147-2.617l-1.111.044c-1.334-1.645-2.046-2.833-1.993-3.753l-.359.64c-.405-.698-4.91-6.177-2.574-4.901c-.434-.396-1.011-.645-1.636-1.782l.475-.543c-1.122-1.447-2.068-3.301-1.996-3.92c.6.81 1.016.962 1.428 1.101c-2.84-7.045-2.999-.388-5.148-7.171l.454-.035c-.349-.527-.562-1.096-.841-1.657l.198-1.971c-2.043-2.361-.571-10.049-.275-14.264c.203-1.714 1.706-3.539 2.848-6.4l-.695-.12c1.33-2.319 7.595-9.317 10.498-8.958c1.405-1.767-.28-.008-.555-.451c3.088-3.196 4.059-2.258 6.143-2.833c2.246-1.333-1.928.521-.864-.508c3.886-.991 2.753-2.256 7.821-2.759c.535.304-1.241.47-1.686.864c3.235-1.584 10.241-1.223 14.795.879c5.277 2.469 11.211 9.762 11.446 16.625l.267.071c-.134 2.729.418 5.885-.541 8.782zm-32.017 9.262l-.182.903c.848 1.152 1.521 2.399 2.603 3.296c-.779-1.516-1.357-2.144-2.421-4.199m2.002-.077c-.448-.497-.712-1.095-1.012-1.689c.285 1.045.868 1.943 1.41 2.858zm35.451-7.706l-.189.476a22.912 22.912 0 0 1-2.247 7.17c1.27-2.388 2.089-5 2.436-7.646M65.052 2.2c.871-.318 2.143-.175 3.068-.385c-1.206.102-2.406.161-3.591.313zM34.444 18.475c.201 1.859-1.398 2.582.354 1.354c.94-2.117-.365-.583-.354-1.354m-2.06 8.607c.404-1.239.478-1.984.631-2.702c-1.116 1.428-.514 1.732-.631 2.702\\\"/><path d=\\\"M28.672 110.113c-.039.041-.039 6.477-.12 8.157c-.079 1.358-.199 4.277-3.078 4.277c-2.959 0-3.679-3.399-3.918-4.877c-.28-1.639-.28-3-.28-3.599c0-1.919.12-7.279 4.639-7.279c1.359 0 2.119.401 2.719.72zm-11.595 4.719c0 11.275 5.998 11.275 6.877 11.275c2.479 0 4.079-1.36 4.758-3.718l.081 3.558c.76-.041 1.519-.121 2.759-.121c.439 0 .798 0 1.119.041c.32 0 .64.039 1 .08c-.64-1.279-1.12-4.158-1.12-10.397c0-6.077 0-16.353.52-19.472c-1.438.681-2.679 1.121-5.397 1.36c1.079 1.16 1.079 1.76 1.079 7.036c-.759-.238-1.719-.519-3.358-.519c-7.159 0-8.318 6.237-8.318 10.877m21.684-2.041c.041-3.318.721-6.278 3.56-6.278c3.119 0 3.356 3.438 3.277 6.278zm10.795.401c0-4.679-.918-9.277-6.837-9.277c-8.155 0-8.155 9.038-8.155 10.956c0 8.116 3.638 11.314 9.756 11.314c2.717 0 4.038-.397 4.758-.599c-.04-1.439.159-2.359.401-3.598c-.841.521-1.921 1.2-4.319 1.2c-6.238 0-6.318-5.68-6.318-7.638H49.48zm13.008 1.719c0 3.718-.68 8.716-5.317 8.716c-.641 0-1.439-.121-1.959-.24c-.08-1.439-.08-3.919-.08-6.797c0-3.44.359-5.236.641-6.118c.839-2.837 2.718-2.877 3.076-2.877c3.039 0 3.639 4.198 3.639 7.316M51.09 119.27c0 2.959 0 4.638-.479 5.917c1.639.639 3.677.998 6.117.998c1.56 0 6.077 0 8.516-4.997c1.16-2.319 1.56-5.438 1.56-7.797c0-1.44-.16-4.597-1.319-6.598c-1.118-1.877-2.918-2.838-4.836-2.838c-3.84 0-4.958 3.199-5.558 4.839c0-2.039.039-9.157.357-12.795c-2.598 1.2-4.198 1.399-5.916 1.559c1.559.639 1.559 3.28 1.559 11.877zm23.398 6.677c-.801-.121-1.361-.201-2.521-.201c-1.277 0-2.158.081-3.077.201c.399-.76.56-1.121.68-3.719c.16-3.56.2-13.076-.08-15.075c-.2-1.521-.559-1.76-1.118-2.159c3.277-.32 4.197-.56 5.717-1.279c-.319 1.758-.361 2.641-.361 5.317c-.081 13.797-.121 15.275.76 16.915m12.804-11.318c-.079 2.52-.12 4.28-.8 5.678c-.841 1.8-2.24 2.319-3.278 2.319c-2.402 0-2.92-1.999-2.92-3.957c0-3.759 3.359-4.041 4.877-4.041zm-10.997 4.92c0 2.52.76 5.038 3.001 6.118c.998.44 1.998.44 2.319.44c3.679 0 4.918-2.72 5.678-4.399c-.04 1.759 0 2.838.12 4.239c.719-.041 1.438-.121 2.64-.121c.679 0 1.318.08 1.998.121c-.44-.679-.68-1.081-.801-2.64c-.079-1.519-.079-3.038-.079-5.158l.04-8.156c0-3.04-.801-6.039-6.799-6.039c-3.957 0-6.275 1.2-7.436 1.8c.48.88.881 1.637 1.24 3.36c1.561-1.36 3.6-2.08 5.677-2.08c3.321 0 3.321 2.199 3.321 5.317c-.76-.04-1.401-.119-2.481-.119c-5.079.001-8.438 1.958-8.438 7.317m34.027 2.439c.041 1.36.041 2.799.6 3.959c-.88-.08-1.4-.2-3.037-.2c-.961 0-1.48.081-2.241.2c.159-.519.241-.72.32-1.401c.121-.917.2-3.998.2-5.078v-4.318c0-1.879 0-4.599-.122-5.559c-.079-.678-.277-2.518-2.599-2.518c-2.278 0-3.038 1.679-3.318 3.039c-.318 1.399-.318 2.919-.318 8.836c.038 5.118.038 5.597.438 6.998c-.68-.08-1.52-.159-2.718-.159c-.961 0-1.601.039-2.398.159c.279-.641.439-.961.519-3.199c.082-2.199.241-12.996-.121-15.554c-.199-1.56-.6-1.919-1.038-2.319c3.239-.161 4.277-.681 5.278-1.199v4.237c.479-1.241 1.479-4 5.478-4c4.999 0 5.037 3.639 5.078 6.036v12.04\\\"/><path fill=\\\"#A80030\\\" d=\\\"m74.827 98.056l-3.313 3.31l-3.31-3.31l3.31-3.31z\\\"/>\"\n\t\t},\n\t\t\"denojs\": {\n\t\t\t\"body\": \"<path d=\\\"M64 2C29.755 2 2 29.755 2 64c0 34.245 27.755 62 62 62c34.245 0 62-27.755 62-62c0-34.245-27.755-62-62-62m32.09 20.126l.023-.073l.799-3.003l.363.266a53.424 53.424 0 0 1 4.771 3.997l-.097.314l-.022.073a3.03 3.03 0 0 1-3.488 2.01a3.02 3.02 0 0 1-2.349-3.584m-13.853 5.716l.023-.073c.46-1.55 2.107-2.47 3.705-2.059c1.574.436 2.519 2.059 2.131 3.657v.073l-3.245 11.988l-.266-.218a32.286 32.286 0 0 0-5.11-3.1zM71.484 14.497l.023-.073l1.453-5.4l.436.072c1.84.315 3.681.727 5.473 1.211l-1.526 5.691l-.022.073a3.03 3.03 0 0 1-3.488 2.01a3.02 3.02 0 0 1-2.349-3.584M49.009 23.7l.023-.073l3.826-14.216l.412-.072a57.938 57.938 0 0 1 5.764-.824c.097.436.097.92-.023 1.356l-.022.073l-4.117 15.258l-.023.073a3.03 3.03 0 0 1-3.488 2.01a3.02 3.02 0 0 1-2.349-3.584zM13.843 56.395c-.46 1.55-2.107 2.47-3.681 2.058a2.867 2.867 0 0 1-1.502-.92a55.517 55.517 0 0 1 6.467-20.295c.242 0 .484.023.726.097a3.042 3.042 0 0 1 2.156 3.657l-.023.073l-4.117 15.258zm12.4 8.33v.074l-4.117 15.258l-.023.072c-.46 1.526-2.034 2.422-3.608 2.059c-1.623-.388-2.616-2.034-2.229-3.657v-.073L20.384 63.2l.022-.073c.46-1.55 2.107-2.47 3.706-2.058c1.574.436 2.519 2.058 2.131 3.657zm1.187-20.78c-1.623-.387-2.616-2.034-2.228-3.656l.022-.073l4.117-15.258l.023-.073c.46-1.55 2.107-2.47 3.681-2.058a3.028 3.028 0 0 1 2.156 3.633l-.023.096l-4.117 15.258l-.023.073c-.46 1.526-2.034 2.422-3.608 2.059zm7.992 52.096l-.023.072c-.46 1.526-2.034 2.422-3.608 2.06c-1.623-.388-2.616-2.035-2.228-3.658l.022-.073l4.117-15.258l.023-.097l.194-.46a27.216 27.216 0 0 0 5.231 3.56zm12.473 9.324l-.023.073l-2.93 10.923l-.412-.17a51.943 51.943 0 0 1-5.207-2.252l2.712-10.075l.023-.073a3.011 3.011 0 0 1 3.681-2.058c1.599.412 2.543 2.034 2.156 3.633zm16.929-7.726l-.073.34v.072l-4.117 15.258l-.023.073a3.03 3.03 0 0 1-3.487 2.01a3.032 3.032 0 0 1-2.35-3.584v-.073l4.118-15.258l.022-.073a3.026 3.026 0 0 1 3.706-2.059a2.984 2.984 0 0 1 1.889 1.526l.097.436l.145.702l.097.51zm40.276 3.948c-8.622 9.421-20.441 15.863-33.737 17.631l-.121-.8l-.218-1.598l-.194-1.162l-.218-1.526l-.29-1.865l-.121-.726l-.266-1.768l-.17-1.042l-.218-1.356l-.218-1.308l-.218-1.26l-.218-1.234l-.194-1.211l-.218-1.163l-.194-1.114l-.145-.823l-.17-.8l-.096-.508l-.194-1.017l-.146-.727l-.169-.896l-.145-.63l-.12-.605l-.122-.581l-.073-.388l-.17-.726l-.12-.533l-.121-.533l-.097-.339l-.12-.484l-.098-.46l-.12-.46l-.121-.437l-.073-.266l-.121-.412l-.097-.387l-.073-.266l-.097-.243l-.072-.218l-.097-.339l-.073-.242l-.049-.145a9.113 9.113 0 0 0-.435-1.138l-.073-.145l.557-1.454l-2.204.073l-.605.023c-20.006.412-32.915-8.09-32.915-21.409c0-14.12 14.047-25.478 32.066-25.478c8.67 0 16.105 2.398 21.966 6.975c4.989 3.9 8.646 9.276 10.535 15.355l.048.145l.048.17l.097.314l.145.582l.388 1.356l.411 1.55l.703 2.567l1.114 4.069l1.792 6.684l2.035 7.605l3.269 12.23l1.235 4.601zm3.052-60.595l-.023.073l-4.117 15.258l-.023.073c-.46 1.525-2.034 2.421-3.609 2.058c-1.622-.387-2.615-2.034-2.228-3.657l.023-.073l4.117-15.258v-.072a3.078 3.078 0 0 1 3.705-2.059a3.062 3.062 0 0 1 2.156 3.657zm10.414 20.344l-4.142 15.258v.073c-.436 1.623-2.107 2.567-3.73 2.131c-1.622-.436-2.567-2.107-2.13-3.73l.022-.072l4.117-15.258l.023-.073c.46-1.55 2.107-2.47 3.681-2.059a3.028 3.028 0 0 1 2.156 3.633zM69.329 51.164a3.875 3.875 0 0 1-3.875 3.875a3.875 3.875 0 0 1-3.875-3.875a3.875 3.875 0 0 1 3.875-3.875a3.875 3.875 0 0 1 3.875 3.875\\\"/>\"\n\t\t},\n\t\t\"denojs-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M64 1.47c-27.617 0-50 22.384-50 50c0 27.618 22.383 50 50 50s50-22.382 50-50c0-27.616-22.383-50-50-50M89.879 17.7l.018-.058l.645-2.422l.293.215a43.079 43.079 0 0 1 3.847 3.223l-.078.254l-.018.058a2.444 2.444 0 0 1-2.812 1.621a2.436 2.436 0 0 1-1.895-2.89zm-11.172 4.61l.018-.058c.371-1.25 1.7-1.993 2.989-1.66a2.457 2.457 0 0 1 1.718 2.949v.059l-2.617 9.668l-.214-.176a26.033 26.033 0 0 0-4.122-2.5zm-8.672-10.762l.018-.058l1.172-4.356l.352.059c1.484.254 2.969.586 4.414.977l-1.23 4.59l-.019.058a2.444 2.444 0 0 1-2.812 1.621a2.436 2.436 0 0 1-1.895-2.89zM51.91 18.97l.018-.058l3.086-11.465l.332-.059a46.726 46.726 0 0 1 4.649-.664a2.32 2.32 0 0 1-.018 1.094l-.019.059l-3.32 12.305l-.018.058a2.444 2.444 0 0 1-2.813 1.621a2.436 2.436 0 0 1-1.894-2.89zM23.551 45.337c-.371 1.25-1.7 1.992-2.969 1.66a2.312 2.312 0 0 1-1.21-.742a44.77 44.77 0 0 1 5.214-16.367c.196 0 .39.018.586.078a2.453 2.453 0 0 1 1.739 2.95l-.019.058l-3.32 12.305zm10 6.719v.059l-3.32 12.305l-.018.058c-.372 1.23-1.641 1.953-2.91 1.66c-1.31-.312-2.11-1.64-1.797-2.949v-.059l3.32-12.305l.018-.058c.371-1.25 1.7-1.992 2.988-1.66a2.457 2.457 0 0 1 1.72 2.949zm.957-16.758c-1.308-.313-2.11-1.64-1.797-2.95l.019-.058l3.32-12.305l.018-.059c.371-1.25 1.7-1.992 2.969-1.66a2.442 2.442 0 0 1 1.738 2.93l-.018.078l-3.32 12.305l-.019.058c-.37 1.23-1.64 1.954-2.91 1.66zm6.445 42.012l-.018.058c-.37 1.23-1.64 1.953-2.91 1.66c-1.309-.312-2.11-1.64-1.797-2.949l.018-.058l3.32-12.305l.019-.079l.156-.37a21.945 21.945 0 0 0 4.219 2.87zm10.06 7.52l-.019.058l-2.363 8.809l-.332-.137a41.899 41.899 0 0 1-4.2-1.816l2.188-8.125l.018-.059a2.428 2.428 0 0 1 2.97-1.66c1.288.332 2.05 1.64 1.737 2.93zm13.651-6.231l-.058.273v.059l-3.32 12.305l-.019.059a2.444 2.444 0 0 1-2.813 1.62a2.446 2.446 0 0 1-1.894-2.89v-.059l3.32-12.305l.018-.058a2.44 2.44 0 0 1 2.989-1.66c.664.175 1.21.625 1.523 1.23l.078.352l.117.566l.078.41zm32.48 3.183c-6.953 7.598-16.484 12.794-27.207 14.22l-.097-.645l-.176-1.29l-.156-.937l-.176-1.23l-.234-1.504L69 89.81l-.214-1.426l-.137-.84l-.176-1.093l-.176-1.055l-.176-1.016l-.175-.996l-.157-.976l-.176-.938l-.156-.898l-.117-.664l-.137-.645l-.078-.41l-.156-.82l-.117-.586l-.137-.723l-.117-.508l-.098-.488l-.097-.469l-.059-.312l-.136-.586l-.098-.43l-.097-.43l-.079-.273l-.097-.39l-.078-.372l-.098-.37l-.097-.352l-.059-.215l-.098-.332l-.078-.313l-.058-.214l-.079-.196l-.058-.176l-.078-.273l-.059-.195l-.039-.117a7.35 7.35 0 0 0-.351-.918l-.059-.117l.45-1.172l-1.778.058l-.488.019c-16.134.332-26.544-6.524-26.544-17.266c0-11.387 11.328-20.547 25.859-20.547c6.992 0 12.988 1.933 17.715 5.625c4.023 3.144 6.972 7.48 8.496 12.383l.039.117l.039.137l.078.253l.117.469l.312 1.094l.332 1.25l.567 2.07l.898 3.281l1.445 5.39l1.64 6.134l2.638 9.863l.996 3.71zm2.461-48.866l-.018.058l-3.32 12.305l-.019.059c-.37 1.23-1.64 1.953-2.91 1.66c-1.308-.312-2.11-1.64-1.797-2.95l.019-.058l3.32-12.305v-.058a2.482 2.482 0 0 1 2.988-1.66a2.47 2.47 0 0 1 1.739 2.949zm8.399 16.406l-3.34 12.304v.06a2.447 2.447 0 0 1-3.008 1.718a2.447 2.447 0 0 1-1.719-3.008l.019-.058l3.32-12.305l.018-.06c.371-1.25 1.7-1.991 2.97-1.66a2.442 2.442 0 0 1 1.737 2.93zm-39.707-8.204a3.125 3.125 0 0 1-3.125 3.125a3.125 3.125 0 0 1-3.125-3.125a3.125 3.125 0 0 1 3.125-3.125a3.125 3.125 0 0 1 3.125 3.125m43.568 85.866c-2.913 0-5.425-.455-7.536-1.374c-2.112-.92-3.74-2.284-4.888-4.114c-1.137-1.83-1.71-4.141-1.71-6.935c0-2.795.573-5.097 1.71-6.936c1.138-1.83 2.767-3.194 4.888-4.095c2.111-.901 4.623-1.347 7.536-1.347c2.912 0 5.424.446 7.536 1.347c2.111.9 3.741 2.266 4.887 4.095c1.138 1.83 1.712 4.141 1.712 6.936c0 2.794-.574 5.096-1.712 6.935c-1.137 1.83-2.766 3.204-4.887 4.114c-2.112.92-4.633 1.374-7.536 1.374m0-5.488c1.383 0 2.53-.255 3.44-.764a4.704 4.704 0 0 0 2.03-2.157c.437-.929.655-2.04.655-3.332v-1.301c0-1.293-.218-2.412-.655-3.35a4.536 4.536 0 0 0-2.03-2.157c-.919-.491-2.066-.746-3.44-.746s-2.567.246-3.468.746a4.566 4.566 0 0 0-2.002 2.158c-.437.946-.656 2.066-.656 3.349v1.301c0 1.293.219 2.403.656 3.332a4.737 4.737 0 0 0 2.002 2.157c.901.51 2.057.764 3.468.764m-43.005 4.951v-23.719h6.389l.537 3.65h.364a10.053 10.053 0 0 1 2.494-2.366a10.698 10.698 0 0 1 3.085-1.375c1.11-.3 2.248-.446 3.423-.446c2.01 0 3.695.337 5.06 1.01a6.779 6.779 0 0 1 3.104 3.059c.7 1.365 1.055 3.094 1.055 5.197v14.99H86.5V112.54c0-.72-.1-1.356-.292-1.912a3.633 3.633 0 0 0-.828-1.374c-.364-.364-.82-.628-1.374-.81a5.96 5.96 0 0 0-1.866-.273c-1.02 0-1.939.227-2.767.673a5.167 5.167 0 0 0-1.957 1.82c-.482.765-.719 1.639-.719 2.631v13.143H68.87zm-17.448.537c-2.967 0-5.525-.446-7.673-1.329c-2.148-.882-3.795-2.238-4.951-4.077c-1.156-1.83-1.73-4.169-1.73-7.017s.574-5.097 1.712-6.936c1.137-1.83 2.757-3.194 4.86-4.095c2.102-.901 4.587-1.347 7.472-1.347s5.443.436 7.518 1.301c2.066.874 3.65 2.203 4.724 4.005c1.083 1.802 1.62 4.095 1.62 6.89v1.756h-19.85c.064 1.256.319 2.312.792 3.15c.464.837 1.165 1.474 2.093 1.892c.928.42 2.084.628 3.468.628a8 8 0 0 0 2.157-.273a6.411 6.411 0 0 0 1.757-.764c.51-.328.91-.72 1.192-1.174c.282-.446.446-.974.473-1.575h7.827c0 1.411-.318 2.667-.946 3.777c-.628 1.11-1.538 2.048-2.722 2.813c-1.183.764-2.603 1.347-4.25 1.756c-1.647.4-3.495.61-5.534.61zm-6.253-15.08h11.568c0-.747-.127-1.402-.382-1.957a3.893 3.893 0 0 0-1.102-1.42a4.759 4.759 0 0 0-1.71-.874a7.771 7.771 0 0 0-2.158-.291c-1.256 0-2.33.182-3.194.537c-.874.364-1.557.874-2.048 1.556c-.492.674-.82 1.493-.965 2.448zm-43.16 14.543V95.53h15.118c3.568 0 6.626.574 9.156 1.711c2.54 1.138 4.478 2.858 5.825 5.152c1.347 2.294 2.03 5.151 2.03 8.574s-.674 6.28-2.03 8.573s-3.295 4.023-5.825 5.179c-2.54 1.156-5.588 1.73-9.156 1.73zm8.592-6.57h6.207c1.32 0 2.503-.183 3.559-.538c1.047-.364 1.938-.883 2.676-1.575c.737-.691 1.292-1.547 1.665-2.566c.373-1.02.565-2.175.565-3.468v-1.484c0-1.32-.192-2.484-.565-3.485a6.813 6.813 0 0 0-1.665-2.567c-.738-.7-1.63-1.238-2.676-1.602c-1.047-.364-2.239-.537-3.559-.537h-6.207z\\\"/>\"\n\t\t},\n\t\t\"devicon\": {\n\t\t\t\"body\": \"<path fill=\\\"#558d6c\\\" d=\\\"m4.92 8l10.17 87.05L64 119.95V8z\\\"/><path fill=\\\"#5aa579\\\" d=\\\"M64 8v111.95l.05.05l48.93-24.91L123.08 8z\\\"/><path fill=\\\"#60be86\\\" d=\\\"m18.84 22.11l6.49 65.18L64 105.97V22.11z\\\"/><path fill=\\\"#65d693\\\" d=\\\"M64 22.11v83.86l.05.05l38.69-18.76l6.42-65.15z\\\"/><path fill=\\\"#5aa579\\\" d=\\\"M105.72 54.9L73.14 39.42l-1.83-.9l-1.12 2.28L64 53.41V68.3l9.15-18.08l21.5 9.57l-23.09 10.37l-.87.47v10.88L73 80.38l32.78-15.69a2 2 0 0 0 .92-2v-5.78a2 2 0 0 0-.98-2.01\\\"/><path fill=\\\"#558d6c\\\" d=\\\"m56 69.39l-21.79-9.6l23.3-10.37l1.76-.7V37.76l-3.4 1.44l-33.93 15.69a2.26 2.26 0 0 0-1.28 2v5.77a2.22 2.22 0 0 0 1.24 2l33.44 15.52l2 .9l1.21-2.26L64 68.3V53.41z\\\"/>\"\n\t\t},\n\t\t\"devicon-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#558d6c\\\" d=\\\"m12.118 26.77l9.01 77.084l43.328 22.049V26.77z\\\"/><path fill=\\\"#5aa579\\\" d=\\\"M64.456 26.77v99.133l.044.044l43.346-22.058l8.947-77.119z\\\"/><path fill=\\\"#60be86\\\" d=\\\"m24.45 39.265l5.749 57.717l34.257 16.541V39.265z\\\"/><path fill=\\\"#65d693\\\" d=\\\"M64.456 39.265v74.258l.044.045l34.274-16.613l5.688-57.69z\\\"/><path fill=\\\"#5aa579\\\" d=\\\"M101.414 68.3L72.552 54.593l-1.62-.797l-.993 2.019l-5.483 11.166v13.185l8.105-16.01l19.047 8.475l-20.455 9.182l-.771.416v9.635l2.046-1l29.04-13.894a1.772 1.771 0 0 0 .814-1.772V70.08a1.772 1.771 0 0 0-.868-1.78\\\"/><path fill=\\\"#558d6c\\\" d=\\\"m57.369 81.131l-19.304-8.5l20.641-9.183l1.56-.62v-9.705l-3.013 1.275l-30.057 13.894a2.002 2.001 0 0 0-1.134 1.77v5.11a1.967 1.966 0 0 0 1.098 1.77l29.624 13.744l1.772.797l1.071-2.001l4.829-9.316V66.981z\\\"/><path fill=\\\"#60be86\\\" d=\\\"M33.527 1.842c-1.05 0-2.071.11-3.064.33a16.06 16.06 0 0 0-2.807.889c-.878.363-1.686.786-2.422 1.273c-.725.478-1.356.979-1.89 1.504c-.525.516-.935 1.042-1.23 1.576c-.297.525-.446 1.017-.446 1.475c0 .726.411 1.09 1.232 1.09c.44 0 .822-.107 1.147-.317c.325-.21.625-.482.902-.816c.287-.334.573-.71.86-1.131c.296-.42.633-.84 1.015-1.26a6.558 6.558 0 0 1 1.233-.875a9.67 9.67 0 0 1 1.59-.715c.572-.2 1.17-.358 1.79-.472a9.68 9.68 0 0 1 1.876-.188c.668 0 1.251.11 1.748.33c.496.22.901.525 1.216.916c.325.392.564.856.717 1.391c.162.535.244 1.116.244 1.746c0 .745-.139 1.539-.416 2.379c-.267.84-.65 1.68-1.146 2.52a15.238 15.238 0 0 1-1.776 2.421a15.492 15.492 0 0 1-2.29 2.106a13.64 13.64 0 0 1-2.68 1.56a9.82 9.82 0 0 1-2.979.788c.42-.573.85-1.193 1.29-1.862c.448-.678.882-1.365 1.302-2.062c.43-.697.84-1.389 1.232-2.076c.401-.698.77-1.348 1.104-1.95c.344-.601.644-1.146.902-1.632l.645-1.174c.162-.277.291-.568.387-.873c.095-.306.142-.598.142-.875c0-.344-.09-.639-.271-.887c-.182-.248-.489-.373-.918-.373c-.096 0-.233.024-.414.072a2.121 2.121 0 0 0-.631.272c-.23.143-.483.343-.76.601c-.267.258-.54.602-.816 1.031l-5.887 11.702c-.153.22-.276.459-.371.716a2.296 2.296 0 0 0-.145.803c0 .353.11.648.33.887c.22.248.52.373.903.373c1.757 0 3.39-.21 4.898-.631c1.518-.42 2.897-.987 4.139-1.703a15.9 15.9 0 0 0 3.308-2.492a15.943 15.943 0 0 0 2.422-2.994a13.48 13.48 0 0 0 1.488-3.21c.344-1.088.516-2.127.516-3.12a8.48 8.48 0 0 0-.443-2.78a5.885 5.885 0 0 0-1.332-2.234c-.592-.64-1.341-1.141-2.248-1.504c-.907-.363-1.973-.545-3.196-.545m34.075 6.303c-.335 0-.625.061-.873.185c-.24.124-.44.282-.602.473a2.07 2.07 0 0 0-.373.644c-.076.23-.113.455-.113.674c.028.306.161.553.4.744c.239.182.654.274 1.246.274c.315 0 .587-.063.817-.188c.229-.124.415-.275.558-.457c.143-.19.248-.397.315-.617c.076-.22.115-.42.115-.601c0-.325-.11-.591-.33-.801c-.22-.22-.607-.33-1.16-.33m-20.524 3.94c-.754 0-1.466.108-2.135.327a7.805 7.805 0 0 0-1.818.875a8.29 8.29 0 0 0-1.504 1.26c-.44.468-.812.95-1.117 1.447c-.306.497-.54.992-.703 1.489a4.287 4.287 0 0 0-.242 1.347c0 .535.08 1.045.242 1.532c.162.487.397.916.703 1.289c.315.372.692.669 1.13.888c.45.22.961.33 1.534.33c.668 0 1.346-.092 2.033-.273c.688-.172 1.347-.39 1.977-.658a17.58 17.58 0 0 0 1.804-.873c.503-.285.948-.555 1.34-.81c.018.375.082.713.194 1.009c.143.353.33.65.558.889c.23.238.495.414.801.529c.306.124.627.187.961.187c.687 0 1.346-.215 1.977-.644c.64-.43 1.274-1.06 1.904-1.89c.43.267.777.453 1.045.558c.267.105.545.156.832.156c.869 0 1.66-.151 2.377-.457c.104-.046.21-.097.314-.148c.004.828.225 1.44.66 1.837c.45.392 1.059.588 1.832.588a4.4 4.4 0 0 0 1.62-.316a8.741 8.741 0 0 0 1.59-.83c.412-.273.817-.575 1.212-.904c.026.092.056.183.09.273c.134.353.33.664.588.932c.258.257.573.462.945.615c.382.153.816.23 1.303.23c.64 0 1.29-.1 1.95-.3a12.062 12.062 0 0 0 1.904-.73a14.43 14.43 0 0 0 1.732-.976c.231-.154.445-.301.652-.447c.052.306.145.58.28.82c.22.392.487.711.802.96c.325.238.663.41 1.016.515c.353.105.664.158.932.158a7.06 7.06 0 0 0 1.99-.273a7.111 7.111 0 0 0 1.748-.73a7.118 7.118 0 0 0 1.474-1.131c.44-.44.833-.927 1.176-1.461c.239.172.472.296.701.373c.24.076.483.113.73.113c.364 0 .726-.1 1.089-.3a6.355 6.355 0 0 0 1.047-.731l.017-.016c-.163.353-.32.697-.463 1.02c-.21.477-.382.897-.515 1.26c-.134.362-.2.624-.2.786c0 .306.095.564.286.774c.19.21.455.316.789.316c.324 0 .59-.106.8-.316c.22-.2.417-.452.588-.758c.172-.315.334-.65.487-1.004c.162-.363.34-.7.531-1.015c.306-.468.658-.998 1.059-1.59c.4-.592.84-1.15 1.318-1.676a8.047 8.047 0 0 1 1.533-1.348c.554-.363 1.135-.543 1.746-.543c.163 0 .283.052.36.157a.519.519 0 0 1 .129.359c0 .162-.064.371-.188.629s-.282.554-.473.889c-.181.324-.382.672-.601 1.044c-.22.363-.429.732-.63 1.104c-.19.372-.358.735-.501 1.088a3.38 3.38 0 0 0-.229.974l-.029.215v.186c0 .506.115.903.344 1.19c.239.276.611.415 1.117.415c.172 0 .358-.02.559-.058a6.04 6.04 0 0 0 .687-.172c.726-.21 1.356-.433 1.89-.672a16.08 16.08 0 0 0 1.518-.79c.478-.286.942-.59 1.391-.915c.458-.325.96-.683 1.504-1.074c.4-.315.692-.655.873-1.018c.19-.363.287-.692.287-.988a.753.753 0 0 0-.144-.473a.422.422 0 0 0-.372-.185a.614.614 0 0 0-.214.043a.758.758 0 0 0-.23.142c-.278.258-.626.55-1.046.875c-.41.315-.865.635-1.361.96c-.497.314-1.016.615-1.56.902a12.72 12.72 0 0 1-1.577.716a.95.95 0 0 1-.314.157c-.086.01-.162.015-.229.015c-.105 0-.183-.028-.23-.086a.304.304 0 0 1-.07-.2a.81.81 0 0 1 .185-.53c.095-.172.224-.387.387-.645c.172-.267.358-.56.558-.875c.2-.315.401-.648.602-1.002c.21-.363.396-.73.558-1.103c.172-.373.311-.745.416-1.117a3.95 3.95 0 0 0 .157-1.075c0-.582-.172-.991-.516-1.23c-.334-.248-.754-.373-1.26-.373c-.448 0-.925.071-1.431.215a9.38 9.38 0 0 0-1.461.558a7.76 7.76 0 0 0-1.29.76c-.39.277-.692.55-.902.816a2.009 2.009 0 0 0 .2-.859c0-.325-.09-.568-.272-.73a.87.87 0 0 0-.615-.258c-.277 0-.56.1-.846.3c-.286.201-.526.506-.717.917c-.067.147-.146.313-.23.488a.326.326 0 0 0-.14.084a30.3 30.3 0 0 1-.473.531a18.06 18.06 0 0 1-1.348 1.332c-.258.23-.516.434-.774.615c-.257.182-.51.33-.757.444c-.24.114-.46.172-.66.172a1.11 1.11 0 0 1-.4-.07a.806.806 0 0 1-.331-.245c.153-.4.267-.783.344-1.146c.076-.373.115-.702.115-.989c0-.553-.119-1.016-.357-1.388a2.775 2.775 0 0 0-.875-.916a3.569 3.569 0 0 0-1.16-.489a5.13 5.13 0 0 0-1.16-.142c-.841 0-1.604.139-2.292.416a6.48 6.48 0 0 0-1.834 1.074c-.534.44-.997.94-1.388 1.504a10.736 10.736 0 0 0-.96 1.69a9.664 9.664 0 0 0-.47 1.304c-.065.042-.104.069-.174.113c-.363.23-.77.473-1.219.73c-.448.259-.915.498-1.402.718c-.477.22-.96.4-1.447.543a4.882 4.882 0 0 1-1.375.215c-.401 0-.72-.095-.96-.286c-.228-.19-.343-.455-.343-.789c0-.229.057-.505.172-.83c.124-.324.286-.658.486-1.002c.21-.353.444-.697.701-1.031c.258-.344.522-.65.79-.918c.276-.267.548-.482.816-.644c.277-.172.524-.258.744-.258c.191 0 .31.063.357.187c.048.115.073.258.073.43c0 .153-.004.314-.014.486v.373c0 .143.023.244.07.301c.058.057.182.086.373.086c.354 0 .65-.106.889-.316c.239-.21.433-.472.586-.788c.153-.315.263-.648.33-1.001c.067-.363.1-.693.1-.989a1.37 1.37 0 0 0-.13-.617a.91.91 0 0 0-.327-.4a1.284 1.284 0 0 0-.489-.229a2.29 2.29 0 0 0-.586-.072c-.62 0-1.236.133-1.847.4a8.384 8.384 0 0 0-1.748 1.06c-.554.44-1.07.941-1.547 1.505a13.464 13.464 0 0 0-1.246 1.718a9.629 9.629 0 0 0-.744 1.495c-.05.046-.094.091-.145.138c-.248.239-.514.478-.8.717c-.287.23-.58.434-.876.615c-.296.182-.59.33-.886.444a2.238 2.238 0 0 1-.832.172c-.24 0-.425-.037-.56-.114c-.123-.086-.185-.258-.185-.515c0-.24.043-.503.13-.79c.095-.286.205-.576.33-.872a17.6 17.6 0 0 1 .413-.86a54.916 54.916 0 0 0 .631-1.303l.201-.43l.243-.488c.086-.171.196-.38.33-.628a.685.685 0 0 0 .086-.258a2.42 2.42 0 0 0 .043-.258c0-.363-.133-.66-.4-.889a1.323 1.323 0 0 0-.932-.357c-.22 0-.435.057-.645.172c-.21.114-.396.305-.559.572l-.486 1.002c-.134.267-.262.531-.387.789c-.114.258-.196.448-.244.572c-.133.334-.295.688-.486 1.06c-.164.313-.32.64-.47.981a8.955 8.955 0 0 1-.991.524a6.753 6.753 0 0 1-1.103.357a4.597 4.597 0 0 1-1.061.129c-.325 0-.562-.1-.715-.3c.353-.602.677-1.118.973-1.548c.305-.439.57-.836.789-1.19c.22-.362.391-.71.515-1.044c.134-.334.2-.702.2-1.104c0-.353-.08-.654-.242-.902c-.163-.258-.441-.387-.833-.387c-.229 0-.452.115-.671.344c-.22.22-.445.516-.674.889c-.22.363-.449.778-.688 1.246c-.229.458-.472.927-.73 1.404c-.248.478-.516.944-.803 1.403a7.276 7.276 0 0 1-.887 1.175a7.968 7.968 0 0 1-1.004 1.145c-.305.277-.581.416-.83.416c-.057 0-.11-.033-.158-.1a1.055 1.055 0 0 1-.113-.258a3.773 3.773 0 0 1-.072-.316a1.762 1.762 0 0 1-.03-.271c0-.43.058-.903.172-1.418c.124-.526.274-1.06.446-1.604c.171-.544.351-1.084.542-1.619c.201-.544.373-1.046.516-1.504a.6.6 0 0 0 .059-.271a.63.63 0 0 0-.102-.344a1.001 1.001 0 0 0-.258-.274a1.128 1.128 0 0 0-.357-.172a1.032 1.032 0 0 0-.373-.07c-.277 0-.564.09-.86.272c-.286.172-.523.458-.714.859c-.105.315-.249.74-.43 1.275c-.172.535-.35 1.116-.531 1.747a24.169 24.169 0 0 0-.457 1.873c-.217.129-.462.27-.76.433c-.373.21-.792.435-1.26.674c-.468.23-.95.444-1.447.645c-.487.2-.984.366-1.49.5a5.793 5.793 0 0 1-1.403.187c-.41 0-.74-.078-.988-.23a.957.957 0 0 1-.445-.659c1.298-.477 2.379-.95 3.238-1.418c.869-.477 1.56-.94 2.076-1.388c.516-.459.878-.909 1.088-1.348c.21-.44.316-.859.316-1.26c0-.678-.196-1.208-.587-1.59c-.392-.381-.983-.572-1.776-.572zm-.773 1.96h.129c.038 0 .08.006.129.016a.54.54 0 0 1 .3.156a.44.44 0 0 1 .143.344c0 .172-.082.378-.244.617c-.163.23-.457.477-.887.744a13.24 13.24 0 0 0-.502.33c-.23.162-.501.343-.816.543c-.315.2-.655.411-1.018.631c-.353.22-.697.416-1.031.588c.057-.182.139-.407.244-.674c.115-.267.254-.544.416-.83c.162-.296.342-.593.543-.889a4.63 4.63 0 0 1 .703-.787a3.46 3.46 0 0 1 .873-.574a2.431 2.431 0 0 1 1.018-.215m37.482.574c.296 0 .53.058.701.172c.172.105.301.242.387.414c.096.172.153.364.172.574a3.868 3.868 0 0 1-.242 2.033a4.63 4.63 0 0 1-.774 1.29a4.275 4.275 0 0 1-1.117.916c-.41.229-.836.344-1.275.344c-.287 0-.516-.062-.688-.186a1.316 1.316 0 0 1-.4-.459a2.174 2.174 0 0 1-.172-.602a4.682 4.682 0 0 1-.043-.601c0-.487.094-.96.285-1.418c.191-.468.445-.883.76-1.246a3.895 3.895 0 0 1 1.103-.887c.42-.23.854-.344 1.303-.344\\\"/>\"\n\t\t},\n\t\t\"digitalocean\": {\n\t\t\t\"body\": \"<path fill=\\\"#0080ff\\\" d=\\\"M64.142 102.96H39.24V78.522h24.903ZM39.24 122.131H20.373v-19.173H39.24Zm-18.866-19.173H4.53V87.167h15.843Zm43.394 24.814v-24.814c26.41 0 46.784-25.94 36.597-53.388c-3.775-10.15-11.694-18.42-22.26-22.181c-27.167-9.772-53.2 10.527-53.2 36.468H0c0-41.354 40.37-74.064 84.52-60.53c19.242 6.017 34.334 21.055 40.37 40.23c13.581 43.985-19.245 84.214-61.123 84.214Zm0 0\\\"/>\"\n\t\t},\n\t\t\"digitalocean-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0080ff\\\" d=\\\"M63.35 60.357h-9.966V50.43h9.966zm-9.966 7.788h-7.546v-7.788h7.55v7.788zm-7.55-7.788h-6.337v-6.413h6.337zM11.04 89.828c-1.576-1.106-3.652-1.702-5.977-1.702H0V104.7h5.063c2.325 0 4.317-.597 5.977-1.784c.913-.683 1.576-1.53 2.074-2.636c.499-1.106.75-2.463.75-3.91c0-1.443-.251-2.805-.749-3.824c-.499-1.275-1.162-2.122-2.075-2.717zM2.988 90.93h1.576c1.747 0 3.24.341 4.402 1.106c1.243.765 1.827 2.209 1.827 4.333c0 2.126-.667 3.655-1.827 4.503c-1.08.683-2.49 1.106-4.319 1.106H2.99Zm14.444-3.06c-.498 0-.913.173-1.247.51c-.415.342-.58.766-.58 1.276s.165.937.498 1.275c.333.341.749.513 1.247.513c.498 0 .914-.173 1.244-.514c.333-.337.498-.764.498-1.275c0-.51-.165-.933-.498-1.27c-.248-.342-.663-.514-1.162-.514m-1.494 5.1h2.907v11.647h-2.907zm13.283 1.019c-.831-.765-1.827-1.275-2.906-1.275c-1.576 0-2.906.596-3.902 1.703c-.996 1.102-1.576 2.463-1.576 4.16c0 1.617.498 3.06 1.494 4.166c.996 1.106 2.326 1.616 3.902 1.616c1.078 0 2.074-.341 2.82-.934v.255c0 .934-.248 1.697-.746 2.208c-.498.51-1.16.764-2.074.764c-1.33 0-2.16-.509-3.152-1.956l-1.993 1.957l.082.086c.416.592 1.078 1.188 1.91 1.785c.828.592 1.906.847 3.152.847c1.742 0 3.072-.51 4.068-1.616c.996-1.103 1.576-2.463 1.576-4.247V92.97h-2.824v1.019zm-.749 6.883c-.498.596-1.16.85-1.992.85c-.827 0-1.494-.254-1.992-.85c-.498-.592-.746-1.357-.746-2.294c0-.933.248-1.698.746-2.295c.498-.592 1.165-.846 1.992-.846c.831 0 1.494.255 1.992.846c.498.597.749 1.362.749 2.294c0 .938-.251 1.703-.749 2.295m6.06-7.902h2.906v11.647h-2.906zm1.412-5.1c-.498 0-.914.173-1.244.51c-.334.342-.498.766-.498 1.276s.164.934.498 1.275c.33.341.746.509 1.244.509s.913-.169 1.247-.51c.329-.341.498-.764.498-1.275c0-.51-.17-.933-.498-1.274a1.672 1.672 0 0 0-1.247-.51zm7.721 1.955h-2.823v3.145H39.18v2.635h1.663v4.844c0 1.529.333 2.635.914 3.231c.58.593 1.658.934 3.07.934c.499 0 .914 0 1.413-.087h.164v-2.636l-.996.087c-.662 0-1.161-.087-1.33-.342c-.247-.255-.33-.764-.33-1.529v-4.415h2.656v-2.637h-2.66v-3.23h-.082zm16.104-1.7h2.906v16.57h-2.908zm31.872 12.41a9.773 9.773 0 0 1-1.408 1.356c-.452.28-.969.428-1.494.428c-.831 0-1.495-.341-2.075-.938c-.58-.677-.831-1.442-.831-2.462c0-1.02.25-1.784.83-2.463c.578-.683 1.245-.937 2.076-.937c.914 0 1.91.595 2.737 1.616l1.91-1.87c-1.247-1.613-2.824-2.377-4.73-2.377c-1.58 0-2.906.592-4.07 1.784c-1.079 1.187-1.659 2.631-1.659 4.329c0 1.703.58 3.233 1.659 4.337c1.082 1.189 2.49 1.785 4.07 1.785c2.075 0 3.734-.938 4.895-2.635l-1.91-1.958zm11.706-5.863c-.415-.597-.996-1.02-1.662-1.362c-.663-.341-1.494-.509-2.404-.509c-1.576 0-2.906.596-3.902 1.784c-.914 1.19-1.412 2.636-1.412 4.334c0 1.785.498 3.233 1.576 4.334c1.079 1.105 2.408 1.702 4.154 1.702c1.905 0 3.486-.77 4.728-2.38l.084-.087l-1.91-1.868c-.165.251-.416.425-.663.68c-.252.254-.58.51-.832.591c-.415.26-.913.342-1.407.342c-.832 0-1.412-.255-1.993-.679c-.498-.427-.75-1.019-.832-1.784h7.637v-1.106c0-.764-.083-1.53-.33-2.208c-.086-.596-.415-1.275-.832-1.788zM97.12 97.39c.17-.597.416-1.02.75-1.362c.416-.423.913-.592 1.494-.592c.663 0 1.243.17 1.577.592c.333.341.498.852.58 1.362zm17.269-3.487c-.832-.761-2.075-1.102-3.57-1.102c-.913 0-1.826.255-2.659.596c-.745.423-1.49 1.02-1.905 1.867l1.823 1.788c.75-1.278 1.576-1.702 2.74-1.702c.582 0 1.08.173 1.497.51c.414.34.579.764.579 1.274v.597a6.222 6.222 0 0 0-2.074-.341c-1.412 0-2.573.34-3.487 1.02c-.914.682-1.33 1.696-1.33 2.89c0 1.105.334 1.953 1.079 2.635c.749.678 1.663.933 2.74.933c1.08 0 2.076-.427 3.073-1.187v.933h2.823v-7.48c0-1.36-.415-2.462-1.329-3.231m-5.063 6.29c.33-.254.745-.34 1.325-.34c.667 0 1.412.172 2.16.427v1.101c-.666.597-1.493.938-2.49.938c-.497 0-.913-.086-1.164-.341c-.247-.255-.411-.51-.411-.85c.082-.424.247-.68.58-.934m17.432-6.118c-.831-.933-1.91-1.36-3.322-1.36c-1.16 0-2.074.341-2.737 1.019v-.678h-2.824v11.64h2.906V98.24c0-.85.165-1.615.58-2.125c.416-.51.997-.765 1.66-.765c.666 0 1.164.256 1.494.678c.334.428.58 1.107.58 1.872v6.797H128V97.9c-.082-1.617-.498-2.892-1.243-3.825zM56.2 93.904c-.832-.761-2.075-1.102-3.57-1.102c-.913 0-1.827.255-2.659.596c-.745.423-1.494 1.02-1.905 1.867l1.823 1.788c.746-1.278 1.576-1.702 2.74-1.702c.582 0 1.08.173 1.497.51c.411.34.575.764.575 1.274v.597a6.215 6.215 0 0 0-2.07-.341c-1.412 0-2.577.34-3.491 1.02c-.91.682-1.325 1.696-1.325 2.889c0 1.106.333 1.954 1.078 2.636c.745.678 1.663.933 2.738.933c1.082 0 2.078-.428 3.07-1.188v.934h2.824v-7.48c0-1.36-.498-2.462-1.325-3.231m-5.15 6.29c.334-.254.75-.34 1.33-.34c.662 0 1.411.172 2.156.427v1.101c-.662.597-1.494.938-2.49.938c-.497 0-.913-.086-1.16-.341c-.251-.255-.416-.51-.416-.85c.165-.424.333-.68.58-.934zm21.997 4.761c-4.564 0-8.298-3.827-8.298-8.498c0-4.675 3.734-8.499 8.299-8.499c4.565 0 8.303 3.824 8.303 8.499c0 4.671-3.738 8.499-8.303 8.499zm0-14.11c-2.988 0-5.396 2.466-5.396 5.525c0 3.06 2.408 5.522 5.397 5.522c2.988 0 5.396-2.462 5.396-5.522c0-3.059-2.408-5.526-5.396-5.526zM63.2 70.435V60.356c10.57 0 18.723-10.537 14.644-21.683c-1.51-4.126-4.679-7.483-8.905-9.012c-10.874-3.97-21.293 4.275-21.293 14.812h-9.961c0-16.796 16.154-30.084 33.818-24.585c7.702 2.443 13.741 8.554 16.158 16.342c5.435 17.868-7.703 34.205-24.461 34.205m0 0\\\"/>\"\n\t\t},\n\t\t\"discordjs\": {\n\t\t\t\"body\": \"<path fill=\\\"#b75cff\\\" d=\\\"M34.94 85.111c-.946.403-2.27.948-3.337 1.284c-2.26.712-4.073 1-5.931 1.282c2.234 7.163 10.986 14.197 21.192 13.533c9.621 0 16.282-4.743 19.826-11.622c-10.05-.142-24.69 4.042-31.75-4.477m91.835 1.181c-3.514.419-6.024-.288-11.782 1.56c-13.939 5.741-27.734.872-32.126-.08c-1.442-.15-2.103-2.26-5.062 1.231l-1.443 1.701c6.812 6.703 16.15 10.55 25.82 10.55c13.02 0 21.823-6.288 24.748-14.829z\\\"/><path fill=\\\"#5c6cff\\\" d=\\\"M127.514 75.106c-7.656-5.317-9.187-1.473-13.026 2.677c.355.908.547 1.94.547 3.14c0 5.604-4.504 9.231-12.524 9.231c-6.703 0-13.624-3.296-18.787-8.131l-5.92 6.98c8.016.36 16.13 2.43 24.246 2.11c8.882-.352 20.615-3.164 24.725-4.82l.156.132a20.019 20.019 0 0 0 1.069-6.49c0-1.747-.17-3.35-.486-4.829m-57.826.116c-4.338-3.309-8.496-2.182-12.483 2.493v.8c0 6.335-5.119 11.47-11.433 11.47a11.419 11.419 0 0 1-9.687-5.37s-.499.22-1.145.495c2.988 3.766 6.66 5.713 13.947 6.003c5.935.235 11.87-.805 17.805-1.525c1.983-3.846 2.996-8.358 2.996-13.089z\\\"/><path fill=\\\"#5cff9d\\\" d=\\\"M69.688 61.638c-4.052-3.565-8.177-4.284-12.483 1.156v14.921c4.175-.972 8.34-1.96 12.483-2.493zm48.311 1.084c-6.232-2.728-24.892.001-28.191 1.251a33.684 33.684 0 0 0 4.243 2.114l9.779 4.286c5.259 2.192 9.255 3.827 10.658 7.41c4.037-.586 7.518-1.39 9.835-1.923l3.19-.754c-1.223-5.711-4.689-9.545-9.514-12.384\\\"/><path fill=\\\"#ffdb5c\\\" d=\\\"M79.565 47.88c.328 7.924 4.916 12.934 10.267 16.103c4.084.806 8.168 1.505 12.252 1.505c5.701 0 11.396-1.358 15.92-2.764a38.238 38.238 0 0 0-4.506-2.24l-9.668-4.066c-4.776-1.946-9.265-3.68-10.835-7.205c-9.634-4.892-3.172-7.979-13.428-1.332Zm-9.877.96c-3.664-2.528-7.798-1.771-12.484 2.289l.001 11.673c4.16-.417 8.322-.971 12.483-1.164z\\\"/><path fill=\\\"#f79454\\\" d=\\\"M83.868 35.077c-2.75 3.305-4.32 7.392-4.32 11.89c0 .308.007.612.019.912c4.454-.044 8.935.45 13.428 1.335a7.034 7.034 0 0 1-.591-2.906c0-5.275 4.394-8.462 11.207-8.462c6.151 0 11.096 2.308 15.6 6.153l4.783-5.897c-13.977-4.32-26.47-7.037-40.124-3.026Zm-14.18 2.824c-5.156-4.528-9.114-1.188-12.484 5.13v8.098c4.162-.645 8.322-1.587 12.484-2.29z\\\"/><path fill=\\\"#ff5c5c\\\" d=\\\"M57.204 26.748v16.284c4.162-1.405 8.322-3.483 12.484-5.132V26.748Zm46.405 0c-8.459 0-15.501 3.235-19.74 8.326c6.033.023 12.106 1.242 18.18 1.967c8.689 1.038 17.348 1.06 21.943 1.06l1.812-2.233c-5.604-5.605-13.735-9.121-22.195-9.121z\\\"/><path fill=\\\"#5865f2\\\" d=\\\"M0 26.748V81.75h20.823c5.458 0 9.638-.865 13.52-2.823c-.007-.135-.007-.273-.007-.41c0-6.335 5.12-11.468 11.436-11.468c.187 0 .372.004.557.014c1.981-4.033 2.78-8.032 2.78-13.286c0-5.421-1.02-10.139-3.064-14.223c-2.121-4.007-5.186-7.15-9.27-9.43c-4.088-2.277-9.037-3.376-14.931-3.376Zm13.2 11.785h7.937c4.637 0 8.172 1.337 10.53 4.087c2.357 2.749 3.535 6.52 3.535 11.392c0 4.95-1.259 8.802-3.694 11.63c-2.435 2.907-6.05 4.321-10.844 4.321h-7.463zm32.605 32.76a7.226 7.226 0 1 0 0 14.449a7.226 7.226 0 0 0 0-14.45z\\\"/>\"\n\t\t},\n\t\t\"discordjs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#5865f2\\\" d=\\\"M30.424 52.634c-1.9 0-3.404.446-4.483 1.338c-1.079.915-1.618 2.134-1.618 3.707c0 1.173.327 2.137.96 2.888c.635.774 1.669 1.384 3.075 1.877l1.925.634c.682.282 1.15.54 1.408.798c.259.258.376.61.376 1.01c0 1.126-.776 1.689-2.349 1.689c-.937 0-1.875-.188-2.838-.54c-.962-.352-1.806-.799-2.557-1.385v3.66a10.467 10.467 0 0 0 5.843 1.737c1.947 0 3.495-.469 4.622-1.431c1.103-.938 1.667-2.23 1.667-3.848c0-1.221-.353-2.23-1.057-3.028c-.704-.776-1.83-1.432-3.402-1.925l-1.691-.54c-.633-.26-1.078-.515-1.36-.773a1.18 1.18 0 0 1-.444-.963c0-.986.773-1.479 2.345-1.479c1.667 0 3.26.54 4.81 1.642v-3.614c-1.643-.963-3.379-1.454-5.232-1.454m16.58.023c-1.76 0-3.31.375-4.624 1.126a7.716 7.716 0 0 0-3.073 3.122c-.727 1.337-1.08 2.84-1.08 4.53c0 1.595.353 3.051 1.033 4.342c.68 1.315 1.691 2.346 3.004 3.097c1.316.774 2.886 1.152 4.693 1.152c1.01 0 1.995-.141 2.91-.4s1.713-.611 2.394-1.058v-3.59a8.051 8.051 0 0 1-2.066 1.01a7.358 7.358 0 0 1-2.346.4c-1.103 0-2.088-.212-2.91-.658c-.821-.423-1.455-1.008-1.901-1.784c-.446-.774-.682-1.643-.682-2.63c0-.984.236-1.853.682-2.628c.446-.774 1.08-1.36 1.901-1.784c.822-.42 1.76-.633 2.863-.633c1.595 0 3.05.494 4.387 1.454v-3.729c-1.525-.894-3.237-1.34-5.184-1.34zm15.67 0c-1.643 0-3.121.375-4.411 1.102a8.003 8.003 0 0 0-3.028 3.099c-.728 1.337-1.103 2.84-1.103 4.505c0 1.668.375 3.169 1.103 4.483c.726 1.314 1.737 2.348 3.028 3.074c1.29.73 2.768 1.106 4.411 1.106c1.666 0 3.145-.377 4.458-1.105a7.837 7.837 0 0 0 3.05-3.075c.728-1.314 1.08-2.816 1.08-4.482c0-1.667-.352-3.17-1.08-4.505a8.054 8.054 0 0 0-3.05-3.1c-1.313-.727-2.792-1.102-4.458-1.102M0 53.127v16.428h6.219c1.807 0 3.356-.353 4.624-1.078c1.267-.706 2.227-1.694 2.862-2.96c.633-1.243.963-2.698.963-4.316c0-1.62-.306-3.028-.915-4.249a6.813 6.813 0 0 0-2.771-2.817c-1.22-.68-2.698-1.008-4.458-1.008Zm17.417 0v16.428h3.941V53.126h-3.94zm56.534 0v16.428h3.943V62.63l4.858 6.924h4.717l-4.88-6.619c1.431-.164 2.51-.68 3.286-1.525c.774-.846 1.149-1.925 1.149-3.215c0-1.572-.516-2.792-1.573-3.709c-1.056-.914-2.487-1.36-4.271-1.36zm15.851.002v16.416h6.215c1.629 0 2.874-.258 4.033-.843c-.003-.04-.002-.08-.002-.122a3.419 3.419 0 0 1 3.578-3.42c.592-1.203.832-2.396.832-3.963c0-1.62-.307-3.026-.916-4.245a6.804 6.804 0 0 0-2.766-2.815c-1.22-.68-2.697-1.008-4.457-1.008zm-27.128 3.26c.915 0 1.69.212 2.37.658a4.236 4.236 0 0 1 1.549 1.784c.353.773.516 1.618.516 2.556c0 .94-.188 1.784-.54 2.512a4.137 4.137 0 0 1-1.525 1.76c-.68.423-1.455.634-2.37.634c-.892 0-1.666-.211-2.323-.635a4.04 4.04 0 0 1-1.55-1.76c-.352-.725-.538-1.572-.538-2.51c0-.938.187-1.783.539-2.558a4.236 4.236 0 0 1 1.549-1.784c.657-.444 1.431-.657 2.323-.657m15.22.047h2.536c.775 0 1.36.188 1.76.54c.399.375.61.917.61 1.596c0 .728-.235 1.267-.68 1.666c-.447.398-1.103.587-1.972.587h-2.254Zm-73.951.212h2.37c1.384 0 2.44.398 3.144 1.22c.703.821 1.057 1.948 1.057 3.403c0 1.479-.377 2.628-1.104 3.472c-.728.87-1.808 1.292-3.239 1.292H3.944zm89.798 0h2.369c1.382 0 2.438.4 3.141 1.22c.704.82 1.054 1.945 1.054 3.4c0 1.477-.375 2.626-1.101 3.47c-.727.867-1.804 1.29-3.236 1.29h-2.227zm9.73 9.776a2.157 2.157 0 1 0 0 4.312a2.157 2.157 0 0 0 0-4.312\\\"/><path fill=\\\"#b75cff\\\" d=\\\"M100.229 70.549c-.282.12-.677.282-.996.383c-.675.211-1.215.298-1.77.383c.666 2.136 3.279 4.237 6.324 4.038c2.872 0 4.859-1.416 5.916-3.469c.317-.892-1.365-1.293-3.155-.5c-2.157.956-3.46 1.544-6.319-.835m23.89.817c-4.16 1.714-8.277.261-9.587-.023c-.43-.045-.628-.675-1.512.367l-.43.508a11.03 11.03 0 0 0 7.706 3.148c3.885 0 6.512-1.876 7.384-4.425c.32-1.013-2.78.173-3.561.425\\\"/><path fill=\\\"#5865f2\\\" d=\\\"M126.014 66.787c-.85.006-1.303.77-2.045 1.574c.106.27.164.579.164.938c0 1.672-1.346 2.754-3.74 2.754c-2 0-4.066-.983-5.606-2.426l-1.766 2.084c2.392.108 4.813.724 7.235.629c2.65-.105 6.154-.945 7.379-1.44l.066-.027h.002a5.975 5.975 0 0 0 .297-1.87c0-.52-.05-.999-.145-1.44c-.803-.558-1.38-.779-1.841-.776m-16.938.242c-.753.016-1.487.474-2.203 1.313v.238a3.417 3.417 0 0 1-3.412 3.424a3.408 3.408 0 0 1-2.89-1.604l-.342.149c.892 1.123 1.988 1.704 4.162 1.79c1.772.07 3.542-.238 5.314-.454c.592-1.148.893-2.495.893-3.906v-.381c-.516-.394-1.023-.579-1.522-.569\\\"/><path fill=\\\"#5cff9d\\\" d=\\\"M110.598 63.543c-1.21-1.064-2.44-1.28-3.725.345v4.453c1.246-.29 2.49-.585 3.725-.744zm14.418.322c-1.86-.813-7.428.001-8.413.374c.413.245.84.454 1.266.631l2.919 1.28c1.569.654 2.761 1.142 3.18 2.212c1.205-.176 2.243-.416 2.935-.575l.952-.225c-.365-1.704-1.4-2.848-2.84-3.696z\\\"/><path fill=\\\"#ffdb5c\\\" d=\\\"M113.546 59.437c.098 2.364 1.467 3.86 3.064 4.805c1.22.241 2.437.45 3.657.45c1.7 0 3.4-.405 4.75-.825a11.411 11.412 0 0 0-1.345-.669l-2.884-1.213c-1.426-.58-2.766-1.099-3.234-2.151c-2.875-1.46-.947-2.38-4.008-.397m-2.948.286c-1.093-.754-2.326-.528-3.725.683v3.485c1.241-.125 2.484-.29 3.725-.348z\\\"/><path fill=\\\"#f79454\\\" d=\\\"M114.83 55.616a5.487 5.487 0 0 0-1.284 3.82c1.33-.012 2.667.135 4.007.399a2.1 2.1 0 0 1-.176-.867c0-1.575 1.311-2.527 3.344-2.527c1.836 0 3.312.69 4.656 1.837l1.428-1.76c-4.172-1.29-7.9-2.1-11.974-.903zm-4.232.843c-1.538-1.352-2.72-.355-3.725 1.53v2.417c1.241-.192 2.483-.473 3.725-.683z\\\"/><path fill=\\\"#ff5c5c\\\" d=\\\"M106.873 53.13v4.86c1.241-.42 2.483-1.04 3.725-1.532v-3.329zm13.848 0c-2.524 0-4.626.965-5.89 2.485c1.8.006 3.612.37 5.425.587c2.593.31 5.177.316 6.549.316l.54-.666c-1.673-1.673-4.1-2.723-6.624-2.723z\\\"/>\"\n\t\t},\n\t\t\"djangorest\": {\n\t\t\t\"body\": \"<path fill=\\\"#cecece\\\" d=\\\"M64.347 41.619v4.292H44.872l-.029-.028l-.028.027H6.696a.07.07 0 0 0-.07.07v18.955H.5v.417h6.127v18.717a.07.07 0 0 0 .07.069h18.836v8.54h.417v-8.54h18.685v.07h.11l.097.097l.101-.097h.109v-.07h19.295v3.046h.416v-3.046H84.14v.07h.109l.1.097l.097-.097h.11v-.07h18.675v4.155h.416v-4.155h18.85a.07.07 0 0 0 .069-.07V65.353h4.934v-.417h-4.934V45.98a.07.07 0 0 0-.07-.07h-18.849v-.013h-.416v.014H84.378l-.028-.028l-.029.027H64.764v-4.29zm-57.484 4.43h18.67v18.71zm19.087 0h18.685v.04L25.95 64.747zm19.102 0h19.295v18.706l-19.295-18.67zm19.712 0h19.377v.036l-19.377 18.75zm19.793 0h18.674v18.685L84.557 46.09zm19.09 0h18.682L103.647 64.77zm-96.882.099l18.747 18.787H6.765zm115.66 0v18.787h-18.747zm-77.375.13l19.28 18.657H45.05zm39.088 0v18.657h-19.28zm-39.505.008v18.648H25.956zm39.922 0l18.674 18.645v.004H84.555zM6.764 65.351h18.578L6.764 83.901zm19.359 0h18.51v18.55zm18.927 0h19.178L45.05 83.91zm19.911 0h19.178V83.91zm19.595 0h18.51l-18.51 18.55zm19.09 0h.004L122.326 84h-18.681zm.201 0h18.578v18.55zm-39.085.001L84.032 84h-19.27zm-39.23.006v18.64H6.863zm.417.014l18.588 18.626H25.949zm77.28.012v18.615H84.655zm-38.883.047v18.567H45.158z\\\"/><path fill=\\\"#6c6c6c\\\" d=\\\"M64.556 51.492a1.41 1.41 0 0 0-1.052 2.343L29.677 73.063l.036.061c2.157 3.643 4.791 6.984 8.055 9.924l.052.047l.046-.053l25.746-29.097a1.41 1.41 0 1 0 .945-2.452zm0 .138a1.27 1.27 0 1 1-.898 2.169a1.27 1.27 0 0 1 .898-2.169m48.339.426v.14h1.55v30.91h-1.55v.14h3.239v-.14h-1.55v-30.91h1.55v-.14zm-93.671.513l-.07.003h-.002a5.528 5.528 0 0 0-.071.004l-.065.004v4.114l.076-.008a.644.644 0 1 1 0 1.284l-.076-.008v4.116l.066.003l.07.002h.003a4.752 4.752 0 0 0 .07-9.504zm-.068.142a4.615 4.615 0 0 1 4.615 4.617a4.615 4.615 0 0 1-4.616 4.616v-3.832a.785.785 0 0 0 0-1.569v-3.832m59.98.192v.003a2.56 2.56 0 0 0 0 5.117V71.62h-.006a2.563 2.563 0 0 0 0 5.125a2.561 2.561 0 0 0 .145-5.117V58.022c1.381-.037 2.492-1.167 2.492-2.558s-1.11-2.522-2.492-2.559v-.003zm0 .142v4.84a2.42 2.42 0 0 1 0-4.84m.139 0a2.42 2.42 0 0 1 0 4.84zm-16.016 1.09L37.81 82.895c-3.21-2.902-5.808-6.194-7.94-9.783zm-31.086.853v3.239h.138v-1.55h6.565v1.55h.14v-3.239h-.14v1.55H32.31v-1.55zm24.894 12.705v.139h1.55V77.9h-1.55v.139h3.238v-.14h-1.55V67.833h1.55v-.139zm22.063 4.065h.006v4.846h-.006a2.422 2.422 0 0 1-2.424-2.423a2.422 2.422 0 0 1 2.424-2.423m.144.007a2.42 2.42 0 0 1 0 4.832zm13.243.435v3.24h.14v-1.55h12.022v1.55h.14V72.2h-.14v1.55H92.656V72.2z\\\"/><path fill=\\\"#7f2d2d\\\" d=\\\"m81.067 45.112l-.297.001c-1.515.024-4.762.018-7.67 1.334c-2.907 1.316-5.463 4.044-5.463 9.248c0 2.2.734 4.1 1.886 5.73h-23.21V50.914H61.55v-5.351H40.185v5.35h.002v10.512h-.002v5.35h.002v12.457l-3.58-.022l-4.954.023l-7.755-12.048c1.818-.75 3.597-1.828 4.966-3.339c1.49-1.643 2.486-3.79 2.486-6.447v-.764c0-3.887-1.482-6.676-3.9-8.454c-2.417-1.778-5.724-2.564-9.4-2.647H6.25v5.41h.03v12.709h-.03v5.051h.03v15.854h6.126v-15.87l6.16-.017l8.457 13.759l.012.016c.717.948 2.205 3.054 4.61 4.57l.205.13l4.861-2.565l3.894-.023h20.944v-5.561H46.312V66.775H76.44l.031.015c1.867.853 4.132 1.625 5.896 2.738c1.763 1.112 2.997 2.489 2.997 4.675c0 2.354-1.062 3.586-2.56 4.334s-3.453.933-5.063.933h-.003c-3.087.019-6.718-1.293-9.819-2.328l-.548-.183v5.883l.243.111c3.044 1.388 7.552 1.93 10.135 1.831c1.854 0 5.238-.364 8.225-1.859c2.992-1.497 5.585-4.21 5.585-8.722c0-3.492-1.314-5.996-3.153-7.788c-1.84-1.792-4.183-2.89-6.276-3.706c-.795-.307-2.3-.908-3.797-1.723c-1.494-.813-2.972-1.853-3.71-2.944c-.46-.746-.743-1.576-.792-2.361c.004-2.38 1.113-3.663 2.55-4.42c1.438-.758 3.23-.92 4.401-.835c2.355.17 6.413 1.5 7.711 2.053l.413.177l.6-1.765h16.245v33.667h6.126V50.89h11.01v-5.304h-11.01v-.024h-6.126v.024H84.585c-1.176-.284-2.357-.465-3.519-.476zm-.008.833c1.1.01 2.241.183 3.39.464l.049.012h22.089v-.024h4.46v.024h11.01v3.637h-11.01v33.667h-4.46V50.058H88.913l-.51 1.497c-1.637-.65-5.154-1.786-7.558-1.96c-1.3-.093-3.208.064-4.85.93c-1.643.865-2.996 2.51-2.996 5.17v.025c.058.954.394 1.914.923 2.77l.004.007l.005.007c.882 1.308 2.455 2.37 4.007 3.215c1.551.844 3.089 1.457 3.894 1.767c2.05.8 4.288 1.864 5.994 3.527c1.707 1.663 2.902 3.904 2.902 7.19c0 4.2-2.312 6.57-5.124 7.978c-2.812 1.407-6.122 1.771-7.86 1.771h-.017c-2.357.091-6.68-.442-9.52-1.66v-4.175c2.968 1.001 6.405 2.206 9.539 2.187c1.67 0 3.732-.171 5.434-1.021c1.702-.85 3.02-2.46 3.02-5.08c0-2.509-1.5-4.19-3.386-5.38c-1.887-1.19-4.189-1.965-5.994-2.79l-.11-.052l-.083-.038H45.48V79.83h15.237v3.894H40.603l-4.1.024l-4.606 2.43c-2.117-1.397-3.468-3.27-4.185-4.22l-8.68-14.122l-7.46.02v15.868H7.115V67.871h-.03v-3.385h.03V50.111h-.03v-3.744h10.948c3.567.081 6.707.854 8.925 2.485c2.219 1.632 3.561 4.103 3.561 7.783v.764c0 2.45-.898 4.373-2.27 5.888c-1.373 1.514-3.232 2.61-5.12 3.324l-.48.182c2.863 4.417 5.704 8.849 8.552 13.275l5.407-.025l4.414.026V65.942h-.002v-3.684h.002V50.08h-.002v-3.684h19.7v3.684H45.48v12.178h25.726l-.559-.681c-1.348-1.643-2.176-3.578-2.176-5.882c0-4.94 2.281-7.27 4.974-8.49c2.692-1.218 5.807-1.235 7.34-1.259c.091-.001.183-.002.275 0zm-69.487 4.167v14.375h5.057c2.126 0 4.361-.312 6.113-1.367c1.751-1.055 2.973-2.9 2.973-5.72v-.764c0-2.855-1.603-4.554-3.336-5.451c-1.732-.898-3.578-1.073-4.339-1.073zm.834.833h5.634c.62 0 2.405.175 3.956.979c1.551.804 2.886 2.159 2.886 4.712v.764c0 2.588-1.029 4.077-2.57 5.006s-3.641 1.247-5.683 1.247h-4.223z\\\"/><path fill=\\\"#212121\\\" d=\\\"M12.074 28.415a.139.139 0 0 0-.139.139v2.744c0 .148.01.334.027.561c.007.096.015.15.022.229c-.109-.125-.208-.257-.344-.361a2.55 2.55 0 0 0-.776-.41a3.265 3.265 0 0 0-1.043-.151c-.933 0-1.702.32-2.27.952c-.573.634-.85 1.562-.85 2.762c0 1.188.27 2.106.83 2.731c.56.622 1.33.934 2.27.934c.402 0 .754-.05 1.056-.151a.139.139 0 0 0 .001 0c.302-.105.564-.245.783-.423c.154-.122.265-.267.381-.409l.125.742a.139.139 0 0 0 .137.116h.88a.139.139 0 0 0 .14-.139v-9.727a.139.139 0 0 0-.14-.139zm4.115.313a.837.837 0 0 0-.565.203c-.16.142-.23.36-.23.617c0 .254.07.47.228.615a.139.139 0 0 0 .002.001a.837.837 0 0 0 .565.204c.208 0 .4-.07.55-.203c.167-.143.245-.362.245-.617c0-.259-.078-.479-.246-.618a.82.82 0 0 0-.55-.202m21.769 2.297c-.593 0-1.105.094-1.535.288c-.429.193-.764.48-.994.853c-.23.371-.342.818-.342 1.33c0 .486.123.922.37 1.296a.139.139 0 0 0 .002.001c.203.297.471.509.774.668c-.215.144-.4.294-.526.456a1.194 1.194 0 0 0-.246.742c0 .245.077.471.227.661a.139.139 0 0 0 .001.002c.079.097.168.18.265.252c-.383.119-.721.287-.967.546a.139.139 0 0 0-.001 0a1.704 1.704 0 0 0-.464 1.196c0 .643.287 1.168.83 1.522h.001c.545.36 1.301.53 2.263.53c1.241 0 2.203-.203 2.885-.628c.68-.425 1.037-1.064 1.037-1.862c0-.632-.232-1.142-.686-1.48c-.45-.338-1.081-.496-1.883-.496H37.7a2.82 2.82 0 0 1-.554-.047a.698.698 0 0 1-.31-.142c-.054-.052-.08-.113-.08-.216c0-.15.042-.274.133-.388a1.42 1.42 0 0 1 .424-.32c.195.028.389.046.578.046c.871 0 1.575-.206 2.091-.632c.516-.429.78-1.022.78-1.738c0-.294-.046-.566-.14-.813c-.063-.163-.153-.29-.238-.424l1.122-.132a.139.139 0 0 0 .123-.138v-.669a.139.139 0 0 0-.139-.139h-2.457a2.455 2.455 0 0 0-.3-.06a3.545 3.545 0 0 0-.386-.046h-.001a4.02 4.02 0 0 0-.39-.019zm-15.918.025c-.476 0-.93.058-1.363.174a6.324 6.324 0 0 0-1.141.416a.139.139 0 0 0-.067.179l.335.787a.139.139 0 0 0 .186.072c.3-.139.618-.26.954-.362c.328-.1.673-.15 1.037-.15c.463 0 .801.111 1.037.32c.224.2.354.57.354 1.141v.286l-1.108.044c-1.178.034-2.067.233-2.67.622c-.602.388-.918.97-.918 1.693c0 .473.101.877.312 1.2a.139.139 0 0 0 0 .002c.212.317.503.557.862.713a.139.139 0 0 0 .001 0c.361.155.77.23 1.224.23c.425 0 .787-.042 1.09-.13c.304-.093.573-.227.806-.405a.139.139 0 0 0 .002 0c.176-.138.34-.32.504-.505l.168.805a.139.139 0 0 0 .135.11h.795a.139.139 0 0 0 .14-.139v-4.657c0-.828-.218-1.46-.672-1.86c-.451-.399-1.125-.586-2.003-.586m8.374.116c-.337 0-.659.045-.965.137a2.742 2.742 0 0 0-.836.394a2.22 2.22 0 0 0-.468.45l-.123-.74a.139.139 0 0 0-.137-.116h-.88a.139.139 0 0 0-.139.139v6.851a.139.139 0 0 0 .139.14h1.09a.139.139 0 0 0 .14-.14v-3.588c0-.799.159-1.39.457-1.785c.291-.386.799-.59 1.57-.59c.542 0 .916.134 1.155.383c.244.25.375.637.375 1.185v4.395a.139.139 0 0 0 .139.14h1.077a.139.139 0 0 0 .139-.14v-4.463c0-.902-.227-1.585-.702-2.016c-.471-.43-1.156-.636-2.031-.636m15.529.013c-.707 0-1.325.144-1.848.436c-.519.288-.92.714-1.199 1.265c-.28.549-.416 1.21-.416 1.976c0 .575.08 1.094.245 1.553a.139.139 0 0 0 0 .001c.168.457.403.848.706 1.167a.139.139 0 0 0 .001 0c.307.318.67.564 1.085.733a.139.139 0 0 0 .002.001c.42.165.88.247 1.378.247c.53 0 1.01-.081 1.436-.247c.43-.17.798-.415 1.1-.734c.304-.32.536-.711.695-1.169c.16-.46.237-.977.237-1.552c0-.763-.14-1.422-.43-1.971a2.994 2.994 0 0 0-1.203-1.27c-.514-.292-1.113-.436-1.79-.436zm-30.312.112a.139.139 0 0 0-.14.139v7.958c0 .396-.089.638-.227.757c-.156.134-.359.204-.632.204c-.168 0-.318-.012-.448-.035a.139.139 0 0 0-.004-.001a2.683 2.683 0 0 1-.394-.09a.139.139 0 0 0-.18.134v.844a.139.139 0 0 0 .095.131c.13.044.282.081.453.111c.177.036.38.053.61.053c.463 0 .854-.082 1.17-.255a1.62 1.62 0 0 0 .702-.75c.151-.319.224-.696.224-1.128V31.43a.139.139 0 0 0-.14-.139zm22.288.78c.498 0 .85.122 1.085.35c.234.222.358.561.358 1.05c0 .454-.12.774-.35.993c-.23.219-.582.337-1.08.337c-.48 0-.829-.117-1.069-.338c-.24-.221-.362-.533-.362-.973c0-.484.124-.827.359-1.058c.241-.237.584-.36 1.059-.36m-27.946.235c.774 0 1.266.217 1.538.637c.285.434.438 1.077.438 1.931v.188c0 .803-.158 1.39-.45 1.772c-.288.374-.78.57-1.526.57c-.643 0-1.091-.207-1.398-.629c-.305-.426-.467-1.046-.467-1.87c0-.827.164-1.465.475-1.922c.31-.456.754-.677 1.39-.677m35.944.025c.488 0 .872.104 1.163.301c.296.2.513.483.658.86a.139.139 0 0 0 0 .001c.145.376.22.83.22 1.363c0 .537-.075.997-.22 1.382a1.777 1.777 0 0 1-.665.872c-.292.203-.67.307-1.15.307c-.483 0-.864-.105-1.156-.306a1.792 1.792 0 0 1-.658-.873c-.146-.385-.22-.845-.22-1.382c0-.814.168-1.435.49-1.874h.001v-.001c.322-.432.817-.65 1.537-.65m-22.558 2.59v.488c0 .647-.189 1.103-.561 1.412c-.38.315-.866.474-1.481.474c-.39 0-.688-.087-.908-.253c-.213-.16-.32-.396-.32-.758c0-.412.155-.704.49-.929c.328-.218.941-.362 1.827-.395zm13.988 3.227h1.248c.361 0 .664.025.905.073a.139.139 0 0 0 .002 0c.234.042.396.123.502.234c.1.109.16.277.16.53a.935.935 0 0 1-.259.668a.139.139 0 0 0-.002.002c-.17.19-.438.345-.815.453a.139.139 0 0 0-.001 0c-.371.111-.852.17-1.438.17c-.594 0-1.039-.099-1.335-.275c-.295-.173-.424-.395-.424-.725c0-.257.057-.46.166-.621c.114-.164.275-.287.495-.375a2.14 2.14 0 0 1 .796-.134m18.12 51.362c-.507 0-.945.088-1.31.271a1.863 1.863 0 0 0-.844.862c-.193.386-.284.873-.284 1.463v.35l-1.171.316a.139.139 0 0 0-.103.134v.5a.139.139 0 0 0 .139.139h1.135v5.9a.139.139 0 0 0 .139.139h1.09a.139.139 0 0 0 .14-.14v-5.9h1.653a.139.139 0 0 0 .139-.138v-.813a.139.139 0 0 0-.139-.139h-1.654v-.36c0-.53.099-.9.266-1.116c.173-.222.43-.334.817-.334c.183 0 .36.02.534.059a.139.139 0 0 0 .003 0c.185.038.35.078.492.123a.139.139 0 0 0 .173-.088l.282-.819a.139.139 0 0 0-.087-.177a5.17 5.17 0 0 0-.628-.16a3.973 3.973 0 0 0-.782-.072m61.107.069a.139.139 0 0 0-.14.139v9.727a.139.139 0 0 0 .14.139h1.084a.139.139 0 0 0 .138-.14v-2.418l.716-.625l2.451 3.13a.139.139 0 0 0 .11.053h1.313a.139.139 0 0 0 .11-.225l-3.031-3.83l2.81-2.838a.139.139 0 0 0-.099-.237h-1.28a.139.139 0 0 0-.1.042l-2.39 2.425a.139.139 0 0 0-.002.002c-.126.133-.278.305-.46.519a.139.139 0 0 0 0 .001l-.182.219l.014-.273c.013-.244.02-.45.02-.62v-5.051a.139.139 0 0 0-.139-.14zM86.657 92.2c-.665 0-1.253.152-1.754.458a3.075 3.075 0 0 0-1.156 1.309c-.27.56-.402 1.219-.402 1.973c0 .772.146 1.434.444 1.98c.297.542.717.96 1.253 1.244c.54.279 1.168.416 1.877.416a6.65 6.65 0 0 0 1.288-.11c.37-.072.74-.188 1.111-.345a.139.139 0 0 0 .085-.128v-.913a.139.139 0 0 0-.192-.128a6.78 6.78 0 0 1-1.068.343a5.38 5.38 0 0 1-1.178.115c-.713 0-1.243-.198-1.62-.589c-.353-.364-.546-.897-.58-1.602h4.82a.139.139 0 0 0 .14-.14v-.643c0-.638-.12-1.203-.363-1.688a2.7 2.7 0 0 0-1.059-1.145c-.462-.272-1.014-.407-1.646-.407m18.799 0c-.707 0-1.325.144-1.848.437a2.915 2.915 0 0 0-1.2 1.265c-.278.549-.415 1.21-.415 1.976c0 .575.081 1.094.245 1.553a.139.139 0 0 0 0 .001c.168.457.403.847.706 1.167a.139.139 0 0 0 .001 0c.307.318.67.563 1.085.733a.139.139 0 0 0 .002 0c.42.166.881.248 1.378.248c.53 0 1.01-.082 1.436-.247c.43-.17.798-.415 1.101-.734c.304-.32.535-.711.694-1.17a4.72 4.72 0 0 0 .238-1.551c0-.763-.142-1.422-.43-1.971a2.994 2.994 0 0 0-1.204-1.27c-.513-.292-1.113-.436-1.789-.436zm-39.097.013c-.476 0-.93.058-1.363.173a6.324 6.324 0 0 0-1.142.416a.139.139 0 0 0-.066.18l.335.787a.139.139 0 0 0 .186.072c.3-.14.618-.26.954-.363c.327-.1.673-.15 1.036-.15c.464 0 .802.112 1.038.322c.224.2.354.569.354 1.14v.285l-1.108.045h.001c-1.178.033-2.068.233-2.672.622c-.602.388-.917.97-.917 1.692c0 .474.1.878.311 1.2a.139.139 0 0 0 .001.002c.212.318.502.558.862.713c.362.155.77.23 1.224.23c.425 0 .788-.042 1.09-.13c.304-.092.574-.227.807-.404a.139.139 0 0 0 .001-.001c.177-.138.341-.32.505-.505l.167.805a.139.139 0 0 0 .136.11h.795a.139.139 0 0 0 .138-.138v-4.658c0-.828-.217-1.46-.67-1.86c-.452-.398-1.125-.585-2.003-.585m-5.163.115c-.358 0-.69.066-.989.2c-.29.132-.548.31-.77.534c-.147.146-.258.318-.376.485l-.09-.968a.139.139 0 0 0-.139-.126h-.906a.139.139 0 0 0-.14.14v6.85a.139.139 0 0 0 .14.14h1.096a.139.139 0 0 0 .14-.14V95.77c0-.34.052-.643.155-.913a2.05 2.05 0 0 1 .424-.698a.139.139 0 0 0 .001-.002c.18-.194.386-.34.622-.441a.139.139 0 0 0 .001 0c.241-.105.495-.158.766-.158a3.43 3.43 0 0 1 .768.09a.139.139 0 0 0 .17-.115l.139-.963a.139.139 0 0 0-.11-.156a3.643 3.643 0 0 0-.437-.058a4.452 4.452 0 0 0-.465-.026m13.272 0c-.319 0-.622.044-.907.131a2.552 2.552 0 0 0-.778.39a2.216 2.216 0 0 0-.428.435l-.12-.715a.139.139 0 0 0-.138-.116h-.88a.139.139 0 0 0-.139.14v6.85a.139.139 0 0 0 .14.14h1.09a.139.139 0 0 0 .138-.14V95.82c0-.526.063-.963.183-1.31v-.001c.123-.347.313-.597.575-.767c.26-.168.615-.259 1.074-.259c.32 0 .573.06.765.17a.139.139 0 0 0 .003.001c.197.107.34.263.438.484a.139.139 0 0 0 .001.002c.103.222.158.51.158.867v4.439a.139.139 0 0 0 .139.139h1.084a.139.139 0 0 0 .138-.14v-3.832c0-.726.154-1.256.442-1.605c.283-.345.739-.525 1.41-.525c.468 0 .793.128 1.013.373a.139.139 0 0 0 .001.001c.223.241.344.617.344 1.15v4.439a.139.139 0 0 0 .14.139h1.076a.139.139 0 0 0 .14-.14v-4.488c0-.892-.207-1.565-.647-1.993c-.435-.428-1.074-.634-1.89-.634c-.508 0-.98.102-1.411.307h-.001c-.387.18-.692.463-.933.814a1.828 1.828 0 0 0-.783-.811c-.393-.209-.873-.31-1.437-.31m39.352 0c-.358 0-.69.066-.989.2c-.29.132-.548.31-.77.534c-.147.146-.258.318-.376.485l-.09-.968a.139.139 0 0 0-.139-.126h-.906a.139.139 0 0 0-.14.14v6.85a.139.139 0 0 0 .14.14h1.096a.139.139 0 0 0 .14-.14V95.77c0-.34.052-.643.155-.913c.104-.278.245-.509.424-.698a.139.139 0 0 0 0-.002a1.8 1.8 0 0 1 .623-.441a.139.139 0 0 0 .001 0a1.89 1.89 0 0 1 .766-.158a3.425 3.425 0 0 1 .768.09a.139.139 0 0 0 .17-.115l.139-.963a.139.139 0 0 0-.11-.156a3.643 3.643 0 0 0-.437-.058a4.451 4.451 0 0 0-.465-.026m-22.946.126a.139.139 0 0 0-.133.177l1.984 6.852a.139.139 0 0 0 .133.1h1.228a.139.139 0 0 0 .132-.094l1.339-3.968a8.57 8.57 0 0 0 .167-.514a.139.139 0 0 0 0-.001c.048-.171.092-.333.131-.488l.001-.003c.03-.104.052-.195.076-.288c.024.093.049.183.075.288a.139.139 0 0 0 .002.004l.138.475a.139.139 0 0 0 .001.004l.164.501l1.28 3.988a.139.139 0 0 0 .133.096h1.267a.139.139 0 0 0 .134-.1l1.99-6.852a.139.139 0 0 0-.133-.177h-1.11a.139.139 0 0 0-.134.101l-1.05 3.783a.139.139 0 0 0-.001 0l-.204.764a.139.139 0 0 0 0 .002c-.06.243-.113.464-.16.668a15.612 15.612 0 0 0-.176-.629l-.001-.002a15.861 15.861 0 0 0-.192-.628l-1.28-3.963a.139.139 0 0 0-.132-.096h-1.176a.139.139 0 0 0-.132.095l-1.326 3.97a16.575 16.575 0 0 0-.285.971a.139.139 0 0 0-.001.002l-.077.32l-.007-.036c-.045-.219-.1-.449-.165-.691l-.001-.003a26.786 26.786 0 0 0-.197-.744l-1.038-3.782a.139.139 0 0 0-.134-.102zm-4.23.874c.392 0 .7.083.934.24a.139.139 0 0 0 .001 0c.24.156.415.372.532.661a.139.139 0 0 0 .001.003c.107.251.162.55.18.881h-3.484c.08-.544.253-.98.544-1.284c.319-.335.738-.5 1.292-.5m18.786.025c.488 0 .872.104 1.163.301c.295.2.513.483.657.86c.146.377.221.83.221 1.364c0 .537-.075.997-.22 1.382a1.776 1.776 0 0 1-.665.872c-.293.202-.671.307-1.15.307c-.483 0-.864-.105-1.156-.307a1.792 1.792 0 0 1-.658-.872c-.146-.385-.221-.845-.221-1.382c0-.814.169-1.435.491-1.874l.001-.001c.322-.432.817-.65 1.537-.65m-37.751 2.731v.487c0 .648-.189 1.104-.561 1.412c-.38.315-.866.475-1.481.475c-.39 0-.688-.088-.908-.253c-.213-.16-.32-.396-.32-.758c0-.413.155-.705.49-.93c.328-.218.941-.361 1.827-.394z\\\"/>\"\n\t\t},\n\t\t\"djangorest-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#7f2d2d\\\" d=\\\"m81.067 45.112l-.297.001c-1.515.024-4.762.018-7.67 1.334c-2.907 1.316-5.463 4.044-5.463 9.248c0 2.2.734 4.1 1.886 5.73h-23.21V50.914H61.55v-5.351H40.185v5.35h.002v10.512h-.002v5.35h.002v12.457l-3.58-.022l-4.954.023l-7.755-12.048c1.818-.75 3.597-1.828 4.966-3.339c1.49-1.643 2.486-3.79 2.486-6.447v-.764c0-3.887-1.482-6.676-3.9-8.454c-2.417-1.778-5.724-2.564-9.4-2.647H6.25v5.41h.03v12.709h-.03v5.051h.03v15.854h6.126v-15.87l6.16-.017l8.457 13.759l.012.016c.717.948 2.205 3.054 4.61 4.57l.205.13l4.861-2.565l3.894-.023h20.944v-5.561H46.312V66.775H76.44l.031.015c1.867.853 4.132 1.625 5.896 2.738c1.763 1.112 2.997 2.489 2.997 4.675c0 2.354-1.062 3.586-2.56 4.334s-3.453.933-5.063.933h-.003c-3.087.019-6.718-1.293-9.819-2.328l-.548-.183v5.883l.243.111c3.044 1.388 7.552 1.93 10.135 1.831c1.854 0 5.238-.364 8.225-1.859c2.992-1.497 5.585-4.21 5.585-8.722c0-3.492-1.314-5.996-3.153-7.788c-1.84-1.792-4.183-2.89-6.276-3.706c-.795-.307-2.3-.908-3.797-1.723c-1.494-.813-2.972-1.853-3.71-2.944c-.46-.746-.743-1.576-.792-2.361c.004-2.38 1.113-3.663 2.55-4.42c1.438-.758 3.23-.92 4.401-.835c2.355.17 6.413 1.5 7.711 2.053l.413.177l.6-1.765h16.245v33.667h6.126V50.89h11.01v-5.304h-11.01v-.024h-6.126v.024H84.585c-1.176-.284-2.357-.465-3.519-.476zm-.008.833c1.1.01 2.241.183 3.39.464l.049.012h22.089v-.024h4.46v.024h11.01v3.637h-11.01v33.667h-4.46V50.058H88.913l-.51 1.497c-1.637-.65-5.154-1.786-7.558-1.96c-1.3-.093-3.208.064-4.85.93c-1.643.865-2.996 2.51-2.996 5.17v.025c.058.954.394 1.914.923 2.77l.004.007l.005.007c.882 1.308 2.455 2.37 4.007 3.215c1.551.844 3.089 1.457 3.894 1.767c2.05.8 4.288 1.864 5.994 3.527c1.707 1.663 2.902 3.904 2.902 7.19c0 4.2-2.312 6.57-5.124 7.978c-2.812 1.407-6.122 1.771-7.86 1.771h-.017c-2.357.091-6.68-.442-9.52-1.66v-4.175c2.968 1.001 6.405 2.206 9.539 2.187c1.67 0 3.732-.171 5.434-1.021c1.702-.85 3.02-2.46 3.02-5.08c0-2.509-1.5-4.19-3.386-5.38c-1.887-1.19-4.189-1.965-5.994-2.79l-.11-.052l-.083-.038H45.48V79.83h15.237v3.894H40.603l-4.1.024l-4.606 2.43c-2.117-1.397-3.468-3.27-4.185-4.22l-8.68-14.122l-7.46.02v15.868H7.115V67.871h-.03v-3.385h.03V50.111h-.03v-3.744h10.948c3.567.081 6.707.854 8.925 2.485c2.219 1.632 3.561 4.103 3.561 7.783v.764c0 2.45-.898 4.373-2.27 5.888c-1.373 1.514-3.232 2.61-5.12 3.324l-.48.182c2.863 4.417 5.704 8.849 8.552 13.275l5.407-.025l4.414.026V65.942h-.002v-3.684h.002V50.08h-.002v-3.684h19.7v3.684H45.48v12.178h25.726l-.559-.681c-1.348-1.643-2.176-3.578-2.176-5.882c0-4.94 2.281-7.27 4.974-8.49c2.692-1.218 5.807-1.235 7.34-1.259c.091-.001.183-.002.275 0zm-69.487 4.167v14.375h5.057c2.126 0 4.361-.312 6.113-1.367c1.751-1.055 2.973-2.9 2.973-5.72v-.764c0-2.855-1.603-4.554-3.336-5.451c-1.732-.898-3.578-1.073-4.339-1.073zm.834.833h5.634c.62 0 2.405.175 3.956.979c1.551.804 2.886 2.159 2.886 4.712v.764c0 2.588-1.029 4.077-2.57 5.006s-3.641 1.247-5.683 1.247h-4.223z\\\"/><path fill=\\\"#212121\\\" d=\\\"M12.074 28.415a.139.139 0 0 0-.139.139v2.744c0 .148.01.334.027.561c.007.096.015.15.022.229c-.109-.125-.208-.257-.344-.361a2.55 2.55 0 0 0-.776-.41a3.265 3.265 0 0 0-1.043-.151c-.933 0-1.702.32-2.27.952c-.573.634-.85 1.562-.85 2.762c0 1.188.27 2.106.83 2.731c.56.622 1.33.934 2.27.934c.402 0 .754-.05 1.056-.151a.139.139 0 0 0 .001 0c.302-.105.564-.245.783-.423c.154-.122.265-.267.381-.409l.125.742a.139.139 0 0 0 .137.116h.88a.139.139 0 0 0 .14-.139v-9.727a.139.139 0 0 0-.14-.139zm4.115.313a.837.837 0 0 0-.565.203c-.16.142-.23.36-.23.617c0 .254.07.47.228.615a.139.139 0 0 0 .002.001a.837.837 0 0 0 .565.204c.208 0 .4-.07.55-.203c.167-.143.245-.362.245-.617c0-.259-.078-.479-.246-.618a.82.82 0 0 0-.55-.202m21.769 2.297c-.593 0-1.105.094-1.535.288c-.429.193-.764.48-.994.853c-.23.371-.342.818-.342 1.33c0 .486.123.922.37 1.296a.139.139 0 0 0 .002.001c.203.297.471.509.774.668c-.215.144-.4.294-.526.456a1.194 1.194 0 0 0-.246.742c0 .245.077.471.227.661a.139.139 0 0 0 .001.002c.079.097.168.18.265.252c-.383.119-.721.287-.967.546a.139.139 0 0 0-.001 0a1.704 1.704 0 0 0-.464 1.196c0 .643.287 1.168.83 1.522h.001c.545.36 1.301.53 2.263.53c1.241 0 2.203-.203 2.885-.628c.68-.425 1.037-1.064 1.037-1.862c0-.632-.232-1.142-.686-1.48c-.45-.338-1.081-.496-1.883-.496H37.7a2.82 2.82 0 0 1-.554-.047a.698.698 0 0 1-.31-.142c-.054-.052-.08-.113-.08-.216c0-.15.042-.274.133-.388a1.42 1.42 0 0 1 .424-.32c.195.028.389.046.578.046c.871 0 1.575-.206 2.091-.632c.516-.429.78-1.022.78-1.738c0-.294-.046-.566-.14-.813c-.063-.163-.153-.29-.238-.424l1.122-.132a.139.139 0 0 0 .123-.138v-.669a.139.139 0 0 0-.139-.139h-2.457a2.455 2.455 0 0 0-.3-.06a3.545 3.545 0 0 0-.386-.046h-.001a4.02 4.02 0 0 0-.39-.019zm-15.918.025c-.476 0-.93.058-1.363.174a6.324 6.324 0 0 0-1.141.416a.139.139 0 0 0-.067.179l.335.787a.139.139 0 0 0 .186.072c.3-.139.618-.26.954-.362c.328-.1.673-.15 1.037-.15c.463 0 .801.111 1.037.32c.224.2.354.57.354 1.141v.286l-1.108.044c-1.178.034-2.067.233-2.67.622c-.602.388-.918.97-.918 1.693c0 .473.101.877.312 1.2a.139.139 0 0 0 0 .002c.212.317.503.557.862.713a.139.139 0 0 0 .001 0c.361.155.77.23 1.224.23c.425 0 .787-.042 1.09-.13c.304-.093.573-.227.806-.405a.139.139 0 0 0 .002 0c.176-.138.34-.32.504-.505l.168.805a.139.139 0 0 0 .135.11h.795a.139.139 0 0 0 .14-.139v-4.657c0-.828-.218-1.46-.672-1.86c-.451-.399-1.125-.586-2.003-.586m8.374.116c-.337 0-.659.045-.965.137a2.742 2.742 0 0 0-.836.394a2.22 2.22 0 0 0-.468.45l-.123-.74a.139.139 0 0 0-.137-.116h-.88a.139.139 0 0 0-.139.139v6.851a.139.139 0 0 0 .139.14h1.09a.139.139 0 0 0 .14-.14v-3.588c0-.799.159-1.39.457-1.785c.291-.386.799-.59 1.57-.59c.542 0 .916.134 1.155.383c.244.25.375.637.375 1.185v4.395a.139.139 0 0 0 .139.14h1.077a.139.139 0 0 0 .139-.14v-4.463c0-.902-.227-1.585-.702-2.016c-.471-.43-1.156-.636-2.031-.636m15.529.013c-.707 0-1.325.144-1.848.436c-.519.288-.92.714-1.199 1.265c-.28.549-.416 1.21-.416 1.976c0 .575.08 1.094.245 1.553a.139.139 0 0 0 0 .001c.168.457.403.848.706 1.167a.139.139 0 0 0 .001 0c.307.318.67.564 1.085.733a.139.139 0 0 0 .002.001c.42.165.88.247 1.378.247c.53 0 1.01-.081 1.436-.247c.43-.17.798-.415 1.1-.734c.304-.32.536-.711.695-1.169c.16-.46.237-.977.237-1.552c0-.763-.14-1.422-.43-1.971a2.994 2.994 0 0 0-1.203-1.27c-.514-.292-1.113-.436-1.79-.436zm-30.312.112a.139.139 0 0 0-.14.139v7.958c0 .396-.089.638-.227.757c-.156.134-.359.204-.632.204c-.168 0-.318-.012-.448-.035a.139.139 0 0 0-.004-.001a2.683 2.683 0 0 1-.394-.09a.139.139 0 0 0-.18.134v.844a.139.139 0 0 0 .095.131c.13.044.282.081.453.111c.177.036.38.053.61.053c.463 0 .854-.082 1.17-.255a1.62 1.62 0 0 0 .702-.75c.151-.319.224-.696.224-1.128V31.43a.139.139 0 0 0-.14-.139zm22.288.78c.498 0 .85.122 1.085.35c.234.222.358.561.358 1.05c0 .454-.12.774-.35.993c-.23.219-.582.337-1.08.337c-.48 0-.829-.117-1.069-.338c-.24-.221-.362-.533-.362-.973c0-.484.124-.827.359-1.058c.241-.237.584-.36 1.059-.36m-27.946.235c.774 0 1.266.217 1.538.637c.285.434.438 1.077.438 1.931v.188c0 .803-.158 1.39-.45 1.772c-.288.374-.78.57-1.526.57c-.643 0-1.091-.207-1.398-.629c-.305-.426-.467-1.046-.467-1.87c0-.827.164-1.465.475-1.922c.31-.456.754-.677 1.39-.677m35.944.025c.488 0 .872.104 1.163.301c.296.2.513.483.658.86a.139.139 0 0 0 0 .001c.145.376.22.83.22 1.363c0 .537-.075.997-.22 1.382a1.777 1.777 0 0 1-.665.872c-.292.203-.67.307-1.15.307c-.483 0-.864-.105-1.156-.306a1.792 1.792 0 0 1-.658-.873c-.146-.385-.22-.845-.22-1.382c0-.814.168-1.435.49-1.874h.001v-.001c.322-.432.817-.65 1.537-.65m-22.558 2.59v.488c0 .647-.189 1.103-.561 1.412c-.38.315-.866.474-1.481.474c-.39 0-.688-.087-.908-.253c-.213-.16-.32-.396-.32-.758c0-.412.155-.704.49-.929c.328-.218.941-.362 1.827-.395zm13.988 3.227h1.248c.361 0 .664.025.905.073a.139.139 0 0 0 .002 0c.234.042.396.123.502.234c.1.109.16.277.16.53a.935.935 0 0 1-.259.668a.139.139 0 0 0-.002.002c-.17.19-.438.345-.815.453a.139.139 0 0 0-.001 0c-.371.111-.852.17-1.438.17c-.594 0-1.039-.099-1.335-.275c-.295-.173-.424-.395-.424-.725c0-.257.057-.46.166-.621c.114-.164.275-.287.495-.375a2.14 2.14 0 0 1 .796-.134m18.12 51.362c-.507 0-.945.088-1.31.271a1.863 1.863 0 0 0-.844.862c-.193.386-.284.873-.284 1.463v.35l-1.171.316a.139.139 0 0 0-.103.134v.5a.139.139 0 0 0 .139.139h1.135v5.9a.139.139 0 0 0 .139.139h1.09a.139.139 0 0 0 .14-.14v-5.9h1.653a.139.139 0 0 0 .139-.138v-.813a.139.139 0 0 0-.139-.139h-1.654v-.36c0-.53.099-.9.266-1.116c.173-.222.43-.334.817-.334c.183 0 .36.02.534.059a.139.139 0 0 0 .003 0c.185.038.35.078.492.123a.139.139 0 0 0 .173-.088l.282-.819a.139.139 0 0 0-.087-.177a5.17 5.17 0 0 0-.628-.16a3.973 3.973 0 0 0-.782-.072m61.107.069a.139.139 0 0 0-.14.139v9.727a.139.139 0 0 0 .14.139h1.084a.139.139 0 0 0 .138-.14v-2.418l.716-.625l2.451 3.13a.139.139 0 0 0 .11.053h1.313a.139.139 0 0 0 .11-.225l-3.031-3.83l2.81-2.838a.139.139 0 0 0-.099-.237h-1.28a.139.139 0 0 0-.1.042l-2.39 2.425a.139.139 0 0 0-.002.002c-.126.133-.278.305-.46.519a.139.139 0 0 0 0 .001l-.182.219l.014-.273c.013-.244.02-.45.02-.62v-5.051a.139.139 0 0 0-.139-.14zM86.657 92.2c-.665 0-1.253.152-1.754.458a3.075 3.075 0 0 0-1.156 1.309c-.27.56-.402 1.219-.402 1.973c0 .772.146 1.434.444 1.98c.297.542.717.96 1.253 1.244c.54.279 1.168.416 1.877.416a6.65 6.65 0 0 0 1.288-.11c.37-.072.74-.188 1.111-.345a.139.139 0 0 0 .085-.128v-.913a.139.139 0 0 0-.192-.128a6.78 6.78 0 0 1-1.068.343a5.38 5.38 0 0 1-1.178.115c-.713 0-1.243-.198-1.62-.589c-.353-.364-.546-.897-.58-1.602h4.82a.139.139 0 0 0 .14-.14v-.643c0-.638-.12-1.203-.363-1.688a2.7 2.7 0 0 0-1.059-1.145c-.462-.272-1.014-.407-1.646-.407m18.799 0c-.707 0-1.325.144-1.848.437a2.915 2.915 0 0 0-1.2 1.265c-.278.549-.415 1.21-.415 1.976c0 .575.081 1.094.245 1.553a.139.139 0 0 0 0 .001c.168.457.403.847.706 1.167a.139.139 0 0 0 .001 0c.307.318.67.563 1.085.733a.139.139 0 0 0 .002 0c.42.166.881.248 1.378.248c.53 0 1.01-.082 1.436-.247c.43-.17.798-.415 1.101-.734c.304-.32.535-.711.694-1.17a4.72 4.72 0 0 0 .238-1.551c0-.763-.142-1.422-.43-1.971a2.994 2.994 0 0 0-1.204-1.27c-.513-.292-1.113-.436-1.789-.436zm-39.097.013c-.476 0-.93.058-1.363.173a6.324 6.324 0 0 0-1.142.416a.139.139 0 0 0-.066.18l.335.787a.139.139 0 0 0 .186.072c.3-.14.618-.26.954-.363c.327-.1.673-.15 1.036-.15c.464 0 .802.112 1.038.322c.224.2.354.569.354 1.14v.285l-1.108.045h.001c-1.178.033-2.068.233-2.672.622c-.602.388-.917.97-.917 1.692c0 .474.1.878.311 1.2a.139.139 0 0 0 .001.002c.212.318.502.558.862.713c.362.155.77.23 1.224.23c.425 0 .788-.042 1.09-.13c.304-.092.574-.227.807-.404a.139.139 0 0 0 .001-.001c.177-.138.341-.32.505-.505l.167.805a.139.139 0 0 0 .136.11h.795a.139.139 0 0 0 .138-.138v-4.658c0-.828-.217-1.46-.67-1.86c-.452-.398-1.125-.585-2.003-.585m-5.163.115c-.358 0-.69.066-.989.2c-.29.132-.548.31-.77.534c-.147.146-.258.318-.376.485l-.09-.968a.139.139 0 0 0-.139-.126h-.906a.139.139 0 0 0-.14.14v6.85a.139.139 0 0 0 .14.14h1.096a.139.139 0 0 0 .14-.14V95.77c0-.34.052-.643.155-.913a2.05 2.05 0 0 1 .424-.698a.139.139 0 0 0 .001-.002c.18-.194.386-.34.622-.441a.139.139 0 0 0 .001 0c.241-.105.495-.158.766-.158a3.43 3.43 0 0 1 .768.09a.139.139 0 0 0 .17-.115l.139-.963a.139.139 0 0 0-.11-.156a3.643 3.643 0 0 0-.437-.058a4.452 4.452 0 0 0-.465-.026m13.272 0c-.319 0-.622.044-.907.131a2.552 2.552 0 0 0-.778.39a2.216 2.216 0 0 0-.428.435l-.12-.715a.139.139 0 0 0-.138-.116h-.88a.139.139 0 0 0-.139.14v6.85a.139.139 0 0 0 .14.14h1.09a.139.139 0 0 0 .138-.14V95.82c0-.526.063-.963.183-1.31v-.001c.123-.347.313-.597.575-.767c.26-.168.615-.259 1.074-.259c.32 0 .573.06.765.17a.139.139 0 0 0 .003.001c.197.107.34.263.438.484a.139.139 0 0 0 .001.002c.103.222.158.51.158.867v4.439a.139.139 0 0 0 .139.139h1.084a.139.139 0 0 0 .138-.14v-3.832c0-.726.154-1.256.442-1.605c.283-.345.739-.525 1.41-.525c.468 0 .793.128 1.013.373a.139.139 0 0 0 .001.001c.223.241.344.617.344 1.15v4.439a.139.139 0 0 0 .14.139h1.076a.139.139 0 0 0 .14-.14v-4.488c0-.892-.207-1.565-.647-1.993c-.435-.428-1.074-.634-1.89-.634c-.508 0-.98.102-1.411.307h-.001c-.387.18-.692.463-.933.814a1.828 1.828 0 0 0-.783-.811c-.393-.209-.873-.31-1.437-.31m39.352 0c-.358 0-.69.066-.989.2c-.29.132-.548.31-.77.534c-.147.146-.258.318-.376.485l-.09-.968a.139.139 0 0 0-.139-.126h-.906a.139.139 0 0 0-.14.14v6.85a.139.139 0 0 0 .14.14h1.096a.139.139 0 0 0 .14-.14V95.77c0-.34.052-.643.155-.913c.104-.278.245-.509.424-.698a.139.139 0 0 0 0-.002a1.8 1.8 0 0 1 .623-.441a.139.139 0 0 0 .001 0a1.89 1.89 0 0 1 .766-.158a3.425 3.425 0 0 1 .768.09a.139.139 0 0 0 .17-.115l.139-.963a.139.139 0 0 0-.11-.156a3.643 3.643 0 0 0-.437-.058a4.451 4.451 0 0 0-.465-.026m-22.946.126a.139.139 0 0 0-.133.177l1.984 6.852a.139.139 0 0 0 .133.1h1.228a.139.139 0 0 0 .132-.094l1.339-3.968a8.57 8.57 0 0 0 .167-.514a.139.139 0 0 0 0-.001c.048-.171.092-.333.131-.488l.001-.003c.03-.104.052-.195.076-.288c.024.093.049.183.075.288a.139.139 0 0 0 .002.004l.138.475a.139.139 0 0 0 .001.004l.164.501l1.28 3.988a.139.139 0 0 0 .133.096h1.267a.139.139 0 0 0 .134-.1l1.99-6.852a.139.139 0 0 0-.133-.177h-1.11a.139.139 0 0 0-.134.101l-1.05 3.783a.139.139 0 0 0-.001 0l-.204.764a.139.139 0 0 0 0 .002c-.06.243-.113.464-.16.668a15.612 15.612 0 0 0-.176-.629l-.001-.002a15.861 15.861 0 0 0-.192-.628l-1.28-3.963a.139.139 0 0 0-.132-.096h-1.176a.139.139 0 0 0-.132.095l-1.326 3.97a16.575 16.575 0 0 0-.285.971a.139.139 0 0 0-.001.002l-.077.32l-.007-.036c-.045-.219-.1-.449-.165-.691l-.001-.003a26.786 26.786 0 0 0-.197-.744l-1.038-3.782a.139.139 0 0 0-.134-.102zm-4.23.874c.392 0 .7.083.934.24a.139.139 0 0 0 .001 0c.24.156.415.372.532.661a.139.139 0 0 0 .001.003c.107.251.162.55.18.881h-3.484c.08-.544.253-.98.544-1.284c.319-.335.738-.5 1.292-.5m18.786.025c.488 0 .872.104 1.163.301c.295.2.513.483.657.86c.146.377.221.83.221 1.364c0 .537-.075.997-.22 1.382a1.776 1.776 0 0 1-.665.872c-.293.202-.671.307-1.15.307c-.483 0-.864-.105-1.156-.307a1.792 1.792 0 0 1-.658-.872c-.146-.385-.221-.845-.221-1.382c0-.814.169-1.435.491-1.874l.001-.001c.322-.432.817-.65 1.537-.65m-37.751 2.731v.487c0 .648-.189 1.104-.561 1.412c-.38.315-.866.475-1.481.475c-.39 0-.688-.088-.908-.253c-.213-.16-.32-.396-.32-.758c0-.413.155-.705.49-.93c.328-.218.941-.361 1.827-.394z\\\"/>\"\n\t\t},\n\t\t\"docker\": {\n\t\t\t\"body\": \"<path fill=\\\"#3A4D54\\\" fill-rule=\\\"evenodd\\\" d=\\\"M73.8 50.8h11.3v11.5h5.7c2.6 0 5.3-.5 7.8-1.3c1.2-.4 2.6-1 3.8-1.7c-1.6-2.1-2.4-4.7-2.6-7.3c-.3-3.5.4-8.1 2.8-10.8l1.2-1.4l1.4 1.1c3.6 2.9 6.5 6.8 7.1 11.4c4.3-1.3 9.3-1 13.1 1.2l1.5.9l-.8 1.6c-3.2 6.2-9.9 8.2-16.4 7.8c-9.8 24.3-31 35.8-56.8 35.8c-13.3 0-25.5-5-32.5-16.8l-.1-.2l-1-2.1c-2.4-5.2-3.1-10.9-2.6-16.6l.2-1.7h9.6V50.8h11.3V39.6h22.5V28.3h13.5z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#00AADA\\\" d=\\\"M110.4 55.1c.8-5.9-3.6-10.5-6.4-12.7c-3.1 3.6-3.6 13.2 1.3 17.2c-2.8 2.4-8.5 4.7-14.5 4.7H18.6c-.6 6.2.5 11.9 3 16.8l.8 1.5c.5.9 1.1 1.7 1.7 2.6c3 .2 5.7.3 8.2.2c4.9-.1 8.9-.7 12-1.7c.5-.2.9.1 1.1.5c.2.5-.1.9-.5 1.1c-.4.1-.8.3-1.3.4c-2.4.7-5 1.1-8.3 1.3h-.6c-1.3.1-2.7.1-4.2.1c-1.6 0-3.1 0-4.9-.1c6 6.8 15.4 10.8 27.2 10.8c25 0 46.2-11.1 55.5-35.9c6.7.7 13.1-1 16-6.7c-4.5-2.7-10.5-1.8-13.9-.1\\\"/><path fill=\\\"#28B8EB\\\" d=\\\"M110.4 55.1c.8-5.9-3.6-10.5-6.4-12.7c-3.1 3.6-3.6 13.2 1.3 17.2c-2.8 2.4-8.5 4.7-14.5 4.7h-68c-.3 9.5 3.2 16.7 9.5 21c4.9-.1 8.9-.7 12-1.7c.5-.2.9.1 1.1.5c.2.5-.1.9-.5 1.1c-.4.1-.8.3-1.3.4c-2.4.7-5.2 1.2-8.5 1.4l-.1-.1c8.5 4.4 20.8 4.3 35-1.1c15.8-6.1 30.6-17.7 40.9-30.9c-.2.1-.4.1-.5.2\\\"/><path fill=\\\"#028BB8\\\" d=\\\"M18.7 71.8c.4 3.3 1.4 6.4 2.9 9.3l.8 1.5c.5.9 1.1 1.7 1.7 2.6c3 .2 5.7.3 8.2.2c4.9-.1 8.9-.7 12-1.7c.5-.2.9.1 1.1.5c.2.5-.1.9-.5 1.1c-.4.1-.8.3-1.3.4c-2.4.7-5.2 1.2-8.5 1.4h-.4c-1.3.1-2.7.1-4.1.1c-1.6 0-3.2 0-4.9-.1c6 6.8 15.5 10.8 27.3 10.8c21.4 0 40-8.1 50.8-26H18.7z\\\"/><path fill=\\\"#019BC6\\\" d=\\\"M23.5 71.8c1.3 5.8 4.3 10.4 8.8 13.5c4.9-.1 8.9-.7 12-1.7c.5-.2.9.1 1.1.5c.2.5-.1.9-.5 1.1c-.4.1-.8.3-1.3.4c-2.4.7-5.2 1.2-8.6 1.4c8.5 4.4 20.8 4.3 34.9-1.1c8.5-3.3 16.8-8.2 24.2-14.1z\\\"/><path fill=\\\"#00ACD3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M28.4 52.7h9.8v9.8h-9.8zm.8.8h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm3-12h9.8v9.8h-9.8zm.9.8h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#23C2EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M39.6 52.7h9.8v9.8h-9.8zm.9.8h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#00ACD3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M50.9 52.7h9.8v9.8h-9.8zm.8.8h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#23C2EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M50.9 41.5h9.8v9.8h-9.8zm.8.8h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm3.1 10.4H72v9.8h-9.8zm.8.8h.8v8.1H63zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#00ACD3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.2 41.5H72v9.8h-9.8zm.8.8h.8v8.1H63zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#23C2EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.2 30.2H72V40h-9.8zm.8.8h.8v8.1H63zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#00ACD3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M73.5 52.7h9.8v9.8h-9.8zm.8.8h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D4EEF1\\\" fill-rule=\\\"evenodd\\\" d=\\\"M48.8 78.3c1.5 0 2.7 1.2 2.7 2.7c0 1.5-1.2 2.7-2.7 2.7c-1.5 0-2.7-1.2-2.7-2.7c0-1.5 1.2-2.7 2.7-2.7\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3A4D54\\\" fill-rule=\\\"evenodd\\\" d=\\\"M48.8 79.1c.2 0 .5 0 .7.1c-.2.1-.4.4-.4.7c0 .4.4.8.8.8c.3 0 .6-.2.7-.4c.1.2.1.5.1.7c0 1.1-.9 1.9-1.9 1.9c-1.1 0-1.9-.9-1.9-1.9c0-1 .8-1.9 1.9-1.9M1.1 72.8h125.4c-2.7-.7-8.6-1.6-7.7-5.2c-5 5.7-16.9 4-20 1.2c-3.4 4.9-23 3-24.3-.8c-4.2 5-17.3 5-21.5 0c-1.4 3.8-21 5.7-24.3.8c-3 2.8-15 4.5-20-1.2c1.1 3.5-4.9 4.5-7.6 5.2\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#BFDBE0\\\" d=\\\"M56 97.8c-6.7-3.2-10.3-7.5-12.4-12.2c-2.5.7-5.5 1.2-8.9 1.4c-1.3.1-2.7.1-4.1.1c-1.7 0-3.4 0-5.2-.1c6 6 13.6 10.7 27.5 10.8z\\\"/><path fill=\\\"#D4EEF1\\\" d=\\\"M46.1 89.9c-.9-1.3-1.8-2.8-2.5-4.3c-2.5.7-5.5 1.2-8.9 1.4c2.3 1.2 5.7 2.4 11.4 2.9\\\"/>\"\n\t\t},\n\t\t\"docker-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#3A4D54\\\" fill-rule=\\\"evenodd\\\" d=\\\"M20 96.9v-8.1c0-1.1.7-1.9 1.8-1.9h.3c1.1 0 1.8.9 1.8 1.9v17c0 4.1-2 7.4-5.6 9.5c-1.7 1-3.5 1.5-5.4 1.5h-.8c-4.1 0-7.4-2-9.5-5.6c-1-1.7-1.5-3.5-1.5-5.4v-.8c0-4.1 2-7.4 5.6-9.5c1.7-1 3.5-1.5 5.4-1.5h.8c2.7.1 5.1 1.1 7.1 2.9m-15.1 8.5c0 3 1.5 5.2 4.1 6.7c1.1.6 2.2.9 3.4.9c2.9 0 5.1-1.4 6.6-3.9c.7-1.2 1-2.4 1-3.8c0-2.6-1.2-4.6-3.3-6.1c-1.3-.9-2.7-1.4-4.2-1.4c-3.2 0-5.5 1.6-6.9 4.5c-.5 1-.7 2.1-.7 3.1m32.2-11.3h.5c4.4 0 7.8 2.1 9.9 6c.9 1.5 1.3 3.2 1.3 5v.8c0 4.1-2 7.4-5.6 9.5c-1.7 1-3.5 1.5-5.4 1.5H37c-4.1 0-7.4-2-9.5-5.6c-1-1.7-1.5-3.5-1.5-5.4v-.8c0-4.1 2.1-7.4 5.6-9.5c1.7-1.1 3.6-1.5 5.5-1.5m-7.2 11.3c0 2.9 1.4 5 3.9 6.5c1.2.7 2.4 1 3.8 1c2.9 0 5-1.5 6.5-3.9c.7-1.2 1-2.4 1-3.8c0-2.7-1.3-4.8-3.5-6.3c-1.2-.8-2.6-1.2-4-1.2c-3.2 0-5.5 1.6-6.9 4.5c-.6 1.1-.8 2.2-.8 3.2m34.8-7.2c-.6-.3-1.7-.4-2.3-.4c-3.2-.1-5.5 1.7-6.9 4.5c-.5 1-.7 2-.7 3.1c0 3.3 1.7 5.6 4.6 7c1.1.5 2.4.6 3.6.6c1 0 2.5-.6 3.4-1.1l.2-.1h.8c.9.2 1.5.7 1.5 1.7v.4c0 2.3-4.3 2.9-5.9 3c-5.7.4-10-2.7-11.6-8.2c-.3-.9-.4-1.9-.4-2.9v-.8c0-4.1 2.1-7.4 5.6-9.5c1.7-1 3.5-1.5 5.4-1.5h.8c2 0 3.9.6 5.6 1.7l.1.1l.1.1c.2.3.3.6.3 1v.4c0 1-.7 1.5-1.6 1.7H67c-.5 0-1.8-.6-2.3-.8m12.4 2.6c1.5-1.5 3-3 4.5-4.4c.4-.4 2-2.1 2.6-2.1h.8c.9.2 1.5.7 1.5 1.7v.4c0 .6-.7 1.4-1.2 1.8l-2.7 2.7l-4.6 4.7c2 2 4 4 5.9 6l1.6 1.7c.2.2.5.4.6.7c.2.3.3.6.3.9v.5c-.2.9-.8 1.6-1.7 1.6h-.3c-.6 0-1.3-.7-1.8-1.1c-.9-.8-1.8-1.7-2.6-2.6l-2.9-2.9v4.6c0 1.1-.7 1.9-1.8 1.9H75c-1.1 0-1.8-.9-1.8-1.9V88.9c0-1.1.7-1.9 1.8-1.9h.3c1.1 0 1.8.8 1.8 1.9zm47.6-6.6h.4c1.1 0 1.9.8 1.9 1.9c0 1.6-1.5 2-2.8 2c-1.7 0-3.4 1-4.5 2.2c-1.5 1.5-2.1 3.3-2.1 5.4v9.2c0 1.1-.7 1.9-1.8 1.9h-.3c-1.1 0-1.8-.9-1.8-1.9v-9.8c0-3.8 1.8-6.8 4.9-9c1.8-1.2 3.9-1.9 6.1-1.9m-27.1 18.3c1.4.5 3 .4 4.4.2c.7-.3 2.6-1.1 3.3-1h.2c.4.2.8.5 1 .9c.5 1 .3 2-.7 2.6l-.3.2c-3.6 2.1-7.5 1.8-11.1-.2c-1.7-.9-3-2.3-4-4l-.2-.4c-2.3-4-2-8.3.6-12.1c.9-1.3 2.1-2.3 3.5-3.1l.5-.3c3.4-2 7.1-1.8 10.6-.1c1.9.9 3.4 2.3 4.5 4.1l.2.3c.8 1.3-.2 2.5-1.2 3.3c-1.2.9-2.4 2-3.5 3c-2.7 2.2-5.3 4.4-7.8 6.6m-3.3-2.3l8.5-7.3c1-.8 2-1.7 3-2.6c-.8-1-2.1-1.7-3.1-2.1c-2.2-.8-4.4-.6-6.4.6c-2.6 1.5-3.8 4-3.7 7c0 1.2.4 2.3 1 3.4c.2.4.4.7.7 1M73.7 33.7H85v11.5h5.7c2.6 0 5.3-.5 7.8-1.3c1.2-.4 2.6-1 3.8-1.7c-1.6-2.1-2.4-4.7-2.6-7.3c-.3-3.5.4-8.1 2.8-10.8l1.2-1.4l1.4 1.1c3.6 2.9 6.5 6.8 7.1 11.4c4.3-1.3 9.3-1 13.1 1.2l1.5.9l-.8 1.6c-3.2 6.2-9.9 8.2-16.4 7.8c-9.8 24.3-31 35.8-56.8 35.8c-13.3 0-25.5-5-32.5-16.8l-.1-.2l-1-2.1c-2.4-5.2-3.1-10.9-2.6-16.6l.2-1.7h9.6V33.7h11.3V22.4h22.5V11.1h13.5z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#00AADA\\\" d=\\\"M110.2 37.9c.8-5.9-3.6-10.5-6.4-12.7c-3.1 3.6-3.6 13.2 1.3 17.2c-2.8 2.4-8.5 4.7-14.5 4.7H18.4c-.6 6.2.5 11.9 3 16.8l.8 1.5c.5.9 1.1 1.7 1.7 2.6c3 .2 5.7.3 8.2.2c4.9-.1 8.9-.7 12-1.7c.5-.2.9.1 1.1.5c.2.5-.1.9-.5 1.1c-.4.1-.8.3-1.3.4c-2.4.7-5 1.1-8.3 1.3h-.6c-1.3.1-2.7.1-4.2.1c-1.6 0-3.1 0-4.9-.1c6 6.8 15.4 10.8 27.2 10.8c25 0 46.2-11.1 55.5-35.9c6.7.7 13.1-1 16-6.7c-4.5-2.6-10.5-1.8-13.9-.1\\\"/><path fill=\\\"#28B8EB\\\" d=\\\"M110.2 37.9c.8-5.9-3.6-10.5-6.4-12.7c-3.1 3.6-3.6 13.2 1.3 17.2c-2.8 2.4-8.5 4.7-14.5 4.7h-68c-.3 9.5 3.2 16.7 9.5 21c4.9-.1 8.9-.7 12-1.7c.5-.2.9.1 1.1.5c.2.5-.1.9-.5 1.1c-.4.1-.8.3-1.3.4c-2.4.7-5.2 1.2-8.5 1.4l-.1-.1c8.5 4.4 20.8 4.3 35-1.1c15.8-6.1 30.6-17.7 40.9-30.9c-.2.1-.3.2-.5.2\\\"/><path fill=\\\"#028BB8\\\" d=\\\"M18.5 54.6c.4 3.3 1.4 6.4 2.9 9.3l.8 1.5c.5.9 1.1 1.7 1.7 2.6c3 .2 5.7.3 8.2.2c4.9-.1 8.9-.7 12-1.7c.5-.2.9.1 1.1.5c.2.5-.1.9-.5 1.1c-.4.1-.8.3-1.3.4c-2.4.7-5.2 1.2-8.5 1.4h-.4c-1.3.1-2.7.1-4.1.1c-1.6 0-3.2 0-4.9-.1c6 6.8 15.5 10.8 27.3 10.8c21.4 0 40-8.1 50.8-26H18.5z\\\"/><path fill=\\\"#019BC6\\\" d=\\\"M23.3 54.6c1.3 5.8 4.3 10.4 8.8 13.5c4.9-.1 8.9-.7 12-1.7c.5-.2.9.1 1.1.5c.2.5-.1.9-.5 1.1c-.4.1-.8.3-1.3.4c-2.4.7-5.2 1.2-8.6 1.4c8.5 4.4 20.8 4.3 34.9-1.1c8.5-3.3 16.8-8.2 24.2-14.1z\\\"/><path fill=\\\"#00ACD3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M28.2 35.5H38v9.8h-9.8zm.8.9h.8v8.1H29zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1H32zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm3.1-12.1h9.8V34h-9.8zm.8.8h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#23C2EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M39.5 35.5h9.8v9.8h-9.8zm.8.9h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#00ACD3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M50.8 35.5h9.8v9.8h-9.8zm.8.9h.8v8.1h-.8zm1.4 0h.8v8.1H53zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1H56zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#23C2EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M50.8 24.3h9.8V34h-9.8zm.8.8h.8v8.1h-.8zm1.4 0h.8v8.1H53zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1H56zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zM62 35.5h9.8v9.8H62zm.9.9h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#00ACD3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62 24.3h9.8V34H62zm.9.8h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#23C2EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62 13h9.8v9.8H62zm.9.8h.8V22h-.8zm1.4 0h.8V22h-.8zm1.5 0h.8V22h-.8zm1.5 0h.8V22h-.8zm1.4 0h.8V22h-.8zm1.5 0h.8V22h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#00ACD3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M73.3 35.5h9.8v9.8h-9.8zm.8.9h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.5 0h.8v8.1h-.8zm1.4 0h.8v8.1h-.8zm1.5 0h.8v8.1H80zm1.5 0h.8v8.1h-.8z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D4EEF1\\\" fill-rule=\\\"evenodd\\\" d=\\\"M48.6 61.2c1.5 0 2.7 1.2 2.7 2.7c0 1.5-1.2 2.7-2.7 2.7c-1.5 0-2.7-1.2-2.7-2.7c.1-1.5 1.3-2.7 2.7-2.7\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3A4D54\\\" fill-rule=\\\"evenodd\\\" d=\\\"M48.6 61.9c.2 0 .5 0 .7.1c-.2.1-.4.4-.4.7c0 .4.4.8.8.8c.3 0 .6-.2.7-.4c.1.2.1.5.1.7c0 1.1-.9 1.9-1.9 1.9c-1.1 0-1.9-.9-1.9-1.9c0-1 .9-1.9 1.9-1.9M1 55.6h125.3c-2.7-.7-8.6-1.6-7.7-5.2c-5 5.7-16.9 4-20 1.2c-3.4 4.9-23 3-24.3-.8c-4.2 5-17.3 5-21.5 0c-1.4 3.8-21 5.7-24.3.8c-3 2.8-15 4.5-20-1.2c1.1 3.5-4.8 4.5-7.5 5.2\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#BFDBE0\\\" d=\\\"M55.8 80.6c-6.7-3.2-10.3-7.5-12.4-12.2c-2.5.7-5.5 1.2-8.9 1.4c-1.3.1-2.7.1-4.1.1c-1.7 0-3.4 0-5.2-.1c6.1 6.1 13.7 10.8 27.6 10.9c1-.1 2-.1 3-.1\\\"/><path fill=\\\"#D4EEF1\\\" d=\\\"M45.9 72.7c-.9-1.3-1.8-2.8-2.5-4.3c-2.5.7-5.5 1.2-8.9 1.4c2.4 1.3 5.8 2.5 11.4 2.9\\\"/>\"\n\t\t},\n\t\t\"doctrine\": {\n\t\t\t\"body\": \"<path fill=\\\"#F56D39\\\" d=\\\"M52.8 36.3c-1.1-1.2-2.1-2.3-3.1-3.4c-3.6-3.9-7.2-7.8-10.7-11.7c-1.9-2-3.2-4.4-3.5-7.1c-.4-3.3.1-6.6 2.3-9.2c.5-.7 1.3-1.2 2-1.7c1.1-.6 2.2-1.2 3.4-1.6c4.1-1.3 8.1-.8 11.5 2c1.9 1.5 3.5 3.3 5.2 5.1l24.6 26.8c4.3 4.7 8.7 9.3 12.9 14.2c5.3 6 9.4 12.8 11.5 20.6c.8 3 1.3 5.9 1.4 9c.5 12.3-3.2 23.1-10.9 32.6c-5.7 7-13 11.6-21.8 13.9c-3.1.8-6.3 1.4-9.5 1.5c-2.4.1-4.8.2-7.2.1c-12.3-.7-22.7-5.5-31.1-14.6c-4-4.3-7.2-9-9.3-14.5c-1.3-3.3-2.1-6.8-2.4-10.3c-.6-8.5.4-16.7 4.1-24.4c2.3-5 5.8-9.1 9.7-12.9C37.8 45 44.6 40.5 52 37.1c.3-.1.5-.2.8-.4c-.2-.2-.1-.3 0-.4m13.4 53.8l-.6.6c-2.8 2.8-5.6 5.5-8.3 8.3c-1.8 1.8-3.4 3.8-4.5 6.1c-.8 1.6-1.1 3.2-.5 4.9c1.6 4.8 7.7 6.6 11.5 4c1.4-1 2.8-2.2 4-3.4c6-5.6 11.9-11.2 17.8-16.8c2.9-2.7 5.2-5.9 6.6-9.6c.3-.7.4-1.6.4-2.4c0-1.6-.7-3.1-1.5-4.6c-1.4-2.6-3.4-4.9-5.5-7l-9.7-9.8c-3.1-3.1-6.1-6.3-9.3-9.3c-1.9-1.8-4.3-3-7.1-2.9c-3 .2-5.4 1.4-7 4c-.6 1-1 2.2-.9 3.4c.1 2.5 1.3 4.6 3 6.4c2.8 2.9 5.6 5.6 8.5 8.4c1.1 1.1 2.1 2.2 3 3.2H46.3c-2.8 0-5.7-.1-8.5.1c-1.7.1-3.3.7-4.6 1.9c-2.4 2.3-3.1 5.2-2.5 8.4c.6 3 2.3 5.1 5.4 5.8c1.1.2 2.2.3 3.4.3l9.4.3c2.4 0 4.8-.1 7.3-.1h5.7c1.4-.2 2.8-.2 4.3-.2\\\"/><path fill=\\\"#fff\\\" d=\\\"M66.2 90.1h-9.9c-2.4 0-4.8.1-7.3.1c-3.1 0-6.3-.1-9.4-.3c-1.1 0-2.3-.1-3.4-.3c-3.1-.7-4.9-2.8-5.4-5.8c-.6-3.2.1-6.1 2.5-8.4c1.3-1.2 2.9-1.8 4.6-1.9c2.8-.1 5.7-.1 8.5-.1h19.8c-1-1-2-2.1-3-3.2c-2.8-2.8-5.7-5.5-8.5-8.4c-1.7-1.8-2.8-3.9-3-6.4c-.1-1.2.3-2.3.9-3.4c1.6-2.6 4-3.8 7-4c2.8-.2 5.1 1 7.1 2.9c3.2 3 6.2 6.2 9.3 9.3c3.3 3.3 6.5 6.5 9.7 9.8c2.1 2.1 4 4.4 5.5 7c.8 1.4 1.4 2.9 1.5 4.6c0 .8-.1 1.6-.4 2.4c-1.4 3.7-3.7 6.9-6.6 9.6l-17.8 16.8c-1.3 1.2-2.6 2.4-4 3.4c-3.7 2.6-9.8.8-11.5-4c-.6-1.6-.3-3.3.5-4.9c1.1-2.3 2.7-4.3 4.5-6.1c2.7-2.8 5.5-5.5 8.3-8.3z\\\"/>\"\n\t\t},\n\t\t\"doctrine-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#F56D39\\\" d=\\\"M55.4 28c-.8-.9-1.6-1.8-2.4-2.6l-8.3-9c-1.4-1.6-2.5-3.4-2.7-5.5c-.3-2.6 0-5 1.8-7.1c.4-.5 1-.9 1.5-1.3c.8-.5 1.7-.9 2.6-1.2c3.2-1 6.2-.6 8.8 1.5c1.4 1.2 2.7 2.5 4 3.9c6.3 6.8 12.6 13.7 18.9 20.6c3.3 3.6 6.7 7.2 9.9 10.9c4.1 4.6 7.2 9.8 8.8 15.8c.6 2.3 1 4.6 1.1 6.9c.4 9.4-2.4 17.8-8.4 25.1c-4.4 5.4-10 8.9-16.7 10.7c-2.4.6-4.8 1-7.3 1.2c-1.8.1-3.7.2-5.5.1c-9.4-.5-17.4-4.3-23.9-11.2c-3.1-3.3-5.5-6.9-7.2-11.1c-1-2.6-1.6-5.2-1.8-7.9c-.5-6.5.3-12.8 3.1-18.7c1.8-3.8 4.4-7 7.4-9.9c4.5-4.4 9.7-7.8 15.4-10.5l.6-.3c.2-.2.2-.3.3-.4m10.3 41.4c-.2.2-.3.3-.4.5l-6.4 6.3c-1.4 1.4-2.6 2.9-3.4 4.7c-.6 1.2-.8 2.5-.4 3.8c1.3 3.7 5.9 5.1 8.8 3.1C65 87 66 86.1 67 85.2l13.7-12.9c2.2-2.1 4-4.5 5-7.4c.2-.6.3-1.2.3-1.8c0-1.3-.5-2.4-1.1-3.5c-1.1-2-2.6-3.7-4.2-5.4l-7.5-7.5c-2.4-2.4-4.7-4.8-7.2-7.1c-1.5-1.4-3.3-2.3-5.4-2.2c-2.3.1-4.2 1.1-5.4 3.1c-.5.8-.7 1.7-.7 2.6c.1 1.9 1 3.6 2.3 4.9c2.1 2.2 4.3 4.3 6.5 6.4c.8.8 1.6 1.7 2.3 2.4H50.4c-2.2 0-4.4-.1-6.5 0c-1.3.1-2.5.5-3.5 1.5c-1.8 1.8-2.3 4-1.9 6.5c.4 2.3 1.8 3.9 4.2 4.4c.8.2 1.7.2 2.6.2c2.4.1 4.8.2 7.2.2l5.6-.1h4.4c1-.1 2-.1 3.2-.1\\\"/><path fill=\\\"#fff\\\" d=\\\"M65.7 69.4h-7.6l-5.6.1c-2.4 0-4.8-.1-7.2-.2c-.9 0-1.7-.1-2.6-.2c-2.4-.5-3.7-2.1-4.2-4.4c-.5-2.4.1-4.7 1.9-6.5c1-.9 2.2-1.4 3.5-1.5c2.2-.1 4.3 0 6.5 0h15.2c-.7-.8-1.5-1.6-2.3-2.4c-2.2-2.2-4.4-4.2-6.5-6.4c-1.3-1.4-2.2-3-2.3-4.9c0-.9.2-1.8.7-2.6c1.2-2 3.1-2.9 5.4-3.1c2.2-.1 3.9.8 5.4 2.2c2.4 2.3 4.8 4.7 7.2 7.1l7.5 7.5c1.6 1.6 3.1 3.4 4.2 5.4c.6 1.1 1.1 2.2 1.1 3.5c0 .6-.1 1.2-.3 1.8c-1.1 2.9-2.8 5.3-5 7.4c-4.5 4.3-9.1 8.6-13.7 12.9c-1 .9-2 1.8-3.1 2.6c-2.9 2-7.6.6-8.8-3.1c-.4-1.3-.2-2.6.4-3.8c.9-1.8 2.1-3.3 3.4-4.7l6.4-6.3c.1-.1.2-.3.4-.4\\\"/><path fill=\\\"#141414\\\" d=\\\"M17.9 125.2h-4.1v-2.5c-.7 1-1.5 1.7-2.4 2.1c-.9.5-1.9.7-2.8.7c-1.9 0-3.6-.8-5-2.3c-1.4-1.6-2.1-3.7-2.1-6.5s.7-5 2-6.5s3-2.2 5.1-2.2c1.9 0 3.5.8 4.9 2.3V102h4.4zM6 116.4c0 1.8.2 3.1.7 3.9c.7 1.2 1.7 1.7 3 1.7c1 0 1.9-.4 2.6-1.3c.7-.9 1.1-2.2 1.1-3.9c0-1.9-.3-3.3-1-4.2c-.7-.8-1.6-1.3-2.7-1.3s-1.9.4-2.6 1.3c-.7.9-1.1 2.2-1.1 3.8m15.2.2c0-1.5.4-2.9 1.1-4.3c.7-1.4 1.8-2.4 3.1-3.2c1.3-.7 2.8-1.1 4.5-1.1c2.5 0 4.6.8 6.2 2.5c1.6 1.6 2.4 3.7 2.4 6.2s-.8 4.6-2.5 6.3c-1.6 1.7-3.7 2.5-6.2 2.5c-1.5 0-3-.3-4.4-1c-1.4-.7-2.5-1.7-3.2-3.1c-.6-1.3-1-2.9-1-4.8m4.6.2c0 1.7.4 2.9 1.2 3.8c.8.9 1.8 1.3 2.9 1.3c1.2 0 2.1-.4 2.9-1.3c.8-.9 1.2-2.2 1.2-3.9c0-1.6-.4-2.9-1.2-3.8c-.8-.9-1.8-1.3-2.9-1.3c-1.2 0-2.1.4-2.9 1.3c-.8 1-1.2 2.2-1.2 3.9m30.8-3.4l-4.4.8c-.1-.9-.5-1.5-1-2s-1.2-.7-2-.7c-1.1 0-2 .4-2.6 1.1c-.7.8-1 2-1 3.8c0 2 .3 3.4 1 4.2c.7.8 1.6 1.2 2.7 1.2c.8 0 1.5-.2 2.1-.7c.5-.5.9-1.3 1.1-2.5l4.4.7c-.5 2-1.3 3.5-2.6 4.5s-3 1.5-5.2 1.5c-2.5 0-4.4-.8-5.9-2.3c-1.5-1.5-2.2-3.7-2.2-6.4c0-2.8.7-4.9 2.2-6.5c1.5-1.5 3.4-2.3 5.9-2.3c2 0 3.7.4 4.9 1.3c1.3 1.1 2.1 2.5 2.6 4.3m11.1-5v3.5h-3v6.8c0 1.4 0 2.2.1 2.4c.1.2.2.4.4.6c.2.1.5.2.8.2c.4 0 1-.1 1.8-.4l.4 3.4c-1 .4-2.2.7-3.5.7c-.8 0-1.5-.1-2.2-.4c-.6-.3-1.1-.6-1.4-1c-.3-.4-.5-1-.6-1.7c-.1-.5-.1-1.6-.1-3.1v-7.3h-2v-3.5h2v-3.3l4.5-2.6v5.9h2.8zm7.3 16.8h-4.4v-16.8h4.1v2.4c.7-1.1 1.3-1.9 1.9-2.2s1.2-.5 1.9-.5c1 0 2 .3 2.9.8l-1.4 3.9c-.7-.5-1.4-.7-2.1-.7c-.6 0-1.1.2-1.6.5c-.4.3-.8 1-1 1.9s-.3 2.6-.3 5.5zm8.4-19.1V102h4.4v4.1zm0 19.1v-16.8h4.4v16.8zm24.2 0h-4.4v-8.6c0-1.8-.1-3-.3-3.5c-.2-.5-.5-.9-.9-1.2c-.4-.3-.9-.4-1.5-.4c-.8 0-1.5.2-2.1.6c-.6.4-1 1-1.3 1.7c-.2.7-.3 2-.3 3.9v7.6h-4.4v-16.8h4.1v2.5c1.5-1.9 3.3-2.8 5.5-2.8c1 0 1.9.2 2.7.5c.8.4 1.4.8 1.8 1.4c.4.5.7 1.2.9 1.9c.2.7.2 1.7.2 3zm14.2-5.4l4.4.7c-.6 1.6-1.5 2.9-2.7 3.7c-1.2.8-2.8 1.3-4.6 1.3c-2.9 0-5.1-1-6.5-2.9c-1.1-1.5-1.7-3.5-1.7-5.8c0-2.8.7-5 2.2-6.5c1.5-1.6 3.3-2.4 5.5-2.4c2.5 0 4.5.8 5.9 2.5c1.4 1.6 2.1 4.2 2.1 7.6h-11.1c0 1.3.4 2.3 1.1 3.1c.7.7 1.5 1.1 2.6 1.1c.7 0 1.3-.2 1.8-.6c.4-.3.8-.9 1-1.8m.3-4.4c0-1.3-.4-2.3-1-2.9s-1.4-1-2.3-1c-1 0-1.8.4-2.4 1.1s-.9 1.7-.9 2.9h6.6z\\\"/>\"\n\t\t},\n\t\t\"dot-net\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconDotNet0\\\" x1=\\\"61.631\\\" x2=\\\"62.022\\\" y1=\\\"563.347\\\" y2=\\\"563.347\\\" gradientTransform=\\\"matrix(0 149.735 149.735 0 -84296.266 -9188.014)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0994DC\\\"/><stop offset=\\\".35\\\" stop-color=\\\"#66CEF5\\\"/><stop offset=\\\".35\\\" stop-color=\\\"#66CEF5\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#127BCA\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#127BCA\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#127BCA\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet0)\\\" d=\\\"M45.288 49.559c4.417 13.507 6.09 37.601 19.006 37.601c.982 0 1.977-.096 2.974-.286c-11.74-2.737-13.132-26.569-20.297-38.912a61.601 61.601 0 0 0-1.683 1.597\\\"/><linearGradient id=\\\"deviconDotNet1\\\" x1=\\\"61.705\\\" x2=\\\"62.095\\\" y1=\\\"563.34\\\" y2=\\\"563.34\\\" gradientTransform=\\\"matrix(0 153.551 153.551 0 -86442.719 -9435.969)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0E76BC\\\"/><stop offset=\\\".36\\\" stop-color=\\\"#36AEE8\\\"/><stop offset=\\\".36\\\" stop-color=\\\"#36AEE8\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#00ADEF\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#00ADEF\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00ADEF\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet1)\\\" d=\\\"M46.971 47.962c7.165 12.342 8.557 36.174 20.297 38.912a18.621 18.621 0 0 0 2.773-.749C59.502 80.961 56.59 57.819 48.453 46.678c-.492.41-.987.839-1.482 1.284\\\"/><path fill=\\\"#14559A\\\" d=\\\"M57.294 40.623c-.98 0-1.977.096-2.977.286c-2.612.493-5.268 1.618-7.944 3.321c.73.722 1.427 1.547 2.081 2.448c2.723-2.259 5.427-3.928 8.12-4.932a18.177 18.177 0 0 1 3.029-.842a9.393 9.393 0 0 0-2.309-.281\\\"/><linearGradient id=\\\"deviconDotNet2\\\" x1=\\\"67.486\\\" x2=\\\"67.876\\\" y1=\\\"564.985\\\" y2=\\\"564.985\\\" gradientTransform=\\\"matrix(0 -122.178 -122.178 0 69099.289 8331.043)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1C63B7\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#33BDF2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#33BDF2\\\" stop-opacity=\\\".42\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet2)\\\" d=\\\"M78.268 81.366a47.16 47.16 0 0 0 3.24-2.84c-4.488-13.443-6.095-37.883-19.101-37.883c-.93 0-1.868.087-2.804.26C71.45 43.85 72.968 69.625 78.268 81.366\\\"/><path fill=\\\"#3092C4\\\" d=\\\"M59.604 40.904a9.355 9.355 0 0 0-2.311-.282l5.114.019c-.929 0-1.867.086-2.803.263\\\"/><path fill=\\\"#1969BC\\\" d=\\\"M78.04 84.221a19.441 19.441 0 0 1-1.466-1.584c-2.188 1.549-4.368 2.724-6.533 3.489c.771.376 1.578.656 2.436.829c.664.136 1.353.206 2.075.206c2.431 0 4.353-.288 5.987-1.072c-.9-.488-1.726-1.118-2.499-1.868\\\"/><linearGradient id=\\\"deviconDotNet3\\\" x1=\\\"61.852\\\" x2=\\\"62.243\\\" y1=\\\"563.281\\\" y2=\\\"563.281\\\" gradientTransform=\\\"matrix(0 159.425 159.425 0 -89733.742 -9828.116)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#166AB8\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#36AEE8\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#36AEE8\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#0798DD\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#0798DD\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0798DD\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet3)\\\" d=\\\"M56.573 41.748c10.611 5.55 11.534 30.684 20.001 40.889c.568-.4 1.13-.824 1.691-1.271c-5.3-11.741-6.815-37.519-18.66-40.463c-1.011.189-2.02.469-3.032.845\\\"/><linearGradient id=\\\"deviconDotNet4\\\" x1=\\\"61.975\\\" x2=\\\"62.366\\\" y1=\\\"563.367\\\" y2=\\\"563.367\\\" gradientTransform=\\\"matrix(0 169.528 169.528 0 -95443.742 -10473.372)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#124379\\\"/><stop offset=\\\".39\\\" stop-color=\\\"#1487CB\\\"/><stop offset=\\\".39\\\" stop-color=\\\"#1487CB\\\"/><stop offset=\\\".78\\\" stop-color=\\\"#165197\\\"/><stop offset=\\\".78\\\" stop-color=\\\"#165197\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#165197\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet4)\\\" d=\\\"M48.453 46.678c8.137 11.141 11.049 34.284 21.588 39.448c2.166-.765 4.346-1.939 6.533-3.489c-8.467-10.205-9.39-35.338-20.001-40.889c-2.693 1.002-5.397 2.671-8.12 4.93\\\"/><linearGradient id=\\\"deviconDotNet5\\\" x1=\\\"1006.454\\\" x2=\\\"1008.771\\\" y1=\\\"-1412.08\\\" y2=\\\"-1412.08\\\" gradientTransform=\\\"matrix(4.038 0 0 -4.038 -4028.633 -5649.283)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#33BDF2\\\" stop-opacity=\\\".698\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1DACD8\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet5)\\\" d=\\\"M40.083 49.234c-1.275 2.883-2.578 6.674-4.152 11.621c3.131-4.413 6.253-8.214 9.357-11.295a33.873 33.873 0 0 0-1.382-3.606a46.113 46.113 0 0 0-3.823 3.28\\\"/><path fill=\\\"#2B74B1\\\" d=\\\"M45.037 45.121c-.374.268-.751.542-1.13.832c.495 1.08.953 2.292 1.38 3.607a66.502 66.502 0 0 1 1.684-1.597a22.346 22.346 0 0 0-1.934-2.842\\\"/><path fill=\\\"#125A9E\\\" d=\\\"M46.373 44.229c-.445.282-.888.58-1.337.891c.695.855 1.333 1.81 1.936 2.844c.495-.448.989-.879 1.482-1.287c-.654-.9-1.35-1.726-2.081-2.448\\\"/><linearGradient id=\\\"deviconDotNet6\\\" x1=\\\"67.564\\\" x2=\\\"67.954\\\" y1=\\\"565.48\\\" y2=\\\"565.48\\\" gradientTransform=\\\"matrix(0 -119.018 -119.018 0 67408.578 8125.832)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#136AB4\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#59CAF5\\\" stop-opacity=\\\".549\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#59CAF5\\\" stop-opacity=\\\".235\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet6)\\\" d=\\\"M118.751 39.594c-6.001 23.144-18.536 41.734-29.044 46.42h-.021l-.567.243l-.069.027l-.161.062l-.072.03l-.263.093l-.108.038l-.131.043l-.126.044l-.112.038l-.224.068l-.096.025l-.151.041l-.103.028l-.165.043l-.201.044c.475.175.97.264 1.503.264c9.965 0 20.013-17.858 36.638-47.556h-6.528z\\\"/><linearGradient id=\\\"deviconDotNet7\\\" x1=\\\"998.231\\\" x2=\\\"1006.826\\\" y1=\\\"-1414.829\\\" y2=\\\"-1414.829\\\" gradientTransform=\\\"matrix(4.038 0 0 -4.038 -4028.633 -5649.283)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#05A1E6\\\" stop-opacity=\\\".247\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#05A1E6\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet7)\\\" d=\\\"m33.766 41.563l.019-.016l.023-.015h.013l.161-.062l.032-.016l.042-.017l.173-.062h.009l.383-.134l.057-.015l.164-.049l.075-.024l.165-.049l.063-.017l.548-.142l.075-.017l.16-.031l.078-.024l.161-.03h.038l.333-.062h.066l.154-.027l.087-.015l.147-.022l.081-.016l.358-.032a11.467 11.467 0 0 0-1.061-.054c-11.223 0-26.685 20.822-33.649 47.788h1.343a390.312 390.312 0 0 0 6.062-11.266c4.879-19.1 14.814-32.126 23.64-35.577\\\"/><path fill=\\\"#0D82CA\\\" d=\\\"M40.083 49.234a46.488 46.488 0 0 1 3.823-3.281a17.961 17.961 0 0 0-.911-1.761c-1.026 1.246-1.964 2.89-2.912 5.042\\\"/><path fill=\\\"#0D82CA\\\" d=\\\"M41.005 41.72c.733.614 1.39 1.46 1.99 2.473c.189-.232.381-.447.58-.649a11.263 11.263 0 0 0-2.712-1.897l.12.057z\\\"/><linearGradient id=\\\"deviconDotNet8\\\" x1=\\\"67.491\\\" x2=\\\"67.881\\\" y1=\\\"564.359\\\" y2=\\\"564.359\\\" gradientTransform=\\\"matrix(0 -121.865 -121.865 0 68797.742 8310.488)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#318ED5\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#38A7E4\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet8)\\\" d=\\\"M10.127 77.138c10.233-19.719 15.081-32.199 23.64-35.577c-8.825 3.454-18.762 16.479-23.64 35.577\\\"/><path fill=\\\"#127BCA\\\" d=\\\"M43.574 43.544c-.199.204-.389.417-.58.649c.322.538.621 1.124.913 1.76c.378-.29.756-.563 1.129-.832a15.351 15.351 0 0 0-1.462-1.577\\\"/><linearGradient id=\\\"deviconDotNet9\\\" x1=\\\"67.593\\\" x2=\\\"67.984\\\" y1=\\\"564.41\\\" y2=\\\"564.41\\\" gradientTransform=\\\"matrix(0 -118.46 -118.46 0 66884.703 8093.017)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#05A1E6\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#05A1E6\\\" stop-opacity=\\\".549\\\"/></linearGradient><path fill=\\\"url(#deviconDotNet9)\\\" d=\\\"m14.773 88.315l-.186.022h-.035l-.158.016h-.026l-.376.025h-.039c10.356-.29 15.091-5.475 17.44-12.997c1.785-5.701 3.252-10.505 4.537-14.535c-4.338 6.106-8.696 13.384-13.077 21.539c-2.112 3.93-5.325 5.572-8.08 5.922\\\"/><linearGradient id=\\\"deviconDotNeta\\\" x1=\\\"68.291\\\" x2=\\\"68.682\\\" y1=\\\"564.525\\\" y2=\\\"564.525\\\" gradientTransform=\\\"matrix(0 -100.1 -100.1 0 56536.551 6924.301)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1959A6\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#05A1E6\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#05A1E6\\\"/><stop offset=\\\".918\\\" stop-color=\\\"#7EC5EA\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7EC5EA\\\"/></linearGradient><path fill=\\\"url(#deviconDotNeta)\\\" d=\\\"M14.773 88.311c2.755-.351 5.968-1.991 8.08-5.923c4.381-8.151 8.741-15.431 13.075-21.538c1.577-4.949 2.878-8.737 4.154-11.621c-8.639 8.223-17.311 21.896-25.31 39.077\\\"/><path fill=\\\"#05A1E6\\\" d=\\\"M10.127 77.139a388.004 388.004 0 0 1-6.063 11.266h3.904a95.502 95.502 0 0 1 2.158-11.264\\\"/><linearGradient id=\\\"deviconDotNetb\\\" x1=\\\"67.892\\\" x2=\\\"68.282\\\" y1=\\\"563.82\\\" y2=\\\"563.82\\\" gradientTransform=\\\"scale(-110.211 110.211)rotate(-80 -301.688 322.91)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#165096\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0D82CA\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetb)\\\" d=\\\"m37.073 40.709l-.083.016l-.146.021l-.086.015l-.154.027l-.066.016l-.333.058h-.038l-.162.032l-.081.022l-.157.031l-.074.018l-.549.142l-.063.018l-.166.049l-.075.021l-.163.049l-.06.016l-.381.134l-.173.06l-.072.03l-.161.06l-.054.026c-8.558 3.377-13.406 15.857-23.639 35.576A94.655 94.655 0 0 0 7.979 88.41h.547l3.755-.016h1.723l.375-.025h.024l.158-.016h.037l.186-.022c8-17.182 16.672-30.854 25.31-39.077c.95-2.152 1.887-3.796 2.911-5.04c-.6-1.013-1.256-1.861-1.988-2.476l-.021-.016l-.122-.059l-.121-.061l-.117-.057l-.139-.058l-.108-.047l-.227-.095l-.097-.036l-.169-.068l-.091-.03l-.235-.081h-.019l-.272-.077l-.061-.019l-.229-.064l-.053-.015a7.851 7.851 0 0 0-.569-.125l-.059-.016l-.247-.04l-.049-.015l-.292-.039h-.051l-.226-.025l-.358.033\\\"/><linearGradient id=\\\"deviconDotNetc\\\" x1=\\\"70.847\\\" x2=\\\"71.237\\\" y1=\\\"566.882\\\" y2=\\\"566.882\\\" gradientTransform=\\\"matrix(0 -56.721 -56.721 0 32252.127 4080.282)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#05A1E6\\\"/><stop offset=\\\".874\\\" stop-color=\\\"#0495D6\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0495D6\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetc)\\\" d=\\\"M95.311 52.407c-1.97 6.307-3.563 11.51-4.952 15.791c5.403-7.435 10.725-16.787 15.792-27.579c-5.913 1.857-9.065 6.107-10.84 11.788\\\"/><linearGradient id=\\\"deviconDotNetd\\\" x1=\\\"61.634\\\" x2=\\\"62.024\\\" y1=\\\"562.213\\\" y2=\\\"562.213\\\" gradientTransform=\\\"scale(-132.813 132.813)rotate(80 365.248 244.034)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#38A7E4\\\" stop-opacity=\\\".329\\\"/><stop offset=\\\".962\\\" stop-color=\\\"#0E88D3\\\"/><stop offset=\\\".962\\\" stop-color=\\\"#0E88D3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0E88D3\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetd)\\\" d=\\\"M90.53 85.621c-.275.14-.552.273-.823.394c10.508-4.687 23.044-23.277 29.044-46.421h-1.216c-13.788 24.631-18.222 41.12-27.005 46.027\\\"/><path fill=\\\"#079AE1\\\" d=\\\"M83.668 83.552c2.287-2.791 4.148-7.535 6.691-15.354c-2.933 4.029-5.885 7.492-8.84 10.316l-.015.025c.645 1.931 1.352 3.636 2.158 5.012\\\"/><path fill=\\\"#1969BC\\\" d=\\\"M83.668 83.552c-.778.95-1.603 1.673-2.519 2.209c-.2.117-.404.227-.61.327a8.839 8.839 0 0 0 3.206 1.011l.524.046h.031l.252.016h.855l.097-.016l.189-.016h.092l.205-.022h.017l.063-.015l.219-.034h.064l.246-.041h.04l.491-.104c-1.357-.496-2.492-1.667-3.469-3.334\\\"/><path fill=\\\"#1E5CB3\\\" d=\\\"M64.295 87.161c.982 0 1.976-.096 2.973-.288a18.309 18.309 0 0 0 2.773-.747c.771.376 1.579.656 2.435.831c.664.135 1.354.205 2.077.205H64.295zm10.258 0c2.429 0 4.353-.288 5.986-1.073a8.84 8.84 0 0 0 3.206 1.012l.524.045h.031l.252.016h.302z\\\"/><path fill=\\\"#1D60B5\\\" d=\\\"M84.854 87.161h.561l.097-.016l.191-.016h.092l.204-.022h.017l.062-.016l.219-.033l.067-.015l.247-.04h.039l.491-.104c.475.175.97.264 1.503.264l-3.788.016z\\\"/><path fill=\\\"#175FAB\\\" d=\\\"M81.511 78.54v-.016a47.16 47.16 0 0 1-3.24 2.84a36.81 36.81 0 0 1-1.693 1.271c.476.568.959 1.1 1.468 1.585c.772.749 1.597 1.38 2.498 1.867c.205-.101.41-.211.609-.327c.918-.536 1.741-1.26 2.52-2.209c-.806-1.376-1.513-3.082-2.157-5.012\\\"/><linearGradient id=\\\"deviconDotNete\\\" x1=\\\"61.149\\\" x2=\\\"61.539\\\" y1=\\\"562.654\\\" y2=\\\"562.654\\\" gradientTransform=\\\"matrix(0 123.742 123.742 0 -69523.625 -7527.189)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#168CD4\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#1C87CC\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#154B8D\\\"/></linearGradient><path fill=\\\"url(#deviconDotNete)\\\" d=\\\"M113.685 39.594h-6.121l-.97.047l-.451.966c-5.068 10.793-10.388 20.145-15.791 27.58c-2.54 7.818-4.404 12.563-6.69 15.353c.977 1.668 2.114 2.84 3.466 3.337l.106-.023h.022l.075-.016l.17-.042l.101-.029l.151-.039l.094-.027l.226-.068l.112-.038l.126-.046l.13-.041l.106-.04l.264-.093l.073-.027l.162-.063l.068-.025l.568-.243h.02c.271-.119.547-.254.821-.394c8.785-4.908 13.22-21.396 27.008-46.026h-3.851z\\\"/><path fill=\\\"#7DCBEC\\\" d=\\\"m37.433 40.677l.063.016l.16.017h.054l.292.038l.049.016l.246.041l.062.015l.567.126l.052.016l.228.064l.063.019l.271.077l.021.016l.237.081l.09.029l.17.069l.096.034l.226.094l.11.047l.136.059l.12.057l.119.062c.979.48 1.879 1.121 2.713 1.898c.308-.323.628-.613.962-.874c-1.823-1.293-3.89-2.03-6.271-2.03c-.276 0-.552.016-.832.037\\\"/><path fill=\\\"#5EC5ED\\\" d=\\\"M43.574 43.544c.511.475 1 1.005 1.462 1.577c.448-.311.892-.611 1.337-.891a14.13 14.13 0 0 0-1.839-1.56c-.333.26-.652.552-.96.874\\\"/><g transform=\\\"matrix(5.048 0 0 -5.048 -9064.26 2270.61)\\\"><linearGradient id=\\\"deviconDotNetf\\\" x1=\\\"1806.96\\\" x2=\\\"1807.35\\\" y1=\\\"336.158\\\" y2=\\\"336.158\\\" gradientTransform=\\\"scale(30.857 -30.857)rotate(22.527 1812.675 -4228.953)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#97D6EE\\\"/><stop offset=\\\".703\\\" stop-color=\\\"#55C1EA\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#55C1EA\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetf)\\\" d=\\\"m1802.977 441.733l.165.007c.472 0 .881-.146 1.242-.402c.381.301.842.406 1.482.406h-3.099z\\\"/></g><g transform=\\\"matrix(5.048 0 0 -5.048 -9064.26 2270.61)\\\"><linearGradient id=\\\"deviconDotNetg\\\" x1=\\\"1808.848\\\" x2=\\\"1809.238\\\" y1=\\\"335.171\\\" y2=\\\"335.171\\\" gradientTransform=\\\"scale(24.717 -24.717)rotate(-24.385 124.122 4175.416)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7ACCEC\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3FB7ED\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetg)\\\" d=\\\"M1805.866 441.744c-.64 0-1.1-.105-1.482-.406c.126-.089.248-.193.364-.309c.531.337 1.056.561 1.574.658c.198.037.395.056.589.056h-1.045z\\\"/></g><linearGradient id=\\\"deviconDotNeth\\\" x1=\\\"61.049\\\" x2=\\\"61.439\\\" y1=\\\"562.706\\\" y2=\\\"562.706\\\" gradientTransform=\\\"matrix(0 121.032 121.032 0 -68011.711 -7346.748)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1DA7E7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#37ABE7\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconDotNeth)\\\" d=\\\"M90.359 68.202c1.391-4.284 2.98-9.485 4.954-15.794c1.777-5.684 4.925-9.934 10.835-11.788l.456-.966c-9.636.577-14.14 5.479-16.405 12.738c-3.964 12.673-6.365 20.888-8.677 26.123c2.952-2.823 5.904-6.288 8.837-10.313\\\"/>\"\n\t\t},\n\t\t\"dot-net-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M30.762 77.907h-1.74v-9.963c0-.787.051-1.745.144-2.875h-.039c-.164.661-.313 1.14-.444 1.436l-5.061 11.402h-.848l-5.071-11.319c-.142-.316-.292-.825-.443-1.519h-.038c.054.594.084 1.558.084 2.895v9.943h-1.679V63.07h2.296l4.552 10.347c.343.779.565 1.372.673 1.776h.071c.298-.811.534-1.42.711-1.82l4.651-10.303h2.179v14.837zm5.356 0h-1.692V67.312h1.692zm.292-14.394c0 .313-.11.573-.328.787a1.074 1.074 0 0 1-.788.322c-.303 0-.566-.104-.782-.311c-.216-.208-.322-.473-.322-.799c0-.306.106-.567.322-.779c.216-.212.479-.314.782-.314c.31 0 .575.103.788.314c.218.213.328.474.328.78m10.281 13.904c-.812.499-1.781.746-2.902.746c-1.52 0-2.742-.504-3.676-1.511c-.908-.978-1.364-2.24-1.364-3.786c0-1.736.496-3.141 1.497-4.209c.996-1.069 2.334-1.603 4.018-1.603c.92 0 1.737.18 2.452.538v1.741c-.791-.555-1.627-.831-2.525-.831c-1.079 0-1.957.377-2.637 1.128c-.709.77-1.068 1.798-1.068 3.082c0 1.232.328 2.209.979 2.929c.653.717 1.523 1.076 2.621 1.076c.926 0 1.794-.305 2.606-.911zm8.095-8.386c-.299-.23-.729-.341-1.296-.341c-.689 0-1.269.308-1.737.93c-.532.694-.796 1.656-.796 2.886v5.401H49.26V67.311h1.697v2.185h.041c.249-.773.634-1.368 1.148-1.79a2.535 2.535 0 0 1 1.623-.58c.452 0 .787.049 1.016.145v1.759zm9.451 3.597c0-1.356-.306-2.393-.918-3.103c-.594-.683-1.425-1.024-2.495-1.024c-1.054 0-1.9.345-2.533 1.036c-.668.739-1.002 1.781-1.002 3.134c0 1.268.317 2.263.96 2.973c.638.714 1.497 1.072 2.575 1.072c1.115 0 1.969-.364 2.554-1.085c.573-.708.859-1.707.859-3.003m1.739-.059c0 1.688-.477 3.045-1.427 4.061c-.954 1.021-2.237 1.531-3.852 1.531c-1.59 0-2.856-.51-3.784-1.531c-.91-.983-1.366-2.283-1.366-3.898c0-1.844.516-3.264 1.552-4.273c.958-.936 2.24-1.407 3.846-1.407c1.58 0 2.814.493 3.704 1.469c.882.98 1.327 2.33 1.327 4.048m8.411 2.504c0 .868-.323 1.585-.973 2.159c-.709.62-1.683.93-2.908.93c-1.002 0-1.881-.21-2.628-.638V75.7c.83.675 1.748 1.015 2.754 1.015c1.343 0 2.016-.495 2.016-1.48a1.31 1.31 0 0 0-.445-1.023c-.298-.271-.878-.594-1.739-.974c-.887-.388-1.52-.787-1.893-1.2c-.448-.491-.673-1.129-.673-1.915c0-.879.352-1.611 1.046-2.194c.697-.585 1.592-.877 2.691-.877c.842 0 1.596.164 2.266.497v1.707c-.699-.504-1.498-.755-2.405-.755c-.562 0-1.013.14-1.349.412a1.32 1.32 0 0 0-.51 1.068c0 .469.142.834.425 1.096c.252.241.786.536 1.591.879c.904.379 1.558.772 1.956 1.174c.517.508.778 1.156.778 1.943m10.366-2.445c0-1.356-.307-2.393-.92-3.103c-.594-.683-1.426-1.024-2.494-1.024c-1.055 0-1.9.345-2.536 1.036c-.667.739-1 1.781-1 3.134c0 1.268.319 2.263.954 2.973c.646.714 1.506 1.072 2.582 1.072c1.117 0 1.968-.364 2.554-1.085c.572-.708.86-1.707.86-3.003m1.742-.059c0 1.688-.481 3.045-1.433 4.061c-.95 1.021-2.233 1.531-3.848 1.531c-1.592 0-2.857-.51-3.786-1.531c-.909-.983-1.366-2.283-1.366-3.898c0-1.844.521-3.264 1.551-4.273c.958-.936 2.241-1.407 3.849-1.407c1.581 0 2.813.493 3.7 1.469c.883.98 1.333 2.33 1.333 4.048m7.473-8.858a2.278 2.278 0 0 0-1.126-.278c-1.188 0-1.777.747-1.777 2.245v1.633h2.483v1.438h-2.483v9.158h-1.698v-9.158h-1.802v-1.438h1.802v-1.717c0-1.166.357-2.081 1.084-2.74c.622-.573 1.383-.857 2.289-.857c.524 0 .932.063 1.228.184zm6.694 14.09c-.4.229-.934.343-1.593.343c-1.85 0-2.774-1.042-2.774-3.128V68.75h-1.818v-1.439h1.818v-2.585c.542-.171 1.105-.357 1.7-.55v3.135h2.667v1.439h-2.667v5.979c0 .71.116 1.218.359 1.513c.245.305.646.454 1.211.454c.423 0 .788-.113 1.097-.342zM8.978 119.262c0 .831-.295 1.548-.895 2.155a2.939 2.939 0 0 1-2.17.909a2.823 2.823 0 0 1-2.116-.909a3.009 3.009 0 0 1-.868-2.155c0-.854.289-1.575.868-2.171a2.832 2.832 0 0 1 2.116-.896c.85 0 1.574.301 2.17.907c.6.607.895 1.327.895 2.16m37.975 2.44h-5.532L21.342 90.694a14.226 14.226 0 0 1-1.217-2.442h-.165c.144.831.216 2.613.216 5.343v28.107h-4.559V82.799h5.918l19.478 30.52c.775 1.211 1.306 2.079 1.575 2.601h.108c-.18-1.119-.274-3.027-.274-5.72V82.8h4.532v38.902zm29.233 0H55.567V82.799h19.724v4.123H60.123v12.941h14.054v4.124H60.123v13.591h16.063zm31.274-34.78H96.254v34.781h-4.558V86.922H80.468v-4.125h26.992z\\\"/><linearGradient id=\\\"deviconDotNetWordmark0\\\" x1=\\\"62.394\\\" x2=\\\"62.782\\\" y1=\\\"415.348\\\" y2=\\\"415.348\\\" gradientTransform=\\\"rotate(90 -26399.778 -35735.755)scale(149.735)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0994DC\\\"/><stop offset=\\\".35\\\" stop-color=\\\"#66CEF5\\\"/><stop offset=\\\".35\\\" stop-color=\\\"#66CEF5\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#127BCA\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#127BCA\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#127BCA\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark0)\\\" d=\\\"M45.407 15.604c4.399 13.452 6.064 37.449 18.928 37.449c.979 0 1.969-.095 2.962-.285c-11.693-2.727-13.079-26.462-20.214-38.754a59.736 59.736 0 0 0-1.676 1.59\\\"/><linearGradient id=\\\"deviconDotNetWordmark1\\\" x1=\\\"62.447\\\" x2=\\\"62.836\\\" y1=\\\"415.34\\\" y2=\\\"415.34\\\" gradientTransform=\\\"matrix(0 153.551 153.551 0 -63717.234 -9583.969)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0E76BC\\\"/><stop offset=\\\".36\\\" stop-color=\\\"#36AEE8\\\"/><stop offset=\\\".36\\\" stop-color=\\\"#36AEE8\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#00ADEF\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#00ADEF\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00ADEF\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark1)\\\" d=\\\"M47.083 14.014c7.135 12.292 8.521 36.027 20.214 38.754a18.54 18.54 0 0 0 2.762-.746c-10.496-5.143-13.397-28.192-21.5-39.289c-.491.41-.984.837-1.476 1.281\\\"/><path fill=\\\"#14559A\\\" d=\\\"M57.364 6.704c-.977 0-1.969.096-2.964.285c-2.603.491-5.247 1.611-7.913 3.308a19.648 19.648 0 0 1 2.073 2.438c2.711-2.249 5.404-3.911 8.087-4.911a18.1 18.1 0 0 1 3.017-.838a9.23 9.23 0 0 0-2.3-.282\\\"/><linearGradient id=\\\"deviconDotNetWordmark2\\\" x1=\\\"66.554\\\" x2=\\\"66.942\\\" y1=\\\"416.985\\\" y2=\\\"416.985\\\" gradientTransform=\\\"matrix(0 -122.178 -122.178 0 51016.945 8183.043)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1C63B7\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#33BDF2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#33BDF2\\\" stop-opacity=\\\".42\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark2)\\\" d=\\\"M78.251 47.282a47.07 47.07 0 0 0 3.228-2.829c-4.47-13.389-6.07-37.729-19.023-37.729c-.926 0-1.861.086-2.792.259c11.798 2.934 13.309 28.605 18.587 40.299\\\"/><path fill=\\\"#3092C4\\\" d=\\\"M59.664 6.984a9.28 9.28 0 0 0-2.301-.281l5.094.019c-.927 0-1.861.086-2.793.262\\\"/><path fill=\\\"#1969BC\\\" d=\\\"M78.026 50.126a19.144 19.144 0 0 1-1.46-1.579c-2.179 1.543-4.351 2.713-6.507 3.475c.767.375 1.572.653 2.426.826a10.22 10.22 0 0 0 2.067.205c2.421 0 4.334-.286 5.963-1.068c-.897-.485-1.72-1.112-2.489-1.859\\\"/><linearGradient id=\\\"deviconDotNetWordmark3\\\" x1=\\\"62.568\\\" x2=\\\"62.957\\\" y1=\\\"415.281\\\" y2=\\\"415.281\\\" gradientTransform=\\\"matrix(0 159.425 159.425 0 -66138.813 -9976.116)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#166AB8\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#36AEE8\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#36AEE8\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#0798DD\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#0798DD\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0798DD\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark3)\\\" d=\\\"M56.646 7.825c10.569 5.528 11.487 30.56 19.92 40.723c.565-.398 1.125-.82 1.684-1.265c-5.279-11.695-6.788-37.368-18.585-40.3a18.21 18.21 0 0 0-3.019.842\\\"/><linearGradient id=\\\"deviconDotNetWordmark4\\\" x1=\\\"62.648\\\" x2=\\\"63.037\\\" y1=\\\"415.368\\\" y2=\\\"415.368\\\" gradientTransform=\\\"matrix(0 169.528 169.528 0 -70353.656 -10621.372)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#124379\\\"/><stop offset=\\\".39\\\" stop-color=\\\"#1487CB\\\"/><stop offset=\\\".39\\\" stop-color=\\\"#1487CB\\\"/><stop offset=\\\".78\\\" stop-color=\\\"#165197\\\"/><stop offset=\\\".78\\\" stop-color=\\\"#165197\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#165197\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark4)\\\" d=\\\"M48.559 12.734c8.103 11.097 11.004 34.146 21.5 39.289c2.158-.762 4.328-1.932 6.507-3.475c-8.433-10.163-9.352-35.195-19.92-40.723c-2.683.998-5.376 2.66-8.087 4.909\\\"/><linearGradient id=\\\"deviconDotNetWordmark5\\\" x1=\\\"1006.493\\\" x2=\\\"1008.801\\\" y1=\\\"-1588.315\\\" y2=\\\"-1588.315\\\" gradientTransform=\\\"matrix(4.038 0 0 -4.038 -4028.633 -6394.98)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#33BDF2\\\" stop-opacity=\\\".698\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1DACD8\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark5)\\\" d=\\\"M40.222 15.28c-1.271 2.872-2.568 6.646-4.136 11.574c3.118-4.395 6.228-8.181 9.32-11.25a33.912 33.912 0 0 0-1.376-3.592a46.51 46.51 0 0 0-3.808 3.268\\\"/><path fill=\\\"#2B74B1\\\" d=\\\"M45.157 11.184c-.373.267-.749.54-1.125.828a33.784 33.784 0 0 1 1.375 3.592a65.928 65.928 0 0 1 1.677-1.59a22.658 22.658 0 0 0-1.927-2.83\\\"/><path fill=\\\"#125A9E\\\" d=\\\"M46.486 10.296c-.443.281-.884.577-1.331.887a22.376 22.376 0 0 1 1.928 2.833c.493-.446.985-.875 1.476-1.282a19.563 19.563 0 0 0-2.073-2.438\\\"/><linearGradient id=\\\"deviconDotNetWordmark6\\\" x1=\\\"66.607\\\" x2=\\\"66.996\\\" y1=\\\"417.481\\\" y2=\\\"417.481\\\" gradientTransform=\\\"matrix(0 -119.018 -119.018 0 49793.875 7977.832)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#136AB4\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#59CAF5\\\" stop-opacity=\\\".549\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#59CAF5\\\" stop-opacity=\\\".235\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark6)\\\" d=\\\"M118.572 5.68c-5.977 23.05-18.461 41.565-28.927 46.232h-.021l-.565.241l-.068.027l-.161.062l-.072.03l-.261.092l-.108.038l-.13.043l-.126.044l-.112.037l-.223.068l-.095.025l-.151.041l-.102.028l-.164.042l-.201.044c.473.175.966.263 1.497.263c9.924 0 19.932-17.786 36.489-47.363h-6.501z\\\"/><linearGradient id=\\\"deviconDotNetWordmark7\\\" x1=\\\"998.304\\\" x2=\\\"1006.863\\\" y1=\\\"-1591.054\\\" y2=\\\"-1591.054\\\" gradientTransform=\\\"matrix(4.038 0 0 -4.038 -4028.633 -6394.98)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#05A1E6\\\" stop-opacity=\\\".247\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#05A1E6\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark7)\\\" d=\\\"m33.931 7.64l.018-.017l.023-.015h.013l.161-.062l.032-.016l.041-.018l.173-.062h.009l.381-.133l.056-.015l.164-.049l.075-.024l.164-.049l.063-.016l.545-.142l.075-.017l.159-.031l.079-.024l.16-.03h.037l.332-.062h.066l.153-.026l.086-.016l.146-.022l.082-.015l.357-.032a11.398 11.398 0 0 0-1.057-.054c-11.177 0-26.576 20.738-33.513 47.594h1.337a388.226 388.226 0 0 0 6.037-11.22c4.859-19.022 14.754-31.996 23.544-35.433\\\"/><path fill=\\\"#0D82CA\\\" d=\\\"M40.222 15.28a46.677 46.677 0 0 1 3.808-3.268a17.903 17.903 0 0 0-.907-1.753c-1.022 1.241-1.956 2.877-2.901 5.021m.919-7.483c.73.611 1.383 1.454 1.982 2.462a9.1 9.1 0 0 1 .578-.646A11.294 11.294 0 0 0 41 7.724l.119.057z\\\"/><linearGradient id=\\\"deviconDotNetWordmark8\\\" x1=\\\"66.556\\\" x2=\\\"66.944\\\" y1=\\\"416.357\\\" y2=\\\"416.357\\\" gradientTransform=\\\"rotate(-90 29462.082 -21299.565)scale(121.865)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#318ED5\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#38A7E4\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark8)\\\" d=\\\"M10.388 43.072c10.191-19.64 15.02-32.069 23.544-35.433c-8.789 3.439-18.686 16.412-23.544 35.433\\\"/><path fill=\\\"#127BCA\\\" d=\\\"M43.7 9.614c-.199.203-.387.415-.578.646c.32.536.618 1.119.909 1.753c.376-.289.752-.561 1.125-.829a15.339 15.339 0 0 0-1.456-1.57\\\"/><linearGradient id=\\\"deviconDotNetWordmark9\\\" x1=\\\"66.632\\\" x2=\\\"67.021\\\" y1=\\\"416.408\\\" y2=\\\"416.408\\\" gradientTransform=\\\"matrix(0 -118.46 -118.46 0 49352.684 7945.017)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#05A1E6\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#05A1E6\\\" stop-opacity=\\\".549\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmark9)\\\" d=\\\"m15.015 54.203l-.185.022h-.035l-.157.016h-.026l-.374.025h-.039c10.314-.289 15.03-5.453 17.37-12.944c1.777-5.678 3.238-10.462 4.518-14.476c-4.32 6.081-8.661 13.33-13.024 21.451c-2.104 3.914-5.304 5.549-8.048 5.898\\\"/><linearGradient id=\\\"deviconDotNetWordmarka\\\" x1=\\\"67.153\\\" x2=\\\"67.542\\\" y1=\\\"416.523\\\" y2=\\\"416.523\\\" gradientTransform=\\\"matrix(0 -100.1 -100.1 0 41721.719 6776.301)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1959A6\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#05A1E6\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#05A1E6\\\"/><stop offset=\\\".918\\\" stop-color=\\\"#7EC5EA\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7EC5EA\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmarka)\\\" d=\\\"M15.015 54.199c2.744-.35 5.944-1.983 8.048-5.899c4.363-8.118 8.706-15.369 13.022-21.451c1.571-4.929 2.866-8.701 4.138-11.573c-8.604 8.189-17.24 21.806-25.208 38.919\\\"/><path fill=\\\"#05A1E6\\\" d=\\\"M10.388 43.072a389.833 389.833 0 0 1-6.039 11.22h3.889a94.927 94.927 0 0 1 2.149-11.218\\\"/><linearGradient id=\\\"deviconDotNetWordmarkb\\\" x1=\\\"66.874\\\" x2=\\\"67.262\\\" y1=\\\"415.998\\\" y2=\\\"415.998\\\" gradientTransform=\\\"scale(-110.211 110.211)rotate(-80 -214.299 248.239)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#165096\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0D82CA\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmarkb)\\\" d=\\\"m37.225 6.791l-.083.016l-.146.021l-.085.015l-.153.027l-.066.016l-.332.058h-.037l-.162.032l-.081.021l-.157.031l-.074.018l-.546.142l-.063.019l-.165.049l-.075.019l-.163.048l-.06.016l-.379.133l-.172.06l-.072.03l-.16.06l-.053.026c-8.523 3.364-13.352 15.793-23.543 35.432a94.598 94.598 0 0 0-2.15 11.218h.546l3.739-.016h1.714l.374-.025h.024l.157-.016h.038l.185-.022c7.967-17.112 16.604-30.729 25.208-38.918c.945-2.144 1.878-3.781 2.898-5.02c-.597-1.008-1.25-1.853-1.98-2.465L41.13 7.8l-.122-.059l-.12-.061l-.117-.057l-.138-.058l-.108-.047l-.226-.094l-.096-.037l-.168-.067l-.091-.03l-.234-.08h-.019l-.271-.077l-.061-.019l-.228-.064l-.053-.015a6.956 6.956 0 0 0-.567-.124l-.059-.016l-.246-.04l-.048-.015l-.291-.038h-.051l-.224-.025l-.357.033\\\"/><linearGradient id=\\\"deviconDotNetWordmarkc\\\" x1=\\\"68.837\\\" x2=\\\"69.226\\\" y1=\\\"418.884\\\" y2=\\\"418.884\\\" gradientTransform=\\\"matrix(0 -56.721 -56.721 0 23857.477 3932.282)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#05A1E6\\\"/><stop offset=\\\".874\\\" stop-color=\\\"#0495D6\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0495D6\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmarkc)\\\" d=\\\"M95.226 18.441c-1.961 6.281-3.549 11.463-4.931 15.727c5.381-7.404 10.68-16.718 15.728-27.467c-5.889 1.849-9.029 6.081-10.797 11.74\\\"/><linearGradient id=\\\"deviconDotNetWordmarkd\\\" x1=\\\"62.48\\\" x2=\\\"62.868\\\" y1=\\\"414.361\\\" y2=\\\"414.361\\\" gradientTransform=\\\"scale(-132.813 132.813)rotate(80 277.722 169.477)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#38A7E4\\\" stop-opacity=\\\".329\\\"/><stop offset=\\\".962\\\" stop-color=\\\"#0E88D3\\\"/><stop offset=\\\".962\\\" stop-color=\\\"#0E88D3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0E88D3\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmarkd)\\\" d=\\\"M90.465 51.52c-.274.14-.55.272-.82.393c10.466-4.668 22.951-23.183 28.927-46.233h-1.211c-13.733 24.53-18.149 40.952-26.896 45.84\\\"/><path fill=\\\"#079AE1\\\" d=\\\"M83.631 49.459c2.277-2.779 4.132-7.504 6.665-15.292c-2.921 4.012-5.861 7.462-8.804 10.274l-.015.025c.642 1.923 1.346 3.622 2.149 4.992\\\"/><path fill=\\\"#1969BC\\\" d=\\\"M83.631 49.459c-.775.946-1.596 1.666-2.509 2.2c-.2.117-.402.227-.608.326c.964.52 2.016.868 3.193 1.007l.522.046h.031l.251.016h.852l.096-.016l.188-.016h.091l.205-.022h.015l.063-.015l.218-.034h.064l.245-.041h.039l.489-.104c-1.351-.493-2.481-1.66-3.455-3.32\\\"/><path fill=\\\"#1E5CB3\\\" d=\\\"M64.335 53.053c.979 0 1.968-.096 2.961-.287c.919-.167 1.84-.422 2.762-.744a10.093 10.093 0 0 0 4.494 1.031zm10.217 0c2.419 0 4.334-.287 5.962-1.068a8.8 8.8 0 0 0 3.193 1.007l.522.045h.031l.251.016h.301z\\\"/><path fill=\\\"#1D60B5\\\" d=\\\"M84.812 53.053h.559l.096-.016l.19-.016h.093l.203-.022h.017l.062-.015l.218-.033l.066-.015l.246-.04h.039l.489-.104a4.28 4.28 0 0 0 1.498.263l-3.773.016z\\\"/><path fill=\\\"#175FAB\\\" d=\\\"M81.482 44.467v-.016a46.856 46.856 0 0 1-3.228 2.83c-.561.445-1.12.867-1.686 1.265a19.14 19.14 0 0 0 1.461 1.579c.77.746 1.591 1.374 2.488 1.859c.205-.1.408-.21.607-.326c.915-.534 1.734-1.254 2.51-2.2c-.803-1.37-1.507-3.069-2.148-4.992\\\"/><linearGradient id=\\\"deviconDotNetWordmarke\\\" x1=\\\"62.071\\\" x2=\\\"62.459\\\" y1=\\\"414.653\\\" y2=\\\"414.653\\\" gradientTransform=\\\"matrix(0 123.742 123.742 0 -51209.754 -7675.189)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#168CD4\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#1C87CC\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#154B8D\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmarke)\\\" d=\\\"M113.525 5.68h-6.096l-.966.047l-.45.962c-5.046 10.749-10.346 20.063-15.727 27.468c-2.53 7.786-4.387 12.511-6.664 15.291c.973 1.661 2.106 2.829 3.452 3.324l.106-.023h.022l.074-.017l.169-.042l.1-.029l.151-.04l.094-.026l.224-.068l.112-.037l.126-.046l.129-.041l.105-.04l.263-.092l.073-.027l.161-.063l.069-.025l.565-.241h.019c.271-.12.546-.253.819-.393c8.75-4.888 13.166-21.31 26.898-45.84h-3.835z\\\"/><path fill=\\\"#7DCBEC\\\" d=\\\"m37.583 6.758l.063.016l.159.017h.054l.29.037l.05.016l.245.041l.061.015l.566.125l.051.016l.227.064l.063.019l.269.077l.02.016l.236.081l.09.029l.169.069l.096.034l.224.094l.11.047l.135.059l.12.056l.119.062a11.284 11.284 0 0 1 2.702 1.89c.305-.322.625-.61.958-.87c-1.815-1.288-3.874-2.022-6.246-2.022c-.275 0-.549.016-.829.037\\\"/><path fill=\\\"#5EC5ED\\\" d=\\\"M43.7 9.614c.508.473.995 1.001 1.456 1.57c.445-.31.887-.608 1.331-.887a13.917 13.917 0 0 0-1.831-1.553a8.418 8.418 0 0 0-.956.87\\\"/><g transform=\\\"matrix(5.048 0 0 -5.048 -9064.26 2270.61)\\\"><linearGradient id=\\\"deviconDotNetWordmarkf\\\" x1=\\\"1807.241\\\" x2=\\\"1807.63\\\" y1=\\\"366.152\\\" y2=\\\"366.152\\\" gradientTransform=\\\"scale(30.857 -30.857)rotate(22.527 1888.666 -4214.769)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#97D6EE\\\"/><stop offset=\\\".703\\\" stop-color=\\\"#55C1EA\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#55C1EA\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmarkf)\\\" d=\\\"m1803.007 448.452l.164.007c.47 0 .878-.145 1.237-.4c.38.299.838.404 1.476.404h-3.086z\\\"/></g><g transform=\\\"matrix(5.048 0 0 -5.048 -9064.26 2270.61)\\\"><linearGradient id=\\\"deviconDotNetWordmarkg\\\" x1=\\\"1808.472\\\" x2=\\\"1808.861\\\" y1=\\\"365.322\\\" y2=\\\"365.322\\\" gradientTransform=\\\"scale(24.717 -24.717)rotate(-24.385 53.536 4189.483)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7ACCEC\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3FB7ED\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmarkg)\\\" d=\\\"M1805.884 448.463c-.637 0-1.096-.105-1.476-.404c.126-.089.247-.192.362-.307c.528.336 1.052.558 1.568.656c.197.037.393.056.587.056z\\\"/></g><linearGradient id=\\\"deviconDotNetWordmarkh\\\" x1=\\\"61.991\\\" x2=\\\"62.38\\\" y1=\\\"414.706\\\" y2=\\\"414.706\\\" gradientTransform=\\\"matrix(0 121.032 121.032 0 -50098.906 -7494.747)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1DA7E7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#37ABE7\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconDotNetWordmarkh)\\\" d=\\\"M90.295 34.172c1.384-4.267 2.968-9.447 4.933-15.73c1.771-5.661 4.905-9.894 10.792-11.741l.454-.962c-9.597.575-14.082 5.457-16.339 12.687c-3.947 12.622-6.339 20.803-8.641 26.017c2.94-2.812 5.88-6.263 8.801-10.271\\\"/>\"\n\t\t},\n\t\t\"dotnetcore\": {\n\t\t\t\"body\": \"<g fill=\\\"#623697\\\"><path d=\\\"M61.195 0h4.953c12.918.535 25.688 4.89 36.043 12.676c9.809 7.289 17.473 17.437 21.727 28.906c2.441 6.387 3.664 13.18 4.082 19.992v4.211c-.414 11.293-3.664 22.52-9.73 32.082c-6.801 10.895-16.922 19.73-28.727 24.828A64.399 64.399 0 0 1 65.082 128h-2.144c-11.735-.191-23.41-3.66-33.297-9.992c-11.196-7.113-20.114-17.785-25.028-30.117C1.891 81.19.441 74.02 0 66.812v-4.957c.504-14.39 5.953-28.609 15.41-39.496C23.168 13.31 33.5 6.48 44.887 2.937C50.172 1.27 55.676.41 61.195 0M25.191 37.523c-.03 12.153-.011 24.305-.011 36.454c1.43.011 2.86.011 4.293.011c-.075-10.433.101-20.863-.106-31.293c.48.907.918 1.84 1.465 2.707C37.035 54.91 43.105 64.5 49.309 74c1.738-.023 3.476-.023 5.214.004c-.003-12.16-.007-24.32.004-36.48a308.076 308.076 0 0 0-4.25-.012c.075 10.32-.136 20.64.125 30.949c-6.507-10.352-13.101-20.645-19.695-30.945a370.85 370.85 0 0 0-5.516.007m38.844-.011c-.129 12.16-.004 24.32-.047 36.476c6.469-.015 12.938.024 19.41-.02a83.36 83.36 0 0 1 .024-3.952c-5.012-.016-10.027.007-15.043-.02c-.074-4.21-.004-8.426-.04-12.637c4.395-.078 8.79.012 13.18-.047c-.011-1.277-.011-2.554-.019-3.832c-4.387.141-8.773-.054-13.164.012c.012-4.023.02-8.05.02-12.078c4.699 0 9.398-.02 14.093.012c-.008-1.301 0-2.606.016-3.906c-6.145-.016-12.29-.008-18.43-.008m22.602.054c.004 1.266.004 2.528.008 3.79c3.488-.04 6.972.109 10.46.035c-.023 10.863.004 21.718-.011 32.574c1.46.043 2.93.035 4.39-.09c-.12-5.992.118-11.988-.156-17.977c.067-2.699-.07-5.394.117-8.09c.106-2.14-.277-4.277-.035-6.417c3.516.047 7.035.015 10.55.015a59.774 59.774 0 0 1 .075-3.832c-8.469-.105-16.937-.094-25.398-.008M13.55 69.094c-1.977.91-2.106 4.023-.149 5.027c1.72 1.18 4.305-.371 4.227-2.41c.133-2.004-2.29-3.688-4.078-2.617m29.23 15.289c-4.277 3.469-4.226 11.195.5 14.25c2.668 1.695 6.102 1.344 8.922.215c.012-.621.027-1.239.05-1.86c-2.671 1.395-6.41 1.68-8.675-.61c-2.965-3.237-2.297-9.269 1.613-11.476c2.211-1.164 4.907-.824 7.086.239c-.007-.66-.004-1.32 0-1.98c-3.097-1.099-6.922-1.04-9.496 1.222m17.207 2.71c-1.89.22-3.758 1.22-4.633 2.966c-1.253 2.496-1.109 5.867.864 7.96c2.035 2.297 5.945 2.32 8.18.297c2.425-2.308 2.699-6.468.757-9.164c-1.148-1.629-3.273-2.183-5.168-2.058m17.887 2.722c-1.66 2.883-1.332 7.25 1.598 9.211c2.183 1.22 4.933.832 7.074-.308c-.004-.617.004-1.235.031-1.848c-1.687 1.07-3.937 1.856-5.812.777c-1.309-.722-1.704-2.257-1.914-3.625c2.875-.039 5.746-.082 8.625-.074c-.075-1.828-.118-3.894-1.45-5.308c-2.199-2.43-6.644-1.657-8.152 1.175M69.46 87.48v12.008c.652 0 1.312 0 1.973.004c.023-2.195-.04-4.394.023-6.594c.016-1.27.527-2.558 1.484-3.414c.801-.605 1.883-.27 2.801-.246c-.012-.636-.02-1.27-.023-1.902c-1.793-.398-3.336.652-4.242 2.117c-.02-.633-.04-1.266-.051-1.894c-.656-.024-1.313-.051-1.965-.079m0 0\\\"/><path d=\\\"M58.758 89.223c1.652-.805 4.023-.41 4.945 1.3c1.05 1.887 1.027 4.383-.137 6.211c-1.52 2.286-5.527 1.786-6.523-.742c-1.008-2.258-.617-5.484 1.715-6.77zm20.282 3.191c.046-1.574 1.144-3.137 2.726-3.48c.976-.164 2.097.007 2.773.793c.672.714.813 1.714.98 2.64c-2.16.012-4.32-.031-6.48.047zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"dreamweaver\": {\n\t\t\t\"body\": \"<path fill=\\\"#470137\\\" d=\\\"M22.667 1.6h82.666C117.866 1.6 128 11.733 128 24.267v79.466c0 12.533-10.133 22.667-22.667 22.667H22.667C10.134 126.4 0 116.267 0 103.733V24.267C0 11.734 10.133 1.6 22.667 1.6\\\"/><path fill=\\\"#ff61f6\\\" d=\\\"M105.6 89.599h-9.973c-.214.053-.48-.053-.64-.213a1.802 1.802 0 0 1-.32-.64a503.34 503.34 0 0 1-2.56-11.36c-.694-3.307-1.28-6.08-1.707-8.374a444.87 444.87 0 0 0-1.12-5.813c-.267-1.6-.533-2.933-.693-4.053h-.054c-.533 2.346-1.013 4.64-1.493 6.826c-.427 2.187-.96 4.427-1.493 6.667c-.534 2.24-1.12 4.693-1.814 7.36c-.64 2.667-1.386 5.6-2.186 8.747c-.107.587-.374.853-.854.853H70.72c-.267.054-.533-.053-.747-.16c-.16-.16-.266-.373-.373-.586L59.2 47.626c-.16-.48.053-.694.64-.694h10.08c.48 0 .747.16.8.534c1.067 4.693 1.973 8.746 2.667 12.16c.693 3.413 1.28 6.293 1.653 8.693c.373 2.4.747 4.373 1.013 5.867c.267 1.493.48 2.773.64 3.733h.16c.107-.854.214-1.653.374-2.507c.213-1.013.48-2.347.8-4c.32-1.653.693-3.573 1.173-5.813c.48-2.24 1.013-4.8 1.653-7.787c.587-2.933 1.44-6.293 2.454-10.08c0-.213.106-.48.213-.693c.053-.107.267-.16.587-.16H94.56c.32 0 .48.213.533.586a724.26 724.26 0 0 1 2.293 10.24c.587 2.934 1.12 5.547 1.6 7.84c.427 2.24.8 4.214 1.014 5.814c.213 1.653.48 2.986.693 4.106c.16.907.32 1.814.373 2.72h.16c.267-1.066.48-2.346.694-3.786c.214-1.44.48-3.04.853-4.854c.32-1.813.693-3.786 1.12-5.973c.373-2.187.907-4.587 1.493-7.307c.587-2.666 1.227-5.6 1.974-8.746c.106-.48.32-.694.693-.694h9.333c.48 0 .64.267.533.747l-11.52 41.12c-.053.213-.16.427-.32.587c0 .266-.213.373-.48.32zm-93.439-.533v-54.4c-.053-.32.213-.64.533-.694h.054a55 55 0 0 1 3.573-.106c1.6-.054 3.413-.054 5.547-.107c2.133-.053 4.373-.053 6.773-.053c6.507 0 11.947 1.173 16.213 3.52a23.388 23.388 0 0 1 9.653 9.653c2.134 4.107 3.2 8.8 3.2 14.133c.054 3.733-.48 7.413-1.653 10.933a25.98 25.98 0 0 1-4.587 8.213c-1.866 2.24-4.106 4.16-6.56 5.707c-2.4 1.493-5.066 2.613-7.84 3.36a32.736 32.736 0 0 1-8.213 1.067h-6.027c-2.133 0-4.16 0-5.973-.054c-1.867-.053-3.253-.053-4.16-.106c-.373 0-.533-.32-.533-.854zm11.253-45.013v35.573c.587 0 1.12 0 1.653.053c.48.053 1.014.053 1.494.107c.533.053 1.12.053 1.76.053c2.453.053 4.906-.373 7.253-1.227c2.133-.746 4-1.973 5.6-3.626a16.47 16.47 0 0 0 3.573-5.92c.854-2.56 1.28-5.28 1.28-8c.054-2.56-.373-5.12-1.226-7.52a13.908 13.908 0 0 0-9.12-8.64c-2.294-.694-4.64-1.067-7.04-1.014c-1.067 0-1.974 0-2.72.054c-.747 0-1.6.053-2.507.106z\\\"/>\"\n\t\t},\n\t\t\"dropwizard\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconDropwizard0\\\" x2=\\\"1\\\" gradientTransform=\\\"matrix(-3070 -1630 -1630 3070 3221.19 2903.28)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3871c1\\\"/><stop offset=\\\".515\\\" stop-color=\\\"#2c3792\\\"/><stop offset=\\\".865\\\" stop-color=\\\"#24265d\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#252761\\\"/></linearGradient><linearGradient id=\\\"deviconDropwizard1\\\" x2=\\\"1\\\" gradientTransform=\\\"scale(-1851.53798 1851.53798)rotate(-14.621 3.82 4.204)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3871c1\\\"/><stop offset=\\\".515\\\" stop-color=\\\"#2c3792\\\"/><stop offset=\\\".865\\\" stop-color=\\\"#24265d\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#252761\\\"/></linearGradient><clipPath id=\\\"deviconDropwizard2\\\"><path d=\\\"M180.895 285.039S1320.7-280.582 2192.75 391.68c-227.41 610.38-626.72 2371.23-862.53 3148.89c-50.27 165.81-58.48 182.34-79.05 227.87c-115.09 254.71-236.16-494.3-433.061-1248.28c-70.507-270.25-637.214-2235.121-637.214-2235.121\\\"/></clipPath><clipPath id=\\\"deviconDropwizard3\\\"><path d=\\\"M410.777 410.078S1385.91-162.09 2192.75 391.68c-21.6 96.371-76.64 251.09-114.02 395.218c-198.64 765.722-558.14 2058.592-733.32 2700.432c-189.87 694.95-251.29-117.65-472.781-982.33c-67.293-262.93-461.852-2094.922-461.852-2094.922\\\"/></clipPath></defs><g clip-path=\\\"url(#deviconDropwizard2)\\\" transform=\\\"matrix(.03194 0 0 -.03194 26.222 125.997)\\\"><path fill=\\\"url(#deviconDropwizard0)\\\" d=\\\"M180.895 285.039S1320.7-280.582 2192.75 391.68c-227.41 610.38-626.72 2371.23-862.53 3148.89c-50.27 165.81-58.48 182.34-79.05 227.87c-115.09 254.71-236.16-494.3-433.061-1248.28c-70.507-270.25-637.214-2235.121-637.214-2235.121\\\"/></g><g clip-path=\\\"url(#deviconDropwizard3)\\\" transform=\\\"matrix(.03194 0 0 -.03194 26.222 125.997)\\\"><path fill=\\\"url(#deviconDropwizard1)\\\" d=\\\"M410.777 410.078S1385.91-162.09 2192.75 391.68c-21.6 96.371-76.64 251.09-114.02 395.218c-198.64 765.722-558.14 2058.592-733.32 2700.432c-189.87 694.95-251.29-117.65-472.781-982.33c-67.293-262.93-461.852-2094.922-461.852-2094.922\\\"/></g><path fill=\\\"#f9a72b\\\" d=\\\"m47.785 97.062l3.237-5.586l3.025 5.884l-3.461 7.59zm26.436-21.14l3.238-5.586l3.025 5.885l-3.463 7.589zm-18.1-22.307l3.238-5.585l3.024 5.885l-3.462 7.587z\\\"/><path fill=\\\"#fff200\\\" d=\\\"m47.785 97.062l3.242-6.541l3.02 6.84l-3.456 5.595zm26.436-21.14l3.244-6.541l3.019 6.84l-3.456 5.595l-2.806-5.894m-18.1-22.307l3.242-6.54l3.019 6.84l-3.457 5.594z\\\"/><path fill=\\\"#24265d\\\" d=\\\"M51.012 112.36s23.19 3.868 38.455-5.904c-1.914 5.904-19.03 12.631-38.455 5.904\\\"/>\"\n\t\t},\n\t\t\"drupal\": {\n\t\t\t\"body\": \"<path fill=\\\"#00598E\\\" d=\\\"M91.1 24.935c-6.352-3.956-12.345-5.513-18.337-9.469c-3.716-2.516-8.869-8.51-13.185-13.663c-.838 8.27-3.355 11.625-6.231 14.022c-6.112 4.795-9.948 6.232-15.222 9.109C33.69 27.212 9.601 41.595 9.601 72.516c0 30.923 26.008 53.694 54.892 53.694c28.886 0 53.934-20.974 53.934-52.734c-.001-31.762-23.491-46.143-27.327-48.541\\\"/><path fill=\\\"#fff\\\" d=\\\"M81.365 99.35c1.917 0 3.955.119 5.394 1.079c1.438.958 2.277 3.116 2.756 4.314c.479 1.199 0 1.917-.959 2.396c-.838.48-.958.24-1.797-1.317c-.839-1.558-1.559-3.117-5.753-3.117c-4.195 0-5.514 1.439-7.551 3.117c-2.038 1.678-2.757 2.277-3.476 1.317c-.719-.958-.479-1.917.839-3.116s3.476-3.116 5.513-3.955c2.038-.838 3.117-.718 5.034-.718M61.47 113.013c2.397 1.917 5.992 3.475 13.663 3.475s13.063-2.157 15.461-3.954c1.079-.84 1.558-.12 1.678.359c.12.479.36 1.199-.479 2.037c-.599.6-6.112 4.435-12.584 5.034c-6.473.599-15.221.959-20.495-3.835c-.839-.839-.599-2.037 0-2.516c.6-.479 1.079-.84 1.798-.84s.598-.001.958.24\\\"/><path fill=\\\"#0073BA\\\" d=\\\"M32.106 103.903c9.108-.119 10.786-1.678 18.816-5.273c43.387-19.416 51.416-37.153 52.975-41.229c1.558-4.076 3.835-10.667 1.438-17.979a66.4 66.4 0 0 1-1.045-3.456c-5.765-6.447-11.489-9.965-13.218-11.045c-6.232-3.955-12.345-5.513-18.338-9.468c-3.715-2.397-8.868-8.51-13.183-13.663c-.84 8.269-3.236 11.746-6.233 14.022c-6.112 4.795-9.947 6.233-15.221 9.109c-4.433 2.397-28.523 16.66-28.523 47.581c0 9.873 2.651 18.915 7.201 26.649l1.188-.042c2.517 2.278 6.473 4.914 14.143 4.794\\\"/><path fill=\\\"#004975\\\" d=\\\"M91.073 24.922c-6.232-3.955-12.345-5.513-18.338-9.468c-3.715-2.397-8.868-8.51-13.183-13.663c-.84 8.269-3.236 11.746-6.233 14.022c-6.112 4.795-9.947 6.233-15.221 9.109c-4.434 2.396-28.524 16.659-28.524 47.58c0 9.873 2.651 18.915 7.201 26.649c9.7 16.492 28.028 27.044 47.69 27.044c28.885 0 53.934-20.974 53.934-52.735c0-17.441-7.084-29.641-14.108-37.494c-5.765-6.446-11.489-9.964-13.218-11.044m14.569 14.03c7.868 9.838 11.859 21.448 11.859 34.509c0 7.58-1.444 14.739-4.291 21.281a48.926 48.926 0 0 1-11.559 16.34c-9.823 9.168-23.029 14.216-37.186 14.216c-7.003 0-13.875-1.338-20.427-3.977a54.728 54.728 0 0 1-17.232-11.029c-10.533-9.955-16.334-23.375-16.334-37.789c0-12.837 4.167-24.244 12.386-33.905c6.278-7.379 13.049-11.469 15.668-12.885a152.775 152.775 0 0 1 3.618-1.898c3.616-1.856 7.032-3.609 11.73-7.295c2.505-1.903 5.174-4.919 6.31-12.576c3.96 4.708 8.554 10 12.064 12.264c3.116 2.058 6.312 3.499 9.403 4.892c2.923 1.319 5.947 2.682 8.938 4.581l.113.07c8.748 5.46 13.407 11.286 14.94 13.201\\\"/><path fill=\\\"#93C5E4\\\" d=\\\"M60.151 4.187c1.678 4.914 1.438 7.431 1.438 8.51s-.6 3.956-2.518 5.393c-.839.6-1.078 1.079-1.078 1.199c0 .479 1.078.839 1.078 1.917c0 1.319-.599 3.956-6.951 10.308c-6.353 6.352-15.461 11.985-22.532 15.46c-7.071 3.476-10.427 3.237-11.386 1.559c-.959-1.678.359-5.393 4.794-10.307c4.435-4.915 18.457-11.986 18.457-11.986l17.499-12.224l.958-4.675\\\"/><path fill=\\\"#fff\\\" d=\\\"M60.151 4.067c-1.079 7.911-3.476 10.308-6.712 12.824c-5.394 4.076-10.667 6.592-11.865 7.191c-3.116 1.558-14.382 7.791-20.255 16.78c-1.798 2.756 0 3.835.359 4.074c.36.24 4.435.719 13.184-4.554c8.75-5.274 12.585-8.39 17.499-13.544c2.637-2.756 2.996-4.314 2.996-5.034c0-.838-.6-1.198-1.558-1.438c-.48-.12-.6-.36 0-.719c.599-.359 3.115-1.558 3.715-2.037c.6-.479 3.476-2.396 3.596-5.513c.119-3.116-.12-5.274-.959-8.03M33.185 91.199c.12-9.349 8.869-18.098 19.896-18.218c14.022-.119 23.73 13.903 30.802 13.783c5.991-.118 17.497-11.864 23.131-11.864c5.992 0 7.671 6.232 7.671 9.948c0 3.715-1.199 10.427-4.076 14.621c-2.876 4.196-4.674 5.753-8.029 5.513c-4.314-.359-12.944-13.783-18.458-14.022c-6.95-.24-22.053 14.501-33.918 14.501c-7.19 0-9.348-1.078-11.745-2.637c-3.597-2.515-5.394-6.351-5.274-11.625\\\"/><path fill=\\\"none\\\" d=\\\"M105.336 39.423c2.396 7.311.119 13.903-1.438 17.979c-1.559 4.075-9.588 21.813-52.975 41.229c-8.03 3.595-9.708 5.154-18.816 5.273c-7.671.12-11.626-2.516-14.143-4.793l-1.188.042c9.7 16.492 28.028 27.044 47.69 27.044c28.885 0 53.934-20.974 53.934-52.735c0-17.441-7.084-29.641-14.108-37.494c.243.91.581 2.044 1.044 3.455\\\"/>\"\n\t\t},\n\t\t\"drupal-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0073BA\\\" d=\\\"M66.835 101.194h-5.009l.009 9.371c0 2.739-1.174 4.955-3.913 4.955s-3.924-2.216-3.924-4.955v-9.362h-4.996l-.001 9.362c0 5.412 3.479 9.798 8.891 9.798c5.411 0 8.941-4.386 8.941-9.798zm45.16-5.71h4.984v24.395h-4.984zm-67.066 5.507c-4.296-.992-7.006 3.276-7.118 3.505c-.056.112-.058.178-.249.173c-.156-.004-.175-.173-.175-.173l-.533-3.266h-4.463v18.632h5.004v-10.085c0-.822 2.219-4.774 6.519-3.757c2.175.514 3.097 1.436 3.097 1.436v-5.676c-.805-.419-1.357-.622-2.082-.789M73.626 126v-6.704l.002.001v-2.51s.008-.201.189-.204c.161-.002.197.106.237.204c.379.943 2.466 4.541 7.097 3.412c4.145-1.168 7.186-4.975 7.186-9.495c0-5.446-4.417-9.864-9.865-9.864s-9.864 4.418-9.864 9.864v15.295zm4.851-20.287a4.993 4.993 0 1 1-4.993 4.991a4.992 4.992 0 0 1 4.993-4.991m26.477 14.159h5.018v-9.168c0-5.446-4.415-9.863-9.864-9.863c-5.448 0-9.865 4.417-9.865 9.863c0 4.521 3.042 8.327 7.187 9.495c4.631 1.129 6.717-2.468 7.097-3.412c.04-.098.075-.205.237-.203c.182.002.188.203.188.203m.144-6.083a4.994 4.994 0 1 1-9.988.002a4.994 4.994 0 0 1 9.988-.002m-88.383 9.129h-5.692V95.475h6.108c7.396 0 13.006 1.357 13.006 12.178c0 10.719-5.943 12.18-13.422 12.18m1.36-20.136h-2.012v15.909l2.066.053c4.238 0 6.967-.386 6.967-8.007c0-7.306-2.409-7.955-7.021-7.955\\\"/><path fill=\\\"#00598E\\\" d=\\\"M83.539 20.706c-4.58-2.853-8.901-3.975-13.221-6.826c-2.679-1.815-6.395-6.136-9.506-9.852c-.604 5.962-2.419 8.383-4.493 10.11c-4.407 3.457-7.173 4.494-10.975 6.567c-3.198 1.643-20.566 12.012-20.566 34.306S43.53 93.724 64.355 93.724c20.826 0 38.886-15.122 38.886-38.021S86.304 22.435 83.539 20.706\\\"/><path fill=\\\"#fff\\\" d=\\\"M76.52 74.358c1.382 0 2.852.086 3.889.777c1.037.691 1.642 2.248 1.987 3.111c.346.863 0 1.382-.691 1.728c-.604.346-.691.173-1.296-.949c-.605-1.124-1.124-2.248-4.148-2.248s-3.975 1.037-5.444 2.248c-1.469 1.21-1.988 1.642-2.506.949c-.518-.691-.346-1.382.604-2.247c.951-.864 2.506-2.245 3.975-2.852c1.47-.603 2.248-.517 3.63-.517m-14.344 9.851c1.729 1.382 4.32 2.506 9.851 2.506s9.419-1.556 11.147-2.852c.778-.605 1.123-.085 1.21.259c.086.347.259.865-.346 1.469c-.432.433-4.407 3.198-9.073 3.631c-4.667.431-10.974.691-14.777-2.766c-.604-.605-.431-1.469 0-1.814c.433-.346.779-.605 1.296-.605c.518-.001.433-.001.692.172\\\"/><path fill=\\\"#0073BA\\\" d=\\\"M41.005 77.642c6.567-.086 7.777-1.21 13.566-3.801c31.282-13.999 37.07-26.789 38.194-29.727c1.123-2.938 2.765-7.691 1.037-12.962a47.63 47.63 0 0 1-.753-2.493c-4.157-4.647-8.284-7.184-9.53-7.962c-4.494-2.853-8.9-3.977-13.222-6.828c-2.678-1.728-6.394-6.135-9.504-9.85c-.606 5.96-2.333 8.468-4.495 10.108c-4.406 3.458-7.171 4.494-10.974 6.569c-3.197 1.727-20.566 12.01-20.566 34.305c0 7.117 1.912 13.637 5.192 19.215l.857-.032c1.816 1.643 4.667 3.544 10.198 3.458\\\"/><path fill=\\\"#004975\\\" d=\\\"M83.52 20.697c-4.494-2.853-8.9-3.977-13.222-6.828c-2.678-1.728-6.394-6.135-9.504-9.85c-.606 5.96-2.333 8.468-4.495 10.108c-4.406 3.458-7.171 4.494-10.974 6.569c-3.197 1.727-20.566 12.01-20.566 34.305c0 7.117 1.912 13.637 5.192 19.215c6.994 11.891 20.208 19.498 34.384 19.498c20.826 0 38.886-15.122 38.886-38.021c0-12.576-5.107-21.371-10.171-27.034c-4.157-4.647-8.284-7.183-9.53-7.962m10.503 10.115c5.673 7.094 8.551 15.465 8.551 24.882c0 5.465-1.042 10.626-3.094 15.343a35.278 35.278 0 0 1-8.333 11.781c-7.083 6.61-16.604 10.249-26.811 10.249A39.259 39.259 0 0 1 49.609 90.2a39.463 39.463 0 0 1-12.425-7.952C29.59 75.07 25.408 65.394 25.408 55.003c0-9.256 3.004-17.48 8.93-24.445c4.526-5.32 9.408-8.269 11.296-9.29a110.9 110.9 0 0 1 2.609-1.368c2.607-1.338 5.07-2.603 8.458-5.26c1.806-1.372 3.73-3.546 4.549-9.068c2.855 3.396 6.167 7.21 8.698 8.844c2.247 1.483 4.551 2.522 6.78 3.527c2.107.95 4.288 1.933 6.445 3.302l.082.05c6.304 3.935 9.663 8.137 10.768 9.517\\\"/><path fill=\\\"#93C5E4\\\" d=\\\"M61.225 5.747c1.209 3.542 1.037 5.357 1.037 6.136c0 .777-.432 2.852-1.815 3.888c-.605.433-.777.777-.777.865c0 .344.777.604.777 1.381c0 .951-.431 2.853-5.011 7.432c-4.58 4.58-11.147 8.642-16.246 11.146c-5.098 2.507-7.517 2.335-8.208 1.125c-.692-1.21.259-3.889 3.456-7.432c3.197-3.544 13.308-8.642 13.308-8.642l12.617-8.813l.69-3.37\\\"/><path fill=\\\"#fff\\\" d=\\\"M61.225 5.659c-.778 5.704-2.506 7.434-4.839 9.246c-3.889 2.939-7.69 4.753-8.555 5.186c-2.247 1.123-10.369 5.617-14.604 12.099c-1.296 1.987 0 2.765.259 2.938c.26.173 3.197.519 9.505-3.283c6.309-3.803 9.074-6.049 12.617-9.765c1.901-1.988 2.16-3.111 2.16-3.63c0-.604-.432-.863-1.123-1.037c-.347-.086-.432-.259 0-.518s2.246-1.124 2.679-1.469c.432-.347 2.506-1.728 2.592-3.976c.086-2.247-.086-3.803-.691-5.791M41.782 68.481c.086-6.74 6.395-13.048 14.345-13.135c10.11-.085 17.109 10.024 22.208 9.938c4.32-.086 12.616-8.554 16.678-8.554c4.32 0 5.531 4.494 5.531 7.172c0 2.679-.865 7.518-2.939 10.542s-3.37 4.148-5.789 3.975c-3.111-.259-9.333-9.938-13.308-10.109c-5.011-.173-15.9 10.455-24.455 10.455c-5.184 0-6.739-.776-8.468-1.901c-2.593-1.814-3.889-4.581-3.803-8.383\\\"/><path fill=\\\"none\\\" d=\\\"M93.803 31.152c1.728 5.271.086 10.023-1.037 12.962c-1.124 2.938-6.913 15.728-38.194 29.727c-5.79 2.591-7 3.715-13.566 3.801c-5.531.086-8.382-1.814-10.197-3.457l-.857.032c6.994 11.891 20.208 19.498 34.384 19.498c20.826 0 38.886-15.122 38.886-38.021c0-12.576-5.107-21.371-10.171-27.034c.174.657.418 1.474.752 2.492\\\"/>\"\n\t\t},\n\t\t\"dynamodb\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconDynamodb0\\\" x1=\\\"-15.53\\\" x2=\\\"90.53\\\" y1=\\\"90.53\\\" y2=\\\"-15.53\\\" gradientTransform=\\\"scale(1.70667)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#2e27ad\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#527fff\\\"/></linearGradient></defs><path fill=\\\"url(#deviconDynamodb0)\\\" d=\\\"M0 0h128v128H0z\\\" class=\\\"prefix__cls-1\\\"/><path fill=\\\"#fff\\\" d=\\\"M56.745 21.266c-14.062 0-29.013 4.164-29.013 11.947v13.736a6.93 6.93 0 0 0 2.577 5.037a6.946 6.946 0 0 0-2.577 5.12v13.653a6.93 6.93 0 0 0 2.577 5.12A6.946 6.946 0 0 0 27.732 81v13.654a2.133 2.133 0 0 0 0 .356c.46 7.493 15.138 11.52 29.013 11.52c13.876 0 28.553-4.027 29.014-11.553a1.28 1.28 0 0 0 0-.36V80.963a6.827 6.827 0 0 0-2.577-5.12a6.93 6.93 0 0 0 2.577-5.12v-1.637l-11.28 11.263a27.7 27.7 0 0 0 5.836-2.373a4.403 4.403 0 0 1 2.03 3.073c0 3.124-6.62 6.521-16.45 7.904a72.073 72.073 0 0 1-9.15.646H55.04c-13.79-.324-23.894-4.676-23.894-8.533a4.403 4.403 0 0 1 2.034-3.07c5.359 2.987 14.043 4.76 23.566 4.76h.19l.954-3.413h-1.144c-9.386 0-18.088-1.862-22.713-4.797c-1.843-1.212-2.87-2.523-2.887-3.667v-7.903c5.223 3.994 15.634 6.077 25.6 6.077c1.349 0 2.7 0 4.014-.12l.97-3.414c-1.707.12-3.294.17-4.984.17c-14.643 0-25.6-4.488-25.6-8.533a4.403 4.403 0 0 1 2.034-3.073c4.71 2.645 11.944 4.3 20.153 4.676l.087-3.413c-8.073-.393-15.36-2.133-19.387-4.71c-1.826-1.178-2.852-2.51-2.887-3.67v-7.883c5.223 3.993 15.634 6.076 25.6 6.076h.377l1.81-3.413h-2.187c-14.643 0-25.6-4.489-25.6-8.533c0-4.045 10.957-8.534 25.6-8.534a61.44 61.44 0 0 1 14.644 1.707h9.37c-5.12-3.123-13.961-5.12-24.014-5.12zm12.8 8.517a1.707 1.707 0 0 0-1.516.936L57.789 51.2a1.707 1.707 0 0 0 1.516 2.527h9.66l-9.59 31.93a1.707 1.707 0 0 0 .784 1.963a1.707 1.707 0 0 0 .853.24a1.707 1.707 0 0 0 1.317-.58l37.546-39.253a1.707 1.707 0 0 0-1.23-2.883h-9.573l4.367-13.127a1.707 1.707 0 0 0-1.707-2.233zm.957 3.43h18.773l-4.37 13.106a1.707 1.707 0 0 0 1.707 2.254h7.953l-29.883 31.23l8.21-27.307a1.707 1.707 0 0 0-.273-1.5a1.707 1.707 0 0 0-1.367-.683h-9.18zm-34.237 11.62a2.133 2.133 0 0 0-2.133 2.133a2.133 2.133 0 0 0 2.133 2.133a2.133 2.133 0 0 0 2.134-2.133a2.133 2.133 0 0 0-2.134-2.133m0 23.893a2.133 2.133 0 0 0-2.133 2.133a2.133 2.133 0 0 0 2.133 2.134a2.133 2.133 0 0 0 2.134-2.134a2.133 2.133 0 0 0-2.134-2.133m-5.12 18.11c5.223 3.96 15.634 6.04 25.6 6.04c9.967 0 20.378-2.08 25.6-6.04v7.85c0 4.028-10.956 8.533-25.6 8.533c-14.643 0-25.6-4.454-25.6-8.533zm5.12 5.783a2.133 2.133 0 0 0-2.133 2.134a2.133 2.133 0 0 0 2.133 2.133a2.133 2.133 0 0 0 2.134-2.133a2.133 2.133 0 0 0-2.134-2.134\\\" class=\\\"prefix__cls-2\\\"/>\"\n\t\t},\n\t\t\"eclipse\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconEclipse0\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"10.894\\\" y2=\\\"-1.595\\\" gradientTransform=\\\"matrix(76.53125 0 0 6.78125 32.176 54.11)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".303\\\" stop-color=\\\"#473788\\\"/><stop offset=\\\".872\\\" stop-color=\\\"#2c2255\\\"/></linearGradient><linearGradient id=\\\"deviconEclipse1\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"8.965\\\" y2=\\\"-3.524\\\" gradientTransform=\\\"matrix(76.53125 0 0 6.78125 32.176 67.191)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".303\\\" stop-color=\\\"#473788\\\"/><stop offset=\\\".872\\\" stop-color=\\\"#2c2255\\\"/></linearGradient><linearGradient id=\\\"deviconEclipse2\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"2.152\\\" y2=\\\"-1.667\\\" gradientTransform=\\\"matrix(69.61719 0 0 22.17969 35.633 80.27)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".303\\\" stop-color=\\\"#473788\\\"/><stop offset=\\\".863\\\" stop-color=\\\"#2c2255\\\"/></linearGradient></defs><path fill=\\\"#2c2255\\\" d=\\\"M35.633 80.27H16.375c2.55 8.75 7.281 16.59 14.21 23.515c11.044 11.047 24.325 16.563 39.852 16.563c3.106 0 6.114-.23 9.036-.672c11.699-1.766 21.941-7.055 30.715-15.89c6.972-6.927 11.738-14.766 14.308-23.516ZM25.016 54.113H14.953a58.89 58.89 0 0 0-.734 6.782h112.445a58.833 58.833 0 0 0-.738-6.782M14.219 67.191a59.14 59.14 0 0 0 .734 6.782H125.93c.375-2.246.62-4.508.738-6.782M124.5 47.812c-2.57-8.769-7.336-16.648-14.313-23.624c-8.75-8.754-18.964-14.004-30.624-15.77a60.963 60.963 0 0 0-9.122-.684c-15.53 0-28.812 5.489-39.855 16.453c-6.93 6.977-11.668 14.856-14.215 23.625\\\"/><path fill=\\\"#f7941e\\\" d=\\\"M10.875 64.043c0-29.703 22.309-54.383 51.332-58.723c-.719-.027-1.445-.058-2.172-.058c-32.566.004-58.969 26.32-58.969 58.781c0 32.465 26.403 58.781 58.97 58.781c.73 0 1.452-.027 2.175-.054c-29.027-4.34-51.336-29.02-51.336-58.727m0 0\\\"/><path fill=\\\"url(#deviconEclipse0)\\\" d=\\\"M108.707 60.89a38.413 38.413 0 0 0-1.164-6.78H33.34a38.413 38.413 0 0 0-1.164 6.78Zm0 0\\\"/><path fill=\\\"url(#deviconEclipse1)\\\" d=\\\"M108.707 67.191H32.176c.183 2.29.574 4.559 1.164 6.782h74.203a38.45 38.45 0 0 0 1.164-6.782m0 0\\\"/><path fill=\\\"url(#deviconEclipse2)\\\" d=\\\"M70.441 102.45c15.41 0 28.696-9.083 34.809-22.18H35.633c6.117 13.097 19.398 22.18 34.808 22.18m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M26.504 67.191h100.082a55.61 55.61 0 0 0 .082-3.027c0-1.098-.04-2.187-.102-3.273H14.22a60.68 60.68 0 0 0-.102 3.273c0 1.016.031 2.023.082 3.027Zm8.906-19.379H16.371c-.625 2.051-1.031 4.157-1.418 6.301H125.57a55.385 55.385 0 0 0-1.515-6.3m-5.72 26.16H14.954c.375 2.14.805 4.246 1.422 6.297h108.05a56.053 56.053 0 0 0 1.49-6.297Zm0 0\\\"/>\"\n\t\t},\n\t\t\"eclipse-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconEclipseWordmark0\\\" x1=\\\"502.385\\\" x2=\\\"502.385\\\" y1=\\\"-40.076\\\" y2=\\\"-113.711\\\" gradientTransform=\\\"translate(-116.533 90.267)scale(.26667)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".303\\\" stop-color=\\\"#473788\\\"/><stop offset=\\\".872\\\" stop-color=\\\"#2c2255\\\"/></linearGradient><linearGradient id=\\\"deviconEclipseWordmark1\\\" x1=\\\"502.386\\\" x2=\\\"502.386\\\" y1=\\\"-40.075\\\" y2=\\\"-113.71\\\" gradientTransform=\\\"translate(-116.533 90.267)scale(.26667)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".303\\\" stop-color=\\\"#473788\\\"/><stop offset=\\\".872\\\" stop-color=\\\"#2c2255\\\"/></linearGradient><linearGradient id=\\\"deviconEclipseWordmark2\\\" x1=\\\"502.386\\\" x2=\\\"502.386\\\" y1=\\\"-40.078\\\" y2=\\\"-113.707\\\" gradientTransform=\\\"translate(-116.533 90.267)scale(.26667)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".303\\\" stop-color=\\\"#473788\\\"/><stop offset=\\\".863\\\" stop-color=\\\"#2c2255\\\"/></linearGradient></defs><path fill=\\\"#2c2255\\\" d=\\\"M9.367 68.516H4.902c.59 2.027 1.688 3.847 3.293 5.453c2.563 2.562 5.64 3.84 9.242 3.84c.72 0 1.415-.055 2.094-.157c2.711-.41 5.086-1.636 7.121-3.683c1.614-1.606 2.72-3.426 3.317-5.453Zm-2.465-6.063H4.57a14.08 14.08 0 0 0-.168 1.57H30.47a13.213 13.213 0 0 0-.168-1.57m-25.9 3.031c.028.536.082 1.059.168 1.57H30.3c.087-.511.145-1.034.173-1.57m-.504-4.492c-.594-2.035-1.7-3.86-3.317-5.476c-2.03-2.032-4.398-3.246-7.101-3.657c-.7-.105-1.406-.16-2.113-.16c-3.602 0-6.68 1.274-9.243 3.817c-1.605 1.617-2.703 3.441-3.293 5.476\\\"/><path fill=\\\"#f7941e\\\" d=\\\"M3.625 64.754c0-6.887 5.172-12.61 11.902-13.613a10.85 10.85 0 0 0-.504-.016c-7.55 0-13.671 6.102-13.671 13.629c0 7.527 6.12 13.629 13.671 13.629c.168 0 .336-.008.504-.012c-6.73-1.008-11.902-6.73-11.902-13.617M75.91 50.043h2.719v3.445H75.91Zm0 0\\\"/><path fill=\\\"#2c2255\\\" d=\\\"M53.207 64.215v1.328H40.703c.121 1.871.684 3.297 1.695 4.277c1.008.98 2.414 1.473 4.22 1.473a11.87 11.87 0 0 0 3.034-.387a13.51 13.51 0 0 0 2.922-1.152v2.574c-.969.41-1.972.727-3.004.945a15.19 15.19 0 0 1-3.117.325c-2.64 0-4.73-.766-6.273-2.305c-1.543-1.54-2.313-3.613-2.313-6.234c0-2.711.73-4.864 2.196-6.454c1.46-1.59 3.437-2.386 5.917-2.386c2.227 0 3.989.718 5.286 2.152c1.293 1.43 1.941 3.379 1.941 5.844m-2.719-.8c-.02-1.49-.437-2.673-1.25-3.56c-.812-.886-1.886-1.332-3.226-1.332c-1.52 0-2.735.43-3.645 1.286c-.91.859-1.433 2.066-1.574 3.62Zm16.825-6.161v2.539c-.77-.422-1.54-.738-2.313-.953a8.945 8.945 0 0 0-2.344-.317c-1.761 0-3.133.559-4.105 1.676c-.977 1.121-1.465 2.688-1.465 4.707c0 2.02.488 3.59 1.465 4.707c.972 1.121 2.344 1.68 4.105 1.68c.79 0 1.57-.106 2.344-.316a10.662 10.662 0 0 0 2.313-.957v2.515c-.754.352-1.543.617-2.356.797a12.29 12.29 0 0 1-2.594.266c-2.496 0-4.476-.785-5.941-2.352c-1.469-1.566-2.203-3.68-2.203-6.34c0-2.699.742-4.82 2.222-6.367c1.485-1.547 3.516-2.32 6.098-2.32c.836 0 1.656.086 2.453.258c.801.171 1.578.433 2.32.777m2.458-7.082h2.722v22.996H69.77Zm6.14 6.445h2.719v16.551H75.91Zm8.77 14.07v8.778h-2.735V56.617h2.735v2.512c.57-.984 1.293-1.715 2.164-2.195c.875-.477 1.914-.715 3.129-.715c2.007 0 3.64.797 4.898 2.394c1.254 1.594 1.883 3.696 1.883 6.293c0 2.602-.629 4.703-1.883 6.297c-1.258 1.594-2.89 2.395-4.898 2.395c-1.215 0-2.254-.239-3.13-.72c-.87-.476-1.593-1.206-2.163-2.19m9.25-5.782c0-2-.41-3.566-1.235-4.707c-.82-1.136-1.953-1.703-3.39-1.703c-1.438 0-2.57.566-3.39 1.703c-.825 1.14-1.235 2.707-1.235 4.707s.41 3.57 1.234 4.707c.82 1.14 1.953 1.707 3.39 1.707c1.438 0 2.571-.566 3.391-1.707c.825-1.136 1.235-2.707 1.235-4.707m15.613-7.8v2.57a10.626 10.626 0 0 0-2.395-.887a11.152 11.152 0 0 0-2.57-.293c-1.351 0-2.363.203-3.039.617c-.672.414-1.012 1.035-1.012 1.864c0 .628.243 1.125.727 1.484c.48.36 1.45.703 2.91 1.027l.93.207c1.93.414 3.304.996 4.117 1.754c.812.75 1.219 1.805 1.219 3.153c0 1.539-.61 2.753-1.825 3.652c-1.218.894-2.89 1.344-5.02 1.344c-.886 0-1.808-.086-2.769-.258a23.364 23.364 0 0 1-3.039-.778v-2.808c1.008.523 1.996.914 2.973 1.176c.973.261 1.941.39 2.895.39c1.28 0 2.265-.218 2.957-.656c.691-.437 1.035-1.059 1.035-1.855c0-.739-.25-1.305-.746-1.7c-.5-.394-1.59-.773-3.274-1.136l-.945-.223c-1.688-.355-2.902-.898-3.652-1.633c-.75-.734-1.122-1.742-1.122-3.023c0-1.555.551-2.758 1.653-3.606c1.105-.847 2.672-1.27 4.699-1.27c1.008 0 1.953.075 2.84.22c.887.148 1.703.37 2.453.667m17.105 7.11v1.328h-12.503c.117 1.871.683 3.297 1.69 4.277c1.013.98 2.419 1.473 4.22 1.473c1.047 0 2.058-.129 3.039-.387c.98-.254 1.953-.64 2.918-1.152v2.574c-.965.41-1.973.727-3 .945a15.19 15.19 0 0 1-3.117.325c-2.641 0-4.73-.766-6.274-2.305c-1.543-1.54-2.312-3.613-2.312-6.234c0-2.711.73-4.864 2.195-6.454c1.46-1.59 3.437-2.386 5.918-2.386c2.226 0 3.988.718 5.281 2.152c1.297 1.43 1.945 3.379 1.945 5.844m-2.718-.8c-.02-1.49-.438-2.673-1.25-3.56c-.813-.886-1.89-1.332-3.23-1.332c-1.516 0-2.731.43-3.641 1.286c-.91.859-1.438 2.066-1.575 3.62Zm0 0\\\"/><path fill=\\\"url(#deviconEclipseWordmark0)\\\" d=\\\"M26.309 64.023a8.86 8.86 0 0 0-.27-1.57H8.836a8.86 8.86 0 0 0-.27 1.57Zm0 0\\\"/><path fill=\\\"url(#deviconEclipseWordmark1)\\\" d=\\\"M26.309 65.484H8.566a8.86 8.86 0 0 0 .27 1.57h17.203a8.86 8.86 0 0 0 .27-1.57m0 0\\\"/><path fill=\\\"url(#deviconEclipseWordmark2)\\\" d=\\\"M17.438 73.656a8.9 8.9 0 0 0 8.07-5.14H9.368a8.897 8.897 0 0 0 8.07 5.14m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M7.25 65.484h23.203c.012-.234.02-.464.02-.703c0-.254-.012-.508-.024-.758H4.402a12.178 12.178 0 0 0-.004 1.461Zm2.063-4.492H4.897c-.144.477-.238.961-.328 1.461H30.22a13.15 13.15 0 0 0-.352-1.46m-1.328 6.062H4.57c.09.5.188.984.332 1.46h25.051c.14-.48.258-.964.344-1.46Zm0 0\\\"/>\"\n\t\t},\n\t\t\"ecto\": {\n\t\t\t\"body\": \"<path fill=\\\"#77bf43\\\" d=\\\"M64.898.01c-4.657.085-9.5.778-14.448 2.207c-4.657 1.35-13.486 5.693-20.193 12.735c-6.707 7.042-14.825 19.015-17.26 34.104c-2.425 15.078-2.091 30.746 5.113 46.413c7.205 15.667 17.758 23.957 27.732 28.818c9.975 4.86 23.542 4.19 30.33 2.263c6.789-1.928 10.136-4.192 13.485-6.536c3.348-2.344 3.268-4.444 2.76-5.448c-.507-1.005-1.591-1.594-4.27-1.259c-2.68.335-5.116.67-8.049.508c-2.932-.163-11.395-2.182-18.01-8.625c-6.616-6.444-12.064-17.423-13.323-26.474c-1.258-9.051-1.34-24.97 4.606-33.18c5.946-8.209 12.32-8.292 16.085-8.13c3.775.173 11.81 2.599 13.992 10.138c2.181 7.539 1.511 12.502-1.421 16.52c-2.933 4.008-7.205 5.185-10.888 6.86c-3.684 1.674-9.547 4.525-11.14 9.974c-1.593 5.45-1.179 11.983 4.443 16.844c5.621 4.86 11.983 5.53 16.671 5.022c4.688-.507 9.306-2.679 14.583-6.95c5.276-4.272 15.504-15.16 18.853-27.986c3.348-12.816 2.426-30.746-5.946-45.327l-.012-.01C101.781 10.652 85.08-.364 64.898.01m41.906 104.322c-.674-.015-1.29.133-1.732.441c0 0-5.531 3.349-4.273 6.616c1.258 3.267 3.35 2.933 5.359 2.852c2.009-.081 4.108-2.091 4.86-3.44c.75-1.34.506-3.521-.924-5.023c-.888-.945-2.167-1.422-3.29-1.446\\\"/>\"\n\t\t},\n\t\t\"ecto-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M94.77 48.1c-.92 0-.9-.11-1.2 4.54l-.27 4.14l-.52.11c-.28.06-.95.12-1.48.13c-.53.01-1.21.07-1.5.13l-.54.11v.46c0 .25.09.55.21.67l.21.21h3.52l.05 8.89l.05 8.89c0 .49.71 1.87 1.53 2.41c1.65 1.21 4.42 1.27 6.35.36c.55-.27 1.27-.71 1.58-.99l.57-.5l-.35-.59c-.43-.74-.61-.74-1.74 0l.01-.02c-.8.48-1.71.73-2.57.7c-1.26-.05-3.14-.87-3.14-2.06l-.05-8.55l-.05-8.55h7.4v-1.72h-7.39V48.1zm-40.446 7.703c-1.556.01-3.124.363-4.554 1.078c-4.43 2.23-6.51 9.29-5.13 14.85c.14.57.59 1.668.98 2.458c.89 1.82 2.18 3.451 4.07 4.301c.73.38 1.87.81 2.53.96c2.03.46 4.27.3 6.27-.24c1.66-.47 3.27-1.27 4.17-2.06l.71-.63l-.3-.46c-.39-.6-.76-.73-1.21-.44c-2.31 1.48-3.56 1.97-5.63 2.24c-4.16.41-8.54-2.02-9.42-6.73c-.18-.79-.36-2.06-.39-2.81l-.05-1.38l8.62-.04l8.62-.04l.11-.49c.26-1.17-.34-4.14-1.17-5.86c-.79-1.62-2.06-3.01-3.75-3.7l.01-.03a10.369 10.369 0 0 0-4.486-.977m63.035.027c-1.756 0-3.513.38-5.058 1.14c-2.37 1.2-4.211 3.67-5.031 6.52c-.7 2.41-.62 6.14 0 8.58c1.2 4.16 3.94 6.78 7.83 7.48c2.57.43 5.29.14 7.59-1.09c2.32-1.26 4.07-3.9 4.84-6.73c.63-2.51.44-5.39 0-7.91v.01c-.74-2.88-2.33-5.59-5.12-6.86c-1.54-.76-3.294-1.14-5.05-1.14zm-39.275.031c-1.555.045-3.1.39-4.453 1.05a9.104 9.104 0 0 0-4.262 4.439c-.53 1.13-.899 2.54-1.139 4.02c-.28 1.74-.3 3.8.07 5.64c.52 2.55 1.43 4.49 3 6.08c2.62 2.64 5.39 2.83 9.15 2.39c1.9-.22 4.12-1.36 5.57-3.07l-.47-.49c-.6-.62-.67-.61-1.72.17h-.01c-1.2.9-2.31 1.39-3.84 1.71c-1.64.33-3.37.22-4.89-.53c-1.37-.62-2.19-1.32-3.01-2.54c-1.06-1.59-1.62-3.48-1.71-5.39c-.15-1.99-.1-4.17.6-6.08c1.09-3.25 3.23-5.09 6.46-5.56c2.42-.35 4.42.39 6.56 1.63l.66.39l.51-.6l.51-.6l-.56-.47c-1.813-1.505-4.434-2.263-7.026-2.189m39.291 1.7c.92.003 1.84.145 2.664.41c2.72.88 4.312 2.779 5.172 6.029c.61 2.31.58 4.89.09 7.22h-.012c-.59 2.52-1.589 4.29-3.389 5.43c-2.51 1.58-5.17 1.7-8 .58c-2.19-.87-3.75-2.98-4.45-5.84c-.6-2.35-.47-5.05.08-7.39c.88-3.27 2.48-5.13 5.18-6.03a8.266 8.266 0 0 1 2.665-.41zm-63.398.08a8.91 8.91 0 0 1 .562 0c4.51.13 5.82 1.87 7.14 6.66l.122 1.16H46.46c0-1.36.659-2.741 1.219-3.961c1.068-2.353 3.5-3.766 6.297-3.86z\\\"/><path fill=\\\"#77bf43\\\" d=\\\"M15.492 45.482a16.14 16.14 0 0 0-4.181.637h-.022c-1.35.39-3.9 1.652-5.84 3.692S1.161 55.31.461 59.68c-.7 4.36-.612 8.9 1.478 13.43c2.09 4.53 5.142 6.93 8.032 8.34c2.89 1.41 6.809 1.21 8.779.65c1.96-.56 2.93-1.21 3.9-1.89c.97-.68.95-1.28.8-1.58c-.15-.29-.46-.46-1.24-.36c-.78.1-1.48.19-2.33.15c-.85-.04-3.3-.63-5.21-2.5c-1.92-1.87-3.49-5.04-3.85-7.66c-.36-2.62-.39-7.23 1.33-9.6c1.72-2.38 3.56-2.4 4.66-2.35c1.09.05 3.42.75 4.05 2.93c.63 2.18.44 3.62-.41 4.78c-.85 1.16-2.09 1.5-3.15 1.99c-1.07.48-2.76 1.31-3.22 2.89c-.46 1.58-.34 3.47 1.28 4.87c1.62 1.41 3.47 1.6 4.82 1.45c1.36-.15 2.69-.78 4.22-2.01c1.53-1.24 4.49-4.39 5.46-8.1c.97-3.71.7-8.9-1.72-13.12c-1.966-3.429-6.805-6.614-12.648-6.508m12.106 30.202a.83.83 0 0 0-.498.127v-.01s-1.6.97-1.24 1.92c.36.95.97.848 1.55.818c.58-.02 1.19-.608 1.41-.988c.22-.39.15-1.021-.27-1.451a1.422 1.422 0 0 0-.952-.416\\\"/>\"\n\t\t},\n\t\t\"elasticsearch\": {\n\t\t\t\"body\": \"<path fill=\\\"#343741\\\" d=\\\"M4 64c0 5.535.777 10.879 2.098 16H84c8.836 0 16-7.164 16-16s-7.164-16-16-16H6.098A63.738 63.738 0 0 0 4 64\\\"/><path fill=\\\"#fec514\\\" d=\\\"M111.695 30.648A61.485 61.485 0 0 0 117.922 24C106.188 9.379 88.199 0 68 0C42.715 0 20.957 14.71 10.574 36H98.04a20.123 20.123 0 0 0 13.652-5.352\\\"/><path fill=\\\"#00bfb3\\\" d=\\\"M98.04 92H10.577C20.961 113.29 42.715 128 68 128c20.2 0 38.188-9.383 49.922-24a61.1 61.1 0 0 0-6.227-6.648A20.133 20.133 0 0 0 98.04 92\\\"/>\"\n\t\t},\n\t\t\"elasticsearch-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M36.309 67.871c-1.25 0-2.25-.375-2.965-1.094c-.719-.718-1.063-1.746-1.063-3.027c0-1.313.344-2.371 1-3.121c.657-.75 1.559-1.125 2.715-1.125c1.063 0 1.906.312 2.527.969c.625.656.938 1.527.938 2.683v.938h-5.402c.03.781.25 1.375.625 1.812c.375.434.968.621 1.687.621c.469 0 .938-.03 1.344-.125c.402-.093.84-.25 1.34-.433v1.402a6.247 6.247 0 0 1-1.278.438c-.437.093-.937.062-1.468.062m-.344-7.055c-.563 0-1 .188-1.313.532c-.312.343-.53.84-.593 1.527h3.687c0-.656-.156-1.184-.469-1.527c-.312-.344-.75-.532-1.312-.532m7.148 6.93h-1.715V56.352h1.715Zm7.524 0l-.344-1.125h-.063c-.37.5-.777.844-1.183 1a4.185 4.185 0 0 1-1.531.281c-.782 0-1.407-.218-1.871-.656c-.47-.437-.657-1.031-.657-1.808c0-.844.313-1.47.938-1.876c.62-.406 1.558-.656 2.84-.687l1.402-.031v-.438c0-.527-.125-.902-.371-1.152c-.25-.25-.625-.375-1.125-.375c-.406 0-.813.062-1.188.187s-.75.282-1.093.438l-.559-1.219a6.412 6.412 0 0 1 1.434-.531a6.3 6.3 0 0 1 1.468-.188c1.032 0 1.809.22 2.34.688c.531.469.781 1.156.781 2.121v5.371Zm-2.559-1.187c.625 0 1.125-.188 1.5-.532c.375-.34.559-.84.559-1.465v-.687l-1.028.031c-.812.032-1.406.157-1.78.407c-.376.25-.563.624-.563 1.124c0 .376.093.653.312.84c.219.188.563.282 1 .282m11.613-1.121c0 .777-.28 1.402-.875 1.808c-.593.406-1.402.625-2.464.625c-1.094 0-1.938-.156-2.59-.5v-1.496c.933.434 1.84.652 2.652.652c1.063 0 1.59-.312 1.59-.965c0-.218-.059-.374-.184-.5a2.64 2.64 0 0 0-.593-.437c-.282-.156-.657-.313-1.125-.5c-.938-.375-1.563-.719-1.907-1.094c-.34-.375-.496-.843-.496-1.402c0-.688.281-1.219.84-1.625c.563-.406 1.313-.563 2.281-.563c.938 0 1.84.188 2.684.594l-.563 1.281c-.875-.375-1.59-.53-2.214-.53c-.907 0-1.375.25-1.375.78c0 .25.125.465.343.653c.22.187.75.406 1.563.718c.656.25 1.152.5 1.465.72c.312.218.53.468.687.75c.219.312.281.624.281 1.03Zm4.871 1.058a4.33 4.33 0 0 0 1.25-.187v1.28c-.187.095-.437.157-.75.22a4.77 4.77 0 0 1-.937.093c-1.625 0-2.434-.875-2.434-2.558v-4.371h-1.093v-.75l1.187-.625l.59-1.715h1.063v1.808h2.312v1.313h-2.313v4.34c0 .406.094.715.313.902c.219.188.5.25.813.25Zm2.778-8.988c0-.313.094-.531.25-.719c.156-.187.406-.25.719-.25c.312 0 .53.094.718.25c.188.156.25.406.25.719c0 .281-.093.527-.25.683c-.156.157-.406.25-.718.25c-.313 0-.563-.093-.72-.25c-.155-.156-.25-.402-.25-.683Zm1.844 10.238h-1.72V59.66h1.72Zm5.71.125c-1.214 0-2.152-.344-2.777-1.062c-.625-.72-.969-1.746-.969-3.09c0-1.375.344-2.403 1-3.153c.657-.75 1.625-1.093 2.872-1.093c.843 0 1.625.156 2.312.468l-.531 1.375c-.719-.28-1.313-.437-1.813-.437c-1.402 0-2.09.937-2.09 2.777c0 .907.188 1.594.532 2.063c.343.465.87.683 1.527.683c.781 0 1.5-.187 2.188-.558v1.496a2.761 2.761 0 0 1-1 .375c-.375.062-.75.156-1.25.156Zm9.586-2.433c0 .777-.28 1.402-.875 1.808c-.593.406-1.406.625-2.464.625c-1.094 0-1.938-.156-2.594-.5v-1.496c.937.434 1.844.652 2.656.652c1.059 0 1.59-.312 1.59-.965c0-.218-.063-.374-.188-.5a2.64 2.64 0 0 0-.593-.437c-.278-.156-.653-.313-1.121-.5c-.938-.375-1.563-.719-1.907-1.094c-.343-.375-.5-.843-.5-1.402c0-.688.282-1.219.844-1.625c.563-.406 1.313-.563 2.281-.563c.934 0 1.84.188 2.684.594l-.563 1.281c-.875-.375-1.593-.53-2.214-.53c-.907 0-1.375.25-1.375.78c0 .25.125.465.343.653c.22.187.75.406 1.559.718c.656.25 1.156.5 1.469.72c.312.218.531.468.687.75c.219.312.281.624.281 1.03Zm5.403 2.433c-1.25 0-2.25-.375-2.969-1.094c-.719-.718-1.059-1.746-1.059-3.027c0-1.313.34-2.371.997-3.121c.656-.75 1.562-1.125 2.718-1.125c1.059 0 1.903.312 2.528.969c.625.656.937 1.527.937 2.683v.938h-5.402c.031.781.25 1.375.625 1.812c.375.434.969.621 1.687.621c.465 0 .934-.03 1.34-.125c.406-.093.844-.25 1.344-.433v1.402a6.202 6.202 0 0 1-1.281.438c-.438.093-.907.062-1.465.062m-.313-7.055c-.562 0-1 .188-1.312.532c-.313.343-.531.84-.594 1.527h3.684c0-.656-.157-1.184-.47-1.527c-.312-.344-.78-.532-1.308-.532m10.457 6.93l-.343-1.125h-.063c-.375.5-.781.844-1.187 1a4.162 4.162 0 0 1-1.528.281c-.781 0-1.406-.218-1.875-.656c-.469-.437-.656-1.031-.656-1.808c0-.844.313-1.47.938-1.876c.624-.406 1.562-.656 2.84-.687l1.406-.031v-.438c0-.527-.125-.902-.375-1.152c-.25-.25-.625-.375-1.125-.375a3.77 3.77 0 0 0-1.184.187c-.375.125-.75.282-1.094.438l-.562-1.219a6.518 6.518 0 0 1 1.437-.531c.531-.125 1-.188 1.465-.188c1.031 0 1.813.22 2.344.688c.531.469.781 1.156.781 2.121v5.371ZM97.47 66.56c.62 0 1.12-.188 1.496-.532c.375-.34.562-.84.562-1.465v-.687l-1.03.031c-.81.032-1.403.157-1.778.407c-.375.25-.563.624-.563 1.124c0 .376.094.653.313.84c.219.188.594.282 1 .282m10.3-7.055c.344 0 .626.031.844.062l-.156 1.594c-.25-.062-.5-.094-.75-.094c-.687 0-1.25.22-1.687.688c-.434.465-.653 1.027-.653 1.746v4.246h-1.719V59.66h1.344l.219 1.438h.094c.28-.47.625-.875 1.058-1.157c.438-.28.907-.437 1.407-.437Zm5.622 8.367c-1.22 0-2.157-.344-2.782-1.062c-.62-.72-.964-1.746-.964-3.09c0-1.375.343-2.403.996-3.153c.656-.75 1.625-1.093 2.875-1.093c.84 0 1.62.156 2.308.468l-.531 1.375c-.719-.28-1.309-.437-1.809-.437c-1.406 0-2.093.937-2.093 2.777c0 .907.187 1.594.53 2.063c.345.465.876.683 1.532.683c.777 0 1.496-.187 2.184-.558v1.496a2.761 2.761 0 0 1-1 .375c-.375.062-.746.156-1.246.156m11.27-.125h-1.72V62.75c0-.625-.125-1.09-.375-1.402c-.25-.313-.652-.47-1.183-.47c-.719 0-1.25.22-1.594.657c-.344.438-.5 1.153-.5 2.153v4.058h-1.715V56.352h1.715v2.902c0 .469-.031.969-.094 1.5h.125c.25-.375.563-.688.97-.906c.405-.22.905-.313 1.468-.313c1.965 0 2.933 1 2.933 2.965v5.246Zm0 0\\\"/><path fill=\\\"#343741\\\" d=\\\"M3.621 60.41a12.354 12.354 0 0 0-.562 3.746c0 1.313.187 2.559.562 3.746h10.086c.031-.156.094-.312.125-.437c-.031.156-.094.312-.125.437h6.523c2.06 0 3.715-1.687 3.715-3.746c0-2.062-1.656-3.746-3.715-3.746Zm10.613 4.715\\\"/><path fill=\\\"#00bfb3\\\" d=\\\"M4.09 69.152a12.335 12.335 0 0 0 4.574 5.422l-.016.008a12.341 12.341 0 0 0 6.868 2.063c4.34 0 8.148-2.22 10.398-5.56a6.384 6.384 0 0 0-4.559-1.933Zm0 0\\\"/><path fill=\\\"#fec514\\\" d=\\\"M15.516 51.668c-2.528 0-4.903.75-6.868 2.062c-2 1.31-3.59 3.215-4.59 5.43h9.149a12.522 12.522 0 0 0-.844-1.59a8.586 8.586 0 0 0-.586-.91c.22.293.426.59.618.91c.312.496.593 1.028.843 1.59h8.117c1.778 0 3.403-.75 4.56-1.933c-2.25-3.34-6.06-5.559-10.4-5.559Zm-5.434 3.152c.219.188.438.407.656.625c-.218-.218-.437-.406-.656-.625m0 0\\\"/>\"\n\t\t},\n\t\t\"electron\": {\n\t\t\t\"body\": \"<g fill=\\\"#47848f\\\"><path d=\\\"M49.07 32.66c-14.37-2.62-25.72.12-30.25 8c-3.38 5.85-2.41 13.61 2.34 21.9a1.47 1.47 0 0 0 2.56-1.47c-4.28-7.47-5.12-14.17-2.35-19c3.76-6.51 13.89-9 27.17-6.54a1.47 1.47 0 1 0 .53-2.9zM28.63 72.61a92.2 92.2 0 0 0 22 17.34c20.84 12 43 15.25 54 7.79a1.47 1.47 0 0 0-1.66-2.43C93.11 102 72 98.92 52.07 87.39a89.27 89.27 0 0 1-21.26-16.77a1.47 1.47 0 0 0-2.18 2z\\\"/><path d=\\\"M101.06 70.81c9.41-11.11 12.69-22.29 8.17-30.11c-3.32-5.76-10.35-8.8-19.69-8.92a1.47 1.47 0 0 0 0 2.95c8.4.11 14.45 2.73 17.18 7.45c3.75 6.5.82 16.47-7.87 26.74a1.47 1.47 0 1 0 2.25 1.9zM76.89 33.15a92 92 0 0 0-26.25 10.4C29.13 56 15.09 74.29 17 87.57a1.47 1.47 0 0 0 3-.43C18.23 75.35 31.53 58 52.11 46.11A89.07 89.07 0 0 1 77.51 36a1.47 1.47 0 1 0-.62-2.88z\\\"/><path d=\\\"M42 96.78C47 110.51 55 119 64.05 119c6.6 0 12.7-4.5 17.46-12.42A1.47 1.47 0 1 0 79 105c-4.28 7.12-9.53 11-14.94 11c-7.52 0-14.69-7.54-19.24-20.24a1.47 1.47 0 0 0-2.77 1zm45-2.69a92.5 92.5 0 0 0 3.91-27.3c0-24.41-8.54-45.44-20.71-50.85a1.47 1.47 0 0 0-1.2 2.7c10.85 4.82 19 24.78 19 48.15a89.57 89.57 0 0 1-3.78 26.42a1.47 1.47 0 0 0 2.81.88zm27.71-1.44a7.05 7.05 0 1 0-7.05 7.05a7.05 7.05 0 0 0 7.05-7.05m-2.95 0a4.1 4.1 0 1 1-4.1-4.1a4.1 4.1 0 0 1 4.1 4.1M20.34 99.7a7.05 7.05 0 1 0-7.05-7.05a7.05 7.05 0 0 0 7.05 7.05m0-2.95a4.1 4.1 0 1 1 4.1-4.1a4.1 4.1 0 0 1-4.1 4.1\\\"/><path d=\\\"M64.05 23.13A7.05 7.05 0 1 0 57 16.08a7.05 7.05 0 0 0 7.05 7.05m0-2.95a4.1 4.1 0 1 1 4.1-4.1a4.1 4.1 0 0 1-4.1 4.1m1.08 51.59A5.1 5.1 0 1 1 69 65.71a5.1 5.1 0 0 1-3.87 6.06\\\"/></g>\"\n\t\t},\n\t\t\"electron-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#47848f\\\"><path d=\\\"M29 69.59h6.65a.35.35 0 1 0 0-.7h-6.26V64.8h5.55a.35.35 0 1 0 0-.7h-5.55v-4h6.2a.35.35 0 1 0 0-.7H29a.39.39 0 0 0-.38.38v9.43a.39.39 0 0 0 .38.38m11.62-.38a.39.39 0 0 0 .38.38h6.07a.35.35 0 0 0 0-.7h-5.68v-9.17a.38.38 0 0 0-.76 0zm11.64.38h6.65a.35.35 0 1 0 0-.7h-6.27V64.8h5.55a.35.35 0 1 0 0-.7h-5.55v-4h6.2a.35.35 0 0 0 0-.7h-6.58a.39.39 0 0 0-.38.38v9.43a.39.39 0 0 0 .38.38m16.24.17a5.28 5.28 0 0 0 3.86-1.59a.37.37 0 0 0 .12-.26a.38.38 0 0 0-.36-.36a.37.37 0 0 0-.26.12a4.49 4.49 0 0 1-3.32 1.41a4.39 4.39 0 0 1-4.31-4.59a4.36 4.36 0 0 1 4.29-4.56a4.55 4.55 0 0 1 3.25 1.32a.39.39 0 0 0 .26.1a.4.4 0 0 0 .39-.38a.44.44 0 0 0-.15-.31a5.32 5.32 0 0 0-3.74-1.43a5.12 5.12 0 0 0-5.09 5.27a5.06 5.06 0 0 0 5.07 5.24zm11.2-.49a.38.38 0 0 0 .76 0V60.1h3.26a.35.35 0 1 0 0-.7h-7.28a.35.35 0 1 0 0 .7h3.26zm8.85 0a.38.38 0 0 0 .76 0v-3.9h3.33l3.13 4.08a.42.42 0 0 0 .33.2a.41.41 0 0 0 .39-.39a.42.42 0 0 0-.12-.26l-2.9-3.76c1.72-.23 3-1.21 3-2.91a2.69 2.69 0 0 0-.77-1.89a4 4 0 0 0-2.87-1h-3.9a.39.39 0 0 0-.38.38zm.76-4.59V60.1h3.48c1.85 0 2.93.86 2.93 2.23c0 1.47-1.27 2.33-3 2.33zM106 69.76a5.13 5.13 0 0 0 5.14-5.27a5.13 5.13 0 1 0-10.25 0a5.08 5.08 0 0 0 5.11 5.27m0-.68a4.41 4.41 0 0 1-4.35-4.59a4.36 4.36 0 0 1 4.35-4.58a4.41 4.41 0 0 1 4.35 4.59a4.36 4.36 0 0 1-4.35 4.58m9.93.2a.36.36 0 0 0 .73 0V60.5l7 8.88a.52.52 0 0 0 .38.25h.06a.31.31 0 0 0 .31-.32V59.7a.36.36 0 0 0-.73 0v8.59l-6.87-8.72a.47.47 0 0 0-.38-.22h-.12a.39.39 0 0 0-.38.38zM9.58 58.75c-2.41-.44-4.31 0-5.07 1.33a3.67 3.67 0 0 0 .39 3.67a.25.25 0 0 0 .43-.25a3.21 3.21 0 0 1-.39-3.18c.63-1.09 2.33-1.5 4.55-1.09a.25.25 0 0 0 .09-.49zm-3.43 6.69a15.44 15.44 0 0 0 3.68 2.9c3.49 2 7.21 2.55 9 1.31a.25.25 0 0 0-.28-.41c-1.64 1.12-5.17.61-8.51-1.32a15 15 0 0 1-3.56-2.81a.25.25 0 0 0-.36.33z\\\"/><path d=\\\"M18.29 65.14c1.58-1.86 2.13-3.73 1.37-5a3.63 3.63 0 0 0-3.3-1.49a.25.25 0 0 0 0 .49a3.17 3.17 0 0 1 2.88 1.25c.63 1.09.14 2.76-1.32 4.48a.25.25 0 1 0 .38.32zm-4-6.31a15.41 15.41 0 0 0-4.4 1.74c-3.6 2.08-6 5.15-5.63 7.37a.25.25 0 0 0 .49-.07C4.41 65.9 6.64 63 10.09 61a14.92 14.92 0 0 1 4.25-1.69a.25.25 0 1 0-.1-.48z\\\"/><path d=\\\"M8.4 69.49c.82 2.3 2.17 3.72 3.69 3.72A3.61 3.61 0 0 0 15 71.13a.25.25 0 1 0-.42-.25a3.15 3.15 0 0 1-2.5 1.84c-1.26 0-2.46-1.26-3.22-3.39a.25.25 0 0 0-.46.17zm7.52-.49a15.49 15.49 0 0 0 .66-4.57c0-4.09-1.43-7.61-3.47-8.52a.25.25 0 0 0-.2.45c1.82.81 3.18 4.15 3.18 8.06a15 15 0 0 1-.63 4.43a.25.25 0 0 0 .47.15zm4.65-.2a1.18 1.18 0 1 0-1.18 1.2a1.18 1.18 0 0 0 1.18-1.18zm-.49 0a.69.69 0 1 1-.69-.69a.69.69 0 0 1 .69.69M4.77 70a1.18 1.18 0 1 0-1.18-1.2A1.18 1.18 0 0 0 4.77 70m0-.49a.69.69 0 1 1 .69-.69a.69.69 0 0 1-.69.69\\\"/><path d=\\\"M12.09 57.16A1.18 1.18 0 1 0 10.91 56a1.18 1.18 0 0 0 1.18 1.18zm0-.49a.69.69 0 1 1 .69-.69a.69.69 0 0 1-.69.69m.18 8.63a.85.85 0 1 1 .65-1a.85.85 0 0 1-.65 1\\\"/></g>\"\n\t\t},\n\t\t\"eleventy\": {\n\t\t\t\"body\": \"<path fill=\\\"#1F1F1F\\\" d=\\\"M18 0h92v128H18z\\\"/><path fill=\\\"#FFF\\\" d=\\\"M55.3 36.3h.4c1.1 0 1.5.9 1.5 2.3v41.8c0 1.8-.4 3-1.6 3l-4.8-.1c-1.2 0-1.6-1-1.6-3V45.5l-2.1.5c-1 0-1.5-.8-1.5-2.2v-3c0-1.2.4-2 1.4-2.2l8.3-2.2zm16 36.1l.1 3l.6 1.3l.6.6l.8.1h2.2c1 0 1.7.8 1.7 2v1.9c0 1.2-.6 2-1.8 2h-3.2l-2.3-.1c-.7-.2-1.4-.5-2.2-1a5.7 5.7 0 0 1-2-1.9c-.4-.8-.8-1.9-1-3.2c-.4-1.4-.5-3-.5-4.8v-16h-1.5c-1.1 0-1.6-1-1.6-2.4v-1.7c0-1.4.5-2.3 1.6-2.3h1.5v-.1l.6-12.3c0-1.5.5-2.5 1.6-2.5h3.1c1.2 0 1.6 1 1.6 2.5v12.3h3.6c1.1 0 1.6 1 1.6 2.4V54c0 1.4-.5 2.3-1.6 2.3h-3.6v16.2zm9.4 15.7c0-2 .3-3.2 1.5-3.2c.2 0 .4 0 1.4.4l1.1.3l.2-.1l.4-.7c.3-.6.4-1.6.4-3l-.6-3.3L79 52.7v-.9c0-1.2.3-2 1.2-2H84c.5 0 1 .3 1.3.6c.3.4.5.9.6 1.6l3.4 18l2.6-17.8c.1-.8.3-1.3.6-1.7c.3-.4.8-.6 1.3-.6h2.6c1 0 1.4.8 1.4 2l-.1.8L92 82.2c-.5 2.5-1 4.4-1.5 5.7a6.6 6.6 0 0 1-2 3c-.9.6-1.9.9-3.1.9h-.3c-2 0-3.3-.6-4.1-1.7c-.3-.4-.4-1-.4-2zM31.3 38.8l8.2-2.1h.5c1 0 1.4.8 1.4 2.2v41.9c0 1.8-.4 2.9-1.6 2.9h-4.7c-1.2 0-1.6-1.1-1.6-3v-35l-2 .6c-1.2 0-1.6-.9-1.6-2.2v-3c0-1.2.4-2 1.4-2.3\\\"/>\"\n\t\t},\n\t\t\"elixir\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconElixir0\\\" x1=\\\"835.592\\\" x2=\\\"821.211\\\" y1=\\\"-36.546\\\" y2=\\\"553.414\\\" gradientTransform=\\\"matrix(.1297 0 0 .2 -46.03 17.198)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d9d8dc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".385\\\"/></linearGradient><path fill=\\\"url(#deviconElixir0)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64.4.5C36.7 13.9 1.9 83.4 30.9 113.9c26.8 33.5 85.4 1.3 68.4-40.5c-21.5-36-35-37.9-34.9-72.9\\\" clip-rule=\\\"evenodd\\\"/><linearGradient id=\\\"deviconElixir1\\\" x1=\\\"942.357\\\" x2=\\\"824.692\\\" y1=\\\"-40.593\\\" y2=\\\"472.243\\\" gradientTransform=\\\"matrix(.1142 0 0 .2271 -47.053 17.229)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8d67af\\\" stop-opacity=\\\".672\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#9f8daf\\\"/></linearGradient><path fill=\\\"url(#deviconElixir1)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64.4.2C36.8 13.6 1.9 82.9 31 113.5c10.7 12.4 28 16.5 37.7 9.1c26.4-18.8 7.4-53.1 10.4-78.5C68.1 33.9 64.2 11.3 64.4.2\\\" clip-rule=\\\"evenodd\\\"/><linearGradient id=\\\"deviconElixir2\\\" x1=\\\"924.646\\\" x2=\\\"924.646\\\" y1=\\\"120.513\\\" y2=\\\"505.851\\\" gradientTransform=\\\"matrix(.1227 0 0 .2115 -46.493 17.206)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#26053d\\\" stop-opacity=\\\".762\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b7b4b4\\\" stop-opacity=\\\".278\\\"/></linearGradient><path fill=\\\"url(#deviconElixir2)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M56.7 4.3c-22.3 15.9-28.2 75-24.1 94.2c8.2 48.1 75.2 28.3 69.6-16.5c-6-29.2-48.8-39.2-45.5-77.7\\\" clip-rule=\\\"evenodd\\\"/><linearGradient id=\\\"deviconElixir3\\\" x1=\\\"428.034\\\" x2=\\\"607.325\\\" y1=\\\"198.448\\\" y2=\\\"559.255\\\" gradientTransform=\\\"matrix(.1848 0 0 .1404 -42.394 17.138)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#91739f\\\" stop-opacity=\\\".46\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#32054f\\\" stop-opacity=\\\".54\\\"/></linearGradient><path fill=\\\"url(#deviconElixir3)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M78.8 49.8c10.4 13.4 12.7 22.6 6.8 27.9c-27.7 19.4-61.3 7.4-54-37.3C22.1 63 4.5 96.8 43.3 101.6c20.8 3.6 54 2 58.9-16.1c-.2-15.9-10.8-22.9-23.4-35.7\\\" clip-rule=\\\"evenodd\\\"/><linearGradient id=\\\"deviconElixir4\\\" x1=\\\"907.895\\\" x2=\\\"590.242\\\" y1=\\\"540.636\\\" y2=\\\"201.281\\\" gradientTransform=\\\"matrix(.1418 0 0 .1829 -45.23 17.18)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#463d49\\\" stop-opacity=\\\".331\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#340a50\\\" stop-opacity=\\\".821\\\"/></linearGradient><path fill=\\\"url(#deviconElixir4)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M38.1 36.4c-2.9 21.2 35.1 77.9 58.3 71c-17.7 35.6-56.9-21.2-64-41.7c1.5-11 2.2-16.4 5.7-29.3\\\" clip-rule=\\\"evenodd\\\"/><linearGradient id=\\\"deviconElixir5\\\" x1=\\\"1102.297\\\" x2=\\\"1008.071\\\" y1=\\\"100.542\\\" y2=\\\"431.648\\\" gradientTransform=\\\"matrix(.106 0 0 .2448 -47.595 17.242)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#715383\\\" stop-opacity=\\\".145\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f4f4f4\\\" stop-opacity=\\\".234\\\"/></linearGradient><path fill=\\\"url(#deviconElixir5)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M60.4 49.7c.8 7.9 3.9 20.5 0 28.8S38.7 102 43.6 115.3c11.4 24.8 37.1-4.4 36.9-19c1.1-11.8-6.6-38.7-1.8-52.5L76.5 41l-13.6-4c-2.2 3.2-3 7.5-2.5 12.7\\\" clip-rule=\\\"evenodd\\\"/><linearGradient id=\\\"deviconElixir6\\\" x1=\\\"1354.664\\\" x2=\\\"1059.233\\\" y1=\\\"140.06\\\" y2=\\\"84.466\\\" gradientTransform=\\\"matrix(.09173 0 0 .2828 -48.536 17.28)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#a5a1a8\\\" stop-opacity=\\\".356\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#370c50\\\" stop-opacity=\\\".582\\\"/></linearGradient><path fill=\\\"url(#deviconElixir6)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.3 10.8C36 27.4 48 53.4 49.3 81.6l19.1-55.4c-1.4-5.7-2.3-9.5-3.1-15.4\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#330A4C\\\" fill-opacity=\\\".316\\\" fill-rule=\\\"evenodd\\\" d=\\\"M68.3 26.1c-14.8 11.7-14.1 31.3-18.6 54c8.1-21.3 4.1-38.2 18.6-54\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#FFF\\\" fill-rule=\\\"evenodd\\\" d=\\\"M45.8 119.7c8 1.1 12.1 2.2 12.5 3c.3 4.2-11.1 1.2-12.5-3\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EDEDED\\\" fill-opacity=\\\".603\\\" fill-rule=\\\"evenodd\\\" d=\\\"M49.8 10.8c-6.9 7.7-14.4 21.8-18.2 29.7c-1 6.5-.5 15.7.6 23.5c.9-18.2 7.5-39.2 17.6-53.2\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"elixir-wordmark\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconElixirWordmark0\\\" x1=\\\"24.682\\\" x2=\\\"23.615\\\" y1=\\\"33.035\\\" y2=\\\"100.535\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d9d8dc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".385\\\"/></linearGradient><path fill=\\\"url(#deviconElixirWordmark0)\\\" d=\\\"M25.8 27.7C10 35.3-9.9 75.1 6.7 92.5c15.3 19.2 48.9.7 39.1-23.2c-12.3-20.5-20-21.6-20-41.6\\\" class=\\\"elixir-original-wordmark-M\\\"/><linearGradient id=\\\"deviconElixirWordmark1\\\" x1=\\\"1137.202\\\" x2=\\\"1069.889\\\" y1=\\\"-5.548\\\" y2=\\\"287.831\\\" gradientTransform=\\\"matrix(.1142 0 0 .2271 -106.224 33.229)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8d67af\\\" stop-opacity=\\\".672\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#9f8daf\\\"/></linearGradient><path fill=\\\"url(#deviconElixirWordmark1)\\\" d=\\\"M25.8 27.5C10 35.2-9.9 74.8 6.7 92.3c6.1 7.1 16 9.4 21.6 5.2c15.1-10.8 4.2-30.4 5.9-44.9c-6.3-5.8-8.5-18.8-8.4-25.1\\\" class=\\\"elixir-original-wordmark-M\\\"/><linearGradient id=\\\"deviconElixirWordmark2\\\" x1=\\\"27.26\\\" x2=\\\"27.26\\\" y1=\\\"51.801\\\" y2=\\\"98.425\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#26053d\\\" stop-opacity=\\\".762\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b7b4b4\\\" stop-opacity=\\\".278\\\"/></linearGradient><path fill=\\\"url(#deviconElixirWordmark2)\\\" d=\\\"M21.4 29.8C8.7 38.9 5.3 72.7 7.6 83.7c4.7 27.5 43 16.2 39.8-9.4c-3.4-16.7-27.9-22.4-26-44.5\\\" class=\\\"elixir-original-wordmark-M\\\"/><linearGradient id=\\\"deviconElixirWordmark3\\\" x1=\\\"578.113\\\" x2=\\\"680.68\\\" y1=\\\"142.292\\\" y2=\\\"348.7\\\" gradientTransform=\\\"matrix(.1848 0 0 .1404 -96.85 33.137)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#91739f\\\" stop-opacity=\\\".46\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#32054f\\\" stop-opacity=\\\".54\\\"/></linearGradient><path fill=\\\"url(#deviconElixirWordmark3)\\\" d=\\\"M34.1 55.9c5.9 7.7 7.3 12.9 3.9 16c-15.9 11-35.1 4.2-30.9-21.4c-5.4 12.9-15.5 32.3 6.7 35c11.9 2.1 30.9 1.1 33.7-9.2c-.2-9.1-6.2-13.1-13.4-20.4\\\" class=\\\"elixir-original-wordmark-M\\\"/><linearGradient id=\\\"deviconElixirWordmark4\\\" x1=\\\"982.624\\\" x2=\\\"800.904\\\" y1=\\\"331.094\\\" y2=\\\"136.958\\\" gradientTransform=\\\"matrix(.1418 0 0 .1829 -102.558 33.18)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#463d49\\\" stop-opacity=\\\".331\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#340a50\\\" stop-opacity=\\\".821\\\"/></linearGradient><path fill=\\\"url(#deviconElixirWordmark4)\\\" d=\\\"M10.8 48.2C9.1 60.3 30.9 92.8 44.1 88.8C34 109.2 11.6 76.7 7.5 65c.9-6.3 1.3-9.4 3.3-16.8\\\" class=\\\"elixir-original-wordmark-M\\\"/><linearGradient id=\\\"deviconElixirWordmark5\\\" x1=\\\"1281.778\\\" x2=\\\"1227.874\\\" y1=\\\"73.753\\\" y2=\\\"263.17\\\" gradientTransform=\\\"matrix(.106 0 0 .2448 -107.314 33.242)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#715383\\\" stop-opacity=\\\".145\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f4f4f4\\\" stop-opacity=\\\".234\\\"/></linearGradient><path fill=\\\"url(#deviconElixirWordmark5)\\\" d=\\\"M23.5 55.8c.5 4.5 2.2 11.7 0 16.5c-2.2 4.7-12.4 13.4-9.6 21.1c6.5 14.2 21.2-2.5 21.1-10.9c.6-6.8-3.8-22.1-1-30l-1.3-1.6l-7.7-2.4c-1.3 1.9-1.8 4.3-1.5 7.3\\\" class=\\\"elixir-original-wordmark-M\\\"/><linearGradient id=\\\"deviconElixirWordmark6\\\" x1=\\\"1542.574\\\" x2=\\\"1373.566\\\" y1=\\\"94.466\\\" y2=\\\"62.662\\\" gradientTransform=\\\"matrix(.09173 0 0 .2828 -109.209 33.28)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#a5a1a8\\\" stop-opacity=\\\".356\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#370c50\\\" stop-opacity=\\\".582\\\"/></linearGradient><g class=\\\"elixir-original-wordmark-M\\\"><path fill=\\\"url(#deviconElixirWordmark6)\\\" d=\\\"M26.3 33.6C9.5 43.1 16.4 58 17.1 74.1L28 42.4c-.7-3.3-1.2-5.5-1.7-8.8\\\"/><path fill=\\\"#330a4c\\\" fill-opacity=\\\".316\\\" d=\\\"M28 42.3c-8.4 6.7-8 17.9-10.6 30.9C22 61 19.8 51.3 28 42.3\\\"/><path fill=\\\"#fff\\\" d=\\\"M15.2 95.9c4.6.6 6.9 1.3 7.2 1.7c.1 2.4-6.4.7-7.2-1.7\\\"/><path fill=\\\"#ededed\\\" fill-opacity=\\\".603\\\" d=\\\"M17.5 33.6C13.5 38 9.2 46 7.1 50.5c-.6 3.7-.3 9 .3 13.4c.5-10.3 4.3-22.3 10.1-30.3\\\"/></g><path fill=\\\"#333\\\" d=\\\"M63.7 72c.1 4.1 2.6 5.8 5.7 5.8c2.2 0 3.5-.4 4.6-.9l.5 2.2c-1.1.5-2.9 1.1-5.6 1.1c-5.1 0-8.2-3.4-8.2-8.4s3-8.9 7.8-8.9c5.5 0 6.9 4.7 6.9 7.8c0 .6 0 1.1-.1 1.4H63.7zm8.9-2.2c0-1.9-.8-4.9-4.2-4.9c-3.1 0-4.4 2.8-4.6 4.9zm6.6-14.4h3v24.4h-3zm11.5 3.1c0 1-.7 1.9-1.9 1.9c-1.1 0-1.8-.8-1.8-1.9s.8-1.9 1.9-1.9c1 0 1.8.8 1.8 1.9m-3.4 21.3V63.1h3v16.6h-3zm9.5-16.7l2.4 3.6c.7.9 1.2 1.8 1.7 2.7h.1c.5-1 1.1-1.8 1.7-2.7l2.3-3.5h3.3l-5.7 8l5.8 8.6H105l-2.5-3.7c-.7-1-1.2-1.9-1.8-2.9h-.1c-.5 1-1.1 1.9-1.8 2.9l-2.4 3.7h-3.3l5.9-8.5l-5.6-8.1h3.4zm17.8-4.6c0 1-.7 1.9-1.9 1.9c-1.1 0-1.8-.8-1.8-1.9s.8-1.9 1.9-1.9s1.8.8 1.8 1.9m-3.4 21.3V63.1h3v16.6h-3zm8.1-11.5l-.1-5.2h2.6l.1 3.3h.1c.8-2.2 2.6-3.6 4.6-3.6c.3 0 .5 0 .8.1v2.8c-.3-.1-.6-.1-1-.1c-2.1 0-3.6 1.6-4 3.8c-.1.4-.1.9-.1 1.4v8.9h-3z\\\"/>\"\n\t\t},\n\t\t\"elm\": {\n\t\t\t\"body\": \"<path fill=\\\"#efa500\\\" d=\\\"m64 60.74l25.65-25.65h-51.3z\\\"/><path fill=\\\"#8dd737\\\" d=\\\"m7.91 4.65l25.83 25.84h56.17L64.07 4.65zm59.353 59.343l28.08-28.08l27.951 27.953l-28.08 28.079z\\\"/><path fill=\\\"#60b5cc\\\" d=\\\"M123.35 57.42V4.65H70.58z\\\"/><path fill=\\\"#34495e\\\" d=\\\"M60.74 64L4.65 7.91V120.1z\\\"/><path fill=\\\"#efa500\\\" d=\\\"m98.47 95.21l24.88 24.89V70.33z\\\"/><path fill=\\\"#60b5cc\\\" d=\\\"M64 67.26L7.91 123.35h112.18z\\\"/>\"\n\t\t},\n\t\t\"elm-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#efa500\\\" d=\\\"m27.29 62.59l11.15-11.15h-22.3z\\\"/><path fill=\\\"#8dd737\\\" d=\\\"m2.92 38.21l11.22 11.23h24.41L27.32 38.21zm25.784 25.785l12.204-12.204l12.149 12.148l-12.205 12.204z\\\"/><path fill=\\\"#60b5cc\\\" d=\\\"M53.08 61.14V38.21H30.15z\\\"/><path fill=\\\"#34495e\\\" d=\\\"M25.87 64L1.5 39.63v48.74z\\\"/><path fill=\\\"#efa500\\\" d=\\\"m42.27 77.56l10.81 10.81V66.75z\\\"/><path fill=\\\"#60b5cc\\\" d=\\\"M27.29 65.42L2.92 89.79h48.74z\\\"/><path fill=\\\"#34495e\\\" d=\\\"M62.74 50.22h16.7v3.09h-13v9.1h11v3.14h-11v10.52h13.44v3.13H62.74zm22.84-2.48h3.62v27.4c0 1.15.49 1.59 1 1.59a3.08 3.08 0 0 0 .8-.09l.49 2.74a4.89 4.89 0 0 1-2.08.35c-2.74 0-3.84-1.72-3.84-4.86zm11.27 9.99h3l.31 3.09h.13c1.86-2 4.11-3.62 6.67-3.62c3.27 0 5 1.55 5.92 4.11c2.25-2.43 4.46-4.11 7.07-4.11c4.42 0 6.54 2.92 6.54 8.39V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74c-1.68 0-3.4 1.11-5.39 3.31V79.2h-3.62V66.08c0-4-1.28-5.74-4-5.74c-1.59 0-3.4 1.11-5.39 3.31V79.2h-3.62z\\\"/>\"\n\t\t},\n\t\t\"emacs\": {\n\t\t\t\"body\": \"<path fill=\\\"#421F5F\\\" d=\\\"M60.613 8.012a56.04 56.04 0 0 0-27.34 9.062c-3.437 2.262-5.847 4.238-8.91 7.29c-4.652 4.66-8.011 9.363-10.863 15.199c-7.937 16.312-7.375 35.937 1.488 51.75c2.598 4.624 5.512 8.46 9.375 12.324c3.063 3.05 5.473 5.039 8.899 7.277a56.014 56.014 0 0 0 61.476 0c3.426-2.238 5.836-4.227 8.899-7.277c3.863-3.864 6.777-7.7 9.375-12.324c8.863-15.813 9.426-35.438 1.488-51.75c-2.852-5.836-6.21-10.54-10.863-15.2c-3.063-3.05-5.473-5.027-8.91-7.289a55.965 55.965 0 0 0-34.114-9.062m27.325 21.914c4.574 1.187 7.55 4.523 7.773 8.699c.187 3.336-1.563 5.96-4.625 6.95c-.848.277-1.262.323-2.398.323c-1.665.016-2.551-.109-6.665-.898c-3.875-.75-5.41-.96-8.46-1.125c-7.461-.398-11.461.262-12.387 2.023c-.477.914.086 2.204 1.648 3.852c.84.863 3.2 2.738 11.176 8.836c5.574 4.25 10.05 7.738 9.96 7.75c-.073.027-4.698.203-10.272.414c-10.227.387-11.239.46-13.551 1.012c-4.285 1.011-8.364 2.925-10.035 4.715c-2.227 2.375-1.551 4.734 2.023 7.136c3.5 2.336 9.313 4.301 19.688 6.637c9.726 2.188 14.062 3.602 16.949 5.477c.988.648 1.55 1.21 1.812 1.859c.688 1.613-1.836 3.176-6.597 4.102c-3.188.613-5.29.75-11.727.75c-10.336-.012-20.613-.836-26.46-2.137c-2.767-.614-2.704-.664.71-.59c6.676.152 23.324-.586 26.05-1.148c1.575-.325 2.063-.864 1.337-1.477c-.801-.672-2.098-.984-4.95-1.211c-5.55-.437-11.726-1.852-17.148-3.95C43.637 84.79 37.352 80.314 34 75.274c-3.602-5.41-1.562-10.023 5.7-12.937c4.788-1.922 11.76-3 18.175-2.785c4.836.148 8.074.71 11.75 2.035c.102.039-.512-.348-1.375-.86c-10.324-6.124-16.187-11.5-19.312-17.714c-.626-1.25-1.063-2.723-1.063-3.575c0-1.437.8-2.648 2.176-3.3c1.363-.649 2.472-.825 5.136-.825c2.637.012 3.239.075 8.188.876c4.512.726 7.398 1.136 9.625 1.363c4.773.5 9.602.562 10.96.148c.79-.25 1.29-.785 1.29-1.398c0-1.664-4.96-3.54-13.875-5.239c-3.54-.675-3.914-.789-2.75-.812c.45-.012 3.762-.176 7.375-.375c7.938-.437 10.113-.426 11.938.05m0 0\\\"/>\"\n\t\t},\n\t\t\"embeddedc\": {\n\t\t\t\"body\": \"<g fill=\\\"#b3b3b3\\\" transform=\\\"matrix(1 0 0 .8 0 27.184)\\\"><g transform=\\\"translate(112)\\\"><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"86\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"41\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"18.5\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"-4\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"63.5\\\" ry=\\\"2\\\"/></g><g transform=\\\"matrix(0 1.25 -.8 0 100.82 106.02)\\\"><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"86\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"41\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"18.5\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"-4\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"63.5\\\" ry=\\\"2\\\"/></g><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"86\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"41\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"18.5\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"-4\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"63.5\\\" ry=\\\"2\\\"/><g transform=\\\"matrix(0 1.25 -.8 0 100.82 -33.979)\\\"><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"86\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"41\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"18.5\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"-4\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"63.5\\\" ry=\\\"2\\\"/></g><rect width=\\\"100\\\" height=\\\"126\\\" x=\\\"14\\\" y=\\\"-17.5\\\" fill=\\\"#000\\\" ry=\\\"3.8\\\"/><path fill=\\\"#fff\\\" d=\\\"M85.3 61.1C81.1 70.4 73.1 76.6 64 76.6c-13.5 0-24.5-13.7-24.5-30.6s11-30.6 24.5-30.6c9.1 0 17.1 6.3 21.3 15.6l13-9.4C91.5 6.7 78.7-3.4 64-3.4C42.2-3.4 24.5 18.7 24.5 46S42.2 95.4 64 95.4c14.6 0 27.4-10 34.2-24.7z\\\"/><ellipse cx=\\\"23\\\" cy=\\\"-5.2\\\" fill=\\\"#fff\\\" rx=\\\"3\\\" ry=\\\"3.8\\\"/></g>\"\n\t\t},\n\t\t\"embeddedc-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#b3b3b3\\\" transform=\\\"matrix(1 0 0 .8 0 27.184)\\\"><g transform=\\\"translate(112)\\\"><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"86.02\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"41.02\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"18.52\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"-3.98\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"63.52\\\" ry=\\\"2\\\"/></g><g transform=\\\"matrix(0 1.25 -.8 0 100.82 106.02)\\\"><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"86.02\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"41.02\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"18.52\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"-3.98\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"63.52\\\" ry=\\\"2\\\"/></g><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"86.02\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"41.02\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"18.52\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"-3.98\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"63.52\\\" ry=\\\"2\\\"/><g transform=\\\"matrix(0 1.25 -.8 0 100.82 -33.979)\\\"><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"86.02\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"41.02\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"18.52\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"-3.98\\\" ry=\\\"2\\\"/><rect width=\\\"16\\\" height=\\\"10\\\" y=\\\"63.52\\\" ry=\\\"2\\\"/></g><rect width=\\\"100\\\" height=\\\"126\\\" x=\\\"14\\\" y=\\\"-17.48\\\" fill=\\\"#000\\\" ry=\\\"3.75\\\"/><path fill=\\\"#fff\\\" d=\\\"M85.3 61.15c-4.2 9.25-12.2 15.5-21.3 15.5c-13.5 0-24.5-13.75-24.5-30.62s11-30.62 24.5-30.62c9.1 0 17.1 6.25 21.3 15.63l13-9.37c-6.8-14.87-19.6-25-34.3-25c-21.8 0-39.5 22.13-39.5 49.38S42.2 95.43 64 95.43c14.6 0 27.4-10 34.2-24.75z\\\"/><path fill=\\\"#fff\\\" d=\\\"M44.002 37.05h5.446v3.938h-2.751v3.414h2.391v3.85h-2.391v3.377h2.775v3.964H44.01zm9.892 5.764v1.575q1.104-2.013 2.24-2.013q1.367 0 1.767 2.213q.624-1.15 1.152-1.675q.544-.525 1.263-.525q1.8 0 1.8 3.938v9.278h-2.583v-7.54q0-1.85-.768-1.85q-.784 0-.784 1.825v7.565h-2.583V47.84q0-.712-.216-1.163q-.208-.462-.536-.462q-.344 0-.56.45q-.208.45-.208 1.213v7.74h-2.575v-12.78zm10.149-6.79h2.575v8.328h.048q.472-1.013.88-1.488q.416-.475 1.064-.475q1.087 0 1.815 1.775q.728 1.763.728 5.064q0 3.051-.704 4.914q-.696 1.863-1.8 1.863q-1.15 0-1.983-2.088h-.048v1.65h-2.575zm4.55 13.117q0-3.176-1.039-3.176q-.936 0-.936 3.063q0 1.763.24 2.589q.248.8.784.8q.952 0 .952-3.276zm7.918 2.551h2.175q-.623 4.3-3.11 4.3q-1.552 0-2.464-1.85q-.903-1.85-.903-5.101q0-3.026.903-4.852q.904-1.838 2.407-1.838q.904 0 1.744.888q.832.875 1.215 2.338q.384 1.463.424 4.602h-4.31q.056 2.85 1.015 2.85q.328 0 .584-.375t.312-.975zm-1.871-3.69h1.871q-.024-1.35-.24-1.987q-.216-.65-.672-.65q-.511 0-.735.625t-.224 2.013zm9.853-11.978h2.567v19.569h-2.583v-1.676h-.032Q83.58 56.03 82.5 56.03q-1.135 0-1.84-1.863q-.695-1.863-.695-4.976q0-3.101.712-4.94q.712-1.85 1.871-1.85q1.056 0 1.944 1.9zm0 13.08q0-3.152-.976-3.152q-1.008 0-1.008 3.351q0 1.488.264 2.301q.272.8.752.8q.448 0 .704-.863q.256-.862.256-2.438zm8.597-13.08h2.567v19.569h-2.583v-1.676h-.032q-.864 2.113-1.944 2.113q-1.135 0-1.839-1.863q-.696-1.863-.696-4.976q0-3.101.712-4.94t1.871-1.85q1.056 0 1.944 1.9zm0 13.08q0-3.152-.976-3.152q-1.008 0-1.008 3.351q0 1.488.264 2.301q.272.8.752.8q.448 0 .704-.863t.256-2.438zm8.365 2.588h2.175q-.623 4.3-3.11 4.3q-1.552 0-2.464-1.85q-.904-1.85-.904-5.101q0-3.026.904-4.852q.904-1.838 2.407-1.838q.904 0 1.744.888q.832.875 1.215 2.338q.384 1.463.424 4.602h-4.31q.056 2.85 1.015 2.85q.328 0 .584-.375t.312-.975zm-1.871-3.69h1.871q-.024-1.35-.24-1.987q-.216-.65-.672-.65q-.512 0-.735.625t-.224 2.013zm9.852-11.978h2.568v19.569h-2.584v-1.676h-.032q-.863 2.113-1.943 2.113q-1.136 0-1.84-1.863q-.695-1.863-.695-4.976q0-3.101.712-4.94t1.871-1.85q1.056 0 1.943 1.9zm0 13.08q0-3.152-.975-3.152q-1.008 0-1.008 3.351q0 1.488.264 2.301q.272.8.752.8q.448 0 .704-.863q.255-.862.255-2.438z\\\"/><ellipse cx=\\\"23\\\" cy=\\\"-5.23\\\" fill=\\\"#fff\\\" rx=\\\"3\\\" ry=\\\"3.75\\\"/></g>\"\n\t\t},\n\t\t\"ember\": {\n\t\t\t\"body\": \"<path fill=\\\"#E04E39\\\" d=\\\"M0 0h128v128H0Z\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.265 24.128c8.246-.163 14.073 2.073 19.087 9.19c10.934 27.109-28.147 41.1-29.714 41.65l-.049.016s-1.18 7.363 10.028 7.08c13.793 0 28.294-10.691 33.81-15.21a3.293 3.293 0 0 1 4.468.265l4.13 4.29a3.291 3.291 0 0 1 .085 4.491c-3.59 3.997-12.014 12.203-24.696 17.504c0 0-21.16 9.798-35.42.52c-8.503-5.53-10.842-12.151-11.793-19.038c.005 0-10.324-.524-16.957-3.114c-6.635-2.592.049-10.411.049-10.411s2.04-3.233 5.92 0c3.883 3.228 11.13 1.772 11.13 1.772c.646-5.099 1.72-11.828 4.884-18.93c6.632-14.885 16.789-19.915 25.038-20.075m4.853 14.915c-4.369-4.21-16.984 4.202-17.471 23.45c0 0 3.724 1.134 11.97-4.53c8.25-5.661 9.87-14.718 5.501-18.92\\\"/>\"\n\t\t},\n\t\t\"ember-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#E04E39\\\" d=\\\"M109.734 84.051h.153c.178 0 .264.068.289.221c.043.162.068.29.11.34h.349c-.034-.05-.06-.136-.102-.348c-.043-.187-.119-.289-.255-.34v-.017c.17-.051.289-.17.289-.323a.387.387 0 0 0-.136-.306c-.102-.06-.221-.102-.484-.102c-.23 0-.408.017-.536.042v1.394h.323zm.009-.629a.773.773 0 0 1 .178-.017c.204 0 .298.085.298.213c0 .144-.144.204-.323.204h-.153zm.212-.935c-.798 0-1.436.621-1.436 1.394c0 .791.637 1.411 1.437 1.411c.807 0 1.427-.62 1.427-1.41c0-.774-.62-1.395-1.427-1.395zm0 .281c.621 0 1.072.501 1.072 1.122c0 .612-.451 1.105-1.063 1.105c-.629 0-1.088-.493-1.088-1.114c0-.612.459-1.113 1.08-1.113zM127.28 72.53a1.46 1.46 0 0 0-2.13-1.34s-3.08 2.39-5.79 2.12S117.5 67 117.5 67s.58-5.55-1-6c-1.58-.45-3.56 1.45-3.56 1.45a20 20 0 0 0-3.61 6.17l-.32.11s.37-6.06-.05-7.44c-.32-.69-3.24-.64-3.72.58s-2.82 9.73-3 13.29c0 0-4.57 3.88-8.56 4.52c-3.99.64-4.94-1.86-4.94-1.86s10.84-3 10.47-11.69c-.37-8.69-8.74-5.46-9.69-4.75c-.95.71-5.81 3.62-7.23 11.77c0 .28-.13 1.49-.13 1.49a37.47 37.47 0 0 1-6.54 3.56s6.54-11-1.44-16c-3.61-2.2-6.48 2.4-6.48 2.4s10.79-12 8.4-22.16c-1.14-4.83-3.56-5.35-5.77-4.57a10.06 10.06 0 0 0-4.64 3.3a37.12 37.12 0 0 0-5.37 15.73c-1 9.41-2.5 20.78-2.5 20.78s-2.07 2-4 2.13c-1.93.13-1.06-5.69-1.06-5.69s1.49-8.82 1.38-10.31c-.11-1.49-.21-2.29-2-2.82c-1.79-.53-3.67 1.7-3.67 1.7s-5 7.65-5.47 8.82l-.27.48l-.27-.32s3.56-10.42.16-10.58c-3.4-.16-5.62 3.72-5.62 3.72S33.15 71.3 33 72l-.27-.32s1.59-7.55 1.28-9.41a1.71 1.71 0 0 0-2.07-1.49s-2.23-.27-2.82 1.17a105.2 105.2 0 0 0-3 14s-5.58 4-9.25 4s-3.3-2.33-3.3-2.33S27 73.09 23.37 64a6.66 6.66 0 0 0-6.27-3c-2.71.05-6 1.71-8.17 6.6a21.21 21.21 0 0 0-1.55 6.22s-2.43.48-3.71-.58c-1.28-1.06-2 0-2 0s-2.21 2.75 0 3.6A26.67 26.67 0 0 0 7.22 78a10.25 10.25 0 0 0 3.87 6.07c4 3 11.64-.26 11.64-.26l3.14-1.75S26 85 28.26 85.39c2.26.39 3.24 0 7.23-9.68C37.83 70.77 38 71 38 71l.27-.05s-1.81 9.46-1.12 12c.69 2.54 3.72 2.29 3.72 2.29s1.65.28 3-4.4A70 70 0 0 1 47.71 71H48s-1.12 9.71.58 12.8c1.7 3.09 6.11 1.06 6.11 1.06a30.71 30.71 0 0 0 3.56-2a12.53 12.53 0 0 0 8.82 2.55c11.54-2.27 15.64-5.33 15.64-5.33a9.52 9.52 0 0 0 8.12 5.49a13.48 13.48 0 0 0 10.84-3.88s-.05 2.87 2.39 3.88c2.44 1.01 4.09-4.7 4.09-4.7l4.09-11.32h.37s.21 7.38 4.25 8.54c4.04 1.16 9.3-2.72 9.3-2.72a2.72 2.72 0 0 0 1.12-2.84M13 73.58c.16-6.32 4.31-9.09 5.74-7.71c1.43 1.38.9 4.36-1.81 6.22c-2.71 1.86-3.93 1.49-3.93 1.49m53.9-24.5s3.77-9.83 4.68-5c.91 4.83-7.92 19-7.92 19c.1-3.21 3.24-14 3.24-14m4.52 27.37c-2.5 6.54-8.56 3.88-8.56 3.88s-.69-2.34 1.28-8.88c1.97-6.54 6.59-4 6.59-4s3.18 2.47.69 9m16.74-2.87s-.58-2.07 1.59-6.06c2.17-3.99 3.88-1.81 3.88-1.81s1.86 2-.27 5a6.26 6.26 0 0 1-5.2 2.87\\\"/>\"\n\t\t},\n\t\t\"envoy\": {\n\t\t\t\"body\": \"<path fill=\\\"#b31aab\\\" d=\\\"m33.172 61.48l.176 7.325l7.797 4.785l-.176-7.324Zm19.031 30.504l-.176-7.18l-6.84-4.206c-.085-.059-.203-.145-.289-.203l.176 7.207Zm-24.355 9.688L10.012 90.715l-.438-18.367l8.758-3.746l-.172-7.352l-13.969 5.969c-1.074.46-1.714 1.441-1.687 2.566l.523 22.055c.032 1.125.73 2.25 1.836 2.941l21.383 13.149c.992.605 2.215.78 3.203.46a.843.843 0 0 0 .29-.113l13.124-5.593l-7.129-4.383Zm0 0\\\"/><path fill=\\\"#d163ce\\\" d=\\\"M85.488 61.047c-.031-1.328-.843-2.625-2.125-3.43L57.38 41.672l-.813.344l.176 7.726l20.57 12.63l.493 20.648l7.86 4.812l.433-.172ZM54.383 97.289L30.262 82.47l-.582-24.883l11-4.7l-.203-8.562l-17.082 7.293c-1.25.547-2.008 1.672-1.977 3l.668 29.18c.031 1.324.844 2.625 2.125 3.402l28.281 17.387c1.164.723 2.563.894 3.754.547c.117-.028.234-.086.348-.145l16.703-7.12l-8.32-5.102Zm0 0\\\"/><path fill=\\\"#e13eaf\\\" d=\\\"M122.234 40.633L85.98 18.343c-1.335-.808-2.937-1.038-4.304-.605c-.145.028-.262.086-.406.145l-35.383 15.11c-1.426.605-2.297 1.902-2.27 3.429l.903 37.371c.03 1.527.96 2.996 2.445 3.89l36.254 22.262c1.336.805 2.937 1.035 4.277.606c.145-.031.262-.09.406-.145l35.383-15.11c1.426-.605 2.297-1.933 2.27-3.433l-.875-37.367c-.028-1.473-.961-2.969-2.446-3.863M85.398 91.64L53.891 72.293l-.79-32.496l30.727-13.121l31.512 19.347l.785 32.497Zm0 0\\\"/>\"\n\t\t},\n\t\t\"envoy-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#4a0d66\\\" d=\\\"M12.863 104.547c0 .93.207 1.754.598 2.52a6.07 6.07 0 0 0 1.59 1.94a7.57 7.57 0 0 0 2.27 1.259a8.403 8.403 0 0 0 2.683.453c1.262 0 2.336-.29 3.262-.867c.93-.579 1.777-1.34 2.539-2.29l3.035 2.313c-2.227 2.89-5.367 4.336-9.371 4.336c-1.672 0-3.18-.29-4.543-.848a9.665 9.665 0 0 1-3.446-2.355c-.93-.988-1.652-2.168-2.168-3.528c-.519-1.363-.765-2.832-.765-4.398c0-1.57.27-3.035.824-4.398c.559-1.364 1.3-2.54 2.274-3.532a10.746 10.746 0 0 1 3.468-2.351c1.34-.559 2.785-.848 4.375-.848c1.88 0 3.469.332 4.75.992c1.301.66 2.352 1.508 3.2 2.559a10.3 10.3 0 0 1 1.816 3.57a14.88 14.88 0 0 1 .558 4.047v1.426Zm12.676-3.2a7.914 7.914 0 0 0-.434-2.456a5.585 5.585 0 0 0-1.136-1.942a5.175 5.175 0 0 0-1.899-1.3c-.765-.31-1.652-.473-2.664-.473c-.992 0-1.879.183-2.703.554a6.59 6.59 0 0 0-2.086 1.446c-.558.601-1.012 1.261-1.32 1.984c-.313.723-.477 1.445-.477 2.168h12.72Zm7.762-8.835h4.027v3.261h.082c.496-1.136 1.383-2.043 2.64-2.746c1.263-.703 2.684-1.054 4.337-1.054c1.011 0 1.98.168 2.933.476a6.862 6.862 0 0 1 2.457 1.446c.7.66 1.258 1.484 1.672 2.52c.41 1.03.617 2.25.617 3.632v13.625h-4.023V101.16c0-.988-.125-1.816-.395-2.515c-.27-.704-.617-1.262-1.074-1.696a3.858 3.858 0 0 0-1.547-.93a5.934 5.934 0 0 0-1.816-.289c-.828 0-1.61.145-2.313.395c-.722.266-1.343.7-1.878 1.277c-.536.578-.95 1.325-1.258 2.211c-.29.887-.457 1.942-.457 3.18v10.898H33.28v-21.18Zm20.047 0h4.644l6.34 16.207l6.066-16.207h4.297l-8.3 21.16h-4.418Zm21.613 10.57c0-1.55.289-2.996.867-4.336a11.202 11.202 0 0 1 5.969-5.926c1.363-.578 2.848-.867 4.418-.867c1.57 0 3.055.29 4.418.867a11.231 11.231 0 0 1 5.965 5.926c.578 1.34.867 2.785.867 4.336c0 1.547-.29 2.992-.867 4.356a10.804 10.804 0 0 1-2.395 3.53c-1.012.989-2.207 1.774-3.57 2.376c-1.363.578-2.848.867-4.418.867c-1.57 0-3.055-.29-4.418-.867c-1.363-.578-2.563-1.364-3.574-2.375a11.077 11.077 0 0 1-2.395-3.531a11.017 11.017 0 0 1-.867-4.356m4.297 0c0 1.074.164 2.063.496 2.973c.328.906.781 1.672 1.383 2.312a6.39 6.39 0 0 0 2.187 1.528c.867.37 1.836.558 2.91.558c1.075 0 2.043-.187 2.91-.558a6.444 6.444 0 0 0 2.192-1.528c.598-.64 1.05-1.406 1.383-2.312c.328-.91.496-1.899.496-2.973c0-1.074-.168-2.066-.496-2.973c-.332-.91-.785-1.671-1.383-2.312c-.602-.64-1.324-1.137-2.191-1.527c-.868-.372-1.836-.56-2.91-.56c-1.075 0-2.044.188-2.91.56a6.39 6.39 0 0 0-2.188 1.527c-.602.64-1.055 1.422-1.383 2.312c-.352.907-.496 1.899-.496 2.973m18.52-10.57h4.644l6.273 16.515h.086l6.004-16.515h4.297l-10.055 25.722c-.351.93-.722 1.754-1.113 2.52c-.394.762-.848 1.402-1.387 1.941a5.732 5.732 0 0 1-1.937 1.258c-.766.29-1.672.453-2.79.453a17.5 17.5 0 0 1-1.796-.101a6.422 6.422 0 0 1-1.754-.477l.496-3.652c.805.328 1.59.496 2.395.496c.62 0 1.136-.082 1.57-.25a2.85 2.85 0 0 0 1.113-.723c.309-.308.578-.68.785-1.094c.207-.41.414-.886.618-1.421l1.3-3.348Zm0 0\\\"/><path fill=\\\"#b31aab\\\" d=\\\"m40.445 37.82l.121 5.617l5.907 3.653l-.125-5.613Zm14.41 23.309l-.125-5.488l-5.183-3.203c-.082-.04-.145-.102-.227-.145l.125 5.512Zm-18.437 7.414l-13.5-8.383l-.332-14.058l6.629-2.852l-.125-5.613l-10.57 4.562c-.805.352-1.301 1.094-1.282 1.961l.395 16.848c.02.867.555 1.71 1.383 2.25l16.203 10.031c.765.477 1.676.602 2.437.352c.082-.02.164-.063.227-.082l9.953-4.293l-5.39-3.344Zm0 0\\\"/><path fill=\\\"#d163ce\\\" d=\\\"M80.063 37.492c-.02-1.012-.641-2.004-1.61-2.62L58.777 22.667l-.597.27l.144 5.902l15.567 9.644l.37 15.793l5.966 3.696l.332-.145ZM56.502 65.2L38.235 53.883l-.453-19.012l8.32-3.594l-.144-6.543l-12.926 5.575c-.949.41-1.527 1.277-1.484 2.289l.535 22.297c.02 1.011.64 2.003 1.61 2.601l21.43 13.277c.89.536 1.94.7 2.85.41a1.48 1.48 0 0 0 .266-.101l12.657-5.45l-6.336-3.902Zm0 0\\\"/><path fill=\\\"#e13eaf\\\" d=\\\"M107.914 21.883L80.454 4.852c-1.013-.622-2.231-.786-3.263-.477c-.101.043-.207.063-.289.105L50.105 16.043c-1.093.473-1.734 1.465-1.714 2.621l.683 28.57c.02 1.157.723 2.293 1.836 2.996l27.457 17.012c1.012.617 2.211.805 3.242.473c.106-.04.207-.063.313-.121l26.797-11.543c1.094-.473 1.734-1.465 1.71-2.621l-.679-28.575c-.02-1.132-.723-2.27-1.836-2.972M80 60.883L56.133 46.102l-.598-24.836l23.29-10.036l23.862 14.782l.579 24.836Zm0 0\\\"/>\"\n\t\t},\n\t\t\"erlang\": {\n\t\t\t\"body\": \"<path fill=\\\"#A90533\\\" d=\\\"M20.7 103.9C11 93.5 5.2 79.2 5.3 62.1C5.2 47 10 34 18.2 24.1H1v79.7zm90.4 0c4.2-4.5 8-9.8 11.4-15.9l-19-9.5c-6.7 10.8-16.4 20.8-29.9 20.9c-19.6-.1-27.3-16.9-27.3-38.5h73.3c.1-2.4.1-3.6 0-4.7c.5-12.9-2.9-23.7-9.1-32.1H127v79.7zM47.5 42.4c.8-9.8 8.5-16.3 17.6-16.4c9.1 0 15.7 6.6 15.9 16.4z\\\"/>\"\n\t\t},\n\t\t\"erlang-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#A90533\\\" d=\\\"M20.7 88.6C11 78.2 5.2 63.9 5.3 46.8c0-15.1 4.7-28.1 12.9-38H1v79.7zm90.4 0c4.2-4.5 8-9.8 11.4-15.9l-19-9.5C96.8 74 87.1 84 73.6 84.1C54 84 46.3 67.2 46.3 45.6h73.3c.1-2.4.1-3.6 0-4.7c.5-12.9-2.9-23.7-9.1-32.1H127v79.7zM47.5 27.1c.8-9.8 8.5-16.4 17.6-16.4c9.1 0 15.7 6.6 15.9 16.4z\\\"/><path d=\\\"M11.4 102.1v-3.3H1.2v19.7h10.2v-3.3H5v-5.3h6.2v-3.3H5v-4.5zm17.4 8.1c2.5-.4 3.9-2.9 4-5.5c-.1-4.2-2.8-5.9-6.6-5.9H21v19.7h3.8v-7.8l4.7 7.8h4.7zm-4.1-8.3h.5c2.1.1 3.6.6 3.6 3.1c.1 2.3-1.4 3-3.6 2.8h-.5zm21.4-3.1h-3.8v19.7h9.2v-3.3h-5.4zM71 114.4l1.7 4h4l-7.4-20.2h-3.1l-7.8 20.2h4l1.7-4zm-.9-3h-4.7l2.1-7.4zm13.7 7.1h4.1v-13.3L98.3 119h2.8V98.8h-4v13.3L86.7 98.3h-2.9zm34-10.5v3.1h4.3c-.1 2.5-2.1 4.6-4.5 4.5c-3.8.1-5.6-3.6-5.7-6.9c0-3.3 1.9-7.1 5.7-7.1c2 .1 3.7 1.4 4.5 3.1l3.3-1.7c-1.5-3.1-4.4-4.8-7.8-4.7c-5.9 0-9.7 4.8-9.7 10.4c.1 5.5 3.7 10.4 9.5 10.4c6.2-.1 9.1-5 9-10.7v-.4z\\\"/>\"\n\t\t},\n\t\t\"eslint\": {\n\t\t\t\"body\": \"<path fill=\\\"#8080f2\\\" d=\\\"m38.662 48.67l24.26-14.04a2.187 2.187 0 0 1 1.962 0l24.363 14.04c.62.31 1.033 1.032 1.033 1.651v28.08c0 .723-.413 1.342-1.033 1.755l-24.26 14.04a2.187 2.187 0 0 1-1.962 0l-24.363-14.04c-.62-.31-1.033-1.032-1.033-1.755v-28.08c0-.62.413-1.342 1.033-1.651\\\"/><path fill=\\\"#4b32c3\\\" d=\\\"m127.135 61.47l-29.01-50.585c-1.032-1.858-2.993-3.2-5.161-3.2H34.945c-2.064 0-4.026 1.342-5.161 3.2L.774 61.368a6.175 6.175 0 0 0 0 5.987l29.01 50.173c1.032 1.858 2.993 2.787 5.161 2.787h58.122c2.065 0 4.026-.929 5.162-2.684l29.01-50.173c1.032-2.064 1.032-4.232-.104-5.987M103.08 85.73c0 .723-.413 1.445-1.136 1.755l-36.958 21.37a1.875 1.875 0 0 1-2.065 0l-37.06-21.266c-.62-.413-1.136-1.032-1.136-1.755V42.991c0-.722.413-1.445 1.136-1.754l37.061-21.37a1.875 1.875 0 0 1 2.065 0l37.062 21.37c.619.412 1.135 1.032 1.135 1.754v42.74z\\\"/>\"\n\t\t},\n\t\t\"eslint-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#8080f2\\\" d=\\\"m11.378 59.459l7.121-4.128a.658.658 0 0 1 .62 0l7.121 4.128c.206.103.31.31.31.516v8.256a.568.568 0 0 1-.31.516l-7.121 4.129a.658.658 0 0 1-.62 0l-7.12-4.129a.567.567 0 0 1-.31-.516v-8.256c0-.206.103-.413.31-.516\\\"/><path fill=\\\"#4b32c3\\\" d=\\\"M37.283 63.278L28.82 48.519c-.31-.516-.929-.929-1.445-.929H10.243c-.62 0-1.238.413-1.548.93L.232 63.173a1.773 1.773 0 0 0 0 1.755l8.463 14.655c.31.516.929.826 1.548.826h17.029c.62 0 1.238-.31 1.445-.826l8.463-14.655c.412-.516.412-1.135.103-1.651m-7.121 7.12a.567.567 0 0 1-.31.517L19.016 77.21a.658.658 0 0 1-.62 0L7.663 70.915c-.206-.104-.413-.31-.413-.516V57.91c0-.206.103-.413.31-.516L18.396 51.1a.658.658 0 0 1 .62 0l10.836 6.295c.206.103.31.31.31.516z\\\"/><path fill=\\\"#666\\\" d=\\\"M46.984 53.06h13.21v2.477h-10.32v7.224h8.669v2.477h-8.67v8.36h10.631v2.477h-13.52Zm14.965 20.022l1.651-1.858c1.651 1.755 4.025 2.787 6.399 2.787c2.993 0 4.747-1.548 4.747-3.716c0-2.373-1.651-3.096-3.818-4.025l-3.303-1.444c-2.167-.93-4.644-2.58-4.644-5.883c0-3.509 2.993-6.09 7.224-6.09c2.787 0 5.16 1.136 6.812 2.787l-1.548 1.858c-1.445-1.238-3.2-2.064-5.264-2.064c-2.58 0-4.231 1.342-4.231 3.406c0 2.167 1.96 2.993 3.819 3.818l3.302 1.445c2.683 1.135 4.748 2.683 4.748 6.09c0 3.611-2.89 6.501-7.844 6.501c-3.303-.206-6.09-1.548-8.05-3.612M80.423 53.06h2.89v20.435h10.01v2.477h-12.9Zm14.448.62c0-1.136.826-1.858 1.961-1.858c1.135 0 1.961.722 1.961 1.857s-.826 1.858-1.96 1.858c-1.136 0-1.962-.722-1.962-1.858zm.516 5.366h2.89v17.029h-2.89zm6.812 0h2.374l.206 2.477h.103c1.652-1.651 3.406-2.89 5.677-2.89c3.612 0 5.16 2.27 5.16 6.605v10.734h-2.89v-10.32c0-3.2-1.032-4.542-3.2-4.542c-1.754 0-2.89.93-4.644 2.58v12.282H102.2zm17.751 11.662V61.42h-2.477v-2.167l2.683-.207l.31-5.47h2.374v5.47h4.54v2.374h-4.54v9.392c0 2.064.619 3.302 2.58 3.302c.62 0 1.238-.103 1.96-.413l.62 2.064c-.929.413-2.064.723-3.2.723c-3.611-.103-4.85-2.374-4.85-5.78\\\"/>\"\n\t\t},\n\t\t\"express\": {\n\t\t\t\"body\": \"<path d=\\\"M126.67 98.44c-4.56 1.16-7.38.05-9.91-3.75c-5.68-8.51-11.95-16.63-18-24.9c-.78-1.07-1.59-2.12-2.6-3.45C89 76 81.85 85.2 75.14 94.77c-2.4 3.42-4.92 4.91-9.4 3.7l26.92-36.13L67.6 29.71c4.31-.84 7.29-.41 9.93 3.45c5.83 8.52 12.26 16.63 18.67 25.21c6.45-8.55 12.8-16.67 18.8-25.11c2.41-3.42 5-4.72 9.33-3.46c-3.28 4.35-6.49 8.63-9.72 12.88c-4.36 5.73-8.64 11.53-13.16 17.14c-1.61 2-1.35 3.3.09 5.19C109.9 76 118.16 87.1 126.67 98.44M1.33 61.74c.72-3.61 1.2-7.29 2.2-10.83c6-21.43 30.6-30.34 47.5-17.06C60.93 41.64 63.39 52.62 62.9 65H7.1c-.84 22.21 15.15 35.62 35.53 28.78c7.15-2.4 11.36-8 13.47-15c1.07-3.51 2.84-4.06 6.14-3.06c-1.69 8.76-5.52 16.08-13.52 20.66c-12 6.86-29.13 4.64-38.14-4.89C5.26 85.89 3 78.92 2 71.39c-.15-1.2-.46-2.38-.7-3.57q.03-3.04.03-6.08m5.87-1.49h50.43c-.33-16.06-10.33-27.47-24-27.57c-15-.12-25.78 11.02-26.43 27.57\\\"/>\"\n\t\t},\n\t\t\"express-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M40.53 77.82V50.74H42V55a5.57 5.57 0 0 0 .48-.6a7.28 7.28 0 0 1 6.64-4.12c3.35-.1 6.07 1.14 7.67 4.12a13.24 13.24 0 0 1 .32 12.14c-1.49 3.34-5.17 5-9.11 4.39a7.37 7.37 0 0 1-5.88-3.88v10.77zM42 60.32c.13 1.32.18 2.26.33 3.18c.58 3.62 2.72 5.77 6.08 6.16A6.91 6.91 0 0 0 56 65.27a11.77 11.77 0 0 0-.26-9.68a6.77 6.77 0 0 0-7.13-3.94a6.59 6.59 0 0 0-5.89 4.87a33.4 33.4 0 0 0-.72 3.8M88.41 64a7.92 7.92 0 0 1-7.74 7c-6.16.31-9.05-3.78-9.51-8.5a13.62 13.62 0 0 1 1.2-7.5a8.37 8.37 0 0 1 8.71-4.67a8 8 0 0 1 7.1 6.09a41.09 41.09 0 0 1 .69 4.5H72.67c-.3 4.28 2 7.72 5.26 8.55c4.06 1 7.53-.76 8.79-4.62c.28-.99.79-1.13 1.69-.85m-15.74-4.45h14.47c-.09-4.56-2.93-7.86-6.78-7.91c-4.36-.07-7.5 3.11-7.69 7.91m18.72 4.55h1.42a5.69 5.69 0 0 0 3.34 4.9a8.73 8.73 0 0 0 7.58-.2a3.41 3.41 0 0 0 2-3.35a3.09 3.09 0 0 0-2.08-3.09c-1.56-.58-3.22-.9-4.81-1.41A35.25 35.25 0 0 1 94 59.18c-2.56-1.25-2.72-6.12.18-7.66a10.21 10.21 0 0 1 9.76-.15a5.14 5.14 0 0 1 2.6 5.24h-1.22c0-.06-.11-.11-.11-.17c-.15-3.89-3.41-5.09-6.91-4.75a9.17 9.17 0 0 0-3 .91a3 3 0 0 0-1.74 3a3 3 0 0 0 2 2.82c1.54.56 3.15.92 4.73 1.36c1.27.35 2.59.58 3.82 1a4.51 4.51 0 0 1 3.1 4.07a4.81 4.81 0 0 1-2.59 5c-3.34 1.89-8.84 1.39-11.29-1a6.67 6.67 0 0 1-1.94-4.75m33.82-7.49h-1.33c0-.18-.07-.34-.09-.49a4.35 4.35 0 0 0-3.54-4.18a8.73 8.73 0 0 0-5.61.27a3.41 3.41 0 0 0-2.47 3.25a3.14 3.14 0 0 0 2.4 3.16c2 .62 4.05 1 6.08 1.56a17 17 0 0 1 1.94.59a5 5 0 0 1 .27 9.31a11.13 11.13 0 0 1-9 .09a6.24 6.24 0 0 1-3.76-6.06h1.3a7.29 7.29 0 0 0 11.1 4.64a3.57 3.57 0 0 0 1.92-3.34a3.09 3.09 0 0 0-2.11-3.07c-1.56-.58-3.22-.89-4.81-1.4a35.43 35.43 0 0 1-4.87-1.75c-2.5-1.23-2.7-6.06.15-7.6a10.07 10.07 0 0 1 9.92-.11a5.23 5.23 0 0 1 2.51 5.13M38.1 70.51a2.29 2.29 0 0 1-2.84-1.08c-1.63-2.44-3.43-4.77-5.16-7.15l-.75-1c-2.06 2.76-4.12 5.41-6 8.16a2.2 2.2 0 0 1-2.7 1.06l7.73-10.37l-7.19-9.37a2.39 2.39 0 0 1 2.85 1c1.67 2.44 3.52 4.77 5.36 7.24c1.85-2.45 3.68-4.79 5.39-7.21a2.15 2.15 0 0 1 2.68-1l-2.79 3.7c-1.25 1.65-2.48 3.31-3.78 4.92a1 1 0 0 0 0 1.49c2.39 3.17 4.76 6.35 7.2 9.61m32.82-19.85v1.4a7.25 7.25 0 0 0-7.72 7.49v11h-1.43V50.74h1.4v4.06c1.73-2.96 4.4-4.06 7.75-4.14M2.13 60c.21-1 .34-2.09.63-3.11c1.73-6.15 8.78-8.71 13.63-4.9c2.84 2.23 3.55 5.39 3.41 8.95h-16c-.26 6.36 4.33 10.2 10.2 8.24a6.09 6.09 0 0 0 3.87-4.31c.31-1 .81-1.17 1.76-.88a8.12 8.12 0 0 1-3.88 5.93a9.4 9.4 0 0 1-10.95-1.4a9.85 9.85 0 0 1-2.46-5.78c0-.34-.13-.68-.2-1q-.01-.89-.01-1.74m1.69-.43h14.47c-.09-4.61-3-7.88-6.88-7.91c-4.32-.06-7.41 3.14-7.6 7.89z\\\"/>\"\n\t\t},\n\t\t\"facebook\": {\n\t\t\t\"body\": \"<rect width=\\\"118.35\\\" height=\\\"118.35\\\" x=\\\"4.83\\\" y=\\\"4.83\\\" fill=\\\"#3d5a98\\\" rx=\\\"6.53\\\" ry=\\\"6.53\\\"/><path fill=\\\"#fff\\\" d=\\\"M86.48 123.17V77.34h15.38l2.3-17.86H86.48v-11.4c0-5.17 1.44-8.7 8.85-8.7h9.46v-16A126.56 126.56 0 0 0 91 22.7c-13.62 0-23 8.3-23 23.61v13.17H52.62v17.86H68v45.83z\\\"/>\"\n\t\t},\n\t\t\"fastapi\": {\n\t\t\t\"body\": \"<path fill=\\\"#049688\\\" d=\\\"M56.813 127.586c-1.903-.227-3.899-.52-4.434-.652a48.078 48.078 0 0 0-2.375-.5a36.042 36.042 0 0 1-2.703-.633c-4.145-1.188-4.442-1.285-7.567-2.563c-2.875-1.172-8.172-3.91-9.984-5.156c-.496-.344-.96-.621-1.031-.621c-.07 0-1.23-.816-2.578-1.813c-8.57-6.343-15.004-14.043-19.653-23.527c-.8-1.629-1.453-3.074-1.453-3.21c0-.134-.144-.505-.32-.817c-.363-.649-.88-2.047-1.297-3.492a20.047 20.047 0 0 0-.625-1.813c-.195-.46-.352-1.02-.352-1.246c0-.227-.195-.965-.433-1.645c-.238-.675-.43-1.472-.43-1.77c0-.296-.187-1.32-.418-2.276C.598 73.492 0 67.379 0 63.953c0-3.422.598-9.535 1.16-11.894c.23-.957.418-2 .418-2.32c0-.321.145-.95.32-1.4c.18-.448.41-1.253.516-1.788c.11-.535.36-1.457.563-2.055l.59-1.726c.433-1.293.835-2.387 1.027-2.813c.11-.238.539-1.21.957-2.16c.676-1.535 2.125-4.43 2.972-5.945c.309-.555.426-.739 2.098-3.352c2.649-4.148 7.176-9.309 11.39-12.988c1.485-1.297 6.446-5.063 6.669-5.063c.062 0 .53-.281 1.043-.625c1.347-.902 2.668-1.668 4.39-2.531a53.06 53.06 0 0 0 1.836-.953c.285-.164.82-.41 3.567-1.64c.605-.27 1.257-.516 3.136-1.173c.414-.144 1.246-.449 1.84-.672c.598-.222 1.301-.406 1.563-.406c.258 0 .937-.18 1.508-.402c.57-.223 1.605-.477 2.304-.563c.696-.082 1.621-.277 2.055-.43c.43-.148 1.61-.34 2.621-.425a72.572 72.572 0 0 0 3.941-.465c2.688-.394 8.532-.394 11.192 0a75.02 75.02 0 0 0 3.781.445c.953.079 2.168.278 2.703.442c.535.16 1.461.36 2.055.433c.594.079 1.594.325 2.222.551c.63.23 1.344.414 1.59.414s.754.137 1.125.309c.375.168 1.168.449 1.766.625c.594.18 1.613.535 2.27.797c.652.261 1.527.605 1.945.761c.77.29 6.46 3.137 7.234 3.622c6.281 3.917 9.512 6.476 13.856 10.964c5.238 5.414 8.715 10.57 12.254 18.16c.25.536.632 1.329.851 1.758c.215.434.395.942.395 1.13c0 .19.18.76.402 1.269c.602 1.383 1.117 2.957 1.36 4.16c.12.59.343 1.32.495 1.621c.153.3.332 1.063.403 1.688c.07.624.277 1.648.453 2.269c1.02 3.531 1.527 13.934.91 18.535c-.183 1.367-.39 3.02-.46 3.672c-.118 1.117-.708 4.004-1.212 5.945l-.52 2.055c-.98 3.957-3.402 9.594-6.359 14.809c-1.172 2.07-5.101 7.668-5.843 8.324c-.067.058-.399.45-.735.863c-.336.418-1.414 1.586-2.39 2.594c-4.301 4.441-7.77 7.187-13.86 10.969c-.722.449-6.847 3.441-7.992 3.906c-.594.238-1.586.64-2.203.89c-.613.247-1.297.454-1.512.458c-.215.003-.781.195-1.258.425c-.476.23-1.082.422-1.351.426c-.266.004-1.043.192-1.727.418c-.683.23-1.633.477-2.11.55c-.476.075-1.495.278-2.269.45c-.773.172-3.11.508-5.187.746a59.06 59.06 0 0 1-13.945-.031m4.703-12.5c.3-.234.609-.7.691-1.027c.18-.723 29.234-58.97 29.781-59.7c.461-.617.504-1.605.082-1.953c-.222-.187-3.004-.246-10.43-.234c-5.57.012-10.253.016-10.406.012c-.226-.008-.273-3.73-.25-19.672c.016-10.817-.035-19.766-.113-19.89c-.078-.126-.383-.227-.68-.227c-.418 0-.613.18-.87.808c-.485 1.168-1.825 3.82-8.348 16.485a3554.569 3554.569 0 0 0-4.055 7.89c-1.156 2.262-2.98 5.813-4.047 7.89a8751.248 8751.248 0 0 0-8.598 16.759c-4.933 9.636-5.53 10.785-5.742 11.039c-.41.496-.633 1.64-.402 2.07c.21.394.629.41 11.043.394c5.953-.007 10.863.024 10.914.07c.137.141.086 37.31-.055 38.196c-.093.582-.031.89.235 1.156c.46.461.586.457 1.25-.066m0 0\\\"/>\"\n\t\t},\n\t\t\"fastapi-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#049688\\\" d=\\\"M14.063 74.8c-2.313-.312-4.684-1.534-6.348-3.273c-1.207-1.254-1.95-2.457-2.516-4.062c-.394-1.121-.426-1.38-.426-3.48c0-2.102.032-2.364.426-3.485c1.992-5.688 8.153-8.75 13.805-6.867c3.422 1.137 6.191 4.129 7.129 7.699c.344 1.309.347 3.82.008 5.223c-1.301 5.36-6.606 8.98-12.078 8.246zm3.617-7.335c1.437-2.875 2.613-5.293 2.613-5.375c0-.094-.711-.153-1.816-.153H16.66v-3.355c0-1.848-.05-3.309-.11-3.25c-.226.227-5.44 10.473-5.382 10.582c.031.063.871.113 1.863.113h1.809v3.332c0 1.832.05 3.332.117 3.332c.063 0 1.29-2.351 2.723-5.226m33.164 5.98c-.793-.203-1.942-.808-2.34-1.234c-1.008-1.082-1.332-3.484-.656-4.879c.59-1.227 1.922-2.043 3.859-2.375c.988-.172 2.887-.121 3.91.106c.41.09.414.078.414-.645c0-1.547-.52-2.574-1.562-3.117c-.535-.278-.86-.324-2.07-.305c-.794.016-1.829.121-2.305.234l-.864.211l-.097-.699c-.188-1.332-.207-1.277.613-1.5c.418-.113 1.582-.242 2.586-.289c1.457-.066 2.004-.031 2.715.176c1.793.523 2.824 1.64 3.21 3.484c.13.625.192 2.43.196 5.703l.004 4.793l-1.176.18c-1.554.238-5.718.34-6.437.156m4.484-1.91l.703-.097V69.27c0-1.504-.054-2.2-.18-2.274c-.097-.062-.867-.144-1.714-.18c-1.965-.09-3.012.184-3.692.957c-.406.461-.468.653-.468 1.372c0 1.355.37 1.843 1.738 2.273c.664.21 2.504.27 3.613.117m7.617 1.766c-.574-.153-1.097-.336-1.164-.406c-.113-.118.192-1.805.356-1.97c.039-.038.504.087 1.031.27c1.289.453 4.18.508 4.934.094c.648-.352.953-.828.953-1.473c0-1.125-.832-1.793-3.711-2.964c-2.598-1.059-3.426-2.008-3.426-3.922c0-1.887.996-3.149 2.941-3.742c.895-.27 1.301-.305 2.664-.235c1.84.094 3.2.371 3.2.656c0 .207-.317 1.774-.371 1.836c-.02.024-.567-.097-1.22-.265c-1.402-.356-2.339-.383-3.327-.082c-1.07.32-1.446.738-1.446 1.613c0 1.203.485 1.582 3.653 2.863c2.32.934 3.203 1.79 3.457 3.348c.367 2.246-.727 3.84-3.055 4.46c-1.176.313-4.172.27-5.469-.081m14.59.066c-.957-.297-1.726-.992-2.222-2.004l-.426-.867V55.207l.68-.113a50.97 50.97 0 0 0 1.175-.2l.492-.085v4.402h5.301v1.969H77.22l.047 4.28c.039 3.97.066 4.321.355 4.868c.172.332.54.715.828.871c.7.375 2.313.375 3.383-.004l.805-.28l.23.968c.219.91.219.976-.039 1.113c-1.078.578-3.973.781-5.293.371zm-42.25-9.46V54.52h11.36v2.117h-8.793l.043 2.918l.039 2.914l3.902.039l3.898.043v2.113H37.86v8.633h-2.574zm48.762 9.312c0-.172 2.785-7.625 3.82-10.219a179.5 179.5 0 0 1 2.348-5.566l1.297-2.914h1.246c1.058 0 1.262.039 1.332.261c.043.149.586 1.39 1.207 2.766c1.355 3.016 2.969 7.043 4.8 11.976c.75 2.02 1.368 3.7 1.368 3.727c0 .031-.625.04-1.39.016l-1.391-.047l-.844-2.344l-.848-2.348l-4.312-.043l-4.317-.039l-.851 2.387l-.848 2.387l-1.309.047c-.718.023-1.308.004-1.308-.047m12.117-6.93c0-.488-3.293-8.742-3.488-8.742c-.246 0-3.48 8.105-3.48 8.719c0 .18.581.214 3.484.214c2.707 0 3.484-.043 3.484-.19zM104.191 64v-9.297l.493-.098c1.062-.207 6.164-.28 7.113-.097c2.168.406 3.82 1.289 4.629 2.465c1.43 2.082 1.195 5.605-.485 7.289c-1.3 1.3-3.347 1.902-6.867 2.031l-2.308.082v6.922h-2.575zm7.895-.238c1.809-.567 2.578-1.606 2.578-3.485c0-2.59-1.809-3.785-5.723-3.789c-.675 0-1.445.04-1.703.094l-.472.094v7.578l2.21-.11c1.454-.07 2.524-.203 3.11-.382m8.762.144V54.52h2.574v18.777h-2.574zm0 0\\\"/>\"\n\t\t},\n\t\t\"fastify\": {\n\t\t\t\"body\": \"<path d=\\\"m89.663 24.816l-.162-.253l-.001.001l-.006.004a.513.513 0 0 1-.026.016l-.103.064a60.12 60.12 0 0 1-1.901 1.121a69.437 69.437 0 0 1-5.182 2.645c-4.196 1.919-9.503 3.791-14.045 3.691c-2.294-.051-4.2-.242-5.997-.431l-.294-.031c-1.686-.178-3.294-.347-5.041-.384c-3.707-.078-8.022.443-15.121 2.707c-7.158 2.282-11.743 6.925-15.043 11.348c-1.281 1.717-2.374 3.407-3.345 4.911c-.278.43-.546.845-.806 1.241c-1.18 1.797-2.17 3.17-3.143 3.876c-2.054 1.489-6.299 4.657-10.029 7.45a4307.818 4307.818 0 0 0-4.874 3.656L3.03 67.586l-.415.313l-.108.082l-.028.021l-.007.005l-.002.001l.134.178l-.134-.177l-.145.109l.029.179l.028.172l.056.343l.331-.105l10.46-3.331c-.395.422-.931 1.01-1.611 1.792c-1.614 1.858-4.039 4.81-7.323 9.223a3.526 3.526 0 0 1-.071-.066l-.664-.611l.167.886l.012.064l.011.059l.033.05l.073-.048l-.073.048l.001.002l.003.005l.012.019l.048.072a24.262 24.262 0 0 0 .882 1.198a24.062 24.062 0 0 0 2.483 2.721c1.026.954 2.232 1.872 3.533 2.453c1.303.582 2.717.834 4.138.425h.001c.52-.152 1.094-.39 1.709-.697c2.15 1.181 4.939 2.332 8.02 2.654l.751.079l-.492-.573l-.001-.001l-.004-.005a.245.245 0 0 0-.018-.02l-.068-.081a54.757 54.757 0 0 1-1.165-1.444a47.48 47.48 0 0 1-2.4-3.368l.833-.541l4.288 1.576l.458.168l-.057-.485l-.436-3.716l3.933 1.445l.471.173l-.071-.497l-.509-3.568c.485-.25.965-.487 1.445-.708l.131-.059l.036-.137l4.498-17.014l17.815-12.152l-1.125 2.83v.001c-1.875 4.61-4.568 7.452-6.786 9.141a16.783 16.783 0 0 1-2.813 1.747a11.248 11.248 0 0 1-1.059.449l-.056.019l-.005.002a.069.069 0 0 0-.008.003l-.003.001l-.009.003l-.009.003l-2.975 1.128l-.073.026l-.05.059l-.345.405c-.926 1.084-1.643 1.923-2.202 3.389c-.621 1.628-1.046 4.02-1.425 8.409l-.036.419l.408-.103c1.753-.44 3.402-.539 4.879-.141c3.893 1.049 6.525 3.923 7.92 6.876c.697 1.476 1.08 2.961 1.159 4.231c.08 1.282-.152 2.293-.622 2.874c-.509.629-1.733 1.721-3.318 3.035h-3.433l-.005.295l-.042 2.487l-.002.002l-.138.107h-3.493l-.005.295l-.038 2.422l-.416.313l-.252.19c-1.454.002-3.115-.618-4.447-1.268a21.133 21.133 0 0 1-2.146-1.211a4.868 4.868 0 0 1-.127-.084l-.032-.022l-.006-.004l-.001-.001l-.002-.001l-.47-.323v.571c0 1.295.534 2.905 1.048 4.164a27.627 27.627 0 0 0 .949 2.06l.002.003l-.123.088l.262.175l.085.157l.089-.042l.024.016l.277.175a31.893 31.893 0 0 0 4.483 2.301c1.378.569 2.931 1.078 4.477 1.314c1.544.236 3.102.201 4.476-.338c1.192-.467 2.838-1.417 4.781-2.632c1.336-.835 2.823-1.804 4.413-2.839c.729-.475 1.479-.963 2.246-1.459c4.885-3.159 10.465-6.638 15.63-8.874l31.427-8.279l.148-.039l.055-.143l4.147-10.744l.211-.547l-.567.15l-23.591 6.215V65.12l27.898-7.35l.148-.039l.055-.143l4.147-10.744l.211-.547l-.567.15L85.4 54.848v-9.032l36.183-9.534l.148-.039l.055-.143l3.863-10.004l.035-.092l-.026-.095l-.168-.62l-.078-.287l-.288.076l-37.453 9.868c1.73-2.73 2.328-5.184 2.48-7.005c.082-.982.033-1.778-.037-2.332a7.645 7.645 0 0 0-.147-.814a2.191 2.191 0 0 0-.012-.046l-.004-.013l-.001-.004v-.001zm0 0l-.162-.253l.336-.214l.113.382zm-.288.085c0-.001 0-.001 0 0M64.657 56.695l7.017-1.85l-2.232 5.783l-7.017 1.85zm4.357 6.619l-2.232 5.787l-7.017 1.851l2.233-5.788zm10.077-2.163l-2.232 5.787l-7.017 1.851l2.233-5.788z\\\"/><path fill=\\\"#fff\\\" d=\\\"M43.745 104.119a11.71 11.71 0 0 1-1.774-.142c-1.386-.211-2.916-.66-4.546-1.333a32.38 32.38 0 0 1-4.528-2.324l-.164-.103l-.196.093l-.184-.342l-.562-.374l.267-.19l-.122-.246c-.179-.367-.45-.944-.721-1.609c-.71-1.738-1.07-3.178-1.07-4.277V92.13l.978.673l.124.082a20.545 20.545 0 0 0 2.114 1.193c1.133.553 2.773 1.21 4.216 1.237l.076-.057l.095-.072l.299-.224l.045-2.866h3.631l.048-2.891h3.621c1.674-1.39 2.748-2.374 3.193-2.924c.426-.527.628-1.5.556-2.667c-.08-1.282-.481-2.746-1.131-4.121a13.298 13.298 0 0 0-2.956-4.06a11.313 11.313 0 0 0-4.772-2.655c-1.351-.364-2.897-.317-4.728.142l-.816.206l.073-.839c.374-4.321.792-6.781 1.444-8.49c.577-1.514 1.317-2.38 2.254-3.477l.089-.105l.254-.299l.101-.119l.144-.055l2.994-1.135l.031-.01l.049-.016a11.163 11.163 0 0 0 1.026-.436a16.436 16.436 0 0 0 2.762-1.716a19.518 19.518 0 0 0 3.469-3.422c1.282-1.621 2.359-3.484 3.2-5.539v-.007l.024-.052l.76-1.912l-16.915 11.537l-4.469 16.906l-.072.274l-.258.118c-.397.183-.805.381-1.243.604l.622 4.35l-4.418-1.623l.493 4.2l-5.064-1.861l-.456.296a47.135 47.135 0 0 0 2.222 3.095c.388.499.704.888.901 1.126c.11.134.198.238.257.309l.073.086a.055.055 0 0 1 .007.009l.08.078v.016l.913 1.062l-1.502-.158c-2.609-.273-5.298-1.153-7.996-2.615a10.37 10.37 0 0 1-1.593.639l-.027.008a.126.126 0 0 1-.01.003l-.03.009c-1.345.376-2.792.225-4.304-.45c-1.175-.525-2.391-1.368-3.615-2.507a24.84 24.84 0 0 1-3.221-3.698l-.087-.124l-.006.004l-.159-.244l-.052-.069v-.011l-.019-.028l-.033-.181l-.331-1.775l1.155 1.062c3.307-4.431 5.702-7.32 7.138-8.973c.296-.34.581-.664.855-.968L2.86 68.992l-.663.21L2 67.987l.435-.327l.193-.145l.79-.594l.948-.712c1.145-.86 2.92-2.192 4.874-3.656c3.399-2.546 7.899-5.905 10.033-7.453c.912-.661 1.886-1.996 3.068-3.797c.259-.395.528-.811.805-1.239c.97-1.501 2.069-3.201 3.356-4.927c1.971-2.642 3.975-4.778 6.126-6.531a27.551 27.551 0 0 1 9.067-4.924c6.269-2 10.82-2.813 15.218-2.721c1.76.037 3.366.206 5.066.386l.294.031c1.957.206 3.757.38 5.972.429c2.044.045 4.421-.317 7.063-1.077c2.132-.613 4.437-1.484 6.851-2.587a70 70 0 0 0 5.159-2.633a56.431 56.431 0 0 0 1.962-1.16l.072-.046l.66-.421l.311 1.052l-.015.004c.029.14.069.356.104.634c.095.753.108 1.559.038 2.394c-.182 2.191-.9 4.374-2.137 6.501l37.311-9.83l.376 1.382l-.07.183l-3.973 10.291l-.297.078l-35.96 9.475v8.412l32.642-8.602l-.422 1.095l-4.257 11.03l-.297.078l-27.675 7.292v8.408l23.215-6.115l1.135-.299l-.422 1.095l-4.257 11.031l-.297.078l-31.404 8.273c-5.05 2.189-10.465 5.543-15.565 8.842c-.732.473-1.45.941-2.145 1.394l-.124.081c-1.575 1.025-3.063 1.994-4.394 2.826c-2.262 1.415-3.752 2.234-4.831 2.657c-.844.33-1.8.496-2.857.496M32.944 99.64l.271.171a31.78 31.78 0 0 0 4.439 2.278c1.586.655 3.068 1.091 4.407 1.295c1.674.255 3.128.147 4.321-.321c1.043-.409 2.502-1.213 4.732-2.607c1.327-.83 2.812-1.797 4.385-2.821l.124-.081a706.06 706.06 0 0 1 2.147-1.395c5.129-3.317 10.578-6.691 15.674-8.898l.021-.009l.022-.006l31.427-8.279l4.146-10.744l-23.967 6.314v-9.649l28.122-7.409l4.147-10.744L85.1 55.237v-9.653l36.407-9.593l3.863-10.004l-.168-.619L87.01 35.43l.409-.645c1.423-2.245 2.242-4.556 2.434-6.869c.082-.989.026-1.78-.036-2.269a7.475 7.475 0 0 0-.087-.538l-.2.059l-.122-.19l-.002-.003a.74.74 0 0 0-.043.027l-.034.196l-.174-.026l-.013-.035l-.023.014c-.471.285-.978.581-1.508.88a70.134 70.134 0 0 1-5.204 2.657c-2.441 1.116-4.774 1.997-6.935 2.618c-2.7.776-5.137 1.146-7.242 1.1c-2.238-.049-4.051-.225-6.021-.432l-.294-.031c-1.687-.178-3.281-.346-5.016-.382c-4.328-.091-8.821.714-15.023 2.693c-3.268 1.042-6.17 2.618-8.87 4.818c-2.112 1.721-4.083 3.822-6.024 6.424c-1.276 1.71-2.369 3.401-3.333 4.894c-.277.428-.547.846-.807 1.242c-1.253 1.909-2.229 3.237-3.218 3.954c-2.131 1.545-6.628 4.903-10.025 7.447a4106.538 4106.538 0 0 0-4.873 3.656l-.947.712l-.79.594l-.192.144l-.142.106l-.006-.008l.03.184l11.557-3.68l-.788.84a64.448 64.448 0 0 0-1.603 1.784c-1.459 1.679-3.911 4.638-7.309 9.205l-.198.266l-.183-.167v.121l.122.174c.211.298.443.607.689.92c.54.688 1.404 1.712 2.451 2.687c1.176 1.094 2.337 1.901 3.451 2.399c1.383.618 2.697.758 3.907.418l.038-.019h.028a10.45 10.45 0 0 0 1.619-.665l.14-.07l.138.076c2.648 1.454 5.284 2.333 7.835 2.611v-.078l-.021-.025a49.146 49.146 0 0 1-1.172-1.454a47.155 47.155 0 0 1-2.416-3.39l-.162-.251l.251-.162l.832-.541l.126-.082l4.43 1.628l-.493-4.201l4.391 1.613l-.54-3.779l.19-.098c.518-.267.995-.5 1.457-.714l4.526-17.122l18.717-12.767l-1.466 3.687v.009l-.025.053c-.865 2.126-1.977 4.056-3.305 5.734a20.08 20.08 0 0 1-3.576 3.528a17.156 17.156 0 0 1-2.864 1.778a11.676 11.676 0 0 1-1.091.463l-.061.021l-.021.007l-2.974 1.128l-.255.3l-.09.105c-.935 1.094-1.61 1.884-2.15 3.301c-.63 1.654-1.038 4.067-1.407 8.328c1.932-.485 3.578-.531 5.03-.14a11.92 11.92 0 0 1 5.023 2.793a13.893 13.893 0 0 1 3.091 4.244c.682 1.443 1.103 2.984 1.187 4.34c.083 1.334-.161 2.429-.688 3.081c-.484.599-1.583 1.605-3.36 3.078l-.083.069H42.36l-.044 2.613l-.123.118l-.014.007l-.02.015l-.094.073l-.082.064h-3.302l-.04 2.568l-.116.088c-.14.106-.279.211-.418.314l-.095.072l-.156.117l-.08.061h-.107c-.874 0-2.374-.226-4.572-1.299a21.316 21.316 0 0 1-2.178-1.229a6.052 6.052 0 0 1-.131-.087l-.044-.029c0 1.007.355 2.408 1.026 4.05a26.393 26.393 0 0 0 .916 1.995l.006.006l.021.047l.089.177l.009.006l.003.006l.101.063zm26.33-28.249l2.499-6.478l7.732-2.038l-2.498 6.477zm2.948-5.976l-1.966 5.097l6.302-1.662l1.966-5.096zm7.128 3.813l2.499-6.478l7.732-2.039l-2.498 6.477zm2.949-5.976l-1.966 5.097l6.302-1.662l1.966-5.096zm-10.366-.334l2.499-6.474l7.732-2.039l-2.499 6.473zm2.948-5.972l-1.966 5.092l6.302-1.662l1.965-5.092z\\\"/>\"\n\t\t},\n\t\t\"fastify-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"m109.161 45.842l-.075-.117h-.001l-.003.002l-.012.008a4.918 4.918 0 0 1-.048.03l-.185.114a32.03 32.03 0 0 1-3.096 1.632c-1.945.889-4.403 1.757-6.509 1.71a31.71 31.71 0 0 1-2.779-.2l-.136-.014c-.781-.082-1.526-.161-2.336-.178c-1.718-.036-3.717.205-7.007 1.254c-3.317 1.057-5.441 3.209-6.971 5.259c-.594.796-1.1 1.579-1.55 2.276c-.129.199-.253.392-.373.575c-.547.833-1.006 1.469-1.456 1.796c-.952.69-2.919 2.158-4.648 3.452l-2.259 1.694l-.702.528l-.193.145l-.05.038l-.013.01l-.003.002l-.001.001l.062.082l-.062-.082l-.067.05l.014.083l.013.08l.026.159l.154-.049l4.847-1.543c-.183.195-.432.468-.746.83c-.748.861-1.872 2.229-3.393 4.274l-.033-.03l-.308-.283l.077.411l.006.03l.005.027l.015.023l.034-.022l-.034.022l.001.001l.001.002a.068.068 0 0 0 .006.009l.022.033a11.7 11.7 0 0 0 .409.555c.278.353.674.818 1.151 1.261c.475.442 1.034.868 1.637 1.137c.604.27 1.259.386 1.918.197c.241-.07.507-.181.792-.323c.996.547 2.289 1.08 3.717 1.23l.348.036l-.228-.265l-.001-.001l-.002-.002a.082.082 0 0 1-.008-.009l-.032-.038a23.712 23.712 0 0 1-1.652-2.23l.386-.251l1.987.73l.212.078l-.026-.225l-.202-1.722l1.823.67l.218.08l-.033-.23l-.236-1.653c.225-.116.447-.226.67-.328l.06-.027l.017-.063l2.084-7.884l8.256-5.631l-.521 1.311v.001c-.869 2.136-2.117 3.453-3.145 4.236c-.514.392-.974.65-1.304.809c-.165.08-.297.135-.388.17c-.045.018-.08.03-.103.038l-.026.009l-.003-.002l-.004.001h-.001l-.004.001l-.004.002l-1.379.523l-.034.013l-.023.027l-.16.188c-.429.502-.762.891-1.02 1.57c-.288.754-.485 1.863-.661 3.897l-.017.194l.189-.048c.812-.204 1.576-.25 2.261-.065c1.804.486 3.024 1.818 3.67 3.186c.323.684.501 1.372.537 1.961c.037.594-.071 1.062-.288 1.332c-.236.291-.803.798-1.537 1.407h-1.592l-.002.137l-.019 1.153l-.001.001a2.79 2.79 0 0 0-.064.05H85.4l-.002.137l-.017 1.122l-.193.145l-.117.088c-.674.001-1.443-.286-2.061-.588a9.619 9.619 0 0 1-.994-.561l-.059-.039l-.015-.01l-.003-.002h-.001l-.001-.001l-.217-.151v.264c0 .6.247 1.346.486 1.93c.12.294.24.553.33.737c.045.092.083.166.109.217l.001.001l-.057.041l.122.081l.039.073l.041-.019l.011.007l.128.081a14.749 14.749 0 0 0 2.078 1.067c.639.264 1.358.5 2.075.609c.715.109 1.438.093 2.074-.157c.552-.217 1.315-.657 2.216-1.22c.619-.387 1.308-.836 2.045-1.316l1.041-.676c2.264-1.464 4.849-3.076 7.243-4.112l14.563-3.837l.069-.018l.026-.066l1.921-4.979l.098-.254l-.263.069l-10.932 2.88v-4.184l12.928-3.406l.069-.018l.026-.066l1.921-4.979l.098-.254l-.263.069l-14.775 3.893v-4.186l16.767-4.418l.069-.018l.026-.066l1.79-4.636l.016-.042l-.012-.044l-.078-.287l-.036-.133l-.133.035l-17.356 4.573c.802-1.265 1.079-2.402 1.149-3.246a5.244 5.244 0 0 0-.017-1.081a3.362 3.362 0 0 0-.075-.397l-.002-.006l-.001-.002v-.001zm0 0l-.075-.117l.156-.099l.052.177zM97.574 60.615l3.252-.857l-1.034 2.68l-3.252.858zm2.019 3.067l-1.034 2.682l-3.252.858l1.035-2.682zm4.669-1.002l-1.034 2.682l-3.252.858l1.035-2.682z\\\"/><path fill=\\\"#fff\\\" d=\\\"M87.883 82.591a5.43 5.43 0 0 1-.822-.066c-.642-.098-1.351-.306-2.107-.618a14.962 14.962 0 0 1-2.098-1.077l-.076-.048l-.091.043l-.085-.158l-.261-.173l.124-.088l-.057-.114c-.083-.17-.208-.438-.334-.746c-.329-.806-.496-1.472-.496-1.982v-.529l.453.312l.057.038a9.75 9.75 0 0 0 .98.553c.525.256 1.285.561 1.954.573l.035-.026l.044-.033l.138-.104l.021-1.328h1.682l.022-1.34h1.678c.776-.644 1.273-1.1 1.479-1.355c.197-.244.291-.695.257-1.236c-.037-.594-.223-1.272-.524-1.91a6.157 6.157 0 0 0-1.37-1.881a5.243 5.243 0 0 0-2.211-1.23c-.626-.169-1.343-.147-2.191.066l-.378.095l.034-.389c.173-2.002.367-3.142.669-3.934c.267-.702.61-1.103 1.045-1.611l.041-.049l.118-.139l.047-.055l.067-.025l1.387-.526l.014-.005a.227.227 0 0 0 .022-.008l.098-.036c.081-.031.212-.086.378-.166a7.653 7.653 0 0 0 1.28-.795a9.059 9.059 0 0 0 1.607-1.586a10.617 10.617 0 0 0 1.483-2.567v-.003l.011-.024l.352-.886l-7.838 5.346l-2.071 7.834l-.033.127l-.12.055c-.184.085-.373.177-.576.28l.288 2.016l-2.047-.752l.228 1.946l-2.347-.862l-.211.137a24.154 24.154 0 0 0 1.447 1.956l.119.143l.034.04l.003.004l.037.036v.007l.423.492l-.696-.073c-1.209-.127-2.455-.534-3.705-1.212a4.82 4.82 0 0 1-.738.296l-.013.004l-.004.001l-.014.004c-.623.174-1.294.104-1.994-.209c-.544-.243-1.108-.634-1.675-1.162a11.387 11.387 0 0 1-1.492-1.714l-.041-.058l-.003.002l-.074-.113l-.024-.032v-.005l-.009-.013l-.015-.084l-.154-.822l.535.492c1.532-2.053 2.642-3.392 3.308-4.158c.137-.158.269-.308.396-.449l-4.35 1.385l-.307.097l-.092-.563l.202-.152l.089-.067l.366-.275l.439-.33c.53-.398 1.353-1.016 2.259-1.694c1.575-1.18 3.66-2.737 4.649-3.454c.423-.306.874-.925 1.422-1.76l.373-.574c.449-.695.959-1.483 1.555-2.283c.914-1.224 1.842-2.214 2.839-3.026a12.789 12.789 0 0 1 4.201-2.282c2.905-.927 5.014-1.304 7.052-1.261c.816.017 1.56.096 2.348.179l.136.014c.907.095 1.741.176 2.767.199c.947.021 2.049-.147 3.273-.499a22.973 22.973 0 0 0 3.175-1.199a32.043 32.043 0 0 0 3.083-1.624l.184-.113a.57.57 0 0 0 .034-.021l.033-.021l.306-.195l.144.487l-.007.002c.014.065.032.165.048.294c.044.349.05.722.018 1.11c-.085 1.015-.417 2.027-.99 3.012l17.29-4.555l.178.644l-.033.085l-1.841 4.769l-.137.036l-16.664 4.391v3.898l15.126-3.986l-.196.507l-1.973 5.111l-.137.036l-12.824 3.379v3.896l10.758-2.834l.526-.139l-.196.507l-1.973 5.112l-.138.036l-14.553 3.834c-2.34 1.015-4.849 2.569-7.213 4.097c-.339.219-.672.436-.994.646l-.057.037c-.73.475-1.419.924-2.036 1.31c-1.048.656-1.739 1.035-2.239 1.231c-.39.155-.833.232-1.323.232m-5.005-2.076a13 13 0 0 0 .595.357c.364.206.935.508 1.588.778c.735.304 1.422.505 2.042.6c.776.118 1.45.068 2.002-.149c.483-.19 1.16-.562 2.193-1.208c.615-.384 1.303-.833 2.032-1.307l.057-.037c.322-.21.655-.427.995-.646c2.377-1.537 4.902-3.101 7.263-4.123l.01-.004l.01-.003l14.563-3.837l1.921-4.979l-11.106 2.926v-4.471l13.032-3.433L121.997 56l-14.949 3.939v-4.473l16.871-4.445l1.79-4.636l-.078-.287l-17.698 4.663l.19-.299c.659-1.04 1.039-2.111 1.128-3.183a5.18 5.18 0 0 0-.016-1.052a3.216 3.216 0 0 0-.04-.249l-.092.027l-.056-.088l-.001-.001l-.02.012l-.016.091l-.081-.012l-.006-.016l-.011.006a32.187 32.187 0 0 1-3.111 1.639a23.305 23.305 0 0 1-3.214 1.213c-1.251.36-2.381.531-3.356.51a31.913 31.913 0 0 1-2.79-.2l-.136-.014c-.782-.082-1.52-.16-2.324-.177c-2.006-.042-4.088.331-6.962 1.248a12.334 12.334 0 0 0-4.11 2.232c-.979.797-1.892 1.771-2.792 2.977a39.962 39.962 0 0 0-1.545 2.268c-.128.199-.253.392-.374.576c-.581.885-1.033 1.5-1.491 1.832c-.988.716-3.072 2.272-4.646 3.451c-.906.678-1.728 1.296-2.258 1.694l-.439.33l-.366.275l-.089.067l-.066.049l-.003-.004l.014.085l5.356-1.705l-.365.389c-.225.24-.475.518-.743.827c-.676.778-1.812 2.149-3.387 4.266l-.092.123l-.085-.077v.056l.056.081a11.06 11.06 0 0 0 1.455 1.671c.545.507 1.083.881 1.599 1.112c.641.286 1.25.351 1.81.194l.018-.009h.013c.218-.065.47-.169.75-.308l.065-.032l.064.035c1.227.674 2.449 1.081 3.631 1.21v-.036l-.01-.011a25.235 25.235 0 0 1-.543-.673a21.866 21.866 0 0 1-1.12-1.571l-.075-.117l.116-.075l.386-.25l.058-.038l2.053.754l-.229-1.947l2.035.748l-.25-1.751l.088-.045c.24-.124.461-.232.675-.331l2.098-7.934l8.674-5.916l-.679 1.709v.004l-.011.025a10.906 10.906 0 0 1-1.531 2.657a9.314 9.314 0 0 1-1.657 1.635c-.54.411-1.02.675-1.327.824a5.906 5.906 0 0 1-.506.215l-.028.01l-.01.003l-1.378.523l-.118.139l-.041.049c-.433.507-.746.873-.996 1.53c-.292.766-.481 1.885-.652 3.859c.895-.225 1.658-.246 2.331-.065a5.513 5.513 0 0 1 2.327 1.294c.584.54 1.08 1.22 1.432 1.967c.316.669.511 1.383.55 2.011c.039.618-.075 1.125-.319 1.428c-.224.277-.734.744-1.557 1.426l-.039.032h-1.505l-.02 1.211l-.057.054l-.007.003l-.009.007l-.044.034l-.038.03h-1.53l-.018 1.19l-.054.041l-.194.146l-.044.033l-.072.054l-.037.028h-.05c-.405 0-1.1-.105-2.119-.602a9.675 9.675 0 0 1-1.009-.57l-.061-.04l-.02-.013c0 .467.164 1.116.475 1.877c.123.301.246.562.327.729c.032.066.065.13.098.195l.003.003l.01.022l.041.082l.004.003l.002.003l.047.029c.003-.003.008 0 .013.003m12.201-13.09l1.158-3.002l3.583-.945l-1.158 3.002zm1.366-2.769l-.911 2.362l2.92-.77l.911-2.362zm3.303 1.767l1.158-3.002l3.583-.945l-1.158 3.002zm1.367-2.77l-.911 2.362l2.92-.77l.911-2.362zm-4.804-.154l1.158-3l3.583-.945l-1.158 3zm1.367-2.768l-.911 2.36l2.92-.77l.911-2.36zM52.467 77.466l-1.664-3.397l.246-.123c.762-.382 1.335-.735 1.805-1.109c.635-.522 1.464-1.309 1.825-2.107l.014-.046c.047-.16.076-.258.057-.457L53.577 59.83h-2.863l-2.198 11.447h-4.135l2.261-11.778l.487-2.513l.113-.571c.355-1.865 1.074-3.277 2.196-4.318a4.868 4.868 0 0 1 1.648-.998a5.983 5.983 0 0 1 2.08-.36c1.058 0 1.779.188 2.115.3l.254.085l-.954 3.275l-.274-.092a2.985 2.985 0 0 0-1.025-.156c-.501 0-.939.241-1.303.715c-.321.418-.562.995-.679 1.626l-.052.27h1.986v-.004h4.324v.28l.085 6.706l.006.29l.005.222l.02.945a74.21 74.21 0 0 1 .569-1.797l2.175-6.643h4.214l-4.727 11.377c-1.509 3.519-3.096 6.057-4.72 7.545c-.853.794-1.859 1.415-2.477 1.678zm-8.566-21.833c-.555 0-1.023-.18-1.355-.521c-.377-.387-.567-.956-.549-1.645c.002-1.19.871-2.472 2.275-2.472c.57 0 1.056.19 1.405.55c.378.39.576.954.557 1.589c-.015.744-.265 1.38-.723 1.838a2.252 2.252 0 0 1-1.61.661\\\"/><path fill=\\\"#fff\\\" d=\\\"M35.022 71.505c-1.12 0-1.994-.309-2.599-.917c-.574-.577-.877-1.423-.877-2.444c0-.723.143-1.561.263-2.139l1.166-6.177h-1.628l.593-3.068h1.628l.561-2.834l4.302-1.025l-.731 3.86h7.824l-2.79 14.516h-4.135l2.2-11.447h-3.69l-1.185 6.252a6.84 6.84 0 0 0-.11 1.121c0 .331.072.569.213.708c.127.124.321.185.595.185c.255 0 .605 0 .925-.054l.381-.064l-.517 3.244l-.175.046c-.747.196-1.616.237-2.214.237m-10.643-.057c-1.368 0-2.552-.396-3.073-.764l-.17-.12l1.028-3.024l.291.16c.507.28 1.155.563 2.113.536c.419-.011.763-.143.994-.38c.219-.225.335-.54.335-.912c0-.662-.312-1.133-1.236-1.867l-.002-.002c-1.208-.978-1.873-2.261-1.873-3.612c0-1.354.527-2.594 1.483-3.493a5.069 5.069 0 0 1 1.721-1.055a6.416 6.416 0 0 1 2.242-.383c1.144 0 2.125.195 2.761.548l.195.108l-.934 3.147l-.304-.173a3.342 3.342 0 0 0-1.517-.392c-.493 0-.901.122-1.177.353c-.261.218-.399.533-.399.911c0 .576.307.933.951 1.467c1.905 1.457 2.189 3.051 2.189 3.872c0 1.571-.542 2.872-1.566 3.764c-.987.858-2.387 1.311-4.052 1.311m-2.171-14.236l-.214-.086c-.91-.364-2.35-.591-3.757-.591c-1.467 0-2.792.351-3.939 1.043c-1.018.614-1.892 1.493-2.597 2.612c-.619.982-1.096 2.124-1.416 3.395a14.284 14.284 0 0 0-.432 3.447c0 1.304.277 2.402.801 3.175c.576.85 1.442 1.3 2.503 1.3c.646 0 1.317-.22 1.939-.636c.503-.337.972-.795 1.399-1.368l-.023.432c-.015.27-.029.528-.041.784h-.011v.28l.278.005v.271h3.367l-.006-.283c-.03-1.515.234-4.22.565-5.789zm-5.413 6.882c-.247 1.221-.591 2.237-.995 2.938c-.364.631-.765.978-1.13.978c-.301 0-.481-.127-.602-.423c-.157-.384-.176-.988-.176-1.409c.014-.932.309-2.586.924-4.018c.319-.743.681-1.329 1.076-1.742c.427-.447.88-.673 1.349-.673c.119 0 .26.011.413.033zm-10.66 7.183H2l2.261-11.778l.6-3.083c.355-1.864 1.073-3.277 2.196-4.318a4.868 4.868 0 0 1 1.648-.998a5.983 5.983 0 0 1 2.08-.36c1.058 0 1.779.188 2.115.3l.254.085l-.954 3.274l-.274-.092a2.985 2.985 0 0 0-1.025-.156c-.501 0-.939.241-1.303.715c-.321.418-.562.995-.679 1.626l-.052.27h2.713l-.593 3.068H8.332z\\\"/><path d=\\\"m47.516 56.469l-.113.571l-.487 2.513L44.718 71h3.569l2.198-11.447h3.341l1.201 10.645c.025.255-.017.396-.067.565l-.018.063c-.343.771-1.112 1.569-1.912 2.227c-.571.456-1.227.826-1.855 1.141l1.427 2.913c.6-.256 1.569-.856 2.398-1.627c1.712-1.569 3.282-4.252 4.653-7.451l4.566-10.99H60.62l-2.112 6.452c-.485 1.484-.771 2.427-1.056 3.569h-.057c.026-.888.007-1.735-.017-2.797l-.011-.514l-.085-6.709v-.004h-3.739v.004h-2.63l.115-.598c.228-1.227.971-2.568 2.255-2.568c.458 0 .771.056 1.114.17l.799-2.74c-.428-.143-1.114-.285-2.027-.285c-1.427 0-2.683.485-3.539 1.284c-1.171 1.082-1.799 2.511-2.114 4.166m-3.244-5.196c-1.256 0-1.997 1.171-1.997 2.198c-.028 1.056.485 1.884 1.627 1.884c1.056 0 2.027-.8 2.055-2.227c.029-.971-.514-1.855-1.685-1.855m-3.136 8.279l-2.2 11.447h3.569l2.683-13.96h-7.823l.713-3.769l-3.711.884l-.571 2.883h-1.627l-.485 2.513h1.627l-1.228 6.509c-.143.686-.258 1.456-.258 2.085c0 1.884 1.058 3.083 3.198 3.083c.686 0 1.486-.056 2.142-.228l.428-2.683c-.343.057-.713.057-.971.057c-.658 0-1.086-.315-1.086-1.171c0-.258.03-.686.115-1.171l1.228-6.48zM22.32 67.944c.571.315 1.256.598 2.255.571c1.028-.028 1.599-.686 1.599-1.569c0-.771-.371-1.314-1.342-2.085c-1.199-.971-1.77-2.198-1.77-3.396c0-2.57 1.997-4.653 5.168-4.653c1.228 0 2.112.228 2.626.513l-.771 2.598a3.639 3.639 0 0 0-1.655-.428c-1.141 0-1.855.598-1.855 1.542c0 .713.4 1.141 1.056 1.684c1.569 1.199 2.085 2.568 2.085 3.654c0 3.083-2.142 4.795-5.338 4.795c-1.284 0-2.427-.371-2.913-.713zm-4.084-11.131c-5.994 0-8.107 5.994-8.107 10.219c0 2.455.999 4.197 3.026 4.197c1.114 0 2.455-.713 3.569-2.57h.085c-.028.826-.085 1.598-.113 2.338h3.083c-.03-1.512.228-4.225.571-5.852l1.54-7.762c-.856-.342-2.255-.57-3.654-.57m-1.169 7.336c-.513 2.54-1.427 4.139-2.398 4.139c-.884 0-1.056-.884-1.056-2.112c.03-2.057 1.286-6.709 3.626-6.709c.198 0 .456.028.741.085zM4.534 59.552l.6-3.083c.315-1.655.943-3.083 2.112-4.167c.856-.799 2.112-1.284 3.539-1.284c.913 0 1.599.143 2.027.285l-.799 2.74a3.242 3.242 0 0 0-1.114-.17c-1.284 0-2.027 1.342-2.255 2.568l-.115.598h2.713l-.485 2.513H8.103L5.905 70.999H2.336z\\\"/>\"\n\t\t},\n\t\t\"faunadb\": {\n\t\t\t\"body\": \"<path fill=\\\"#3a1ab6\\\" d=\\\"M95.063 26.91c-7.778 2.652-11.52 7.399-14.07 14.8c-.657 1.977-2.305 4.165-4.153 5.638l6.375 6.976l-20.238-14.46L7.109 0s4.036 26.742 5.43 36.582c.988 6.934 2.676 10.05 8.024 13.203l2.14 1.172l9.215 4.965l-5.477-2.902l25.262 14.09l-.164.378l-27.191-12.87c1.441 5.046 4.234 14.76 5.43 19.05c1.277 4.621 2.718 6.309 7.117 7.945L45 84.641l5.016-2.016l-6.375 4.328l-31.883 41.332c21.187-20.101 39.12-27.25 52.246-33.094c16.742-7.402 26.82-12.152 33.402-29.226c4.692-11.98 8.352-27.328 13-33.254l9.914-12.953s-20.527 5.55-25.257 7.148Zm0 0\\\"/>\"\n\t\t},\n\t\t\"faunadb-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#3a1ab6\\\" d=\\\"M0 47.059s1.066 7.078 1.438 9.683c.261 1.836.707 2.66 2.12 3.496l.57.309l2.438 1.316l-1.449-.77l6.688 3.727l-.043.102l-7.2-3.406c.383 1.336 1.122 3.906 1.438 5.043c.336 1.222.719 1.668 1.883 2.101l2.148.805l1.324-.535l-1.687 1.144L1.23 81.016c5.606-5.32 10.356-7.211 13.832-8.758c4.43-1.957 7.098-3.219 8.84-7.735c1.243-3.171 2.211-7.234 3.442-8.804l2.625-3.426s-5.434 1.469-6.688 1.89c-2.058.7-3.05 1.958-3.722 3.919c-.176.523-.61 1.101-1.102 1.492l1.688 1.847l-5.36-3.832Zm47.848 5.363c-4.02 0-7.438 3.008-7.438 7.07v1.235h-2.332v3.039h2.332v15.457h3.942V63.777h4.824v-3.039h-4.824v-1.234c0-1.816 1.406-3.375 3.496-3.375c.359 0 .718.043 1.047.168l.921-3.629c-.359-.121-1.164-.246-1.968-.246m52.05 8.094a6.867 6.867 0 0 0-5.511 2.714v-2.503h-3.899V79.19h3.899V68.473c0-1.817 1.656-4.688 4.867-4.688c2.418 0 4.305 1.938 4.305 4.445v10.973h3.894V68.484c0-4.308-2.851-7.968-7.555-7.968m-41.16.011c-4.988 0-8.765 4.106-8.765 9.45c0 5.296 3.777 9.449 8.754 9.457c2.535 0 4.78-1.403 6.152-3.493v3.282h3.941V60.738h-3.933v3.282c-1.328-2.094-3.578-3.493-6.149-3.493m59.246 0c-4.988 0-8.765 4.106-8.765 9.45c0 5.296 3.777 9.449 8.765 9.457c2.536 0 4.782-1.403 6.153-3.493v3.282h3.941V60.738h-3.941v3.282c-1.328-2.094-3.582-3.493-6.153-3.493m-46.629.207v10.72c0 4.308 2.81 7.972 7.547 7.991c2.297 0 4.27-1.113 5.512-2.715v2.504h3.898V60.746h-3.898v10.719c0 1.937-1.723 4.683-4.902 4.683c-2.492 0-4.258-2.054-4.258-4.437V60.734ZM59.38 63.61c3.137 0 5.508 2.84 5.508 6.368c0 4.183-2.938 6.363-5.508 6.363c-3.016 0-5.469-2.79-5.469-6.363c0-3.497 2.453-6.368 5.469-6.368m59.246 0c3.137 0 5.512 2.84 5.512 6.368c0 4.183-2.942 6.363-5.512 6.363c-3.016 0-5.465-2.79-5.465-6.363c0-3.497 2.45-6.368 5.465-6.368m0 0\\\"/>\"\n\t\t},\n\t\t\"feathersjs\": {\n\t\t\t\"body\": \"<path fill=\\\"#333\\\" d=\\\"M64 4.55c32.832 0 59.45 26.618 59.45 59.45c0 32.832-26.618 59.45-59.45 59.45c-32.832 0-59.45-26.618-59.45-59.45C4.55 31.168 31.169 4.55 64 4.55M64 0C28.71 0 0 28.71 0 64s28.71 64 64 64s64-28.71 64-64S99.29 0 64 0m10.414 12.762c-5.215-.95-17.824 18.203-21.996 29.867c-.316.883-1.043 4.125-1.043 4.976c0 0 3.266 7.028 4.172 8.676c-1.516-.789-4.66-6.879-4.66-6.879c-1.52 2.895-2.973 16.172-2.5 18.637c0 0 3.383 5.031 4.695 6.29c-1.8-.602-4.836-4.677-4.836-4.677c-.57 1.754-.457 5.403-.191 6.637c2.277 3.316 5.312 3.695 5.312 3.695s-3.32 33.094 1.707 35.559c3.13-.664 3.887-36.98 3.887-36.98s3.793.285 4.644-.665c1.93-1.324 6.415-15.109 6.48-17.097c0 0-5.206.972-7.745 1.96c1.914-1.902 8.027-3.175 8.027-3.175c1.656-1.992 5.145-15.523 5.496-19.695c.086-1.047.293-2.328.133-4.2c0 0-4.969 1.086-6.008.711c1.055-.117 6.133-2.07 6.133-2.07c.902-8.105 1.18-21.047-1.707-21.57M56.227 98.609c-.399 9.746-.649 12.5-1.059 14.797c-.191.43-.379.5-.57-.047c-1.739-7.996-1.61-68.218 18.207-95.62c-11.528 21.046-16.77 61.433-16.578 80.87m0 0\\\"/>\"\n\t\t},\n\t\t\"fedora\": {\n\t\t\t\"body\": \"<path fill=\\\"#294172\\\" d=\\\"M127.82 64.004C127.82 28.754 99.246.18 64 .18C28.766.18.203 28.73.18 63.957v49.39c.02 7.997 6.504 14.473 14.508 14.473h49.335c35.239-.015 63.797-28.578 63.797-63.816\\\"/><path fill=\\\"none\\\" stroke=\\\"#3c6eb4\\\" stroke-width=\\\"14.003\\\" d=\\\"M36.973 68.12H59.91v22.94c0 12.66-10.273 22.937-22.937 22.937c-12.66 0-22.934-10.277-22.934-22.937c0-12.66 10.274-22.938 22.934-22.938zm0 0\\\"/><path fill=\\\"none\\\" stroke=\\\"#3c6eb4\\\" stroke-width=\\\"14.003\\\" d=\\\"M82.738 68.164H59.801V45.231c0-12.66 10.277-22.938 22.937-22.938c12.66 0 22.938 10.274 22.938 22.938c0 12.66-10.278 22.933-22.938 22.933zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M66.926 61.137v29.89c0 16.54-13.41 29.953-29.95 29.953c-2.511 0-4.296-.285-6.617-.89c-3.39-.887-6.156-3.664-6.16-6.895c0-3.906 2.836-6.746 7.074-6.746c2.016 0 2.747.387 5.704.387c8.718 0 15.793-7.063 15.808-15.785V77.312c0-1.23-1-2.23-2.234-2.226l-10.387-.004c-3.867 0-6.996-3.086-6.996-6.965c0-3.906 3.16-6.98 7.07-6.98\\\"/><path fill=\\\"#fff\\\" d=\\\"M52.785 75.148V45.262c0-16.543 13.41-29.953 29.953-29.953c2.508 0 4.293.28 6.617.89c3.387.887 6.157 3.664 6.157 6.895c0 3.906-2.836 6.746-7.07 6.746c-2.02 0-2.75-.387-5.704-.387c-8.722 0-15.797 7.063-15.812 15.781v13.743a2.235 2.235 0 0 0 2.234 2.226l10.387.004c3.871 0 6.996 3.086 6.996 6.965c.004 3.906-3.16 6.98-7.07 6.98\\\"/><path fill=\\\"#3c6eb4\\\" d=\\\"M116.809 116.773v-2.652l-1.211 2.781l-1.18-2.78v2.651h-.68v-4.187h.711l1.168 2.676l1.149-2.676h.722v4.187zm-4.954-3.484v3.484h-.71v-3.484h-1.192v-.703h3.09v.703\\\"/>\"\n\t\t},\n\t\t\"figma\": {\n\t\t\t\"body\": \"<path fill=\\\"#0acf83\\\" d=\\\"M45.5 129c11.9 0 21.5-9.6 21.5-21.5V86H45.5C33.6 86 24 95.6 24 107.5S33.6 129 45.5 129m0 0\\\"/><path fill=\\\"#a259ff\\\" d=\\\"M24 64.5C24 52.6 33.6 43 45.5 43H67v43H45.5C33.6 86 24 76.4 24 64.5m0 0\\\"/><path fill=\\\"#f24e1e\\\" d=\\\"M24 21.5C24 9.6 33.6 0 45.5 0H67v43H45.5C33.6 43 24 33.4 24 21.5m0 0\\\"/><path fill=\\\"#ff7262\\\" d=\\\"M67 0h21.5C100.4 0 110 9.6 110 21.5S100.4 43 88.5 43H67zm0 0\\\"/><path fill=\\\"#1abcfe\\\" d=\\\"M110 64.5c0 11.9-9.6 21.5-21.5 21.5S67 76.4 67 64.5S76.6 43 88.5 43S110 52.6 110 64.5m0 0\\\"/>\"\n\t\t},\n\t\t\"filezilla\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconFilezilla0\\\" x1=\\\"187.947\\\" x2=\\\"187.947\\\" y1=\\\"123.859\\\" y2=\\\"258.865\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#bf0000\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#8f0000\\\"/></linearGradient><linearGradient id=\\\"deviconFilezilla1\\\" x1=\\\"187.947\\\" x2=\\\"187.947\\\" y1=\\\"123.859\\\" y2=\\\"258.865\\\" gradientTransform=\\\"matrix(.73244 0 0 .73242 -73.663 -75.173)\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconFilezilla0\\\"/></defs><path fill=\\\"url(#deviconFilezilla1)\\\" d=\\\"M0 4.286v5.65a4.29 4.29 0 0 1 4.286 4.286A4.29 4.29 0 0 1 0 18.508v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 32.729v5.65a4.291 4.291 0 0 1 4.286 4.288A4.291 4.291 0 0 1 0 46.955v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 61.176v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 75.398v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 89.619v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 103.84v5.65a4.29 4.29 0 0 1 4.286 4.285A4.29 4.29 0 0 1 0 118.062v5.653a4.31 4.31 0 0 1 3.03 1.255A4.315 4.315 0 0 1 4.287 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 18.507 128h5.651a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 32.729 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 46.951 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 61.173 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 75.395 128h5.65a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 89.616 128h5.651a4.29 4.29 0 0 1 4.286-4.285a4.29 4.29 0 0 1 4.285 4.285h5.651a4.29 4.29 0 0 1 4.286-4.285A4.29 4.29 0 0 1 118.06 128h5.654a4.31 4.31 0 0 1 1.256-3.03a4.31 4.31 0 0 1 3.03-1.255v-5.65a4.29 4.29 0 0 1-4.286-4.287a4.29 4.29 0 0 1 4.286-4.284v-5.65a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 95.272v-5.65a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 81.05V75.4a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 66.83v-5.65a4.29 4.29 0 0 1-4.286-4.287A4.29 4.29 0 0 1 128 52.608v-5.65a4.291 4.291 0 0 1-4.286-4.288A4.291 4.291 0 0 1 128 38.383v-5.651a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 24.16v-5.65a4.29 4.29 0 0 1-4.286-4.286A4.29 4.29 0 0 1 128 9.94V4.286a4.315 4.315 0 0 1-3.03-1.254A4.316 4.316 0 0 1 123.714 0h-5.651a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 109.492 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 95.27 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 81.048 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 66.826 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 52.605 0h-5.651a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 38.383 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 24.16 0h-5.65a4.29 4.29 0 0 1-4.286 4.286A4.29 4.29 0 0 1 9.939 0H4.286A4.321 4.321 0 0 1 3.03 3.032A4.32 4.32 0 0 1 0 4.286\\\"/><path fill=\\\"#fff\\\" d=\\\"M109.04 51.217H45.167l3.334-15.596h38.93L91 18.836H35.047l-17.62 83.096h16.906l7.737-36.31h40.549l-35.234 34.88l6.19 10.952c2.857-1.904 7.5-2.143 10.714-2.143c5.716 0 11.31 1.906 17.142 1.906c5.348 0 10.822-.357 19.752-4.643l3.12-14.643c-6.072 2.5-15.057 4.881-22.872 4.881c-3.212 0-6.189-.714-9.284-1.19l34.154-33.214z\\\"/>\"\n\t\t},\n\t\t\"filezilla-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconFilezillaWordmark0\\\" x1=\\\"187.947\\\" x2=\\\"187.947\\\" y1=\\\"123.859\\\" y2=\\\"258.865\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#bf0000\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#8f0000\\\"/></linearGradient><linearGradient id=\\\"deviconFilezillaWordmark1\\\" x1=\\\"187.947\\\" x2=\\\"187.947\\\" y1=\\\"123.859\\\" y2=\\\"258.865\\\" gradientTransform=\\\"translate(-14.382 36.828)scale(.143)\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconFilezillaWordmark0\\\"/><clipPath id=\\\"deviconFilezillaWordmark2\\\" clipPathUnits=\\\"userSpaceOnUse\\\"><path d=\\\"M139.205 111.41a1.083 1.083 0 0 0-1.082 1.082v57.123a1.083 1.083 0 0 0 1.082 1.082h6.25a1.083 1.083 0 0 0 1.082-1.082v-57.123a1.083 1.083 0 0 0-1.082-1.082zm125.12 0a1.083 1.083 0 0 0-1.083 1.082v57.123a1.083 1.083 0 0 0 1.082 1.082h6.252a1.083 1.083 0 0 0 1.082-1.082v-57.123a1.083 1.083 0 0 0-1.082-1.082zm19.833 0a1.083 1.083 0 0 0-1.082 1.082v57.123a1.083 1.083 0 0 0 1.082 1.082h6.25a1.083 1.083 0 0 0 1.082-1.082v-57.123a1.083 1.083 0 0 0-1.082-1.082zm-202.451 2.926a1.083 1.083 0 0 0-1.082 1.082v5.975a1.083 1.083 0 0 0 .303.302v47.598a1.083 1.083 0 0 0 1.082 1.082h6.31a1.083 1.083 0 0 0 1.082-1.082v-23.342h19.686a1.083 1.083 0 0 0 1.082-1.082v-5.621a1.083 1.083 0 0 0-1.082-1.082H89.402v-15.691h21.649a1.083 1.083 0 0 0 1.082-1.082v-5.975a1.083 1.083 0 0 0-1.082-1.082zm152.852.074l-.838.135h-35.252a1.083 1.083 0 0 0-1.082 1.082v5.684a1.083 1.083 0 0 0 1.082 1.082h25.707L194.71 164.97a1.083 1.083 0 0 0-.191.62l.019 4.26a1.083 1.083 0 0 0 .943.971a1.083 1.083 0 0 0 .319.24h39.443a1.083 1.083 0 0 0 1.082-1.082v-6.105a1.083 1.083 0 0 0-1.082-1.082H206.41l29.45-42.885a1.083 1.083 0 0 0 .187-.68l-.236-3.816a1.083 1.083 0 0 0-1.252-1.002zm-111.936.102c-2.802 0-5.096 2.295-5.096 5.097c.001 2.802 2.295 5.095 5.096 5.096c2.802 0 5.097-2.293 5.098-5.096c0-2.803-2.295-5.098-5.098-5.097m125.121 0c-2.803 0-5.098 2.294-5.098 5.097c.001 2.803 2.296 5.097 5.098 5.096c2.802 0 5.097-2.293 5.098-5.096c0-2.803-2.295-5.098-5.098-5.097m-73.402 13.478c-3.715 0-8.003 1.08-11.65 3.574c-3.648 2.495-6.628 6.456-7.532 12.014c-.39 2.397-1.09 9.02.123 14.07c.936 3.899 3.78 8.619 9.059 11.487c5.278 2.868 12.928 3.787 23.217.236a1.083 1.083 0 0 0 .724-1.12l-.449-5.1a1.083 1.083 0 0 0-1.379-.944c-9.715 2.814-15.376 1.828-18.658-.582c-2.964-2.176-4.154-5.69-4.526-9.244h26.061c.617 0 1.06-.428 1.266-.76c.206-.332.308-.663.392-1.039c.17-.751.23-1.683.2-2.787c-.062-2.208-.516-5.076-1.561-7.977c-1.045-2.9-2.686-5.836-5.178-8.078c-2.491-2.241-5.856-3.75-10.11-3.75zm142.228.16c-5.795-.086-11.332 2.046-13.64 3.45a1.083 1.083 0 0 0-.399.425c-.552 1.063-.33 2.153-.054 3.227c.274 1.074.71 2.149 1.093 2.998a1.083 1.083 0 0 0 1.594.451c3.75-2.544 8.276-3.767 11.602-3.064c1.662.35 3.018 1.135 4.005 2.472c.906 1.228 1.459 3.048 1.543 5.46c-4.425.18-9.807.789-14.41 2.865c-4.973 2.243-8.978 6.362-8.916 12.957a1.083 1.083 0 0 0 0 .017c.168 6.528 5.117 11.604 11.51 12.24c3.555.355 8.651-.697 12.89-4.91l.641 2.729a1.083 1.083 0 0 0 .332.558c1.091.978 2.545 1.014 3.96.979a11.78 11.78 0 0 0 2.015-.219c.617-.125 1.139-.264 1.633-.584a1.083 1.083 0 0 0 .353-1.44c-.275-.487-.645-2.03-.843-4.007c-.2-1.977-.297-4.437-.336-7.05c-.08-5.228.072-11.072.072-15.124a1.083 1.083 0 0 0-.006-.117c-.582-5.36-2.54-8.991-5.258-11.227c-2.717-2.235-6.097-3.037-9.38-3.086zm-197.238 1.395a1.083 1.083 0 0 0-1.082 1.082v39.154a1.083 1.083 0 0 0 1.082 1.082h6.584a1.083 1.083 0 0 0 1.082-1.082v-39.154a1.083 1.083 0 0 0-1.082-1.082zm125.12 0a1.083 1.083 0 0 0-1.083 1.082v39.154a1.083 1.083 0 0 0 1.082 1.082h6.586a1.083 1.083 0 0 0 1.082-1.082v-39.154a1.083 1.083 0 0 0-1.082-1.082zm-71.024 6.086c3.232 0 5.382 1.74 6.726 3.986c1.175 1.962 1.476 4.195 1.293 5.697h-17.779c1.51-7.237 6.296-9.683 9.76-9.683m145.203 15.26c1.324-.024 2.677.193 4.008.47l.12 3.453c-.112 1.77-.371 3.901-1.527 5.598c-1.162 1.707-3.212 3.134-7.505 3.402c-2.292.144-3.603-.546-4.442-1.466c-.838-.92-1.184-2.176-1.166-3.125c.055-2.807 1.242-4.756 3.137-6.141c1.894-1.385 4.548-2.14 7.375-2.191\\\"/></clipPath><filter id=\\\"deviconFilezillaWordmark3\\\" width=\\\"1.019\\\" height=\\\"1.08\\\" x=\\\"-.01\\\" y=\\\"-.04\\\"><feGaussianBlur stdDeviation=\\\".996\\\"/></filter></defs><path fill=\\\"url(#deviconFilezillaWordmark1)\\\" d=\\\"M0 52.341v1.104a.838.838 0 0 1 0 1.673v1.103a.838.838 0 0 1 0 1.674v1.103a.838.838 0 0 1 0 1.674v1.103a.837.837 0 0 1 0 1.674v1.103a.837.837 0 0 1 0 1.673v1.104a.837.837 0 0 1 0 1.673v1.103a.837.837 0 0 1 0 1.673v1.104a.837.837 0 0 1 0 1.673v1.104c.22 0 .436.089.592.245a.842.842 0 0 1 .245.591H1.94a.837.837 0 0 1 1.673 0h1.104a.837.837 0 0 1 1.673 0h1.103a.837.837 0 0 1 1.674 0h1.103a.837.837 0 0 1 1.673 0h1.104a.837.837 0 0 1 1.673 0h1.103a.837.837 0 0 1 1.674 0H18.6a.837.837 0 0 1 1.674 0h1.103a.837.837 0 0 1 1.673 0h1.104c0-.22.09-.436.245-.591a.841.841 0 0 1 .592-.245v-1.103a.838.838 0 0 1 0-1.674V71.78a.838.838 0 0 1 0-1.673v-1.104a.838.838 0 0 1 0-1.673v-1.103a.838.838 0 0 1 0-1.674V63.45a.838.838 0 0 1 0-1.673v-1.103a.838.838 0 0 1 0-1.675v-1.103a.838.838 0 0 1 0-1.673V55.12a.838.838 0 0 1 0-1.674v-1.104a.843.843 0 0 1-.592-.245a.843.843 0 0 1-.245-.591h-1.103a.838.838 0 0 1-1.674 0h-1.103a.838.838 0 0 1-1.673 0h-1.104a.838.838 0 0 1-1.673 0h-1.103a.838.838 0 0 1-1.674 0h-1.103a.838.838 0 0 1-1.673 0H9.167a.838.838 0 0 1-1.673 0H6.39a.838.838 0 0 1-1.674 0H3.614a.838.838 0 0 1-1.673 0H.837c0 .22-.09.436-.245.591a.844.844 0 0 1-.592.245Z\\\"/><path fill=\\\"#fff\\\" d=\\\"M21.29 61.504H8.818l.65-3.045h7.601l.697-3.277H6.843l-3.44 16.224h3.3l1.51-7.09h7.918l-6.88 6.81l1.21 2.14c.557-.373 1.463-.42 2.091-.42c1.116 0 2.208.373 3.347.373c1.044 0 2.113-.07 3.856-.907l.61-2.859c-1.186.488-2.94.953-4.466.953c-.627 0-1.209-.14-1.813-.232l6.668-6.485z\\\"/><path fill=\\\"#bb0001\\\" d=\\\"M52.061 52.107a.425.425 0 0 0-.425.425v22.446a.425.425 0 0 0 .425.426h2.456a.425.425 0 0 0 .425-.426V52.532a.425.425 0 0 0-.425-.425Zm49.165 0a.425.425 0 0 0-.426.425v22.446a.425.425 0 0 0 .426.426h2.456a.425.425 0 0 0 .425-.426V52.532a.425.425 0 0 0-.425-.425zm7.793 0a.425.425 0 0 0-.425.425v22.446a.425.425 0 0 0 .425.426h2.456a.425.425 0 0 0 .425-.426V52.532a.425.425 0 0 0-.425-.425zm-79.551 1.15a.425.425 0 0 0-.425.425v2.348a.425.425 0 0 0 .119.119v18.703a.425.425 0 0 0 .425.425h2.48a.425.425 0 0 0 .425-.425V65.68h7.735a.425.425 0 0 0 .425-.425v-2.21a.425.425 0 0 0-.425-.424h-7.735v-6.166h8.506a.425.425 0 0 0 .425-.425v-2.348a.425.425 0 0 0-.425-.425Zm60.061.03l-.329.052H75.348a.425.425 0 0 0-.425.425v2.234a.425.425 0 0 0 .425.425H85.45l-11.578 16.73a.425.425 0 0 0-.076.244l.008 1.674a.425.425 0 0 0 .37.382a.425.425 0 0 0 .126.094h15.499a.425.425 0 0 0 .425-.425v-2.4a.425.425 0 0 0-.425-.424h-11.33L90.04 55.446a.425.425 0 0 0 .073-.267l-.093-1.5a.425.425 0 0 0-.492-.393Zm-43.984.039a2.01 2.01 0 0 0-2.002 2.003c0 1.1.902 2.002 2.002 2.002a2.01 2.01 0 0 0 2.003-2.002a2.009 2.009 0 0 0-2.003-2.003m49.166 0a2.009 2.009 0 0 0-2.003 2.003a2.01 2.01 0 0 0 2.003 2.002a2.01 2.01 0 0 0 2.003-2.002a2.009 2.009 0 0 0-2.003-2.003m-28.843 5.296c-1.46 0-3.145.424-4.578 1.405c-1.433.98-2.604 2.536-2.96 4.72c-.153.942-.428 3.544.049 5.53c.368 1.53 1.485 3.386 3.56 4.513c2.073 1.127 5.08 1.488 9.122.093a.425.425 0 0 0 .285-.44l-.177-2.005a.425.425 0 0 0-.541-.37c-3.818 1.105-6.042.718-7.332-.23c-1.165-.854-1.632-2.235-1.778-3.632h10.24c.242 0 .416-.168.497-.298c.081-.13.121-.26.155-.408c.066-.296.09-.662.078-1.096a10.39 10.39 0 0 0-.613-3.134c-.411-1.14-1.056-2.293-2.035-3.174c-.979-.881-2.3-1.474-3.972-1.474m55.887.063c-2.277-.034-4.453.804-5.36 1.356a.425.425 0 0 0-.156.167c-.217.417-.13.846-.022 1.268c.108.422.28.844.43 1.178a.425.425 0 0 0 .626.177c1.474-1 3.252-1.48 4.559-1.204c.653.138 1.186.446 1.574.971c.356.483.573 1.198.606 2.146c-1.739.07-3.854.31-5.662 1.125c-1.954.882-3.528 2.5-3.503 5.092a.425.425 0 0 0 0 .007c.066 2.565 2.01 4.56 4.522 4.81c1.397.138 3.4-.275 5.065-1.93l.252 1.072a.425.425 0 0 0 .13.22c.43.384 1 .398 1.556.384a4.64 4.64 0 0 0 .792-.086c.243-.049.448-.103.642-.23a.425.425 0 0 0 .139-.565c-.108-.191-.254-.798-.332-1.575c-.078-.777-.116-1.743-.132-2.77c-.03-2.054.029-4.35.029-5.943a.425.425 0 0 0-.002-.046c-.229-2.106-.999-3.533-2.066-4.411c-1.068-.879-2.396-1.194-3.686-1.213zm-77.503.548a.425.425 0 0 0-.425.425v15.386a.425.425 0 0 0 .425.425h2.587a.425.425 0 0 0 .425-.425V59.658a.425.425 0 0 0-.425-.425zm49.165 0a.425.425 0 0 0-.426.425v15.386a.425.425 0 0 0 .426.425h2.588a.425.425 0 0 0 .425-.425V59.658a.425.425 0 0 0-.425-.425zm-27.908 2.392c1.27 0 2.114.684 2.643 1.566c.461.77.58 1.648.508 2.239h-6.986c.593-2.844 2.474-3.805 3.835-3.805m57.056 5.996c.52-.01 1.052.076 1.575.185l.047 1.357c-.044.695-.146 1.532-.6 2.2c-.457.67-1.262 1.23-2.95 1.336c-.9.056-1.415-.215-1.744-.576a1.846 1.846 0 0 1-.459-1.228c.022-1.103.489-1.869 1.233-2.413c.744-.544 1.787-.841 2.898-.861\\\"/><path fill=\\\"#8e0001\\\" d=\\\"M139.205 111.41a1.083 1.083 0 0 0-1.082 1.082v57.123a1.083 1.083 0 0 0 1.082 1.082h2.06v-56.875a1.083 1.083 0 0 1 1.083-1.082h4.19v-.248a1.083 1.083 0 0 0-1.083-1.082zm125.12 0a1.083 1.083 0 0 0-1.083 1.082v57.123a1.083 1.083 0 0 0 1.082 1.082h2.06v-56.875a1.083 1.083 0 0 1 1.083-1.082h4.191v-.248a1.083 1.083 0 0 0-1.082-1.082zm19.833 0a1.083 1.083 0 0 0-1.082 1.082v57.123a1.083 1.083 0 0 0 1.082 1.082h2.06v-56.875a1.083 1.083 0 0 1 1.083-1.082h4.19v-.248a1.083 1.083 0 0 0-1.083-1.082zm-202.451 2.926a1.083 1.083 0 0 0-1.082 1.082v5.975a1.083 1.083 0 0 0 .303.302v47.598a1.083 1.083 0 0 0 1.082 1.082h2.06v-47.35a1.083 1.083 0 0 1-.302-.302v-5.975a1.083 1.083 0 0 1 1.082-1.082h27.283v-.248a1.083 1.083 0 0 0-1.082-1.082zm152.852.074l-.838.135h-35.252a1.083 1.083 0 0 0-1.082 1.082v5.684a1.083 1.083 0 0 0 1.082 1.082h2.06v-5.436a1.083 1.083 0 0 1 1.082-1.082h34.229l-.03-.463a1.083 1.083 0 0 0-1.251-1.002m-111.936.102c-2.802 0-5.096 2.295-5.096 5.097c.001 2.703 2.142 4.913 4.809 5.067c-1.015-.933-1.666-2.258-1.666-3.737c0-2.802 2.293-5.096 5.096-5.097c.098 0 .191.023.289.03c-.91-.836-2.108-1.36-3.432-1.36m125.121 0c-2.803 0-5.098 2.294-5.098 5.097c.001 2.703 2.141 4.912 4.807 5.067c-1.014-.933-1.663-2.259-1.664-3.737c0-2.803 2.295-5.098 5.098-5.097c.099 0 .191.023.289.03c-.91-.836-2.108-1.36-3.432-1.36m-24.488 9.21l-28.545 41.249a1.083 1.083 0 0 0-.191.62l.019 4.26a1.083 1.083 0 0 0 .943.971a1.083 1.083 0 0 0 .319.24h1.88l-.019-4.14a1.083 1.083 0 0 1 .192-.621l29.464-42.578zm-48.914 4.268c-3.715 0-8.003 1.08-11.65 3.574c-3.648 2.495-6.628 6.456-7.532 12.014c-.39 2.397-1.09 9.02.123 14.07c.936 3.899 3.78 8.619 9.059 11.487c.955.52 2.018.945 3.13 1.322c-5.27-2.869-8.11-7.584-9.046-11.478c-1.213-5.052-.513-11.674-.123-14.07c.904-5.56 3.883-9.52 7.531-12.014c3.647-2.495 7.936-3.575 11.65-3.575c1.55 0 2.98.205 4.295.569c-2.08-1.159-4.535-1.899-7.437-1.899m142.228.16c-5.795-.086-11.332 2.046-13.64 3.45a1.083 1.083 0 0 0-.399.425c-.552 1.063-.33 2.153-.054 3.227c.274 1.074.71 2.149 1.093 2.998a1.083 1.083 0 0 0 1.594.451c.308-.21.63-.395.947-.586a15.263 15.263 0 0 1-.492-1.533c-.275-1.074-.497-2.164.055-3.227a1.083 1.083 0 0 1 .398-.425c2.309-1.404 7.846-3.536 13.64-3.45c1.557.024 3.131.233 4.65.666c-2.39-1.402-5.12-1.956-7.792-1.996m-197.238 1.395a1.083 1.083 0 0 0-1.082 1.082v39.154a1.083 1.083 0 0 0 1.082 1.082h2.06v-38.906a1.083 1.083 0 0 1 1.083-1.082h4.523v-.248a1.083 1.083 0 0 0-1.082-1.082zm125.12 0a1.083 1.083 0 0 0-1.083 1.082v39.154a1.083 1.083 0 0 0 1.082 1.082h2.06v-38.906a1.083 1.083 0 0 1 1.083-1.082h4.525v-.248a1.083 1.083 0 0 0-1.082-1.082zm75.13 7.379c.435.338.843.716 1.19 1.185c.906 1.228 1.458 3.048 1.542 5.46c-4.425.18-9.807.789-14.41 2.865c-4.973 2.243-8.978 6.362-8.916 12.957a1.083 1.083 0 0 0 0 .017c.15 5.79 4.067 10.421 9.41 11.842c-3.66-2.122-6.15-5.941-6.267-10.512a1.083 1.083 0 0 1 0-.017c-.062-6.595 3.942-10.714 8.916-12.957c4.602-2.076 9.985-2.685 14.41-2.866c-.085-2.411-.637-4.231-1.543-5.459c-.987-1.337-2.343-2.121-4.006-2.472c-.104-.022-.22-.025-.326-.043m-141.754.137a8.722 8.722 0 0 1 2.326 2.556c1.175 1.962 1.476 4.195 1.293 5.697H167.19c-.128.441-.278.848-.378 1.33h17.779c.183-1.502-.118-3.735-1.293-5.697c-1.162-1.94-2.927-3.497-5.469-3.886zm-85.283 1.105v1.33h17.625v-.248a1.083 1.083 0 0 0-1.082-1.082zm230.125 14.11l.09 2.538c-.113 1.77-.372 3.901-1.528 5.598c-1.162 1.707-3.212 3.134-7.505 3.402c-.438.028-.809 0-1.178-.029c.842.862 2.124 1.497 4.32 1.36c4.294-.27 6.344-1.696 7.506-3.403c1.156-1.697 1.415-3.828 1.527-5.597l-.12-3.454a21.013 21.013 0 0 0-3.112-.416zm-136.215 9.931c-6.733 1.95-11.485 2.05-14.88 1.14c3.14 1.966 8.214 2.696 16.331.622l-.072-.819a1.083 1.083 0 0 0-1.379-.943m24.012.586l-.914 1.33h26.773v-.248a1.083 1.083 0 0 0-1.082-1.082zm116.064 5.275a17.74 17.74 0 0 1-2.23 1.854a1.083 1.083 0 0 0 .06.103c.828.742 1.864.941 2.934.979a1.083 1.083 0 0 1-.123-.207z\\\" clip-path=\\\"url(#deviconFilezillaWordmark2)\\\" filter=\\\"url(#deviconFilezillaWordmark3)\\\" transform=\\\"translate(-2.638 8.33)scale(.39294)\\\"/>\"\n\t\t},\n\t\t\"firebase\": {\n\t\t\t\"body\": \"<path fill=\\\"#ffa000\\\" d=\\\"M17.474 103.276L33.229 2.462a2.91 2.91 0 0 1 5.44-.924l16.294 30.39l6.494-12.366a2.91 2.91 0 0 1 5.15 0l43.97 83.714z\\\"/><path fill=\\\"#f57c00\\\" d=\\\"M71.903 64.005L54.955 31.913l-37.481 71.363Z\\\"/><path fill=\\\"#ffca28\\\" d=\\\"M110.577 103.276L98.51 28.604a2.913 2.913 0 0 0-1.984-2.286a2.906 2.906 0 0 0-2.94.714l-76.112 76.243l42.115 23.618a8.728 8.728 0 0 0 8.51 0l42.478-23.618Z\\\"/><path fill=\\\"#fff\\\" fill-opacity=\\\".2\\\" d=\\\"M98.51 28.604a2.913 2.913 0 0 0-1.984-2.286a2.906 2.906 0 0 0-2.94.713L78.479 42.178L66.6 19.562a2.91 2.91 0 0 0-5.15 0l-6.494 12.365L38.662 1.538A2.91 2.91 0 0 0 35.605.044a2.907 2.907 0 0 0-2.384 2.425L17.474 103.276h-.051l.05.058l.415.204l75.676-75.764a2.91 2.91 0 0 1 4.932 1.571l11.965 74.003l.116-.073zm-80.898 74.534L33.228 3.182A2.91 2.91 0 0 1 35.613.756a2.911 2.911 0 0 1 3.057 1.495l16.292 30.39l6.495-12.366a2.91 2.91 0 0 1 5.15 0L78.245 42.41L17.61 103.138Z\\\"/><path fill=\\\"#a52714\\\" d=\\\"M68.099 126.18a8.728 8.728 0 0 1-8.51 0l-42.015-23.55l-.102.647l42.115 23.61a8.728 8.728 0 0 0 8.51 0l42.48-23.61l-.11-.67l-42.37 23.575z\\\" opacity=\\\".2\\\"/>\"\n\t\t},\n\t\t\"firebase-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M26.994 127.655h-2.032v-15.766h9.231v1.937h-7.199v5.176h6.495v1.892h-6.495zm11.022-13.497a1.442 1.442 0 0 1-1.818.182a1.432 1.432 0 0 1-.533-1.742a1.44 1.44 0 0 1 2.77.547a1.374 1.374 0 0 1-.42 1.013zm0 13.497h-2.033v-10.79h2.033zm4.46 0h-2.03v-10.79h1.942v1.762h.088a2.767 2.767 0 0 1 1.27-1.454a3.642 3.642 0 0 1 1.867-.573a3.884 3.884 0 0 1 1.524.266l-.773 1.892a3.082 3.082 0 0 0-1.082-.155a2.66 2.66 0 0 0-1.957.872c-.567.58-.85 1.34-.85 2.28zm10.226.344c-1.635 0-2.963-.543-3.986-1.63c-1.023-1.085-1.535-2.458-1.536-4.118a5.93 5.93 0 0 1 1.494-4.042a4.838 4.838 0 0 1 3.81-1.696c1.605 0 2.89.521 3.855 1.563c.965 1.043 1.447 2.438 1.446 4.184l-.022.375h-8.55c.058 1.086.423 1.946 1.094 2.58a3.32 3.32 0 0 0 2.352.947c1.457 0 2.444-.617 2.96-1.85l1.81.749a4.84 4.84 0 0 1-1.744 2.102c-.81.557-1.805.836-2.983.836m2.916-7.053c-.044-.617-.327-1.204-.85-1.762c-.524-.557-1.3-.83-2.33-.819a2.92 2.92 0 0 0-1.955.706a3.597 3.597 0 0 0-1.137 1.892zm9.52 7.053a4.61 4.61 0 0 1-2.22-.516a3.746 3.746 0 0 1-1.474-1.325h-.088v1.497h-1.938v-15.766h2.026v4.976l-.088 1.497h.088a3.746 3.746 0 0 1 1.468-1.321a4.612 4.612 0 0 1 2.22-.528c1.398 0 2.606.55 3.623 1.651c1.017 1.101 1.525 2.466 1.523 4.096c0 1.63-.508 2.995-1.523 4.096c-1.016 1.101-2.222 1.649-3.617 1.643m-.331-1.85a3.238 3.238 0 0 0 2.43-1.068c.677-.712 1.016-1.655 1.016-2.83c0-1.174-.34-2.117-1.017-2.83a3.32 3.32 0 0 0-2.432-1.067a3.32 3.32 0 0 0-2.437 1.057c-.67.705-1.006 1.651-1.005 2.84c.001 1.19.336 2.137 1.005 2.84a3.242 3.242 0 0 0 2.44 1.067zM75.452 128c-1.15 0-2.111-.33-2.882-.99c-.77-.662-1.157-1.535-1.16-2.62c0-1.175.457-2.096 1.37-2.764c.914-.667 2.04-1 3.38-1c1.192 0 2.17.22 2.933.66v-.308a2.405 2.405 0 0 0-.818-1.905a2.939 2.939 0 0 0-2.005-.707a3.11 3.11 0 0 0-1.602.419a2.159 2.159 0 0 0-.983 1.145l-1.855-.793c.25-.645.744-1.244 1.48-1.794s1.709-.826 2.916-.826c1.381 0 2.531.402 3.452 1.204c.92.803 1.377 1.94 1.37 3.413v6.522h-1.952v-1.497h-.088c-.81 1.227-1.995 1.84-3.556 1.84zm.331-1.85a3.314 3.314 0 0 0 2.286-.935a2.9 2.9 0 0 0 1.036-2.212c-.575-.47-1.438-.706-2.589-.706c-.987 0-1.73.213-2.23.638a1.914 1.914 0 0 0-.751 1.497c-.01.511.253.989.69 1.256a2.736 2.736 0 0 0 1.558.471zM87.025 128c-1.208 0-2.205-.294-2.992-.88a5.213 5.213 0 0 1-1.726-2.203l1.812-.748c.575 1.35 1.553 2.026 2.934 2.026a2.688 2.688 0 0 0 1.553-.418a1.28 1.28 0 0 0 .607-1.1c0-.705-.493-1.182-1.48-1.432l-2.187-.528a5.208 5.208 0 0 1-1.965-1.001a2.405 2.405 0 0 1-.927-1.992c0-.954.424-1.729 1.27-2.323a5.112 5.112 0 0 1 3.015-.89a5.039 5.039 0 0 1 2.56.651a3.667 3.667 0 0 1 1.612 1.862l-1.767.719c-.398-.954-1.223-1.432-2.474-1.432a2.893 2.893 0 0 0-1.524.375a1.14 1.14 0 0 0-.618 1.014c0 .617.479 1.035 1.436 1.255l2.143.508c1.016.23 1.767.63 2.254 1.204a2.92 2.92 0 0 1 .735 1.95a2.999 2.999 0 0 1-1.208 2.423c-.79.64-1.811.96-3.063.96m10.933 0c-1.634 0-2.963-.543-3.986-1.63c-1.023-1.085-1.534-2.458-1.536-4.118a5.931 5.931 0 0 1 1.491-4.05a4.838 4.838 0 0 1 3.81-1.697c1.605 0 2.89.521 3.855 1.564c.965 1.042 1.447 2.437 1.446 4.184l-.022.375h-8.547c.059 1.086.424 1.946 1.094 2.58a3.32 3.32 0 0 0 2.352.946c1.458 0 2.444-.616 2.96-1.85l1.81.754a4.84 4.84 0 0 1-1.745 2.102c-.81.56-1.804.84-2.982.84m2.916-7.053c-.043-.617-.327-1.204-.85-1.762c-.524-.557-1.3-.83-2.33-.819a2.92 2.92 0 0 0-1.955.706a3.597 3.597 0 0 0-1.137 1.892z\\\"/><path fill=\\\"#ffa000\\\" d=\\\"M30.916 72.85L42.029 1.736a2.053 2.053 0 0 1 3.838-.652L57.36 22.521l4.581-8.723a2.053 2.053 0 0 1 3.633 0L96.592 72.85Z\\\"/><path fill=\\\"#f57c00\\\" d=\\\"M69.31 45.148L57.356 22.51l-26.44 50.34Z\\\"/><path fill=\\\"#ffca28\\\" d=\\\"m96.592 72.85l-8.513-52.674a2.055 2.055 0 0 0-1.399-1.613a2.05 2.05 0 0 0-2.074.504L30.916 72.85l29.708 16.66a6.157 6.157 0 0 0 6.003 0z\\\"/><path fill=\\\"#fff\\\" fill-opacity=\\\".2\\\" d=\\\"M88.08 20.176a2.055 2.055 0 0 0-1.4-1.612a2.05 2.05 0 0 0-2.074.503L73.949 29.75l-8.38-15.953a2.053 2.053 0 0 0-3.632 0l-4.581 8.722L45.862 1.083A2.053 2.053 0 0 0 43.706.03a2.05 2.05 0 0 0-1.682 1.71L30.916 72.85h-.036l.035.042l.293.144L84.59 19.59a2.053 2.053 0 0 1 3.479 1.108L96.51 72.9l.082-.051l-8.512-52.675ZM31.012 72.753l11.016-70.51A2.053 2.053 0 0 1 43.71.532a2.054 2.054 0 0 1 2.157 1.054L57.36 23.024l4.582-8.723a2.053 2.053 0 0 1 3.633 0l8.21 15.614z\\\"/><path fill=\\\"#a52714\\\" d=\\\"M66.627 89.007a6.157 6.157 0 0 1-6.003 0L30.986 72.395l-.072.456l29.709 16.655a6.157 6.157 0 0 0 6.003 0l29.966-16.655l-.078-.472l-29.888 16.63Z\\\" opacity=\\\".2\\\"/>\"\n\t\t},\n\t\t\"firefox\": {\n\t\t\t\"body\": \"<ellipse cx=\\\"63.833\\\" cy=\\\"63.79\\\" fill=\\\"#110070\\\" rx=\\\"59.102\\\" ry=\\\"59.14\\\"/><radialGradient id=\\\"deviconFirefox0\\\" cx=\\\"-407.857\\\" cy=\\\"945.153\\\" r=\\\"103.81\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#67C5D5\\\"/><stop offset=\\\".16\\\" stop-color=\\\"#66C2D3\\\"/><stop offset=\\\".28\\\" stop-color=\\\"#62B9CE\\\"/><stop offset=\\\".385\\\" stop-color=\\\"#5CA8C6\\\"/><stop offset=\\\".483\\\" stop-color=\\\"#5392BA\\\"/><stop offset=\\\".576\\\" stop-color=\\\"#4874AA\\\"/><stop offset=\\\".665\\\" stop-color=\\\"#3A5097\\\"/><stop offset=\\\".749\\\" stop-color=\\\"#2A2781\\\"/><stop offset=\\\".815\\\" stop-color=\\\"#1B006D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#596AAD\\\"/></radialGradient><ellipse cx=\\\"63.833\\\" cy=\\\"63.79\\\" fill=\\\"url(#deviconFirefox0)\\\" rx=\\\"57.985\\\" ry=\\\"58.024\\\"/><radialGradient id=\\\"deviconFirefox1\\\" cx=\\\"-407.874\\\" cy=\\\"938.23\\\" r=\\\"52.024\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefox1)\\\" d=\\\"M55.516 93.741c-.072-.314-.854-1.227-1.452-1.432c-.598-.204-1.184.881-1.568-.92c-1.261.724-1.805-.199-1.805-.199s-1.359.08-1.623 1.744c-.647.767-2.306 3.552-1.425.655c.887-2.915-.936-.229-1.105 1.236c-.316.65-.851.715-.515-2.209c-1.168-.404-1.766-3.115-1.125-3.167c-.744-1.037-.16-2.622.46-2.538c.62.08 1.683-1.354 1.651-1.688c-.033-.331.479-.094.448-2.327c-.033-2.237.843-2.792.915-.92c.075 1.864 1.189-.611 1.075-1.561c-.116-.944.11-3.082.79-1.818c-.79-3.125-.167-3.247.307-1.168c1.189.094 1.23.727 1.23.727c1.315-.324 1.945.667 2.048 1.223c1.218-1.438 2.45.113 2.45.113s.849-.282.443 1.195c-.409 1.472 1.765.676 1.246-.382c1.068-.541 2.655 1.097 3.155 2.216c.5 1.123-.857 2.712.201 3.096c1.063.382.597 2.232.597 2.232s2.224 1.234.68 2.293l-.525 1.26s1.006 1.122 1.349.454c.342-.669.463.68.463.68c-.128-.238.247 1.391 1.634 1.733c1.392.34 2.273 2.541.728 2.567c-1.54.026-1.659-.016-2.076.883c-.416.895-2.381.927-3.4-.232c-1.083.367-3.009-.106-2.442-.972c-.934.545-1.816-.918-1.087-1.572c.73-.649-.41-1.491-.793-.56c-.379.932-2.395 1.391-2.254-.194c.042-.47 1.116-.745 1.129-.352c.197.453.277-.037.196-.096\\\"/><radialGradient id=\\\"deviconFirefox2\\\" cx=\\\"-407.873\\\" cy=\\\"938.23\\\" r=\\\"52.023\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefox2)\\\" d=\\\"M103.462 48.392c.307.306.914.237 1.249.144c.337-.097.29-.336.581-.43c.286-.097 1.392.43 1.103 1.578c-.67.093-.914.908-.914.908s-.671.286-1.01.144c-.336-.144-.336-.097-.817-.051c-.481.051-1.637-.618-.386-.618c1.252 0-.142-.576-.672-.576c-.528 0-.096-.526.531-.381c-.436-.718-.195-1.247.335-.718\\\"/><radialGradient id=\\\"deviconFirefox3\\\" cx=\\\"-407.877\\\" cy=\\\"938.233\\\" r=\\\"52.031\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefox3)\\\" d=\\\"M99.125 50.989c-.335.333.05 1.339.482 1.29c.43-.047 1.105-.238 1.105-.238s.335.669 0 .862c-.335.19-1.314.106-.046.574c1.298.477 1.633.333 1.729.093c.098-.237.528-1.05.771-1.001c.192-.43-.673-.813-.192-1.102c.478-.287.097-1.337.097-1.337s-.675.047-.963.526c-.289.478-.671-.047-.96-.047a1.295 1.295 0 0 1-.242.524l-.191-.433c-.002.001-1.35-.046-1.59.289\\\"/><radialGradient id=\\\"deviconFirefox4\\\" cx=\\\"-407.023\\\" cy=\\\"933.306\\\" r=\\\"57.157\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".264\\\" stop-color=\\\"#0B629B\\\"/><stop offset=\\\".844\\\" stop-color=\\\"#031747\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00022F\\\"/></radialGradient><path fill=\\\"url(#deviconFirefox4)\\\" d=\\\"M90.139 51.777c-.042-.123.382-.619.269.023c-.261.457 1.054.867 1.423.359c1.235-1.693-1.166-2.513-2.208-1.726c-1.051.794-1.631-.908-.423-1.151c1.204-.243 1.306-2.42-.021-2.428c1.171-.578-.451-2.31-1.792-2.605c-.217-1.862-2.181-3.046-3.214-2.371c-1.043.678-1.132.56-2.661-.369c-1.522-.923-2.255 1.92-1.135 3.164c1.126 1.251.309 3.267.355 2.923c0 0-.424.763-.396 1.048c-1.289.437-1.665-1.377-2.465-1.779c-.583.76-1.523 1.166-1.523 1.166l.07-1.547s-4.001-2.179-5.23-1.569c-1.515.467-1.873 3.975-.498 4.489c1.378.519-1.728 1.811 1.388 5.095c3.2 3.373 4.438 3.469 5.09 2.92c.162-.138.441-.345.781-.576c.031.13.083.254.163.372c.801 1.204-1.862 2.154-2.233 3.879c-.377 1.744-.029 4.987 1.55 5.098c.301-1.729 3.257-1.118 1.648.448c-1.637 1.596-.488 1.878-.488 1.878s.077 2.991 2.582 2.035c-.073.171-.131.39-.167.629c-.7-.141-2.411-.356-2.83.838c-.528 1.506-2.763-.511-4.328.166c-1.556.671-3.829 2.875-3.063 4.425c1.47-.697 2.595 2.447.542 1.802c-2.061-.647-1.661.58-1.661.58s-2.146 1.693-.137 3.494c-.771.119-2.143.978-1.681 2.864c0 0-.881.031-1 1.719c-2.877.58-2.701 1.472 1.626.494c-1.746.905 1.221 1.333 2.536 1.212c1.317-.12 4.773 1.584 2.176 1.602c-2.601.016-1.827 1.289 1.29 1.349c3.111.064 2.784.785 3.246.754c.462-.033 2.473 1.554 2.365 2.434c-.113.88 2.107 1.794 3.551.785c.074.916 3.871.202 4.433-1.449c4.112.628 4.017-.139 3.102-.626c-2.059-.314-5.837-3.052-1.74-1.643c4.077 1.405.149-1.107-.925-2.072c-2.341-.455-2.46-2.406-2.46-2.406s1.293-.736.273-2.576c2.528-.469 1.001-1.358 1.285-2.207c.284-.85 1.568-1.934 2.008-2.021c.083-.114.772.023.133.283c-.552.005-.16 1.559.5 1.639c2.232.271 1.58-2.644.268-3.23c-1.315-.591-.134-2.195.789-1.115c.923 1.078 2.982-.133 2.209-1.498c1.228.851 1.89-1.902 1.367-3.481c1.642-1.423 1.588-4.26.319-4.896c-.625-.312-.926-.513-1.078-.901c.754-.356 1.754-.619 2.147-.268c.638.577 2.415-1.014 2.302-2.874c.748.41 1.939-3.381.927-4.708c2.317-3.239 1.693-3.533.918-2.99c-1.166 1.616-4.994 3.548-2.026.685c2.88-2.779-.767-.671-1.986-.219c-1.436 1.797-2.958.933-2.958.933s.064-1.472-1.79-1.503c.857-2.363-.523-1.51-1.007-2.154c-.481-.648-.656-2.224-.507-2.626\\\"/><radialGradient id=\\\"deviconFirefox5\\\" cx=\\\"-407.875\\\" cy=\\\"938.233\\\" r=\\\"52.03\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefox5)\\\" d=\\\"M60.1 28.097c-.359.938 1.173 2.461 1.943 1.971c.772-.495 1.877-1.477 1.877-1.477s1.172.942.699 1.613c-.477.669-2.376 1.421.372 1.116c2.82-.311 3.334-.893 3.32-1.431c-.015-.536.14-2.458.628-2.592c.015-.986-1.917-.895-1.248-1.881c.669-.982-.901-2.596-.901-2.596s-1.223.716-1.376 1.88c-.154 1.163-1.298.536-1.84.803c.141.582-.026 1.207-.026 1.207l-.708-.626s-2.562 1.164-2.74 2.013\\\"/><radialGradient id=\\\"deviconFirefox6\\\" cx=\\\"-407.873\\\" cy=\\\"938.232\\\" r=\\\"52.027\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefox6)\\\" d=\\\"M64.685 77.327c-.335.333.049 1.337.48 1.291c.433-.049 1.106-.239 1.106-.239s.336.669 0 .861c-.337.19-1.314.108-.048.573c1.297.478 1.635.335 1.731.097c.096-.239.528-1.053.769-1.006c.194-.429-.673-.812-.193-1.097c.482-.29.1-1.34.1-1.34s-.674.047-.963.526c-.288.478-.673-.049-.962-.049a1.31 1.31 0 0 1-.238.526l-.193-.43c-.002 0-1.35-.048-1.589.287\\\"/><defs><ellipse id=\\\"deviconFirefox7\\\" cx=\\\"63.833\\\" cy=\\\"63.79\\\" rx=\\\"57.985\\\" ry=\\\"58.024\\\"/></defs><clipPath id=\\\"deviconFirefox8\\\"><use href=\\\"#deviconFirefox7\\\"/></clipPath><linearGradient id=\\\"deviconFirefox9\\\" x1=\\\"-396.101\\\" x2=\\\"-379.307\\\" y1=\\\"935.823\\\" y2=\\\"934.391\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox9)\\\" d=\\\"M65.133 5.647c-.907.203.611 3.49.611 3.49s-.054 2.207.32 2.319c.373.113 2.84.729 4.13 2.337c1.297 1.606.623 2.453-.456 1.988c-1.08-.462-.794.956-.794.956s3.258 1.059.798.991c-2.466-.065 1.66 1.735 1.387 1.923c-.273.19-.427 1.226-.427 1.226s-2.175.181-.332.955c6.235 2.626-.666 1.917-.666 1.917l-.881 1.083l1.743 2.186l1.34.958s2.821-.941 3.701-1.088c.88-.145 3.102-1.808 3.102-1.808s.666.477.168-.495c-.499-.972 1.834-.539 2.415.185l4.118 1.86a.778.778 0 0 0 .291.374c.803.563-.726 1.529-.571 2.552c.155 1.012 1.088 2.693 2.113 2.516c-.179-.965 1.844-1.082 1.14-.005c-.703 1.071.077 1.051.077 1.051s.65 1.515 2.025.673c-.055.462.227 1.392 1.408 1.453c0 0-.125.505.845.862c-.132 1.73.422 1.785.559-.843c.244 1.154.988-.469 1.136-1.245c.15-.78 1.75-2.494 1.317-.979c-.429 1.502 4.716 2.051 5.288.258c.575-1.808 2.626-2.751 2.687-3.025c.063-.28-4.564-.71-4.053-.492c.512.217 1.464-.943 1.11-1.978c.574.116.827-2.292-.083-2.915c1.139-2.396.649-2.471.182-1.994c-.568 1.2-2.911 3.011-1.322.78c1.603-2.254-.651-.282-1.433.208c-.686 1.334-1.891 1.075-1.891 1.075s-.221-.908-1.511-.604c.15-1.606-.65-.834-1.115-1.149c-.284-.193-.556-.625-.724-.996c1.111.45 2.602.929 2.345.104c-.167-.541 2.103.64 2.182.394l2.838-.394l2.757-1.743C85.38 4.813 65.133 5.647 65.133 5.647\\\" clip-path=\\\"url(#deviconFirefox8)\\\"/><defs><ellipse id=\\\"deviconFirefoxa\\\" cx=\\\"63.833\\\" cy=\\\"63.79\\\" rx=\\\"57.985\\\" ry=\\\"58.024\\\"/></defs><clipPath id=\\\"deviconFirefoxb\\\"><use href=\\\"#deviconFirefoxa\\\"/></clipPath><linearGradient id=\\\"deviconFirefoxc\\\" x1=\\\"-433.831\\\" x2=\\\"-443.112\\\" y1=\\\"933.28\\\" y2=\\\"919.649\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxc)\\\" d=\\\"M38.929 10.721c-10.531 4.728-18.477 14.473-18.477 14.473s.934 2.137 1.259 1.979c.329-.155-2.351 5.606-.384 5.93c1.978.325 7.666-3.564 6.611-3.206c-1.052.354.593-2.105.593-2.105s2.96-1.313 1.209.202c-1.736 1.505 2.309.186 2.246.494c-.064.31.522 1.142.522 1.142s-1.387 1.488.404.889c6.147-2.068.81 1.771.81 1.771l.105 1.307l2.659.463l1.572-.15s1.375-2.426 1.907-3.085c.533-.661 1.024-3.271 1.024-3.271s.799-.083-.212-.466c-1.013-.383.967-1.577 1.878-1.429l4.285-1.331a.812.812 0 0 0 .468.082c.981-.114.487 1.596 1.289 2.241c.794.641 2.618 1.26 3.27.468c-.781-.592.671-2.003.857-.749c.186 1.245.764.719.764.719s1.537-2.643 2.028-4.159c.269.375 2.777-3.296 2.017-5.047c-.768-1.773.477-3.442.338-3.701c-.142-.254-.893.528-.338.34c.559-.191-1.583.769-1.866-2.053c-.287-2.878-.705.242-.982 1.165c.376 1.502 4.273-6.069 4.273-6.069l5.024-2.049c.001.003-11.434-.954-25.153 5.205\\\" clip-path=\\\"url(#deviconFirefoxb)\\\"/><linearGradient id=\\\"deviconFirefoxd\\\" x1=\\\"-409.766\\\" x2=\\\"-409.766\\\" y1=\\\"917.94\\\" y2=\\\"940.502\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".014\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".65\\\" stop-color=\\\"#C4E0E3\\\" stop-opacity=\\\".2\\\"/><stop offset=\\\".822\\\" stop-color=\\\"#C4E0E3\\\"/><stop offset=\\\".85\\\" stop-color=\\\"#CDE5E8\\\"/><stop offset=\\\".944\\\" stop-color=\\\"#E8F4F7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2FAFC\\\"/></linearGradient><ellipse cx=\\\"62.734\\\" cy=\\\"27.828\\\" fill=\\\"url(#deviconFirefoxd)\\\" opacity=\\\".5\\\" rx=\\\"30.703\\\" ry=\\\"19.892\\\"/><linearGradient id=\\\"deviconFirefoxe\\\" x1=\\\"-407.946\\\" x2=\\\"-394.013\\\" y1=\\\"896.271\\\" y2=\\\"904.454\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DF731B\\\"/><stop offset=\\\".545\\\" stop-color=\\\"#DF731B\\\"/><stop offset=\\\".701\\\" stop-color=\\\"#EC8811\\\"/><stop offset=\\\".859\\\" stop-color=\\\"#F4950B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F79A09\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxe)\\\" d=\\\"m125.156 47.563l-1.421 9.114s-2.03-16.873-4.519-23.182c-3.815-9.666-5.513-9.588-5.523-9.573c2.554 6.493 2.091 9.981 2.091 9.981s-4.527-12.338-16.498-16.264c-14.175-4.646-21.396-2.968-21.343-2.902c.054.065 14.651 2.551 17.24 6.109c0 0-6.201 0-12.372 1.777c-.278.08 22.703 2.871 27.402 25.836c0 0-2.519-5.257-5.635-6.149c2.048 6.233 1.523 18.061-.428 23.94c-.25.757-.508-3.269-4.352-5c1.23 8.821-.074 22.815-6.195 26.668c-.477.3 3.837-13.812.868-8.356c-17.727 27.18-38.802 10.997-47.351 5.229c6.862 1.681 14.149.471 18.369-2.414c4.258-2.912 6.776-5.038 9.039-4.536c2.261.506 3.767-1.763 2.01-3.776c-1.758-2.018-6.027-4.79-11.802-3.278c-4.072 1.066-9.12 5.573-16.825 1.01c-6.572-3.895-6.528-7.057-6.528-9.071c0-2.016 1.793-5.08 5.056-4.578c2.922.452 1.382-1.264 4.527 0c.857.345-.086-4.112-1.305-6.968c2.348-4.9 9.964-6.356 10.532-6.786c1.03-.778.464-1.167.815-2.34c.329-1.093.539-4.046-7.985-3.229c-3.923.375-6.418-4.708-7.236-5.941c.265-1.572.69-3.007 1.267-4.322c.584-1.197 1.222-2.295 1.86-3.126l.53-.701c1.27-1.482 2.831-2.75 4.703-3.802c.977-.552-10.926-.035-16.282 6.945c-1.437.188-3.409-.227-5.614-.227c-2.762 0-4.933.302-6.942.806c-.322.082-.84.037-1.476-.113c-1.767-1.832-6.77-6.234-6.999-12.206c0 0-7.273 5.59-6.185 20.828c-.096 8.429-2.583 6.02-3.863 10.593c-.596 2.167.895 3.799.895 3.863c-.002.033 1.788-1.938 1.788-1.938s-11.277 19.539 3.289 44.483c12.553 21.503 33.621 31.006 55.481 29.157a67.807 67.807 0 0 0 11.519-1.747c50.935-12.314 45.398-73.814 45.398-73.814\\\"/><linearGradient id=\\\"deviconFirefoxf\\\" x1=\\\"-430.496\\\" x2=\\\"-419.681\\\" y1=\\\"915.535\\\" y2=\\\"914.609\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".011\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\".897\\\" stop-color=\\\"#E85C0A\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxf)\\\" d=\\\"M45.619 32.149s2.201 6.015 7.138 5.996c9.42-.038 9.609.094 9.669 1.238c.188 3.487-1.534 4.629-2.192 5.125c-.661.494-9.629 5.694-9.959 7.182c-.329 1.487-10.349-14.143-10.349-14.143z\\\"/><linearGradient id=\\\"deviconFirefoxg\\\" x1=\\\"-447.82\\\" x2=\\\"-408.777\\\" y1=\\\"918.532\\\" y2=\\\"913.652\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".011\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\".136\\\" stop-color=\\\"#A32104\\\"/><stop offset=\\\".498\\\" stop-color=\\\"#C84107\\\"/><stop offset=\\\".789\\\" stop-color=\\\"#DF5509\\\"/><stop offset=\\\".972\\\" stop-color=\\\"#E85C0A\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxg)\\\" d=\\\"M50.634 38.634s3.06 3.907.746 5.47c-2.826 1.909 3.996 2.325 6.468.938c2.472-1.387 3.991-3.426 4.077-3.729c.086-.304.898-3.043-4.262-2.088c-3.262.603-4.458.742-7.029-.591\\\"/><linearGradient id=\\\"deviconFirefoxh\\\" x1=\\\"-423.63\\\" x2=\\\"-420.517\\\" y1=\\\"908.206\\\" y2=\\\"909.576\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F2C8A9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ffc\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxh)\\\" d=\\\"M60.235 44.509c.5-.378 1.61-1.133 2.034-3c-.309.125-.338-.23-.703-.076c-6.927 7.227-7.193 2.194-10.974 3.208c-3.446.943-4.221 2.237-4.366 2.337l.155.22c.993.505 1.944 2.113 2.66 3.55c.699.833 1.168 1.242 1.235.94c.329-1.485 9.3-6.685 9.959-7.179\\\"/><linearGradient id=\\\"deviconFirefoxi\\\" x1=\\\"-433.555\\\" x2=\\\"-381.191\\\" y1=\\\"870.093\\\" y2=\\\"867.937\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B30000\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF731B\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxi)\\\" d=\\\"M8.478 50.25C7.064 53.218-2.012 68.555 12.8 94.081c14.495 24.985 39.58 33.144 65.191 27.601c7.311-1.582 15.74-7.302 21.113-11.5c-3.452-8.706-1.409-8.379-3.259-7.234c-20.631 12.773-37.032.173-49.726-1.437C-.58 95.593 8.642 50.158 8.642 50.158z\\\"/><linearGradient id=\\\"deviconFirefoxj\\\" x1=\\\"-421.095\\\" x2=\\\"-393.792\\\" y1=\\\"878.22\\\" y2=\\\"868.471\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF731B\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxj)\\\" d=\\\"M47.362 85.263c4.401 1.319 14.005.182 18.129-2.886c2.779-2.066 4.878-3.624 6.645-4.275c-3.122-2.121-3.171.885-9.735 2.405c-13.674 3.172-20.313-3.68-20.313-3.68c.969 5.422 4.354 8.062 5.879 9c-.404-.358-.616-.568-.605-.564\\\"/><linearGradient id=\\\"deviconFirefoxk\\\" x1=\\\"-483.865\\\" x2=\\\"-457.248\\\" y1=\\\"813.412\\\" y2=\\\"813.412\\\" gradientTransform=\\\"matrix(.999 .049 .049 -.999 450.28 926.467)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#B30000\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DE5C01\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxk)\\\" d=\\\"M32.535 110.025S21.152 97.18 17.974 82.795c-4.685-4.425-8.01-8.167-10.218-10.873c1.275 10.236 6.494 26.128 24.779 38.103\\\"/><linearGradient id=\\\"deviconFirefoxl\\\" x1=\\\"-301.198\\\" x2=\\\"-286.717\\\" y1=\\\"955.307\\\" y2=\\\"910.443\\\" gradientTransform=\\\"scale(1 -1)rotate(-6.83 -8816.783 -2227.993)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxl)\\\" d=\\\"M23.039 98.359s-7.855-11.184-4.91-20.679c2.65-8.538-.563-3.459-2.432-1.634c-1.887 1.844-2.858-5.442-2.809-6.282l-.001-.027c-.119-.026-3.74 17.457 10.152 28.622\\\"/><linearGradient id=\\\"deviconFirefoxm\\\" x1=\\\"-476.095\\\" x2=\\\"-476.095\\\" y1=\\\"843.773\\\" y2=\\\"793.626\\\" gradientTransform=\\\"matrix(.999 .045 .045 -.999 451.05 929.576)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxm)\\\" d=\\\"M11.401 88.61s-1.791-22.698 3.87-25.906c8.99-5.094.75-3.903-1.857-2.489c-2.634 1.427-2.39-7.968-2.018-8.86c.365-.881-9.278 8.882.005 37.255\\\"/><path fill=\\\"#A40000\\\" d=\\\"M50.73 21.819s-7.116 7.229-7.063 7.255c.054.025.204 9.277.437 11.9c.853 1.008 3.51 7.558 1.476 6.104c-2.078-1.484-.58-1.516-.398-.763v.037c-.139.065-5.165-10.879 5.548-24.533\\\"/><linearGradient id=\\\"deviconFirefoxn\\\" x1=\\\"-453.894\\\" x2=\\\"-459.335\\\" y1=\\\"921.626\\\" y2=\\\"935.568\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".011\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\".472\\\" stop-color=\\\"#E85C0A\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F9BD5F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxn)\\\" d=\\\"M16.877 16.25s-7.564 5.804-6.119 21.72c5.855-5.256 14.134-9.185 14.134-9.185c-1.389-.876-7.762-5.975-8.015-12.535\\\"/><linearGradient id=\\\"deviconFirefoxo\\\" x1=\\\"-430.631\\\" x2=\\\"-417.593\\\" y1=\\\"918.428\\\" y2=\\\"935.565\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".197\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\".843\\\" stop-color=\\\"#F9BD5F\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFFCCF\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxo)\\\" d=\\\"M35.519 33.656L46.88 47.785c-3.277-13.875-.758-22.199 7.311-26.741c1.194-.673-16.858.243-18.672 12.612\\\"/><linearGradient id=\\\"deviconFirefoxp\\\" x1=\\\"-437.523\\\" x2=\\\"-424.307\\\" y1=\\\"895.036\\\" y2=\\\"868.604\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".017\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#E35100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF731B\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxp)\\\" d=\\\"M27.514 68.56c1.938-12.208 18.927-10.413 18.927-10.413c-.757.563-3.668.899-4.501 3.229c-2.752 7.688-.127 24.483 17.01 31.527c1.807.745-34.299-6.303-31.436-24.343\\\"/><linearGradient id=\\\"deviconFirefoxq\\\" x1=\\\"-417.561\\\" x2=\\\"-414.261\\\" y1=\\\"911.246\\\" y2=\\\"908.255\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#EEA272\\\"/><stop offset=\\\".186\\\" stop-color=\\\"#EFA777\\\"/><stop offset=\\\".406\\\" stop-color=\\\"#F2B585\\\"/><stop offset=\\\".643\\\" stop-color=\\\"#F6CD9C\\\"/><stop offset=\\\".89\\\" stop-color=\\\"#FCEEBB\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ffc\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxq)\\\" d=\\\"M62.171 41.84c-.083-.015-.157-.013-.194.037c-.209.28-1.017 1.233-2.938 2.8c-3.568 2.902-5.074 2.167-7.732 2.762c-1.21.271-2.361 1.083-3.135 1.734c.313.506.606 1.053.868 1.576c.699.833 1.168 1.242 1.235.94c.33-1.486 9.3-6.686 9.959-7.182c.47-.351 1.464-1.049 1.937-2.667\\\"/><linearGradient id=\\\"deviconFirefoxr\\\" x1=\\\"-436.81\\\" x2=\\\"-421.649\\\" y1=\\\"904.181\\\" y2=\\\"888.71\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".197\\\" stop-color=\\\"#DF731B\\\"/><stop offset=\\\".843\\\" stop-color=\\\"#F9BD5F\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFFCCF\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxr)\\\" d=\\\"M51.218 60.294c.101-2.58-.081-8.846-2.762-11.565c-2.05-2.077-2.53-4.458-2.805-7.173C23.376 49.877 20.196 60.753 22.423 60.4c17.815-2.826 22.823-3.171 28.795-.106\\\"/><linearGradient id=\\\"deviconFirefoxs\\\" x1=\\\"311.259\\\" x2=\\\"311.259\\\" y1=\\\"1736.858\\\" y2=\\\"1680.021\\\" gradientTransform=\\\"scale(1 -1)rotate(-14.72 -6736.722 1996.747)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxs)\\\" d=\\\"M3.728 75.539s1.548-20.113 11.615-27.473c7.903-5.782 1.765-3.682-1.286-3.442c-3.218.254-4.934 2.212-4.313 1.492l.031-.055c-.107-.124-7.555 6.127-6.047 29.478\\\"/><linearGradient id=\\\"deviconFirefoxt\\\" x1=\\\"-428.861\\\" x2=\\\"-448.077\\\" y1=\\\"929.136\\\" y2=\\\"897.842\\\" gradientTransform=\\\"matrix(.99 -.08 -.095 -1.173 528.218 1096.236)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C06E\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxt)\\\" d=\\\"M2.667 60.087s5.395-17.125 16.297-16.979c7.23.096 1.495-6.111-.692-7.054c-2.282-.977-2.827-.939-3.36-.467c-.799.708-7.972.435-12.245 24.5\\\"/><linearGradient id=\\\"deviconFirefoxu\\\" x1=\\\"-391.562\\\" x2=\\\"-411.976\\\" y1=\\\"884.775\\\" y2=\\\"880.876\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".005\\\" stop-color=\\\"#FFFAEE\\\"/><stop offset=\\\".276\\\" stop-color=\\\"#F5F89B\\\"/><stop offset=\\\".31\\\" stop-color=\\\"#F3ED91\\\"/><stop offset=\\\".467\\\" stop-color=\\\"#ECC267\\\"/><stop offset=\\\".618\\\" stop-color=\\\"#E6A046\\\"/><stop offset=\\\".761\\\" stop-color=\\\"#E2872E\\\"/><stop offset=\\\".892\\\" stop-color=\\\"#E07820\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF731B\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxu)\\\" d=\\\"M76.213 76.849c.82-.803.249-3.888-4.904-5.757c-4.675-1.699-11.973 2.619-14.138 3.471c0 0 8.266-1.548 11.365-1.033c4.202.7 5.677 5.281 7.677 3.319\\\"/><linearGradient id=\\\"deviconFirefoxv\\\" x1=\\\"-924.082\\\" x2=\\\"-924.082\\\" y1=\\\"388.59\\\" y2=\\\"341.086\\\" gradientTransform=\\\"scale(1 -1)rotate(-7.24 -3878.075 -7254.145)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C06E\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxv)\\\" d=\\\"M10.631 71.208s-.895-16.836 6.649-24.026c5.924-5.647 1.065-3.243-1.438-2.713c-2.64.56-3.85 2.367-3.413 1.704l.019-.049c-.101-.092-5.595 5.894-1.817 25.084\\\"/><linearGradient id=\\\"deviconFirefoxw\\\" x1=\\\"-955.606\\\" x2=\\\"-955.606\\\" y1=\\\"121.617\\\" y2=\\\"74.12\\\" gradientTransform=\\\"scale(1 -1)rotate(-21.23 -902.775 -2553.022)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C06E\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxw)\\\" d=\\\"M4.82 65.859s3.188-16.555 12.244-21.714c7.111-4.053 1.816-2.89-.742-2.979c-2.697-.092-4.306 1.37-3.723.831l.029-.042c-.074-.115-6.85 4.371-7.808 23.904\\\"/><linearGradient id=\\\"deviconFirefoxx\\\" x1=\\\"-30.438\\\" x2=\\\"-43.666\\\" y1=\\\"1441.928\\\" y2=\\\"1422.086\\\" gradientTransform=\\\"scale(1 -1)rotate(35.88 2315.534 760.698)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxx)\\\" d=\\\"M15.572 72.655s-1.743-10.035 2.014-14.974c2.998-3.941.366-2.014-1.026-1.445c-1.452.593-2.002 1.764-1.804 1.334c.191-.419-6.464 4.738.816 15.085\\\"/><linearGradient id=\\\"deviconFirefoxy\\\" x1=\\\"-23.279\\\" x2=\\\"-36.506\\\" y1=\\\"1448.429\\\" y2=\\\"1428.588\\\" gradientTransform=\\\"scale(1 -1)rotate(35.88 2315.534 760.698)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxy)\\\" d=\\\"M17.564 63.193s-1.743-10.035 2.013-14.975c2.998-3.941.366-2.013-1.026-1.445c-1.452.593-2.003 1.765-1.804 1.335c.192-.42-6.462 4.737.817 15.085\\\"/><linearGradient id=\\\"deviconFirefoxz\\\" x1=\\\"-459.905\\\" x2=\\\"-465.692\\\" y1=\\\"914.636\\\" y2=\\\"903.834\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EED8A5\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxz)\\\" d=\\\"M7.028 49.475s4.072-8.342 9.483-9.985c4.318-1.31 1.344-1.29.014-1.615c-1.39-.337-2.421.232-2.046.021c.367-.206-7.301.049-7.451 11.579\\\"/><linearGradient id=\\\"deviconFirefox10\\\" x1=\\\"-460.486\\\" x2=\\\"-466.272\\\" y1=\\\"908.034\\\" y2=\\\"897.234\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EED8A5\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox10)\\\" d=\\\"M6.447 56.076s4.071-8.342 9.483-9.984c4.318-1.31 1.344-1.292.013-1.617c-1.39-.336-2.421.234-2.045.022c.366-.206-7.302.05-7.451 11.579\\\"/><linearGradient id=\\\"deviconFirefox11\\\" x1=\\\"-453.93\\\" x2=\\\"-459.523\\\" y1=\\\"912.618\\\" y2=\\\"898.731\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox11)\\\" d=\\\"M9.403 54.255s7.181-14.715 16.728-17.614c7.619-2.311 2.373-2.278.024-2.849c-2.453-.594-4.271.413-3.61.039c.647-.364-12.879.085-13.142 20.424\\\"/><linearGradient id=\\\"deviconFirefox12\\\" x1=\\\"-451.803\\\" x2=\\\"-465.029\\\" y1=\\\"919.379\\\" y2=\\\"899.54\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox12)\\\" d=\\\"M14.312 46.33s4.466-9.152 10.404-10.955c4.739-1.438 1.475-1.417.015-1.772c-1.526-.369-2.656.256-2.245.023c.402-.228-8.011.052-8.174 12.704\\\"/><linearGradient id=\\\"deviconFirefox13\\\" x1=\\\"-450.913\\\" x2=\\\"-462.969\\\" y1=\\\"915.373\\\" y2=\\\"897.289\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox13)\\\" d=\\\"M15.768 49.563s4.071-8.342 9.482-9.983c4.319-1.311 1.345-1.292.014-1.617c-1.391-.337-2.422.233-2.046.022c.365-.208-7.301.05-7.45 11.578\\\"/><linearGradient id=\\\"deviconFirefox14\\\" x1=\\\"-412.122\\\" x2=\\\"-411.167\\\" y1=\\\"918.189\\\" y2=\\\"916.487\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8B8B89\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#120500\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox14)\\\" d=\\\"M62.428 39.383c-.047-.87-.176-1.153-4.339-1.225c.477.216 1.3.65 2.206 1.393c1.196.98 1.39 2.073 1.514 3.204c.404-.769.701-1.833.619-3.372\\\"/><linearGradient id=\\\"deviconFirefox15\\\" x1=\\\"-449.701\\\" x2=\\\"-449.701\\\" y1=\\\"923.971\\\" y2=\\\"929.197\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox15)\\\" d=\\\"m37.982 27.764l-3.611 5.81s-14.438-2.265-26.679 9.577c-1.011.978 8.007-20.94 30.29-15.387\\\"/><linearGradient id=\\\"deviconFirefox16\\\" x1=\\\"-463.88\\\" x2=\\\"-452.942\\\" y1=\\\"875.39\\\" y2=\\\"888.172\\\" gradientTransform=\\\"matrix(.999 .04 .04 -.999 451.516 931.973)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox16)\\\" d=\\\"M25.016 38.163s3.848-7.144 8.837-9.303c-2.579.081-8.37 2.098-8.837 9.303\\\"/><linearGradient id=\\\"deviconFirefox17\\\" x1=\\\"-456.723\\\" x2=\\\"-462.51\\\" y1=\\\"918.976\\\" y2=\\\"908.175\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EED8A5\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox17)\\\" d=\\\"M10.211 45.135s4.071-8.342 9.483-9.985c4.318-1.31 1.344-1.291.014-1.616c-1.391-.336-2.421.234-2.046.021c.365-.205-7.303.05-7.451 11.58\\\"/><linearGradient id=\\\"deviconFirefox18\\\" x1=\\\"-490.528\\\" x2=\\\"-479.844\\\" y1=\\\"804.837\\\" y2=\\\"817.323\\\" gradientTransform=\\\"matrix(.995 .104 .104 -.995 420.84 891.22)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox18)\\\" d=\\\"M18.739 39.257s4.201-6.724 9.198-8.514c-2.516-.083-8.29 1.519-9.198 8.514\\\"/><linearGradient id=\\\"deviconFirefox19\\\" x1=\\\"-489.629\\\" x2=\\\"-476.791\\\" y1=\\\"832.599\\\" y2=\\\"830.84\\\" gradientTransform=\\\"scale(1 -1)rotate(-5.16 -9762.2 -5176.955)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox19)\\\" d=\\\"M25.94 27.771s-3.167 1.384-8.752-.938l4.979 2.504z\\\"/><linearGradient id=\\\"deviconFirefox1a\\\" x1=\\\"-465.214\\\" x2=\\\"-447.092\\\" y1=\\\"929.332\\\" y2=\\\"926.85\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1a)\\\" d=\\\"M24.409 28.66s-4.22 1.635-12.345-.799l6.949 2.765c.861-.795 5.396-1.966 5.396-1.966\\\"/><linearGradient id=\\\"deviconFirefox1b\\\" x1=\\\"-487.129\\\" x2=\\\"-475.332\\\" y1=\\\"833.244\\\" y2=\\\"831.628\\\" gradientTransform=\\\"scale(1 -1)rotate(-5.16 -9762.2 -5176.955)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1b)\\\" d=\\\"M27.49 27.318s-2.801.853-7.977-1.149l4.979 2.502c.526-.464 2.998-1.353 2.998-1.353\\\"/><linearGradient id=\\\"deviconFirefox1c\\\" x1=\\\"-457.029\\\" x2=\\\"-467.666\\\" y1=\\\"925.518\\\" y2=\\\"926.609\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1c)\\\" d=\\\"M18.753 30.54s-2.082 1.728-7.414 1.798l4.611.151z\\\"/><linearGradient id=\\\"deviconFirefox1d\\\" x1=\\\"-495.902\\\" x2=\\\"-481.188\\\" y1=\\\"803.548\\\" y2=\\\"820.743\\\" gradientTransform=\\\"matrix(.995 .104 .104 -.995 420.84 891.22)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1d)\\\" d=\\\"M13.688 39.382S20.813 30.101 26.68 28c-2.955-.097-11.927 3.173-12.992 11.382\\\"/><linearGradient id=\\\"deviconFirefox1e\\\" x1=\\\"-384.188\\\" x2=\\\"-355.369\\\" y1=\\\"835.447\\\" y2=\\\"879.898\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DE5C01\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1e)\\\" d=\\\"M124.039 55.208s.768 17.22-23.152 41.141c-2.659 2.658-17.093 16.18-16.585 20.236c.178 1.435 37.87-5.781 39.737-61.377\\\"/><linearGradient id=\\\"deviconFirefox1f\\\" x1=\\\"-367.43\\\" x2=\\\"-386.301\\\" y1=\\\"929.703\\\" y2=\\\"937.991\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1f)\\\" d=\\\"M77.663 14.705c28.813 2.214 34.391 22.931 34.393 21.662c.074-20.139-27.335-21.669-34.393-21.662\\\"/><linearGradient id=\\\"deviconFirefox1g\\\" x1=\\\"-354.754\\\" x2=\\\"-381.173\\\" y1=\\\"910.786\\\" y2=\\\"935.312\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DE5C01\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1g)\\\" d=\\\"M86.438 22.581s19.974 4.083 25.607 25.254c.747 2.804-2.407-17.199-1.434-15.3c.972 1.908-8.038-9.321-24.173-9.954\\\"/><linearGradient id=\\\"deviconFirefox1h\\\" x1=\\\"-460.091\\\" x2=\\\"-471.153\\\" y1=\\\"836.71\\\" y2=\\\"848.15\\\" gradientTransform=\\\"matrix(1 -.028 -.028 -1 593.415 868.62)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1h)\\\" d=\\\"M94.42 22.063s18.039 3.761 18.218 32.381c.126 20.258 3.128 7.605 6.106 3.053c2.568-3.934.813-8.726.751-8.713c-.009.002-1.299-3.729-.43-2.148c.039.07-1.211-1.03-1.203-1.031c.202-.031-.693-20.572-23.442-23.542\\\"/><linearGradient id=\\\"deviconFirefox1i\\\" x1=\\\"-359.183\\\" x2=\\\"-352.957\\\" y1=\\\"896.737\\\" y2=\\\"918.154\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1i)\\\" d=\\\"M114.733 25.94s6.479 16.878-.388 25.271c-2.241 2.739-2.492 16.772.246 15.483c2.745-1.291 2.149 7.452 1.789 8.446l-.006.031c.179.112 13.538-21.573-1.641-49.231\\\"/><linearGradient id=\\\"deviconFirefox1j\\\" x1=\\\"-507.61\\\" x2=\\\"-507.837\\\" y1=\\\"782.982\\\" y2=\\\"799.272\\\" gradientTransform=\\\"scale(1 -1)rotate(2.35 20479.11 15387.252)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1j)\\\" d=\\\"M105.726 43.709s4.079 11.942-.192 20.479l3.231 7.215c2.369-5.82 5.387-18.131-3.039-27.694\\\"/><linearGradient id=\\\"deviconFirefox1k\\\" x1=\\\"-615.186\\\" x2=\\\"-603.965\\\" y1=\\\"694.292\\\" y2=\\\"716.393\\\" gradientTransform=\\\"scale(1 -1)rotate(4.07 10630.367 10445.371)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1k)\\\" d=\\\"M112.899 42.289s2.821 18.954-7.357 36.065c.158 3.958-.537 7.54-1.49 10.491c.444.583 1.037.982 1.82 1.052c-.345.319-.689.618-1.022.901c-.61.271-1.237.555-1.844.849l-.387.876a32.265 32.265 0 0 0 2.23-1.724c2.079-.919 3.95-1.631 3.946-1.636l-1.298.476c-.617.224-1.156.3-1.625.258c7.859-7.163 18.63-23.184 7.027-47.608m-11.859 50.39c-.898.527-1.552 1.021-1.691 1.403c-.104.278.509.117 1.568-.477c.055-.319.1-.63.123-.926\\\"/><linearGradient id=\\\"deviconFirefox1l\\\" x1=\\\"-343.207\\\" x2=\\\"-341.697\\\" y1=\\\"938.701\\\" y2=\\\"963.181\\\" gradientTransform=\\\"scale(1 -1)rotate(4.07 14466.179 6568.719)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DE5C01\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1l)\\\" d=\\\"M100.345 62.484s8.025 22.841-17.623 44.257c-1.513 1.263 10.411.722 11.454.249c3.074-1.396 6.707-10.714 6.278-9.6c-.425 1.115 11.91-16.469-.109-34.906\\\"/><linearGradient id=\\\"deviconFirefox1m\\\" x1=\\\"-414.032\\\" x2=\\\"-366.714\\\" y1=\\\"838.941\\\" y2=\\\"867.224\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 957)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B9120D\\\"/><stop offset=\\\".078\\\" stop-color=\\\"#BB180D\\\"/><stop offset=\\\".182\\\" stop-color=\\\"#C0290C\\\"/><stop offset=\\\".301\\\" stop-color=\\\"#C8450A\\\"/><stop offset=\\\".431\\\" stop-color=\\\"#D36C08\\\"/><stop offset=\\\".571\\\" stop-color=\\\"#E29E05\\\"/><stop offset=\\\".715\\\" stop-color=\\\"#F4DA02\\\"/><stop offset=\\\".792\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".814\\\" stop-color=\\\"#FEFD07\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#FEFD1B\\\"/><stop offset=\\\".884\\\" stop-color=\\\"#FEFE3C\\\"/><stop offset=\\\".927\\\" stop-color=\\\"#FFFE69\\\"/><stop offset=\\\".974\\\" stop-color=\\\"#FFFFA3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFFFC7\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1m)\\\" d=\\\"M111.568 76.972s-4.84 29.626-38.309 32.011c-13.104.935-31.921-2.133-30.254 2.866c.517 1.549 2.98 8.011 8.602 9.509c15.214 4.059 55.693 2.73 59.961-44.386\\\"/><linearGradient id=\\\"deviconFirefox1n\\\" x1=\\\"-451.41\\\" x2=\\\"-402.936\\\" y1=\\\"752.749\\\" y2=\\\"746.182\\\" gradientTransform=\\\"scale(1 -1)rotate(-5.68 -8756.882 -4777.662)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1n)\\\" d=\\\"M83.656 99.393s-20.478 4.678-33.744-6.615c-12.139-10.335-6.117-1.637-4.47 2.654c1.691 4.401-7.823 1.039-9.252.331c-1.425-.699 22.534 14.327 47.466 3.63\\\"/><linearGradient id=\\\"deviconFirefox1o\\\" x1=\\\"-478.422\\\" x2=\\\"-422.136\\\" y1=\\\"705.757\\\" y2=\\\"688.067\\\" gradientTransform=\\\"matrix(.99 .145 .145 -.99 411.248 860.68)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1o)\\\" d=\\\"M70.46 110.554S46.032 105.753 38.298 89.2c-6.609-14.141-4.86-3.764-5.158.959c-.313 4.858-7.163-1.776-8.078-2.93l-.046-.042c-.136.089 12.599 20.054 45.444 23.367\\\"/><linearGradient id=\\\"deviconFirefox1p\\\" x1=\\\"-986.556\\\" x2=\\\"-959.793\\\" y1=\\\"507.388\\\" y2=\\\"456.149\\\" gradientTransform=\\\"scale(1 -1)rotate(10.37 2796.5 5770.96)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefox1p)\\\" d=\\\"M43.775 108.414s-11.667-9.037-16.928-21.429c-4.421-1.536-10.298-5.046-10.414-5.648c1.867 9.629 11.699 20.871 27.342 27.077\\\"/>\"\n\t\t},\n\t\t\"firefox-wordmark\": {\n\t\t\t\"body\": \"<ellipse cx=\\\"63.861\\\" cy=\\\"50.32\\\" fill=\\\"#110070\\\" rx=\\\"48.925\\\" ry=\\\"48.956\\\"/><radialGradient id=\\\"deviconFirefoxWordmark0\\\" cx=\\\"-407.967\\\" cy=\\\"653.678\\\" r=\\\"85.933\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#67C5D5\\\"/><stop offset=\\\".16\\\" stop-color=\\\"#66C2D3\\\"/><stop offset=\\\".28\\\" stop-color=\\\"#62B9CE\\\"/><stop offset=\\\".385\\\" stop-color=\\\"#5CA8C6\\\"/><stop offset=\\\".483\\\" stop-color=\\\"#5392BA\\\"/><stop offset=\\\".576\\\" stop-color=\\\"#4874AA\\\"/><stop offset=\\\".665\\\" stop-color=\\\"#3A5097\\\"/><stop offset=\\\".749\\\" stop-color=\\\"#2A2781\\\"/><stop offset=\\\".815\\\" stop-color=\\\"#1B006D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#596AAD\\\"/></radialGradient><ellipse cx=\\\"63.861\\\" cy=\\\"50.32\\\" fill=\\\"url(#deviconFirefoxWordmark0)\\\" rx=\\\"48.001\\\" ry=\\\"48.032\\\"/><radialGradient id=\\\"deviconFirefoxWordmark1\\\" cx=\\\"-407.981\\\" cy=\\\"647.95\\\" r=\\\"43.068\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefoxWordmark1)\\\" d=\\\"M56.977 75.114c-.06-.26-.707-1.017-1.202-1.186c-.494-.168-.979.73-1.298-.762c-1.043.6-1.494-.165-1.494-.165s-1.125.066-1.343 1.443c-.535.635-1.909 2.941-1.18.542c.734-2.414-.774-.188-.915 1.023c-.262.539-.705.593-.427-1.829c-.967-.334-1.461-2.578-.931-2.622c-.616-.859-.132-2.171.381-2.101c.513.066 1.393-1.122 1.366-1.397c-.027-.274.397-.078.371-1.926c-.027-1.852.698-2.311.758-.762c.062 1.544.984-.505.89-1.291c-.096-.782.092-2.551.654-1.505c-.654-2.587-.139-2.688.254-.967c.984.077 1.018.601 1.018.601c1.088-.268 1.61.552 1.695 1.013c1.008-1.191 2.027.093 2.027.093s.703-.233.368.99c-.338 1.218 1.46.559 1.031-.317c.884-.448 2.198.909 2.612 1.835c.414.929-.709 2.245.167 2.563c.88.316.495 1.847.495 1.847s1.841 1.021.563 1.899l-.435 1.042s.832.929 1.116.376c.283-.554.384.563.384.563c-.106-.197.205 1.15 1.353 1.434c1.152.282 1.882 2.104.602 2.126c-1.275.021-1.374-.014-1.719.73c-.344.741-1.971.768-2.814-.192c-.896.304-2.491-.088-2.022-.805c-.773.452-1.503-.759-.899-1.3c.605-.539-.34-1.236-.658-.464c-.313.771-1.982 1.151-1.865-.161c.035-.39.923-.617.935-.292c.163.378.229-.027.162-.076\\\"/><radialGradient id=\\\"deviconFirefoxWordmark2\\\" cx=\\\"-407.981\\\" cy=\\\"647.944\\\" r=\\\"43.063\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefoxWordmark2)\\\" d=\\\"M96.667 37.573c.254.253.756.197 1.033.12c.28-.08.241-.279.481-.356c.237-.079 1.152.356.913 1.306c-.555.078-.756.752-.756.752s-.555.237-.836.12c-.279-.12-.279-.081-.676-.042c-.398.042-1.355-.512-.319-.512s-.118-.477-.557-.477c-.438 0-.08-.435.438-.316c-.359-.595-.16-1.032.279-.595\\\"/><radialGradient id=\\\"deviconFirefoxWordmark3\\\" cx=\\\"-407.984\\\" cy=\\\"647.958\\\" r=\\\"43.076\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefoxWordmark3)\\\" d=\\\"M93.077 39.724c-.277.275.041 1.109.398 1.067c.357-.039.916-.197.916-.197s.277.554 0 .713c-.278.159-1.088.088-.039.475c1.075.395 1.352.276 1.432.078c.081-.197.438-.87.638-.83c.16-.355-.557-.672-.159-.911c.396-.238.08-1.107.08-1.107s-.559.039-.797.436c-.239.396-.556-.038-.795-.038c-.041.237-.2.434-.2.434l-.158-.358c-.001-.001-1.118-.04-1.316.238\\\"/><radialGradient id=\\\"deviconFirefoxWordmark4\\\" cx=\\\"-407.277\\\" cy=\\\"643.871\\\" r=\\\"47.313\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".264\\\" stop-color=\\\"#0B629B\\\"/><stop offset=\\\".844\\\" stop-color=\\\"#031747\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00022F\\\"/></radialGradient><path fill=\\\"url(#deviconFirefoxWordmark4)\\\" d=\\\"M85.638 40.376c-.035-.102.316-.512.222.019c-.216.378.872.718 1.177.297c1.023-1.402-.964-2.08-1.827-1.429c-.872.658-1.351-.751-.351-.952c.997-.201 1.082-2.003-.017-2.01c.969-.479-.374-1.912-1.483-2.157c-.18-1.541-1.806-2.521-2.661-1.962c-.863.561-.938.463-2.203-.305c-1.26-.764-1.866 1.59-.939 2.619c.933 1.035.256 2.705.294 2.419c0 0-.351.631-.328.868c-1.066.361-1.378-1.141-2.041-1.473c-.482.63-1.261.965-1.261.965l.059-1.281s-3.312-1.803-4.33-1.299c-1.253.388-1.551 3.291-.412 3.717c1.141.429-1.43 1.498 1.149 4.217c2.649 2.792 3.673 2.873 4.213 2.417a8.14 8.14 0 0 1 .647-.477a.903.903 0 0 0 .134.308c.663.997-1.541 1.783-1.849 3.211c-.313 1.443-.024 4.128 1.283 4.219c.249-1.431 2.696-.925 1.364.372c-1.355 1.321-.404 1.555-.404 1.555s.064 2.476 2.137 1.684c-.06.142-.109.323-.138.521c-.58-.117-1.996-.294-2.342.694c-.437 1.247-2.288-.423-3.583.137c-1.288.556-3.169 2.38-2.536 3.664c1.217-.577 2.148 2.024.449 1.492c-1.707-.537-1.375.479-1.375.479s-1.776 1.401-.113 2.892c-.639.099-1.773.81-1.391 2.371c0 0-.73.026-.828 1.423c-2.381.479-2.235 1.218 1.346.409c-1.445.75 1.011 1.104 2.099 1.003c1.09-.099 3.952 1.312 1.802 1.327c-2.153.013-1.512 1.066 1.067 1.117c2.576.053 2.305.649 2.687.625c.383-.028 2.048 1.286 1.958 2.014c-.093.729 1.744 1.485 2.94.65c.061.757 3.205.166 3.669-1.201c3.403.521 3.325-.115 2.568-.519c-1.705-.26-4.832-2.526-1.44-1.36c3.375 1.164.124-.916-.766-1.714c-1.938-.377-2.037-1.992-2.037-1.992s1.071-.608.227-2.132c2.093-.389.829-1.125 1.064-1.827c.235-.704 1.298-1.601 1.663-1.673c.068-.095.639.019.11.233c-.457.005-.132 1.291.414 1.357c1.849.224 1.308-2.189.222-2.674c-1.089-.49-.11-1.817.653-.924c.764.893 2.468-.109 1.829-1.24c1.016.705 1.564-1.575 1.132-2.882c1.358-1.178 1.314-3.526.264-4.053c-.517-.259-.767-.425-.892-.747c.624-.295 1.452-.512 1.777-.221c.528.478 2-.84 1.906-2.379c.619.339 1.606-2.799.768-3.897c1.918-2.682 1.401-2.925.76-2.476c-.964 1.338-4.134 2.938-1.678.567c2.384-2.301-.635-.556-1.644-.182c-1.189 1.488-2.449.773-2.449.773s.053-1.219-1.481-1.245c.708-1.956-.434-1.25-.833-1.783c-.399-.532-.544-1.836-.421-2.169\\\"/><radialGradient id=\\\"deviconFirefoxWordmark5\\\" cx=\\\"-407.982\\\" cy=\\\"647.95\\\" r=\\\"43.071\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefoxWordmark5)\\\" d=\\\"M60.771 20.773c-.297.776.972 2.037 1.609 1.631c.64-.409 1.554-1.222 1.554-1.222s.971.779.579 1.335c-.396.554-1.968 1.177.308.925c2.335-.258 2.759-.74 2.749-1.185c-.012-.444.116-2.036.52-2.146c.012-.816-1.587-.74-1.033-1.557c.554-.814-.746-2.149-.746-2.149s-1.013.593-1.14 1.556c-.127.963-1.075.444-1.523.666c.115.481-.022.999-.022.999l-.586-.519c0-.001-2.122.962-2.269 1.666\\\"/><radialGradient id=\\\"deviconFirefoxWordmark6\\\" cx=\\\"-407.981\\\" cy=\\\"647.95\\\" r=\\\"43.069\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></radialGradient><path fill=\\\"url(#deviconFirefoxWordmark6)\\\" d=\\\"M64.567 61.526c-.278.276.041 1.107.397 1.068c.358-.04.916-.198.916-.198s.278.554 0 .713c-.28.158-1.088.09-.041.475c1.074.396 1.354.277 1.433.08c.079-.198.437-.871.636-.833c.161-.354-.557-.671-.159-.908c.398-.24.082-1.109.082-1.109s-.558.039-.797.435s-.558-.041-.797-.041c-.041.238-.197.437-.197.437l-.159-.356s-1.115-.04-1.314.237\\\"/><defs><ellipse id=\\\"deviconFirefoxWordmark7\\\" cx=\\\"63.861\\\" cy=\\\"50.32\\\" rx=\\\"48.001\\\" ry=\\\"48.032\\\"/></defs><clipPath id=\\\"deviconFirefoxWordmark8\\\"><use href=\\\"#deviconFirefoxWordmark7\\\"/></clipPath><linearGradient id=\\\"deviconFirefoxWordmark9\\\" x1=\\\"-398.235\\\" x2=\\\"-384.333\\\" y1=\\\"645.955\\\" y2=\\\"644.77\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark9)\\\" d=\\\"M64.938 2.189c-.751.168.506 2.888.506 2.888s-.045 1.828.265 1.921c.308.093 2.352.604 3.419 1.934c1.073 1.33.515 2.031-.378 1.646c-.894-.383-.657.791-.657.791s2.697.876.661.82c-2.041-.054 1.374 1.437 1.148 1.592c-.225.158-.353 1.015-.353 1.015s-1.801.15-.275.791c5.162 2.174-.552 1.587-.552 1.587l-.729.896l1.441 1.809l1.11.793s2.335-.779 3.064-.901c.729-.121 2.567-1.498 2.567-1.498s.552.395.14-.409c-.413-.805 1.518-.446 1.999.153l3.409 1.54c.044.118.12.225.241.309c.664.465-.601 1.266-.473 2.112c.129.838.901 2.229 1.749 2.083c-.148-.799 1.527-.896.944-.006c-.582.888.063.871.063.871s.538 1.254 1.677.557c-.046.382.188 1.153 1.165 1.203c0 0-.104.418.7.713c-.11 1.433.349 1.478.461-.698c.203.955.818-.388.94-1.031c.125-.646 1.449-2.064 1.091-.811c-.355 1.243 3.904 1.698 4.376.213c.476-1.496 2.174-2.278 2.225-2.504c.052-.232-3.779-.587-3.355-.407c.424.18 1.212-.781.919-1.637c.475.096.684-1.898-.069-2.413c.943-1.983.538-2.045.151-1.65c-.47.994-2.409 2.493-1.094.646c1.328-1.866-.538-.234-1.186.172c-.568 1.105-1.566.89-1.566.89s-.183-.751-1.25-.5c.125-1.329-.538-.69-.923-.952c-.234-.159-.46-.517-.599-.824c.919.373 2.154.769 1.941.086c-.137-.447 1.741.53 1.807.327l2.349-.327l2.283-1.442C81.698 1.499 64.938 2.189 64.938 2.189\\\" clip-path=\\\"url(#deviconFirefoxWordmark8)\\\"/><defs><ellipse id=\\\"deviconFirefoxWordmarka\\\" cx=\\\"63.861\\\" cy=\\\"50.32\\\" rx=\\\"48.001\\\" ry=\\\"48.032\\\"/></defs><clipPath id=\\\"deviconFirefoxWordmarkb\\\"><use href=\\\"#deviconFirefoxWordmarka\\\"/></clipPath><linearGradient id=\\\"deviconFirefoxWordmarkc\\\" x1=\\\"-429.469\\\" x2=\\\"-437.152\\\" y1=\\\"643.85\\\" y2=\\\"632.566\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F80BC\\\"/><stop offset=\\\".338\\\" stop-color=\\\"#0A5F9E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00145A\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkc)\\\" d=\\\"M43.247 6.39c-8.718 3.913-15.296 11.98-15.296 11.98s.773 1.769 1.042 1.639c.273-.128-1.946 4.64-.317 4.908c1.637.27 6.346-2.95 5.472-2.654c-.87.293.492-1.742.492-1.742s2.45-1.087 1.001.167c-1.438 1.246 1.911.154 1.859.409c-.054.256.432.945.432.945s-1.148 1.232.335.736c5.089-1.712.67 1.467.67 1.467l.087 1.082l2.202.383l1.3-.124s1.139-2.008 1.579-2.554c.441-.546.848-2.708.848-2.708s.663-.07-.175-.386c-.838-.317.801-1.306 1.555-1.183l3.548-1.102a.669.669 0 0 0 .387.068c.813-.095.404 1.321 1.067 1.854c.657.532 2.167 1.044 2.707.388c-.647-.491.555-1.659.709-.621c.154 1.031.632.596.632.596s1.272-2.188 1.679-3.443c.223.311 2.299-2.729 1.67-4.179c-.636-1.468.395-2.849.28-3.063c-.118-.211-.739.436-.28.281c.462-.159-1.31.637-1.545-1.699c-.238-2.383-.583.2-.813.964c.31 1.243 3.537-5.024 3.537-5.024l4.159-1.696c-.002.004-9.467-.788-20.823 4.311\\\" clip-path=\\\"url(#deviconFirefoxWordmarkb)\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkd\\\" x1=\\\"-409.548\\\" x2=\\\"-409.548\\\" y1=\\\"631.152\\\" y2=\\\"649.829\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".014\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".65\\\" stop-color=\\\"#C4E0E3\\\" stop-opacity=\\\".2\\\"/><stop offset=\\\".822\\\" stop-color=\\\"#C4E0E3\\\"/><stop offset=\\\".85\\\" stop-color=\\\"#CDE5E8\\\"/><stop offset=\\\".944\\\" stop-color=\\\"#E8F4F7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2FAFC\\\"/></linearGradient><ellipse cx=\\\"62.952\\\" cy=\\\"20.551\\\" fill=\\\"url(#deviconFirefoxWordmarkd)\\\" opacity=\\\".5\\\" rx=\\\"25.416\\\" ry=\\\"16.467\\\"/><linearGradient id=\\\"deviconFirefoxWordmarke\\\" x1=\\\"-408.041\\\" x2=\\\"-396.507\\\" y1=\\\"613.214\\\" y2=\\\"619.988\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DF731B\\\"/><stop offset=\\\".545\\\" stop-color=\\\"#DF731B\\\"/><stop offset=\\\".701\\\" stop-color=\\\"#EC8811\\\"/><stop offset=\\\".859\\\" stop-color=\\\"#F4950B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F79A09\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarke)\\\" d=\\\"m114.625 36.888l-1.176 7.545s-1.681-13.968-3.741-19.19c-3.158-8.001-4.563-7.937-4.572-7.925c2.115 5.375 1.731 8.262 1.731 8.262s-3.747-10.214-13.656-13.463C81.477 8.271 75.499 9.66 75.542 9.714c.045.053 12.128 2.112 14.272 5.058c0 0-5.133 0-10.241 1.471c-.23.066 18.793 2.376 22.683 21.387c0 0-2.085-4.352-4.665-5.091c1.696 5.16 1.261 14.951-.354 19.818c-.208.626-.421-2.706-3.603-4.141c1.018 7.303-.061 18.887-5.128 22.077c-.395.248 3.176-11.435.718-6.917c-14.674 22.499-32.12 9.103-39.196 4.327c5.68 1.392 11.712.39 15.206-1.997c3.525-2.41 5.609-4.17 7.482-3.755c1.872.419 3.118-1.46 1.664-3.126c-1.455-1.669-4.989-3.965-9.77-2.713c-3.372.882-7.55 4.613-13.928.835c-5.441-3.224-5.404-5.842-5.404-7.51c0-1.668 1.484-4.205 4.186-3.789c2.418.375 1.144-1.047 3.748 0c.709.285-.071-3.404-1.08-5.768c1.943-4.056 8.249-5.262 8.719-5.618c.853-.644.384-.966.675-1.938c.271-.904.446-3.348-6.61-2.673c-3.248.311-5.313-3.897-5.99-4.918c.22-1.301.571-2.489 1.048-3.577c.484-.991 1.012-1.9 1.541-2.587l.438-.581c1.052-1.227 2.343-2.276 3.894-3.148c.808-.457-9.044-.028-13.479 5.75c-1.189.156-2.822-.188-4.646-.188c-2.288 0-4.085.251-5.747.668c-.267.067-.696.03-1.222-.094c-1.463-1.516-5.604-5.161-5.793-10.104c0 0-6.02 4.627-5.12 17.242c-.08 6.978-2.139 4.983-3.199 8.769c-.493 1.794.742 3.146.742 3.199c-.002.027 1.48-1.604 1.48-1.604s-9.336 16.174 2.722 36.823c10.392 17.801 27.832 25.667 45.928 24.136a56.149 56.149 0 0 0 9.536-1.446c42.16-10.193 37.576-61.103 37.576-61.103\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkf\\\" x1=\\\"-426.709\\\" x2=\\\"-417.756\\\" y1=\\\"629.16\\\" y2=\\\"628.393\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".011\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\".897\\\" stop-color=\\\"#E85C0A\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkf)\\\" d=\\\"M48.785 24.128s1.822 4.979 5.909 4.964c7.798-.031 7.954.077 8.004 1.024c.155 2.886-1.27 3.832-1.815 4.243c-.547.409-7.971 4.714-8.245 5.945c-.272 1.23-8.568-11.707-8.568-11.707z\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkg\\\" x1=\\\"-441.047\\\" x2=\\\"-408.731\\\" y1=\\\"631.643\\\" y2=\\\"627.603\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".011\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\".136\\\" stop-color=\\\"#A32104\\\"/><stop offset=\\\".498\\\" stop-color=\\\"#C84107\\\"/><stop offset=\\\".789\\\" stop-color=\\\"#DF5509\\\"/><stop offset=\\\".972\\\" stop-color=\\\"#E85C0A\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkg)\\\" d=\\\"M52.936 29.497s2.533 3.234.618 4.527c-2.34 1.58 3.308 1.924 5.355.776c2.046-1.148 3.302-2.835 3.374-3.087c.072-.252.745-2.519-3.527-1.729c-2.702.5-3.692.616-5.82-.487\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkh\\\" x1=\\\"-421.025\\\" x2=\\\"-418.449\\\" y1=\\\"623.094\\\" y2=\\\"624.227\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F2C8A9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ffc\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkh)\\\" d=\\\"M60.883 34.359c.414-.313 1.333-.938 1.684-2.483c-.256.104-.28-.19-.582-.063c-5.735 5.983-5.955 1.816-9.084 2.655c-2.853.781-3.494 1.852-3.614 1.936l.128.182c.822.418 1.609 1.75 2.202 2.939c.579.689.967 1.028 1.022.779c.273-1.231 7.698-5.536 8.244-5.945\\\"/><linearGradient id=\\\"deviconFirefoxWordmarki\\\" x1=\\\"-429.241\\\" x2=\\\"-385.895\\\" y1=\\\"591.544\\\" y2=\\\"589.759\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B30000\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF731B\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarki)\\\" d=\\\"M18.038 39.112c-1.17 2.457-8.683 15.153 3.578 36.284c11.999 20.683 32.765 27.437 53.966 22.848c6.051-1.309 13.03-6.045 17.477-9.519c-2.857-7.207-1.166-6.937-2.697-5.988c-17.079 10.574-30.656.143-41.164-1.189c-38.656-4.899-31.023-42.511-31.023-42.511z\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkj\\\" x1=\\\"-418.926\\\" x2=\\\"-396.325\\\" y1=\\\"598.271\\\" y2=\\\"590.202\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF731B\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkj)\\\" d=\\\"M50.228 68.096c3.643 1.091 11.593.15 15.007-2.39c2.3-1.71 4.039-2.999 5.5-3.539c-2.583-1.755-2.625.733-8.058 1.992c-11.32 2.625-16.815-3.047-16.815-3.047c.802 4.488 3.605 6.674 4.866 7.45a7.089 7.089 0 0 1-.5-.466\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkk\\\" x1=\\\"-467.668\\\" x2=\\\"-445.635\\\" y1=\\\"536.09\\\" y2=\\\"536.09\\\" gradientTransform=\\\"scale(1 -1)rotate(-2.8 -12633.86 -9647.041)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#B30000\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DE5C01\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkk)\\\" d=\\\"M37.953 88.593S28.531 77.961 25.9 66.053c-3.879-3.663-6.631-6.762-8.459-9.002c1.056 8.474 5.375 21.63 20.512 31.542\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkl\\\" x1=\\\"-277.505\\\" x2=\\\"-265.517\\\" y1=\\\"677.591\\\" y2=\\\"640.451\\\" gradientTransform=\\\"scale(1 -1)rotate(-6.83 -6338.24 -2227.506)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkl)\\\" d=\\\"M30.092 78.937s-6.503-9.258-4.065-17.119c2.194-7.067-.466-2.863-2.013-1.353c-1.562 1.527-2.365-4.504-2.325-5.2l-.001-.022c-.098-.021-3.096 14.451 8.404 23.694\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkm\\\" x1=\\\"-461.347\\\" x2=\\\"-461.347\\\" y1=\\\"562.033\\\" y2=\\\"520.52\\\" gradientTransform=\\\"matrix(.999 .045 .045 -.999 457.68 633.724)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkm)\\\" d=\\\"M20.459 70.867s-1.482-18.79 3.203-21.445c7.441-4.219.621-3.232-1.537-2.062c-2.181 1.182-1.979-6.596-1.67-7.334c.302-.729-7.681 7.353.004 30.841\\\"/><path fill=\\\"#A40000\\\" d=\\\"M53.015 15.577s-5.891 5.984-5.847 6.005c.044.021.169 7.679.362 9.851c.705.834 2.905 6.256 1.222 5.053c-1.72-1.229-.48-1.255-.33-.631v.031c-.115.053-4.276-9.008 4.593-20.309\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkn\\\" x1=\\\"-446.078\\\" x2=\\\"-450.582\\\" y1=\\\"634.203\\\" y2=\\\"645.745\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".011\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\".472\\\" stop-color=\\\"#E85C0A\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F9BD5F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkn)\\\" d=\\\"M24.992 10.966s-6.262 4.804-5.066 17.98c4.847-4.351 11.701-7.604 11.701-7.604c-1.15-.725-6.426-4.946-6.635-10.376\\\"/><linearGradient id=\\\"deviconFirefoxWordmarko\\\" x1=\\\"-426.819\\\" x2=\\\"-416.027\\\" y1=\\\"631.556\\\" y2=\\\"645.741\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".197\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\".843\\\" stop-color=\\\"#F9BD5F\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFFCCF\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarko)\\\" d=\\\"m40.423 25.375l9.405 11.696c-2.714-11.486-.628-18.377 6.052-22.135c.988-.559-13.955.2-15.457 10.439\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkp\\\" x1=\\\"-432.525\\\" x2=\\\"-421.585\\\" y1=\\\"612.191\\\" y2=\\\"590.311\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".017\\\" stop-color=\\\"#941403\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#E35100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF731B\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkp)\\\" d=\\\"M33.797 54.268c1.604-10.105 15.667-8.619 15.667-8.619c-.627.466-3.037.745-3.727 2.672c-2.277 6.365-.105 20.268 14.081 26.098c1.498.618-28.391-5.217-26.021-20.151\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkq\\\" x1=\\\"-416\\\" x2=\\\"-413.269\\\" y1=\\\"625.61\\\" y2=\\\"623.135\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#EEA272\\\"/><stop offset=\\\".186\\\" stop-color=\\\"#EFA777\\\"/><stop offset=\\\".406\\\" stop-color=\\\"#F2B585\\\"/><stop offset=\\\".643\\\" stop-color=\\\"#F6CD9C\\\"/><stop offset=\\\".89\\\" stop-color=\\\"#FCEEBB\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ffc\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkq)\\\" d=\\\"M62.486 32.15c-.069-.012-.13-.011-.161.03c-.173.231-.841 1.021-2.431 2.317c-2.955 2.403-4.2 1.794-6.401 2.287c-1.001.224-1.954.896-2.595 1.436c.259.42.501.871.718 1.304c.579.689.968 1.028 1.022.779c.273-1.23 7.699-5.535 8.245-5.945c.388-.291 1.211-.869 1.603-2.208\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkr\\\" x1=\\\"-431.935\\\" x2=\\\"-419.384\\\" y1=\\\"619.762\\\" y2=\\\"606.955\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".197\\\" stop-color=\\\"#DF731B\\\"/><stop offset=\\\".843\\\" stop-color=\\\"#F9BD5F\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFFCCF\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkr)\\\" d=\\\"M53.419 47.426c.082-2.135-.066-7.322-2.287-9.574c-1.696-1.719-2.094-3.689-2.322-5.938c-18.439 6.889-21.072 15.891-19.228 15.599c14.748-2.339 18.894-2.624 23.837-.087\\\"/><linearGradient id=\\\"deviconFirefoxWordmarks\\\" x1=\\\"354.63\\\" x2=\\\"354.63\\\" y1=\\\"1457.727\\\" y2=\\\"1410.678\\\" gradientTransform=\\\"scale(1 -1)rotate(-14.72 -5590.445 1996.955)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarks)\\\" d=\\\"M14.106 60.046s1.281-16.649 9.615-22.742c6.543-4.786 1.461-3.048-1.064-2.85c-2.665.211-4.085 1.831-3.571 1.235l.025-.045c-.087-.103-6.252 5.071-5.005 24.402\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkt\\\" x1=\\\"-431.743\\\" x2=\\\"-447.649\\\" y1=\\\"663.266\\\" y2=\\\"637.36\\\" gradientTransform=\\\"matrix(.99 -.08 -.095 -1.173 514.173 774.676)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C06E\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkt)\\\" d=\\\"M13.229 47.255S17.695 33.08 26.72 33.2c5.986.08 1.238-5.058-.573-5.839c-1.89-.809-2.341-.777-2.782-.387c-.661.586-6.599.359-10.136 20.281\\\"/><linearGradient id=\\\"deviconFirefoxWordmarku\\\" x1=\\\"-394.478\\\" x2=\\\"-411.376\\\" y1=\\\"603.697\\\" y2=\\\"600.47\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".005\\\" stop-color=\\\"#FFFAEE\\\"/><stop offset=\\\".276\\\" stop-color=\\\"#F5F89B\\\"/><stop offset=\\\".31\\\" stop-color=\\\"#F3ED91\\\"/><stop offset=\\\".467\\\" stop-color=\\\"#ECC267\\\"/><stop offset=\\\".618\\\" stop-color=\\\"#E6A046\\\"/><stop offset=\\\".761\\\" stop-color=\\\"#E2872E\\\"/><stop offset=\\\".892\\\" stop-color=\\\"#E07820\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#DF731B\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarku)\\\" d=\\\"M74.11 61.131c.679-.666.206-3.219-4.06-4.767c-3.87-1.405-9.911 2.169-11.704 2.874c0 0 6.843-1.282 9.408-.855c3.479.58 4.701 4.371 6.356 2.748\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkv\\\" x1=\\\"-898.399\\\" x2=\\\"-898.399\\\" y1=\\\"104.881\\\" y2=\\\"65.558\\\" gradientTransform=\\\"scale(1 -1)rotate(-7.24 -1538.258 -7254.261)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C06E\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkv)\\\" d=\\\"M19.821 56.46s-.741-13.937 5.504-19.889c4.904-4.675.882-2.684-1.19-2.247c-2.184.464-3.187 1.96-2.824 1.411l.015-.04c-.085-.075-4.633 4.881-1.505 20.765\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkw\\\" x1=\\\"-897.832\\\" x2=\\\"-897.832\\\" y1=\\\"-152.461\\\" y2=\\\"-191.78\\\" gradientTransform=\\\"scale(1 -1)rotate(-21.23 -112.77 -2552.822)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C06E\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkw)\\\" d=\\\"M15.011 52.033s2.64-13.705 10.136-17.976c5.887-3.355 1.503-2.392-.614-2.466c-2.232-.077-3.564 1.134-3.082.688l.025-.035c-.063-.094-5.672 3.619-6.465 19.789\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkx\\\" x1=\\\"-102.703\\\" x2=\\\"-113.653\\\" y1=\\\"1179.761\\\" y2=\\\"1163.336\\\" gradientTransform=\\\"scale(1 -1)rotate(35.88 1858.323 760.77)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkx)\\\" d=\\\"M23.912 57.658s-1.443-8.307 1.667-12.395c2.481-3.262.302-1.667-.85-1.196c-1.203.491-1.658 1.46-1.494 1.104c.159-.347-5.35 3.921.677 12.487\\\"/><linearGradient id=\\\"deviconFirefoxWordmarky\\\" x1=\\\"-96.778\\\" x2=\\\"-107.727\\\" y1=\\\"1185.141\\\" y2=\\\"1168.718\\\" gradientTransform=\\\"scale(1 -1)rotate(35.88 1858.323 760.77)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarky)\\\" d=\\\"M25.56 49.825s-1.442-8.306 1.667-12.395c2.482-3.263.303-1.667-.849-1.197c-1.202.492-1.658 1.461-1.493 1.104c.158-.346-5.35 3.923.675 12.488\\\"/><linearGradient id=\\\"deviconFirefoxWordmarkz\\\" x1=\\\"-451.053\\\" x2=\\\"-455.844\\\" y1=\\\"628.417\\\" y2=\\\"619.475\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EED8A5\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmarkz)\\\" d=\\\"M16.838 38.47s3.371-6.906 7.851-8.266c3.575-1.083 1.112-1.067.011-1.336c-1.151-.279-2.004.193-1.694.017c.304-.171-6.044.04-6.168 9.585\\\"/><linearGradient id=\\\"deviconFirefoxWordmark10\\\" x1=\\\"-451.535\\\" x2=\\\"-456.324\\\" y1=\\\"622.951\\\" y2=\\\"614.011\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EED8A5\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark10)\\\" d=\\\"M16.358 43.935s3.37-6.905 7.85-8.265c3.575-1.084 1.113-1.069.012-1.338c-1.15-.279-2.004.193-1.693.018c.302-.172-6.046.041-6.169 9.585\\\"/><linearGradient id=\\\"deviconFirefoxWordmark11\\\" x1=\\\"-446.107\\\" x2=\\\"-450.737\\\" y1=\\\"626.746\\\" y2=\\\"615.251\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark11)\\\" d=\\\"M18.805 42.427s5.944-12.181 13.847-14.581c6.308-1.913 1.964-1.886.02-2.358c-2.03-.492-3.536.341-2.988.032c.536-.302-10.662.071-10.879 16.907\\\"/><linearGradient id=\\\"deviconFirefoxWordmark12\\\" x1=\\\"-444.346\\\" x2=\\\"-455.296\\\" y1=\\\"632.342\\\" y2=\\\"615.918\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark12)\\\" d=\\\"M22.868 35.866s3.698-7.576 8.613-9.068c3.922-1.19 1.221-1.173.012-1.467c-1.263-.306-2.198.212-1.858.02c.332-.189-6.632.043-6.767 10.515\\\"/><linearGradient id=\\\"deviconFirefoxWordmark13\\\" x1=\\\"-443.609\\\" x2=\\\"-453.589\\\" y1=\\\"629.025\\\" y2=\\\"614.056\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F2C072\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark13)\\\" d=\\\"M24.074 38.543s3.37-6.905 7.849-8.264c3.576-1.085 1.113-1.07.012-1.338c-1.151-.279-2.005.193-1.693.019c.301-.173-6.045.04-6.168 9.583\\\"/><linearGradient id=\\\"deviconFirefoxWordmark14\\\" x1=\\\"-411.498\\\" x2=\\\"-410.707\\\" y1=\\\"631.357\\\" y2=\\\"629.948\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8B8B89\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#120500\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark14)\\\" d=\\\"M62.698 30.116c-.039-.72-.146-.955-3.591-1.013a8.377 8.377 0 0 1 1.825 1.153c.99.812 1.15 1.716 1.253 2.652c.336-.638.582-1.517.513-2.792\\\"/><linearGradient id=\\\"deviconFirefoxWordmark15\\\" x1=\\\"-442.606\\\" x2=\\\"-442.606\\\" y1=\\\"636.144\\\" y2=\\\"640.47\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark15)\\\" d=\\\"m42.463 20.498l-2.989 4.81s-11.952-1.875-22.085 7.928c-.838.809 6.627-17.335 25.074-12.738\\\"/><linearGradient id=\\\"deviconFirefoxWordmark16\\\" x1=\\\"-451.273\\\" x2=\\\"-442.219\\\" y1=\\\"588.951\\\" y2=\\\"599.533\\\" gradientTransform=\\\"matrix(.999 .04 .04 -.999 457.406 636.091)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark16)\\\" d=\\\"M31.729 29.106s3.185-5.913 7.315-7.701c-2.134.068-6.928 1.737-7.315 7.701\\\"/><linearGradient id=\\\"deviconFirefoxWordmark17\\\" x1=\\\"-448.419\\\" x2=\\\"-453.209\\\" y1=\\\"632.009\\\" y2=\\\"623.067\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EED8A5\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark17)\\\" d=\\\"M19.473 34.878s3.37-6.906 7.85-8.265c3.575-1.085 1.113-1.069.011-1.338c-1.151-.279-2.003.193-1.692.018c.302-.171-6.046.04-6.169 9.585\\\"/><linearGradient id=\\\"deviconFirefoxWordmark18\\\" x1=\\\"-468\\\" x2=\\\"-459.156\\\" y1=\\\"519.769\\\" y2=\\\"530.105\\\" gradientTransform=\\\"scale(1 -1)rotate(-5.97 -5497.41 -4480.916)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark18)\\\" d=\\\"M26.533 30.012s3.477-5.566 7.614-7.048c-2.083-.069-6.863 1.258-7.614 7.048\\\"/><linearGradient id=\\\"deviconFirefoxWordmark19\\\" x1=\\\"-468.3\\\" x2=\\\"-457.672\\\" y1=\\\"544.95\\\" y2=\\\"543.495\\\" gradientTransform=\\\"matrix(.996 .09 .09 -.996 439.675 604.212)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark19)\\\" d=\\\"M32.495 20.504s-2.623 1.146-7.246-.777l4.122 2.073z\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1a\\\" x1=\\\"-455.448\\\" x2=\\\"-440.446\\\" y1=\\\"640.582\\\" y2=\\\"638.528\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1a)\\\" d=\\\"M31.227 21.239s-3.494 1.354-10.219-.662l5.752 2.289c.712-.658 4.467-1.627 4.467-1.627\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1b\\\" x1=\\\"-466.231\\\" x2=\\\"-456.465\\\" y1=\\\"545.484\\\" y2=\\\"544.147\\\" gradientTransform=\\\"matrix(.996 .09 .09 -.996 439.675 604.212)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1b)\\\" d=\\\"M33.777 20.129s-2.319.706-6.604-.951l4.122 2.071c.436-.386 2.482-1.12 2.482-1.12\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1c\\\" x1=\\\"-448.672\\\" x2=\\\"-457.478\\\" y1=\\\"637.424\\\" y2=\\\"638.328\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1c)\\\" d=\\\"M26.545 22.795s-1.723 1.431-6.138 1.489l3.818.125z\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1d\\\" x1=\\\"-472.449\\\" x2=\\\"-460.268\\\" y1=\\\"518.702\\\" y2=\\\"532.938\\\" gradientTransform=\\\"scale(1 -1)rotate(-5.97 -5497.41 -4480.916)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1d)\\\" d=\\\"M22.352 30.116s5.898-7.684 10.755-9.422c-2.447-.081-9.874 2.625-10.755 9.422\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1e\\\" x1=\\\"-388.375\\\" x2=\\\"-364.518\\\" y1=\\\"562.863\\\" y2=\\\"599.659\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DE5C01\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1e)\\\" d=\\\"M113.7 43.216s.635 14.254-19.166 34.057c-2.201 2.2-14.149 13.395-13.729 16.752c.149 1.187 31.351-4.786 32.895-50.809\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1f\\\" x1=\\\"-374.502\\\" x2=\\\"-390.123\\\" y1=\\\"640.89\\\" y2=\\\"647.75\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1f)\\\" d=\\\"M75.31 9.688c23.851 1.833 28.47 18.982 28.471 17.931c.061-16.671-22.628-17.937-28.471-17.931\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1g\\\" x1=\\\"-364.008\\\" x2=\\\"-385.878\\\" y1=\\\"625.231\\\" y2=\\\"645.533\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DE5C01\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1g)\\\" d=\\\"M82.574 16.207s16.534 3.38 21.198 20.905c.618 2.321-1.992-14.237-1.187-12.666c.805 1.581-6.654-7.714-20.011-8.239\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1h\\\" x1=\\\"-471.877\\\" x2=\\\"-481.034\\\" y1=\\\"551.26\\\" y2=\\\"560.73\\\" gradientTransform=\\\"matrix(1 -.028 -.028 -1 589.242 572.679)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1h)\\\" d=\\\"M89.182 15.778s14.933 3.113 15.082 26.805c.104 16.77 2.589 6.295 5.055 2.527c2.126-3.257.673-7.224.622-7.213c-.009.001-1.076-3.087-.356-1.778c.032.058-1.003-.853-.995-.854c.165-.024-.576-17.028-19.408-19.487\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1i\\\" x1=\\\"-367.675\\\" x2=\\\"-362.522\\\" y1=\\\"613.599\\\" y2=\\\"631.327\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1i)\\\" d=\\\"M105.998 18.989s5.363 13.971-.321 20.919c-1.855 2.268-2.063 13.884.204 12.817c2.272-1.068 1.778 6.169 1.481 6.991l-.005.026c.147.091 11.206-17.859-1.359-40.753\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1j\\\" x1=\\\"-520.821\\\" x2=\\\"-521.009\\\" y1=\\\"501.143\\\" y2=\\\"514.627\\\" gradientTransform=\\\"scale(1 -1)rotate(2.35 13262.46 15386.547)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1j)\\\" d=\\\"M98.541 33.697s3.376 9.886-.159 16.953l2.674 5.973c1.963-4.818 4.46-15.009-2.515-22.926\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1k\\\" x1=\\\"-631.671\\\" x2=\\\"-622.382\\\" y1=\\\"415.278\\\" y2=\\\"433.574\\\" gradientTransform=\\\"scale(1 -1)rotate(4.07 6466.584 10445.929)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F79A09\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1k)\\\" d=\\\"M104.479 32.521s2.335 15.69-6.09 29.854c.13 3.276-.445 6.242-1.234 8.685c.367.482.858.813 1.506.871c-.286.264-.571.511-.846.746c-.506.224-1.024.459-1.527.703l-.32.726a26.727 26.727 0 0 0 1.846-1.428c1.721-.761 3.27-1.351 3.267-1.353l-1.075.393c-.511.185-.957.249-1.346.214c6.507-5.931 15.424-19.191 5.819-39.411m-9.817 41.713c-.744.437-1.286.846-1.401 1.161c-.085.23.422.097 1.299-.395c.045-.263.083-.521.102-.766\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1l\\\" x1=\\\"-357.475\\\" x2=\\\"-356.226\\\" y1=\\\"662.826\\\" y2=\\\"683.091\\\" gradientTransform=\\\"scale(1 -1)rotate(4.07 10302.395 6569.262)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DE5C01\\\"/><stop offset=\\\".736\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".778\\\" stop-color=\\\"#FEFE26\\\"/><stop offset=\\\".837\\\" stop-color=\\\"#FFFE54\\\"/><stop offset=\\\".889\\\" stop-color=\\\"#FFFF76\\\"/><stop offset=\\\".932\\\" stop-color=\\\"#FFFF8B\\\"/><stop offset=\\\".961\\\" stop-color=\\\"#FFFF92\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1l)\\\" d=\\\"M94.086 49.239s6.643 18.909-14.588 36.636c-1.252 1.046 8.618.598 9.482.206c2.544-1.156 5.552-8.869 5.196-7.947c-.351.924 9.86-13.633-.09-28.895\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1m\\\" x1=\\\"-413.079\\\" x2=\\\"-373.909\\\" y1=\\\"565.756\\\" y2=\\\"589.168\\\" gradientTransform=\\\"matrix(1 0 0 -1 472.5 661)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B9120D\\\"/><stop offset=\\\".078\\\" stop-color=\\\"#BB180D\\\"/><stop offset=\\\".182\\\" stop-color=\\\"#C0290C\\\"/><stop offset=\\\".301\\\" stop-color=\\\"#C8450A\\\"/><stop offset=\\\".431\\\" stop-color=\\\"#D36C08\\\"/><stop offset=\\\".571\\\" stop-color=\\\"#E29E05\\\"/><stop offset=\\\".715\\\" stop-color=\\\"#F4DA02\\\"/><stop offset=\\\".792\\\" stop-color=\\\"#FEFD00\\\"/><stop offset=\\\".814\\\" stop-color=\\\"#FEFD07\\\"/><stop offset=\\\".846\\\" stop-color=\\\"#FEFD1B\\\"/><stop offset=\\\".884\\\" stop-color=\\\"#FEFE3C\\\"/><stop offset=\\\".927\\\" stop-color=\\\"#FFFE69\\\"/><stop offset=\\\".974\\\" stop-color=\\\"#FFFFA3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFFFC7\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1m)\\\" d=\\\"M103.377 61.232S99.371 85.756 71.665 87.73c-10.848.774-26.424-1.766-25.045 2.373c.428 1.282 2.467 6.631 7.121 7.873c12.594 3.359 46.103 2.259 49.636-36.744\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1n\\\" x1=\\\"-437.16\\\" x2=\\\"-397.033\\\" y1=\\\"476.669\\\" y2=\\\"471.232\\\" gradientTransform=\\\"scale(1 -1)rotate(-5.68 -5774.314 -4777.507)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1n)\\\" d=\\\"M80.272 79.792s-16.952 3.874-27.934-5.476c-10.049-8.556-5.064-1.355-3.7 2.197c1.4 3.643-6.476.86-7.66.274c-1.179-.578 18.654 11.86 39.294 3.005\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1o\\\" x1=\\\"-455.591\\\" x2=\\\"-408.998\\\" y1=\\\"430.233\\\" y2=\\\"415.59\\\" gradientTransform=\\\"matrix(.99 .145 .145 -.99 432.678 566.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1o)\\\" d=\\\"M69.348 89.032s-20.222-3.974-26.624-17.677c-5.471-11.706-4.023-3.116-4.27.794c-.259 4.021-5.929-1.471-6.687-2.426l-.038-.035c-.112.075 10.429 16.601 37.619 19.344\\\"/><linearGradient id=\\\"deviconFirefoxWordmark1p\\\" x1=\\\"-1003.024\\\" x2=\\\"-980.869\\\" y1=\\\"229.792\\\" y2=\\\"187.376\\\" gradientTransform=\\\"scale(1 -1)rotate(10.37 1165.464 5770.996)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".056\\\" stop-color=\\\"#DE7210\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F6C08F\\\"/></linearGradient><path fill=\\\"url(#deviconFirefoxWordmark1p)\\\" d=\\\"M47.257 87.259s-9.658-7.48-14.013-17.738c-3.659-1.271-8.524-4.178-8.621-4.676c1.546 7.971 9.686 17.277 22.634 22.414\\\"/><path fill=\\\"#383838\\\" d=\\\"M28.687 111.18v4.908h5.389v3.121h-5.389v7.337h-4.375v-18.489H35.33l-.454 3.123zm13.218-5.59c.471.453.708 1.027.708 1.721s-.236 1.267-.708 1.721c-.471.453-1.071.68-1.8.68c-.73 0-1.326-.227-1.787-.68c-.463-.454-.694-1.027-.694-1.721s.231-1.268.694-1.721c.461-.454 1.057-.68 1.787-.68c.729 0 1.329.226 1.8.68m-3.881 20.956v-14.167h4.215v14.167zm16.621-14.379l-.667 4.082c-.533-.125-.96-.187-1.28-.187c-.836 0-1.472.289-1.908.867c-.437.578-.778 1.445-1.027 2.602v7.016h-4.215V112.38h3.682l.347 2.748c.32-.977.804-1.747 1.454-2.307c.649-.561 1.383-.84 2.201-.84c.515-.001.985.061 1.413.186m13.605 8.536h-8.777c.142 1.192.48 2.027 1.014 2.508s1.271.721 2.214.721c.569 0 1.12-.103 1.654-.307s1.111-.521 1.734-.947l1.734 2.348c-1.654 1.316-3.494 1.974-5.522 1.974c-2.294 0-4.055-.675-5.282-2.027c-1.227-1.352-1.841-3.166-1.841-5.442c0-1.441.258-2.735.774-3.882c.515-1.147 1.271-2.054 2.267-2.721c.996-.667 2.188-1 3.575-1c2.045 0 3.646.64 4.802 1.92c1.156 1.28 1.734 3.06 1.734 5.335c0 .587-.026 1.093-.08 1.52m-4.055-2.721c-.036-2.169-.8-3.255-2.294-3.255c-.729 0-1.294.267-1.694.8c-.4.534-.646 1.415-.734 2.641h4.722zm11.738-8.137c-.267.285-.399.766-.399 1.441v1.093h3.334l-.454 2.936h-2.881v11.231h-4.215v-11.231h-2.135v-2.936h2.135v-1.253c0-1.423.466-2.583 1.401-3.482c.934-.898 2.271-1.347 4.014-1.347c1.405 0 2.695.303 3.869.907l-1.147 2.748a4.907 4.907 0 0 0-2.215-.534c-.605 0-1.04.143-1.307.427m15.287 4.068c1.227 1.326 1.841 3.18 1.841 5.563c0 1.513-.28 2.833-.84 3.962c-.561 1.129-1.361 2.005-2.401 2.628c-1.041.622-2.272.933-3.695.933c-2.152 0-3.846-.662-5.083-1.987c-1.236-1.324-1.854-3.179-1.854-5.562c0-1.512.28-2.833.84-3.961c.561-1.13 1.361-2.006 2.401-2.628c1.041-.623 2.271-.934 3.695-.934c2.169 0 3.868.662 5.096 1.986m-7.017 2.188c-.426.721-.64 1.837-.64 3.349c0 1.547.209 2.677.627 3.388c.418.711 1.063 1.067 1.935 1.067c.854 0 1.494-.359 1.92-1.08c.427-.721.64-1.836.64-3.349c0-1.547-.209-2.676-.626-3.388c-.418-.711-1.063-1.067-1.934-1.067c-.854 0-1.495.36-1.922 1.08m18.328 10.445l-2.454-5.309l-2.401 5.309h-4.589l4.563-7.443l-4.108-6.724h4.722l1.974 4.536l1.895-4.536h4.482l-3.869 6.59l4.563 7.577z\\\"/>\"\n\t\t},\n\t\t\"flask\": {\n\t\t\t\"body\": \"<path fill=\\\"#010101\\\" d=\\\"M44.44 100.63c-4.23-3.33-8.74-6.52-11.83-11.01c-6.49-7.92-11.49-17.1-14.9-26.74c-2.07-6.27-2.77-12.99-5.44-19.02c-2.78-4.38.48-9.16 5.27-10.55c2.13-.41 5.89-2.43 1.36-.98c-4.06 2.98-4.45-2.71-.29-3.07c2.84-.38 3.89-2.7 2.92-4.8c-3.05-1.99 7.4-4.18 2.14-7.15c-5.48-5.91 7.66-7.05 4.42-.33c-.77 5.16 9.18-.95 6.87 5.01c2.35 2.86 8.8.65 8.63 4.67c3.42.24 4.6 3.11 7.8 3.33c3.33 1.5 9.36 2.69 10.49 6.44c-3.3 2.61-10.95-5.4-11.31 1.84c1 10.69.74 21.7 4.65 31.88c1.85 6.16 6.33 11.01 10.38 15.81c3.88 4.7 9.12 8.01 14.48 10.8c4.69 2.21 9.75 3.68 14.87 4.6c2.07-1.59 5.74-7.48 8.97-5c.16 2.8-6.42 5.84-.31 5.54c3.59-1.08 6.08 2.77 9.04-.71c2.72 3.23 11.32-2.06 9.38 4.53c-2.62 1.69-6.44.67-9.07 3c-4.33-2.16-7.77 1.93-12.56 1.42c-5.32.95-10.73 1.34-16.13 1.34c-8.85-.7-17.89-.99-26.3-4.07c-4.74-1.38-9.37-4.08-13.53-6.78m7.47 3.24c4.63 2 9.16 4.11 14.23 4.75c8.05 1.12 16.37 2.84 24.45 1.27c-3.66-1.65-7.44.64-11.08-1.18c-4.37.94-9.06-.24-13.5-.82c-5.05-2.25-10.5-3.8-15.23-6.72c-5.91-2.16 3.06 2.77 4.65 3.17c3.69 2.1-4.06-1.08-5.16-1.95c-3.09-1.74-3.49-1.37-.31.39c.64.37 1.28.77 1.95 1.09m-8.81-6.23c4.49 1.66-.02-3.16-2.07-2.88c-.91-1.58-3.48-2.58-1.67-3.43c-3.26 1.13-3.42-4.3-4.95-3.53c-3.45-1.09-1.34-4.95-5.45-7.32c-.37-2.5-4.08-4.66-5.26-8.43c-.52-1.93-4.19-7.46-1.94-2.31c1.92 4.96 5.29 9.21 8.1 13.45c2.18 4.04 4.76 8.26 8.72 10.78c1.34 1.3 2.63 3.27 4.52 3.67M30.17 83.45c.16-.68.82 1.46 0 0m18.3 16.18c1-.44-1.43-.56 0 0m2.44.89c-.25-1.23-1.11.69 0 0m3.05 1.27c1.45-1.38-2.24-.87 0 0m5.22 2.91c.89-1.3-2.82-.49 0 0m-10.03-6.99c2.25-1.46-2.91-.02 0 0m2.29 1.14c-.07-.77-.82.34 0 0m11.43 7.13c1.84 1.16 10.73 2.54 5.16.48c-.93.2-10.33-2.66-5.16-.48M44.72 91.85c-.18-.77-2.85-.85 0 0m5.32 3.1c1.39-.96-2.87-.74 0 0m4.48 2.75c1.98-.75-3.23-.75 0 0m-11.97-8.21c2.16 1.65 8.7.21 3.3-.99c-2.45-1.31-7.99-2.2-4.22.79zm15 9.16c.9-1.53-3.77-.88 0 0m-4.56-3.63c5.27 1.49-4.43-3.34-1.3-.55l.7.32zm9.14 5.28c4.99.05-4.51-.68 0 0m-21.5-13.7c-.19-.93-1.23.08 0 0m29.94 18.44c.14-1.68-1.62 1.25 0 0M49.15 91.82c-.3-.88-1.56-.04 0 0m-8.04-5.8c2.86-.17-3.93-1.26 0 0m-9.54-6.16c-.36-1.38-3.12-2.47 0 0M56.6 95.74c-.52-.6-.25.13 0 0m15.58 9.56c-.05-.91-.85.35 0 0M55.22 94.32c.28-1.18-2.44-.36 0 0m-11.6-7.36c2.13-.23-3.42-1.44 0 0m19.63 12.2c3.32-1.32-3.24-.64 0 0m-10.21-6.93c3.83.49-4.56-2.61-.84-.28zm13.31 8.19c3.58-2.14 2.4 5.01 6.07.6c3.62-2.64-3.13 3.27 1.33.47c3.23-2.16 7.99 1.02 11 2.06c2.16-.11 4.27 1.87 6.49.67c4.27-1.15-8.36-1.71-5.05-3.75c-3.91 1.14-6.8-1.36-8.72-3.86c-4.39-1.01-9.46-3.25-11.65-7.14c-.89-1.46 1.29.21-.77-2.18c-2.64-2.35-3.96-5.02-5.73-7.88c-2.12-1.13-2.37-4.46-2.58-.11c.02-2.74-2.56-4.59-3.19-3.82c-.01-2.64 2.76-1.32.82-3.27c-.42-2.74-1.79-5.59-2.2-8.68c-.64-1.49-.09-4.68-2.19-1.31c-.76 3.57-.25-4.38.94-1.76c1.56-2.67-.56-2.36-.65-1.99c1.02-2.26.64-5.46-.27-4.24c.54-2.39.86-8.8-.81-7.66c1.01-2.5 1.92-11.44-2.47-8.03c-1.78.03-4.85.64-6.31 1.37c4.56 2.51-.46.91-2.32.51c-.24 2.33-2.08 1.32-4.38 1.34c3.67.45-1.79 3.75-3.89 2.47c-2.74 1.31 2.36 4.57.05 5.58c.28 1.52-4.19-.55-3.84 2.96c-2.65-1.12-.36 4.16.96 2.38c4.51 1.22 3.18 4.01 3.29 6.65c-.74 1.54-3.63-3.62-.64-3.38c-2.36-3.83-2.61-1.38-4.56.39c-.45.13 4.99 2.53 1.57 3.72c3.01.47 3.1 3.1 3.71 4.76c1.81 1.88 1.44-2.08 3.6.18c-1.37-2.02-7.25-5.68-2.52-4.51c-.03-2.03-.86-3.67.6-3.63c1.44-2.6-1.51 6.42 1.73 3.11c.9-.39 1.12-2.6 2.73.21c2.34 2.3.85 3.97-2.46 1.86c.59 2.01 4.42 2.72 3.7 5.86c.76 2.76 1.83 1.74 2.76 1.58c.73 2.68 1.14.71 1.18-.57c3.34.72 2.56 2.69 3.6 4.07c2.3 1.04-3.29-7.04.66-2.43c4.16 3.75 1.56 5.32-2.17 4.72c2.36-.19 3.12 3.19 6.07 3.07c2.69 1.28 4.52 6.2-.12 4.15c-1.61-1.45-7.31-3.24-2.65-.48c4.3 1.99 7.71 3.18 11.86 5.68c2.96 2.12 4.25 4.54 5.37 5.02c-2.49 1.19-7.51-.95-3.78-1.61c-2.33-.42-4.94-1.6-2.71 1.3c1.89 1.58 6.71 1.42 7.58 1.59c-.73 1.61-1.99 1.74.03 1.86c-2.25 1.22.72 1.41.93 2.1m-4.6-13c-1.37-1.43-1.72-4.11-.24-1.78c.75.3 2.43 4.38.24 1.78m14.99 9.52c.85-.06.02.65 0 0M59.59 83.91c-.06-2.17.49 1.67 0 0M58.1 81.9c-1.73-3.32 2.17.95 0 0M40.04 69.44c1.01-.27.5 1.73 0 0m14.37 7.79c.62-2.33.73 1.96 0 0m-10.15-7.06c-.71-1.29 1.5 1.21 0 0m8.71 2.79c-1.63-3.65 1.16-2 .36.6zM37.95 62.95c-.73-1.2-1.93-4.72-1.55-5.79c.35 1.75 3.72 7.53 1.65 2.39c-2.28-4.3 2.73 1.4 3.25 2.47c.24 1.07-1.41-.29-.29 2.21c-2.04-2.85-1.2 1.58-3.06-1.28m-4.64-3.2c.19-2.79 1.06 1.91 0 0m2.08.72c1-2.11 1.69 2.93 0 0m-5.02-3.89c-1.73-1.72-2.98-3.3.08-1.07c1.18.05-2.62-3.6.28-1.16c3.06.56 1.51 5.01-.36 2.23m2.64-.07c1-.99.53.98 0 0m1.62.52c-1.52-2.85 1.85 1.2 0 0m-3.22-3.08c-5.02-4.47 6.31 2.34.82.83zm14.39 8.36c-2.18-1.3-.58-9.18.16-3.79c2.11-.68-.12 2.78 1.46 2.75c-.24 2.18-.95 2.97-1.62 1.04m5.33 3.15c.21-2.38.45 1.62 0 0m-.93-.92c.24-1.01.03 1.2 0 0M32.39 52.48c-3.23-4.45 9.38 4.51 2.07 1.13c-.77-.21-1.69-.28-2.07-1.13m10.26 5.43c-.31-3.75.68.62 0 0m7.78 5c.6-2.14.05 1.41 0 0M32.89 50.78c1.92-.41 7.95 3.37 2.41 1.08c-.62-.69-1.93-.38-2.41-1.08m16.47 8.21c.2-3.84 1.15-2.29.01.55zm-15.05-9.55c.78-1.15-2.08-5.18.41-1.45c1.08.85 3.11 1.43 1.31 1.79c2.84 2.5-.68.68-1.72-.34m14.24 8.35c.54-4.37.47 2.56 0 0M32.68 45.41c.6-.26.32.79 0 0m3.71 2.21c.96-2.01 1.77 2.23 0 0m10.47 5.82c0-.77.2 1.12 0 0m-.6-1.34c-1.45-3.59 1.35 1.9 0 0m-.89-2.35c-.25-1.48.83 1.86 0 0m1.45-2.36c-1-1.76 1.26-7.75 1.51-4.03c-1.05 2.89-.3 4.51.43.63c1.36-3.06-.29 6.02-1.94 3.4m1.49-8.91c.44-.53.1.65 0 0M45.82 87.6c-.59-.52.07.33 0 0m5.13 2.6c2.86.74 2.84-.44.26-.79c-1.39-1.29-5.77-2.66-1.85-.16c.27.65 1.09.63 1.59.95m-10.14-6.74c1.57 1.18 5.93 3.32 2.24.45c1.24-1.44-2.38-2.21-1.18-3.18c-3.06-1.87-2.41-1.7-.27-1.64c-3.67-1.64.53-1.52.33-2.36c-1.42-.28-7.03-2.5-3.73.18c-3.36-1.71-.8.64-1.82.39c-3.44-.94 3.06 2.62-.54 1.73c1.97 1.56 5.3 4 .83 1.65c-.57.85 3.21 2.14 4.14 2.78m5.37 3.09c6.53 2.1-3.2-2.58 0 0m27.5 16.65c.08-1.3-.9 1.11 0 0m2.82 1.19c1.51-1.46.06 2.33 2.5-.36c.03-1.92-.07-3.06-2.8-.72c-.75.42-1.09 2.19.3 1.08M31.65 76.22c-.47-1.82-3.25-1.81 0 0m3.01 1.98c-1.12-1.86-4-1.68 0 0m17.17 10.35c1.68 1.49 7.7 1.09 2.03.18c-.83-1.24-5.32-.94-2.03-.18m23.6 14.57c2.57-2.16-2.5.97 0 0m5.36 3.69c.02-.69-1.11.3 0 0m.01-.97c2.86-3.03-2.77.18 0 0M24.22 70.01c-2.43-3.47-1.51-5.03-3.86-7.87c-.45-2.17-4.03-7.09-1.85-1.88c1.99 3.05 2.58 7.77 5.71 9.75m55.68 34.87c5.26-3.4-2.15-1.48 0 0m4.01 1.57c2.64-2.26-1.66-.47 0 0M30.75 72.38c.76-1.12-1.94-.14 0 0m52.33 32.99c2.55-1.64-.59-1.39-.46.15zM48.5 83.58c-.09-1.11-1.35.09 0 0m2.14 1.23c-.69-1.38-1.05.21 0 0m36.53 21.67c3.27-2.36-1.98-.45-.68.45zm-1.26-.6c2.67-2.23-2.8.99 0 0m6.39 4.25c1.79-1.19-2.17-.38 0 0M32.39 71.57c2.39.54 9.56 5.89 5.33.37c-2.17-.64-.87-5.94-3.08-5c1.48 2.48 1.22 3.53-1.9 1.97c-3.91-1.91-2.2.94-1.43 1.73c-1.04.25 1.39.91 1.08.93m-10.9-8.61c.43-1.77-3.95-9.75-2.07-4c.68 1.21.61 3.49 2.07 4M41.5 75.3c-1.23-1.03-.06-.15 0 0m3.03.71c0-1.88-3.35-.77 0 0m26.3 16.57c-.5-1.28-1.98-.02 0 0m1.26.93c-.18-.72-.72.14 0 0m10.43 6.56c1-.74-1.25-.09 0 0M26.93 64.35c2.87-1.11-3.07-.79 0 0m41.59 26.2c-.04-1.86-1.83.46 0 0M25.8 61.71c1.84-.62-1.71-.41 0 0m5.34 2.59c-.03-.61-.56.23 0 0m65.22 39.99c2.37-.48 7.77 1.21 8.64-.63c-2.88-.07-9.95-2.03-10.28.46l.63.1zM32.84 64.73c.05-1.88-1.46-.07 0 0m-14.05-9.75c-.64-3.58-2.43-.54 0 0m3.35.84c.04-1.15-3.07-1.03 0 0m1.91.94c-.55-.44-.43.57 0 0m12.06 7.73c.57-.52-1.35-.38 0 0m-13.33-9.85c-.33-2.71-3.88-.4 0 0m-6.87-4.46c-.1-1.25-.67.47 0 0m1.02-.77c-.17-1.48-.88.19 0 0m5.65 3.37c2.39-.94-4.35-1.94-.49-.18zm75.59 46.69c1.53-1.4-1.94-.43 0 0m9.13 4.74c.61-1.81-1.54.23 0 0M23.15 49.82c.26-1.75-1.89.35 0 0m-8.03-5.38c-.43-2.47-.37-6.82 3.76-5.35c-5.51 1.1 3.82 6.85 2.64 2.31c2.32.11 4.53-1.37 3.32.88c4.57-.5 7.73-4.46 12.14-3.91c3.44-.46 7.19-.8 10.89-2.18c3.04-.22 5.97-3.5 4.31-5.44c-4.15-.35-8.5.17-13.08 1.08c-5.08 1.06-9.7 3.06-14.83 3.93c-5 .67 1 1.85-.43 2.11c-2.61.9 3.11 1.52-.34 2.47c-2.13-.41-4.35-1.14-3.44-3.38c-4.79.62-9 2.61-5.21 7.48zm11.54-5.88c1.12-4.14 6.01 3.4 1.84.55c-.5-.38-1.32-.68-1.84-.55m.22-2.01c1.62-1.2.86.68 0 0m2.06.04c.15-1.9 4.71 1.01.75.68zm2.81-1.14c1.03-1.2.3 1.07 0 0m.72-.48c1.71-2.06 9.69-1.31 3.85-.2c-1.56-1.18-2.76.7-3.85.2m10.42-1.6c-.26-5.62 5.18 1.99 0 0m2.96-.02c1.08-2.83 4.2-1.14.5-.57c.08.3-.11 1.46-.5.57M21.99 48.37c3.23-1.98-3.43-1.72 0 0m2.39.66c1.13-1.2-2.46-.49 0 0m-7.04-4.99c1.85-1.42-2.18-.54 0 0m95.35 59.65c.05-1.65-1.41.74 0 0M103 97.08c.28-1.9-1.24.16 0 0m12.36 7.25c2.58.01 7.82-.8 2.2-.8c-.88.13-5.13.11-2.2.8M26.48 47.87c2.09-.14 3.27-2.3-.41-2.18c-5.69-.59 5.02 1.95-.73 1.22c-.77.51 1.09 1.1 1.14.96m1.84.93c-.22-1.34-.65.71 0 0m2.18-5.82c.9-1.12-1.26-.3 0 0m-6.95-11.6c3.73-1.27 8.82-2.69 10.58.62c-1.79-2.15-.72-4.28.97-1.12c2.39 3.19 3.59-1.45 2.03-2.52c1.77 2.2 3.79 3.24 1.19.14c2.83-3.4-5.66.45-7.59.41c-.92.41-9.58 2.2-7.18 2.47m2.19-4.18c2.13-1.6 7.35.96 4-1.59c-.33-.3-7.35 1.93-4 1.59m7.75.32c2.49.06-1.07-3.34 1.89-1.8c-.49-1.59-3.45-1.89-4.9-2.52c-.82 1.45 1.66 4.34 3.01 4.32m-6.39-7.04c.86-1.16-1.51.6 0 0m3.16.76c4.01-.53-1.02-1.72-.81-.04zm-5.91-4.62c-2.82-3.69 5.31.62 2.44-3.24c-2.41-1.92-4.73 2.16-2.44 3.24m36.21 19.5c1.29-2.29-5.34-3.09-.87-.81c.42.14.32.97.87.81\\\"/>\"\n\t\t},\n\t\t\"flask-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M18.767 82.685c-2.043-1.606-4.224-3.146-5.713-5.317c-3.135-3.828-5.548-8.258-7.198-12.914c-.998-3.028-1.339-6.275-2.625-9.185c-1.344-2.114.231-4.425 2.547-5.097c1.03-.198 2.843-1.171.655-.476c-1.962 1.44-2.151-1.306-.139-1.481c1.372-.181 1.878-1.305 1.408-2.316c-1.474-.962 3.574-2.017 1.034-3.452c-2.645-2.855 3.7-3.404 2.135-.162c-.375 2.492 4.435-.458 3.318 2.421c1.135 1.383 4.248.315 4.17 2.254c1.652.114 2.22 1.503 3.77 1.61c1.608.727 4.521 1.298 5.068 3.11c-1.594 1.261-5.286-2.608-5.464.886c.482 5.163.358 10.48 2.248 15.396c.893 2.978 3.059 5.32 5.015 7.64c1.872 2.271 4.407 3.869 6.991 5.214c2.266 1.069 4.709 1.777 7.18 2.223c1.001-.766 2.771-3.614 4.333-2.413c.075 1.35-3.101 2.822-.149 2.674c1.734-.525 2.936 1.34 4.364-.343c1.315 1.558 5.467-.994 4.531 2.19c-1.267.816-3.112.321-4.379 1.447c-2.09-1.045-3.753.933-6.068.685c-2.569.458-5.184.645-7.789.648c-4.274-.337-8.638-.48-12.703-1.967c-2.293-.666-4.527-1.972-6.54-3.275m3.608 1.565c2.236.966 4.423 1.985 6.874 2.293c3.889.54 7.905 1.373 11.808.615c-1.767-.798-3.593.308-5.353-.571c-2.11.455-4.375-.115-6.521-.396c-2.439-1.086-5.072-1.834-7.357-3.245c-2.855-1.043 1.476 1.338 2.248 1.531c1.784 1.013-1.962-.52-2.491-.94c-1.495-.839-1.686-.664-.148.188c.31.179.616.371.94.525m-4.256-3.008c2.168.804-.009-1.524-1.001-1.389c-.44-.764-1.682-1.246-.806-1.655c-1.574.547-1.65-2.079-2.389-1.704c-1.667-.526-.648-2.39-2.634-3.534c-.181-1.206-1.971-2.251-2.542-4.07c-.252-.932-2.024-3.605-.936-1.118c.926 2.396 2.555 4.449 3.913 6.498c1.052 1.95 2.296 3.991 4.213 5.208c.646.62 1.27 1.57 2.182 1.764m-6.242-6.855c.074-.327.396.708 0 0m8.839 7.818c.479-.217-.691-.272 0 0m1.176.428c-.121-.593-.538.332 0 0m1.473.613c.7-.667-1.081-.421 0 0m2.524 1.407c.426-.628-1.364-.236 0 0m-4.847-3.378c1.088-.705-1.407-.009 0 0m1.104.551c-.031-.372-.393.166 0 0m5.521 3.446c.888.561 5.184 1.227 2.494.229c-.451.096-4.988-1.282-2.494-.229m-8.763-6.827c-.087-.372-1.38-.412 0 0m2.568 1.499c.67-.466-1.388-.36 0 0m2.163 1.326c.96-.363-1.557-.364 0 0m-5.779-3.964c1.042.8 4.202.104 1.595-.476c-1.186-.632-3.858-1.064-2.036.381zm7.243 4.421c.435-.739-1.82-.422 0 0m-2.201-1.749c2.546.721-2.141-1.611-.628-.265l.335.151zm4.414 2.55c2.411.024-2.179-.332 0 0m-10.384-6.617c-.094-.449-.594.037 0 0m14.462 8.906c.064-.81-.786.604 0 0m-10.345-6.385c-.147-.428-.754-.019 0 0m-3.887-2.802c1.384-.085-1.897-.609 0 0m-4.606-2.977c-.173-.665-1.506-1.193 0 0m12.09 7.673c-.253-.29-.12.063 0 0m7.524 4.617c-.023-.442-.41.167 0 0m-8.19-5.305c.136-.571-1.181-.174 0 0m-5.606-3.553c1.03-.11-1.651-.697 0 0m9.483 5.891c1.605-.635-1.565-.309 0 0m-4.933-3.347c1.85.238-2.201-1.259-.407-.135zm6.43 3.954c1.728-1.032 1.158 2.418 2.931.291c1.748-1.277-1.51 1.578.644.228c1.559-1.042 3.861.494 5.315.995c1.045-.051 2.062.904 3.135.322c2.064-.556-4.037-.824-2.438-1.809c-1.888.549-3.282-.655-4.212-1.865c-2.119-.489-4.566-1.573-5.625-3.448c-.432-.703.622.101-.373-1.05c-1.276-1.136-1.913-2.426-2.77-3.805c-1.023-.545-1.144-2.152-1.247-.054c.008-1.324-1.236-2.216-1.541-1.847c-.005-1.276 1.333-.636.396-1.58c-.201-1.323-.865-2.7-1.064-4.193c-.309-.721-.043-2.262-1.058-.633c-.369 1.722-.122-2.115.453-.851c.753-1.292-.271-1.139-.313-.961c.491-1.089.311-2.634-.129-2.045c.261-1.155.413-4.251-.391-3.701c.488-1.208.926-5.528-1.193-3.881c-.858.013-2.345.31-3.046.66c2.201 1.214-.222.439-1.12.245c-.116 1.125-1.004.64-2.114.65c1.772.218-.863 1.813-1.878 1.193c-1.321.63 1.139 2.207.026 2.694c.137.733-2.023-.266-1.854 1.43c-1.282-.541-.175 2.012.466 1.148c2.18.591 1.534 1.935 1.589 3.212c-.355.745-1.754-1.75-.312-1.634c-1.138-1.849-1.258-.668-2.205.191c-.219.061 2.412 1.222.761 1.795c1.452.225 1.495 1.495 1.792 2.3c.872.91.693-1.004 1.738.09c-.662-.976-3.503-2.746-1.216-2.178c-.012-.98-.414-1.771.288-1.752c.695-1.256-.728 3.1.837 1.503c.434-.19.541-1.258 1.32.101c1.13 1.113.409 1.919-1.187.897c.285.971 2.134 1.315 1.786 2.829c.368 1.333.884.842 1.333.765c.352 1.294.553.343.569-.272c1.612.345 1.234 1.298 1.74 1.965c1.112.5-1.591-3.4.317-1.173c2.007 1.812.753 2.567-1.048 2.278c1.14-.093 1.507 1.541 2.934 1.484c1.301.618 2.182 2.994-.061 2.005c-.777-.702-3.53-1.566-1.28-.232c2.075.961 3.724 1.535 5.726 2.743c1.432 1.021 2.051 2.192 2.594 2.427c-1.204.572-3.628-.461-1.828-.777c-1.124-.203-2.387-.773-1.312.627c.916.764 3.241.685 3.659.77c-.354.777-.96.84.013.9c-1.083.581.353.672.453 1.003m-2.223-6.277c-.662-.692-.834-1.986-.118-.861c.367.148 1.175 2.116.118.861m7.239 4.597c.413-.027.013.314 0 0m-8.283-6.295c-.026-1.045.239.807 0 0m-.719-.966c-.833-1.607 1.049.454 0 0m-8.72-6.018c.489-.131.241.834 0 0m6.94 3.76c.3-1.127.353.945 0 0m-4.903-3.409c-.345-.621.723.584 0 0m4.207 1.349c-.788-1.766.56-.965.175.289zm-7.256-4.839c-.352-.579-.935-2.278-.746-2.798c.168.846 1.796 3.637.797 1.156c-1.103-2.079 1.319.673 1.568 1.194c.117.516-.681-.141-.141 1.069c-.984-1.377-.58.761-1.478-.621m-2.241-1.546c.092-1.347.512.923 0 0m1.008.349c.481-1.017.815 1.417 0 0m-2.427-1.878c-.834-.831-1.438-1.594.041-.514c.568.021-1.267-1.741.136-.561c1.475.27.728 2.419-.177 1.075m1.275-.033c.485-.481.257.473 0 0m.785.251c-.736-1.377.892.579 0 0m-1.559-1.489c-2.426-2.161 3.049 1.128.396.4zm6.954 4.039c-1.051-.629-.28-4.432.08-1.832c1.02-.33-.057 1.344.704 1.328c-.12 1.057-.461 1.435-.784.504m2.572 1.522c.103-1.147.216.782 0 0m-.447-.444c.115-.487.011.578 0 0m-8.604-5.827c-1.56-2.15 4.531 2.177.999.546c-.369-.097-.814-.133-.999-.546m4.954 2.625c-.148-1.811.328.3 0 0m3.759 2.413c.291-1.031.023.682 0 0m-8.473-5.859c.927-.198 3.839 1.626 1.165.521c-.297-.329-.932-.18-1.165-.521m7.957 3.966c.099-1.853.554-1.105.004.265zm-7.268-4.611c.377-.554-1.003-2.503.199-.698c.519.412 1.502.69.634.863c1.366 1.206-.332.326-.833-.165m6.874 4.033c.261-2.11.231 1.235 0 0m-7.664-5.982c.29-.123.154.385 0 0m1.795 1.067c.461-.969.85 1.08 0 0m5.056 2.814c-.003-.373.097.541 0 0m-.292-.649c-.701-1.731.653.917 0 0m-.431-1.136c-.117-.714.401.899 0 0m.703-1.14c-.483-.849.607-3.74.73-1.946c-.509 1.396-.146 2.179.207.305c.655-1.476-.142 2.91-.937 1.641m.72-4.301c.21-.257.047.311 0 0m-1.204 23.725c-.286-.25.036.157 0 0m2.48 1.253c1.38.354 1.373-.215.126-.384c-.67-.624-2.787-1.286-.892-.078c.124.319.52.311.766.462m-4.897-3.253c.759.568 2.862 1.605 1.083.216c.6-.696-1.148-1.068-.569-1.535c-1.476-.902-1.165-.821-.13-.793c-1.773-.794.256-.733.161-1.141c-.684-.135-3.397-1.206-1.801.088c-1.622-.826-.387.308-.877.188c-1.66-.451 1.477 1.264-.263.838c.951.753 2.561 1.933.401.797c-.284.41 1.545 1.03 1.995 1.342m2.593 1.49c3.153 1.014-1.547-1.242 0 0m13.278 8.045c.041-.626-.43.533 0 0m1.365.573c.728-.703.03 1.124 1.205-.172c.013-.928-.035-1.477-1.35-.35c-.364.203-.525 1.055.145.522M12.589 70.896c-.223-.876-1.567-.874 0 0m1.456.956c-.541-.897-1.93-.813 0 0m8.292 5c.81.72 3.718.528.983.089c-.404-.599-2.571-.457-.983-.089m11.396 7.039c1.246-1.046-1.207.465 0 0m2.592 1.78c.008-.336-.537.146 0 0m.004-.47c1.379-1.462-1.336.086 0 0M9.004 67.896c-1.176-1.677-.731-2.431-1.864-3.801c-.216-1.048-1.946-3.425-.895-.907c.962 1.473 1.247 3.753 2.759 4.708m26.892 16.841c2.539-1.64-1.042-.716 0 0m1.937.758c1.272-1.092-.804-.227 0 0M12.158 69.042c.363-.54-.94-.07 0 0m25.271 15.935c1.231-.792-.284-.671-.223.072zM20.728 74.451c-.042-.536-.65.045 0 0m1.032.593c-.329-.663-.504.105 0 0m17.643 10.469c1.577-1.138-.955-.217-.33.216zm-.604-.291c1.285-1.077-1.355.476 0 0m3.086 2.054c.863-.578-1.049-.187 0 0M12.948 68.652c1.155.259 4.619 2.847 2.576.18c-1.047-.31-.419-2.868-1.487-2.416c.717 1.198.589 1.706-.915.952c-1.89-.924-1.063.457-.692.837c-.504.114.666.439.518.447m-5.265-4.158c.207-.857-1.906-4.708-.998-1.931c.327.582.294 1.684.998 1.931m9.665 5.959c-.597-.498-.029-.072 0 0m1.465.341c0-.906-1.62-.369 0 0M31.515 78.8c-.243-.618-.957-.014 0 0m.61.445c-.091-.347-.352.068 0 0m5.034 3.172c.484-.356-.604-.046 0 0M10.312 65.165c1.385-.536-1.485-.382 0 0m20.084 12.652c-.015-.895-.883.224 0 0M9.765 63.89c.889-.301-.824-.198 0 0m2.581 1.25c-.014-.294-.272.113 0 0m31.496 19.313c1.144-.229 3.751.582 4.172-.303c-1.39-.034-4.806-.979-4.967.225l.304.048zM13.167 65.348c.021-.91-.708-.035 0 0m-6.788-4.71c-.308-1.731-1.173-.263 0 0m1.618.406c.021-.556-1.481-.5 0 0m.926.455c-.268-.216-.209.273 0 0m5.821 3.734c.275-.253-.649-.186 0 0m-6.436-4.759c-.158-1.307-1.877-.195 0 0m-3.322-2.153c-.046-.604-.322.227 0 0m.495-.373c-.08-.717-.424.09 0 0m2.727 1.627c1.154-.452-2.1-.937-.236-.085zm36.509 22.552c.739-.677-.937-.209 0 0m4.411 2.285c.296-.872-.746.116 0 0M8.488 58.147c.121-.848-.916.167 0 0m-3.882-2.601c-.208-1.195-.179-3.292 1.814-2.584c-2.661.529 1.843 3.309 1.275 1.113c1.119.056 2.188-.661 1.602.425c2.205-.242 3.733-2.155 5.864-1.887c1.659-.22 3.474-.387 5.261-1.055c1.471-.105 2.887-1.688 2.081-2.626c-2.005-.17-4.104.082-6.32.522c-2.455.51-4.686 1.479-7.164 1.896c-2.416.325.485.895-.208 1.021c-1.259.438 1.504.732-.163 1.193c-1.029-.196-2.101-.549-1.661-1.634c-2.313.301-4.347 1.26-2.519 3.614zm5.576-2.839c.542-1.998 2.905 1.644.888.265c-.24-.181-.637-.328-.888-.265m.105-.97c.783-.582.415.328 0 0m.993.017c.072-.919 2.277.487.364.331zm1.36-.546c.497-.582.144.514 0 0m.348-.233c.827-.994 4.681-.636 1.86-.098c-.756-.569-1.335.336-1.86.098m5.032-.776c-.125-2.715 2.5.963 0 0m1.428-.01c.521-1.365 2.026-.548.242-.274c.038.147-.053.708-.242.274M7.925 57.445c1.559-.955-1.655-.83 0 0m1.153.319c.547-.581-1.189-.235 0 0m-3.398-2.41c.891-.686-1.055-.261 0 0m46.051 28.809c.027-.795-.681.357 0 0m-4.679-3.193c.134-.914-.602.079 0 0m5.966 3.501c1.246.006 3.775-.387 1.064-.386c-.426.065-2.478.053-1.064.386M10.092 57.204c1.009-.068 1.578-1.112-.196-1.053c-2.747-.282 2.424.942-.353.592c-.371.246.528.529.549.461m.888.449c-.105-.646-.312.344 0 0m1.054-2.809c.437-.542-.606-.145 0 0M8.68 49.239c1.8-.611 4.262-1.3 5.111.301c-.865-1.04-.35-2.065.468-.543c1.155 1.539 1.732-.7.982-1.217c.856 1.063 1.829 1.567.573.067c1.366-1.642-2.734.216-3.665.197c-.449.2-4.629 1.065-3.469 1.195m1.055-2.02c1.025-.775 3.55.461 1.93-.771c-.159-.139-3.545.935-1.93.771m3.743.155c1.2.03-.519-1.615.912-.87c-.234-.767-1.666-.91-2.366-1.218c-.397.703.805 2.097 1.454 2.088m-3.087-3.397c.416-.564-.728.286 0 0m1.53.365c1.936-.256-.494-.833-.391-.02zm-2.856-2.233c-1.364-1.781 2.564.299 1.178-1.565c-1.166-.928-2.285 1.047-1.178 1.565m17.491 9.421c.625-1.108-2.58-1.494-.42-.392c.197.065.153.467.42.392m0 0\\\"/><path d=\\\"M56.063 43.886c-.223.883-.362 2.362-.414 4.44c0 .409-.184.613-.553.613c-.368 0-.625-.178-.769-.533c-.395-.961-.77-1.63-1.125-2.013c-.42-.447-.98-.717-1.677-.809c-.75-.118-2.617-.178-5.604-.178c-.683 0-1.132.073-1.341.217c-.132.092-.197.29-.197.594v8.938c0 .304.19.447.571.435c1.171-.014 2.868-.094 5.09-.238c.434-.052.727-.195.878-.424c.152-.229.3-.825.444-1.786c.092-.526.401-.73.927-.611c.448.092.64.296.573.611c-.369 1.79-.488 4.118-.356 6.986c.014.342-.203.526-.65.552c-.369.04-.599-.158-.691-.592c-.341-1.644-.977-2.521-1.903-2.635c-.928-.11-2.437-.166-4.528-.166c-.237 0-.354.083-.354.255v8.882c0 .656.242 1.104.729 1.341c.383.196 1.204.374 2.467.532c.646.064.927.35.849.848c-.08.435-.658.605-1.737.513c-3.118-.249-5.689-.235-7.714.041c-.566.077-.848-.151-.848-.69c0-.342.282-.539.848-.592c1.289-.146 1.933-1.277 1.933-3.395V48.127c0-.866-.154-1.534-.463-2c-.31-.468-.885-.894-1.727-1.274c-.526-.237-.722-.56-.591-.968c.065-.25.171-.388.315-.414c.131-.04.481-.013 1.045.079c.829.132 2.783.198 5.86.198c3.632 0 6.768-.08 9.413-.237c.881-.053 1.322.019 1.322.216a.693.693 0 0 1-.022.159m12.826 25.081c0 .525-.297.757-.889.688c-1.813-.169-4.064-.145-6.747.079c-.54.054-.871.039-.998-.038c-.125-.079-.187-.296-.187-.653c0-.314.358-.58 1.075-.797c.718-.217 1.076-.866 1.076-1.944V48.445c0-1.067-.155-1.849-.463-2.349c-.31-.5-.852-.888-1.628-1.163c-.408-.145-.612-.349-.612-.613c0-.394.296-.69.887-.887c.896-.29 1.823-.735 2.784-1.342c.789-.474 1.289-.708 1.499-.708c.487 0 .73.334.73 1.006c0-.053-.027.605-.079 1.972c-.038 1.302-.052 2.584-.038 3.848l.077 17.619c0 .804.198 1.387.593 1.748c.395.362 1.072.602 2.031.72c.592.063.889.288.889.671m17.994-1.324c0 .278-.503.695-1.508 1.253c-1.007.56-1.813.839-2.418.839c-.514 0-.966-.248-1.361-.75c-.395-.499-.671-.749-.83-.749c-.117 0-.741.271-1.873.808c-1.13.541-2.27.812-3.413.812c-1.078 0-1.98-.317-2.704-.947c-.788-.697-1.184-1.646-1.184-2.843c0-2.275 2.604-3.906 7.814-4.893c.894-.171 1.348-.533 1.359-1.086l.042-1.263c.077-2.157-.876-3.235-2.862-3.235c-.565 0-1.103.504-1.609 1.518c-.505 1.013-1.232 1.559-2.179 1.639c-1.078.104-1.619-.35-1.619-1.362c0-.632.804-1.368 2.408-2.211c1.683-.88 3.303-1.321 4.854-1.321c2.67 0 3.993 1.27 3.966 3.809l-.08 8.128c-.011.855.351 1.283 1.087 1.283c.145 0 .421-.033.828-.099a8.25 8.25 0 0 1 .711-.099c.381 0 .571.258.571.769m-6.075-4.498c.012-.329-.064-.547-.229-.651c-.163-.105-.423-.125-.778-.06c-3.171.566-4.755 1.599-4.755 3.097c0 1.513.822 2.27 2.466 2.27c.658 0 1.336-.124 2.032-.373c.816-.291 1.223-.64 1.223-1.047zm20.796 2.149c0 1.396-.537 2.504-1.608 3.326c-1.071.823-2.535 1.234-4.392 1.234c-1.234 0-2.473-.131-3.709-.396c-1.065-.237-1.684-.453-1.854-.65c-.106-.186-.158-1.085-.158-2.703c0-.699.158-1.06.476-1.086c.313-.04.583.131.808.512c.986 1.724 2.578 2.587 4.774 2.587c1.854 0 2.781-.646 2.781-1.935c0-.564-.208-1.039-.631-1.42c-.461-.435-1.354-.942-2.683-1.52c-1.921-.855-3.204-1.605-3.848-2.25c-.697-.684-1.047-1.604-1.047-2.763c0-1.42.546-2.525 1.639-3.314c1.014-.762 2.367-1.144 4.063-1.144c1.066 0 2.04.085 2.921.256c.948.172 1.441.382 1.481.632c.104.736.322 1.802.649 3.198c.041.17-.145.308-.552.413c-.435.092-.723.019-.867-.216c-1.041-1.698-2.354-2.547-3.947-2.547c-1.802 0-2.704.579-2.704 1.737c0 .646.245 1.157.73 1.538c.435.329 1.454.842 3.059 1.54c1.684.723 2.828 1.375 3.433 1.953c.793.75 1.186 1.757 1.186 3.018m22.889 3.553c0 .461-.31.705-.928.73c-.922.014-2.125.078-3.611.196c-.736.146-1.263.055-1.579-.274c-2.078-2.237-3.841-4.578-5.288-7.025c-.117-.21-.27-.315-.453-.315c-.225 0-.612.198-1.163.592c-.62.341-.929.828-.929 1.458c0 .449.013 1.093.039 1.936c.026.841.236 1.394.632 1.656c.276.186.914.33 1.913.435c.618.079.928.31.928.69c0 .304-.05.491-.147.563c-.098.073-.359.089-.78.049c-1.315-.117-3.537-.051-6.67.197c-.788.065-1.216-.032-1.28-.296a1.47 1.47 0 0 1-.041-.396c0-.406.401-.716 1.204-.925c.725-.186 1.085-1.033 1.085-2.546V48.326c0-1.078-.104-1.828-.314-2.248c-.289-.541-.896-.962-1.816-1.265c-.434-.144-.65-.347-.65-.611c0-.382.31-.678.927-.887a12.36 12.36 0 0 0 2.82-1.362c.725-.474 1.172-.711 1.343-.711c.539 0 .81.342.81 1.027c0-.093-.006.559-.021 1.952c-.013.961-.02 2.25-.02 3.869l.04 12.35c0 .344.093.514.275.514c.196 0 .5-.17.908-.514a103.59 103.59 0 0 0 4.024-3.354c.317-.329.474-.591.474-.789c0-.355-.532-.605-1.597-.75c-.46-.054-.68-.31-.653-.771c.041-.459.271-.657.692-.591c.947.132 2.329.204 4.143.217c1.264.012 2.52.02 3.77.02c.407.014.611.256.611.73c0 .447-.322.69-.966.73a7.255 7.255 0 0 0-2.861.69c-1.251.566-2.586 1.559-4.007 2.979a.358.358 0 0 0-.157.295c0 .185.223.625.671 1.323c1.645 2.5 3.197 4.387 4.656 5.663c.935.802 1.809 1.203 2.625 1.203c.604 0 .98.043 1.124.129c.144.088.217.315.217.683m0 0\\\"/>\"\n\t\t},\n\t\t\"flutter\": {\n\t\t\t\"body\": \"<path fill=\\\"#3FB6D3\\\" d=\\\"M12.3 64.2L76.3 0h39.4L32.1 83.6zm64 63.8h39.4L81.6 93.9l34.1-34.8H76.3L42.2 93.5z\\\"/><path fill=\\\"#27AACD\\\" d=\\\"m81.6 93.9l-20-20l-19.4 19.6l19.4 19.6z\\\"/><path fill=\\\"#19599A\\\" d=\\\"M115.7 128L81.6 93.9l-20 19.2L76.3 128z\\\"/><linearGradient id=\\\"deviconFlutter0\\\" x1=\\\"59.365\\\" x2=\\\"86.825\\\" y1=\\\"116.36\\\" y2=\\\"99.399\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1b4e94\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#1a5497\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#195a9b\\\"/></linearGradient><path fill=\\\"url(#deviconFlutter0)\\\" d=\\\"m61.6 113.1l30.8-8.4l-10.8-10.8z\\\"/>\"\n\t\t},\n\t\t\"fortran\": {\n\t\t\t\"body\": \"<path fill=\\\"#734c94\\\" d=\\\"M18.969 0C13.25 0 0 11 0 18.66v90.453c0 5.692 11.21 18.903 18.781 18.903l90.551-.032c6.738-.004 18.688-9.683 18.688-18.601V18.84c0-6.078-10.61-18.832-18.43-18.832zm-1.395 13.66h93.367v41.711l-10.992-.164c-.101-.098-.402-3.047-.605-5.758C98.19 36.7 95.328 29.363 89.809 26.5c-2.914-1.504-7.457-1.95-22.02-1.953l-13.57.004v31.273h2.41c4.066-.05 9.234-1.004 10.941-2.058c2.211-1.356 4.067-5.27 4.72-9.989c.491-3.445.87-6.023.87-6.023h10.676v49.691H72.793v-1.957c0-3.21-1.508-10.691-2.563-12.949c-1.656-3.465-4.464-4.668-12.449-5.422l-3.664-.351l.203 16.113c.149 15.308.25 16.164 1.203 17.469c1.207 1.605 2.512 1.906 10.493 2.507l5.355.258l-.035 10.938H17.574v-10.942l4.922-.304c9.988-.653 9.887-.602 10.39-8.43c.45-7.43-.116-65.598-.452-66.762c-.551-1.922-2.618-3.027-8.786-3.023l-6.074-.04z\\\"/>\"\n\t\t},\n\t\t\"foundation\": {\n\t\t\t\"body\": \"<path fill=\\\"#D3EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M23.025 122.111c.023.349-.141.419-.402.233c-.554-.395-1.175-.736-1.623-1.23c-2.246-2.481-3.872-5.313-4.642-8.597c-.313-1.338-.335-2.679-.236-4.062c.191-2.651 0-5.295-.714-7.877c-.047-.172-.154-.328-.342-.714l-1.36 1.659l-.164-.099c.041-3.821-.09-7.631-.773-11.445l-1.505 3.558l-.25-.044c-.111-.569-.235-1.136-.332-1.707c-.567-3.348-.662-6.733-.475-10.102c.29-5.21 1.15-10.322 3.577-15.037c.683-1.326 1.509-2.563 2.609-3.694c-.562.169-1.132.315-1.684.514c-.579.208-1.14.467-1.832.755c.723-1.9 1.684-3.566 2.933-5.048c1.233-1.463 2.55-2.856 3.88-4.335l-3.087-1.154l-.218-.205c.214-.112.448-.198.638-.342c3.014-2.285 6.463-3.586 10.091-4.492c1.153-.287.951-.073 1.032-1.279c.131-1.952.344-3.898.523-5.847l.178-.015l2.647 5.041c-.288-7.73.268-15.343 2.403-22.787l.181-.002c.014.249.046.498.037.746c-.063 1.632.096 3.225.75 4.745c.454 1.056 1.116 1.923 2.197 2.582c.453-4.562 1.672-8.88 3.108-13.274l2.152 2.427a36.028 36.028 0 0 1 2.07-8.766l3.064 3.904l1.817-8.597l1.29 2.83c-.09 4.495 2.107 7.938 5.188 11.07l-3.409 1.722c3.574-.291 6.144-1.523 7.975-3.805c.541-.847 1.167-1.652 1.603-2.55c.655-1.346.605-1.383-.625-2.208c-3.29-2.204-5.52-5.195-6.699-8.972c1.407-1.806 3.359-2.748 5.394-3.466l.26 4.037c.545-.289.936-.488 1.32-.7c3.378-1.86 6.975-3.112 10.753-3.853c.727-.142 1.461-.242 2.194-.349c.083-.012.18.061.27.094L71.255 4.19c-1.291 1.029-2.317 2.29-3.208 3.668l-.125.125l-.002.124c-.127.132-.293.243-.376.398c-.673 1.257-1.367 2.504-1.978 3.792c-.356.75-.57 1.567-.86 2.389l5.678.541l.1.217c-4.079 3.673-8.165 7.339-11.957 11.466l4.061.556c-1.151.471-2.188.829-3.164 1.308c-2.843 1.395-5.502 3.037-7.424 5.661c-1.488 2.032-3.035 4.021-4.556 6.028c-1.188-1.19-2.375-2.381-3.57-3.581l-.912 4.163l2.535 2.281c-.134.257-.276.51-.401.771c-.792 1.663-1.651 3.298-2.35 4.999c-.727 1.772-.891 3.682-1.027 5.583c-.156 2.183-.399 4.362-.468 6.547c-.083 2.647-.098 5.302.349 7.933c.393 2.316.694 4.65 1.155 6.952c.285 1.421.792 2.797 1.201 4.193l.171-.034l1.691-3.393l.169.043c.61 2.926 1.479 5.772 2.724 8.487c1.239 2.702 2.666 5.294 4.913 7.391v-3.58l.25.003c.459.239.92.476 1.37.732a78.895 78.895 0 0 0 9.798 4.724c4.083 1.632 8.148 3.305 12.026 5.389c1.201.645 2.409 1.333 3.458 2.191c2.381 1.95 4.666 4.019 6.99 6.04l-.193.455c-.761 1.522-1.535 3.037-2.285 4.565c-.662 1.349-1.298 2.71-1.946 4.066l-.168-.026v-4.699c-.267.603-.373 1.213-.535 1.808a661.507 661.507 0 0 1-2.004 7.238c-.207.726-.727 1.144-1.441 1.428c-.836.332-1.616.226-2.418-.027l.007.004l-.232-.107c-1.218-.907-2.435-1.816-3.656-2.72c-.312-.23-.64-.439-.948-.649l.442 4.497l-.235.121c-4.982-4.061-11.074-6.074-16.596-9.138c-1.795-1.143-3.595-2.277-5.382-3.434c-.477-.309-.911-.682-1.471-1.106l.274 2.213l-.15.105l-5.103-3.503c.089-.695.222-1.388.259-2.085c.066-1.273.224-2.566.079-3.82c-.351-3.029-1.925-5.353-4.438-7.075a34.016 34.016 0 0 1-2.946-2.269c-.517-.444-.917-1.034-1.032-1.672l2.932.263c-.872-1.626-1.74-3.065-2.429-4.585c-.69-1.525-1.348-3.095-1.263-5.023c.513.697.846 1.345 1.609 1.654c-.261-2.57.114-5.003.533-7.417c.417-2.411.997-4.794 1.506-7.19c-1.777 3.112-3.59 6.199-4.135 9.956l-1.467-1.544c-.064.932-.187 1.774-.168 2.614c.042 1.882.113 3.766.246 5.644c.151 2.142.736 4.183 1.582 6.158c.964 2.255 2.616 4.009 4.146 5.858c.973 1.174 1.806 2.447 2.027 3.993c.239 1.673.396 3.357.589 5.037l.388 5.684c-1.113.229-4.221-.522-4.873-1.23l.523-.279c-.559-.483-1.177-.904-1.647-1.452c-.714-.831-.854-1.904-1.021-2.954c-.043-.27-.262-.511-.399-.765c-.26.236-.602.429-.754.721c-.128.245-.097.62-.027.911c.129.541.294 1.083.519 1.59c.679 1.536 1.415 3.046 2.087 4.584c.826 1.887 1.505 3.818 1.459 5.922c-.014.617-.14.733-.708.506a27.14 27.14 0 0 1-2.252-1.041c-.578-.296-1.124-.653-1.755-1.024v.663l-.051.043c-.18-.091-.385-.152-.538-.277c-.65-.531-1.285-1.082-1.925-1.625l.004.005l-.13-.26l-1.147-2.854l-.104.42l-.185.39c-.862-1.58-1.316-3.162-1.549-4.826c-.419 1.423.029 2.781.217 4.238l.378-.41c.327.659.609 1.298.953 1.903c.347.61.73 1.202 1.142 1.77c.208.289.513.508.773.758c.605 1.524 1.229 3.043 1.534 4.827l-3.279-.972c-1.322-.592-2.674-1.131-3.737-2.171c-.052-.05-.153-.049-.231-.072l-.048-.163l-.047.032l.093.133l1.09 2.272l-.078.16l-1.703-.594zl-.053-.029zm1.334-2.055l-1.282-3.093l-.421.287l-.861-4.031c-.825 1.579.795 6.083 2.564 6.837M38.46 69.748l-.018-.053l-.045.012l.018.053z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E9F5FA\\\" fill-rule=\\\"evenodd\\\" d=\\\"M87.519 108.3c-2.324-2.021-4.609-4.089-6.99-6.04c-1.049-.858-2.257-1.546-3.458-2.191c-3.877-2.083-7.943-3.756-12.026-5.389a78.895 78.895 0 0 1-9.798-4.724c-.45-.256-.911-.493-1.37-.732l-.25-.003v3.58c-2.247-2.096-3.673-4.689-4.913-7.391c-1.245-2.714-2.114-5.561-2.724-8.487l-.169-.043l-1.691 3.393l-.171.034c-.408-1.396-.916-2.772-1.201-4.193c-.461-2.302-.762-4.636-1.155-6.952c-.446-2.631-.431-5.286-.349-7.933c.068-2.185.312-4.365.468-6.547c.136-1.9.3-3.81 1.027-5.583c.698-1.701 1.558-3.336 2.35-4.999c.125-.262.267-.514.401-.771l.25.184c1.585 1.305 3.186 2.591 4.74 3.933c.296.255.518.708.58 1.102c.12.754.11 1.531.136 2.299c.043 1.288.377 1.834 1.592 2.223c4.15 1.326 8.375 2.076 12.757 1.565c1.22-.143 2.242-.604 2.952-1.629a76.008 76.008 0 0 0 1.825-2.747c.671-1.064.853-1.136 2.083-.95c.554.084.734.341.721.858c-.02.788-.004 1.577-.013 2.365c-.019 1.754.944 2.758 2.552 3.129c1.37.315 2.769.547 4.168.679c1.772.166 3.567.326 5.297-.331c-.423 1.095-.842 2.191-1.27 3.285c-.188.481-.36.973-.601 1.428c-.352.664-.467 1.259.247 1.758l.129.138l-.001-.003l.34.651c.802 1.633 1.694 3.23 2.382 4.91c1.084 2.65 1.468 5.459 1.543 8.312c.123 3.35-.517 6.563-1.781 9.653c-.368.897-.694 1.885-1.312 2.595c-2.782 3.204-6.32 4.659-10.584 4.22l-1.229-.143a.611.611 0 0 0 .283.287c2.869 1.669 5.737 3.339 8.609 5.003c.155.09.336.134.504.2c.536.471 1.076.937 1.608 1.413l2.539 2.283l.195.136c.86-.741 1.686-1.489 2.549-2.189c2.553-2.073 5.361-3.718 8.36-5.074c2.189-.989 4.3-2.154 6.446-3.24c.125-.063.254-.122.562-.104l-.767 2.929l-.167.59l-.052.028l.023.023l.028-.052c.995-.472 2.019-.891 2.975-1.431c.794-.449 1.507-1.039 2.257-1.565c-.142.32-.258.655-.432.957c-1.296 2.256-3.028 4.155-4.915 5.921c-.537.502-1.116.959-1.748 1.499l.162-2.853c-2.766 2.301-5.083 4.773-7.326 7.321l-.168-.054l-.232-3.345c-2.439 2.196-4.849 4.256-6.777 6.804M54.668 57.42c.036.344.042.59.09.828c.34 1.718 1.318 3.035 2.666 4.083c2.78 2.164 6.034 3.194 9.443 3.764c3.072.514 6.177.299 9.271.218c.139-.003.276-.048.542-.098l-.71-1.487c-.353-.725-.725-1.441-1.061-2.174c-.244-.532-.079-.9.427-1.25c1.064-.736 2.073-1.556 3.146-2.373a4.53 4.53 0 0 0-2.596-1.037c-2.647-.204-5.3-.41-7.954-.454c-4.382-.073-8.766-.02-13.264-.02m13.943 18.062l.245-.049c.356-.718.759-1.417 1.056-2.159c.364-.912.707-1.781 1.732-2.178c.556-.215 1.061-.562 1.588-.849l-.051-.196c-4.601.285-9.108-.217-13.641-1.682c.121 1.944.614 3.59 1.426 5.246l1.749-1.948c.55 1.486.919 2.933 2.036 4.186l2.139-3.159zm4.107 17.272l-.012-.037l-.053-.011l.015.063zm-25.27-52.289c1.521-2.008 3.067-3.997 4.556-6.028c1.922-2.624 4.581-4.266 7.424-5.661c.976-.479 2.012-.837 3.164-1.308l-4.061-.556c3.792-4.127 7.878-7.793 11.957-11.466l-.1-.217l-5.678-.541c.291-.821.504-1.639.86-2.389c.611-1.287 1.305-2.535 1.978-3.792c.083-.155.249-.267.376-.398c.21.083.414.197.632.244c3.081.667 6.164 1.321 9.244 1.989c.84.182.853.187.853-.713V4.994c1.014-.278 2.018-.606 3.045-.824a231.84 231.84 0 0 1 7.155-1.414c1.193-.213 2.41-.288 3.716-.438l-2.53 4.368l.142.101c1.076-.317 2.139-.694 3.231-.934c1.099-.243 2.227-.349 3.448-.531v1.776c2.999-.373 5.888-.31 8.855.253c-.193.392-.352.699-.497 1.013c-.506 1.09-1.004 2.185-1.513 3.272c-.217.464-.108.719.406.867c1.21.349 2.41.738 3.612 1.117c.234.074.46.173.784.296c-.52.634-1.019 1.2-1.471 1.801c-1.281 1.698-2.544 3.41-3.808 5.121c-.07.095-.086.229-.128.346l-2.549 3.972c-.778 1.322-1.559 2.643-2.327 3.971c-.056.097-.017.248-.021.375c-.381.555-.819 1.08-1.134 1.67c-1.481 2.782-2.974 5.561-4.375 8.383c-1.373 2.767-2.643 5.584-3.951 8.382c-.078.166-.098.357-.145.537l-6.319-1.292c-.691-.944-1.718-1.029-2.502-.207c-1.761.056-3.522.143-5.284.156c-.904.007-1.833-.008-2.71-.202c-2.71-.598-5.4-1.287-8.099-1.94c-.445-1.08-1.992-1.246-2.751-.563l-.186-.006c-3.344-.569-6.701-.962-10.104-.825c-.158.006-.364-.097-.478-.216c-.914-.963-1.813-1.941-2.717-2.914m11.499 1.946l.333-.144c1.438-.753 2.93-1.206 4.577-.872c.319.065.649.082 1.033.128c-.967-1.475-3.403-1.606-4.754-.729c-.589.382-1.156.811-1.189 1.617l-.029.052zm6.195-3.309c-.58-1.39-2.409-2.078-4.047-1.627c-1.374.377-2.669 1.849-2.525 2.995c1.834-2.072 4.051-2.258 6.572-1.368m18.069 2.652c1.787.167 3.337.756 4.444 2.326c.08-1.298-.425-2.06-1.476-2.635c-.984-.539-2.18-.389-2.968.309m3.151 4.988c-.151-1.446-.603-2.614-2.042-3.026c-.74-.212-1.489-.091-2.117.507c1.884.518 2.55.577 4.159 2.519\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B3E0EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M87.909 76.486c-.076-2.853-.459-5.662-1.543-8.312c-.688-1.68-1.58-3.277-2.382-4.91l-.34-.651c.611.184 1.218.382 1.834.547c.897.241 1.792.519 2.707.659c.488.075 1.017-.101 1.525-.178c.196-.03.386-.099.69-.179l-.247 1.223c2.042-.949 3.52-2.408 4.715-4.116c1.19-1.702 2.208-3.524 3.28-5.262l.479.807c.863-1.35.268-5.337-1.156-7.71c.362 0 .661-.021.956.003c1.873.152 3.783.134 5.477 1.138c1.343.795 2.302 1.923 2.945 3.412l-1.434-.08c1.429 2.313 1.979 4.708 1.755 7.449l-1.105-.878c-.053.262-.091.532-.164.792c-.221.777-.464 1.547-.678 2.326c-.057.208-.04.435-.057.653c.232.006.488.08.693.007c1.171-.416 2.329-.868 3.492-1.305c.485-.182.979-.342 1.458-.539c.506-.208.694-.028.659.482c-1.317.459-2.636.916-3.951 1.381c-.168.06-.322.163-.482.246c1.666-.185 2.327-.097 3.179.498c.62.433.71.972.159 1.499c-.428.409-.941.733-1.437 1.063c-.297.199-.634.338-1.046.553l.572.217c-.908.596-1.782 1.11-2.587 1.715c-1.001.753-2.006 1.521-2.894 2.398c-.708.699-.492 1.187.499 1.267c1.215.098 2.438.102 3.657.144l.783.001l-.578.747l-.029.048l.025-.051c.457 0 .92.044 1.368-.018c.282-.04.678-.173.784-.384c.229-.458.599-.515 1.003-.591c.79-.149 1.584-.281 2.368-.458c.627-.142 1.243-.34 1.863-.513l.092.13l-1.388 1.293l-.208-.762c-2.202 1.012-4.377 1.929-6.469 3.008c-1.009.521-1.86 1.347-2.783 2.036l-.051.058l.058-.05l.591.042l-2.313 1.951c.369.321.665.743 1.062.887c.747.272 1.545.483 2.335.54c1.191.085 2.393.016 3.59.012l.031-.262l-.937-.385l4.774-.575c-3.257 2.004-7.016 1.793-10.617 2.397c.006.974.822 1.433 1.344 2.102l-.389.322l1.13.948c.215.338.017.362-.262.376c-2.078.104-4.089-.248-6.017-.99c-1.175-.452-2.298-1.039-3.447-1.559c-.108-.049-.237-.052-.357-.077l-.018-.046l-.036-.01l.051.059l.5 1.122c-.662-.125-1.32-.316-1.987-.361c-1.547-.104-3.011.324-4.451.839l-.528.159c.042-.533.117-1.067.118-1.601c.005-2.167-.01-4.333-.03-6.5c.001-.08-.132-.162-.203-.243\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#65C1DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"M87.519 108.3c1.928-2.547 4.338-4.608 6.776-6.804l.232 3.345l.168.054c2.243-2.547 4.56-5.02 7.326-7.321l-.162 2.853c.632-.54 1.211-.997 1.748-1.499c1.887-1.766 3.619-3.665 4.915-5.921c.173-.302.29-.637.432-.957l.123-.006l.019.016c-.417 1.361-.79 2.737-1.261 4.079c-1.032 2.936-2.985 5.333-4.663 7.897c-1.688 2.581-3.234 5.255-4.832 7.895c-.124.205-.161.462-.238.695l-.049.072l.066-.055c.733-.379 1.464-.762 2.199-1.137c.677-.346 1.359-.684 2.148-.92l-.501.945c-1.75 3.371-3.481 6.752-5.258 10.109c-.708 1.338-1.496 2.635-2.296 3.92c-.138.223-.521.414-.792.415c-3.553.021-7.106-.056-10.657.02c-2.57.054-4.521-1.152-6.351-2.725l-.085-.159c.803.253 1.583.359 2.418.027c.714-.284 1.234-.702 1.441-1.428a645.675 645.675 0 0 0 2.004-7.238c.162-.595.268-1.206.535-1.808v4.699l.168.026c.648-1.356 1.284-2.718 1.946-4.066c.75-1.528 1.524-3.043 2.285-4.565z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#65C2DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"m43.479 109.392l5.103 3.503l.15-.105l-.274-2.213c.56.424.994.797 1.471 1.106c1.787 1.156 3.587 2.291 5.382 3.434l-3.814 1.039c4.449 1.905 8.463 4.59 10.392 9.673c-1.311.087-2.506.19-3.703.243c-2.573.112-5.146.218-7.72.29c-3.717.104-7.435.174-11.152.262c-1.08.025-2.16.047-3.238.09c-1.718.068-3.065-.593-4.05-2.001c-.116-.167-.254-.318-.417-.521l-1.19.826c-.705-.6-1.309-1.283-1.676-2.161l3.279.972c-.305-1.784-.929-3.303-1.534-4.827l-.352-1.134c.64.543 1.275 1.093 1.925 1.625c.153.125.357.187.538.277l.086.137l-.035-.18v-.663c.631.371 1.177.728 1.755 1.024a27.14 27.14 0 0 0 2.252 1.041c.568.227.694.11.708-.506c.046-2.104-.634-4.036-1.459-5.922c-.673-1.539-1.409-3.048-2.087-4.584a9.206 9.206 0 0 1-.519-1.59c-.069-.292-.101-.666.027-.911c.152-.292.494-.484.754-.721c.138.254.356.496.399.765c.167 1.05.307 2.123 1.021 2.954c.47.547 1.088.968 1.647 1.452l-.523.279c.652.708 3.76 1.459 4.873 1.23l-.388-5.684l.374.193c.665.432 1.329.871 1.995 1.308\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EBF7FE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m104.579 85.318l-1.13-.948l.389-.322c-.521-.669-1.337-1.128-1.344-2.102c3.602-.604 7.36-.393 10.617-2.397l-4.774.575l.937.385l-.031.262c-1.197.004-2.399.073-3.59-.012c-.79-.057-1.588-.268-2.335-.54c-.397-.145-.692-.566-1.062-.887l2.313-1.951l-.591-.042l-.007-.008c.922-.688 1.773-1.515 2.783-2.035c2.091-1.079 4.267-1.996 6.469-3.008l.208.762l1.388-1.293l-.092-.13c-.621.173-1.236.371-1.863.513c-.784.177-1.578.309-2.368.458c-.404.076-.774.134-1.003.591c-.106.211-.501.344-.784.384c-.448.063-.911.018-1.368.018l.004.003l.578-.747l-.783-.001c-1.219-.042-2.442-.046-3.657-.144c-.99-.08-1.206-.567-.499-1.267c.888-.878 1.892-1.646 2.894-2.398c.805-.605 1.679-1.119 2.587-1.715l-.572-.217c.412-.215.749-.354 1.046-.553c.496-.331 1.009-.655 1.437-1.063c.551-.527.461-1.065-.159-1.499c-.852-.595-1.513-.682-3.179-.498c.161-.083.314-.186.482-.246c1.315-.465 2.634-.922 3.951-1.381c1.076.043 2.163.002 3.223.151c1.458.205 2.234 1.34 3.035 2.396l-.087.159l-1.466-.472c.87 1.486 1.651 2.882 1.705 4.601c-.112-.062-.213-.086-.261-.151c-.061-.082-.08-.195-.154-.394c-.404.969-.596 1.802-1.054 2.446c-.772 1.088-.74 2.034-.164 3.21c.412.841.429 1.876.622 2.825l-.242.096l-.618-.76c-.077 1.305-.093 2.478-.735 3.546l-.281-.645c-.458.422-.914.805-1.316 1.238c-.11.118-.111.397-.074.585c.21 1.089.571 2.167.161 3.319l-.476-.222c-.667 1.463-1.871 2.206-3.364 2.371c-1.622.179-3.218-.107-4.753-.686c-.193-.071-.396-.107-.593-.16\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#515053\\\" fill-rule=\\\"evenodd\\\" d=\\\"m82.28 47.181l6.319 1.292l.53.174c.433.141.593.445.463.869c-.163.533-.316 1.078-.562 1.574c-.133.27-.414.534-.69.65c-.479.202-.762.517-.972.975c-.292.638-.587 1.286-.978 1.866c-.35.52-.828.954-1.25 1.427c-1.73.657-3.525.497-5.297.331a31.78 31.78 0 0 1-4.168-.679c-1.607-.371-2.571-1.375-2.552-3.129c.009-.788-.007-1.577.013-2.365c.013-.517-.167-.774-.721-.858c-1.229-.186-1.411-.115-2.083.95a76.008 76.008 0 0 1-1.825 2.747c-.71 1.025-1.731 1.487-2.952 1.629c-4.381.51-8.606-.24-12.757-1.565c-1.215-.389-1.548-.935-1.592-2.223c-.026-.768-.016-1.544-.136-2.299c-.062-.393-.284-.846-.58-1.102c-1.554-1.342-3.155-2.628-4.74-3.933l-.25-.184l-2.535-2.281l.912-4.163l3.57 3.581c.904.973 1.803 1.951 2.719 2.913c.114.119.319.223.478.216c3.402-.137 6.76.255 10.104.825l.186.006l2.751.563c2.698.653 5.389 1.342 8.099 1.94c.876.194 1.806.209 2.71.202c1.761-.013 3.522-.1 5.284-.156zm-22.698-1.688c-1.841-.106-3.682-.248-5.525-.301c-.74-.021-1.158.401-1.246 1.133a69.929 69.929 0 0 0-.364 3.905c-.083 1.328.047 1.49 1.33 1.924c3.544 1.198 7.201 1.579 10.923 1.517c1.36-.022 2.361-.628 3.042-1.739c.563-.917 1.042-1.887 1.51-2.857c.407-.844.28-1.228-.624-1.525c-1.375-.453-2.787-.795-4.183-1.185zm20.501 2.659l-.02.136c-.706 0-1.414-.03-2.118.009c-.619.034-1.237.124-1.849.228c-.805.137-1.318.611-1.396 1.442c-.083.865-.153 1.736-.151 2.604c.003 1.512.279 1.846 1.731 2.196c2.071.498 4.175.696 6.302.595c.514-.024 1.026-.14 1.535-.237c.674-.129 1.158-.487 1.435-1.147c.496-1.185 1.056-2.343 1.541-3.531c.404-.99.305-1.249-.734-1.421c-2.084-.346-4.183-.589-6.276-.874\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F4E51\\\" fill-rule=\\\"evenodd\\\" d=\\\"M60.322 19.341c-1.831 2.282-4.401 3.514-7.975 3.805l3.409-1.722c-3.081-3.131-5.278-6.575-5.188-11.07c.156-2.759 1-5.28 2.602-7.539c.154-.217.348-.406.522-.608l.098.046l.007.243c-.11.182-.276.351-.321.547c-.626 2.735-.617 5.459.278 8.138c.97 2.903 2.8 5.184 5.2 7.04c.467.362.913.747 1.368 1.12\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#66C2DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"M87.909 76.486c.072.082.205.163.205.245c.021 2.166.035 4.333.03 6.5c-.001.534-.077 1.067-.118 1.601c-.458 1.886-.819 3.801-1.397 5.649c-.896 2.869-2.38 5.452-4.229 7.822c-.168-.065-.35-.109-.504-.2c-2.872-1.665-5.74-3.334-8.609-5.003a.616.616 0 0 1-.283-.287c.41.048.818.101 1.229.143c4.264.439 7.802-1.017 10.584-4.22c.617-.71.944-1.698 1.312-2.595c1.263-3.092 1.903-6.305 1.78-9.655\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EBF7FD\\\" fill-rule=\\\"evenodd\\\" d=\\\"M78.653 4.994v4.635c0 .9-.013.896-.853.713c-3.08-.668-6.163-1.322-9.244-1.989c-.218-.047-.421-.161-.632-.244l.002-.124l.125-.125c.891-1.378 1.917-2.639 3.208-3.668l3.532-2.816c-.006.208.031.431-.028.624c-.274.881-.576 1.755-.925 2.805c1.712-.638 3.202-1.422 4.816-1.692z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#737F84\\\" fill-rule=\\\"evenodd\\\" d=\\\"M60.322 19.341c-.455-.373-.901-.758-1.366-1.119c-2.399-1.855-4.23-4.137-5.2-7.04c-.896-2.679-.905-5.403-.278-8.138c.045-.197.211-.366.321-.547l.802 3.114c1.179 3.777 3.409 6.768 6.699 8.972c1.231.824 1.281.861.625 2.208c-.436.897-1.062 1.703-1.603 2.55\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F4E51\\\" fill-rule=\\\"evenodd\\\" d=\\\"M98.204 29.501c.005-.126-.035-.278.021-.375c.768-1.328 1.549-2.648 2.327-3.971c1.354-.277 2.73-.473 4.056-.848c2.946-.833 5.552-2.278 7.635-4.575c.248-.273.508-.534.763-.8c-1.058 3-2.641 5.677-4.941 7.893c-2.193 2.113-4.896 2.867-7.873 2.805c-.663-.013-1.325-.084-1.988-.129\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#737F84\\\" fill-rule=\\\"evenodd\\\" d=\\\"M113.006 18.933c-.255.266-.516.527-.763.8c-2.083 2.297-4.688 3.742-7.635 4.575c-1.326.375-2.703.571-4.056.848l2.549-3.972c3.606.582 6.773-.525 9.705-2.532l.416-.262z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#65C1DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"m109.078 92.043l.028-.174l.056.016l-.065.174zm-32.775 30.963l.232.107z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B3E0EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m94.992 84.194l.052.029zM83.645 62.616l-.129-.138z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#737F84\\\" fill-rule=\\\"evenodd\\\" d=\\\"m53.693 2.208l.061-.069l.037.116z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B3E0EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m43.479 109.392l-1.997-1.311l-.374-.193c-.193-1.68-.35-3.364-.589-5.037c-.221-1.546-1.054-2.819-2.027-3.993c-1.531-1.849-3.182-3.603-4.146-5.858c-.845-1.975-1.431-4.016-1.582-6.158a118.048 118.048 0 0 1-.246-5.644c-.019-.839.104-1.682.168-2.614l1.467 1.544c.545-3.757 2.358-6.844 4.135-9.956c-.509 2.396-1.088 4.779-1.506 7.19c-.418 2.414-.794 4.847-.533 7.417c-.763-.309-1.097-.957-1.609-1.654c-.084 1.928.573 3.498 1.263 5.023c.688 1.52 1.557 2.958 2.429 4.585L35.4 92.47c.114.638.515 1.228 1.032 1.672a34.418 34.418 0 0 0 2.946 2.269c2.513 1.723 4.087 4.046 4.438 7.075c.145 1.254-.013 2.547-.079 3.82c-.036.698-.169 1.391-.258 2.086m-13.345 8.475l.352 1.134c-.261-.25-.565-.47-.773-.758a19.336 19.336 0 0 1-1.142-1.77c-.343-.605-.626-1.244-.953-1.903l-.378.41c-.188-1.457-.637-2.814-.217-4.238c.233 1.664.688 3.246 1.549 4.826l.185-.39l.104-.42l1.147 2.854l.13.26z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B4E1EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M24.359 120.056c-1.769-.753-3.389-5.257-2.564-6.837l.861 4.031l.421-.287z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B3E0EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m38.46 69.748l-.045.012l-.018-.053l.045-.012z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#65C2DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"m30.139 117.872l-.13-.26z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E9F5FA\\\" fill-rule=\\\"evenodd\\\" d=\\\"m68.051 7.86l-.125.125z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F4E51\\\" fill-rule=\\\"evenodd\\\" d=\\\"M54.668 57.42c4.498 0 8.882-.053 13.265.02c2.653.044 5.306.25 7.954.454a4.522 4.522 0 0 1 2.596 1.037c-1.074.817-2.082 1.637-3.146 2.373c-.505.35-.67.718-.427 1.25c.336.733.708 1.449 1.061 2.174l.71 1.487c-.266.05-.403.095-.542.098c-3.095.081-6.199.295-9.271-.218c-3.41-.569-6.663-1.6-9.443-3.764c-1.348-1.048-2.326-2.365-2.666-4.083c-.049-.237-.055-.484-.091-.828\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D3EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"m68.611 75.482l-1.722-2.788l-2.139 3.159c-1.117-1.253-1.486-2.7-2.036-4.186l-1.749 1.948c-.812-1.656-1.305-3.301-1.426-5.246c4.533 1.464 9.04 1.967 13.641 1.682l.051.196c-.528.288-1.033.634-1.588.849c-1.025.396-1.369 1.266-1.732 2.178c-.297.742-.7 1.441-1.056 2.159z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#66C2DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"m72.718 92.754l-.05.015l-.015-.063l.053.011z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D4EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.142 39.102c-2.521-.889-4.738-.703-6.572 1.367c-.144-1.146 1.151-2.617 2.525-2.995c1.638-.451 3.467.238 4.047 1.628m-6.196 3.308c.034-.805.601-1.234 1.189-1.616c1.351-.877 3.787-.746 4.754.729c-.384-.046-.713-.063-1.033-.128c-1.646-.334-3.139.118-4.577.872zm24.265-.656c.787-.699 1.984-.849 2.968-.309c1.051.575 1.555 1.337 1.476 2.635c-1.106-1.57-2.656-2.159-4.444-2.326\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#CDEBF4\\\" fill-rule=\\\"evenodd\\\" d=\\\"M86.362 46.742c-1.609-1.942-2.275-2.001-4.159-2.52c.628-.598 1.377-.719 2.117-.507c1.439.413 1.891 1.581 2.042 3.027\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D4EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"m58.947 42.411l-.029.052z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EBF7FE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m107.339 73.59l-.025.051l.029-.048zm-3.362 3.748l-.058.05l.051-.058z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D3EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"m32.648 119.725l.035.18l-.086-.137z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E8F4F8\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64.446 46.365c1.396.39 2.808.732 4.183 1.185c.904.297 1.031.681.624 1.525c-.467.97-.947 1.94-1.51 2.857c-.682 1.111-1.682 1.717-3.042 1.739c-3.723.062-7.379-.319-10.923-1.517c-1.283-.434-1.413-.596-1.33-1.924c.082-1.304.209-2.607.364-3.905c.088-.732.505-1.155 1.246-1.133c1.843.054 3.684.195 5.525.301l-.507 1.587a5.76 5.76 0 0 0-.234 3.587c.325 1.294 1.449 1.981 2.621 1.671c1.066-.282 2.234-1.679 2.345-2.806c.549-.986.62-2.071.638-3.167\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#ECF5F9\\\" fill-rule=\\\"evenodd\\\" d=\\\"M80.083 48.152c2.093.285 4.192.527 6.274.873c1.039.172 1.138.431.734 1.421c-.485 1.188-1.045 2.346-1.541 3.531c-.276.661-.76 1.019-1.435 1.147c-.508.097-1.021.213-1.535.237a22.314 22.314 0 0 1-6.302-.595c-1.452-.35-1.729-.684-1.731-2.196c-.002-.869.069-1.739.151-2.604c.079-.831.591-1.305 1.396-1.442c.612-.104 1.23-.194 1.849-.228c.704-.039 1.412-.009 2.118-.009zm2.777 2.611c-.104.22-.152.375-.241.5c-.391.557-.72 1.184-1.207 1.641c-1.049.983-2.355.69-2.946-.62c-.235-.523-.357-1.098-.537-1.666c-.135 1.502.011 2.559.45 3.298c.442.744 1.062 1.032 1.884.875c1.464-.279 2.711-2.161 2.597-4.028m-4.101-.284l-.12.114c.247.311.434.758.755.897c.447.194.733-.244.942-.611a1.63 1.63 0 0 0 .182-.522c.102-.597-.168-1.217-.557-1.322c-.425-.114-.932.319-1.111.96z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#778287\\\" fill-rule=\\\"evenodd\\\" d=\\\"M59.075 47.081c.049.721.027 1.455.165 2.158c.166.84.587 1.557 1.504 1.81c.918.254 1.665-.087 2.314-.708c.265-.253.5-.537.749-.807c-.111 1.127-1.279 2.524-2.345 2.806c-1.172.31-2.296-.377-2.621-1.671a5.755 5.755 0 0 1 .234-3.588m23.785 3.682c.114 1.867-1.133 3.749-2.596 4.027c-.822.157-1.441-.131-1.884-.875c-.439-.739-.585-1.796-.45-3.298c.179.568.301 1.143.537 1.666c.591 1.31 1.897 1.604 2.946.62c.487-.457.816-1.084 1.207-1.641c.088-.124.136-.279.24-.499\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#1C1C1C\\\" fill-rule=\\\"evenodd\\\" d=\\\"m78.759 50.479l.091-.483c.18-.641.687-1.074 1.111-.96c.388.105.659.725.557 1.322a1.63 1.63 0 0 1-.182.522c-.208.367-.495.805-.942.611c-.321-.139-.509-.587-.755-.897zm-18.85-2.388c.027-.694.492-1.273 1.023-1.277c.446-.003.817.536.791 1.149c-.03.684-.561 1.321-1.087 1.301c-.472-.018-.755-.473-.727-1.173\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"foundation-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#D3EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M29.205 103.762c.019.297-.12.355-.342.197c-.47-.335-.998-.624-1.378-1.045c-1.907-2.106-3.288-4.511-3.941-7.3c-.266-1.137-.285-2.275-.2-3.448c.162-2.252 0-4.498-.606-6.69c-.041-.146-.131-.278-.29-.607l-1.155 1.409l-.139-.084c.035-3.245-.076-6.48-.656-9.719l-1.278 3.021l-.212-.037c-.094-.483-.2-.965-.282-1.45c-.481-2.843-.563-5.717-.403-8.578c.247-4.425.977-8.766 3.038-12.77c.58-1.126 1.281-2.177 2.215-3.137c-.477.144-.961.268-1.43.437c-.492.177-.968.397-1.555.641c.614-1.613 1.43-3.028 2.491-4.287c1.047-1.242 2.166-2.425 3.295-3.681l-2.622-.979l-.185-.174c.182-.096.38-.168.542-.291c2.56-1.94 5.488-3.045 8.569-3.814c.979-.244.808-.062.876-1.086c.111-1.657.292-3.31.444-4.965l.151-.013l2.249 4.28c-.245-6.564.227-13.029 2.041-19.35l.154-.002c.011.211.039.423.031.633c-.054 1.386.082 2.738.637 4.029c.385.896.947 1.633 1.866 2.192c.384-3.874 1.419-7.541 2.639-11.271l1.828 2.061a30.598 30.598 0 0 1 1.758-7.444l2.603 3.315l1.543-7.301l1.096 2.403c-.077 3.817 1.789 6.741 4.405 9.4l-2.895 1.462c3.035-.247 5.217-1.294 6.772-3.231c.459-.719.991-1.403 1.361-2.165c.556-1.144.514-1.175-.531-1.875c-2.793-1.872-4.687-4.412-5.688-7.619c1.194-1.534 2.853-2.334 4.581-2.943l.221 3.428l1.121-.594c2.869-1.58 5.923-2.642 9.131-3.271c.617-.121 1.24-.205 1.863-.295c.071-.011.153.051.229.08l-3 2.392C69.071 4.5 68.2 5.57 67.443 6.741l-.105.106l-.002.105c-.108.112-.249.207-.319.338c-.571 1.067-1.161 2.127-1.68 3.22c-.302.637-.484 1.331-.73 2.028l4.821.459l.085.185c-3.464 3.119-6.934 6.232-10.153 9.737l3.448.472c-.978.4-1.857.704-2.687 1.111c-2.415 1.185-4.672 2.579-6.305 4.807c-1.264 1.725-2.577 3.415-3.868 5.119l-3.032-3.041l-.774 3.535l2.152 1.938l-.341.655c-.672 1.412-1.402 2.8-1.995 4.245c-.618 1.505-.757 3.127-.872 4.741c-.132 1.854-.339 3.704-.397 5.56c-.07 2.249-.083 4.503.296 6.737c.333 1.967.589 3.949.98 5.903c.241 1.207.673 2.375 1.02 3.561l.146-.029l1.436-2.881l.144.037c.519 2.485 1.256 4.902 2.313 7.207c1.052 2.294 2.264 4.496 4.172 6.276v-3.04l.211.002c.39.204.782.405 1.164.623a67.073 67.073 0 0 0 8.32 4.011c3.467 1.386 6.919 2.807 10.212 4.576c1.02.548 2.045 1.132 2.936 1.861c2.022 1.656 3.962 3.413 5.936 5.129l-.164.386c-.646 1.293-1.304 2.58-1.94 3.877c-.563 1.146-1.103 2.302-1.652 3.453l-.143-.021v-3.991c-.227.512-.317 1.031-.455 1.536a557.875 557.875 0 0 1-1.702 6.146c-.175.616-.617.972-1.223 1.213c-.71.281-1.373.191-2.054-.023l.006.004l-.197-.091c-1.035-.771-2.068-1.543-3.105-2.31c-.265-.195-.543-.372-.805-.551l.375 3.818l-.199.103c-4.23-3.448-9.404-5.158-14.093-7.761c-1.524-.97-3.053-1.934-4.57-2.915c-.405-.262-.773-.579-1.249-.939l.232 1.879l-.127.09l-4.333-2.975c.076-.591.189-1.179.22-1.771c.056-1.081.19-2.179.067-3.244c-.298-2.573-1.634-4.545-3.769-6.008a28.963 28.963 0 0 1-2.501-1.927c-.439-.377-.779-.877-.876-1.419l2.49.223c-.74-1.381-1.478-2.603-2.063-3.894c-.586-1.294-1.144-2.628-1.073-4.266c.436.592.719 1.143 1.367 1.405c-.222-2.183.097-4.249.452-6.298c.354-2.047.847-4.071 1.279-6.105c-1.509 2.643-3.049 5.264-3.512 8.455l-1.246-1.312c-.055.791-.159 1.506-.143 2.219c.035 1.599.096 3.198.208 4.792c.128 1.819.625 3.552 1.343 5.229c.819 1.915 2.222 3.404 3.521 4.974c.826.998 1.534 2.078 1.722 3.391c.203 1.42.336 2.851.5 4.277l.329 4.827c-.945.195-3.583-.443-4.137-1.044l.444-.237c-.475-.41-.999-.768-1.398-1.232c-.607-.706-.725-1.617-.867-2.509c-.037-.229-.222-.434-.339-.649c-.221.2-.511.364-.641.612c-.108.208-.082.525-.023.772c.109.46.25.92.44 1.352c.577 1.304 1.202 2.586 1.773 3.893c.701 1.603 1.278 3.242 1.239 5.029c-.012.523-.119.623-.601.43a22.976 22.976 0 0 1-1.913-.884c-.491-.251-.955-.554-1.491-.869v.563l-.043.037c-.153-.077-.327-.129-.457-.235c-.552-.451-1.091-.919-1.635-1.38l.004.005l-.11-.222l-.975-2.424l-.089.357l-.157.331c-.731-1.342-1.117-2.685-1.315-4.099c-.356 1.21.025 2.362.185 3.6l.321-.349c.277.56.518 1.103.809 1.616c.294.518.62 1.021.969 1.503c.177.244.436.431.657.644c.514 1.295 1.043 2.584 1.302 4.1l-2.784-.825c-1.123-.503-2.271-.961-3.173-1.844l-.196-.062l-.041-.139l-.041.027l.079.113l.925 1.93l-.066.136l-1.446-.505zl-.045-.024zm1.132-1.745l-1.089-2.627l-.358.243l-.731-3.423c-.7 1.341.676 5.166 2.178 5.807m11.975-42.722l-.015-.044l-.038.01l.015.045z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E9F5FA\\\" fill-rule=\\\"evenodd\\\" d=\\\"M83.972 92.034c-1.974-1.716-3.914-3.473-5.936-5.129c-.89-.729-1.916-1.313-2.936-1.861c-3.293-1.769-6.745-3.189-10.212-4.576a67.147 67.147 0 0 1-8.32-4.011c-.382-.218-.773-.419-1.164-.623l-.211-.002v3.04c-1.908-1.78-3.12-3.982-4.172-6.276c-1.057-2.305-1.795-4.722-2.313-7.207l-.144-.037l-1.436 2.881l-.146.029c-.347-1.186-.778-2.354-1.02-3.561c-.392-1.955-.647-3.937-.98-5.903c-.379-2.234-.366-4.488-.296-6.737c.058-1.855.265-3.706.397-5.56c.115-1.614.254-3.235.872-4.741c.593-1.445 1.323-2.833 1.995-4.245l.341-.655l.213.156c1.346 1.108 2.706 2.201 4.025 3.339c.251.217.44.602.493.936c.102.641.093 1.3.115 1.952c.037 1.093.32 1.558 1.352 1.888c3.524 1.126 7.112 1.763 10.833 1.329c1.036-.121 1.903-.513 2.506-1.383a65.944 65.944 0 0 0 1.55-2.333c.57-.903.725-.964 1.769-.806c.47.071.623.29.612.729c-.017.669-.003 1.339-.011 2.009c-.017 1.49.802 2.342 2.167 2.657c1.163.269 2.352.465 3.539.576c1.505.141 3.029.277 4.499-.281c-.359.93-.715 1.862-1.079 2.79c-.16.408-.306.826-.51 1.212c-.299.564-.396 1.07.209 1.494l.11.117l-.001-.003l.289.553c.681 1.387 1.438 2.743 2.022 4.169c.92 2.25 1.247 4.636 1.311 7.058c.104 2.845-.439 5.573-1.512 8.197c-.313.763-.59 1.601-1.114 2.204c-2.363 2.72-5.368 3.957-8.988 3.584l-1.043-.121a.52.52 0 0 0 .24.243c2.436 1.417 4.872 2.835 7.31 4.249c.132.076.286.114.429.169c.456.4.914.796 1.366 1.2l2.155 1.938l.166.116c.73-.63 1.431-1.265 2.165-1.86c2.168-1.76 4.552-3.157 7.1-4.309c1.859-.84 3.651-1.829 5.473-2.751c.107-.054.216-.103.477-.088l-.651 2.487l-.142.501l-.044.024l.02.02l.024-.044c.845-.4 1.714-.756 2.526-1.215c.674-.38 1.28-.882 1.917-1.329c-.121.271-.219.556-.367.813c-1.101 1.916-2.571 3.529-4.173 5.028c-.456.426-.947.814-1.484 1.272l.137-2.422c-2.349 1.954-4.316 4.053-6.221 6.217l-.143-.046l-.198-2.84c-2.073 1.866-4.12 3.615-5.757 5.779M56.075 48.828c.031.292.036.501.077.703c.289 1.458 1.119 2.577 2.264 3.468c2.361 1.836 5.124 2.712 8.019 3.196c2.609.436 5.246.253 7.874.185l.46-.083l-.604-1.263c-.3-.615-.615-1.223-.901-1.846c-.207-.451-.066-.765.363-1.062c.904-.625 1.76-1.321 2.672-2.015a3.847 3.847 0 0 0-2.205-.88c-2.249-.173-4.501-.348-6.754-.386c-3.722-.063-7.445-.017-11.265-.017m11.841 15.338l.208-.042c.302-.61.645-1.204.896-1.833c.309-.774.6-1.513 1.471-1.85c.472-.182.901-.477 1.349-.721l-.043-.167c-3.907.242-7.735-.184-11.583-1.428c.103 1.651.521 3.049 1.21 4.455l1.485-1.654c.467 1.262.78 2.49 1.729 3.555l1.816-2.683zm3.487 14.667l-.01-.031l-.045-.009l.013.053zM49.944 34.429c1.292-1.705 2.605-3.394 3.869-5.119c1.632-2.228 3.89-3.623 6.305-4.807c.829-.407 1.709-.71 2.687-1.111l-3.448-.472c3.22-3.504 6.689-6.618 10.153-9.737l-.085-.185l-4.821-.459c.247-.697.428-1.392.73-2.028c.519-1.093 1.108-2.152 1.68-3.22c.071-.132.211-.226.319-.338c.179.071.352.167.537.208l7.85 1.689c.713.154.724.158.724-.606V4.307c.861-.236 1.714-.515 2.586-.699c2.02-.428 4.044-.837 6.076-1.2c1.013-.181 2.046-.245 3.155-.372l-2.148 3.709l.121.086c.913-.27 1.816-.589 2.743-.793c.933-.206 1.891-.296 2.928-.451v1.508c2.547-.316 5-.263 7.52.215l-.422.86c-.43.926-.853 1.855-1.285 2.779c-.185.394-.092.61.345.736c1.028.296 2.047.627 3.068.948c.199.063.391.146.666.251c-.442.539-.865 1.019-1.25 1.529c-1.087 1.442-2.16 2.896-3.233 4.349c-.06.081-.074.195-.109.293l-2.165 3.373c-.661 1.123-1.324 2.244-1.976 3.372c-.047.082-.014.21-.019.318c-.324.471-.695.917-.962 1.418c-1.258 2.363-2.526 4.722-3.716 7.119c-1.166 2.349-2.244 4.742-3.355 7.118c-.065.141-.083.303-.123.456l-5.366-1.098c-.587-.801-1.459-.874-2.125-.176c-1.495.048-2.991.121-4.487.133c-.768.006-1.557-.007-2.301-.171c-2.301-.508-4.586-1.093-6.877-1.648c-.378-.917-1.692-1.058-2.336-.479l-.158-.005c-2.839-.484-5.69-.817-8.58-.701c-.134.006-.309-.083-.405-.184c-.778-.814-1.542-1.645-2.31-2.471m9.765 1.653l.283-.123c1.221-.639 2.488-1.024 3.886-.74c.271.055.551.069.877.108c-.821-1.252-2.891-1.363-4.038-.619c-.498.325-.98.689-1.008 1.374l-.025.044zm5.261-2.811c-.492-1.18-2.046-1.765-3.437-1.382c-1.167.321-2.266 1.57-2.145 2.543c1.559-1.758 3.441-1.915 5.582-1.161m15.344 2.253c1.517.142 2.833.642 3.773 1.976c.067-1.103-.361-1.749-1.253-2.238c-.835-.458-1.852-.331-2.52.262m2.676 4.235c-.128-1.228-.512-2.22-1.733-2.57c-.629-.18-1.264-.077-1.798.43c1.599.442 2.165.491 3.531 2.14\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B3E0EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M84.303 65.018c-.064-2.422-.39-4.808-1.311-7.058c-.584-1.427-1.341-2.783-2.022-4.169l-.289-.553c.519.156 1.035.325 1.558.465c.762.205 1.521.441 2.298.56c.415.063.864-.086 1.295-.151c.166-.025.328-.083.586-.152l-.21 1.039c1.735-.807 2.989-2.045 4.004-3.496c1.011-1.445 1.875-2.993 2.785-4.467l.408.684c.733-1.146.228-4.532-.981-6.547c.307 0 .561-.018.812.003c1.59.129 3.212.114 4.651.966c1.141.675 1.955 1.633 2.501 2.897l-1.218-.068c1.214 1.964 1.681 3.998 1.49 6.325l-.938-.746c-.045.223-.077.452-.139.672c-.188.66-.394 1.314-.576 1.975c-.049.176-.034.37-.049.555c.197.006.415.068.588.006c.994-.353 1.977-.737 2.965-1.108c.412-.154.832-.29 1.239-.458c.43-.176.59-.023.56.41c-1.119.39-2.239.777-3.355 1.172c-.143.051-.273.138-.41.208c1.415-.157 1.976-.082 2.699.423c.527.368.604.825.135 1.272c-.363.347-.799.622-1.22.903c-.253.168-.539.287-.888.47l.486.184c-.771.506-1.514.942-2.197 1.457c-.85.639-1.703 1.291-2.457 2.037c-.601.594-.417 1.008.423 1.075c1.032.083 2.07.087 3.105.123l.665.001l-.49.635l-.024.041l.021-.044c.388 0 .781.038 1.162-.015c.239-.034.575-.147.665-.326c.195-.389.509-.438.853-.502c.671-.127 1.345-.239 2.011-.39c.533-.12 1.055-.288 1.583-.435l.078.11l-1.179 1.099l-.176-.648c-1.871.86-3.718 1.638-5.494 2.555c-.857.442-1.58 1.144-2.363 1.729l-.043.049l.049-.043l.502.036l-1.964 1.657c.313.272.564.631.901.753c.635.231 1.313.41 1.983.458c1.011.072 2.032.013 3.049.01l.027-.223l-.795-.326l4.054-.488c-2.765 1.702-5.958 1.523-9.016 2.036c.005.827.698 1.216 1.141 1.785l-.33.273l.959.806c.183.287.015.308-.223.32c-1.765.088-3.472-.21-5.109-.841c-.998-.384-1.952-.882-2.927-1.323l-.303-.065l-.015-.039l-.03-.008l.043.05l.425.952c-.563-.106-1.121-.269-1.688-.307c-1.314-.088-2.557.275-3.78.713l-.448.135c.035-.454.099-.906.1-1.359c.004-1.84-.008-3.68-.026-5.52c-.002-.071-.115-.14-.176-.209\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#65C1DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"M83.972 92.034c1.637-2.164 3.684-3.913 5.754-5.778l.198 2.84l.143.046c1.905-2.164 3.872-4.263 6.221-6.217l-.137 2.422c.537-.458 1.029-.846 1.484-1.272c1.602-1.5 3.073-3.112 4.173-5.028c.147-.256.246-.541.367-.813l.104-.005l.016.014c-.354 1.156-.67 2.324-1.071 3.463c-.876 2.494-2.535 4.529-3.959 6.707c-1.434 2.191-2.747 4.463-4.103 6.704c-.105.174-.136.393-.202.591l-.042.061l.056-.047c.623-.322 1.243-.647 1.868-.966c.575-.294 1.154-.581 1.824-.781l-.426.802c-1.486 2.862-2.957 5.733-4.465 8.585c-.601 1.136-1.27 2.237-1.95 3.328c-.118.189-.442.352-.672.353c-3.017.019-6.035-.047-9.05.017c-2.183.046-3.839-.979-5.394-2.314l-.072-.135c.682.215 1.344.305 2.054.023c.606-.241 1.048-.597 1.223-1.213a548.176 548.176 0 0 0 1.702-6.146c.137-.505.228-1.024.455-1.536v3.991l.143.021c.55-1.151 1.09-2.308 1.652-3.453c.636-1.297 1.294-2.584 1.94-3.877z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#65C2DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"m46.573 92.961l4.333 2.975l.127-.09l-.232-1.879c.475.36.844.678 1.249.939c1.517.981 3.046 1.945 4.57 2.915l-3.239.883c3.778 1.617 7.187 3.898 8.825 8.215c-1.113.074-2.128.162-3.145.206c-2.185.095-4.37.186-6.556.246c-3.156.089-6.313.148-9.47.223c-.917.021-1.834.04-2.75.076c-1.458.059-2.603-.503-3.439-1.699l-.354-.442l-1.01.701c-.599-.51-1.111-1.09-1.423-1.835l2.784.825c-.259-1.516-.789-2.805-1.302-4.1l-.299-.963c.544.461 1.083.929 1.635 1.38c.13.106.304.158.458.235l.072.116l-.03-.153v-.563c.536.315 1 .618 1.491.869a23.15 23.15 0 0 0 1.913.884c.482.193.589.094.601-.43c.039-1.787-.539-3.427-1.239-5.029c-.571-1.307-1.196-2.589-1.773-3.893a7.88 7.88 0 0 1-.44-1.352c-.059-.247-.085-.564.023-.772c.13-.248.42-.412.641-.612c.117.216.302.421.339.649c.142.892.26 1.803.867 2.509c.399.465.924.822 1.398 1.232l-.444.237c.554.601 3.192 1.239 4.137 1.044l-.329-4.827l.317.165z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EBF7FE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m98.458 72.518l-.959-.806l.33-.273c-.442-.569-1.135-.958-1.141-1.785c3.058-.513 6.25-.333 9.016-2.036l-4.054.488l.795.326l-.027.223c-1.017.003-2.038.062-3.049-.01c-.671-.048-1.349-.228-1.983-.458c-.337-.123-.588-.481-.901-.753l1.964-1.657l-.502-.036l-.006-.006c.784-.584 1.506-1.287 2.363-1.729c1.776-.917 3.623-1.695 5.494-2.555l.176.648L107.153 61l-.078-.11c-.527.146-1.05.314-1.583.435c-.666.151-1.34.263-2.011.39c-.344.064-.658.113-.853.502c-.09.179-.426.292-.665.326c-.38.053-.774.015-1.162.015l.003.003l.49-.635l-.665-.001c-1.036-.036-2.074-.039-3.105-.123c-.841-.067-1.024-.481-.423-1.075c.754-.746 1.607-1.397 2.457-2.037c.683-.514 1.426-.951 2.197-1.457l-.486-.184c.35-.183.635-.301.888-.47c.421-.281.857-.556 1.22-.903c.468-.447.392-.905-.135-1.272c-.723-.505-1.285-.58-2.699-.423c.136-.07.267-.158.41-.208c1.117-.395 2.236-.783 3.355-1.172c.913.037 1.836.001 2.737.128c1.239.174 1.897 1.138 2.577 2.035l-.074.135l-1.245-.4c.739 1.262 1.402 2.447 1.448 3.907l-.221-.127l-.131-.334c-.343.823-.506 1.53-.895 2.077c-.656.924-.628 1.727-.139 2.727c.35.714.364 1.593.528 2.398l-.206.082l-.524-.646c-.065 1.108-.079 2.105-.625 3.011l-.238-.547c-.389.358-.776.683-1.118 1.051c-.094.101-.094.337-.063.498c.179.925.485 1.84.137 2.818l-.404-.189c-.566 1.243-1.589 1.874-2.857 2.014c-1.377.152-2.733-.091-4.036-.583c-.16-.063-.333-.093-.501-.138\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#515053\\\" fill-rule=\\\"evenodd\\\" d=\\\"m79.523 40.132l5.366 1.098l.45.147c.367.121.503.378.394.739c-.139.453-.269.915-.478 1.336a1.245 1.245 0 0 1-.586.552c-.407.171-.647.439-.825.828c-.248.542-.499 1.092-.83 1.584c-.297.442-.704.811-1.062 1.211c-1.47.559-2.994.422-4.499.281a26.986 26.986 0 0 1-3.539-.576c-1.365-.315-2.183-1.167-2.167-2.657c.007-.669-.006-1.339.011-2.009c.011-.439-.142-.658-.612-.729c-1.044-.158-1.198-.097-1.769.806a65.037 65.037 0 0 1-1.55 2.333c-.603.87-1.471 1.263-2.506 1.383c-3.721.434-7.309-.203-10.833-1.329c-1.032-.33-1.315-.794-1.352-1.888c-.022-.652-.014-1.311-.115-1.952c-.053-.333-.241-.718-.493-.936c-1.319-1.139-2.679-2.231-4.025-3.339l-.213-.156l-2.152-1.938l.774-3.535l3.032 3.041c.768.826 1.531 1.657 2.309 2.474c.096.101.271.189.405.184c2.889-.116 5.74.217 8.58.701l.158.005l2.336.479c2.292.555 4.576 1.14 6.877 1.648c.744.164 1.533.177 2.301.171c1.496-.012 2.992-.085 4.487-.133zm-19.274-1.433c-1.564-.09-3.127-.21-4.692-.255c-.628-.018-.983.34-1.058.962a58.604 58.604 0 0 0-.309 3.316c-.07 1.128.04 1.266 1.13 1.634c3.009 1.017 6.114 1.34 9.276 1.288c1.155-.02 2.005-.534 2.583-1.477c.478-.778.885-1.602 1.282-2.426c.346-.717.237-1.042-.53-1.295c-1.168-.384-2.367-.675-3.552-1.006zm17.409 2.258l-.018.115c-.599 0-1.2-.025-1.798.008a14.05 14.05 0 0 0-1.57.193c-.684.117-1.119.519-1.186 1.225c-.07.735-.13 1.474-.128 2.211c.002 1.284.237 1.568 1.471 1.865c1.758.423 3.545.591 5.351.506c.437-.021.871-.119 1.303-.202c.573-.109.983-.413 1.218-.975c.421-1.006.896-1.989 1.309-2.999c.343-.84.259-1.06-.623-1.206c-1.77-.293-3.552-.499-5.329-.741\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F4E51\\\" fill-rule=\\\"evenodd\\\" d=\\\"M60.877 16.491c-1.555 1.938-3.737 2.984-6.772 3.231L57 18.26c-2.616-2.659-4.482-5.583-4.405-9.4c.132-2.343.849-4.484 2.209-6.401c.131-.185.295-.345.443-.517l.083.04l.006.207c-.093.154-.234.298-.272.465c-.532 2.323-.524 4.636.236 6.911c.824 2.465 2.378 4.402 4.416 5.978c.396.304.775.631 1.161.948\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#66C2DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"M84.303 65.018c.061.069.174.138.174.208c.018 1.839.03 3.679.026 5.52c-.001.453-.065.905-.1 1.359c-.389 1.601-.696 3.228-1.187 4.797c-.761 2.436-2.021 4.63-3.592 6.642c-.143-.056-.297-.093-.429-.169c-2.438-1.414-4.874-2.832-7.31-4.249a.52.52 0 0 1-.24-.243l1.043.121c3.62.373 6.625-.864 8.988-3.584c.524-.604.801-1.441 1.114-2.204c1.074-2.625 1.617-5.354 1.513-8.198\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EBF7FD\\\" fill-rule=\\\"evenodd\\\" d=\\\"M76.443 4.308v3.937c0 .764-.011.76-.724.606c-2.616-.568-5.234-1.123-7.85-1.689c-.186-.04-.358-.137-.537-.208l.002-.105l.105-.106c.757-1.17 1.628-2.241 2.724-3.115l3-2.392c-.006.177.026.366-.025.529c-.232.749-.489 1.49-.786 2.382c1.454-.542 2.719-1.208 4.09-1.437z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#737F84\\\" fill-rule=\\\"evenodd\\\" d=\\\"M60.877 16.491c-.386-.316-.765-.644-1.16-.95c-2.038-1.576-3.592-3.513-4.416-5.978c-.761-2.275-.769-4.588-.236-6.911c.038-.167.179-.311.272-.465l.681 2.645c1.001 3.208 2.895 5.748 5.688 7.619c1.045.7 1.087.731.531 1.875c-.369.761-.901 1.446-1.36 2.165\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F4E51\\\" fill-rule=\\\"evenodd\\\" d=\\\"M93.045 25.119c.004-.107-.029-.236.019-.318c.652-1.128 1.315-2.249 1.976-3.372c1.149-.235 2.319-.401 3.444-.72c2.502-.708 4.715-1.935 6.483-3.885l.648-.68c-.898 2.548-2.243 4.821-4.196 6.702c-1.863 1.795-4.158 2.435-6.686 2.382c-.563-.011-1.125-.071-1.688-.109\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#737F84\\\" fill-rule=\\\"evenodd\\\" d=\\\"m105.615 16.145l-.648.68c-1.769 1.951-3.981 3.178-6.483 3.885c-1.125.318-2.295.485-3.444.72l2.165-3.373c3.063.494 5.751-.446 8.241-2.15l.353-.222z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#65C1DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"m102.279 78.229l.023-.148l.048.013l-.056.148zm-27.831 26.293l.197.091z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B3E0EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m90.318 71.563l.044.024zM80.682 53.24l-.11-.117z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#737F84\\\" fill-rule=\\\"evenodd\\\" d=\\\"m55.248 1.941l.052-.059l.032.098z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B3E0EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M46.573 92.961c-.565-.372-1.129-.745-1.695-1.113l-.317-.165c-.164-1.426-.297-2.856-.5-4.277c-.188-1.313-.896-2.394-1.722-3.391c-1.299-1.57-2.702-3.06-3.521-4.974c-.717-1.677-1.215-3.41-1.343-5.229a98.262 98.262 0 0 1-.208-4.792c-.016-.713.088-1.428.143-2.219l1.246 1.312c.463-3.191 2.002-5.812 3.512-8.455c-.432 2.034-.924 4.058-1.279 6.105c-.355 2.05-.674 4.116-.452 6.298c-.648-.262-.932-.813-1.367-1.405c-.071 1.638.486 2.971 1.073 4.266c.585 1.291 1.322 2.512 2.063 3.894l-2.49-.223c.097.542.437 1.042.876 1.419a28.963 28.963 0 0 0 2.501 1.927c2.134 1.463 3.471 3.436 3.769 6.008c.124 1.065-.011 2.163-.067 3.244c-.033.592-.146 1.18-.222 1.77m-11.331 7.197l.299.963c-.222-.213-.48-.399-.657-.644a16.23 16.23 0 0 1-.969-1.503c-.292-.514-.532-1.057-.809-1.616l-.321.349c-.16-1.237-.541-2.39-.185-3.6c.198 1.414.584 2.757 1.315 4.099l.157-.331l.089-.357l.975 2.424l.11.222z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B4E1EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"M30.337 102.017c-1.502-.641-2.878-4.466-2.178-5.807l.731 3.423l.358-.243z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B3E0EE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m42.312 59.295l-.038.01l-.015-.045l.038-.01z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#65C2DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"m35.246 100.163l-.11-.222z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E9F5FA\\\" fill-rule=\\\"evenodd\\\" d=\\\"m67.44 6.742l-.105.106z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F4E51\\\" fill-rule=\\\"evenodd\\\" d=\\\"M56.075 48.828c3.819 0 7.543-.045 11.265.017c2.253.038 4.506.213 6.754.386a3.847 3.847 0 0 1 2.205.88c-.912.694-1.768 1.39-2.672 2.015c-.429.297-.569.61-.363 1.062c.286.623.601 1.23.901 1.846l.604 1.263l-.46.083c-2.628.068-5.265.25-7.874-.185c-2.895-.484-5.658-1.359-8.019-3.196c-1.145-.891-1.975-2.009-2.264-3.468c-.041-.202-.046-.412-.077-.703\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D3EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"m67.916 64.166l-1.462-2.368l-1.816 2.683c-.949-1.065-1.262-2.293-1.729-3.555l-1.485 1.654c-.689-1.406-1.108-2.803-1.21-4.455c3.849 1.244 7.677 1.67 11.583 1.428l.043.167c-.448.244-.877.539-1.349.721c-.871.337-1.162 1.076-1.471 1.85c-.252.629-.594 1.224-.896 1.833z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#66C2DD\\\" fill-rule=\\\"evenodd\\\" d=\\\"m71.403 78.833l-.042.013l-.013-.053l.045.009z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D4EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64.97 33.271c-2.141-.755-4.023-.597-5.581 1.161c-.122-.973.978-2.222 2.145-2.543c1.39-.382 2.944.202 3.436 1.382m-5.262 2.811c.028-.684.51-1.048 1.01-1.373c1.147-.745 3.216-.634 4.038.619c-.326-.039-.606-.053-.877-.108c-1.398-.284-2.666.101-3.886.74zm20.606-.558c.668-.593 1.685-.72 2.52-.263c.893.489 1.321 1.136 1.253 2.238c-.939-1.333-2.255-1.833-3.773-1.975\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#CDEBF4\\\" fill-rule=\\\"evenodd\\\" d=\\\"M82.99 39.759c-1.366-1.649-1.932-1.699-3.532-2.14c.534-.507 1.169-.61 1.798-.43c1.222.351 1.605 1.343 1.734 2.57\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D4EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"m59.709 36.082l-.025.044z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EBF7FE\\\" fill-rule=\\\"evenodd\\\" d=\\\"m100.803 62.559l-.021.044l.024-.041zm-2.856 3.182l-.049.043l.043-.049z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#D3EDF6\\\" fill-rule=\\\"evenodd\\\" d=\\\"m37.376 101.736l.03.153l-.072-.116z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E8F4F8\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64.378 39.439c1.186.331 2.384.622 3.552 1.006c.768.252.876.578.53 1.295c-.397.824-.805 1.648-1.282 2.426c-.579.943-1.428 1.458-2.583 1.477c-3.162.052-6.267-.271-9.276-1.288c-1.09-.368-1.2-.506-1.13-1.634c.069-1.107.177-2.213.309-3.316c.075-.622.429-.98 1.058-.962c1.565.045 3.128.166 4.692.256l-.431 1.348a4.896 4.896 0 0 0-.199 3.046c.276 1.099 1.23 1.682 2.226 1.419c.906-.239 1.897-1.426 1.992-2.383c.467-.838.527-1.759.542-2.69\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#ECF5F9\\\" fill-rule=\\\"evenodd\\\" d=\\\"M77.658 40.957c1.777.242 3.56.448 5.328.742c.882.146.966.366.623 1.206c-.412 1.01-.888 1.993-1.309 2.999c-.235.562-.646.865-1.218.975c-.432.083-.867.181-1.303.202a18.968 18.968 0 0 1-5.351-.506c-1.233-.296-1.468-.581-1.471-1.865c-.002-.737.059-1.477.128-2.211c.067-.706.502-1.108 1.186-1.225c.52-.088 1.044-.164 1.57-.193c.598-.033 1.199-.008 1.798-.008zm2.358 2.217c-.088.187-.129.318-.205.425c-.332.473-.611 1.005-1.025 1.393c-.89.834-1.999.586-2.501-.526c-.2-.444-.304-.932-.456-1.415c-.115 1.275.009 2.173.382 2.801c.375.631.901.875 1.6.743c1.242-.237 2.301-1.835 2.205-3.421m-3.483-.241l-.102.097c.209.263.369.644.641.762c.38.165.623-.208.8-.52a1.37 1.37 0 0 0 .155-.442c.087-.507-.143-1.034-.473-1.123c-.361-.097-.791.271-.944.815z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#778287\\\" fill-rule=\\\"evenodd\\\" d=\\\"M59.817 40.047c.042.612.023 1.236.14 1.833c.141.713.499 1.321 1.277 1.537c.78.215 1.414-.074 1.965-.602c.225-.215.424-.456.636-.686c-.094.957-1.086 2.144-1.992 2.383c-.995.263-1.95-.32-2.226-1.419a4.91 4.91 0 0 1 .2-3.046m20.199 3.127c.097 1.585-.962 3.184-2.205 3.42c-.698.133-1.224-.111-1.6-.743c-.374-.628-.497-1.525-.382-2.801c.152.483.255.971.456 1.415c.502 1.112 1.611 1.361 2.501.526c.414-.388.693-.92 1.025-1.393c.075-.106.116-.237.205-.424\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#1C1C1C\\\" fill-rule=\\\"evenodd\\\" d=\\\"m76.533 42.933l.077-.411c.153-.544.583-.912.944-.815c.33.089.56.616.473 1.123a1.362 1.362 0 0 1-.155.442c-.177.312-.42.684-.8.52c-.272-.119-.432-.499-.641-.762zm-16.007-2.028c.023-.59.417-1.082.869-1.085c.379-.003.694.455.671.975c-.025.582-.477 1.122-.923 1.105c-.401-.014-.641-.4-.617-.995\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F4E51\\\" d=\\\"M14.044 126.805h-1.66v-14.277h7.959v1.475h-6.299v5.225h5.918v1.475h-5.918zm17.656-5.362c0 1.745-.439 3.107-1.318 4.087S28.289 127 26.739 127c-.957 0-1.807-.225-2.549-.674s-1.315-1.094-1.719-1.934s-.605-1.823-.605-2.949c0-1.745.436-3.104 1.309-4.077s2.083-1.46 3.633-1.46c1.498 0 2.687.498 3.569 1.494s1.323 2.344 1.323 4.043m-8.154 0c0 1.367.273 2.409.82 3.125s1.351 1.074 2.412 1.074s1.867-.356 2.417-1.069s.825-1.756.825-3.13c0-1.361-.275-2.394-.825-3.101s-1.362-1.06-2.437-1.06c-1.061 0-1.862.348-2.402 1.045s-.81 1.736-.81 3.116m12.519-5.341v6.943c0 .873.199 1.523.596 1.953s1.019.645 1.865.645c1.12 0 1.938-.306 2.456-.918s.776-1.611.776-2.998v-5.625h1.621v10.703h-1.338l-.234-1.436h-.087c-.332.527-.792.931-1.382 1.211s-1.261.42-2.017.42c-1.302 0-2.277-.309-2.925-.928s-.972-1.608-.972-2.969v-7.002zm18.077 10.703v-6.924c0-.873-.199-1.523-.596-1.953s-1.019-.645-1.865-.645c-1.12 0-1.94.303-2.461.908s-.781 1.605-.781 2.998v5.615h-1.621v-10.703h1.318l.264 1.465h.078c.332-.527.797-.936 1.396-1.226s1.266-.435 2.002-.435c1.289 0 2.259.311 2.91.933s.977 1.616.977 2.983v6.982h-1.621zm12.236-1.436h-.088c-.749 1.087-1.869 1.631-3.359 1.631c-1.4 0-2.489-.479-3.267-1.436s-1.167-2.318-1.167-4.082s.391-3.135 1.172-4.111s1.869-1.465 3.262-1.465c1.452 0 2.565.527 3.34 1.582h.127l-.068-.771l-.039-.752v-4.355h1.621v15.195h-1.318zm-3.242.274c1.107 0 1.909-.301 2.407-.903s.747-1.574.747-2.915v-.342c0-1.517-.252-2.599-.757-3.247s-1.31-.972-2.417-.972c-.951 0-1.678.37-2.183 1.108s-.757 1.782-.757 3.13c0 1.367.25 2.399.752 3.096s1.238 1.045 2.208 1.045m14.795 1.162l-.322-1.523h-.079c-.534.67-1.066 1.125-1.597 1.362s-1.192.356-1.987.356c-1.061 0-1.893-.273-2.495-.82s-.903-1.325-.903-2.334c0-2.162 1.729-3.294 5.186-3.398l1.816-.059v-.664c0-.84-.181-1.46-.542-1.86s-.939-.601-1.733-.601c-.892 0-1.901.273-3.027.82l-.498-1.24c.527-.287 1.105-.511 1.733-.674s1.258-.244 1.89-.244c1.276 0 2.222.283 2.837.85s.923 1.475.923 2.725v7.305h-1.202zm-3.662-1.143c1.009 0 1.802-.277 2.378-.83s.864-1.328.864-2.324v-.967l-1.621.068c-1.289.045-2.218.246-2.788.601s-.854.907-.854 1.655c0 .586.177 1.032.532 1.338s.85.459 1.489.459m11.66 0c.287 0 .563-.021.83-.063s.479-.086.635-.132v1.24c-.176.084-.435.155-.776.21s-.65.083-.924.083c-2.07 0-3.105-1.09-3.105-3.271v-6.367h-1.533v-.781l1.533-.674l.684-2.285h.938v2.48h3.105v1.26H84.21v6.299c0 .645.153 1.139.459 1.484s.726.517 1.26.517m3.467-12.461c0-.371.091-.643.273-.815s.41-.259.684-.259c.26 0 .485.088.674.264s.283.446.283.811s-.094.636-.283.815s-.414.269-.674.269c-.273 0-.501-.089-.684-.269s-.273-.451-.273-.816m1.757 13.604h-1.621v-10.703h1.621zm12.676-5.362c0 1.745-.439 3.107-1.318 4.087s-2.093 1.47-3.643 1.47c-.957 0-1.807-.225-2.549-.674s-1.315-1.094-1.719-1.934s-.605-1.823-.605-2.949c0-1.745.436-3.104 1.309-4.077s2.083-1.46 3.633-1.46c1.498 0 2.687.498 3.569 1.494s1.323 2.344 1.323 4.043m-8.154 0c0 1.367.273 2.409.82 3.125s1.351 1.074 2.412 1.074s1.867-.356 2.417-1.069s.825-1.756.825-3.13c0-1.361-.275-2.394-.825-3.101s-1.362-1.06-2.437-1.06c-1.061 0-1.862.348-2.402 1.045s-.81 1.736-.81 3.116m18.32 5.362v-6.924c0-.873-.199-1.523-.596-1.953s-1.019-.645-1.865-.645c-1.12 0-1.94.303-2.461.908s-.781 1.605-.781 2.998v5.615h-1.621v-10.703h1.318l.264 1.465h.078c.332-.527.797-.936 1.396-1.226s1.266-.435 2.002-.435c1.289 0 2.259.311 2.91.933s.977 1.616.977 2.983v6.982h-1.621z\\\"/>\"\n\t\t},\n\t\t\"framermotion\": {\n\t\t\t\"body\": \"<path d=\\\"M22.684 0h84.253v42.667H64.81zm0 42.667H64.81l42.127 42.666H64.81V128L22.684 85.333z\\\"/>\"\n\t\t},\n\t\t\"framermotion-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M0 46.028h24.62v12.127H12.16zm0 12.127h12.16l12.46 12.408H12.16v12.41L0 70.562zM40.282 73.74V55.417h11.33v3.661h-7.077v4.805h7.078v3.66h-7.078v6.197zm13.873 0V61.05h4.236v2.834c0-.845.565-1.708 1.13-2.271c.847-.563 1.43-.845 2.276-.845c.565 0 .847.282 1.13.282v3.678h-1.13c-1.13 0-1.994.282-2.559 1.127c-.565.563-.847 1.689-.847 3.097v4.788zm15.566.564c-1.993 0-3.406-.846-4.535-1.972c-.847-1.127-1.413-2.816-1.413-4.788c0-1.408.283-2.534.566-3.379a6.708 6.708 0 0 1 2.258-2.552c.848-.563 1.977-.845 3.124-.845c.848 0 1.695.282 2.542.563c.564.282 1.13.845 1.412 1.708v-1.99h4.236v12.69h-4.236V72.05c-.282.564-.848 1.127-1.412 1.69c-.847.282-1.694.564-2.542.564m1.13-3.38c1.13 0 1.694-.282 2.26-1.127c.564-.563.846-1.408.846-2.253c0-1.126-.282-1.69-.847-2.534c-.565-.563-1.13-.845-2.26-.845c-.846 0-1.711.282-2.276.845c-.564.845-.847 1.408-.847 2.534c0 .845.283 1.69.847 2.253c.565.845 1.43 1.126 2.277 1.126zm10.183 2.816V61.05h3.953v1.989c.283-.863.847-1.145 1.413-1.707c.864-.282 1.43-.564 2.276-.564c1.977 0 3.39.845 3.954 2.27c.564-.58 1.13-1.143 1.694-1.706c.847-.282 1.712-.564 2.56-.564c3.105 0 4.517 1.69 4.517 5.087v7.885h-3.953V66.7c0-.845-.282-1.409-.565-1.972c-.283-.28-.847-.563-1.429-.563c-.847 0-1.413.282-1.695.845c-.282.281-.565 1.127-.565 2.253v6.477h-3.953V66.7c0-.845-.282-1.409-.565-1.972c-.282-.28-.847-.563-1.412-.563c-.582 0-1.148.282-1.711.845c-.283.281-.566 1.127-.566 2.253v6.477zm35.935-7.04v1.97h-9.336c0 .846.282 1.41.847 1.972c.282.281 1.129.563 1.976.563c1.412 0 1.977-.282 2.541-1.126h3.972c-.283 1.126-.848 2.253-2.259 3.098c-1.13.563-2.559 1.126-4.254 1.126c-2.259 0-3.953-.563-5.083-1.971a6.725 6.725 0 0 1-1.994-4.788c0-2.252.847-3.66 1.994-5.086c1.13-1.127 2.824-1.69 5.083-1.69c1.977 0 3.407.563 4.819 1.69c1.129 1.144 1.694 2.552 1.694 4.242m-9.336-.564h5.364c0-.844-.281-1.408-.564-1.97c-.565-.564-1.129-.564-1.977-.564c-.847 0-1.694.282-2.259.563c-.282.563-.564 1.127-.564 1.971m11.596 7.604V61.05h3.97v2.834a6.192 6.192 0 0 1 1.412-2.271c.565-.563 1.413-.845 2.259-.845c.283 0 .847.282 1.13.282v3.678h-1.412c-.847 0-1.695.282-2.259 1.127c-.848.563-1.13 1.689-1.13 3.097v4.788z\\\"/>\"\n\t\t},\n\t\t\"framework7\": {\n\t\t\t\"body\": \"<path fill=\\\"#ee350f\\\" d=\\\"M.453 64c0-15.383 5.39-29.496 14.367-40.535h98.36L43.016 124.43C18.23 115.7.453 91.94.453 64m117.942-33.11c5.808 9.66 9.152 20.993 9.152 33.11c0 35.348-28.453 64-63.547 64c-4.203 0-8.313-.41-12.29-1.195ZM23.199 14.935C34.24 5.614 48.47 0 64 0c15.531 0 29.762 5.613 40.8 14.934Zm0 0\\\"/>\"\n\t\t},\n\t\t\"framework7-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#ee350f\\\" d=\\\"M101.298 69.335L82.34 96.41c-12.913-4.515-22.305-16.529-22.956-30.822l1.95 4.241l3.089-6.961l3.13 6.961l4.716-10.257h-2.513l-2.101 5.005l-2.06-5.005h-2.08l-2.121 5.005l-1.824-4.523a34.169 34.169 0 0 1 7.536-17.795l53.14.011l-18.255 26.071l-3.69-4.156l4.284-4.613h-3.192l-3.501 3.851v-9.659H93.42v15.57h2.472v-4.263l3.728 4.263h1.677zM78.14 59.326c-.728 0-1.407.13-2.039.391s-1.184.625-1.658 1.092c-.474.467-.844 1.013-1.112 1.637s-.402 1.294-.402 2.008a5.04 5.04 0 0 0 1.514 3.635a5.34 5.34 0 0 0 1.658 1.091c.632.268 1.311.402 2.039.402s1.407-.134 2.039-.402s1.184-.632 1.658-1.091a5.039 5.039 0 0 0 1.513-3.635a5.056 5.056 0 0 0-1.513-3.645a5.103 5.103 0 0 0-1.658-1.091a5.286 5.286 0 0 0-2.039-.391zm0 7.95c-.412 0-.786-.076-1.123-.227s-.621-.354-.855-.608c-.233-.254-.412-.553-.535-.896s-.185-.707-.185-1.092c0-.385.062-.745.185-1.081s.302-.635.535-.896c.233-.261.518-.467.855-.618s.71-.227 1.123-.227c.412 0 .786.075 1.122.227s.621.357.855.618c.233.261.412.56.535.896s.185.697.185 1.081c0 .385-.062.748-.185 1.092s-.302.642-.535.896c-.233.254-.518.457-.855.608s-.71.227-1.122.227m12.069-7.95c-.659 0-1.215.172-1.668.515s-.796.728-1.03 1.153v-1.421h-2.348v9.762h2.472V62.95c.192-.316.467-.614.824-.896s.824-.422 1.4-.422c.22 0 .429.021.628.062s.367.096.504.165l.865-2.224a4.802 4.802 0 0 0-1.648-.309zM2.471 60.788h5.664v2.348H2.471v6.199H0V54.918h8.547v2.348H2.471zm13.141-1.462a4.822 4.822 0 0 1 1.648.309l-.865 2.224c-.137-.069-.305-.124-.505-.165s-.409-.062-.628-.062c-.577 0-1.043.141-1.401.422s-.632.58-.824.896v6.385h-2.472v-9.762h2.348v1.421c.233-.426.577-.81 1.03-1.153s1.009-.515 1.668-.515zm7.105 0c1.359 0 2.43.33 3.213.989s1.174 1.545 1.174 2.657v6.364h-2.286V68.1c-.316.426-.752.779-1.308 1.061s-1.177.422-1.864.422c-.467 0-.916-.072-1.349-.216s-.814-.357-1.143-.638a3.097 3.097 0 0 1-.774-1.001l-.008-.018c-.192-.398-.288-.844-.288-1.339s.099-.944.299-1.349c.199-.405.474-.752.824-1.04s.762-.511 1.236-.669a4.82 4.82 0 0 1 1.534-.237c.453 0 .92.058 1.401.175s.899.292 1.256.525v-.556c0-.316-.069-.584-.206-.803s-.309-.395-.515-.525a2.102 2.102 0 0 0-.676-.276l-.014-.002a3.455 3.455 0 0 0-.731-.082c-.329 0-.748.055-1.256.165s-1.05.295-1.627.556l-.803-2.039c.494-.233 1.081-.439 1.761-.618s1.397-.268 2.152-.268zm-.391 8.197c.577 0 1.05-.12 1.421-.36s.666-.498.886-.772v-1.009c-.316-.165-.673-.288-1.071-.371s-.755-.124-1.071-.124c-.22 0-.439.024-.659.072s-.422.124-.608.227a1.28 1.28 0 0 0-.45.417l-.003.005c-.117.178-.175.398-.175.659s.055.474.165.638c.107.161.249.29.416.378l.006.003c.172.089.36.151.566.185s.398.052.577.052m18.557-8.197c.494 0 .954.086 1.38.258s.789.415 1.092.731c.302.316.539.704.711 1.164s.258.985.258 1.575v6.282h-2.471v-5.643c0-1.373-.556-2.06-1.668-2.06c-.549 0-.978.137-1.287.412s-.546.556-.711.844v6.446h-2.471v-5.643c0-1.373-.556-2.06-1.668-2.06c-.549 0-.978.137-1.287.412s-.546.556-.711.844v6.446h-2.471v-9.762h2.307v1.421c.247-.412.611-.793 1.091-1.143s1.098-.525 1.854-.525c.645 0 1.236.148 1.771.443s.934.717 1.194 1.267c.11-.206.258-.412.443-.618s.408-.388.669-.546c.261-.158.556-.288.886-.391s.693-.154 1.092-.154zm10.153 0c.673 0 1.308.124 1.905.371a4.767 4.767 0 0 1 2.626 2.646c.261.624.391 1.315.391 2.07v.391c0 .165-.007.343-.021.535h-7.291c.055.233.154.467.299.7s.336.443.577.628s.518.34.834.463c.316.124.673.185 1.071.185c.412 0 .858-.076 1.339-.227s.913-.405 1.297-.762l1.236 1.854c-.398.329-.934.645-1.606.947s-1.442.453-2.307.453c-.742 0-1.431-.13-2.07-.391s-1.194-.625-1.668-1.092c-.474-.467-.844-1.016-1.112-1.648s-.402-1.311-.402-2.039c0-.7.124-1.359.371-1.977s.587-1.157 1.019-1.617c.432-.46.951-.824 1.555-1.092s1.256-.402 1.957-.402zm2.451 4.222c-.014-.206-.072-.426-.175-.659s-.254-.45-.453-.649s-.45-.36-.752-.484s-.659-.185-1.071-.185c-.398 0-.742.062-1.03.185s-.532.282-.731.474c-.199.192-.35.405-.453.639s-.161.46-.175.68zm33.548 34.137l36.02-51.443A34.166 34.166 0 0 1 128 64c0 18.958-15.368 34.326-34.326 34.326c-2.271 0-4.491-.221-6.639-.641M71.634 37.683c5.963-4.999 13.65-8.009 22.04-8.009s16.077 3.01 22.04 8.009z\\\"/>\"\n\t\t},\n\t\t\"fsharp\": {\n\t\t\t\"body\": \"<path fill=\\\"#378BBA\\\" d=\\\"M0 64.5L60.7 3.8v30.4L30.4 64.5l30.4 30.4v30.4z\\\"/><path fill=\\\"#378BBA\\\" d=\\\"m39.1 64.5l21.7-21.7v43.4z\\\"/><path fill=\\\"#30B9DB\\\" d=\\\"M128 64.5L65.1 3.8v30.4l30.4 30.4l-30.4 30.3v30.4z\\\"/>\"\n\t\t},\n\t\t\"gatling\": {\n\t\t\t\"body\": \"<path fill=\\\"#f78557\\\" d=\\\"M102.062 92.294a28.66 28.66 0 0 0 8.975-8.32h4.127a3.8 3.8 0 0 0 0-7.599h-.327a28.922 28.922 0 0 0 1.44-7.533h4.062a3.8 3.8 0 1 0 0-7.599h-4.184a28.842 28.842 0 0 0-1.833-7.533h.786a3.8 3.8 0 0 0 0-7.599H110a29.2 29.2 0 0 0-22.731-10.94h-6.484a28.403 28.403 0 0 0-11.53 2.423h6.819a28.642 28.642 0 0 1 3.61 57.054c-.853.066-1.703.13-2.62.13h-29.5a35.158 35.158 0 0 0 11.988-10.807a2.206 2.206 0 0 0 .655.066H85.88a3.8 3.8 0 0 0 0-7.6H63.545a36.387 36.387 0 0 0 1.965-7.532h29.412a3.8 3.8 0 0 0 0-7.6h-29.08a35.625 35.625 0 0 0-1.443-7.532h21.618a3.8 3.8 0 0 0 0-7.6H61.056a35.098 35.098 0 0 0-30.138-17.22h-2.489A35.074 35.074 0 0 0 0 43.627a31.24 31.24 0 0 1 52.993 9.762H37.15a17.214 17.214 0 1 0 .327 21.092H21.091a13.684 13.684 0 0 1 13.69-13.69h19.98a28.525 28.525 0 0 1 .2 3.341A31.251 31.251 0 0 1 .656 85.224a35.027 35.027 0 0 0 27.84 13.822h51.358c26.596 0 48.146-1.572 48.146-3.61c.002-1.305-10.545-2.54-25.938-3.142\\\"/>\"\n\t\t},\n\t\t\"gatling-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f78557\\\" d=\\\"M30.087 73.05a8.448 8.448 0 0 0 2.645-2.452h1.217a1.12 1.12 0 0 0 0-2.24h-.096a8.526 8.526 0 0 0 .424-2.221h1.197a1.12 1.12 0 1 0 0-2.24h-1.233a8.502 8.502 0 0 0-.54-2.22h.231a1.12 1.12 0 0 0 0-2.24h-1.505a8.608 8.608 0 0 0-6.701-3.226h-1.912a8.373 8.373 0 0 0-3.399.714h2.01a8.443 8.443 0 0 1 1.065 16.82c-.252.019-.502.037-.772.037H14.02a10.364 10.364 0 0 0 3.534-3.186a.65.65 0 0 0 .193.02h7.568a1.12 1.12 0 0 0 0-2.24h-6.584a10.726 10.726 0 0 0 .58-2.22h8.67a1.12 1.12 0 0 0 0-2.24h-8.573a10.502 10.502 0 0 0-.425-2.222h6.373a1.12 1.12 0 0 0 0-2.24h-7.359a10.346 10.346 0 0 0-8.884-5.076H8.38A10.34 10.34 0 0 0 0 58.703a9.21 9.21 0 0 1 15.622 2.878H10.95a5.074 5.074 0 1 0 .096 6.218h-4.83a4.034 4.034 0 0 1 4.036-4.036h5.89a8.409 8.409 0 0 1 .059.985A9.212 9.212 0 0 1 .193 70.966A10.326 10.326 0 0 0 8.4 75.041h15.14c7.84 0 14.193-.464 14.193-1.065c0-.384-3.109-.749-7.646-.926\\\"/><path fill=\\\"#fff\\\" d=\\\"M96.415 52.962a1.962 1.962 0 0 0-2.053 2.054a1.878 1.878 0 0 0 .571 1.43a2.047 2.047 0 0 0 1.482.556a1.994 1.994 0 0 0 1.448-.555a1.903 1.903 0 0 0 .573-1.431a1.992 1.992 0 0 0-.573-1.482a1.915 1.915 0 0 0-1.448-.572M55.916 55.47A9.216 9.216 0 1 0 65 64.696a8.95 8.95 0 0 0-.101-1.364H58.6a3.801 3.801 0 0 0-3.805 3.805h6.448a5.967 5.967 0 1 1-.522-5.826h3.638a9.216 9.216 0 0 0-8.444-5.841Zm26.441.219v3.687h-1.65a.496.496 0 0 0-.506.505v2.089h2.156v11.6h2.744a.496.496 0 0 0 .506-.505v-11.08h2.373V59.9a.496.496 0 0 0-.505-.504h-1.868v-2.357a1.351 1.351 0 0 0-1.348-1.35zm6.75 0v17.897h2.743a.496.496 0 0 0 .506-.506V57.035a1.351 1.351 0 0 0-1.348-1.346zm18.286 3.385a5.558 5.558 0 0 0-2.745.64a4.085 4.085 0 0 0-1.634 1.564v-.537a1.35 1.35 0 0 0-1.346-1.346H100v14.208h2.744a.496.496 0 0 0 .506-.504v-7.747h.033a3.601 3.601 0 0 1 .893-2.575a3.21 3.21 0 0 1 2.44-.926a2.588 2.588 0 0 1 2.122.858a3.627 3.627 0 0 1 .69 2.374V73.6h2.745a.496.496 0 0 0 .505-.505V64.68a5.83 5.83 0 0 0-1.38-4.075a4.976 4.976 0 0 0-3.906-1.532zm13.84.31A7.07 7.07 0 1 0 128 66.465a6.52 6.52 0 0 0-.05-.808h-5.118a2.57 2.57 0 0 0-2.492 2.575h3.99a3.83 3.83 0 1 1-.405-4.141h3.67a7.07 7.07 0 0 0-6.363-4.707zm-26.45.01v14.192h2.744a.496.496 0 0 0 .504-.506V60.74a1.351 1.351 0 0 0-1.347-1.347zm-21.9.146a7.076 7.076 0 1 0 4.151 13.022v1.023h1.903a1.351 1.351 0 0 0 1.346-1.346V66.58h.003a7.076 7.076 0 0 0-7.403-7.041zm-.444 3.245a3.889 3.889 0 0 1 4.648 3.814a3.89 3.89 0 0 1-3.889 3.889a3.889 3.889 0 0 1-.759-7.703\\\"/>\"\n\t\t},\n\t\t\"gatsby\": {\n\t\t\t\"body\": \"<path fill=\\\"#64328B\\\" d=\\\"M64 0C28.7 0 0 28.7 0 64s28.7 64 64 64s64-28.7 64-64S99.3 0 64 0M13.2 64L64 114.8c-28.1 0-50.8-22.7-50.8-50.8m62.2 49.5l-60.9-61C19.7 30 39.9 13.2 64 13.2c16.6 0 31.3 7.9 40.5 20.2L97 40.6c-7.3-10.4-19.3-17.1-33-17.1c-17.6 0-32.5 11.2-38.1 26.8C33.1 57 75.4 98.8 78.1 102c12.7-4.7 22.3-15.5 25.4-28.9H81.9v-9.4l33 .2c-.1 24.3-16.9 44.5-39.5 49.6\\\"/>\"\n\t\t},\n\t\t\"gatsby-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#64328b\\\" d=\\\"M16.832 47.016C7.559 47.016 0 54.578 0 63.848C0 73.12 7.559 80.68 16.832 80.68s16.832-7.559 16.832-16.832c0-9.27-7.559-16.832-16.832-16.832M3.426 63.949l13.406 13.406c-7.457 0-13.406-6.046-13.406-13.406m16.328 13.004L3.73 60.824c1.41-5.945 6.653-10.379 13.102-10.379c4.332 0 8.266 2.117 10.684 5.34L25.5 57.7a10.742 10.742 0 0 0-8.77-4.535c-4.636 0-8.566 2.926-10.078 7.055c2.016 1.816 13.102 12.902 13.809 13.707c3.324-1.207 5.844-4.13 6.75-7.656h-5.742v-2.422l8.668.101c0 6.352-4.438 11.692-10.383 13.004Zm0 0\\\"/><path d=\\\"M56.64 63.746v2.824h4.739a6.405 6.405 0 0 1-5.945 4.032c-3.528 0-6.45-2.922-6.45-6.45c0-3.527 2.922-6.453 6.45-6.453a6.41 6.41 0 0 1 5.039 2.422l2.82-2.016c-1.813-2.32-4.633-3.832-7.758-3.832h-.203a9.725 9.725 0 0 0-9.777 9.778a9.725 9.725 0 0 0 9.777 9.777h.203a9.721 9.721 0 0 0 9.774-9.777v-.403Zm19.051-.504c-1.007-1.308-2.418-2.113-4.132-2.113c-3.024 0-5.442 2.922-5.442 6.45c0 3.526 2.418 6.448 5.442 6.448c1.714 0 3.226-.906 4.234-2.316v1.613h3.324V61.43h-3.426Zm-2.722 7.563a3.399 3.399 0 0 1-3.426-3.43a3.398 3.398 0 0 1 3.426-3.426a3.399 3.399 0 0 1 3.43 3.426c0 1.918-1.614 3.43-3.43 3.43m34.57-9.778c-1.613 0-3.125.805-4.133 2.118v-9.778h-3.324v19.856h3.324v-1.614c1.008 1.41 2.52 2.317 4.235 2.317c3.023 0 5.441-2.922 5.441-6.45c0-3.527-2.52-6.449-5.543-6.449m-1.309 9.778a3.399 3.399 0 0 1-3.425-3.43a3.398 3.398 0 0 1 3.425-3.426a3.398 3.398 0 0 1 3.426 3.426c-.101 1.918-1.613 3.43-3.426 3.43M85.47 57.398h-3.125v4.032H81.03v2.722h1.211v9.07h3.227v-9.07h2.52V61.43h-2.52Zm7.66 7.961c-.91 0-1.313-3.527 2.82-1.105l1.614-1.918s-3.93-2.82-7.258 0c-2.418 3.527 1.11 5.242 1.11 5.242l2.116.906s2.922 1.313 0 2.825c-2.418.097-3.226-1.614-3.226-1.614l-1.614 2.016s4.336 4.434 8.973 0c2.418-5.746-3.227-5.746-4.535-6.352m30.84-3.93l-3.426 6.755l-3.629-6.754h-3.832l5.543 10.28l-4.434 8.063h3.93L127.7 61.43Zm0 0\\\"/>\"\n\t\t},\n\t\t\"gazebo\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"m14.428 38.099l.651 54.711l47.547 28.335l2.28-26.38S91.612 78.48 89.657 77.179c-1.952-1.302-75.23-39.08-75.23-39.08z\\\"/><path fill=\\\"#231f20\\\" d=\\\"m60.493 68.22l1.61 1a3.591 3.591 0 0 0 1.892.539c.658 0 1.315-.18 1.894-.542l1.614-1.005l16.37 10.139l-21.857 13.61a3.58 3.58 0 0 0-1.69 3.051l.065 22.308L20.904 92.8ZM17.565 41.564L53.697 64L17.565 86.436Zm99.814 22.365a3.583 3.583 0 0 0-5.48-3.032L90.662 74.12l-16.37-10.136l41.483-25.83a3.587 3.587 0 0 0 1.69-3.048a3.586 3.586 0 0 0-1.697-3.042L65.882 1.175a3.583 3.583 0 0 0-3.778.003L12.218 32.154a3.584 3.584 0 0 0-1.693 3.045V92.8a3.585 3.585 0 0 0 1.693 3.046l49.886 30.976c.024.013.05.024.075.039c.026.015.05.034.077.05c.058.031.117.054.175.082c.06.03.117.06.177.083c.093.04.188.073.283.102c.056.02.111.04.168.056c.107.03.215.05.324.068c.047.006.093.02.14.026c.156.021.314.034.471.034h.001c.326 0 .653-.045.97-.137h.004a2.92 2.92 0 0 0 .36-.13c.036-.013.074-.023.11-.038c.098-.043.192-.098.288-.152c.052-.03.106-.053.158-.083l.002-.002l.002-.002l.095-.06l49.787-30.912a3.585 3.585 0 0 0 1.693-3.057z\\\"/><path fill=\\\"#fff\\\" d=\\\"m67.501 96.99l.059 20.355l42.73-26.534l-.06-20.43L67.5 96.989\\\"/><path fill=\\\"#f58113\\\" d=\\\"m20.904 35.199l43.09 26.755l43.091-26.833L63.998 8.44z\\\"/>\"\n\t\t},\n\t\t\"gazebo-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"m23.134 31.512l.537 45.107l39.2 23.36l1.88-21.749s22.017-13.425 20.406-14.498c-1.61-1.074-62.023-32.22-62.023-32.22\\\"/><path d=\\\"m22.95 31.215l.004.298l.54 45.21l39.534 23.558l1.894-21.946c.078-.047 5.467-3.333 10.736-6.8c2.653-1.747 5.255-3.528 7.1-4.943c.922-.707 1.654-1.322 2.115-1.806c.23-.242.395-.447.484-.64a.563.563 0 0 0 .064-.296a.382.382 0 0 0-.163-.268a18.28 18.28 0 0 0-.976-.548c-.532-.287-1.265-.677-2.168-1.154c-1.807-.955-4.3-2.26-7.245-3.796A8565.274 8565.274 0 0 0 53.624 47.06C38.32 39.14 23.217 31.353 23.217 31.353Zm.367.594c.26.134 14.97 7.718 30.141 15.57c7.652 3.96 15.355 7.954 21.244 11.024c2.945 1.536 5.438 2.84 7.244 3.794c.902.477 1.633.868 2.163 1.155c.53.286.872.479.948.53c.013.008.003-.007.004.003c0 .01-.003.05-.031.11c-.056.123-.2.316-.418.544c-.434.456-1.157 1.067-2.073 1.77c-1.83 1.403-4.43 3.18-7.08 4.924a425.015 425.015 0 0 1-10.801 6.843l-.078.048l-1.862 21.554l-38.867-23.162z\\\"/><path fill=\\\"#231f20\\\" d=\\\"m61.116 56.337l1.329.825a2.961 2.961 0 0 0 1.56.444a2.94 2.94 0 0 0 1.561-.447l1.33-.828l13.498 8.36l-18.021 11.221a2.952 2.952 0 0 0-1.393 2.517l.053 18.393l-32.56-20.217ZM25.721 34.358l29.792 18.5l-29.792 18.5Zm82.3 18.441a2.956 2.956 0 0 0-4.517-2.5L85.992 61.203l-13.498-8.357l34.204-21.299a2.958 2.958 0 0 0 1.394-2.513a2.957 2.957 0 0 0-1.4-2.508L65.56 1.056a2.955 2.955 0 0 0-3.115.002L21.312 26.6a2.955 2.955 0 0 0-1.396 2.51v47.496a2.956 2.956 0 0 0 1.396 2.512l41.133 25.541c.02.01.041.02.061.032c.022.012.042.028.065.042c.047.025.096.044.144.067c.049.024.096.05.145.069a2.3 2.3 0 0 0 .234.084c.046.015.092.033.138.046c.089.024.178.04.268.056c.038.005.077.016.115.021c.129.018.259.028.388.028h.002c.268 0 .538-.037.8-.113h.003c.1-.028.199-.066.297-.107l.09-.031c.08-.036.158-.081.237-.125c.043-.025.088-.044.13-.069l.003-.002l.001-.002l.079-.049l41.05-25.489a2.956 2.956 0 0 0 1.397-2.52l-.07-23.797\\\"/><path fill=\\\"#fff\\\" d=\\\"m66.895 80.059l.048 16.784l35.233-21.879l-.05-16.845z\\\"/><path fill=\\\"#f58113\\\" d=\\\"m28.474 29.11l35.529 22.06l35.53-22.125L64.008 7.046z\\\"/><path fill=\\\"#231f20\\\" d=\\\"M33.933 121.08c-.302 3.913-3.717 6.28-6.955 6.28c-3.93 0-7.062-3.185-7.062-6.815c0-3.415 2.829-6.813 7.044-6.813c3.487 0 5.71 2.403 6.226 3.738h-1.53c-.746-1.3-2.49-2.545-4.678-2.545c-3.326 0-5.746 2.704-5.746 5.64c0 2.935 2.42 5.603 5.8 5.603c2.792 0 4.856-2.063 5.318-3.896h-7.346v-1.192zm7.503.427h5.106l-2.526-6.048zm1.832-7.542h1.477l5.657 13.163h-1.441l-1.904-4.428H40.94l-1.92 4.428h-1.37zm11.602 11.97l6.476-10.778h-6.28v-1.192h7.756v1.192l-6.458 10.779h6.654v1.192h-8.15v-1.192m13.095-11.971h7.205v1.192H69.28v4.73h5.693v1.193H69.28v4.856h5.888v1.192h-7.205zm14.145 11.97h1.85c1.104 0 1.78-.053 2.49-.337c.818-.336 1.388-1.244 1.388-2.24c0-1.015-.676-1.888-1.546-2.225c-.625-.248-1.158-.3-2.563-.3H82.11Zm0-6.297h1.654c1.032 0 1.62-.053 2.26-.373c.623-.32 1.068-1.066 1.068-1.85c0-.605-.215-1.03-.553-1.44c-.515-.588-1.317-.818-2.667-.818h-1.76Zm-1.317-5.673H84.1c4.145 0 4.305 2.97 4.305 3.505c0 1.547-.979 2.275-1.44 2.65c1.315.533 2.187 1.725 2.187 3.237c0 1.263-.587 2.42-1.511 3.043c-1.121.658-1.993.745-3.541.728h-3.309zm20.094 12.203c3.041 0 5.656-2.473 5.656-5.603c0-3.078-2.543-5.64-5.656-5.64a5.674 5.674 0 0 0-5.64 5.692c0 3.006 2.58 5.55 5.64 5.55zm0-12.436c3.699 0 6.972 2.936 6.972 6.813c0 3.88-3.29 6.815-6.972 6.815c-3.736 0-6.956-3.042-6.956-6.743c0-4.145 3.45-6.885 6.956-6.885\\\"/>\"\n\t\t},\n\t\t\"gcc\": {\n\t\t\t\"body\": \"<path fill=\\\"#ffcfab\\\" d=\\\"m82.04 11.032l-4.805 7.352c7.595 8.814 15.19 17.627 22.785 26.446c1.07-4.376 1.852.394 2.723 2.248c2.344 5.29 2.708 11.188 3.437 16.851c1.382 10.718.928 16.99-.056 22.84c-3.184 18.95-14.488 30.013-25.279 36.38c-3.693 2.179-7.248 3.702-12.46 4.415c-5.372.733-10.635.441-16.026-.61c-4.45-.864-8.926-2.327-13.038-4.212c-6.555-3.004-11.965-8.205-16.202-13.91c-4.096-5.515-6.681-12.102-8.647-18.7c-3.57-12.002-5.076-24.785-2.23-37.134c1.776-7.694 4.335-15.316 7.836-22.345c3.714-7.456 8.933-14.21 15.255-19.812c3.796-3.364 7.92-6.464 12.567-8.332C51.307 1.134 54.913.828 58.638 1.07c3.683.243 7.197.657 10.703 1.905c4.774 1.697 9.268 4.351 12.7 8.057Zm0 0\\\"/><path fill=\\\"#f39505\\\" d=\\\"m75.951 18.715l-2.849.609l-3.865 2.033l-5.897-.813l-10.58 13.02l-5.693.814l-2.85 1.423l2.647 6.714L62.73 29.497l8.747-1.02zm5.495 1.016l-2.239 3.662l.406 3.255l4.678.406l6.308-3.458l-4.678-1.423z\\\"/><path fill=\\\"#ffcfab\\\" d=\\\"m84.901 15.255l4.682 5.898l1.22 2.036l-8.95-3.052l1.016-2.85zm0 0\\\"/><path fill=\\\"#ab9a7e\\\" d=\\\"m47.067 42.921l3.252 5.288l-3.252 8.344l7.73 1.422l1.626 1.626l4.88 7.526l15.462-8.136l4.6 1.271l4.963-1.474l-3.458-3.662l.61-1.016l1.628-1.016l.813 2.642l1.423 3.254l3.865 4.68l1.016-.61l.204-3.049l3.594-.632l1.267-.986l3.175-.386l.814-4l-2.34-9.664v-4.068l3.663-.61l3.254 2.443l4.679 1.219l1.833-.406l-5.495-6.916l-3.375-3.456l-1.912-1.224l-3.663-2.442l-7.528.408l-5.9 1.425l-5.084 2.443l-3.053-.411l-3.866-1.83l-1.218-1.832l-7.933-.203zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"m84.969 9.457l-3.245 1.288l-4.96 6.136l-5.287 12.002l2.036 2.443l5.694 1.626l6.511-2.642l9.953-2.515l-1.219-1.398l-1.41-1.175l-13.226 2.239l-.813-2.443l1.017-2.642l4.881-7.527l5.088 2.235l5.759 1.961l.45-.793l-3.905-2.614l-3.73-5.47zm26.379 11.9l-3.46.816s-2.845 1.423-2.031 1.423c.813 0 4.678 1.219 4.678 1.219l1.629 1.224l.407 1.828l-2.24 4.475l-1.016 1.02l-4.678-3.052l-1.426-1.02l-1.423-.204l-2.24.204l2.331 2.984l1.471.044l5.44 6.044l1.35 1.643l2.43-1.56l2.846-6.306l1.58-5.013l.217-4.2l-1.304-1.57zM94.87 38.853l-1.829.204l-3.255 2.848l1.22 1.626l1.63-.61l2.844-3.052zM91.465 52.55c-.762-.042-2.49 1.296-2.52 2.143c-.035 1.042 2.535 3.071 2.735 2.158c.197-.908.341-3.072.126-4.028c-.04-.18-.164-.263-.34-.273zm5.282.317c-.946.006-2.299.209-2.299.209s-.546 1.87.251 1.87c.8 0 3.006-1.397 2.948-1.87v-.002c-.022-.16-.406-.21-.9-.207m-11.639.024l-1.833 1.016l-.813 1.422l3.052 1.833l.61-1.63z\\\"/><path d=\\\"M56.03.004c-2.795.05-5.527.487-8.15 1.547c-4.732 1.902-8.899 5.041-12.716 8.423c-6.368 5.645-11.629 12.45-15.372 19.968c-3.524 7.072-6.096 14.731-7.88 22.459c-2.872 12.463-1.348 25.336 2.239 37.395c1.975 6.627 4.577 13.272 8.729 18.86c4.272 5.754 9.737 11.017 16.398 14.07c4.149 1.902 8.66 3.377 13.154 4.25v-.002c5.435 1.06 10.759 1.357 16.194.615c5.277-.722 8.923-2.282 12.65-4.48c10.88-6.42 22.314-17.623 25.524-36.737c.99-5.884 1.446-12.233.058-22.99c-.726-5.64-1.082-11.592-3.474-16.994l-.002-.006l-.002-.004c-.39-.826-.798-2.479-1.294-3.471c-.123-.248-.247-.465-.458-.647c-.026-.023-.076-.033-.107-.054l.27-.364c.46-.733 1.575-.642 3.4.49c1.486.877 3.443 1.056 5.543 1.203c3.435.235 3.163-.28 1.55-1.901l-1.945-1.745s.714.414 1.9-.682c1.592-1.469 4.635-8.224 5.177-13.086c.61-4.933-.204-5.672-5.472-5.067c-2.16.271-4.765.908-5.845 1.58c0 0-1.54.774-1.306 1.213c.24.438 2.29.652 2.29.652c3.85.606 4.901 1.881 4.901 3.3c0 1.487-2 5.145-2.944 5.145c-.338 0-1.554-.949-2.702-2.028c-2.295-2.227-3.53-2.519-5.753-1.862c-1.248-.343-3.06-.522-4.523-1.363c-.36-.203-.127-.492-.84-1.386c-1.279-1.609-2.255-1.467-3.607-1.132c-1.689.407-1.756.408-.474-.538c1.283-.944 1.214-1.08-1.618-4.797l-2.837-3.849l3.375 1.69c3.448 1.757 6.416 2.226 7.092 1.147c.272-.339-.676-1.216-2.095-1.89c-1.35-.677-2.97-2.23-3.578-3.378c-.674-1.216-1.555-2.633-1.957-3.175c-1.017-1.147-4.55-1.765-6.45-1.05a4.794 4.794 0 0 0-.888.463c-3.445-3.562-7.844-6.13-12.501-7.785C66.109.739 62.544.32 58.844.076A34.064 34.064 0 0 0 56.03.004m.018 1.027a32.88 32.88 0 0 1 2.727.069c3.666.242 7.128.652 10.566 1.875c4.498 1.6 8.711 4.08 12.011 7.463c-1.047.953-1.932 2.276-2.97 3.638c-1.316 1.717-2.043 3.017-2.657 4.06c-1.263-.299-3.428.622-4.305 1.435c-1.485 1.352-1.825 1.418-4.73.674c-2.9-.81-3.238-.742-4.793.677c-.876.876-3.312 3.917-5.403 6.753c-2.029 2.902-3.916 5.269-4.12 5.336c-.203 0-1.622.136-3.108.267c-1.486.136-3.51.54-4.522.949c-1.622.605-1.758.876-1.283 2.634c.334 1.012 1.82 4.12 3.374 6.82l2.77 4.863l-1.69 4.052c-.943 2.232-1.553 4.323-1.35 4.594c.204.338 2.162.809 4.39 1.081l4.053.473l3.108 4.658c2.905 4.391 3.422 4.64 4.455 4.122c.35-.172 2.028-1.351 4.255-2.432c2.231-1.147 5.27-2.836 6.754-3.85c2.105-1.387 4.233-1.86 5.36-1.43c.684.258 1 .85.721 1.77c-.59 1.891-.561 3.072-.299 4.303c.462.49 1.057.717 1.921 1.298c2.98 1.834 4.121 1.961 4.187 0v-1.482l.742 1.55c1.08 2.232 2.838 1.623 3.108-1.147c.204-1.622-.204-2.702-1.283-3.85c-.813-.877-1.234-2.027-.897-2.027c.679 0 2.99 3.108 2.99 3.92c0 .266.406.538.944.538c1.016 0 1.756-1.418 1.756-3.374c0-.749 2.017-1.167 3.897-1.833c.503-.179.499-.43.977-.761c.908.192.61.203 1.286.155c1.008-.072 1.46-.354 1.742-.806c1.418-2.295 1.622-5.198.542-7.765c-.497-1.24-.915-3.656-.93-4.991l.107.125l.237-.966c.13-.53.255-.91.361-1.15c.027-.063.016-.033.04-.075c.033.05.045.051.08.122c.38.762.799 2.421 1.283 3.448c2.289 5.177 2.659 11.015 3.39 16.698c1.377 10.678.925 16.874-.054 22.69c-3.156 18.789-14.332 29.71-25.032 36.024c-3.66 2.16-7.125 3.643-12.27 4.347c-5.31.725-10.512.438-15.86-.606c-4.406-.855-8.846-2.305-12.921-4.174c-6.448-2.955-11.803-8.091-16.002-13.748c-4.042-5.441-6.612-11.972-8.569-18.541c-3.554-11.945-5.041-24.637-2.222-36.872c1.77-7.662 4.315-15.247 7.796-22.232c3.683-7.396 8.864-14.098 15.136-19.657c3.776-3.345 7.856-6.406 12.418-8.24c2.486-1.004 5.09-1.426 7.786-1.472m29.399 8.905c.742-.01 1.509.143 2.319.447c.605.27 1.69 1.622 2.363 3.04c.745 1.417 2.028 3.04 2.837 3.578c.828.59 2.977 1.431 2.853 1.546c-.259.244-4.164-.98-6.635-2.355c-1.892-1.08-3.848-1.826-4.323-1.622c-.541.136-2.09 2.096-3.578 4.391c-2.973 4.595-3.514 8.172-1.35 8.914c1.283.406 10.802-1.846 12.36-2.091c1.124-.182 2.565.943 2.565 1.756c0 .27-2.028.674-4.458.878c-2.906.269-5.539 1.011-7.5 2.159c-3.51 1.96-5.534 2.096-8.303.677c-2.77-1.418-2.634-2.905 1.35-10.874c3.564-7.297 6.286-10.403 9.5-10.444m-.518 6.12c.473 0 1.553 1.147 2.499 2.5c2.903 4.39 2.903 4.188.876 3.65c-2.968-.881-5.3-2.255-5.857-2.627c.482-1.064 1.673-3.523 2.482-3.523m-10.535 3.39c.132.02.204.105.204.256c0 .136-.744 1.894-1.69 3.988c-1.553 3.31-1.96 3.714-4.256 4.122c-1.351.199-3.378.402-4.526.402c-1.618 0-3.172 1.08-7.428 5.267c-2.972 2.905-6.35 5.945-7.498 6.754l-2.093 1.419l-1.215-2.701c-1.486-3.307-1.08-3.849 3.578-4.256c3.849-.334 4.256-.607 7.365-5.133c1.146-1.69 3.239-4.39 4.725-6.008c2.3-2.634 2.77-2.904 4.053-2.164c2.162 1.148 4.593.88 6.35-.606c1.112-.912 2.038-1.405 2.431-1.34m7.256 1.249c.351.132 3.415 1.778 5.037 2.32l2.969.943l-2.295 1.147c-1.215.61-3.309 1.288-4.66 1.487c-3.039.474-3.648-.47-2.297-3.646c.558-1.415.931-1.737 1.246-2.251m32.795.969c1.554.134 2.263-.028 2.325 2.793c.137 2.363-.84 5.447-2.19 8.758c-2.092 5.268-4.177 7.315-5.396 5.151c-.702-1.227-2.33-3.688-5.052-5.92c-.207-.172-.47-.443-1.052-.575c-.853-.198-1.087.136-1.307-.031c-1.142-1.526-1.108-2.209.378-2.275c.814 0 2.03.61 2.703 1.418c.609.745 1.96 1.826 2.904 2.295c1.622.88 1.892.813 3.311-.673c1.08-1.148 1.694-2.785 1.802-4.854c.104-2.036-.653-3.182-4.101-3.928c-1.01-.199-3.011-.177-2.741-.38c.606-.606 6.46-1.848 8.416-1.78zm-18.44 7.548c1.75.035 1.976.582 2.23 1.974c.473 2.567 1.96 3.175 1.553.61c-.271-1.826-.271-1.826.742-.61c.609.742 1.084 2.091 1.084 3.04c0 .945.204 2.432.402 3.24c.339 1.153.001 1.486-1.754 1.893l-2.23.474l.474 3.985c.204 2.16.877 5.065 1.418 6.483c1.013 2.364.809 6.55-.339 7.296c-.271.199-1.956.132-3.646-.069c-2.77-.406-3.108-.609-3.108-2.23v-3.04c0-1.35-.27-1.352-2.7-.065c-1.148.606-2.026 1.551-2.026 2.16c0 1.554 1.957 3.578 3.443 3.578c.677 0 3.925.61 4.815.618c-.02.259-.395.486-.643.562c-1.023.326-2.693.147-3.295.035c-1.079-.135-1.215.204-1.147 2.165c.135 1.283 0 1.887-.272 1.35c-.2-.542-1.146-1.757-2.16-2.702c-1.078-1.012-1.824-2.633-1.956-4.051c-.338-3.176-1.69-5.607-4.391-7.902c-2.836-2.367-3.917-4.257-3.379-6.149c.272-1.08.882-1.486 2.163-1.486c2.295-.068 6.62-2.024 9.389-4.323c3.645-3.173 2.43-3.308-1.892-.268c-3.579 2.5-4.59 2.902-8.644 3.105l-4.527.338l2.228-2.295c1.149-1.214 2.164-2.43 2.164-2.701c0-1.42 6.212-4.053 10.874-4.595c2.482-.278 4.08-.441 5.13-.42m-27.148.184c1.615.038 2.26.304 2.565.914c.339.605 1.622 1.618 2.905 2.227c1.283.61 2.77 1.08 3.307 1.08c1.758 0-.334 2.5-3.172 3.781c-1.418.61-2.566 1.35-2.566 1.622c0 .27 1.35.745 3.036 1.012c2.701.339 3.04.61 2.702 1.758c-.673 2.162.812 4.865 4.12 7.701c2.632 2.162 2.973 2.703 2.163 3.444c-.677.673-1.688.808-3.916.406l-3.04-.542l.203-3.51c.203-3.854-.813-4.798-1.486-1.419c-1.012 5.131-.407 6.077 4.39 6.957c1.35.2 3.104 1.148 3.917 2.024l1.486 1.622l-1.96.673c-1.148.408-2.295.475-2.566.136c-1.418-1.214-4.798-1.214-6.686 0l-1.96 1.283l-2.702-2.16c-3.781-2.904-4.254-3.646-5.539-7.698c-.944-3.244-1.957-4.796-2.634-4.12c-.136.136.339 2.091 1.148 4.455c1.286 3.984 3.108 6.42 6.957 9.189c.744.537 1.216 1.079 1.017 1.283c-.475.402-8.648 4.522-9.054 4.522c-.204 0-1.621-1.957-3.172-4.386c-2.434-3.787-3.108-4.392-4.933-4.46c-1.148-.068-2.905-.27-3.917-.54l-1.757-.404l1.622-3.921l1.69-3.917l-1.487-2.363c-.877-1.486-1.216-2.77-.944-3.51c.469-1.017.606-.95.944.402c.543 2.096 1.622 1.96 1.757-.204c0-.942.944-2.565 1.956-3.577c1.084-1.013 1.758-1.486 1.487-1.012c-.47.945.204 2.904 1.012 2.904c.34 0 .61-1.015.61-2.23c0-1.551.741-2.97 2.702-5.201c2.295-2.634 2.632-2.836 2.7-1.554c0 .882.409 1.554.88 1.554c.608 0 .81-.606.607-1.957l-.27-2.028l3.917-.204a30.084 30.084 0 0 1 1.961-.033zm33.759 3.121c.139-.02.322.024.531.115c.837.36 2.006 1.714 3.53 3.619c.743.948 2.025 2.77 2.906 3.984c0 0 .565.707 1.224 1.347a18.668 18.668 0 0 0 1.398 1.224s-1.089.05-3.435-.61c-5.388-1.518-5.738-2.295-5.335-3.917c.337-1.284.473-1.284 2.23.403c.945.948 2.026 1.486 2.229 1.219c.741-.678-2.904-4.187-3.985-3.784c-.944.338-1.794-2.189-1.558-3.345c.031-.156.126-.235.265-.255m-8.366 3.128c-.741 0-.543.471.745 1.822c1.012 1.016 2.091 1.62 2.295 1.35c.673-.673-1.758-3.172-3.04-3.172m.006 2.836c-1.13-.007-2.55.527-3.652 1.551c-1.486 1.418-1.689 2.029-1.147 3.04c.403.745 1.215 1.352 1.752 1.352c1.418 0 5.2-3.85 4.866-4.93c-.238-.68-.94-1.01-1.819-1.013m.136.591c.306.013.468.22.468.626c0 .334-.475.673-1.017.673c-.536 0-1.283.61-1.685 1.35c-.407.745-1.084 1.148-1.486.949c-.475-.339-.135-1.084 1.08-2.096c1.222-1.013 2.13-1.525 2.64-1.502m5.873 1.299c.469 0 .673.204.469.474a.809.809 0 0 1-.943 0c-.204-.271 0-.474.474-.474m-3.163 11.647c-1.215-.047-2.889.255-3.223.598c-.27.275-.37.722-.421 1.07c-.051.352.078.81.226 1.082c.694 1.255 2.693.832 4.28-.957c.949-1.012.949-1.283.135-1.618c-.237-.104-.59-.159-.996-.175zm-.402 1.03c.25.02.398.096.398.28c0 .375-2.142 1.65-2.426.858c-.29-.816.309-1.02 1.046-1.088c.389-.035.734-.07.982-.05m-5.893.157c.335 0 .674.74.674 1.689h.002c0 1.752-.946 2.227-1.692 1.011c-.606-.948.069-2.7 1.016-2.7m-6.14.68c.419.007.737.375.737 1.01c0 .538-.271 1.013-.61 1.013c-.877 0-1.485-1.08-.944-1.622c.278-.278.566-.405.817-.401M41.523 78.134c-2.292 0-4.354.382-6.187 1.148c-1.832.769-3.38 1.828-4.642 3.182c-1.272 1.367-2.24 2.975-2.909 4.81c-.665 1.842-1 3.841-1 6.005c0 2.944.91 5.213 2.725 6.81c1.822 1.597 4.348 2.4 7.583 2.4c.885 0 1.709-.072 2.482-.208a21.87 21.87 0 0 0 2.247-.518a22.556 22.556 0 0 0 2.097-.702l1.877-.765l2.33-10.073h-9.391l-.602 2.63h6.26l-1.326 6.009a18.443 18.443 0 0 1-2.623.749a14.822 14.822 0 0 1-2.989.291c-2.415 0-4.243-.614-5.477-1.845c-1.233-1.231-1.85-2.971-1.85-5.232a15.447 15.447 0 0 1 .67-4.478c.446-1.483 1.102-2.782 1.975-3.894a10.081 10.081 0 0 1 3.295-2.725c1.305-.686 2.822-1.029 4.556-1.029c1.577 0 3.052.247 4.423.735c1.37.49 2.642 1.278 3.805 2.374h.286l.71-3.562c-1.43-.75-2.833-1.288-4.204-1.618a17.48 17.48 0 0 0-4.12-.494zm24.447 0c-2.176 0-4.145.402-5.91 1.204c-1.764.803-3.256 1.899-4.463 3.286c-1.22 1.411-2.156 3.048-2.805 4.917c-.653 1.873-.976 3.89-.976 6.057c0 2.825.846 5.009 2.539 6.547c1.69 1.54 4.024 2.31 6.997 2.31c1.618 0 3.143-.223 4.578-.669c1.434-.445 2.706-.948 3.81-1.505l.74-3.627h-.223c-.387.307-.857.639-1.403.993a14.983 14.983 0 0 1-1.844 1.024a13.381 13.381 0 0 1-2.451.86c-.897.228-1.845.34-2.845.34c-2.124 0-3.745-.602-4.869-1.806c-1.128-1.203-1.69-2.889-1.69-5.052a15.664 15.664 0 0 1 .758-4.902c.506-1.534 1.198-2.838 2.08-3.909a9.717 9.717 0 0 1 3.203-2.577c1.228-.614 2.577-.921 4.05-.921c.966 0 1.848.1 2.648.307c.798.203 1.486.458 2.064.765c.705.354 1.231.685 1.586.984a17.943 17.943 0 0 1 1.048.97h.235l.71-3.532c-1.271-.713-2.51-1.24-3.722-1.57a14.475 14.475 0 0 0-3.845-.494m22.574 0c-2.177 0-4.146.402-5.91 1.204c-1.765.803-3.252 1.899-4.463 3.286c-1.22 1.411-2.153 3.048-2.805 4.917c-.65 1.873-.977 3.89-.977 6.057c0 2.825.845 5.009 2.538 6.547c1.69 1.54 4.025 2.31 6.998 2.31c1.618 0 3.143-.223 4.578-.669c1.434-.445 2.706-.948 3.81-1.505l.74-3.627h-.223a18.484 18.484 0 0 1-1.402.993a14.983 14.983 0 0 1-1.845 1.024a13.381 13.381 0 0 1-2.45.86c-.898.228-1.846.34-2.846.34c-2.124 0-3.745-.602-4.869-1.806c-1.124-1.203-1.685-2.889-1.685-5.052c0-1.734.251-3.367.753-4.902c.506-1.534 1.2-2.838 2.084-3.909a9.663 9.663 0 0 1 3.2-2.577c1.227-.614 2.577-.921 4.048-.921c.969 0 1.854.1 2.65.307c.797.203 1.485.458 2.063.765c.705.354 1.233.685 1.587.984a17.943 17.943 0 0 1 1.047.97h.235l.71-3.532c-1.272-.713-2.51-1.24-3.717-1.57a14.52 14.52 0 0 0-3.85-.494z\\\"/><path fill=\\\"#ffcfab\\\" d=\\\"M85.252 53.046s-.45.482-.969.845c-.513.362-1.167.606-1.167.606s2.43 3.144 2.785 2.737c.359-.406.1-1.108-.051-2.024c-.155-.924-.598-2.163-.598-2.163zm0 0\\\"/>\"\n\t\t},\n\t\t\"gentoo\": {\n\t\t\t\"body\": \"<path fill=\\\"url(#deviconGentoo2)\\\" d=\\\"M2.876 102.069c.014-5.4 4.604-12.939 11.127-19.788c4.358-4.577 8.785-8.594 18.435-16.822c-6.675-3.663-17.057-8.082-22.265-13.87c-1.928-2.14-5.421-6.992-4.744-13.473C6.81 24.905 23.116 4.857 46.293.619c7.711-1.41 16.565-.393 23.852 2.883c22.861 10.278 50.819 35.812 54.259 48.28c1.21 4.387.978 11.382-1.11 15.28c-2.586 4.833-11.542 14.646-23.795 24.773c-19.225 15.889-46.166 32.95-66.282 35.82c-6.5.929-13.141-.039-17.801-2.668c-7.292-4.115-9.713-9.608-10.563-11.254c-2.263-4.378-1.982-9.925-1.977-11.664m54.108-60.667c.248-3.061 12.253-.013 11.495 2.411c-.8 2.558-11.78 1.101-11.495-2.41z\\\"/><path fill=\\\"url(#deviconGentoo3)\\\" d=\\\"M38.935 60.4c-6.317 5.334-10.518 8.93-15.784 13.744C10.47 85.734 1.852 94.557 6.295 106.618c5.125 13.912 16.358 13.207 29.532 10.621c33.956-6.697 89.772-49.608 86.927-65.458c-2.302-12.825-33.486-38.322-51.95-47.395C65.036 1.55 58.39.085 51.721.399C26.333 1.597 6.506 24.712 7.519 37.236c.985 12.184 31.78 22.8 31.416 23.164m-3.81-42.535c-7.64 8.5-2.756 24.944 9.913 33.907c14.825 10.488 38.83 12.387 43.608 4.299c8.91-15.087-.819-31.04-15.342-38.156c-14.351-7.032-33.417-5.349-38.18-.05Z\\\"/><path fill=\\\"url(#deviconGentoo0)\\\" d=\\\"M61.177 51.415c10.725 1.491 19.97-2.804 21.415-13.395c1.102-8.067-11.245-16.881-18.668-18.914c-6.199-1.697-19.656.486-20.564 12.21c-.943 12.187 11.564 19.23 17.817 20.1Zm-5.252-20.27c-7.048 10.92 10.234 14.276 12.88 12.285c11.407-8.585-9.774-17.096-12.88-12.285\\\"/><path fill=\\\"url(#deviconGentoo1)\\\" d=\\\"M49.675 3.3c-12.468 1.314-14.856 2.918-26.15 11.464c-3.786 2.864-10.753 9.833-12.538 18.1c-.68 3.148.124 5.867 2.391 7.773c7.261 6.105 19.414 11.057 29.384 15.845c2.92 1.402.987 3.945-3.722 8.021C27.156 74.791 11.09 87.314 9.969 96.856c-.529 4.497 1.01 10.607 6.468 13.734c6.376 3.652 19.61 1.268 28.448-2.023c12.915-4.809 29.879-15.422 43.347-25.855c14.004-10.848 27.026-24.628 27.67-26.875c.79-2.76.712-5.309-.814-8.24c-2.397-4.602-5.602-8.021-9.043-11.849c-9.233-9.734-19.002-18.287-30.69-24.841c-8.44-4.733-15.867-8.641-25.68-7.607m18.314 21.823c9.007 4.354 18.257 15.793-.08 22.376c-4.987 1.79-20.8-4.397-20.317-12.84c.706-12.472 9.399-14.854 20.397-9.536\\\"/><defs><radialGradient id=\\\"deviconGentoo0\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(21.5958 0 0 16.55244 54.025 28.43)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"34%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"51%\\\" stop-color=\\\"#bebbdb\\\"/><stop offset=\\\"75%\\\" stop-color=\\\"#928bbe\\\"/><stop offset=\\\"87%\\\" stop-color=\\\"#9f99c7\\\"/><stop offset=\\\"100%\\\" stop-color=\\\"#524c76\\\"/></radialGradient><radialGradient id=\\\"deviconGentoo1\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(-2.96054 187.84913 -160.21079 -2.5225 4.891 33.727)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"34%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"51%\\\" stop-color=\\\"#bebbdb\\\"/><stop offset=\\\"75%\\\" stop-color=\\\"#928bbe\\\"/><stop offset=\\\"87%\\\" stop-color=\\\"#9f99c7\\\"/><stop offset=\\\"100%\\\" stop-color=\\\"#524c76\\\"/></radialGradient><linearGradient id=\\\"deviconGentoo2\\\" x1=\\\"0\\\" x2=\\\"1\\\" y1=\\\"0\\\" y2=\\\"0\\\" gradientTransform=\\\"rotate(79.19 168.776 -156.268)scale(428.36508)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"34%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"51%\\\" stop-color=\\\"#bebdf3\\\"/><stop offset=\\\"75%\\\" stop-color=\\\"#867fb7\\\"/><stop offset=\\\"87%\\\" stop-color=\\\"#9f99c7\\\"/><stop offset=\\\"100%\\\" stop-color=\\\"#524c76\\\"/></linearGradient><linearGradient id=\\\"deviconGentoo3\\\" x1=\\\"0\\\" x2=\\\"1\\\" y1=\\\"0\\\" y2=\\\"0\\\" gradientTransform=\\\"rotate(-102.573 79.15 14.225)scale(111.47795)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"34%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"51%\\\" stop-color=\\\"#bebbdb\\\"/><stop offset=\\\"75%\\\" stop-color=\\\"#928bbe\\\"/><stop offset=\\\"87%\\\" stop-color=\\\"#9f99c7\\\"/><stop offset=\\\"100%\\\" stop-color=\\\"#524c76\\\"/></linearGradient></defs>\"\n\t\t},\n\t\t\"gentoo-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M72.74 98.459c-.023.003-.021.034-.02.063v23.13c.61.047 1.306.006 1.948.02V98.459Zm4.846 0c-.047.777-.006 1.642-.02 2.453h2.149V98.46zm-32.01 2.697c-.608.21-1.297.513-1.926.77v3.568h-1.054v1.643h1.054v10.826c0 1.222-.018 2.405.405 3.203c.465.88 1.722.953 3 .871v-1.703c-.518.035-1.112-.027-1.317-.363c-.194-.32-.162-.89-.162-1.461c0-3.768-.017-7.78.02-11.373h1.459v-1.643h-1.479zm62.277.223c-.046.108-.005.303-.019.445h.588v5.332c.13.045.344.01.508.022c.013-1.778-.028-3.61.02-5.354h.587v-.445zm2.231 0c-.047 1.892-.006 3.873-.02 5.799h.426c.027-1.785-.055-3.667.04-5.373c.247 1.745.403 3.585.609 5.373h.69c.182-1.645.387-3.417.546-5.069c.01-.088-.02-.246.082-.304c.047 1.743.006 3.574.02 5.351c.11.044.3.01.445.022v-5.8h-.852c-.144 1.33-.26 2.7-.404 4.036c-.047.437-.07.884-.184 1.297c-.171-1.788-.383-3.536-.546-5.332zm-82.42 3.717a6.375 6.375 0 0 0-.293.013c-1.57.101-2.337.833-2.637 2.272c-.266 1.277-.181 2.922-.181 4.662v4.846c0 1.593.049 3.26.69 4.156c.55.77 1.624 1.058 2.816 1.014c1.165-.044 2.127-.449 2.554-1.3c.625-1.242.466-2.816.508-4.642h-2.027c-.112 1.309.263 3.169-.407 3.953c-.377.443-1.348.456-1.744 0c-.433-.499-.404-1.635-.404-2.574v-2.98h4.582v-4.338c0-1.466-.022-2.844-.547-3.81c-.486-.895-1.47-1.308-2.91-1.272m10.586 0a4.247 4.247 0 0 0-.236.013c-1.021.084-1.617.713-2.069 1.338a24.673 24.673 0 0 0-.12-.953h-1.806v16.178h1.926v-11.11c0-1.15-.116-2.637.366-3.343c.422-.619 1.617-.59 2.007.02c.465.725.344 2.183.344 3.345v11.088h1.926v-12.063c0-2.372.032-4.572-2.338-4.513m48.553 0a4.177 4.177 0 0 0-.235.013c-1.02.084-1.612.718-2.068 1.338a14.495 14.495 0 0 0-.121-.953h-1.805v16.178c.642-.014 1.337.028 1.946-.02v-11.515c0-1.208-.093-2.74.648-3.203c.603-.378 1.459-.14 1.744.365c.436.77.305 2.201.305 3.365v11.008h1.926V109.59c0-2.387.02-4.554-2.34-4.494m-69.543.002a3.811 3.811 0 0 0-.25.011c-1.912.157-1.926 2.162-1.926 4.3v7.661c0 1.292.01 2.587.467 3.366c.671 1.143 2.693 1.116 3.629.203c.195-.191.317-.417.507-.649v2.96c0 1.177.07 2.443-.406 3.04c-.416.523-1.534.509-1.885-.08c-.409-.686-.228-1.834-.285-2.9h-2.027c-.034 1.57.04 2.838.527 3.73c.507.928 1.55 1.293 3 1.258c1.39-.033 2.266-.551 2.657-1.601c.374-1.006.384-2.36.384-3.874v-17.029H19.85c-.064.315-.1.657-.163.973c-.492-.783-1.212-1.389-2.427-1.37zm34.886.011a6.53 6.53 0 0 0-.427.02c-.966.075-1.796.408-2.211 1.115c-.465.79-.533 2.139-.588 3.305c-.062 1.297 0 2.507 0 3.914c0 1.312-.028 2.479 0 3.89c.026 1.322.106 2.55.527 3.387c.397.789 1.204 1.196 2.211 1.297c1.084.109 2.18-.05 2.838-.629c1.195-1.053 1.014-3.72 1.014-6.02v-3.507c0-2.28.187-4.971-.953-6.063c-.525-.502-1.423-.722-2.41-.709zm9.51 0a6.396 6.396 0 0 0-.531.02c-1.018.08-1.864.443-2.272 1.238c-.418.818-.498 2.152-.527 3.344c-.029 1.216 0 2.57 0 3.892c0 1.299-.047 2.504 0 3.874c.068 1.963.22 3.54 1.461 4.195c1.298.685 3.394.47 4.236-.404c.864-.897.893-2.755.893-4.541v-5.414c0-1.829.05-3.775-.527-4.907c-.47-.92-1.514-1.293-2.733-1.297m16.012.385c-.024.004-.023.032-.021.06c.013 5.366-.026 10.786.021 16.118h1.906c.048-5.353.006-10.792.02-16.178zm14.455 0c-.024.004-.023.032-.021.06v12.024c0 2.201-.015 4.35 2.048 4.44c1.238.053 2.16-.548 2.575-1.319c.05.328.089.667.162.973c.595-.014 1.244.027 1.804-.02v-16.158h-1.966v11.07c0 1.159.112 2.598-.346 3.344c-.248.404-.882.653-1.5.426c-1.053-.386-.83-2.4-.83-3.83v-11.01zm8.574 0c-.034.008.004.026 0 .06c.623 2.22 1.243 4.485 1.865 6.731c.087.312.268.712.264.975c-.004.292-.207.693-.304 1.033c-.717 2.489-1.402 4.954-2.108 7.379h1.844c.52-2.23 1.03-4.471 1.582-6.67c.51 2.24 1.05 4.45 1.582 6.67h2.088c-.704-2.423-1.385-4.887-2.088-7.338c-.075-.262-.31-.8-.305-1.055c.002-.122.096-.3.143-.466c.691-2.472 1.345-4.917 2.027-7.319h-1.846c-.451 1.982-.881 3.985-1.357 5.942a601.24 601.24 0 0 0-1.379-5.942zm-82.37 1.244c.206-.005.476.017.63.094c.752.377.73 1.666.73 2.818v7.076c0 1.213-.03 2.468-.689 2.839c-.476.267-1.266.103-1.563-.305c-.4-.553-.363-1.728-.363-2.838v-6.406c0-1.353-.116-3.097 1.075-3.264a1.593 1.593 0 0 1 .18-.014m9.501.006c1.34-.021 1.266 1.567 1.266 2.948v3.183c-.845-.013-1.744.026-2.555-.021v-3.223c0-1.313-.018-2.775 1.156-2.879c.046-.004.09-.007.133-.008m24.483.014c1.25.04 1.172 1.688 1.172 3.076v7.217c0 1.17.056 2.595-.508 3.102c-.351.315-1.302.36-1.682-.121c-.46-.585-.365-1.93-.365-3.082v-6.854c0-1.427-.146-3.165 1.115-3.324a1.691 1.691 0 0 1 .268-.014m9.404 0c1.243.038 1.174 1.657 1.174 3.055v7.217c0 1.15.067 2.616-.487 3.123c-.294.27-1.067.355-1.48.08c-.641-.427-.588-1.795-.588-2.96v-7.075c0-1.44-.17-3.263 1.115-3.426a1.69 1.69 0 0 1 .266-.014\\\"/><path fill=\\\"url(#deviconGentooWordmark2)\\\" d=\\\"M21.194 71.464c.01-3.78 3.224-9.06 7.79-13.855c3.052-3.204 6.151-6.017 12.908-11.778c-4.674-2.564-11.942-5.658-15.59-9.71c-1.349-1.5-3.794-4.896-3.32-9.434c.967-9.25 12.383-23.286 28.61-26.254c5.4-.987 11.599-.275 16.7 2.02c16.007 7.195 35.582 25.073 37.99 33.802c.848 3.072.685 7.97-.776 10.7c-1.812 3.382-8.082 10.253-16.661 17.343c-13.46 11.125-32.323 23.07-46.408 25.08c-4.55.65-9.2-.027-12.463-1.868c-5.105-2.881-6.8-6.727-7.396-7.88c-1.584-3.065-1.387-6.948-1.384-8.166m37.884-42.476c.173-2.144 8.58-.01 8.048 1.688c-.56 1.79-8.248.771-8.048-1.688\\\"/><path fill=\\\"url(#deviconGentooWordmark3)\\\" d=\\\"M46.441 42.29c-4.423 3.734-7.364 6.252-11.051 9.622c-8.88 8.115-14.912 14.293-11.802 22.737c3.588 9.74 11.453 9.247 20.677 7.436c23.774-4.689 62.854-34.733 60.862-45.83c-1.611-8.98-23.445-26.832-36.373-33.184C64.716 1.086 60.061.059 55.393.279c-17.776.839-31.657 17.023-30.948 25.792c.69 8.53 22.25 15.964 21.996 16.218Zm-2.668-29.782c-5.349 5.95-1.929 17.465 6.941 23.74c10.38 7.344 27.188 8.673 30.532 3.01c6.24-10.563-.573-21.733-10.741-26.715c-10.048-4.923-23.398-3.745-26.732-.035\\\"/><path fill=\\\"url(#deviconGentooWordmark0)\\\" d=\\\"M62.014 35.999c7.51 1.043 13.982-1.964 14.994-9.379c.77-5.648-7.874-11.82-13.07-13.243c-4.341-1.188-13.763.34-14.399 8.549c-.66 8.533 8.097 13.464 12.475 14.073m-3.677-14.193c-4.935 7.646 7.165 9.996 9.018 8.602c7.986-6.011-6.844-11.97-9.018-8.602\\\"/><path fill=\\\"url(#deviconGentooWordmark1)\\\" d=\\\"M53.96 2.31c-8.729.92-10.4 2.044-18.309 8.027c-2.65 2.005-7.528 6.884-8.778 12.673c-.476 2.204.087 4.107 1.674 5.442c5.084 4.274 13.593 7.742 20.574 11.094c2.044.982.69 2.762-2.607 5.616c-8.32 7.203-19.569 15.971-20.354 22.652c-.37 3.149.708 7.427 4.53 9.616c4.463 2.557 13.73.888 19.917-1.416c9.042-3.367 20.92-10.798 30.349-18.103c9.806-7.595 18.923-17.243 19.374-18.816c.553-1.933.498-3.717-.57-5.77c-1.679-3.222-3.923-5.616-6.332-8.296c-6.464-6.815-13.304-12.803-21.487-17.392c-5.91-3.314-11.11-6.05-17.98-5.327Zm12.823 15.28c6.306 3.049 12.783 11.057-.056 15.667c-3.492 1.253-14.564-3.079-14.225-8.99c.495-8.732 6.58-10.4 14.28-6.677z\\\"/><defs><radialGradient id=\\\"deviconGentooWordmark0\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(15.12035 0 0 11.58923 57.006 19.905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"34%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"51%\\\" stop-color=\\\"#bebbdb\\\"/><stop offset=\\\"75%\\\" stop-color=\\\"#928bbe\\\"/><stop offset=\\\"87%\\\" stop-color=\\\"#9f99c7\\\"/><stop offset=\\\"100%\\\" stop-color=\\\"#524c76\\\"/></radialGradient><radialGradient id=\\\"deviconGentooWordmark1\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(-2.07283 131.52301 -112.17196 -1.76613 22.605 23.614)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"34%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"51%\\\" stop-color=\\\"#bebbdb\\\"/><stop offset=\\\"75%\\\" stop-color=\\\"#928bbe\\\"/><stop offset=\\\"87%\\\" stop-color=\\\"#9f99c7\\\"/><stop offset=\\\"100%\\\" stop-color=\\\"#524c76\\\"/></radialGradient><linearGradient id=\\\"deviconGentooWordmark2\\\" x1=\\\"0\\\" x2=\\\"1\\\" y1=\\\"0\\\" y2=\\\"0\\\" gradientTransform=\\\"rotate(79.19 127.766 -97.774)scale(299.92082)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"34%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"51%\\\" stop-color=\\\"#bebdf3\\\"/><stop offset=\\\"75%\\\" stop-color=\\\"#867fb7\\\"/><stop offset=\\\"87%\\\" stop-color=\\\"#9f99c7\\\"/><stop offset=\\\"100%\\\" stop-color=\\\"#524c76\\\"/></linearGradient><linearGradient id=\\\"deviconGentooWordmark3\\\" x1=\\\"0\\\" x2=\\\"1\\\" y1=\\\"0\\\" y2=\\\"0\\\" gradientTransform=\\\"rotate(-102.573 65.064 2.252)scale(78.05154)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"34%\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"51%\\\" stop-color=\\\"#bebbdb\\\"/><stop offset=\\\"75%\\\" stop-color=\\\"#928bbe\\\"/><stop offset=\\\"87%\\\" stop-color=\\\"#9f99c7\\\"/><stop offset=\\\"100%\\\" stop-color=\\\"#524c76\\\"/></linearGradient></defs>\"\n\t\t},\n\t\t\"ghost\": {\n\t\t\t\"body\": \"<path d=\\\"M58.527 4.8c-9.183.833-19.71 4.606-27.582 9.856c-4.32 2.848-13.058 10.305-15.203 12.961c-5.277 6.43-9.406 15.2-10.847 22.942c-.672 3.746-.766 15.105-.16 20.16c1.152 9.219 3.327 16.77 7.042 24.097c3.391 6.72 6.27 10.977 9.79 14.465c3.394 3.36 6.242 5.086 11.136 6.817c1.824.605 4.32 1.789 5.535 2.558c6.946 4.45 14.465 6.559 23.203 6.559c4.797 0 7.614-.48 12.094-2.078c6.848-2.403 12.16-5.602 16.703-10.047c2.852-2.785 3.235-3.043 5.602-3.844c5.152-1.726 8.863-4.062 13.406-8.414c6.945-6.719 11.586-14.656 13.984-23.969c2.145-8.351 1.57-14.879-2.496-27.582c-3.199-10.015-5.855-14.242-14.972-23.648c-6.465-6.656-11.715-10.367-20.801-14.785C74.465 5.762 66.879 4.03 58.527 4.8m6.594.927c.383.16-.418.32-2.242.449c-6.496.418-18.781 2.847-22.43 4.383c-.832.351-1.57.609-1.633.511c-.16-.16 4.094-1.949 6.946-2.91c2.59-.894 7.52-2.047 10.078-2.398c2.496-.32 8.48-.356 9.281-.035m-1.984 4.546c7.457.446 10.367.895 4.543.704c-8.254-.32-18.72.703-25.758 2.464c-2.02.512-3.715.895-3.746.832c-.192-.195 5.344-2.722 6.945-3.203c3.84-1.117 9.246-1.343 18.016-.797M38.398 11.36c0 .067-.414.352-.957.641c-1.218.61-1.28.352-.066-.29c.992-.542 1.023-.573 1.023-.35m35.84 2.176c6.946 1.57 12.035 3.328 18.403 6.496c6.367 3.168 8.16 4.512 11.617 8.77c8.094 9.953 12.156 18.015 13.148 26.078c.61 5.059.48 7.648-.734 12.45c-1.344 5.245-3.008 8.8-6.656 13.952c-1.407 2.016-3.871 5.535-5.473 7.84c-3.453 4.992-6.016 8.254-8.606 11.008c-1.503 1.566-2.562 2.305-4.578 3.262c-3.136 1.472-14.625 5.41-15.808 5.41c-.446 0-2.75-.992-5.153-2.207c-4.605-2.371-5.855-2.817-11.359-4.067c-2.496-.543-4.414-1.246-6.719-2.398c-14.047-7.137-22.304-14.723-27.746-25.535c-1.789-3.586-2.047-3.649-.414-.13c2.176 4.704 5.985 10.048 9.633 13.567c4.352 4.16 12.223 9.602 18.078 12.48c1.473.735 4.191 2.208 6.05 3.298c4.063 2.398 5.856 3.168 9.505 4.16c1.918.48 2.847.894 2.91 1.246c.191.992-1.09 1.73-4.61 2.594c-1.917.449-3.68 1.054-3.933 1.312c-.738.734-.258.64 6.781-1.09l6.336-1.597l3.524.382c1.918.192 3.488.45 3.488.575c0 .195-3.715 1.984-6.113 2.945c-4.258 1.727-12.223 3.328-18.047 3.617c-3.328.16-3.457.125-2.625-.351c.48-.29.863-.547.863-.61c0-.062-1.344.192-2.945.512c-2.848.61-3.102.61-5.696.098c-6.496-1.25-15.617-7.235-21.246-13.922c-5.504-6.528-10.754-16.512-13.09-24.961c-1.566-5.63-1.953-8.606-1.984-15.52c0-6.238.031-6.496 1.059-10.558c2.496-9.633 6.109-18.72 8.863-22.082l.766-.957l-.637 2.015c-.93 3.07-.707 3.488.285.543c1.664-4.96 4-7.746 9.602-11.39c1.886-1.25 3.71-1.985 9.597-3.938c12.61-4.16 13.762-4.352 22.946-4.223c6.113.094 7.52.223 10.718.926m-62.11 23.328C9.314 42.465 8 46.688 6.879 53.602c-.671 4.32-.702 4.414-.956 2.91c-.32-2.047.031-7.23.637-9.504c.671-2.594 2.242-6.207 3.68-8.672c1.187-1.984 2.753-4.098 3.073-4.098c.063 0-.449 1.188-1.183 2.625m3.2.899c-1.375 3.168-3.168 9.086-3.937 12.797c-.895 4.418-1.47 12.351-1.153 15.84c.418 4.671 1.219 9.699 2.082 13.218c.926 3.809 5.918 13.985 9.602 19.582c2.398 3.711 2.75 4.48 1.98 4.48c-1.277 0-6.656-5.245-9.054-8.831c-2.274-3.391-2.977-5.535-3.137-9.375c-.125-2.657-.32-3.52-1.438-6.434c-1.472-3.71-1.793-5.312-2.242-11.137c-.511-6.207.418-13.98 2.367-19.742c1.41-4.222 5.57-13.281 6.082-13.281c.032 0-.48 1.312-1.152 2.883m106.879 19.902c2.656 12.258.512 24-6.238 34.434c-3.137 4.797-9.059 10.336-13.922 12.992c-1.918 1.055-5.406 2.43-6.11 2.43c-.609 0 2.75-3.551 7.293-7.711c5.504-5.024 8.098-8.13 10.016-12.032c.77-1.539 2.145-4 3.074-5.41c2.207-3.36 3.457-5.887 4.512-8.992c1.121-3.297 1.375-8.414.64-13.184c-.577-3.68-.671-6.91-.226-6.113c.16.258.578 1.89.961 3.586m-4.863 9.922c-.098.254-.192.156-.192-.195c-.03-.352.063-.543.16-.414c.094.093.13.382.032.609m-.703 5.344c-1.344 7.453-4.543 14.14-9.121 19.007c-1.918 2.079-6.528 5.758-9.122 7.293l-1.277.77l.992-1.281c.575-.703 3.008-4.16 5.473-7.68c2.46-3.52 5.535-7.934 6.848-9.793c2.847-4.031 4.734-7.582 5.757-10.848c.641-1.949.801-2.207.864-1.437c.066.512-.125 2.305-.414 3.969m-94.528 31.55c2.461 2.047 8.285 7.934 8.285 8.383c0 .832-2.238-.16-5.308-2.336c-2.817-1.984-5.57-5.632-5.57-7.39c0-.578.703-.227 2.593 1.343m41.918.352c.832.258 1.762.77 2.047 1.09c.578.605.547.637-.254.637c-.8 0-3.777-.993-4.672-1.567c-.222-.16-.351-.418-.222-.61c.222-.35.797-.253 3.101.45m25.762 1.055c-.098.129-.961.867-1.922 1.601c-1.664 1.282-1.824 1.344-3.742 1.246l-1.984-.093l3.808-1.504c4.414-1.73 4.063-1.602 3.84-1.25m-48.48 10.37c1.566.735 2.847 1.438 2.847 1.567c0 .672-5.984-.863-7.52-1.953c-1.183-.832-4.32-4.351-4.32-4.863c0-.13 1.375.703 3.106 1.855c1.695 1.121 4.351 2.657 5.886 3.395m48.03-4c-4.702 5.598-13.054 10.27-21.503 12.063c-2.945.61-9.344.61-12.895 0c-6.082-1.054-12.61-3.808-11.875-4.992c.13-.191 1.313-.258 3.106-.129c3.136.227 9.566-.191 15.586-.992c8.765-1.184 13.726-2.527 19.199-5.184c2.941-1.437 4.062-1.726 9.215-2.27c.258 0-.13.673-.832 1.505m0 0\\\"/><path d=\\\"M20.223 35.52c0 .449.066.609.16.382c.066-.191.066-.574 0-.797c-.094-.195-.16-.035-.16.415m-.321 2.082c0 .511.067.703.16.382c.067-.289.067-.738 0-.96c-.093-.192-.16.03-.16.578m2.211 31.519c0 .254.125.703.285.957c.387.578.387.067 0-.797c-.191-.418-.285-.48-.285-.16m0 0\\\"/>\"\n\t\t},\n\t\t\"ghost-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M22.398 41.547c-1.71.289-7.628 2.875-9.132 4.008c-3.22 2.379-5.586 6.273-6.227 10.25c-.191 1.101-.27 1.261-1.023 2.11c-1.618 1.769-3.137 5.042-3.489 7.452c-.222 1.5.016 2.653.961 4.79c.352.75.832 1.917 1.086 2.57c.707 1.804 1.7 3.195 4.387 6.097c1.086 1.2 2.559 2.031 4.879 2.781c1.633.524 4.305 1.165 4.894 1.18c.145 0 .739.32 1.313.703c1.664 1.117 2.387 1.309 5.312 1.453c5.04.254 5.457.223 8.32-.609c4.114-1.21 5.856-2.203 8.688-4.965c2.192-2.12 3.313-3.926 4.016-6.449c.16-.621.594-1.594.96-2.188c1.985-3.304 2.243-5.648 1.024-9.656c-.91-3.05-2.176-5.636-4.32-8.812c-1.695-2.555-3.168-4.137-4.957-5.348c-1.57-1.055-4.656-2.812-4.961-2.812c-.113 0-.207-.063-.207-.125c0-.082-.113-.082-.274-.036c-.191.082-.222.051-.128-.109c.082-.145.066-.176-.047-.098c-.098.067-.739-.047-1.41-.254c-.864-.238-1.133-.382-.926-.445c.207-.082.047-.144-.496-.226c-.45-.063-1.36-.286-2.047-.508c-2.258-.703-4.723-1.008-6.196-.754m4.243 1.488c-.176.063-1.215.238-2.305.383c-2.145.285-3.313.621-5.106 1.469c-1.71.812-4.285 2.617-5.421 3.765c-1.04 1.07-3.426 3.961-5.055 6.149c-.531.734-.992 1.293-1.027 1.258c-.032-.016.128-.524.351-1.118c.418-1.101.516-1.851.242-1.851c-.082 0-.222.129-.304.273c-.094.16-.176.207-.176.125c0-.367 1.426-2.984 2.32-4.23c1.457-1.992 3.39-3.637 4.113-3.48c.11.019.704-.301 1.293-.735c1.555-1.102 1.954-1.195 8.672-1.992c1.54-.192 2.817-.192 2.403-.016m-3.121 1.102c-.75.238-1.727.62-2.192.86c-1.55.8-4.672 3.32-7.281 5.89c-.863.863-1.649 1.566-1.727 1.566c-.367 0-.082-.367 1.168-1.516l1.313-1.23l-1.106.734c-1.773 1.196-1.87.942-.27-.75c2.446-2.554 6.766-5.125 9.696-5.75c1.727-.382 1.902-.285.399.196m8.496.43c1.136.335 2.8 1.18 4.382 2.234c1.457.957 2.305 1.691 2.051 1.773c-.097.031-.992-.336-1.969-.832c-.992-.496-1.746-.812-1.68-.719c.192.32-.417.352-2.257.098c-2.895-.398-5.184-.336-8.496.223c-1.55.27-3.024.445-3.262.398c-.305-.062-.738.047-1.441.414c-.559.274-1.297.61-1.649.719l-.64.242l.465-.512c.273-.289 1.023-.863 1.68-1.277c.769-.512 1.09-.781.878-.781c-.27-.016-.238-.082.211-.465c.75-.637 1.918-1.246 2.926-1.516c1.297-.351 7.617-.351 8.8 0m.351 2.937c3.57.687 5.344 1.547 7.41 3.59c2.285 2.27 3.84 4.84 4.817 8.031c.383 1.277.43 1.629.43 4.184c.015 4.726-.29 5.379-4.13 9.18c-4.414 4.374-6.94 5.777-12.511 6.929c-1.313.27-1.774.3-2.559.176c-1.183-.192-1.23-.192-.543.078c2.254.863 7.824-.719 11.918-3.399c.625-.418 2.258-1.855 3.664-3.226l2.528-2.473l-.512 1.035c-2.016 4.024-5.313 7.137-9.168 8.72c-1.79.718-4.238 1.308-5.633 1.355c-2.125.078-6.637-.176-7.039-.368c-.207-.113-.894-.671-1.535-1.246c-1.871-1.644-2.176-1.945-1.871-1.851c.16.047.656.129 1.12.176c.735.097.622.03-.991-.528l-1.84-.637l-1.442-1.515c-1.183-1.246-1.777-2.078-3.296-4.602c-2.59-4.324-3.489-6.832-3.727-10.52c-.098-1.452-.082-1.546.383-2.523c.383-.828.863-1.386 2.45-2.902c3.07-2.938 3.503-3.273 6.03-4.504c2.785-1.34 4.575-2.059 6.399-2.523c3.808-.989 6.785-1.18 9.648-.637m-21.023 6.32c-.29.32-.832.801-1.168 1.07l-.625.497l.289-.45c.258-.382 1.777-1.675 1.984-1.691c.047 0-.176.258-.48.574M5.44 61.488c-.097.512-.16 1.965-.16 3.211c0 2.121.032 2.344.461 3.477c.516 1.328 1.137 2.46 1.524 2.797c.398.316.3.062-.532-1.5c-.43-.801-.812-1.68-.879-1.934c-.062-.305.114-.078.512.637c.703 1.312 2.082 3.355 2.785 4.168c.274.304.832.781 1.23 1.054a22.14 22.14 0 0 1 1.778 1.454c.559.511 1.23 1.054 1.488 1.195c.305.176.786.879 1.442 2.078c.59 1.102 1.344 2.219 1.918 2.84l.945 1.023h-.562c-1.153 0-3.68-.734-5.153-1.484c-1.117-.559-2.91-1.852-3.758-2.7c-.402-.398-1.074-1.324-1.503-2.058c-.434-.734-1.235-2.11-1.793-3.05c-1.262-2.09-1.551-3.114-1.551-5.477c-.016-1.34.078-2.059.336-3c.336-1.184 1.457-3.848 1.566-3.735c.031.032-.015.477-.094 1.004m1.293 2.617c.356 2.653 1.204 4.95 2.692 7.313c.445.719.781 1.309.734 1.309c-.176 0-2.031-2.473-2.383-3.176c-1.09-2.14-1.89-6.418-1.441-7.68c.129-.367.144-.336.176.238c.015.352.129 1.246.222 1.996m41.664-1.468c.418 1.168.512 3.785.16 4.84c-.32.988-.894 2.152-1.277 2.617c-.258.304-.258.304-.16-.239c.047-.304.16-2.187.238-4.168c.082-1.98.192-3.718.258-3.863c.145-.414.461-.082.781.813m-44.46.527c-.243.895-.497 2.188-.672 3.563c-.13 1.066-.387.652-.387-.641c0-1.04.32-2.316.832-3.305c.418-.828.527-.652.227.383m3.726 2.012c.113.258.414.992.672 1.644c.258.657.543 1.34.61 1.516c.238.527.495 1.39.495 1.644c0 .418-.546-.207-1.105-1.242c-.48-.879-1.137-3.05-1.137-3.707c0-.43.242-.351.465.145m37.473 7.328c-.16.512-.403 1.148-.543 1.422c-.32.605-1.938 2.187-1.778 1.754c.047-.176-.273.082-.718.574c-.961 1.07-2.692 2.414-4.336 3.371c-1.86 1.07-2.403 1.277-2.403.879c.016-.274 1.2-1.137 3.055-2.203c3.25-1.887 4.563-3.051 6.066-5.446c.48-.75.895-1.355.91-1.34c.016.016-.093.462-.253.989m.383 1.676c-.305.832-.926 1.933-1.282 2.218c-.222.192-.238.16-.093-.207c.382-.988 1.457-2.875 1.566-2.761c.031.03-.063.367-.191.75M26.8 82.05c1.774.192 1.888.223 1.438.4c-.254.112-.972.241-1.597.288c-.914.063-1.41 0-2.641-.351c-.832-.239-1.55-.465-1.586-.496c-.14-.13 2.516-.032 4.387.16m0 0\\\"/><path d=\\\"M19.809 78.586a.863.863 0 0 0 .398 0c.098-.047.016-.078-.207-.078c-.223 0-.305.031-.191.078m11.839-35.441c.114.046.254.03.305-.016c.063-.047-.031-.094-.21-.078c-.177 0-.223.047-.095.094m40.911 5.398a57.51 57.51 0 0 1-1.313.223c-.031.015-.047 5.074-.047 11.27v11.273l1.809-.051l1.793-.047l.047-5.7l.03-5.698l.626-.481c1.055-.844 2.016-1.18 3.09-1.102c1.101.083 1.664.434 2.125 1.344c.304.574.32.989.37 6.176l.048 5.559l1.793-.051l1.789-.047V59.238l-.446-.976c-.546-1.18-1.503-2.153-2.593-2.633c-1.215-.543-3.215-.512-4.48.082c-.528.238-1.231.637-1.552.89c-.32.274-.625.481-.671.481c-.047 0-.114-1.965-.13-4.36l-.046-4.34l-.48-.034c-.258 0-1.055.082-1.762.195m46.882 2.344c-.53.082-1.043.242-1.152.336c-.16.16-.848 3.879-.848 4.55c0 .094-.418.207-.93.27c-.511.05-1.023.16-1.12.227c-.16.093-.832 2.074-.832 2.44c0 .063.625.145 1.41.161l1.39.047l.082 4.871c.063 4.293.11 4.95.383 5.555c.352.812 1.313 1.676 2.16 1.914c1.391.418 3.97.113 4.817-.574c.351-.286.351-.286.078-1.278c-.352-1.246-.512-1.37-1.246-1.07c-.899.367-1.586.305-2.047-.176l-.387-.414v-8.828l1.762-.047c1.152-.031 1.793-.113 1.871-.242c.062-.11.129-.652.129-1.227c0-.574-.067-1.117-.129-1.23c-.078-.129-.719-.207-1.871-.238l-1.762-.047l-.047-2.477c-.03-2.41-.113-2.746-.593-2.7c-.079.017-.59.099-1.118.177m-59.265 4.457c-2.016.347-3.649 1.515-4.367 3.093c-.29.657-.368 1.086-.368 2.317c0 1.309.063 1.644.414 2.41a6.878 6.878 0 0 0 1.106 1.55l.672.638l-.594.543c-.336.289-.703.75-.816 1.039c-.461 1.101-.145 2.648.656 3.175l.418.27l-.832.734c-1.953 1.696-2.113 4.168-.367 5.766c1.328 1.21 3.246 1.707 6.015 1.547c4.719-.285 7.489-2.426 7.489-5.793c0-2.7-1.555-3.625-6.48-3.914c-3.235-.176-3.52-.223-3.84-.668c-.352-.512-.29-.88.206-1.39c.45-.43.496-.446 1.809-.368c3.023.176 5.375-.957 6.367-3.063c.496-1.039.625-3.02.29-4.12c-.243-.766-.243-.766.144-.926c.222-.079.527-.145.687-.145c.656 0 .832-.352.781-1.516c-.046-1.054-.078-1.117-.445-1.164c-.547-.082-1.441.207-2.176.7l-.625.433l-.558-.336c-1.328-.75-3.86-1.133-5.586-.812m3.183 2.886c.528.274.817.56 1.09 1.086c.735 1.485.254 3.274-1.09 3.946c-1.472.75-3.535.3-4.238-.91c-.465-.817-.45-2.426.047-3.227c.754-1.195 2.734-1.629 4.191-.895m1.266 13.395c1.168.191 1.613.625 1.613 1.52c0 .843-.511 1.515-1.664 2.09c-1.117.59-3.597.718-4.812.253c-1.364-.508-1.907-1.82-1.235-3.047c.543-1.007.977-1.152 3.235-1.054c1.101.047 2.383.16 2.863.238m27.934-16.281c-2.223.332-4.368 1.883-5.313 3.847c-.672 1.371-.894 2.473-.894 4.293c.015 3.957 2.03 6.848 5.41 7.743c1.199.32 3.695.289 4.863-.079c2.496-.77 4.207-2.62 4.895-5.238c.304-1.18.304-3.863 0-5.043c-.48-1.87-1.793-3.707-3.297-4.633c-1.278-.78-3.825-1.18-5.664-.89m3.28 3.207c1.391.703 2.083 2.347 2.083 4.918c0 3.32-1.348 5.11-3.824 5.11c-1.41 0-2.32-.45-3.008-1.485c-.676-1.008-.899-2.203-.817-4.266c.141-3.207 1.293-4.613 3.805-4.629c.785 0 1.234.098 1.762.352m11.746-3.227c-1.074.16-2.563.848-3.25 1.489c-1.297 1.226-1.695 3.48-.91 5.14c.62 1.34 1.484 1.93 4.176 2.793c1.933.621 2.351.828 2.78 1.371c.657.848.243 1.934-.894 2.317c-.816.27-3.25.093-4.578-.336c-.797-.254-1.148-.29-1.308-.16c-.16.128-.723 1.917-.723 2.3c0 .192 1.344.75 2.351.989c.786.191 1.618.238 3.008.191c1.684-.063 2.051-.129 2.914-.512c1.121-.508 2.29-1.629 2.688-2.586c.351-.843.465-2.25.258-3.03c-.434-1.614-1.473-2.411-4.403-3.403c-2.336-.797-3.136-1.34-3.136-2.121c0-1.118.707-1.567 2.511-1.567c.77 0 1.715.13 2.434.32c.832.239 1.23.286 1.375.16c.113-.097.32-.656.48-1.23c.258-1.023.243-1.086-.03-1.293c-.419-.304-1.712-.636-3.09-.832c-1.344-.172-1.505-.172-2.653 0m0 0\\\"/>\"\n\t\t},\n\t\t\"gimp\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconGimp0\\\" x1=\\\"1915.16\\\" x2=\\\"1892.237\\\" y1=\\\"-1061.496\\\" y2=\\\"-1081.433\\\" gradientTransform=\\\"matrix(.18703 0 0 -.18703 -269.539 -118.36)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6E3D09\\\"/><stop offset=\\\".242\\\" stop-color=\\\"#EA8113\\\"/><stop offset=\\\".621\\\" stop-color=\\\"#5C3307\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E07C12\\\"/></linearGradient><linearGradient id=\\\"deviconGimp1\\\" x1=\\\"2014.528\\\" x2=\\\"2023.719\\\" y1=\\\"-1149.438\\\" y2=\\\"-1140.932\\\" gradientTransform=\\\"matrix(.18703 0 0 -.18703 -271.54 -119.16)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#BDBDBD\\\"/><stop offset=\\\".333\\\" stop-color=\\\"#E2E2E2\\\"/><stop offset=\\\".667\\\" stop-color=\\\"#A3A3A3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ddd\\\"/></linearGradient><linearGradient id=\\\"deviconGimp2\\\" x1=\\\"2769.363\\\" x2=\\\"2755.794\\\" y1=\\\"1.109\\\" y2=\\\"12.318\\\" gradientTransform=\\\"scale(.1594 -.1594)rotate(-27.635 522.5 3793.968)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><radialGradient id=\\\"deviconGimp3\\\" cx=\\\"1284.155\\\" cy=\\\"-757.829\\\" r=\\\"18.754\\\" gradientTransform=\\\"matrix(.28738 .00206 -.0021 -.29335 -257.74 -125.72)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#696969\\\"/><stop offset=\\\"1\\\"/></radialGradient></defs><radialGradient id=\\\"deviconGimp4\\\" cx=\\\"359.596\\\" cy=\\\"-303.644\\\" r=\\\"45.158\\\" gradientTransform=\\\"matrix(1.13129 0 0 -.49211 -344.577 -67.372)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></radialGradient><radialGradient id=\\\"deviconGimp5\\\" cx=\\\"202.968\\\" cy=\\\"-16.74\\\" r=\\\"47.581\\\" gradientTransform=\\\"matrix(2.00579 0 0 -1.46728 -363.204 30.498)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#857C63\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#221F19\\\"/></radialGradient><linearGradient id=\\\"deviconGimp6\\\" x1=\\\"377.399\\\" x2=\\\"349.841\\\" y1=\\\"-70.445\\\" y2=\\\"-75.913\\\" gradientTransform=\\\"matrix(1.13129 0 0 -1.13129 -349.06 -4.586)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconGimp7\\\" x1=\\\"349.459\\\" x2=\\\"407.97\\\" y1=\\\"-38.103\\\" y2=\\\"-104.522\\\" gradientTransform=\\\"matrix(1.13129 0 0 -1.13129 -344.718 -4.979)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><radialGradient id=\\\"deviconGimp8\\\" cx=\\\"260.968\\\" cy=\\\"17.46\\\" r=\\\"8.698\\\" gradientTransform=\\\"matrix(1.90622 0 0 -1.90622 -461.693 77.79)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#B9B9B0\\\"/></radialGradient><radialGradient id=\\\"deviconGimp9\\\" cx=\\\"209.674\\\" cy=\\\"-170.214\\\" r=\\\"11.954\\\" gradientTransform=\\\"matrix(.90164 -.5204 -.6075 -1.05323 -282.637 -12.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#5B676B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#141718\\\"/></radialGradient><linearGradient id=\\\"deviconGimpa\\\" x1=\\\"157.619\\\" x2=\\\"156.868\\\" y1=\\\"-207.564\\\" y2=\\\"-226.784\\\" gradientTransform=\\\"scale(1.13128 -1.13128)rotate(37 -155.633 -353.53)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><radialGradient id=\\\"deviconGimpb\\\" cx=\\\"238.858\\\" cy=\\\"30.974\\\" r=\\\"8.698\\\" gradientTransform=\\\"matrix(2.2377 0 0 -2.2377 -475.222 113.66)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#B9B9B0\\\"/></radialGradient><linearGradient id=\\\"deviconGimpc\\\" x1=\\\"367.057\\\" x2=\\\"362.519\\\" y1=\\\"-72.712\\\" y2=\\\"-73.805\\\" gradientTransform=\\\"matrix(1.13129 0 0 -1.13129 -344.718 -4.979)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconGimp4)\\\" d=\\\"M113.342 82.018c0 12.217-22.852 22.174-51.135 22.174c-28.282 0-51.134-9.956-51.134-22.174s22.852-22.173 51.133-22.173c28.284 0 51.136 9.955 51.136 22.173\\\"/><path fill=\\\"url(#deviconGimp5)\\\" d=\\\"M26.572 27.49s8.031 16.63 26.924 16.177c39.482-1.018 46.383-21.607 47.4-24.549c1.019-2.941 2.49-2.489 2.83.226c12.897 116.75-89.26 66.634-92.88 46.836c20.25-5.883 15.386-17.31 15.386-17.31z\\\"/><path fill=\\\"#2e3436\\\" d=\\\"M102.654 16.552c-.512-.081-1 .193-1.36.607c-.361.413-.663.995-.933 1.774c-.513 1.483-2.422 7.193-9.102 12.746c-6.68 5.553-18.133 10.916-37.776 11.423c-18.557.444-26.403-15.86-26.403-15.86l-1.035-2.147l-.04 2.386l-.34 21.5l.046.11s1.134 2.638-.11 6.034c-1.243 3.395-4.893 7.6-14.912 10.51l-.49.143l.09.504c.492 2.685 2.562 5.682 5.721 8.763c3.16 3.08 7.43 6.228 12.408 9.078c9.955 5.698 22.73 10.202 35.052 10.409c12.321.207 24.228-3.938 32.16-15.513c7.934-11.575 11.89-30.474 8.658-59.738v-.008c-.09-.726-.256-1.321-.505-1.79c-.25-.467-.617-.85-1.13-.931zm-.176 1.116c.025.004.153.06.306.348c.153.287.3.765.38 1.39c3.215 29.11-.76 47.728-8.467 58.973c-7.707 11.246-19.15 15.225-31.208 15.022c-12.058-.203-24.693-4.642-34.507-10.26c-4.908-2.81-9.11-5.913-12.18-8.906c-2.9-2.827-4.662-5.53-5.21-7.734c9.733-2.97 13.716-7.283 15.072-10.987c1.32-3.606.245-6.394.135-6.671l.308-19.365c2.326 3.888 10.343 15.14 26.403 14.754c19.839-.511 31.577-5.952 38.471-11.683c6.895-5.731 8.946-11.786 9.45-13.245c.24-.691.503-1.158.715-1.402c.213-.244.307-.238.332-.234\\\"/><path fill=\\\"url(#deviconGimp6)\\\" d=\\\"M41.504 76.814c18.893 3.732 28.509.227 34.052-4.072c-1.47-1.924-4.072-4.072-4.072-4.072s6.562 1.809 8.937 4.863c2.263 2.941.904 4.865.226 8.598c-1.358-3.394-3.846-4.639-4.186-5.996c-4.977 7.127-17.535 6.788-34.957.679\\\"/><path fill=\\\"url(#deviconGimp7)\\\" d=\\\"m101.575 23.774l-1.048 1.725c-1.554 2.554-3.893 5.56-7.35 8.575c-.002 0-.003.002-.005.004c-7.245 6.014-19.432 11.514-39.575 11.965h-.004c-11.69.334-19.088-5.315-23.663-10.337l-.946-1.038l-.38 14.053l.027.087c.338 1.124 1.086 3.637-.215 7.22c-1.384 3.726-5.762 7.85-13.587 10.869l-.563.217l.253.547c.677 1.468 1.425 3.057 3.62 5.14l.006.005c.003.002.002.004.005.006c2.875 2.874 6.977 5.946 11.761 8.68c9.573 5.47 21.971 9.8 33.642 10.029c11.668.228 22.317-3.594 29.665-14.273l.002-.004l.004-.004c6.555-9.89 10.28-26.415 8.35-51.49zm-1.088 3.713c1.607 23.919-2.018 39.79-8.207 49.128c-7.132 10.357-17.297 13.998-28.704 13.775c-11.406-.225-23.673-4.493-33.103-9.882c-4.714-2.694-8.754-5.726-11.534-8.506l-.005-.006l-.006-.004c-1.858-1.76-2.515-3.017-3.121-4.306c7.628-3.068 12.153-7.184 13.67-11.265l.002-.002v-.002c1.38-3.797.614-6.615.26-7.804l.303-11.246c4.767 4.921 12.21 10.131 23.584 9.806c20.345-.455 32.816-6.035 40.28-12.234l.006-.004l.004-.004a37.565 37.565 0 0 0 6.572-7.444z\\\" opacity=\\\".185\\\"/><path fill=\\\"url(#deviconGimp8)\\\" d=\\\"M47.047 52.49c0 6.337-5.09 11.427-11.426 11.427A11.393 11.393 0 0 1 24.195 52.49a11.394 11.394 0 0 1 11.426-11.426c6.335 0 11.426 5.204 11.426 11.426\\\"/><path fill=\\\"#888a85\\\" d=\\\"M35.622 40.622a11.846 11.846 0 0 0-11.87 11.868c0 6.573 5.296 11.87 11.87 11.87a11.845 11.845 0 0 0 11.867-11.87c0-6.463-5.29-11.868-11.867-11.868m0 .885c6.092 0 10.983 5.003 10.983 10.983a10.941 10.941 0 0 1-10.983 10.983A10.941 10.941 0 0 1 24.638 52.49a10.942 10.942 0 0 1 10.984-10.983\\\"/><path fill=\\\"url(#deviconGimp9)\\\" d=\\\"M24.422 56.79c5.543 7.693 5.543 16.97.113 20.93c-5.43 3.959-14.255.904-19.799-6.788c-5.542-7.694-5.542-16.97-.112-20.93c5.43-3.846 14.254-.791 19.798 6.788\\\"/><path d=\\\"M9.175 47.813c-1.767.145-3.432.704-4.877 1.728l-.004.002l-.003.002c-2.885 2.104-4.305 5.61-4.29 9.523c.014 3.913 1.442 8.26 4.276 12.195c2.834 3.933 6.51 6.693 10.217 7.968c3.707 1.274 7.486 1.052 10.374-1.055c2.885-2.103 4.306-5.61 4.292-9.523c-.015-3.846-1.431-8.106-4.172-11.987v-.06l-.107-.145l-.002-.005c-2.835-3.875-6.51-6.606-10.215-7.88c-1.853-.637-3.721-.907-5.489-.762zm.106 1.123c1.587-.128 3.29.117 5.016.71c3.45 1.187 6.958 3.773 9.666 7.475l.002.002c2.707 3.758 4.048 7.896 4.062 11.534c.013 3.64-1.28 6.75-3.826 8.606c-2.54 1.853-5.89 2.083-9.338.897c-3.449-1.186-6.959-3.8-9.668-7.56c-2.709-3.76-4.05-7.897-4.064-11.536c-.014-3.635 1.28-6.743 3.82-8.6l.003-.002c1.269-.897 2.741-1.398 4.327-1.526\\\"/><path fill=\\\"#2e3436\\\" d=\\\"M43.88 54.189c0 3.054-2.489 5.429-5.43 5.429c-3.055 0-5.43-2.489-5.43-5.43s2.489-5.43 5.43-5.43s5.43 2.375 5.43 5.43z\\\"/><path d=\\\"M38.449 48.095c-3.315 0-6.094 2.777-6.094 6.093c0 3.298 2.68 6.094 6.096 6.094c3.298 0 6.093-2.679 6.093-6.094c0-3.414-2.796-6.093-6.095-6.093m0 1.328c2.584 0 4.767 2.072 4.767 4.765a4.758 4.758 0 0 1-4.765 4.766a4.759 4.759 0 0 1-4.768-4.766c0-2.567 2.2-4.765 4.766-4.765\\\"/><path fill=\\\"url(#deviconGimpa)\\\" d=\\\"M8.734 50.856c-1.26.114-2.375.522-3.332 1.183h-.058l-.15.11s0 .003-.002.003c-1.87 1.375-2.949 3.85-2.83 7.146v.002c.116 3.176 1.287 7.013 3.961 10.503c2.558 3.372 5.912 5.698 8.995 6.646c3.048.939 5.657.716 7.632-.766c1.993-1.493 2.943-4.075 2.943-7.241c0-3.208-1.289-7.036-3.848-10.41c-2.553-3.365-5.798-5.699-8.883-6.648h-.006c-1.581-.468-3.075-.65-4.422-.528m.122 1.122c1.17-.103 2.504.054 3.975.49c2.796.86 5.886 3.051 8.311 6.248c2.419 3.188 3.619 6.826 3.619 9.726c0 2.942-.86 5.114-2.49 6.336c-1.643 1.232-3.786 1.462-6.62.59c-2.802-.862-6.007-3.059-8.427-6.249v-.002h-.002C4.694 65.82 3.6 62.19 3.492 59.26c-.109-3.034.85-5.077 2.367-6.193l.01-.008c.813-.61 1.817-.976 2.987-1.08z\\\" opacity=\\\".281\\\"/><path fill=\\\"#fff\\\" d=\\\"M13.787 57.695c0 3.281-2.262 5.882-4.977 5.882c-2.716 0-4.978-2.6-4.978-5.882c0-3.28 2.263-5.883 4.978-5.883c2.828 0 4.977 2.602 4.977 5.883M40.033 51.7a3.814 3.814 0 0 1-3.845 3.846A3.816 3.816 0 0 1 32.34 51.7a3.815 3.815 0 0 1 3.848-3.847a3.814 3.814 0 0 1 3.846 3.847z\\\"/><path fill=\\\"url(#deviconGimpb)\\\" d=\\\"M72.615 53.736c0 7.353-5.995 13.348-13.35 13.348c-7.352 0-13.348-5.995-13.348-13.348c0-7.353 5.882-13.35 13.235-13.35c7.354 0 13.463 5.997 13.463 13.35\\\"/><path fill=\\\"#888a85\\\" d=\\\"M59.152 40.01c-7.558 0-13.612 6.17-13.612 13.725c0 7.558 6.167 13.727 13.726 13.727c7.559 0 13.727-6.169 13.727-13.727c0-7.562-6.282-13.726-13.841-13.726zm0 .753c7.149 0 13.085 5.828 13.085 12.972c0 7.148-5.823 12.971-12.971 12.971s-12.972-5.823-12.972-12.971c0-7.152 5.71-12.972 12.858-12.972\\\"/><path fill=\\\"#2e3436\\\" d=\\\"M68.768 55.773c0 3.506-2.828 6.447-6.447 6.447c-3.508 0-6.45-2.828-6.45-6.447c0-3.622 2.83-6.45 6.449-6.45c3.507 0 6.448 2.828 6.448 6.449z\\\"/><path d=\\\"M62.319 48.758c-3.914 0-7.013 3.099-7.013 7.015c0 3.926 3.203 7.013 7.015 7.013c3.925 0 7.012-3.203 7.012-7.013v-.002c0-3.927-3.203-7.013-7.014-7.013m0 1.13c3.203 0 5.884 2.569 5.884 5.883v.002c0 3.201-2.57 5.882-5.882 5.882c-3.204 0-5.885-2.57-5.885-5.882c0-3.327 2.558-5.884 5.883-5.884z\\\"/><path fill=\\\"#fff\\\" d=\\\"M64.357 52.718c0 2.489-2.036 4.411-4.412 4.411s-4.412-2.036-4.412-4.411c0-2.49 2.036-4.412 4.411-4.412c2.376 0 4.412 2.036 4.412 4.412z\\\"/><path fill=\\\"url(#deviconGimp0)\\\" d=\\\"m99.966 93.641l2.597-5.178c-9.664-7.077-27.43-12.196-27.43-12.196c-3.065-1.446-4.065 1.342-1.901 3.15c-.044.013 15.162 10.923 26.734 14.224\\\"/><path fill=\\\"#673907\\\" d=\\\"M71.638 78.125c.189.575.587 1.141 1.145 1.634v.002s.051.06.062.07c.014.013.018.015.024.02l.014.013l.046.036l.135.1c.116.084.284.205.503.36c.438.308 1.076.75 1.88 1.29a149.95 149.95 0 0 0 6.505 4.132c5.263 3.154 11.977 6.726 17.858 8.404l.451.128l.21-.419l2.812-5.606l-.386-.282C93.072 80.81 75.29 75.723 75.29 75.723l.085.032c-.84-.397-1.59-.531-2.234-.418c-.644.113-1.169.508-1.427 1.036c-.258.529-.276 1.142-.075 1.752zm1.094-.332c-.125-.377-.107-.71-.002-.923c.104-.214.269-.359.606-.418c.338-.06.863 0 1.555.327l.041.02l.043.012s17.27 5.028 26.855 11.851l-2.148 4.282c-5.595-1.674-12.056-5.082-17.148-8.134a148.949 148.949 0 0 1-6.455-4.1a105.256 105.256 0 0 1-2.349-1.625a7.268 7.268 0 0 1-.116-.087l-.006-.004l-.014-.011c-.47-.393-.737-.814-.862-1.19\\\"/><path fill=\\\"url(#deviconGimp1)\\\" d=\\\"m112.359 98.427l1.389-3.095l-10.762-6.897l-.841-.088l-.351-1.191c-1.578.992-3.815 4.625-3.217 6.655l1.165-.44l.618.633z\\\"/><path fill=\\\"#888a85\\\" d=\\\"m98.206 94.556l1.39-.524l.449.46l12.613 4.649l.217-.482l1.589-3.54l-11.286-7.233l-.597-.063l-.455-1.544l-.634.397c-.95.598-1.904 1.799-2.622 3.154c-.719 1.355-1.215 2.855-.836 4.141zm.937-1.563c.01-.754.226-1.689.726-2.633a8.818 8.818 0 0 1 1.64-2.168l.2.678l1.085.113l10.238 6.562l-.973 2.168l-11.383-4.196l-.787-.806z\\\"/><path fill=\\\"#fff\\\" d=\\\"M104.839 92.354a.566.566 0 0 0 .296.744l7.14 3.074a.566.566 0 0 0 .744-.296a.566.566 0 0 0-.296-.744l-7.14-3.074a.566.566 0 0 0-.744.296\\\"/><path fill=\\\"url(#deviconGimp3)\\\" d=\\\"M128 111.462c-3.357-11.382-4.552-20.477-13.328-19.664c-7.096.654-7.567 10.768-.258 13.6c7.037 2.72 13.586 6.064 13.586 6.064\\\"/><path fill=\\\"#fff\\\" d=\\\"M115.192 92.748a2.965 2.965 0 0 1 3.656 1.99a2.965 2.965 0 0 1-1.99 3.657a2.965 2.965 0 0 1-3.657-1.99a2.965 2.965 0 0 1 1.991-3.657\\\" opacity=\\\".528\\\"/><path fill=\\\"#fff\\\" d=\\\"M102.355 88.573a1.963 1.963 0 0 1 2.457 1.337a1.963 1.963 0 0 1-1.338 2.457a1.963 1.963 0 0 1-2.456-1.338a1.963 1.963 0 0 1 1.337-2.456\\\"/><path fill=\\\"url(#deviconGimp2)\\\" d=\\\"M123.785 104.649s-1.109-4.085-3.509-6.207c-.847-.757.212-1.885 1.035-.88c1.717 2.083 2.474 7.087 2.474 7.087\\\" opacity=\\\".428\\\"/><path fill=\\\"url(#deviconGimpc)\\\" d=\\\"M61.868 81.452c4.185.453 8.031-.792 9.502-1.357c.227-1.585 1.471-4.525 5.77-4.751l-1.47-2.602s-5.544 3.732-11.427 4.864z\\\"/>\"\n\t\t},\n\t\t\"gimp-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconGimpWordmark0\\\" x1=\\\"1915.16\\\" x2=\\\"1892.237\\\" y1=\\\"-1061.496\\\" y2=\\\"-1081.433\\\" gradientTransform=\\\"matrix(.17637 0 0 -.17637 -250.534 -127.211)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6E3D09\\\"/><stop offset=\\\".242\\\" stop-color=\\\"#EA8113\\\"/><stop offset=\\\".621\\\" stop-color=\\\"#5C3307\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E07C12\\\"/></linearGradient><linearGradient id=\\\"deviconGimpWordmark1\\\" x1=\\\"2014.528\\\" x2=\\\"2023.719\\\" y1=\\\"-1149.438\\\" y2=\\\"-1140.932\\\" gradientTransform=\\\"matrix(.17637 0 0 -.17637 -252.421 -127.965)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#BDBDBD\\\"/><stop offset=\\\".333\\\" stop-color=\\\"#E2E2E2\\\"/><stop offset=\\\".667\\\" stop-color=\\\"#A3A3A3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ddd\\\"/></linearGradient><linearGradient id=\\\"deviconGimpWordmark2\\\" x1=\\\"2769.363\\\" x2=\\\"2755.794\\\" y1=\\\"1.109\\\" y2=\\\"12.318\\\" gradientTransform=\\\"scale(.15032 -.15032)rotate(-27.634 745.58 3796.533)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><radialGradient id=\\\"deviconGimpWordmark3\\\" cx=\\\"1284.155\\\" cy=\\\"-757.829\\\" r=\\\"18.754\\\" gradientTransform=\\\"matrix(.271 .00194 -.00198 -.27664 -239.408 -134.152)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#696969\\\"/><stop offset=\\\"1\\\"/></radialGradient></defs><radialGradient id=\\\"deviconGimpWordmark4\\\" cx=\\\"359.596\\\" cy=\\\"-303.644\\\" r=\\\"45.158\\\" gradientTransform=\\\"matrix(1.06683 0 0 -.46407 -321.297 -79.128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></radialGradient><radialGradient id=\\\"deviconGimpWordmark5\\\" cx=\\\"202.968\\\" cy=\\\"-16.74\\\" r=\\\"47.581\\\" gradientTransform=\\\"matrix(1.8915 0 0 -1.38368 -338.863 13.165)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#857C63\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#221F19\\\"/></radialGradient><linearGradient id=\\\"deviconGimpWordmark6\\\" x1=\\\"377.399\\\" x2=\\\"349.841\\\" y1=\\\"-70.445\\\" y2=\\\"-75.913\\\" gradientTransform=\\\"matrix(1.06683 0 0 -1.06683 -325.524 -19.92)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconGimpWordmark7\\\" x1=\\\"349.459\\\" x2=\\\"407.97\\\" y1=\\\"-38.103\\\" y2=\\\"-104.522\\\" gradientTransform=\\\"matrix(1.06683 0 0 -1.06683 -321.43 -20.29)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><radialGradient id=\\\"deviconGimpWordmark8\\\" cx=\\\"260.968\\\" cy=\\\"17.46\\\" r=\\\"8.698\\\" gradientTransform=\\\"matrix(1.79761 0 0 -1.79761 -431.74 57.763)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#B9B9B0\\\"/></radialGradient><radialGradient id=\\\"deviconGimpWordmark9\\\" cx=\\\"209.674\\\" cy=\\\"-170.214\\\" r=\\\"11.954\\\" gradientTransform=\\\"matrix(.85027 -.49074 -.57289 -.99322 -262.886 -26.976)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#5B676B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#141718\\\"/></radialGradient><linearGradient id=\\\"deviconGimpWordmarka\\\" x1=\\\"157.619\\\" x2=\\\"156.868\\\" y1=\\\"-207.564\\\" y2=\\\"-226.784\\\" gradientTransform=\\\"matrix(.852 -.64203 -.64203 -.852 -256.764 -39.57)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><radialGradient id=\\\"deviconGimpWordmarkb\\\" cx=\\\"238.858\\\" cy=\\\"30.974\\\" r=\\\"8.698\\\" gradientTransform=\\\"matrix(2.1102 0 0 -2.1102 -444.498 91.588)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#B9B9B0\\\"/></radialGradient><linearGradient id=\\\"deviconGimpWordmarkc\\\" x1=\\\"367.057\\\" x2=\\\"362.519\\\" y1=\\\"-72.712\\\" y2=\\\"-73.805\\\" gradientTransform=\\\"matrix(1.06683 0 0 -1.06683 -321.43 -20.29)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconGimpWordmark4)\\\" d=\\\"M110.53 61.75c0 11.521-21.55 20.91-48.221 20.91c-26.671 0-48.221-9.388-48.221-20.91s21.55-20.91 48.22-20.91c26.672 0 48.222 9.388 48.222 20.91\\\"/><path fill=\\\"url(#deviconGimpWordmark5)\\\" d=\\\"M28.704 10.328s7.574 15.683 25.39 15.256c37.233-.96 43.74-20.376 44.7-23.15c.96-2.774 2.348-2.347 2.668.213c12.162 110.097-84.173 62.837-87.587 44.167c19.096-5.548 14.509-16.323 14.509-16.323z\\\"/><path fill=\\\"#2e3436\\\" d=\\\"M100.451.014c-.483-.077-.943.182-1.283.572c-.34.39-.625.939-.879 1.674c-.484 1.398-2.284 6.782-8.584 12.02c-6.3 5.236-17.1 10.293-35.623 10.77c-17.5.42-24.898-14.954-24.898-14.954l-.977-2.026l-.037 2.25l-.32 20.276l.043.103s1.068 2.488-.104 5.69c-1.172 3.201-4.614 7.167-14.062 9.912l-.463.135l.086.474c.463 2.533 2.415 5.359 5.394 8.264c2.98 2.905 7.008 5.874 11.701 8.56c9.388 5.374 21.436 9.621 33.055 9.817c11.62.195 22.847-3.714 30.328-14.63c7.481-10.915 11.213-28.737 8.164-56.333V2.58c-.086-.685-.241-1.246-.476-1.687c-.236-.442-.582-.803-1.065-.88zm-.166 1.052c.024.004.144.056.29.329c.143.27.282.72.357 1.31c3.032 27.452-.717 45.009-7.985 55.613c-7.268 10.605-18.059 14.358-29.43 14.166c-11.37-.19-23.285-4.377-32.54-9.675c-4.628-2.65-8.592-5.576-11.487-8.399c-2.734-2.666-4.396-5.215-4.912-7.293c9.178-2.8 12.934-6.868 14.213-10.361c1.245-3.4.231-6.03.127-6.291l.291-18.262c2.193 3.667 9.754 14.277 24.898 13.914c18.709-.482 29.778-5.613 36.28-11.017c6.502-5.405 8.436-11.115 8.912-12.49c.225-.653.473-1.093.674-1.323c.2-.23.288-.224.312-.22z\\\"/><path fill=\\\"url(#deviconGimpWordmark6)\\\" d=\\\"M42.786 56.842c17.816 3.52 26.884.214 32.111-3.84c-1.386-1.814-3.84-3.84-3.84-3.84s6.188 1.706 8.428 4.586c2.134 2.774.853 4.588.213 8.108c-1.28-3.2-3.627-4.374-3.947-5.654c-4.694 6.721-16.536 6.401-32.965.64\\\"/><path fill=\\\"url(#deviconGimpWordmark7)\\\" d=\\\"m99.434 6.824l-.989 1.627c-1.465 2.409-3.67 5.244-6.931 8.086l-.004.004c-6.833 5.671-18.325 10.858-37.32 11.283h-.005c-11.022.315-18-5.011-22.314-9.748l-.892-.978l-.358 13.252l.025.082c.319 1.06 1.024 3.43-.203 6.808c-1.305 3.514-5.433 7.404-12.812 10.25l-.531.205l.238.516c.639 1.384 1.344 2.883 3.414 4.848l.006.003l.004.006c2.712 2.71 6.58 5.607 11.092 8.186c9.027 5.158 20.718 9.24 31.724 9.457c11.003.215 21.046-3.389 27.975-13.459l.002-.004l.004-.004c6.18-9.326 9.694-24.91 7.875-48.556zm-1.026 3.502c1.515 22.556-1.904 37.522-7.74 46.328c-6.725 9.768-16.31 13.201-27.068 12.99c-10.756-.211-22.325-4.236-31.217-9.318c-4.446-2.54-8.255-5.4-10.877-8.021l-.004-.006l-.006-.004c-1.752-1.66-2.372-2.845-2.943-4.06c7.193-2.894 11.46-6.775 12.89-10.624l.002-.002v-.002c1.302-3.58.58-6.237.246-7.36l.286-10.605c4.495 4.642 11.514 9.555 22.24 9.248c19.186-.43 30.946-5.69 37.983-11.537l.006-.004l.004-.003a35.424 35.424 0 0 0 6.197-7.02z\\\" opacity=\\\".185\\\"/><path fill=\\\"url(#deviconGimpWordmark8)\\\" d=\\\"M48.013 33.905c0 5.975-4.8 10.775-10.775 10.775c-5.975 0-10.775-4.8-10.775-10.775A10.745 10.745 0 0 1 37.238 23.13c5.974 0 10.775 4.908 10.775 10.775\\\"/><path fill=\\\"#888a85\\\" d=\\\"M37.238 22.713a11.171 11.171 0 0 0-11.193 11.191a11.172 11.172 0 0 0 11.193 11.194A11.17 11.17 0 0 0 48.43 33.904c0-6.094-4.99-11.191-11.192-11.191m0 .834c5.746 0 10.358 4.718 10.358 10.357a10.318 10.318 0 0 1-10.358 10.358a10.318 10.318 0 0 1-10.357-10.358a10.318 10.318 0 0 1 10.357-10.357\\\"/><path fill=\\\"url(#deviconGimpWordmark9)\\\" d=\\\"M26.677 37.96c5.227 7.254 5.227 16.002.106 19.736c-5.12 3.734-13.442.853-18.67-6.401c-5.227-7.255-5.227-16.003-.106-19.737c5.12-3.627 13.442-.746 18.67 6.401z\\\"/><path d=\\\"M12.299 29.494c-1.667.136-3.237.664-4.6 1.629l-.004.002l-.002.002c-2.72 1.984-4.06 5.29-4.047 8.98c.014 3.69 1.36 7.79 4.034 11.5c2.673 3.71 6.138 6.312 9.634 7.514c3.496 1.202 7.06.993 9.784-.994c2.72-1.984 4.06-5.29 4.047-8.98c-.014-3.628-1.35-7.645-3.934-11.305v-.057l-.102-.136l-.002-.004c-2.673-3.655-6.139-6.23-9.632-7.432c-1.747-.6-3.51-.855-5.176-.719m.1 1.059c1.496-.12 3.103.11 4.73.67c3.254 1.119 6.56 3.558 9.115 7.048l.002.002c2.553 3.544 3.817 7.447 3.83 10.877c.013 3.432-1.207 6.366-3.607 8.116c-2.396 1.747-5.555 1.964-8.807.845c-3.252-1.118-6.562-3.583-9.117-7.129c-2.554-3.545-3.82-7.447-3.832-10.878c-.013-3.428 1.206-6.359 3.601-8.11l.004-.002c1.197-.846 2.585-1.319 4.08-1.44z\\\"/><path fill=\\\"#2e3436\\\" d=\\\"M45.026 35.506c0 2.88-2.347 5.12-5.12 5.12c-2.881 0-5.121-2.347-5.121-5.12c0-2.774 2.347-5.121 5.12-5.121c2.774 0 5.121 2.24 5.121 5.12z\\\"/><path d=\\\"M39.904 29.76c-3.126 0-5.746 2.619-5.746 5.746c0 3.11 2.527 5.746 5.748 5.746c3.11 0 5.746-2.526 5.746-5.746c0-3.22-2.637-5.746-5.748-5.746m0 1.252a4.487 4.487 0 0 1 4.496 4.494A4.486 4.486 0 0 1 39.906 40a4.487 4.487 0 0 1-4.496-4.494c0-2.421 2.075-4.494 4.494-4.494\\\"/><path fill=\\\"url(#deviconGimpWordmarka)\\\" d=\\\"M11.883 32.363c-1.189.108-2.24.492-3.143 1.116h-.054l-.141.103c-.001 0 0 .003-.002.004c-1.764 1.297-2.781 3.63-2.67 6.738v.002c.11 2.995 1.214 6.613 3.736 9.905c2.412 3.18 5.575 5.373 8.483 6.267c2.874.885 5.335.675 7.197-.723c1.879-1.408 2.775-3.842 2.775-6.828c0-3.025-1.215-6.635-3.628-9.816c-2.408-3.174-5.468-5.375-8.377-6.27h-.006c-1.491-.441-2.9-.613-4.17-.498m.115 1.059c1.103-.098 2.361.05 3.748.46c2.637.812 5.551 2.879 7.838 5.893c2.28 3.007 3.412 6.437 3.412 9.172c0 2.775-.81 4.823-2.348 5.975c-1.549 1.162-3.57 1.38-6.242.557c-2.642-.813-5.665-2.885-7.947-5.893v-.002h-.002c-2.384-3.11-3.416-6.532-3.518-9.297c-.102-2.86.802-4.787 2.233-5.84l.01-.008c.766-.574 1.712-.92 2.816-1.017\\\" opacity=\\\".281\\\"/><path fill=\\\"#fff\\\" d=\\\"M16.648 38.813c0 3.094-2.133 5.547-4.694 5.547S7.26 41.907 7.26 38.813s2.134-5.548 4.694-5.548c2.667 0 4.694 2.454 4.694 5.548m24.75-5.654c0 2.027-1.6 3.627-3.626 3.627s-3.628-1.6-3.628-3.627s1.6-3.628 3.628-3.628s3.627 1.6 3.627 3.628z\\\"/><path fill=\\\"url(#deviconGimpWordmarkb)\\\" d=\\\"M72.124 35.079c0 6.934-5.654 12.588-12.589 12.588c-6.934 0-12.588-5.654-12.588-12.588c0-6.934 5.547-12.589 12.481-12.589c6.935 0 12.696 5.655 12.696 12.589\\\"/><path fill=\\\"#888a85\\\" d=\\\"M59.428 22.135c-7.128 0-12.836 5.82-12.836 12.943c0 7.128 5.816 12.945 12.943 12.945c7.129 0 12.945-5.817 12.945-12.945c0-7.131-5.924-12.943-13.052-12.943m0 .71c6.741 0 12.34 5.496 12.34 12.233c0 6.74-5.491 12.233-12.233 12.233c-6.74 0-12.232-5.492-12.232-12.233c0-6.744 5.384-12.232 12.125-12.232z\\\"/><path fill=\\\"#2e3436\\\" d=\\\"M68.496 37c0 3.306-2.667 6.08-6.08 6.08c-3.308 0-6.082-2.667-6.082-6.08c0-3.415 2.668-6.082 6.081-6.082c3.308 0 6.081 2.667 6.081 6.081z\\\"/><path d=\\\"M62.414 30.385A6.565 6.565 0 0 0 55.801 37c0 3.702 3.02 6.613 6.615 6.613c3.702 0 6.613-3.02 6.613-6.613v-.002c0-3.703-3.02-6.613-6.615-6.613m0 1.066a5.536 5.536 0 0 1 5.549 5.547V37a5.536 5.536 0 0 1-5.547 5.547A5.537 5.537 0 0 1 56.867 37c0-3.137 2.412-5.549 5.547-5.549\\\"/><path fill=\\\"#fff\\\" d=\\\"M64.336 34.119c0 2.347-1.92 4.16-4.16 4.16c-2.241 0-4.161-1.92-4.161-4.16c0-2.347 1.92-4.16 4.16-4.16s4.16 1.92 4.16 4.16z\\\"/><path fill=\\\"url(#deviconGimpWordmark0)\\\" d=\\\"m97.916 72.71l2.45-4.882c-9.114-6.674-25.868-11.502-25.868-11.502c-2.89-1.364-3.833 1.266-1.793 2.97c-.041.013 14.299 10.301 25.211 13.415z\\\"/><path fill=\\\"#673907\\\" d=\\\"M71.202 58.078c.179.543.554 1.077 1.08 1.541v.002l.059.067l.022.019c.004.002.01.01.014.012l.043.034l.128.094c.108.079.267.193.473.339c.413.29 1.016.707 1.773 1.217a141.405 141.405 0 0 0 6.135 3.896c4.963 2.975 11.295 6.343 16.84 7.925l.426.121l.198-.395l2.652-5.286l-.364-.267c-9.266-6.785-26.036-11.584-26.036-11.584l.08.03c-.792-.374-1.498-.5-2.106-.393c-.607.106-1.102.479-1.346.977c-.243.498-.26 1.077-.07 1.651zm1.032-.313c-.117-.355-.1-.668-.002-.87c.099-.202.254-.338.572-.394c.318-.056.814 0 1.466.308l.04.018l.04.012s16.286 4.742 25.324 11.177l-2.025 4.037c-5.277-1.579-11.37-4.792-16.172-7.67a140.462 140.462 0 0 1-6.087-3.866a99.26 99.26 0 0 1-2.214-1.533a6.808 6.808 0 0 1-.11-.082l-.006-.004l-.013-.01c-.442-.37-.695-.768-.813-1.123\\\"/><path fill=\\\"url(#deviconGimpWordmark1)\\\" d=\\\"m109.603 77.224l1.31-2.92l-10.149-6.503l-.793-.083l-.331-1.123c-1.488.936-3.598 4.362-3.033 6.276l1.098-.415l.583.597z\\\"/><path fill=\\\"#888a85\\\" d=\\\"m96.257 73.573l1.31-.494l.424.433l11.895 4.385l.204-.454l1.498-3.34l-10.642-6.82l-.564-.06l-.43-1.455l-.596.374c-.896.564-1.796 1.696-2.473 2.974c-.678 1.278-1.146 2.693-.788 3.906zm.883-1.474c.01-.71.213-1.592.685-2.483a8.315 8.315 0 0 1 1.547-2.044l.189.64l1.022.106l9.655 6.188l-.918 2.044l-10.734-3.956l-.742-.76z\\\"/><path fill=\\\"#fff\\\" d=\\\"M102.512 71.497a.534.534 0 0 0 .279.701l6.734 2.9a.534.534 0 0 0 .7-.28a.534.534 0 0 0-.278-.701l-6.734-2.899a.534.534 0 0 0-.701.28z\\\"/><path fill=\\\"url(#deviconGimpWordmark3)\\\" d=\\\"M124.353 89.517c-3.165-10.735-4.292-19.311-12.568-18.544c-6.692.616-7.136 10.154-.243 12.824c6.635 2.566 12.811 5.72 12.811 5.72\\\"/><path fill=\\\"#fff\\\" d=\\\"M112.275 71.868a2.796 2.796 0 0 1 3.448 1.878a2.796 2.796 0 0 1-1.878 3.448a2.796 2.796 0 0 1-3.448-1.878a2.796 2.796 0 0 1 1.878-3.448\\\" opacity=\\\".528\\\"/><path fill=\\\"#fff\\\" d=\\\"M100.17 67.93a1.851 1.851 0 0 1 2.316 1.262a1.851 1.851 0 0 1-1.261 2.317a1.851 1.851 0 0 1-2.317-1.262a1.851 1.851 0 0 1 1.262-2.316z\\\"/><path fill=\\\"url(#deviconGimpWordmark2)\\\" d=\\\"M120.378 83.091s-1.045-3.852-3.309-5.853c-.798-.714.2-1.777.976-.83c1.62 1.964 2.333 6.683 2.333 6.683\\\" opacity=\\\".428\\\"/><path fill=\\\"url(#deviconGimpWordmarkc)\\\" d=\\\"M61.989 61.216c3.947.427 7.574-.747 8.961-1.28c.214-1.494 1.387-4.267 5.441-4.48l-1.387-2.454s-5.227 3.52-10.775 4.587z\\\"/><path fill=\\\"#1a1a1a\\\" d=\\\"m30.41 88.634l-5.12 29.658l9.601-.214l-.746 2.668l-9.602.426l-.96 6.615l16.75-.534l6.613-38.726zm5.655 22.403l-3.307.107l2.667-15.256l3.2-.106zm12.588-15.895l6.615-.107l-5.014 28.698h-6.295zm4.694 27.95l6.188-34.565l26.03.32l-5.974 34.246l-6.614.106l4.8-26.99l-2.986.106l-4.908 27.418h-6.72l4.8-27.631l-2.987-.214l-4.694 27.311zm35.633-34.03L82.045 128h6.615l.746-4.374l9.815-.213l6.295-34.139zm4.8 27.737l-3.2.107l3.84-21.017l2.988-.106zM50.36 85.327h6.401l-.746 6.4h-6.721z\\\"/>\"\n\t\t},\n\t\t\"git\": {\n\t\t\t\"body\": \"<path fill=\\\"#F34F29\\\" d=\\\"M124.737 58.378L69.621 3.264c-3.172-3.174-8.32-3.174-11.497 0L46.68 14.71l14.518 14.518c3.375-1.139 7.243-.375 9.932 2.314c2.703 2.706 3.461 6.607 2.294 9.993l13.992 13.993c3.385-1.167 7.292-.413 9.994 2.295c3.78 3.777 3.78 9.9 0 13.679a9.673 9.673 0 0 1-13.683 0a9.677 9.677 0 0 1-2.105-10.521L68.574 47.933l-.002 34.341a9.708 9.708 0 0 1 2.559 1.828c3.778 3.777 3.778 9.898 0 13.683c-3.779 3.777-9.904 3.777-13.679 0c-3.778-3.784-3.778-9.905 0-13.683a9.65 9.65 0 0 1 3.167-2.11V47.333a9.581 9.581 0 0 1-3.167-2.111c-2.862-2.86-3.551-7.06-2.083-10.576L41.056 20.333L3.264 58.123a8.133 8.133 0 0 0 0 11.5l55.117 55.114c3.174 3.174 8.32 3.174 11.499 0l54.858-54.858a8.135 8.135 0 0 0-.001-11.501\\\"/>\"\n\t\t},\n\t\t\"git-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#31251C\\\" d=\\\"M76.397 55.676c-2.737 0-4.775 1.344-4.775 4.579c0 2.437 1.343 4.129 4.628 4.129c2.784 0 4.676-1.641 4.676-4.23c0-2.934-1.693-4.478-4.529-4.478m-5.471 22.84c-.648.795-1.294 1.64-1.294 2.637c0 1.989 2.536 2.587 6.021 2.587c2.885 0 6.816-.202 6.816-2.885c0-1.595-1.892-1.693-4.281-1.843zm14.725-22.69c.895 1.145 1.842 2.737 1.842 5.026c0 5.522-4.329 8.756-10.597 8.756c-1.594 0-3.037-.198-3.932-.447l-1.642 2.637l4.875.297c8.608.549 13.682.798 13.682 7.413c0 5.723-5.024 8.955-13.682 8.955c-9.006 0-12.438-2.289-12.438-6.218c0-2.24.996-3.431 2.737-5.076c-1.643-.694-2.189-1.937-2.189-3.281c0-1.095.547-2.09 1.443-3.036c.896-.944 1.891-1.891 3.084-2.985c-2.438-1.194-4.278-3.781-4.278-7.464c0-5.721 3.781-9.65 11.393-9.65c2.14 0 3.435.197 4.578.498h9.703v4.228zm13.332-9.04c-2.837 0-4.479-1.643-4.479-4.48c0-2.833 1.642-4.377 4.479-4.377c2.886 0 4.527 1.543 4.527 4.377c.001 2.837-1.641 4.48-4.527 4.48m-6.42 29.9v-3.929l2.539-.348c.696-.1.795-.249.795-.997V56.785c0-.546-.148-.896-.647-1.044l-2.687-.946l.547-4.028h10.301v20.646c0 .798.048.896.796.997l2.538.348v3.929H92.563zm33.857-1.93c-2.141 1.043-5.274 1.99-8.112 1.99c-5.92 0-8.158-2.386-8.158-8.011V55.7c0-.297 0-.497-.399-.497h-3.482v-4.428c4.38-.499 6.12-2.688 6.667-8.111h4.728v7.067c0 .347 0 .498.398.498h7.015v4.975h-7.413v11.89c0 2.935.697 4.079 3.383 4.079c1.395 0 2.836-.347 4.03-.795z\\\"/><path fill=\\\"#F34F29\\\" d=\\\"M52.7 61.7L29.951 38.952a3.355 3.355 0 0 0-4.744 0l-4.724 4.724l5.991 5.992a3.983 3.983 0 0 1 4.1.956a3.988 3.988 0 0 1 .947 4.125l5.775 5.775a3.988 3.988 0 0 1 4.125 6.593a3.992 3.992 0 0 1-6.516-4.342l-5.386-5.386l-.001 14.174a3.992 3.992 0 0 1 1.056 6.401a3.993 3.993 0 1 1-4.339-6.518V57.141a3.99 3.99 0 0 1-2.167-5.236l-5.906-5.908L2.563 61.595a3.356 3.356 0 0 0 0 4.747L25.312 89.09a3.357 3.357 0 0 0 4.746 0L52.7 66.446a3.355 3.355 0 0 0 0-4.746\\\"/><path fill=\\\"none\\\" d=\\\"M1.58 37.928h124.84v52.143H1.58z\\\"/>\"\n\t\t},\n\t\t\"gitbook\": {\n\t\t\t\"body\": \"<path fill=\\\"#346ddb\\\" fill-rule=\\\"evenodd\\\" d=\\\"M67.008 20.596a10.275 10.275 0 0 0-4.677 1.186L8.385 50.25a11.991 11.991 0 0 0-3.746 3.09A11.982 11.982 0 0 0 2 60.84v3.248a15.437 15.437 0 0 0 .596 4.244a15.382 15.382 0 0 0 2.93 5.56a15.379 15.379 0 0 0 4.983 3.964l33.521 16.76a11.196 11.196 0 0 0 .749 5.999a11.06 11.06 0 0 0 1.665 2.744a11.183 11.183 0 0 0 4.251 3.172a11.03 11.03 0 0 0 4.328.873a11.32 11.32 0 0 0 2.24-.225a11.022 11.022 0 0 0 3.975-1.673a11.166 11.166 0 0 0 4.028-4.891a11.03 11.03 0 0 0 .816-3.191a11.252 11.252 0 0 0-.106-3.052l41.18-21.734a11.185 11.185 0 0 0 2.532 1.839a11.076 11.076 0 0 0 6.331 1.228a11.112 11.112 0 0 0 3.19-.816a11.06 11.06 0 0 0 2.745-1.665a11.186 11.186 0 0 0 3.172-4.251a11.027 11.027 0 0 0 .817-3.191a11.238 11.238 0 0 0-.443-4.443a11.053 11.053 0 0 0-2.039-3.765a11.188 11.188 0 0 0-4.251-3.172a11.032 11.032 0 0 0-4.327-.874a11.29 11.29 0 0 0-2.241.226a11.045 11.045 0 0 0-4.831 2.313a11.186 11.186 0 0 0-3.172 4.251a11.028 11.028 0 0 0-.874 4.327a11.187 11.187 0 0 0 .172 1.957L62.779 88.324a11.193 11.193 0 0 0-2.54-1.856a11.062 11.062 0 0 0-5.217-1.298a11.249 11.249 0 0 0-2.266.231a11.032 11.032 0 0 0-4.013 1.71a11.172 11.172 0 0 0-1.653 1.387L14.048 71.977a9.427 9.427 0 0 1-4.842-5.828a9.402 9.402 0 0 1-.365-2.597a6.414 6.414 0 0 1 .201-1.589a6.093 6.093 0 0 1 1.432-2.613a6.254 6.254 0 0 1 1.745-1.325a6.294 6.294 0 0 1 2.104-.647a6.109 6.109 0 0 1 3.023.403L50.305 74.26a10.269 10.269 0 0 0 9.38-.103l52.493-27.705c.231-.122.433-.27.605-.437a2.496 2.496 0 0 0 .683-1.189a2.616 2.616 0 0 0-.282-1.967a2.493 2.493 0 0 0-.441-.546a2.612 2.612 0 0 0-.615-.425L71.711 21.68a10.271 10.271 0 0 0-4.702-1.082zm47.875 39.774a4.286 4.286 0 0 1 1.664.336a4.268 4.268 0 0 1 1.882 1.55a4.264 4.264 0 0 1 .643 3.252a4.242 4.242 0 0 1-.643 1.529a4.298 4.298 0 0 1-1.882 1.549a4.24 4.24 0 0 1-1.664.336a4.308 4.308 0 0 1-1.664-.336a4.267 4.267 0 0 1-1.882-1.55a4.269 4.269 0 0 1 0-4.78a4.298 4.298 0 0 1 2.684-1.8c.279-.056.567-.086.862-.086M55.024 92.013a4.287 4.287 0 0 1 1.664.336a4.267 4.267 0 0 1 1.882 1.55a4.265 4.265 0 0 1 .394 4.054a4.268 4.268 0 0 1-1.55 1.881a4.266 4.266 0 0 1-5.413-.522a4.297 4.297 0 0 1-.917-1.359a4.239 4.239 0 0 1-.336-1.664a4.286 4.286 0 0 1 .336-1.665a4.267 4.267 0 0 1 .917-1.359a4.299 4.299 0 0 1 1.359-.916a4.244 4.244 0 0 1 1.664-.336\\\"/>\"\n\t\t},\n\t\t\"gitbook-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#346ddb\\\" fill-rule=\\\"evenodd\\\" d=\\\"M21.041 49.951a3.315 3.315 0 0 0-1.514.384L2.067 59.55a3.881 3.881 0 0 0-1.923 2.38a3.87 3.87 0 0 0-.145 1.047v1.051a4.998 4.998 0 0 0 .745 2.62a4.988 4.988 0 0 0 2.01 1.836l10.85 5.426a3.624 3.624 0 0 0 .394 2.256a3.602 3.602 0 0 0 6.6-.646a3.572 3.572 0 0 0 .149-1.383a3.59 3.59 0 0 0-.04-.306l13.329-7.035a3.622 3.622 0 0 0 1.453.856a3.573 3.573 0 0 0 1.416.136a3.591 3.591 0 0 0 3.23-3.58a3.653 3.653 0 0 0-.162-1.07a3.572 3.572 0 0 0-.892-1.474a3.619 3.619 0 0 0-1.474-.892a3.569 3.569 0 0 0-1.438-.143a3.592 3.592 0 0 0-3.216 3.9c.009.106.023.21.041.313l-13.322 7.03a3.62 3.62 0 0 0-1.458-.864a3.572 3.572 0 0 0-1.425-.137a3.589 3.589 0 0 0-2.195 1.058L3.899 66.581a3.052 3.052 0 0 1-1.685-2.727a2.077 2.077 0 0 1 .065-.514a1.972 1.972 0 0 1 .634-1.01a2.043 2.043 0 0 1 1.317-.488a1.959 1.959 0 0 1 .736.145l10.668 5.334a3.324 3.324 0 0 0 3.036-.034l16.991-8.967a.845.845 0 0 0 .335-.322a.824.824 0 0 0 .108-.422a.847.847 0 0 0-.117-.42a.807.807 0 0 0-.342-.313L22.563 50.3a3.325 3.325 0 0 0-1.522-.35zm15.496 12.874a1.387 1.387 0 0 1 1.148.61a1.38 1.38 0 0 1-.374 1.922a1.38 1.38 0 0 1-1.922-.374a1.382 1.382 0 0 1 .61-2.05a1.374 1.374 0 0 1 .538-.108M17.162 73.067a1.387 1.387 0 0 1 1.148.61a1.38 1.38 0 0 1-.374 1.922a1.381 1.381 0 0 1-2.13-.87a1.39 1.39 0 0 1 .817-1.553a1.374 1.374 0 0 1 .539-.109m51.082-14.433a1.463 1.463 0 1 1-2.927 0a1.463 1.463 0 0 1 2.927 0m-2.683 2.439v10.732H68V61.073zm5.853 7.684c0 2.039.92 3.047 3.07 3.047h1.808v-2.082h-1.277c-.855 0-1.162-.33-1.162-1.206v-5.492h2.44v-1.951h-2.44v-3.415h-2.439v3.415h-1.95v1.95h1.95zm6.83-12.562v15.61h5.832c3.705 0 5.657-1.894 5.657-4.503c0-2.236-1.28-3.073-3.318-3.424c1.82-.395 2.77-1.698 2.77-3.561c0-2.521-1.93-4.122-5.307-4.122zm2.521 2.105h3.18c1.753 0 2.718.964 2.718 2.324c0 1.38-.987 2.4-2.719 2.4h-3.179zm0 6.676h3.333c1.95 0 3.048.682 3.048 2.195c0 1.556-1.031 2.507-3.048 2.507h-3.333zm16.259 6.829c3.498 0 5.854-2.346 5.854-5.854c0-3.485-2.356-5.853-5.854-5.853s-5.854 2.368-5.854 5.853c0 3.508 2.356 5.854 5.854 5.854m0-2.055c-2.04 0-3.364-1.587-3.364-3.799c0-2.212 1.323-3.798 3.364-3.798c2.04 0 3.387 1.586 3.387 3.798c0 2.212-1.346 3.799-3.387 3.799m13.176 2.055c3.498 0 5.854-2.346 5.854-5.854c0-3.485-2.356-5.853-5.854-5.853c-3.5 0-5.854 2.368-5.854 5.853c0 3.508 2.355 5.854 5.854 5.854m0-2.055c-2.04 0-3.364-1.587-3.364-3.799c0-2.212 1.323-3.798 3.364-3.798s3.387 1.586 3.387 3.798c0 2.212-1.346 3.799-3.387 3.799m11.55-3.053l-1.873 2.105v3.003h-2.368v-15.61h2.368v9.735l5.38-5.832h2.74l-4.559 4.867l4.559 6.84h-2.806zm-65.03 5.108c-4.297 0-7.257-3.135-7.257-7.805s2.894-7.805 7.455-7.805c3.376 0 5.782 1.902 6.463 4.878h-2.554c-.61-1.669-2.026-2.663-3.975-2.663c-2.916 0-4.802 2.302-4.802 5.59c0 3.289 1.842 5.59 4.78 5.59c2.367 0 4.275-1.337 4.407-3.814v-.8H56.78v-1.952h6.83v8.781h-1.87l-.263-2.324c-.746 1.096-2.325 2.324-4.758 2.324z\\\"/>\"\n\t\t},\n\t\t\"github\": {\n\t\t\t\"body\": \"<g fill=\\\"#181616\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M64 5.103c-33.347 0-60.388 27.035-60.388 60.388c0 26.682 17.303 49.317 41.297 57.303c3.017.56 4.125-1.31 4.125-2.905c0-1.44-.056-6.197-.082-11.243c-16.8 3.653-20.345-7.125-20.345-7.125c-2.747-6.98-6.705-8.836-6.705-8.836c-5.48-3.748.413-3.67.413-3.67c6.063.425 9.257 6.223 9.257 6.223c5.386 9.23 14.127 6.562 17.573 5.02c.542-3.903 2.107-6.568 3.834-8.076c-13.413-1.525-27.514-6.704-27.514-29.843c0-6.593 2.36-11.98 6.223-16.21c-.628-1.52-2.695-7.662.584-15.98c0 0 5.07-1.623 16.61 6.19C53.7 35 58.867 34.327 64 34.304c5.13.023 10.3.694 15.127 2.033c11.526-7.813 16.59-6.19 16.59-6.19c3.287 8.317 1.22 14.46.593 15.98c3.872 4.23 6.215 9.617 6.215 16.21c0 23.194-14.127 28.3-27.574 29.796c2.167 1.874 4.097 5.55 4.097 11.183c0 8.08-.07 14.583-.07 16.572c0 1.607 1.088 3.49 4.148 2.897c23.98-7.994 41.263-30.622 41.263-57.294C124.388 32.14 97.35 5.104 64 5.104z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M26.484 91.806c-.133.3-.605.39-1.035.185c-.44-.196-.685-.605-.543-.906c.13-.31.603-.395 1.04-.188c.44.197.69.61.537.91zm2.446 2.729c-.287.267-.85.143-1.232-.28c-.396-.42-.47-.983-.177-1.254c.298-.266.844-.14 1.24.28c.394.426.472.984.17 1.255zm2.382 3.477c-.37.258-.976.017-1.35-.52c-.37-.538-.37-1.183.01-1.44c.373-.258.97-.025 1.35.507c.368.545.368 1.19-.01 1.452zm3.261 3.361c-.33.365-1.036.267-1.552-.23c-.527-.487-.674-1.18-.343-1.544c.336-.366 1.045-.264 1.564.23c.527.486.686 1.18.333 1.543zm4.5 1.951c-.147.473-.825.688-1.51.486c-.683-.207-1.13-.76-.99-1.238c.14-.477.823-.7 1.512-.485c.683.206 1.13.756.988 1.237m4.943.361c.017.498-.563.91-1.28.92c-.723.017-1.308-.387-1.315-.877c0-.503.568-.91 1.29-.924c.717-.013 1.306.387 1.306.88zm4.598-.782c.086.485-.413.984-1.126 1.117c-.7.13-1.35-.172-1.44-.653c-.086-.498.422-.997 1.122-1.126c.714-.123 1.354.17 1.444.663zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"github-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#181616\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M64 1.512c-23.493 0-42.545 19.047-42.545 42.545c0 18.797 12.19 34.745 29.095 40.37c2.126.394 2.907-.923 2.907-2.047c0-1.014-.04-4.366-.058-7.92c-11.837 2.573-14.334-5.02-14.334-5.02c-1.935-4.918-4.724-6.226-4.724-6.226c-3.86-2.64.29-2.586.29-2.586c4.273.3 6.523 4.385 6.523 4.385c3.794 6.504 9.953 4.623 12.38 3.536c.383-2.75 1.485-4.628 2.702-5.69c-9.45-1.075-19.384-4.724-19.384-21.026c0-4.645 1.662-8.44 4.384-11.42c-.442-1.072-1.898-5.4.412-11.26c0 0 3.572-1.142 11.7 4.363c3.395-.943 7.035-1.416 10.65-1.432c3.616.017 7.258.49 10.658 1.432c8.12-5.504 11.688-4.362 11.688-4.362c2.316 5.86.86 10.187.418 11.26c2.728 2.978 4.378 6.774 4.378 11.42c0 16.34-9.953 19.938-19.427 20.99c1.526 1.32 2.886 3.91 2.886 7.88c0 5.692-.048 10.273-.048 11.674c0 1.13.766 2.458 2.922 2.04c16.896-5.632 29.07-21.574 29.07-40.365C106.545 20.56 87.497 1.512 64 1.512\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M37.57 62.596c-.095.212-.428.275-.73.13c-.31-.14-.482-.427-.382-.64c.09-.216.424-.277.733-.132c.31.14.486.43.38.642zm1.723 1.924c-.203.187-.6.1-.87-.198c-.278-.297-.33-.694-.124-.884c.208-.188.593-.1.87.197c.28.3.335.693.123.884zm1.677 2.448c-.26.182-.687.012-.95-.367c-.262-.377-.262-.83.005-1.013c.264-.182.684-.018.95.357c.262.385.262.84-.005 1.024zm2.298 2.368c-.233.257-.73.188-1.093-.163c-.372-.343-.475-.83-.242-1.087c.237-.257.736-.185 1.102.163c.37.342.482.83.233 1.086zm3.172 1.374c-.104.334-.582.485-1.064.344c-.482-.146-.796-.536-.7-.872c.1-.336.582-.493 1.067-.342c.48.144.795.53.696.87zm3.48.255c.013.35-.396.642-.902.648c-.508.012-.92-.272-.926-.618c0-.354.4-.642.908-.65c.506-.01.92.272.92.62m3.24-.551c.06.342-.29.694-.793.787c-.494.092-.95-.12-1.014-.46c-.06-.35.297-.7.79-.792c.503-.088.953.118 1.017.466zm0 0\\\"/></g><path fill=\\\"#100E0F\\\" d=\\\"M24.855 108.302h-10.7a.5.5 0 0 0-.5.5v5.232a.5.5 0 0 0 .5.5h4.173v6.5s-.937.32-3.53.32c-3.056 0-7.327-1.116-7.327-10.508c0-9.393 4.448-10.63 8.624-10.63c3.614 0 5.17.636 6.162.943c.31.094.6-.216.6-.492l1.193-5.055a.468.468 0 0 0-.192-.39c-.403-.288-2.857-1.66-9.058-1.66c-7.144 0-14.472 3.038-14.472 17.65c0 14.61 8.39 16.787 15.46 16.787c5.854 0 9.405-2.502 9.405-2.502c.146-.08.162-.285.162-.38v-16.316a.5.5 0 0 0-.5-.5zM79.506 94.81H73.48a.5.5 0 0 0-.498.503l.002 11.644h-9.392V95.313a.5.5 0 0 0-.497-.503H57.07a.5.5 0 0 0-.498.503v31.53c0 .277.224.503.498.503h6.025a.5.5 0 0 0 .497-.504v-13.486h9.392l-.016 13.486c0 .278.224.504.5.504h6.038a.5.5 0 0 0 .497-.504v-31.53a.497.497 0 0 0-.497-.502m-47.166.717c-2.144 0-3.884 1.753-3.884 3.923c0 2.167 1.74 3.925 3.884 3.925c2.146 0 3.885-1.758 3.885-3.925c0-2.17-1.74-3.923-3.885-3.923m2.956 9.608H29.29c-.276 0-.522.284-.522.56v20.852c0 .613.382.795.876.795h5.41c.595 0 .74-.292.74-.805v-20.899a.5.5 0 0 0-.498-.502zm67.606.047h-5.98a.5.5 0 0 0-.496.504v15.46s-1.52 1.11-3.675 1.11s-2.727-.977-2.727-3.088v-13.482a.5.5 0 0 0-.497-.504h-6.068a.502.502 0 0 0-.498.504v14.502c0 6.27 3.495 7.804 8.302 7.804c3.944 0 7.124-2.18 7.124-2.18s.15 1.15.22 1.285c.07.136.247.273.44.273l3.86-.017a.502.502 0 0 0 .5-.504l-.003-21.166a.504.504 0 0 0-.5-.502zm16.342-.708c-3.396 0-5.706 1.515-5.706 1.515V95.312a.5.5 0 0 0-.497-.503H107a.5.5 0 0 0-.5.503v31.53a.5.5 0 0 0 .5.503h4.192c.19 0 .332-.097.437-.268c.103-.17.254-1.454.254-1.454s2.47 2.34 7.148 2.34c5.49 0 8.64-2.784 8.64-12.502s-5.03-10.988-8.428-10.988zm-2.36 17.764c-2.073-.063-3.48-1.004-3.48-1.004v-9.985s1.388-.85 3.09-1.004c2.153-.193 4.228.458 4.228 5.594c0 5.417-.935 6.486-3.837 6.398zm-63.689-.118c-.263 0-.937.107-1.63.107c-2.22 0-2.973-1.032-2.973-2.368v-8.866h4.52a.5.5 0 0 0 .5-.504v-4.856a.5.5 0 0 0-.5-.502h-4.52l-.007-5.97c0-.227-.116-.34-.378-.34h-6.16c-.238 0-.367.106-.367.335v6.17s-3.087.745-3.295.805a.5.5 0 0 0-.36.48v3.877a.5.5 0 0 0 .497.503h3.158v9.328c0 6.93 4.86 7.61 8.14 7.61c1.497 0 3.29-.48 3.586-.59c.18-.067.283-.252.283-.453l.004-4.265a.51.51 0 0 0-.5-.502z\\\"/>\"\n\t\t},\n\t\t\"githubactions\": {\n\t\t\t\"body\": \"<path fill=\\\"#2088ff\\\" d=\\\"M26.666 0C11.97 0 0 11.97 0 26.666c0 12.87 9.181 23.651 21.334 26.13v37.87c0 11.77 9.68 21.334 21.332 21.334h.195c1.302 9.023 9.1 16 18.473 16C71.612 128 80 119.612 80 109.334s-8.388-18.668-18.666-18.668c-9.372 0-17.17 6.977-18.473 16h-.195c-8.737 0-16-7.152-16-16V63.779a18.514 18.514 0 0 0 13.24 5.555h2.955c1.303 9.023 9.1 16 18.473 16c9.372 0 17.169-6.977 18.47-16h11.057c1.303 9.023 9.1 16 18.473 16c10.278 0 18.666-8.39 18.666-18.668C128 56.388 119.612 48 109.334 48c-9.373 0-17.171 6.977-18.473 16H79.805c-1.301-9.023-9.098-16-18.471-16s-17.171 6.977-18.473 16h-2.955c-6.433 0-11.793-4.589-12.988-10.672c14.58-.136 26.416-12.05 26.416-26.662C53.334 11.97 41.362 0 26.666 0m0 5.334A21.292 21.292 0 0 1 48 26.666A21.294 21.294 0 0 1 26.666 48A21.292 21.292 0 0 1 5.334 26.666A21.29 21.29 0 0 1 26.666 5.334m-5.215 7.541C18.67 12.889 16 15.123 16 18.166v17.043c0 4.043 4.709 6.663 8.145 4.533l13.634-8.455c3.257-2.02 3.274-7.002.032-9.045l-13.635-8.59a5.024 5.024 0 0 0-2.725-.777m-.117 5.291l13.635 8.588l-13.635 8.455zm40 35.168a13.29 13.29 0 0 1 13.332 13.332A13.293 13.293 0 0 1 61.334 80A13.294 13.294 0 0 1 48 66.666a13.293 13.293 0 0 1 13.334-13.332m48 0a13.29 13.29 0 0 1 13.332 13.332A13.293 13.293 0 0 1 109.334 80A13.294 13.294 0 0 1 96 66.666a13.293 13.293 0 0 1 13.334-13.332m-42.568 6.951a2.667 2.667 0 0 0-1.887.78l-6.3 6.294l-2.093-2.084a2.667 2.667 0 0 0-3.771.006a2.667 2.667 0 0 0 .008 3.772l3.974 3.96a2.667 2.667 0 0 0 3.766-.001l8.185-8.174a2.667 2.667 0 0 0 .002-3.772a2.667 2.667 0 0 0-1.884-.78zm48 0a2.667 2.667 0 0 0-1.887.78l-6.3 6.294l-2.093-2.084a2.667 2.667 0 0 0-3.771.006a2.667 2.667 0 0 0 .008 3.772l3.974 3.96a2.667 2.667 0 0 0 3.766-.001l8.185-8.174a2.667 2.667 0 0 0 .002-3.772a2.667 2.667 0 0 0-1.884-.78zM61.334 96a13.293 13.293 0 0 1 13.332 13.334a13.29 13.29 0 0 1-13.332 13.332A13.293 13.293 0 0 1 48 109.334A13.294 13.294 0 0 1 61.334 96M56 105.334c-2.193 0-4 1.807-4 4c0 2.195 1.808 4 4 4s4-1.805 4-4c0-2.193-1.807-4-4-4m10.666 0c-2.193 0-4 1.807-4 4c0 2.195 1.808 4 4 4s4-1.805 4-4c0-2.193-1.807-4-4-4M56 108c.75 0 1.334.585 1.334 1.334c0 .753-.583 1.332-1.334 1.332c-.75 0-1.334-.58-1.334-1.332c0-.75.585-1.334 1.334-1.334m10.666 0c.75 0 1.334.585 1.334 1.334c0 .753-.583 1.332-1.334 1.332c-.75 0-1.332-.58-1.332-1.332c0-.75.583-1.334 1.332-1.334\\\"/><path fill=\\\"#79b8ff\\\" d=\\\"M109.334 90.666c-9.383 0-17.188 6.993-18.477 16.031a2.667 2.667 0 0 0-.265-.011l-2.7.09a2.667 2.667 0 0 0-2.578 2.751a2.667 2.667 0 0 0 2.752 2.578l2.7-.087a2.667 2.667 0 0 0 .097-.006C92.17 121.029 99.965 128 109.334 128c10.278 0 18.666-8.388 18.666-18.666s-8.388-18.668-18.666-18.668m0 5.334a13.293 13.293 0 0 1 13.332 13.334a13.29 13.29 0 0 1-13.332 13.332A13.293 13.293 0 0 1 96 109.334A13.294 13.294 0 0 1 109.334 96\\\"/>\"\n\t\t},\n\t\t\"githubcodespaces\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconGithubcodespaces0\\\" x1=\\\"11.622\\\" x2=\\\"11.622\\\" y1=\\\"7.023\\\" y2=\\\"13.825\\\" gradientTransform=\\\"translate(.5 .592)scale(7.9375)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0196CA\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0065A9\\\"/></linearGradient><linearGradient id=\\\"deviconGithubcodespaces1\\\" x1=\\\"11.622\\\" x2=\\\"11.622\\\" y1=\\\"8.675\\\" y2=\\\"15.977\\\" gradientTransform=\\\"translate(.5 .592)scale(7.9375)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#01A7DE\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#007ACC\\\"/></linearGradient><linearGradient id=\\\"deviconGithubcodespaces2\\\" x1=\\\"14.594\\\" x2=\\\"14.594\\\" y1=\\\"7.023\\\" y2=\\\"15.977\\\" gradientTransform=\\\"translate(.5 .592)scale(7.9375)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#2EC2F6\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1F9CF0\\\"/></linearGradient></defs><path fill=\\\"#24292e\\\" d=\\\"M.5 64.092C.5 29.008 28.916.592 64 .592c29.601 0 54.457 20.23 61.501 47.625h-24.065a25.436 25.436 0 0 0-3.305-4.524c.635-1.588 2.857-8.097-.635-16.828c0 0-5.318-1.747-17.462 6.508c-5.08-1.428-10.478-2.143-15.875-2.143s-10.795.715-15.875 2.143c-12.144-8.175-17.462-6.508-17.462-6.508c-3.493 8.73-1.27 15.24-.635 16.828c-4.048 4.445-6.509 10.16-6.509 17.066c0 17.057 7.281 24.836 16.51 28.507v12.959c-3.492-.284-7.264-1.992-10.16-6.858c-1.19-1.905-4.762-6.588-9.763-6.51c-5.318.08-2.143 3.017.08 4.208c2.698 1.508 5.794 7.143 6.508 8.97c1.024 2.878 3.903 7.87 13.335 8.162v12.767C16.906 113.541.501 90.788.501 64.093z\\\"/><path fill=\\\"url(#deviconGithubcodespaces0)\\\" d=\\\"m124.97 63.867l-14.719-7.087a4.45 4.45 0 0 0-5.077.863l-46.2 39.965a2.977 2.977 0 0 0 .003 4.402l7.904 7.547a2.977 2.977 0 0 0 3.801.169l40.941-31.744l9.647-10.638c.988-1.09 2.1-2.382 3.563-2.23c1.412.148 2.665 1.31 2.665 2.946v-.17a4.465 4.465 0 0 0-2.528-4.023\\\"/><path fill=\\\"url(#deviconGithubcodespaces1)\\\" d=\\\"m124.97 119.88l-14.719 7.087a4.449 4.449 0 0 1-5.077-.863l-46.2-43.933a2.977 2.977 0 0 1 .003-4.403l7.904-7.546a2.977 2.977 0 0 1 3.801-.17l40.941 35.713l9.647 10.639c.988 1.09 2.1 2.382 3.563 2.23c1.413-.149 2.665-1.311 2.665-2.947v.171a4.465 4.465 0 0 1-2.528 4.023z\\\"/><path fill=\\\"url(#deviconGithubcodespaces2)\\\" d=\\\"M110.25 126.97a4.451 4.451 0 0 1-5.078-.864c1.648 1.647 6.45.48 6.45-1.85V59.494c0-2.33-4.802-3.497-6.45-1.85a4.452 4.452 0 0 1 5.078-.863l14.717 5.093a4.465 4.465 0 0 1 2.53 4.023v51.956c0 1.716-.984 3.28-2.53 4.024z\\\"/>\"\n\t\t},\n\t\t\"gitlab\": {\n\t\t\t\"body\": \"<path fill=\\\"#E24329\\\" d=\\\"m124.755 51.382l-.177-.452L107.47 6.282a4.459 4.459 0 0 0-1.761-2.121a4.581 4.581 0 0 0-5.236.281a4.578 4.578 0 0 0-1.518 2.304L87.404 42.088H40.629L29.077 6.746a4.492 4.492 0 0 0-1.518-2.31a4.581 4.581 0 0 0-5.236-.281a4.502 4.502 0 0 0-1.761 2.121L3.422 50.904l-.17.452c-5.059 13.219-.763 28.192 10.537 36.716l.059.046l.157.111l26.061 19.516l12.893 9.758l7.854 5.93a5.283 5.283 0 0 0 6.388 0l7.854-5.93l12.893-9.758l26.218-19.634l.065-.052c11.273-8.526 15.562-23.472 10.524-36.677\\\"/><path fill=\\\"#FC6D26\\\" d=\\\"m124.755 51.382l-.177-.452a57.79 57.79 0 0 0-23.005 10.341L64 89.682c12.795 9.68 23.934 18.09 23.934 18.09l26.218-19.634l.065-.052c11.291-8.527 15.586-23.488 10.538-36.704\\\"/><path fill=\\\"#FCA326\\\" d=\\\"m40.066 107.771l12.893 9.758l7.854 5.93a5.283 5.283 0 0 0 6.388 0l7.854-5.93l12.893-9.758s-11.152-8.436-23.947-18.09a18379.202 18379.202 0 0 0-23.935 18.09\\\"/><path fill=\\\"#FC6D26\\\" d=\\\"M26.42 61.271A57.73 57.73 0 0 0 3.422 50.904l-.17.452c-5.059 13.219-.763 28.192 10.537 36.716l.059.046l.157.111l26.061 19.516L64 89.655z\\\"/>\"\n\t\t},\n\t\t\"gitlab-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#E24329\\\" d=\\\"m108.405 36.409l-.129-.33L95.774 3.451a3.26 3.26 0 0 0-1.287-1.55a3.348 3.348 0 0 0-3.826.206a3.35 3.35 0 0 0-1.11 1.684L81.11 29.617H46.927L38.486 3.79a3.277 3.277 0 0 0-1.11-1.688a3.348 3.348 0 0 0-3.826-.206c-.58.369-1.03.911-1.287 1.55L19.737 36.06l-.124.33a23.216 23.216 0 0 0 7.7 26.831l.043.033l.115.081l19.045 14.262l9.422 7.131l5.739 4.333a3.858 3.858 0 0 0 4.668 0l5.739-4.333l9.422-7.131l19.16-14.348l.048-.038a23.224 23.224 0 0 0 7.691-26.802\\\"/><path fill=\\\"#FC6D26\\\" d=\\\"m108.405 36.409l-.129-.33a42.223 42.223 0 0 0-16.811 7.557L64.007 64.398c9.35 7.074 17.491 13.22 17.491 13.22l19.16-14.348l.048-.038a23.23 23.23 0 0 0 7.699-26.823\\\"/><path fill=\\\"#FCA326\\\" d=\\\"m46.516 77.617l9.422 7.131l5.739 4.333a3.858 3.858 0 0 0 4.668 0l5.739-4.333l9.422-7.131s-8.15-6.165-17.5-13.22c-9.35 7.055-17.49 13.22-17.49 13.22\\\"/><path fill=\\\"#FC6D26\\\" d=\\\"M36.544 43.636a42.17 42.17 0 0 0-16.807-7.576l-.124.33a23.216 23.216 0 0 0 7.7 26.831l.043.033l.115.081l19.045 14.262l17.491-13.22z\\\"/><path fill=\\\"#171321\\\" d=\\\"M22.366 105.736h5.785C27.186 99.585 21.86 95.3 14.929 95.3C6.728 95.3.574 101.329.574 111.427c0 9.918 5.877 16.069 14.522 16.069c7.759 0 13.313-4.991 13.313-13.069v-3.764H15.694v4.437h7.223c-.091 4.47-3.076 7.299-7.789 7.299c-5.247 0-8.843-3.931-8.843-11.033c0-7.055 3.657-10.972 8.721-10.972c3.779.001 6.365 2.02 7.36 5.342m9.87 21.331h5.539v-23.492h-5.539zm2.793-27.225c1.76 0 3.198-1.349 3.198-2.999c0-1.651-1.437-3.015-3.198-3.015c-1.76 0-3.213 1.346-3.213 3.015s1.427 2.999 3.203 2.999zm19.333 3.733h-4.638v-5.643h-5.539v5.643H40.85v4.285h3.335v13.069c-.03 4.422 3.185 6.603 7.345 6.474a11.262 11.262 0 0 0 3.261-.551l-.935-4.333a6.758 6.758 0 0 1-1.62.216c-1.394 0-2.512-.49-2.512-2.725v-12.163h4.638zm4.287 23.492h19.48v-4.759H64.328V95.727h-5.679zm30.09.475c3.688 0 5.89-1.73 6.9-3.703h.183v3.228h5.333v-15.731c0-6.212-5.064-8.079-9.549-8.079c-4.942 0-8.737 2.202-9.961 6.486l5.173.737c.549-1.608 2.111-2.984 4.825-2.984c2.573 0 3.98 1.316 3.98 3.627v.091c0 1.59-1.669 1.669-5.816 2.111c-4.559.49-8.92 1.851-8.92 7.147c-.013 4.622 3.367 7.07 7.852 7.07m1.821-4.063c-2.311 0-3.965-1.057-3.965-3.091c0-2.128 1.851-3.015 4.318-3.368c1.455-.198 4.363-.566 5.079-1.145v2.768c.015 2.608-2.098 4.828-5.432 4.828zm14.675 3.588h5.448v-3.703h.32c.874 1.714 2.695 4.117 6.735 4.117c5.539 0 9.687-4.394 9.687-12.135c0-7.835-4.269-12.089-9.702-12.089c-4.147 0-5.877 2.494-6.72 4.193h-.234V95.727h-5.534zm5.432-11.751c0-4.572 1.958-7.515 5.524-7.515c3.688 0 5.587 3.137 5.587 7.515s-1.928 7.619-5.587 7.619c-3.535 0-5.524-3.06-5.524-7.619\\\"/>\"\n\t\t},\n\t\t\"gitpod\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconGitpod0\\\" x1=\\\"60.966\\\" x2=\\\"19.202\\\" y1=\\\"13.48\\\" y2=\\\"78.93\\\" gradientTransform=\\\"matrix(1.58024 0 0 1.42222 0 .61)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffb45b\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff8a00\\\"/></linearGradient></defs><path fill=\\\"url(#deviconGitpod0)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M76.047 6.922c3.8 6.008 1.488 13.66-5.164 17.094L29.52 45.356c-1.098.566-1.77 1.613-1.77 2.75v33.507c0 1.137.672 2.188 1.77 2.75l32.726 16.887a3.857 3.857 0 0 0 3.508 0L98.48 84.363c1.098-.562 1.77-1.613 1.77-2.75V60.777L70.816 75.77c-6.671 3.398-15.132 1.27-18.898-4.754c-3.766-6.024-1.41-13.664 5.266-17.067l42.113-21.453C112.129 25.961 128 34.328 128 47.63v36.527c0 8.555-5.078 16.453-13.305 20.7L77.102 124.25c-8.118 4.188-18.086 4.188-26.204 0l-37.593-19.395C5.078 100.61 0 92.711 0 84.156v-38.59c0-8.554 5.078-16.457 13.305-20.699L57.117 2.262c6.653-3.43 15.125-1.344 18.93 4.66m0 0\\\"/>\"\n\t\t},\n\t\t\"gitpod-wordmark\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconGitpodWordmark0\\\"><path d=\\\"M106 88h21.531v31H106Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconGitpodWordmark1\\\"><path d=\\\"M26.59 0h73.176v72.637H26.59Zm0 0\\\"/></clipPath><linearGradient id=\\\"deviconGitpodWordmark2\\\" x1=\\\"209.315\\\" x2=\\\"65.928\\\" y1=\\\"46.282\\\" y2=\\\"270.993\\\" gradientTransform=\\\"matrix(.26228 0 0 .23432 26.588 .345)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffb45b\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff8a00\\\"/></linearGradient></defs><path fill=\\\"#12100c\\\" d=\\\"M15.266 117.91c-8.758 0-15.02-6.387-15.02-14.805s6.305-14.804 14.89-14.804c4.231 0 7.532 1.648 10.278 4.058l-1.734 3.598c-2.114-2.117-4.82-3.852-8.711-3.852c-6.348 0-10.914 4.446-10.914 11c0 6.555 4.527 10.997 10.957 10.997c5.539 0 9.472-3.34 10.11-8.415H13.823v-3.808h15.61v.168c0 9.308-5.247 15.863-14.168 15.863Zm18.14-21.148h3.637v21.148h-3.637Zm20.867 20.851v-3.215c-1.144.211-2.074.34-3.425.34c-1.778 0-2.414-.93-2.414-2.539V99.934h5.796v-3.172h-5.796v-5.668h-3.637v5.668h-4.188v3.172h4.188v12.054c0 4.485 1.988 6.133 5.84 6.133c1.351 0 2.535-.21 3.636-.508m0 0\\\"/><path fill=\\\"#12100c\\\" fill-rule=\\\"evenodd\\\" d=\\\"M61.688 126.371h-3.641v-29.61h3.64v3.044c1.735-2.325 4.313-3.551 7.446-3.551c6.004 0 10.191 4.566 10.191 11.082c0 6.512-4.187 11.082-10.191 11.082c-3.004 0-5.457-1.184-7.445-3.598Zm-.254-19.035c0 4.695 2.789 7.7 7.062 7.7c4.274 0 7.067-3.048 7.067-7.7s-2.793-7.7-7.067-7.7c-4.273 0-7.062 3.005-7.062 7.7m20.156 0c0 6.344 4.738 11.082 11.082 11.082c6.348 0 11.082-4.738 11.082-11.082c0-6.348-4.734-11.082-11.082-11.082c-6.344 0-11.082 4.734-11.082 11.082m18.402 0c0 4.398-2.922 7.57-7.32 7.57c-4.399 0-7.317-3.172-7.317-7.57s2.918-7.574 7.317-7.574c4.398 0 7.32 3.175 7.32 7.574m0 0\\\"/><g clip-path=\\\"url(#deviconGitpodWordmark0)\\\"><path fill=\\\"#12100c\\\" fill-rule=\\\"evenodd\\\" d=\\\"M123.676 88.3h3.64v29.61h-3.64v-3.047c-1.735 2.328-4.313 3.555-7.442 3.555c-6.007 0-10.195-4.57-10.195-11.082c0-6.516 4.188-11.082 10.195-11.082c3 0 5.454 1.183 7.442 3.594Zm.254 19.036c0-4.695-2.79-7.7-7.063-7.7s-7.062 3.048-7.062 7.7s2.789 7.7 7.062 7.7c4.274 0 7.063-3.005 7.063-7.7m0 0\\\"/></g><path fill=\\\"#12100c\\\" d=\\\"M35.23 93.98a2.6 2.6 0 0 0 2.606-2.593a2.602 2.602 0 0 0-2.606-2.594a2.599 2.599 0 0 0-2.601 2.594a2.597 2.597 0 0 0 2.601 2.593m0 0\\\"/><g clip-path=\\\"url(#deviconGitpodWordmark1)\\\"><path fill=\\\"url(#deviconGitpodWordmark2)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M69.922 3.918c2.168 3.394.851 7.723-2.942 9.664L43.41 25.656c-.625.317-1.008.91-1.008 1.555v18.953c0 .645.383 1.238 1.008 1.559l18.649 9.55a2.226 2.226 0 0 0 2 0l18.648-9.55c.625-.32 1.012-.914 1.012-1.559V34.38l-16.774 8.48c-3.804 1.922-8.625.72-10.773-2.687c-2.145-3.41-.8-7.73 3-9.656l24-12.133c7.312-3.7 16.36 1.035 16.36 8.558v20.66c0 4.84-2.895 9.31-7.583 11.712L70.523 70.28c-4.625 2.371-10.304 2.371-14.93 0l-21.42-10.968c-4.692-2.402-7.582-6.87-7.582-11.71V25.773c0-4.84 2.89-9.308 7.582-11.707L59.137 1.281C62.926-.66 67.757.52 69.922 3.918m0 0\\\"/></g>\"\n\t\t},\n\t\t\"go\": {\n\t\t\t\"body\": \"<defs><path id=\\\"deviconGo0\\\" d=\\\"M18.8 1h90.5v126H18.8z\\\"/></defs><clipPath id=\\\"deviconGo1\\\"><use href=\\\"#deviconGo0\\\"/></clipPath><path fill=\\\"#F6D2A2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M21.1 68.7c.2 3.5 3.7 1.9 5.3.8c1.5-1.1 2-.2 2.1-2.3c.1-1.4.2-2.7.2-4.1c-2.3-.2-4.8.3-6.7 1.7c-.9.7-2.8 3-.9 3.9\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M23 71.2c-.7 0-2-.3-2.2-2.3c-.6-.4-.8-.9-.8-1.2c-.1-1.2 1.2-2.6 1.9-3.1c1.6-1.2 3.7-1.8 5.9-1.8h1.3v.3c.1 1.1 0 2.2-.1 3.2c0 .3 0 .6-.1.9c-.1 1.5-.4 1.7-1.1 2c-.3.1-.6.2-1.1.6c-.5.3-2.2 1.4-3.7 1.4m4.8-7.8c-2.1 0-4 .6-5.5 1.7c-.7.5-1.7 1.7-1.6 2.5c0 .3.2.6.6.8l.2.1v.2c.1 1.6.9 1.8 1.5 1.8c1 0 2.4-.7 3.3-1.3c.6-.4 1-.5 1.3-.6c.5-.2.6-.2.7-1.4c0-.3 0-.6.1-.9c.1-.9.1-1.9.1-2.8c-.3-.1-.5-.1-.7-.1\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#C6B198\\\" fill-rule=\\\"evenodd\\\" d=\\\"M21.1 68.7c.5-.2 1.1-.3 1.4-.8\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M21.1 69c-.1 0-.3-.1-.3-.2c-.1-.2 0-.4.2-.4c.1 0 .2-.1.2-.1c.4-.2.8-.3 1-.6c.1-.1.3-.2.5-.1c.1.1.2.3.1.5c-.4.5-.9.7-1.3.8l-.2.1z\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#6AD7E5\\\" fill-rule=\\\"evenodd\\\" d=\\\"M29.3 26.4c-13.6-3.8-3.5-21.1 7.4-14z\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"m29.5 26.8l-.3-.1c-7-2-6.9-7-6.7-8.5c.5-3.8 4.1-7.8 8.9-7.8c1.9 0 3.7.6 5.5 1.8l.3.2zm1.9-15.7c-4.5 0-7.8 3.7-8.3 7.2c-.5 3.6 1.7 6.4 6 7.7l7.1-13.5c-1.5-.9-3.1-1.4-4.8-1.4\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#6AD7E5\\\" fill-rule=\\\"evenodd\\\" d=\\\"M89.6 11.1c10.7-7.5 20.5 9.5 8 13.8z\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M97.5 25.3L89.2 11l.3-.2c1.9-1.3 3.8-2 5.7-2c4.6 0 7.9 3.8 8.6 7.5c.3 1.5.6 6.6-6 8.8zm-7.4-14l7.7 13.3c3.9-1.4 5.9-4.4 5.3-8c-.6-3.4-3.7-6.9-7.9-6.9c-1.7-.1-3.4.4-5.1 1.6\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#F6D2A2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M92 112.3c2.7 1.7 7.7 6.8 3.6 9.3c-3.9 3.6-6.1-4-9.6-5c1.5-2 3.4-3.9 6-4.3\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M93.5 122.9c-1.6 0-3-1.6-4.2-3.1c-1.1-1.2-2.2-2.5-3.4-2.9l-.5-.1l.3-.4c1.2-1.7 3.2-3.9 6.2-4.4h.1l.1.1c1.7 1.1 5.4 4.2 5.3 7.1c0 1.1-.6 2-1.7 2.7c-.7.7-1.4 1-2.2 1m-7-6.5c1.2.5 2.2 1.8 3.2 2.9c1.2 1.5 2.4 2.8 3.7 2.8c.6 0 1.2-.3 1.8-.9h.1c.9-.6 1.4-1.3 1.4-2.2c0-2.3-2.9-5.2-4.9-6.5c-1.8.5-3.6 1.7-5.3 3.9m9.1 5.5c-.1 0-.2-.1-.3-.2c-.2-.4-.4-.9-.5-1.3c-.3-.8-.6-1.6-1.2-2.2c-.1-.1-.1-.3 0-.5c.1-.1.3-.1.5 0c.7.7 1.1 1.6 1.4 2.5l.5 1.2c.1.2 0 .4-.1.5z\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#F6D2A2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M43.2 118.1c-3.2.5-5 3.4-7.7 4.9c-2.5 1.5-3.5-.5-3.7-.9c-.4-.2-.4.2-1-.4c-2.3-3.7 2.4-6.4 4.9-8.2c3.5-.8 5.7 2.2 7.5 4.6\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M33.8 123.8c-1.3 0-2-1.1-2.2-1.5h-.1c-.3 0-.5-.1-.9-.5v-.1c-2.2-3.5 1.6-6.2 4.1-8l.9-.6h.2c.4-.1.7-.1 1.1-.1c3 0 4.9 2.6 6.5 4.7l.5.7l-.6.1c-1.9.3-3.3 1.5-4.7 2.7c-.9.8-1.8 1.5-2.8 2.1c-.8.3-1.4.5-2 .5m-2.2-2.1c.1 0 .2 0 .4.1h.1l.1.1c.2.3.7 1.2 1.7 1.2c.5 0 1-.2 1.5-.5c1-.5 1.9-1.3 2.7-2c1.3-1.1 2.7-2.3 4.5-2.8c-1.5-2-3.3-4.2-5.8-4.2c-.3 0-.6 0-.9.1l-.8.6c-2.6 1.8-5.8 4.1-3.9 7.1c.1.2.2.3.4.3m.2.7c-.2 0-.4-.2-.3-.4c.1-1 .6-1.7 1.1-2.5c.3-.4.5-.8.7-1.2c.1-.2.3-.2.4-.2c.2.1.2.3.2.4c-.2.5-.5.9-.8 1.3c-.5.7-.9 1.3-1 2.1c0 .4-.1.5-.3.5\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M29.9 21.7c-1.8-.9-3.1-2.2-2-4.3c1-1.9 2.9-1.7 4.7-.8zm64.9-1.8c1.8-.9 3.1-2.2 2-4.3c-1-1.9-2.9-1.7-4.7-.8z\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#F6D2A2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M107.1 68.2c-.2 3.5-3.7 1.9-5.3.8c-1.5-1.1-2-.2-2.1-2.3c-.1-1.4-.2-2.7-.2-4.1c2.3-.2 4.8.3 6.7 1.7c1 .8 2.8 3 .9 3.9\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M105.3 70.7c-1.5 0-3.2-1.1-3.7-1.4c-.5-.3-.8-.5-1.1-.6c-.8-.3-1-.5-1.1-2c0-.3 0-.6-.1-.9c-.1-1-.2-2.1-.1-3.2v-.3h1.3c2.2 0 4.3.6 5.9 1.8c.7.5 2 1.9 1.9 3.1c0 .4-.2.9-.8 1.2c-.2 2-1.5 2.3-2.2 2.3M99.8 63c0 .9 0 1.9.1 2.8c0 .3 0 .6.1.9c.1 1.2.2 1.2.7 1.4c.3.1.7.3 1.3.6c.9.6 2.3 1.3 3.3 1.3c.6 0 1.4-.2 1.5-1.8V68l.2-.1c.4-.2.6-.4.6-.8c.1-.8-.9-2-1.6-2.5c-1.5-1.1-3.5-1.7-5.5-1.7c-.2.1-.4.1-.7.1\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#C6B198\\\" fill-rule=\\\"evenodd\\\" d=\\\"M107.1 68.2c-.5-.2-1.1-.3-1.4-.8\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M107.1 68.6h-.1l-.2-.1c-.5-.2-1-.3-1.3-.8c-.1-.1-.1-.4.1-.5c.1-.1.4-.1.5.1c.2.3.6.4 1 .6c.1 0 .2.1.2.1c.2.1.3.3.2.4c-.1.1-.3.2-.4.2\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#6AD7E5\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.8 4c13.6 0 26.3 1.9 33 15c6 14.6 3.8 30.4 4.8 45.9c.8 13.3 2.5 28.6-3.6 40.9c-6.5 12.9-22.7 16.2-36 15.7c-10.5-.4-23.1-3.8-29.1-13.4c-6.9-11.2-3.7-27.9-3.2-40.4c.6-14.8-4-29.7.9-44.1C34.5 8.5 48.1 5.1 62.8 4\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M63.3 121.9h-2.5c-4.1-.1-10.3-.8-16.4-3.3c-5.9-2.4-10.2-5.8-13-10.3c-5.6-9.1-4.6-21.6-3.7-32.7c.2-2.8.4-5.4.5-7.9c.2-5.2-.2-10.6-.7-15.7c-.8-9.4-1.6-19.1 1.5-28.5c2.4-7 6.7-12 13.2-15.2c5.1-2.5 11.4-3.9 20.4-4.6C76 3.6 89.3 5.5 96 18.8c4.4 10.7 4.4 22.2 4.5 33.3c0 4.2 0 8.5.3 12.7c.1 1.3.2 2.6.2 3.9c.8 12.2 1.7 26-3.9 37.2c-2.8 5.7-7.7 9.9-14.4 12.6c-5.4 2.2-12.2 3.4-19.4 3.4M62.8 4.3c-14.1 1.1-27.9 4.2-33 19.4c-3.1 9.3-2.3 18.9-1.5 28.2c.4 5.2.9 10.5.7 15.8c-.1 2.5-.3 5.1-.5 7.9c-.9 11-1.9 23.4 3.6 32.3c2.3 3.7 9.7 12.5 28.8 13.2h2.5c22.1 0 30.3-9.8 33.3-15.6c5.5-11 4.6-24.8 3.9-36.9c-.1-1.3-.2-2.6-.2-3.9c-.2-4.2-.3-8.5-.3-12.7c-.1-11-.1-22.5-4.4-33.1C92.7 13 88.2 9 82 6.7c-6.4-2.1-13.6-2.4-19.2-2.4\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.2 22.2c2.4 14.2 25.6 10.4 22.3-3.9c-3-12.8-23.1-9.2-22.3 3.9\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M76.2 31.5c-4.5 0-10.2-2.4-11.4-9.2c-.2-3.2.8-6.1 2.9-8.3c2.3-2.5 5.8-3.9 9.4-3.9c4.2 0 9.2 2.2 10.6 8.3c.8 3.4.2 6.4-1.7 8.8c-2.1 2.6-5.8 4.3-9.8 4.3m-10.7-9.3c.5 2.8 1.8 5 3.9 6.6c1.8 1.4 4.3 2.1 6.8 2.1c3.7 0 7.3-1.6 9.3-4.1c1.8-2.2 2.3-5.1 1.6-8.3c-1.3-5.7-6-7.7-10-7.7c-3.4 0-6.7 1.4-8.9 3.7c-1.9 2-2.9 4.7-2.7 7.7\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M37.5 24.5c3.2 12.3 22.9 9.2 22.2-3.2c-.9-14.8-25.3-12-22.2 3.2\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M48 32.7c-4.3 0-9.3-2.1-10.9-8.1c-.7-3.5 0-6.7 2-9.1c2.2-2.7 5.8-4.3 9.7-4.3c5.2 0 10.7 3.1 11.1 10.1c.2 2.9-.7 5.5-2.7 7.6c-2.1 2.3-5.6 3.8-9.2 3.8m.8-20.8c-3.7 0-7.1 1.5-9.2 4c-1.9 2.3-2.5 5.2-1.8 8.5C39.2 30 44 32 48 32c3.4 0 6.7-1.3 8.8-3.6c1.8-1.9 2.7-4.4 2.5-7.1c-.2-4.3-3.1-9.4-10.5-9.4\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M68 39.2c0 1.8.4 3.9.1 5.9c-.5.9-1.4 1-2.2 1.3c-1.1-.2-2-.9-2.5-1.9c-.3-2.2.1-4.4.2-6.6z\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M65.9 46.8c-1.3-.2-2.3-1-2.8-2.1c-.2-1.6-.1-3.1 0-4.6c.1-.7.1-1.4.1-2.1v-.4l5.1 1.6v.2c0 .6.1 1.2.1 1.9c.1 1.3.2 2.7 0 4v.1c-.4.8-1.1 1-1.8 1.3c-.2-.1-.4 0-.7.1m-2.2-2.4c.4.9 1.2 1.5 2.1 1.7c.2-.1.4-.1.5-.2c.6-.2 1.1-.4 1.4-.9c.2-1.2.1-2.5 0-3.8c0-.6-.1-1.2-.1-1.7l-3.8-1.2c0 .6-.1 1.2-.1 1.7c-.1 1.6-.2 3 0 4.4\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M46.3 22.5c0 2-1.5 3.6-3.3 3.6c-1.8 0-3.3-1.6-3.3-3.6s1.5-3.6 3.3-3.6c1.8 0 3.3 1.6 3.3 3.6\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M45.2 23.3c0 .5-.4.9-.8.9s-.8-.4-.8-.9s.4-.9.8-.9c.5 0 .8.4.8.9\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M74.2 21.6c0 2-1.5 3.6-3.3 3.6c-1.8 0-3.3-1.6-3.3-3.6s1.5-3.6 3.3-3.6c1.8 0 3.3 1.6 3.3 3.6\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M73.2 22.4c0 .5-.3.9-.8.9c-.4 0-.8-.4-.8-.9s.3-.9.8-.9c.4 0 .8.4.8.9M58.4 39c-1.5 3.5.8 10.6 4.8 5.4c-.3-2.2.1-4.4.2-6.6z\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M60.5 46.6c-.7 0-1.4-.4-1.9-1.2c-1.1-1.6-1.3-4.6-.5-6.5l.1-.2l5.5-1.4v.4l-.1 2.2c-.1 1.5-.2 2.9 0 4.4v.1l-.1.1c-1 1.4-2 2.1-3 2.1m-1.8-7.3c-.6 1.7-.4 4.4.5 5.7c.4.6.8.9 1.3.9c.7 0 1.5-.6 2.3-1.6c-.2-1.5-.1-3 .1-4.4l.1-1.7z\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill=\\\"#F6D2A2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M58.9 32.2c-2.7.2-4.9 3.5-3.5 6c1.9 3.4 6-.3 8.6 0c3 .1 5.4 3.2 7.8.6c2.7-2.9-1.2-5.7-4.1-7z\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#231F20\\\" d=\\\"M69.7 40.2c-.9 0-1.8-.4-2.7-.8c-.9-.4-1.9-.8-3-.8h-.3c-.8 0-1.7.3-2.7.7c-1.1.4-2.2.7-3.2.7c-1.2 0-2.1-.5-2.7-1.6c-.7-1.2-.6-2.6.1-3.9c.8-1.5 2.2-2.4 3.7-2.6l8.9-.4h.1c2.2.9 4.7 2.6 5.2 4.6c.2 1-.1 2-.9 2.9c-.8.9-1.6 1.2-2.5 1.2M64.1 38c1.1 0 2.2.5 3.2.9c.9.4 1.7.7 2.5.7c.7 0 1.3-.3 1.9-.9c.7-.7.9-1.5.8-2.3c-.4-1.7-2.8-3.3-4.7-4.1l-8.7.4c-1.3.1-2.5 1-3.2 2.2c-.6 1.1-.6 2.3-.1 3.3c.5.9 1.1 1.3 2.1 1.3c.9 0 1.9-.4 2.9-.7c1.1-.4 2-.7 3-.7c0-.2.1-.2.3-.1\\\" clip-path=\\\"url(#deviconGo1)\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M58.6 32.1c-.2-4.7 8.8-5.3 9.8-1.4c1.1 4-9.4 4.9-9.8 1.4\\\" clip-path=\\\"url(#deviconGo1)\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"go-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#00acd7\\\" fill-rule=\\\"evenodd\\\"><path d=\\\"M11.156 54.829c-.243 0-.303-.122-.182-.303l1.273-1.637c.12-.182.424-.303.666-.303H34.55c.243 0 .303.182.182.364l-1.03 1.576c-.121.181-.424.363-.606.363zm-9.152 5.575c-.242 0-.303-.12-.182-.303l1.273-1.636c.121-.182.424-.303.667-.303h27.636c.242 0 .364.182.303.364l-.485 1.454c-.06.243-.303.364-.545.364zM16.67 65.98c-.242 0-.302-.182-.181-.364l.848-1.515c.122-.182.364-.363.607-.363h12.12c.243 0 .364.181.364.424l-.12 1.454c0 .243-.243.425-.425.425zm62.91-12.242c-3.819.97-6.425 1.697-10.182 2.666c-.91.243-.97.303-1.758-.606c-.909-1.03-1.576-1.697-2.848-2.303c-3.819-1.878-7.516-1.333-10.97.91c-4.121 2.666-6.242 6.605-6.182 11.514c.06 4.849 3.394 8.849 8.182 9.516c4.121.545 7.576-.91 10.303-4c.545-.667 1.03-1.394 1.636-2.243H56.064c-1.272 0-1.575-.788-1.151-1.818c.788-1.879 2.242-5.03 3.09-6.606c.183-.364.607-.97 1.516-.97h22.06c-.12 1.637-.12 3.273-.363 4.91c-.667 4.363-2.303 8.363-4.97 11.878c-4.364 5.758-10.06 9.333-17.273 10.303c-5.939.788-11.454-.364-16.302-4c-4.485-3.394-7.03-7.879-7.697-13.454c-.788-6.606 1.151-12.546 5.151-17.758c4.303-5.636 10-9.212 16.97-10.485c5.697-1.03 11.151-.363 16.06 2.97c3.212 2.121 5.515 5.03 7.03 8.545c.364.546.122.849-.606 1.03z\\\"/><path fill-rule=\\\"nonzero\\\" d=\\\"M99.64 87.253c-5.515-.122-10.546-1.697-14.788-5.334c-3.576-3.09-5.818-7.03-6.545-11.697c-1.091-6.848.787-12.909 4.909-18.302c4.424-5.819 9.757-8.849 16.97-10.122c6.181-1.09 12-.484 17.272 3.091c4.788 3.273 7.757 7.697 8.545 13.515c1.03 8.182-1.333 14.849-6.97 20.546c-4 4.06-8.909 6.606-14.545 7.757c-1.636.303-3.273.364-4.848.546m14.424-24.485c-.06-.788-.06-1.394-.182-2c-1.09-6-6.606-9.394-12.363-8.06c-5.637 1.272-9.273 4.848-10.606 10.545c-1.091 4.727 1.212 9.515 5.575 11.454c3.334 1.455 6.667 1.273 9.879-.363c4.788-2.485 7.394-6.364 7.697-11.576\\\"/></g>\"\n\t\t},\n\t\t\"godot\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M114.906 84.145s-.172-1.04-.27-1.028l-18.823 1.817a3.062 3.062 0 0 0-2.77 2.84l-.516 7.413l-14.566 1.04l-.988-6.72a3.089 3.089 0 0 0-3.04-2.62H54.067a3.089 3.089 0 0 0-3.039 2.62l-.988 6.72l-14.566-1.04l-.516-7.414a3.058 3.058 0 0 0-2.77-2.84l-18.835-1.816c-.094-.012-.168 1.028-.266 1.028l-.024 4.074l15.954 2.574l.52 7.477a3.084 3.084 0 0 0 2.843 2.847l20.059 1.434c.078.004.152.008.226.008a3.087 3.087 0 0 0 3.031-2.621l1.02-6.915h14.57l1.02 6.915a3.088 3.088 0 0 0 3.254 2.613l20.062-1.434a3.084 3.084 0 0 0 2.844-2.847l.52-7.477l15.945-2.586zm0 0\\\"/><path fill=\\\"#478cbf\\\" d=\\\"M13.086 53.422v30.723c.059 0 .113.003.168.007L32.09 85.97a2.027 2.027 0 0 1 1.828 1.875l.582 8.316l16.426 1.172l1.133-7.672a2.03 2.03 0 0 1 2.007-1.734h19.868a2.03 2.03 0 0 1 2.007 1.734l1.133 7.672l16.43-1.172l.578-8.316a2.027 2.027 0 0 1 1.828-1.875l18.828-1.817c.055-.004.11-.007.168-.007V81.69h.008V53.42c2.652-3.335 5.16-7.019 7.086-10.116c-2.941-5.008-6.543-9.48-10.395-13.625a101.543 101.543 0 0 0-10.316 6.004c-1.64-1.633-3.484-2.965-5.3-4.36c-1.782-1.43-3.79-2.48-5.696-3.703c.566-4.223.848-8.379.96-12.719c-4.913-2.476-10.155-4.113-15.456-5.293c-2.117 3.559-4.055 7.41-5.738 11.176c-2-.332-4.008-.457-6.02-.48V20.3c-.016 0-.027.004-.039.004s-.023-.004-.04-.004v.004c-2.01.023-4.019.148-6.019.48c-1.683-3.765-3.62-7.617-5.738-11.176c-5.3 1.18-10.543 2.817-15.457 5.293c.113 4.34.395 8.496.961 12.72c-1.906 1.222-3.914 2.273-5.695 3.702c-1.813 1.395-3.66 2.727-5.301 4.36a101.543 101.543 0 0 0-10.316-6.004C12.543 33.824 8.94 38.297 6 43.305c2.313 3.629 4.793 7.273 7.086 10.117m0 0\\\"/><path fill=\\\"#478cbf\\\" d=\\\"m98.008 89.84l-.582 8.36a2.024 2.024 0 0 1-1.88 1.878l-20.062 1.434c-.046.004-.097.004-.144.004c-.996 0-1.86-.73-2.004-1.73l-1.152-7.806H55.816l-1.152 7.805a2.026 2.026 0 0 1-2.148 1.727l-20.063-1.434a2.024 2.024 0 0 1-1.879-1.879l-.582-8.36l-16.937-1.632c.008 1.82.03 3.816.03 4.211c0 17.887 22.692 26.484 50.88 26.582h.07c28.188-.098 50.871-8.695 50.871-26.582c0-.402.024-2.39.031-4.211zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M48.652 65.895c0 6.27-5.082 11.351-11.351 11.351c-6.266 0-11.348-5.082-11.348-11.351c0-6.266 5.082-11.344 11.348-11.344c6.27 0 11.351 5.078 11.351 11.344\\\"/><path fill=\\\"#414042\\\" d=\\\"M45.922 66.566a7.531 7.531 0 0 1-7.535 7.532a7.534 7.534 0 0 1-7.535-7.532a7.534 7.534 0 0 1 7.535-7.53a7.531 7.531 0 0 1 7.535 7.53\\\"/><path fill=\\\"#fff\\\" d=\\\"M64 78.277c-2.02 0-3.652-1.488-3.652-3.32v-10.45c0-1.831 1.632-3.32 3.652-3.32c2.016 0 3.656 1.489 3.656 3.32v10.45c0 1.832-1.64 3.32-3.656 3.32m15.348-12.382c0 6.27 5.082 11.351 11.351 11.351c6.266 0 11.348-5.082 11.348-11.351c0-6.266-5.082-11.344-11.348-11.344c-6.27 0-11.351 5.078-11.351 11.344\\\"/><path fill=\\\"#414042\\\" d=\\\"M82.078 66.566a7.53 7.53 0 0 0 7.531 7.532a7.531 7.531 0 1 0 0-15.063a7.53 7.53 0 0 0-7.53 7.531\\\"/>\"\n\t\t},\n\t\t\"godot-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#414042\\\" fill-rule=\\\"evenodd\\\" d=\\\"M38.867 106.246c-1.316 0-2.418.598-3.312 1.797c-.89 1.195-1.336 2.875-1.336 5.039c0 2.168.426 3.824 1.277 4.98c.848 1.16 1.965 1.739 3.352 1.739c1.382 0 2.507-.586 3.37-1.758c.864-1.168 1.298-2.844 1.298-5.02c0-2.18-.446-3.855-1.34-5.023c-.887-1.172-1.992-1.754-3.309-1.754m-.02 21.512c-3.855 0-6.995-1.25-9.421-3.754c-2.426-2.504-3.64-6.156-3.64-10.961c0-4.805 1.226-8.445 3.683-10.922c2.453-2.476 5.62-3.715 9.5-3.715c3.883 0 7.015 1.215 9.398 3.656c2.39 2.434 3.582 6.126 3.582 11.063c0 4.938-1.219 8.613-3.664 11.023c-2.441 2.407-5.586 3.61-9.437 3.61m24.629-21.23v12.21c0 .57.043.93.125 1.082c.082.149.328.227.738.227c1.512 0 2.656-.563 3.437-1.676c.782-1.117 1.172-2.973 1.172-5.574c0-2.598-.406-4.293-1.21-5.082c-.813-.79-2.094-1.188-3.848-1.188zm-7.895 18.945V100.98c0-.683.168-1.218.512-1.617c.343-.394.789-.593 1.34-.593H64.3c4.36 0 7.672 1.093 9.933 3.27c2.262 2.179 3.395 5.605 3.395 10.288c0 10.016-4.305 15.024-12.918 15.024h-7.03c-1.399 0-2.098-.625-2.098-1.88m37.84-19.226c-1.317 0-2.422.598-3.313 1.797c-.89 1.195-1.336 2.875-1.336 5.039c0 2.168.426 3.824 1.278 4.98c.847 1.16 1.965 1.739 3.351 1.739c1.383 0 2.508-.586 3.371-1.758c.868-1.168 1.297-2.844 1.297-5.02c0-2.18-.445-3.855-1.336-5.023c-.89-1.172-1.996-1.754-3.312-1.754m-.02 21.512c-3.855 0-6.992-1.25-9.418-3.754c-2.43-2.504-3.644-6.156-3.644-10.961c0-4.805 1.23-8.445 3.683-10.922c2.454-2.476 5.622-3.715 9.504-3.715c3.88 0 7.012 1.215 9.399 3.656c2.386 2.434 3.578 6.126 3.578 11.063c0 4.938-1.219 8.613-3.66 11.023c-2.442 2.407-5.59 3.61-9.442 3.61m28.434-1.055c0 .54-1.356.813-4.074.813c-2.711 0-4.07-.274-4.07-.813v-20.5h-4.938c-.465 0-.797-.625-.988-1.879a13.758 13.758 0 0 1-.121-1.836c0-.625.039-1.238.12-1.836c.192-1.25.524-1.882.989-1.882h17.894c.465 0 .793.632.989 1.882c.082.598.12 1.211.12 1.836c0 .63-.038 1.239-.12 1.836c-.196 1.254-.524 1.88-.989 1.88h-4.812zM18.512 112.191c-2.215-.03-4.75.426-4.75.426v4.29h2.55l-.027 1.913c0 .707-.707 1.063-2.12 1.063c-1.411 0-2.661-.594-3.743-1.778c-1.086-1.187-1.625-2.918-1.625-5.203c0-2.289.527-3.976 1.582-5.066c1.055-1.086 2.437-1.633 4.137-1.633c.71 0 1.449.113 2.218.348c.77.23 1.282.449 1.543.652c.262.207.508.305.743.305c.234 0 .609-.27 1.128-.813c.524-.547.989-1.37 1.403-2.468c.41-1.106.613-1.954.613-2.555c0-.598-.012-1.008-.039-1.227c-.574-.625-1.637-1.12-3.188-1.488c-1.55-.367-3.285-.55-5.203-.55c-4.226 0-7.527 1.32-9.914 3.96c-2.386 2.64-3.578 6.067-3.578 10.29c0 4.952 1.219 8.706 3.656 11.265c2.446 2.558 5.653 3.836 9.63 3.836c2.14 0 4.038-.18 5.695-.551c1.66-.363 2.765-.742 3.312-1.121l.164-12.777c0-.743-1.972-1.079-4.187-1.118\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M99.727 51.973s-.122-.73-.188-.723l-13.215 1.281a2.15 2.15 0 0 0-1.941 2.004l-.363 5.227l-10.22.734l-.695-4.738a2.173 2.173 0 0 0-2.132-1.852H57.03a2.176 2.176 0 0 0-2.133 1.852l-.695 4.738l-10.219-.734l-.363-5.227a2.158 2.158 0 0 0-1.941-2.008L28.46 51.25c-.065-.008-.116.723-.187.723l-.015 2.875l11.191 1.816l.367 5.273a2.167 2.167 0 0 0 1.996 2.008l14.079 1.012a2.169 2.169 0 0 0 2.285-1.844l.715-4.875h10.226l.715 4.875a2.166 2.166 0 0 0 2.129 1.848c.05 0 .102 0 .152-.004l14.078-1.012a2.167 2.167 0 0 0 1.996-2.008l.368-5.273l11.187-1.824zm0 0\\\"/><path fill=\\\"#478cbf\\\" fill-rule=\\\"evenodd\\\" d=\\\"M28.383 30.523v21.403c.043 0 .082 0 .12.004l13.173 1.265a1.42 1.42 0 0 1 1.281 1.309l.406 5.793l11.492.816l.793-5.347c.102-.692.7-1.207 1.403-1.207h13.898a1.427 1.427 0 0 1 1.406 1.207l.79 5.347l11.492-.816l.406-5.793a1.42 1.42 0 0 1 1.281-1.309l13.168-1.265c.04-.004.078-.004.117-.004v-1.707l.008-.004V30.523c1.856-2.324 3.61-4.89 4.957-7.05c-2.058-3.485-4.578-6.602-7.273-9.489a70.654 70.654 0 0 0-7.215 4.18c-1.148-1.137-2.438-2.062-3.707-3.035c-1.246-.996-2.652-1.727-3.984-2.582c.394-2.942.593-5.836.671-8.86C79.63 1.966 75.961.82 72.25 0c-1.48 2.477-2.832 5.164-4.012 7.785c-1.398-.23-2.804-.316-4.21-.336h-.055c-1.407.02-2.813.106-4.211.336C58.582 5.16 57.23 2.477 55.746 0c-3.707.82-7.371 1.965-10.812 3.688c.082 3.023.277 5.917.675 8.859c-1.336.855-2.738 1.586-3.988 2.582c-1.266.969-2.559 1.898-3.707 3.035a70.295 70.295 0 0 0-7.219-4.18c-2.691 2.887-5.21 6-7.27 9.489c1.618 2.527 3.352 5.07 4.958 7.05m0 0\\\"/><path fill=\\\"#478cbf\\\" fill-rule=\\\"evenodd\\\" d=\\\"m87.867 55.992l-.41 5.813a1.42 1.42 0 0 1-1.32 1.308l-14.075.996a1.426 1.426 0 0 1-1.511-1.203l-.805-5.426H58.262l-.809 5.426a1.422 1.422 0 0 1-1.508 1.203l-14.078-.996a1.415 1.415 0 0 1-1.316-1.308l-.41-5.813l-11.883-1.137c.004 1.266.02 2.653.02 2.93c0 12.438 15.921 18.418 35.699 18.485h.05c19.778-.067 35.692-6.047 35.692-18.485c0-.281.02-1.66.023-2.93zm0 0\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M53.133 39.336c0 4.32-3.516 7.82-7.852 7.82c-4.332 0-7.847-3.5-7.847-7.82c0-4.316 3.515-7.816 7.847-7.816c4.336 0 7.852 3.5 7.852 7.816\\\"/><path fill=\\\"#414042\\\" fill-rule=\\\"evenodd\\\" d=\\\"M51.441 39.82c0 2.856-2.379 5.172-5.312 5.172c-2.934 0-5.313-2.316-5.313-5.172c0-2.855 2.38-5.172 5.313-5.172c2.934 0 5.312 2.317 5.312 5.172\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.902 47.879c-1.414 0-2.558-1.024-2.558-2.29v-7.202c0-1.266 1.144-2.29 2.558-2.29s2.563 1.024 2.563 2.29v7.203c0 1.265-1.149 2.289-2.563 2.289m10.758-8.54c0 4.325 3.559 7.829 7.953 7.829c4.39 0 7.953-3.504 7.953-7.828c0-4.32-3.562-7.82-7.953-7.82c-4.394 0-7.953 3.5-7.953 7.82\\\"/><path fill=\\\"#414042\\\" fill-rule=\\\"evenodd\\\" d=\\\"M76.559 39.82c0 2.856 2.379 5.172 5.312 5.172c2.938 0 5.313-2.316 5.313-5.172c0-2.855-2.375-5.172-5.313-5.172c-2.933 0-5.312 2.317-5.312 5.172\\\"/>\"\n\t\t},\n\t\t\"goland\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconGoland0\\\" x1=\\\"99.03\\\" x2=\\\"61.54\\\" y1=\\\"59.18\\\" y2=\\\"90.91\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#087cfa\\\"/><stop offset=\\\".02\\\" stop-color=\\\"#0d7bfa\\\"/><stop offset=\\\".37\\\" stop-color=\\\"#5566f9\\\"/><stop offset=\\\".66\\\" stop-color=\\\"#8a57f8\\\"/><stop offset=\\\".88\\\" stop-color=\\\"#ab4ef7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b74af7\\\"/></linearGradient><linearGradient id=\\\"deviconGoland1\\\" x1=\\\"37.54\\\" x2=\\\"60.33\\\" y1=\\\"34.26\\\" y2=\\\"8.33\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#087cfa\\\"/><stop offset=\\\".02\\\" stop-color=\\\"#0d7bfa\\\"/><stop offset=\\\".37\\\" stop-color=\\\"#5566f9\\\"/><stop offset=\\\".66\\\" stop-color=\\\"#8a57f8\\\"/><stop offset=\\\".88\\\" stop-color=\\\"#ab4ef7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b74af7\\\"/></linearGradient><linearGradient id=\\\"deviconGoland2\\\" x1=\\\"17.84\\\" x2=\\\"87.09\\\" y1=\\\"88.36\\\" y2=\\\"43.86\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#087cfa\\\"/><stop offset=\\\".1\\\" stop-color=\\\"#1598d3\\\"/><stop offset=\\\".22\\\" stop-color=\\\"#23b6aa\\\"/><stop offset=\\\".35\\\" stop-color=\\\"#2dcc8b\\\"/><stop offset=\\\".46\\\" stop-color=\\\"#35dd74\\\"/><stop offset=\\\".57\\\" stop-color=\\\"#39e767\\\"/><stop offset=\\\".67\\\" stop-color=\\\"#3bea62\\\"/></linearGradient></defs><path fill=\\\"url(#deviconGoland0)\\\" d=\\\"m108.57 50.75l13.946 30.926l-23.871 40.84l-14.7-35.696Zm0 0\\\"/><path fill=\\\"#b74af7\\\" d=\\\"m83.945 86.82l14.7 35.696L61.66 109.8Zm0 0\\\"/><path fill=\\\"url(#deviconGoland1)\\\" d=\\\"m87.93 38.535l-7.582-33.05H38.3L5.484 55.687L14.98 78.75L5.484 99.805l67.965-57.82Zm0 0\\\"/><path fill=\\\"url(#deviconGoland2)\\\" d=\\\"M122.516 30.328L73.449 41.984L5.484 99.804l43.84 22.712L83.945 86.82Zm0 0\\\"/><path d=\\\"M27.43 27.43h73.14v73.14H27.43Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M34.293 86.855h27.426v4.575H34.293ZM32.23 52.187v-.085a15.496 15.496 0 0 1 4.633-11.098a15.503 15.503 0 0 1 11.18-4.434a16.615 16.615 0 0 1 11.86 4.133l-4.18 5.047a11.13 11.13 0 0 0-7.887-3.082c-4.875 0-8.668 4.266-8.668 9.387v.082c0 5.523 3.793 9.57 9.145 9.57c2.218.066 4.402-.57 6.238-1.816v-4.34h-6.68v-5.727h13.082v13.09a19.589 19.589 0 0 1-12.887 4.793c-9.375 0-15.836-6.598-15.836-15.52m31.528 0v-.085a15.581 15.581 0 0 1 4.758-11.16a15.604 15.604 0 0 1 11.32-4.372c9.3 0 15.98 6.938 15.98 15.508v.086A15.584 15.584 0 0 1 79.75 67.766c-9.313-.059-15.992-6.996-15.992-15.579m25.12 0v-.085a9.142 9.142 0 0 0-2.57-6.645a9.148 9.148 0 0 0-6.558-2.789a9.038 9.038 0 0 0-6.516 2.746a9.022 9.022 0 0 0-2.53 6.602v.086a9.175 9.175 0 0 0 2.562 6.68a9.155 9.155 0 0 0 6.582 2.804a9.027 9.027 0 0 0 6.523-2.77a9.001 9.001 0 0 0 2.508-6.629Zm0 0\\\"/>\"\n\t\t},\n\t\t\"google\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M44.59 4.21a63.28 63.28 0 0 0 4.33 120.9a67.6 67.6 0 0 0 32.36.35a57.13 57.13 0 0 0 25.9-13.46a57.44 57.44 0 0 0 16-26.26a74.33 74.33 0 0 0 1.61-33.58H65.27v24.69h34.47a29.72 29.72 0 0 1-12.66 19.52a36.16 36.16 0 0 1-13.93 5.5a41.29 41.29 0 0 1-15.1 0A37.16 37.16 0 0 1 44 95.74a39.3 39.3 0 0 1-14.5-19.42a38.31 38.31 0 0 1 0-24.63a39.25 39.25 0 0 1 9.18-14.91A37.17 37.17 0 0 1 76.13 27a34.28 34.28 0 0 1 13.64 8q5.83-5.8 11.64-11.63c2-2.09 4.18-4.08 6.15-6.22A61.22 61.22 0 0 0 87.2 4.59a64 64 0 0 0-42.61-.38\\\"/><path fill=\\\"#e33629\\\" d=\\\"M44.59 4.21a64 64 0 0 1 42.61.37a61.22 61.22 0 0 1 20.35 12.62c-2 2.14-4.11 4.14-6.15 6.22Q95.58 29.23 89.77 35a34.28 34.28 0 0 0-13.64-8a37.17 37.17 0 0 0-37.46 9.74a39.25 39.25 0 0 0-9.18 14.91L8.76 35.6A63.53 63.53 0 0 1 44.59 4.21\\\"/><path fill=\\\"#f8bd00\\\" d=\\\"M3.26 51.5a62.93 62.93 0 0 1 5.5-15.9l20.73 16.09a38.31 38.31 0 0 0 0 24.63q-10.36 8-20.73 16.08a63.33 63.33 0 0 1-5.5-40.9\\\"/><path fill=\\\"#587dbd\\\" d=\\\"M65.27 52.15h59.52a74.33 74.33 0 0 1-1.61 33.58a57.44 57.44 0 0 1-16 26.26c-6.69-5.22-13.41-10.4-20.1-15.62a29.72 29.72 0 0 0 12.66-19.54H65.27c-.01-8.22 0-16.45 0-24.68\\\"/><path fill=\\\"#319f43\\\" d=\\\"M8.75 92.4q10.37-8 20.73-16.08A39.3 39.3 0 0 0 44 95.74a37.16 37.16 0 0 0 14.08 6.08a41.29 41.29 0 0 0 15.1 0a36.16 36.16 0 0 0 13.93-5.5c6.69 5.22 13.41 10.4 20.1 15.62a57.13 57.13 0 0 1-25.9 13.47a67.6 67.6 0 0 1-32.36-.35a63 63 0 0 1-23-11.59A63.73 63.73 0 0 1 8.75 92.4\\\"/>\"\n\t\t},\n\t\t\"google-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#4885ed\\\" d=\\\"M31.85 57.91H17.09v4.38h10.47c-.52 6.14-5.63 8.76-10.45 8.76a11.7 11.7 0 0 1 0-23.4A11.36 11.36 0 0 1 25 50.82l3.07-3.18A15.59 15.59 0 0 0 17 43.26a16.09 16.09 0 1 0 .23 32.18c8.61 0 14.92-5.9 14.92-14.63a13.13 13.13 0 0 0-.27-2.9z\\\"/><path fill=\\\"#db3236\\\" d=\\\"M43.94 54.74a10.34 10.34 0 1 0 10.38 10.38a10.22 10.22 0 0 0-10.38-10.38M44 58.8a6.29 6.29 0 1 1-5.92 6.26A5.95 5.95 0 0 1 44 58.8\\\"/><path fill=\\\"#f4c20d\\\" d=\\\"M66.56 54.74a10.34 10.34 0 1 0 10.37 10.38a10.22 10.22 0 0 0-10.37-10.38m.06 4.06a6.29 6.29 0 1 1-5.92 6.26a5.95 5.95 0 0 1 5.92-6.26\\\"/><path fill=\\\"#4885ed\\\" d=\\\"M88.73 54.75c-5.56 0-9.93 4.87-9.93 10.33a10.2 10.2 0 0 0 9.83 10.35a6.83 6.83 0 0 0 5.67-2.51v2c0 3.57-2.17 5.7-5.44 5.7A5.73 5.73 0 0 1 83.58 77l-4 1.66a10 10 0 0 0 9.3 6.09c5.53 0 9.74-3.48 9.74-10.78v-18.6h-4.31v1.75a7.32 7.32 0 0 0-5.58-2.37m.4 4.05c2.73 0 5.52 2.33 5.52 6.3s-2.79 6.27-5.58 6.27a5.88 5.88 0 0 1-5.72-6.23c0-4 2.86-6.34 5.78-6.34\\\"/><path fill=\\\"#db3236\\\" d=\\\"M117.93 54.72c-5.24 0-9.65 4.17-9.65 10.33a10 10 0 0 0 10.15 10.38a10.49 10.49 0 0 0 8.66-4.54l-3.58-2.38a5.79 5.79 0 0 1-5.07 2.85a5.32 5.32 0 0 1-5.07-3.13l13.87-5.75l-.72-1.69a9.36 9.36 0 0 0-8.6-6.06zm.18 4a4.12 4.12 0 0 1 3.83 2.21l-9.26 3.87a5.74 5.74 0 0 1 5.43-6.08\\\"/><path fill=\\\"#3cba54\\\" d=\\\"M101.67 74.82h4.56V44.33h-4.56z\\\"/>\"\n\t\t},\n\t\t\"googlecloud\": {\n\t\t\t\"body\": \"<path fill=\\\"#ea4535\\\" d=\\\"M80.6 40.3h.4l-.2-.2l14-14v-.3c-11.8-10.4-28.1-14-43.2-9.5C36.5 20.8 24.9 32.8 20.7 48c.2-.1.5-.2.8-.2c5.2-3.4 11.4-5.4 17.9-5.4c2.2 0 4.3.2 6.4.6c.1-.1.2-.1.3-.1c9-9.9 24.2-11.1 34.6-2.6z\\\"/><path fill=\\\"#557ebf\\\" d=\\\"M108.1 47.8c-2.3-8.5-7.1-16.2-13.8-22.1L80 39.9c6 4.9 9.5 12.3 9.3 20v2.5c16.9 0 16.9 25.2 0 25.2H63.9v20h-.1l.1.2h25.4c14.6.1 27.5-9.3 31.8-23.1c4.3-13.8-1-28.8-13-36.9\\\"/><path fill=\\\"#36a852\\\" d=\\\"M39 107.9h26.3V87.7H39c-1.9 0-3.7-.4-5.4-1.1l-15.2 14.6v.2c6 4.3 13.2 6.6 20.7 6.6z\\\"/><path fill=\\\"#f9bc15\\\" d=\\\"M40.2 41.9c-14.9.1-28.1 9.3-32.9 22.8c-4.8 13.6 0 28.5 11.8 37.3l15.6-14.9c-8.6-3.7-10.6-14.5-4-20.8c6.6-6.4 17.8-4.4 21.7 3.8L68 55.2C61.4 46.9 51.1 42 40.2 42.1z\\\"/>\"\n\t\t},\n\t\t\"googlecloud-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#ea4535\\\" d=\\\"M68.7 37.9h1.1l3.1-3.1l.2-1.3c-2.4-2.2-5.7-3.5-9.3-3.5c-6.4 0-11.9 4.4-13.5 10.3c.3-.2 1.1-.1 1.1-.1l6.2-1s.3-.5.5-.5c2.8-3 7.4-3.3 10.6-.8\\\"/><path fill=\\\"#557ebf\\\" d=\\\"M77.4 40.3c-.8-2.6-2.2-5-4.3-6.8l-4.4 4.4c1.9 1.5 2.9 3.7 2.9 6.1v.8c2.1 0 3.9 1.7 3.9 3.9c0 2.1-1.7 3.8-3.9 3.8h-7.8l-.8.8V58l.8.8h7.8c5.6 0 10.1-4.5 10.1-10.1c0-3.4-1.7-6.5-4.4-8.3z\\\"/><path fill=\\\"#36a852\\\" d=\\\"M56.1 58.7h7.8v-6.2h-7.8c-.6 0-1.1-.1-1.6-.3l-1.1.3l-3.1 3.1l-.3 1c1.7 1.4 3.9 2.1 6.1 2.1\\\"/><path fill=\\\"#f9bc15\\\" d=\\\"M56.1 38.5C50.5 38.5 46 43 46 48.6c0 3.2 1.5 6.2 4 8.1l4.5-4.5c-1.4-.7-2.3-2-2.3-3.6c0-2.1 1.7-3.9 3.9-3.9c1.5.1 2.9 1 3.5 2.3l4.5-4.5c-1.8-2.4-4.8-4-8-4\\\"/><path fill=\\\"#5f6368\\\" d=\\\"M15.9 78.3c-2.1 0-3.9-.8-5.5-2.3s-2.3-3.2-2.3-5.4s.8-3.9 2.3-5.4s3.4-2.3 5.5-2.3c1.9.1 3.8.8 5.2 2.2l-1.5 1.5c-1-1-2.3-1.5-3.8-1.5s-2.8.5-3.9 1.6c-1 1-1.6 2.5-1.5 3.9c0 1.5.5 2.9 1.6 3.9c1 1.2 2.4 1.7 3.8 1.7c1.6 0 2.8-.5 3.9-1.5c.6-.6 1-1.5 1.1-2.6h-4.9V70h7c.1.4.1.8.1 1.3c0 2.1-.6 3.7-1.8 4.9c-1.4 1.4-3.1 2.2-5.3 2.2zm16.4-1.4c-1 .9-2.1 1.4-3.5 1.4s-2.6-.5-3.5-1.4s-1.4-2.1-1.4-3.5s.5-2.6 1.4-3.5s2.1-1.4 3.5-1.4s2.6.5 3.5 1.4s1.4 2.1 1.4 3.5s-.5 2.6-1.4 3.5m-5.5-1.4c.5.6 1.2.9 1.9.9c.8 0 1.4-.3 2-.9s.8-1.3.8-2.1c0-.9-.3-1.6-.8-2.2s-1.2-.8-2-.8c-.7 0-1.5.3-2 .8c-.5.6-.8 1.3-.8 2.2c0 .9.3 1.6.8 2.1zm16.3 1.4c-1 .9-2.1 1.4-3.5 1.4s-2.6-.5-3.5-1.4s-1.4-2.1-1.4-3.5s.5-2.6 1.4-3.5s2.1-1.4 3.5-1.4s2.6.5 3.5 1.4s1.4 2.1 1.4 3.5s-.5 2.6-1.4 3.5m-5.5-1.4c.5.6 1.2.9 1.9.9c.8 0 1.4-.3 2-.9s.8-1.3.8-2.1c0-.9-.3-1.6-.8-2.2s-1.2-.8-2-.8c-.7 0-1.5.3-2 .8c-.5.6-.8 1.3-.8 2.2c0 .9.3 1.6.8 2.1zm12.6 7.2c-1.1 0-2-.3-2.8-.9s-1.3-1.3-1.6-2l1.9-.8c.2.5.5.9.9 1.2s.9.5 1.6.5c.8 0 1.5-.3 1.9-.7s.7-1.2.7-2.2v-.7h-.1c-.6.7-1.5 1.1-2.6 1.1c-1.3 0-2.4-.5-3.3-1.4c-1-.8-1.5-2.1-1.4-3.4c-.1-1.3.4-2.6 1.4-3.5c.9-1 2-1.4 3.3-1.4c.6 0 1.1.1 1.5.3s.8.5 1.1.8h.1v-.8h2.1v8.9c0 1.7-.4 3-1.3 3.9c-.9.8-2 1.3-3.4 1.3zm.1-6.4c.7.1 1.4-.2 1.8-.8c.5-.6.8-1.3.8-2.1c0-.9-.3-1.6-.8-2.2c-.4-.5-1.1-.8-1.8-.8c-.8 0-1.4.3-1.9.9s-.8 1.3-.8 2.2c0 .8.3 1.6.8 2.1s1.2.9 1.9.9zm8.2-12.9v14.5h-2.2V63.4zm5.9 14.8c-1.4 0-2.6-.5-3.5-1.4s-1.4-2.1-1.4-3.5s.5-2.6 1.4-3.6c.8-.8 2-1.3 3.3-1.3c.6 0 1.2.1 1.7.3c.4.3.8.5 1.2.9c.3.3.6.6.8 1c.2.3.4.6.5 1l.2.6l-6.6 2.7c.5 1 1.3 1.5 2.4 1.5c1 0 1.8-.5 2.4-1.4l1.7 1.1c-.4.6-.9 1.1-1.6 1.5s-1.5.7-2.5.7zm-2.7-5.1l4.4-1.8c-.1-.3-.4-.6-.7-.8c-.4-.1-.8-.2-1.2-.2c-.6 0-1.2.3-1.8.8s-.8 1.2-.8 2.1zM80 78.2c-2 0-3.6-.7-5-2s-2-3-2-5s.7-3.7 2-5s3-2 5-2s3.7.7 4.9 2.2l-1.2 1.2c-.9-1.1-2.2-1.7-3.7-1.7s-2.7.5-3.7 1.5s-1.5 2.3-1.5 3.9s.5 2.9 1.5 3.9s2.2 1.5 3.7 1.5c1.6 0 3-.6 4.1-1.9l1.2 1.2c-.6.7-1.4 1.3-2.3 1.7c-1 .4-2 .6-3 .6zm8.6-.3h-1.7V64.6h1.7zm2.8-8.1c.9-.9 2-1.4 3.4-1.4s2.5.5 3.4 1.4s1.3 2.1 1.3 3.5s-.4 2.6-1.3 3.5s-2 1.4-3.4 1.4s-2.5-.5-3.4-1.4s-1.3-2.1-1.3-3.5s.4-2.6 1.3-3.5m1.3 5.9c.6.6 1.3.9 2.1.9s1.5-.3 2.1-.9s.9-1.4.9-2.4s-.3-1.8-.9-2.4s-1.3-.9-2.1-.9s-1.5.3-2.1.9s-.9 1.4-.9 2.4s.3 1.8.9 2.4m16.3 2.2h-1.6v-1.3h-.1c-.3.4-.7.8-1.2 1.1s-1.1.5-1.7.5c-1.1 0-2-.3-2.6-1s-.9-1.6-.9-2.8v-5.6h1.7v5.3c0 1.7.8 2.6 2.3 2.6c.6 0 1.3-.3 1.7-.8c.4-.6.6-1.3.6-2v-5h1.7v9.2zm5.8.3c-1.2 0-2.2-.5-3.1-1.4s-1.3-2.1-1.3-3.5s.4-2.5 1.3-3.5s1.9-1.4 3.1-1.4c.7 0 1.3.2 1.9.4s1 .7 1.2 1.1h.1l-.1-1.3v-4.2h1.7v13.4H118v-1.3h-.1c-.3.4-.7.8-1.2 1.1c-.6.3-1.2.4-1.9.4zm.3-1.6c.7.1 1.5-.2 2-.8c.6-.6.8-1.4.8-2.4s-.3-1.8-.8-2.4c-.5-.5-1.3-.9-2-.9c-.8 0-1.5.3-2.1.9s-.9 1.4-.9 2.4s.3 1.8.9 2.4c.5.6 1.3 1 2.1 1z\\\"/>\"\n\t\t},\n\t\t\"gradle\": {\n\t\t\t\"body\": \"<path fill=\\\"#02303a\\\" d=\\\"M103.93 17.205a20.294 20.294 0 0 0-11.092 5.268a1.98 1.98 0 0 0-.62 1.39a2.025 2.025 0 0 0 .578 1.405l2.525 2.613a1.936 1.936 0 0 0 2.53.182a11.5 11.5 0 0 1 6.964-2.321a11.618 11.618 0 0 1 8.245 19.847c-16.11 16.112-37.616-29.024-86.423-5.803a6.637 6.637 0 0 0-2.956 9.291l8.365 14.476a6.637 6.637 0 0 0 8.973 2.467l.203-.114l-.16.114l3.71-2.082a85.035 85.035 0 0 0 11.676-8.724a2.055 2.055 0 0 1 2.675 0a1.892 1.892 0 0 1 .73 1.478a1.951 1.951 0 0 1-.641 1.479a87.562 87.562 0 0 1-12.31 9.135h-.12l-3.712 2.071a10.347 10.347 0 0 1-5.142 1.338a10.672 10.672 0 0 1-9.209-5.273l-7.912-13.674C5.613 62.5-3.607 83.18 1.345 109.416a1.951 1.951 0 0 0 1.895 1.567h9.015a1.922 1.922 0 0 0 1.905-1.686a13.2 13.2 0 0 1 26.193 0a1.936 1.936 0 0 0 1.916 1.686h8.786a1.922 1.922 0 0 0 1.905-1.686a13.214 13.214 0 0 1 26.209 0a1.922 1.922 0 0 0 1.905 1.686h8.672a1.922 1.922 0 0 0 1.926-1.89c.207-12.223 3.503-26.267 12.904-33.303c32.562-24.359 24.007-45.24 16.469-52.823a20.294 20.294 0 0 0-17.115-5.762M84.692 52.866a3.902 3.902 0 0 1 3.138 6.965v-.02l-6.21-3.119a3.902 3.902 0 0 1 3.072-3.826\\\"/>\"\n\t\t},\n\t\t\"gradle-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#02303a\\\" d=\\\"M38.996 46.317a7.615 7.615 0 0 0-4.163 1.976a.743.743 0 0 0-.23.522a.76.76 0 0 0 .215.526l.948.982a.727.727 0 0 0 .948.067a4.315 4.315 0 0 1 2.613-.871a4.36 4.36 0 0 1 3.094 7.449c-6.045 6.045-14.114-10.892-32.427-2.18a2.49 2.49 0 0 0-1.11 3.488l3.14 5.432a2.49 2.49 0 0 0 3.366.925l.077-.044l-.062.044l1.393-.782a31.907 31.907 0 0 0 4.381-3.273a.77.77 0 0 1 1.005 0a.71.71 0 0 1 .272.555a.732.732 0 0 1-.239.555a32.855 32.855 0 0 1-4.62 3.428h-.044l-1.392.776a3.882 3.882 0 0 1-1.93.503a4.004 4.004 0 0 1-3.456-1.978l-2.968-5.132c-5.701 4.027-9.16 11.786-7.302 21.63a.732.732 0 0 0 .709.589h3.384a.721.721 0 0 0 .714-.632a4.953 4.953 0 0 1 9.829 0a.727.727 0 0 0 .72.632h3.296a.721.721 0 0 0 .714-.632a4.958 4.958 0 0 1 9.834 0a.721.721 0 0 0 .714.632h3.256a.721.721 0 0 0 .722-.71c.077-4.586 1.313-9.855 4.84-12.495c12.219-9.14 9.009-16.976 6.18-19.82a7.615 7.615 0 0 0-6.421-2.162m-7.218 13.38a1.464 1.464 0 0 1 1.177 2.613v-.008l-2.33-1.17a1.464 1.464 0 0 1 1.153-1.436zm71.569 2.268v7.12a4.83 4.83 0 0 0-1.436-.958a4.73 4.73 0 0 0-1.938-.354a5.285 5.285 0 0 0-2.395.555a5.48 5.48 0 0 0-1.83 1.48a6.755 6.755 0 0 0-1.17 2.217a9.229 9.229 0 0 0-.412 2.773a10.876 10.876 0 0 0 .367 2.952a6.323 6.323 0 0 0 1.026 2.164a4.398 4.398 0 0 0 3.615 1.796a5.12 5.12 0 0 0 2.47-.555a6.91 6.91 0 0 0 1.873-1.514l.277 1.303a.765.765 0 0 0 .817.593h1.991V61.965zm6.503 0v19.572h3.25V61.965zm-47.641.317a11.209 11.209 0 0 0-4.109.714a8.78 8.78 0 0 0-3.111 1.996a8.902 8.902 0 0 0-1.979 3.084a10.737 10.737 0 0 0-.699 3.939a10.327 10.327 0 0 0 .72 3.91a8.818 8.818 0 0 0 2.063 3.084a9.428 9.428 0 0 0 3.227 2.012a11.691 11.691 0 0 0 4.217.722a11.99 11.99 0 0 0 3.51-.493a10.072 10.072 0 0 0 3.088-1.56v-7.703h-6.344v2.001a.638.638 0 0 0 .196.468a.721.721 0 0 0 .555.193h2.394v3.456a9.207 9.207 0 0 1-1.618.603a7.21 7.21 0 0 1-1.881.221a7.31 7.31 0 0 1-2.673-.465a5.663 5.663 0 0 1-2.053-1.351a6.156 6.156 0 0 1-1.315-2.177a8.541 8.541 0 0 1-.465-2.916a8.352 8.352 0 0 1 .434-2.773a6.173 6.173 0 0 1 1.236-2.12a5.452 5.452 0 0 1 1.94-1.351a6.578 6.578 0 0 1 2.551-.478a8.957 8.957 0 0 1 1.532.116a8.552 8.552 0 0 1 1.197.306a5.546 5.546 0 0 1 .971.431l.872.506a1.11 1.11 0 0 0 .824.188a.97.97 0 0 0 .622-.465l1.015-1.609a10.344 10.344 0 0 0-1.303-1.015a8.508 8.508 0 0 0-1.575-.78a10.82 10.82 0 0 0-1.87-.507a12.14 12.14 0 0 0-2.169-.187m16.262 5.496a3.195 3.195 0 0 0-2.053.665a5.896 5.896 0 0 0-1.503 1.925l-.192-1.527a.788.788 0 0 0-.967-.814H71.85v13.505h3.255v-8.32a6.184 6.184 0 0 1 .476-.958a3.195 3.195 0 0 1 .593-.722a2.451 2.451 0 0 1 .76-.455a2.701 2.701 0 0 1 .962-.154a4.437 4.437 0 0 1 .753.067a3.821 3.821 0 0 0 .588.064a.555.555 0 0 0 .34-.098a.632.632 0 0 0 .187-.339l.21-2.436a2.512 2.512 0 0 0-1.503-.403m8.32 0a8.042 8.042 0 0 0-5.609 2.13l.64 1.04a1.409 1.409 0 0 0 .383.412a.904.904 0 0 0 .552.177a1.436 1.436 0 0 0 .722-.183l.717-.416a5.44 5.44 0 0 1 .915-.41a3.988 3.988 0 0 1 1.308-.188a2.13 2.13 0 0 1 1.665.655a2.973 2.973 0 0 1 .552 2.007v.822a20.299 20.299 0 0 0-2.739.226a13.31 13.31 0 0 0-2.096.493a6.744 6.744 0 0 0-1.514.689a4.648 4.648 0 0 0-1.004.87a2.917 2.917 0 0 0-.553.964a3.14 3.14 0 0 0-.172 1.028a4.054 4.054 0 0 0 .288 1.59a3.067 3.067 0 0 0 .82 1.144a3.428 3.428 0 0 0 1.248.691a5.136 5.136 0 0 0 1.58.23a6.533 6.533 0 0 0 1.326-.124a5.68 5.68 0 0 0 1.11-.36a5.979 5.979 0 0 0 1.008-.588a12.135 12.135 0 0 0 1.004-.81l.288.977a.993.993 0 0 0 .396.555a1.542 1.542 0 0 0 .714.138h1.465v-8.525a6.411 6.411 0 0 0-.334-2.107a4.742 4.742 0 0 0-.982-1.663a4.559 4.559 0 0 0-1.58-1.081a5.546 5.546 0 0 0-2.117-.383zm35.136.04a7.177 7.177 0 0 0-2.526.525a6.062 6.062 0 0 0-2.04 1.426a6.267 6.267 0 0 0-1.282 2.117a7.476 7.476 0 0 0-.447 2.603a8.874 8.874 0 0 0 .514 3.15a6.589 6.589 0 0 0 1.408 2.267a5.901 5.901 0 0 0 2.11 1.382a7.249 7.249 0 0 0 2.623.465a10.416 10.416 0 0 0 1.446-.11a7.765 7.765 0 0 0 1.486-.36a6.71 6.71 0 0 0 1.405-.689a5.44 5.44 0 0 0 1.208-1.058l-.943-1.198a.677.677 0 0 0-.61-.305a1.248 1.248 0 0 0-.621.182c-.2.122-.467.261-.755.411a6.1 6.1 0 0 1-.997.404a4.337 4.337 0 0 1-1.365.19a4.12 4.12 0 0 1-1.441-.244a3.084 3.084 0 0 1-1.11-.738a3.738 3.738 0 0 1-.766-1.254a6.467 6.467 0 0 1-.365-1.796h8.369a.654.654 0 0 0 .604-.257a2.124 2.124 0 0 0 .162-.992a7.166 7.166 0 0 0-.44-2.6a5.546 5.546 0 0 0-1.22-1.925a5.125 5.125 0 0 0-1.858-1.192a7.177 7.177 0 0 0-2.549-.403zm-.324 2.367a3.45 3.45 0 0 1 1.82.203a2.446 2.446 0 0 1 .904.666a2.734 2.734 0 0 1 .555.976a3.999 3.999 0 0 1 .177 1.192l-6.156-.005a3.938 3.938 0 0 1 1.03-2.274a3.45 3.45 0 0 1 1.67-.758m-20.864.067a3.483 3.483 0 0 1 1.403.275a3.167 3.167 0 0 1 1.205.95l.005 6.057a5.236 5.236 0 0 1-1.344 1.198a3.328 3.328 0 0 1-1.724.42a2.773 2.773 0 0 1-1.149-.233a2.063 2.063 0 0 1-.863-.748a3.943 3.943 0 0 1-.555-1.343a9.046 9.046 0 0 1-.19-2.007a8.158 8.158 0 0 1 .223-2.035a4.032 4.032 0 0 1 .648-1.426a2.64 2.64 0 0 1 1.01-.833a3.04 3.04 0 0 1 1.33-.275zM88.636 75.77v2.269a5.241 5.241 0 0 1-1.423 1.11a3.882 3.882 0 0 1-1.737.36a2.163 2.163 0 0 1-1.32-.373a1.409 1.409 0 0 1-.51-1.22a1.359 1.359 0 0 1 .255-.802a2.052 2.052 0 0 1 .827-.65a6.311 6.311 0 0 1 1.542-.45a17.376 17.376 0 0 1 2.366-.244\\\"/>\"\n\t\t},\n\t\t\"grafana\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconGrafana0\\\" x1=\\\"45.842\\\" x2=\\\"45.842\\\" y1=\\\"89.57\\\" y2=\\\"8.802\\\" gradientTransform=\\\"translate(-2.405 27.316)scale(1.4463)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fcee1f\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f15b2a\\\"/></linearGradient><path fill=\\\"url(#deviconGrafana0)\\\" d=\\\"M69.162 0c-9.91 6.4-11.77 14.865-11.77 14.865s.002.206-.101.412c-.62.104-1.033.31-1.549.413c-.722.206-1.445.413-2.168.826l-2.168.93c-1.445.722-2.89 1.341-4.336 2.167c-1.342.826-2.683 1.548-4.025 2.477a1.266 1.266 0 0 1-.309-.205c-13.316-5.161-25.084 1.031-25.084 1.031c-1.032 14.245 5.367 23.02 6.606 24.672c-.31.929-.62 1.754-.93 2.58a52.973 52.973 0 0 0-2.166 9.91c-.103.413-.104 1.033-.207 1.445C8.671 67.613 5.06 80.103 5.06 80.103c10.219 11.768 22.193 12.49 22.193 12.49c1.445 2.685 3.302 5.369 5.264 7.743c.825 1.032 1.756 1.96 2.582 2.992c-3.716 10.632.619 19.613.619 19.613c11.458.413 18.992-4.955 20.54-6.297c1.136.31 2.272.724 3.407 1.034a47.25 47.25 0 0 0 10.633 1.549h4.644C80.31 126.969 89.807 128 89.807 128c6.71-7.123 7.123-14.038 7.123-15.69v-.62c1.342-1.033 2.683-2.064 4.129-3.2c2.684-2.374 4.955-5.264 7.02-8.154c.206-.207.309-.62.618-.826c7.639.413 12.903-4.748 12.903-4.748c-1.24-7.949-5.78-11.768-6.71-12.49l-.103-.104l-.103-.104l-.104-.103c0-.413.104-.93.104-1.445c.103-.93.103-1.755.103-2.58v-3.407c0-.206 0-.413-.103-.722l-.104-.723l-.103-.723c-.104-.929-.31-1.754-.413-2.58c-.825-3.406-2.166-6.71-3.818-9.498c-1.858-2.993-4.026-5.471-6.504-7.742c-2.477-2.168-5.264-4.025-8.154-5.264c-2.994-1.342-5.884-2.167-8.98-2.476c-1.446-.207-3.098-.207-4.544-.207H79.69c-.825.103-1.546.205-2.27.308c-3.096.62-5.883 1.756-8.36 3.201c-2.478 1.446-4.646 3.407-6.504 5.575c-1.858 2.167-3.2 4.438-4.13 6.916a23.313 23.313 0 0 0-1.548 7.431v2.684c0 .31 0 .62.104.93c.103 1.238.31 2.374.722 3.51c.723 2.27 1.756 4.334 3.098 6.09a19.973 19.973 0 0 0 4.54 4.335c1.756 1.136 3.408 1.96 5.266 2.477c1.858.516 3.509.826 5.16.722h2.376c.206 0 .412-.101.619-.101c.206 0 .31-.104.619-.104c.31-.103.825-.207 1.135-.31c.722-.207 1.342-.62 2.064-.826c.723-.31 1.24-.722 1.756-1.032c.103-.103.309-.207.412-.31c.62-.413.723-1.238.207-1.858c-.413-.413-1.136-.62-1.756-.31c-.103.103-.205.104-.412.207c-.413.206-1.032.413-1.445.619c-.62.103-1.135.31-1.754.414c-.31 0-.62.102-.93.102h-2.58c-.103 0-.31.001-.414-.102c-1.239-.206-2.58-.62-3.818-1.137c-1.239-.619-2.478-1.34-3.51-2.373a15.894 15.894 0 0 1-2.89-3.51c-.826-1.341-1.24-2.89-1.446-4.335c-.103-.826-.207-1.55-.103-2.375v-1.239c0-.413.103-.825.207-1.238c.619-3.406 2.27-6.71 4.851-9.187c.723-.723 1.342-1.238 2.168-1.754c.826-.62 1.547-1.032 2.373-1.342c.826-.31 1.756-.723 2.582-.93c.93-.206 1.858-.414 2.684-.414c.413 0 .929-.101 1.342-.101h1.238c1.032.103 2.065.205 2.994.412c1.961.413 3.82 1.135 5.678 2.168c3.613 2.064 6.708 5.16 8.566 8.877c.93 1.858 1.548 3.82 1.961 5.988c.103.62.104 1.03.207 1.547v2.787c0 .62-.103 1.136-.103 1.756c-.104.62-.102 1.134-.205 1.754c-.104.619-.208 1.136-.311 1.755c-.206 1.136-.722 2.168-1.031 3.303c-.826 2.168-1.963 4.232-3.305 5.986c-2.684 3.717-6.502 6.815-10.63 8.776c-2.169.929-4.337 1.755-6.608 2.064a19.003 19.003 0 0 1-3.407.309h-1.755c-.62 0-1.238.002-1.858-.102c-2.477-.206-4.85-.724-7.224-1.343c-2.375-.723-4.647-1.548-6.815-2.684c-4.335-2.27-8.153-5.573-11.25-9.289c-1.445-1.961-2.892-4.027-4.027-6.092c-1.136-2.064-1.961-4.438-2.58-6.709c-.723-2.27-1.032-4.645-1.135-7.02v-3.613c0-1.135.102-2.372.309-3.61c.103-1.24.309-2.376.619-3.614c.206-1.239.62-2.375.93-3.614c.722-2.374 1.444-4.644 2.476-6.812c2.064-4.335 4.645-8.155 7.742-11.252a24.86 24.86 0 0 1 2.479-2.168c.31-.31 1.135-1.033 2.064-1.549s1.858-1.136 2.89-1.549c.414-.206.93-.413 1.446-.722c.206-.103.411-.206.824-.309c.207-.103.414-.207.826-.31c1.033-.413 2.066-.825 3.098-1.135c.207-.103.62-.104.826-.207c.207-.103.618-.102.824-.205c.62-.103 1.033-.208 1.55-.414c.206-.104.619-.104.825-.207c.207 0 .62-.102.827-.102c.206 0 .62-.103.826-.103l.412-.104l.412-.103c.206 0 .62-.104.826-.104c.31 0 .62-.104.93-.104c.206 0 .721-.101.928-.101c.206 0 .311 0 .62-.104h.723c.31 0 .618 0 .928-.103h4.647c2.064.103 4.128.31 5.986.723c3.82.722 7.638 1.961 10.941 3.613c3.304 1.548 6.4 3.611 8.877 5.78c.104.102.311.207.414.413c.104.103.31.206.412.412c.31.207.62.62.93.826c.31.207.62.62.93.827c.206.31.618.618.824.927c1.136 1.136 2.169 2.375 3.098 3.51a41.422 41.422 0 0 1 4.44 7.02c.102.103.1.207.204.414c.103.103.104.205.207.412c.103.206.206.62.412.826c.104.206.208.62.31.826c.104.207.208.62.311.826c.413 1.033.826 2.064 1.135 3.096c.62 1.548.929 2.993 1.239 4.13c.103.412.62.825 1.033.825c.619 0 .927-.414.927-1.033c-.31-1.755-.308-3.198-.412-4.953c-.206-2.168-.619-4.647-1.238-7.434c-.62-2.787-1.86-5.677-3.305-8.877c-1.548-3.096-3.509-6.4-6.09-9.394c-1.032-1.239-2.167-2.373-3.302-3.612c1.858-7.122-2.168-13.42-2.168-13.42c-6.916-.412-11.253 2.168-12.801 3.303c-.206-.103-.618-.205-.824-.308c-1.136-.413-2.375-.93-3.613-1.342c-1.24-.31-2.478-.827-3.717-1.033c-1.239-.31-2.58-.62-4.026-.827c-.206 0-.413-.103-.722-.103C77.833 4.128 69.162 0 69.162 0\\\"/>\"\n\t\t},\n\t\t\"grafana-wordmark\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconGrafanaWordmark0\\\" x1=\\\"45.842\\\" x2=\\\"45.842\\\" y1=\\\"65.063\\\" y2=\\\"2.545\\\" gradientTransform=\\\"translate(-2.353 27.316)scale(1.4463)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fcee1f\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f15b2a\\\"/></linearGradient><path fill=\\\"#565656\\\" d=\\\"M26.632 115.613c-.31 6.916-5.78 12.387-12.697 12.387c-7.225 0-12.593-5.78-12.593-12.903s5.78-12.903 12.903-12.903c3.2 0 6.297 1.445 8.98 3.819l-2.064 2.58c-2.064-1.754-4.438-2.993-6.916-2.993c-5.161 0-9.497 4.232-9.497 9.497c0 5.368 4.026 9.497 9.187 9.497c4.542 0 8.155-3.304 8.981-7.742H12.49v-3.097h14.142zm11.871-1.755h-1.961c-2.065 0-3.82 1.755-3.82 3.82v10.012h-3.406v-17.238h2.787v1.445c.93-.93 2.374-1.445 4.026-1.445h3.716zm18.89 13.832H54.4v-2.167c-2.271 2.167-5.78 3.303-9.393 1.651c-2.684-1.135-4.646-3.613-5.162-6.503c-1.032-5.574 3.303-10.426 8.671-10.426c2.271 0 4.439.93 5.884 2.478v-2.168h2.994zm-3.51-7.226c.827-3.51-1.857-6.71-5.264-6.71c-2.993 0-5.367 2.478-5.367 5.369c0 3.303 2.89 5.883 6.296 5.367c1.962-.31 3.82-2.064 4.336-4.026zm10.324-10.838v.929h5.47v2.993h-5.47v14.142h-3.304v-18.064c0-3.82 2.684-5.987 6.194-5.987h4.129l-1.445 3.303h-2.684c-1.652 0-2.89 1.239-2.89 2.684m23.741 18.064h-2.89v-2.167c-2.271 2.167-5.78 3.303-9.394 1.651c-2.684-1.135-4.645-3.613-5.16-6.503c-1.033-5.574 3.302-10.426 8.67-10.426c2.271 0 4.439.93 5.884 2.478v-2.168h2.994zm-3.51-7.226c.827-3.51-1.857-6.71-5.264-6.71c-2.993 0-5.367 2.478-5.367 5.369c0 3.303 2.89 5.883 6.296 5.367c2.168-.31 3.82-2.064 4.336-4.026zm21.885-2.787v10.116h-3.407v-10.219c0-2.064-1.755-3.82-3.82-3.82a3.81 3.81 0 0 0-3.819 3.82v10.22h-3.406v-17.24h2.787V112a6.769 6.769 0 0 1 4.542-1.755c3.923.103 7.123 3.303 7.123 7.432m20.232 10.013h-2.89v-2.167c-2.272 2.167-5.781 3.303-9.394 1.651c-2.684-1.135-4.645-3.613-5.161-6.503c-1.033-5.574 3.303-10.426 8.67-10.426c2.272 0 4.44.93 5.884 2.478v-2.168h2.994zm-3.51-7.226c.826-3.51-1.858-6.71-5.264-6.71c-2.994 0-5.368 2.478-5.368 5.369c0 3.303 2.89 5.883 6.297 5.367c2.167-.31 3.819-2.064 4.335-4.026\\\"/><path fill=\\\"url(#deviconGrafanaWordmark0)\\\" d=\\\"M109.368 43.871c-.207-1.652-.413-3.613-.93-5.678c-.515-2.064-1.444-4.438-2.58-6.812c-1.239-2.374-2.684-4.955-4.748-7.33c-.826-.928-1.652-1.857-2.581-2.786c1.445-5.575-1.652-10.323-1.652-10.323c-5.367-.31-8.67 1.652-9.91 2.58l-.619-.31c-.929-.309-1.858-.722-2.787-1.031a30.4 30.4 0 0 0-2.89-.826c-.929-.31-2.065-.413-3.097-.62c-.206 0-.31-.103-.516-.103C74.684 3.2 68.078 0 68.078 0c-7.64 4.955-9.188 11.561-9.188 11.561s0 .207-.103.31c-.413.103-.826.31-1.239.31c-.516.206-1.135.31-1.651.619c-.516.31-1.136.413-1.652.723a49.22 49.22 0 0 0-3.303 1.651c-1.032.62-2.065 1.239-3.097 1.961a1.275 1.275 0 0 1-.31-.206c-10.322-3.922-19.406.826-19.406.826c-.826 10.942 4.129 17.858 5.058 19.097c-.31.722-.413 1.342-.723 2.064c-.825 2.478-1.341 5.058-1.651 7.639c-.103.31-.103.826-.207 1.135c-9.393 4.646-12.283 14.246-12.283 14.246c7.948 9.187 17.238 9.703 17.238 9.703c1.136 2.064 2.58 4.129 4.026 5.987c.62.826 1.342 1.445 2.065 2.27c-2.89 8.259.413 15.175.413 15.175c8.877.31 14.658-3.82 15.896-4.852c.93.31 1.755.516 2.684.826a38.07 38.07 0 0 0 8.258 1.239h3.51c4.129 5.987 11.561 6.813 11.561 6.813c5.162-5.574 5.574-10.942 5.574-12.18v-.62c1.033-.826 2.065-1.549 3.2-2.478c2.065-1.858 3.82-4.026 5.471-6.296c.207-.207.31-.413.413-.62c5.884.31 10.013-3.716 10.013-3.716c-.929-6.194-4.438-9.187-5.161-9.703l-.103-.103l-.104-.104l-.103-.103c0-.31.103-.722.103-1.135c.104-.723.104-1.342.104-2.065v-2.58c0-.207 0-.31-.104-.517l-.103-.516l-.103-.516c-.103-.722-.31-1.342-.31-2.064a26.107 26.107 0 0 0-2.993-7.433a28.283 28.283 0 0 0-5.058-5.987c-1.962-1.651-4.026-3.097-6.297-4.026a23.949 23.949 0 0 0-6.916-1.96c-1.136-.207-2.374-.207-3.51-.207h-1.755c-.62.103-1.239.206-1.755.31c-2.374.412-4.542 1.341-6.503 2.477c-1.961 1.135-3.613 2.684-5.058 4.335a16.847 16.847 0 0 0-3.2 5.368a18.704 18.704 0 0 0-1.239 5.677V54.4c0 .31 0 .413.104.723c.103.929.31 1.858.516 2.684c.516 1.754 1.342 3.303 2.374 4.748c1.032 1.445 2.168 2.477 3.51 3.303c1.342.93 2.684 1.445 4.026 1.961c1.341.516 2.683.62 3.922.516h1.961c.207 0 .31-.103.413-.103c.207 0 .31-.103.413-.103l.93-.31l1.547-.619c.517-.31.93-.516 1.342-.826c.104-.103.31-.206.31-.31c.413-.31.516-.928.207-1.445c-.31-.31-.93-.413-1.342-.31c0 .723-.103.723-.31.826c-.31.207-.826.31-1.136.413c-.412.104-.928.31-1.341.31c-.31 0-.413.103-.723.103h-1.342s-.103 0 0 0h-.413c-.103 0-.31 0-.31-.103c-.929-.206-2.064-.413-2.993-.929c-.93-.413-1.961-1.032-2.684-1.858c-.929-.826-1.548-1.652-2.168-2.684c-.619-1.032-.929-2.168-1.135-3.303c-.103-.62-.207-1.239-.103-1.858v-.516c0 .103 0 0 0 0v-.413c0-.31.103-.62.206-.93c.413-2.683 1.755-5.16 3.82-7.122a10.425 10.425 0 0 1 1.651-1.342c.62-.413 1.239-.826 1.858-1.032c.62-.31 1.342-.516 2.065-.723a7.709 7.709 0 0 1 2.064-.31c.31 0 .723-.103 1.032-.103h.826c.103 0 0 0 0 0h-.206h.31c.825.104 1.548.207 2.27.31c1.446.31 2.994.93 4.44 1.652c2.786 1.548 5.16 3.922 6.605 6.813c.723 1.445 1.24 2.993 1.446 4.645c.103.413.103.826.206 1.238v2.478c0 .413-.103.929-.103 1.342c-.103.413-.103.929-.207 1.342c-.103.413-.206.929-.31 1.342c-.206.929-.515 1.651-.825 2.58c-.62 1.652-1.445 3.304-2.58 4.646c-2.065 2.89-5.059 5.264-8.259 6.813c-1.651.722-3.303 1.341-5.058 1.548c-.929.206-1.755.31-2.684.31h-1.445c.103 0 0 0 0 0h-.103c-.413 0-.929 0-1.445-.104c-1.962-.206-3.82-.516-5.678-1.032s-3.613-1.239-5.264-2.064c-3.303-1.755-6.297-4.336-8.671-7.226c-1.136-1.445-2.168-3.097-3.097-4.749c-.929-1.651-1.445-3.406-2.064-5.16a24.27 24.27 0 0 1-.93-5.472V50.89c0-.929.104-1.858.31-2.787c.103-.929.31-1.858.413-2.787c.103-.929.413-1.858.723-2.787c.516-1.858 1.135-3.613 1.961-5.264c1.548-3.304 3.613-6.297 5.987-8.671c.62-.62 1.239-1.136 1.961-1.652c.31-.31.93-.826 1.549-1.239c.722-.413 1.445-.929 2.167-1.238c.31-.207.723-.31 1.136-.517c.206-.103.31-.206.62-.31c.206-.102.31-.206.619-.309c.825-.31 1.548-.62 2.374-.929c.206-.103.413-.103.62-.206c.206-.104.412-.104.619-.207l1.238-.31c.207-.103.413-.103.62-.206c.206 0 .413-.103.62-.103c.205 0 .412-.103.618-.103l.31-.104l.31-.103c.206 0 .413-.103.62-.103c.309 0 .412-.103.722-.103c.206 0 .516-.104.722-.104c.207 0 .31 0 .413-.103h1.032c.31 0 .413 0 .723-.103h.31s.103 0 0 0h3.303c1.548.103 3.2.31 4.645.516c2.994.516 5.884 1.445 8.465 2.787c2.58 1.239 4.954 2.787 6.813 4.439c.103.103.31.206.31.31c.102.103.309.206.309.31c.31.206.413.412.722.619c.31.206.413.413.723.619c.206.31.413.413.62.723c.928.929 1.651 1.858 2.374 2.683c1.445 1.858 2.58 3.717 3.406 5.471c.103.104.103.207.206.31c.104.103.104.207.207.31l.31.62l.31.618l.309.62c.31.826.62 1.548.929 2.374c.413 1.239.723 2.271.929 3.2c.103.31.413.62.826.62s.722-.31.722-.826c-.206-.517-.206-1.652-.31-2.994z\\\"/>\"\n\t\t},\n\t\t\"grails\": {\n\t\t\t\"body\": \"<path fill=\\\"#feb571\\\" d=\\\"M127.5 64c0 35.09-28.483 63.426-63.427 63.426C28.983 127.573.5 99.09.5 64C.5 29.056 28.983.573 63.927.573C99.017.573 127.5 29.056 127.5 64\\\"/><path fill=\\\"#fff\\\" d=\\\"M33.388 22.743c-1.174 0-2.204.294-3.231.587c-.881.44-1.761.88-2.495 1.615c-.587.734-1.174 1.47-1.615 2.497c-.44.881-.587 2.055-.587 3.23c0 1.174.293 2.201.734 3.082c.293 1.028.88 1.764 1.614 2.498c.734.734 1.47 1.32 2.498 1.614c1.028.44 2.054.588 3.229.588c1.174 0 2.2-.148 3.229-.295c1.027-.147 1.908-.586 2.936-1.027V29.35h-5.724v2.937h2.641v2.498c-.293.146-.732.291-1.173.438c-.587.147-1.175.296-1.91.296c-.733 0-1.322-.002-1.91-.296c-.586-.293-1.027-.586-1.467-1.026c-.44-.44-.733-1.028-1.027-1.615c-.147-.587-.292-1.175-.292-1.91c0-.587-.002-1.322.292-1.91c.294-.587.586-1.173 1.027-1.614c.44-.44.88-.733 1.468-1.026c.587-.147 1.176-.296 1.91-.296c.88 0 1.615.002 2.202.296c.587.293 1.028.586 1.468 1.026l2.203-2.495c-.881-.734-1.617-1.174-2.644-1.468c-1.028-.294-2.201-.441-3.376-.441Zm72.53 0c-.44 0-.735.148-1.175.295c-.44.147-.734.587-.88.88a2.758 2.758 0 0 0-.296 1.173c0 .44.149.882.295 1.176c.294.44.44.733.88.88c.294.147.736.295 1.176.295c.44 0 .733-.148 1.173-.295c.44-.147.734-.44.88-.88c.148-.294.296-.735.296-1.176c0-.44-.002-.732-.295-1.173c-.294-.44-.44-.733-.88-.88a2.758 2.758 0 0 0-1.174-.295m-8.958.146c-.587 0-1.319.148-2.053.295c-.587.147-1.176.44-1.764.88c-.587.294-1.028.881-1.322 1.469c-.293.587-.438 1.322-.438 2.056s.145 1.466.438 1.907c.44.44.882.882 1.322 1.175c.44.294 1.028.588 1.615.734c.734.147 1.176.442 1.763.588c.588.294 1.029.44 1.322.734c.44.294.585.733.585 1.173c0 .294 0 .588-.146.734a1.148 1.148 0 0 1-.588.588c-.147.147-.44.296-.734.296c-.294.146-.587.146-.88.146c-.588 0-1.027-.148-1.615-.442c-.587-.293-1.028-.586-1.322-1.026l-2.202 2.494c.587.588 1.468 1.029 2.202 1.322c.734.294 1.617.442 2.644.442c.734 0 1.468-.001 2.349-.442c.587-.146 1.173-.44 1.76-.88c.441-.294.883-.88 1.176-1.468c.294-.587.442-1.322.442-2.202c0-.881-.148-1.616-.442-2.057c-.44-.44-.881-.882-1.322-1.175a5.424 5.424 0 0 0-1.614-.734c-.587-.147-1.027-.292-1.615-.44c-.587-.146-1.028-.293-1.322-.587c-.44-.294-.587-.735-.587-1.176c0-.293.148-.587.295-.734c.147-.147.291-.292.585-.439c.294-.146.44-.295.734-.295c.294-.147.44-.146.734-.146c.44 0 .882.148 1.322.295c.44.147.736.44 1.03.734l2.202-2.351c-.587-.587-1.322-.88-2.056-1.173c-.881-.147-1.617-.295-2.498-.295m8.958.149c.44 0 .733.145 1.027.292c.294.147.587.44.734.734c.147.294.293.733.293 1.027c0 .44-.146.736-.293 1.03a1.77 1.77 0 0 1-.734.734c-.294.146-.586.292-1.027.292c-.44 0-.735-.146-1.029-.292a1.77 1.77 0 0 1-.734-.734c-.147-.294-.293-.59-.293-1.03c0-.44.146-.733.293-1.027a1.77 1.77 0 0 1 .734-.734c.294-.146.736-.292 1.03-.292zm-63.132.146V38.16h3.082v-6.02h1.76l3.084 6.02v-.147h3.82l-3.82-6.314h.295c.88-.147 1.615-.585 2.202-1.32c.588-.733.88-1.615.88-2.643c0-.881-.147-1.615-.441-2.202a3.465 3.465 0 0 0-1.173-1.322a4.91 4.91 0 0 0-1.763-.734c-.735-.294-1.469-.293-2.203-.293zm19.379 0l-6.46 14.975h3.523l1.176-3.23h6.02l1.321 3.23v-.147h3.521L64.81 23.184Zm11.011 0v14.828h3.083V23.184zm6.9 0V38.16h9.25v-2.937h-6.018V23.184Zm24.96.439v2.79h.44V25.24h.293c.294 0 .295.146.442.146c.147 0 .146.146.146.293v.588h.588v-.588c0-.147-.146-.292-.146-.439c0-.147-.149-.295-.296-.295c.294-.147.442-.294.442-.588s-.146-.438-.292-.585c-.147-.147-.44-.15-.735-.15zm.44.441h.442c.147 0 .292.147.44.147c.146 0 .145.148.145.295s.001.293-.146.293c-.147.146-.292.146-.439.146h-.441zm-59.608 1.761h3.083c.294.147.587.149.88.295c.147.147.441.295.588.588c.147.294.293.586.293 1.027c0 .44-.146.733-.293 1.027c-.147.293-.44.44-.734.587c-.294 0-.587.147-.88.147h-2.937zm17.619 1.468l1.907 4.993H61.43zm-.147 17.034c-28.923 0-35.973.146-37.588.146c-.294 0-.439.292-.439.439c.147 1.468.147 3.526 1.468 8.224c1.028 3.817 3.378 7.341 5.727 10.278c1.321 1.615 4.55 4.697 6.165 6.019c1.469 1.174 3.67 2.643 5.432 3.524c1.321.734 4.698 2.054 5.726 2.495c1.468.734 3.525 2.35 4.846 4.258c.881 1.468 1.763 3.376 2.057 4.55c.146.735.292 1.908.292 3.23c0 3.23-.587 7.34-1.614 10.277c-1.175 3.23-1.91 4.407-3.378 7.637c-.588 1.468-1.175 2.788-1.469 3.375c-.146.294-.147.587.147.734c.44.587 1.175 1.617 2.643 2.498c2.496 1.321 7.636 1.76 10.132 1.76c2.496 0 7.782-.439 10.13-1.76c1.47-.734 2.202-1.91 2.642-2.498c.147-.294.146-.587.146-.734c-.293-.587-.88-2.054-1.468-3.375c-1.468-3.377-2.054-4.407-3.375-7.637c-1.028-2.936-1.615-7.047-1.615-10.277c0-1.322 0-2.495.293-3.23c.294-1.32 1.175-3.082 2.056-4.55c1.175-1.909 3.375-3.524 4.843-4.258c1.028-.588 4.406-1.761 5.727-2.495c1.615-.881 3.819-2.35 5.434-3.524c1.615-1.322 4.844-4.404 6.165-6.02c2.35-2.936 4.7-6.46 5.727-10.277c1.321-4.698 1.321-6.756 1.468-8.224c-.294-.147-.44-.439-.734-.439c-1.615 0-8.662-.146-37.586-.146m-37 14.24c-9.984 0-12.919.147-13.653.147c-.147 0-.295.148-.295.295c.147 1.028 0 2.202.88 5.139c.588 2.349 2.056 4.403 3.525 6.311c.88.881 2.789 2.937 3.816 3.67c1.028.735 2.35 1.616 3.378 2.203c.734.44 2.937 1.32 3.525 1.615c.88.44 2.202 1.469 2.936 2.643c.44.881 1.026 2.056 1.173 2.79c.147.441.149 1.176.149 2.057c0 1.908-.295 4.55-1.03 6.311c-.734 2.056-1.175 2.645-2.056 4.7c-.293.881-.733 1.613-.88 2.053c-.147.147-.147.295 0 .442c.294.294.734 1.028 1.615 1.468c1.615.881 4.699 1.176 6.314 1.176c1.615 0 4.846-.295 6.314-1.176c.881-.44 1.321-1.174 1.615-1.468v-.442c-.147-.293-.44-1.172-.88-2.053c-.881-2.055-1.322-2.644-2.057-4.7c-.734-1.762-1.029-4.403-1.029-6.311c0-.881.002-1.616.15-2.056c.293-.735.73-1.91 1.318-2.79c.734-1.175 2.056-2.204 2.937-2.644c.44-.294 1.763-.733 2.644-1.173a.458.458 0 0 0 0-.88C36.912 72.515 29.57 66.347 26.78 58.86c0-.147-.294-.293-.441-.293zm74.44 0c-.147 0-.442.146-.442.293c-2.936 7.634-10.277 13.803-19.967 17.18a.458.458 0 0 0 0 .88c.881.44 2.2.882 2.641 1.176c.881.44 2.202 1.466 2.937 2.64c.587.882 1.028 2.057 1.322 2.79c.146.441.146 1.176.146 2.057c0 1.909-.293 4.55-1.027 6.312c-.734 2.055-1.175 2.644-2.056 4.7c-.44.88-.733 1.762-.88 2.056v.438c.293.294.733 1.028 1.614 1.469c1.468.88 4.7 1.175 6.315 1.175c1.615 0 4.696-.295 6.311-1.175c.881-.441 1.324-1.175 1.618-1.469c.146-.147.146-.292 0-.438c-.147-.44-.59-1.176-.884-2.057c-.88-2.055-1.319-2.644-2.053-4.7c-.734-1.761-1.03-4.402-1.03-6.311c0-.881 0-1.616.147-2.056c.147-.734.735-1.91 1.176-2.79c.734-1.175 2.055-2.2 2.936-2.641c.587-.294 2.79-1.177 3.524-1.618c1.028-.587 2.348-1.468 3.375-2.202c1.028-.734 2.94-2.79 3.82-3.67c1.468-1.91 2.934-3.963 3.522-6.312c.88-2.937.736-4.111.883-5.139c-.147-.293-.149-.441-.296-.441c-.734 0-3.668-.147-13.652-.147\\\"/>\"\n\t\t},\n\t\t\"groovy\": {\n\t\t\t\"body\": \"<defs><path id=\\\"deviconGroovy0\\\" fill=\\\"#619cbc\\\" d=\\\"m98.204 91.48l-34.17-13.244l-34.168 13.242l13.491-21.11l-34.61-12.926l42.506.198L64.03 36.41l12.78 21.23l42.509-.194L84.71 70.37l13.493 21.11\\\"/><path id=\\\"deviconGroovy1\\\" d=\\\"M37.804 44.66c3.413 0 1.424 8.528.21 11.1c-1.04 2.201-3.38 5.377-6.153 5.377c-3.327 0-3.228-3.727-1.904-6.532c.717-1.52 1.82-3.222 3.338-4.474c-.39 1.307.925 2.2.393 3.325c-.363.769-1.114 1.609-1.504 2.436c-.631 1.337-.39 3.71 1.135 3.71c1.365 0 2.578-1.692 3.075-2.745c1.019-2.158 3.566-11.366.719-11.366c-3.28 0-8.93 7.99-10.113 10.497c-2.112 4.474-.58 9.984 4.231 9.984c3.252 0 5.926-3.126 7.218-5.862a14.931 14.931 0 0 0 1.353-4.781l.632-.116c.139 4.21 4.592 11.18 2.697 15.196c-2.427 5.14-9.681 5.094-13.824 6.918c-.87-2.037-2.05-3.93-3.711-5.376c3.695-1.243 12.775-3.33 14.75-7.512c.83-1.758.264-4.671-.694-5.659a10.916 10.916 0 0 1-.689 1.89c-1.69 3.58-5.31 6.357-9.041 6.357c-5.196 0-7.398-3.733-4.953-8.913c1.467-3.109 8.96-13.455 12.835-13.455\\\"/><path id=\\\"deviconGroovy2\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M37.804 44.66c3.413 0 1.424 8.528.21 11.1c-1.04 2.201-3.38 5.377-6.153 5.377c-3.327 0-3.228-3.727-1.904-6.532c.717-1.52 1.82-3.222 3.338-4.474c-.39 1.307.925 2.2.393 3.325c-.363.769-1.114 1.609-1.504 2.436c-.631 1.337-.39 3.71 1.135 3.71c1.365 0 2.578-1.692 3.075-2.745c1.019-2.158 3.566-11.366.719-11.366c-3.28 0-8.93 7.99-10.113 10.497c-2.112 4.474-.58 9.984 4.231 9.984c3.252 0 5.926-3.126 7.218-5.862a14.931 14.931 0 0 0 1.353-4.781l.632-.116c.139 4.21 4.592 11.18 2.697 15.196c-2.427 5.14-9.681 5.094-13.824 6.918c-.87-2.037-2.05-3.93-3.711-5.376c3.695-1.243 12.775-3.33 14.75-7.512c.83-1.758.264-4.671-.694-5.659a10.916 10.916 0 0 1-.689 1.89c-1.69 3.58-5.31 6.357-9.041 6.357c-5.196 0-7.398-3.733-4.953-8.913c1.467-3.109 8.96-13.455 12.835-13.455z\\\"/><path id=\\\"deviconGroovy3\\\" d=\\\"M46.681 57.002c.206.508.803 3.38 1.256 3.38c.979 0 2.748-2.663 3.222-3.355c.87.57.388 1.767 2 1.767c.73 0 1.098-1.573 1.858-1.599c.026.636.067 1.211-.28 1.946c-.534 1.132-1.886 2.666-3.215 2.666c-.953 0-2.279-1.146-2.54-1.146c-.282 0-.802.132-.967.483c-.693 1.467 1.158 6.363 3.014 6.363c.992 0 2.175-.728 3.213-1.176c-.27 1.764-.308 3.251.05 4.77a5.674 5.674 0 0 1-2.942.85c-4.56 0-2.045-10.605-6.25-12.865l1.58-2.084\\\"/><path id=\\\"deviconGroovy4\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M46.681 57.002c.206.508.803 3.38 1.256 3.38c.979 0 2.748-2.663 3.222-3.355c.87.57.388 1.767 2 1.767c.73 0 1.098-1.573 1.858-1.599c.026.636.067 1.211-.28 1.946c-.534 1.132-1.886 2.666-3.215 2.666c-.953 0-2.279-1.146-2.54-1.146c-.282 0-.802.132-.967.483c-.693 1.467 1.158 6.363 3.014 6.363c.992 0 2.175-.728 3.213-1.176c-.27 1.764-.308 3.251.05 4.77a5.674 5.674 0 0 1-2.942.85c-4.56 0-2.045-10.605-6.25-12.865z\\\"/><path id=\\\"deviconGroovy5\\\" d=\\\"M64.209 56.154c3.447 0 4.808 6.2 3.261 9.476c-1.2 2.542-3.327 4.384-6.052 4.384c-4.812 0-4.21-6.56-2.332-10.538c.518-1.096 2.287-3.484 3.67-3.484c.51 0 .93.162 1.453.162m-.107.579c-.542 0-1.02.268-1.27.802c-.53 1.118 2.105 2.25 1.727 3.051c-.238.504-1.144.976-1.601.976c-2.284 0-2.265-2.972-.903-4.908c-.847.539-1.402 1.363-1.762 2.127c-1.338 2.835-.276 6.734 2.778 6.734c1.688 0 3.631-1.516 4.387-3.117c.93-1.968-1.448-5.665-3.356-5.665\\\"/><path id=\\\"deviconGroovy6\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M64.209 56.154c3.447 0 4.808 6.2 3.261 9.476c-1.2 2.542-3.327 4.384-6.052 4.384c-4.812 0-4.21-6.56-2.332-10.538c.518-1.096 2.287-3.484 3.67-3.484c.51 0 .93.162 1.453.162z\\\"/><path id=\\\"deviconGroovy7\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M64.101 56.733c-.542 0-1.02.268-1.271.802c-.528 1.119 2.106 2.25 1.728 3.051c-.238.504-1.144.976-1.601.976c-2.284 0-2.265-2.972-.903-4.908c-.847.54-1.402 1.363-1.762 2.127c-1.339 2.835-.277 6.735 2.778 6.735c1.687 0 3.631-1.517 4.387-3.117c.93-1.968-1.448-5.666-3.356-5.666z\\\"/><path id=\\\"deviconGroovy8\\\" d=\\\"M79.875 66.36c-.901 1.908-2.58 2.955-4.47 2.955c-5.997 0-7.187-5.469-4.587-10.975c.613-1.3 1.62-2.737 3.159-2.737c4.818 0 8.174 5.933 5.897 10.757zM75.09 56.293c-.443 0-.83.16-1.043.61c-.466.989 2.072 1.87 2.075 2.892c-.265.314-1.007.665-1.33.665c-1.828 0-3.208-2.478-1.647-4.32c-.634.403-1.01 1.005-1.277 1.57c-1.582 3.352.673 6.74 3.96 6.74c1.368 0 3.13-.76 3.841-2.266c1.006-2.13-2.576-5.89-4.58-5.89\\\"/><path id=\\\"deviconGroovy9\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M79.875 66.36c-.901 1.908-2.58 2.955-4.47 2.955c-5.997 0-7.187-5.469-4.587-10.975c.613-1.3 1.62-2.737 3.159-2.737c4.818 0 8.174 5.933 5.897 10.757z\\\"/><path id=\\\"deviconGroovya\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M75.089 56.294c-.442 0-.83.16-1.043.61c-.466.988 2.072 1.87 2.076 2.892c-.265.313-1.008.665-1.331.665c-1.828 0-3.208-2.478-1.647-4.32c-.633.402-1.01 1.004-1.277 1.57c-1.582 3.352.674 6.74 3.96 6.74c1.368 0 3.131-.76 3.842-2.266c1.005-2.13-2.576-5.89-4.58-5.89z\\\"/><path id=\\\"deviconGroovyb\\\" d=\\\"M86.077 56.262c5.168 0 7.795 9.484 5.485 14.376c-.441.935-1.264 1.87-2.35 1.87c-5.904 0-4.397-11.737-7.72-15.072c.303-.323.594-.66.861-1c2.246 2.635 1.13 9.572 5.927 9.572c1.105 0 1.941-.967 2.387-1.912c1.191-2.523-1.013-6.906-3.426-6.906c-.024 0-.37.014-.363.154c.09 1.611 1.356.607.08 3.348c-1.303-.26-2.684-2.353-1.971-3.863c.21-.444.734-.567 1.09-.567\\\"/><path id=\\\"deviconGroovyc\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M86.077 56.262c5.168 0 7.795 9.484 5.485 14.376c-.441.935-1.264 1.87-2.35 1.87c-5.904 0-4.397-11.737-7.72-15.072c.303-.323.594-.66.861-1c2.246 2.635 1.13 9.572 5.927 9.572c1.105 0 1.941-.967 2.387-1.912c1.191-2.523-1.013-6.906-3.426-6.906c-.024 0-.37.014-.363.154c.09 1.611 1.356.607.08 3.348c-1.303-.26-2.684-2.353-1.971-3.863c.21-.444.734-.567 1.09-.567z\\\"/><path id=\\\"deviconGroovyd\\\" d=\\\"M98.927 56.154c.487.046 1.218.002 1.636.13c.078.023.019.121.032.199c.127.716.327 1.396.5 2.089c.673 2.698 1.078 5.468 1.85 8.142c.841 2.912 1.718 6.194.7 9.848c-.1.357-.233.72-.405 1.085c-1.154 2.445-11.091 5.262-13.686 5.262c-.315 0-.655-.09-.805-.295c1.094-.696 1.78-1.41 2.27-2.446c.585-1.242.577-2.406.5-3.477c.207.12 7.842-.068 8.118-.068c1.123 0 2.086-1.085 2.536-2.04c.827-1.751.686-3.539.543-5.031a23.224 23.224 0 0 0-.312-2.2l-.21-1.036l-.027-.113l-.026-.114c.125 0 .013.22.018.331c.077 1.806.044 4.328-.926 6.384c-.451.955-1.189 1.94-2.32 1.94c-4.963 0-2.467-14.074-6.444-17.42c.22-.363.417-.738.582-1.105c2.353 2.842 2.477 10.677 5.94 10.677c.84 0 1.71-.788 2.067-1.545c1.539-3.26-1.017-7.057-2.13-9.197\\\"/><path id=\\\"deviconGroovye\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M98.927 56.154c.487.046 1.218.002 1.636.13c.078.023.019.121.032.199c.127.716.327 1.396.5 2.089c.673 2.698 1.078 5.468 1.85 8.142c.841 2.912 1.718 6.194.7 9.848c-.1.357-.233.72-.405 1.085c-1.154 2.445-11.091 5.262-13.686 5.262c-.315 0-.655-.09-.805-.295c1.094-.696 1.78-1.41 2.27-2.446c.585-1.242.577-2.406.5-3.477c.207.12 7.842-.068 8.118-.068c1.123 0 2.086-1.085 2.536-2.04c.827-1.751.686-3.539.543-5.031a23.224 23.224 0 0 0-.312-2.2l-.21-1.036l-.027-.113l-.026-.114c.125 0 .013.22.018.331c.077 1.806.044 4.328-.926 6.384c-.451.955-1.189 1.94-2.32 1.94c-4.963 0-2.467-14.074-6.444-17.42c.22-.363.417-.738.582-1.105c2.353 2.842 2.477 10.677 5.94 10.677c.84 0 1.71-.788 2.067-1.545c1.539-3.26-1.017-7.057-2.13-9.197z\\\"/><path id=\\\"deviconGroovyf\\\" d=\\\"M98.927 56.154c.487.046 1.218.002 1.636.13c.078.023.019.121.032.199c.127.716.327 1.396.5 2.089c.673 2.698 1.078 5.468 1.85 8.142c.841 2.912 1.718 6.194.7 9.848c-.1.357-.233.72-.405 1.085c-1.154 2.445-4.12 4.772-6.716 4.772c-.315 0-.655-.09-.806-.294c1.096-.696 1.78-1.41 2.27-2.446c.587-1.243.578-2.407.5-3.478c.208.12.873.422 1.15.422c1.122 0 2.085-1.085 2.536-2.04c.827-1.751.685-3.539.542-5.031a23.224 23.224 0 0 0-.312-2.2l-.21-1.036l-.027-.113l-.026-.114c.126 0 .013.22.018.331c.077 1.806.045 4.328-.926 6.384c-.45.955-1.188 1.94-2.32 1.94c-4.963 0-2.467-14.074-6.444-17.42c.22-.363.417-.738.582-1.105c2.354 2.842 2.477 10.677 5.94 10.677c.841 0 1.71-.788 2.067-1.545c1.54-3.26-1.017-7.057-2.13-9.197\\\"/><path id=\\\"deviconGroovyg\\\" fill=\\\"none\\\" stroke=\\\"#000\\\" d=\\\"M98.927 56.154c.487.046 1.218.002 1.636.13c.078.023.019.121.032.199c.127.716.327 1.396.5 2.089c.673 2.698 1.078 5.468 1.85 8.142c.841 2.912 1.718 6.194.7 9.848c-.1.357-.233.72-.405 1.085c-1.154 2.445-4.12 4.772-6.716 4.772c-.315 0-.655-.09-.806-.294c1.096-.696 1.78-1.41 2.27-2.446c.587-1.243.578-2.407.5-3.478c.208.12.873.422 1.15.422c1.122 0 2.085-1.085 2.536-2.04c.827-1.751.685-3.539.542-5.031a23.224 23.224 0 0 0-.312-2.2l-.21-1.036l-.027-.113l-.026-.114c.126 0 .013.22.018.331c.077 1.806.045 4.328-.926 6.384c-.45.955-1.188 1.94-2.32 1.94c-4.963 0-2.467-14.074-6.444-17.42c.22-.363.417-.738.582-1.105c2.354 2.842 2.477 10.677 5.94 10.677c.841 0 1.71-.788 2.067-1.545c1.54-3.26-1.017-7.057-2.13-9.197z\\\"/><path id=\\\"deviconGroovyh\\\" d=\\\"M37.804 44.66c3.413 0 1.424 8.528.21 11.1c-1.04 2.201-3.38 5.377-6.153 5.377c-3.327 0-3.228-3.727-1.904-6.532c.717-1.52 1.82-3.222 3.338-4.474c-.39 1.307.925 2.2.393 3.325c-.363.769-1.114 1.609-1.504 2.436c-.631 1.337-.39 3.71 1.135 3.71c1.365 0 2.578-1.692 3.075-2.745c1.019-2.158 3.566-11.366.719-11.366c-3.28 0-8.93 7.99-10.113 10.497c-2.112 4.474-.58 9.984 4.231 9.984c3.252 0 5.926-3.126 7.218-5.862a14.931 14.931 0 0 0 1.353-4.781l.632-.116c.139 4.21 4.592 11.18 2.697 15.196c-2.427 5.14-9.681 5.094-13.824 6.918c-.87-2.037-2.05-3.93-3.711-5.376c3.695-1.243 12.775-3.33 14.75-7.512c.83-1.758.264-4.671-.694-5.659a10.916 10.916 0 0 1-.689 1.89c-1.69 3.58-5.31 6.357-9.041 6.357c-5.196 0-7.398-3.733-4.953-8.913c1.467-3.109 8.96-13.455 12.835-13.455m8.877 12.343c.206.508.803 3.38 1.256 3.38c.979 0 2.748-2.663 3.222-3.355c.87.57.388 1.767 2 1.767c.73 0 1.098-1.573 1.858-1.599c.026.636.067 1.211-.28 1.946c-.534 1.132-1.886 2.666-3.215 2.666c-.953 0-2.279-1.146-2.54-1.146c-.282 0-.802.132-.967.483c-.693 1.467 1.158 6.363 3.014 6.363c.992 0 2.175-.728 3.213-1.176c-.27 1.764-.308 3.251.05 4.77a5.674 5.674 0 0 1-2.942.85c-4.56 0-2.045-10.605-6.25-12.865z\\\"/><path id=\\\"deviconGroovyi\\\" d=\\\"M64.209 56.154c3.447 0 4.808 6.2 3.261 9.476c-1.2 2.542-3.327 4.384-6.052 4.384c-4.812 0-4.21-6.56-2.332-10.538c.518-1.096 2.287-3.484 3.67-3.484c.51 0 .93.162 1.453.162m-.107.579c-.542 0-1.02.268-1.27.802c-.53 1.118 2.105 2.25 1.727 3.051c-.238.504-1.144.976-1.601.976c-2.284 0-2.265-2.972-.903-4.908c-.847.539-1.402 1.363-1.762 2.127c-1.338 2.835-.276 6.734 2.778 6.734c1.688 0 3.631-1.516 4.387-3.117c.93-1.968-1.448-5.665-3.356-5.665m15.773 9.627c-.901 1.908-2.58 2.955-4.47 2.955c-5.997 0-7.187-5.469-4.587-10.975c.613-1.3 1.62-2.737 3.159-2.737c4.818 0 8.174 5.933 5.897 10.757zM75.09 56.293c-.443 0-.83.16-1.043.61c-.466.989 2.072 1.87 2.075 2.892c-.265.314-1.007.665-1.33.665c-1.828 0-3.208-2.478-1.647-4.32c-.634.403-1.01 1.005-1.277 1.57c-1.582 3.352.673 6.74 3.96 6.74c1.368 0 3.13-.76 3.841-2.266c1.006-2.13-2.576-5.89-4.58-5.89\\\"/><path id=\\\"deviconGroovyj\\\" d=\\\"M98.927 56.154c.487.046 1.218.002 1.636.13c.078.023.019.121.032.199c.127.716.327 1.396.5 2.089c.673 2.698 1.078 5.468 1.85 8.142c.841 2.912 1.718 6.194.7 9.848c-.1.357-.233.72-.405 1.085c-3.87 7.432-12.151 5.43-14.745 5.43c-.315 0-.656-.09-.806-.295c1.094-.696 1.78-1.41 2.27-2.446c.586-1.243.577-2.406.5-3.478c.207.121.872.422 1.148.422c1.123 0 7.378 3.214 10.567-2.696c.827-1.752.685-3.54.542-5.032a23.224 23.224 0 0 0-.312-2.2l-.21-1.036l-.027-.113l-.026-.113c.126 0 .013.22.018.33c.077 1.807.045 4.328-.926 6.384c-.45.955-1.188 1.94-2.32 1.94c-4.963 0-2.467-14.074-6.444-17.42c.22-.363.417-.738.582-1.105c2.354 2.842 2.477 10.677 5.94 10.677c.841 0 1.71-.787 2.068-1.545c1.538-3.26-1.018-7.056-2.132-9.197\\\"/></defs><path d=\\\"M103.555 95.851L64 80.52L24.446 95.847l15.618-24.436L0 56.447l49.208.23L63.999 32.1l14.794 24.578L128 56.453l-40.065 14.96z\\\"/><use href=\\\"#deviconGroovy0\\\"/><use href=\\\"#deviconGroovy1\\\"/><use href=\\\"#deviconGroovy2\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy3\\\"/><use href=\\\"#deviconGroovy4\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy5\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy6\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy7\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy8\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy9\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovya\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovyb\\\"/><use href=\\\"#deviconGroovyc\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovyd\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovye\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy1\\\"/><use href=\\\"#deviconGroovy2\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy3\\\"/><use href=\\\"#deviconGroovy4\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy5\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy6\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy7\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy8\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy9\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovya\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovyb\\\"/><use href=\\\"#deviconGroovyc\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovyf\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovyg\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy1\\\"/><use href=\\\"#deviconGroovy2\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy3\\\"/><use href=\\\"#deviconGroovy4\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy5\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy6\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy7\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy8\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy9\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovya\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovyb\\\"/><use href=\\\"#deviconGroovyc\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovyf\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovyg\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><g fill=\\\"#fff\\\"><use href=\\\"#deviconGroovyh\\\"/><use href=\\\"#deviconGroovyi\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovyb\\\"/><use href=\\\"#deviconGroovyj\\\" fill-rule=\\\"evenodd\\\"/></g><path d=\\\"m103.493 95.913l-39.525-15.35l-39.525 15.346l15.606-24.464L.013 56.463l49.172.23l14.781-24.605L78.75 56.694l49.172-.225l-40.036 14.978l15.609 24.466\\\"/><use href=\\\"#deviconGroovy0\\\"/><use href=\\\"#deviconGroovy1\\\"/><use href=\\\"#deviconGroovy2\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy3\\\"/><use href=\\\"#deviconGroovy4\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy5\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy6\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy7\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy8\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy9\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovya\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovyb\\\"/><use href=\\\"#deviconGroovyc\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovyd\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovye\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy1\\\"/><use href=\\\"#deviconGroovy2\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy3\\\"/><use href=\\\"#deviconGroovy4\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy5\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy6\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy7\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy8\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy9\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovya\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovyb\\\"/><use href=\\\"#deviconGroovyc\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovyf\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovyg\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\".477\\\"/><use href=\\\"#deviconGroovy1\\\"/><use href=\\\"#deviconGroovy2\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy3\\\"/><use href=\\\"#deviconGroovy4\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy5\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy6\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy7\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovy8\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovy9\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovya\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovyb\\\"/><use href=\\\"#deviconGroovyc\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><use href=\\\"#deviconGroovyf\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovyg\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"3.864\\\" stroke-width=\\\"5.718\\\"/><g fill=\\\"#fff\\\"><use href=\\\"#deviconGroovyh\\\"/><use href=\\\"#deviconGroovyi\\\" fill-rule=\\\"evenodd\\\"/><use href=\\\"#deviconGroovyb\\\"/><use href=\\\"#deviconGroovyj\\\" fill-rule=\\\"evenodd\\\"/></g>\"\n\t\t},\n\t\t\"grpc\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconGrpc0\\\" x1=\\\"64.014\\\" x2=\\\"86.854\\\" y1=\\\"34.66\\\" y2=\\\"33.586\\\" gradientTransform=\\\"translate(-1.256 36.208)scale(.4556)\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconGrpc1\\\"/><linearGradient id=\\\"deviconGrpc1\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00b5b2\\\"/><stop offset=\\\".13\\\" stop-color=\\\"#00b9b6\\\"/><stop offset=\\\".275\\\" stop-color=\\\"#1cbcba\\\"/><stop offset=\\\".486\\\" stop-color=\\\"#44c1bf\\\"/><stop offset=\\\".646\\\" stop-color=\\\"#57c4c3\\\"/><stop offset=\\\".79\\\" stop-color=\\\"#63c7c6\\\"/><stop offset=\\\".901\\\" stop-color=\\\"#6cc9c8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#72cbca\\\"/></linearGradient><linearGradient id=\\\"deviconGrpc2\\\" x1=\\\"2.757\\\" x2=\\\"41.697\\\" y1=\\\"37.542\\\" y2=\\\"41.545\\\" gradientTransform=\\\"translate(-1.256 29.83)scale(.4556)\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconGrpc3\\\"/><linearGradient id=\\\"deviconGrpc3\\\"><stop offset=\\\"0\\\" stop-color=\\\"#71caca\\\"/><stop offset=\\\".122\\\" stop-color=\\\"#66c7c7\\\"/><stop offset=\\\".243\\\" stop-color=\\\"#57c4c3\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#34bebd\\\"/><stop offset=\\\".52\\\" stop-color=\\\"#00bab7\\\"/><stop offset=\\\".595\\\" stop-color=\\\"#00b6b3\\\"/><stop offset=\\\".679\\\" stop-color=\\\"#00b2ae\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00b0ad\\\"/></linearGradient></defs><path fill=\\\"url(#deviconGrpc0)\\\" d=\\\"m33.092 41.594l-5.184 5.222L33.131 52l5.183-5.223z\\\"/><path fill=\\\"url(#deviconGrpc2)\\\" d=\\\"M8.838 38.03L0 46.935l8.937 8.838l8.804-8.904Z\\\"/><path fill=\\\"#fff\\\" d=\\\"m13.788 41.52l-4.56.018l-5.352 5.392l5.391 5.352l4.561-.017l-4.782-4.745l23.619-.088l-2.07 2.084l2.28-.008l2.676-2.696l-2.696-2.676l-2.28.009l2.085 2.069l-23.619.087zm101.703 2.324c-2.515 0-4.847.447-6.996 1.338s-4.01 2.124-5.586 3.7c-1.576 1.575-2.81 3.446-3.7 5.61c-.893 2.165-1.337 4.536-1.337 7.114c0 2.579.444 4.951 1.336 7.116c.89 2.164 2.125 4.034 3.701 5.61c1.576 1.576 3.437 2.81 5.586 3.7c2.149.89 4.48 1.337 6.996 1.337c1.4 0 2.728-.16 3.986-.477a16.477 16.477 0 0 0 3.51-1.313a13.433 13.433 0 0 0 2.889-1.982A13.111 13.111 0 0 0 128 73.162l-2.817-2.005c-.637.987-1.329 1.807-2.076 2.459a9.755 9.755 0 0 1-2.388 1.552c-.844.382-1.703.652-2.578.811a14.76 14.76 0 0 1-2.65.239c-2.165 0-4.107-.397-5.826-1.194c-1.72-.795-3.175-1.862-4.369-3.2c-1.193-1.336-2.11-2.887-2.746-4.654a16.278 16.278 0 0 1-.954-5.564c0-1.94.318-3.796.954-5.562c.637-1.767 1.553-3.319 2.746-4.656c1.194-1.337 2.65-2.403 4.369-3.199c1.719-.795 3.66-1.193 5.826-1.193c.89 0 1.782.127 2.674.382c.89.255 1.726.59 2.506 1.003c.78.414 1.472.891 2.077 1.432c.605.542 1.082 1.082 1.433 1.623l3.007-2.244c-1.496-1.91-3.294-3.278-5.395-4.107c-2.1-.827-4.201-1.24-6.302-1.24zm-71.527.86V78.51h3.438V62.8h5.73l9.263 15.71h4.202l-9.741-16.044c2.8-.254 4.943-1.186 6.423-2.793c1.48-1.607 2.22-3.588 2.22-5.944c0-3.024-.995-5.284-2.984-6.781c-1.99-1.496-4.704-2.244-8.142-2.244zm28.553 0V78.51h3.439V62.8h6.398c3.437 0 6.151-.756 8.14-2.268c1.99-1.511 2.984-3.779 2.984-6.803s-.994-5.284-2.983-6.781c-1.99-1.496-4.704-2.244-8.141-2.244zm-25.115 3.152h6.112c1.528 0 2.824.15 3.891.452c1.066.303 1.918.725 2.555 1.266c.636.542 1.098 1.17 1.384 1.886c.287.716.43 1.473.43 2.269c0 .828-.143 1.599-.43 2.315a4.621 4.621 0 0 1-1.384 1.862c-.637.525-1.489.948-2.555 1.266c-1.067.318-2.363.477-3.891.477h-6.112zm28.554 0h5.538c1.528 0 2.824.15 3.891.452c1.066.303 1.918.725 2.555 1.266c.636.542 1.098 1.17 1.385 1.886a6.05 6.05 0 0 1 .43 2.269c0 .828-.144 1.599-.43 2.315a4.623 4.623 0 0 1-1.385 1.862c-.637.525-1.489.948-2.555 1.266c-1.067.318-2.363.477-3.891.477h-5.538zM22.669 55.59c-1.655 0-3.176.295-4.56.884a10.66 10.66 0 0 0-3.581 2.46a11.658 11.658 0 0 0-2.364 3.675c-.573 1.401-.86 2.913-.86 4.537c0 1.623.303 3.136.908 4.536a10.872 10.872 0 0 0 2.482 3.605a11.6 11.6 0 0 0 3.701 2.363c1.416.573 2.937.86 4.56.86a11.49 11.49 0 0 0 4.632-.955c1.464-.636 2.705-1.72 3.724-3.247h.095v4.011c0 1.21-.15 2.347-.452 3.414a7.274 7.274 0 0 1-1.481 2.793c-.685.795-1.584 1.425-2.698 1.887c-1.115.46-2.467.69-4.059.69c-1.814 0-3.462-.373-4.942-1.12c-1.48-.748-2.682-1.743-3.605-2.985l-2.34 2.483c1.433 1.528 3.025 2.657 4.776 3.39c1.75.732 3.74 1.098 5.968 1.098c2.514 0 4.552-.381 6.112-1.145c1.56-.764 2.777-1.72 3.653-2.865a9.553 9.553 0 0 0 1.766-3.772c.303-1.37.454-2.658.454-3.868V56.163h-3.152v3.725h-.095c-.637-.86-1.32-1.568-2.053-2.125a10.46 10.46 0 0 0-2.22-1.313a10.06 10.06 0 0 0-2.245-.669a12.746 12.746 0 0 0-2.124-.19zm.382 2.865c1.305 0 2.483.232 3.533.693c1.05.461 1.942 1.082 2.674 1.862a7.968 7.968 0 0 1 1.672 2.721a9.51 9.51 0 0 1 .573 3.32c.03 1.305-.168 2.482-.598 3.532a7.61 7.61 0 0 1-1.838 2.699a8.665 8.665 0 0 1-2.745 1.742a8.718 8.718 0 0 1-3.271.62c-1.178 0-2.269-.23-3.271-.69a8.542 8.542 0 0 1-2.626-1.863a8.718 8.718 0 0 1-1.767-2.722a8.556 8.556 0 0 1-.645-3.319c0-1.177.216-2.284.645-3.319a8.734 8.734 0 0 1 1.767-2.72a8.566 8.566 0 0 1 2.626-1.863c1.002-.461 2.093-.693 3.27-.693z\\\"/>\"\n\t\t},\n\t\t\"grunt\": {\n\t\t\t\"body\": \"<path fill=\\\"#493310\\\" fill-rule=\\\"evenodd\\\" d=\\\"M95.829 88.914c3.585-2.669 5.424-6.045 6.278-10.224c4.158 4.112 5.623 8.948 5.28 14.41c-.465 7.407-3.867 12.805-10.891 15.705c-.55.228-1.046.827-1.349 1.375c-3.292 5.965-8.135 9.74-14.96 10.819c-.572.09-1.143.416-1.635.749c-8.116 5.477-21.017 5.457-29.175-.038a4.822 4.822 0 0 0-1.828-.738c-6.137-1.061-10.799-4.298-13.954-9.611c-.917-1.546-1.983-2.586-3.641-3.343c-11.845-5.406-11.643-22.932-4.233-29.038c.723 1.785 1.281 3.66 2.215 5.326c.942 1.681 2.256 3.153 3.407 4.717l.564-.154c.195-1.959.455-3.914.568-5.877c.159-2.764.28-5.535.288-8.304c.01-3.38-1.254-6.012-4.446-7.656c-2.337-1.204-4.67-2.537-6.704-4.184c-4.972-4.026-4.846-9.453.18-13.347c1.207-.934 1.923-2.001 2.064-3.511c.297-3.182.797-6.355-1.482-9.161c-.632-.778-.95-1.858-1.252-2.849c-1.472-4.817.898-8.657 5.89-9.44c1.439-.226 2.222-.598 2.394-2.273c.307-2.985-.334-5.035-3.084-6.473c-2.189-1.146-4.63-1.812-7.047-2.725C22.1 9.011 26.3 7.161 31.222 6.864c6.508-.394 11.61 2.577 15.951 7.134c.721.756 1.324 1.63 2.083 2.342c.375.353.993.645 1.472.606c.249-.021.584-.809.624-1.271c.326-3.821 2.052-6.905 4.869-9.419c.48-.428 1.088-.713 1.649-1.072l1.382 6.472l.6-.006c.99-5.185 4.528-7.827 9.161-9.493c-.097 1.552-.324 3.006-.239 4.441c.083 1.375.488 2.732.803 4.359c2.635-1.838 4.929-3.746 7.934-3.667c-.647 2.462-1.35 4.859-1.888 7.293c-.276 1.249.069 2.433 1.658 2.4c.581-.012 1.298-.465 1.701-.934c3.424-3.979 7.22-7.383 12.502-8.692c6.737-1.67 13.518.59 17.356 5.953c-.729.179-1.415.292-2.062.518c-1.671.586-3.442 1.015-4.96 1.88c-3.216 1.833-3.731 3.565-2.961 7.677c.07.371.66.762 1.09.92c.683.25 1.452.256 2.155.464c4.107 1.209 6.069 4.611 4.896 8.717a16.461 16.461 0 0 1-1.876 4.177c-2.089 3.325-1.314 6.75-.458 10.14c.19.751 1.187 1.348 1.896 1.913c4.33 3.451 4.747 8.714.589 12.396c-2.313 2.048-5.117 3.585-7.829 5.126c-2.491 1.415-3.956 3.483-3.964 6.208c-.021 5.155.295 10.311.473 15.468m-17.901-8.872l-.02.015a.304.304 0 0 0 .112.285l.313.75c1.112 2.919 2.178 5.857 3.347 8.752c1.395 3.457.43 3.329 4.852 2.93l3.656-.669c1.913-.037 2.411-.992 2.261-2.854c-.366-4.526-.499-9.071-.755-13.607c-.327-5.783 1.935-9.909 7.354-12.362c1.968-.891 3.84-2.261 5.368-3.798c2.324-2.339 1.663-5.892-1.174-7.519l-.244 2.003c-2.154-3.37-2.778-6.792-3.341-10.236l-.058-1.837a.282.282 0 0 0 .027-.346l.879-6.657l.34.05l.495 2.085c.711-1.244 1.296-2.104 1.718-3.035c1.656-3.664.166-6.115-3.903-6.062c-2.426.031-4.901.391-7.256.988c-6.147 1.559-11.187 5.234-16.205 8.906c-.501.367-1.026.703-1.54 1.053l-.238-.278l2.604-3.729l.641-.748a.351.351 0 0 0 .161-.241l9.737-7.8l-5.92-3.158l-.08.013l-.429-.317c-6.837-3.207-14.108-3.861-21.441-2.985c-4.021.48-7.921 1.971-11.876 3.005c-2.329.905-4.544 1.985-6.054 3.649l9.732 7.91l-.004-.016l.351.483l2.74 3.949c-3.093-1.732-5.883-3.707-8.754-5.557c-4.446-2.864-9.268-4.779-14.585-5.153c-2.251-.158-4.912-.428-6.082 1.983c-1.211 2.496.439 4.702 1.83 6.753c.052.077.214.08.394.141l.225-1.946c.449.953.726 1.895.836 2.856c.216 1.886.34 3.783.503 5.676c-.367 1.793-.607 3.626-1.137 5.37c-.541 1.781-1.366 3.475-2.067 5.208l-.399-.185l-.115-1.783c-3.2 1.951-3.384 5.95-.309 8.402c1.858 1.481 3.981 2.67 6.093 3.787c3.973 2.1 5.779 5.461 5.716 9.782c-.071 4.974-.372 9.946-.658 14.915c-.154 2.674-.234 2.67 2.196 3.238l4.008.685c1.275-.103 2.919 1.074 3.694-.819c1.53-3.735 2.938-7.52 4.396-11.284a.494.494 0 0 0 .091-.3l.371-.789l1.484-2.832l.443.156c-.663 6.637-3.001 12.894-4.993 19.399c11.109 0 21.915.001 32.72-.006c.174 0 .347-.083.463-.113l-5.401-20.483l.608-.187l2.013 4.064zm12.658 30.609c-4.079-.202-5.498.998-6.464 5.601c2.658-1.411 4.987-3 6.436-5.625l.056-.138zm11.852-23.638c-3.496 7.166-10.123 8.802-17.019 9.588l3.291 6.277l-.511 4.114c5.525-.342 10.373-2 13.492-6.758c2.904-4.432 2.777-9.332 1.235-14.321zm-77.224-.562c-.02-.116-.022-.324-.064-.333c-.126-.026-.383.012-.388.05c-.262 2.045-.738 4.098-.703 6.142c.122 7.133 3.973 12.004 10.859 13.893c1.583.434 3.245.582 4.938.874l-.625-4.198l3.395-6.311c-7.302-.684-13.935-2.694-17.412-10.117m57.22 24.912l.394-.725c.587-1.341 1.273-2.649 1.744-4.029c1.516-4.451-.194-6.876-4.903-7.07a21.765 21.765 0 0 0-.921-.018c-9.829-.001-19.658-.011-29.486.014c-.972.002-1.965.115-2.911.337c-2.918.685-4.064 2.405-3.295 5.288c.5 1.877 1.388 3.651 2.102 5.472l.37.678l.277.457c1.599 2.067 2.877 4.529 4.854 6.129c6.5 5.262 13.94 5.696 21.585 3.03c4.715-1.645 8.111-4.97 10.191-9.562zm19.333-99.527c-7.302-3.192-14.822-.398-19.156 7.122l2.544 1.235c3.333-4.952 7.951-8.023 13.699-7.434c.815.084 1.701-.518 2.913-.923m-75.06.311c1.085.205 2.172.595 3.255.581c3.265-.044 6.236.738 8.7 2.911c1.542 1.359 2.908 2.918 4.429 4.466l2.321-1.191c-3.911-7.178-11.964-10.332-18.705-6.767m69.116 3.548c-.308.048-.834.085-1.335.219c-2.59.693-4.169 2.517-5.121 4.884c-.291.723-.451 1.907-.063 2.41c.805 1.044 1.511 2.477 3.513 1.8c1.343-.454 1.697-1.23 1.884-2.352c.369-2.214.716-4.432 1.122-6.961m-63.702.101c.3 1.698.586 3.301.865 4.904c.146.843.263 1.69.422 2.53c.334 1.752 2.019 2.214 3.07 1.862c1.105-.37 2.492-1.801 2.598-2.883c.287-2.925-3.853-6.43-6.955-6.413m5.201 94.87c1.622 2.41 3.773 4.262 6.916 5.677c-1.702-3.114-2.233-6.847-6.916-5.677\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#F5A900\\\" fill-rule=\\\"evenodd\\\" d=\\\"M28.444 43.369c-.163-1.894-.287-3.79-.503-5.676a9.068 9.068 0 0 0-.836-2.856l-.225 1.946c-.18-.061-.342-.063-.394-.141c-1.391-2.051-3.041-4.257-1.83-6.753c1.17-2.411 3.831-2.141 6.082-1.983c5.317.375 10.14 2.29 14.585 5.153c2.871 1.85 5.661 3.825 8.754 5.557l-2.74-3.949l-.351-.482l.005.016c-.604-1.435-1.105-2.923-1.833-4.292c-1.216-2.289-2.946-4.406-1.846-7.268c3.955-1.035 7.855-2.525 11.876-3.005c7.333-.876 14.604-.222 21.441 2.986l.429.316l.078-.012c.088 2.524-.88 4.675-2.152 6.797c-.758 1.265-1.122 2.765-1.663 4.16a.357.357 0 0 1-.16.242l-.642.747l-2.604 3.729l.238.278c.514-.35 1.039-.686 1.54-1.053c5.018-3.672 10.057-7.348 16.205-8.906c2.355-.597 4.831-.957 7.256-.988c4.069-.053 5.559 2.398 3.903 6.062c-.422.932-1.007 1.792-1.718 3.035l-.495-2.085l-.34-.05l-.879 6.657l-.083.102l.055.245l.058 1.837c-.195.523-.557 1.045-.561 1.569c-.037 4.258.342 8.422 3.608 12.165c-2.589 1.316-4.879 2.583-7.255 3.66c-2.155.978-4.393 1.852-5.167 4.333c-.642 2.06-1.01 4.205-1.496 6.294l-1.197-3.32c-.349 8.095.021 16.019 2.597 23.672l-3.656.669c-2.442-3.714-4.877-7.432-7.341-11.131c-.173-.259-.566-.371-.857-.551l-.313-.75l.157-.222l-.269-.063l.021-.015l-.268-.448l-2.013-4.064l-.608.187l5.401 20.483c-.116.03-.29.113-.463.113c-10.805.007-21.61.006-32.72.006c1.991-6.506 4.33-12.762 4.993-19.399l-.443-.156l-1.485 2.832l-.371.789a.502.502 0 0 1-.09.3c-.36.287-.819.508-1.065.872a392.517 392.517 0 0 0-5.316 8.071c-.643 1.007-1.144 2.104-1.709 3.16l-4.008-.685c2.695-7.634 3.03-15.542 2.673-23.542l-1.268 3.312c-.271-5.412-1.882-9.494-7.597-11.164c-2.179-.637-4.073-2.247-5.643-3.151c.979-2.485 2.092-4.329 2.383-6.296c.386-2.583.121-5.261.135-7.896m41.428.407l.371-.383l.904-1.048c-2.348.23-4.634.638-6.918.626c-2.304-.013-4.607-.443-6.91-.689l-.48-.134l.48.133l.736 1.479c4.106 4.667 7.536 4.76 11.666.313c.08-.086.119-.21.177-.316zM46.971 68.511l4.404-2.722c.989-1.944 2.169-3.822 2.882-5.862c.34-.975.525-1.511 1.586-1.79c2.329-.61 3.526-2.182 3.467-4.209l-2.333.285c-2.496-1.417-4.387-3.386-5.922-5.834c-.854-1.362-2.183-2.476-3.443-3.527c-2.685-2.24-6.047-2.75-9.332-2.82c-2.018-.042-4.057.918-6.086 1.428c-.062.061-.13.067-.204.023l-.535.228l-.103.15c-.009.05.017.146.05.158c.73.259 1.463.51 2.324.808c-1.957 2.457-1.711 4.791-.216 7.343l.776-2.733l.374.035l.189 1.932l.247.857l.144.573c-.203 6.192 5.334 10.651 13.567 10.499l-1.831 5.184l-.084.149zm33.995-.001l.146.088l-.152-.082l-1.766-5.241c9.595.948 13.532-5.575 13.878-11.533l.379-2.249l.312.012l.72 2.677c1.45-2.578 1.823-4.927-.206-7.306l2.408-.946l-1.002-.393c-.49-.298-.959-.81-1.472-.857c-2.212-.208-4.447-.479-6.653-.357c-4.382.242-7.989 2.152-10.46 5.846c-1.643 2.456-3.413 4.716-6.137 6.043l-2.523-.286c.403 2.402 1.772 3.651 3.877 4.317c.498.158 1.002.693 1.247 1.184c1.052 2.096 2.009 4.24 3 6.367z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#F5A800\\\" fill-rule=\\\"evenodd\\\" d=\\\"M45.156 110.632c-.714-1.82-1.602-3.594-2.102-5.472c-.769-2.883.377-4.603 3.295-5.288a12.963 12.963 0 0 1 2.911-.337c9.829-.024 19.658-.015 29.486-.014c.307 0 .615.005.921.018c4.709.193 6.419 2.619 4.903 7.07c-.47 1.38-1.156 2.688-1.744 4.029l-.394.725l-.001.002c-1.271.826-2.508 1.711-3.82 2.466c-3.299 1.893-6.894 2.751-10.66 3.203c-5.151.619-10.176.227-14.996-1.621c-2.485-.953-4.775-2.415-7.153-3.646l-.277-.457zm35.398-2.974l.405-.728c1.126-2.9.622-3.686-2.443-3.722c-2.276-.025-4.554-.044-6.83.006c-2.209.048-2.7.762-2.111 2.877c.266 1.104.379 2.277.83 3.3c1.147 2.607 3.221 4.062 5.057 3.755c2.499-.417 4.74-2.834 5.103-5.503zm-33.181-.002l-.005-.009c.417 2.772 2.093 4.478 4.67 5.313c1.817.588 3.416-.232 4.299-1.65c.964-1.549 1.394-3.43 2.057-5.167c.632-2.164.186-2.856-2.014-2.921c-1.965-.059-3.933-.028-5.9-.012c-4.222.033-4.304.135-3.49 4.065z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08700\\\" fill-rule=\\\"evenodd\\\" d=\\\"M28.444 43.369c-.014 2.635.251 5.313-.132 7.893c-.292 1.967-1.405 3.811-2.383 6.296c1.57.904 3.464 2.514 5.643 3.151c5.714 1.67 7.326 5.752 7.597 11.164l1.268-3.312c.356 8 .021 15.907-2.673 23.542c-2.43-.567-2.35-.563-2.196-3.238c.287-4.968.587-9.941.658-14.915c.063-4.321-1.743-7.682-5.716-9.782c-2.112-1.116-4.234-2.305-6.093-3.787c-3.075-2.453-2.891-6.451.309-8.402l.115 1.783l.399.185c.701-1.732 1.526-3.427 2.067-5.208c.53-1.744.77-3.576 1.137-5.37m61.743 48.737c-2.576-7.654-2.946-15.578-2.597-23.672l1.197 3.32c.485-2.09.854-4.235 1.496-6.294c.774-2.48 3.012-3.355 5.167-4.333c2.375-1.077 4.666-2.343 7.255-3.66c-3.266-3.743-3.645-7.907-3.608-12.165c.004-.524.366-1.046.561-1.569c.563 3.444 1.187 6.867 3.341 10.236l.244-2.003c2.836 1.627 3.498 5.18 1.174 7.519c-1.527 1.538-3.399 2.907-5.368 3.798c-5.42 2.453-7.682 6.579-7.354 12.362c.256 4.536.389 9.081.755 13.607c.148 1.862-.35 2.817-2.263 2.854m13.132-37.907l-.051.098l.077.01z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M45.804 111.767c2.378 1.231 4.668 2.693 7.153 3.646c4.819 1.848 9.845 2.24 14.996 1.621c3.766-.452 7.361-1.31 10.66-3.203c1.313-.754 2.549-1.64 3.82-2.466c-2.08 4.592-5.476 7.917-10.191 9.562c-7.645 2.666-15.085 2.231-21.585-3.03c-1.976-1.601-3.255-4.063-4.853-6.13\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M25.214 86.451c3.478 7.423 10.11 9.433 17.412 10.118l-3.395 6.311c-8.735-.714-14.363-7.31-14.017-16.429m63.496 16.428a9549.906 9549.906 0 0 0-3.291-6.277c6.896-.787 13.523-2.423 17.019-9.588c.11.454.329.911.313 1.361c-.258 7.505-5.405 13.825-14.041 14.504\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C7C6C6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M25.214 86.451c-.346 9.119 5.282 15.714 14.017 16.428l.625 4.198c-1.694-.292-3.355-.44-4.938-.874c-6.886-1.888-10.737-6.76-10.859-13.893c-.035-2.043.441-4.096.703-6.142c.005-.039.262-.077.388-.05c.042.009.044.217.064.333m63.496 16.428c8.636-.679 13.783-6.999 14.042-14.505c.016-.45-.204-.907-.313-1.361l.488-1.1c1.542 4.989 1.669 9.889-1.235 14.321c-3.119 4.759-7.967 6.416-13.492 6.758z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#F0A500\\\" fill-rule=\\\"evenodd\\\" d=\\\"M101.767 11.836c-1.212.405-2.098 1.007-2.913.923c-5.748-.589-10.365 2.482-13.699 7.434l-2.544-1.235c4.334-7.52 11.854-10.314 19.156-7.122m-75.06.311c6.741-3.565 14.794-.411 18.705 6.766l-2.321 1.191c-1.521-1.548-2.888-3.106-4.429-4.466c-2.464-2.172-5.435-2.955-8.7-2.911c-1.083.015-2.17-.375-3.255-.58\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8500\\\" fill-rule=\\\"evenodd\\\" d=\\\"M95.823 15.695c-.407 2.529-.753 4.747-1.122 6.961c-.187 1.122-.541 1.898-1.884 2.352c-2.001.677-2.708-.756-3.513-1.8c-.388-.503-.229-1.687.063-2.41c.951-2.367 2.53-4.191 5.121-4.884c.501-.134 1.027-.171 1.335-.219m-63.702.101c3.102-.017 7.242 3.487 6.955 6.414c-.106 1.082-1.493 2.513-2.598 2.883c-1.051.352-2.736-.11-3.07-1.862c-.159-.84-.276-1.688-.422-2.53c-.279-1.604-.565-3.207-.865-4.905\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M47.313 22.641c-1.1 2.862.63 4.979 1.846 7.268c.727 1.369 1.229 2.856 1.833 4.292l-9.732-7.91c1.508-1.665 3.723-2.745 6.053-3.65\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M77.321 33.883c.541-1.395.905-2.895 1.663-4.16c1.272-2.123 2.24-4.273 2.152-6.797c2.001 1.065 4 2.131 5.922 3.157zm1.012 47.21c.291.18.684.292.857.551c2.464 3.699 4.899 7.417 7.341 11.131c-4.422.399-3.457.527-4.852-2.93c-1.168-2.895-2.234-5.833-3.346-8.752M41.771 92.787c.566-1.056 1.066-2.153 1.709-3.16a398.037 398.037 0 0 1 5.316-8.071c.246-.364.705-.585 1.065-.872c-1.459 3.764-2.867 7.549-4.396 11.284c-.775 1.893-2.419.716-3.694.819\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#ECA200\\\" fill-rule=\\\"evenodd\\\" d=\\\"M37.322 110.666c4.683-1.17 5.214 2.563 6.916 5.677c-3.143-1.416-5.295-3.267-6.916-5.677m53.236-.039c-1.449 2.624-3.778 4.214-6.436 5.625c.967-4.603 2.386-5.803 6.464-5.601zm.028.024l.027-.163l-.056.139z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8600\\\" fill-rule=\\\"evenodd\\\" d=\\\"m77.908 80.057l.269.063l-.157.222a.303.303 0 0 1-.112-.285\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08700\\\" fill-rule=\\\"evenodd\\\" d=\\\"m99.599 41.896l-.055-.245l.083-.102a.283.283 0 0 1-.028.347\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#49330E\\\" fill-rule=\\\"evenodd\\\" d=\\\"M76.563 65.794c-.991-2.126-1.948-4.271-3-6.367c-.245-.49-.749-1.026-1.247-1.184c-2.105-.667-3.474-1.916-3.877-4.317l2.523.286c.474.033.958.147 1.419.085c2.207-.299 3.714-1.697 5.181-3.243c4.916-5.184 10.683-8.387 18.124-7.516l1.002.393l-2.408.946c2.028 2.379 1.656 4.728.206 7.306l-.72-2.677l-.312-.012l-.379 2.25c-1.058 2.485-2.065 4.994-4.646 6.388c-3.756 2.028-7.527 2.915-11.326.22c-1.623 2.466-.664 4.981-.54 7.442m12.433-13.94v-4.628c-3.894 2.292-7.218 4.52-9.882 7.614l-1.099 1.328c3.718 2.788 10.989.954 10.981-4.314\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#49330F\\\" fill-rule=\\\"evenodd\\\" d=\\\"m35.239 52.833l-.144-.573l-.247-.857l-.189-1.932l-.374-.035l-.776 2.733c-1.495-2.552-1.741-4.886.216-7.343c-.861-.297-1.594-.548-2.324-.808c-.033-.012-.06-.108-.05-.158l.103-.15l.535-.228c.073.044.142.038.204-.023c2.786.306 5.659.286 8.339.993c4.209 1.111 7.459 3.9 10.367 7.081c1.617 1.768 3.475 3.095 6.077 2.679l2.333-.285c.059 2.028-1.138 3.599-3.467 4.209c-1.061.279-1.246.815-1.586 1.79c-.713 2.041-1.893 3.918-2.882 5.861c.247-2.49 1.094-5.026-.542-7.473c-1.98 1.479-4.139 2.021-6.474 1.602c-4.258-.766-7.411-3.006-9.119-7.083m13.612 1.973c-2.666-3.085-5.982-5.317-9.872-7.583v4.625c.062 5.38 7.409 7.086 10.925 4.365c-.105-.193-.193-.416-.334-.597c-.221-.285-.478-.542-.719-.81\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08700\\\" fill-rule=\\\"evenodd\\\" d=\\\"M76.563 65.794c-.124-2.462-1.083-4.976.539-7.443c3.799 2.694 7.57 1.808 11.326-.22c2.581-1.395 3.588-3.903 4.646-6.388c-.346 5.957-4.284 12.48-13.878 11.532l1.766 5.241l.005-.006zM35.239 52.833c1.708 4.077 4.86 6.317 9.12 7.083c2.335.42 4.494-.123 6.474-1.602c1.635 2.447.788 4.983.542 7.473l-4.404 2.724l.005.005l1.831-5.184c-8.233.152-13.771-4.307-13.568-10.499\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M56.977 54.212c-2.602.416-4.46-.911-6.077-2.679c-2.908-3.181-6.158-5.97-10.367-7.081c-2.68-.708-5.553-.688-8.339-.993c2.029-.51 4.068-1.471 6.085-1.428c3.285.07 6.647.58 9.332 2.82c1.261 1.051 2.589 2.165 3.443 3.527c1.536 2.448 3.427 4.417 5.923 5.834\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DF8600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M95.684 43.538c-7.44-.871-13.208 2.332-18.124 7.516c-1.466 1.546-2.974 2.944-5.181 3.243c-.461.063-.945-.052-1.419-.085c2.724-1.327 4.495-3.587 6.137-6.043c2.471-3.694 6.078-5.604 10.46-5.846c2.207-.122 4.441.15 6.653.357c.515.049.984.56 1.474.858m-37.63.222l-.736-1.479v.001c2.303.247 4.605.676 6.91.689c2.284.012 4.57-.396 6.918-.626l-.903 1.048l-.371.383l.025-.021c-2.306.388-4.606 1.02-6.921 1.08c-1.63.044-3.281-.689-4.922-1.075\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#52380B\\\" fill-rule=\\\"evenodd\\\" d=\\\"M58.054 43.76c1.641.387 3.292 1.119 4.921 1.076c2.315-.061 4.615-.692 6.921-1.08c-.058.106-.097.23-.177.316c-4.129 4.448-7.558 4.355-11.665-.312\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#47310D\\\" fill-rule=\\\"evenodd\\\" d=\\\"M69.575 106.091c-.589-2.115-.098-2.829 2.111-2.877c2.276-.05 4.554-.031 6.83-.006c3.065.036 3.57.822 2.443 3.722l-.405.728l.01-.015c-.532.576-1.049 1.167-1.6 1.726c-2.498 2.536-5.238 2.372-7.4-.459c-.697-.913-1.328-1.877-1.989-2.819\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#47310E\\\" fill-rule=\\\"evenodd\\\" d=\\\"M46.99 107.274c-.814-3.931-.732-4.033 3.49-4.065c1.967-.016 3.935-.047 5.9.012c2.2.065 2.646.758 2.014 2.921c-.746 1.048-1.454 2.126-2.246 3.139c-1.853 2.369-4.484 2.518-6.695.41c-.704-.671-1.391-1.363-2.086-2.044l.004.009z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DC8400\\\" fill-rule=\\\"evenodd\\\" d=\\\"M47.368 107.647c.695.682 1.382 1.373 2.086 2.044c2.211 2.107 4.842 1.959 6.695-.41c.792-1.013 1.5-2.091 2.246-3.139c-.663 1.737-1.092 3.618-2.057 5.167c-.884 1.418-2.482 2.238-4.299 1.65c-2.578-.834-4.254-2.54-4.671-5.312\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8500\\\" fill-rule=\\\"evenodd\\\" d=\\\"M69.575 106.091c.661.941 1.292 1.905 1.989 2.819c2.162 2.831 4.902 2.995 7.4.459c.551-.559 1.067-1.15 1.6-1.726c-.363 2.669-2.604 5.086-5.103 5.503c-1.835.307-3.91-1.148-5.057-3.755c-.449-1.023-.563-2.196-.829-3.3\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#493310\\\" fill-rule=\\\"evenodd\\\" d=\\\"m103.319 54.199l.026.108l-.077-.01z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M79.114 54.841c2.664-3.095 5.989-5.323 9.882-7.614v4.628c-1.606 2.047-3.421 3.875-6.217 3.872c-1.222-.003-2.444-.574-3.665-.886\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C5C4C3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M79.114 54.841c1.222.312 2.443.883 3.665.885c2.796.004 4.611-1.824 6.217-3.872c.008 5.268-7.263 7.102-10.981 4.314z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M38.979 51.847v-4.625c3.889 2.267 7.206 4.498 9.872 7.583c-1.536 1.385-4.652 1.428-6.902-.117c-1.115-.765-1.988-1.883-2.97-2.841\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C5C4C3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M38.979 51.847c.982.958 1.855 2.077 2.97 2.842c2.25 1.545 5.366 1.502 6.902.117c.242.269.499.525.719.81c.141.181.229.403.334.597c-3.516 2.72-10.863 1.014-10.925-4.366\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"grunt-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#493310\\\" fill-rule=\\\"evenodd\\\" d=\\\"M88.395 70.763c2.874-2.139 4.346-4.844 5.031-8.193c3.332 3.295 4.506 7.17 4.231 11.547c-.373 5.936-3.099 10.261-8.728 12.585c-.44.183-.838.663-1.081 1.102c-2.638 4.78-6.519 7.805-11.988 8.67c-.458.073-.916.333-1.31.6c-6.504 4.389-16.842 4.373-23.379-.03a3.888 3.888 0 0 0-1.465-.592c-4.917-.85-8.654-3.444-11.181-7.701c-.736-1.239-1.59-2.073-2.918-2.679c-9.492-4.332-9.33-18.376-3.392-23.269c.579 1.43 1.026 2.933 1.775 4.268c.755 1.347 1.808 2.526 2.73 3.78l.452-.124c.156-1.57.365-3.136.455-4.71c.128-2.215.225-4.435.231-6.654c.008-2.708-1.005-4.817-3.563-6.135c-1.873-.964-3.743-2.032-5.373-3.353c-3.984-3.226-3.884-7.575.144-10.695c.967-.749 1.54-1.604 1.653-2.814c.238-2.55.639-5.093-1.188-7.342c-.506-.623-.761-1.489-1.003-2.283c-1.179-3.86.72-6.938 4.719-7.564c1.154-.181 1.781-.479 1.918-1.822c.246-2.393-.268-4.035-2.471-5.188c-1.754-.918-3.71-1.452-5.647-2.183c2.263-3.252 5.628-4.735 9.573-4.972c5.215-.315 9.304 2.065 12.782 5.717c.577.606 1.062 1.306 1.669 1.877c.3.283.796.517 1.18.485c.199-.016.468-.647.5-1.019c.261-3.062 1.645-5.533 3.902-7.548c.385-.343.872-.572 1.321-.859l1.108 5.186l.481-.005c.793-4.154 3.629-6.272 7.34-7.607c-.078 1.244-.259 2.408-.191 3.559c.066 1.102.391 2.189.643 3.493c2.112-1.473 3.95-3.001 6.358-2.938c-.519 1.973-1.082 3.894-1.513 5.844c-.221 1.001.056 1.95 1.329 1.923c.465-.01 1.04-.373 1.363-.749c2.744-3.189 5.786-5.917 10.019-6.965c5.398-1.338 10.833.473 13.908 4.771c-.583.144-1.133.233-1.652.415c-1.339.469-2.758.813-3.975 1.507c-2.577 1.469-2.99 2.857-2.373 6.152c.056.297.529.61.874.737c.547.2 1.163.206 1.727.372c3.291.969 4.864 3.695 3.923 6.986a13.182 13.182 0 0 1-1.503 3.347c-1.675 2.665-1.054 5.41-.367 8.125c.152.602.951 1.08 1.519 1.533c3.47 2.765 3.804 6.983.472 9.934c-1.854 1.641-4.101 2.873-6.274 4.108c-1.996 1.134-3.169 2.791-3.177 4.975c-.014 4.131.239 8.263.382 12.395M74.05 63.654l-.016.012a.242.242 0 0 0 .089.229l.251.601c.891 2.339 1.745 4.693 2.682 7.014c1.118 2.77.344 2.668 3.888 2.348l2.93-.536c1.533-.03 1.932-.795 1.812-2.287c-.293-3.627-.399-7.27-.605-10.905c-.262-4.633 1.55-7.94 5.894-9.906c1.577-.714 3.077-1.812 4.301-3.044c1.863-1.874 1.333-4.721-.94-6.025l-.195 1.605c-1.727-2.7-2.227-5.443-2.677-8.203l-.046-1.472a.224.224 0 0 0 .021-.277l.705-5.334l.273.04l.396 1.671c.57-.997 1.039-1.686 1.376-2.433c1.327-2.936.133-4.9-3.128-4.857c-1.944.025-3.927.313-5.814.792c-4.926 1.249-8.965 4.195-12.986 7.137c-.402.294-.822.563-1.234.844l-.19-.223l2.086-2.988l.514-.599a.282.282 0 0 0 .128-.193l7.803-6.251l-4.744-2.53l-.064.011l-.343-.254c-5.479-2.57-11.305-3.094-17.182-2.392c-3.222.385-6.348 1.579-9.517 2.408c-1.867.726-3.642 1.591-4.852 2.925l7.799 6.338l-.004-.013l.281.387l2.196 3.164c-2.479-1.388-4.714-2.971-7.015-4.453c-3.563-2.295-7.427-3.83-11.688-4.129c-1.804-.126-3.936-.343-4.873 1.589c-.971 2.001.352 3.768 1.466 5.412c.042.062.172.064.315.113l.18-1.56c.36.764.582 1.519.67 2.289c.173 1.512.273 3.032.403 4.548c-.294 1.438-.486 2.906-.911 4.304c-.434 1.427-1.095 2.785-1.657 4.173l-.32-.148l-.092-1.429c-2.564 1.563-2.712 4.768-.248 6.733c1.489 1.188 3.19 2.14 4.882 3.035c3.184 1.683 4.631 4.376 4.581 7.839c-.058 3.986-.298 7.97-.528 11.952c-.124 2.143-.188 2.14 1.76 2.595l3.212.548c1.021-.083 2.339.86 2.96-.656c1.226-2.993 2.354-6.026 3.523-9.042a.402.402 0 0 0 .073-.24l.297-.633l1.19-2.27l.355.125c-.531 5.319-2.405 10.332-4 15.545c8.902 0 17.561.001 26.219-.004c.139 0 .278-.066.372-.09L71.736 60.19l.487-.149l1.613 3.256zm10.143 24.528c-3.268-.162-4.405.8-5.18 4.488c2.129-1.13 3.996-2.404 5.157-4.507l.044-.11zm9.498-18.942c-2.802 5.742-8.112 7.053-13.639 7.684l2.637 5.03l-.409 3.296c4.428-.274 8.312-1.603 10.812-5.416c2.327-3.551 2.225-7.478.99-11.476zm-61.883-.45c-.017-.093-.018-.26-.052-.267c-.101-.021-.307.009-.311.041c-.209 1.639-.591 3.284-.563 4.921c.097 5.716 3.184 9.62 8.701 11.133c1.269.348 2.601.466 3.958.7l-.5-3.364l2.721-5.057c-5.853-.549-11.168-2.159-13.954-8.107m45.853 19.962l.316-.581c.471-1.075 1.021-2.122 1.397-3.229c1.215-3.566-.156-5.51-3.929-5.665l-.738-.015c-7.876-.001-15.752-.008-23.628.011c-.779.002-1.575.093-2.333.271c-2.338.549-3.256 1.927-2.641 4.237c.401 1.504 1.112 2.926 1.685 4.385l.296.543l.223.366c1.281 1.657 2.305 3.63 3.889 4.912c5.208 4.216 11.17 4.564 17.297 2.428c3.778-1.318 6.5-3.982 8.167-7.662zM93.153 8.998c-5.852-2.559-11.877-.32-15.35 5.707l2.039.989c2.671-3.968 6.372-6.429 10.977-5.957c.653.067 1.363-.415 2.334-.739m-60.149.249c.87.164 1.741.477 2.608.465c2.616-.035 4.998.592 6.972 2.333c1.235 1.09 2.33 2.339 3.549 3.579l1.86-.955c-3.134-5.752-9.587-8.28-14.989-5.422m55.386 2.842c-.247.039-.669.069-1.07.175c-2.076.556-3.341 2.017-4.104 3.914c-.233.58-.361 1.528-.05 1.931c.645.837 1.21 1.985 2.815 1.443c1.076-.364 1.359-.986 1.509-1.885c.297-1.773.574-3.551.9-5.578m-51.047.082c.24 1.361.469 2.645.693 3.93c.117.675.21 1.354.338 2.027c.268 1.404 1.618 1.775 2.46 1.493c.885-.296 1.997-1.443 2.082-2.31c.23-2.346-3.087-5.154-5.573-5.14m4.167 76.022c1.299 1.932 3.024 3.416 5.542 4.55c-1.364-2.495-1.789-5.487-5.542-4.55\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#473312\\\" fill-rule=\\\"evenodd\\\" d=\\\"M91.564 105.665h5.162v20.628c-2.364.339-4.352.308-6.016-1.937c-2.459-3.316-5.282-6.362-8.213-9.836v11.826H77.43v-20.65c2.329-.285 4.325-.296 5.985 1.956c2.447 3.318 5.268 6.361 8.149 9.782z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#46310F\\\" fill-rule=\\\"evenodd\\\" d=\\\"M34.496 105.817c3.491 0 6.893-.204 10.257.062c2.858.227 5.174 1.617 5.862 4.746c.61 2.771-.526 5.05-3.401 6.985l5.718 8.722c-2.235 0-4.13.097-6.004-.063c-.534-.045-1.123-.755-1.484-1.296a73.629 73.629 0 0 1-2.93-4.78c-.529-.939-1.164-1.438-2.405-1.076v7.218h-5.613zm5.65 9.173c1.735.076 3.522.382 4.491-1.235c.428-.716.438-2.17-.021-2.83c-1.051-1.511-2.825-1.116-4.469-1.058z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#483413\\\" fill-rule=\\\"evenodd\\\" d=\\\"M25.202 119.438h-2.819v-4.053h8.245c0 2.804.028 5.562-.033 8.317c-.008.384-.372.936-.721 1.111c-4.789 2.405-9.647 2.788-14.375-.041c-3.7-2.214-5.383-6.531-4.545-10.892c.824-4.286 3.886-7.355 8.268-8.209c3.599-.702 7.069-.408 10.259 1.578c.487.304.907.717 1.429 1.136l-2.51 3.682c-.979-.515-1.824-1.002-2.704-1.415c-3.872-1.819-7.87-.248-8.856 3.462c-1.247 4.685 1.605 8.368 6.296 8.134c2.308-.114 2.44-.283 2.066-2.81\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#473312\\\" fill-rule=\\\"evenodd\\\" d=\\\"M67.632 105.645h5.489c.088.109.2.184.2.257c-.017 4.529.161 9.071-.131 13.583c-.246 3.798-3.31 6.437-7.597 7.061c-2.539.37-5.017.065-7.291-1.243c-2.398-1.379-3.826-3.515-3.962-6.215c-.199-3.935-.082-7.886-.098-11.829v-1.564h5.63c.021.45.062.923.063 1.396c.007 3.55-.024 7.1.018 10.648c.03 2.592 1.263 4.057 3.406 4.202c2.672.181 4.229-1.195 4.261-3.879c.043-3.599.012-7.198.013-10.798z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#483413\\\" fill-rule=\\\"evenodd\\\" d=\\\"M117.257 105.697v4.338h-5.901c0 4.226.013 8.302-.007 12.378c-.007 1.269.381 3.088-.277 3.663c-.778.679-2.495.284-3.805.354l-.147.001c-1.196.189-1.609-.248-1.589-1.518c.075-4.877.03-9.757.03-14.832H99.65v-4.384z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#F5A900\\\" fill-rule=\\\"evenodd\\\" d=\\\"M34.396 34.266c-.13-1.517-.229-3.037-.403-4.548a7.263 7.263 0 0 0-.67-2.289l-.18 1.56c-.144-.049-.274-.051-.315-.113c-1.115-1.644-2.437-3.411-1.466-5.412c.937-1.932 3.069-1.715 4.873-1.589c4.261.3 8.125 1.834 11.688 4.129c2.301 1.482 4.536 3.065 7.015 4.453l-2.196-3.165l-.281-.386l.004.013c-.484-1.15-.886-2.342-1.469-3.439c-.974-1.834-2.361-3.53-1.479-5.824c3.169-.829 6.294-2.023 9.517-2.408c5.876-.702 11.702-.178 17.182 2.393l.343.254l.063-.01c.071 2.022-.705 3.746-1.724 5.447c-.607 1.013-.899 2.216-1.333 3.333a.282.282 0 0 1-.128.193l-.514.599l-2.086 2.988l.19.223c.412-.281.832-.55 1.234-.844c4.021-2.942 8.06-5.888 12.986-7.137c1.887-.479 3.871-.767 5.814-.792c3.261-.042 4.455 1.921 3.128 4.857c-.338.747-.807 1.436-1.376 2.433l-.396-1.671l-.273-.04l-.705 5.334l-.066.081l.044.196l.046 1.472c-.157.419-.446.837-.45 1.258c-.03 3.412.274 6.749 2.891 9.748c-2.074 1.055-3.91 2.07-5.813 2.933c-1.727.783-3.52 1.484-4.14 3.472c-.515 1.65-.81 3.369-1.199 5.044l-.959-2.66c-.28 6.486.017 12.836 2.081 18.97l-2.93.536c-1.957-2.976-3.908-5.956-5.883-8.92c-.138-.208-.454-.297-.687-.441l-.251-.601l.126-.178l-.215-.051l.017-.012l-.215-.359l-1.613-3.256l-.487.149l4.328 16.414c-.093.024-.232.09-.372.09c-8.658.005-17.317.004-26.219.004c1.595-5.213 3.469-10.227 4-15.545l-.355-.125l-1.19 2.27l-.297.633a.398.398 0 0 1-.073.24c-.289.23-.656.407-.853.699a314.858 314.858 0 0 0-4.261 6.468c-.515.807-.916 1.686-1.37 2.532l-3.212-.548c2.159-6.118 2.428-12.454 2.142-18.865l-1.016 2.654c-.217-4.336-1.509-7.608-6.088-8.946c-1.746-.51-3.264-1.8-4.521-2.525c.784-1.991 1.676-3.469 1.91-5.045c.308-2.071.096-4.217.107-6.328m33.198.327l.297-.308l.724-.84c-1.882.184-3.714.512-5.544.502c-1.846-.01-3.691-.354-5.537-.552l-.385-.107l.385.107l.589 1.185c3.291 3.741 6.039 3.815 9.349.25l.142-.253zm-18.351 19.82l3.529-2.182c.792-1.558 1.738-3.063 2.31-4.697c.273-.782.421-1.211 1.271-1.434c1.866-.489 2.825-1.749 2.778-3.374l-1.87.229c-2-1.136-3.515-2.713-4.745-4.676c-.685-1.092-1.749-1.984-2.759-2.826c-2.152-1.794-4.846-2.203-7.478-2.259c-1.617-.034-3.251.736-4.877 1.145c-.05.048-.104.054-.164.018l-.428.183l-.083.121l.04.126c.585.208 1.172.41 1.863.647c-1.568 1.969-1.371 3.839-.173 5.884l.622-2.19l.299.028l.151 1.548l.198.687l.115.459c-.163 4.962 4.275 8.535 10.872 8.413l-1.467 4.154l-.067.12zm27.241 0l.117.07l-.122-.065l-1.415-4.2c7.689.76 10.844-4.467 11.121-9.241l.304-1.802l.25.01l.577 2.145c1.163-2.066 1.461-3.948-.165-5.855l1.929-.757l-.803-.315c-.393-.239-.769-.649-1.18-.687c-1.772-.167-3.563-.384-5.332-.287c-3.512.194-6.402 1.725-8.382 4.685c-1.316 1.968-2.735 3.78-4.918 4.843l-2.022-.229c.323 1.924 1.42 2.925 3.107 3.459c.399.126.803.556 1 .949c.843 1.679 1.61 3.397 2.404 5.102c1.178.724 2.354 1.45 3.53 2.175\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#F5A800\\\" fill-rule=\\\"evenodd\\\" d=\\\"M47.789 88.167c-.572-1.458-1.283-2.88-1.685-4.385c-.616-2.31.302-3.688 2.641-4.237a10.407 10.407 0 0 1 2.333-.271c7.876-.019 15.752-.012 23.628-.011l.738.015c3.773.155 5.144 2.099 3.929 5.665c-.376 1.106-.926 2.154-1.397 3.229l-.316.581v.001c-1.019.662-2.01 1.372-3.062 1.976c-2.644 1.517-5.525 2.206-8.542 2.567c-4.127.496-8.155.182-12.017-1.299c-1.991-.764-3.826-1.935-5.732-2.921l-.223-.366zm28.365-2.383l.325-.583c.903-2.323.498-2.954-1.958-2.982a163.693 163.693 0 0 0-5.473.004c-1.77.039-2.164.61-1.692 2.306c.214.885.304 1.824.665 2.645c.919 2.089 2.582 3.255 4.052 3.009c2.003-.334 3.798-2.271 4.089-4.41zm-26.59-.002l-.004-.008c.334 2.222 1.678 3.589 3.743 4.257c1.456.471 2.737-.187 3.445-1.323c.773-1.241 1.117-2.749 1.648-4.14c.506-1.734.149-2.289-1.614-2.341c-1.575-.047-3.152-.022-4.728-.01c-3.382.026-3.448.108-2.796 3.258z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08700\\\" fill-rule=\\\"evenodd\\\" d=\\\"M34.396 34.266c-.011 2.112.201 4.257-.105 6.326c-.234 1.576-1.126 3.054-1.91 5.045c1.258.725 2.775 2.015 4.521 2.525c4.579 1.338 5.871 4.61 6.088 8.946l1.016-2.654c.286 6.411.017 12.748-2.142 18.865c-1.947-.455-1.883-.452-1.76-2.595c.229-3.981.47-7.966.528-11.952c.05-3.463-1.397-6.156-4.581-7.839c-1.692-.895-3.394-1.847-4.882-3.035c-2.464-1.965-2.316-5.169.248-6.733l.092 1.429l.32.148c.562-1.388 1.223-2.746 1.657-4.173c.424-1.398.616-2.866.91-4.303m49.478 39.055c-2.064-6.134-2.361-12.483-2.081-18.97l.959 2.66c.389-1.675.684-3.394 1.199-5.044c.62-1.988 2.413-2.688 4.14-3.472c1.904-.863 3.739-1.878 5.813-2.933c-2.617-2.999-2.921-6.336-2.891-9.748c.003-.42.293-.838.45-1.258c.451 2.76.951 5.503 2.677 8.203l.195-1.605c2.273 1.304 2.803 4.151.94 6.025c-1.224 1.232-2.724 2.33-4.301 3.044c-4.343 1.966-6.156 5.272-5.894 9.906c.206 3.635.312 7.277.605 10.905c.121 1.492-.279 2.258-1.811 2.287m10.523-30.377l-.042.079l.062.008z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M48.308 89.076c1.906.987 3.741 2.158 5.732 2.921c3.862 1.48 7.889 1.795 12.017 1.299c3.018-.361 5.899-1.05 8.542-2.567c1.052-.604 2.042-1.313 3.062-1.976c-1.667 3.68-4.388 6.344-8.167 7.662c-6.126 2.136-12.088 1.788-17.297-2.428c-1.584-1.281-2.609-3.254-3.889-4.911\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M31.808 68.79c2.786 5.948 8.101 7.559 13.953 8.108l-2.721 5.057c-7-.573-11.509-5.858-11.232-13.165M82.69 81.954l-2.637-5.03c5.526-.631 10.837-1.942 13.639-7.684c.088.364.263.73.251 1.091c-.208 6.014-4.333 11.079-11.253 11.623\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C7C6C6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M31.808 68.79c-.277 7.307 4.232 12.593 11.232 13.165l.5 3.364c-1.357-.234-2.688-.353-3.958-.7c-5.518-1.513-8.604-5.417-8.701-11.133c-.028-1.638.354-3.282.563-4.921c.004-.031.21-.062.311-.041c.035.006.037.172.053.266M82.69 81.954c6.92-.544 11.045-5.609 11.252-11.624c.012-.36-.163-.727-.251-1.091l.391-.881c1.235 3.998 1.337 7.925-.99 11.476c-2.5 3.813-6.384 5.142-10.812 5.416z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#F0A500\\\" fill-rule=\\\"evenodd\\\" d=\\\"M93.153 8.998c-.971.324-1.681.807-2.334.74c-4.605-.473-8.306 1.989-10.977 5.957l-2.039-.989c3.473-6.028 9.498-8.267 15.35-5.708m-60.149.249c5.402-2.857 11.855-.329 14.989 5.422l-1.86.955c-1.219-1.24-2.314-2.489-3.549-3.579c-1.974-1.741-4.355-2.368-6.972-2.333c-.867.011-1.738-.301-2.608-.465\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8500\\\" fill-rule=\\\"evenodd\\\" d=\\\"M88.39 12.089c-.326 2.027-.604 3.804-.899 5.578c-.15.899-.434 1.521-1.509 1.885c-1.604.542-2.17-.606-2.815-1.443c-.312-.403-.183-1.352.05-1.931c.762-1.897 2.028-3.358 4.104-3.914c.4-.106.822-.136 1.069-.175m-51.047.082c2.486-.014 5.803 2.794 5.573 5.14c-.085.867-1.196 2.014-2.082 2.31c-.842.282-2.192-.088-2.46-1.493c-.128-.673-.221-1.352-.338-2.027c-.224-1.285-.453-2.569-.693-3.93\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M49.517 17.656c-.882 2.294.505 3.99 1.479 5.824c.583 1.097.985 2.289 1.469 3.439l-7.799-6.338c1.209-1.334 2.984-2.2 4.851-2.925\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M73.563 26.665c.434-1.118.726-2.32 1.333-3.333c1.019-1.701 1.795-3.424 1.724-5.447c1.604.853 3.206 1.708 4.746 2.529zm.812 37.831c.233.145.548.234.687.441c1.975 2.964 3.926 5.944 5.883 8.92c-3.543.32-2.77.422-3.888-2.348c-.937-2.32-1.792-4.674-2.682-7.013m-29.299 9.371c.454-.846.854-1.725 1.37-2.532a317.609 317.609 0 0 1 4.261-6.468c.197-.292.564-.469.853-.699c-1.169 3.016-2.297 6.049-3.523 9.042c-.622 1.517-1.94.574-2.961.657\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#ECA200\\\" fill-rule=\\\"evenodd\\\" d=\\\"M41.51 88.193c3.753-.937 4.178 2.054 5.542 4.55c-2.518-1.134-4.242-2.618-5.542-4.55m42.661-.03c-1.161 2.103-3.028 3.377-5.157 4.507c.774-3.688 1.912-4.65 5.18-4.488zm.022.019l.021-.13l-.044.111z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8600\\\" fill-rule=\\\"evenodd\\\" d=\\\"m74.034 63.666l.215.051l-.126.178a.244.244 0 0 1-.089-.229\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08700\\\" fill-rule=\\\"evenodd\\\" d=\\\"m91.416 33.085l-.044-.196l.066-.081a.226.226 0 0 1-.022.277\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#49330E\\\" fill-rule=\\\"evenodd\\\" d=\\\"M72.956 52.236c-.794-1.704-1.561-3.422-2.404-5.102c-.197-.393-.601-.822-1-.949c-1.687-.534-2.784-1.535-3.107-3.459l2.022.229c.38.026.768.118 1.137.068c1.769-.24 2.977-1.36 4.152-2.599c3.939-4.154 8.561-6.72 14.523-6.022l.803.315l-1.929.757c1.625 1.907 1.327 3.789.165 5.855l-.577-2.145l-.25-.01l-.304 1.803c-.848 1.992-1.655 4.002-3.723 5.119c-3.01 1.625-6.032 2.335-9.076.176c-1.299 1.977-.531 3.992-.432 5.964m9.963-11.17v-3.708c-3.12 1.836-5.784 3.622-7.919 6.102l-.88 1.063c2.979 2.234 8.805.764 8.799-3.457\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#49330F\\\" fill-rule=\\\"evenodd\\\" d=\\\"m39.841 41.85l-.115-.459l-.198-.687l-.151-1.548l-.299-.028l-.622 2.19c-1.198-2.045-1.395-3.916.173-5.884c-.69-.238-1.278-.439-1.863-.647l-.04-.126l.083-.121l.428-.183c.059.036.114.03.164-.019c2.233.245 4.535.229 6.683.796c3.373.891 5.977 3.125 8.307 5.674c1.296 1.417 2.785 2.48 4.87 2.147l1.87-.229c.047 1.625-.912 2.884-2.778 3.374c-.851.223-.999.652-1.271 1.434c-.571 1.635-1.517 3.14-2.309 4.696c.197-1.995.876-4.028-.434-5.989c-1.587 1.185-3.316 1.62-5.188 1.284c-3.415-.613-5.941-2.408-7.31-5.675m10.908 1.581c-2.136-2.473-4.794-4.26-7.911-6.077v3.706c.049 4.311 5.937 5.679 8.754 3.498c-.084-.155-.155-.333-.268-.478c-.176-.228-.382-.434-.575-.649\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#E08700\\\" fill-rule=\\\"evenodd\\\" d=\\\"M72.956 52.236c-.099-1.973-.867-3.987.431-5.964c3.044 2.159 6.066 1.449 9.076-.176c2.068-1.117 2.875-3.127 3.723-5.119c-.277 4.773-3.432 10-11.121 9.241l1.415 4.2l.004-.005zM39.841 41.85c1.369 3.267 3.895 5.062 7.309 5.675c1.872.336 3.601-.099 5.188-1.284c1.31 1.961.631 3.994.434 5.989l-3.529 2.183l.004.004l1.467-4.154c-6.598.122-11.035-3.451-10.873-8.413\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M57.26 42.955c-2.085.333-3.574-.73-4.87-2.147c-2.33-2.548-4.934-4.783-8.307-5.674c-2.148-.567-4.45-.551-6.683-.796c1.626-.408 3.26-1.178 4.877-1.144c2.632.056 5.326.465 7.478 2.259c1.01.842 2.074 1.734 2.759 2.826c1.232 1.963 2.747 3.54 4.746 4.676\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DF8600\\\" fill-rule=\\\"evenodd\\\" d=\\\"M88.278 34.402c-5.962-.698-10.584 1.869-14.523 6.022c-1.175 1.239-2.383 2.359-4.152 2.599c-.369.05-.757-.042-1.137-.068c2.183-1.063 3.602-2.875 4.918-4.843c1.98-2.96 4.871-4.49 8.382-4.685c1.768-.097 3.56.12 5.332.287c.412.039.788.449 1.18.688m-30.154.177l-.589-1.185c1.845.198 3.69.542 5.537.552c1.831.01 3.663-.318 5.544-.502l-.724.84l-.297.308l.021-.017c-1.848.311-3.691.817-5.546.865c-1.308.036-2.631-.551-3.946-.861\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#52380B\\\" fill-rule=\\\"evenodd\\\" d=\\\"M58.124 34.579c1.315.31 2.638.897 3.944.862c1.855-.048 3.698-.555 5.546-.865l-.142.253c-3.309 3.565-6.057 3.491-9.348-.25\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#47310D\\\" fill-rule=\\\"evenodd\\\" d=\\\"M67.356 84.528c-.472-1.695-.078-2.267 1.692-2.306c1.824-.041 3.649-.025 5.473-.004c2.456.028 2.861.659 1.958 2.982l-.325.583l.008-.012c-.426.461-.841.936-1.282 1.383c-2.001 2.032-4.198 1.901-5.93-.368c-.559-.731-1.064-1.504-1.594-2.258\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#47310E\\\" fill-rule=\\\"evenodd\\\" d=\\\"M49.258 85.476c-.652-3.15-.586-3.232 2.796-3.258c1.576-.012 3.153-.038 4.728.01c1.763.053 2.121.607 1.614 2.341c-.598.84-1.165 1.704-1.799 2.516c-1.485 1.898-3.593 2.017-5.365.329c-.565-.538-1.115-1.092-1.672-1.639l.003.008z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DC8400\\\" fill-rule=\\\"evenodd\\\" d=\\\"M49.561 85.774c.557.546 1.107 1.101 1.672 1.639c1.771 1.688 3.88 1.57 5.365-.329c.634-.812 1.202-1.676 1.799-2.516c-.531 1.392-.875 2.899-1.648 4.14c-.708 1.136-1.989 1.794-3.445 1.323c-2.066-.668-3.409-2.035-3.743-4.257\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DE8500\\\" fill-rule=\\\"evenodd\\\" d=\\\"M67.356 84.528c.53.754 1.035 1.526 1.594 2.259c1.732 2.269 3.929 2.4 5.93.368c.441-.447.855-.921 1.282-1.383c-.291 2.139-2.086 4.076-4.089 4.41c-1.471.246-3.133-.92-4.052-3.009c-.361-.82-.451-1.76-.665-2.645\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#493310\\\" fill-rule=\\\"evenodd\\\" d=\\\"m94.397 42.944l.02.087l-.062-.008z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M75 43.459c2.135-2.48 4.799-4.265 7.919-6.102v3.708c-1.287 1.641-2.742 3.105-4.982 3.102c-.979 0-1.958-.458-2.937-.708\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C5C4C3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M75 43.459c.979.25 1.958.708 2.937.709c2.24.003 3.695-1.461 4.982-3.102c.006 4.221-5.82 5.691-8.799 3.457z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M42.838 41.06v-3.706c3.117 1.817 5.774 3.604 7.911 6.077c-1.231 1.11-3.729 1.144-5.531-.094c-.893-.613-1.593-1.509-2.38-2.277\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C5C4C3\\\" fill-rule=\\\"evenodd\\\" d=\\\"M42.838 41.06c.787.768 1.486 1.664 2.379 2.277c1.803 1.238 4.3 1.204 5.531.094c.193.215.399.421.576.649c.113.145.183.323.268.478c-2.817 2.18-8.704.813-8.754-3.498\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"hadoop\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff0\\\" d=\\\"m47.17 37.19l-8.51 1.383l-7.767 3.404l-6.595 4.15l-6.276 7.658l-3.546 3.756l-3.429 1.263l-.906-2.216l1.585-2.288l.356-3.228l1.062.043l1.16 1.058l-.312-3.287l-1.286-.863l.039-1.253l-3.047 1.724l-2.76 3.255l-.575 2.91l1.18 2.33l1.1 3.958l2.239 1.06l2.354-.116l2.233-1.297l-1.49 7.552l1.49 8.404l-1.64 3.88l-5.369 5.786l.955 3.456l2.543 4.005l4.796 3.375l2.544.348l2.828.096l-1.764 7.244l6.49 2.66l8.084 1.064l2.765-1.809l.213-4.893L41 96.656l.213-4.043l7.447.532l6.914-.638l-6.914 4.149l1.17 5l4.361 6.808l4.255 1.808l3.404-1.383l1.383-2.766l7.128-5.425l1.383 1.17l11.17.426l2.233-1.809l.213-3.191l-.745-1.383l-.532-8.616l-3.723-7.447l.638-3.298l2.234 1.17l6.277 5.851l3.085.213l3.404-1.383l3.404-2.553l1.702-5.532l10 .638l6.063-2.34l4.893-4.574l3.51-6.596l.852-7.765l-.745-9.042l-1.915-8.085L121.846 34l-2.659-.851l-4.68 5.106l-4.256 1.49l-3.723-6.17l-3.723-3.404l-2.021-1.277l-8.085-6.702l-6.49-3.51l-6.488-.532l-7.553 1.276l-6.595 2.447l-4.575 3.723l-3.616 4.362l-3.724 1.063z\\\"/><path fill=\\\"#ffc\\\" d=\\\"m81.832 18.227l-4.256.17l-9.195 2.042l-7.15 4.426l-4.086 5.79c9.52-1.585 10.738-2.373 15.664 2.724c-1.995-3.5-2.578-5.162-2.245-8.47c.468-4.66 7.21-5.16 11.268-6.682M56.805 30.484l-3.916 1.022l-7.942 7.83l1.643-1.871l-9.195 1.191l-7.833 3.235l-7.15 5.959l-4.596 6.81l-3.064 7.322l-.342 7.66l1.194 7.493l3.234 8.172c-2.02-10.103-3.64-20.416 3.65-28.918c4.723-5.51 8.753-7.002 15.588-9.22l1.54-1.755l-4.774 8.566l-1.703 5.108l3.576 4.256c.367-2.384.482-4.117 1.709-6.184c2.425-4.083 5.013-8.071 7.32-12.213c3.225-5.789 5.993-9.518 11.06-14.463z\\\"/><path fill=\\\"#cc0\\\" d=\\\"M86.332 18.59c2.937 2.727 6.542 5.098 8.89 8.431c.91 1.29 1.92 1.95-.015 3.772c2.044-.584 2.803-.52 4.44-.322c2.976.36 5.767 4.592 5.945 7.625c-.035.283-.828.927-3.13 1.562c-.045.089-1.298-.172-1.267-.088c.24.655.56.757 1.047 1.063c.106.728.174 1.849.67 2.644c1.448-.025 2.863.134 4.281.414c.478.792.405 1.583.366 2.375l1.644-.273l-.457-3.746l1.463-2.467l-2.102-4.75l-4.021-3.838l-.387-.02l-4.52-2.773l-7.374-6.033c-1.825-1.192-3.648-2.385-5.473-3.576m34.537 14.79c1.243 5.592 2.846 10.751 2.697 16.477c-.182 7.025-1.551 15.9-8.06 20.137c-7.29 4.744-15.846 2.5-23.844.467l9.776 4.02l9.136.457l6.213-1.827l4.842-4.021l3.654-7.674l1.371-8.861l-1.097-8.68l-2.01-8.588zm-37.51.614l-1.052.303l-1.655.803c-3.267 2.62-3.644 6.204-2.58 9.998c-.29-4.381 2.02-8.876 5.287-11.104m-14.812.104l-6.121.732c-1.919.427-3.837.851-5.756 1.277l-2.832 4.112l-1.555 3.93c-1.694 4.634-3.172 8.606-5.738 12.802c3.288-3.542 5.281-6.554 7.164-10.558c.731-1.556.869-3.38 2.906-2.702c.092 1.554.42 3.107.512 4.66c1.1-7.89 4.204-11.191 11.42-14.253m52.308.498c-.765.353-1.51.522-1.988 1.222c-1.03 1.507-1.912 2.775-3.615 3.832c-.858.533-1.745.88-2.654 1.163c-.755.234-1.208.024-1.85.486l1.143.199h2.52l3.107-1.918l1.826-1.918zM91.28 41.102c-.329.135-.882.462-1.21.597l-2.583.842l-3.947 2.986l-2.232 2.323c-.455.28-.735.394-1.19.39c.717.263 1.54.042 2.408-.187c.726 1.538 1.11 2.182 2.551 2.98a7.218 7.218 0 0 0-.844 3.446c2.25-4.5 6.464-6.882 10.864-9.25c-.95.19-1.913.45-2.864.753l.622-.308c-.437-1.637-1.04-2.411-2.264-3.569c.3-.3.534-.732.69-1.003zm-25.017 2.863c-.122.883-.243 1.767-.366 2.65l.184 5.483l1.553 11.601l-2.102 8.772l-6.486 1.279l-8.315 4.842l-4.709.926l-6.605-3.114c6.897 9.941 12.77 5.008 23.006 1.653c2.571-.843 4.22-1.143 6.879-.971c2.432-4.17 2.362-6.494 1.73-11.328c-.973-7.44-3.213-14.47-4.77-21.793zm-53.68 4.142l-.494 1.938c-3.31 2.154-4.609 3.1-4.246 7.092l.988 3.586l1.402.949l1.73.576l3.136-.742l1.607-4.988l-4.453 2.185h-1.03l-1.156-1.773l1.403-2.06l.742-3.917l.95.287l1.153.908l-.166-2.062c-.26-.44-.522-.879-.783-1.318l-.783-.66zm21.064 12.944c-.127 2.305-.276 3.266.74 5.303c1.293 2.588 2.881 5.02 4.286 7.578l.455-5.116l-5.48-7.765zm58.586 5.504c-4.304 1.242-4.271 1.584-5.543 5.855c1.679-2.692 2.922-4.051 5.543-5.855m-18.318 5.43c.482 2.701 1.321 3.343 2.592 5.958c-.846 4.267-2.205 9.34-3.84 13.104c-.69 1.587-1.247 2.463-2.463 3.69c-2.053 2.072-4.129 3.879-6.457 5.675c-1.675 1.292-2.844.644-4.912.352c-.88 1.594-1.122 2.478-2.74 3.287c-2.49 1.244-4.717-1.437-6.67-3.014l4.23 6.608l2.924 2.742l2.467.365l3.289-2.01l1.736-3.289l3.655-2.742c1.492-1.28 2.984-2.557 4.476-3.836l2.832-4.02l.442-.818l-1.172 2.553l-3.655 4.295l2.375 1.006h5.94c.177-.466 2.65.476 4.45-.319c.503-.222.953-1.032 1.286-1.498c1.176-1.643-1.662-4.843-.803-10.793l-2.558-8.314h-.701c.08-.244.163-.487.244-.73l.273-3.747c-1.37-.61-2.74-1.217-4.111-1.826c-1.005-.944-2.124-1.736-3.129-2.68zm25.057 1.765l-8.588 1.096c-.213.578-.428 1.158-.64 1.736l.183 2.467l.822 1.46l1.28.641l1.003.092c1.352.834 1.324 1.438 1.098 2.01l3.197-1.28l2.07-2.78l1.54-3.965zm-84.08 4.719l-1.186 2.525c1.089 3.667 2.056 5.988 4.129 9.192c-.361 1.297-.632 1.866-1.463 2.923c-1.824-.28-3.443-.36-5.29-.355l6.12 4.75l3.014-.549l3.015-3.014l-4.293-6.67zm43.789 5.513c-1.463 1.585-2.643 3.05-3.838 4.842c-4.224 1.937-9.092 2.194-13.703 2.194l-.092 1.279l.365.365l3.381.365l10.414-.273l1.371-2.01c.353-2.826.77-4.248 2.102-6.762m-18.54.594c-.787 4.742-.598 7.92-2.78 12.168c-1.63 1.89-3.637 3.608-5.936 4.527c.194 1.165.251 1.893.139 2.747c-.405 3.071-6.55 1.714-9.077 1.591c4.055 1.044 8.11 2.09 12.164 3.133l2.743-1.097l.912-5.3l2.558-4.75l.457-2.923l-.822-6.852c-.12-1.08-.238-2.162-.357-3.244z\\\"/><path d=\\\"M64.525 16.049c-6.041 1.48-7.819 2.534-9.826 9.537c2.552-5.13 4.485-7.018 9.826-9.537m15.536.373c-3.958.078-8.163 1.269-13.018 3.312c-2.678 1.127-4.668 2.461-6.4 4.063c-1.655 1.53-3.062 3.304-4.606 5.361c-.895.064-1.695.19-2.506.514c-.895.358-1.797.937-2.877 1.89a65.486 65.486 0 0 0-2.213 2.043v.002a77.012 77.012 0 0 0-1.941 1.956c-5.05.81-9.169 1.705-12.854 3.132c-3.769 1.46-7.092 3.47-10.505 6.496a27.637 27.637 0 0 0-3.659 3.926a28.919 28.919 0 0 0-2.695 4.285c-.686.76-1.373 1.527-2.117 2.198c-.722.649-1.492 1.197-2.354 1.529c-.5.193-.708.305-.73.297c-.016-.008-.062-.185-.076-.242c1.228-1.181 1.429-2.906 1.543-4.623a6.2 6.2 0 0 1 .445.623c.163.253.332.512.533.765l.84 1.06l.295-1.322c.248-1.108.433-2.585.145-3.865c-.187-.827-.58-1.558-1.247-2.082c.062-.16.13-.342.188-.488c.211-.54.427-1.094.611-1.617l.366-1.035l-1.084.187c-1.443.25-4.544 1.955-6.727 4.22c-.81.842-1.507 1.77-1.965 2.747c-.476 1.015-.69 2.079-.506 3.142c.16.927.633 1.834 1.473 2.692c.153.618.295 1.172.447 1.656c.174.554.362 1.047.596 1.533c.635 1.322 1.648 2.13 2.82 2.506c.95.305 2.003.317 3.033.088a27.084 27.084 0 0 0-.4 3.686c-.064 1.725-.002 3.63.188 5.841a30.254 30.254 0 0 0 .43 3.063l-.575 1.564l-.893 2.426l-1.962 1.945l-1.833 1.815c-.05.05-.256.248-.443.428c-1.237 1.19-1.482 1.428-1.13 3.523a12.794 12.794 0 0 0 1.296 3.84a13.836 13.836 0 0 0 2.469 3.332c1.306 1.309 3.444 2.934 5.683 3.785c1.277.485 2.592.72 3.827.526c-.064.192-.114.378-.184.572a21.549 21.549 0 0 1-.652 1.603c-1.52 3.331.041 5.071 2.468 6.178c1.212.552 2.653.929 3.993 1.277c.273.071.547.141.892.235c1.587.429 4.327 1.216 6.83 1.375c2.733.173 5.199-.39 5.86-2.844c.261-.972.413-1.717.474-2.445c.057-.671.03-1.358-.047-2.194c.77-1.7 1.116-2.23 1.682-3.058l.287-.424c.61-.906.896-1.548 1-2.272c.1-.698.017-1.393-.11-2.457c-.01-.095-.036-.278-.06-.459c1.6.206 3.18.33 4.748.34a40.63 40.63 0 0 0 2.375-.066c-.22.114-.371.204-.61.326l-.296.152c-2.11 1.085-2.198 3.141-1.537 5.256c.596 1.907 1.821 3.853 2.59 5.037c1.616 2.492 3.16 4.6 5.03 5.746c1.96 1.202 4.2 1.344 7.09-.22c1.472-.796 1.935-1.61 2.56-2.703c.197-.346.417-.723.662-1.094c.577-.37 2.058-1.584 3.578-2.84c.495-.409 1.027-.842 1.584-1.295c.392.287.865.487 1.435.623c.744.178 1.63.26 2.692.336c.794.058 3.387.055 5.06.055c.517 0 .945 0 1.203.002c1.728.01 3.124-.08 4.178-.678c1.124-.637 1.789-1.765 1.934-3.787c.064-.899.075-1.453-.05-2.02c-.115-.524-.35-1.012-.734-1.705l-.07-2.63l-.074-2.784c-.03-1.093-.15-1.98-.371-2.853c-.22-.869-.535-1.705-.955-2.705c-.285-.678-.516-1.3-.742-1.91v-.004c-.361-.974-.723-1.924-1.221-2.938c.033-.196.068-.407.1-.633l.964.93l1.42 1.367c1.084 1.044 2.075 1.993 3.239 2.68c1.202.71 2.555 1.122 4.306 1.039c1.835-.087 3.796-.859 5.412-2.05c1.563-1.154 2.818-2.71 3.342-4.433l.453-1.494c.122-.4.246-.802.367-1.203c2.572.437 5.328.586 7.995.307c2.573-.27 5.059-.925 7.203-2.069c3.15-1.681 5.514-4.16 7.213-7.101c1.897-3.287 2.96-7.158 3.363-11.143c.324-3.196.147-7.543-.518-11.734c-.592-3.736-1.575-7.36-2.937-9.969a3.948 3.948 0 0 0-.73-.951c-.678-.668-1.68-1.298-2.716-1.654c-1.097-.378-2.255-.455-3.173.025a2.619 2.619 0 0 0-.657.486c-.595.604-1.097 1.335-1.6 2.069c-.559.817-1.12 1.638-1.792 2.213c-.785.67-1.769 1.074-2.694 1.445a18.186 18.186 0 0 0-1.375-2.71c-.628-1.004-1.344-1.945-2.132-2.884a11.813 11.813 0 0 0-1.948-1.857c-.68-.518-1.375-.956-2.185-1.463c-2.173-1.36-4.022-2.982-5.908-4.637c-.858-.752-1.724-1.512-2.57-2.21c-4.493-3.705-8.683-5.5-13.165-5.782a20.34 20.34 0 0 0-1.681-.035m-20.34.062c-3.047.734-3.627 1.298-4.541 4.284c1.458-2.187 2.297-2.898 4.54-4.284zm20.281 2.487c4.734-.208 8.991 1.386 13.762 5.396c2.198 1.848 4.117 3.642 6.345 5.237a8.039 8.039 0 0 0-2.425.576c1.12-.214 2.417-.002 3.58.21c.326.212.661.419 1.006.622c1.572.927 2.465 1.437 3.529 2.92a31.597 31.597 0 0 1 2.888 4.857c-.54-.193-.995-.356-1.4-.477a3.018 3.018 0 0 0-2.84.176l-.064.032c-.87.423-2.22.906-3.121 1.052c.46.16 1.477.22 1.957.03c.064-.026.13-.047.197-.063a3.01 3.01 0 0 0-.4 1.24a3 3 0 0 0 .32 1.674c0 .002.002.002.004.004c.081.192.194.369.318.496c-.412.152-.832.327-1.265.516c2.011-.307 3.825-.36 5.789-.102c.13.62.26 1.274.38 1.942c-.243.019-.487.04-.73.058l-.059.004c-.929-.742-1.962-.618-3.377-.295c-4.3.98-3.29 3.394-5.269 7.03c2.054-2.512 1.903-5.137 5.25-5.93c.78-.185 1.31-.417 1.838-.338c-.95.478-1.772 1.271-2.098 2.191c-.919 2.595-.348 4.78-1.357 7.203c1.25-2.166 1.325-4.279 2.443-6.558c.402-.819 1.892-2.13 2.807-2.15l.754-.016c.22 1.442.353 2.875.267 4.062c-.156 2.168-.717 5.383-1.054 6.614c1.132-1.456 1.647-4.539 2.144-6.71c.518-2.26.39-4.972-.064-7.4c-.623-3.331 2.808-2.79 4.8-4.36c1.465-1.154 2.472-2.998 3.815-4.304c1.332-1.295 3.427.61 3.951 1.875c2.271 5.495 3.307 14.14 2.707 19.678c-.673 6.215-3.676 12.998-9.158 16.058c-6.988 3.9-15.227 1.52-22.17-.82c-1.482-.499-2.514-1.228-3.816-2.049c.354 1.597.516 3.288.044 4.883c-.749 2.53-1.959 6.672 1.477 7.436c1.308.29 1.902.247 3.748-.705c-1.494.337-2.248.256-3.275.066c-.931-.171-1.424-.764-1.684-1.46c.325.234.856.36 1.762.58c2.547.613 4.974-.611 5.449-2.378c.277-1.032.228-1.574.814-2.98c.527.162 1.073.31 1.631.445l-.945 3.088c-.819 2.67-4.008 4.823-6.824 4.773c-2.604-.046-4.254-1.676-6.051-3.275a1419.44 1419.44 0 0 0-3.611-3.2c-3.24-1.021-5.837-2.216-8.844-4.443c2.14 2.515 3.592 3.907 6.576 5.159c-.434 4.427-1.973 7.655-3.285 11.892c-.593 1.916-5.281 9.593-6.58 10.342c-.926.533-6.727 5.42-7.818 6.064c-.813 1.08-1.527 2.571-2.749 3.217c-3.723 1.97-6.117-1.802-8.12-4.986c-.913-1.45-3.445-5.628-1.237-6.799c2.088-1.106 3.258-1.896 5.389-3.295c.313.57.849 1.122 1.199 1.692l-.232-1.87c-.14-1.129-.135-2.047-.045-3.183l.26-3.3c-.321 1.117-.962 2.234-1.282 3.353c-.128.447-.234.81-.295 1.144a37.646 37.646 0 0 1-14.308.186a89.26 89.26 0 0 0-.989-4.938c-.094 1.481-.033 5.575-.04 7.867c-.007 1.777-.08 2.386-.997 3.897c-.857 1.415-1.221 1.735-2.422 4.125c.1 1.508.102 2.506-.298 3.937c-.667 2.38-7.39.537-9.163.051c-2.183-.598-6.697-1.487-5.562-4.398c1-2.562 1.633-5.263 2.121-8.848c-4-5.763-7.722-13.662-8.436-20.66c-.554-5.434-.222-8.78.954-12.104c1.863-5.266 4.47-9.825 8.652-13.496c5.642-4.95 10.916-6.938 19.174-8.195c-1.986 2.223-3.95 4.573-6.092 7.094c-2.168 2.552-3.456 5.129-4.832 7.92c-1.902 3.854-1.86 5.32.66 8.705c2.172 2.916 3.345 4.23 4.293 7.084c-.783 1.614-1.069 2.978-1.332 5.183c2.66 2.907 4.636 4.898 7.219 5.512c2.533.602 4.648.486 6.914-.672c5.033-2.573 9.69-5.896 15.367-6.033c2.627-6.458 2.363-11.854 1.102-18.102c-.862-4.267-1.207-8.308-1.475-12.658c-1.065 4.48-1.264 8.42-.475 12.883c.953 5.378 1.693 11.319-.957 16.045c-5.133.393-9.534 3.517-14.162 5.914c-1.86.964-3.794 1.057-5.853.492c-1.911-.525-3.201-1.79-5.26-4.164c-.032-2.384.505-3.484 1.6-5.643c1.758-3.466 3.701-6.693 5.832-10.105c-2.61 3.149-5.082 5.78-7.135 8.945c-.785-2.236-1.907-3.37-3.766-5.888c-1.816-2.46-2.006-3.536-.648-6.381c1.365-2.86 2.524-5.374 4.847-7.883c4.015-4.335 7.692-9.16 12.082-13.43c2.384-2.318 3.352-2.237 6.514-2.717c2.858-.433 5.648-.979 8.563-1.656c-2.82.263-5.545.358-8.29.426l-.083.002c2.7-3.448 4.265-5.368 8.65-7.273c4.723-2.052 8.693-3.304 12.375-3.465m3.756 14.877c-5.874 1.47-6.976 3.936-6.22 7.728c.643-2.853 1.788-5.601 6.22-7.728m-17.403.322c-2.377.269-4.75.515-7.128.74c-1.997.19-2.319.157-3.735 1.557c-2.153 2.129-4.245 9.433-4.914 12.355c1.053-2.427 3.689-9.217 5.71-10.945c.558-.478.947-.771 1.366-.984c-1.446 2.425-1.341 3.03-.834 6.279c.432-3.303 1.574-4.58 3.45-7.045a49.516 49.516 0 0 0 6.085-1.957m54.54.277c-1.362 2.758-3.463 5.064-6.317 6.477c-1.531.757-2.509.494-4.219.332c1.74.499 2.84 1.126 4.547.517c3.478-1.24 5.155-4.035 5.989-7.326m-12.157 4.45c.12.252.237.507.352.767c-.095.07-.187.145-.272.223a3.065 3.065 0 0 0-.662-.975c.19-.007.383-.011.582-.016zm-17.394 2.132c-1.916.886-4.145.67-5.787 1.78c-1.448.977-3.446 4.075-4.916 5.388c1.065-.413 2.09-1.128 3.035-1.883a3.94 3.94 0 0 0 2.119 3.467a8.888 8.888 0 0 0-1.283 2.344c2.8-3.32 6.862-5.825 10.68-6.896c-1.068-.016-2.333.184-3.62.607a3.939 3.939 0 0 0-2.574-3.277c.853-.456 1.692-.936 2.346-1.53M7.043 44.48C1.958 48.064.689 49.691 1.375 56.943c.504-5.706 1.614-8.168 5.668-12.463m-4.314 2.157C.159 48.43-.174 49.17.064 52.283c.56-2.568 1.081-3.538 2.665-5.646m9.494 1.039c-.374.802-.638 1.408-.819 2.033c-.784 2.71.354 5.13-2.105 7.094c1.156 2.332 1.102 3.261 3.79 2.183c1.038-.415 1.894-.998 2.657-1.687a49.902 49.902 0 0 0-1.172 3.412c-1.923.816-4.452 1.336-5.42-.686c-.47-.98-.735-1.943-1.078-3.183c-3.167-3.281 1.568-7.613 4.147-9.166m.656 1.467c.655.381.828 1.074.9 2.007c-.39-.39-.703-.657-1.209-.6a7.53 7.53 0 0 1 .309-1.407m79.3 17.43c-.694.117-1.94.372-2.634.49c-1.855.313-2.073.759-2.361 2.585c-.136.86-.324 1.927-.46 2.788c.364-.973.803-2.104 1.227-3.032c.449-.98.7-1.073 1.653-1.591c.675-.368 1.9-.873 2.576-1.24zM15.007 79.378c1.458 5.041 3.94 9.994 6.691 14.158v.074c-.172.716-.37 1.413-.789 1.973c-1.967 2.632-6.971-1.23-8.42-2.709c-1.583-1.617-2.644-3.533-2.896-5.328c-.184-1.31-.006-1.341.908-2.268l3.695-3.74zm66.166 3.295c.301.977.538 1.946.976 2.984c.732 1.734 1.089 2.807 1.141 4.668l.168 5.889c.628 1.1.727 1.334.615 2.59c-.227 2.564-1.083 2.734-3.336 2.695c-1.023-.018-5.097-.038-6.13-.127c-1.461-.126-2.28-.255-2.727-.588c2.295-1.685 6.195-8.64 6.955-11.035c.803-2.53 1.683-4.738 2.338-7.076\\\"/><path fill=\\\"#ffc\\\" d=\\\"M104.414 40.664a1.223 1.223 0 0 0-1.2 1.123c-.037.392.176.894.444 1.168c.642-.236 1.264-.42 1.887-.525a1.244 1.244 0 0 0-1.13-1.766zm-18.09 5.873a1.652 1.652 0 0 0-1.498 2.363a1.8 1.8 0 0 0 .969.883a10.448 10.448 0 0 1 2.11-2.066a1.644 1.644 0 0 0-.09-.238a1.66 1.66 0 0 0-1.49-.942z\\\"/>\"\n\t\t},\n\t\t\"hadoop-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M106.56 79.156h7.499l.928-4.226c2.14 0 4.35.014 6.49.014c1.045 0 1.97-.324 2.792-.88a4.793 4.793 0 0 0 2.011-2.965c.47-2.143.944-4.287 1.417-6.43c.27-1.223.621-2.605-.256-3.71c-.807-1.017-1.878-1.096-3.054-1.096c-8.466.01-16.933 0-25.4 0c-.855 0-1.57.276-2.318.662c-.7-.496-1.333-.662-2.192-.662H82.856l.951-4.283h-7.51l-.929 4.178h-6.605c-.912 0-1.789.287-2.554.778c-.741-.461-1.313-.662-2.192-.662H42.215l.998-4.341l-7.498-.012l-4.324 19.337l7.492.002l2.254-9.896h2.535c.301 0 .242.172.191.399l-2.131 9.497h49.667c.843 0 1.502-.174 2.261-.561c.748.5 1.408.665 2.322.658l11.503-.097zM74.12 64.978h-2.21c-.388 0-.492.177-.57.524l-.83 3.725c-.079.357.102.415.414.415h2.152l1.045-4.664zm12.683.09h2.361c.455 0 .43.238.348.606l-.811 3.649c-.095.424-.36.417-.724.417h-2.403c-.353 0-.356-.209-.294-.494l.809-3.648c.1-.45.277-.53.714-.53m15.545 0h2.361c.455 0 .43.238.348.606l-.811 3.649c-.095.424-.36.417-.724.417h-2.403c-.353 0-.356-.209-.294-.494l.809-3.648c.1-.45.277-.53.714-.53m13.863 4.707h2.21c.388 0 .493-.177.57-.525l.83-3.724c.08-.357-.101-.415-.414-.415h-2.151z\\\"/><path fill=\\\"#6cf\\\" d=\\\"m38.36 56.523l-1.465 6.612h.017l-.062.26a3.002 3.002 0 0 0-.06.23l-1.22 5.484h.012l-1.037 4.66h3.623l1.037-4.66h.006l.82-3.7v-.02l.317-1.399h5.287c.777 0 1.277.64 1.105 1.418l-.832 3.752l-1.02 4.61h3.628l1.025-4.61h.006l1.224-5.535c.326-1.47-.612-2.678-2.082-2.678h-7.683l.98-4.424zm40.603 0L78 60.853l-7.678-.005c-1.469-.001-2.936 1.202-3.261 2.671l-1.684 7.579c-.326 1.469.61 2.671 2.08 2.671h11.307l2.863-12.916l.957-4.33zM52.11 60.85l-.673 3.039h9.787c.726.03 1.187.623 1.054 1.355l-.125.563l-8.455-.004c-1.47 0-2.938 1.202-3.263 2.672l-.094.423h-.002l-.487 2.198c-.325 1.47.61 2.672 2.08 2.672h12.083l.34-1.53h.001l1.426-6.43h-.004l.28-1.251h-.002l.228-1.034c.322-1.452-.59-2.641-2.03-2.67zm61.354.097l-2.361 10.635l-.502 2.28l-.957 4.33h3.62l.964-4.33l7.68.007c1.468 0 2.933-1.203 3.259-2.672l1.678-7.572c.325-1.47-.61-2.678-2.08-2.678zm-28.39.002c-1.47 0-2.94 1.204-3.266 2.674l-1.678 7.574c-.326 1.47.61 2.672 2.08 2.672h9.42c1.47 0 2.938-1.202 3.264-2.672l1.677-7.574c.326-1.47-.61-2.674-2.08-2.674zm15.525 0c-1.47 0-2.938 1.204-3.264 2.674l-1.678 7.574c-.325 1.47.61 2.672 2.08 2.672h9.42c1.47 0 2.938-1.202 3.264-2.672l1.678-7.574c.325-1.47-.61-2.674-2.08-2.674zm-28.57 2.944h5.298l-1.521 6.832h-5.293c-.778 0-1.272-.633-1.1-1.41l.889-4.012c.172-.777.949-1.41 1.726-1.41zm14.751.097h4.657c.778 0 1.273.637 1.101 1.414l-.889 4.01c-.172.778-.948 1.414-1.726 1.414h-4.658c-.778 0-1.272-.636-1.1-1.414l.887-4.01c.172-.777.95-1.414 1.728-1.414m15.528 0h4.656c.778 0 1.274.637 1.101 1.414l-.888 4.01c-.173.778-.95 1.414-1.729 1.414h-4.656c-.778 0-1.274-.636-1.102-1.414l.89-4.01c.171-.777.95-1.414 1.728-1.414m14.107 0h5.299c.778 0 1.272.64 1.1 1.418l-.89 4.006c-.171.777-.948 1.416-1.726 1.416H114.9zm-61.357 4.848c.032 0 .063.003.093.006h6.328l-.42 1.883h-6.435l.002-.004c-.508-.01-.83-.43-.717-.942c.114-.518.632-.943 1.15-.943z\\\"/><path fill=\\\"#ff0\\\" d=\\\"m13.365 54.834l-2.411.392l-2.2.965l-1.87 1.175l-1.778 2.17L4.102 60.6l-.972.358l-.257-.627l.45-.649l.1-.914l.301.012l.33.3l-.09-.932l-.364-.244l.011-.355l-.863.488l-.782.922l-.163.825l.334.66l.312 1.121l.634.3l.667-.032l.633-.368l-.422 2.14l.422 2.382l-.465 1.099l-1.52 1.64l.27.978l.72 1.135l1.36.957l.72.098l.801.027l-.5 2.053l1.839.753l2.29.302l.784-.513l.06-1.386l.875-1.447l.06-1.145l2.11.15l1.96-.18l-1.96 1.175l.332 1.417l1.235 1.929l1.206.512l.964-.392l.392-.783l2.02-1.537l.392.331l3.164.12l.633-.512l.06-.904l-.21-.392l-.151-2.441l-1.055-2.11l.18-.934l.634.331l1.778 1.658l.874.06l.965-.392l.964-.723l.482-1.567l2.834.18l1.718-.663l1.386-1.296l.995-1.869l.241-2.2l-.21-2.562l-.543-2.29l-.543-.724l-.753-.241l-1.327 1.447l-1.205.422l-1.055-1.748l-1.055-.965l-.573-.362l-2.29-1.899l-1.84-.994l-1.838-.15l-2.14.36l-1.869.694l-1.296 1.055l-1.024 1.236l-1.055.301z\\\"/><path fill=\\\"#ffc\\\" d=\\\"m23.186 49.46l-1.206.05l-2.605.578l-2.025 1.254l-1.159 1.64c2.698-.448 3.042-.672 4.438.772c-.565-.992-.73-1.463-.635-2.4c.133-1.32 2.042-1.462 3.192-1.893zm-7.09 3.474l-1.11.29c-.749.74-1.499 1.477-2.248 2.215l.463-.527l-2.605.338l-2.219.916l-2.027 1.69c-.435.643-.867 1.286-1.301 1.93l-.87 2.073l-.095 2.17c.113.708.223 1.416.336 2.123c.305.772.612 1.543.918 2.315c-.573-2.863-1.032-5.785 1.033-8.194c1.338-1.56 2.481-1.983 4.418-2.61l.432-.493l-1.35 2.422l-.482 1.447l1.013 1.205c.104-.675.137-1.166.485-1.752c.687-1.157 1.42-2.287 2.074-3.46c.914-1.641 1.699-2.697 3.135-4.098\\\"/><path fill=\\\"#cc0\\\" d=\\\"M24.46 49.564c.833.773 1.855 1.445 2.52 2.39c.258.365.544.551-.003 1.067c.579-.165.794-.148 1.257-.091c.844.102 1.634 1.3 1.684 2.16c-.01.08-.235.263-.887.443c-.013.025-.366-.047-.357-.023c.068.185.156.212.295.299c.03.206.05.524.191.75c.41-.008.811.037 1.213.117c.135.224.115.45.104.674l.464-.079l-.128-1.06l.414-.7l-.596-1.345l-1.139-1.088l-.11-.006l-1.28-.785l-2.09-1.709l-1.551-1.014zm9.788 4.192c.352 1.584.806 3.045.764 4.668c-.052 1.99-.441 4.505-2.285 5.705c-2.066 1.344-4.49.709-6.756.133l2.77 1.138l2.59.13l1.759-.518l1.373-1.139l1.035-2.174l.389-2.511l-.31-2.46l-.571-2.433l-.758-.54zm-10.629.174c-.1.028-.2.055-.299.084l-.468.228c-.926.743-1.032 1.757-.73 2.832c-.083-1.241.572-2.513 1.497-3.144m-4.197.029c-.578.07-1.156.138-1.735.207l-1.63.361l-.803 1.166l-.44 1.114c-.48 1.313-.9 2.438-1.627 3.627c.932-1.004 1.496-1.858 2.03-2.993c.207-.44.247-.958.824-.765c.026.44.119.88.145 1.32c.311-2.236 1.191-3.17 3.236-4.037m14.822.14c-.217.1-.429.148-.564.346c-.292.427-.541.787-1.024 1.086a3.19 3.19 0 0 1-.754.33c-.213.067-.341.006-.523.137l.324.057h.715l.879-.543l.517-.543zm-8.38 1.844c-.094.039-.251.13-.344.168l-.73.239l-1.12.847l-.633.657c-.129.08-.207.112-.336.11c.203.075.436.013.682-.052c.205.435.313.619.719.844a2.05 2.05 0 0 0-.235.976c.638-1.274 1.832-1.95 3.078-2.62c-.257.05-.52.116-.777.197l.14-.07c-.123-.464-.293-.685-.64-1.012c.085-.085.151-.207.195-.284zm-7.089.81l-.103.75l.05 1.556l.442 3.287l-.596 2.484l-1.838.363l-2.355 1.371l-1.336.264l-1.871-.883c1.954 2.817 3.617 1.42 6.518.47c.728-.24 1.196-.325 1.949-.276c.689-1.182.671-1.841.492-3.211c-.276-2.108-.91-4.099-1.352-6.174zm-15.21 1.175c-.047.183-.092.366-.14.549c-.937.61-1.305.878-1.202 2.01l.279 1.015l.396.27c.164.054.33.107.493.162l.886-.21l.455-1.413l-1.261.619H3.18l-.328-.502l.398-.584l.209-1.11c.09.028.18.053.27.08l.328.258l-.047-.584l-.223-.373zm5.968 3.668c-.036.653-.079.925.21 1.502c.365.733.816 1.421 1.214 2.146l.129-1.45zm16.6 1.558c-1.22.352-1.21.45-1.57 1.66c.475-.762.827-1.148 1.57-1.66m-5.19 1.54c.137.765.375.946.735 1.687c-.24 1.209-.625 2.646-1.088 3.713c-.196.45-.355.697-.7 1.045a17.87 17.87 0 0 1-1.828 1.609c-.474.366-.806.183-1.392.1c-.25.451-.317.702-.775.931c-.706.353-1.338-.408-1.891-.855l1.2 1.873l.827.777l.7.104l.931-.57l.492-.932l1.035-.778l1.268-1.085l.803-1.14l.123-.23l-.33.721l-1.035 1.217l.671.285h1.684c.05-.132.752.135 1.262-.09c.142-.063.269-.292.363-.424c.333-.465-.47-1.372-.227-3.058l-.724-2.356h-.2l.069-.207l.078-1.062l-1.164-.518c-.285-.267-.602-.49-.887-.758zm7.1.5l-2.434.31l-.181.492l.05.7l.235.413l.361.18l.285.027c.383.237.375.407.31.569c.303-.121.605-.24.907-.362l.588-.789l.436-1.123zM4.219 66.528l-.336.717c.308 1.039.582 1.696 1.17 2.604c-.103.367-.179.528-.414.828a9.272 9.272 0 0 0-1.5-.1l1.734 1.346c.285-.052.57-.105.856-.156l.853-.854l-1.217-1.89zm12.408 1.563c-.414.449-.75.865-1.088 1.373c-1.197.549-2.576.62-3.883.62l-.025.362l.103.104l.957.103l2.952-.076l.388-.57c.1-.8.219-1.204.596-1.916m-5.254.168c-.223 1.343-.169 2.245-.787 3.449c-.462.535-1.03 1.02-1.682 1.281c.055.33.071.538.04.78c-.115.87-1.857.485-2.573.45c1.15.297 2.298.592 3.447.887l.776-.31l.26-1.502l.724-1.346l.129-.828l-.232-1.941z\\\"/><path d=\\\"M18.283 48.844c-1.712.42-2.216.719-2.785 2.703c.723-1.453 1.272-1.99 2.785-2.703m4.4.105c-1.12.022-2.311.36-3.687.94a6.004 6.004 0 0 0-1.812 1.15c-.47.434-.868.937-1.305 1.52a2.284 2.284 0 0 0-.711.144c-.254.102-.51.267-.816.537a18.568 18.568 0 0 0-1.178 1.133c-1.43.23-2.597.485-3.64.889c-1.069.413-2.01.982-2.977 1.84a7.814 7.814 0 0 0-1.797 2.324a8.513 8.513 0 0 1-.604.625a2.15 2.15 0 0 1-.666.433c-.143.055-.2.087-.207.084a.347.347 0 0 1-.021-.068c.347-.334.405-.824.437-1.31c.043.05.083.11.125.175c.047.072.096.145.153.217l.236.3l.084-.374c.07-.314.123-.731.04-1.094a1.01 1.01 0 0 0-.353-.592l.055-.136c.06-.153.12-.311.172-.46l.103-.292l-.306.052c-.409.071-1.288.554-1.906 1.196c-.23.238-.427.502-.557.779c-.135.288-.195.59-.143.89c.046.263.179.52.416.762a8.5 8.5 0 0 0 .127.469c.05.157.104.298.17.436c.18.374.467.602.8.709c.269.086.566.09.858.025c-.057.33-.099.67-.113 1.045a13.47 13.47 0 0 0 .053 1.654a8.551 8.551 0 0 0 .123.87l-.164.44l-.254.69l-.555.551l-.52.514l-.124.12c-.35.338-.42.405-.32.999c.06.364.18.732.367 1.088c.172.327.402.648.699.945c.37.37.975.831 1.61 1.072c.36.137.734.204 1.083.149c-.018.054-.03.107-.05.162a6.135 6.135 0 0 1-.186.455c-.43.944.011 1.436.7 1.75c.342.156.75.262 1.13.361c.077.02.156.04.254.067c.45.121 1.226.345 1.935.39c.775.05 1.473-.111 1.66-.806a3.79 3.79 0 0 0 .135-.694c.016-.19.008-.383-.013-.619c.218-.484.316-.634.476-.87l.08-.118c.173-.257.256-.44.285-.645c.029-.198.003-.394-.033-.695h.002l-.017-.13a11.4 11.4 0 0 0 1.345.097c.224.001.447-.006.67-.018c-.061.032-.103.056-.17.09l-.084.043c-.597.307-.622.89-.435 1.49c.169.54.516 1.092.734 1.428c.458.706.894 1.302 1.424 1.627c.556.34 1.19.38 2.01-.063c.417-.225.547-.455.724-.765a5.73 5.73 0 0 1 .186-.309c.162-.103.584-.45 1.016-.806c.14-.117.29-.239.449-.368c.11.082.244.14.406.178c.21.05.463.072.764.094c.225.016.96.018 1.433.017h.342c.489.003.883-.024 1.182-.193c.318-.18.507-.5.549-1.072c.018-.255.021-.412-.014-.572c-.033-.149-.1-.287-.21-.483l-.019-.746c-.007-.263-.012-.524-.02-.787a3.596 3.596 0 0 0-.105-.81a5.372 5.372 0 0 0-.271-.766c-.08-.192-.147-.368-.211-.541v-.002a8.577 8.577 0 0 0-.346-.83c.01-.057.018-.117.028-.182l.275.264l.402.388c.307.296.587.564.916.758c.341.201.725.319 1.221.295c.52-.024 1.077-.244 1.535-.582c.443-.327.797-.766.945-1.254l.13-.424l.103-.34a8.44 8.44 0 0 0 2.266.086c.729-.076 1.433-.261 2.04-.585c.894-.477 1.562-1.179 2.044-2.012c.537-.932.838-2.03.953-3.158c.091-.906.042-2.137-.147-3.325c-.168-1.058-.446-2.085-.832-2.824a1.12 1.12 0 0 0-.207-.27a2.13 2.13 0 0 0-.77-.468c-.31-.107-.638-.13-.898.006a.754.754 0 0 0-.187.138a4.165 4.165 0 0 0-.453.586c-.159.232-.318.465-.508.627c-.222.19-.5.305-.762.41a5.16 5.16 0 0 0-.39-.77a7.295 7.295 0 0 0-.604-.815a3.344 3.344 0 0 0-.553-.526a8.011 8.011 0 0 0-.619-.414c-.616-.385-1.14-.845-1.674-1.314c-.243-.213-.488-.43-.728-.627c-1.273-1.05-2.461-1.56-3.73-1.639a5.766 5.766 0 0 0-.477-.01zm-5.761.018c-.863.208-1.028.369-1.287 1.215c.413-.62.651-.823 1.287-1.215m5.746.705c1.341-.059 2.547.393 3.898 1.53c.623.523 1.168 1.032 1.8 1.484c-.23.02-.427.06-.688.162c.317-.06.684 0 1.013.06c.093.06.188.119.286.176c.445.263.698.408 1 .828c.318.444.584.886.818 1.375a8.697 8.697 0 0 0-.397-.135a.851.851 0 0 0-.804.051l-.018.008c-.246.12-.629.257-.885.299c.13.045.42.061.555.008a.413.413 0 0 1 .057-.018a.856.856 0 0 0-.024.826a.47.47 0 0 0 .092.14a6.778 6.778 0 0 0-.36.147a5.642 5.642 0 0 1 1.641-.029c.037.175.074.362.108.55l-.207.016l-.016.002c-.263-.21-.556-.175-.957-.084c-1.218.278-.933.962-1.494 1.993c.582-.712.54-1.456 1.488-1.68c.221-.052.372-.118.522-.096c-.27.136-.504.36-.596.621c-.26.735-.099 1.355-.385 2.041c.355-.614.377-1.213.694-1.86c.113-.231.535-.603.795-.608l.212-.004c.063.408.1.813.077 1.15a12.889 12.889 0 0 1-.3 1.875c.322-.412.467-1.287.608-1.902c.147-.64.111-1.408-.017-2.096c-.177-.944.795-.792 1.359-1.236c.415-.327.702-.85 1.082-1.22c.377-.366.97.173 1.12.532c.643 1.557.935 4.005.765 5.574c-.191 1.761-1.04 3.684-2.594 4.551c-1.98 1.105-4.314.43-6.281-.232c-.42-.142-.713-.348-1.082-.58c.1.452.147.93.013 1.382c-.212.717-.555 1.891.418 2.108c.37.082.54.07 1.063-.2a1.958 1.958 0 0 1-.928.018a.606.606 0 0 1-.478-.414c.092.067.243.104.5.166c.721.174 1.408-.173 1.543-.674c.078-.292.066-.447.232-.845c.15.046.303.088.461.127l-.268.875c-.232.756-1.135 1.365-1.933 1.351c-.738-.013-1.206-.475-1.715-.928c-.35-.312-.689-.61-1.023-.906c-.919-.29-1.654-.629-2.506-1.26c.606.713 1.017 1.109 1.863 1.463c-.123 1.255-.558 2.169-.93 3.37c-.168.542-1.497 2.717-1.865 2.93c-.262.15-1.906 1.535-2.215 1.718c-.23.306-.433.729-.78.912c-1.054.558-1.732-.512-2.3-1.414c-.258-.411-.975-1.594-.35-1.926c.592-.313.922-.537 1.526-.933c.089.161.242.317.342.478l-.067-.53c-.04-.32-.039-.58-.013-.902l.074-.933c-.091.317-.273.632-.363.949a3.35 3.35 0 0 0-.084.324a10.66 10.66 0 0 1-4.053.053a25.154 25.154 0 0 0-.281-1.398c-.027.42-.01 1.579-.012 2.228c-.002.503-.022.675-.281 1.104c-.243.4-.348.492-.688 1.17c.028.427.03.71-.084 1.115c-.189.674-2.093.151-2.596.013c-.618-.169-1.897-.42-1.576-1.246c.283-.726.463-1.49.602-2.506c-1.134-1.633-2.189-3.872-2.39-5.855c-.158-1.54-.064-2.486.269-3.428c.528-1.492 1.266-2.784 2.45-3.824c1.6-1.403 3.095-1.966 5.434-2.322c-.562.63-1.12 1.295-1.726 2.01c-.614.723-.98 1.453-1.37 2.244c-.538 1.092-.526 1.508.188 2.466c.616.827.948 1.198 1.217 2.006c-.222.458-.302.844-.377 1.47c.754.823 1.313 1.388 2.045 1.562c.718.17 1.317.138 1.959-.19c1.426-.729 2.745-1.672 4.354-1.71c.744-1.83.67-3.36.312-5.13c-.244-1.209-.342-2.353-.418-3.586c-.302 1.27-.359 2.386-.135 3.65c.27 1.525.48 3.208-.271 4.548c-1.455.111-2.7.994-4.012 1.673c-.527.273-1.075.301-1.658.141c-.542-.149-.907-.507-1.49-1.18c-.01-.675.143-.988.453-1.6c.498-.982 1.049-1.896 1.652-2.862c-.739.892-1.44 1.638-2.021 2.535c-.223-.634-.54-.955-1.067-1.668c-.514-.697-.57-1.003-.185-1.809c.386-.81.714-1.522 1.373-2.232c1.137-1.229 2.18-2.597 3.424-3.807c.675-.657.95-.634 1.845-.77c.81-.122 1.6-.276 2.426-.468c-.799.074-1.57.102-2.348.12h-.023c.765-.976 1.209-1.52 2.451-2.06c1.338-.58 2.463-.936 3.506-.982m1.064 4.215c-1.664.416-1.977 1.117-1.763 2.191c.182-.808.508-1.589 1.763-2.191m-4.931.092c-.674.076-1.346.145-2.02.209c-.566.053-.657.044-1.058.44c-.61.604-1.204 2.675-1.393 3.503c.298-.688 1.045-2.612 1.617-3.102c.159-.135.27-.219.389-.279c-.41.687-.38.859-.236 1.78c.122-.937.445-1.299.976-1.997a14.035 14.035 0 0 0 1.725-.554m15.453.078c-.386.781-.98 1.435-1.79 1.836c-.433.214-.71.14-1.194.093c.492.142.805.32 1.289.147c.985-.352 1.459-1.144 1.695-2.076m-3.445 1.261l.101.217a.95.95 0 0 0-.078.063a.865.865 0 0 0-.187-.276zm-4.928.604c-.543.25-1.173.19-1.639.504c-.41.277-.978 1.155-1.394 1.527c.301-.117.593-.32.861-.533a1.118 1.118 0 0 0 .6.982c-.15.198-.275.42-.364.664a6.383 6.383 0 0 1 3.026-1.955a3.213 3.213 0 0 0-1.024.172a1.118 1.118 0 0 0-.73-.928c.242-.129.479-.265.664-.433M1.996 56.9C.556 57.916.194 58.377.39 60.432c.142-1.617.458-2.315 1.607-3.532zm-1.223.612c-.727.508-.823.717-.755 1.6c.158-.728.307-1.003.755-1.6m2.69.293a4.031 4.031 0 0 0-.233.576c-.222.768.102 1.453-.595 2.01c.327.66.312.924 1.074.619a2.49 2.49 0 0 0 .752-.479a14.153 14.153 0 0 0-.332.967c-.545.231-1.261.38-1.535-.193c-.133-.278-.208-.551-.305-.903c-.897-.93.443-2.157 1.174-2.597m.185.416c.186.108.236.304.256.568c-.11-.11-.198-.184-.341-.168a2.17 2.17 0 0 1 .085-.4m22.47 4.94c-.198.032-.55.105-.747.138c-.526.089-.586.215-.668.732c-.038.244-.092.546-.13.79c.102-.276.227-.597.347-.86c.127-.278.199-.302.469-.45c.191-.103.537-.247.728-.35zM4.251 66.786c.413 1.429 1.117 2.834 1.896 4.014v.02c-.048.202-.106.4-.224.558c-.558.746-1.975-.349-2.385-.768c-.449-.458-.749-1-.82-1.51c-.052-.37-.004-.38.256-.642c.349-.353.698-.705 1.046-1.059zM23 67.723c.085.276.151.55.275.843c.208.492.31.795.325 1.323l.046 1.67c.179.311.206.378.174.734c-.064.727-.307.775-.945.764c-.29-.005-1.444-.012-1.736-.037c-.414-.036-.647-.072-.774-.166c.65-.478 1.756-2.449 1.97-3.127c.229-.717.48-1.342.665-2.004\\\"/><path fill=\\\"#ffc\\\" d=\\\"M29.566 55.818a.347.347 0 0 0-.322.319c-.01.11.051.252.127.33a3.01 3.01 0 0 1 .533-.149a.354.354 0 0 0 .033-.115a.352.352 0 0 0-.37-.385zm-5.13 1.664a.467.467 0 0 0-.4.67c.056.12.157.204.273.25c.17-.225.375-.42.597-.586a.472.472 0 0 0-.47-.334\\\"/>\"\n\t\t},\n\t\t\"handlebars\": {\n\t\t\t\"body\": \"<path d=\\\"M49.444 48.231a18.439 18.439 0 0 0-3.037.03c-12.692 1.004-17.732 7.57-20.826 10.336c-3.093 2.766-8.82 9.393-12.672 8.195c-3.852-1.199-4.926-5.838-3.564-7.313c1.363-1.475 2.428-1.209 3.257 0a6.392 6.392 0 0 1 .789 3.185a7.314 7.314 0 0 0 2.367-3.565c.47-2.049.368-4.035-2.367-5.428c-6.935-3.503-11.412 2.745-12.109 4.21C.586 59.345-.5 61.65.258 66.936s3.268 10.142 11.268 12.016a33.691 33.691 0 0 0 22.536-2.633c7.007-3.34 20.182-9.22 23.5-9.813a28.836 28.836 0 0 1 6.443-.817a28.836 28.836 0 0 1 6.442.817c3.32.594 16.494 6.474 23.5 9.813a33.691 33.691 0 0 0 22.527 2.633c8-1.874 10.51-6.73 11.268-12.016c.758-5.286-.328-7.58-1.024-9.055c-.697-1.476-5.174-7.724-12.099-4.21c-2.735 1.393-2.838 3.38-2.367 5.428a7.314 7.314 0 0 0 2.367 3.565a6.392 6.392 0 0 1 .799-3.247c.83-1.209 1.894-1.465 3.257 0c1.362 1.465.288 6.166-3.564 7.365c-3.851 1.198-9.579-5.43-12.672-8.195c-3.094-2.766-8.144-9.302-20.836-10.326a18.439 18.439 0 0 0-17.598 9.07a18.439 18.439 0 0 0-14.561-9.1\\\"/>\"\n\t\t},\n\t\t\"handlebars-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M59.788 36.427a1.443 1.443 0 0 0-1.148.496a2.107 2.107 0 0 0-.433 1.454v13.851a2.107 2.107 0 0 0 .443 1.434a1.443 1.443 0 0 0 1.138.504a1.517 1.517 0 0 0 1.158-.483a2.107 2.107 0 0 0 .453-1.455V38.365a2.107 2.107 0 0 0-.443-1.453a1.506 1.506 0 0 0-1.168-.485m-58.201.01a1.454 1.454 0 0 0-1.17.486a2.191 2.191 0 0 0-.41 1.454v13.851c0 1.292.526 1.938 1.58 1.938a1.475 1.475 0 0 0 1.158-.504a2.107 2.107 0 0 0 .432-1.444v-4.214a8.522 8.522 0 0 1 .253-2.539a2.928 2.928 0 0 1 1.053-1.327a2.591 2.591 0 0 1 1.54-.483a1.801 1.801 0 0 1 1.726.82a4.94 4.94 0 0 1 .452 2.36v5.403c0 1.293.527 1.94 1.58 1.94a1.485 1.485 0 0 0 1.16-.495a2.107 2.107 0 0 0 .443-1.455V46.11a10.081 10.081 0 0 0-.117-1.633a3.992 3.992 0 0 0-1.98-2.76a4.435 4.435 0 0 0-2.106-.516a5.372 5.372 0 0 0-1.506.2a4.214 4.214 0 0 0-1.286.61a6.816 6.816 0 0 0-1.191 1.108v-4.74a2.107 2.107 0 0 0-.42-1.445a1.485 1.485 0 0 0-1.191-.496Zm51.954 0a1.338 1.338 0 0 0-1.117.506a2.38 2.38 0 0 0-.389 1.486v4.72a6.5 6.5 0 0 0-1.843-1.455a5.172 5.172 0 0 0-2.33-.473a4.856 4.856 0 0 0-3.845 1.674a6.858 6.858 0 0 0-1.463 4.667a9.028 9.028 0 0 0 .369 2.633a6.32 6.32 0 0 0 1.053 2.107a4.951 4.951 0 0 0 1.685 1.391a4.709 4.709 0 0 0 2.107.486a5.099 5.099 0 0 0 1.6-.243a4.772 4.772 0 0 0 1.36-.706a8.122 8.122 0 0 0 1.264-1.202v.317a1.949 1.949 0 0 0 .527 1.348a1.39 1.39 0 0 0 1.053.473a1.412 1.412 0 0 0 1.053-.452a1.96 1.96 0 0 0 .422-1.369V38.26a2.107 2.107 0 0 0-.389-1.358a1.38 1.38 0 0 0-1.117-.465m26.589.012a1.317 1.317 0 0 0-1.054.494a2.339 2.339 0 0 0-.39 1.465v13.894a2.023 2.023 0 0 0 .4 1.36a1.37 1.37 0 0 0 1.054.463a1.443 1.443 0 0 0 1.053-.463a1.928 1.928 0 0 0 .432-1.36v-.315c.344.408.624.712.842.916a4.951 4.951 0 0 0 .78.59a4.035 4.035 0 0 0 1.053.463a5.267 5.267 0 0 0 1.401.223a4.983 4.983 0 0 0 2.202-.486a4.835 4.835 0 0 0 1.707-1.37a6.32 6.32 0 0 0 1.054-2.107a9.091 9.091 0 0 0 .368-2.665a8.048 8.048 0 0 0-.665-3.392a4.951 4.951 0 0 0-1.864-2.191a5.12 5.12 0 0 0-2.792-.758a4.898 4.898 0 0 0-2.316.494a7.374 7.374 0 0 0-1.833 1.434V38.26a2.044 2.044 0 0 0-.295-1.337a1.401 1.401 0 0 0-1.137-.474m-9.755 4.667a7.132 7.132 0 0 0-2.623.463a5.33 5.33 0 0 0-1.992 1.327a5.794 5.794 0 0 0-1.232 2.107a7.932 7.932 0 0 0-.422 2.623a6.531 6.531 0 0 0 1.739 4.771a6.32 6.32 0 0 0 4.74 1.802a7.374 7.374 0 0 0 2.38-.347a5.804 5.804 0 0 0 1.718-.885a4.014 4.014 0 0 0 1.054-1.107a2.107 2.107 0 0 0 .337-1.053a.959.959 0 0 0-.306-.757a1.159 1.159 0 0 0-.79-.276a1.053 1.053 0 0 0-.706.212c-.393.372-.716.667-.97.884a6.953 6.953 0 0 1-.82.611a3.403 3.403 0 0 1-.918.422a3.834 3.834 0 0 1-1.053.136a2.928 2.928 0 0 1-2.697-1.675a4.214 4.214 0 0 1-.443-1.917h6.249a4.298 4.298 0 0 0 1.938-.315c.456-.239.683-.759.683-1.56a5.372 5.372 0 0 0-.706-2.633a5.193 5.193 0 0 0-2-2.043a6.215 6.215 0 0 0-3.16-.79m-40.208.074a1.38 1.38 0 0 0-1.054.452A2.012 2.012 0 0 0 28.712 43v9.187a2.107 2.107 0 0 0 .442 1.442a1.443 1.443 0 0 0 1.138.506a1.517 1.517 0 0 0 1.158-.483a2.107 2.107 0 0 0 .453-1.455v-4.004a9.986 9.986 0 0 1 .232-2.664a2.928 2.928 0 0 1 1.054-1.37a2.591 2.591 0 0 1 1.506-.515a1.79 1.79 0 0 1 1.749.832a5.32 5.32 0 0 1 .39 2.434v5.328a2.107 2.107 0 0 0 .443 1.445a1.58 1.58 0 0 0 2.296 0a2.107 2.107 0 0 0 .443-1.455v-5.94a13.02 13.02 0 0 0-.095-1.728a3.697 3.697 0 0 0-.412-1.263a3.487 3.487 0 0 0-1.432-1.56a4.582 4.582 0 0 0-2.255-.547a4.909 4.909 0 0 0-2.296.514a5.594 5.594 0 0 0-1.843 1.634v-.389a2.107 2.107 0 0 0-.212-.959a1.422 1.422 0 0 0-.547-.6a1.475 1.475 0 0 0-.757-.2m68.934 0a8.427 8.427 0 0 0-3.16.514a4.266 4.266 0 0 0-1.864 1.307a2.707 2.707 0 0 0-.6 1.633a1.127 1.127 0 0 0 .388.885a1.359 1.359 0 0 0 .918.401a1.053 1.053 0 0 0 .78-.222c.119-.147.326-.446.62-.895a2.992 2.992 0 0 1 1.054-1.053a3.887 3.887 0 0 1 1.831-.338a2.275 2.275 0 0 1 1.961.547a3.34 3.34 0 0 1 .506 1.854c-.639.19-1.262.356-1.866.496c-.604.14-1.306.291-2.107.453l-1.506.317a4.15 4.15 0 0 0-2.275 1.242a3.223 3.223 0 0 0-.831 2.233a3.413 3.413 0 0 0 .506 1.802a3.55 3.55 0 0 0 1.432 1.317a4.593 4.593 0 0 0 2.106.483a6.32 6.32 0 0 0 2.422-.452a9.87 9.87 0 0 0 2.245-1.348a6.805 6.805 0 0 0 1.053 1.348a1.412 1.412 0 0 0 .97.465a1.549 1.549 0 0 0 1.053-.402a1.18 1.18 0 0 0 .463-.895a5.941 5.941 0 0 0-.295-1.255a6.426 6.426 0 0 1-.294-1.874v-3.644a6.879 6.879 0 0 0-.496-2.856a3.086 3.086 0 0 0-1.705-1.57a8.912 8.912 0 0 0-3.309-.493m23.017 0a6.468 6.468 0 0 0-2.697.504a3.93 3.93 0 0 0-1.685 1.36a3.16 3.16 0 0 0-.568 1.81a2.718 2.718 0 0 0 .621 1.813a4.403 4.403 0 0 0 1.654 1.191a17.34 17.34 0 0 0 2.685.862a7.89 7.89 0 0 1 2.107.739a1.327 1.327 0 0 1 .642 1.232a1.2 1.2 0 0 1-.61.98a2.697 2.697 0 0 1-1.569.432a3.55 3.55 0 0 1-1.866-.422a3.497 3.497 0 0 1-1.179-1.274a2.707 2.707 0 0 0-.516-.695a1.053 1.053 0 0 0-.77-.243a1.285 1.285 0 0 0-.946.369a1.232 1.232 0 0 0-.37.895a2.655 2.655 0 0 0 .58 1.58a4.287 4.287 0 0 0 1.812 1.316a7.458 7.458 0 0 0 2.949.527a8.512 8.512 0 0 0 3.055-.483a3.697 3.697 0 0 0 2.549-3.687a2.634 2.634 0 0 0-.486-1.56a4.035 4.035 0 0 0-1.421-1.189a10.534 10.534 0 0 0-2.422-.864a47.569 47.569 0 0 1-1.96-.517a3.487 3.487 0 0 1-1.138-.526a.99.99 0 0 1-.42-.823a1.053 1.053 0 0 1 .568-.916a2.612 2.612 0 0 1 1.444-.368a2.686 2.686 0 0 1 1.337.284a2.897 2.897 0 0 1 .852.749a5.51 5.51 0 0 0 .79.841a1.285 1.285 0 0 0 .834.284a1.454 1.454 0 0 0 1.053-.348a1.19 1.19 0 0 0 .368-.895a1.875 1.875 0 0 0-.347-1.053a3.413 3.413 0 0 0-1.054-.959a5.551 5.551 0 0 0-1.654-.695a8.86 8.86 0 0 0-2.222-.251m-12.767.041c-1.039 0-1.56.702-1.56 2.107v8.88a2.107 2.107 0 0 0 .443 1.454a1.464 1.464 0 0 0 1.138.494a1.517 1.517 0 0 0 1.158-.483a2.107 2.107 0 0 0 .453-1.455v-2.664c0-.962.035-1.774.105-2.434a7.606 7.606 0 0 1 .337-1.726a2.36 2.36 0 0 1 .696-1.054a1.738 1.738 0 0 1 1.148-.37a3.94 3.94 0 0 1 1.191.222a4.014 4.014 0 0 0 .842.22a1.254 1.254 0 0 0 .874-.378a1.264 1.264 0 0 0 .401-.97a1.506 1.506 0 0 0-.948-1.337a4.108 4.108 0 0 0-1.949-.506a2.423 2.423 0 0 0-1.61.506a5.594 5.594 0 0 0-1.182 1.486a2.76 2.76 0 0 0-.388-1.486a1.296 1.296 0 0 0-1.149-.506m-89.299.01a8.427 8.427 0 0 0-3.16.517a4.266 4.266 0 0 0-1.864 1.306a2.707 2.707 0 0 0-.6 1.634a1.127 1.127 0 0 0 .39.885a1.359 1.359 0 0 0 .926.347a1.053 1.053 0 0 0 .78-.222c.119-.147.326-.446.62-.895a2.992 2.992 0 0 1 1.054-1.053a3.887 3.887 0 0 1 1.834-.338a2.275 2.275 0 0 1 1.991.547a3.34 3.34 0 0 1 .506 1.854c-.639.19-1.262.356-1.866.496c-.604.14-1.306.291-2.107.453l-1.506.317a4.15 4.15 0 0 0-2.275 1.242a3.223 3.223 0 0 0-.831 2.233a3.413 3.413 0 0 0 .506 1.802a3.55 3.55 0 0 0 1.432 1.317a4.593 4.593 0 0 0 2.106.483a6.32 6.32 0 0 0 2.422-.452a9.87 9.87 0 0 0 2.245-1.348a6.805 6.805 0 0 0 .969 1.368a1.412 1.412 0 0 0 .969.465a1.549 1.549 0 0 0 1.053-.401a1.18 1.18 0 0 0 .463-.895a5.941 5.941 0 0 0-.294-1.296a6.426 6.426 0 0 1-.253-1.8V46.16a6.879 6.879 0 0 0-.496-2.854a3.086 3.086 0 0 0-1.706-1.57a8.912 8.912 0 0 0-3.308-.496Zm50.206 2.181a2.644 2.644 0 0 1 2.022.77a3.877 3.877 0 0 1 .885 2.454h-5.794a4.108 4.108 0 0 1 .928-2.403a2.56 2.56 0 0 1 1.959-.82zm-21.531.138a2.686 2.686 0 0 1 1.549.484a3.297 3.297 0 0 1 1.125 1.4a5.267 5.267 0 0 1 .412 2.192a5.436 5.436 0 0 1-.517 2.275a3.013 3.013 0 0 1-1.104 1.348a2.823 2.823 0 0 1-1.54.442a2.728 2.728 0 0 1-1.526-.463a3.076 3.076 0 0 1-1.053-1.37a5.436 5.436 0 0 1-.402-2.212l.044-.02a5.678 5.678 0 0 1 .389-2.16a3.16 3.16 0 0 1 1.053-1.422a2.612 2.612 0 0 1 1.57-.494m36.12.062a2.528 2.528 0 0 1 1.56.496a3.16 3.16 0 0 1 1.053 1.411a5.878 5.878 0 0 1 .358 2.107a4.572 4.572 0 0 1-.841 3.035a2.623 2.623 0 0 1-2.107 1.053a2.855 2.855 0 0 1-2.286-1.053a4.393 4.393 0 0 1-.874-2.93l.01.01a5.594 5.594 0 0 1 .411-2.222a3.308 3.308 0 0 1 1.095-1.411a2.77 2.77 0 0 1 1.621-.496M22.445 47.75l.01.442a4.888 4.888 0 0 1-.432 2.38a2.77 2.77 0 0 1-1.18 1.054a3.74 3.74 0 0 1-1.75.412a2.033 2.033 0 0 1-1.442-.506a1.622 1.622 0 0 1-.547-1.233a1.348 1.348 0 0 1 .463-1.053a2.528 2.528 0 0 1 .98-.527c.343-.091.96-.23 1.853-.42a16.117 16.117 0 0 0 2.045-.549m79.006 0l.01.442a4.888 4.888 0 0 1-.432 2.38a2.77 2.77 0 0 1-1.18 1.054a3.74 3.74 0 0 1-1.75.412a2.033 2.033 0 0 1-1.442-.506a1.622 1.622 0 0 1-.547-1.233a1.348 1.348 0 0 1 .463-1.053a2.528 2.528 0 0 1 .979-.527c.344-.091.962-.23 1.854-.42a16.117 16.117 0 0 0 2.045-.549M54.158 69.5a12.862 12.862 0 0 0-2.123.024c-8.88.695-12.41 5.268-14.569 7.228c-2.16 1.96-6.173 6.572-8.859 5.76c-2.686-.81-3.446-4.127-2.498-5.15c.948-1.02 1.696-.842 2.286 0a4.466 4.466 0 0 1 .527 2.202a5.11 5.11 0 0 0 1.654-2.497a2.95 2.95 0 0 0-1.654-3.792c-4.846-2.455-7.975 1.918-8.428 2.94c-.453 1.022-1.252 2.633-.746 6.32c.505 3.687 2.285 7.09 7.847 8.428a23.565 23.565 0 0 0 15.8-1.844c4.91-2.338 14.118-6.449 16.446-6.86a20.162 20.162 0 0 1 4.487-.567a20.162 20.162 0 0 1 4.488.568c2.328.41 11.534 4.52 16.443 6.86a23.565 23.565 0 0 0 15.8 1.843c5.563-1.338 7.344-4.74 7.85-8.428c.506-3.687-.296-5.298-.749-6.32c-.453-1.022-3.581-5.395-8.427-2.94a2.95 2.95 0 0 0-1.654 3.792a5.11 5.11 0 0 0 1.654 2.497a4.466 4.466 0 0 1 .527-2.201c.59-.843 1.337-1.022 2.285 0c.948 1.022.19 4.339-2.495 5.15c-2.686.81-6.7-3.802-8.86-5.761c-2.16-1.96-5.688-6.533-14.568-7.228a12.862 12.862 0 0 0-12.294 6.316a12.862 12.862 0 0 0-10.17-6.34\\\"/>\"\n\t\t},\n\t\t\"hardhat\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconHardhat0\\\" x1=\\\"10.561\\\" x2=\\\"10.561\\\" y1=\\\"30.514\\\" y2=\\\"6.186\\\" gradientTransform=\\\"translate(-2.326 11.158)scale(2.56617)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#EDCF00\\\"/><stop offset=\\\".33\\\" stop-color=\\\"#F0D500\\\"/><stop offset=\\\".77\\\" stop-color=\\\"#F9E500\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFF100\\\"/></linearGradient><linearGradient id=\\\"deviconHardhat1\\\" x1=\\\"46.089\\\" x2=\\\"46.089\\\" y1=\\\"30.692\\\" y2=\\\"13.092\\\" gradientTransform=\\\"translate(-2.326 11.158)scale(2.56617)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#EDCF00\\\"/><stop offset=\\\".59\\\" stop-color=\\\"#F7E100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFF100\\\"/></linearGradient><radialGradient id=\\\"deviconHardhat2\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(47.57621 0 0 47.25236 7.172 132.114)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#FFF100\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#F9E500\\\"/><stop offset=\\\".67\\\" stop-color=\\\"#F0D500\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EDCF00\\\"/></radialGradient></defs><path fill=\\\"#fff100\\\" d=\\\"M127.99 98.893V92.68c0-1.155-1.943-2.256-5.43-3.249l.084-7.732a57.71 57.71 0 0 0-10.588-33.296A58.573 58.573 0 0 0 84.121 27.13l-.25-1.55a4.419 4.419 0 0 0-1.046-2.238a4.483 4.483 0 0 0-2.092-1.337a59.402 59.402 0 0 0-33.167 0c-.814.239-1.54.7-2.1 1.335a4.398 4.398 0 0 0-1.051 2.237l-.24 1.445a58.588 58.588 0 0 0-28.13 21.256A57.734 57.734 0 0 0 5.374 81.697v7.765c-3.439.99-5.356 2.079-5.356 3.226V98.9a1.514 1.514 0 0 0 .224 1.047a15.017 15.017 0 0 1 5.766-2.604a113.37 113.37 0 0 1 16.174-2.684a10.906 10.906 0 0 1 8.487 2.712a22.967 22.967 0 0 0 15.42 5.933h35.834a22.95 22.95 0 0 0 15.417-5.938a10.914 10.914 0 0 1 8.489-2.743A114.1 114.1 0 0 1 122 97.297a13.498 13.498 0 0 1 5.466 2.373c.09.09.2.17.277.254a1.54 1.54 0 0 0 .246-1.031z\\\"/><path fill=\\\"url(#deviconHardhat0)\\\" d=\\\"M30.752 85.818a136.171 136.171 0 0 1-.077-4.293c.018-21.597 5.112-40.966 13.503-54.493a58.588 58.588 0 0 0-28.13 21.253A57.734 57.734 0 0 0 5.373 81.697v7.765a143.449 143.449 0 0 1 25.38-3.644Z\\\"/><path fill=\\\"url(#deviconHardhat1)\\\" d=\\\"M122.639 81.697a57.546 57.546 0 0 0-13.383-36.943a119.455 119.455 0 0 1 5.548 36.76c0 2.105-.056 4.183-.153 6.25a73.11 73.11 0 0 1 7.888 1.662l.097-7.73z\\\"/><path fill=\\\"url(#deviconHardhat2)\\\" d=\\\"M122 97.32a113.49 113.49 0 0 0-16.175-2.685a10.911 10.911 0 0 0-8.488 2.726a22.95 22.95 0 0 1-15.42 5.935h-35.82a22.962 22.962 0 0 1-15.411-5.933a10.904 10.904 0 0 0-8.49-2.748a113.787 113.787 0 0 0-16.174 2.682A15.215 15.215 0 0 0 .26 99.9c2.72 4.127 30.234 8.456 63.758 8.456c33.527 0 61.029-4.345 63.754-8.453c-.095-.082-.2-.162-.28-.252A14.019 14.019 0 0 0 122 97.32\\\"/><path fill=\\\"#0a0a0a\\\" d=\\\"M64 37.882L50.28 61.034L64 69.477V37.88Z\\\"/><path fill=\\\"#4b4d4d\\\" d=\\\"M64.005 37.89v31.579l13.716-8.427zm0 36.165v11.011c.256-.364 13.716-19.451 13.716-19.46l-13.716 8.451z\\\"/><path fill=\\\"#0a0a0a\\\" d=\\\"m64.005 74.06l-13.72-8.438l13.72 19.452v-11.02Z\\\"/>\"\n\t\t},\n\t\t\"hardhat-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconHardhatWordmark0\\\" x1=\\\"10.561\\\" x2=\\\"10.561\\\" y1=\\\"30.514\\\" y2=\\\"6.186\\\" gradientTransform=\\\"translate(-.707 47.928)scale(.78049)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#EDCF00\\\"/><stop offset=\\\".33\\\" stop-color=\\\"#F0D500\\\"/><stop offset=\\\".77\\\" stop-color=\\\"#F9E500\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFF100\\\"/></linearGradient><linearGradient id=\\\"deviconHardhatWordmark1\\\" x1=\\\"46.089\\\" x2=\\\"46.089\\\" y1=\\\"30.692\\\" y2=\\\"13.092\\\" gradientTransform=\\\"translate(-.707 47.928)scale(.78049)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#EDCF00\\\"/><stop offset=\\\".59\\\" stop-color=\\\"#F7E100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFF100\\\"/></linearGradient><radialGradient id=\\\"deviconHardhatWordmark2\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(14.47011 0 0 14.37161 2.181 84.717)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#FFF100\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#F9E500\\\"/><stop offset=\\\".67\\\" stop-color=\\\"#F0D500\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EDCF00\\\"/></radialGradient></defs><path fill=\\\"#fff\\\" d=\\\"M58.256 71.218v-6.074h-6.824v6.074h-2.391V57.432h2.391v5.794h6.824V57.43h2.414v13.787zm14.313.002l-.479-1.658c-.522.862-2.066 1.815-4.37 1.815c-2.392 0-4.305-1.056-4.305-3.384c0-2.024 1.456-2.952 4.63-3.252l3.502-.345c-.065-1.603-.653-2.531-2.895-2.531c-2.066 0-2.63.82-2.63 2.198l-2.266.022c0-2.284.956-4.049 4.87-4.049c4.545 0 5.2 1.94 5.2 4.91v6.27zm-1.023-5.084l-3.15.345c-1.934.217-2.587.625-2.587 1.488c0 1.012.87 1.594 2.5 1.594c2.044 0 3.241-1.163 3.241-3.08zm10.025-4.095c-2.327 0-2.788 1.277-2.788 3.059v6.118h-2.322v-11.03h1.24l.55 1.53c.347-.732 1.412-1.68 3.586-1.68h.37v2.047c-.224 0-.44-.044-.636-.044m11.177 9.178l-.522-1.574c-.392.755-1.63 1.725-4.266 1.725c-3.674 0-4.763-2.65-4.763-5.666c0-3.017 1.044-5.666 4.74-5.666c2.197 0 3.306.776 3.784 1.509v-5.56h2.284V71.22Zm-4.11-9.244c-2.543 0-3.065 1.508-3.065 3.727c0 2.218.523 3.77 3.044 3.77c2.588 0 3.13-1.509 3.13-3.77c0-2.131-.454-3.725-3.109-3.725zm16.18 9.244v-6.183c0-2.068-.349-3.059-2.72-3.059c-2.347 0-2.849.97-2.849 3.059l-.042 6.183h-2.283V55.988h2.284v5.575c.434-.79 1.412-1.529 3.544-1.529c3.632 0 4.37 2.048 4.37 5.214v5.967zm13.744.001l-.479-1.658c-.523.862-2.067 1.815-4.375 1.815c-2.393 0-4.306-1.056-4.306-3.384c0-2.024 1.458-2.952 4.633-3.252l3.5-.345c-.061-1.603-.648-2.531-2.895-2.531c-2.065 0-2.631.82-2.631 2.198l-2.266.022c0-2.284.957-4.049 4.87-4.049c4.546 0 5.2 1.94 5.2 4.91v6.27zm-1.022-5.084l-3.151.345c-1.934.217-2.587.626-2.587 1.488c0 1.012.87 1.594 2.5 1.594c2.044 0 3.241-1.163 3.241-3.08zm7.611-4.095v6.01c0 1.035.435 1.509 2.849 1.402v1.849c-3.675.215-5.218-.647-5.218-3.255v-6.006h-1.59v-1.378l1.588-.474v-2.757h2.305v2.757h2.913v1.849z\\\"/><path fill=\\\"#fff100\\\" d=\\\"M38.927 74.612v-1.89c0-.35-.59-.685-1.651-.987l.026-2.352c0-3.623-1.124-7.158-3.22-10.127a17.815 17.815 0 0 0-8.497-6.47l-.076-.471a1.344 1.344 0 0 0-.318-.68a1.364 1.364 0 0 0-.636-.408a18.067 18.067 0 0 0-10.088 0a1.362 1.362 0 0 0-.639.406a1.35 1.35 0 0 0-.32.68l-.072.44a17.82 17.82 0 0 0-8.556 6.465a17.56 17.56 0 0 0-3.246 10.164v2.362c-1.046.301-1.629.632-1.629.981v1.89a.46.46 0 0 0 .068.318a4.567 4.567 0 0 1 1.754-.792a34.48 34.48 0 0 1 4.92-.816a3.317 3.317 0 0 1 2.58.825a6.985 6.985 0 0 0 4.69 1.804h10.9a6.98 6.98 0 0 0 4.688-1.806a3.32 3.32 0 0 1 2.582-.834c1.657.153 3.302.424 4.919.813a4.105 4.105 0 0 1 1.662.722c.028.027.061.051.085.077a.468.468 0 0 0 .074-.314\\\"/><path fill=\\\"url(#deviconHardhatWordmark0)\\\" d=\\\"M9.353 70.636a41.416 41.416 0 0 1-.023-1.306c.005-6.568 1.554-12.46 4.107-16.574A17.82 17.82 0 0 0 4.88 59.22a17.56 17.56 0 0 0-3.247 10.162v2.362a43.63 43.63 0 0 1 7.72-1.108\\\"/><path fill=\\\"url(#deviconHardhatWordmark1)\\\" d=\\\"M37.3 69.382a17.502 17.502 0 0 0-4.07-11.236a36.332 36.332 0 0 1 1.687 11.181c0 .64-.017 1.272-.047 1.9a22.236 22.236 0 0 1 2.4.506l.03-2.35z\\\"/><path fill=\\\"url(#deviconHardhatWordmark2)\\\" d=\\\"M37.106 74.134a34.517 34.517 0 0 0-4.92-.816a3.319 3.319 0 0 0-2.581.829a6.98 6.98 0 0 1-4.69 1.805H14.02a6.984 6.984 0 0 1-4.688-1.805a3.316 3.316 0 0 0-2.582-.836a34.608 34.608 0 0 0-4.92.816a4.628 4.628 0 0 0-1.752.792c.827 1.255 9.195 2.572 19.392 2.572s18.561-1.321 19.39-2.571c-.029-.025-.06-.05-.085-.077a4.264 4.264 0 0 0-1.67-.709z\\\"/><path fill=\\\"#0a0a0a\\\" d=\\\"m19.465 56.056l-4.172 7.042l4.172 2.568z\\\"/><path fill=\\\"#4b4d4d\\\" d=\\\"M19.467 56.059v9.604l4.171-2.563zm0 11v3.348c.078-.11 4.171-5.916 4.171-5.918z\\\"/><path fill=\\\"#0a0a0a\\\" d=\\\"m19.467 67.06l-4.173-2.567l4.173 5.917v-3.352z\\\"/>\"\n\t\t},\n\t\t\"harvester\": {\n\t\t\t\"body\": \"<path fill=\\\"#00A580\\\" d=\\\"M12.82 11.23C5.744 11.23 0 16.873 0 23.95v79.999c0 7.077 5.744 12.82 12.82 12.82h102.36c7.076 0 12.82-5.743 12.82-12.82V24.05c0-7.077-5.744-12.82-12.82-12.82Zm63.385 27.45c.488-.038.975.038 1.437.243h23.077c.82-.308 1.743-.204 2.564.206c.718.41 1.126 1.025 1.434 1.743l12.412 21.538v.103c.102.102.101.308.204.41c.41.923.308 1.846-.204 2.667l-12.616 21.846a3.531 3.531 0 0 1-1.23 1.23c-.103 0-.207.102-.207.102c-.205.103-.512.207-.717.207c-.205 0-.41.102-.513.102H76.41c-.308 0-.512 0-.717-.102h-.207l-.615-.309c-.512-.307-.82-.717-1.127-1.127L61.949 67.128h-9.333l8.922 15.487h4.205a3.198 3.198 0 0 1 3.18 3.18c0 1.847-1.436 3.282-3.282 3.282h-6.052c-1.128 0-2.153-.615-2.768-1.64L45.23 67.127h-9.334l8.924 15.487h4.205a3.197 3.197 0 0 1 3.18 3.18c0 1.847-1.436 3.282-3.282 3.282h-6.052c-1.128 0-2.155-.615-2.77-1.64L28.513 67.127h-9.332l8.922 15.487h4.102a3.197 3.197 0 0 1 3.18 3.18c.102 1.847-1.334 3.282-3.18 3.282h-6.051c-1.129 0-2.153-.615-2.769-1.64L10.871 65.59c-.512-.924-.614-1.948-.204-2.769c0-.102.102-.206.102-.308v-.103l12.616-21.846c.616-1.026 1.64-1.641 2.769-1.641h6.051a3.195 3.195 0 0 1 3.18 3.18a3.197 3.197 0 0 1-3.18 3.18h-4.102L19.18 60.77h9.332l11.693-20.206c.615-1.026 1.64-1.641 2.768-1.641h6.052a3.195 3.195 0 0 1 3.18 3.18a3.197 3.197 0 0 1-3.18 3.18H44.82L35.897 60.77h9.333l11.693-20.206c.615-1.026 1.642-1.641 2.77-1.641h6.05a3.197 3.197 0 0 1 3.18 3.18a3.198 3.198 0 0 1-3.18 3.18h-4.205L52.616 60.77h9.333L73.23 41.18c.205-.82.718-1.64 1.538-2.05c.462-.257.95-.41 1.436-.45zm5.846 6.603l3.487 6.256h6.871L96 45.283zm-5.641 3.18L69.332 60.77h7.386l3.384-5.95zm25.334 0L98.05 54.82l3.386 5.95h7.383zM85.64 57.998l-3.383 5.95l3.383 5.95h6.873l3.384-5.95l-3.384-5.95zm-16.308 9.129l7.078 12.308l3.692-6.46l-3.384-5.848zm32.104 0l-3.488 5.95l3.692 6.46l7.18-12.41zm-15.693 9.129l-3.692 6.358h14.154l-3.692-6.358z\\\"/>\"\n\t\t},\n\t\t\"harvester-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#00a580\\\" d=\\\"M38.125 20.435c-3.558 0-6.507 2.847-6.507 6.406v40.565c0 3.559 2.949 6.508 6.507 6.508h51.85c3.56 0 6.508-2.95 6.508-6.508V26.942c0-3.558-2.949-6.507-6.507-6.507zm32.026 13.828h13.014c.102.102.202.101.304.101h.101c.102 0 .204.102.306.102l.202.202h.104l.202.205l.101.101l6.406 11.082c.102.102.102.101.102.203c.101.101.1.204.1.407v.71c0 .102-.1.205-.1.307c0 .101 0 .202-.203.202l-6.406 11.082l-.101.102l-.205.204h-.1a.218.218 0 0 1-.203.203c-.102 0-.103.1-.205.1c0 .103-.101.104-.101.104c-.102.102-.306.101-.407.101h-12.81c-.102 0-.305-.1-.407-.1c0-.103-.101-.104-.101-.104c-.102 0-.101-.101-.203-.101l-.204-.203h-.102l-.202-.204l-.102-.102L63.034 48.7h-4.778l4.575 7.828h2.135c.915 0 1.626.713 1.626 1.628c0 .915-.71 1.626-1.626 1.626h-3.05c-.61 0-1.119-.305-1.424-.814L54.595 48.7h-4.778l4.575 7.828h2.135c.915 0 1.626.713 1.626 1.628c0 .915-.711 1.626-1.626 1.626h-3.05c-.61 0-1.119-.305-1.424-.814L46.158 48.7h-4.78l4.575 7.828h2.137c.915 0 1.626.713 1.626 1.628c0 .915-.711 1.626-1.626 1.626h-3.05c-.61 0-1.12-.305-1.424-.814L37.21 47.885c-.102 0-.101 0-.101-.101c-.102-.102-.102-.202-.102-.304v-.814c0-.102.102-.204.102-.306l.101-.101l6.406-11.082a1.622 1.622 0 0 1 1.424-.813h3.05c.915 0 1.626.712 1.626 1.627s-.711 1.626-1.626 1.626h-2.137l-4.575 7.83h4.78l5.895-10.27a1.622 1.622 0 0 1 1.424-.813h3.05c.915 0 1.626.712 1.626 1.627s-.711 1.626-1.626 1.626h-2.135l-4.575 7.83h4.778l5.897-10.27a1.622 1.622 0 0 1 1.424-.813h3.05c.915 0 1.626.712 1.626 1.627s-.711 1.626-1.626 1.626h-2.135l-4.575 7.83h4.778l5.794-10.473l.103-.101l.203-.205h.101c0-.101.103-.202.205-.202c.101 0 .202-.102.304-.102h.1c.103-.101.205-.1.307-.1zm3.05 3.354l1.83 3.255h3.456l1.83-3.255zm-2.848 1.626l-3.66 6.204h3.763l1.728-2.95zm12.709 0l-1.83 3.255l1.728 2.949h3.66zm-8.03 4.982l-1.73 2.95l1.73 2.948h3.455l1.73-2.949l-1.73-2.949zM66.694 48.7l3.66 6.303l1.83-3.253l-1.728-3.05zm16.266.101l-1.727 2.95l1.932 3.252l3.558-6.202zm-7.928 4.576l-1.933 3.254h7.218l-1.83-3.254Z\\\"/><path fill=\\\"#344845\\\" d=\\\"M79.81 90.586c-4.068 0-6.407 1.83-6.407 4.88c0 3.355 2.95 4.576 5.39 5.39c1.626.508 2.948.914 2.948 2.235c0 .915-.51 1.627-2.238 1.627c-2.541 0-3.049-1.524-2.744-2.846l-3.66.304c-.508 3.558 2.237 5.39 6.202 5.39c4.371 0 6.507-2.136 6.507-5.084c0-3.355-2.95-4.372-5.39-5.185c-1.626-.61-2.948-1.017-2.948-2.339c0-1.017.712-1.525 2.033-1.525c1.932 0 2.543 1.017 2.34 2.949l3.76-.306c.509-2.542-.914-5.389-5.794-5.49zM0 90.79v16.368h4.067v-6.914h4.982v6.914h4.067V90.79H9.049v6.201H4.067V90.79Zm20.131 0l-5.592 16.368h3.559l1.016-3.151h5.489l1.016 3.151h4.067L24.198 90.79zm11.183 0v16.368h4.067v-6.507h.914c.915 0 1.525 2.136 2.033 3.255c1.118 2.643 2.238 3.353 4.17 3.353c.508 0 1.118-.1 1.626-.202l.304-2.848c-.203.102-.406.102-.61.102c-1.423 0-1.83-1.524-2.541-2.947c-.204-.61-.61-1.118-1.118-1.525c1.931-.61 3.252-2.44 3.252-4.474c0-3.05-2.134-4.575-5.387-4.575zm12.81 0l5.693 16.368h3.761L59.17 90.79h-3.66l-3.05 9.251c-.203 1.017-.407 1.932-.508 2.95h-.101c-.102-1.018-.204-1.933-.509-2.95l-3.05-9.251zm16.674 0v16.57h11.08v-3.05h-7.013v-3.862h5.693v-3.05h-5.693V93.84h6.81v-3.05zm26.027 0v3.05h4.473v13.42h4.067V93.84h4.575v-3.05zm14.843 0v16.57h11.082v-3.05h-7.016v-3.862h5.693v-3.05h-5.693V93.84h6.811v-3.05zm13.216 0v16.368h4.067v-6.507h.916c.915 0 1.525 2.136 2.033 3.255c1.118 2.643 2.236 3.353 4.168 3.353c.508 0 1.118-.1 1.626-.202l.306-2.848c-.203.102-.406.102-.61.102c-1.423 0-1.83-1.524-2.541-2.947c-.204-.61-.612-1.118-1.12-1.525c1.931-.61 3.254-2.44 3.254-4.474c0-3.05-2.135-4.575-5.389-4.575zm-79.503 2.949h1.93c1.119 0 2.034.507 2.034 1.93c0 1.728-1.424 2.136-2.542 2.136H35.38zm83.57 0h1.932c1.119 0 2.034.507 2.034 1.93c0 1.728-1.424 2.136-2.542 2.136h-1.424zM21.96 94.755h.101c.102 1.017.203 1.931.508 2.846l1.12 3.457h-3.558l1.22-3.558c.304-.915.507-1.83.609-2.745\\\"/>\"\n\t\t},\n\t\t\"haskell\": {\n\t\t\t\"body\": \"<path fill=\\\"#463B63\\\" d=\\\"M0 110.2L30.1 65L0 19.9h22.6L52.7 65l-30.1 45.1H0z\\\"/><path fill=\\\"#5E5187\\\" d=\\\"M30.1 110.2L60.2 65L30.1 19.9h22.6l60.2 90.3H90.4L71.5 81.9l-18.8 28.2H30.1z\\\"/><path fill=\\\"#904F8C\\\" d=\\\"m102.9 83.8l-10-15.1H128v15.1zM87.8 61.3l-10-15.1H128v15.1z\\\"/>\"\n\t\t},\n\t\t\"haskell-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#333\\\" d=\\\"M47.1 52.5v18.7H42v-7.3h-6.3v7.3h-5.1V52.5h5.1v6.9H42v-6.9zm6.7 19c-.7 0-1.3-.1-1.9-.3s-1.1-.5-1.6-.9c-.4-.4-.8-.9-1-1.4c-.2-.6-.3-1.2-.3-1.9s.1-1.3.4-1.9s.7-1.1 1.2-1.5s1.2-.7 1.9-1c.7-.2 1.5-.3 2.4-.3c1.1 0 2.1.2 2.8.5v-.4c0-.6-.2-1.1-.6-1.4s-1-.5-1.8-.5s-1.5.1-2.2.4c-.7.2-1.4.6-2.1 1.1l-1.4-3.1c1.8-1.2 3.9-1.8 6.2-1.8c2.2 0 3.9.5 5.1 1.5s1.8 2.5 1.8 4.4v2.7c0 .5.1.8.3 1s.5.3.9.3v4.2c-.5.1-.9.1-1.3.2s-.8.1-1.1.1c-.9 0-1.6-.2-2.1-.5s-.8-.8-.9-1.4l-.1-.5c-.6.8-1.3 1.4-2.1 1.8c-.7.4-1.6.6-2.5.6m1.5-3.6c.3 0 .6 0 .9-.1s.6-.2.8-.4c.2-.1.4-.3.5-.4c.1-.2.2-.4.2-.5v-1c-.3-.1-.6-.2-1-.3s-.7-.1-.9-.1c-.6 0-1.1.1-1.5.4s-.6.7-.6 1.1s.1.7.4.9c.3.3.7.4 1.2.4m16.5 3.6c-.6 0-1.2 0-1.9-.1s-1.3-.2-2-.3c-.6-.1-1.2-.3-1.8-.5s-1.1-.4-1.6-.7l1.9-3.4c1 .5 1.9.9 2.8 1.2s1.7.4 2.5.4c.9 0 1.3-.2 1.3-.7c0-.2-.2-.4-.5-.6c-.4-.2-1-.4-2-.6c-1-.3-1.8-.5-2.5-.8s-1.2-.6-1.6-.9s-.7-.7-.9-1.1s-.3-.9-.3-1.4c0-.7.1-1.4.4-1.9c.3-.6.7-1.1 1.2-1.6c.5-.4 1.1-.8 1.9-1c.7-.2 1.5-.4 2.4-.4s1.9.1 3 .4s2.2.6 3.3 1.2l-1.9 3.2c-1-.5-1.8-.8-2.4-1s-1.3-.3-1.9-.3c-.4 0-.7.1-.9.2s-.3.3-.3.5c0 .1 0 .3.1.4s.2.2.4.3s.4.2.7.3s.7.2 1.2.3c1.1.3 1.9.5 2.7.8c.7.3 1.3.6 1.7.9s.7.7.9 1.2c.2.4.3.9.3 1.5c0 1.4-.5 2.5-1.6 3.4c-1.3.7-2.7 1.1-4.6 1.1m16.9-.3l-3.1-5.1l-1 1.1v3.9h-5V52h5v10.5l3.7-5.1h5.3l-4.8 6.1l5.2 7.8h-5.3z\\\" opacity=\\\".937\\\"/><path fill=\\\"#333\\\" d=\\\"M101 71.5c-1.2 0-2.3-.2-3.2-.6s-1.7-.9-2.4-1.6c-.6-.6-1.1-1.4-1.4-2.2s-.5-1.7-.5-2.7s.2-1.9.5-2.8s.8-1.7 1.4-2.3c.6-.7 1.4-1.2 2.4-1.6c.9-.4 2-.6 3.3-.6c1.2 0 2.3.2 3.3.6c.9.4 1.7.9 2.4 1.6c.6.6 1.1 1.4 1.4 2.3s.5 1.8.5 2.7c0 .3 0 .5-.1.8c0 .3 0 .5-.1.7h-9.7c.1.7.3 1.3.8 1.6s1 .5 1.6.5c.5 0 1.1-.1 1.5-.4c.5-.2.8-.6 1-1l4.2 1.2c-.6 1.1-1.4 2-2.6 2.7s-2.6 1.1-4.3 1.1m2.2-8.7c-.1-.7-.3-1.2-.7-1.6s-.9-.6-1.6-.6c-.6 0-1.2.2-1.6.6s-.6.9-.7 1.6zm6.9-10.8h5v13.4c0 1.1.4 1.6 1.3 1.6c.2 0 .4 0 .7-.1c.2-.1.5-.2.7-.3l.6 4c-.6.3-1.3.5-2 .7s-1.4.2-2.1.2c-1.3 0-2.4-.3-3.1-1s-1.1-1.7-1.1-3zm9.6 0h5v13.4c0 1.1.4 1.6 1.3 1.6c.2 0 .4 0 .7-.1c.2-.1.5-.2.7-.3l.6 4c-.6.3-1.3.5-2 .7s-1.4.2-2.1.2c-1.3 0-2.4-.3-3.1-1s-1.1-1.7-1.1-3z\\\" opacity=\\\".937\\\"/><path fill=\\\"#463B63\\\" d=\\\"M0 71.3L6.2 62L0 52.6h4.7l6.2 9.3l-6.2 9.3H0z\\\"/><path fill=\\\"#463B63\\\" d=\\\"m6.2 71.3l6.2-9.3l-6.2-9.3h4.7l12.5 18.7h-4.7l-3.9-5.8l-3.9 5.8H6.2z\\\"/><path fill=\\\"#904F8C\\\" d=\\\"m21.3 65.8l-2.1-3.1h7.3v3.1zm-3.1-4.7L16.1 58h10.4v3.1z\\\"/>\"\n\t\t},\n\t\t\"haxe\": {\n\t\t\t\"body\": \"<path fill=\\\"#F6B214\\\" d=\\\"m15.7 64l48.4-48.4L0 0z\\\"/><path fill=\\\"#F17321\\\" d=\\\"m64 15.7l48.4 48.4L128 0z\\\"/><path fill=\\\"#EF5E21\\\" d=\\\"m112.3 64l-48.4 48.4L128 128z\\\"/><path fill=\\\"#F6B214\\\" d=\\\"M64 112.3L15.6 63.9L0 128z\\\"/><path fill=\\\"#EA8220\\\" d=\\\"M15.6 63.9L64 15.7L112.3 64L64 112.3z\\\"/><path fill=\\\"#F8EF23\\\" d=\\\"M15.6 63.9L0 32V0zM0 128V96l15.6-32.1z\\\"/><path fill=\\\"#F8C713\\\" d=\\\"M0 0h32l32 15.7zm128 0L64 15.7L96 0z\\\"/><path fill=\\\"#EC4822\\\" d=\\\"M112.3 64L128 0v32zm15.7 64V96l-15.7-32z\\\"/><path fill=\\\"#EF5E21\\\" d=\\\"m0 128l64-15.7L32 128z\\\"/><path fill=\\\"#EA8220\\\" d=\\\"M128 128H96l-32-15.7z\\\"/>\"\n\t\t},\n\t\t\"helm\": {\n\t\t\t\"body\": \"<path fill=\\\"#0F1689\\\" d=\\\"M35.5 30.5c-.2-.1-.3-.3-.5-.4c-3.2-3.1-5.7-6.8-7.2-11.1c-.4-1.2-.7-2.4-.7-3.7v-.4c.1-1.7 1.2-2.5 2.8-2.1c.5.1 1 .3 1.4.6c1.8.9 3.2 2.2 4.5 3.7c2.3 2.5 4.2 5.5 5.5 8.7c0 .1.1.2.1.2s.1.1.2.1c6.2-3.8 13.3-6.1 20.6-6.5c-.1-.2-.1-.4-.1-.6c-.7-3.1-1-6.4-.7-9.6c.1-1.9.5-3.8 1.1-5.7c.3-1 .8-1.8 1.4-2.6c.2-.3.5-.5.8-.7c.6-.4 1.4-.4 2 0c.6.4 1.1 1 1.5 1.7c.6 1.2 1.1 2.5 1.3 3.8c.6 2.8.8 5.7.5 8.6c-.1 1.7-.4 3.5-.9 5.2c1.8.3 3.6.6 5.4 1c1.8.4 3.5.9 5.2 1.6c1.7.6 3.4 1.4 5 2.2c1.6.8 3.1 1.8 4.7 2.7c.1-.1.1-.2.2-.4c1.7-4.7 4.6-8.9 8.4-12.2c.9-.8 1.9-1.4 3-1.8c.3-.1.6-.2.9-.2c1.6-.2 2.3.8 2.4 2.1c.1.9 0 1.8-.2 2.7c-.6 2.3-1.5 4.4-2.7 6.4c-1.7 2.9-3.8 5.4-6.4 7.5c-.1.1-.2.1-.3.3c2.5 2.4 4.8 5.1 6.8 8c-.2 0-.3.1-.4.1H93c-.3 0-.6-.2-.8-.4c-5.9-6.6-13.8-10.8-22.4-12.1c-2.5-.4-5.1-.5-7.7-.3c-7.6.5-15 3.4-20.9 8.3c-1.5 1.2-3 2.6-4.3 4.1c-.2.3-.6.5-1 .5h-8.3c.2-.6 1.7-2.8 3.5-4.8c1.5-1.6 2.9-3 4.4-4.5m65.4 58.9c-1.8 2.6-3.8 4.9-6.1 7.1c.2.2.3.3.5.4c3.9 3.3 6.9 7.6 8.6 12.5c.4 1.2.6 2.5.6 3.7c0 .3-.1.6-.2 1c-.3.9-1.2 1.5-2.1 1.3c-.6-.1-1.2-.3-1.7-.5c-.8-.4-1.6-.9-2.3-1.5c-3.8-3.2-6.7-7.4-8.4-12.1c-.1-.1-.1-.3-.2-.5c-2 1.4-4.1 2.6-6.3 3.6s-4.5 1.9-6.8 2.5c-2.4.6-4.7 1.1-7.2 1.4c.1.2.1.4.1.6c.8 3.1 1 6.3.8 9.5c-.1 2-.5 3.9-1.1 5.8c-.3.8-.7 1.5-1.1 2.3c-.2.3-.4.5-.6.8c-1 1.1-2.2 1.1-3.2 0c-.4-.4-.7-.9-1-1.5c-.8-1.5-1.2-3.1-1.5-4.8c-.4-2.3-.5-4.6-.4-6.9c.1-1.7.3-3.4.7-5c0-.1.1-.3.1-.4c0 0 0-.1-.1-.2c-7.3-.4-14.3-2.6-20.6-6.5l-.3.6c-1.8 4.2-4.4 7.9-7.8 10.8c-.9.8-1.9 1.4-3 1.8c-.5.2-1.1.3-1.6.2c-.6-.1-1.1-.5-1.4-1.2c-.4-.9-.3-1.8-.2-2.7c.2-1.3.6-2.5 1.1-3.7c1.5-3.7 3.9-7 6.7-9.8c.1-.1.2-.2.4-.3c0-.1.1-.1.1-.2c-2.7-2.4-5.2-5.1-7.2-8.1c.3 0 .4-.1.6-.1h8c.4 0 .7.2.9.4c2.9 3.1 6.3 5.6 10 7.5c3.9 2.1 8.2 3.4 12.6 3.8c12 1.2 22.3-2.5 30.9-11.1c.4-.4.9-.7 1.5-.6h8.1zm-11.1-39c.7 0 1.4.1 2.1 0c.8-.1 1.3.2 1.9.7c3.2 3 6.4 6 9.7 9l.5.5c.2-.2.4-.3.6-.5c3.3-3.1 6.7-6.2 9.9-9.3c.3-.3.7-.4 1.1-.4h2.5v27.4c-.4.1-6.3.2-7 0V63.9l-.1-.1c-2.3 2.1-4.6 4.3-6.9 6.4c-2.3-2.2-4.6-4.3-7-6.4l-.1.1v14h-7c-.2-.5-.3-25.9-.2-27.5m-64.2 0h6.9c.2.5.2 26.8 0 27.4h-6.9c-.1-1.7 0-3.5 0-5.2v-5.2H17v10.3c-.5.2-6.4.2-7 0V50.4h7v9.7c.5.2 7.8.2 8.6 0zm15.2 27.4V50.5c.4-.1 15.6-.2 16.6-.1v5.8c-.2 0-.5.1-.7.1h-8.9v4.5h8.5v6h-8.4c-.2.5-.2 4.1-.1 5.1c.2 0 .5.1.7.1h8.9v5.8zm24.6 0c-.1-.7-.1-26.9 0-27.4h6.9v20.2c.3 0 .5 0 .8.1H82v7.2z\\\"/>\"\n\t\t},\n\t\t\"heroku\": {\n\t\t\t\"body\": \"<path fill=\\\"#6762A6\\\" d=\\\"M114 13.9C114 7.3 108.7 2 102.1 2H25.9C19.3 2 14 7.3 14 13.9v100.3c0 6.6 5.3 11.9 11.9 11.9h76.3c6.6 0 11.9-5.3 11.9-11.9V13.9zm-4 .1v99.3c0 4.7-3.5 8.7-8.2 8.7H26.5c-4.7 0-8.5-4-8.5-8.7V14c0-4.7 3.9-8 8.5-8h75.2c4.7 0 8.4 3.6 8.4 8.3zm-73 94.7l14.1-14.1L37 80.5zm14-60.9V18.4l-13.9.1s.1 45.9.2 45.7C80.1 47.5 77 59.4 77 59.4v49.4l-.1.2H90V59.5c0-27.1-39-11.7-39-11.7M70 36h14.8c8-10 10.7-17 10.7-17H80.2S75.3 30 70 36\\\"/>\"\n\t\t},\n\t\t\"heroku-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#6762A6\\\" d=\\\"M35.3 101.8c-4 0-7.3.5-9.7 1.4c-.9 3.2-1.3 6.6-1.3 10.4c0 7 1.2 11.3 9.2 11.3c3.7 0 6.8-1.1 9.3-2.3L42 119c-2.4.9-5.5 1.7-8.2 1.7c-3.5 0-4.6-.9-4.8-6.9h15v-2.2c0-6.1-2.2-9.8-8.7-9.8M29 111c.1-3 .3-3.8.5-4.7c1.9-.4 4.1-.4 5.6-.4c3.3 0 3.9 2.1 3.9 5.1zm-15.1-9.2c-2.7 0-4.9.7-7.9 1.5V93H2v31h4v-16.6c3-1 5-1.5 7-1.5c1 0 2 .5 2 1.7v16.9l.4-.4H20v-15.8c0-3.8-1.8-6.5-6.1-6.5m108.1.2v17.4c-3 1-5.6 1.5-7.7 1.5c-1 0-2.3-.5-2.3-1.7V102h-4v16.7c0 3.7 1.3 6.3 5.6 6.3c2.7 0 7.4-.4 12.4-3.5V102zm-18.2 0h-5.4c-1.3 3-3.2 7-5.6 9H91V93h-5v31h5v-10h2.1c2.8 3 4.6 7 6 10h5.6c-2.1-4-4.5-8.4-7.7-12.4c2.6-2.7 5-5.6 6.8-9.6M48 124h4v-16.6c2-.8 5-1.1 7-1.2v-4c-3 .2-7 .9-11 3.1zm23.4-22.2c-6.1 0-10.3 3.2-10.3 11.7c0 8 3.2 11.5 10.3 11.5c6.1 0 10.3-3.2 10.3-11.7c0-8-3.2-11.5-10.3-11.5m0 19.2c-4 0-5.7-1.4-5.7-7.5c0-5.6 2-7.7 5.7-7.7c4 0 5.7 1.4 5.7 7.5c-.1 5.6-2.1 7.7-5.7 7.7M99 10.3C99 5.7 95.3 2 90.7 2H37.3C32.7 2 29 5.7 29 10.3v70.4c0 4.6 3.7 8.3 8.3 8.3h53.4c4.6 0 8.3-3.7 8.3-8.3zm-67 .5C32 7.5 34.5 5 37.7 5h52.5c3.3 0 5.8 2.6 5.8 5.8v69.4c0 3.3-2.5 5.9-5.7 5.9H37.7c-3.3 0-5.7-2.6-5.7-5.9zM85.9 14H75.2s-3.4 8-7.1 12h10.4c5.6-7 7.4-12 7.4-12M45 76.9l9.8-9.9l-9.8-9.8zm28-34.5v34.5l-.1.1H82V42.5c0-18.9-27-8.2-27-8.2V13.8l-9.8.1s0 32 .1 31.9C75.2 34.2 73 42.4 73 42.4\\\"/>\"\n\t\t},\n\t\t\"hibernate\": {\n\t\t\t\"body\": \"<path fill=\\\"#59666c\\\" d=\\\"m29.246 3.766l23.168 40.129l-23.18 40.19l-23.156-40.19Zm69.508 120.468L75.586 84.105l23.18-40.19l23.156 40.19Zm0 0\\\"/><path fill=\\\"#bcae79\\\" d=\\\"M75.594 3.766H29.258L52.43 43.898h46.35ZM52.406 124.23H98.75L75.594 84.102H29.219Zm0 0\\\"/>\"\n\t\t},\n\t\t\"hibernate-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#5a676d\\\" d=\\\"M56.36 35.172L40.503 62.66L24.66 35.172l15.852-27.45Zm0 0\\\"/><path fill=\\\"#bcae79\\\" d=\\\"M72.215 7.723H40.52l15.847 27.449h31.707Zm0 0\\\"/><path fill=\\\"#5a676d\\\" d=\\\"m72.207 62.676l15.856-27.492l15.843 27.492l-15.851 27.449Zm0 0\\\"/><path fill=\\\"#bcae79\\\" d=\\\"M56.348 90.125h31.699L72.199 62.672l-31.707.004Zm0 0\\\"/><path fill=\\\"#5a676d\\\" d=\\\"M15.66 121.512v-16.809h-2.687v6.95H5.027v-6.95h-2.71v16.809h2.71v-7.543h7.946v7.543Zm7.79 0v-16.809h-2.716v16.809Zm16.253-5.082c0-1.743-1.023-3.41-3.215-3.836v-.047c1.719-.598 2.864-2.117 2.864-3.836c0-2.59-1.891-4.082-5.551-4.082c-2.043 0-3.961.047-5.278.07v16.809c1.868.027 3.559.074 4.582.074c5.153.004 6.598-2.96 6.598-5.152m-3.187-7.293c0 1.691-1.32 2.715-3.836 2.715c-.57 0-.996 0-1.446-.028v-4.98a54.883 54.883 0 0 1 2.118-.051c2.39.004 3.164.973 3.164 2.344m.324 7.343c0 1.696-1.172 2.887-3.637 2.887c-.871 0-1.543-.047-1.969-.125v-5.351c.375-.024 1.246-.024 1.52-.024c2.367 0 4.086.695 4.086 2.613m15.734 5.032v-2.317h-6.148v-5.226h5.851v-2.219h-5.851v-4.781h6.148v-2.266h-8.863v16.809Zm15.707 0l-4.433-5.852c-.422-.55-.946-1.195-1.418-1.793c2.738-.3 4.758-2.02 4.758-4.707c0-3.34-2.391-4.558-5.88-4.558c-1.89 0-3.285.027-4.503.097v16.813h2.71v-7.274h.126l5.23 7.274Zm-3.933-12.051c0 1.668-1.32 2.789-3.512 2.789c-.441.004-.879-.016-1.32-.05v-5.329c.472-.031.945-.05 1.418-.05c2.265 0 3.414.796 3.414 2.64m0 0\\\"/><path fill=\\\"#bcae79\\\" d=\\\"M85.254 121.512v-16.809h-2.637v4.98c0 2.465.07 6.075.172 7.993c-.621-1.219-1.293-2.563-2.043-3.809l-5.55-9.164h-3.56v16.809h2.637v-5.653c0-2.39-.05-5.8-.148-7.445a35.632 35.632 0 0 0 1.867 3.535l5.75 9.563Zm17.95 0l-6.102-16.809H94.09l-6.024 16.809h2.739l1.293-3.711h6.797l1.296 3.71Zm-5.032-5.88h-5.379l1.894-5.202c.325-.895.598-1.817.774-2.664h.047c.199.921.426 1.718.75 2.59Zm16.406-8.64v-2.289h-11.95v2.29h4.606v14.519h2.715v-14.52Zm11.672 14.52v-2.317h-6.148v-5.226h5.847v-2.219h-5.847v-4.781h6.148v-2.266h-8.863v16.809Zm0 0\\\"/>\"\n\t\t},\n\t\t\"homebrew\": {\n\t\t\t\"body\": \"<path d=\\\"M39.676 32.972c-4.6 0-8.45 3.142-9.603 7.39c-4.063.571-7.218 4.031-7.218 8.246c0 4.1 2.954 7.523 6.84 8.293a1.144 1.144 0 0 0 .018.002a46.59 46.59 0 0 1 4.273.993A1.144 1.144 0 0 0 34 57.9c5.603 1.511 16.502 3.582 28.568 3.279c.77 1.573 1.95 2.907 3.441 3.809l-.014-.01c.523.325.946 1.19.946 1.696a5.444 5.444 0 0 0 5.425 5.427c1.417 0 2.756-.427 3.77-1.285c1.015-.858 1.66-2.173 1.66-3.664l-.003-.808a1.144 1.144 0 0 0-.004-.092a8.749 8.749 0 0 1 1.004-4.75V61.5c.434-.804.707-1.697.884-2.621c1.963-.514 3.917-1.088 5.83-1.809a1.144 1.144 0 0 0 .005-.002a9.541 9.541 0 0 1 2.08-.54l.004-.001a8.39 8.39 0 0 0 7.23-8.3c0-4.612-3.765-8.378-8.378-8.378c-1.33 0-2.567.355-3.683.907c-1.606-3.64-5.225-6.192-9.447-6.192c-4.792 0-8.802 3.298-9.973 7.73c-1.763-2.057-4.318-3.42-7.232-3.42c-2.579 0-4.847 1.098-6.577 2.76c-.66-4.875-4.811-8.663-9.862-8.663zm0 2.288a7.692 7.692 0 0 1 7.267 10.265a1.144 1.144 0 0 0 .894 1.506l.028.005a1.144 1.144 0 0 0 1.235-.757l.001.003l.002-.005a1.144 1.144 0 0 0 .037-.023a7.321 7.321 0 0 1 6.977-5.095a7.319 7.319 0 0 1 6.958 5.042a1.144 1.144 0 0 0 2.224-.476a8.046 8.046 0 0 1 8.023-8.876a8.06 8.06 0 0 1 7.688 5.629a1.144 1.144 0 0 0 1.38.762l.801-.21a1.144 1.144 0 0 0 .274-.111a6.044 6.044 0 0 1 2.986-.784a6.073 6.073 0 0 1 6.09 6.09a6.081 6.081 0 0 1-5.255 6.034a1.144 1.144 0 0 0-.005 0a11.812 11.812 0 0 0-2.585.672a56.773 56.773 0 0 1-6.272 1.944a1.144 1.144 0 0 0-.862.995a6.805 6.805 0 0 1-.78 2.548a1.144 1.144 0 0 0-.001.004a11.039 11.039 0 0 0-1.27 5.996l-.002-.094l.004.826c0 .875-.313 1.465-.85 1.918c-.535.454-1.34.746-2.293.746a3.123 3.123 0 0 1-3.14-3.14a4.281 4.281 0 0 0-2.024-3.639a1.144 1.144 0 0 0-.01-.01a6.852 6.852 0 0 1-2.839-3.394a1.144 1.144 0 0 0-1.105-.732c-12.054.406-23.122-1.72-28.638-3.207l-.014-.004a48.032 48.032 0 0 0-4.472-1.038l.02.003c-2.84-.563-4.999-3.046-4.999-6.049a6.071 6.071 0 0 1 5.873-6.08a1.144 1.144 0 0 0 1.085-.938a7.695 7.695 0 0 1 7.578-6.331zM42.134.018a1.144 1.144 0 0 0-.9.811c-1.682 5.888.956 11.472 4.474 15.656a32.248 32.248 0 0 0 2.54 2.679a10.852 10.852 0 0 0-3.55.1c-6.317 1.244-11.696 5.254-14.618 13.505c-1.198 3.384-1.251 6.903-.865 10.1a6.127 6.127 0 0 1 1.8-.339a1.144 1.144 0 0 0 .437-.172c-.32-2.887-.225-5.978.784-8.827c2.713-7.662 7.224-10.906 12.902-12.024c1.956-.384 3.544-.057 5.28.508c.868.284 1.763.633 2.724.966l.178.055c.91.31 1.875.604 2.934.807a1.144 1.144 0 0 0 1.344-1.311a12.959 12.959 0 0 1-.003-4.198c.047-.28.088-.563.148-.837c.35-1.56.947-2.992 1.65-4.268a19.764 19.764 0 0 1 3.535-4.598c.376.285.753.54 1.128.96c.183.205.172.215.312.388c-1.77 1.643-5.705 6.102-5.078 13.084a1.144 1.144 0 0 0 1.181 1.039c2.503-.09 4.174-.92 5.634-1.593c1.46-.673 2.712-1.216 4.968-1.146c4.667.147 8.737 3.814 10.339 6.051c1.73 2.634 3.858 5.908 3.513 14.883v.038a6.05 6.05 0 0 1 1.524-.197c.259 0 .513.02.764.054c.316-9.267-2.162-13.403-3.908-16.06a1.144 1.144 0 0 0-.023-.038c-1.945-2.722-6.366-6.837-12.137-7.017c-2.681-.083-4.49.66-5.996 1.354c-1.161.535-2.246.944-3.571 1.175c.009-6.858 5.037-10.568 5.037-10.568a1.144 1.144 0 0 0 .261-1.584s-.461-.654-1.112-1.385c-.65-.73-1.438-1.575-2.507-2.021a1.144 1.144 0 0 0-1.201.2a22.99 22.99 0 0 0-4.665 5.877c-.256.464-.48.971-.705 1.48c-.493-1.63-1.16-3.144-2.035-4.54c-2.415-3.85-6.317-6.742-11.89-8.982a1.144 1.144 0 0 0-.627-.065m1.036 2.775c4.533 2.018 7.624 4.428 9.541 7.486c1.4 2.23 2.21 4.867 2.548 7.989c.014.151.024.311.038.466v.001c.085.902.137 1.834.148 2.818c-.33-.175-.724-.428-1.097-.655c-.243-.148-.457-.254-.712-.423c-1.952-1.284-4.252-3.17-6.178-5.46c-2.944-3.504-4.99-7.784-4.288-12.223zm44.049 51.484a11.797 11.797 0 0 0-2.527.66a52.968 52.968 0 0 1-1.928.681c-.061.115-.088.172-.153.298c-.033.064-.148.236-.191.313h2.847v3.36a3.07 3.07 0 0 0 3.055 3.052h7.085a7.452 7.452 0 0 1 7.45 7.45v30.956a7.456 7.456 0 0 1-2.192 5.277a7.455 7.455 0 0 1-3.822 2.034a7.448 7.448 0 0 1-1.464.14a1.144 1.144 0 0 0-.005 0c-2.39.005-4.898 0-6.988-.028a3.055 3.055 0 0 0-3.116 3.05c0 2.5 0 6.735-.01 8.553a1.144 1.144 0 0 0 0 .005a.76.76 0 0 1-.265.571c-1.157.863-4.513 2.628-10.991 3.83a64.93 64.93 0 0 1-4.268.64c-3.104.367-6.737.597-10.957.597c-16.572 0-24.463-2.779-26.608-4.01a.762.762 0 0 1-.35-.633l-.138-64.843h4.063c-.057-.105-.086-.176-.142-.28c-.326-.083-.699-.17-.996-.25l-.014-.003a48.032 48.032 0 0 0-4.472-1.038l.018.004a6.212 6.212 0 0 1-.517-.128a1.144 1.144 0 0 0-.228.554s.123 57.552.14 65.988a3.057 3.057 0 0 0 1.412 2.569a1.144 1.144 0 0 0 .042.023c2.862 1.657 10.915 4.332 27.789 4.332c17.268 0 25.067-3.613 27.63-5.55a1.144 1.144 0 0 0 .037-.032a3.047 3.047 0 0 0 1.101-2.342c.01-1.837.01-6.06.01-8.558a.764.764 0 0 1 .228-.546a1.144 1.144 0 0 0 0-.001a.764.764 0 0 1 .553-.218a1.144 1.144 0 0 0 .01 0c2.11.028 4.628.032 7.025.028a9.739 9.739 0 0 0 9.772-9.737l.001-30.955a9.74 9.74 0 0 0-9.739-9.739h-7.084a.748.748 0 0 1-.765-.764v-4.503a1.144 1.144 0 0 0-.336-.81zm1.58 13.728a3.53 3.53 0 0 0-1.351.269a3.53 3.53 0 0 0-1.147.764a1.144 1.144 0 0 0 0 .001a3.53 3.53 0 0 0-.764 1.145a3.538 3.538 0 0 0-.269 1.352v27.78a3.53 3.53 0 0 0 .27 1.352a3.53 3.53 0 0 0 .763 1.146a3.53 3.53 0 0 0 1.147.764a3.538 3.538 0 0 0 1.351.27h6.082a3.53 3.53 0 0 0 1.352-.27a3.53 3.53 0 0 0 1.145-.764a3.53 3.53 0 0 0 .764-1.146a3.538 3.538 0 0 0 .27-1.351v-27.78a3.53 3.53 0 0 0-.27-1.352a3.53 3.53 0 0 0-.763-1.145a1.144 1.144 0 0 0-.001 0a3.53 3.53 0 0 0-1.147-.765a3.538 3.538 0 0 0-1.35-.27zm0 2.288h6.082a1.244 1.244 0 0 1 1.243 1.242v27.782a1.243 1.243 0 0 1-1.243 1.243H88.8a1.243 1.243 0 0 1-.879-.363h-.001a1.241 1.241 0 0 1-.363-.88v-27.78a1.244 1.244 0 0 1 .767-1.15c.15-.06.31-.093.476-.093z\\\"/><path fill=\\\"#d1d3d4\\\" d=\\\"M43.171 2.793c-.701 4.438 1.344 8.719 4.289 12.222c2.567 3.053 5.799 5.387 7.988 6.538c-.052-4.604-.87-8.3-2.734-11.272c-1.92-3.058-5.01-5.47-9.543-7.486zm19.76 5.838a19.783 19.783 0 0 0-3.535 4.598c-1.408 2.552-2.392 5.73-1.797 9.303a1.144 1.144 0 0 1-1.343 1.311c-2.253-.431-4.1-1.262-5.836-1.828c-1.735-.567-3.323-.892-5.28-.507c-5.68 1.117-10.19 4.36-12.902 12.023c-.449 1.27-.708 2.59-.84 3.916c1.78-2.693 4.817-4.474 8.28-4.474c5.051 0 9.2 3.79 9.863 8.663c1.728-1.66 3.998-2.76 6.577-2.76c2.913 0 5.467 1.363 7.231 3.42c1.171-4.431 5.18-7.729 9.973-7.729c4.222 0 7.84 2.552 9.448 6.19a8.866 8.866 0 0 1 2.172-.739c-.076-7.241-1.956-10.21-3.527-12.602c-1.603-2.237-5.672-5.905-10.339-6.053c-2.256-.069-3.51.475-4.968 1.147c-1.46.673-3.131 1.504-5.634 1.593a1.144 1.144 0 0 1-1.18-1.04c-.63-6.982 3.307-11.44 5.076-13.084c-.14-.172-.128-.182-.31-.387c-.376-.42-.753-.675-1.129-.961\\\"/><path fill=\\\"#fbb040\\\" d=\\\"M36.042 58.416v55.313a1.91 1.91 0 0 0 .955 1.656c2.417 1.151 9.427 3.9 21.716 3.9c12.372 0 19.173-3.34 21.451-4.718a1.903 1.903 0 0 0 .873-1.599c.005-7.316.005-48.47.005-54.473c-.456.128-.91.267-1.369.386a10.814 10.814 0 0 1-.345 1.356c-.143.44-.32.863-.536 1.265l-.003.004a8.758 8.758 0 0 0-1.002 4.75a1.144 1.144 0 0 1 .004.093l.002.806a4.824 4.824 0 0 1-.45 2.07a4.693 4.693 0 0 1-.522.87a4.577 4.577 0 0 1-.688.724a5.067 5.067 0 0 1-.817.563a5.498 5.498 0 0 1-.918.402a6.043 6.043 0 0 1-.99.24c-.34.054-.69.081-1.044.081a5.387 5.387 0 0 1-3.027-.93a5.498 5.498 0 0 1-1.972-2.39a5.375 5.375 0 0 1-.427-2.108c0-.126-.028-.275-.074-.431a2.623 2.623 0 0 0-.204-.483a2.613 2.613 0 0 0-.3-.45a1.585 1.585 0 0 0-.368-.33l.014.008a8.686 8.686 0 0 1-1.058-.754a8.942 8.942 0 0 1-.933-.899a9.265 9.265 0 0 1-.798-1.023a9.59 9.59 0 0 1-.653-1.132c-1.508.038-2.998.038-4.461.01a104.01 104.01 0 0 1-4.304-.18a109.19 109.19 0 0 1-4.099-.334a111.58 111.58 0 0 1-7.384-.991a104.06 104.06 0 0 1-3.19-.59a90.492 90.492 0 0 1-2.788-.604l-.296-.075zm6.615 3.51a2.63 2.63 0 0 1 1.007.202a2.63 2.63 0 0 1 .853.57a2.63 2.63 0 0 1 .57.852a2.63 2.63 0 0 1 .202 1.007v45.748a2.63 2.63 0 0 1-.033.412a2.63 2.63 0 0 1-.096.402a2.63 2.63 0 0 1-.156.382a2.63 2.63 0 0 1-.218.352a2.63 2.63 0 0 1-.267.314a2.63 2.63 0 0 1-.314.268a2.63 2.63 0 0 1-.353.217a2.63 2.63 0 0 1-.382.156a2.63 2.63 0 0 1-.402.098a2.63 2.63 0 0 1-.41.032a2.63 2.63 0 0 1-1.01-.2a2.63 2.63 0 0 1-.852-.57a2.63 2.63 0 0 1-.57-.854a2.63 2.63 0 0 1-.2-1.007V64.56a2.63 2.63 0 0 1 .2-1.008a2.63 2.63 0 0 1 .57-.853a2.63 2.63 0 0 1 .854-.57a2.63 2.63 0 0 1 1.007-.2z\\\"/><path fill=\\\"#ffdb96\\\" d=\\\"M42.66 61.924a2.63 2.63 0 0 0-2.632 2.63v45.749a2.63 2.63 0 0 0 2.632 2.632a2.63 2.63 0 0 0 2.632-2.632V64.555a2.63 2.63 0 0 0-2.632-2.631\\\"/><path fill=\\\"#fff\\\" d=\\\"M39.676 35.259a7.695 7.695 0 0 0-7.578 6.331a1.144 1.144 0 0 1-1.084.939a6.071 6.071 0 0 0-5.872 6.08c0 3.001 2.157 5.485 4.998 6.049l-.02-.004a47.942 47.942 0 0 1 4.473 1.038l.014.005c5.517 1.485 16.585 3.612 28.638 3.205a1.144 1.144 0 0 1 1.106.733a6.852 6.852 0 0 0 2.84 3.394a1.144 1.144 0 0 1 .01.01a4.281 4.281 0 0 1 2.025 3.638a3.123 3.123 0 0 0 3.14 3.142c.952 0 1.757-.294 2.293-.747c.536-.454.85-1.043.85-1.917l-.004-.805a11.038 11.038 0 0 1 1.27-5.924a1.144 1.144 0 0 1 .003-.004a6.805 6.805 0 0 0 .78-2.548a1.144 1.144 0 0 1 .861-.994a56.572 56.572 0 0 0 6.272-1.945a11.811 11.811 0 0 1 2.585-.67a1.144 1.144 0 0 1 .005 0a6.081 6.081 0 0 0 5.255-6.036a6.073 6.073 0 0 0-6.09-6.09c-1.088 0-2.1.285-2.986.784a1.144 1.144 0 0 1-.274.111l-.801.21a1.144 1.144 0 0 1-1.381-.762a8.06 8.06 0 0 0-7.687-5.629a8.046 8.046 0 0 0-8.022 8.876a1.144 1.144 0 0 1-2.225.476a7.319 7.319 0 0 0-6.957-5.042a7.32 7.32 0 0 0-6.977 5.094a1.144 1.144 0 0 1-.037.023v.005l-.003-.004a1.144 1.144 0 0 1-1.235.758l-.028-.004a1.144 1.144 0 0 1-.894-1.507a7.692 7.692 0 0 0-7.267-10.266zm45.592 21.897a44.801 44.801 0 0 1-2.658.896c-.519.16-1.043.296-1.565.441c0 6 0 47.153-.005 54.473a1.9 1.9 0 0 1-.873 1.6c-.284.172-.64.374-1.067.597c-.428.223-.93.467-1.504.72a31.073 31.073 0 0 1-1.954.78a36.694 36.694 0 0 1-2.414.777a43.998 43.998 0 0 1-4.512 1.025a50.839 50.839 0 0 1-3.62.5c-.645.067-1.312.124-2 .171a62.603 62.603 0 0 1-4.379.146a75.427 75.427 0 0 1-4.364-.12a68.541 68.541 0 0 1-1.997-.142a66.093 66.093 0 0 1-3.635-.41a59.098 59.098 0 0 1-1.64-.26a52.592 52.592 0 0 1-2.925-.586a45.103 45.103 0 0 1-2.464-.642a38.114 38.114 0 0 1-2.007-.645a31.027 31.027 0 0 1-1.562-.599A23.899 23.899 0 0 1 37 115.38a1.91 1.91 0 0 1-.957-1.656v-55.31a73.719 73.719 0 0 1-2.046-.513a1.144 1.144 0 0 1-.014-.004a45.855 45.855 0 0 0-2.123-.547c-.059-.014-.118-.024-.177-.038l.137 63.761a.778.778 0 0 0 .349.634c.268.154.626.333 1.08.525c.453.195 1.002.405 1.651.621c.651.216 1.402.44 2.26.664c.86.221 1.825.443 2.902.655c1.079.212 2.268.416 3.579.6c1.309.186 2.736.35 4.288.49a104.81 104.81 0 0 0 5.034.332a132.876 132.876 0 0 0 5.813.122a108.28 108.28 0 0 0 5.898-.16a89.703 89.703 0 0 0 2.632-.189a78.519 78.519 0 0 0 2.428-.247a69.756 69.756 0 0 0 2.232-.3a61.916 61.916 0 0 0 2.036-.343a53.574 53.574 0 0 0 2.285-.473a45.209 45.209 0 0 0 2.003-.51a37.695 37.695 0 0 0 1.732-.528a30.744 30.744 0 0 0 1.472-.53c.448-.174.854-.345 1.22-.512c.366-.166.695-.328.985-.48a12.676 12.676 0 0 0 .756-.432a7.779 7.779 0 0 0 .537-.364a.78.78 0 0 0 .196-.256a.73.73 0 0 0 .07-.313a1.144 1.144 0 0 1 0-.005c.01-1.818.01-6.053.01-8.553a3.049 3.049 0 0 1 1.93-2.836a3.054 3.054 0 0 1 1.186-.216c2.089.028 4.599.032 6.986.028a1.144 1.144 0 0 1 .01 0a7.448 7.448 0 0 0 1.464-.14a7.462 7.462 0 0 0 5.442-4.452a7.45 7.45 0 0 0 .571-2.858V70.093a7.453 7.453 0 0 0-1.686-4.721a7.457 7.457 0 0 0-5.765-2.73h-7.084a3.014 3.014 0 0 1-1.701-.525a3.11 3.11 0 0 1-.826-.826a3.01 3.01 0 0 1-.526-1.7zm3.53 10.846h6.082a3.53 3.53 0 0 1 1.35.269a3.532 3.532 0 0 1 1.147.764a3.53 3.53 0 0 1 .765 1.147a3.538 3.538 0 0 1 .269 1.35v27.782a3.53 3.53 0 0 1-.268 1.35a3.53 3.53 0 0 1-.764 1.146a1.144 1.144 0 0 0-.002 0a3.53 3.53 0 0 1-1.144.764a3.538 3.538 0 0 1-1.351.27h-6.084a3.53 3.53 0 0 1-1.351-.268a3.53 3.53 0 0 1-1.145-.765a3.53 3.53 0 0 1-.765-1.147a3.538 3.538 0 0 1-.268-1.35V71.532a3.53 3.53 0 0 1 .267-1.351a3.53 3.53 0 0 1 .764-1.146a1.144 1.144 0 0 0 .002 0a3.53 3.53 0 0 1 1.146-.765a3.538 3.538 0 0 1 1.35-.269z\\\"/>\"\n\t\t},\n\t\t\"homebrew-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M44.27 26.747c-3.732 0-6.854 2.549-7.79 5.994c-3.296.464-5.855 3.271-5.855 6.69c0 3.326 2.396 6.102 5.548 6.727a.928.928 0 0 0 .014.002c1.168.214 2.324.482 3.466.805a.928.928 0 0 0 .011.003c4.545 1.226 13.386 2.906 23.174 2.66c.625 1.276 1.582 2.358 2.792 3.09l-.01-.006c.424.263.767.965.767 1.375a4.416 4.416 0 0 0 4.401 4.403c1.149 0 2.235-.347 3.058-1.043s1.347-1.762 1.347-2.972l-.003-.655a.928.928 0 0 0-.003-.075a7.097 7.097 0 0 1 .814-3.853l.001-.003c.351-.652.573-1.376.716-2.126c1.593-.417 3.178-.882 4.73-1.467a.928.928 0 0 0 .005-.002a7.74 7.74 0 0 1 1.687-.438l.004-.001a6.806 6.806 0 0 0 5.864-6.732c0-3.742-3.054-6.797-6.796-6.797c-1.078 0-2.082.288-2.987.736c-1.303-2.953-4.239-5.023-7.664-5.023c-3.887 0-7.14 2.675-8.09 6.27c-1.43-1.668-3.502-2.774-5.866-2.774c-2.092 0-3.932.891-5.335 2.239c-.536-3.954-3.903-7.027-8-7.027m0 1.856a6.24 6.24 0 0 1 5.895 8.327a.928.928 0 0 0 .725 1.222l.022.004a.928.928 0 0 0 1.002-.614l.001.002l.001-.004a.928.928 0 0 0 .029-.017a5.939 5.939 0 0 1 5.66-4.133a5.937 5.937 0 0 1 5.644 4.09a.928.928 0 0 0 1.804-.386a6.527 6.527 0 0 1 6.508-7.2c2.933 0 5.4 1.922 6.237 4.566a.928.928 0 0 0 1.119.618l.65-.17a.928.928 0 0 0 .222-.09a4.903 4.903 0 0 1 2.423-.636a4.926 4.926 0 0 1 4.94 4.94a4.933 4.933 0 0 1-4.263 4.895a.928.928 0 0 0-.005 0a9.582 9.582 0 0 0-2.097.545a46.054 46.054 0 0 1-5.088 1.577a.928.928 0 0 0-.699.807a5.52 5.52 0 0 1-.633 2.067a.928.928 0 0 0-.001.003a8.955 8.955 0 0 0-1.03 4.864l-.002-.076l.004.67c0 .71-.254 1.188-.69 1.556c-.434.368-1.087.605-1.86.605a2.533 2.533 0 0 1-2.547-2.548a3.473 3.473 0 0 0-1.642-2.951a.928.928 0 0 0-.009-.006a5.558 5.558 0 0 1-2.303-2.754a.928.928 0 0 0-.897-.594c-9.778.33-18.756-1.395-23.231-2.601l-.012-.004a38.963 38.963 0 0 0-3.627-.842l.014.003c-2.303-.457-4.054-2.471-4.054-4.907a4.925 4.925 0 0 1 4.764-4.932a.928.928 0 0 0 .88-.761a6.242 6.242 0 0 1 6.147-5.136zM46.264.015a.928.928 0 0 0-.73.658c-1.365 4.776.775 9.306 3.629 12.7a26.159 26.159 0 0 0 2.06 2.173a8.803 8.803 0 0 0-2.88.081c-5.124 1.009-9.487 4.262-11.857 10.955c-.972 2.745-1.015 5.6-.702 8.194a4.97 4.97 0 0 1 1.46-.275a.928.928 0 0 0 .355-.14c-.259-2.342-.182-4.849.636-7.16c2.201-6.216 5.86-8.847 10.466-9.754c1.587-.312 2.875-.047 4.283.412c.704.23 1.43.513 2.21.783l.144.045c.739.252 1.521.49 2.38.655a.928.928 0 0 0 1.09-1.064a10.512 10.512 0 0 1-.002-3.405c.037-.228.071-.457.12-.679c.283-1.266.768-2.427 1.339-3.462a16.032 16.032 0 0 1 2.867-3.73c.305.231.611.438.915.779c.148.166.14.174.253.314c-1.436 1.333-4.628 4.95-4.119 10.614a.928.928 0 0 0 .958.843c2.03-.073 3.386-.747 4.57-1.292c1.184-.546 2.2-.987 4.03-.93c3.786.119 7.088 3.094 8.387 4.909c1.403 2.136 3.13 4.792 2.85 12.073v.03a4.908 4.908 0 0 1 1.236-.159c.21 0 .416.017.62.043c.256-7.517-1.754-10.872-3.17-13.028a.928.928 0 0 0-.02-.03c-1.578-2.208-5.164-5.546-9.845-5.692c-2.175-.068-3.642.535-4.864 1.098c-.942.434-1.822.766-2.897.953c.007-5.563 4.086-8.573 4.086-8.573a.928.928 0 0 0 .212-1.285s-.374-.53-.902-1.123c-.528-.592-1.167-1.278-2.034-1.64a.928.928 0 0 0-.974.163a18.649 18.649 0 0 0-3.784 4.767c-.208.376-.39.788-.572 1.2c-.4-1.322-.941-2.55-1.651-3.682c-1.959-3.123-5.124-5.469-9.644-7.286a.928.928 0 0 0-.509-.053m.84 2.251c3.677 1.637 6.185 3.592 7.74 6.073c1.135 1.809 1.792 3.948 2.067 6.48c.013.123.02.253.03.378v.001c.069.732.112 1.488.12 2.286c-.268-.142-.587-.347-.89-.531c-.197-.12-.37-.206-.577-.343c-1.584-1.042-3.449-2.572-5.012-4.43c-2.388-2.842-4.047-6.314-3.478-9.914m35.732 41.763a9.57 9.57 0 0 0-2.05.536a42.967 42.967 0 0 1-1.564.552c-.049.093-.071.139-.124.242c-.027.052-.12.191-.155.254h2.31v2.725a2.49 2.49 0 0 0 2.478 2.476h5.747a6.045 6.045 0 0 1 6.044 6.044l-.001 25.11a6.048 6.048 0 0 1-1.778 4.281a6.047 6.047 0 0 1-3.1 1.65a6.042 6.042 0 0 1-1.188.113a.928.928 0 0 0-.005 0c-1.938.005-3.973.001-5.668-.022a2.478 2.478 0 0 0-2.528 2.475c0 2.028 0 5.463-.007 6.938a.928.928 0 0 0 0 .004c0 .18-.082.346-.216.463c-.938.7-3.661 2.132-8.916 3.106c-1.05.195-2.203.372-3.462.52c-2.518.298-5.465.484-8.888.484c-13.443 0-19.844-2.254-21.584-3.252a.618.618 0 0 1-.283-.514l-.113-52.6h3.296c-.046-.086-.07-.143-.115-.228c-.265-.067-.567-.137-.808-.202l-.01-.003a38.963 38.963 0 0 0-3.628-.842l.014.003a5.039 5.039 0 0 1-.42-.103a.928.928 0 0 0-.185.449s.1 46.686.114 53.529a2.48 2.48 0 0 0 1.145 2.084a.928.928 0 0 0 .034.02c2.322 1.344 8.854 3.514 22.542 3.514c14.008 0 20.334-2.931 22.413-4.502a.928.928 0 0 0 .032-.026a2.472 2.472 0 0 0 .893-1.9c.008-1.49.008-4.915.008-6.942a.62.62 0 0 1 .185-.443a.928.928 0 0 0 .001-.001a.62.62 0 0 1 .448-.177a.928.928 0 0 0 .006 0c1.712.024 3.755.027 5.699.022a7.9 7.9 0 0 0 7.927-7.898l.001-25.11a7.901 7.901 0 0 0-7.9-7.9H83.73a.607.607 0 0 1-.62-.62v-3.653a.928.928 0 0 0-.273-.657zm1.282 11.136a2.864 2.864 0 0 0-1.096.218a2.864 2.864 0 0 0-.93.62a.928.928 0 0 0 0 .001a2.864 2.864 0 0 0-.62.929a2.87 2.87 0 0 0-.218 1.096v22.536a2.864 2.864 0 0 0 .218 1.096a2.863 2.863 0 0 0 .62.93a2.864 2.864 0 0 0 .93.62a2.87 2.87 0 0 0 1.096.218h4.934a2.864 2.864 0 0 0 1.096-.218a2.864 2.864 0 0 0 .929-.62a2.864 2.864 0 0 0 .62-.93a2.87 2.87 0 0 0 .219-1.096V58.03a2.864 2.864 0 0 0-.218-1.096a2.864 2.864 0 0 0-.62-.929a.928.928 0 0 0-.001 0a2.863 2.863 0 0 0-.93-.621a2.87 2.87 0 0 0-1.095-.218zm0 1.856h4.934a1.009 1.009 0 0 1 1.008 1.008v22.536a1.008 1.008 0 0 1-1.008 1.009h-4.934a1.008 1.008 0 0 1-.713-.295h-.001a1.007 1.007 0 0 1-.294-.714V58.03a1.009 1.009 0 0 1 .622-.932c.122-.05.252-.076.386-.076z\\\"/><path fill=\\\"#d1d3d4\\\" d=\\\"M47.105 2.266c-.569 3.6 1.09 7.073 3.479 9.914c2.083 2.477 4.704 4.37 6.48 5.304c-.042-3.735-.706-6.733-2.218-9.144c-1.557-2.481-4.064-4.437-7.741-6.073zm16.029 4.736a16.048 16.048 0 0 0-2.868 3.73c-1.142 2.07-1.94 4.648-1.457 7.546a.928.928 0 0 1-1.09 1.064c-1.827-.35-3.326-1.024-4.734-1.483c-1.407-.46-2.695-.724-4.283-.411c-4.607.906-8.265 3.537-10.466 9.753c-.364 1.03-.574 2.1-.682 3.176c1.445-2.184 3.908-3.629 6.718-3.629c4.097 0 7.463 3.074 8 7.027c1.402-1.347 3.243-2.238 5.335-2.238c2.363 0 4.435 1.105 5.866 2.774c.95-3.595 4.202-6.27 8.09-6.27c3.425 0 6.36 2.07 7.664 5.022a7.192 7.192 0 0 1 1.762-.6c-.062-5.874-1.587-8.283-2.861-10.223c-1.3-1.815-4.601-4.79-8.387-4.91c-1.83-.056-2.847.385-4.03.93c-1.184.546-2.54 1.22-4.57 1.292a.928.928 0 0 1-.958-.843c-.51-5.664 2.683-9.28 4.118-10.614c-.113-.14-.104-.148-.252-.314c-.304-.34-.61-.548-.915-.78z\\\"/><path fill=\\\"#fbb040\\\" d=\\\"M41.322 47.387v44.869a1.55 1.55 0 0 0 .775 1.343c1.96.934 7.647 3.164 17.616 3.164c10.036 0 15.553-2.71 17.401-3.827a1.544 1.544 0 0 0 .708-1.297c.004-5.935.004-39.319.004-44.188c-.37.104-.738.216-1.11.313a8.772 8.772 0 0 1-.28 1.1c-.116.357-.26.7-.435 1.026l-.002.003a7.104 7.104 0 0 0-.813 3.853a.928.928 0 0 1 .003.076l.002.654a3.913 3.913 0 0 1-.365 1.679a3.807 3.807 0 0 1-.424.705a3.713 3.713 0 0 1-.558.588a4.11 4.11 0 0 1-.663.457a4.46 4.46 0 0 1-.744.326a4.902 4.902 0 0 1-.804.195a5.497 5.497 0 0 1-.846.065a4.37 4.37 0 0 1-2.456-.754a4.46 4.46 0 0 1-1.599-1.939a4.36 4.36 0 0 1-.347-1.71c0-.102-.022-.223-.06-.35s-.095-.262-.165-.392a2.12 2.12 0 0 0-.243-.365a1.286 1.286 0 0 0-.299-.268l.01.006a7.046 7.046 0 0 1-.858-.612a7.254 7.254 0 0 1-.757-.729a7.516 7.516 0 0 1-.647-.83a7.78 7.78 0 0 1-.53-.918c-1.223.03-2.432.03-3.619.006a84.374 84.374 0 0 1-3.491-.146a88.576 88.576 0 0 1-3.325-.271a90.509 90.509 0 0 1-5.99-.804a84.409 84.409 0 0 1-2.587-.478a73.406 73.406 0 0 1-2.262-.49zm5.366 2.848a2.134 2.134 0 0 1 .817.163a2.134 2.134 0 0 1 .692.462a2.134 2.134 0 0 1 .463.692a2.134 2.134 0 0 1 .163.817v37.11a2.134 2.134 0 0 1-.027.334a2.134 2.134 0 0 1-.078.326a2.134 2.134 0 0 1-.127.31a2.134 2.134 0 0 1-.176.285a2.134 2.134 0 0 1-.217.255a2.134 2.134 0 0 1-.255.217a2.134 2.134 0 0 1-.286.176a2.134 2.134 0 0 1-.31.127a2.134 2.134 0 0 1-.326.079a2.134 2.134 0 0 1-.333.026a2.134 2.134 0 0 1-.818-.163a2.134 2.134 0 0 1-.692-.462a2.134 2.134 0 0 1-.462-.693a2.134 2.134 0 0 1-.163-.817V52.37a2.134 2.134 0 0 1 .163-.817a2.134 2.134 0 0 1 .462-.692a2.134 2.134 0 0 1 .693-.462a2.134 2.134 0 0 1 .817-.163z\\\"/><path fill=\\\"#ffdb96\\\" d=\\\"M46.69 50.233a2.134 2.134 0 0 0-2.135 2.134v37.11a2.134 2.134 0 0 0 2.135 2.135a2.134 2.134 0 0 0 2.135-2.135v-37.11a2.134 2.134 0 0 0-2.135-2.134\\\"/><path fill=\\\"#fff\\\" d=\\\"M44.27 28.602a6.242 6.242 0 0 0-6.147 5.136a.928.928 0 0 1-.88.761a4.925 4.925 0 0 0-4.763 4.932c0 2.435 1.75 4.45 4.054 4.907l-.015-.003a38.89 38.89 0 0 1 3.628.842l.011.004c4.475 1.205 13.454 2.93 23.231 2.6a.928.928 0 0 1 .897.595a5.558 5.558 0 0 0 2.304 2.753a.928.928 0 0 1 .008.006a3.473 3.473 0 0 1 1.643 2.952a2.533 2.533 0 0 0 2.547 2.548c.772 0 1.425-.238 1.86-.606c.435-.368.69-.846.69-1.555c0-.067-.005-.5-.004-.653a8.954 8.954 0 0 1 1.031-4.805a.928.928 0 0 1 .002-.003a5.52 5.52 0 0 0 .632-2.067a.928.928 0 0 1 .699-.807c1.723-.43 3.426-.95 5.088-1.577a9.581 9.581 0 0 1 2.097-.544a.928.928 0 0 1 .005 0a4.933 4.933 0 0 0 4.263-4.896a4.926 4.926 0 0 0-4.94-4.94c-.883 0-1.704.231-2.423.636a.928.928 0 0 1-.222.09l-.65.17a.928.928 0 0 1-1.12-.618a6.538 6.538 0 0 0-6.236-4.566a6.527 6.527 0 0 0-6.507 7.2a.928.928 0 0 1-1.805.386a5.937 5.937 0 0 0-5.643-4.09a5.938 5.938 0 0 0-5.66 4.132a.928.928 0 0 1-.03.018v.004l-.002-.003a.928.928 0 0 1-1.002.615l-.021-.004a.928.928 0 0 1-.725-1.222a6.24 6.24 0 0 0-5.895-8.328m36.984 17.763a36.342 36.342 0 0 1-2.156.727c-.421.129-.846.24-1.27.358c0 4.867 0 38.25-.004 44.188a1.542 1.542 0 0 1-.708 1.297c-.23.14-.519.304-.866.485s-.754.379-1.22.584a25.206 25.206 0 0 1-1.585.632a29.766 29.766 0 0 1-1.958.631a35.691 35.691 0 0 1-3.66.831a41.24 41.24 0 0 1-2.937.406c-.523.054-1.064.1-1.622.139a50.783 50.783 0 0 1-3.552.118a61.186 61.186 0 0 1-3.54-.097a55.6 55.6 0 0 1-1.62-.115a53.614 53.614 0 0 1-2.949-.333a47.94 47.94 0 0 1-1.33-.21a42.662 42.662 0 0 1-2.373-.476a36.587 36.587 0 0 1-1.999-.521a30.918 30.918 0 0 1-1.628-.523A25.169 25.169 0 0 1 43.01 94a19.387 19.387 0 0 1-.91-.404a1.55 1.55 0 0 1-.776-1.343V47.385a59.8 59.8 0 0 1-1.66-.416a.928.928 0 0 1-.012-.003a37.197 37.197 0 0 0-1.722-.444c-.048-.011-.096-.018-.144-.03l.111 51.722a.633.633 0 0 0 .283.514c.218.125.508.27.876.426c.368.158.813.328 1.34.504a29.16 29.16 0 0 0 1.833.538c.697.18 1.48.36 2.354.532c.875.172 1.84.337 2.903.487c1.062.15 2.22.284 3.479.397a85.02 85.02 0 0 0 4.083.269a112.813 112.813 0 0 0 4.716.099a87.836 87.836 0 0 0 4.784-.13c.74-.042 1.451-.094 2.135-.153s1.34-.127 1.97-.201a56.585 56.585 0 0 0 1.81-.243a50.226 50.226 0 0 0 1.652-.278a43.459 43.459 0 0 0 1.853-.384a36.673 36.673 0 0 0 1.625-.413a30.578 30.578 0 0 0 1.405-.429a24.939 24.939 0 0 0 1.194-.429c.364-.142.693-.281.99-.416s.564-.266.799-.39a10.283 10.283 0 0 0 .613-.35a6.31 6.31 0 0 0 .436-.295a.633.633 0 0 0 .159-.208a.592.592 0 0 0 .057-.254a.928.928 0 0 1 0-.004c.008-1.475.008-4.91.008-6.938a2.473 2.473 0 0 1 1.565-2.301a2.477 2.477 0 0 1 .963-.175c1.694.024 3.73.028 5.667.022a.928.928 0 0 1 .006 0a6.042 6.042 0 0 0 1.188-.113a6.053 6.053 0 0 0 4.415-3.612a6.043 6.043 0 0 0 .463-2.318v-25.11a6.046 6.046 0 0 0-1.368-3.83a6.049 6.049 0 0 0-4.676-2.214H83.73a2.445 2.445 0 0 1-1.38-.426a2.523 2.523 0 0 1-.67-.67a2.442 2.442 0 0 1-.426-1.38zm2.864 8.798h4.933a2.864 2.864 0 0 1 1.096.218a2.865 2.865 0 0 1 .93.62a2.864 2.864 0 0 1 .62.93a2.87 2.87 0 0 1 .218 1.096v22.536a2.864 2.864 0 0 1-.217 1.096a2.864 2.864 0 0 1-.62.929a.928.928 0 0 0-.002 0a2.864 2.864 0 0 1-.928.62a2.87 2.87 0 0 1-1.096.218h-4.935a2.864 2.864 0 0 1-1.096-.217a2.863 2.863 0 0 1-.929-.62a.928.928 0 0 0 0-.001a2.864 2.864 0 0 1-.62-.93a2.87 2.87 0 0 1-.218-1.095V58.027a2.864 2.864 0 0 1 .217-1.096a2.863 2.863 0 0 1 .62-.93a.928.928 0 0 0 .001 0a2.864 2.864 0 0 1 .93-.62a2.87 2.87 0 0 1 1.095-.218z\\\"/><path fill=\\\"#f9d094\\\" d=\\\"M19.157 127.76h-4.224v-7.359H8.676v7.359H4.427v-17.622h4.249v6.996h6.257v-6.996h4.224zm1.985-6.67q0-1.96.763-3.486q.762-1.537 2.19-2.36t3.353-.823q2.94 0 4.635 1.828q1.695 1.815 1.695 4.95v.145q0 3.062-1.707 4.866q-1.694 1.79-4.599 1.79q-2.796 0-4.49-1.67q-1.695-1.683-1.828-4.551zm4.079.254q0 1.816.569 2.663q.569.847 1.682.847q2.179 0 2.227-3.352v-.412q0-3.522-2.251-3.522q-2.046 0-2.215 3.038zm14.209-6.684l.133 1.537q1.392-1.78 3.74-1.78q2.481 0 3.353 1.974q1.331-1.973 3.848-1.973q3.982 0 4.091 4.817v8.52h-4.09v-8.266q0-1.004-.34-1.464q-.338-.46-1.234-.46q-1.21 0-1.803 1.077l.012.17v8.944h-4.091v-8.243q0-1.028-.327-1.488q-.327-.46-1.247-.46q-1.174 0-1.79 1.077v9.114h-4.08V114.66zM63.262 128q-3.014 0-4.878-1.791q-1.864-1.804-1.864-4.684v-.34q0-2.008.739-3.545q.75-1.538 2.178-2.373q1.429-.847 3.39-.847q2.759 0 4.357 1.719q1.597 1.706 1.597 4.768v1.586h-8.11q.219 1.101.957 1.73q.738.63 1.912.63q1.937 0 3.026-1.355l1.864 2.202q-.762 1.053-2.166 1.683q-1.392.617-3.002.617m-.46-10.433q-1.791 0-2.13 2.372h4.115v-.314q.024-.98-.496-1.513q-.52-.545-1.489-.545m19.777 3.753q0 3.22-1.331 4.95q-1.332 1.731-3.752 1.731q-1.997 0-3.22-1.586l-.17 1.344h-3.655v-18.591h4.08v6.548q1.137-1.295 2.94-1.295q2.445 0 3.777 1.755q1.331 1.755 1.331 4.938zm-4.09-.254q0-1.888-.51-2.687q-.495-.811-1.536-.811q-1.38 0-1.913 1.053v5.204q.52 1.041 1.937 1.041q1.44 0 1.827-1.404q.194-.69.194-2.396zm13.809-2.716l-1.343-.097q-1.925 0-2.47 1.21v8.291h-4.078v-13.096h3.824l.133 1.683q1.03-1.925 2.869-1.925q.653 0 1.138.145zm7.576 9.65q-3.014 0-4.878-1.791q-1.864-1.804-1.864-4.684v-.34q0-2.008.739-3.545q.75-1.538 2.178-2.373q1.429-.847 3.39-.847q2.759 0 4.357 1.719q1.597 1.706 1.597 4.768v1.586h-8.11q.219 1.101.957 1.73q.738.63 1.912.63q1.937 0 3.026-1.355l1.864 2.202q-.762 1.053-2.166 1.683q-1.392.617-3.002.617m-.46-10.433q-1.791 0-2.13 2.372h4.115v-.314q.024-.98-.496-1.513q-.52-.545-1.489-.545m18.926 4.813l1.32-7.722h3.909l-3.087 13.096h-3.449l-2.166-7.77l-2.18 7.77h-3.448l-3.087-13.096h3.91l1.295 7.903l2.081-7.903h2.845z\\\"/>\"\n\t\t},\n\t\t\"html5\": {\n\t\t\t\"body\": \"<path fill=\\\"#E44D26\\\" d=\\\"M19.037 113.876L9.032 1.661h109.936l-10.016 112.198l-45.019 12.48z\\\"/><path fill=\\\"#F16529\\\" d=\\\"m64 116.8l36.378-10.086l8.559-95.878H64z\\\"/><path fill=\\\"#EBEBEB\\\" d=\\\"M64 52.455H45.788L44.53 38.361H64V24.599H29.489l.33 3.692l3.382 37.927H64zm0 35.743l-.061.017l-15.327-4.14l-.979-10.975H33.816l1.928 21.609l28.193 7.826l.063-.017z\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.952 52.455v13.763h16.947l-1.597 17.849l-15.35 4.143v14.319l28.215-7.82l.207-2.325l3.234-36.233l.335-3.696h-3.708zm0-27.856v13.762h33.244l.276-3.092l.628-6.978l.329-3.692z\\\"/>\"\n\t\t},\n\t\t\"html5-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#E44D26\\\" d=\\\"m27.854 116.354l-8.043-90.211h88.378l-8.051 90.197l-36.192 10.033z\\\"/><path fill=\\\"#F16529\\\" d=\\\"m64 118.704l29.244-8.108l6.881-77.076H64z\\\"/><path fill=\\\"#EBEBEB\\\" d=\\\"M64 66.978H49.359l-1.01-11.331H64V44.583H36.257l.264 2.969l2.72 30.489H64zm0 28.733l-.049.013l-12.321-3.328l-.788-8.823H39.735l1.55 17.372l22.664 6.292l.051-.015z\\\"/><path d=\\\"M28.034 1.627h5.622v5.556H38.8V1.627h5.623v16.822H38.8v-5.633h-5.143v5.633h-5.623zm23.782 5.579h-4.95V1.627h15.525v5.579h-4.952v11.243h-5.623zm13.039-5.579h5.862l3.607 5.911l3.603-5.911h5.865v16.822h-5.601v-8.338l-3.867 5.981h-.098l-3.87-5.981v8.338h-5.502V1.627zm21.736 0h5.624v11.262h7.907v5.561H86.591z\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.962 66.978v11.063h13.624L76.302 92.39l-12.34 3.331v11.51l22.682-6.286l.166-1.87l2.6-29.127l.27-2.97h-2.982zm0-22.395v11.064h26.725l.221-2.487l.505-5.608l.265-2.969z\\\"/>\"\n\t\t},\n\t\t\"hugo\": {\n\t\t\t\"body\": \"<path fill=\\\"#FF4088\\\" d=\\\"m71.2 8.5l36.7 21.3c4.3 2.5 7 7.2 7 12.2v43.7c0 5.6-3 10.7-7.8 13.4l-36.4 20.5c-4.8 2.7-10.7 2.7-15.5-.1l-33.5-19.3c-5.3-3-8.5-8.6-8.5-14.7V44.1c0-6.1 3.2-11.8 8.4-15L54.4 8.8c5.1-3.2 11.6-3.3 16.8-.3\\\"/><path fill=\\\"#C9177E\\\" d=\\\"M63 126c-3.5 0-6.9-.9-10-2.7L19.5 104c-6.6-3.8-10.7-10.9-10.7-18.5V44.1c0-7.7 3.9-14.6 10.4-18.7L52.1 5.1c6.5-4 14.6-4.1 21.2-.3L110 26.1c5.7 3.3 9.2 9.4 9.2 15.9v43.7c0 7.1-3.8 13.7-10 17.2l-36.4 20.5c-3 1.7-6.4 2.6-9.8 2.6m0-115.3c-2.2 0-4.4.6-6.3 1.8l-33 20.3c-4 2.4-6.3 6.7-6.3 11.3v41.5c0 4.5 2.4 8.7 6.3 11l33.5 19.3c3.5 2 7.8 2 11.3.1l36.4-20.5c3.5-2 5.6-5.6 5.6-9.6V42.1c0-3.5-1.9-6.7-4.9-8.5L69 12.3c-1.8-1.1-3.9-1.6-6-1.6\\\"/><path fill=\\\"#FFF\\\" d=\\\"M38.6 96.9V30.5h13.9v24.2h23V30.5h13.9v66.4H75.5v-29h-23v29z\\\"/>\"\n\t\t},\n\t\t\"hugo-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#EBB951\\\" d=\\\"m113.7 49.8l9.3 5.3c1.1.6 1.8 1.8 1.8 3.1V70c0 1.2-.7 2.3-1.7 2.9l-10 5.5c-1.1.6-2.4.6-3.4 0l-8.8-5.1c-1.5-.8-2.4-2.4-2.4-4.1v-10c0-1.9 1-3.6 2.6-4.6l8.1-4.9c1.4-.7 3.1-.7 4.5.1\\\"/><path fill=\\\"#FCD804\\\" d=\\\"M111.4 80.1c-.8 0-1.6-.2-2.3-.6l-8.8-5.1c-1.8-1-2.9-3-2.9-5.1v-10c0-2.3 1.2-4.4 3.1-5.5l8.1-4.9c1.7-1 3.9-1.1 5.7-.1l9.3 5.3c1.5.8 2.4 2.4 2.4 4.1V70c0 1.6-.9 3.1-2.3 3.9l-10 5.5c-.7.5-1.5.7-2.3.7m.1-29.8c-.6 0-1.2.2-1.7.5l-8.1 4.9c-1.3.8-2 2.1-2 3.6v10c0 1.3.7 2.5 1.8 3.1l8.8 5.1c.7.4 1.6.4 2.3 0l10-5.5c.7-.4 1.1-1.1 1.1-1.9V58.2c0-.9-.5-1.7-1.2-2.1l-9.3-5.3c-.5-.3-1.1-.5-1.7-.5\\\"/><path fill=\\\"#33BA91\\\" d=\\\"m81.6 49.6l9.8 5.6c1.1.6 1.7 1.7 1.7 3v11.6c0 1.4-.7 2.6-1.9 3.3l-9.8 5.4c-1.1.6-2.5.6-3.6 0L69 73.4c-1.4-.8-2.3-2.4-2.3-4v-9.9c0-2 1-3.8 2.8-4.9l8.2-4.9c1.1-.8 2.6-.8 3.9-.1\\\"/><path fill=\\\"#00A88A\\\" d=\\\"M79.6 80c-.8 0-1.7-.2-2.4-.6l-8.8-5.1c-1.8-1-2.9-2.9-2.9-5v-9.9c0-2.4 1.3-4.6 3.3-5.8l8.2-4.9c.1-.1.2-.1.4-.2c1.5-.7 3.3-.7 4.8.1l9.8 5.6c1.4.8 2.3 2.3 2.3 3.9v11.6c0 1.8-1 3.4-2.5 4.2L82 79.3c-.8.5-1.6.7-2.4.7m0-29.8c-.5 0-1 .1-1.5.4L70 55.5c-1.4.8-2.2 2.3-2.2 3.9v9.9c0 1.3.7 2.4 1.8 3.1l8.8 5.1c.8.4 1.7.5 2.5 0l9.8-5.4c.8-.5 1.3-1.3 1.3-2.3V58.1c0-.8-.4-1.6-1.2-2L81 50.6c-.5-.3-.9-.4-1.4-.4\\\"/><path fill=\\\"#0594CB\\\" d=\\\"m49.7 49.5l9.7 5.7c1 .6 1.6 1.7 1.6 2.8l.1 11.5c0 1.5-.8 2.8-2 3.5l-9.6 5.3c-1.2.6-2.6.6-3.7 0L37 73.2c-1.4-.8-2.3-2.3-2.3-4V59.1c0-1.8.9-3.5 2.5-4.5l8.3-5.1c1.3-.8 2.9-.8 4.2 0\\\"/><path fill=\\\"#0083C0\\\" d=\\\"M47.7 80c-.8 0-1.7-.2-2.4-.7l-8.8-5.1c-1.7-1-2.8-2.9-2.8-4.9V59.1c0-2.2 1.1-4.2 3-5.4l8.3-5.1c1.6-1 3.7-1 5.4-.1l9.7 5.7c1.3.8 2.2 2.3 2.2 3.8l.1 11.5c0 1.9-1 3.6-2.6 4.5l-9.6 5.3c-.8.5-1.6.7-2.5.7m0-30c-.5 0-1.1.1-1.6.4l-8.3 5.1c-1.2.8-2 2.1-2 3.5v10.2c0 1.2.7 2.4 1.7 3l8.8 5.1c.8.5 1.8.5 2.6 0l9.6-5.3c.9-.5 1.5-1.5 1.5-2.5V58.1c0-.8-.4-1.5-1.1-1.9l-9.7-5.7c-.5-.3-1-.5-1.5-.5\\\"/><path fill=\\\"#FF4088\\\" d=\\\"m18.2 49.7l9.5 5.5c1.1.7 1.8 1.9 1.8 3.2v11.3c0 1.4-.8 2.8-2 3.5l-9.4 5.3c-1.3.7-2.8.7-4 0l-8.7-5c-1.4-.8-2.2-2.2-2.2-3.8V59c0-1.6.8-3.1 2.2-3.9l8.5-5.3c1.3-.8 2.9-.8 4.3-.1\\\"/><path fill=\\\"#C9177E\\\" d=\\\"M16.1 80.2c-.9 0-1.8-.2-2.6-.7l-8.7-5c-1.7-1-2.8-2.8-2.8-4.8V59c0-2 1-3.8 2.7-4.8l8.5-5.3c1.7-1 3.8-1.1 5.5-.1l9.5 5.5c1.5.9 2.4 2.4 2.4 4.1v11.3c0 1.8-1 3.6-2.6 4.5l-9.4 5.3c-.8.5-1.7.7-2.5.7m0-29.9c-.6 0-1.1.2-1.6.5L5.9 56c-1 .6-1.6 1.7-1.6 2.9v10.8c0 1.2.6 2.3 1.6 2.8l8.7 5c.9.5 2 .5 2.9 0l9.4-5.3c.9-.5 1.5-1.5 1.5-2.5V58.4c0-.9-.5-1.7-1.3-2.2l-9.5-5.5c-.5-.3-1-.4-1.5-.4\\\"/><path fill=\\\"#FFF\\\" d=\\\"M111.7 55.1c-4.9 0-8.9 4-8.9 8.9s4 8.9 8.9 8.9s8.9-4 8.9-8.9s-4-8.9-8.9-8.9m0 14.5c-3.1 0-5.6-2.5-5.6-5.6c0-3.1 2.5-5.6 5.6-5.6c3.1 0 5.6 2.5 5.6 5.6c0 3.1-2.5 5.6-5.6 5.6m-23.6-5.7c0 3.9-.7 5.1-2.2 6.7c-1.5 1.6-3.5 2.3-5.9 2.3c-2.2 0-4.1-.8-5.6-2.2c-1.7-1.5-3-3.9-3-6.6c0-2.6 1-4.9 2.7-6.5c1.5-1.5 3.8-2.4 6.1-2.4c2.8 0 5.7 1.3 7.5 4L85 61.3c-1.1-2.1-2.7-2.8-5.1-2.8c-2.6-.1-5.4 2.4-5.2 5.6c.1 1.8 1 5 5.1 5.5c2.2.3 4.6-2 4.6-3.2h-4v-3.1h7.7zM41.3 56h3.5v9.3c0 1.5 0 2.4.1 2.9c.1.7.4 1.2.9 1.6c.5.4 1.1.5 2.1.5c.9 0 1.2-.1 1.7-.5s.8-.8.9-1.4c.1-.6.3-1.6.3-2.9V56h3.5v9c0 2.1-.1 3.5-.3 4.4c-.2.9-.5 1.6-1 2.2c-.5.6-1.1 1.1-1.9 1.4c-.8.3-1.8.5-3.1.5c-1.6 0-2.7-.2-3.5-.6c-.8-.4-1.4-.9-1.9-1.5s-.8-1.2-.9-1.9c-.2-1-.3-2.4-.3-4.4zM9.7 72.7V55.4h3.6v6.3h6v-6.3h3.6v17.3h-3.6v-7.6h-6v7.6z\\\"/>\"\n\t\t},\n\t\t\"ie10\": {\n\t\t\t\"body\": \"<path fill=\\\"#1EBBEE\\\" d=\\\"M126.11 66.834c0-9.82-2.539-19.034-6.991-27.051C138.097-3.167 98.785 3.13 96.596 3.558c-8.328 1.629-16.034 4.249-23.142 7.566a56.276 56.276 0 0 0-3.166-.09c-26.525 0-48.729 18.501-54.411 43.303c13.98-15.684 23.765-22.012 29.624-24.544c-.936.835-1.851 1.681-2.751 2.532l-.885.855c-.594.571-1.186 1.143-1.765 1.72c-.344.343-.68.689-1.019 1.035c-.514.522-1.026 1.044-1.527 1.569l-1.052 1.122c-.468.501-.934 1.003-1.39 1.506l-1.053 1.175a143.278 143.278 0 0 0-3.516 4.099c-.347.419-.692.838-1.031 1.256c-.367.453-.726.905-1.083 1.356c-.348.438-.695.875-1.034 1.312l-.953 1.246c-.356.469-.715.938-1.063 1.404l-.731.998a173.801 173.801 0 0 0-6.041 8.796l-.013.021c-.479.747-.941 1.482-1.395 2.211l-.074.12c-.454.732-.892 1.451-1.319 2.164l-.045.075a181.942 181.942 0 0 0-3.172 5.501C7.562 80.977 5.114 87.343 5.008 87.72c-15.876 56.759 33.674 32.791 40.588 29.213c7.445 3.678 15.827 5.973 24.692 5.973C94.563 122.905 115.213 107 122.9 86H93.569c-4.34 7-12.694 12.049-22.293 12.049C57.211 98.049 45.81 87 45.81 74h79.842c.303-2 .458-4.73.458-7.166M13.526 116.817c-3.916-4.015-4.608-13.795 4.032-31.616c4.36 12.537 13.061 23.041 24.307 29.708c-5.593 3.079-20.441 10.009-28.339 1.908M45.687 59c.446-13 11.564-23.005 25.226-23.005C84.574 35.995 95.694 46 96.14 59zm44.776-44.204c5.166-2.495 17.958-7.771 25.22-2.871c4.807 3.245 8.663 8.34 2.042 25.499c-6.351-10.213-15.905-18.224-27.262-22.628\\\"/>\"\n\t\t},\n\t\t\"ifttt\": {\n\t\t\t\"body\": \"<path d=\\\"M2 47.6h10.5v32.9H2zm59.8 0h-18V58h7.5v22.4h10.5V58h7.5V47.6zm28.3 0H72.2V58h7.5v22.4h10.5V58h7.5V47.6zm28.4 0h-17.9V58h7.5v22.4h10.5V58h7.5V47.6zM40.8 58V47.6H16.9v32.9h10.5v-9h9V61h-9v-3z\\\"/>\"\n\t\t},\n\t\t\"influxdb\": {\n\t\t\t\"body\": \"<path fill=\\\"#020a47\\\" fill-rule=\\\"evenodd\\\" d=\\\"m94.543 87.625l29.379-6.75a3.35 3.35 0 0 0 1.258-.543a3.358 3.358 0 0 0 1.383-2.305c.058-.46.019-.925-.114-1.37L113.957 22.34a3.499 3.499 0 0 0-1.59-2.14a3.49 3.49 0 0 0-2.633-.391l-29.37 6.75c-.887.23-1.65.8-2.118 1.593a3.452 3.452 0 0 0-.383 2.625L90.32 85.094a3.499 3.499 0 0 0 1.59 2.14c.79.477 1.738.618 2.633.391m-10.125 33.566l35.621-33.054c1.344-1.36 1.004-2.196-.844-1.528l-24.484 5.575a6.222 6.222 0 0 0-2.715 1.46a6.221 6.221 0 0 0-1.676 2.586l-7.425 23.954c-.508 1.855.168 2.363 1.523 1.007m-64.992-10.789l53.344 16.52c.91.172 1.851.012 2.656-.45a3.947 3.947 0 0 0 1.734-2.07l8.938-28.68a3.48 3.48 0 0 0 .117-1.378a3.492 3.492 0 0 0-.418-1.317a3.473 3.473 0 0 0-.89-1.058a3.562 3.562 0 0 0-1.227-.633L30.336 74.973a3.545 3.545 0 0 0-2.695.304a3.57 3.57 0 0 0-1.696 2.118l-8.879 28.62a3.556 3.556 0 0 0 .278 2.68a3.547 3.547 0 0 0 2.082 1.707M2.2 51.7l10.816 47.452c.336 1.856 1.207 1.856 1.68 0l7.425-23.949a6.709 6.709 0 0 0 .031-3.113a6.783 6.783 0 0 0-1.37-2.793L3.721 50.852c-1.183-1.395-2.066-1.008-1.523.847ZM43.906.973L3.046 38.875a3.47 3.47 0 0 0-.168 4.848l20.43 22.144a3.483 3.483 0 0 0 2.415 1.098a3.48 3.48 0 0 0 2.484-.926l40.848-37.965a3.446 3.446 0 0 0 .172-4.847L48.832 1.094A3.48 3.48 0 0 0 47.722.3a3.467 3.467 0 0 0-1.326-.3a3.419 3.419 0 0 0-1.34.238a3.435 3.435 0 0 0-1.149.735Zm39.496 85.804c1.864.508 3.035-.496 2.54-2.422L74.124 33.082c-.508-1.855-2.035-2.363-3.375-1.02L32.258 67.895c-1.352 1.343-1.016 2.859.836 3.367Zm20.09-71.515L56.898.972c-1.851-.511-2.187.169-.675 1.684l17.054 18.387a6.549 6.549 0 0 0 2.7 1.527a6.58 6.58 0 0 0 3.093.11l24.485-5.563c1.8-.508 1.8-1.355-.063-1.855m0 0\\\"/>\"\n\t\t},\n\t\t\"influxdb-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#020a47\\\" fill-rule=\\\"evenodd\\\" d=\\\"m84.016 62.555l20.312-4.657a2.29 2.29 0 0 0 1.512-1.07c.164-.273.27-.578.312-.894a2.33 2.33 0 0 0-.078-.946l-8.636-37.457a2.413 2.413 0 0 0-1.098-1.476a2.433 2.433 0 0 0-1.82-.27l-20.301 4.656a2.393 2.393 0 0 0-1.73 2.91l8.609 37.458a2.41 2.41 0 0 0 1.097 1.476a2.398 2.398 0 0 0 1.82.27ZM77.02 85.7l24.62-22.794c.93-.937.696-1.511-.581-1.054l-16.926 3.847a4.276 4.276 0 0 0-3.035 2.79l-5.133 16.519c-.352 1.277.117 1.629 1.055.691Zm-44.926-7.438l36.87 11.39A2.693 2.693 0 0 0 72 87.914l6.18-19.777a2.434 2.434 0 0 0-.824-2.586a2.34 2.34 0 0 0-.847-.438L39.637 53.828a2.458 2.458 0 0 0-3.035 1.672l-6.137 19.734a2.435 2.435 0 0 0 .191 1.848c.305.57.82.992 1.438 1.18M20.188 37.777l7.472 32.727c.235 1.277.836 1.277 1.164 0l5.133-16.516a4.644 4.644 0 0 0 .023-2.148a4.692 4.692 0 0 0-.949-1.926L21.242 37.191c-.82-.96-1.43-.691-1.055.586Zm28.828-34.98L20.773 28.934a2.404 2.404 0 0 0-.742 1.648a2.382 2.382 0 0 0 .625 1.695l14.121 15.274a2.413 2.413 0 0 0 3.387.117l28.234-26.18c.457-.43.727-1.023.75-1.648a2.376 2.376 0 0 0-.632-1.695L52.418 2.879a2.358 2.358 0 0 0-.766-.543a2.405 2.405 0 0 0-.918-.211a2.426 2.426 0 0 0-.925.164c-.293.113-.563.29-.793.508m27.3 59.172c1.29.351 2.098-.344 1.754-1.672l-8.168-35.36c-.351-1.277-1.402-1.628-2.332-.699L40.965 48.945c-.938.93-.703 1.973.578 2.325Zm13.887-49.317L57.996 2.797c-1.277-.352-1.512.117-.469 1.16l11.79 12.684a4.595 4.595 0 0 0 1.867 1.05c.695.196 1.43.223 2.14.075l16.922-3.836c1.246-.352 1.246-.934-.043-1.278M4.996 100.613c-.805 0-1.488-.261-2.047-.789a2.56 2.56 0 0 1-.812-1.914c0-.789.27-1.437.812-1.945c.559-.524 1.242-.79 2.047-.79c.805 0 1.477.266 2.02.79c.543.508.812 1.156.812 1.945c0 .75-.27 1.39-.812 1.914c-.543.528-1.215.79-2.02.79Zm-2.55 16.82v-14.538H7.52v14.539Zm8.488 0v-14.538h4.992l.058 1.804a3.903 3.903 0 0 1 1.653-1.664c.73-.39 1.57-.59 2.523-.59c1.63 0 2.863.528 3.703 1.578c.86 1.032 1.29 2.555 1.29 4.563v8.848h-5.075v-7.891c0-1.707-.644-2.563-1.937-2.563c-.692 0-1.223.247-1.598.735c-.355.469-.531 1.144-.531 2.027v7.692Zm19.015 0V106.98h-2.328v-4.085h2.328v-1.407c0-2.234.543-3.965 1.63-5.183c1.1-1.223 2.651-1.832 4.651-1.832a8.91 8.91 0 0 1 1.63.14c.523.075.96.188 1.316.34l-.25 4.223a2.71 2.71 0 0 0-.758-.196a4.152 4.152 0 0 0-.785-.085c-.805 0-1.403.234-1.797.707c-.375.468-.559 1.21-.559 2.222v1.07h3.422v4.086h-3.422v10.454Zm10.742 0v-22.82h5.079v22.82Zm13.274.45c-1.59 0-2.805-.508-3.645-1.524c-.843-1.03-1.265-2.535-1.265-4.504v-8.96h5.105v7.918c0 .863.149 1.5.45 1.914c.316.414.812.62 1.488.62c.672 0 1.187-.234 1.539-.702c.375-.489.562-1.176.562-2.06v-7.69h5.078v14.539h-4.992l-.058-1.805a3.844 3.844 0 0 1-1.684 1.66c-.727.395-1.586.594-2.578.594m11.613-.45l5.27-7.496l-4.993-7.042h5.668l2.356 3.945l2.3-3.945h5.383l-4.964 7.101l5.3 7.438h-5.691l-2.637-4.395l-2.61 4.395Zm25.211.45c-1.289 0-2.45-.32-3.477-.957c-1.007-.64-1.804-1.524-2.382-2.649c-.582-1.144-.871-2.441-.871-3.886c0-1.391.308-2.649.925-3.778c.637-1.144 1.489-2.047 2.551-2.703a6.476 6.476 0 0 1 3.535-1.015a5.59 5.59 0 0 1 2.918.789c.899.527 1.617 1.27 2.16 2.226V94.613h2.383v22.82h-2.328l-.055-2.566c-.562.957-1.3 1.7-2.218 2.227c-.914.527-1.961.789-3.14.789Zm.617-2.14c.973 0 1.824-.227 2.555-.677c.727-.453 1.297-1.082 1.71-1.886c.43-.809.645-1.739.645-2.79c0-1.054-.214-1.984-.644-2.788c-.414-.809-.984-1.438-1.711-1.887c-.73-.453-1.582-.68-2.555-.68c-.953 0-1.804.227-2.55.68c-.731.45-1.31 1.078-1.739 1.887c-.414.804-.617 1.734-.617 2.789c0 1.05.203 1.98.617 2.789c.43.804 1.008 1.433 1.738 1.886c.747.45 1.598.676 2.551.676Zm19.637 2.14c-1.102 0-2.102-.262-3-.79c-.879-.527-1.57-1.269-2.074-2.226l-.059 2.567h-2.328v-22.82h2.387v11.296c.558-.957 1.297-1.7 2.215-2.226c.914-.524 1.96-.79 3.14-.79c1.309 0 2.469.32 3.477.961c1.011.637 1.804 1.52 2.386 2.645c.579 1.129.868 2.426.868 3.89c0 1.387-.317 2.657-.953 3.801a7.31 7.31 0 0 1-2.524 2.707c-1.047.657-2.226.985-3.535.985m-.336-2.14c.973 0 1.824-.227 2.555-.677a4.706 4.706 0 0 0 1.71-1.886c.43-.809.641-1.739.641-2.79c0-1.054-.21-1.984-.64-2.788c-.414-.809-.985-1.438-1.711-1.887c-.73-.453-1.582-.68-2.555-.68c-.953 0-1.805.227-2.55.68c-.731.45-1.31 1.078-1.739 1.887c-.414.804-.617 1.734-.617 2.789c0 1.05.203 1.98.617 2.789c.43.804 1.008 1.433 1.738 1.886c.746.45 1.598.676 2.551.676Zm10.328-17.009v-2.996h-1.11v-.593h2.9v.593h-1.102v2.996Zm2.406 0l.184-3.59h.664l1.09 2.282l1.113-2.281h.664l.184 3.59h-.61l-.113-2.657l-.984 2.035h-.485l-.992-2.054l-.11 2.675Zm0 0\\\"/>\"\n\t\t},\n\t\t\"inkscape\": {\n\t\t\t\"body\": \"<g transform=\\\"translate(.389 -1.445)scale(.994)\\\"><g opacity=\\\".783\\\"><path d=\\\"m53.3 10.088l-44.8 45.8c-16.9 16.9 11 15.5 21.1 21.9c4.7 3-15 6.9-11 11c3.9 4 23.6 7.7 27.5 11.6c3.9 4-7.9 8.2-4 12.3c3.8 4 12.9.2 14.5 9.3c1.2 6.7 16.7 3.4 23.7-2.4c4.3-3.7-7.5-3.7-3.6-7.7c9.8-9.9 18.5-4.5 22-13.6c2-4.9-14.8-8.4-10.3-11.5c10.7-7.5 49.7-11.3 31.7-29.3l-46.3-47.4c-5.8-5.4-15.2-5.4-20.5 0m51.3 88.2c0 2.3 17.7 3.6 16.7-.5c-1.4-7-14.8-6.4-16.7.5m-75.4 12.1c4 3.5 10.1-.8 12-5.6c-3.9-5.2-18.3.2-12 5.6m73.2-7.3c-5 4.6.9 9.3 5.8 6.2c1.3-.9-.1-5.1-5.8-6.2\\\"/><path d=\\\"m53.3 11.088l-44.8 45.8c-16.9 17 11 15.6 21.1 22c4.7 3-15 6.9-11 11c3.9 4 23.6 7.7 27.5 11.6c3.9 4-7.9 8.2-4 12.3c3.8 4 12.9.2 14.5 9.3c1.2 6.7 16.7 3.4 23.7-2.4c4.3-3.7-7.5-3.7-3.6-7.7c9.8-9.9 18.5-4.5 22-13.6c2-4.9-14.8-8.4-10.3-11.5c10.6-7.5 49.7-11.3 31.7-29.3l-46.3-47.5c-5.8-5.4-15.2-5.4-20.5 0m51.3 88.3c0 2.3 17.7 3.6 16.7-.5c-1.4-7-14.8-6.5-16.7.5m-75.4 12c4 3.5 10.1-.8 12-5.6c-3.9-5.1-18.3.3-12 5.6m73.2-7.2c-5 4.6.9 9.3 5.8 6.2c1.3-.9-.1-5.2-5.8-6.2\\\" opacity=\\\".576\\\"/></g><path d=\\\"M53.3 9L8.5 54.8c-16.9 16.9 11 15.5 21.1 21.9c4.7 3-15 6.9-11 11c3.9 4 23.6 7.7 27.5 11.6c3.9 4-7.9 8.2-4 12.3c3.8 4 12.9.2 14.5 9.3c1.2 6.7 16.7 3.4 23.7-2.4c4.3-3.7-7.5-3.7-3.6-7.7c9.8-9.9 18.5-4.5 22-13.6c2-4.9-14.8-8.4-10.3-11.5c10.6-7.5 49.7-11.3 31.7-29.3L73.8 9C68 3.6 58.6 3.6 53.3 9m51.3 88.2c0 2.3 17.7 3.6 16.7-.5c-1.4-6.9-14.8-6.4-16.7.5m-75.4 12.1c4 3.5 10.1-.8 12-5.6c-3.9-5.2-18.3.3-12 5.6m73.2-7.3c-5 4.6.9 9.3 5.8 6.2c1.3-.9-.1-5.1-5.8-6.2\\\"/><path fill=\\\"none\\\" d=\\\"M53.3 9L8.5 54.8c-16.9 16.9 11 15.5 21.1 21.9c4.7 3-15 6.9-11 11c3.9 4 23.6 7.7 27.5 11.6c3.9 4-7.9 8.2-4 12.3c3.8 4 12.9.2 14.5 9.3c1.2 6.7 16.7 3.4 23.7-2.4c4.3-3.7-7.5-3.7-3.6-7.7c9.8-9.9 18.5-4.5 22-13.6c2-4.9-14.8-8.4-10.3-11.5c10.6-7.5 49.7-11.3 31.7-29.3L73.8 9C68 3.6 58.6 3.6 53.3 9m51.3 88.2c0 2.3 17.7 3.6 16.7-.5c-1.4-6.9-14.8-6.4-16.7.5m-75.4 12.1c4 3.5 10.1-.8 12-5.6c-3.9-5.2-18.3.3-12 5.6m73.2-7.3c-5 4.6.9 9.3 5.8 6.2c1.3-.9-.1-5.1-5.8-6.2\\\"/><defs><path id=\\\"deviconInkscape0\\\" d=\\\"M53.4 9.5L9.1 54.9C-7.7 71.7 19.9 70.3 29.9 76.6c4.6 3-14.8 6.9-10.9 10.9c3.9 4 23.3 7.6 27.2 11.5c3.9 4-7.8 8.2-4 12.1c3.8 4 12.8.2 14.4 9.2c1.2 6.7 16.6 3.3 23.4-2.4l-3.5-7.6c9.7-9.8 18.3-4.4 21.8-13.4c1.9-4.8-14.6-8.3-10.2-11.4c10.5-7.4 49.2-11.2 31.4-29l-45.9-47c-5.6-5.3-15-5.3-20.2 0M42.7 79.1c1 0 33.1 4.3 20.7 7.6c-4.7 1.3-26.4-7.6-20.7-7.6m61.5 17.8c0 2.3 17.5 3.5 16.6-.5c-1.4-6.9-14.7-6.3-16.6.5m-74.7 12c4 3.4 10-.8 11.9-5.6c-3.8-5.1-18.1.3-11.9 5.6m72.6-7.2c-4.9 4.5.9 9.2 5.7 6.1c1.2-.9-.2-5.1-5.7-6.1\\\"/></defs><clipPath id=\\\"deviconInkscape1\\\"><use href=\\\"#deviconInkscape0\\\"/></clipPath><g clip-path=\\\"url(#deviconInkscape1)\\\" transform=\\\"translate(.605 .604)scale(.991)\\\"><linearGradient id=\\\"deviconInkscape2\\\" x1=\\\"98.293\\\" x2=\\\"74.286\\\" y1=\\\"237.026\\\" y2=\\\"215.319\\\" gradientTransform=\\\"matrix(.985 0 0 -.985 6.128 272.439)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#C0CDF9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#07092D\\\" stop-opacity=\\\".288\\\"/></linearGradient><path fill=\\\"url(#deviconInkscape2)\\\" d=\\\"M53.4 9.5L9.1 54.9C-7.7 71.7 19.9 70.3 29.9 76.6c4.6 3-14.8 6.9-10.9 10.9c3.9 4 23.3 7.6 27.2 11.5c3.9 4-7.8 8.2-4 12.1c3.8 4 12.8.2 14.4 9.2c1.2 6.7 16.6 3.3 23.4-2.4l-3.5-7.6c9.7-9.8 18.3-4.4 21.8-13.4c1.9-4.8-14.6-8.3-10.2-11.4c10.5-7.4 49.2-11.2 31.4-29l-45.9-47c-5.6-5.3-15-5.3-20.2 0M42.7 79.1c1 0 33.1 4.3 20.7 7.6c-4.7 1.3-26.4-7.6-20.7-7.6m61.5 17.8c0 2.3 17.5 3.5 16.6-.5c-1.4-6.9-14.7-6.3-16.6.5m-74.7 12c4 3.4 10-.8 11.9-5.6c-3.8-5.1-18.1.3-11.9 5.6m72.6-7.2c-4.9 4.5.9 9.2 5.7 6.1c1.2-.9-.2-5.1-5.7-6.1\\\"/></g><linearGradient id=\\\"deviconInkscape3\\\" x1=\\\"33.173\\\" x2=\\\"60.308\\\" y1=\\\"245.076\\\" y2=\\\"217.941\\\" gradientTransform=\\\"matrix(1.003 0 0 -1.003 -.413 276.586)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscape3)\\\" d=\\\"M12.5 57.3C.3 69.3 21.7 66 38.1 72.4l34-59.7c-5.1-5.3-11.7-4.8-16.4 0z\\\" opacity=\\\".505\\\"/><linearGradient id=\\\"deviconInkscape4\\\" x1=\\\"48.612\\\" x2=\\\"81.173\\\" y1=\\\"250.177\\\" y2=\\\"217.616\\\" gradientTransform=\\\"matrix(.994 0 0 -.994 2.709 274.439)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscape4)\\\" d=\\\"m71.1 12.3l17.7 18c1.6 1.6 1.6 5 .7 6l-8.8-7.2L79 39.6l-7.3-3.9l-11.8 7.5L56 27.5l-6.3 13.7l-15.9-.2c-3 0-2.6-3.1.5-6.3c6.2-6.8 18.2-18.5 22-22.5c4-4 10.8-3.8 14.8.1\\\"/><radialGradient id=\\\"deviconInkscape5\\\" cx=\\\"51.136\\\" cy=\\\"13.518\\\" r=\\\"33.212\\\" gradientTransform=\\\"matrix(.827 0 0 -.553 1.123 126.746)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscape5)\\\" d=\\\"M46.8 97.4s1.9 2.9 1.7 4.3c-.4 2.7-6.2 4.1-4.9 6.5c1.3 2.4 5.9 1 9.7 3.5c3.8 2.5 2.8 7.5 5.6 8.8c5.4 2.5 19.8-4.3 19-4.1c-.7.1-14.1 2.9-17.1.5c-3.4-2.8-4.4-4.7-7-6.4c-2.4-1.5-5.7-2.2-6.5-3.4c-.8-1.3 1.6-2.9 1.7-5.3c.2-1.6-2.2-4.4-2.2-4.4\\\" opacity=\\\".217\\\"/><g opacity=\\\".276\\\"><radialGradient id=\\\"deviconInkscape6\\\" cx=\\\"147.452\\\" cy=\\\"14.758\\\" r=\\\"33.212\\\" gradientTransform=\\\"matrix(1.055 0 0 -.706 -97.55 130.348)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscape6)\\\" d=\\\"M46.8 97.4s1.9 2.9 1.7 4.3c-.4 2.7-6.2 4.1-4.9 6.5c1.3 2.4 5.9 1 9.7 3.5c3.8 2.5 2.8 7.5 5.6 8.8c5.4 2.5 19.8-4.3 19-4.1c-23.8.1-19.3-6-28.5-10.1c-1.3-.6-.6-2.2-.4-4.6c.2-1.5-2.2-4.3-2.2-4.3\\\"/></g><radialGradient id=\\\"deviconInkscape7\\\" cx=\\\"-53.737\\\" cy=\\\"94.673\\\" r=\\\"37.174\\\" gradientTransform=\\\"matrix(.526 0 0 -.223 130.969 98.356)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscape7)\\\" d=\\\"M87.2 84.9c21.3-7.8 28.2-8.9 35.2-16C114.2 75.8 97 79.5 83 85.6z\\\" opacity=\\\".453\\\"/><g opacity=\\\".512\\\"><radialGradient id=\\\"deviconInkscape8\\\" cx=\\\"-45.82\\\" cy=\\\"80.197\\\" r=\\\"37.174\\\" gradientTransform=\\\"matrix(.526 0 0 -.223 130.969 97.429)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscape8)\\\" d=\\\"M87.2 83.9c35.1-12.4 29.2-12.4 35.2-16c-11.2 4.3-32 4.7-39.4 16.7z\\\"/></g><linearGradient id=\\\"deviconInkscape9\\\" x1=\\\"-32.429\\\" x2=\\\"-32.293\\\" y1=\\\"73.095\\\" y2=\\\"66.244\\\" gradientTransform=\\\"matrix(.526 0 0 -.526 130.306 130.092)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscape9)\\\" d=\\\"M117.8 93.8c0 .8-2 1.4-4.6 1.4c-2.5 0-4.6-.6-4.6-1.4c0-.8 2-1.4 4.6-1.4c2.6 0 4.6.6 4.6 1.4\\\" opacity=\\\".286\\\"/><g opacity=\\\".621\\\"><linearGradient id=\\\"deviconInkscapea\\\" x1=\\\"112.548\\\" x2=\\\"112.548\\\" y1=\\\"76.804\\\" y2=\\\"71.974\\\" gradientTransform=\\\"matrix(.709 0 0 -1.134 33.501 178.262)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapea)\\\" d=\\\"M119.4 95.4c0 1.7-2.8 3-6.1 3c-3.4 0-6.1-1.4-6.1-3c0-1.7 2.8-3 6.1-3c3.4 0 6.1 1.4 6.1 3\\\"/></g><radialGradient id=\\\"deviconInkscapeb\\\" cx=\\\"-34.115\\\" cy=\\\"13.297\\\" r=\\\"15.297\\\" gradientTransform=\\\"matrix(.526 0 0 -.078 130.969 98.77)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeb)\\\" d=\\\"M104.9 97.1c2.2 2 14.2 3 16.2-.6c-3.9 2.8-12.5 1.8-16.2.6\\\"/><linearGradient id=\\\"deviconInkscapec\\\" x1=\\\"-643.912\\\" x2=\\\"-643.777\\\" y1=\\\"327.836\\\" y2=\\\"320.984\\\" gradientTransform=\\\"matrix(.203 -.103 -.238 -.469 311.261 190.221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapec)\\\" d=\\\"M104.9 103.8c.4.9.2 1.9-.6 2.3c-.8.4-1.8 0-2.2-.8c-.4-.9-.2-1.9.6-2.3c.8-.5 1.8-.1 2.2.8\\\" opacity=\\\".286\\\"/><g opacity=\\\".621\\\"><linearGradient id=\\\"deviconInkscaped\\\" x1=\\\"-341.635\\\" x2=\\\"-341.635\\\" y1=\\\"195.138\\\" y2=\\\"190.308\\\" gradientTransform=\\\"matrix(.273 -.139 -.513 -1.011 295.216 251.45)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscaped)\\\" d=\\\"M105.8 104.2c.7 1.3.3 2.8-.9 3.4c-1.2.6-2.6 0-3.3-1.3c-.7-1.3-.3-2.8.9-3.4c1.2-.6 2.6 0 3.3 1.3\\\"/></g><radialGradient id=\\\"deviconInkscapee\\\" cx=\\\"-645.599\\\" cy=\\\"1737.484\\\" r=\\\"15.297\\\" gradientTransform=\\\"matrix(.203 -.103 -.035 -.069 297.352 162.155)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapee)\\\" d=\\\"M101.9 107.8c1.7 1.4 8.3 1.5 5.8-2.4c.7 3.1-3.8 2.8-5.8 2.4\\\"/><radialGradient id=\\\"deviconInkscapef\\\" cx=\\\"-185.187\\\" cy=\\\"69.66\\\" r=\\\"24.692\\\" gradientTransform=\\\"matrix(.526 0 0 -.214 130.969 105.831)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".33\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapef)\\\" d=\\\"M21 87.3c0-.3 22.4 6.8 26.2 10.7c-3.1-3.1-19.1-10.1-21.5-10.2c-2.4-.1-4.4-.3-4.7-.5\\\"/><g transform=\\\"matrix(.879 -.193 .234 .696 -20.21 36.726)\\\"><linearGradient id=\\\"deviconInkscapeg\\\" x1=\\\"-136.743\\\" x2=\\\"-136.607\\\" y1=\\\"250.438\\\" y2=\\\"243.586\\\" gradientTransform=\\\"matrix(.463 .102 .123 -.366 65.856 208.72)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeg)\\\" d=\\\"M38 105.3c0 .8-2 1.4-4.6 1.4s-4.6-.6-4.6-1.4c0-.8 2-1.4 4.6-1.4s4.6.6 4.6 1.4\\\" opacity=\\\".286\\\"/><g opacity=\\\".621\\\"><linearGradient id=\\\"deviconInkscapeh\\\" x1=\\\"60.343\\\" x2=\\\"60.343\\\" y1=\\\"183.942\\\" y2=\\\"179.112\\\" gradientTransform=\\\"matrix(.623 .219 .166 -.789 -34.636 234.581)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeh)\\\" d=\\\"M39.6 106.9c0 1.7-2.8 3-6.1 3s-6.1-1.4-6.1-3c0-1.7 2.8-3 6.1-3s6.1 1.3 6.1 3\\\"/></g></g><g opacity=\\\".616\\\"><radialGradient id=\\\"deviconInkscapei\\\" cx=\\\"-62.572\\\" cy=\\\"357.021\\\" r=\\\"11.363\\\" gradientTransform=\\\"matrix(.624 -.173 -.065 -.233 95.948 182.007)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapei)\\\" d=\\\"M28.2 106.3s1.2 3.2 4.5 3.4c3.4.2 7.2-4 7.5-5.5c-.6 1.3-3.8 5.2-7.9 5.1c-2.4 0-4.1-3-4.1-3\\\"/></g><radialGradient id=\\\"deviconInkscapej\\\" cx=\\\"193.011\\\" cy=\\\"256.754\\\" r=\\\"59.425\\\" gradientTransform=\\\"matrix(1.712 0 0 -1.685 -261.607 451.789)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"none\\\" stroke=\\\"url(#deviconInkscapej)\\\" stroke-width=\\\".488\\\" d=\\\"M63.4 6.5c-3.4 0-6.7 1.2-9 3.6L9.7 55.9c-4.1 4.1-5.1 6.8-4.8 8.3c.1.8.5 1.4 1.3 2.1c.8.7 2 1.4 3.4 2c2.9 1.2 6.7 2.2 10.5 3.2s7.5 2.1 10.3 3.9c.4.3.8.6 1.1 1.1c.3.5.4 1.1.3 1.7c-.2 1.1-.9 1.7-1.6 2.2c-1.4 1.1-3.3 1.9-5.2 2.8s-3.8 1.9-4.8 2.6c-.5.4-.7.7-.6.7c0 0-.1-.3.1-.1c.6.6 2.5 1.7 4.9 2.6s5.3 1.9 8.2 2.8c2.9 1 5.9 1.9 8.4 2.9s4.6 1.9 5.9 3.3c.7.7 1.2 1.6 1.3 2.4c.1.9-.1 1.7-.5 2.4c-.7 1.4-1.8 2.5-2.7 3.5c-1 1-1.9 2-2.2 2.7c-.2.3-.2.5-.2.7c0 .1 0 .3.3.6c1.3 1.4 4.1 1.6 7.3 2.3c1.6.4 3.3.9 4.7 2.2s2.5 3.1 3 5.7c.2 1.1.8 1.6 2.1 2c1.4.4 3.5.5 5.8.2c4.6-.7 10.1-2.9 13.2-5.5l.2-.2c-.2-.2-.7-.5-1.5-.9c-1-.5-2.1-.9-3-2c-.4-.6-.7-1.4-.6-2.3c.1-.9.6-1.6 1.2-2.2c5.2-5.2 10.2-6.5 14-7.5c1.9-.5 3.5-1 4.7-1.7c1.2-.8 2.2-1.8 3-3.8c.1-.2.1-.3 0-.5c-.1-.3-.4-.7-.9-1.1c-1-.9-2.7-1.8-4.4-2.8c-1.7-.9-3.3-1.8-4.5-2.9c-.6-.6-1.2-1.2-1.3-2.3c-.1-1.1.6-2 1.4-2.6c3-2.1 7.5-3.7 12.4-5.4c4.9-1.7 10.2-3.5 14.4-5.5c4.3-2 7.4-4.3 8.4-6.6c.5-1.2.6-2.3.1-3.9s-1.7-3.4-3.9-5.5L72.7 10.2c-2.6-2.5-6-3.7-9.3-3.7zm49.8 86.9c-2.9.1-5.5 1.4-6.6 3.5c.3.1.6.3 1.1.4c1.5.3 3.6.6 5.6.6s4.1-.1 5.4-.5c.5-.2.8-.3 1-.4c-.3-1.2-.9-2-2.1-2.6c-1.1-.8-2.8-1.1-4.4-1zm-76.5 9.8c-2.3-.2-5.1.7-6.5 1.9c-.7.6-1 1.1-1 1.4c0 .3.1.8 1 1.6c1.5 1.3 3.1 1.1 5 .1c1.6-.9 3-2.5 3.9-4.2c-.6-.4-1.4-.7-2.4-.8zm66.2.7c-.5.6-.7 1.2-.8 1.6c0 .6.1 1 .5 1.4c.8.8 2.5 1.1 4.3.1c0-.2-.1-.5-.4-.9c-.4-.8-1.7-1.7-3.6-2.2z\\\"/><g opacity=\\\".325\\\"><linearGradient id=\\\"deviconInkscapek\\\" x1=\\\"-224.589\\\" x2=\\\"-161.637\\\" y1=\\\"68.903\\\" y2=\\\"52.258\\\" gradientTransform=\\\"matrix(.485 0 0 -.485 149.184 125.791)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapek)\\\" d=\\\"M38.8 78.2c-2.7.8-11.4 4.1-10.2 6.6c1.2 2.4 21.5 3.4 24.6 10.6c1.4 3.1-3.1 5.5-2 8.7c.9 2.5 7.6 8.7 11.9 11.7c3.4 2.3 7.8-1.9 6-5.3c-2.8-5.5 9.9-12.2 15.6-15.3c3.3-1.8-6.9-10.6-6.9-10.6z\\\"/></g><linearGradient id=\\\"deviconInkscapel\\\" x1=\\\"13.153\\\" x2=\\\"9.253\\\" y1=\\\"197.768\\\" y2=\\\"188.832\\\" gradientTransform=\\\"matrix(.88 0 0 -.88 42.035 252.063)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#EEEEEC\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EEEEEC\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapel)\\\" d=\\\"M39.8 80.7c2.4 1.8 7.2.7 10.1 2c6.9 3.1 15.4 6.6 13.8.4L62 84.6v-2.8l-4.1 1s-3.2-2.5-4.6-3.4c-.3-.2-1.9 1.4-1.9 1.4l-.3-1.7c-2-.2-4-.3-5.8-.3c-4.2.1-7 .7-5.5 1.9\\\"/><g opacity=\\\".478\\\"><radialGradient id=\\\"deviconInkscapem\\\" cx=\\\"26.356\\\" cy=\\\"55.589\\\" r=\\\"24.385\\\" gradientTransform=\\\"matrix(.656 0 0 -.834 66.991 147.128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapem)\\\" d=\\\"M85.1 86.3c-.9 3.4 11.5 8.1 10.5 10.5c-2 5.2-13.2 1.7-21.8 12.6c-1.2 1.6 1.7 7.2 1.3 6.5s-3.4-5.3-2.6-7.6c2.4-7.1 26-9.8 21.7-13.2c-2.5-1.9-11.4-7.3-9.1-8.8\\\"/></g><path fill=\\\"#fff\\\" d=\\\"M113 93.4c0 .3-.6.6-1.4.6c-.8 0-1.4-.3-1.4-.6s.6-.6 1.4-.6c.8 0 1.4.3 1.4.6m-9.1 10.4c0 .3-.4.6-.9.6s-.9-.3-.9-.6s.4-.6.9-.6s.9.3.9.6m-68.7-.5c0 .3-.7.6-1.5.6s-1.5-.3-1.5-.6s.7-.6 1.5-.6s1.5.3 1.5.6\\\" opacity=\\\".586\\\"/><linearGradient id=\\\"deviconInkscapen\\\" x1=\\\"-245.694\\\" x2=\\\"-235.88\\\" y1=\\\"88.661\\\" y2=\\\"80.864\\\" gradientTransform=\\\"matrix(.49 0 0 -.49 147.66 125.008)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapen)\\\" d=\\\"M34.3 78.5c-7.8 4.8-19.8 6.5-6.6 9.7c-1.6-3.5 3.4-3.1 6.6-9.7\\\" opacity=\\\".251\\\"/><g opacity=\\\".363\\\"><linearGradient id=\\\"deviconInkscapeo\\\" x1=\\\"-115.448\\\" x2=\\\"-144.875\\\" y1=\\\"55.254\\\" y2=\\\"134.487\\\" gradientTransform=\\\"matrix(.485 0 0 -.485 149.184 125.791)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#729FCF\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#729FCF\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeo)\\\" d=\\\"M61.9 122.2s12-1.1 14.7-4.6c1.6-2-6.4-4.4-4.7-6.4c6.5-7.4 12-7.1 19.6-10.3c7.6-3.1 4.8-4.6 2.3-6c-4.2-2.3-13.6-4.8-10.5-10.4c3.1-5.6 30.4-13.4 30.4-13.4c8.3-2.8 7.2-7.9 3.2-12.2L92.6 34.8s1.2 23-3.7 32.9C82.8 79.8 50.5 93.4 64 94.9c4.8.5 7.1 2.2 9 5.8c4 7.6-11.1 21.5-11.1 21.5\\\"/></g></g>\"\n\t\t},\n\t\t\"inkscape-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M13.5 120.7c1-.1 1.6-.6 1.6-1.4v-10.5c0-1.1 0-1.3-1.6-1.6v-.6h1.7c2 0 2.5-.1 2.5-.1l.1.1s-.7.8-.7 2.7v10c0 .6-.1 1.1-.1 1.1l2.1.2l-.1.6l-5.4.1v-.6zm7.3 0c1-.1 1.6-.6 1.6-1.4v-9.9c0-1.5-.4-2-1.8-2.2v-.6h.7c1.1 0 2.2-.1 2.2-.1s.3.5.8 1.1l8 9.2l.9 1.2v-9.2c0-1 0-1.5-1.8-1.7v-.6h4.2l.1.3s-1.5.4-1.5 2.2v12.2h-.6l-9.4-11c-.3-.3-.6-.7-.8-1.1v10c0 .7-.1 1.2-.1 1.2l2 .1l-.1.6l-4.3.1v-.4zm16.9 0c1-.1 1.6-.6 1.6-1.4v-10.5c0-1.1 0-1.3-1.6-1.6v-.6h1.7c2 0 2.5-.1 2.5-.1l.1.1s-.7.8-.7 2.7v3.9h.4s.4-.2.7-.6l4.3-4.3c.4-.4.4-1-.6-1.1v-.6h4.1l.1.3s-1.2.3-2.8 1.9l-4.2 4.1v.2l5.3 6.1c1 1.1 1.2 1.2 1.9 1.3h.2l-.1.7h-3.2l-.1-.1s-.2-.7-1.7-2.3l-4.1-4.8h-.4v5.2c0 .6-.1 1.1-.1 1.1l2 .2l-.1.6l-5.3.1v-.5zm14.4-3.3h.7c0 2.7 1.7 3.4 3.2 3.4c1.4 0 2.8-.6 2.8-2.3c0-3.8-6.9-3.8-6.9-8.2c0-2.2 1.6-3.8 4.9-3.8c1.6 0 3.1.4 3.6.4l-.7 3.4H59c.2-1.6-.6-3-2.5-3c-1.5 0-2.7.7-2.7 2.3c0 3.9 6.9 3.5 6.9 8.2c0 2.6-2.3 3.9-4.9 3.9c-1.9 0-4.2-.7-4.2-2.3c0-.4.1-.7.5-2m18.7-11c1.6 0 3.6.4 4.8.5l-.7 3.3h-.7c0-2.3-1.9-3-3.7-3c-3.4 0-5.6 2.7-5.6 6.3c0 4 2.8 6.6 6.4 6.6c2.8 0 4.4-1.6 4.4-1.6l.3.5s-1.7 2.6-5.5 2.6c-3.9 0-7.7-2.7-7.7-7.4c0-4.5 3.3-7.8 8-7.8m5.6 14.3c.9-.1 1.3-.5 1.5-1l5.2-13l.9-.2l4.9 12.5c.6 1.5 1 1.6 1.7 1.7l-.1.6h-.9c-.8 0-3.3.1-3.3.1v-.7c.6 0 1.2-.2.9-.9l-1.3-3.5h-5.3l-.3.2l-1.5 4l1.9.3l-.1.6h-4.1v-.7zm6.7-11.7l-2.4 6.4h4.8l-1.9-5c-.2-.5-.4-1.1-.5-1.4m8.5 11.7c1-.1 1.6-.6 1.6-1.4v-10.5c0-1.1-.1-1.3-1.8-1.6v-.6h5.5c2.5 0 5.4.8 5.4 4c0 3.5-3.3 4.7-5.7 4.5v-.6c2.6-.1 3.5-1.7 3.5-3.4c0-2.6-2.1-3.7-4.4-3.7h-.3l-.2.2v11.6c0 .6-.1 1.1-.1 1.1l2.1.2l-.1.6l-5.4.1v-.5zm12.4 0c1-.1 1.6-.6 1.6-1.4v-10.5c0-1.1-.1-1.3-1.8-1.6v-.6h9.1c.9 0 1.6-.1 1.6-.1l-.7 3.7h-.8c.1-2.3-.6-2.7-2.4-2.7h-2.9l-.2.2v5.7h4.1l.2-1.3l.8-.1v3.9h-1v-1.6h-3.8l-.2.2v4.7c0 .7-.1 1.2-.1 1.2h3.5c1.9 0 2.2-.4 3.3-2.7h.7l-.8 3.6h-6.9c-1.1 0-3.2.1-3.2.1v-.7z\\\"/><g transform=\\\"translate(.389 -1.445)scale(.994)\\\"><g opacity=\\\".783\\\"><path d=\\\"m55.1 8.288l-37.2 38.1c-14.1 14.1 9.1 12.9 17.5 18.2c3.9 2.5-12.5 5.8-9.1 9.1l22.8 9.7c3.2 3.3-6.6 6.9-3.3 10.2c3.2 3.3 10.7.2 12.1 7.8c1 5.6 13.9 2.8 19.7-2l-3-6.4c8.1-8.2 15.3-3.7 18.3-11.3c1.6-4.1-12.3-6.9-8.6-9.6c8.8-6.2 41.3-9.4 26.3-24.4l-38.5-39.4c-4.8-4.5-12.6-4.5-17 0m42.6 73.4c0 1.9 14.7 3 13.9-.5c-1.1-5.7-12.2-5.3-13.9.5m-62.7 10c3.3 2.9 8.4-.6 10-4.7c-3.2-4.2-15.2.3-10 4.7m60.9-6c-4.2 3.8.7 7.8 4.8 5.1c1.1-.7-.1-4.2-4.8-5.1\\\"/><path d=\\\"m55.1 9.188l-37.2 38.1c-14.1 14.1 9.1 12.9 17.5 18.2c3.9 2.5-12.5 5.8-9.1 9.1l22.8 9.7c3.2 3.3-6.6 6.9-3.3 10.2c3.2 3.3 10.7.2 12.1 7.8c1 5.6 13.9 2.8 19.7-2l-3-6.4c8.1-8.2 15.3-3.7 18.3-11.3c1.6-4.1-12.3-6.9-8.6-9.6c8.8-6.2 41.3-9.4 26.3-24.4l-38.5-39.4c-4.8-4.5-12.6-4.5-17 0m42.6 73.4c0 1.9 14.7 3 13.9-.5c-1.1-5.8-12.2-5.3-13.9.5m-62.7 10c3.3 2.9 8.4-.6 10-4.7c-3.2-4.3-15.2.3-10 4.7m60.9-6.1c-4.2 3.8.7 7.8 4.8 5.1c1.1-.6-.1-4.2-4.8-5.1\\\" opacity=\\\".576\\\"/></g><path d=\\\"M55.1 7.4L17.9 45.5C3.8 59.6 27 58.4 35.4 63.7c3.9 2.5-12.5 5.8-9.1 9.1l22.8 9.7c3.2 3.3-6.6 6.9-3.3 10.2c3.2 3.3 10.7.2 12.1 7.8c1 5.6 13.9 2.8 19.7-2l-3-6.4c8.1-8.2 15.3-3.7 18.3-11.3c1.6-4.1-12.3-6.9-8.6-9.6c8.8-6.2 41.3-9.4 26.3-24.4L72.1 7.4c-4.8-4.5-12.6-4.5-17 0m42.6 73.4c0 1.9 14.7 3 13.9-.5c-1.1-5.7-12.2-5.3-13.9.5M35 90.8c3.3 2.9 8.4-.6 10-4.7c-3.2-4.2-15.2.3-10 4.7m60.9-6c-4.2 3.8.7 7.8 4.8 5.1c1.1-.7-.1-4.2-4.8-5.1\\\"/><path fill=\\\"none\\\" d=\\\"M55.1 7.4L17.9 45.5C3.8 59.6 27 58.4 35.4 63.7c3.9 2.5-12.5 5.8-9.1 9.1l22.8 9.7c3.2 3.3-6.6 6.9-3.3 10.2c3.2 3.3 10.7.2 12.1 7.8c1 5.6 13.9 2.8 19.7-2l-3-6.4c8.1-8.2 15.3-3.7 18.3-11.3c1.6-4.1-12.3-6.9-8.6-9.6c8.8-6.2 41.3-9.4 26.3-24.4L72.1 7.4c-4.8-4.5-12.6-4.5-17 0m42.6 73.4c0 1.9 14.7 3 13.9-.5c-1.1-5.7-12.2-5.3-13.9.5M35 90.8c3.3 2.9 8.4-.6 10-4.7c-3.2-4.2-15.2.3-10 4.7m60.9-6c-4.2 3.8.7 7.8 4.8 5.1c1.1-.7-.1-4.2-4.8-5.1\\\"/><defs><path id=\\\"deviconInkscapeWordmark0\\\" d=\\\"M55.2 7.9L18.3 45.6c-13.9 13.9 9 12.8 17.3 18.1c3.8 2.5-12.3 5.7-9 9C29.9 76 46 79 49.3 82.2L46 92.3c3.1 3.3 10.6.2 12 7.7c1 5.5 13.8 2.8 19.5-2c3.6-3-6.2-3-2.9-6.3c8-8.1 15.2-3.7 18.1-11.2c1.6-4-12.2-6.9-8.5-9.5c8.8-6.2 40.9-9.3 26.1-24.1L72 7.9c-4.7-4.5-12.5-4.5-16.8 0m-8.9 57.8c.8 0 27.5 3.6 17.2 6.3c-3.9 1.1-21.9-6.3-17.2-6.3m51.1 14.8c0 1.9 14.6 2.9 13.8-.4c-1.2-5.7-12.2-5.3-13.8.4m-62.1 10c3.3 2.9 8.3-.6 9.9-4.6c-3.2-4.3-15.1.2-9.9 4.6m60.3-6c-4.1 3.8.7 7.7 4.7 5.1c1.1-.8 0-4.2-4.7-5.1\\\"/></defs><clipPath id=\\\"deviconInkscapeWordmark1\\\"><use href=\\\"#deviconInkscapeWordmark0\\\"/></clipPath><g clip-path=\\\"url(#deviconInkscapeWordmark1)\\\" transform=\\\"translate(.605 .604)scale(.991)\\\"><linearGradient id=\\\"deviconInkscapeWordmark2\\\" x1=\\\"91.626\\\" x2=\\\"71.669\\\" y1=\\\"-56.37\\\" y2=\\\"-74.414\\\" gradientTransform=\\\"matrix(.985 0 0 -.985 6.128 -23.064)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#C0CDF9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#07092D\\\" stop-opacity=\\\".288\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmark2)\\\" d=\\\"M55.2 7.9L18.3 45.6c-13.9 13.9 9 12.8 17.3 18.1c3.8 2.5-12.3 5.7-9 9C29.9 76 46 79 49.3 82.2L46 92.3c3.1 3.3 10.6.2 12 7.7c1 5.5 13.8 2.8 19.5-2c3.6-3-6.2-3-2.9-6.3c8-8.1 15.2-3.7 18.1-11.2c1.6-4-12.2-6.9-8.5-9.5c8.8-6.2 40.9-9.3 26.1-24.1L72 7.9c-4.7-4.5-12.5-4.5-16.8 0m-8.9 57.8c.8 0 27.5 3.6 17.2 6.3c-3.9 1.1-21.9-6.3-17.2-6.3m51.1 14.8c0 1.9 14.6 2.9 13.8-.4c-1.2-5.7-12.2-5.3-13.8.4m-62.1 10c3.3 2.9 8.3-.6 9.9-4.6c-3.2-4.3-15.1.2-9.9 4.6m60.3-6c-4.1 3.8.7 7.7 4.7 5.1c1.1-.8 0-4.2-4.7-5.1\\\"/></g><linearGradient id=\\\"deviconInkscapeWordmark3\\\" x1=\\\"38.411\\\" x2=\\\"60.967\\\" y1=\\\"-47.051\\\" y2=\\\"-69.606\\\" gradientTransform=\\\"matrix(1.003 0 0 -1.003 -.413 -21.676)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmark3)\\\" d=\\\"M21.2 47.6c-10.1 10 7.6 7.2 21.3 12.6l28.2-49.6c-4.3-4.4-9.7-4-13.7 0z\\\" opacity=\\\".505\\\"/><linearGradient id=\\\"deviconInkscapeWordmark4\\\" x1=\\\"50.814\\\" x2=\\\"77.881\\\" y1=\\\"-44.11\\\" y2=\\\"-71.177\\\" gradientTransform=\\\"matrix(.994 0 0 -.994 2.709 -22.463)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmark4)\\\" d=\\\"m69.9 10.1l14.7 15c1.4 1.4 1.4 4.2.5 5l-7.3-6l-1.4 8.8l-6-3.2l-9.8 6.2l-3.2-13.1L52 34.1L38.9 34c-2.5 0-2.2-2.6.5-5.2c5.1-5.7 15.2-15.3 18.3-18.7c3.2-3.3 8.9-3.2 12.2 0\\\"/><radialGradient id=\\\"deviconInkscapeWordmark5\\\" cx=\\\"55.343\\\" cy=\\\"-368.06\\\" r=\\\"27.608\\\" gradientTransform=\\\"matrix(.827 0 0 -.553 1.123 -104.537)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmark5)\\\" d=\\\"M49.7 80.9s1.6 2.4 1.4 3.6c-.3 2.3-5.2 3.4-4.1 5.4c1.1 2 4.9.9 8.1 2.9c3.2 2.1 2.3 6.3 4.7 7.3c4.5 2.1 16.4-3.6 15.8-3.4c-.6.1-11.7 2.4-14.2.4c-2.9-2.3-3.7-3.9-5.8-5.3c-2-1.3-4.8-1.8-5.4-2.9c-.6-1.1 1.3-2.4 1.4-4.4c.1-1.2-1.9-3.6-1.9-3.6\\\" opacity=\\\".217\\\"/><g opacity=\\\".276\\\"><radialGradient id=\\\"deviconInkscapeWordmark6\\\" cx=\\\"148.42\\\" cy=\\\"-316.346\\\" r=\\\"27.608\\\" gradientTransform=\\\"matrix(1.055 0 0 -.706 -97.55 -123.665)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmark6)\\\" d=\\\"M49.7 80.9s1.6 2.4 1.4 3.6c-.3 2.3-5.2 3.4-4.1 5.4c1.1 2 4.9.9 8.1 2.9c3.2 2.1 2.3 6.3 4.7 7.3c4.5 2.1 16.4-3.6 15.8-3.4c-19.8.1-16.1-5-23.7-8.4c-1.1-.5-.5-1.8-.3-3.8c.1-1.2-1.9-3.6-1.9-3.6\\\"/></g><radialGradient id=\\\"deviconInkscapeWordmark7\\\" cx=\\\"-66.136\\\" cy=\\\"-663.625\\\" r=\\\"30.901\\\" gradientTransform=\\\"matrix(.526 0 0 -.223 130.969 -83.733)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmark7)\\\" d=\\\"M83.2 70.5c17.7-6.5 23.4-7.4 29.3-13.3c-6.7 5.8-21.1 8.8-32.7 13.9z\\\" opacity=\\\".453\\\"/><g opacity=\\\".512\\\"><radialGradient id=\\\"deviconInkscapeWordmark8\\\" cx=\\\"-59.555\\\" cy=\\\"-676.361\\\" r=\\\"30.901\\\" gradientTransform=\\\"matrix(.526 0 0 -.223 130.969 -84.659)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmark8)\\\" d=\\\"M83.2 69.7c29.2-10.3 24.3-10.3 29.3-13.3c-9.3 3.6-26.6 3.9-32.7 13.9z\\\"/></g><linearGradient id=\\\"deviconInkscapeWordmark9\\\" x1=\\\"-48.211\\\" x2=\\\"-48.099\\\" y1=\\\"-329.198\\\" y2=\\\"-334.893\\\" gradientTransform=\\\"matrix(.526 0 0 -.526 130.306 -97.198)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmark9)\\\" d=\\\"M108.8 77.9c0 .6-1.7 1.2-3.8 1.2c-2.1 0-3.8-.5-3.8-1.2c0-.6 1.7-1.2 3.8-1.2c2.1.1 3.8.6 3.8 1.2\\\" opacity=\\\".286\\\"/><g opacity=\\\".621\\\"><linearGradient id=\\\"deviconInkscapeWordmarka\\\" x1=\\\"100.816\\\" x2=\\\"100.816\\\" y1=\\\"-189.809\\\" y2=\\\"-193.824\\\" gradientTransform=\\\"matrix(.709 0 0 -1.134 33.501 -139.476)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarka)\\\" d=\\\"M110.1 79.3c0 1.4-2.3 2.5-5.1 2.5s-5.1-1.1-5.1-2.5s2.3-2.5 5.1-2.5s5.1 1.1 5.1 2.5\\\"/></g><radialGradient id=\\\"deviconInkscapeWordmarkb\\\" cx=\\\"-49.825\\\" cy=\\\"-1837.368\\\" r=\\\"12.716\\\" gradientTransform=\\\"matrix(.526 0 0 -.078 130.969 -61.714)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmarkb)\\\" d=\\\"M98 80.7c1.8 1.7 11.8 2.5 13.5-.5c-3.2 2.3-10.4 1.5-13.5.5\\\"/><linearGradient id=\\\"deviconInkscapeWordmarkc\\\" x1=\\\"-930.712\\\" x2=\\\"-930.6\\\" y1=\\\"-38.355\\\" y2=\\\"-44.05\\\" gradientTransform=\\\"matrix(.203 -.103 -.238 -.469 275.813 -28.596)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarkc)\\\" d=\\\"M98 86.2c.4.7.1 1.6-.5 1.9c-.7.3-1.5 0-1.9-.7c-.4-.7-.1-1.6.5-1.9s1.6 0 1.9.7\\\" opacity=\\\".286\\\"/><g opacity=\\\".621\\\"><linearGradient id=\\\"deviconInkscapeWordmarkd\\\" x1=\\\"-554.563\\\" x2=\\\"-554.563\\\" y1=\\\"-54.844\\\" y2=\\\"-58.859\\\" gradientTransform=\\\"matrix(.273 -.139 -.513 -1.011 218.865 -48.039)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarkd)\\\" d=\\\"M98.8 86.6c.6 1.1.2 2.4-.8 2.9s-2.2 0-2.7-1.1c-.6-1.2-.3-2.4.7-2.9s2.2 0 2.8 1.1\\\"/></g><radialGradient id=\\\"deviconInkscapeWordmarke\\\" cx=\\\"-932.326\\\" cy=\\\"131.174\\\" r=\\\"12.716\\\" gradientTransform=\\\"matrix(.203 -.103 -.035 -.069 292.115 2.923)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmarke)\\\" d=\\\"M95.5 89.6c1.4 1.1 6.9 1.3 4.8-2c.6 2.6-3.1 2.3-4.8 2\\\"/><radialGradient id=\\\"deviconInkscapeWordmarkf\\\" cx=\\\"-175.404\\\" cy=\\\"-702.254\\\" r=\\\"20.526\\\" gradientTransform=\\\"matrix(.526 0 0 -.214 130.969 -74.982)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".33\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmarkf)\\\" d=\\\"M28.3 72.5c0-.3 18.6 5.7 21.7 8.8c-2.6-2.6-15.8-8.4-17.9-8.5c-1.9 0-3.6-.1-3.8-.3\\\"/><g transform=\\\"matrix(.879 -.193 .234 .696 -20.21 36.726)\\\"><linearGradient id=\\\"deviconInkscapeWordmarkg\\\" x1=\\\"-46.833\\\" x2=\\\"-46.72\\\" y1=\\\"-423.586\\\" y2=\\\"-429.281\\\" gradientTransform=\\\"matrix(.463 .102 .123 -.366 118.863 -68.93)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarkg)\\\" d=\\\"M48.9 83.3c0 .6-1.7 1.2-3.8 1.2c-2.1 0-3.8-.5-3.8-1.2c0-.6 1.7-1.2 3.8-1.2s3.8.6 3.8 1.2\\\" opacity=\\\".286\\\"/><g opacity=\\\".621\\\"><linearGradient id=\\\"deviconInkscapeWordmarkh\\\" x1=\\\"107.319\\\" x2=\\\"107.319\\\" y1=\\\"-242.262\\\" y2=\\\"-246.277\\\" gradientTransform=\\\"matrix(.623 .219 .166 -.789 18.372 -133.516)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarkh)\\\" d=\\\"M50.2 84.7c0 1.4-2.3 2.5-5.1 2.5S40 86.1 40 84.7s2.3-2.5 5.1-2.5s5.1 1.1 5.1 2.5\\\"/></g></g><g opacity=\\\".616\\\"><radialGradient id=\\\"deviconInkscapeWordmarki\\\" cx=\\\"-108.767\\\" cy=\\\"-316.224\\\" r=\\\"9.445\\\" gradientTransform=\\\"matrix(.624 -.173 -.065 -.233 86.317 -1.652)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmarki)\\\" d=\\\"M34.2 88.3s1 2.7 3.8 2.8c2.8.1 6-3.3 6.2-4.6c-.5 1.1-3.1 4.3-6.6 4.3c-1.9 0-3.4-2.5-3.4-2.5\\\"/></g><radialGradient id=\\\"deviconInkscapeWordmarkj\\\" cx=\\\"192.543\\\" cy=\\\"21.454\\\" r=\\\"49.468\\\" gradientTransform=\\\"matrix(1.712 0 0 -1.685 -261.607 52.03)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"none\\\" stroke=\\\"url(#deviconInkscapeWordmarkj)\\\" stroke-width=\\\".488\\\" d=\\\"M63.5 5.4c-2.8 0-5.5 1-7.5 3l-37.2 38c-3.4 3.4-4.2 5.6-4 6.9c.1.6.4 1.2 1.1 1.7c.7.6 1.7 1.1 2.8 1.6c2.4 1 5.6 1.8 8.8 2.7s6.3 1.8 8.6 3.3c.4.2.7.5.9.9c.2.4.3 1 .2 1.4c-.2.9-.8 1.4-1.3 1.8c-1.1.9-2.7 1.6-4.3 2.4s-3.2 1.6-4 2.2c-.4.3-.5.6-.5.6s-.1-.2.1-.1c.5.5 2.1 1.4 4 2.2s4.4 1.6 6.9 2.4c2.4.8 4.9 1.6 7 2.4c2.1.8 3.8 1.6 4.9 2.7c.6.6 1 1.3 1 2c.1.7-.1 1.4-.4 2c-.6 1.2-1.5 2-2.3 2.9c-.8.9-1.6 1.7-1.8 2.2c-.1.3-.2.5-.1.6s0 .2.3.5c1.1 1.1 3.4 1.3 6.1 1.9c1.3.3 2.7.8 3.9 1.8c1.2 1 2.1 2.6 2.5 4.7c.2.9.6 1.3 1.8 1.7c1.1.4 2.9.4 4.8.1c3.8-.6 8.4-2.4 11-4.6c.2-.1.1-.1.2-.2c-.2-.1-.6-.4-1.3-.7c-.8-.4-1.8-.8-2.5-1.7c-.4-.5-.6-1.2-.5-1.9c.1-.7.5-1.3 1-1.8c4.3-4.3 8.5-5.4 11.7-6.2c1.6-.4 2.9-.8 3.9-1.4c1-.6 1.8-1.5 2.5-3.2c.1-.2.1-.2 0-.5s-.4-.6-.8-.9c-.8-.7-2.3-1.5-3.7-2.3c-1.4-.8-2.8-1.5-3.7-2.4c-.5-.5-1-1-1.1-1.9c-.1-.9.5-1.7 1.2-2.1c2.5-1.7 6.2-3.1 10.3-4.5c4.1-1.4 8.4-2.9 12-4.5c3.6-1.7 6.2-3.6 7-5.5c.4-1 .5-1.9.1-3.2c-.4-1.3-1.4-2.8-3.2-4.6L71.2 8.4c-2.1-2-5-3-7.7-3zm41.4 72.2c-2.4.1-4.6 1.2-5.5 2.9c.3.1.5.2.9.3c1.2.3 3 .5 4.7.5c1.7 0 3.4-.1 4.5-.4c.5-.1.7-.3.8-.3c-.2-1-.8-1.7-1.7-2.2c-1-.6-2.3-.9-3.7-.8zm-63.6 8.1c-1.9-.1-4.3.6-5.4 1.6c-.6.5-.8.9-.8 1.2c0 .3.1.7.8 1.3c1.2 1.1 2.6.9 4.2.1c1.3-.7 2.5-2.1 3.3-3.5c-.6-.3-1.2-.6-2.1-.7zm55 .6c-.4.5-.6 1-.6 1.3c0 .5.1.8.5 1.2c.7.6 2.1.9 3.6.1c0-.2-.1-.4-.3-.8c-.5-.6-1.6-1.3-3.2-1.8z\\\"/><g opacity=\\\".325\\\"><linearGradient id=\\\"deviconInkscapeWordmarkk\\\" x1=\\\"-216.308\\\" x2=\\\"-163.979\\\" y1=\\\"-354.586\\\" y2=\\\"-368.423\\\" gradientTransform=\\\"matrix(.485 0 0 -.485 149.184 -95.38)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarkk)\\\" d=\\\"M43.1 65c-2.2.7-9.5 3.4-8.5 5.5c1 2 17.9 2.8 20.5 8.8c1.1 2.6-2.6 4.6-1.7 7.3c.7 2.1 6.3 7.3 9.9 9.7c2.8 1.9 6.5-1.6 5-4.4c-2.4-4.6 8.1-10.2 12.9-12.8c2.8-1.5-5.7-8.8-5.7-8.8z\\\"/></g><linearGradient id=\\\"deviconInkscapeWordmarkl\\\" x1=\\\"15.146\\\" x2=\\\"11.904\\\" y1=\\\"-105.339\\\" y2=\\\"-112.767\\\" gradientTransform=\\\"matrix(.88 0 0 -.88 42.035 -27.857)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#EEEEEC\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EEEEEC\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarkl)\\\" d=\\\"M43.9 67c2 1.5 6 .6 8.4 1.7c5.7 2.6 12.8 5.5 11.5.4l-1.5 1.2V68l-3.4.8s-2.6-2.1-3.8-2.8c-.3-.1-1.5 1.2-1.5 1.2l-.2-1.4c-1.7-.2-3.3-.3-4.8-.2c-3.6-.1-6 .5-4.7 1.4\\\"/><g opacity=\\\".478\\\"><radialGradient id=\\\"deviconInkscapeWordmarkm\\\" cx=\\\"21.139\\\" cy=\\\"-251.475\\\" r=\\\"20.27\\\" gradientTransform=\\\"matrix(.656 0 0 -.834 66.991 -125.902)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconInkscapeWordmarkm)\\\" d=\\\"M81.5 71.7c-.8 2.9 9.5 6.7 8.8 8.7c-1.7 4.3-11 1.4-18.1 10.5c-1 1.3 1.4 5.9 1.1 5.4s-2.8-4.4-2.2-6.3c2-5.9 21.6-8.1 18-11c-2.1-1.6-9.5-6.1-7.6-7.3\\\"/></g><path fill=\\\"#fff\\\" d=\\\"M104.7 77.6c0 .3-.5.5-1.1.5c-.6 0-1.1-.2-1.1-.5s.5-.5 1.1-.5c.6 0 1.1.2 1.1.5m-7.5 8.6c0 .3-.3.5-.7.5c-.4 0-.7-.2-.7-.5s.3-.5.7-.5c.3 0 .7.3.7.5m-57.1-.4c0 .3-.6.5-1.3.5c-.7 0-1.3-.2-1.3-.5s.6-.5 1.3-.5c.7 0 1.3.2 1.3.5\\\" opacity=\\\".586\\\"/><linearGradient id=\\\"deviconInkscapeWordmarkn\\\" x1=\\\"-233.056\\\" x2=\\\"-224.899\\\" y1=\\\"-336.04\\\" y2=\\\"-342.521\\\" gradientTransform=\\\"matrix(.49 0 0 -.49 147.66 -96.827)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarkn)\\\" d=\\\"M39.3 65.2c-6.5 4-16.5 5.4-5.5 8.1c-1.3-2.9 2.9-2.6 5.5-8.1\\\" opacity=\\\".251\\\"/><g opacity=\\\".363\\\"><linearGradient id=\\\"deviconInkscapeWordmarko\\\" x1=\\\"-125.584\\\" x2=\\\"-150.045\\\" y1=\\\"-365.933\\\" y2=\\\"-300.07\\\" gradientTransform=\\\"matrix(.485 0 0 -.485 149.184 -95.38)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#729FCF\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#729FCF\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconInkscapeWordmarko)\\\" d=\\\"M62.3 101.6s10-.9 12.3-3.8c1.3-1.7-5.4-3.6-3.9-5.3c5.4-6.2 10-5.9 16.3-8.5s4-3.9 1.9-5c-3.5-2-11.3-4-8.7-8.7c2.6-4.7 25.3-11.1 25.3-11.1c6.9-2.3 6-6.6 2.6-10.1L87.8 28.9s1 19.1-3.1 27.3c-5.1 10.1-32 21.4-20.7 22.7c4 .4 5.9 1.8 7.5 4.8c3.3 6.3-9.2 17.9-9.2 17.9\\\"/></g></g>\"\n\t\t},\n\t\t\"insomnia\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconInsomnia0\\\" x1=\\\"16.181\\\" x2=\\\"16.181\\\" y1=\\\"28.39\\\" y2=\\\"5.61\\\" gradientTransform=\\\"matrix(4 0 0 4 0 -4)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#7400E1\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4000BF\\\"/></linearGradient></defs><path fill=\\\"#fff\\\" d=\\\"M64 124.746c33.549 0 60.746-27.197 60.746-60.746c0-33.549-27.197-60.746-60.746-60.746C30.45 3.254 3.254 30.451 3.254 64c0 33.55 27.197 60.746 60.746 60.746\\\"/><path fill=\\\"#4000bf\\\" d=\\\"M64 0C28.654 0 0 28.654 0 64c0 35.346 28.654 64 64 64c35.346 0 64-28.654 64-64c0-35.346-28.654-64-64-64m0 6.509c31.752 0 57.492 25.74 57.492 57.491c0 31.752-25.74 57.492-57.492 57.492S6.508 95.752 6.508 64S32.248 6.509 64 6.509\\\"/><path fill=\\\"url(#deviconInsomnia0)\\\" d=\\\"M64.723 18.44c25.162 0 45.56 20.398 45.56 45.56c0 25.162-20.398 45.56-45.56 45.56c-25.161 0-45.559-20.398-45.559-45.56a45.41 45.41 0 0 1 3.427-17.366c3.224 4.391 8.425 7.242 14.29 7.242c9.786 0 17.718-7.932 17.718-17.718c0-5.866-2.85-11.066-7.242-14.29a45.426 45.426 0 0 1 17.366-3.427z\\\"/>\"\n\t\t},\n\t\t\"insomnia-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconInsomniaWordmark0\\\" x1=\\\"16.181\\\" x2=\\\"16.181\\\" y1=\\\"28.39\\\" y2=\\\"5.61\\\" gradientTransform=\\\"translate(0 45.903)scale(1.06453)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#7400E1\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4000BF\\\"/></linearGradient></defs><path fill=\\\"#fff\\\" d=\\\"M17.033 80.167c8.928 0 16.166-7.238 16.166-16.167c0-8.928-7.238-16.166-16.166-16.166C8.104 47.834.866 55.072.866 64c0 8.929 7.238 16.167 16.167 16.167\\\"/><path fill=\\\"#4000bf\\\" d=\\\"M17.033 46.967C7.626 46.967 0 54.593 0 64s7.626 17.033 17.033 17.033S34.065 73.407 34.065 64S26.44 46.967 17.033 46.967m0 1.733c8.45 0 15.3 6.85 15.3 15.3c0 8.45-6.85 15.3-15.3 15.3c-8.45 0-15.3-6.85-15.3-15.3c0-8.45 6.85-15.3 15.3-15.3\\\"/><path fill=\\\"url(#deviconInsomniaWordmark0)\\\" d=\\\"M17.225 51.875c6.697 0 12.125 5.429 12.125 12.125s-5.428 12.125-12.125 12.125C10.53 76.125 5.1 70.696 5.1 64c0-1.637.325-3.197.912-4.622a4.715 4.715 0 1 0 6.591-6.591a12.09 12.09 0 0 1 4.622-.912\\\"/><path fill=\\\"#fff\\\" d=\\\"M50.473 56.451h-2.102v13.936h2.102zm4.934 7.73c0-1.667 1.02-2.62 2.436-2.62c1.38 0 2.218.906 2.218 2.423v6.403h2.034V63.74c0-2.586-1.422-3.94-3.558-3.94c-1.572 0-2.6.728-3.083 1.838h-.13v-1.702h-1.952v10.452h2.035zm17.249-1.694c-.422-1.626-1.694-2.688-3.953-2.688c-2.362 0-4.035 1.246-4.035 3.096c0 1.484.898 2.47 2.857 2.906l1.77.388c1.007.224 1.476.673 1.476 1.327c0 .81-.864 1.442-2.198 1.442c-1.218 0-2-.524-2.245-1.551l-1.967.3c.34 1.85 1.878 2.891 4.226 2.891c2.524 0 4.273-1.34 4.273-3.232c0-1.477-.939-2.388-2.858-2.83l-1.66-.382c-1.15-.272-1.647-.66-1.64-1.367c-.006-.803.864-1.375 2.021-1.375c1.266 0 1.85.7 2.089 1.402zm6.844 8.111c2.946 0 4.872-2.157 4.872-5.389c0-3.253-1.926-5.41-4.872-5.41c-2.947 0-4.872 2.157-4.872 5.41c0 3.232 1.925 5.39 4.872 5.39zm.006-1.708c-1.926 0-2.824-1.68-2.824-3.688c0-2 .898-3.702 2.824-3.702c1.912 0 2.81 1.702 2.81 3.702c0 2.007-.898 3.688-2.81 3.688m7.136 1.497h2.035v-6.444c0-1.408.986-2.388 2.143-2.388c1.13 0 1.912.748 1.912 1.885v6.947h2.028v-6.661c0-1.26.769-2.171 2.096-2.171c1.075 0 1.96.599 1.96 2.014v6.818h2.034V63.38c0-2.389-1.334-3.58-3.226-3.58c-1.503 0-2.633.722-3.136 1.838h-.11c-.455-1.144-1.415-1.838-2.81-1.838c-1.38 0-2.408.688-2.844 1.838h-.13v-1.702h-1.952zm18.97-6.205c0-1.668 1.02-2.62 2.435-2.62c1.382 0 2.219.905 2.219 2.422v6.403h2.034V63.74c0-2.586-1.422-3.94-3.559-3.94c-1.572 0-2.599.728-3.082 1.838h-.13v-1.702h-1.952v10.452h2.034zm9.416 6.205h2.036V59.935h-2.036zm1.028-12.064c.701 0 1.287-.545 1.287-1.211c0-.667-.586-1.218-1.287-1.218c-.707 0-1.286.55-1.286 1.218c0 .666.579 1.21 1.286 1.21zm6.786 12.296c1.729 0 2.702-.878 3.09-1.66h.081v1.428H128v-6.94c0-3.042-2.395-3.648-4.056-3.648c-1.892 0-3.633.762-4.314 2.668l1.912.435c.3-.742 1.062-1.456 2.43-1.456c1.313 0 1.987.687 1.987 1.871v.048c0 .742-.762.728-2.641.946c-1.98.231-4.008.748-4.008 3.123c0 2.055 1.545 3.185 3.532 3.185m.442-1.634c-1.15 0-1.98-.517-1.98-1.524c0-1.088.966-1.476 2.144-1.633c.66-.088 2.225-.265 2.517-.558v1.347c0 1.239-.986 2.368-2.681 2.368\\\"/>\"\n\t\t},\n\t\t\"intellij\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconIntellij0\\\" x1=\\\"11.16\\\" x2=\\\"58.94\\\" y1=\\\"59.21\\\" y2=\\\"56.78\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".09\\\" stop-color=\\\"#fc801d\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#b07f61\\\"/><stop offset=\\\".41\\\" stop-color=\\\"#577db3\\\"/><stop offset=\\\".53\\\" stop-color=\\\"#1e7ce6\\\"/><stop offset=\\\".59\\\" stop-color=\\\"#087cfa\\\"/></linearGradient><linearGradient id=\\\"deviconIntellij1\\\" x1=\\\"89.05\\\" x2=\\\"73.12\\\" y1=\\\"54.12\\\" y2=\\\"6.52\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\".08\\\" stop-color=\\\"#cb3979\\\"/><stop offset=\\\".16\\\" stop-color=\\\"#9e4997\\\"/><stop offset=\\\".25\\\" stop-color=\\\"#7557b2\\\"/><stop offset=\\\".34\\\" stop-color=\\\"#5362c8\\\"/><stop offset=\\\".44\\\" stop-color=\\\"#386cda\\\"/><stop offset=\\\".54\\\" stop-color=\\\"#2373e8\\\"/><stop offset=\\\".66\\\" stop-color=\\\"#1478f2\\\"/><stop offset=\\\".79\\\" stop-color=\\\"#0b7bf8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#087cfa\\\"/></linearGradient><linearGradient id=\\\"deviconIntellij2\\\" x1=\\\"18.72\\\" x2=\\\"78.8\\\" y1=\\\"26.61\\\" y2=\\\"125.99\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\".08\\\" stop-color=\\\"#fe295f\\\"/><stop offset=\\\".21\\\" stop-color=\\\"#ff2d76\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#ff318c\\\"/><stop offset=\\\".38\\\" stop-color=\\\"#ea3896\\\"/><stop offset=\\\".55\\\" stop-color=\\\"#b248ae\\\"/><stop offset=\\\".79\\\" stop-color=\\\"#5a63d6\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#087cfa\\\"/></linearGradient></defs><path fill=\\\"url(#deviconIntellij0)\\\" d=\\\"M23.492 88.027L6.277 74.434L16.41 55.676l15.223 5.094Zm0 0\\\"/><path fill=\\\"#087cfa\\\" d=\\\"m121.988 36.68l-2.105 67.78L74.8 122.517l-24.55-15.849Zm0 0\\\"/><path fill=\\\"url(#deviconIntellij1)\\\" d=\\\"M121.988 36.68L99.68 58.44L71.035 23.297l14.14-15.899Zm0 0\\\"/><path fill=\\\"url(#deviconIntellij2)\\\" d=\\\"m50.25 106.668l-35.852 12.957l7.508-26.293l9.727-32.562L4.96 51.848L21.906 5.484l38.301 4.524L99.68 58.44Zm0 0\\\"/><path d=\\\"M27.43 27.43h73.14v73.14H27.43Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M36.547 86.746h27.43v4.574h-27.43Zm13.691-45.152v-4.996h-13.64v4.996h3.824v17.261h-3.824v5h13.64v-5h-3.816V41.594Zm13.078 22.648a10.802 10.802 0 0 1-5.351-1.219a12.299 12.299 0 0 1-3.559-2.875l3.766-4.207c.687.778 1.484 1.45 2.367 2a4.849 4.849 0 0 0 2.621.73a3.46 3.46 0 0 0 2.668-1.058a5.07 5.07 0 0 0 .977-3.449V36.57h6.093v17.86a12.384 12.384 0 0 1-.668 4.254a7.919 7.919 0 0 1-4.964 4.879a12.097 12.097 0 0 1-4.036.632\\\"/>\"\n\t\t},\n\t\t\"ionic\": {\n\t\t\t\"body\": \"<g fill=\\\"#4e8ef7\\\"><circle cx=\\\"64\\\" cy=\\\"64\\\" r=\\\"24.08\\\"/><path d=\\\"M113.14 23.14a8.27 8.27 0 0 0-13.7-6.25a59 59 0 1 0 11.67 11.67a8.24 8.24 0 0 0 2.03-5.42M64 121A57 57 0 1 1 98.1 18.36a8.27 8.27 0 0 0 11.53 11.53A57 57 0 0 1 64 121\\\"/></g>\"\n\t\t},\n\t\t\"ionic-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#4e8ef7\\\"><path d=\\\"M57.01 58.34h.91v17.19h-.91zm13.82-.42a9 9 0 1 0 9.05 9a8.85 8.85 0 0 0-9.05-9m0 17.19A8.18 8.18 0 1 1 79 66.94a8 8 0 0 1-8.17 8.17M97 59.64a8.56 8.56 0 0 0-5.48-1.72c-2.72 0-5.74 1.27-6.81 3.73h-.07v-3.31h-.91v17.19h.91v-9.89c0-4.31 2.66-6.88 7-6.88a6.82 6.82 0 0 1 4.87 1.62c1.3 1.17 2.11 3.08 2.11 6.07v9.08h.91v-9.08c.01-3.08-.8-5.39-2.53-6.81m7.57-1.3h.91v17.19h-.91zm13.81 16.77a8 8 0 0 1-8.14-8.18a8.18 8.18 0 0 1 2.37-5.87a7.9 7.9 0 0 1 5.81-2.3a7.77 7.77 0 0 1 7.53 5.16h1a9.06 9.06 0 1 0-8.56 12a8.72 8.72 0 0 0 8.53-5.84h-1a7.78 7.78 0 0 1-7.54 5.03\\\"/><circle cx=\\\"57.46\\\" cy=\\\"53.01\\\" r=\\\".98\\\"/><circle cx=\\\"105.02\\\" cy=\\\"53.01\\\" r=\\\".98\\\"/><circle cx=\\\"22.97\\\" cy=\\\"63.99\\\" r=\\\"8.97\\\"/><path d=\\\"M41.27 48.77a3.08 3.08 0 0 0-5.1-2.33a22 22 0 1 0 4.35 4.35a3.07 3.07 0 0 0 .75-2.02M23 85.22A21.23 21.23 0 1 1 35.67 47a3.08 3.08 0 0 0 4.3 4.3A21.22 21.22 0 0 1 23 85.22\\\"/></g>\"\n\t\t},\n\t\t\"jaegertracing\": {\n\t\t\t\"body\": \"<path fill=\\\"#231f20\\\" d=\\\"M38.422 113.68c-1.805.414-7.117 3.289-11.711 4.16c-4.59.875-8.563 1.336-9.957 1.851c-1.39.512-2.473 1.54.258 2.567c2.738 1.027 15.992 1.387 17.18 0c1.187-1.387-.82-1.988-3.715-1.95c-2.063.024-1.813-.69-1.805-.773c0 0 .129-.898 3.3-1.336c3.169-.433 17.18-1.742 16.923-3.234c-.258-1.488-8.668-1.695-10.473-1.285m-6.406 10.41c-.094-.426-1.375-.52-2.856-.195c-1.484.324-2.61.93-2.515 1.359c.093.43 1.37.52 2.855.2c1.484-.325 2.605-.934 2.516-1.364m-6.164-.004c-.036-.422-1.352-.668-2.942-.543c-1.59.129-2.851.574-2.82 1c.035.422 1.351.664 2.941.535c1.594-.121 2.856-.566 2.82-.992Zm-6.043-.664c-.047-.328-.942-.48-2-.336c-1.063.14-1.883.527-1.836.86c.043.327.941.48 2 .335c1.058-.144 1.879-.527 1.836-.86Zm-3.82-.586c-.04-.262-.9-.36-1.923-.211c-1.023.145-1.816.48-1.78.746c.038.27.902.367 1.921.219c1.02-.149 1.82-.485 1.777-.754Zm-.852-1.05c-.04-.27-.899-.364-1.922-.216c-1.024.149-1.82.485-1.781.75c.039.266.902.364 1.921.215c1.024-.144 1.82-.484 1.782-.75Zm-.465-1.157c-.035-.23-.781-.317-1.672-.188c-.887.133-1.578.422-1.543.657c.031.23.777.312 1.668.183c.89-.125 1.582-.418 1.547-.652m51.297-5.512c-3.145.156-10.266-.203-11.246 1.442c-.98 1.64 2.89 2.257 8.976 1.746c6.09-.516 14.703-1.184 15.067-3.032c.359-1.847-1.602-1.492-1.809-2.668c-.207-1.183 2.168-1.183 2.633-2.93c.465-1.745-3.195-1.542-6.45-1.542c-3.25 0-8.663.308-9.183 2.004c-.516 1.695 2.477 1.695 4.594 2.105c2.113.414 1.496 1.184 1.496 1.184c-.106 1.078-.93 1.539-4.078 1.691m-5.684 4.512c0-.492-1.222-.887-2.73-.887s-2.727.395-2.727.887c0 .484 1.219.883 2.727.883c1.508 0 2.73-.399 2.73-.883m6.113-.195c0-.45-.816-.809-1.82-.809s-1.82.36-1.82.809c0 .445.816.808 1.82.808s1.82-.363 1.82-.808m5.84-.579c0-.363-.894-.656-1.992-.656c-1.101 0-1.996.293-1.996.656c0 .364.895.657 1.996.657c1.098 0 1.992-.293 1.992-.657m3.832-.73c0-.383-.648-.695-1.453-.695c-.8 0-1.453.312-1.453.695c0 .383.652.691 1.453.691c.805 0 1.453-.308 1.453-.691m3.793-.79c0-.374-.66-.675-1.472-.675c-.813 0-1.47.3-1.47.676c0 .371.657.672 1.47.672c.812 0 1.472-.301 1.472-.672ZM14.238 98.392c0 .879 1.922 1.707 5.328 2.445c-.242-1.762-.093-3.531.133-4.91c-3.492.742-5.46 1.582-5.46 2.469Zm100.559-2.266a7.604 7.604 0 0 1-1.953 2.98c-1.54 1.454-2.887 2.325-4.094 2.641c6.66-.933 10.613-2.094 10.613-3.351c0-.81-1.636-1.579-4.566-2.27m0 0\\\"/><path fill=\\\"#67cfe3\\\" d=\\\"M103.406 94.281c-.422-3.09-1.746-4.476-2.918-5.699c-1.086-1.14-2.117-2.215-1.785-4.191c.309-1.829 1.766-2.95 4.152-3.243c-1.449-9.75-3.574-22.046-6.3-32.535c-1.364-5.238-3.516-8.875-6.407-11.297c-3.308 1.688-7.28 3.54-11.722 5.457a306.52 306.52 0 0 1-9.676 3.973c-2.531 2.707-5.305 5.379-7.004 6.14c-1.207.54-2.285.759-3.219.759c-2.02 0-3.386-1.012-4.043-1.91c-.77.203-1.382.335-1.797.374c-.496.055-1.23.118-2.148.184a2.8 2.8 0 0 1-.46 2.805c-.747.89-1.946 1.34-3.645 1.34c-2.442 0-5.918-.926-10.57-2.801c-.63-.254-1.259-.5-1.891-.739c-.356.004-.711.004-1.067.004h-.004c-4.445 0-7.914-.136-10.636-.359c-2.985 6.145-1.688 12.96-.598 18.59c1.047 5.398 4.676 14.996 8.043 23.246c1.137 2.789 2.3 5.57 3.488 8.34c9.11.8 20.793 1.281 33.531 1.281c15.16 0 28.81-.684 38.426-1.777c-.703-2.868-1.586-6.86-1.742-7.88ZM28.32 68.011c0-5.8 4.727-10.5 10.555-10.5c5.824 0 10.547 4.7 10.547 10.5c0 2.891-1.176 5.509-3.074 7.41a10.682 10.682 0 0 1-2.137 1.65a10.499 10.499 0 0 1-5.336 1.44c-5.828 0-10.555-4.698-10.555-10.5M56.5 90.247c-2.223.66-3.023-1.883-3.262-2.988c.016-.008.032-.02.047-.031c1.035-.645 2.238-1.383 3.59-1.899c.156.422.402 1.14.55 1.899c.247 1.28.223 2.68-.925 3.02Zm3.613-.898c-.554-.207-.972-1.121-1.27-2.121a18.719 18.719 0 0 1-.515-2.344c.258-.059.527-.106.797-.145c.133-.02.418-.039 1.016-.039c.547 0 1.207.02 1.91.04c.199.003.406.011.617.011c.059.477.121 1.172.2 2.184c.01.105.01.199.01.293c.032 2.53-2.187 2.34-2.765 2.12Zm9.496-6.387c-1.078.477-2.656.68-5.293.68c-.894 0-1.816-.02-2.629-.04a63.082 63.082 0 0 0-1.925-.038c-.508 0-.88.015-1.102.042c-2.488.329-4.543 1.61-6.195 2.641c-.48.3-.938.582-1.36.817c-.687.374-1.523.574-2.43.574c-1.671 0-3.241-.653-4.206-1.746c-.797-.907-1.133-2.043-.969-3.282c.5-3.714 5.836-5.613 6.441-5.816l.977-.332a1.496 1.496 0 0 1-.074-.29c-.29-1.73 1.98-3.546 5.07-4.058l.414-.058c2.559-.317 4.805.398 5.504 1.691l1.191.008c2.711.023 4.954.387 6.653 1.082c1.715.695 2.761 1.707 2.953 2.848c.387 2.293-.746 4.265-3.02 5.277m1.954-12.016c-5.825 0-10.547-4.703-10.547-10.504c0-5.8 4.722-10.504 10.547-10.504c5.824 0 10.55 4.704 10.55 10.504c0 5.801-4.722 10.504-10.55 10.504m0 0\\\"/><path d=\\\"m85.074 25.055l-.082-.137l-.101-.133c-.098-.156-.485-.394-.516-.398l-.04-.02l-.019-.012l-.074-.035h-.008l-.015-.008l-.106-.035l-.215-.074c-.144-.05-.304-.07-.457-.101c-.156-.028-.32-.028-.48-.036a4.047 4.047 0 0 0-.488.04a3.526 3.526 0 0 0-1.657.796a5.275 5.275 0 0 0-1.043 1.22a8.6 8.6 0 0 0-1.03 2.417a9.917 9.917 0 0 0-.313 1.79c-.024.218-.024.39-.028.507c-.004.117 0 .18 0 .18l.332-.598c.211-.375.504-.906.864-1.523c.367-.61.804-1.31 1.332-1.942c.265-.316.558-.61.867-.836c.308-.219.625-.375.941-.422c.078-.011.16-.023.239-.03c.082.01.16 0 .242.019c.086.02.168.015.254.043l.203.054l.062.032l-.008-.008h.012c0 .004.004.008.008.011l.004.004l.023.008h-.011c-.004 0-.008 0-.012-.004c.012.008.02.02.027.043c.043.074.078.23.09.399c.016.382-.016.761-.09 1.136c-.058.375-.136.739-.226 1.106c-.16.695-.32 1.285-.422 1.703c-.11.418-.168.66-.168.66s.183-.176.457-.516c.375-.476.715-.98 1.008-1.507a8.36 8.36 0 0 0 .523-1.121c.16-.418.309-.88.356-1.438a2.503 2.503 0 0 0-.118-.96a1.407 1.407 0 0 0-.117-.274m0 0\\\"/><path d=\\\"m83.75 25.816l-.012-.003l.012.011h.004l-.004-.004Zm0 0\\\"/><path fill=\\\"#231f20\\\" d=\\\"M19.648 45.129h.145c-.05-.086-.098-.176-.145-.262Zm1.29-4.074c.25.496.546.968.89 1.406c.121.16.227.273.3.355c.067.082.11.121.11.121s-.043-.226-.12-.609c-.071-.387-.192-.926-.294-1.558a11.31 11.31 0 0 1-.12-1c-.017-.336-.017-.7.054-.961a.731.731 0 0 1 .137-.29a.342.342 0 0 1 .148-.081l.047-.012l.082-.016c.023-.004-.008.016-.012.016c-.004.004-.015.004-.023.004h-.016l.008.004c.02.007.031.007.047.011c.078.028.195.094.32.184c.262.187.531.48.79.773c.257.309.503.621.737.942c.473.64.91 1.261 1.293 1.797c.313.437.63.875.957 1.3c.122.164.254.329.387.489l-.02-.164c-.015-.102-.035-.262-.074-.457a11.835 11.835 0 0 0-.414-1.586a13.412 13.412 0 0 0-.914-2.141a8.953 8.953 0 0 0-.722-1.145a5.303 5.303 0 0 0-1.055-1.097a2.918 2.918 0 0 0-.844-.43c-.094-.02-.183-.039-.277-.05l-.074-.012h-.094c-.067 0-.125.004-.192.007c-.054.008-.144.016-.171.024l-.079.02l-.078.023l-.105.031l-.031.012l-.059.027a1.773 1.773 0 0 0-.824.707a2.082 2.082 0 0 0-.29.895c-.05.55.06.996.169 1.398c.113.367.254.723.425 1.063Zm0 0\\\"/><path fill=\\\"#dfcaa3\\\" d=\\\"M25.805 105.574c2.472 0 4.21-1.34 5.437-3.078a362.39 362.39 0 0 1-5.883-14.394c-.593.5-1.273 1.253-2.015 2.39c-1.836 2.84-3.352 9.438-1.446 12.926c.797 1.45 2.075 2.156 3.907 2.156m87.308-16.355c-1.453-3.73-4.535-6.383-7.5-6.446l-.101-.011c-.008 0-.578-.082-1.344-.082c-1.613 0-3.594.34-3.867 1.976c-.192 1.133.304 1.711 1.36 2.817c1.202 1.261 2.85 2.984 3.347 6.593c.566 4.125 1.578 6.223 3.012 6.223c.668 0 1.882-.398 3.898-2.3c2.48-2.34 2.242-6.063 1.195-8.77m0 0\\\"/><path fill=\\\"#231f20\\\" d=\\\"M41.246 71.703a3.32 3.32 0 0 1-3.324 3.313a3.32 3.32 0 0 1-3.328-3.313a3.32 3.32 0 0 1 3.328-3.312a3.297 3.297 0 0 1 2.348.968c.625.621.976 1.465.976 2.344m32.215-7.762a3.314 3.314 0 0 1-3.324 3.313a3.318 3.318 0 0 1-3.328-3.313c0-1.828 1.492-3.308 3.328-3.308a3.316 3.316 0 0 1 3.324 3.308m0 0\\\"/><path fill=\\\"#648c1a\\\" d=\\\"M28.895 34.707c2.597.695 5.53 1.047 8.726 1.047c5.129 0 16.02-.988 31.328-7.633l.344-.152a9.049 9.049 0 0 1 .21-2.512c.337-1.535 1.013-2.84 1.837-3.703c-.156-.59-.29-1.02-.383-1.238c-1.766-.938-16.324-6.336-23.922-6.336c-.762 0-1.422.054-1.969.164c-6.73 1.37-16.96 13.023-17.324 14.672c-.11.714-.078 2.957.004 5.382Zm-.13 16.543a5.41 5.41 0 0 0-.66-.11a2.822 2.822 0 0 1-2.945-2.304a2.67 2.67 0 0 1-.043-.43a30.14 30.14 0 0 0-2.242 1.39l-1.27.876l-.937-1.227a32.58 32.58 0 0 1-2.785-4.418c-2.25 1.059-4.012 2.215-4.442 3.313c-.082.207-.046.32.036.441c.367.535 2.55 2.172 15.289 2.469Zm26.454-3.59a2.84 2.84 0 0 1 3.468.332c.141-.023.383-.082.735-.242c1.398-.66 6.426-6.008 10.25-10.586c.137-.16.285-.305.457-.434c-8.734 3.758-20.938 7.864-32.559 7.864c-1.867 0-3.64-.106-5.289-.32l.258.746l-1.453.554a33.91 33.91 0 0 0-.68.274c1.871.433 4.403 1.289 7.578 2.57c5.809 2.332 8.032 2.422 8.586 2.39a2.85 2.85 0 0 1 2.563-.035a88.955 88.955 0 0 0 3.383-.261c.32-.035.797-.133 1.398-.29a2.802 2.802 0 0 1 1.305-2.562M89.05 30.473c-.422 2.511-1.239 5.27-1.774 6.02l-.507.702a118.116 118.116 0 0 0 6.07-3.133c6.035-3.367 6.789-4.84 6.875-5.214c.055-.246-.004-.32-.031-.352c-.067-.082-.493-.492-2.399-.492c-2.082 0-4.996.476-8.039 1.133c-.055.449-.121.894-.195 1.336m-2.352 6.757l-.87-.066a48.844 48.844 0 0 0-3.782-.133c-2.25 0-5.219.137-7.652.711c.48.992.335 2.172-.372 3.02a159.513 159.513 0 0 1-2.812 3.277c2.2-.89 4.39-1.805 6.566-2.746a218.13 218.13 0 0 0 8.918-4.063Zm0 0\\\"/><path fill=\\\"#dfcaa3\\\" d=\\\"M69.594 29.594c-6.117 2.656-19.52 7.773-31.973 7.773c-3.156 0-6.246-.328-9.144-1.11c.316.477.617.966.898 1.462c1.078 1.883 1.863 3.746 2.293 4.843c1.508.235 3.473.422 5.902.422c7.153 0 18.336-1.629 33.68-8.504c.293-.925.613-1.84.957-2.746c-.031 0-.062.008-.094.008c-.16 0-.324-.02-.48-.055c-.953-.207-1.66-.98-2.04-2.093Zm0 0\\\"/><path fill=\\\"#67cfe3\\\" d=\\\"M19.793 45.129a32.127 32.127 0 0 0 2.164 3.344c3.703-2.555 8.55-4.399 8.55-4.399s-.124-.363-.359-.96c-.14-.36-.289-.72-.441-1.075a32.483 32.483 0 0 0-1.39-2.898a23.597 23.597 0 0 0-1.243-2.07c-1.484-2.223-3.37-4.114-5.484-4.114c-.664 0-1.356.188-2.059.613c-3.879 2.336-1.875 7.684.117 11.297c.047.09.098.176.145.262m.55-6.535c.028-.278.102-.586.29-.895c.191-.316.48-.562.824-.707l.059-.027l.027-.012l.11-.031l.077-.024l.079-.02c.027-.007.117-.015.171-.023c.067-.003.125-.007.192-.007h.094l.074.011c.09.012.187.032.277.051c.344.106.61.266.844.43c.45.344.77.715 1.055 1.097c.285.376.515.766.722 1.145c.367.688.672 1.402.914 2.14c.176.52.313 1.051.414 1.59c.04.192.059.352.075.454l.02.164s-.15-.176-.388-.489a40.282 40.282 0 0 1-.957-1.3c-.382-.536-.82-1.157-1.293-1.797c-.234-.32-.48-.633-.738-.942c-.258-.293-.527-.586-.789-.77a1.324 1.324 0 0 0-.32-.187c-.02-.004-.028-.004-.043-.011l-.008-.004h.008c.012 0 .023 0 .027-.004c.004 0 .035-.02.012-.016l-.082.02l-.047.008a.325.325 0 0 0-.148.082a.731.731 0 0 0-.137.289c-.07.261-.07.625-.055.96c.024.344.07.684.121.997c.102.632.223 1.175.293 1.562c.078.383.121.61.121.61s-.043-.04-.11-.122c-.073-.082-.179-.195-.3-.355a8.375 8.375 0 0 1-.89-1.406a6.402 6.402 0 0 1-.422-1.063c-.114-.402-.223-.847-.172-1.398Zm1.247-6.442v.805Zm0 0\\\"/><path fill=\\\"#dfcaa3\\\" d=\\\"M73.574 20.637c.164 0 .324.02.485.05c1.187.266 1.988 1.399 2.257 2.977c2.258-3.16 4.73-4.762 7.364-4.762c1.11 0 2.086.262 2.902.766c.773-.934 1.535-1.883 2.277-2.844c-1.046.188-3.23.473-3.23.473C93.895 14.27 93.23 6.035 93.23 6.035c0 1.422-4.277 4.828-4.277 4.828c.192-1.23-.473-2.84-.473-2.84c.188 1.61-4.94 5.774-4.94 5.774c.378-.758.089-2.082.089-2.082c-.285 1.512-2.563 2.082-2.563 2.082c1.422-1.703 4.086-10.692 2.09-11.262c-1.996-.566-4.754 5.863-4.754 5.863c-.093-1.511-.949-1.511-.949-1.511c.383 4.73-3.418 8.515-3.418 8.515c-.285-.945-1.808-1.422-1.808-1.422c.492 1.055-.067 5.852-.239 7.207c.504-.351 1.043-.55 1.586-.55m0 0\\\"/><path d=\\\"M71.547 29.844v.004c.043.047.086.086.129.12c.015.012.031.02.047.032c.03.02.062.043.097.059a.641.641 0 0 0 .16.058a.864.864 0 0 0 .266.004c.246-.039.52-.191.797-.445a42.51 42.51 0 0 1 .805-1.774c.257-.527.523-1.05.808-1.566c.406-2.14-.144-3.898-.945-4.074a.525.525 0 0 0-.137-.012c-.824 0-2.023 1.426-2.492 3.555c-.34 1.543-.184 2.914.219 3.68l.004.003c.07.14.148.262.238.356Zm0 0\\\"/><path fill=\\\"#67cfe3\\\" d=\\\"M83.742 25.805h-.012l.008.008l.012.003c-.004-.003-.004-.007-.008-.011m.035.023l-.023-.008l-.004-.004v.004l.004.004c.004.004.008.004.012.004Zm0 0\\\"/><path fill=\\\"#67cfe3\\\" d=\\\"M83.68 20.512c-4.707 0-8.168 7.054-9.98 11.847a56.69 56.69 0 0 0-.884 2.524c-.14.437-.273.879-.402 1.32c.227.043.45.125.66.227c2.742-.817 6.297-1.004 8.973-1.004c2.27 0 3.91.133 3.91.133c.715-.996 4.852-15.047-2.277-15.047m1.629 5.777a5.063 5.063 0 0 1-.356 1.438a8.36 8.36 0 0 1-.523 1.12a11.785 11.785 0 0 1-1.008 1.508c-.274.34-.457.516-.457.516s.058-.242.168-.66c.101-.418.262-1.008.422-1.703c.082-.344.168-.719.226-1.106c.074-.375.106-.754.09-1.136c-.012-.168-.047-.325-.09-.399c-.008-.023-.015-.035-.027-.043h-.004a64.74 64.74 0 0 0-.012-.012l-.062-.03l-.203-.055c-.086-.028-.168-.024-.254-.043c-.082-.02-.16-.008-.242-.02a5.58 5.58 0 0 1-.239.027c-.316.051-.633.207-.941.426a5.32 5.32 0 0 0-.867.836c-.528.633-.965 1.332-1.328 1.942c-.364.617-.657 1.148-.868 1.523l-.332.598s-.004-.063 0-.18c.004-.117.004-.29.028-.508c.05-.605.152-1.203.312-1.789c.195-.73.5-1.574 1.031-2.422a5.437 5.437 0 0 1 1.043-1.215a3.526 3.526 0 0 1 1.657-.797c.16-.023.324-.035.484-.039c.164.008.328.008.484.036c.153.03.313.05.457.101l.215.074l.106.035l.015.008h.008l.074.035l.02.012l.039.02c.031.004.418.242.516.398l.101.133l.082.137a1.2 1.2 0 0 1 .117.273c.121.36.133.676.118.961m0 0\\\"/><path d=\\\"M58.527 51.941c.774 0 1.618-.207 2.516-.605c1.879-.844 6.453-5.418 11.664-11.66c.277-.332.336-.793.152-1.188a1.114 1.114 0 0 0-1.011-.636a1.117 1.117 0 0 0-.864.398c-2.261 2.719-8.632 10-10.824 11.035l-.031.02a4.78 4.78 0 0 1-1.176.367l-.836.133l-.61-.582a1.15 1.15 0 0 0-.773-.301c-.214 0-.422.062-.597.176a1.11 1.11 0 0 0-.344 1.535c.086.133.89 1.308 2.734 1.308m-10.629.246c-.18 0-.363.043-.523.126l-.332.171l-.367.028c-.09.004-.18.004-.27.004c-1.043 0-3.61-.325-9.066-2.52c-6.016-2.418-8.403-2.781-9.285-2.781a1.66 1.66 0 0 0-.313.02a1.104 1.104 0 0 0-.902 1.293a1.13 1.13 0 0 0 1.094.917c.023 0 .046 0 .07-.004l.125-.007l.121.011c.664.055 2.793.422 8.254 2.614c4.414 1.777 7.754 2.675 9.93 2.675c1.144 0 1.925-.246 2.324-.722a1.114 1.114 0 0 0-.145-1.57a1.083 1.083 0 0 0-.715-.255m0 0\\\"/><path fill=\\\"#dfcaa3\\\" d=\\\"M63.008 75.36s-.313 3.671-5.508 4.437c-.984.14-1.828.207-2.555.207c-2.761 0-3.851-.906-4.492-1.695c0 0-4.976 1.671-5.355 4.515c-.285 2.121 1.77 3.211 3.578 3.211c.61 0 1.191-.125 1.648-.375c1.809-.992 4.512-3.168 8.125-3.644c.328-.04.778-.055 1.313-.055c1.234 0 2.922.082 4.554.082c1.856 0 3.645-.106 4.637-.547c2.23-.992 2.23-2.695 2.09-3.547c-.16-.941-2.43-2.543-8.035-2.59Zm0 0\\\"/><path fill=\\\"#231f20\\\" d=\\\"m56.957 78.383l.184-.031l.203-.043c2.703-.551 4.691-2.106 4.71-3.66a1.86 1.86 0 0 0-.222-.903c-.7-1.293-2.945-2.008-5.504-1.691l-.414.058c-3.09.512-5.363 2.328-5.074 4.059c.02.101.043.2.078.293c.531 1.55 3.129 2.402 6.039 1.918m0 0\\\"/>\"\n\t\t},\n\t\t\"jaegertracing-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#221f1f\\\" d=\\\"M40.363 94.813c-1.5.335-5.91 2.738-9.722 3.464c-3.817.727-7.118 1.11-8.274 1.543c-1.152.43-2.055 1.285.219 2.14c2.273.856 13.277 1.157 14.266 0c.984-1.155-.68-1.655-3.09-1.628c-1.711.023-1.5-.57-1.492-.644c0 0 .105-.75 2.738-1.11c2.633-.367 14.265-1.457 14.05-2.7c-.21-1.245-7.195-1.41-8.695-1.066Zm-5.324 8.675c-.074-.355-1.137-.433-2.371-.16c-1.227.266-2.16.77-2.082 1.133c.078.355 1.137.43 2.367.16c1.234-.266 2.164-.77 2.086-1.133m-5.117-.004c-.024-.351-1.117-.554-2.442-.453c-1.316.11-2.367.48-2.34.836c.028.356 1.126.555 2.446.45c1.32-.106 2.367-.477 2.34-.833Zm-5.02-.55c-.035-.278-.777-.399-1.656-.286c-.879.125-1.558.442-1.523.72c.035.277.78.398 1.656.28c.879-.12 1.562-.437 1.523-.714m-3.168-.489c-.03-.222-.75-.3-1.597-.18c-.844.122-1.508.4-1.48.63c.034.222.75.3 1.6.18c.845-.126 1.505-.407 1.477-.63m-.71-.879c-.032-.222-.743-.304-1.594-.175c-.852.12-1.512.398-1.477.62c.031.227.742.305 1.594.184c.848-.12 1.512-.406 1.476-.629Zm-.383-.96c-.028-.196-.649-.266-1.387-.157c-.742.106-1.313.352-1.285.547c.027.188.648.258 1.39.156c.73-.113 1.309-.355 1.282-.547Zm42.601-4.602c-2.617.129-8.531-.172-9.34 1.203c-.816 1.371 2.395 1.887 7.45 1.461c5.054-.434 12.21-.988 12.511-2.535c.301-1.54-1.328-1.238-1.5-2.227c-.172-.984 1.801-.984 2.184-2.441c.387-1.453-2.656-1.281-5.352-1.281c-2.699 0-7.199.254-7.625 1.668c-.43 1.414 2.055 1.414 3.813 1.757c1.754.34 1.242.985 1.242.985c-.09.902-.773 1.285-3.39 1.41Zm-4.73 3.762c0-.41-1.008-.739-2.262-.739c-1.25 0-2.266.328-2.266.739c0 .406 1.016.738 2.266.738c1.254 0 2.262-.332 2.262-.738m5.082-.16c0-.372-.68-.676-1.516-.676c-.832 0-1.512.304-1.512.675c0 .372.68.68 1.512.68c.836 0 1.516-.308 1.516-.68Zm4.855-.485c0-.297-.746-.543-1.66-.543c-.914 0-1.652.242-1.652.543c0 .3.738.547 1.656.547c.91 0 1.656-.246 1.656-.547m0 0\\\"/><path fill=\\\"#221f1f\\\" d=\\\"M71.625 98.512c0-.317-.54-.578-1.207-.578c-.664 0-1.203.261-1.203.578c0 .32.539.582 1.203.582c.668 0 1.207-.262 1.207-.582m3.148-.657c0-.312-.55-.562-1.222-.562c-.672 0-1.223.25-1.223.562c0 .313.55.563 1.227.563c.668 0 1.218-.25 1.218-.563m-54.492-15.8c0 .734 1.594 1.422 4.422 2.039c-.2-1.465-.074-2.942.11-4.094c-2.895.617-4.532 1.316-4.532 2.055m83.504-1.887a6.413 6.413 0 0 1-1.62 2.48c-1.278 1.215-2.403 1.942-3.403 2.207c5.535-.777 8.812-1.75 8.812-2.793c0-.68-1.355-1.32-3.789-1.894m0 0\\\"/><path fill=\\\"#67cfe3\\\" d=\\\"M94.324 78.629c-.347-2.578-1.449-3.734-2.422-4.758c-.898-.95-1.757-1.844-1.48-3.492c.25-1.524 1.465-2.461 3.45-2.7c-1.208-8.136-2.97-18.39-5.235-27.14c-1.13-4.367-2.918-7.406-5.317-9.422a176.394 176.394 0 0 1-9.738 4.551a271.288 271.288 0 0 1-8.035 3.316c-2.106 2.262-4.406 4.485-5.817 5.118c-1.003.453-1.894.632-2.671.632c-1.68 0-2.813-.84-3.364-1.59c-.488.141-.984.243-1.488.313c-.41.043-1.023.094-1.781.148a2.34 2.34 0 0 1-.387 2.34c-.613.742-1.61 1.121-3.02 1.121c-2.027 0-4.917-.777-8.785-2.34c-.515-.203-1.043-.41-1.566-.609h-.887c-3.691 0-6.574-.117-8.836-.3c-2.476 5.128-1.398 10.812-.492 15.507c.867 4.496 3.883 12.504 6.676 19.387a436.86 436.86 0 0 0 2.902 6.957c7.559.668 17.258 1.066 27.84 1.066c12.586 0 23.918-.566 31.91-1.48c-.586-2.39-1.324-5.727-1.453-6.57Zm-62.351-21.91a8.763 8.763 0 0 1 8.761-8.762a8.76 8.76 0 0 1 8.762 8.762a8.76 8.76 0 0 1-8.762 8.761a8.763 8.763 0 0 1-8.761-8.761m23.402 18.543c-1.844.55-2.508-1.57-2.707-2.492l.039-.024c.863-.539 1.855-1.156 2.98-1.582c.133.356.333.95.454 1.582c.207 1.067.187 2.23-.766 2.516m3-.742c-.453-.18-.805-.938-1.05-1.774a16.653 16.653 0 0 1-.434-1.957a7.45 7.45 0 0 1 .668-.117c.109-.016.343-.031.836-.031c.457 0 1.007.011 1.585.027l.516.016c.05.394.106.972.168 1.82l.012.242c.027 2.11-1.82 1.95-2.301 1.766Zm7.887-5.336c-.895.406-2.211.574-4.395.574c-.742 0-1.508-.024-2.187-.04c-.578-.011-1.133-.027-1.594-.027c-.422 0-.734.012-.918.032c-2.066.277-3.77 1.347-5.137 2.207c-.406.25-.785.484-1.133.683a4.272 4.272 0 0 1-2.02.477c-1.386 0-2.694-.543-3.491-1.457a3.36 3.36 0 0 1-.801-2.738c.41-3.102 4.84-4.684 5.344-4.856l.812-.27a1.052 1.052 0 0 1-.062-.242c-.246-1.441 1.644-2.96 4.21-3.386l.344-.051c2.125-.262 3.985.332 4.567 1.41l.992.012c2.254.02 4.113.324 5.523.902c1.426.574 2.297 1.422 2.454 2.375c.32 1.91-.618 3.559-2.508 4.395m1.625-10.016a8.76 8.76 0 1 1 0-17.52c4.836 0 8.754 3.922 8.754 8.758a8.761 8.761 0 0 1-8.754 8.762m0 0\\\"/><path d=\\\"m79.102 20.89l-.067-.113l-.082-.109a1.504 1.504 0 0 0-.43-.336l-.03-.016l-.02-.011l-.059-.028h-.008l-.015-.004l-.082-.035l-.184-.054c-.117-.043-.25-.063-.379-.09c-.125-.024-.266-.024-.398-.028c-.133 0-.274.012-.407.036a2.85 2.85 0 0 0-1.375.664a4.457 4.457 0 0 0-.863 1.011a7.427 7.427 0 0 0-.863 2.016a8.495 8.495 0 0 0-.254 1.496c-.023.176-.016.324-.023.422v.152l.273-.496c.18-.316.422-.762.723-1.273c.304-.512.668-1.094 1.105-1.621a4.32 4.32 0 0 1 .715-.696c.23-.18.5-.3.785-.355c.066-.012.133-.016.2-.016c.066.004.128-.008.198.004c.067.024.141.016.215.04l.164.05l.055.023l-.012-.007h.012c0 .007.004.007.004.011h.008l.015.008h-.015l.023.031c.043.106.067.22.078.332c.008.297-.023.63-.078.95c-.05.324-.125.636-.191.925c-.133.579-.266 1.07-.348 1.415c-.094.351-.14.554-.14.554s.152-.14.378-.43a8.203 8.203 0 0 0 1.274-2.19a4.31 4.31 0 0 0 .293-1.204a2.13 2.13 0 0 0-.094-.8a1.482 1.482 0 0 0-.101-.227Zm0 0\\\"/><path d=\\\"m78 21.527l-.004-.004l.012.012v-.008Zm0 0\\\"/><path fill=\\\"#221f1f\\\" d=\\\"M24.77 37.629h.12a7.577 7.577 0 0 1-.12-.219v.223Zm1.078-3.39c.254.519.527.906.738 1.167c.094.133.187.235.246.297l.094.102l-.102-.512c-.062-.316-.156-.77-.246-1.3a11.914 11.914 0 0 1-.098-.833a2.632 2.632 0 0 1 .043-.8a.832.832 0 0 1 .114-.239a.269.269 0 0 1 .12-.07l.044-.008l.066-.012c.02-.004-.004.008-.004.008c-.011.004-.015.012-.027.004h-.012l.012.008c.012.004.02.004.039.004c.059.027.16.078.266.156c.21.156.437.398.652.648c.21.25.422.52.613.786c.399.53.758 1.05 1.074 1.5c.36.503.735 1 1.118 1.488l-.016-.133c-.02-.09-.031-.223-.062-.383a11.174 11.174 0 0 0-1.106-3.113a7.53 7.53 0 0 0-.602-.953a4.377 4.377 0 0 0-.87-.91a2.336 2.336 0 0 0-.708-.364a2.115 2.115 0 0 0-.226-.047l-.063-.003h-.078c-.097 0-.199.003-.297.023l-.07.016l-.066.02l-.086.023l-.078.039a1.437 1.437 0 0 0-.684.59a1.748 1.748 0 0 0-.234.738c-.028.398.015.797.14 1.172c.098.336.227.629.356.89Zm0 0\\\"/><path fill=\\\"#dfcaa3\\\" d=\\\"M29.887 88.043c2.054 0 3.5-1.117 4.515-2.566a301.548 301.548 0 0 1-4.886-12.004c-.493.418-1.059 1.05-1.668 2c-1.532 2.367-2.79 7.867-1.207 10.773c.66 1.211 1.722 1.805 3.246 1.805Zm72.5-13.637c-1.203-3.113-3.77-5.328-6.23-5.379l-.09-.004s-.47-.074-1.102-.074c-1.344 0-2.988.29-3.219 1.653c-.16.941.258 1.425 1.129 2.347c1.004 1.051 2.371 2.489 2.777 5.496c.473 3.446 1.309 5.196 2.5 5.196c.555 0 1.567-.336 3.246-1.918c2.055-1.957 1.86-5.063.989-7.317m0 0\\\"/><path fill=\\\"#221f1f\\\" d=\\\"M42.707 59.793c0 .734-.289 1.437-.809 1.953a2.759 2.759 0 1 1-1.95-4.71a2.757 2.757 0 0 1 2.759 2.757m26.75-6.473a2.759 2.759 0 1 1-5.52 0a2.757 2.757 0 0 1 2.758-2.758a2.758 2.758 0 0 1 2.762 2.758m0 0\\\"/><path fill=\\\"#648c1a\\\" d=\\\"M32.453 28.938c2.156.585 4.594.878 7.242.878c4.262 0 13.301-.828 26.02-6.37l.281-.126a7.55 7.55 0 0 1 .18-2.093c.277-1.282.84-2.364 1.52-3.086a9.584 9.584 0 0 0-.317-1.036c-1.465-.78-13.555-5.285-19.86-5.285a8.264 8.264 0 0 0-1.64.14c-5.59 1.138-14.082 10.856-14.387 12.235c-.09.594-.062 2.465.004 4.489Zm-.105 13.8a5.389 5.389 0 0 0-.551-.09a2.37 2.37 0 0 1-1.723-.613a2.359 2.359 0 0 1-.762-1.668c-.632.36-1.265.75-1.859 1.16l-1.058.727l-.778-1.02a27.067 27.067 0 0 1-2.308-3.683c-1.868.883-3.332 1.847-3.688 2.761c-.07.168-.043.266.027.372c.305.445 2.114 1.812 12.7 2.054m21.96-2.996a2.346 2.346 0 0 1 2.883.281c.211-.039.414-.113.614-.203c1.16-.554 5.332-5.008 8.508-8.832c.113-.133.238-.254.378-.36c-7.254 3.134-17.386 6.56-27.035 6.56a35.154 35.154 0 0 1-4.394-.266l.218.621l-1.21.465c-.008.004-.22.082-.563.226c1.559.36 3.652 1.078 6.29 2.145c4.827 1.945 6.671 2.023 7.132 1.992a2.35 2.35 0 0 1 2.129-.027a85.175 85.175 0 0 0 2.812-.223a8.869 8.869 0 0 0 1.153-.238a2.363 2.363 0 0 1 1.086-2.14Zm28.098-14.336c-.355 2.098-1.027 4.395-1.476 5.024l-.422.586a97.656 97.656 0 0 0 5.043-2.61c5.011-2.812 5.633-4.047 5.707-4.351c.05-.203 0-.266-.024-.293c-.054-.067-.402-.41-1.988-.41c-1.734 0-4.156.39-6.676.941c-.05.375-.101.746-.164 1.113m-1.953 5.645l-.723-.063c-.011 0-1.34-.11-3.14-.11c-1.871 0-4.332.118-6.356.595c.383.8.297 1.789-.308 2.515a121.59 121.59 0 0 1-2.336 2.735a255.613 255.613 0 0 0 5.457-2.29a191.657 191.657 0 0 0 7.406-3.39Zm0 0\\\"/><path fill=\\\"#dfcaa3\\\" d=\\\"M66.246 24.68c-5.078 2.207-16.207 6.476-26.55 6.476c-2.614 0-5.188-.273-7.594-.922c.257.383.5.79.75 1.223a31.997 31.997 0 0 1 1.902 4.04c1.621.241 3.258.358 4.906.347c5.938 0 15.219-1.36 27.965-7.094c.2-.629.465-1.418.793-2.29l-.078.005a1.538 1.538 0 0 1-.399-.043c-.796-.172-1.379-.817-1.695-1.742m0 0\\\"/><path fill=\\\"#67cfe3\\\" d=\\\"M24.89 37.629a25.75 25.75 0 0 0 1.801 2.793c3.07-2.129 7.098-3.664 7.098-3.664s-.105-.309-.297-.809a33.27 33.27 0 0 0-1-2.3c-.168-.34-.344-.676-.523-1.008a19.77 19.77 0 0 0-1.028-1.73c-1.238-1.856-2.8-3.427-4.554-3.427c-.551 0-1.125.157-1.711.504c-3.223 1.95-1.559 6.414.094 9.422l.12.223Zm.462-5.45c.023-.261.101-.519.238-.742a1.41 1.41 0 0 1 .68-.59l.078-.035l.09-.023l.062-.023l.07-.016a1.9 1.9 0 0 1 .297-.023h.078l.063.007c.078.016.156.028.226.043c.29.09.512.223.707.364c.368.28.641.593.872.91c.238.316.43.64.601.953c.52.98.895 2.023 1.106 3.113c.03.16.043.293.062.383l.016.133s-.13-.145-.325-.406c-.27-.356-.535-.72-.793-1.082c-.316-.45-.675-.97-1.074-1.5c-.191-.27-.398-.532-.613-.782a4.146 4.146 0 0 0-.656-.652a1.364 1.364 0 0 0-.262-.156c-.02 0-.027 0-.04-.004l-.01-.008h.01c.013 0 .017 0 .028-.004c0 0 .024-.012.004-.008l-.066.012l-.043.008a.378.378 0 0 0-.121.07a.704.704 0 0 0-.114.238c-.054.262-.07.536-.043.801c.016.29.055.574.098.832c.09.531.184.985.246 1.301c.067.324.102.512.102.512l-.094-.098c-.059-.066-.152-.168-.246-.3a6.397 6.397 0 0 1-.738-1.169a5.602 5.602 0 0 1-.356-.886a3.14 3.14 0 0 1-.14-1.172Zm1.035-5.367v.672Zm0 0\\\"/><path fill=\\\"#dfcaa3\\\" d=\\\"M69.55 17.207c.141 0 .274.016.407.043c.984.215 1.652 1.168 1.871 2.477c1.879-2.633 3.922-3.965 6.117-3.965c.918 0 1.73.215 2.414.64c.641-.785 1.27-1.578 1.887-2.379c-.871.16-2.683.399-2.683.399c6.867-2.527 6.312-9.395 6.312-9.395c0 1.184-3.55 4.028-3.55 4.028c.16-1.028-.395-2.367-.395-2.367c.156 1.34-4.102 4.812-4.102 4.812c.313-.633.078-1.738.078-1.738c-.238 1.265-2.133 1.738-2.133 1.738c1.184-1.422 3.395-8.918 1.743-9.395C75.856 1.633 73.57 7 73.57 7c-.086-1.262-.797-1.262-.797-1.262c.317 3.946-2.84 7.102-2.84 7.102c-.23-.79-1.496-1.184-1.496-1.184c.403.875-.058 4.88-.195 6.012c.414-.297.86-.461 1.317-.461Zm0 0\\\"/><path d=\\\"m67.867 24.883l.008.008c.031.035.063.066.098.097l.047.028l.078.05a.556.556 0 0 0 .352.05c.25-.053.48-.182.655-.374c.41-.949.852-1.875 1.348-2.785c.332-1.785-.117-3.246-.785-3.395a.596.596 0 0 0-.117-.011c-.68 0-1.676 1.187-2.067 2.965c-.28 1.289-.156 2.433.18 3.074c.055.105.121.207.2.293Zm0 0\\\"/><path fill=\\\"#67cfe3\\\" d=\\\"M77.996 21.516h-.012s.008 0 .008.007H78s-.004 0-.004-.007m.027.015l-.015-.004H78h.008v.008Zm0 0\\\"/><path fill=\\\"#67cfe3\\\" d=\\\"M77.945 17.105c-3.91 0-6.789 5.88-8.289 9.88a46.053 46.053 0 0 0-1.07 3.206c.187.036.379.102.555.188c2.277-.684 5.222-.84 7.453-.84c1.879 0 3.242.113 3.242.113c.594-.828 4.027-12.547-1.89-12.547Zm1.352 4.817a4.24 4.24 0 0 1-.297 1.2c-.121.32-.266.632-.43.933c-.246.441-.527.86-.84 1.258a5.035 5.035 0 0 1-.378.433s.046-.207.14-.558c.082-.344.215-.836.348-1.415c.066-.289.14-.601.191-.925c.055-.32.086-.653.07-.95a.971.971 0 0 0-.07-.332a.217.217 0 0 0-.023-.03H78l-.004-.013l-.055-.023l-.168-.05c-.07-.024-.144-.024-.21-.04c-.07-.012-.133 0-.2-.012c-.066.008-.136.012-.203.024a1.84 1.84 0 0 0-.781.355a4.432 4.432 0 0 0-.715.696c-.41.511-.781 1.054-1.105 1.62c-.301.512-.543.958-.723 1.274l-.273.496v-.152c.007-.098 0-.246.023-.422c.027-.367.094-.883.254-1.492a7.48 7.48 0 0 1 .863-2.02c.223-.351.5-.707.867-1.011a2.9 2.9 0 0 1 1.371-.668c.133-.02.274-.028.407-.032c.132.004.273.004.398.028c.129.027.262.043.379.09l.184.054l.082.035l.015.004h.008l.059.028l.02.011l.03.016c.024 0 .348.207.43.336l.082.11l.067.109c.039.074.07.152.101.23c.098.305.106.567.094.805m0 0\\\"/><path d=\\\"M57.059 43.313c.636 0 1.343-.168 2.086-.508c1.562-.7 5.363-4.516 9.69-9.723a.925.925 0 0 0-.12-1.305a.93.93 0 0 0-1.313.125c-1.879 2.266-7.168 8.332-8.988 9.196l-.027.02a3.76 3.76 0 0 1-.98.304l-.688.11l-.512-.481a.937.937 0 0 0-1.133-.114a.927.927 0 0 0-.414.583a.93.93 0 0 0 .133.703c.066.109.73 1.093 2.266 1.093Zm-8.825.203a.901.901 0 0 0-.437.113l-.274.144l-.312.016c-.07.004-.14.004-.219.004c-.867 0-2.996-.27-7.527-2.098c-4.996-2.023-6.973-2.324-7.711-2.324c-.086 0-.172.008-.258.016a.96.96 0 0 0-.601.386a.941.941 0 0 0-.149.692c.09.46.5.785.969.77l.098-.012l.101.011c.555.043 2.32.348 6.856 2.184c3.664 1.477 6.437 2.227 8.25 2.227c.945 0 1.593-.208 1.925-.606a.896.896 0 0 0 .211-.68a.89.89 0 0 0-.332-.625a.924.924 0 0 0-.59-.218m0 0\\\"/><path fill=\\\"#dfcaa3\\\" d=\\\"M60.781 62.844s-.261 3.066-4.578 3.699c-.7.113-1.41.168-2.125.172c-2.289 0-3.191-.754-3.726-1.403c0 0-4.125 1.391-4.446 3.758c-.238 1.77 1.469 2.68 2.973 2.68c.508 0 .988-.102 1.367-.313c1.5-.828 3.75-2.644 6.746-3.039a8.49 8.49 0 0 1 1.094-.046c1.023 0 2.422.07 3.777.07c1.547 0 3.028-.09 3.852-.457c1.851-.824 1.851-2.25 1.738-2.961c-.133-.781-2.02-2.121-6.672-2.16m0 0\\\"/><path fill=\\\"#221f1f\\\" d=\\\"m55.758 65.367l.148-.027l.168-.031c2.242-.457 3.895-1.758 3.91-3.055a1.548 1.548 0 0 0-.183-.754c-.582-1.078-2.442-1.672-4.57-1.41l-.344.047c-2.567.43-4.453 1.945-4.211 3.39c.015.078.039.16.066.239c.438 1.297 2.594 2.007 5.016 1.605Zm-21.672 55.13c0 .6-.133 1.187-.395 1.679c-.593 1.164-1.64 1.746-3.109 1.746c-.984 0-1.746-.277-2.273-.82c-.856-.899-.817-2.243-.817-2.25l-.629-.032c0 .07-.054 1.618.989 2.711c.652.68 1.566 1.02 2.73 1.02c2.148 0 3.18-1.133 3.672-2.086c.309-.61.465-1.285.46-1.969v-12.129h-.628Zm8.469-12.102a.387.387 0 0 0-.367.261l-5.196 15.715h.653l1.52-4.465h6.8l1.527 4.465h.664l-5.246-15.715a.387.387 0 0 0-.355-.261m-3.188 10.882l3.188-9.71l3.203 9.71Zm11.774 5.055h7.601v-.629H51.77v-7.098h6.558v-.628H51.77v-7.098h6.972v-.629h-7.597Zm20.609-11.715c0-.074.063-1.816-1.16-3.09c-.813-.851-1.988-1.277-3.488-1.277c-1.512 0-2.696.426-3.508 1.277c-1.211 1.262-1.149 2.973-1.149 3.035v7.762c0 .93.262 1.805.75 2.528c.582.867 1.727 1.894 3.895 1.894c.71 0 1.36-.074 1.93-.21A3.622 3.622 0 0 0 71.75 121v-3.898h-4.02v.625h3.391V121a2.986 2.986 0 0 1-2.25 2.922c-.582.133-1.183.2-1.781.195c-1.516 0-2.649-.543-3.371-1.617a3.815 3.815 0 0 1-.64-2.176v-7.781c0-.016-.056-1.512.972-2.582c.687-.723 1.719-1.082 3.05-1.082c1.32 0 2.34.36 3.032 1.074c1.035 1.078.988 2.617.988 2.637l.629.023Zm4.184 11.715h7.687v-.629h-7.058v-7.098h6.46v-.628h-6.46v-7.098h7.058v-.629h-7.687Zm20.64.031l-3.398-6.93c.656-.195 1.254-.488 1.719-.945c.699-.687 1.054-1.68 1.054-2.949c0-3.133-1.597-4.566-2.554-4.996c-.446-.2-.93-.3-1.418-.293h-4.582v16.082h.628v-6.598c.266 0 .54.004.82.016c1.223.023 2.54.055 3.704-.168l3.332 6.777Zm-7.719-7.242a29.552 29.552 0 0 0-.832-.016v-8.226h3.954c.414 0 .808.074 1.164.238c.996.45 2.183 1.785 2.183 4.422c0 1.11-.285 1.93-.867 2.5c-1.207 1.176-3.539 1.121-5.602 1.082m0 0\\\"/>\"\n\t\t},\n\t\t\"jamstack\": {\n\t\t\t\"body\": \"<path fill=\\\"#f0047f\\\" d=\\\"M61.928 9.176c-30.459 0-55.078 24.61-55.078 55.053c0 30.438 24.62 55.048 55.078 55.048c30.458 0 55.078-24.61 55.078-55.048V9.176zm1.166 14.654h38.635v38.615H63.094zM20.986 65.932h38.621v38.6c-20.905-.887-37.734-17.71-38.62-38.6zm42.108.076h38.615c-.881 20.89-17.715 37.714-38.615 38.596z\\\"/>\"\n\t\t},\n\t\t\"jamstack-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#242424\\\" d=\\\"M41.844 64.64v-7.648h-3.215v8.45c0 .703-.05 1.609-.969 1.609c-.816 0-.937-.836-.969-1.473h-3.418c0 1.852.747 3.356 2.532 4.004a4.733 4.733 0 0 0 1.703.309c1.344 0 2.703-.598 3.554-1.66c.782-.993.782-2.376.782-3.59zm11.765 5.012v-9.496h-2.824v1.008h-.035c-.559-.941-1.719-1.332-2.754-1.332c-2.84 0-4.746 2.293-4.746 5.063c0 2.824 1.836 5.082 4.746 5.082c1.02 0 2.246-.375 2.754-1.352h.035v1.027zm-2.824-4.757c0 1.37-.988 2.43-2.363 2.43c-1.328 0-2.348-1.079-2.348-2.395c0-1.352.953-2.446 2.328-2.446c1.38 0 2.383 1.024 2.383 2.41zm19.375 4.757V64.47c0-1.457.05-2.586-1.02-3.68c-.663-.684-1.546-.957-2.484-.957c-1.273 0-2.312.613-2.992 1.691c-.578-1.078-1.496-1.691-2.723-1.691c-1.07 0-2.058.36-2.601 1.332h-.035v-1.008h-2.637v9.496h2.824v-5.047c0-1.113.29-2.105 1.598-2.105c1.191 0 1.414 1.008 1.414 1.984v5.168h2.824V64.47c0-1.078.305-1.969 1.563-1.969c1.312 0 1.445 1.063 1.445 2.105v5.047zm9.063-2.91c0-3.351-4.746-2.515-4.746-4.004c0-.426.425-.633.8-.633c.493 0 .868.188.883.72h2.774c-.188-2.02-1.735-2.993-3.621-2.993c-1.82 0-3.66 1.145-3.66 3.129c0 1.336 1.124 2.07 2.245 2.48c.41.157.817.293 1.227.43c.508.203 1.273.41 1.273 1.094c0 .496-.558.738-.984.738c-.562 0-.988-.293-1.074-.875h-2.805c.219 2.09 1.871 3.149 3.844 3.149c1.922 0 3.844-1.094 3.844-3.235m6.16-4.43v-2.156H84.02v-3.164h-2.825v3.164h-1.394v2.156h1.394v7.34h2.825v-7.34zm10.883 7.34v-9.496H93.44v1.008h-.03c-.563-.941-1.72-1.332-2.759-1.332c-2.84 0-4.746 2.293-4.746 5.063c0 2.824 1.84 5.082 4.746 5.082c1.02 0 2.246-.375 2.758-1.352h.031v1.027zm-2.825-4.757c0 1.37-.984 2.43-2.363 2.43c-1.328 0-2.348-1.079-2.348-2.395c0-1.352.954-2.446 2.332-2.446c1.376 0 2.38 1.024 2.38 2.41zm14.426 1.148h-2.87c-.427.82-1.11 1.266-2.044 1.266c-1.379 0-2.246-1.079-2.246-2.414c0-1.282.816-2.41 2.18-2.41c.968 0 1.699.445 2.11 1.331h2.855c-.493-2.41-2.586-3.984-5-3.984c-2.809 0-4.985 2.242-4.985 5.047c0 2.84 2.227 5.082 5.051 5.082c2.383 0 4.406-1.594 4.95-3.918zm10.238-5.887h-3.351l-2.621 3.438h-.035v-6.602h-2.82v12.66h2.82v-4.57h.035l2.672 4.57H118l-3.453-5.32zm0 0\\\"/><path fill=\\\"#f0047f\\\" d=\\\"M17.371 53.676c-5.7 0-10.305 4.636-10.305 10.367c0 5.73 4.606 10.367 10.305 10.367c5.7 0 10.305-4.637 10.305-10.367V53.676zm.32 2.758h7.23v7.273h-7.23zm-7.878 7.93h7.226v7.269c-3.91-.168-7.062-3.336-7.227-7.27zm7.878.015h7.227c-.168 3.934-3.316 7.101-7.227 7.266z\\\"/>\"\n\t\t},\n\t\t\"jasmine\": {\n\t\t\t\"body\": \"<path fill=\\\"#8a4182\\\" d=\\\"M64 0a64 64 0 1 0 64 64A64 64 0 0 0 64 0m7.571 13.405a50.615 50.615 0 0 1 42.697 49.992a50.615 50.615 0 0 1-50.615 50.625v-.01A50.615 50.615 0 1 1 71.57 13.405Zm-15.24 9.386v26.3l2.608 3.353h9.653l2.444-3.353v-26.3Zm30.217 5.394L74.82 44.325l3.243 2.356L89.79 30.54zm-45.161.002l-3.244 2.355L49.87 46.681l3.243-2.355zM28.09 43.415l-4.552 13.978l25.022 8.13l3.989-1.441l2.985-9.183l-2.434-3.363zm71.403 0l-25.012 8.12l-2.382 3.508l2.985 9.193l3.937 1.288l25.022-8.13zm-14.992 23.88l-1.239 3.81l18.973 6.166l1.238-3.81zm-41.57.002l-18.973 6.165l1.238 3.81l18.973-6.164zm10.884.527l-3.937 1.269l-15.47 21.289l11.902 8.64l15.451-21.29l-.133-4.234zm19.807.04L65.8 73.54v4.152L81.26 98.97l11.891-8.64l-15.46-21.278ZM61.526 83.418v19.95h4.008v-19.95Z\\\"/>\"\n\t\t},\n\t\t\"jasmine-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#8a4182\\\" d=\\\"M64.002 6.11a44.653 44.653 0 1 0 44.653 44.652A44.653 44.653 0 0 0 64.002 6.11m5.282 9.36a35.312 35.312 0 0 1 29.787 34.877A35.312 35.312 0 0 1 63.759 85.66a35.312 35.312 0 1 1 5.525-70.189Zm-10.629 6.532v18.357l1.809 2.335h6.743l1.708-2.335V22.002ZM48.22 25.763l-2.259 1.641l8.183 11.262l2.257-1.64zm31.52.004l-8.181 11.26l2.256 1.641L82 27.408zM38.943 36.396l-3.165 9.756l17.449 5.66l2.79-.999l2.083-6.41l-1.698-2.335zm49.828 0l-17.458 5.672l-1.659 2.447l2.083 6.409l2.749.888l17.45-5.66zM49.3 53.054l-13.239 4.3l.863 2.655l13.24-4.3zm29 .006l-.863 2.652l13.24 4.302l.861-2.653zm-21.404.36l-2.75.89l-10.787 14.85l8.299 6.026l10.788-14.84l-.092-2.962zm13.82.041l-5.46 3.953v2.89l10.787 14.85l8.298-6.023l-10.786-14.85ZM62.273 64.31v13.92h2.792V64.31Zm21.644 34.897v4.044h3.79v-4.044zm-76.961.03v3.599h2.416v11.12a6.066 6.066 0 0 1-.436 2.8a2.305 2.305 0 0 1-2.081 1.214a2.588 2.588 0 0 1-2.427-2.77H.01c-.202 4.044 2.892 6.692 6.876 6.692a7.077 7.077 0 0 0 5.196-2.243c1.406-1.618 1.527-3.146 1.527-5.168v-11.696h2.446v-3.548Zm112.486 5.096a8.775 8.775 0 0 0 .09 17.549a8.522 8.522 0 0 0 7.835-5.317l.032-.04h-3.953a4.62 4.62 0 0 1-4.044 2.022a5.125 5.125 0 0 1-4.973-3.985h13.444l.122-1.334a8.674 8.674 0 0 0-2.336-6.216a8.896 8.896 0 0 0-6.217-2.68zm-94.542.1a8.785 8.785 0 0 0-8.704 8.807a8.603 8.603 0 0 0 8.522 8.642a6.146 6.146 0 0 0 5.347-2.68v2.256h5.945v-3.549h-2.083v-9.523h2.083v-3.548h-5.945v2.395a5.965 5.965 0 0 0-5.165-2.8m36.766 0a5.51 5.51 0 0 0-4.74 2.891v-2.486h-5.641v3.548h2.132v9.513h-2.142v3.549h8.087v-3.549h-2.144v-5.135a4.852 4.852 0 0 1 .9-3.386a3.245 3.245 0 0 1 2.65-1.215a3.033 3.033 0 0 1 2.739 1.526a6.571 6.571 0 0 1 .495 3.114v5.055h-2.154v3.548h8.088v-3.548h-2.143v-5.347a4.478 4.478 0 0 1 .778-3.143a3.68 3.68 0 0 1 2.8-1.244a3.255 3.255 0 0 1 2.711 1.364a6.197 6.197 0 0 1 .496 3.033v5.369h-2.145v3.548h8.088v-3.548h-2.143v-6.29c0-1.88 0-3.527-1.305-5.054a6.41 6.41 0 0 0-4.792-2.113a5.965 5.965 0 0 0-5.447 3.487a5.651 5.651 0 0 0-5.168-3.487m40.195.03a5.378 5.378 0 0 0-4.913 2.74v-2.365h-5.943v3.548h2.113v9.472h-2.144v3.548h8.087v-3.548H96.92v-4.822a5.853 5.853 0 0 1 .717-3.487a3.73 3.73 0 0 1 3.032-1.396a3.63 3.63 0 0 1 2.923 1.335a4.812 4.812 0 0 1 .657 3.033v5.347h-2.144v3.55h8.087v-3.55h-2.142v-6.5c0-1.85-.031-3.357-1.396-4.883a6.581 6.581 0 0 0-4.792-2.022zm-59.16.01c-2.951 0-5.63 1.88-5.63 5.055c0 3.64 3.174 4.54 6.065 5.287c1.274.344 2.831.627 2.831 2.275a2.163 2.163 0 0 1-2.274 2.022a2.537 2.537 0 0 1-2.68-2.486l.01-.01h-3.891v4.822h2.89v-1.365a5.408 5.408 0 0 0 4.297 1.799c3.113 0 5.945-1.87 5.945-5.226c0-3.73-3.155-4.662-6.188-5.35c-1.213-.272-2.739-.614-2.739-2.171a1.91 1.91 0 0 1 2.113-1.74a2.022 2.022 0 0 1 2.142 1.96h3.67v-4.507h-2.799v1.132a4.428 4.428 0 0 0-3.761-1.497zm39.064.365v3.539h2.152v9.522h-2.152v3.549h8.087v-3.549h-2.144v-13.06zm37.485 2.89a5.307 5.307 0 0 1 5.227 3.924h-10.08a5.146 5.146 0 0 1 4.853-3.923zm-94.179.376a4.994 4.994 0 0 1 5.055 4.942a5.055 5.055 0 0 1-5.165 5.136a5.055 5.055 0 0 1-4.944-4.942a5.055 5.055 0 0 1 5.054-5.136\\\"/>\"\n\t\t},\n\t\t\"java\": {\n\t\t\t\"body\": \"<path fill=\\\"#0074BD\\\" d=\\\"M47.617 98.12s-4.767 2.774 3.397 3.71c9.892 1.13 14.947.968 25.845-1.092c0 0 2.871 1.795 6.873 3.351c-24.439 10.47-55.308-.607-36.115-5.969m-2.988-13.665s-5.348 3.959 2.823 4.805c10.567 1.091 18.91 1.18 33.354-1.6c0 0 1.993 2.025 5.132 3.131c-29.542 8.64-62.446.68-41.309-6.336\\\"/><path fill=\\\"#EA2D2E\\\" d=\\\"M69.802 61.271c6.025 6.935-1.58 13.17-1.58 13.17s15.289-7.891 8.269-17.777c-6.559-9.215-11.587-13.792 15.635-29.58c0 .001-42.731 10.67-22.324 34.187\\\"/><path fill=\\\"#0074BD\\\" d=\\\"M102.123 108.229s3.529 2.91-3.888 5.159c-14.102 4.272-58.706 5.56-71.094.171c-4.451-1.938 3.899-4.625 6.526-5.192c2.739-.593 4.303-.485 4.303-.485c-4.953-3.487-32.013 6.85-13.743 9.815c49.821 8.076 90.817-3.637 77.896-9.468M49.912 70.294s-22.686 5.389-8.033 7.348c6.188.828 18.518.638 30.011-.326c9.39-.789 18.813-2.474 18.813-2.474s-3.308 1.419-5.704 3.053c-23.042 6.061-67.544 3.238-54.731-2.958c10.832-5.239 19.644-4.643 19.644-4.643m40.697 22.747c23.421-12.167 12.591-23.86 5.032-22.285c-1.848.385-2.677.72-2.677.72s.688-1.079 2-1.543c14.953-5.255 26.451 15.503-4.823 23.725c0-.002.359-.327.468-.617\\\"/><path fill=\\\"#EA2D2E\\\" d=\\\"M76.491 1.587S89.459 14.563 64.188 34.51c-20.266 16.006-4.621 25.13-.007 35.559c-11.831-10.673-20.509-20.07-14.688-28.815C58.041 28.42 81.722 22.195 76.491 1.587\\\"/><path fill=\\\"#0074BD\\\" d=\\\"M52.214 126.021c22.476 1.437 57-.8 57.817-11.436c0 0-1.571 4.032-18.577 7.231c-19.186 3.612-42.854 3.191-56.887.874c0 .001 2.875 2.381 17.647 3.331\\\"/>\"\n\t\t},\n\t\t\"java-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0074BD\\\" d=\\\"M52.581 67.817s-3.284 1.911 2.341 2.557c6.814.778 10.297.666 17.805-.753c0 0 1.979 1.237 4.735 2.309c-16.836 7.213-38.104-.418-24.881-4.113m-2.059-9.415s-3.684 2.729 1.945 3.311c7.28.751 13.027.813 22.979-1.103c0 0 1.373 1.396 3.536 2.157c-20.352 5.954-43.021.469-28.46-4.365\\\"/><path fill=\\\"#EA2D2E\\\" d=\\\"M67.865 42.431c4.151 4.778-1.088 9.074-1.088 9.074s10.533-5.437 5.696-12.248c-4.519-6.349-7.982-9.502 10.771-20.378c.001 0-29.438 7.35-15.379 23.552\\\"/><path fill=\\\"#0074BD\\\" d=\\\"M90.132 74.781s2.432 2.005-2.678 3.555c-9.716 2.943-40.444 3.831-48.979.117c-3.066-1.335 2.687-3.187 4.496-3.576c1.887-.409 2.965-.334 2.965-.334c-3.412-2.403-22.055 4.719-9.469 6.762c34.324 5.563 62.567-2.506 53.665-6.524m-35.97-26.134s-15.629 3.713-5.534 5.063c4.264.57 12.758.439 20.676-.225c6.469-.543 12.961-1.704 12.961-1.704s-2.279.978-3.93 2.104c-15.874 4.175-46.533 2.23-37.706-2.038c7.463-3.611 13.533-3.2 13.533-3.2M82.2 64.317c16.135-8.382 8.674-16.438 3.467-15.353c-1.273.266-1.845.496-1.845.496s.475-.744 1.378-1.063c10.302-3.62 18.223 10.681-3.322 16.345c0 0 .247-.224.322-.425\\\"/><path fill=\\\"#EA2D2E\\\" d=\\\"M72.474 1.313s8.935 8.939-8.476 22.682c-13.962 11.027-3.184 17.313-.006 24.498c-8.15-7.354-14.128-13.828-10.118-19.852c5.889-8.842 22.204-13.131 18.6-27.328\\\"/><path fill=\\\"#0074BD\\\" d=\\\"M55.749 87.039c15.484.99 39.269-.551 39.832-7.878c0 0-1.082 2.777-12.799 4.981c-13.218 2.488-29.523 2.199-39.191.603c0 0 1.98 1.64 12.158 2.294\\\"/><path fill=\\\"#EA2D2E\\\" d=\\\"M94.866 100.181h-.472v-.264h1.27v.264h-.47v1.317h-.329zm2.535.066h-.006l-.468 1.251h-.216l-.465-1.251h-.005v1.251h-.312v-1.581h.457l.431 1.119l.432-1.119h.454v1.581h-.302zm-44.19 14.79c-1.46 1.266-3.004 1.978-4.391 1.978c-1.974 0-3.045-1.186-3.045-3.085c0-2.055 1.146-3.56 5.738-3.56h1.697zm4.031 4.548v-14.077c0-3.599-2.053-5.973-6.997-5.973c-2.886 0-5.416.714-7.473 1.622l.592 2.493c1.62-.595 3.715-1.147 5.771-1.147c2.85 0 4.075 1.147 4.075 3.521v1.779h-1.424c-6.921 0-10.044 2.685-10.044 6.723c0 3.479 2.058 5.456 5.933 5.456c2.49 0 4.351-1.028 6.088-2.533l.316 2.137h3.163zm13.452 0h-5.027l-6.051-19.689h4.391l3.756 12.099l.835 3.635c1.896-5.258 3.24-10.596 3.912-15.733h4.271c-1.143 6.481-3.203 13.598-6.087 19.688m19.288-4.548c-1.465 1.266-3.01 1.978-4.392 1.978c-1.976 0-3.046-1.186-3.046-3.085c0-2.055 1.149-3.56 5.736-3.56h1.701v4.667zm4.033 4.548v-14.077c0-3.599-2.059-5.973-6.999-5.973c-2.889 0-5.418.714-7.475 1.622l.593 2.493c1.62-.595 3.718-1.147 5.774-1.147c2.846 0 4.074 1.147 4.074 3.521v1.779h-1.424c-6.923 0-10.045 2.685-10.045 6.723c0 3.479 2.056 5.456 5.93 5.456c2.491 0 4.349-1.028 6.091-2.533l.318 2.137h3.163zm-56.693 3.346c-1.147 1.679-3.005 3.008-5.037 3.757l-1.989-2.345c1.547-.794 2.872-2.075 3.489-3.269c.532-1.063.753-2.43.753-5.701V92.891h4.284v22.173c0 4.375-.348 6.144-1.5 7.867\\\"/>\"\n\t\t},\n\t\t\"javascript\": {\n\t\t\t\"body\": \"<path fill=\\\"#F0DB4F\\\" d=\\\"M1.408 1.408h125.184v125.185H1.408z\\\"/><path fill=\\\"#323330\\\" d=\\\"M116.347 96.736c-.917-5.711-4.641-10.508-15.672-14.981c-3.832-1.761-8.104-3.022-9.377-5.926c-.452-1.69-.512-2.642-.226-3.665c.821-3.32 4.784-4.355 7.925-3.403c2.023.678 3.938 2.237 5.093 4.724c5.402-3.498 5.391-3.475 9.163-5.879c-1.381-2.141-2.118-3.129-3.022-4.045c-3.249-3.629-7.676-5.498-14.756-5.355l-3.688.477c-3.534.893-6.902 2.748-8.877 5.235c-5.926 6.724-4.236 18.492 2.975 23.335c7.104 5.332 17.54 6.545 18.873 11.531c1.297 6.104-4.486 8.08-10.234 7.378c-4.236-.881-6.592-3.034-9.139-6.949c-4.688 2.713-4.688 2.713-9.508 5.485c1.143 2.499 2.344 3.63 4.26 5.795c9.068 9.198 31.76 8.746 35.83-5.176c.165-.478 1.261-3.666.38-8.581M69.462 58.943H57.753l-.048 30.272c0 6.438.333 12.34-.714 14.149c-1.713 3.558-6.152 3.117-8.175 2.427c-2.059-1.012-3.106-2.451-4.319-4.485c-.333-.584-.583-1.036-.667-1.071l-9.52 5.83c1.583 3.249 3.915 6.069 6.902 7.901c4.462 2.678 10.459 3.499 16.731 2.059c4.082-1.189 7.604-3.652 9.448-7.401c2.666-4.915 2.094-10.864 2.07-17.444c.06-10.735.001-21.468.001-32.237\\\"/>\"\n\t\t},\n\t\t\"jeet\": {\n\t\t\t\"body\": \"<defs><path id=\\\"deviconJeet0\\\" d=\\\"M81.048 60.31a23.305 23.305 0 0 1-.744 3.75c-.15 8.476-6.817 15.36-15.206 15.85a23.25 23.25 0 0 1-4.68 1.03l-9.274 9.273l27.25 27.252l8.642-8.64c.667-11.898 10.196-21.428 22.093-22.094l7.25-7.25l-27.25-27.25l-8.082 8.08z\\\"/></defs><clipPath id=\\\"deviconJeet1\\\"><use href=\\\"#deviconJeet0\\\"/></clipPath><linearGradient id=\\\"deviconJeet2\\\" x1=\\\"-286.663\\\" x2=\\\"-285.993\\\" y1=\\\"7.854\\\" y2=\\\"7.854\\\" gradientTransform=\\\"rotate(130.9 -6240.933 3133.735)scale(44.3)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#09e09c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00bfff\\\"/></linearGradient><path fill=\\\"url(#deviconJeet2)\\\" d=\\\"m148.662 80.175l-60.226 69.57L18.864 89.52L79.09 19.948z\\\" clip-path=\\\"url(#deviconJeet1)\\\"/><defs><path id=\\\"deviconJeet3\\\" d=\\\"m12.338 78.658l8.08 8.08c10.818 1.232 19.4 9.814 20.63 20.63l9.275 9.274L77.575 89.39l-8.64-8.642a23.367 23.367 0 0 1-4.932-.815c-8.537-.072-15.494-6.76-15.996-15.19a23.41 23.41 0 0 1-1.166-6.088l-7.25-7.25L12.34 78.658z\\\"/></defs><clipPath id=\\\"deviconJeet4\\\"><use href=\\\"#deviconJeet3\\\"/></clipPath><linearGradient id=\\\"deviconJeet5\\\" x1=\\\"-281.399\\\" x2=\\\"-280.73\\\" y1=\\\"14.666\\\" y2=\\\"14.666\\\" gradientTransform=\\\"rotate(46.4 -5355.355 14435.11)scale(42.8)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffc800\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00bfff\\\"/></linearGradient><path fill=\\\"url(#deviconJeet5)\\\" d=\\\"m46.572 18.83l63.58 66.812l-66.812 63.58l-63.58-66.813z\\\" clip-path=\\\"url(#deviconJeet4)\\\"/><defs><path id=\\\"deviconJeet6\\\" d=\\\"M41.26 19.207C40.595 31.104 31.066 40.633 19.17 41.3l-7.252 7.25L39.17 75.802l8.082-8.082c.144-1.267.393-2.503.73-3.7c0-.084-.006-.166-.006-.25c0-8.93 7.24-16.168 16.17-16.168c.26 0 .522.007.782.02a23.327 23.327 0 0 1 2.954-.53l9.274-9.275L49.9 10.567z\\\"/></defs><clipPath id=\\\"deviconJeet7\\\"><use href=\\\"#deviconJeet6\\\"/></clipPath><linearGradient id=\\\"deviconJeet8\\\" x1=\\\"-289.46\\\" x2=\\\"-288.79\\\" y1=\\\"21.371\\\" y2=\\\"21.371\\\" gradientTransform=\\\"matrix(29 -29.5 29.5 29 7798.318 -9105.38)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffc800\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff664a\\\"/></linearGradient><path fill=\\\"url(#deviconJeet8)\\\" d=\\\"m-20.698 43.742l64.675-65.79l65.79 64.675l-64.674 65.79z\\\" clip-path=\\\"url(#deviconJeet7)\\\"/><defs><path id=\\\"deviconJeet9\\\" d=\\\"m50.257 38.646l8.642 8.64a23.46 23.46 0 0 1 3.343.43a16.348 16.348 0 0 1 1.9-.114c8.93 0 16.17 7.24 16.17 16.168c0 .35-.014.695-.036 1.04c.38 1.47.628 3 .716 4.57l7.25 7.25l27.252-27.252l-8.082-8.082c-10.817-1.23-19.398-9.813-20.63-20.63l-9.274-9.274l-27.253 27.254z\\\"/></defs><clipPath id=\\\"deviconJeeta\\\"><use href=\\\"#deviconJeet9\\\"/></clipPath><linearGradient id=\\\"deviconJeetb\\\" x1=\\\"-294.236\\\" x2=\\\"-293.566\\\" y1=\\\"12.616\\\" y2=\\\"12.616\\\" gradientTransform=\\\"rotate(-135.8 -7139.432 -2558.264)scale(48.1)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#09e09c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff664a\\\"/></linearGradient><path fill=\\\"url(#deviconJeetb)\\\" d=\\\"M83.834 109.235L17.652 44.972L81.916-21.21l66.182 64.264z\\\" clip-path=\\\"url(#deviconJeeta)\\\"/><path fill=\\\"#FFC800\\\" d=\\\"M23.948 87.24C10.988 87.24.48 76.732.48 63.77c0-12.96 10.507-23.468 23.468-23.468s23.468 10.507 23.468 23.47c0 12.96-10.507 23.468-23.468 23.468\\\"/><path fill=\\\"#FF664A\\\" d=\\\"M63.528 47.66c-12.96 0-23.468-10.507-23.468-23.468C40.06 11.23 50.566.722 63.528.722c12.96 0 23.468 10.508 23.468 23.47c0 12.96-10.508 23.468-23.468 23.468\\\"/><path fill=\\\"#00BFFF\\\" d=\\\"M64.143 127.277c-12.96 0-23.468-10.507-23.468-23.468c0-12.963 10.507-23.47 23.468-23.47S87.61 90.847 87.61 103.81c0 12.96-10.506 23.467-23.467 23.467\\\"/><path fill=\\\"#09E09C\\\" d=\\\"M104.052 88.027c-12.96 0-23.468-10.507-23.468-23.468c0-12.963 10.507-23.47 23.468-23.47s23.468 10.507 23.468 23.47c0 12.96-10.507 23.467-23.468 23.467\\\"/>\"\n\t\t},\n\t\t\"jeet-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#FF664A\\\" d=\\\"M53.635 90.29c9.072 0 12.84 4.92 12.52 10.99c-.19 7.282-7.35 11.686-14.06 11.69c-4.146 0-5.784-1.68-6.203-2.957c-.24-.73-1.056-.486-1.074.145c-.104 3.742 1.98 8.304 8.433 8.304c4.92 0 8.88-2.81 8.88-2.81c1.343 1.34 1.853 2.81 1.79 4.47c-.255 3.514-4.92 6.582-12.457 6.582c-11.946 0-16.418-8.242-15.907-16.994c.64-11.37 7.73-19.42 18.08-19.42M49.8 106.518c3.705 0 7.09-1.405 7.155-4.792c.064-2.108-1.47-3.577-4.09-3.577c-4.28 0-6.643 3.45-7.218 6.39c-.065.51-.193 1.212-.193 1.212c.32.128 1.79.767 4.345.767M85.577 90.29c9.072 0 12.84 4.92 12.52 10.99c-.19 7.282-7.35 11.686-14.06 11.69c-4.146 0-5.784-1.68-6.203-2.957c-.24-.73-1.056-.486-1.074.145c-.104 3.742 1.98 8.304 8.433 8.304c4.92 0 8.88-2.81 8.88-2.81c1.342 1.34 1.852 2.81 1.79 4.47c-.256 3.514-4.92 6.582-12.458 6.582c-11.946 0-16.418-8.242-15.907-16.994c.64-11.37 7.73-19.42 18.08-19.42m-3.834 16.227c3.705 0 7.09-1.405 7.155-4.792c.063-2.108-1.47-3.577-4.09-3.577c-4.28 0-6.644 3.45-7.22 6.39c-.063.51-.19 1.212-.19 1.212c.32.128 1.79.767 4.344.767m21.65-7.475c-4.518 0-4.09-2.457-4.124-3.87c-.036-1.467 1.46-3.348 2.89-3.623c4.14-.796 4.274-4.136 4.85-5.988c.382-1.15.957-1.597 2.043-1.597h3.194c1.342 0 2.3.895 2.045 2.62a76.994 76.994 0 0 1-.64 4.343c1.343.063 1.006 0 3.18 0c3.22 0 4.47 1.697 4.46 4.32c-.005 1.48-1.458 3.73-4.6 3.73h-4.06c-.767 5.174-1.725 12.01-2.172 15.906c-.255 2.683.932 3.302 2.784 3.302c1.342.064 3.365-.996 4.083-1.574c2.826 3.317 2.094 10.09-7.046 10.09c-6.643 0-9.845-5.093-9.08-11.673c.448-3.578 2.193-15.988 2.193-15.988M32.91 82.624H22.414c-1.277 0-5.06.37-5.32 4.265c-.23 3.47 1.528 5.08 5.462 5.08c2.022 0 4.147-1.476 5.084-2.012c1.08-.617 1.688.21.926.865c-1.42 1.223-2.732 2.61-3.537 7.002l-2.132 13.034c-.64 4.407-2.555 6.515-5.75 6.515c-2.874 0-4.896-1.613-6.593-3.85c-3.393 1.08-5.167 5.786-2.687 8.91c1.13 1.422 3.467 4.268 9.408 4.268c6.16 0 13.178-2.996 14.913-14.885c.847-5.81 3.21-21.018 3.593-23.7c.32-2.427.704-5.494-2.873-5.494\\\"/><defs><path id=\\\"deviconJeetWordmark0\\\" d=\\\"M74.773 38.578a14.728 14.728 0 0 1-.47 2.37c-.094 5.356-4.308 9.706-9.61 10.016a14.71 14.71 0 0 1-2.956.65l-5.86 5.86l17.22 17.222l5.46-5.46c.422-7.52 6.444-13.54 13.963-13.962l4.582-4.582l-17.222-17.22z\\\"/></defs><clipPath id=\\\"deviconJeetWordmark1\\\"><use href=\\\"#deviconJeetWordmark0\\\"/></clipPath><linearGradient id=\\\"deviconJeetWordmark2\\\" x1=\\\"-284.432\\\" x2=\\\"-284.009\\\" y1=\\\"-141.754\\\" y2=\\\"-141.754\\\" gradientTransform=\\\"rotate(130.9 -7705.164 -218.84)scale(44.3)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#09e09c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00bfff\\\"/></linearGradient><path fill=\\\"url(#deviconJeetWordmark2)\\\" d=\\\"M117.5 51.13L79.443 95.096L35.477 57.037l38.06-43.965z\\\" clip-path=\\\"url(#deviconJeetWordmark1)\\\"/><defs><path id=\\\"deviconJeetWordmark3\\\" d=\\\"m31.353 50.173l5.107 5.107c6.835.778 12.258 6.2 13.037 13.036l5.86 5.86l17.222-17.22l-5.462-5.46a14.743 14.743 0 0 1-3.116-.516c-5.395-.046-9.79-4.272-10.11-9.598a14.805 14.805 0 0 1-.736-3.848l-4.582-4.582z\\\"/></defs><clipPath id=\\\"deviconJeetWordmark4\\\"><use href=\\\"#deviconJeetWordmark3\\\"/></clipPath><linearGradient id=\\\"deviconJeetWordmark5\\\" x1=\\\"-279.176\\\" x2=\\\"-278.753\\\" y1=\\\"-131.559\\\" y2=\\\"-131.559\\\" gradientTransform=\\\"matrix(29.5 31 -31 29.5 4203.172 12582.555)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffc800\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00bfff\\\"/></linearGradient><path fill=\\\"url(#deviconJeetWordmark5)\\\" d=\\\"m52.987 12.365l40.178 42.22l-42.22 40.18l-40.18-42.222z\\\" clip-path=\\\"url(#deviconJeetWordmark4)\\\"/><defs><path id=\\\"deviconJeetWordmark6\\\" d=\\\"M49.63 12.604c-.42 7.518-6.442 13.54-13.96 13.962l-4.584 4.582l17.22 17.22l5.108-5.106c.09-.8.248-1.582.462-2.338c0-.053-.004-.105-.004-.158c0-5.643 4.574-10.217 10.218-10.217c.166 0 .33.004.495.01c.608-.15 1.23-.262 1.866-.334l5.862-5.86l-17.22-17.223l-5.46 5.46z\\\"/></defs><clipPath id=\\\"deviconJeetWordmark7\\\"><use href=\\\"#deviconJeetWordmark6\\\"/></clipPath><linearGradient id=\\\"deviconJeetWordmark8\\\" x1=\\\"-291.496\\\" x2=\\\"-291.073\\\" y1=\\\"-124.258\\\" y2=\\\"-124.258\\\" gradientTransform=\\\"matrix(29 -29.5 29.5 29 12164.318 -4961.38)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffc800\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff664a\\\"/></linearGradient><path fill=\\\"url(#deviconJeetWordmark8)\\\" d=\\\"m10.477 28.108l40.87-41.574l41.575 40.87l-40.87 41.574z\\\" clip-path=\\\"url(#deviconJeetWordmark7)\\\"/><defs><path id=\\\"deviconJeetWordmark9\\\" d=\\\"m55.315 24.888l5.46 5.46c.72.04 1.425.133 2.114.272c.393-.046.794-.073 1.2-.073c5.643 0 10.218 4.574 10.218 10.217c0 .22-.01.44-.023.657c.24.93.397 1.897.453 2.89l4.582 4.58l17.22-17.22l-5.107-5.106c-6.835-.778-12.258-6.2-13.037-13.037l-5.86-5.86z\\\"/></defs><clipPath id=\\\"deviconJeetWordmarka\\\"><use href=\\\"#deviconJeetWordmark9\\\"/></clipPath><linearGradient id=\\\"deviconJeetWordmarkb\\\" x1=\\\"-295.916\\\" x2=\\\"-295.493\\\" y1=\\\"-137.458\\\" y2=\\\"-137.458\\\" gradientTransform=\\\"rotate(-135.8 -5725.665 -6191.177)scale(48.1)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#09e09c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff664a\\\"/></linearGradient><path fill=\\\"url(#deviconJeetWordmarkb)\\\" d=\\\"m76.533 69.495l-41.82-40.61l40.608-41.82l41.824 40.608z\\\" clip-path=\\\"url(#deviconJeetWordmarka)\\\"/><path fill=\\\"#FFC800\\\" d=\\\"M38.69 55.596c-8.19 0-14.83-6.64-14.83-14.83c0-8.192 6.64-14.832 14.83-14.832s14.83 6.64 14.83 14.83c0 8.192-6.64 14.832-14.83 14.832\\\"/><path fill=\\\"#FF664A\\\" d=\\\"M63.702 30.584c-8.19 0-14.83-6.64-14.83-14.83c0-8.19 6.64-14.83 14.83-14.83c8.19 0 14.83 6.64 14.83 14.83c0 8.19-6.64 14.83-14.83 14.83\\\"/><path fill=\\\"#00BFFF\\\" d=\\\"M64.09 80.896c-8.19 0-14.83-6.64-14.83-14.83c0-8.19 6.64-14.83 14.83-14.83s14.83 6.64 14.83 14.83c0 8.19-6.64 14.83-14.83 14.83\\\"/><path fill=\\\"#09E09C\\\" d=\\\"M89.31 56.093c-8.19 0-14.83-6.64-14.83-14.83c0-8.19 6.64-14.83 14.83-14.83s14.83 6.64 14.83 14.83c0 8.19-6.64 14.83-14.83 14.83\\\"/><defs><path id=\\\"deviconJeetWordmarkc\\\" d=\\\"M81.048-87.69a23.305 23.305 0 0 1-.744 3.75c-.15 8.476-6.817 15.36-15.206 15.85a23.25 23.25 0 0 1-4.68 1.03l-9.274 9.273l27.25 27.252l8.642-8.64c.667-11.898 10.196-21.428 22.093-22.094l7.25-7.25l-27.25-27.25l-8.082 8.08z\\\"/></defs><clipPath id=\\\"deviconJeetWordmarkd\\\"><use href=\\\"#deviconJeetWordmarkc\\\"/></clipPath><linearGradient id=\\\"deviconJeetWordmarke\\\" x1=\\\"-286.663\\\" x2=\\\"-285.993\\\" y1=\\\"-140.146\\\" y2=\\\"-140.146\\\" gradientTransform=\\\"rotate(130.9 -7705.164 -218.84)scale(44.3)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#09e09c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00bfff\\\"/></linearGradient><path fill=\\\"url(#deviconJeetWordmarke)\\\" d=\\\"M148.662-67.825L88.436 1.745L18.864-58.48l60.227-69.572z\\\" clip-path=\\\"url(#deviconJeetWordmarkd)\\\"/><defs><path id=\\\"deviconJeetWordmarkf\\\" d=\\\"m12.338-69.342l8.08 8.08c10.818 1.232 19.4 9.814 20.63 20.63l9.275 9.274L77.575-58.61l-8.64-8.642a23.367 23.367 0 0 1-4.932-.815c-8.537-.072-15.494-6.76-15.996-15.19a23.41 23.41 0 0 1-1.166-6.088l-7.25-7.25L12.34-69.342z\\\"/></defs><clipPath id=\\\"deviconJeetWordmarkg\\\"><use href=\\\"#deviconJeetWordmarkf\\\"/></clipPath><linearGradient id=\\\"deviconJeetWordmarkh\\\" x1=\\\"-281.399\\\" x2=\\\"-280.73\\\" y1=\\\"-133.334\\\" y2=\\\"-133.334\\\" gradientTransform=\\\"matrix(29.5 31 -31 29.5 4203.172 12582.555)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffc800\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00bfff\\\"/></linearGradient><path fill=\\\"url(#deviconJeetWordmarkh)\\\" d=\\\"m46.572-129.17l63.58 66.812L43.34 1.222L-20.24-65.59z\\\" clip-path=\\\"url(#deviconJeetWordmarkg)\\\"/>\"\n\t\t},\n\t\t\"jekyll\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconJekyll0\\\"><use href=\\\"#deviconJekyllo\\\"/></clipPath><clipPath id=\\\"deviconJekyll1\\\"><use href=\\\"#deviconJekyllo\\\"/></clipPath><clipPath id=\\\"deviconJekyll2\\\"><use href=\\\"#deviconJekyllo\\\"/></clipPath><clipPath id=\\\"deviconJekyll3\\\"><use href=\\\"#deviconJekyllo\\\"/></clipPath><clipPath id=\\\"deviconJekyll4\\\"><use href=\\\"#deviconJekyllo\\\"/></clipPath><clipPath id=\\\"deviconJekyll5\\\"><use href=\\\"#deviconJekyllo\\\"/></clipPath><clipPath id=\\\"deviconJekyll6\\\"><use href=\\\"#deviconJekyllo\\\"/></clipPath><mask id=\\\"deviconJekyll7\\\"><g filter=\\\"url(#deviconJekylln)\\\"><use href=\\\"#deviconJekyllo\\\" fill-opacity=\\\".102\\\"/></g></mask><mask id=\\\"deviconJekyll8\\\"><g filter=\\\"url(#deviconJekylln)\\\"><use href=\\\"#deviconJekyllo\\\" fill-opacity=\\\".302\\\"/></g></mask><mask id=\\\"deviconJekyll9\\\"><g filter=\\\"url(#deviconJekylln)\\\"><use href=\\\"#deviconJekyllo\\\" fill-opacity=\\\".502\\\"/></g></mask><mask id=\\\"deviconJekylla\\\"><g filter=\\\"url(#deviconJekylln)\\\"><use href=\\\"#deviconJekyllo\\\" fill-opacity=\\\".502\\\"/></g></mask><mask id=\\\"deviconJekyllb\\\"><g filter=\\\"url(#deviconJekylln)\\\"><use href=\\\"#deviconJekyllo\\\" fill-opacity=\\\".502\\\"/></g></mask><mask id=\\\"deviconJekyllc\\\"><g filter=\\\"url(#deviconJekylln)\\\"><use href=\\\"#deviconJekyllo\\\" fill-opacity=\\\".502\\\"/></g></mask><mask id=\\\"deviconJekylld\\\"><g filter=\\\"url(#deviconJekylln)\\\"><use href=\\\"#deviconJekyllo\\\" fill-opacity=\\\".502\\\"/></g></mask><g id=\\\"deviconJekylle\\\" clip-path=\\\"url(#deviconJekyll0)\\\"><path d=\\\"M69.578 9.598a2.231 2.231 0 0 0-.012.953s1.016 6.722-.14 9.715l-49.14 127.078h.003c-3.508 9.336 1.195 19.754 10.566 23.34c9.372 3.586 19.88-1.02 23.567-10.286l.004.004l49.14-127.078c.961-2.488 6.442-7.304 6.442-7.304c.273-.207.488-.446.633-.715l.023-.051c.027-.055.059-.106.078-.16c1.27-3.278-6.906-9.453-18.254-13.793C81.137 6.96 70.91 6.098 69.645 9.375c-.024.055-.036.113-.051.168Zm0 0\\\"/></g><g id=\\\"deviconJekyllf\\\" clip-path=\\\"url(#deviconJekyll1)\\\"><path fill=\\\"#FFF\\\" d=\\\"M68.145 9.473s1.003 6.757-.137 9.71l-49.145 127.08l.008.004c-3.508 9.332 1.192 19.754 10.563 23.34a18.46 18.46 0 0 0 4.941 1.136c-6.316-4.726-9.027-13.18-6.129-20.89l-.008-.004L76.406 25.293s-6.554-6.125-8.261-15.82m0 0\\\"/></g><g id=\\\"deviconJekyllg\\\" clip-path=\\\"url(#deviconJekyll2)\\\"><path fill=\\\"#FFF\\\" d=\\\"M53.746 91.45c0 .78-.637 1.413-1.422 1.413a1.42 1.42 0 0 1-1.426-1.414a1.42 1.42 0 0 1 1.426-1.418c.785 0 1.422.633 1.422 1.418m0 0\\\"/></g><g id=\\\"deviconJekyllh\\\" clip-path=\\\"url(#deviconJekyll3)\\\"><path fill=\\\"#FFF\\\" d=\\\"M63.805 101.715c0 1.18-.961 2.137-2.149 2.137a2.141 2.141 0 0 1-2.144-2.137c0-1.18.96-2.133 2.144-2.133a2.14 2.14 0 0 1 2.149 2.133m0 0\\\"/></g><g id=\\\"deviconJekylli\\\" clip-path=\\\"url(#deviconJekyll4)\\\"><path fill=\\\"#FFF\\\" d=\\\"M51.434 113.926c0 2.21-1.801 4.004-4.024 4.004c-2.226 0-4.027-1.793-4.027-4.004c0-2.211 1.8-4.004 4.027-4.004c2.223 0 4.024 1.793 4.024 4.004m0 0\\\"/></g><g id=\\\"deviconJekyllj\\\" clip-path=\\\"url(#deviconJekyll5)\\\"><path fill=\\\"#FFF\\\" d=\\\"M43.035 121.332c0 1.18-.96 2.133-2.144 2.133a2.139 2.139 0 0 1-2.149-2.133c0-1.18.961-2.137 2.149-2.137c1.183 0 2.144.957 2.144 2.137m0 0\\\"/></g><g id=\\\"deviconJekyllk\\\" clip-path=\\\"url(#deviconJekyll6)\\\"><path fill=\\\"#FFF\\\" d=\\\"M50.863 137.168c0 .785-.636 1.418-1.422 1.418a1.42 1.42 0 0 1-1.425-1.418c0-.781.636-1.414 1.425-1.414c.786 0 1.422.633 1.422 1.414m0 0\\\"/></g><linearGradient id=\\\"deviconJekylll\\\" x1=\\\"206.458\\\" x2=\\\"283.129\\\" y1=\\\"215.263\\\" y2=\\\"291.934\\\" gradientTransform=\\\"matrix(.26902 -.11893 .11958 .26755 -35.038 25.835)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#919191\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFF\\\"/></linearGradient><linearGradient id=\\\"deviconJekyllm\\\" x1=\\\"177.629\\\" x2=\\\"224.046\\\" y1=\\\"273.752\\\" y2=\\\"320.169\\\" gradientTransform=\\\"matrix(.26902 -.11893 .11958 .26755 -35.038 25.835)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#900\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E80000\\\"/></linearGradient><filter id=\\\"deviconJekylln\\\" width=\\\"1\\\" height=\\\"1\\\" x=\\\"0\\\" y=\\\"0\\\" filterUnits=\\\"objectBoundingBox\\\"><feColorMatrix in=\\\"SourceGraphic\\\" values=\\\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\\\"/></filter><path id=\\\"deviconJekyllo\\\" d=\\\"M0 0h128v180H0z\\\"/></defs><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconJekylle\\\" mask=\\\"url(#deviconJekyll7)\\\" transform=\\\"translate(17.464 -.608)scale(.72491)\\\"/><path fill=\\\"url(#deviconJekylll)\\\" d=\\\"M66.874 5.565a1.585 1.585 0 0 0-.011.694s.739 4.874-.1 7.04l-35.625 92.12l.006.003c-2.543 6.765.863 14.32 7.657 16.92c6.793 2.596 14.413-.74 17.083-7.456h.003l35.626-92.12c.693-1.802 4.666-5.293 4.666-5.293c.201-.15.354-.326.462-.521l.017-.037c.017-.037.04-.074.056-.113c.918-2.376-5.006-6.853-13.235-10.002c-8.226-3.146-15.642-3.772-16.56-1.396c-.014.04-.025.082-.037.125zm0 0\\\"/><path fill=\\\"url(#deviconJekyllm)\\\" d=\\\"m78.048 47.24l-25.69 66.434l.018.006c-1.897 4.76-7.41 7.237-12.301 5.366c-4.893-1.87-7.54-7.467-5.737-12.267L50.753 64.33s2.05-3.29 6.074-5.629c4.027-2.339 7.346-1.846 11.814-3.823c4.471-1.973 9.407-7.64 9.407-7.64m0 0\\\"/><path fill=\\\"#333\\\" d=\\\"M90.975 14.882c.515-1.334-3.206-4.001-8.311-5.955c-5.106-1.954-9.665-2.453-10.183-1.119c-.516 1.337 3.205 4.004 8.31 5.955c5.11 1.954 9.665 2.455 10.184 1.119m0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconJekyllf\\\" mask=\\\"url(#deviconJekyll8)\\\" transform=\\\"translate(17.464 -.608)scale(.72491)\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconJekyllg\\\" mask=\\\"url(#deviconJekyll9)\\\" transform=\\\"translate(17.464 -.608)scale(.72491)\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconJekyllh\\\" mask=\\\"url(#deviconJekylla)\\\" transform=\\\"translate(17.464 -.608)scale(.72491)\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconJekylli\\\" mask=\\\"url(#deviconJekyllb)\\\" transform=\\\"translate(17.464 -.608)scale(.72491)\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconJekyllj\\\" mask=\\\"url(#deviconJekyllc)\\\" transform=\\\"translate(17.464 -.608)scale(.72491)\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconJekyllk\\\" mask=\\\"url(#deviconJekylld)\\\" transform=\\\"translate(17.464 -.608)scale(.72491)\\\"/>\"\n\t\t},\n\t\t\"jenkins\": {\n\t\t\t\"body\": \"<path fill=\\\"#d33833\\\" d=\\\"M108.893 61.68c0 25.36-20.099 45.918-44.892 45.918c-24.794 0-44.893-20.558-44.893-45.918s20.1-45.92 44.893-45.92s44.892 20.56 44.892 45.92\\\"/><path fill=\\\"#ef3d3a\\\" d=\\\"M20.938 73.052S17.688 25.167 61.81 23.8l-3.078-5.13l-23.943 8.037l-6.84 7.867l-5.986 11.459l-3.42 13.339l1.025 8.893\\\"/><path fill=\\\"#231f20\\\" d=\\\"M33.253 30.355c-7.876 8.06-12.75 19.186-12.75 31.496c0 12.307 4.874 23.436 12.75 31.494c7.88 8.057 18.74 13.03 30.747 13.03c12.007 0 22.867-4.973 30.747-13.03c7.876-8.058 12.751-19.187 12.751-31.494c0-12.31-4.875-23.437-12.751-31.496C86.867 22.3 76.007 17.327 64 17.326c-12.006.001-22.867 4.973-30.747 13.03zM31.26 95.294c-8.37-8.561-13.546-20.392-13.546-33.443c0-13.053 5.176-24.883 13.546-33.444c8.37-8.563 19.954-13.87 32.74-13.869c12.788-.002 24.374 5.306 32.741 13.869c8.372 8.561 13.548 20.392 13.547 33.444c0 13.05-5.175 24.882-13.547 33.443c-8.367 8.562-19.953 13.87-32.74 13.87c-12.787 0-24.372-5.308-32.74-13.87\\\"/><path fill=\\\"#f0d6b7\\\" d=\\\"m82.898 61.934l-6.841 1.026l-9.235 1.026l-5.986.171l-5.815-.17l-4.446-1.369l-3.934-4.275l-3.078-8.722l-.684-1.881l-4.105-1.368l-2.394-3.934l-1.71-5.644l1.881-4.96l4.446-1.538l3.592 1.71l1.71 3.762l2.053-.342l.683-.855l-.683-3.933l-.172-4.96l1.026-6.84l-.04-3.908l3.119-4.985l5.472-3.934l9.578-4.104l10.603 1.539l9.235 6.67l4.276 6.84l2.736 4.96l.684 12.313l-2.053 10.604l-3.762 9.405l-3.591 4.96\\\"/><path fill=\\\"#335061\\\" d=\\\"m88.027 56.975l-4.103 4.105v15.904l-3.58 14.66l-1.721.047l1.367 16.418l6.498-.855L84.95 91.52l-2.902.079l7.863-.422s3.932-9.919 3.932-10.432c0-.513 3.422-14.365 3.422-14.365l-7.698-8.037l-1.539-1.37zm-41.215 2.564l-4.275 1.711l-13.682 9.406l.856 2.737l3.934 11.628l1.709 19.327l1.197 2.05l17.101 5.817l1.028-1.2l-2.053-14.365v-4.103l24.455-1.027l1.88-1.026l-14.876-7.012l2.736-5.3l-3.933 1.367l-1.54-1.881l-2.052-8.893l-1.711-.513l-3.762-1.198l-3.25-2.906z\\\"/><path fill=\\\"#6d6b6d\\\" d=\\\"m36.551 31.835l4.446-1.54l3.592 1.711l1.71 3.762l2.053-.342l.513-2.052l-1.026-3.933l1.026-9.407l-.856-5.13l3.079-3.592l6.67-5.301l-1.882-2.565l-9.406 4.617l-3.933 3.079l-2.224 4.788l-3.42 4.617l-1.026 5.473z\\\"/><path fill=\\\"#dcd9d8\\\" d=\\\"M59.445 4.021c-1.172-.012-2.543.108-2.543.108L45.787 8.406l-4.277 4.276l-1.881 3.42l3.934-.342s2.565-6.328 12.826-9.406c6.413-1.924 5.01-2.312 3.056-2.333M48.01 14.904l-9.406 2.223l-2.737 8.893l.684 5.814l1.88-1.195s-3.591-11.974 10.09-13.684z\\\"/><path fill=\\\"#f7e4cd\\\" d=\\\"M69.986.475a11.318 11.318 0 0 0-3.85.748c-10.26 3.933-17.785 11.115-17.615 15.732c.292 7.864.172 7.87.172 7.87S51.601 9.774 66.31 6.866c12.108-2.393 18.468.512 20.863 3.248c0 0-8.25-9.82-17.186-9.64zm18.328 11.35c-.545-.003-4.913.108-5.074 4.277c0 0 0 .683.342 1.367c0 0 3.934-4.447 6.328-2.053l-1.539-3.59s-.02-.002-.057-.002zm-25.185 2.01c-.84.02-1.876.371-3.149 1.24c-3.762 2.565-3.42 6.157-2.736 6.841c.684.684.499 2.06 1.02 1.115c.52-.945.349-4.022 2.23-4.877c1.881-.855 4.966-1.812 6.16-.222c0 0-.522-4.166-3.525-4.096zm26.437 10.476s-2.818.594-3.078 3.078c-.26 2.483 3.079.512 3.592.341zm-20.693.171s-3.762.513-3.762 2.907s4.276 2.223 5.473 1.197zM38.432 30.64L34.5 34.742l.684 5.131l2.05 5.3l2.225.686c-3.25-3.933-1.711-6.671-1.027-10.433c.683-3.763 7.183.172 7.183.172l-.172-2.567l-2.564-2.05l-4.447-.342zm38.609 7.847c-1.126-.05-1.556 3.635-1.648 4.586c.31-.92 3.171-2.77 3.171-2.77s0-1.396-1.396-1.794a.549.549 0 0 0-.127-.022m-1.648 4.586a.394.394 0 0 0-.02.221s.006-.08.02-.22zm-29.248 1.301l-2.24 2.17l.513 7.525l5.473 8.551s6.143 1.386 5.472.856c-7.353-5.815-7.866-16.59-8.037-17.788c-.17-1.196-1.181-1.314-1.181-1.314m19.244 2.549c-.675.01-1.122.228-1.248.396c-.427.57.457 3.672.457 3.672l.855.172c-.17-3.421 1.881-3.764 1.881-3.764c-.758-.364-1.42-.484-1.945-.476\\\"/><path fill=\\\"#49728b\\\" d=\\\"m45.615 59.37l-16.76 11.286l1.881 5.303l4.448 19.152l.17 10.092l2.394.854c3.42-8.21-3.248-34.717-3.248-34.717l16.074-7.182l-4.959-4.789zm6.614 19.448l-.458 1.073s-.341 3.078-.341 3.933c0 .856.341 8.04.341 8.04h2.737V81.601l-2.28-2.784zm.056 14.584l-7.695.342l2.222 1.54l5.473.855zm35.742-36.427l-3.248 3.591L96.75 69.46l.342-4.104zm-3.42 33.52l-5.984 1.196l.854 4.79c2.223 1.026 5.986-1.711 5.986-1.711z\\\"/><path fill=\\\"#fff\\\" d=\\\"M50.574 62.62v1.538l2.174 2.395l6.84 3.078l.172-5.129l-4.739-.516zm50.059 24.284l-5.473 1.711l-5.25 2.563l-2.789-.51l-2.172.853l1.832 14.368l6.668-1.883l12.656-.684l1.881-5.814l-3.42-10.09zm-22.01 4.787l-9.97.002l-16.026.854l.291 7.869l1.762 10.6l3.54 14.369l7.866 1.709l12.998-1.026l.17-2.566l-1.54-13.852zm1.317-1.366l-3.763-9.577l-3.934-5.644s.855-2.394 2.053-2.394h3.933l3.762 1.368l-.341 6.328z\\\"/><path fill=\\\"#dcd9d8\\\" d=\\\"m52.115 65.014l-.513.685l2.908 2.051l4.787 1.025l-.17-2.05c-1.71.513-7.012-1.711-7.012-1.711m23.77 7.353l-3.932.512l6.67 15.734l1.367.172l.684-1.71s-4.79-9.236-4.79-10.604c0 0 .856-2.052 2.053-1.54c1.198.514 3.764 1.882 3.764 1.882v-3.249zm16.248 17.957l-2.223.854l1.881 9.406c-.684-.171-5.13 1.883-5.13 1.883l.51 2.736l1.884-.685l5.984-.854l1.711 2.223l5.13.17l3.079-.684l2.736-4.103l-.172-3.08l-1.88-5.473c.513 4.104-1.54 8.039-1.54 8.039c-.855 0-10.431-.514-10.431-.514c0-1.026-1.54-9.918-1.54-9.918zm-13.17.17l-2.565 1.027s-.854 17.787 1.711 30.442c0 0-5.13 3.249-12.656 4.103l14.365-.513l1.711-1.026l-2.052-28.047zm4.47 18.297c-.736.004-1.83.526-2.603.475c-.113 2.701.266 7.033.393 9.867c1.796.002 2.565-.392 3.906-.844c.151-3.335-1.057-6.422-1.404-9.467a1.105 1.105 0 0 0-.291-.031z\\\"/><path fill=\\\"#d33833\\\" d=\\\"M84.777 63.818c-2.192.102-5.148 2.897-6.525 3.387c.178.512.47.917.492 1.57c.965-.238 2.14-.075 2.977.336c-.968.108-2.038.102-2.678.563c-.235.677.055 1.6-.102 2.54c2.296.648 4.919.994 7.82 1.079c.566-.733.758-2.133.69-3.518c-.08-1.67-.519-5.104-1.55-5.705c-.34-.197-.718-.27-1.124-.252m-22.535.748c-2.324.05-2.082 4.108-1.969 6.592c.095 2.098 1.188 4.318 1.66 5.713c.224.65.274 1.342.83 1.47c.984.23 4.23-1.067 5.155-1.571c1.955-1.066 3.473-2.76 5.133-3.897l.062-1.658c-.998-.498-2.15-.852-3.617-.916c.995-.5 2.457-.493 3.363-1.088l.026-.662c-1.654-.127-2.285-.864-3.375-1.461c-1.784-.974-4.464-2.037-6.768-2.477a2.4 2.4 0 0 0-.5-.045m13.43 3.457c-.442.004-.969.171-1.57.573c-.114 1.259.18 1.67.433 3.115c3.493 1.093 3.525-3.704 1.137-3.688\\\"/><path fill=\\\"#ef3d3a\\\" d=\\\"m84.557 62.621l-6.498 3.762l-.344 1.88v3.762l2.394.856s-1.197-1.71-.341-2.223c.855-.513 1.711 0 2.224-.855c.513-.856 0-1.369.17-2.395c.171-1.026 1.026-1.196 1.881-1.367c.855-.17 3.25-.513 3.592.342l-1.026-3.078zm-21.536 1.03c-.847-.018-1.619.122-2.185.507c-4.021 2.735-.78 9.056 1.19 12.774a551.56 551.56 0 0 0-.538-6.409c-.362-3.98.957-3.285 4.408-3.285c.528 0 3.245.628 3.44 1.026c.933 1.905-1.56 1.481 1.074 2.918c2.224 1.212 6.152-.737 5.254-3.432c-.503-.6-2.62-.187-3.379-.58l-4.008-2.078c-1.168-.607-3.392-1.403-5.256-1.442Zm-.996 13.28c.042.532.086 1.063.127 1.594l.612-.183c-.204-.405-.46-.883-.739-1.41z\\\"/><path fill=\\\"#231f20\\\" d=\\\"M67.565.006c-3.59.068-7.101.665-10.027 1.742c-2.175.8-4.282 1.516-6.192 2.638c-5.111 3-10.537 5.008-12.052 11.047c-3.734 1.672-4.86 6.451-4.672 11.997c.036 1.081.623 2.432.42 3.449c-.104.516-.804 1.177-.944 1.513c-1.79 4.267-.355 9.876 1.713 12.909c1.25 1.832 3.32 3.457 6.05 3.888c.109 1.635.502 3.042 1.257 4.699c.478 1.048 2.263 2.932 1.606 4.269c-.33.674-3.237 2.137-4.201 2.716c-3.255 1.952-5.614 3.149-8.619 5.312c-1.944 1.4-4.985 1.58-4.505 4.808c.323 2.178 1.563 4.878 2.272 7.062c.768 2.357 1.868 4.516 2.5 6.962c1.405 5.451 1.698 10.587 2.04 15.911c.134 2.085-.088 4.291.453 5.442c.558 1.19 2.626 1.57 4.12 2.264c4.315 1.995 8.893 5.042 14.552 4.437c1.349 4.536 2.624 9.367 4.243 13.34c5.803 2.086 14.964 1.76 20.997 1.035c1.834-.222 3.769-1.127 4.2-2.717c-.129-.98-.272-1.95-.21-3.109c1.886-.39 4.453-.712 4.868-2.8c.582-2.928-1.849-7.123-1.038-10.336c1.092-.354 2.258-.631 2.084-2.355c1.84-.958 4.023-1.172 6.353-1.082c.3.58.727 1.138 1.111 1.457c3.264.656 6.425.71 9.135-.174c3.067-1.002 4.53-7.275 3.829-10.26c-.498-2.115-1.624-5.58-2.584-7.628c-2.601-5.56-10.353-2.07-14.502-.008c2.013-5.295 3.744-10.785 5.52-16.725c.53-1.78 1.578-4.303 1.343-6.147c-.22-1.734-2.924-3.556-4.347-4.93c-.791-.762-4.479-3.562-4.693-4.61c-.207-1.014 1.504-3.311 2.054-4.46c.79-1.644 1.356-3.656 1.745-5.025c2.9-10.196 3.195-24.204-.951-32.586c-1.57-3.175-5.96-7.56-8.705-9.637C79.74 1.254 73.546-.106 67.565.006m.478 2.84C72.89 2.799 78.28 4.509 81.93 6.568c3.05 1.72 5.3 5.048 7.446 7.817c-3.009-.893-5.57.642-5.103 3.124c2.519-2.309 6.822-.025 8.095 2.528c1.217 2.44 1.209 6.057 1.396 9.685c.453 8.798-1.61 17.875-6.031 24.234c-1.182 1.698-2.174 3.554-3.836 4.723c-4.006 2.813-10.095 5.363-15.309 3.614c-6.89-2.312-10.02-6.903-13.81-12.16c.103 2.888 2.134 5.258 4.14 7.467c1.745 1.925 3.851 4.1 6.117 4.998c-1.89-.444-4.792-.583-5.58 1.114c-4.41-.293-8.508-.744-10.594-3.733c-1.644-2.356-3.314-6.363-4.063-9.458c-.153-.636-.415-1.99-.351-2.337c.246-1.343 2.638-1.933 1.697-3.81c-1.736-.016-2.127 1.58-3.72 1.738c-4.125.408-7.035-5.467-6.848-9.012c.159-3.014 2.707-5.898 6.192-5.517c2.463.27 3.3 2.958 3.778 5.35c1.42.076 3.471-.061 4.143-1.169c-.097-2.703-1.352-4.871-1.266-7.355c.162-4.668 2.705-8.88.743-13.478c2.1-4.764 8.261-8.524 12.818-10.797c1.765-.88 3.856-1.264 6.06-1.286zM55.505 5.192c.198.032.38.186.556.374c-.03.811-.83.794-1.37 1.054c-.84 1.033-2.068 1.516-3.09 2.648c-1.049 1.16-2.222 4.276-3.612 4.62c-.697.174-1.493-.12-2.1-.08c-1.605.101-2.735.923-4.363 1.159c2.102-4.595 8.659-8.313 13.774-9.762a.468.468 0 0 1 .205-.013m8.74 9.973c-2.637.003-5.64 2.822-6.423 4.973c-.318.874-.82 2.59.441 2.895c1.413-3.149 3.729-6.185 8.39-5.1c.895-1.471-.705-2.552-1.887-2.73a3.477 3.477 0 0 0-.522-.038zm-16.656.48c1.802 4.586-1.293 10.036-.14 15.051c.353 1.536 1.574 3.92-.376 3.972c.051-4.37-5.37-7.143-9.455-4.574c-.273-3.314-.746-7.973 1.514-10.459c2.085-2.296 4.959-3.725 8.457-3.99m41.776 7.597c-.149 2.517.786 4.032 1.435 5.812c-1.122.706-3.305.266-4.57.819c-.09 3.723 5.76 1.888 6.65-.185c-1.33-1.932-2.241-4.25-3.295-6.437zm-20.325.057c-.692 1.964 1.188 5.298 2.242 6.984c-1.373 1.333-3.842.226-5.679.14c-1.753 2.769 3.423 3.29 5.644 2.634c.608-.179 1.66-1.09 1.805-1.5c.617-1.733-.627-2.493-1.267-3.117c-1.42-1.384-1.746-3.31-2.745-5.141m10.549 1.81c-.134-.018-.295.03-.488.17c-.125 4.616 3.305 8.437 5.863 11.52c1.25 1.505 2.756 2.365 1.369 4.703c-2.236.85-5.855 3.285-8.964 2.753c-1.65-.282-1.278-2.155-1.87-3.173c-1.138 1.497-.692 3.762.48 4.78c5.479.542 9.208-1.794 12.552-3.943c-.133-.842 1.012-2.36.694-3.626c-.11-.436-1.102-1.068-1.704-1.727c-2.453-2.675-5.814-6.672-7.15-9.798c-.12-.28-.201-1.583-.782-1.66zm-38.98 8.635c-1.267-.02-2.415.815-2.686 2.783c.562-.368 1.015-1.415 2.028-.917c-.89 1.737-.676 5.12.535 6.22c-.007-2.062-.328-5.587 1.43-5.48c1.231.074 1.48 2.71 2.528 3.308c.723-3.478-1.722-5.882-3.835-5.914m50.051 10.36c-2.673 1.22-4.83 2.997-8.322 3.332c-.169.577-.097 2.033-.004 2.99c4.567-.095 6.77-3.358 8.326-6.321zm-21.884 1.921c1.335 3.573 7.353 4.833 12.443 4.579c-.008-1.058-.003-2.13-.215-2.998c-3.96.116-9.315-.049-12.228-1.58zm-.553 2.858c-2.573.003-.403 1.434.033 1.994c.902 1.16 1.96 3.139 3.608 4.015c2.598 1.38 7.758.801 9.63.04c.692-.28 1.25-1.057 1.507-1.713c-5.84.14-12.763.722-14.778-4.336m19.436 9.83c2 1.611 3.208 3.127 5.126 4.85c1.04.933 3.088 2.051 3.295 3.56c.115.842-.401 2.905-.591 3.852c-.84 4.154-2.73 9.642-4.53 13.995c-.654 1.582-1.28 3.56-2.143 3.902c-2.364.936-5.233-.091-7.242 1.16c2.7-4.685 5.64-9.111 8.286-13.852c-.403-.94-1.391-1.341-1.678-2.388c1.858-3.509 1.004-14.403-3.738-12.103c.663-.974 2.404-1.778 3.215-2.976m-41.724 2.48c.431-.17 3.577 3.923 4.042 4.255c2.55 1.81 5.716 3.24 8.677 4.653c.181 1.359.6 3.12 1.338 5.476c.813 2.602 1.484 6.274 4.922 4.398c-.327 1.486-2.237 2.408-1.71 4.141c.33 1.087 3.94 2.43 5.084 3.076c2.111 1.19 4.037 1.848 5.659 2.544c-7.37.202-14.291.802-21.102 1.729c-.816-1.264-.487-3.212-.573-5.225c-.094-2.186.815-7.114-.044-7.42c-.971-.345-1.153 1.623-1.188 2.057c-.182 2.308 1.099 7.195-.164 9.958c-1.382-.391-2.063-1.43-3.358-1.902c-.508 1.6 1.052 1.677.892 2.693c-.212 1.343-2.757.22-2.743 2.217c1.657.266 4.199-.515 5.97.232c.463 5.433 1.207 10.581 2.022 16.352c-7.048-.366-11.61-3.868-16.805-6.297c-.323-11.49-2.154-23.41-6.688-33.14c4.756-3.67 10.078-7.552 15.77-9.796zm39.082 2.626c.316.015.613.094.884.252c1.032.602 1.471 4.036 1.551 5.706c.067 1.385-.126 2.783-.69 3.517c-2.902-.085-5.524-.43-7.82-1.078c.157-.94-.135-1.865.1-2.543c.639-.46 1.711-.452 2.678-.56c-.836-.412-2.01-.575-2.975-.337c-.023-.654-.316-1.058-.493-1.57c1.427-.509 4.554-3.496 6.765-3.387m-5.2.127c-1.218.794-2.255 1.787-3.424 2.635c-2.593.129-4.008-.179-5.913-1.668c.03-.12.222-.066.23-.213c2.775 1.237 6.304-.504 9.106-.754zm-27.347.049c1.447 1.005 4.247.757 6.378 1.131c.11.683-.442 1.58-.432 2.531c-1.793-.11-7.427-2.16-5.946-3.662m9.772.573c.155-.004.321.011.5.045c2.304.44 4.984 1.502 6.768 2.477c1.09.596 1.721 1.332 3.375 1.46c-.007.22-.017.44-.025.662c-.906.595-2.369.588-3.363 1.088c1.466.064 2.62.417 3.618.915l-.065 1.659c-1.661 1.137-3.178 2.83-5.133 3.896c-.925.504-4.17 1.802-5.153 1.572c-.557-.129-.607-.82-.83-1.47c-.473-1.395-1.564-3.614-1.66-5.712c-.113-2.485-.356-6.545 1.968-6.592m13.294 3.463c.137-.011.267-.007.39.011c2.126.313 1.972 4.722-1.392 3.67c-.253-1.444-.546-1.856-.433-3.115c.542-.361 1.022-.533 1.435-.566m1.936 5.014c1.218.13 2.182 1.81 3.92 1.7c-.279 4.532-.133 9.08-1.398 13.232c-2.357-4.322-3.744-9.54-6.795-13.217c.322-.342.61-.721.926-1.071c1.382.578 2.284-.758 3.347-.644m7.008 1.442c1.678-.013 3.052 1.084 3.807 2.297c-2.364 4.05-4.626 8.208-7.43 11.78c1.175-3.458 1.679-9.245 1.857-13.657a4.222 4.222 0 0 1 1.766-.42M71.71 76.03c2.8 3.554 4.504 8.125 6.38 12.537c-4.432-1.336-8.96-3.504-12.844-5.702c.762-3.304 3.75-5.016 6.464-6.835m29.511 11.728c1.217.03 2.426 1.018 2.955 1.819c.956 1.444 1.849 5.695 2.35 7.952c.747 3.359-.932 6.629-3.603 7.277v.001c-1.944.472-4.926.596-6.199-.019c1.558-.851 3.899-.856 5.702-1.44c-2.583-1.112-6.405-.064-9.511-.258c-.375-3.835-.658-7.993-1.567-11.02c1.813-1.927 6.193-2.39 8.68-3.981a2.077 2.077 0 0 1 1.193-.331m-.211 3.578c-3.183.094-5.67.937-7.09 2.938c2.583.165 4.443-2.408 7.09-2.938m-12.54.785c.225.01.447.035.66.083c1.692 2.91 2.056 7.749 2 11.261c-1.055.204-1.74.808-3.02.768c-.327-4.001-1.256-8.208-1.638-12.02c.61-.012 1.32-.12 1.997-.092zm-19.603.043c3.34-.054 6.58.142 9.385.726c.685 4.453.43 8.845.93 13.21c.662 5.808.166 12.434 1.3 17.876c-6.173 1.913-14.59 1.728-21.574-.392c-3.147-9.643-4.863-18.796-6.047-29.685c4.587-.858 10.437-1.645 16.006-1.735m14.824.384c1.103 3.987 1.037 9.06 1.579 13.567c-1.668.366-2.888.545-4.683.815c-.357-4.682-.63-9.295-.566-13.971c1.272-.426 2.394-.4 3.67-.411m14.486 2.296c-1.26.016-2.394.29-2.88 1.032c2.19.18 4.722-.17 6.88-.398c-.984-.34-2.572-.653-4-.634m-.361 3.24c-1.128.014-2.123.228-2.634.777c2.304.193 5.318.241 7.743.189c-.983-.458-3.23-.99-5.11-.966zM83.098 108.82c.236-.037.45-.045.627.002c.348 3.045 1.555 6.131 1.404 9.466c-1.34.452-2.11.848-3.907.845c-.126-2.834-.506-7.166-.392-9.868c.662.044 1.561-.334 2.268-.445\\\"/><path fill=\\\"#81b0c4\\\" d=\\\"M84.48 74.486a4.225 4.225 0 0 0-1.767.42c-.178 4.412-.68 10.199-1.856 13.656c2.805-3.571 5.066-7.73 7.43-11.779c-.756-1.213-2.129-2.31-3.807-2.297M71.71 76.03c-2.714 1.82-5.7 3.532-6.463 6.836c3.884 2.198 8.412 4.365 12.844 5.701c-1.876-4.41-3.58-8.982-6.381-12.537\\\"/><path fill=\\\"#f0d6b7\\\" d=\\\"M79.817 63.945c-1.218.795-2.255 1.787-3.424 2.636c-2.593.128-4.008-.18-5.913-1.669c.031-.12.223-.066.23-.213c2.775 1.237 6.304-.504 9.107-.754\\\"/><path fill=\\\"#1d1919\\\" d=\\\"M79.135 76.728a.94.94 0 1 1-1.881 0a.94.94 0 0 1 1.881 0m.941 4.361a.94.94 0 1 1-1.882 0a.94.94 0 0 1 1.882 0\\\"/>\"\n\t\t},\n\t\t\"jetbrains\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconJetbrains0\\\" x1=\\\"32.64\\\" x2=\\\"82.77\\\" y1=\\\"61.16\\\" y2=\\\"85.54\\\" gradientTransform=\\\"scale(.71111)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".21\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#293896\\\"/></linearGradient><linearGradient id=\\\"deviconJetbrains1\\\" x1=\\\"17.38\\\" x2=\\\"82.95\\\" y1=\\\"69.86\\\" y2=\\\"21.23\\\" gradientTransform=\\\"scale(.71111)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\".01\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\".86\\\" stop-color=\\\"#ff318c\\\"/></linearGradient><linearGradient id=\\\"deviconJetbrains2\\\" x1=\\\"74.17\\\" x2=\\\"160.27\\\" y1=\\\"21.58\\\" y2=\\\"99.76\\\" gradientTransform=\\\"scale(.71111)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".02\\\" stop-color=\\\"#ff318c\\\"/><stop offset=\\\".21\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\".86\\\" stop-color=\\\"#fdb60d\\\"/></linearGradient><linearGradient id=\\\"deviconJetbrains3\\\" x1=\\\"155.46\\\" x2=\\\"55.07\\\" y1=\\\"89.8\\\" y2=\\\"158.9\\\" gradientTransform=\\\"scale(.71111)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".01\\\" stop-color=\\\"#fdb60d\\\"/><stop offset=\\\".86\\\" stop-color=\\\"#fcf84a\\\"/></linearGradient></defs><path fill=\\\"url(#deviconJetbrains0)\\\" d=\\\"m58 59.527l-29.406-24.89a10.67 10.67 0 0 0-17.485 8.949a10.664 10.664 0 0 0 7.196 9.328h.105l.277.086l37.094 11.297c.266.098.551.148.836.152a2.654 2.654 0 0 0 1.375-4.914zm0 0\\\"/><path fill=\\\"url(#deviconJetbrains1)\\\" d=\\\"M63.895 18.438A7.747 7.747 0 0 0 51.91 11.91L16 33.714a10.66 10.66 0 0 0-4.793 9.96A10.67 10.67 0 0 0 28.73 50.78l32.192-26.234l.254-.211a7.783 7.783 0 0 0 2.719-5.898zm0 0\\\"/><path fill=\\\"url(#deviconJetbrains2)\\\" d=\\\"M116.117 65.422L61.633 12.949a7.763 7.763 0 0 0-7.692-1.965a7.763 7.763 0 0 0-5.394 5.825a7.764 7.764 0 0 0 2.555 7.52l.097.085l57.887 48.766a5.235 5.235 0 0 0 5.578.734a5.243 5.243 0 0 0 3.02-4.75a5.281 5.281 0 0 0-1.567-3.742m0 0\\\"/><path fill=\\\"url(#deviconJetbrains3)\\\" d=\\\"M117.688 69.184a5.226 5.226 0 0 0-8.297-4.266l-65.926 32.21a10.668 10.668 0 1 0 11.008 18.2l60.96-41.844a5.21 5.21 0 0 0 2.254-4.3zm0 0\\\"/><path d=\\\"M42.668 42.668h42.664v42.664H42.668zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M47.309 77.332h16V80h-16zm-.669-23.664l1.188-1.125c.23.363.617.594 1.047.621c.453 0 .754-.32.754-.941v-4.207h1.836v4.222a2.452 2.452 0 0 1-.656 1.871a2.512 2.512 0 0 1-1.829.711a2.745 2.745 0 0 1-2.34-1.152m5.65-5.652h5.355v1.554h-3.56v1.02h3.196v1.422h-3.164v1.058h3.555v1.563h-5.406zm7.964 1.613h-1.992v-1.613h5.836v1.613h-1.996v5.043h-1.848zM47.383 57.3h3.14a2.47 2.47 0 0 1 1.813.59c.289.29.445.676.437 1.083a1.556 1.556 0 0 1-1.03 1.484c.78.145 1.339.836 1.32 1.629c0 1.203-.93 1.914-2.524 1.914h-3.156zm3.554 2.055c0-.367-.3-.566-.84-.566h-.917v1.164h.89c.555 0 .88-.191.88-.574zm-.64 1.891H49.18v1.23h1.152c.57 0 .883-.218.883-.609c-.016-.379-.285-.62-.903-.62zm3.355-3.946h2.953c.79-.062 1.57.192 2.168.712c.403.414.618.976.59 1.55a2.132 2.132 0 0 1-1.37 2.055L59.585 64h-2.137l-1.344-2.02h-.617V64H53.64zm2.844 3.2c.621 0 .996-.305.996-.797c0-.531-.39-.8-1-.8h-.988v1.613zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M61.93 57.25h1.777l2.848 6.715H64.57l-.476-1.203h-2.582L61.035 64H59.11zm1.62 4.078l-.745-1.887l-.754 1.887zm3.294-4.047h1.847v6.66h-1.847zm2.531 0h1.734l2.399 3.555V57.28h1.828v6.66h-1.613l-2.513-3.65v3.652h-1.836zm6.265 5.672l1.024-1.23a3.45 3.45 0 0 0 2.133.804c.508 0 .77-.175.77-.46c0-.294-.215-.434-1.13-.649c-1.425-.328-2.511-.711-2.511-2.082c0-1.238.98-2.133 2.582-2.133a4.185 4.185 0 0 1 2.738.887l-.89 1.265a3.244 3.244 0 0 0-1.864-.652c-.449 0-.668.176-.668.426c0 .305.227.441 1.16.648c1.528.332 2.473.832 2.473 2.075c0 1.359-1.074 2.132-2.687 2.132a4.643 4.643 0 0 1-3.13-1.03zm0 0\\\"/>\"\n\t\t},\n\t\t\"jetpackcompose\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\"><path fill=\\\"#083042\\\" d=\\\"M41.226 76.778a4.002 4.002 0 0 1-.47-1.29c.09.452.25.887.47 1.29m.578.713c.222.22.472.411.749.548l18.88 10.565l-18.88-10.565a2.899 2.899 0 0 1-.747-.548z\\\"/><path fill=\\\"#083042\\\" d=\\\"M64.342 101.967h-.14a8.301 8.301 0 0 1-4.014-1.016l-28.182-15.75c-1.663-.932-2.686-2.66-2.686-4.527V48.628c0-1.373.249-2.69.83-3.842L8.114 32.522c-.913 1.92-1.383 4.088-1.356 6.366v52.927a8.675 8.675 0 0 0 4.458 7.49l46.481 26.012c2.05 1.152 4.347 1.701 6.617 1.701v-.027c.055-3.32.028-16.628.028-25.023z\\\"/><path fill=\\\"#3ddb85\\\" d=\\\"m86.46 50.6l-.167-.246c-.138-.192-.275-.357-.413-.548c.138.164.275.356.413.547a.973.973 0 0 1 .167.247M63.262 37.76c.14 0 .251-.027.39-.027c-.139.027-.278.027-.39.027\\\"/><path fill=\\\"#3ddc84\\\" d=\\\"M30.122 44.757a7.214 7.214 0 0 1 2.825-3.072l26.52-15.503a8.065 8.065 0 0 1 8.03-.082l26.798 15.009a8.993 8.993 0 0 1 3.018 2.743L118.99 31.04a14.913 14.913 0 0 0-4.955-4.5L69.766 1.764a13.32 13.32 0 0 0-13.233.137L12.765 27.472a11.704 11.704 0 0 0-4.651 5.049l22.009 12.236z\\\"/><path fill=\\\"#3ddb85\\\" d=\\\"M62.157 37.983c.057-.028.114-.028.17-.056c-.056.028-.113.028-.17.056m-20.88 12.949c.056-.11.111-.22.168-.3c-.057.109-.111.19-.168.3l-.082.246z\\\"/><path fill=\\\"#4285f4\\\" d=\\\"M118.962 31.04L97.285 43.852c.83 1.207 1.329 2.633 1.355 4.089v30.51a7.881 7.881 0 0 1-3.93 6.914L68.188 100.87a8.07 8.07 0 0 1-3.849 1.097c.029 8.369.029 21.677-.027 24.997v.027a13.533 13.533 0 0 0 6.617-1.812l43.769-25.599c4.07-2.387 6.562-6.723 6.506-11.415V37.817c-.028-2.442-.858-4.774-2.242-6.777\\\"/><path fill=\\\"#4285f4\\\" d=\\\"M86.963 75.187c-.028.056-.028.111-.056.168a.387.387 0 0 0 .056-.168m-.278-24.227c-.057-.138-.14-.248-.223-.385c.083.137.166.275.222.385zM66.807 88.576L84.58 78.178c.111-.054.195-.138.306-.192c-.111.054-.195.138-.306.192l-17.773 10.4zM86.74 75.818c-.056.138-.139.275-.196.413c.057-.165.112-.303.196-.413\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M41.198 51.178a5.508 5.508 0 0 0-.415 1.675c-.028.218-.028.438-.028.686v21.483c0 .164 0 .302.028.467c.056.465.222.905.47 1.29c.167.274.36.492.555.712c.222.22.47.411.746.55l18.882 10.563a5.49 5.49 0 0 0 2.684.685h.195a5.155 5.155 0 0 0 2.492-.74L84.58 78.15c.111-.055.194-.138.305-.192c.194-.137.388-.275.554-.44c.26-.236.501-.492.719-.768c.138-.192.277-.383.388-.576c.082-.136.139-.274.193-.412c.056-.135.14-.301.195-.465c.027-.056.027-.111.055-.165a5.403 5.403 0 0 0 .249-1.647V53.044c0-.383-.056-.74-.138-1.096c-.055-.248-.14-.468-.222-.688l-.166-.328c-.055-.138-.14-.247-.222-.385l-.166-.246c-.138-.193-.277-.357-.415-.549a5.607 5.607 0 0 0-1.606-1.29L66.337 38.394a6.145 6.145 0 0 0-.97-.44a5.86 5.86 0 0 0-1.385-.246h-.36c-.137 0-.248 0-.386.026a5.658 5.658 0 0 0-.942.165c-.055.027-.11.027-.166.056c-.415.11-.803.301-1.191.52l-17.773 10.4a4.548 4.548 0 0 0-1.33 1.18c-.137.192-.276.384-.387.576c-.055.11-.11.192-.166.302l-.083.246Z\\\"/><path fill=\\\"#083042\\\" d=\\\"M64.312 89.288h-.194a5.512 5.512 0 0 1-2.686-.684L42.552 78.04a3.737 3.737 0 0 1-.748-.549a3.31 3.31 0 0 1-.554-.714a3.998 3.998 0 0 1-.47-1.29c-.029-.163-.029-.301-.029-.465V53.537c0-.219 0-.465.029-.686c.053-.575.192-1.14.415-1.674L36.1 48.078l-5.98-3.32c-.554 1.152-.83 2.468-.83 3.841v32.047a5.322 5.322 0 0 0 2.685 4.528l28.157 15.776a8.023 8.023 0 0 0 4.014 1.016h.14c0-4.089-.029-6.997-.029-6.997l.055-5.68z\\\"/><path fill=\\\"#041619\\\" d=\\\"M64.312 89.288h-.194a5.512 5.512 0 0 1-2.686-.684L42.552 78.04a3.737 3.737 0 0 1-.748-.549a3.31 3.31 0 0 1-.554-.714a3.998 3.998 0 0 1-.47-1.29c-.029-.163-.029-.301-.029-.465V53.537c0-.219 0-.465.029-.686c.053-.575.192-1.14.415-1.674L36.1 48.078l-5.98-3.32c-.554 1.152-.83 2.468-.83 3.841v32.047a5.322 5.322 0 0 0 2.685 4.528l28.157 15.776a8.023 8.023 0 0 0 4.014 1.016h.14c0-4.089-.029-6.997-.029-6.997l.055-5.68z\\\"/><path fill=\\\"#3ddb85\\\" d=\\\"m94.266 41.109l-26.799-15.01a8.066 8.066 0 0 0-8.029.083l-26.52 15.504a7.049 7.049 0 0 0-2.826 3.073l6.01 3.32l5.093 3.099l.082-.246c.056-.111.111-.22.166-.302c.111-.192.25-.384.388-.576c.36-.467.803-.85 1.33-1.18l17.772-10.4c.38-.213.777-.387 1.191-.52c.056-.027.111-.027.166-.056c.308-.084.623-.138.941-.164c.138 0 .249-.028.388-.028h.36c.469.03.933.111 1.384.246c.34.108.665.255.969.441l17.966 10.07a5.99 5.99 0 0 1 1.608 1.289c.137.164.277.357.414.548l.167.246l4.595-3.044l6.229-3.704c-.803-1.071-1.827-2.032-3.045-2.69z\\\"/><path fill=\\\"#37bf6e\\\" d=\\\"m94.266 41.109l-26.799-15.01a8.066 8.066 0 0 0-8.029.083l-26.52 15.504a7.049 7.049 0 0 0-2.826 3.073l6.01 3.32l5.093 3.099l.082-.246c.056-.111.111-.22.166-.302c.111-.192.25-.384.388-.576c.36-.467.803-.85 1.33-1.18l17.772-10.4c.38-.213.777-.387 1.191-.52c.056-.027.111-.027.166-.056c.308-.084.623-.138.941-.164c.138 0 .249-.028.388-.028h.36c.469.03.933.111 1.384.246c.34.108.665.255.969.441l17.966 10.07a5.99 5.99 0 0 1 1.608 1.289c.137.164.277.357.414.548l.167.246l4.595-3.044l6.229-3.704c-.803-1.071-1.827-2.032-3.045-2.69z\\\"/><path fill=\\\"#4285f4\\\" d=\\\"M86.46 50.602c.083.136.139.246.221.384l.167.329a4.783 4.783 0 0 1 .36 1.783V73.54a5.414 5.414 0 0 1-.25 1.646c-.027.054-.027.11-.055.164a3.423 3.423 0 0 1-.193.468c-.057.135-.14.273-.195.41c-.11.193-.249.384-.388.577a6.243 6.243 0 0 1-.719.767c-.166.165-.36.302-.554.44c-.111.054-.193.137-.304.192L66.776 88.602a5.841 5.841 0 0 1-2.492.742v5.679s0 2.909.028 6.997a7.785 7.785 0 0 0 3.849-1.097l26.52-15.504c2.465-1.453 3.96-4.088 3.932-6.913V47.995c-.027-1.482-.525-2.882-1.355-4.089l-6.231 3.705z\\\"/><path fill=\\\"#3870b2\\\" d=\\\"M86.46 50.602c.083.136.139.246.221.384l.167.329a4.783 4.783 0 0 1 .36 1.783V73.54a5.414 5.414 0 0 1-.25 1.646c-.027.054-.027.11-.055.164a3.423 3.423 0 0 1-.193.468c-.057.135-.14.273-.195.41c-.11.193-.249.384-.388.577a6.243 6.243 0 0 1-.719.767c-.166.165-.36.302-.554.44c-.111.054-.193.137-.304.192L66.776 88.602a5.841 5.841 0 0 1-2.492.742v5.679s0 2.909.028 6.997a7.785 7.785 0 0 0 3.849-1.097l26.52-15.504c2.465-1.453 3.96-4.088 3.932-6.913V47.995c-.027-1.482-.525-2.882-1.355-4.089l-6.231 3.705z\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M62.155 37.982c-.416.11-.804.302-1.19.52l-17.774 10.4l17.772-10.398a4.54 4.54 0 0 1 1.19-.52z\\\"/><path fill=\\\"#000\\\" d=\\\"M62.155 37.982c-.416.11-.804.302-1.19.52l-17.774 10.4l17.772-10.398a4.54 4.54 0 0 1 1.19-.52z\\\" opacity=\\\".1\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M85.88 49.806a5.615 5.615 0 0 0-1.605-1.29l-17.968-10.07l17.967 10.07a5.6 5.6 0 0 1 1.606 1.29\\\"/><path fill=\\\"#000\\\" d=\\\"M85.88 49.806a5.615 5.615 0 0 0-1.605-1.29l-17.968-10.07l17.967 10.07a5.6 5.6 0 0 1 1.606 1.29\\\" opacity=\\\".1\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M86.848 51.289a6.7 6.7 0 0 1 .22.684c-.055-.219-.14-.438-.222-.684z\\\"/><path fill=\\\"#000\\\" d=\\\"M86.848 51.289a6.7 6.7 0 0 1 .22.684c-.055-.219-.14-.438-.222-.684z\\\" opacity=\\\".1\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M86.956 75.186a5.34 5.34 0 0 0 .249-1.646V53.098V73.54a5.34 5.34 0 0 1-.25 1.646z\\\"/><path fill=\\\"#000\\\" d=\\\"M86.956 75.186a5.34 5.34 0 0 0 .249-1.646V53.098V73.54a5.34 5.34 0 0 1-.25 1.646z\\\" opacity=\\\".1\\\"/></g>\"\n\t\t},\n\t\t\"jetpackcompose-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\"><path fill=\\\"#083042\\\" d=\\\"M43.657 82.153a3.578 3.578 0 0 1-.42-1.153c.08.404.224.793.42 1.153m.518.639c.198.196.42.367.668.489l16.88 9.445l-16.88-9.445a2.591 2.591 0 0 1-.667-.49z\\\"/><path fill=\\\"#083042\\\" d=\\\"M64.323 104.673h-.126a7.42 7.42 0 0 1-3.588-.91L35.415 89.685a4.648 4.648 0 0 1-2.401-4.047v-28.65c0-1.226.222-2.404.74-3.433L14.056 42.59c-.815 1.716-1.236 3.654-1.211 5.69v47.316a7.756 7.756 0 0 0 3.984 6.696l41.554 23.255c1.833 1.03 3.887 1.52 5.915 1.52v-.023c.05-2.968.026-14.866.026-22.37\\\"/><path fill=\\\"#3ddb85\\\" d=\\\"m84.096 58.75l-.15-.22c-.123-.17-.245-.319-.369-.488c.124.146.246.318.37.489a.87.87 0 0 1 .149.22M63.358 47.274c.124 0 .223-.025.348-.025c-.125.025-.25.025-.35.025z\\\"/><path fill=\\\"#3ddc84\\\" d=\\\"M33.73 53.527a6.45 6.45 0 0 1 2.526-2.745l23.707-13.86a7.21 7.21 0 0 1 7.179-.074l23.957 13.418a8.04 8.04 0 0 1 2.699 2.453l19.378-11.454a13.332 13.332 0 0 0-4.43-4.023l-39.574-22.15a11.908 11.908 0 0 0-11.83.122L18.213 38.075a10.463 10.463 0 0 0-4.159 4.514l19.677 10.938z\\\"/><path fill=\\\"#3ddb85\\\" d=\\\"M62.369 47.472c.051-.025.102-.025.152-.05c-.05.025-.1.025-.152.05M43.703 59.047c.05-.098.1-.196.15-.268c-.05.098-.1.17-.15.27l-.074.22z\\\"/><path fill=\\\"#4285f4\\\" d=\\\"m113.153 41.265l-19.38 11.454c.742 1.08 1.188 2.353 1.212 3.655V83.65a7.045 7.045 0 0 1-3.513 6.18L67.76 103.692a7.214 7.214 0 0 1-3.44.98c.026 7.482.026 19.38-.024 22.346v.026a12.098 12.098 0 0 0 5.914-1.62l39.13-22.886c3.639-2.133 5.867-6.01 5.816-10.204V47.32c-.024-2.182-.767-4.266-2.004-6.057z\\\"/><path fill=\\\"#4285f4\\\" d=\\\"M84.545 80.731c-.025.05-.025.1-.05.15a.346.346 0 0 0 .05-.15m-.249-21.659c-.05-.123-.124-.221-.198-.343c.074.122.148.245.198.343m-17.769 33.63l15.89-9.295c.099-.049.173-.124.273-.172c-.1.048-.174.123-.274.172zm17.82-11.406c-.05.124-.124.246-.175.37c.05-.147.1-.27.176-.37z\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M43.632 59.267a4.924 4.924 0 0 0-.37 1.498c-.026.195-.026.391-.026.614v19.205c0 .146 0 .27.026.418c.05.416.198.809.42 1.152c.149.246.32.44.495.637a2.643 2.643 0 0 0 .667.492l16.88 9.443a4.908 4.908 0 0 0 2.4.612h.174a4.608 4.608 0 0 0 2.228-.66l15.89-9.298c.098-.048.172-.123.271-.172a3.667 3.667 0 0 0 .496-.393c.232-.21.448-.44.643-.686c.123-.172.247-.343.347-.515a2.357 2.357 0 0 0 .172-.368c.05-.121.125-.27.175-.417c.023-.05.023-.099.048-.147a4.83 4.83 0 0 0 .223-1.473V60.936c0-.342-.05-.66-.123-.98c-.049-.222-.125-.419-.199-.615l-.148-.293c-.049-.123-.125-.22-.199-.345l-.148-.22c-.124-.172-.247-.32-.37-.49a5.012 5.012 0 0 0-1.436-1.153l-16.062-9.001a5.493 5.493 0 0 0-.867-.393a5.24 5.24 0 0 0-1.238-.22h-.322c-.123 0-.222 0-.345.022a5.058 5.058 0 0 0-.842.148c-.05.024-.099.024-.149.05c-.37.1-.718.27-1.065.465L45.39 57.21a4.066 4.066 0 0 0-1.19 1.055c-.12.172-.245.343-.344.514c-.05.1-.099.172-.148.27l-.075.22z\\\"/><path fill=\\\"#083042\\\" d=\\\"M64.296 93.337h-.174a4.927 4.927 0 0 1-2.4-.61l-16.88-9.445a3.34 3.34 0 0 1-.669-.491a2.96 2.96 0 0 1-.495-.639A3.574 3.574 0 0 1 43.259 81c-.026-.146-.026-.27-.026-.416V61.376c0-.196 0-.415.025-.613a5.11 5.11 0 0 1 .371-1.497l-4.555-2.77l-5.346-2.968c-.495 1.03-.742 2.206-.742 3.434v28.65a4.758 4.758 0 0 0 2.401 4.048l25.172 14.104a7.172 7.172 0 0 0 3.588.907h.126c0-3.655-.026-6.255-.026-6.255z\\\"/><path fill=\\\"#041619\\\" d=\\\"M64.296 93.337h-.174a4.927 4.927 0 0 1-2.4-.61l-16.88-9.445a3.34 3.34 0 0 1-.669-.491a2.96 2.96 0 0 1-.495-.639A3.574 3.574 0 0 1 43.259 81c-.026-.146-.026-.27-.026-.416V61.376c0-.196 0-.415.025-.613a5.11 5.11 0 0 1 .371-1.497l-4.555-2.77l-5.346-2.968c-.495 1.03-.742 2.206-.742 3.434v28.65a4.758 4.758 0 0 0 2.401 4.048l25.172 14.104a7.172 7.172 0 0 0 3.588.907h.126c0-3.655-.026-6.255-.026-6.255z\\\"/><path fill=\\\"#3ddb85\\\" d=\\\"M91.074 50.266L67.117 36.847a7.21 7.21 0 0 0-7.179.074L36.23 50.781a6.302 6.302 0 0 0-2.527 2.748l5.373 2.968l4.553 2.77l.074-.22c.05-.099.1-.196.148-.27c.099-.17.223-.342.347-.514c.321-.419.718-.76 1.19-1.055l15.886-9.298a5.804 5.804 0 0 1 1.065-.464c.05-.025.1-.025.148-.05c.275-.076.557-.123.841-.148c.123 0 .222-.024.347-.024h.322c.42.027.834.1 1.237.22c.304.096.595.227.866.394l16.062 9.002a5.355 5.355 0 0 1 1.437 1.153c.123.147.248.32.37.49l.15.22l4.108-2.722l5.568-3.31c-.718-.959-1.633-1.818-2.722-2.406z\\\"/><path fill=\\\"#37bf6e\\\" d=\\\"M91.074 50.266L67.117 36.847a7.21 7.21 0 0 0-7.179.074L36.23 50.781a6.302 6.302 0 0 0-2.527 2.748l5.373 2.968l4.553 2.77l.074-.22c.05-.099.1-.196.148-.27c.099-.17.223-.342.347-.514c.321-.419.718-.76 1.19-1.055l15.886-9.298a5.804 5.804 0 0 1 1.065-.464c.05-.025.1-.025.148-.05c.275-.076.557-.123.841-.148c.123 0 .222-.024.347-.024h.322c.42.027.834.1 1.237.22c.304.096.595.227.866.394l16.062 9.002a5.355 5.355 0 0 1 1.437 1.153c.123.147.248.32.37.49l.15.22l4.108-2.722l5.568-3.31c-.718-.959-1.633-1.818-2.722-2.406z\\\"/><path fill=\\\"#4285f4\\\" d=\\\"M84.096 58.753c.074.121.124.22.198.343l.149.295a4.275 4.275 0 0 1 .321 1.593V79.26a4.84 4.84 0 0 1-.223 1.471c-.024.049-.024.1-.05.147a3.06 3.06 0 0 1-.171.418c-.052.121-.126.245-.176.367c-.098.173-.222.344-.346.515a5.582 5.582 0 0 1-.643.687c-.148.147-.321.27-.495.393c-.1.048-.173.122-.272.172l-15.89 9.295a5.221 5.221 0 0 1-2.227.664v5.077s0 2.6.025 6.256a6.96 6.96 0 0 0 3.44-.982l23.71-13.86a7.101 7.101 0 0 0 3.515-6.18V56.423c-.025-1.325-.47-2.577-1.212-3.657l-5.57 3.313z\\\"/><path fill=\\\"#3870b2\\\" d=\\\"M84.096 58.753c.074.121.124.22.198.343l.149.295a4.275 4.275 0 0 1 .321 1.593V79.26a4.84 4.84 0 0 1-.223 1.471c-.024.049-.024.1-.05.147a3.06 3.06 0 0 1-.171.418c-.052.121-.126.245-.176.367c-.098.173-.222.344-.346.515a5.582 5.582 0 0 1-.643.687c-.148.147-.321.27-.495.393c-.1.048-.173.122-.272.172l-15.89 9.295a5.221 5.221 0 0 1-2.227.664v5.077s0 2.6.025 6.256a6.96 6.96 0 0 0 3.44-.982l23.71-13.86a7.101 7.101 0 0 0 3.515-6.18V56.423c-.025-1.325-.47-2.577-1.212-3.657l-5.57 3.313z\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M62.368 47.47c-.373.099-.72.27-1.064.466l-15.89 9.297l15.888-9.295a4.058 4.058 0 0 1 1.063-.466z\\\"/><path fill=\\\"#000\\\" d=\\\"M62.368 47.47c-.373.099-.72.27-1.064.466l-15.89 9.297l15.888-9.295a4.058 4.058 0 0 1 1.063-.466z\\\" opacity=\\\".1\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M83.577 58.042a5.02 5.02 0 0 0-1.435-1.155L66.08 47.885l16.062 9.002a5.007 5.007 0 0 1 1.436 1.155\\\"/><path fill=\\\"#000\\\" d=\\\"M83.577 58.042a5.02 5.02 0 0 0-1.435-1.155L66.08 47.885l16.062 9.002a5.007 5.007 0 0 1 1.436 1.155\\\" opacity=\\\".1\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M84.443 59.366a5.99 5.99 0 0 1 .196.613c-.049-.196-.125-.392-.198-.613z\\\"/><path fill=\\\"#000\\\" d=\\\"M84.443 59.366a5.99 5.99 0 0 1 .196.613c-.049-.196-.125-.392-.198-.613z\\\" opacity=\\\".1\\\"/><path fill=\\\"#d6f0ff\\\" d=\\\"M84.539 80.73a4.774 4.774 0 0 0 .223-1.471V60.984V79.26a4.774 4.774 0 0 1-.223 1.471\\\"/><path fill=\\\"#000\\\" d=\\\"M84.539 80.73a4.774 4.774 0 0 0 .223-1.471V60.984V79.26a4.774 4.774 0 0 1-.223 1.471\\\" opacity=\\\".1\\\"/><g fill=\\\"#4285f4\\\" stroke-linecap=\\\"square\\\" stroke-linejoin=\\\"bevel\\\" color=\\\"#000\\\"><path d=\\\"M15.008 10.275c-.925 0-1.44-.622-1.44-1.745v-.621h-1.256v.846c0 1.56 1.03 2.55 2.683 2.55c1.678 0 2.722-1.044 2.722-2.709v-7.23h-1.229v6.78c0 1.217-.278 2.129-1.48 2.129m10.467-2.366c0-2.511-.938-4.031-3.08-4.031c-1.929 0-3.171 1.48-3.171 3.753s1.202 3.674 3.145 3.674c1.586 0 2.683-.898 2.96-2.405h-1.11c-.304.912-.925 1.388-1.81 1.388c-1.282 0-2.01-.965-2.036-2.38zM20.4 7.01c.092-1.282.872-2.114 1.982-2.114c1.137 0 1.917.925 1.917 2.114zm8.908-2.934H28.17V2.173h-1.097v1.903h-.938v.899h.938v5.233c0 .7.476 1.097 1.335 1.097c.264 0 .528-.026.899-.092v-.925a2.037 2.037 0 0 1-.53.053c-.475 0-.607-.133-.607-.622V4.975h1.137zm1.057 9.807h1.11v-3.608c.581.713 1.23 1.03 2.128 1.03c1.784 0 2.96-1.44 2.96-3.647c0-2.326-1.136-3.78-2.973-3.78c-.939 0-1.692.423-2.208 1.242V4.076h-1.017zm3.04-8.974c1.215 0 2.008 1.07 2.008 2.722c0 1.573-.806 2.644-2.008 2.644c-1.163 0-1.93-1.058-1.93-2.683s.767-2.683 1.93-2.683m4.255 1.216h1.11c.093-.846.595-1.23 1.626-1.23c.991 0 1.546.37 1.546 1.031v.291c0 .463-.277.661-1.15.767c-2.022.264-3.436.423-3.436 2.273c0 1.255.872 2.048 2.273 2.048c.873 0 1.573-.304 2.353-1.017c.08.7.423 1.017 1.136 1.017c.225 0 .397-.026.754-.119v-.832c-.12.026-.172.026-.238.026c-.383 0-.595-.198-.595-.542v-4.07c0-1.23-.899-1.89-2.604-1.89c-1.242 0-2.709.37-2.775 2.247m2.207 4.216c-.859 0-1.361-.41-1.361-1.11c0-1.52 2.313-1.137 3.436-1.653v1.243c0 .66-.766 1.52-2.075 1.52m10.48-3.939c-.132-1.652-1.15-2.524-2.735-2.524c-1.864 0-3.08 1.48-3.08 3.78c0 2.233 1.19 3.647 3.067 3.647c1.652 0 2.696-.99 2.828-2.682h-1.11c-.185 1.11-.754 1.665-1.692 1.665c-1.216 0-1.943-.991-1.943-2.63c0-1.732.714-2.762 1.917-2.762c.925 0 1.506.541 1.638 1.506zm2.366-5.035h-1.097V11h1.097V8.305l1.07-1.057l2.34 3.753h1.361l-2.828-4.533l2.405-2.392h-1.414L52.713 7.01zm8.736 4.93c0 1.969.872 5.008 4.348 5.008c2.353 0 3.674-1.268 3.965-3.82h-1.269c-.29 1.825-1.07 2.737-2.683 2.737c-1.916 0-3.132-1.533-3.132-3.939c0-2.471 1.163-3.991 3.027-3.991c1.56 0 2.326.714 2.603 2.062h1.256c-.384-2.115-1.6-3.146-3.714-3.146c-3.515 0-4.4 3.08-4.4 5.088m12.357-2.42c-1.943 0-3.119 1.389-3.119 3.715s1.163 3.713 3.132 3.713c1.943 0 3.133-1.387 3.133-3.66c0-2.393-1.15-3.767-3.146-3.767m.013 1.019c1.243 0 1.983 1.017 1.983 2.735c0 1.626-.767 2.657-1.983 2.657c-1.229 0-1.982-1.018-1.982-2.696c0-1.666.753-2.696 1.982-2.696m4.322-.82v6.925h1.11V6.653c0-1.004.727-1.81 1.626-1.81c.82 0 1.282.502 1.282 1.387v4.771h1.11V6.653c0-1.004.727-1.81 1.625-1.81c.807 0 1.282.515 1.282 1.387v4.771h1.11V5.807c0-1.242-.713-1.93-2.008-1.93c-.925 0-1.48.278-2.128 1.058c-.41-.74-.965-1.057-1.864-1.057c-.925 0-1.533.344-2.127 1.176v-.978zm10.731 9.807h1.11v-3.608c.582.713 1.23 1.03 2.128 1.03c1.785 0 2.96-1.44 2.96-3.647c0-2.326-1.136-3.78-2.973-3.78c-.938 0-1.692.423-2.207 1.242V4.076h-1.018zm3.04-8.974c1.216 0 2.009 1.07 2.009 2.722c0 1.573-.806 2.644-2.009 2.644c-1.163 0-1.93-1.058-1.93-2.683s.767-2.683 1.93-2.683m7.07-1.031c-1.942 0-3.118 1.388-3.118 3.714s1.163 3.713 3.132 3.713c1.943 0 3.132-1.387 3.132-3.66c0-2.393-1.15-3.767-3.145-3.767m.014 1.018c1.242 0 1.982 1.017 1.982 2.735c0 1.626-.766 2.657-1.982 2.657c-1.23 0-1.982-1.018-1.982-2.696c0-1.666.753-2.696 1.982-2.696m5.141 4.044h-1.163c.053 1.599.952 2.365 2.762 2.365c1.745 0 2.855-.859 2.855-2.193c0-1.031-.582-1.6-1.956-1.93l-1.057-.251c-.9-.212-1.282-.502-1.282-.991c0-.635.568-1.044 1.467-1.044c.885 0 1.36.383 1.387 1.11h1.163c-.013-1.362-.912-2.128-2.51-2.128c-1.613 0-2.657.833-2.657 2.115c0 1.083.555 1.599 2.194 1.995l1.03.251c.767.185 1.071.463 1.071.965c0 .648-.648 1.084-1.612 1.084c-1.348 0-1.6-.674-1.692-1.348m11.55-1.031c0-2.511-.937-4.031-3.078-4.031c-1.93 0-3.172 1.48-3.172 3.753s1.202 3.674 3.145 3.674c1.586 0 2.683-.898 2.96-2.405h-1.11c-.304.912-.925 1.388-1.81 1.388c-1.282 0-2.01-.965-2.036-2.38zm-5.074-.899c.092-1.282.872-2.114 1.982-2.114c1.137 0 1.917.925 1.917 2.114z\\\"/><path d=\\\"M65.85.934c-1.84 0-3.047.832-3.75 1.916c-.702 1.085-.926 2.401-.926 3.446c0 1.025.221 2.322.916 3.393c.694 1.069 1.89 1.893 3.708 1.893c1.226 0 2.225-.338 2.945-1.031c.72-.693 1.142-1.716 1.292-3.033l-.273-.309h-1.269l-.27.234c-.142.881-.397 1.509-.775 1.905c-.378.398-.883.598-1.637.598c-.885 0-1.574-.341-2.07-.963c-.493-.623-.786-1.543-.786-2.7c0-1.192.28-2.13.756-2.755c.476-.626 1.138-.96 1.994-.96c.738 0 1.246.166 1.608.463c.36.297.595.745.726 1.379l.27.219h1.255l.272-.325c-.2-1.1-.627-1.953-1.302-2.525c-.675-.573-1.583-.845-2.684-.845m-49.362.156l-.275.276v6.78c0 .587-.076 1.078-.254 1.383c-.176.305-.42.47-.951.47c-.401 0-.664-.122-.855-.351c-.19-.23-.312-.6-.312-1.12V7.91l-.275-.275h-1.254l-.276.275v.845c0 .84.284 1.56.808 2.06c.523.497 1.27.767 2.15.767c.897 0 1.657-.284 2.186-.812c.528-.526.813-1.284.813-2.174v-7.23l-.275-.276zm35.128 0l-.275.276V11l.275.276h1.097L52.99 11V8.421l.744-.736l2.158 3.462l.23.129h1.363l.235-.419l-2.713-4.348l2.25-2.237l-.196-.471h-1.413l-.196.08l-2.462 2.465v-4.98l-.276-.276zm14.234.395c1.013 0 1.77.242 2.327.713c.475.402.75 1.089.953 1.88h-.672c-.16-.591-.376-1.127-.795-1.473c-.481-.397-1.136-.587-1.957-.587c-1.007 0-1.862.425-2.434 1.176c-.57.752-.868 1.81-.868 3.09c0 1.248.313 2.296.905 3.041s1.47 1.172 2.502 1.172c.858 0 1.549-.256 2.038-.771c.436-.46.659-1.16.818-1.965h.695c-.173 1.025-.466 1.878-1 2.392c-.602.58-1.437.878-2.564.878c-1.657 0-2.637-.7-3.249-1.64c-.61-.944-.826-2.15-.826-3.096c0-.963.22-2.19.84-3.146c.62-.957 1.61-1.664 3.287-1.664m-49.087.156h.68v6.955c0 .774-.24 1.373-.652 1.784c-.413.412-1.013.65-1.796.65c-.771 0-1.366-.228-1.771-.615c-.406-.386-.637-.941-.637-1.66v-.57h.704v.344c0 .603.137 1.108.437 1.47c.298.36.756.55 1.28.55c.67 0 1.167-.29 1.43-.745c.264-.455.324-1.03.324-1.658zm35.129 0h.546v5.37l.471.193l2.853-2.852h.632l-1.932 1.921l-.038.342l2.564 4.111h-.713l-2.258-3.622l-.426-.052l-1.072 1.058l-.081.196v2.42h-.546zm-24.817.257l-.275.275v1.628h-.665l-.276.275v.899l.276.275h.665v4.958c0 .413.153.785.445 1.025c.292.24.691.349 1.164.349c.282 0 .568-.03.947-.097l.227-.271v-.925l-.348-.267a1.817 1.817 0 0 1-.456.043c-.213 0-.278-.036-.286-.045c-.01-.01-.046-.081-.046-.302V5.25h.86l.276-.275v-.899l-.275-.275h-.86V2.173l-.276-.275zm.275.55h.547v1.628l.275.276h.86V4.7h-.86l-.275.275v4.743c0 .27.028.51.203.689c.177.178.415.209.679.209c.094 0 .168-.02.253-.027v.377a4.637 4.637 0 0 1-.623.065c-.388 0-.653-.091-.814-.225c-.16-.132-.245-.309-.245-.598V4.975l-.275-.275h-.665v-.348h.665l.275-.276zm-4.953 1.155c-1.036 0-1.919.407-2.522 1.12c-.603.716-.927 1.722-.927 2.908s.313 2.172.91 2.868c.596.696 1.473 1.083 2.511 1.083c1.69 0 2.935-1.017 3.233-2.632l-.271-.324h-1.112l-.262.187c-.277.833-.762 1.2-1.55 1.2c-.57 0-.98-.202-1.275-.559c-.24-.292-.338-.768-.396-1.269h4.738l.275-.275c0-1.29-.238-2.357-.79-3.12c-.552-.763-1.428-1.187-2.563-1.187zm11.194 0c-.773 0-1.405.356-1.932.875v-.402l-.275-.275h-1.018l-.275.275v9.807l.275.275h1.11l.275-.275v-3.035c.527.443 1.115.734 1.852.734c.967 0 1.795-.403 2.362-1.1c.566-.696.874-1.672.874-2.824c0-1.208-.293-2.215-.856-2.932c-.564-.716-1.401-1.123-2.392-1.123m6.844 0c-.65 0-1.373.09-1.973.46c-.6.37-1.042 1.043-1.077 2.053l.275.283h1.11l.273-.245c.041-.374.157-.592.355-.742c.198-.15.518-.241.998-.241c.462 0 .796.091.991.221c.197.132.28.281.28.534v.29c0 .176-.017.217-.127.29c-.109.075-.361.155-.78.206h-.003c-1.01.132-1.887.228-2.564.567c-.676.34-1.112.982-1.112 1.977c0 .691.249 1.29.701 1.7c.454.409 1.094.626 1.846.626c.824 0 1.534-.323 2.247-.893c.068.203.101.437.253.573c.25.226.592.32.99.32c.246 0 .457-.035.823-.13l.207-.267v-.832l-.336-.269c-.102.022-.112.022-.178.022c-.144 0-.217-.037-.254-.072c-.038-.034-.066-.08-.066-.195V5.767c0-.682-.27-1.26-.775-1.628c-.507-.369-1.216-.536-2.104-.536m7.176 0c-1.005 0-1.864.411-2.45 1.13c-.587.718-.903 1.726-.903 2.925c0 1.165.309 2.145.892 2.839c.584.694 1.44 1.085 2.448 1.085c.88 0 1.634-.271 2.175-.783c.54-.513.859-1.258.93-2.156l-.276-.297h-1.11l-.271.23c-.086.518-.259.876-.487 1.1c-.228.223-.518.337-.933.337c-.533 0-.92-.201-1.207-.589c-.286-.388-.462-.988-.462-1.766c0-.828.174-1.465.458-1.874c.284-.41.66-.613 1.183-.613c.41 0 .71.113.931.32c.223.203.375.514.435.95l.273.235h1.11l.276-.297c-.07-.877-.384-1.584-.913-2.062c-.529-.478-1.256-.714-2.1-.714m26.195 0c-1.036 0-1.91.382-2.5 1.082c-.59.7-.894 1.696-.894 2.906c0 1.209.303 2.206.892 2.907c.591.7 1.466 1.084 2.515 1.084c1.038 0 1.911-.383 2.504-1.076c.594-.694.903-1.676.903-2.861c0-1.24-.298-2.25-.888-2.958c-.59-.707-1.47-1.084-2.532-1.084m7.48 0c-.755 0-1.331.322-1.852.821v-.348l-.275-.275H78.14l-.275.275V11l.275.276h1.11l.275-.276V6.653c0-.87.617-1.536 1.35-1.536c.354 0 .588.1.747.273c.16.174.26.445.26.84V11l.276.276h1.11l.275-.276V6.653c0-.87.617-1.536 1.351-1.536c.344 0 .578.103.74.28c.162.176.267.447.267.832V11l.275.276h1.11l.276-.276V5.807c0-.674-.202-1.242-.606-1.63c-.402-.387-.982-.574-1.68-.574c-.873 0-1.503.329-2.11.963c-.443-.605-1.044-.963-1.882-.963m10.811 0c-.773 0-1.404.356-1.932.875v-.402l-.275-.275H88.87l-.275.275v9.807l.275.275h1.11l.276-.275v-3.035c.526.443 1.114.734 1.851.734c.967 0 1.799-.403 2.365-1.1c.566-.696.873-1.672.873-2.824c0-1.208-.295-2.215-.859-2.932c-.562-.716-1.4-1.123-2.39-1.123m6.886 0c-1.038 0-1.908.382-2.498 1.082c-.59.7-.897 1.696-.897 2.906c0 1.209.302 2.206.892 2.907c.59.7 1.465 1.084 2.515 1.084c1.037 0 1.91-.383 2.504-1.076c.594-.694.903-1.676.903-2.861c0-1.24-.297-2.25-.888-2.958c-.59-.707-1.47-1.084-2.531-1.084m6.818 0c-.853 0-1.58.22-2.103.637c-.524.417-.826 1.037-.826 1.753c0 .589.167 1.09.569 1.459c.403.367.994.601 1.834.804l1.03.252h.002c.36.087.583.193.701.298c.117.106.157.203.157.398c0 .232-.1.405-.323.555c-.221.15-.573.253-1.013.253c-.628 0-.938-.148-1.118-.337c-.18-.187-.258-.456-.302-.772l-.273-.239h-1.16l-.275.285c.027.849.29 1.533.817 1.982c.525.451 1.275.65 2.22.65c.918 0 1.693-.225 2.25-.653c.557-.43.88-1.072.88-1.816c0-.568-.174-1.059-.545-1.425c-.371-.364-.91-.602-1.623-.774l-1.057-.249l-.002-.002c-.43-.101-.719-.22-.873-.34c-.155-.12-.196-.21-.196-.383a.606.606 0 0 1 .282-.536c.192-.137.502-.231.91-.231c.403 0 .676.088.843.22c.166.135.258.32.269.625l.275.264h1.163l.276-.277c-.008-.742-.268-1.366-.76-1.785c-.49-.415-1.184-.616-2.027-.616zm6.809 0c-1.036 0-1.919.407-2.522 1.12c-.602.716-.927 1.722-.927 2.908s.314 2.172.91 2.868c.596.696 1.473 1.083 2.511 1.083c1.69 0 2.933-1.017 3.23-2.632l-.268-.324h-1.11l-.263.187c-.277.833-.762 1.2-1.55 1.2c-.57 0-.98-.202-1.275-.559c-.24-.292-.338-.768-.396-1.269h4.738l.275-.275c0-1.29-.237-2.357-.79-3.12c-.552-.763-1.428-1.187-2.563-1.187m-90.213.55c1.004 0 1.666.336 2.118.96c.407.563.577 1.469.617 2.522h-4.757l-.276.278c.013.754.213 1.412.608 1.891c.397.48.991.76 1.702.76c.904 0 1.576-.54 1.943-1.388h.528c-.356 1.144-1.18 1.855-2.51 1.855c-.907 0-1.602-.316-2.093-.889c-.49-.572-.778-1.421-.778-2.51c0-1.087.297-1.959.797-2.554c.501-.593 1.206-.925 2.1-.925m11.194 0c.845 0 1.492.32 1.957.913c.465.592.74 1.474.74 2.592c0 1.055-.281 1.902-.75 2.478c-.467.576-1.117.895-1.935.895c-.834 0-1.37-.263-1.914-.93l-.488.172v3.334h-.56V4.352h.467v.767l.507.147c.473-.754 1.12-1.113 1.976-1.113m6.844 0c.817 0 1.41.162 1.78.43c.368.27.55.636.55 1.184v4.071c0 .23.077.452.24.603c.154.143.369.196.592.202v.31c-.171.037-.338.077-.48.077c-.316 0-.5-.067-.62-.176c-.122-.108-.207-.287-.243-.598l-.457-.172c-.75.685-1.36.947-2.169.947c-.648 0-1.142-.184-1.476-.484c-.332-.301-.52-.727-.52-1.291c0-.855.27-1.215.807-1.484c.535-.268 1.376-.382 2.387-.514c.453-.055.775-.128 1.023-.295a.893.893 0 0 0 .37-.747v-.29c0-.407-.196-.772-.526-.99c-.33-.221-.767-.316-1.297-.316c-.55 0-.997.1-1.332.353c-.26.198-.357.536-.442.875h-.54c.107-.596.29-1.082.668-1.316c.462-.284 1.09-.379 1.685-.379m7.176 0c.742 0 1.32.2 1.729.57c.338.307.498.828.606 1.403h-.55c-.1-.402-.224-.791-.495-1.041c-.333-.307-.787-.465-1.303-.465c-.68 0-1.262.312-1.635.85c-.374.539-.557 1.285-.557 2.188c0 .86.19 1.576.57 2.092c.381.518.967.814 1.65.814c.523 0 .984-.165 1.32-.497c.283-.277.424-.707.536-1.17h.546c-.107.61-.276 1.163-.634 1.5c-.428.406-1.024.634-1.795.634c-.87 0-1.547-.317-2.027-.889c-.481-.572-.764-1.416-.764-2.484c0-1.102.292-1.983.778-2.58c.488-.597 1.166-.925 2.025-.925m26.195 0c.935 0 1.628.309 2.11.887c.484.578.76 1.454.76 2.605c0 1.089-.283 1.935-.77 2.504c-.488.568-1.181.881-2.087.881c-.92 0-1.609-.312-2.092-.885c-.485-.575-.765-1.437-.765-2.554c0-1.116.282-1.976.767-2.551c.483-.575 1.172-.887 2.077-.887m7.48 0c.833 0 1.25.238 1.624.914l.451.044c.62-.745 1.047-.958 1.917-.958c.599 0 1.022.156 1.3.422c.277.267.434.664.434 1.234v4.916h-.56V6.229c0-.485-.136-.907-.412-1.207c-.277-.3-.683-.456-1.146-.456c-1.062 0-1.9.95-1.9 2.087v4.072h-.56V6.229c0-.49-.13-.912-.406-1.211c-.276-.299-.685-.452-1.151-.452c-1.063 0-1.901.95-1.901 2.087v4.072h-.56V4.352h.467v.703l.5.159c.563-.79 1.045-1.06 1.902-1.06m10.811 0c.846 0 1.495.32 1.96.913c.464.592.74 1.474.74 2.592c0 1.055-.284 1.902-.752 2.478c-.468.576-1.117.895-1.936.895c-.833 0-1.37-.263-1.914-.93l-.488.172v3.334h-.56V4.352h.468v.767l.506.147c.474-.754 1.12-1.113 1.976-1.113m6.886 0c.934 0 1.626.309 2.11.887c.482.578.76 1.454.76 2.605c0 1.089-.284 1.935-.771 2.504c-.487.568-1.18.881-2.087.881c-.92 0-1.608-.312-2.093-.885c-.484-.575-.763-1.437-.763-2.554c0-1.116.28-1.976.765-2.551c.485-.575 1.172-.887 2.079-.887m6.818 0c.756 0 1.312.182 1.674.49c.288.244.383.65.45 1.087h-.623c-.066-.29-.13-.589-.352-.767c-.3-.24-.705-.342-1.187-.342c-.492 0-.915.11-1.23.335a1.2 1.2 0 0 0-.513.983c0 .317.15.616.411.818c.261.2.615.332 1.082.443l1.058.25c.66.158 1.101.37 1.365.63c.263.258.38.568.38 1.032c0 .59-.233 1.045-.667 1.378c-.434.335-1.086.54-1.913.54c-.866 0-1.472-.185-1.861-.518c-.32-.273-.438-.753-.513-1.297h.602c.06.29.11.595.35.841c.304.318.795.507 1.515.507c.524 0 .979-.116 1.321-.346c.342-.23.565-.597.565-1.013c0-.306-.11-.601-.337-.806c-.227-.205-.536-.328-.943-.426l-1.03-.251c-.799-.194-1.307-.416-1.592-.677c-.284-.26-.39-.556-.39-1.051c0-.567.217-1.003.618-1.322c.402-.32 1.002-.518 1.76-.518m6.809 0c1.005 0 1.666.336 2.119.96c.407.563.576 1.469.616 2.522h-4.757l-.276.278c.015.754.213 1.412.61 1.891c.395.48.99.76 1.7.76c.904 0 1.577-.54 1.942-1.388h.53c-.357 1.144-1.18 1.855-2.512 1.855c-.906 0-1.601-.316-2.092-.889c-.49-.572-.778-1.421-.778-2.51c0-1.087.297-1.959.797-2.554c.501-.593 1.206-.925 2.1-.925m-90.227.467a2.126 2.126 0 0 0-1.574.663c-.396.422-.635 1.016-.683 1.707l.275.295h3.897l.275-.275c0-1.31-.903-2.39-2.19-2.39m51.436 0c-.691 0-1.285.309-1.674.837c-.387.529-.583 1.26-.583 2.134c0 .88.194 1.613.583 2.14c.39.53.984.833 1.674.833c.686 0 1.278-.308 1.668-.83c.39-.523.591-1.246.591-2.102c0-.898-.191-1.64-.58-2.175c-.386-.534-.983-.837-1.679-.837m25.177 0c-.693 0-1.285.309-1.674.837s-.584 1.26-.584 2.134c0 .88.195 1.613.584 2.14a2.03 2.03 0 0 0 1.674.833c.685 0 1.277-.308 1.668-.83c.39-.523.59-1.246.59-2.102c0-.898-.192-1.64-.579-2.175c-.387-.534-.983-.837-1.68-.837zm13.598 0a2.126 2.126 0 0 0-1.573.663c-.395.422-.633 1.016-.682 1.707l.275.295h3.897l.275-.275c0-1.31-.905-2.39-2.192-2.39m-79.188.013c-.666 0-1.244.317-1.625.846c-.38.529-.58 1.256-.58 2.112c0 .856.2 1.583.58 2.112c.381.529.958.846 1.625.846a2.07 2.07 0 0 0 1.674-.84c.396-.524.61-1.244.61-2.077c0-.87-.207-1.609-.603-2.145a2.058 2.058 0 0 0-1.681-.854m58.506 0c-.665 0-1.243.317-1.624.846c-.381.529-.58 1.256-.58 2.112c0 .856.199 1.583.58 2.112c.38.529.959.846 1.624.846a2.07 2.07 0 0 0 1.675-.84c.398-.524.61-1.244.61-2.077c0-.87-.208-1.609-.603-2.145a2.058 2.058 0 0 0-1.682-.854m-69.529.538c.885 0 1.426.667 1.545 1.564h-3.136c.084-.42.187-.828.418-1.075c.296-.315.687-.49 1.173-.49m51.436 0c.547 0 .942.205 1.235.609c.294.404.473 1.032.473 1.852c0 .77-.185 1.374-.482 1.772a1.443 1.443 0 0 1-1.226.61c-.538 0-.936-.206-1.23-.607c-.295-.401-.478-1.018-.478-1.816c0-.791.182-1.407.478-1.809c.295-.403.693-.611 1.23-.611m25.177 0c.545 0 .94.205 1.233.609c.294.404.474 1.032.474 1.852c0 .77-.184 1.374-.481 1.772a1.443 1.443 0 0 1-1.227.61c-.539 0-.935-.206-1.23-.607c-.296-.401-.475-1.018-.475-1.816c0-.791.18-1.407.475-1.809c.296-.403.693-.611 1.23-.611zm13.598 0c.885 0 1.428.667 1.546 1.564h-3.135c.084-.42.187-.828.418-1.075c.296-.315.685-.49 1.171-.49m-79.188.013c.526 0 .934.217 1.239.63c.305.413.494 1.035.494 1.817c0 .74-.193 1.34-.499 1.746c-.306.404-.716.621-1.234.621c-.5 0-.887-.211-1.179-.617c-.294-.407-.476-1.02-.476-1.79s.182-1.384.475-1.79c.293-.405.68-.617 1.179-.617zm58.506 0c.527 0 .934.217 1.24.63c.304.413.494 1.035.494 1.817c0 .74-.19 1.34-.497 1.746a1.484 1.484 0 0 1-1.237.621c-.498 0-.884-.211-1.177-.617c-.293-.407-.477-1.02-.477-1.79s.184-1.384.477-1.79c.293-.405.68-.617 1.177-.617M41.826 7.328c-.473.217-1.326.265-2.081.43c-.379.085-.741.2-1.03.43a1.3 1.3 0 0 0-.485 1.042c0 .417.164.788.461 1.03c.297.242.703.356 1.176.356c1.429 0 2.352-.92 2.352-1.795V7.578Zm-.158.584v.91c0 .447-.614 1.243-1.8 1.243c-.386 0-.66-.092-.829-.231c-.169-.137-.258-.32-.258-.604c0-.31.096-.469.276-.61c.178-.143.465-.249.806-.323c.56-.124 1.218-.21 1.805-.386z\\\"/></g></g>\"\n\t\t},\n\t\t\"jira\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconJira0\\\" x1=\\\"22.034\\\" x2=\\\"17.118\\\" y1=\\\"9.773\\\" y2=\\\"14.842\\\" gradientTransform=\\\"scale(4)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".176\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient><linearGradient id=\\\"deviconJira1\\\" x1=\\\"16.641\\\" x2=\\\"10.957\\\" y1=\\\"15.564\\\" y2=\\\"21.094\\\" gradientTransform=\\\"scale(4)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".176\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"#2684ff\\\" d=\\\"M108.023 16H61.805c0 11.52 9.324 20.848 20.847 20.848h8.5v8.226c0 11.52 9.328 20.848 20.848 20.848V19.977A3.98 3.98 0 0 0 108.023 16m0 0\\\"/><path fill=\\\"url(#deviconJira0)\\\" d=\\\"M85.121 39.04H38.902c0 11.519 9.325 20.847 20.844 20.847h8.504v8.226c0 11.52 9.328 20.848 20.848 20.848V43.016a3.983 3.983 0 0 0-3.977-3.977zm0 0\\\"/><path fill=\\\"url(#deviconJira1)\\\" d=\\\"M62.219 62.078H16c0 11.524 9.324 20.848 20.848 20.848h8.5v8.23c0 11.52 9.328 20.844 20.847 20.844V66.059a3.984 3.984 0 0 0-3.976-3.98zm0 0\\\"/>\"\n\t\t},\n\t\t\"jira-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconJiraWordmark0\\\" x1=\\\"22.034\\\" x2=\\\"17.118\\\" y1=\\\"9.773\\\" y2=\\\"14.842\\\" gradientTransform=\\\"translate(1.136 -13.247)scale(3.90869)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".176\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient><linearGradient id=\\\"deviconJiraWordmark1\\\" x1=\\\"16.641\\\" x2=\\\"10.957\\\" y1=\\\"15.564\\\" y2=\\\"21.094\\\" gradientTransform=\\\"translate(1.136 -13.247)scale(3.90869)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".176\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"#2684ff\\\" d=\\\"M106.691 2.387h-45.16c0 11.258 9.114 20.37 20.367 20.37h8.309v8.04c0 11.258 9.113 20.371 20.371 20.371V6.273a3.89 3.89 0 0 0-3.887-3.886m0 0\\\"/><path fill=\\\"url(#deviconJiraWordmark0)\\\" d=\\\"M84.313 24.902h-45.16c0 11.258 9.109 20.368 20.367 20.368h8.308v8.042c0 11.258 9.113 20.372 20.371 20.372V28.789a3.89 3.89 0 0 0-3.886-3.887m0 0\\\"/><path fill=\\\"url(#deviconJiraWordmark1)\\\" d=\\\"M61.934 47.414H16.77c0 11.258 9.113 20.371 20.37 20.371h8.31v8.043c0 11.254 9.112 20.367 20.37 20.367V51.301a3.89 3.89 0 0 0-3.886-3.887m0 0\\\"/><path fill=\\\"#253858\\\" d=\\\"M46 101.242h3.434v16.98c0 4.481-2.043 7.606-6.786 7.606c-1.78 0-3.175-.297-4.132-.633v-3.254c1.047.422 2.308.633 3.57.633c2.914 0 3.914-1.687 3.914-4.14zm9.742-1.312c1.348 0 2.305.804 2.305 2.238c0 1.394-.957 2.242-2.305 2.242c-1.347 0-2.304-.805-2.304-2.242c0-1.39.957-2.238 2.304-2.238m-1.695 7.14h3.305v18.59h-3.305zm11.48 18.59H62.31v-18.59h3.218v3.254c1.133-2.199 3.047-3.761 6.785-3.55v3.128c-4.218-.422-6.785.801-6.785 4.774zm22.231-3.34c-1.219 2.453-3.524 3.72-6.485 3.72c-5.085 0-7.652-4.185-7.652-9.677c0-5.238 2.695-9.672 8.047-9.672c2.781 0 4.957 1.223 6.09 3.633v-3.254h3.305v18.59h-3.305zm-5.613.762c2.957 0 5.566-1.816 5.566-5.957v-1.477c0-4.14-2.39-5.957-5.219-5.957c-3.695 0-5.61 2.364-5.61 6.672c.044 4.48 1.872 6.719 5.263 6.719m0 0\\\"/>\"\n\t\t},\n\t\t\"jiraalign\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconJiraalign0\\\" x1=\\\"8.221\\\" x2=\\\"9.771\\\" y1=\\\"20.546\\\" y2=\\\"12.639\\\" gradientTransform=\\\"translate(.556 -37.409)scale(6.46335)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".15\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\".503\\\" stop-color=\\\"#0e64de\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient><linearGradient id=\\\"deviconJiraalign1\\\" x1=\\\"11.391\\\" x2=\\\"9.84\\\" y1=\\\"10.847\\\" y2=\\\"18.754\\\" gradientTransform=\\\"translate(.556 -37.409)scale(6.46335)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".15\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\".503\\\" stop-color=\\\"#0e64de\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"url(#deviconJiraalign0)\\\" d=\\\"M.555 0c0 24.102 19.488 43.758 43.375 43.758h40.14v40.719h43.368V7.254c0-3.75-3.012-7.02-6.723-7.02Zm0 0\\\"/><path fill=\\\"url(#deviconJiraalign1)\\\" d=\\\"M127.21 128c0-24.105-19.483-43.523-43.382-43.523H43.93v-40.72H.555v77.223c0 3.743 3.02 7.02 6.722 7.02Zm0 0\\\"/>\"\n\t\t},\n\t\t\"jiraalign-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconJiraalignWordmark0\\\" x1=\\\"8.221\\\" x2=\\\"9.771\\\" y1=\\\"20.546\\\" y2=\\\"12.639\\\" gradientTransform=\\\"translate(0 49.109)scale(.87671)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".15\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\".503\\\" stop-color=\\\"#0e64de\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient><linearGradient id=\\\"deviconJiraalignWordmark1\\\" x1=\\\"11.391\\\" x2=\\\"9.84\\\" y1=\\\"10.847\\\" y2=\\\"18.754\\\" gradientTransform=\\\"translate(0 49.109)scale(.87671)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".15\\\" stop-color=\\\"#0052cc\\\"/><stop offset=\\\".503\\\" stop-color=\\\"#0e64de\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2684ff\\\"/></linearGradient></defs><path fill=\\\"#253858\\\" d=\\\"M31.465 53.148h2.484v12.32c0 3.25-1.476 5.52-4.906 5.52c-1.29 0-2.297-.215-2.988-.46v-2.36c.754.305 1.668.46 2.578.46c2.11 0 2.832-1.226 2.832-3.003Zm6.984-.949c.977 0 1.668.582 1.668 1.625c0 1.012-.691 1.625-1.668 1.625c-.972 0-1.668-.582-1.668-1.625c0-1.043.696-1.625 1.668-1.625m-1.195 5.18h2.39v13.488h-2.39Zm8.34 13.488h-2.328V57.38h2.328v2.36c.816-1.594 2.203-2.727 4.91-2.575v2.27c-3.055-.305-4.91.582-4.91 3.464Zm16.078-2.422c-.883 1.778-2.55 2.696-4.688 2.696c-3.683 0-5.539-3.036-5.539-7.02c0-3.8 1.95-7.02 5.82-7.02c2.016 0 3.59.891 4.407 2.637v-2.36h2.39v13.49h-2.39Zm-4.059.52c2.14 0 4.028-1.317 4.028-4.32V63.57c0-3.004-1.73-4.324-3.778-4.324c-2.672 0-4.058 1.719-4.058 4.844c.03 3.281 1.351 4.875 3.808 4.875m15.325-2.082l-1.512 3.984h-2.801l7.176-17.719h3.144l7.176 17.72h-2.8l-1.512-4.016c-1.637.335-3.051.492-4.5.492c-1.414 0-2.832-.188-4.371-.461m8.117-2.055L77.37 55.11l-3.68 9.75c1.356.215 2.485.336 3.586.336c1.164-.03 2.364-.152 3.778-.367Zm10.414 6.129c-2.266 0-3.711-1.043-3.711-3.523V51.738h2.39v15.39c0 1.224.817 1.653 1.856 1.653c.254 0 .41 0 .691-.027v2.082c-.187.062-.597.121-1.226.121m4.75-18.758c.976 0 1.668.582 1.668 1.625c0 1.012-.692 1.625-1.668 1.625c-.973 0-1.664-.582-1.664-1.625c0-1.043.691-1.625 1.664-1.625m-1.227 5.18h2.39v13.488h-2.39Zm15.324 11.066c-.879 1.778-2.546 2.696-4.687 2.696c-3.649 0-5.477-3.036-5.477-7.02c0-3.8 1.922-7.02 5.758-7.02c2.016 0 3.59.891 4.406 2.637v-2.36h2.329v12.263c0 3.953-1.918 6.62-6.86 6.62c-2.328 0-3.586-.308-4.941-.738v-2.265c1.511.488 3.117.797 4.816.797c3.461 0 4.656-1.809 4.656-4.325Zm-4.058.52c2.14 0 4.027-1.317 4.027-4.32V63.57c0-3.004-1.73-4.324-3.777-4.324c-2.672 0-4.059 1.719-4.059 4.844c.031 3.281 1.356 4.875 3.809 4.875M128 70.867h-2.39v-8.152c0-2.426-1.008-3.496-3.274-3.496c-2.203 0-3.742 1.437-3.742 4.168v7.511h-2.39V57.41h2.39v2.207c.879-1.594 2.515-2.484 4.37-2.484c3.18 0 5.005 2.148 5.005 5.855v7.88Zm0 0\\\"/><path fill=\\\"url(#deviconJiraalignWordmark0)\\\" d=\\\"M0 54.184c0 3.27 2.645 5.933 5.883 5.933h5.445v5.524h5.883V55.168c0-.508-.41-.953-.91-.953Zm0 0\\\"/><path fill=\\\"url(#deviconJiraalignWordmark1)\\\" d=\\\"M17.18 71.547c0-3.27-2.645-5.906-5.883-5.906H5.883v-5.524H0v10.477c0 .508.41.953.91.953Zm0 0\\\"/>\"\n\t\t},\n\t\t\"jquery\": {\n\t\t\t\"body\": \"<path fill=\\\"#0868AC\\\" d=\\\"M9.625 32.181C-1.404 48.032-.031 68.657 8.394 85.501c.2.404.41.801.617 1.198l.394.759l.246.437l.439.786c.262.461.53.92.804 1.379l.459.756c.304.491.615.976.933 1.46l.398.614c.439.655.888 1.309 1.352 1.951l.039.05l.228.308c.401.553.814 1.099 1.232 1.639l.464.59c.373.469.752.935 1.138 1.399l.435.52a75.27 75.27 0 0 0 1.586 1.812l.033.033l.061.068a80.44 80.44 0 0 0 1.612 1.699l.517.521c.423.426.853.845 1.287 1.262l.527.5c.58.547 1.166 1.083 1.764 1.607l.028.022l.307.262c.527.456 1.063.909 1.603 1.353l.664.529c.441.354.887.702 1.336 1.044l.714.543c.496.365.995.724 1.499 1.075l.546.387l.15.107c.478.329.967.646 1.456.963l.63.42c.75.474 1.51.943 2.279 1.396l.63.355c.565.326 1.134.646 1.71.959c.312.168.632.327.946.488c.407.213.811.429 1.225.636l.283.137l.501.242c.641.306 1.287.607 1.94.897l.41.184a66.92 66.92 0 0 0 2.263.941l.551.217c.704.271 1.418.539 2.135.791l.268.093c.787.275 1.581.53 2.381.779l.575.172c.814.245 1.619.538 2.458.693c53.339 9.727 68.833-32.053 68.833-32.053c-13.013 16.953-36.111 21.425-57.996 16.446c-.829-.187-1.633-.446-2.442-.685l-.609-.185a72.498 72.498 0 0 1-2.352-.765l-.323-.117a72.245 72.245 0 0 1-2.074-.769l-.582-.229c-.752-.297-1.5-.607-2.239-.931l-.447-.198a92.857 92.857 0 0 1-1.889-.879l-.546-.262c-.491-.239-.977-.493-1.461-.743c-.324-.171-.654-.332-.975-.51a58.591 58.591 0 0 1-1.751-.982l-.591-.33a81.221 81.221 0 0 1-2.28-1.397l-.615-.41a59.283 59.283 0 0 1-1.623-1.079l-.522-.367a89.287 89.287 0 0 1-1.534-1.109l-.679-.514a64.473 64.473 0 0 1-1.384-1.082l-.617-.495a82.693 82.693 0 0 1-1.724-1.453l-.189-.159a83.466 83.466 0 0 1-1.812-1.647l-.511-.491c-.441-.42-.875-.843-1.302-1.277l-.51-.509a70.541 70.541 0 0 1-1.598-1.69l-.079-.084a67.39 67.39 0 0 1-1.621-1.844l-.424-.504a70.602 70.602 0 0 1-1.167-1.442l-.427-.532a78.406 78.406 0 0 1-1.347-1.794c-12.15-16.574-16.516-39.432-6.805-58.204m25.629-2.434c-7.977 11.478-7.543 26.844-1.321 38.983a50.581 50.581 0 0 0 3.528 5.889c1.195 1.713 2.52 3.751 4.106 5.127a48.111 48.111 0 0 0 1.79 1.858l.472.465a51.69 51.69 0 0 0 1.828 1.698l.074.064l.018.018a55.268 55.268 0 0 0 2.135 1.767l.485.378a54.08 54.08 0 0 0 2.233 1.631l.065.049c.336.232.678.448 1.019.672l.483.319c.544.349 1.095.689 1.655 1.015l.235.136c.483.278.972.552 1.463.818l.521.271c.339.177.678.358 1.023.53l.155.07c.703.346 1.412.68 2.136.995l.472.194c.579.246 1.164.486 1.75.71l.75.275c.533.198 1.068.378 1.607.559l.727.233c.767.238 1.525.539 2.324.672c41.183 6.823 50.691-24.886 50.691-24.886c-8.57 12.343-25.168 18.233-42.879 13.635a50.376 50.376 0 0 1-2.333-.674l-.701-.227a45.423 45.423 0 0 1-1.631-.562l-.736-.274a56.418 56.418 0 0 1-1.756-.708l-.473-.2a47.728 47.728 0 0 1-2.148-.999c-.363-.177-.72-.364-1.078-.548l-.622-.32a44.502 44.502 0 0 1-1.363-.77l-.326-.185a47.844 47.844 0 0 1-1.651-1.008l-.498-.332a61.759 61.759 0 0 1-1.069-.707a57.456 57.456 0 0 1-2.226-1.628l-.501-.395c-7.752-6.12-13.898-14.486-16.819-23.971c-3.062-9.836-2.402-20.878 2.903-29.84m22.278-.775c-4.702 6.92-5.164 15.514-1.901 23.156c3.441 8.113 10.491 14.476 18.72 17.495c.339.125.679.237 1.022.354l.451.143c.485.152.966.329 1.467.424c22.74 4.394 28.908-11.669 30.549-14.034c-5.402 7.779-14.482 9.646-25.623 6.942c-.88-.213-1.847-.531-2.695-.832a33.242 33.242 0 0 1-3.201-1.329a33.215 33.215 0 0 1-5.612-3.424c-9.969-7.565-16.162-21.994-9.657-33.745\\\"/>\"\n\t\t},\n\t\t\"jquery-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0868AC\\\" d=\\\"M27.758 20.421c-7.352 10.565-6.437 24.312-.82 35.54l.411.798l.263.506l.164.291l.293.524c.174.307.353.612.536.919l.306.504c.203.326.41.65.622.973l.265.409c.293.437.592.872.901 1.301l.026.033l.152.205c.267.368.542.732.821 1.093l.309.393c.249.313.502.623.759.934l.29.346c.345.406.698.812 1.057 1.208l.021.022l.041.045c.351.383.71.758 1.075 1.133l.344.347c.282.284.569.563.858.841l.351.334c.387.364.777.722 1.176 1.07l.018.016l.205.174c.351.305.708.605 1.068.902l.442.353c.294.235.591.468.89.696l.477.361c.33.243.663.482.999.717l.363.258l.101.072c.318.22.645.431.97.642l.42.28c.5.315 1.007.628 1.519.93l.42.237c.377.217.756.431 1.14.639l.631.326l.816.424l.188.091l.334.161c.427.204.858.405 1.293.599l.273.122c.498.218 1.001.427 1.508.628l.368.144c.469.182.945.359 1.423.527l.179.062c.524.184 1.054.353 1.587.52l.383.114c.542.164 1.079.358 1.638.462c35.553 6.483 45.88-21.364 45.88-21.364c-8.674 11.3-24.069 14.28-38.656 10.962c-.553-.125-1.089-.298-1.628-.456l-.406-.124a44.793 44.793 0 0 1-1.568-.51l-.215-.077a49.537 49.537 0 0 1-1.382-.513l-.388-.152c-.501-.198-1-.405-1.492-.62l-.298-.133a55.398 55.398 0 0 1-1.259-.585l-.364-.175c-.327-.159-.65-.328-.974-.495l-.649-.341c-.395-.21-.782-.43-1.167-.654l-.394-.219a58.203 58.203 0 0 1-1.52-.932l-.41-.273a40.515 40.515 0 0 1-1.081-.719l-.349-.245a54.203 54.203 0 0 1-1.022-.738l-.453-.343c-.31-.237-.618-.476-.922-.721l-.411-.33c-.388-.318-.771-.64-1.149-.969l-.126-.105a54.797 54.797 0 0 1-1.208-1.098l-.34-.328a33.158 33.158 0 0 1-.868-.851l-.34-.34c-.362-.37-.717-.745-1.065-1.126l-.053-.057a41.973 41.973 0 0 1-1.08-1.229l-.283-.336a44.66 44.66 0 0 1-.777-.961l-.285-.355a52.469 52.469 0 0 1-.898-1.195c-8.098-11.047-11.008-26.283-4.535-38.795m17.081-1.626c-5.316 7.65-5.028 17.893-.88 25.983a33.747 33.747 0 0 0 2.351 3.925c.796 1.143 1.68 2.501 2.737 3.418c.383.422.784.834 1.193 1.238l.314.311c.397.385.801.764 1.218 1.132l.05.043l.012.012c.462.405.939.794 1.423 1.178l.323.252c.486.372.981.738 1.489 1.087l.043.033l.68.447l.322.213c.363.233.73.459 1.104.676l.156.092c.322.185.648.367.975.545l.347.18l.682.354l.103.047c.469.23.941.453 1.424.663l.314.13c.386.163.775.323 1.167.473l.5.184c.356.132.712.253 1.072.373l.484.155c.511.158 1.017.359 1.549.448c27.45 4.547 33.787-16.588 33.787-16.588c-5.712 8.228-16.775 12.153-28.58 9.089a34.726 34.726 0 0 1-1.555-.449l-.467-.151a29 29 0 0 1-1.087-.374l-.491-.183a38.673 38.673 0 0 1-1.171-.473l-.315-.133a32.78 32.78 0 0 1-1.432-.666l-.718-.365l-.414-.213c-.306-.166-.61-.338-.909-.514l-.217-.123a30.75 30.75 0 0 1-1.1-.672l-.332-.221l-.712-.472a37.364 37.364 0 0 1-1.484-1.085l-.334-.264c-5.167-4.079-9.263-9.655-11.21-15.977c-2.041-6.557-1.601-13.917 1.935-19.891m14.847-.518c-3.134 4.612-3.442 10.341-1.267 15.435c2.293 5.407 6.992 9.648 12.477 11.66l.682.235l.3.096c.323.102.644.22.978.282c15.157 2.929 19.268-7.777 20.362-9.354c-3.601 5.185-9.653 6.43-17.079 4.627a18.837 18.837 0 0 1-1.796-.555a22.303 22.303 0 0 1-2.134-.886a22.19 22.19 0 0 1-3.741-2.282c-6.645-5.042-10.772-14.659-6.436-22.492\\\"/><path fill=\\\"#131B28\\\" d=\\\"M66.359 96.295h-4.226a.556.556 0 0 0-.517.417l-1.5 6.94l-1.5 6.94a.554.554 0 0 1-.516.417h-2.991c-2.959 0-2.617-2.047-2.011-4.851l.018-.085l.066-.354l.012-.066l.135-.72l.145-.771l.154-.785l.682-3.332l.683-3.332a.336.336 0 0 0-.341-.419h-4.337a.55.55 0 0 0-.514.418l-.933 4.424l-.932 4.425l-.002.006l-.086.412c-1.074 4.903-.79 9.58 5.048 9.727l.17.003h9.163a.554.554 0 0 0 .516-.417l1.976-9.289l1.976-9.29c.049-.23-.103-.417-.338-.418m-45.256-.049h-4.64a.562.562 0 0 0-.521.416l-.44 1.942l-.44 1.942c-.051.229.098.416.333.416h4.676a.556.556 0 0 0 .518-.417l.425-1.941l.425-1.941c.049-.229-.101-.417-.336-.417m-1.346 6.044H15.08a.563.563 0 0 0-.521.416l-.657 2.91l-.656 2.909l-.183.834l-.631 2.97l-.63 2.971c-.049.229-.15.599-.225.821c0 0-.874 2.6-2.343 2.57l-.184-.004l-1.271-.023h-.001a.558.558 0 0 0-.524.407l-.485 2.039l-.484 2.038c-.055.228.093.416.326.42c.833.01 2.699.031 3.828.031c3.669 0 5.604-2.033 6.843-7.883l1.451-6.714l1.361-6.297c.049-.227-.103-.415-.337-.415m86.117-1.574l-.194-.801l-.191-.82l-.097-.414c-.38-1.477-1.495-2.328-3.917-2.328l-3.77-.004l-3.472-.005h-3.907a.552.552 0 0 0-.515.417l-.173.816l-.204.964l-.057.271l-1.759 8.24l-1.67 7.822c-.05.23-.066.512-.038.626c.028.115.479.209.713.209h3.524c.235 0 .532-.042.66-.094s.317-.513.364-.742l.626-3.099l.627-3.1l.001-.005l.084-.413l.76-3.56l.671-3.144a.555.555 0 0 1 .515-.417l11.089-.005c.235.002.383-.185.33-.414m14.275-7.24l-.854.003h-3.549a.904.904 0 0 0-.667.353l-7.849 11.498c-.132.194-.283.166-.335-.062l-.578-2.533a.562.562 0 0 0-.522-.416h-5.045c-.235 0-.374.184-.31.409l2.261 7.921c.064.226.069.596.011.824l-.985 3.833c-.059.228.085.413.32.413h4.987a.58.58 0 0 0 .532-.413l.986-3.833a2.52 2.52 0 0 1 .363-.755l12.742-16.911c.142-.188.065-.341-.169-.339zm-40.086 9.919v-.004a.514.514 0 0 1-.499.441h-6.397c-.222 0-.334-.15-.301-.336l.006-.015l-.004.002l.003-.021l.029-.109c.611-1.624 1.855-2.69 4.194-2.69c2.634-.001 3.148 1.285 2.969 2.732m-1.877-7.384c-8.211 0-10.157 4.984-11.249 10.015c-1.091 5.128-.998 9.921 7.5 9.921h1.03l.256-.001h.06l1.02-.003h.018c2.244-.009 4.495-.026 5.406-.033a.553.553 0 0 0 .509-.42l.344-1.681l.067-.327l.41-2.006a.335.335 0 0 0-.341-.418h-7.639c-3.039 0-3.941-.807-3.608-3.181H84.18l-.001.001l.008-.001a.503.503 0 0 0 .445-.315l.029-.106l-.001.001c1.813-6.839 1.293-11.445-6.474-11.446m-38.81 7.358l-.116.409v.001l-.922 3.268l-.922 3.267a.596.596 0 0 1-.543.411h-4.88c-3.702 0-4.604-2.896-3.702-7.166c.901-4.368 2.668-7.083 6.312-7.358c4.98-.376 5.976 3.126 4.773 7.168m3.348 7.105s2.301-5.588 2.823-8.814c.713-4.319-1.45-10.585-9.804-10.585c-8.306 0-11.914 5.981-13.29 12.484c-1.376 6.55.427 12.293 8.686 12.246l6.516-.024l6.089-.022a.59.59 0 0 0 .534-.414l1.061-4.046c.059-.228-.084-.414-.319-.416l-1.017-.006l-1.017-.006c-.199-.001-.313-.131-.289-.302zm41.12-3.741a.28.28 0 1 1-.56.001a.28.28 0 0 1 .56-.001\\\"/>\"\n\t\t},\n\t\t\"json\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconJson0\\\" x1=\\\"-670.564\\\" x2=\\\"-583.105\\\" y1=\\\"-280.831\\\" y2=\\\"-368.306\\\" gradientTransform=\\\"matrix(.9988 0 0 -.9987 689.011 -259.008)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\"/></linearGradient><path fill=\\\"url(#deviconJson0)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.895 94.303c27.433 37.398 54.281-10.438 54.241-39.205c-.046-34.012-34.518-53.021-54.263-53.021C32.182 2.077 2 28.269 2 64.105C2 103.937 36.596 126 63.873 126c-6.172-.889-26.742-5.296-27.019-52.674c-.186-32.044 10.453-44.846 26.974-39.214c.37.137 18.223 7.18 18.223 30.187c0 22.908-18.156 30.004-18.156 30.004\\\" clip-rule=\\\"evenodd\\\"/><linearGradient id=\\\"deviconJson1\\\" x1=\\\"-579.148\\\" x2=\\\"-666.607\\\" y1=\\\"-364.34\\\" y2=\\\"-276.873\\\" gradientTransform=\\\"matrix(.9988 0 0 -.9987 689.011 -259.008)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\"/></linearGradient><path fill=\\\"url(#deviconJson1)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.863 34.086C45.736 27.838 23.53 42.778 23.53 72.703C23.53 121.565 59.739 126 64.128 126C95.818 126 126 99.808 126 63.972C126 24.14 91.404 2.077 64.127 2.077c7.555-1.046 40.719 8.176 40.719 53.504c0 29.559-24.764 45.651-40.87 38.776c-.37-.137-18.223-7.18-18.223-30.187c0-22.91 18.11-30.085 18.11-30.084\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"jule\": {\n\t\t\t\"body\": \"<path fill=\\\"#5f7389\\\" d=\\\"m39.952 70.569l19.552 15.817v25.426L24.212 83.321zM20.606 54.855L31.889 64l-11.283 9.12zm47.889 31.557l19.552-15.817l15.74 12.752l-35.292 28.491zM24.213 44.68l35.266-28.491v25.426L39.952 57.432zm83.181 10.201v18.29l-11.283-9.145zM68.495 41.614V16.188l35.266 28.491l-15.74 12.752zm45.931-1.494L66.511 1.428C65.687.81 64.845.5 63.987.5s-1.692.309-2.5.927L13.574 40.12c-1.323 1.082-1.984 2.593-1.984 4.534v38.692c0 1.94.661 3.452 1.984 4.534l47.915 38.692c.807.618 1.64.927 2.498.927s1.7-.31 2.525-.927l47.915-38.692c1.322-1.082 1.984-2.594 1.984-4.534V44.654c0-1.94-.662-3.452-1.984-4.534\\\"/>\"\n\t\t},\n\t\t\"jule-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#5f7389\\\" d=\\\"M24.43 34.999c-.392 0-.773.141-1.141.423L1.406 53.093C.802 53.588.5 54.278.5 55.164v17.671c0 .887.302 1.577.906 2.071l21.883 17.671c.368.282.749.424 1.141.424s.776-.142 1.153-.424l21.883-17.67c.604-.495.906-1.185.906-2.072v-17.67c0-.887-.302-1.577-.906-2.072l-21.883-17.67c-.376-.283-.76-.424-1.153-.424m-2.059 7.165v11.612L13.453 61l-7.188-5.824zm4.118 0l16.106 13.012L35.406 61l-8.918-7.224zm71.478 6.7V78.6h6.547V48.864zm-33.453 1.552v19.337c0 1.26-.257 2.247-.77 2.957c-.506.702-1.232 1.053-2.176 1.053c-1.042 0-1.79-.29-2.243-.872c-.438-.582-.657-1.518-.657-2.81H51.86c0 2.84.85 5.034 2.549 6.582c1.707 1.548 4.093 2.322 7.16 2.322c1.835 0 3.496-.385 4.984-1.155c1.495-.778 2.655-1.87 3.478-3.274c.838-1.405 1.257-3.006 1.257-4.803V50.416zm53.459 6.853c-2.092 0-3.897.45-5.415 1.348c-1.526.892-2.689 2.157-3.49 3.795c-.785 1.64-1.177 3.531-1.177 5.676v.544c0 3.074.993 5.57 2.979 7.488c1.986 1.91 4.588 2.866 7.805 2.866c1.714 0 3.312-.329 4.792-.986c1.503-.672 2.658-1.57 3.466-2.696l-2.979-3.523c-1.163 1.45-2.775 2.175-4.837 2.175c-1.254 0-2.273-.336-3.059-1.008c-.785-.672-1.295-1.594-1.529-2.764H127.5v-2.538c0-3.27-.853-5.815-2.56-7.635c-1.7-1.828-4.022-2.742-6.967-2.742m-42.81.386v13.57c0 2.5.589 4.422 1.767 5.767c1.186 1.329 2.927 1.994 5.223 1.994c2.348 0 4.214-.884 5.596-2.651l.192 2.266h6.118V57.655h-6.56v14.693c-.634 1.072-1.699 1.608-3.194 1.608c-1.745 0-2.617-.899-2.617-2.696V57.655zM4.618 59.823L9.77 64l-5.153 4.164zm39.636.012v8.353L39.1 64.011zm73.685 2.464c1.027 0 1.82.29 2.379.872c.551.567.815 1.375.793 2.425v.498h-6.582c.362-2.53 1.5-3.795 3.41-3.795M13.449 67l8.93 7.225v11.612L6.26 72.824zm21.965.012l7.188 5.824l-16.118 13.012V74.235z\\\"/>\"\n\t\t},\n\t\t\"julia\": {\n\t\t\t\"body\": \"<path fill=\\\"#cb3c33\\\" d=\\\"M58.3 93.5c0 15.7-12.7 28.3-28.3 28.3c-15.7 0-28.3-12.7-28.3-28.3c0-15.6 12.7-28.3 28.3-28.3c15.6-.1 28.3 12.6 28.3 28.3\\\"/><path fill=\\\"#eee\\\" d=\\\"M30 123.4c-16.5 0-30-13.4-30-30s13.4-30 30-30s30 13.4 30 30s-13.5 30-30 30m0-56.6c-14.7 0-26.7 12-26.7 26.7s12 26.7 26.7 26.7s26.7-12 26.7-26.7s-12-26.7-26.7-26.7\\\"/><path fill=\\\"#9558b2\\\" d=\\\"M126.4 93.5c0 15.7-12.7 28.3-28.3 28.3s-28.3-12.7-28.3-28.3c0-15.6 12.7-28.3 28.3-28.3s28.3 12.6 28.3 28.3\\\"/><path fill=\\\"#eee\\\" d=\\\"M98 123.4c-16.5 0-30-13.4-30-30s13.4-30 30-30s30 13.4 30 30s-13.4 30-30 30m0-56.6c-14.7 0-26.7 12-26.7 26.7s12 26.7 26.7 26.7s26.7-12 26.7-26.7S112.8 66.8 98 66.8\\\"/><path fill=\\\"#389826\\\" d=\\\"M92.4 34.5c0 15.6-12.7 28.3-28.3 28.3c-15.7 0-28.3-12.7-28.3-28.3S48.4 6.2 64 6.2c15.7 0 28.4 12.7 28.4 28.3\\\"/><path fill=\\\"#eee\\\" d=\\\"M64 64.5c-16.5 0-30-13.4-30-30s13.4-30 30-30s30 13.4 30 30s-13.5 30-30 30m0-56.7c-14.7 0-26.7 12-26.7 26.7s12 26.7 26.7 26.7s26.7-12 26.7-26.7S78.7 7.8 64 7.8\\\"/>\"\n\t\t},\n\t\t\"julia-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M25.1 91.1c0 3.2-.4 5.8-1.1 7.8c-.7 2-1.7 3.5-3.1 4.6c-1.3 1.1-2.9 1.8-4.8 2.2c-1.9.4-3.9.6-6.2.6c-3.1 0-5.4-.5-7.1-1.4c-1.6-1-2.4-2.1-2.4-3.5c0-1.1.5-2.1 1.4-2.8c.9-.8 2.1-1.2 3.7-1.2c1.2 0 2.1.3 2.8.9c.7.6 1.3 1.2 1.7 1.8c.5.7.9 1.1 1.3 1.3c.4.2.7.3 1 .3c.6 0 1.1-.4 1.4-1.1c.3-.7.5-2.1.5-4.2V57l11-3v37.1M40.7 55v25.4c0 .7.1 1.4.4 2s.6 1.2 1.1 1.6c.5.4 1 .8 1.7 1.1c.6.3 1.3.4 2.1.4s1.8-.5 2.9-1.3c1.8-1.3 2.9-2.2 2.9-3.2V55h11v36.1h-11v-3.4c-1.4 1.2-3 2.2-4.6 2.9c-1.6.7-3.2 1.1-4.8 1.1c-1.8 0-3.5-.3-5-.9c-1.5-.6-2.9-1.4-4-2.4c-1.2-1-2.1-2.2-2.7-3.6c-.7-1.4-1-2.9-1-4.4V55zm37.5 36.1H67.3V40.5l10.9-3zM82.7 57l11-3v37.1h-11zm33.9 15.5c-1.1.4-2.1 1-3.2 1.6c-1.1.6-2 1.2-2.9 1.9c-.9.7-1.6 1.5-2.1 2.3s-.8 1.6-.8 2.5c0 .7.1 1.3.3 1.9c.2.6.4 1.2.7 1.6c.3.4.7.8 1.1 1.1c.4.3.8.4 1.2.4c.9 0 1.8-.3 2.7-.8c.9-.5 1.9-1.2 3.1-2.1V72.5m10.9 18.6h-11v-2.9c-.6.5-1.2 1-1.8 1.4c-.6.4-1.2.8-1.9 1.1s-1.5.6-2.4.7c-.9.2-2 .3-3.2.3c-1.7 0-3.2-.2-4.5-.7c-1.3-.5-2.5-1.1-3.4-2c-.9-.8-1.6-1.8-2.1-3c-.5-1.1-.7-2.4-.7-3.7c0-1.4.3-2.6.8-3.7s1.2-2.1 2.2-3c.9-.9 2-1.7 3.2-2.4c1.2-.7 2.5-1.4 3.9-1.9c1.4-.6 2.8-1.1 4.3-1.6s3-1 4.5-1.4l1.2-.3v-3.6c0-2.3-.4-3.9-1.3-4.9c-.9-1-2.1-1.4-3.5-1.4c-1.7 0-2.9.4-3.6 1.2c-.7.8-1 1.8-1 3c0 .7-.1 1.3-.2 2c-.1.6-.4 1.2-.7 1.7c-.4.5-.9.9-1.5 1.2c-.7.3-1.5.4-2.5.4c-1.5 0-2.8-.4-3.7-1.3c-1-.9-1.4-2-1.4-3.3c0-1.2.4-2.4 1.3-3.5c.8-1.1 2-2 3.4-2.8c1.4-.8 3.1-1.4 5-1.8c1.9-.4 3.9-.7 6-.7c2.6 0 4.8.2 6.7.7c1.9.5 3.4 1.1 4.6 2c1.2.9 2.1 1.9 2.7 3.1c.6 1.2.9 2.6.9 4.1v27\\\"/><path fill=\\\"#eee\\\" d=\\\"M9.9 106.6c-3.1 0-5.6-.5-7.3-1.5c-1.8-1-2.7-2.3-2.7-3.8c0-1.2.5-2.3 1.5-3.2c1-.8 2.3-1.3 3.9-1.3c1.3 0 2.3.4 3 1c.7.6 1.3 1.3 1.8 1.9c.6.8 1 1.1 1.2 1.2c.3.2.5.3.7.3c.3 0 .7-.1 1-.8c.3-.7.4-2 .4-4V56.7l11.8-3.3v37.7c0 3.2-.4 5.9-1.1 7.9c-.7 2-1.8 3.6-3.2 4.8c-1.4 1.1-3 1.9-5 2.3c-1.6.3-3.7.5-6 .5m-4.4-8.9c-1.4 0-2.6.4-3.4 1.1c-.8.7-1.2 1.5-1.2 2.5c0 1.2.7 2.2 2.2 3.1c1.6.9 3.9 1.4 6.8 1.4c2.2 0 4.3-.2 6.1-.5c1.8-.4 3.3-1.1 4.6-2.1c1.3-1 2.3-2.5 2.9-4.4c.7-1.9 1.1-4.5 1.1-7.6V54.5l-10.2 2.8v39.2c0 2.2-.2 3.6-.5 4.4c-.5 1.1-1.2 1.3-1.8 1.3c-.4 0-.8-.1-1.2-.4c-.4-.3-.9-.7-1.4-1.4c-.4-.6-1-1.2-1.7-1.8c-.5-.6-1.3-.9-2.3-.9m101.8-5.5c-1.7 0-3.3-.3-4.6-.7c-1.4-.5-2.6-1.2-3.5-2.1c-1-.9-1.7-1.9-2.2-3.1c-.5-1.2-.8-2.5-.8-3.9s.3-2.8.8-3.9c.5-1.2 1.3-2.2 2.2-3.1c.9-.9 2-1.7 3.3-2.5c1.2-.7 2.6-1.4 4-2c1.4-.6 2.9-1.1 4.4-1.6c1.5-.5 3-1 4.5-1.4l.9-.2v-3.2c0-2.2-.4-3.7-1.2-4.6c-.8-.9-1.9-1.3-3.2-1.3c-1.6 0-2.7.4-3.3 1.1c-.6.8-.9 1.7-.9 2.8c0 .7-.1 1.4-.2 2.1c-.2.7-.4 1.3-.8 1.8s-1 1-1.7 1.3c-.7.3-1.6.5-2.6.5c-1.6 0-3-.5-4-1.4c-1-1-1.6-2.2-1.6-3.7c0-1.3.5-2.6 1.4-3.7c.9-1.1 2.1-2.1 3.6-2.9c1.5-.8 3.2-1.4 5.1-1.9c1.9-.5 4-.7 6.1-.7c2.6 0 4.9.2 6.8.7c1.9.5 3.5 1.2 4.8 2.1c1.3.9 2.2 2 2.8 3.3c.6 1.3.9 2.7.9 4.3v27.5h-11.8v-2.4c-.4.3-.7.6-1.1.9c-.6.4-1.3.8-2 1.2c-.7.3-1.6.6-2.5.8c-1.3-.2-2.4-.1-3.6-.1m4.4-34.6c1.6 0 2.9.5 3.8 1.6c1 1 1.4 2.8 1.4 5.2v3.9l-1.5.4c-1.4.4-2.9.9-4.4 1.4c-1.5.5-3 1-4.3 1.6c-1.4.6-2.7 1.2-3.9 1.9c-1.2.7-2.2 1.5-3.1 2.3c-.9.9-1.6 1.8-2.1 2.9c-.5 1.1-.8 2.3-.8 3.6c0 1.3.2 2.5.7 3.6c.5 1.1 1.2 2 2 2.8c.9.8 2 1.4 3.2 1.9c1.3.5 2.7.7 4.3.7c1.2 0 2.2-.1 3.1-.3c.9-.2 1.7-.4 2.3-.7c.7-.3 1.3-.7 1.9-1.1c.6-.4 1.2-.9 1.8-1.4l.7-.6v3.4h10.1V64.1c0-1.4-.3-2.7-.8-3.9c-.5-1.1-1.4-2.1-2.6-3c-1.2-.8-2.7-1.5-4.5-1.9c-1.8-.5-4.1-.7-6.6-.7c-2.1 0-4.1.2-5.9.7c-1.8.4-3.5 1-4.9 1.8c-1.4.7-2.5 1.6-3.3 2.7c-.8 1-1.2 2.1-1.2 3.2c0 1.2.4 2.2 1.3 3c.9.8 2 1.2 3.5 1.2c.9 0 1.7-.1 2.3-.4c.6-.3 1-.6 1.3-1c.3-.4.5-.9.7-1.5c.1-.6.2-1.2.2-1.9c0-1.3.4-2.4 1.1-3.3c1-1 2.4-1.5 4.2-1.5M42.5 92.2c-1.8 0-3.6-.3-5.1-.9c-1.6-.6-3-1.5-4.2-2.5c-1.2-1.1-2.1-2.3-2.8-3.7c-.7-1.4-1-3-1-4.6V54.6h11.8v25.8c0 .6.1 1.3.4 1.8c.2.6.6 1.1 1 1.5c.4.4 1 .7 1.6 1c.6.2 1.2.4 1.9.4s1.5-.4 2.7-1.2c1.6-1.1 2.7-2 2.7-2.8V54.6h11.8v36.9H51.5v-2.9c-1.3 1-2.6 1.8-4 2.4c-1.7.8-3.4 1.2-5 1.2M30.2 55.5v25c0 1.5.3 2.9.9 4.2c.6 1.3 1.5 2.5 2.6 3.5s2.4 1.8 3.9 2.3s3.1.9 4.8.9c1.5 0 3-.4 4.6-1.1c1.6-.7 3.1-1.7 4.5-2.9l.7-.6v3.9h10.1V55.5h-10v25.6c0 1.3-1.2 2.2-3.1 3.5c-1.3 1-2.3 1.4-3.2 1.4c-.8 0-1.5-.1-2.2-.4c-.7-.3-1.3-.7-1.8-1.2s-.9-1.1-1.2-1.8c-.3-.7-.4-1.4-.4-2.2v-25H30.2zm63.9 36H82.3V56.7l11.8-3.3zm-10.9-.8h10.1V54.5l-10.1 2.8zm-4.6.8H66.9V40.2L78.6 37zm-10.9-.8h10.1V38.1l-10.1 2.8zm43.1-4.5c-.5 0-1-.2-1.5-.5c-.4-.3-.8-.7-1.2-1.2c-.3-.5-.6-1.1-.8-1.7c-.2-.7-.3-1.4-.3-2.1c0-.9.3-1.9.9-2.7c.6-.8 1.3-1.6 2.2-2.4c.9-.7 1.9-1.4 3-2c1.1-.6 2.2-1.1 3.2-1.6l.6-.3V83l-.2.1c-1.1.8-2.2 1.5-3.1 2.1c-.8.7-1.8 1-2.8 1m5.4-13.1c-.9.4-1.7.8-2.6 1.3c-1 .6-2 1.2-2.9 1.9c-.8.7-1.5 1.4-2.1 2.2c-.5.7-.7 1.5-.7 2.3c0 .6.1 1.2.2 1.8c.2.6.4 1.1.7 1.5c.3.4.6.7 1 1c.3.2.6.3 1 .3c.8 0 1.7-.3 2.5-.8c.9-.5 1.8-1.2 2.8-1.9v-9.6z\\\"/><path fill=\\\"#cb3c33\\\" d=\\\"M96.2 44.7c0 4.1-3.3 7.4-7.4 7.4c-4.1 0-7.4-3.3-7.4-7.4c0-4.1 3.3-7.4 7.4-7.4c4.1 0 7.4 3.3 7.4 7.4\\\"/><path fill=\\\"#eee\\\" d=\\\"M88.8 52.6c-4.3 0-7.9-3.5-7.9-7.9s3.5-7.9 7.9-7.9c4.3 0 7.9 3.5 7.9 7.9s-3.6 7.9-7.9 7.9m0-14.9c-3.9 0-7 3.1-7 7s3.1 7 7 7s7-3.1 7-7s-3.2-7-7-7\\\"/><path fill=\\\"#4063d8\\\" d=\\\"M27.2 44.7c0 4.1-3.3 7.4-7.4 7.4s-7.4-3.3-7.4-7.4c0-4.1 3.3-7.4 7.4-7.4s7.4 3.3 7.4 7.4\\\"/><path fill=\\\"#eee\\\" d=\\\"M19.8 52.6c-4.3 0-7.9-3.5-7.9-7.9s3.5-7.9 7.9-7.9s7.9 3.5 7.9 7.9s-3.6 7.9-7.9 7.9m0-14.9c-3.9 0-7 3.1-7 7s3.1 7 7 7s7-3.1 7-7s-3.1-7-7-7\\\"/><path fill=\\\"#9558b2\\\" d=\\\"M114.1 44.7c0 4.1-3.3 7.4-7.4 7.4c-4.1 0-7.4-3.3-7.4-7.4c0-4.1 3.3-7.4 7.4-7.4c4 0 7.4 3.3 7.4 7.4\\\"/><path fill=\\\"#eee\\\" d=\\\"M106.6 52.6c-4.3 0-7.9-3.5-7.9-7.9s3.5-7.9 7.9-7.9c4.3 0 7.9 3.5 7.9 7.9s-3.5 7.9-7.9 7.9m0-14.9c-3.9 0-7 3.1-7 7s3.1 7 7 7s7-3.1 7-7s-3.1-7-7-7\\\"/><path fill=\\\"#389826\\\" d=\\\"M105.1 29.2c0 4.1-3.3 7.4-7.4 7.4c-4.1 0-7.4-3.3-7.4-7.4s3.3-7.4 7.4-7.4c4.1 0 7.4 3.3 7.4 7.4\\\"/><path fill=\\\"#eee\\\" d=\\\"M97.7 37.1c-4.3 0-7.9-3.5-7.9-7.9s3.5-7.9 7.9-7.9c4.3 0 7.9 3.5 7.9 7.9s-3.6 7.9-7.9 7.9m0-14.9c-3.9 0-7 3.1-7 7s3.1 7 7 7s7-3.1 7-7s-3.1-7-7-7\\\"/>\"\n\t\t},\n\t\t\"junit\": {\n\t\t\t\"body\": \"<path fill=\\\"#dc514a\\\" d=\\\"M64.293.43C48.553.13 33.537 4.285 20.69 16.163c-26.885 24.866-27.686 67.44-1.718 93.224c4.674 4.641 10.237 8.935 16.345 11.55c1.595-5.365 1.285-11.841.78-18.207c-.122-.126-.247-.25-.34-.39c-1.706-2.543-.44-9.184-.44-12.205c10.735 1.903 19.478 7.808 30.97 4.378c11.246-3.356 15.933-19.575 6.018-27.252c-5.987-4.64-14.87-4.007-21.932-3.156c-4.24.512-9.536 2.078-12.464-2.433c-1.728-2.655.056-9.171.346-12.175c.072-.757.151-1.528.226-2.288c.752-9.328 2-18.756 2-28.09h45.593V3.295C78.754 1.623 71.449.57 64.294.43Z\\\"/><path fill=\\\"#23a161\\\" d=\\\"M85.705 3.266V31.12H52.53l-1.724 21.423c7.362-.577 14.187-1.876 21.544-.147c5.043 1.188 9.777 3.57 13.28 7.434c9.774 10.772 7.85 30.992-3.372 40.077c-3.158 2.557-6.766 4.237-10.576 5.317c-3.518 1.125-7.052 1.6-10.599 1.634a72.97 72.97 0 0 1-3.814.107c-5.524 0-11.049-.718-16.373-2.208c-1.354-.38-3.448-.907-4.764-1.893c-.28-.06-.559-.124-.838-.185l-.429 17.998c34.192 18.13 77.75-1.268 90.013-36.85c10.368-30.07-5.688-72.67-39.172-80.562z\\\"/>\"\n\t\t},\n\t\t\"junit-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#dc514a\\\" d=\\\"M108.79 44.601c-4.777-.092-9.332 1.169-13.23 4.77c-8.154 7.546-8.398 20.46-.522 28.283c1.42 1.41 3.107 2.71 4.959 3.502c.485-1.627.39-3.593.236-5.525c-.036-.039-.072-.075-.102-.118c-.516-.768-.134-2.785-.134-3.7c3.26.576 5.908 2.367 9.395 1.328c3.41-1.019 4.835-5.936 1.827-8.269c-1.815-1.405-4.513-1.213-6.654-.954c-1.284.154-2.894.628-3.78-.741c-.527-.804.015-2.781.103-3.693l.08-.792c.228-2.8.596-5.625.596-8.425h13.833V45.47c-2.221-.507-4.437-.827-6.608-.868z\\\"/><path fill=\\\"#23a161\\\" d=\\\"M115.192 45.535v8.438h-10.049l-.52 6.489c2.229-.175 4.294-.569 6.522-.043c1.528.357 2.96 1.078 4.024 2.249c2.96 3.263 2.374 9.386-1.024 12.14c-.963.781-2.065 1.292-3.23 1.619a10.789 10.789 0 0 1-3.177.485c-.388.02-.776.033-1.161.033a18.5 18.5 0 0 1-4.96-.668c-.405-.114-1.037-.275-1.436-.57l-.259-.059l-.131 5.449c10.354 5.49 23.55-.382 27.263-11.159c3.14-9.108-1.722-22.01-11.862-24.403\\\"/><path fill=\\\"#737373\\\" d=\\\"M64.902 49.977c-1.357.53-.998 4.087.776 3.438c1.556-.57 1.047-4.15-.776-3.438m-57.814.29v21.287c0 2.518.72 6.45-.968 8.564c-1.59 1.996-3.93 1.26-6.08 1.17c0 .45-.151 1.233.132 1.61c.525.706 2.244.466 3 .466c2.455-.004 4.752-1.14 5.46-3.633c.907-3.204.41-6.952.41-10.254v-19.21zm8.87 0v13.889c0 2.841-.242 5.817 1.095 8.436c3.175 6.225 14.266 6.12 17.614.128c1.451-2.604 1.257-5.687 1.257-8.564V50.267h-2.086v14.02c0 2.53.318 5.221-.955 7.526c-2.73 4.946-11.449 4.77-14.016-.259c-1.221-2.392-.95-5.193-.95-7.788V50.267Zm54.025 8.438h2.873v11.679c0 1.898-.055 4.143 1.442 5.567c1.774 1.691 4.615 1.238 6.776.792v-1.555c-1.507.064-3.319.693-4.696-.22c-1.564-1.038-1.568-3.047-1.568-4.71V58.704h5.743v-1.687H74.81v-4.672c-2.176.008-1.002 2.985-2.053 4.23c-1.007 1.198-2.77.087-2.774 2.13M44.54 59.744h-.132l-.262-2.726H42.45v19.726h1.958V67.53c0-2.157-.071-4.413 1.019-6.359c1.73-3.104 7.664-3.963 9.861-.907c1.086 1.516.994 3.8.994 5.579v10.9h1.827v-10.9c0-2.121.175-4.433-.9-6.359c-2.225-3.98-10.609-3.861-12.67.259m19.833-2.726v19.725h1.958V57.016Zm0 0\\\"/>\"\n\t\t},\n\t\t\"jupyter\": {\n\t\t\t\"body\": \"<path fill=\\\"#767677\\\" d=\\\"M109.766 7.281a7.691 7.691 0 0 1-1.09 4.282a7.583 7.583 0 0 1-3.262 2.949a7.49 7.49 0 0 1-4.34.62a7.525 7.525 0 0 1-3.953-1.913A7.642 7.642 0 0 1 95.137 5a7.606 7.606 0 0 1 2.629-3.531a7.509 7.509 0 0 1 4.136-1.461a7.51 7.51 0 0 1 5.422 1.996a7.627 7.627 0 0 1 2.438 5.273zm0 0\\\"/><path fill=\\\"#f37726\\\" d=\\\"M65.758 96.79c-20.098 0-37.649-7.364-46.766-18.267a49.95 49.95 0 0 0 18.102 24.254a49.251 49.251 0 0 0 28.676 9.215a49.279 49.279 0 0 0 28.675-9.215a49.917 49.917 0 0 0 18.094-24.254C103.406 89.426 85.855 96.79 65.758 96.79m-.008-70.907c20.098 0 37.652 7.367 46.766 18.265a49.95 49.95 0 0 0-18.102-24.253a49.27 49.27 0 0 0-28.672-9.22a49.27 49.27 0 0 0-28.672 9.22a49.909 49.909 0 0 0-18.1 24.253c9.132-10.878 26.682-18.265 46.78-18.265m0 0\\\"/><path fill=\\\"#989798\\\" d=\\\"M38.164 117.984a9.671 9.671 0 0 1-1.371 5.399a9.5 9.5 0 0 1-9.59 4.504a9.405 9.405 0 0 1-4.98-2.418a9.671 9.671 0 0 1-2.809-4.797a9.73 9.73 0 0 1 .313-5.567a9.624 9.624 0 0 1 3.328-4.453a9.466 9.466 0 0 1 12.043.688a9.63 9.63 0 0 1 3.066 6.648zm0 0\\\"/><path fill=\\\"#6f7070\\\" d=\\\"M21.285 23.418a5.53 5.53 0 0 1-3.14-.816a5.627 5.627 0 0 1-2.618-5.672a5.612 5.612 0 0 1 1.407-2.95a5.593 5.593 0 0 1 2.789-1.664a5.46 5.46 0 0 1 3.238.184a5.539 5.539 0 0 1 2.586 1.969a5.66 5.66 0 0 1-.399 7.129a5.557 5.557 0 0 1-3.867 1.82zm0 0\\\"/>\"\n\t\t},\n\t\t\"jupyter-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#4e4e4e\\\" d=\\\"M6.648 67.352c0 3.91-.363 5.183-1.296 6.12c-1.036.81-2.383 1.255-3.782 1.255l.364 2.234c2.164.023 4.265-.637 5.906-1.856c.883-.93 1.539-2 1.93-3.152a7.79 7.79 0 0 0 .347-3.55V53.608H6.648zm25.883-1.762c0 1.676 0 3.172.153 4.469h-3.082l-.207-2.66c-.645.94-1.567 1.718-2.672 2.25a8.055 8.055 0 0 1-3.621.788c-3.004 0-6.579-1.406-6.579-7.148v-9.543h3.473v8.938c0 3.105 1.113 5.183 4.246 5.183a5.472 5.472 0 0 0 1.883-.308a4.993 4.993 0 0 0 1.594-.914a4.197 4.197 0 0 0 1.058-1.375a3.638 3.638 0 0 0 .36-1.625V53.633h3.468V65.5zm6.579-6.527c0-2.079 0-3.778-.157-5.317h3.11l.152 2.793c.695-1.012 1.691-1.84 2.887-2.398A8.493 8.493 0 0 1 49 53.363c4.613 0 8.082 3.332 8.082 8.29c0 5.855-4.168 8.761-8.676 8.761a7.606 7.606 0 0 1-3.332-.621c-1.027-.45-1.906-1.121-2.547-1.95v8.938H39.11zm3.417 4.355c.008.406.063.812.157 1.207c.293.992.96 1.871 1.898 2.5s2.094.965 3.281.965c3.653 0 5.801-2.57 5.801-6.3c0-3.263-2.02-6.056-5.672-6.056c-1.445.102-2.797.653-3.804 1.555c-1.004.902-1.598 2.086-1.66 3.336zm20.739-9.688l4.172 9.63a50.836 50.836 0 0 1 1.214 3.328c.364-.981.75-2.235 1.22-3.395l3.78-9.563h3.653l-5.18 11.618c-2.59 5.586-4.172 8.468-6.555 10.21c-1.199.95-2.664 1.61-4.246 1.922l-.855-2.5a9.76 9.76 0 0 0 3.031-1.453c1.262-.89 2.266-2.023 2.926-3.308a2.05 2.05 0 0 0 .285-.715a2.342 2.342 0 0 0-.234-.781l-7.043-15.04h3.78zm23.25-4.687v4.691h4.972v2.235h-4.972v8.804c0 2.012.675 3.172 2.59 3.172a8.95 8.95 0 0 0 2.019-.203l.156 2.238a9.845 9.845 0 0 1-3.082.399a5.507 5.507 0 0 1-2.035-.27a4.921 4.921 0 0 1-1.719-.98c-1.054-1.219-1.535-2.734-1.347-4.246v-8.938h-2.953v-2.234h3.003v-3.977zm11.367 13.375c-.07.758.05 1.52.355 2.23a5.218 5.218 0 0 0 1.407 1.899a6.257 6.257 0 0 0 2.203 1.215c.824.265 1.71.367 2.586.308a14.312 14.312 0 0 0 5.18-.851l.597 2.234a17.75 17.75 0 0 1-6.344 1.008c-1.27.074-2.539-.09-3.726-.477a9.07 9.07 0 0 1-3.153-1.777c-.89-.781-1.578-1.719-2.008-2.75a6.664 6.664 0 0 1-.492-3.219c0-4.918 3.395-8.804 8.938-8.804c6.215 0 7.77 4.691 7.77 7.687c.03.461.03.922 0 1.383H97.804zm10.152-2.234a3.67 3.67 0 0 0-.144-1.79a4.075 4.075 0 0 0-.993-1.57a4.844 4.844 0 0 0-1.656-1.078a5.534 5.534 0 0 0-2.023-.39c-1.422.09-2.758.632-3.739 1.527c-.984.89-1.543 2.066-1.57 3.3zm8.425-1.375c0-1.918 0-3.575-.155-5.094h3.11v3.195h.155c.325-.984 1-1.86 1.926-2.5c.93-.64 2.067-1.015 3.254-1.074c.324-.035.656-.035.984 0v2.793a6.071 6.071 0 0 0-1.191 0c-1.176.039-2.297.445-3.148 1.144c-.856.7-1.383 1.645-1.489 2.653c-.097.46-.148.922-.156 1.386v8.692h-3.418V58.832zm0 0\\\"/><path fill=\\\"#767677\\\" d=\\\"M109.766 7.281a7.691 7.691 0 0 1-1.09 4.282a7.583 7.583 0 0 1-3.262 2.949a7.49 7.49 0 0 1-4.34.62a7.525 7.525 0 0 1-3.953-1.913A7.642 7.642 0 0 1 95.137 5a7.606 7.606 0 0 1 2.629-3.531a7.509 7.509 0 0 1 4.136-1.461a7.51 7.51 0 0 1 5.422 1.996a7.627 7.627 0 0 1 2.438 5.273zm0 0\\\"/><path fill=\\\"#f37726\\\" d=\\\"M65.758 96.79c-20.098 0-37.649-7.364-46.766-18.267a49.95 49.95 0 0 0 18.102 24.254a49.251 49.251 0 0 0 28.676 9.215a49.279 49.279 0 0 0 28.675-9.215a49.917 49.917 0 0 0 18.094-24.254C103.406 89.426 85.855 96.79 65.758 96.79m-.008-70.907c20.098 0 37.652 7.367 46.766 18.265a49.95 49.95 0 0 0-18.102-24.253a49.27 49.27 0 0 0-28.672-9.22a49.27 49.27 0 0 0-28.672 9.22a49.909 49.909 0 0 0-18.1 24.253c9.132-10.878 26.682-18.265 46.78-18.265m0 0\\\"/><path fill=\\\"#9e9e9e\\\" d=\\\"M38.164 117.984a9.671 9.671 0 0 1-1.371 5.399a9.5 9.5 0 0 1-9.59 4.504a9.405 9.405 0 0 1-4.98-2.418a9.671 9.671 0 0 1-2.809-4.797a9.73 9.73 0 0 1 .313-5.567a9.624 9.624 0 0 1 3.328-4.453a9.466 9.466 0 0 1 12.043.688a9.63 9.63 0 0 1 3.066 6.648zm0 0\\\"/><path fill=\\\"#616262\\\" d=\\\"M21.285 23.418a5.53 5.53 0 0 1-3.14-.816a5.627 5.627 0 0 1-2.618-5.672a5.612 5.612 0 0 1 1.407-2.95a5.593 5.593 0 0 1 2.789-1.664a5.46 5.46 0 0 1 3.238.184a5.539 5.539 0 0 1 2.586 1.969a5.66 5.66 0 0 1-.399 7.129a5.557 5.557 0 0 1-3.867 1.82zm0 0\\\"/>\"\n\t\t},\n\t\t\"k3os\": {\n\t\t\t\"body\": \"<path fill=\\\"#fd824e\\\" d=\\\"M114.413 11.595H13.484C6.027 11.595 0 17.724 0 25.18v77.638c0 7.457 6.027 13.484 13.587 13.586h100.826c7.458 0 13.485-6.027 13.587-13.586V25.18c-.102-7.457-6.13-13.586-13.587-13.586zm-81.417 91.53c-6.844 0-12.463-5.516-12.463-12.36c0-6.947 5.619-12.463 12.463-12.463c2.043 0 4.086.51 5.925 1.532l-9.194 5.312c-3.065 1.737-4.086 5.72-2.35 8.785c1.737 3.065 5.721 4.087 8.786 2.35l9.194-5.312c-.102 6.742-5.619 12.054-12.361 12.156m24.62-23.189L34.527 93.318c-1.532.818-3.37.41-4.29-1.123c-.817-1.533-.409-3.371 1.124-4.29l23.087-13.383c1.532-.817 3.37-.409 4.29 1.124c.92 1.532.409 3.473-1.124 4.29zm-.103-42.905v10.624c-5.823-3.575-7.661-11.237-4.086-17.06c3.575-5.822 11.237-7.661 17.06-4.086c5.823 3.576 7.661 11.237 4.086 17.06a11.754 11.754 0 0 1-4.188 4.188V37.133a6.41 6.41 0 0 0-6.436-6.436c-3.575-.102-6.436 2.759-6.436 6.334m9.398 26.765c0 1.736-1.43 3.064-3.064 3.064c-1.737 0-3.065-1.43-3.065-3.064l.102-26.765c0-1.737 1.43-3.065 3.065-3.065c1.737 0 3.065 1.43 3.065 3.065zm2.043 11.85c.818-1.533 2.759-2.043 4.189-1.124l23.291 13.484c1.533.818 2.043 2.759 1.124 4.189c-.817 1.532-2.758 2.043-4.189 1.123L70.08 79.936c-1.533-.92-2.044-2.758-1.124-4.29Zm25.948 27.48c-6.742 0-12.259-5.415-12.36-12.157l9.193 5.312c3.065 1.737 7.049.715 8.785-2.35c1.737-3.064.715-7.048-2.35-8.785l-9.193-5.312a12.198 12.198 0 0 1 5.925-1.532c6.844 0 12.463 5.516 12.463 12.36c0 6.845-5.619 12.361-12.463 12.463z\\\"/>\"\n\t\t},\n\t\t\"k3os-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#384745\\\" d=\\\"M15.451 98.219v29.17h7.242V117.8l2.143-2.653l6.73 12.24h8.262l-9.996-17.747l9.486-11.422h-7.752l-7.138 8.668a21.52 21.52 0 0 0-1.836 2.754h-.205c.102-1.02.205-2.346.205-3.264v-8.158zm26.416 0v5.404h10.71l-9.077 7.445l3.162 3.368c.918-.918 2.243-1.428 3.569-1.428c2.243 0 3.876 1.326 3.876 4.59c0 3.06-1.326 5.2-4.08 5.2c-2.447 0-4.08-1.733-3.263-4.589l-6.12.918c-1.325 5.1 3.67 8.771 9.587 8.771c6.221 0 11.22-4.08 11.22-10.199c0-5.61-4.182-8.466-8.568-8.058l6.935-5.711v-5.711h-17.95zm34.27 0c-6.732 0-11.729 4.181-11.729 14.482c0 11.117 4.997 15.197 11.729 15.299c6.527 0 11.525-3.876 11.525-15.299c0-10.403-4.794-14.482-11.525-14.482m26.824 0c-6.12 0-9.69 3.059-9.69 7.648c0 6.12 5.712 7.344 9.69 8.67c4.08 1.326 6.324 2.857 6.324 5.815c0 2.447-1.633 4.894-6.732 4.894c-4.692 0-7.24-1.938-7.24-4.998c0-.51.1-1.12.304-1.63l-2.855.509c-.102.51-.203 1.02-.203 1.53c0 4.793 4.384 7.343 9.994 7.343c6.731 0 10.097-3.671 10.097-7.955c0-5.508-4.794-7.037-9.18-8.465c-3.671-1.224-6.935-2.244-6.935-6.018c0-2.55 1.735-4.997 6.324-4.997c3.876 0 6.323 1.631 6.323 5.609c0 .51 0 1.12-.102 1.63l3.162-.304c.102-.51.102-.918.102-1.428c0-4.895-3.264-7.853-9.383-7.853m-27.027 2.345c4.691 0 8.464 2.856 8.464 12.137c0 9.995-3.67 12.852-8.464 12.852c-4.59 0-8.364-2.755-8.364-12.852c0-9.281 3.774-12.137 8.364-12.137\\\"/><path fill=\\\"#fd824e\\\" d=\\\"M103.777 0H24.223c-5.915 0-10.709 4.794-10.709 10.71v61.296c0 5.916 4.794 10.71 10.71 10.71h79.553c5.915 0 10.71-4.794 10.71-10.71V10.71C114.485 4.794 109.691 0 103.776 0ZM39.522 72.21c-5.406 0-9.791-4.385-9.791-9.79s4.385-9.792 9.79-9.792c1.633 0 3.265.408 4.693 1.224l-7.242 4.182c-2.448 1.427-3.264 4.487-1.836 6.935c1.428 2.448 4.488 3.264 6.936 1.836l7.241-4.182a9.752 9.752 0 0 1-9.791 9.587m19.48-18.256L40.848 64.56c-1.122.714-2.652.306-3.366-.918c-.714-1.122-.306-2.652.918-3.366L56.555 49.67c1.122-.714 2.651-.306 3.365.918c.714 1.122.306 2.652-.918 3.366M58.9 20.092v8.364c-4.59-2.856-6.017-8.873-3.263-13.463c2.855-4.59 8.873-6.018 13.463-3.264c4.59 2.856 6.017 8.873 3.263 13.463a9.982 9.982 0 0 1-3.263 3.264v-8.364c0-2.855-2.244-5.1-5.1-5.1c-2.754 0-5.1 2.245-5.1 5.1m7.446 21.113c0 1.326-1.122 2.448-2.448 2.448s-2.448-1.122-2.448-2.448l.102-21.113c0-1.325 1.122-2.447 2.448-2.447s2.448 1.122 2.448 2.447zm1.632 9.383a2.584 2.584 0 0 1 3.365-.918l18.359 10.607a2.584 2.584 0 0 1 .918 3.366a2.584 2.584 0 0 1-3.366.918L68.896 53.954c-1.224-.714-1.632-2.244-.918-3.366m20.5 21.622c-5.304 0-9.69-4.283-9.791-9.587l7.241 4.182c2.448 1.428 5.508.612 6.936-1.836s.612-5.508-1.836-6.935l-7.242-4.182a9.475 9.475 0 0 1 4.692-1.224c5.406 0 9.791 4.386 9.791 9.791s-4.385 9.791-9.791 9.791\\\"/>\"\n\t\t},\n\t\t\"k3s\": {\n\t\t\t\"body\": \"<path fill=\\\"#ffc519\\\" d=\\\"M114.434 11.875H13.547C6.074 11.898.023 17.949 0 25.422v77.719c.023 7.472 6.074 13.523 13.547 13.546h100.887c7.472-.023 13.523-6.074 13.546-13.546V25.42c-.023-7.472-6.074-13.523-13.546-13.546zM54.078 88.094l-24.621 14.308a6.592 6.592 0 0 1-9.008-2.386a6.59 6.59 0 0 1 2.387-9.008l24.621-14.309a6.587 6.587 0 0 1 9.012 2.383a6.593 6.593 0 0 1-2.39 9.012zm9.688-21.801h-.032a6.59 6.59 0 0 1-6.558-6.617l.125-28.364a6.587 6.587 0 0 1 6.586-6.562h.031a6.59 6.59 0 0 1 6.559 6.617l-.125 28.367a6.588 6.588 0 0 1-6.586 6.559m43.562 33.703a6.585 6.585 0 0 1-9 2.41L73.672 88.172a6.589 6.589 0 1 1 6.59-11.41l24.656 14.234a6.586 6.586 0 0 1 2.41 9m0 0\\\"/>\"\n\t\t},\n\t\t\"k3s-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#384745\\\" d=\\\"M72.586 53.156h5.352v6.055c0 .672-.098 1.668-.16 2.402h.128c.403-.699.852-1.375 1.344-2.015l5.285-6.442h5.766l-7.047 8.489l7.433 13.136h-6.152l-4.996-9.066l-1.602 1.953v7.113h-5.351zM95.91 67.988c-.578 2.082.606 3.395 2.403 3.395c2.015 0 3.042-1.602 3.042-3.875c0-2.434-1.218-3.363-2.851-3.363a3.883 3.883 0 0 0-2.66 1.027l-2.305-2.5l6.695-5.543H92.29v-3.973h13.293v4.196l-5.125 4.23c3.27-.32 6.375 1.824 6.375 5.992c0 4.516-3.684 7.59-8.328 7.59c-4.39 0-8.074-2.723-7.113-6.535zm17.555-.32c-.387 1.73.285 3.715 3.683 3.715c2.243 0 3.012-.895 3.012-2.082c0-1.793-1.797-2.242-3.91-3.008c-3.172-1.09-7.078-2.629-7.078-7.145c0-4.039 3.105-6.503 8.39-6.375c6.473.13 8.297 3.942 7.594 7.239l-4.902.449c.32-2.5-.574-3.91-3.106-3.91c-1.699 0-2.66.644-2.66 1.988c0 1.793 1.73 2.34 3.844 3.074c3.27 1.09 7.145 2.403 7.145 6.887c0 3.879-2.883 6.664-8.52 6.664c-5.289 0-8.906-2.434-8.172-7.047zm0 0\\\"/><path fill=\\\"#ffc61c\\\" d=\\\"M54.508 40.129H8.618a6.18 6.18 0 0 0-6.161 6.16v35.352a6.183 6.183 0 0 0 6.16 6.164h45.89a6.18 6.18 0 0 0 6.161-6.164V46.289a6.178 6.178 0 0 0-6.16-6.16M27.055 74.797l-11.2 6.508a2.996 2.996 0 1 1-3.011-5.18l11.199-6.512a2.996 2.996 0 0 1 4.098 1.086a2.996 2.996 0 0 1-1.086 4.098m4.406-9.914h-.016a2.997 2.997 0 0 1-2.98-3.012l.055-12.902a3.002 3.002 0 0 1 2.996-2.985h.015a2.997 2.997 0 0 1 2.98 3.012l-.054 12.902a3 3 0 0 1-2.996 2.985M51.277 80.21a2.996 2.996 0 0 1-4.093 1.098l-11.215-6.477a2.993 2.993 0 0 1-1.102-4.094a3.001 3.001 0 0 1 4.098-1.097l11.215 6.476a3 3 0 0 1 1.097 4.094m0 0\\\"/>\"\n\t\t},\n\t\t\"k6\": {\n\t\t\t\"body\": \"<path fill=\\\"#7d64ff\\\" d=\\\"M127.828 128H.172l42.496-93.656L68.27 53.785L101.66 0Zm-46.805-20.23h.274c3.16.007 6.2-1.254 8.473-3.52a11.465 11.465 0 0 0 2.722-3.922c.63-1.492.942-3.105.922-4.734a10.856 10.856 0 0 0-.844-4.563a10.492 10.492 0 0 0-2.668-3.742c-1.933-2.008-4.543-3.168-7.285-3.242h-.21a3.592 3.592 0 0 0-1.06.148l6.739-10.347l-5.367-3.871l-2.543 3.87l-6.492 10.247c-1.118 1.699-2.051 3.195-2.63 4.234a25.054 25.054 0 0 0-1.542 3.43a10.983 10.983 0 0 0-.739 3.949c-.015 1.61.297 3.203.918 4.676a11.45 11.45 0 0 0 2.68 3.887c2.246 2.261 5.262 3.523 8.399 3.52ZM52.48 96.629l7.442 10.875h7.957L59.125 94.89l7.773-11.153l-5.16-3.687l-2.277 3.105l-6.988 10.18V72.867L45.508 67v40.496h6.965V96.621Zm28.551 4.351a5.03 5.03 0 0 1-3.62-1.55a5.376 5.376 0 0 1-1.5-3.743c0-1.402.538-2.75 1.5-3.742a5.042 5.042 0 0 1 3.62-1.547h.047a4.83 4.83 0 0 1 1.961.415a4.973 4.973 0 0 1 1.648 1.18a4.887 4.887 0 0 1 1.149 1.663c.266.633.402 1.317.398 2.004a5.486 5.486 0 0 1-1.546 3.758a5.13 5.13 0 0 1-3.653 1.555Zm0 0\\\"/>\"\n\t\t},\n\t\t\"kaggle\": {\n\t\t\t\"body\": \"<path fill=\\\"#20beff\\\" d=\\\"M100.402 127.243c-.126.501-.627.752-1.502.752H82.168c-1.007 0-1.876-.438-2.632-1.317L51.91 91.531l-7.706 7.33v27.258c0 1.255-.628 1.881-1.88 1.881h-12.97c-1.254 0-1.88-.626-1.88-1.88V1.876c0-1.25.625-1.877 1.88-1.877h12.97c1.253 0 1.882.628 1.882 1.876v76.501l33.08-33.457c.878-.875 1.755-1.315 2.631-1.315h17.295c.75 0 1.25.315 1.504.937c.252.753.19 1.316-.19 1.693L63.561 80.062l36.465 45.3c.499.502.625 1.128.38 1.881\\\"/>\"\n\t\t},\n\t\t\"kaggle-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#20beff\\\" d=\\\"M21.139 76.066c-.036.146-.181.218-.436.218h-4.849c-.291 0-.55-.126-.763-.381L7.083 65.715L4.85 67.841v7.9c0 .363-.181.544-.544.544H.545c-.364 0-.545-.18-.545-.544V39.73c0-.362.181-.55.544-.55h3.76c.363 0 .545.183.545.55v22.174l9.589-9.697c.254-.253.508-.382.762-.382h5.013c.217 0 .363.092.436.272c.073.219.06.381-.062.49L10.46 62.392l10.568 13.13c.146.146.183.328.111.545m19.641.218h-3.759c-.4 0-.599-.181-.599-.55v-.764c-1.599 1.198-3.65 1.798-6.156 1.798c-2.288 0-4.268-.71-5.94-2.124c-1.635-1.452-2.45-3.3-2.45-5.557c0-3.56 2.214-5.975 6.646-7.245c1.743-.51 4.376-.944 7.9-1.308c.109-1.343-.245-2.487-1.063-3.432c-.818-.945-2.008-1.417-3.569-1.417c-2.034 0-4.104.733-6.21 2.18c-.327.182-.563.145-.709-.11l-1.955-2.777c-.182-.219-.126-.473.163-.763c2.797-1.925 5.702-2.888 8.716-2.888c2.325 0 4.305.545 5.94 1.635c2.398 1.598 3.596 4.158 3.596 7.68v15.09c0 .365-.183.551-.55.551m-4.36-11.38c-3.56.365-5.992.837-7.3 1.418c-1.78.762-2.579 1.85-2.397 3.27c.108.798.509 1.442 1.199 1.933c.69.49 1.489.772 2.397.843c2.542.183 4.583-.49 6.101-2.015zM63.59 85.736c-1.98 2.052-4.786 3.08-8.416 3.08c-2.108 0-4.105-.528-5.993-1.58a20.345 20.345 0 0 1-1.417-1.01a49.096 49.096 0 0 1-1.906-1.552c-.255-.217-.273-.489-.062-.817l2.566-2.566a.584.584 0 0 1 .437-.164a.548.548 0 0 1 .38.164c2.034 2.033 4.014 3.051 5.939 3.051c4.4 0 6.591-2.288 6.591-6.865v-2.833c-1.706 1.417-3.976 2.126-6.81 2.126c-3.522 0-6.283-1.325-8.28-3.977c-1.743-2.324-2.616-5.255-2.616-8.771c0-3.342.836-6.174 2.507-8.494c1.956-2.795 4.74-4.194 8.336-4.194c2.724 0 5.012.709 6.863 2.125v-1.09c0-.362.182-.545.546-.545h3.76c.361 0 .55.183.55.546v24.352c0 3.956-.99 6.962-2.97 9.014m-1.88-26.177c-.907-2.323-3.015-3.487-6.319-3.487c-4.25 0-6.372 2.653-6.372 7.955c0 2.941.708 5.086 2.124 6.428c1.052 1.054 2.415 1.58 4.086 1.58c3.413 0 5.575-1.162 6.476-3.487zm27.5 26.184c-1.98 2.05-4.785 3.077-8.416 3.077c-2.108 0-4.105-.527-5.994-1.579c-.4-.255-.87-.59-1.415-1.008a49.567 49.567 0 0 1-1.907-1.552c-.254-.218-.272-.49-.061-.818l2.566-2.566a.584.584 0 0 1 .436-.164a.548.548 0 0 1 .381.164c2.034 2.034 4.012 3.05 5.938 3.05c4.4 0 6.6-2.288 6.6-6.863V74.65c-1.71 1.416-3.973 2.124-6.81 2.124c-3.523 0-6.284-1.325-8.281-3.976c-1.744-2.324-2.616-5.255-2.616-8.771c0-3.341.836-6.174 2.505-8.493c1.956-2.796 4.741-4.195 8.336-4.195c2.725 0 5.012.709 6.864 2.125v-1.09c0-.362.182-.544.546-.544h3.758c.363 0 .551.182.551.545v24.352c0 3.957-.99 6.962-2.969 9.015m-1.88-26.177c-.907-2.324-3.015-3.487-6.319-3.487c-4.25 0-6.374 2.652-6.374 7.954c0 2.942.708 5.086 2.125 6.427c1.052 1.055 2.415 1.581 4.086 1.581c3.412 0 5.575-1.162 6.475-3.486v-8.983zm13.184 16.717h-3.76c-.363 0-.55-.18-.55-.55V39.73c0-.362.182-.55.55-.55h3.76c.362 0 .55.182.55.55v36.012c0 .363-.182.55-.55.55m27.4-11.06c0 .363-.183.546-.544.546H109.68c.217 1.779.98 3.27 2.288 4.46c1.49 1.272 3.36 1.906 5.611 1.906c1.998 0 3.79-.562 5.394-1.688c.327-.22.599-.22.817 0l2.566 2.615c.291.29.291.55 0 .762c-2.615 1.956-5.648 2.942-9.104 2.942c-3.705 0-6.792-1.234-9.262-3.704c-2.396-2.433-3.595-5.54-3.595-9.316c0-3.56 1.179-6.574 3.541-9.044c2.18-2.25 5.012-3.377 8.494-3.377c3.304 0 6.082 1.181 8.335 3.541c2.323 2.434 3.396 5.485 3.214 9.153zm-7.136-8.008c-1.234-1.125-2.724-1.69-4.462-1.69c-1.634 0-3.069.546-4.303 1.635s-2.016 2.506-2.341 4.25h13.129c-.037-1.67-.71-3.07-2.017-4.195\\\"/>\"\n\t\t},\n\t\t\"karatelabs\": {\n\t\t\t\"body\": \"<path d=\\\"M119.59 64c0 30.297-24.563 54.855-54.86 54.855c-30.296 0-54.855-24.558-54.855-54.855c0-30.297 24.559-54.855 54.855-54.855c30.297 0 54.86 24.558 54.86 54.855m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M69.605 23.055c1.332.258 1.422.425.868 1.613c-.551 1.18-.524.914-.54 5.184c-.015 3.578-.093 4.941-.285 5.132c-.02.02-.414.137-.875.258c-1.52.399-1.48.352-1.66 2.117a31.92 31.92 0 0 0-.133 1.399c.008.008 1.567.34 3.465.738l3.453.727l3.743 2.109l1.375 2.262c.754 1.242 1.382 2.258 1.398 2.258c.012 0 1.086-.407 2.379-.903c1.297-.496 2.371-.894 2.387-.879c.035.035 1.16 7.754 1.132 7.778c-.16.136-7.75 2.375-7.93 2.34c-.128-.024-1.487-.43-3.023-.903c-1.535-.472-2.8-.844-2.816-.832c-.012.016-.09 1.594-.168 3.512a222.66 222.66 0 0 1-.164 3.5c-.008.008-.637.523-1.39 1.152l-1.376 1.14l-1.078-.034c-.59-.024-3.383-.075-6.203-.118l-5.125-.078l-1.66-1.027c-.719-.445-1.441-.89-2.168-1.332c-.613-.371-.621-.184.059-1.668c.308-.684.566-1.285.566-1.336c0-.062 2.223-.871 6.062-2.207c3.52-1.227 5.98-2.117 5.864-2.129c-.496-.043-11.961-.328-12.575-.312c-1.156.03-3.761-1.27-5.062-2.524c-.145-.14-.375-7.195-.238-7.32c1.8-1.64 2.914-2.442 4.867-3.496l1.973-1.07l2.718.109c2.371.094 2.746.094 2.938 0c.12-.063 1.441-.613 2.937-1.227l2.723-1.117l-2.578-.164a222.952 222.952 0 0 0-2.7-.168c-.171.004-1.808-2.285-1.882-2.625a158.14 158.14 0 0 1-.457-2.922l-.395-2.648l1.16-1.969c.903-1.535 1.192-1.973 1.313-1.977c.086-.003 1.613-.12 3.394-.261c3.446-.27 4.633-.285 5.707-.082m22.946 16.562c.804.078 1.332.223 1.597.434c.16.129.247.972.422 4.222l.016.329l-3.465 1.464c-1.91.805-3.527 1.485-3.594 1.504c-.148.051-2.011-2.574-1.902-2.675c.035-.032.574-.254 1.195-.493a63.591 63.591 0 0 0 1.172-.453c.024-.015 0-.648-.047-1.406c-.05-.762-.07-1.418-.043-1.457c.024-.043.328-.426.672-.848l.633-.773l1.293.043c.715.02 1.637.07 2.05.11m-3.179 2.69c.024.2.086.837.137 1.415c.05.582.101 1.07.113 1.086c.031.039 2.895-.774 2.89-.82c-.003-.051-3.05-2.036-3.124-2.036c-.032 0-.04.16-.016.356m-19.96 6.058c-.599 1.153-1.2 2.301-1.802 3.45l-.449.855l1.469-1.145l1.469-1.14l.043-.512c.023-.277.183-1.215.355-2.082c.48-2.426.477-2.422-1.086.574m-16.523 16.95a89.37 89.37 0 0 0 3.511.953c.973.238 1.813.453 1.864.48c.058.031-.14.32-.559.813l-.652.765l-.774 1.938l-.777 1.933l2.352-.054c1.296-.028 2.359-.055 2.363-.063c.004-.004.082-.738.172-1.629c.148-1.473.18-1.637.332-1.773c.093-.082.715-.551 1.386-1.04l1.215-.886l1.278.906l1.273.903l.137 1.718c.07.946.137 1.719.144 1.719l2.055-.023l2.047-.024l-1.227-2.543c-.675-1.394-1.218-2.55-1.203-2.562c.012-.016.813-.106 1.781-.203c1.645-.165 1.84-.2 3.02-.56c.691-.21 1.305-.382 1.36-.382c.058 0 1.507 1.602 3.226 3.563c3.793 4.32 3.82 4.351 6.406 6.765c4.668 4.364 5.301 5.18 5.985 7.7c.445 1.632.632 2.093 2.234 5.496c.832 1.765 1.594 3.52 1.883 4.34c.273.78.36.636-.77 1.3c-.402.235-.734.469-.734.52c-.004.293.976.699 4.23 1.758c4.207 1.367 4.907 1.878 3.926 2.87c-.707.712-1.195.786-5.254.786c-4.16 0-5.285-.121-5.75-.617c-.328-.348-.437-.118 1.266-2.672c.836-1.246 1.504-2.278 1.492-2.285c-.016-.012-1.398.109-3.078.265l-3.055.293l-2.336-.2c-1.285-.108-2.37-.226-2.414-.257c-.043-.031-1.48-2.937-3.199-6.457l-3.125-6.398l-4.719-3l-4.715-3l-1.96.047a77.825 77.825 0 0 0-2.551.09l-.59.046L56.437 81l-3.94 4.344l-4.911 4.71l-4.91 4.716l-1.477.187l-1.476.184l-3.059-.434c-1.68-.238-3.066-.426-3.078-.414c-.012.012.707 1.004 1.598 2.203c.886 1.203 1.605 2.219 1.593 2.266c-.011.047-.277.48-.586.965l-.566.882l-2.977-.004c-4.53-.007-4.617-.046-3.96-1.648c.316-.766.414-.875 1.62-1.797c2.087-1.597 2.833-2.234 3.02-2.59c.059-.105-.086-.261-.851-.898c-.508-.426-.922-.828-.918-.895c.02-.379 10.363-14.496 12.144-16.57a136.689 136.689 0 0 0 3.723-4.602l1.922-2.503l.691-1.758a66.99 66.99 0 0 0 .816-2.153c.153-.48-.046-.496 2.032.125\\\"/>\"\n\t\t},\n\t\t\"karatelabs-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M112 55.04c0 26.51-21.492 48-48 48s-48-21.49-48-48c0-26.509 21.492-48 48-48s48 21.491 48 48m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M68.266 19.215c1.164.223 1.242.37.757 1.41c-.48 1.035-.457.8-.472 4.535c-.016 3.133-.078 4.324-.25 4.492c-.016.02-.36.118-.762.223c-1.332.352-1.297.309-1.457 1.855c-.07.668-.121 1.22-.113 1.223c.004.004 1.367.297 3.031.645l3.02.636l1.64.926l1.637.922l1.203 1.977c.66 1.09 1.21 1.976 1.223 1.976c.011 0 .949-.355 2.082-.789c1.136-.437 2.074-.781 2.086-.77c.03.032 1.015 6.786.996 6.805c-.145.121-6.782 2.078-6.942 2.047c-.113-.02-1.3-.375-2.644-.789c-1.344-.41-2.453-.738-2.465-.727c-.012.012-.078 1.395-.148 3.075c-.07 1.675-.133 3.054-.145 3.058c-.008.008-.555.461-1.215 1.008l-1.203 1l-.941-.031c-.52-.02-2.961-.063-5.43-.102l-4.484-.07l-1.454-.898c-.796-.493-1.652-1.016-1.894-1.164c-.54-.329-.547-.16.047-1.461c.273-.594.496-1.122.496-1.168c0-.055 1.945-.766 5.305-1.934c3.082-1.07 5.234-1.852 5.132-1.86c-.437-.038-10.468-.285-11.004-.273c-1.011.028-3.293-1.11-4.43-2.207c-.124-.125-.323-6.297-.206-6.406c1.574-1.438 2.55-2.137 4.258-3.063l1.722-.933l2.383.094c2.074.086 2.402.086 2.57 0c.106-.051 1.262-.536 2.57-1.07l2.383-.977l-2.257-.149a297.338 297.338 0 0 0-2.36-.144c-.148.004-1.586-1.996-1.648-2.297c-.028-.133-.207-1.281-.399-2.555l-.347-2.316l1.015-1.727c.79-1.34 1.043-1.726 1.149-1.726c.074-.004 1.41-.106 2.972-.23c3.016-.24 4.051-.25 4.993-.071m20.078 14.492c.703.066 1.164.191 1.394.375c.14.113.215.855.371 3.7l.016.284l-3.035 1.282c-1.668.707-3.086 1.3-3.145 1.316c-.129.043-1.757-2.254-1.664-2.34c.031-.031.504-.222 1.047-.43a99.08 99.08 0 0 0 1.024-.398c.02-.012 0-.566-.043-1.23c-.04-.668-.059-1.243-.036-1.278c.024-.035.29-.37.59-.742l.551-.672l1.133.035c.625.02 1.433.063 1.797.098m-2.785 2.355c.023.172.074.727.12 1.235c.044.508.087.937.098.95c.028.034 2.532-.677 2.532-.72c-.004-.043-2.668-1.78-2.735-1.78c-.027 0-.035.144-.015.316m-17.465 5.3a1496.13 1496.13 0 0 1-1.574 3.016l-.395.746l1.285-.996l1.285-1l.04-.45c.019-.242.16-1.062.308-1.82c.422-2.12.418-2.12-.95.504M53.638 56.191c.836.25 2.218.625 3.07.836c.855.207 1.586.395 1.629.418c.055.028-.121.282-.488.711l-.567.672l-.68 1.692l-.68 1.695l2.06-.047c1.132-.027 2.062-.05 2.066-.055c.004-.004.074-.648.152-1.425c.13-1.29.156-1.434.29-1.551c.081-.075.624-.48 1.21-.91l1.067-.778l1.117.793l1.113.79l.117 1.503c.067.828.125 1.504.13 1.504c.003 0 .816-.008 1.8-.02l1.789-.023l-1.074-2.223c-.59-1.222-1.063-2.23-1.055-2.242c.012-.011.715-.09 1.563-.176c1.437-.144 1.609-.175 2.64-.492c.606-.183 1.14-.332 1.192-.332c.047 0 1.32 1.403 2.824 3.114c3.316 3.785 3.344 3.808 5.601 5.925c4.086 3.817 4.641 4.532 5.239 6.735c.386 1.425.55 1.832 1.953 4.808c.73 1.547 1.394 3.082 1.648 3.797c.242.684.317.559-.672 1.137c-.355.207-.644.414-.644.457c-.004.254.855.613 3.703 1.539c3.68 1.195 4.293 1.644 3.434 2.512c-.618.62-1.047.687-4.598.687c-3.637-.004-4.621-.11-5.027-.539c-.29-.305-.383-.105 1.105-2.34c.73-1.09 1.316-1.992 1.305-2c-.012-.011-1.223.094-2.696.235l-2.671.254l-2.043-.176c-1.125-.094-2.075-.196-2.114-.223c-.035-.031-1.293-2.574-2.797-5.652l-2.734-5.598l-4.129-2.625l-4.129-2.621l-1.715.04a59.29 59.29 0 0 0-2.23.077l-.516.04l-3.453 3.8l-3.449 3.8l-4.297 4.126l-4.293 4.125l-1.293.16l-1.293.164l-2.676-.379c-1.468-.21-2.683-.375-2.691-.363c-.012.012.617.879 1.395 1.93c.777 1.05 1.406 1.941 1.394 1.98c-.008.04-.242.422-.512.844l-.496.773l-2.605-.004c-3.961-.007-4.04-.039-3.461-1.441c.273-.668.36-.766 1.414-1.574c1.828-1.395 2.48-1.957 2.644-2.266c.051-.094-.078-.23-.746-.789c-.445-.371-.804-.723-.8-.777c.015-.332 9.066-12.688 10.62-14.5a119.463 119.463 0 0 0 3.258-4.028l1.684-2.191l.606-1.535a66.21 66.21 0 0 0 .71-1.883c.137-.426-.035-.438 1.782.105\\\"/><path d=\\\"M19.2 110.813v11.257h2.476v-3.625l1.418-1.437l3.394 5.062h3.106l-4.828-6.812l4.402-4.445h-3.09l-4.402 4.667v-4.668Zm11.066 5.613c.03-.528.164-.961.394-1.309c.23-.347.527-.625.883-.836c.36-.21.758-.36 1.2-.441c.452-.094.902-.14 1.355-.14c.41 0 .828.03 1.246.093c.422.05.804.164 1.152.332c.348.168.629.402.852.707c.218.297.332.691.332 1.184v4.242c0 .367.02.722.062 1.058c.043.336.113.586.219.754h-2.27a4.523 4.523 0 0 1-.109-.375a3.662 3.662 0 0 1-.047-.41c-.36.367-.781.625-1.262.77c-.484.148-.98.222-1.484.222c-.387 0-.75-.047-1.086-.14a2.554 2.554 0 0 1-.887-.442a2.203 2.203 0 0 1-.597-.757c-.137-.305-.203-.668-.203-1.09c0-.461.078-.84.234-1.133c.168-.309.379-.547.633-.727c.262-.18.555-.312.883-.394a9.316 9.316 0 0 1 1.007-.223c.336-.05.668-.094.993-.125a5.92 5.92 0 0 0 .867-.14c.254-.063.453-.153.601-.27c.149-.125.215-.305.203-.535c0-.242-.039-.434-.124-.57a.736.736 0 0 0-.317-.329a1.027 1.027 0 0 0-.457-.16a3.016 3.016 0 0 0-.55-.047c-.442 0-.79.094-1.044.285c-.25.188-.398.504-.441.946Zm5.172 1.656a1.03 1.03 0 0 1-.36.203a5.71 5.71 0 0 1-.965.191a8.41 8.41 0 0 0-.535.079a4.743 4.743 0 0 0-.504.125c-.16.054-.3.129-.426.222a.948.948 0 0 0-.285.332c-.074.137-.11.309-.11.52c0 .2.036.367.11.504a.946.946 0 0 0 .301.332c.125.074.273.125.441.156c.168.031.34.047.52.047c.441 0 .785-.07 1.027-.219c.239-.148.418-.32.535-.52c.114-.21.184-.421.204-.632a3.84 3.84 0 0 0 .047-.504Zm3.98-4.164v8.152h2.238v-3.672c0-.367.035-.71.11-1.027c.074-.312.195-.586.363-.82c.18-.242.41-.43.695-.567c.281-.136.63-.203 1.04-.203c.136 0 .28.008.425.031c.148.008.273.024.379.047v-2.082a1.665 1.665 0 0 0-.488-.078c-.285 0-.559.04-.82.125a2.784 2.784 0 0 0-.743.364c-.23.144-.433.332-.613.55a2.6 2.6 0 0 0-.426.696h-.031v-1.516Zm6.035 2.508c.031-.528.16-.961.395-1.309c.23-.347.523-.625.882-.836a3.64 3.64 0 0 1 1.2-.441c.449-.094.902-.14 1.355-.14c.41 0 .824.03 1.246.093c.418.05.805.164 1.153.332c.343.168.629.402.851.707c.219.297.328.691.328 1.184v4.242c0 .367.024.722.067 1.058c.039.336.113.586.218.754h-2.27a4.562 4.562 0 0 1-.112-.375a7.32 7.32 0 0 1-.047-.41a2.879 2.879 0 0 1-1.262.77a5.02 5.02 0 0 1-1.48.222c-.391 0-.754-.047-1.09-.14a2.57 2.57 0 0 1-.883-.442a2.115 2.115 0 0 1-.598-.757c-.136-.305-.207-.668-.207-1.09c0-.461.078-.84.239-1.133c.167-.309.378-.547.628-.727c.266-.18.559-.312.883-.394a9.383 9.383 0 0 1 1.012-.223c.336-.05.668-.094.992-.125a5.92 5.92 0 0 0 .867-.14a1.58 1.58 0 0 0 .602-.27c.144-.125.215-.305.203-.535c0-.242-.043-.434-.125-.57a.736.736 0 0 0-.316-.329a1.027 1.027 0 0 0-.457-.16a3.016 3.016 0 0 0-.551-.047c-.442 0-.79.094-1.043.285c-.25.188-.399.504-.442.946Zm5.172 1.656a1.014 1.014 0 0 1-.363.203a5.71 5.71 0 0 1-.96.191c-.18.02-.36.047-.536.079a4.81 4.81 0 0 0-.508.125a1.636 1.636 0 0 0-.426.222a.98.98 0 0 0-.281.332a1.077 1.077 0 0 0-.114.52c0 .2.04.367.114.504a.936.936 0 0 0 .297.332c.129.074.273.125.441.156c.172.031.344.047.523.047c.442 0 .782-.07 1.024-.219c.242-.148.422-.32.535-.52c.117-.21.188-.421.207-.632c.031-.211.047-.379.047-.504Zm6.816-4.164v-2.445h-2.238v2.445h-1.355v1.5h1.355v4.809c0 .41.067.742.203.992c.137.254.32.449.555.586c.238.136.512.226.82.265c.313.055.645.082.992.082c.22 0 .446-.007.68-.015c.23-.012.442-.032.629-.067v-1.734a2.269 2.269 0 0 1-.332.047c-.113.012-.234.02-.363.02c-.38 0-.63-.067-.754-.192c-.13-.125-.192-.379-.192-.758v-4.035h1.641v-1.5Zm8.196 3.203h-3.645c.012-.16.043-.336.094-.539c.066-.2.164-.387.3-.566c.15-.18.337-.325.567-.442c.242-.125.543-.187.902-.187c.547 0 .95.144 1.211.441c.274.293.465.723.57 1.293Zm-3.645 1.418h5.883a5.805 5.805 0 0 0-.156-1.812a4.41 4.41 0 0 0-.727-1.547a3.433 3.433 0 0 0-1.262-1.07c-.515-.274-1.12-.41-1.812-.41c-.621 0-1.188.109-1.703.327a3.943 3.943 0 0 0-1.309.918a3.811 3.811 0 0 0-.851 1.356a4.676 4.676 0 0 0-.301 1.703c0 .629.094 1.207.285 1.734a4 4 0 0 0 .836 1.356c.355.379.793.672 1.309.883c.515.199 1.093.3 1.734.3c.926 0 1.71-.21 2.363-.632c.653-.418 1.137-1.118 1.453-2.098h-1.972c-.075.254-.274.496-.598.726c-.328.223-.715.332-1.168.332c-.633 0-1.113-.164-1.453-.488c-.336-.328-.52-.851-.55-1.578Zm11.824-7.726v11.257h7.961v-2.078H76.29v-9.18Zm9.032 5.613c.03-.528.164-.961.394-1.309c.23-.347.524-.625.883-.836c.36-.21.758-.36 1.2-.441c.452-.094.902-.14 1.355-.14c.41 0 .824.03 1.246.093c.422.05.804.164 1.152.332c.348.168.629.402.852.707c.218.297.332.691.332 1.184v4.242c0 .367.02.722.062 1.058c.04.336.114.586.219.754h-2.27a4.523 4.523 0 0 1-.109-.375a4.898 4.898 0 0 1-.05-.41a2.879 2.879 0 0 1-1.262.77a5 5 0 0 1-1.48.222c-.392 0-.75-.047-1.09-.14a2.57 2.57 0 0 1-.884-.442a2.203 2.203 0 0 1-.597-.757c-.137-.305-.207-.668-.207-1.09c0-.461.082-.84.238-1.133c.168-.309.379-.547.629-.727a2.76 2.76 0 0 1 .887-.394a9.316 9.316 0 0 1 1.007-.223c.336-.05.668-.094.993-.125a5.92 5.92 0 0 0 .867-.14c.254-.063.453-.153.601-.27c.145-.125.215-.305.204-.535c0-.242-.043-.434-.125-.57a.736.736 0 0 0-.317-.329a1.027 1.027 0 0 0-.457-.16a3.016 3.016 0 0 0-.55-.047c-.442 0-.79.094-1.044.285c-.25.188-.398.504-.441.946Zm5.172 1.656a1.014 1.014 0 0 1-.364.203a5.71 5.71 0 0 1-.96.191a8.41 8.41 0 0 0-.536.079a4.743 4.743 0 0 0-.504.125c-.16.054-.3.129-.426.222a.948.948 0 0 0-.285.332c-.074.137-.11.309-.11.52c0 .2.036.367.11.504a.91.91 0 0 0 .301.332c.125.074.274.125.442.156c.167.031.34.047.519.047c.441 0 .781-.07 1.023-.219c.243-.148.422-.32.54-.52c.113-.21.183-.421.203-.632a3.84 3.84 0 0 0 .047-.504Zm9.957-.078c0 .336-.04.66-.11.976a2.638 2.638 0 0 1-.347.836c-.16.243-.36.438-.602.586c-.23.137-.516.203-.852.203c-.324 0-.609-.066-.851-.203a1.86 1.86 0 0 1-.598-.586a2.551 2.551 0 0 1-.347-.836a4.253 4.253 0 0 1-.11-.976c0-.348.035-.68.11-.996c.074-.313.187-.594.347-.836c.156-.238.356-.43.598-.567a1.6 1.6 0 0 1 .851-.218c.336 0 .621.07.852.218c.242.137.441.329.602.567c.156.242.273.523.347.836c.07.316.11.648.11.996M92 110.812v11.258h2.129v-1.039h.031c.242.453.598.774 1.07.961c.473.192 1.012.285 1.61.285a3.109 3.109 0 0 0 2.289-1.023c.324-.348.586-.79.785-1.328c.203-.547.3-1.192.3-1.938s-.097-1.39-.3-1.925c-.2-.547-.46-.993-.785-1.34a3.05 3.05 0 0 0-1.074-.774a3.103 3.103 0 0 0-1.215-.25a3.74 3.74 0 0 0-1.465.297a2.368 2.368 0 0 0-1.105.914h-.032v-4.097Zm11.375 8.61h-2.129c.02.547.14 1.004.363 1.371c.23.36.52.648.868.871a3.84 3.84 0 0 0 1.214.473a6.789 6.789 0 0 0 2.743 0a3.423 3.423 0 0 0 1.199-.457a2.55 2.55 0 0 0 .836-.871c.222-.368.332-.817.332-1.356c0-.379-.074-.691-.223-.945a1.932 1.932 0 0 0-.582-.649a3.06 3.06 0 0 0-.836-.425a10.173 10.173 0 0 0-.945-.266a31.264 31.264 0 0 0-.934-.207a9 9 0 0 1-.82-.203a1.9 1.9 0 0 1-.566-.317a.607.607 0 0 1-.22-.488c0-.168.04-.3.126-.394a.808.808 0 0 1 .3-.239a1.37 1.37 0 0 1 .41-.093c.145-.02.282-.032.41-.032c.4 0 .747.078 1.04.239c.293.144.457.433.488.867h2.13c-.04-.504-.173-.922-.395-1.246a2.402 2.402 0 0 0-.805-.805c-.324-.2-.7-.344-1.117-.426a6.215 6.215 0 0 0-1.278-.125c-.441 0-.875.04-1.293.125c-.421.074-.8.211-1.136.41c-.336.188-.61.454-.82.79c-.2.335-.301.765-.301 1.292c0 .356.074.66.222.914c.149.243.34.446.582.614c.242.16.516.289.82.394c.317.098.637.18.962.254c.8.168 1.421.336 1.863.504c.453.168.676.422.676.758a.87.87 0 0 1-.141.504c-.094.125-.215.23-.363.316a1.773 1.773 0 0 1-.473.172a2.679 2.679 0 0 1-1.137-.031a1.735 1.735 0 0 1-.535-.235a1.579 1.579 0 0 1-.394-.425a1.35 1.35 0 0 1-.141-.633m0 0\\\"/>\"\n\t\t},\n\t\t\"karma\": {\n\t\t\t\"body\": \"<path fill=\\\"#409B83\\\" d=\\\"m77.281 89.582l19.625 37.84h31.02l-35.153-67.14zm-62.535 20.29l14.367-17.497l22.973 35.047l-14.746-70.3l-12.45 26.472l-10.144 26.277\\\"/><path fill=\\\"#56C5A8\\\" d=\\\"M14.746 109.871L37.34 57.117L22.977 74.625L0 39.575zM124.97.391H93.95l-19 36.285V.39H46.492v37.632l15.172 72.282l3.535 17.117h9.75V95.664z\\\"/>\"\n\t\t},\n\t\t\"kdeneon\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconKdeneon0\\\" x1=\\\"25\\\" x2=\\\"25\\\" y1=\\\"1004.362\\\" y2=\\\"1052.362\\\" gradientTransform=\\\"translate(0 -2678.3)scale(2.66667)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1abc9c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2980b9\\\"/></linearGradient><linearGradient id=\\\"deviconKdeneon1\\\" x1=\\\"24\\\" x2=\\\"49\\\" y1=\\\"1028.362\\\" y2=\\\"1028.362\\\" gradientTransform=\\\"rotate(45 4083.407 1707.592)scale(3.29412)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconKdeneon2\\\" x1=\\\"24\\\" x2=\\\"49\\\" y1=\\\"1028.362\\\" y2=\\\"1028.362\\\" gradientTransform=\\\"rotate(45 11494.91 4777.53)scale(3.29412 9.26466)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconKdeneon3\\\" x1=\\\"24\\\" x2=\\\"49\\\" y1=\\\"1028.362\\\" y2=\\\"1028.362\\\" gradientTransform=\\\"rotate(45 17372.966 7212.296)scale(3.29412 13.99989)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><clipPath id=\\\"deviconKdeneon4\\\"><use href=\\\"#deviconKdeneona\\\"/></clipPath><clipPath id=\\\"deviconKdeneon5\\\"><use href=\\\"#deviconKdeneona\\\"/></clipPath><clipPath id=\\\"deviconKdeneon6\\\"><use href=\\\"#deviconKdeneona\\\"/></clipPath><g id=\\\"deviconKdeneon7\\\" clip-path=\\\"url(#deviconKdeneon4)\\\"><path fill=\\\"url(#deviconKdeneon1)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M73.316 54.684L54.684 73.316l44.27 44.266a63.975 63.975 0 0 0 18.609-18.656zm0 0\\\"/></g><g id=\\\"deviconKdeneon8\\\" clip-path=\\\"url(#deviconKdeneon5)\\\"><path fill=\\\"url(#deviconKdeneon2)\\\" fill-rule=\\\"evenodd\\\" d=\\\"m90.203 37.797l-1.176 1.176A35.422 35.422 0 0 1 99.41 64c0 19.559-15.851 35.41-35.41 35.41a35.422 35.422 0 0 1-25.027-10.383l-1.176 1.176l36.887 36.89c26.832-4.573 47.84-25.62 52.359-52.464zm0 0\\\"/></g><g id=\\\"deviconKdeneon9\\\" clip-path=\\\"url(#deviconKdeneon6)\\\"><path fill=\\\"url(#deviconKdeneon3)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M103.598 24.39v.012l-3.078 3.078A51.647 51.647 0 0 1 115.676 64c0 28.54-23.137 51.676-51.676 51.676a51.667 51.667 0 0 1-36.52-15.16l-3.078 3.082l21.832 21.836A64.06 64.06 0 0 0 64 128c35.348 0 64-28.652 64-64a64.071 64.071 0 0 0-2.543-17.75zm0 0\\\"/></g><path id=\\\"deviconKdeneona\\\" d=\\\"M0 0h128v128H0z\\\"/></defs><path fill=\\\"url(#deviconKdeneon0)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M128 64c0 35.348-28.652 64-64 64S0 99.348 0 64S28.652 0 64 0s64 28.652 64 64m0 0\\\"/><use href=\\\"#deviconKdeneon7\\\" opacity=\\\".2\\\"/><use href=\\\"#deviconKdeneon8\\\" opacity=\\\".2\\\"/><use href=\\\"#deviconKdeneon9\\\" opacity=\\\".2\\\"/><path fill=\\\"#fcfcfc\\\" d=\\\"M64 8a4.61 4.61 0 0 0-4.496 3.605a52.7 52.7 0 0 0-29.387 12.2a4.616 4.616 0 0 0-2.351-.653a4.615 4.615 0 0 0-4.614 4.614c.004.828.227 1.636.649 2.347a52.72 52.72 0 0 0-12.219 29.399A4.612 4.612 0 0 0 8 64a4.61 4.61 0 0 0 3.605 4.496a52.7 52.7 0 0 0 12.2 29.387a4.616 4.616 0 0 0-.653 2.351a4.615 4.615 0 0 0 4.614 4.614a4.643 4.643 0 0 0 2.34-.645a52.743 52.743 0 0 0 29.406 12.219A4.613 4.613 0 0 0 64 120c2.16 0 4.027-1.5 4.496-3.61a52.723 52.723 0 0 0 29.426-12.171c.7.41 1.5.625 2.312.629a4.615 4.615 0 0 0 4.614-4.614a4.647 4.647 0 0 0-.649-2.347a52.712 52.712 0 0 0 12.266-29.407A4.62 4.62 0 0 0 120 64c0-2.16-1.5-4.027-3.61-4.496a52.705 52.705 0 0 0-12.175-29.422a4.608 4.608 0 0 0 .633-2.316a4.615 4.615 0 0 0-4.614-4.614a4.647 4.647 0 0 0-2.347.649A52.712 52.712 0 0 0 68.48 11.535A4.613 4.613 0 0 0 64 8m0 1.977a2.636 2.636 0 1 1-2.637 2.636A2.636 2.636 0 0 1 64 9.977m-4.336 4.187a4.604 4.604 0 0 0 8.648.063a50.065 50.065 0 0 1 27.786 11.511a4.608 4.608 0 0 0 6.172 6.16a50.057 50.057 0 0 1 11.523 27.778a4.606 4.606 0 0 0-.023 8.637a50.033 50.033 0 0 1-11.508 27.785a4.608 4.608 0 0 0-6.164 6.168a50.078 50.078 0 0 1-27.774 11.527A4.61 4.61 0 0 0 64 110.777a4.608 4.608 0 0 0-4.313 2.993a50.1 50.1 0 0 1-27.804-11.465a4.608 4.608 0 0 0-6.148-6.207a50.078 50.078 0 0 1-11.57-27.762a4.604 4.604 0 0 0 .066-8.648a50.077 50.077 0 0 1 11.468-27.805a4.608 4.608 0 0 0 6.203-6.152a50.045 50.045 0 0 1 27.762-11.567M64 23.813a4.606 4.606 0 0 0-4.504 3.64C41.027 29.723 27.141 45.395 27.106 64c.027 18.613 13.917 34.293 32.394 36.563a4.606 4.606 0 0 0 9.004-.016c18.469-2.27 32.355-17.942 32.39-36.547c-.027-18.613-13.917-34.293-32.394-36.563a4.609 4.609 0 0 0-4.5-3.625zm-36.234 1.316a2.635 2.635 0 1 1-.004 5.27a2.635 2.635 0 0 1 .004-5.27m72.468 0a2.636 2.636 0 1 1 .002 5.271a2.636 2.636 0 0 1-.002-5.271M64 25.789a2.635 2.635 0 1 1 0 5.27a2.636 2.636 0 1 1 0-5.27m-4.309 4.277A4.616 4.616 0 0 0 64 33.036a4.617 4.617 0 0 0 4.3-2.962C85.399 32.238 98.228 46.766 98.259 64c-.028 17.234-12.852 31.766-29.95 33.934A4.616 4.616 0 0 0 64 94.964a4.617 4.617 0 0 0-4.3 2.962C42.601 95.762 29.772 81.234 29.741 64c.028-17.234 12.852-31.766 29.95-33.934M64 50.824c-7.277 0-13.176 5.899-13.176 13.176S56.723 77.176 64 77.176S77.176 71.277 77.176 64S71.277 50.824 64 50.824m-51.387 10.54A2.635 2.635 0 0 1 15.246 64a2.635 2.635 0 1 1-5.27 0a2.636 2.636 0 0 1 2.637-2.637zm102.774 0A2.636 2.636 0 0 1 118.023 64a2.636 2.636 0 1 1-2.636-2.637zM64 96.94a2.636 2.636 0 1 1-2.637 2.637A2.636 2.636 0 0 1 64 96.941zm-36.234.66a2.634 2.634 0 1 1-.003 5.269a2.634 2.634 0 0 1 .003-5.268zm72.468 0a2.635 2.635 0 1 1 .004 5.27a2.635 2.635 0 0 1-.004-5.27M64 112.755a2.635 2.635 0 1 1 0 5.27a2.636 2.636 0 1 1 0-5.27m0 0\\\"/>\"\n\t\t},\n\t\t\"keras\": {\n\t\t\t\"body\": \"<path fill=\\\"#d00000\\\" d=\\\"M128 128H0V0h128z\\\"/><path fill=\\\"#fff\\\" d=\\\"M34.1 99.3c0 .1.1.2.1.3l2.2 2.2c.1.1.2.1.3.1h7.5c.1 0 .2-.1.3-.1l2.2-2.2c.1-.1.1-.2.1-.3V75.5c0-.1.1-.2.1-.3l9.5-9.1c.1-.1.2-.1.2 0l24.1 35.6c.1.1.2.1.3.1h10.6c.1 0 .2-.1.3-.2l1.9-3.7v-.3L65.7 56.9c-.1-.1 0-.2 0-.3l25.9-25.8c.1-.1.1-.2.1-.3V30c0-.1 0-.2-.1-.3l-1.5-3.4c0-.1-.1-.2-.2-.2H79.4c-.1 0-.2.1-.3.1L47 58.5c-.1.1-.1 0-.1-.1V28.9c0-.1-.1-.2-.1-.3l-2.2-2.3c-.1-.1-.2-.1-.3-.1h-7.6c-.1 0-.2.1-.3.1l-2.2 2.4c-.1.1-.1.2-.1.3z\\\"/>\"\n\t\t},\n\t\t\"keras-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#d00000\\\" d=\\\"M38.53 83.27H0V44.74h38.53z\\\"/><path fill=\\\"#fff\\\" d=\\\"M10.27 74.61s.02.07.04.09l.66.66s.06.04.09.04h2.26s.07-.02.09-.04l.66-.66s.04-.06.04-.09v-7.16s.02-.07.04-.09l2.87-2.74s.05-.02.07 0l7.24 10.73s.05.04.08.04h3.2s.06-.02.08-.05l.58-1.12s.01-.07 0-.09L19.8 61.85s-.01-.06 0-.08l7.79-7.76s.04-.06.04-.09v-.14s0-.07-.02-.1l-.45-1.03s-.05-.05-.07-.05h-3.16s-.07.02-.09.04l-9.68 9.72s-.04.01-.04-.02v-8.92s-.02-.07-.04-.09l-.65-.69s-.06-.04-.09-.04h-2.27s-.07.02-.09.04l-.66.72s-.04.06-.04.09v21.17Z\\\"/><path fill=\\\"#2f2f2f\\\" d=\\\"M77.63 75.07c-2.47 0-4.4-.72-5.79-2.16c-1.39-1.44-2.09-3.42-2.09-5.95s.65-4.63 1.94-6.11c1.29-1.48 3.07-2.22 5.32-2.22c2.09 0 3.75.64 4.96 1.91s1.82 3.02 1.82 5.25v1.82H73.22c.05 1.54.46 2.72 1.25 3.55c.78.83 1.89 1.24 3.31 1.24c.94 0 1.81-.09 2.62-.27c.81-.18 1.68-.47 2.6-.88v2.74c-.82.39-1.65.67-2.5.83c-.84.16-1.8.24-2.88.24Zm-.62-13.89c-1.07 0-1.93.34-2.58 1.02s-1.03 1.67-1.16 2.97h7.2c-.02-1.31-.33-2.3-.95-2.98s-1.45-1.01-2.53-1.01Zm18.67-2.55c.68 0 1.24.05 1.68.14l-.33 3.14c-.48-.11-.98-.17-1.49-.17c-1.35 0-2.44.44-3.28 1.32c-.84.88-1.26 2.02-1.26 3.43v8.29h-3.37V58.91h2.64l.45 2.8h.17c.53-.95 1.21-1.7 2.06-2.25c.85-.55 1.76-.83 2.73-.83m14.55 16.16l-.67-2.21h-.11c-.77.97-1.54 1.62-2.31 1.97c-.77.35-1.77.52-2.98.52c-1.56 0-2.78-.42-3.65-1.26s-1.31-2.03-1.31-3.57c0-1.64.61-2.87 1.82-3.7c1.22-.83 3.07-1.29 5.55-1.36l2.74-.09v-.85c0-1.01-.24-1.77-.71-2.27s-1.21-.75-2.2-.75c-.81 0-1.59.12-2.34.36c-.75.24-1.46.52-2.15.85l-1.09-2.41c.86-.45 1.8-.79 2.83-1.03c1.02-.23 1.99-.35 2.9-.35c2.02 0 3.54.44 4.57 1.32s1.54 2.26 1.54 4.15V74.8h-2.41Zm-5.02-2.3c1.22 0 2.21-.34 2.95-1.03c.74-.68 1.11-1.64 1.11-2.88V67.2l-2.04.09c-1.59.06-2.74.32-3.47.8c-.72.47-1.08 1.2-1.08 2.17c0 .71.21 1.26.63 1.64s1.05.58 1.89.58Zm22.8-2.22c0 1.55-.56 2.74-1.69 3.57c-1.13.83-2.74 1.24-4.85 1.24s-3.81-.32-5.09-.96v-2.91c1.87.86 3.6 1.29 5.21 1.29c2.08 0 3.11-.63 3.11-1.88c0-.4-.11-.74-.34-1c-.23-.27-.61-.54-1.13-.83c-.53-.29-1.26-.61-2.2-.98c-1.83-.71-3.06-1.42-3.71-2.12c-.65-.71-.97-1.63-.97-2.75c0-1.36.55-2.41 1.64-3.16c1.1-.75 2.59-1.13 4.47-1.13s3.63.38 5.29 1.13l-1.09 2.54c-1.71-.71-3.15-1.06-4.32-1.06c-1.78 0-2.67.51-2.67 1.52c0 .5.23.92.7 1.26c.46.34 1.48.82 3.03 1.42c1.31.51 2.26.97 2.86 1.39c.59.42 1.03.91 1.32 1.46c.29.55.43 1.21.43 1.97ZM49.98 74.4s.02.07.04.09l.65.65s.06.04.09.04h2.21s.07-.02.09-.04l.65-.65s.04-.06.04-.09v-7.01s.02-.07.04-.09l2.81-2.68s.05-.02.07 0l7.09 10.5s.05.04.08.04h3.13s.06-.02.08-.05l.57-1.1s.01-.07 0-.09l-8.3-12.03s-.01-.06 0-.08l7.63-7.6s.04-.06.04-.09v-.14s0-.07-.02-.1l-.44-1.01s-.04-.05-.07-.05h-3.09s-.07.02-.09.04l-9.48 9.52s-.04.01-.04-.02v-8.73s-.02-.07-.04-.09l-.63-.68s-.06-.04-.09-.04h-2.23s-.07.02-.09.04l-.65.7s-.04.06-.04.09v20.72Z\\\"/>\"\n\t\t},\n\t\t\"kibana\": {\n\t\t\t\"body\": \"<path fill=\\\"#f04e98\\\" d=\\\"M112 0H12v48c17.3 0 33.54 4.453 47.73 12.188Zm0 0\\\"/><path fill=\\\"#343741\\\" d=\\\"M12 48v67.152l47.73-54.96A99.422 99.422 0 0 0 12 48\\\"/><path fill=\\\"#00bfb3\\\" d=\\\"m70.04 66.621l-48.974 56.406L16.738 128h93.258c-5.121-25.21-19.758-46.945-39.957-61.379\\\"/>\"\n\t\t},\n\t\t\"kibana-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"m51.648 66.016l1.457-1.82l3.684-3.9h2.922L54.836 65.5l5.184 6.914h-3.008l-3.887-5.312l-1.414 1.168v4.152h-2.54V55.355h2.556v8.325l-.133 2.34Zm10.188-8.907c-.023-.39.113-.777.383-1.066a1.478 1.478 0 0 1 1.082-.367c.386-.024.765.11 1.054.367c.266.289.403.676.375 1.066c.024.383-.113.754-.375 1.036a1.412 1.412 0 0 1-1.058.378a1.452 1.452 0 0 1-1.082-.378a1.405 1.405 0 0 1-.38-1.036Zm2.734 15.336h-2.574v-12.16h2.57Zm9.88-12.37a4.25 4.25 0 0 1 3.519 1.644c.851 1.097 1.277 2.636 1.277 4.617c0 1.988-.426 3.52-1.285 4.64a4.662 4.662 0 0 1-3.566 1.653a4.687 4.687 0 0 1-3.567-1.652h-.172l-.476 1.433h-1.918V55.344h2.59v4.093l-.047 1.333l-.063 1.128h.11a4.096 4.096 0 0 1 3.628-1.836Zm-.673 2.105a2.604 2.604 0 0 0-2.242.918c-.457.582-.695 1.632-.707 3.062v.176c0 1.473.234 2.539.703 3.203a2.598 2.598 0 0 0 2.293.996a2.33 2.33 0 0 0 2.074-1.09a5.689 5.689 0 0 0 .707-3.132c0-2.754-.94-4.133-2.828-4.133m16.035 10.246l-.511-1.684h-.09a4.935 4.935 0 0 1-1.754 1.504c-.723.293-1.5.43-2.281.402a3.85 3.85 0 0 1-2.785-.964a3.63 3.63 0 0 1-1.008-2.73a3.214 3.214 0 0 1 1.398-2.833c.926-.633 2.336-.98 4.239-1.039l2.093-.062v-.653a2.468 2.468 0 0 0-.539-1.75a2.196 2.196 0 0 0-1.683-.586a5.794 5.794 0 0 0-1.79.27c-.562.187-1.117.41-1.652.664l-.84-1.84a9.147 9.147 0 0 1 2.164-.785a9.84 9.84 0 0 1 2.215-.266c1.54 0 2.711.336 3.524 1.008c.8.676 1.191 1.73 1.168 3.164v8.184Zm-3.835-1.754a3.16 3.16 0 0 0 2.25-.781a2.844 2.844 0 0 0 .855-2.2v-1.05l-1.562.07a5.265 5.265 0 0 0-2.641.586a1.84 1.84 0 0 0-.828 1.66a1.62 1.62 0 0 0 .476 1.25c.414.34.946.508 1.48.469Zm19.945 1.754h-2.59V64.96a3.295 3.295 0 0 0-.586-2.094a2.189 2.189 0 0 0-1.797-.691a2.865 2.865 0 0 0-2.39.965c-.504.644-.754 1.722-.754 3.234v6.04h-2.578V60.296h2.027l.363 1.582h.133a3.554 3.554 0 0 1 1.555-1.332a5.13 5.13 0 0 1 2.234-.473c2.91 0 4.367 1.477 4.367 4.438Zm11.168 0l-.516-1.684h-.086a4.968 4.968 0 0 1-1.754 1.504a5.577 5.577 0 0 1-2.28.402a3.865 3.865 0 0 1-2.79-.964a3.63 3.63 0 0 1-1.008-2.73a3.223 3.223 0 0 1 1.399-2.833c.925-.633 2.34-.98 4.238-1.039l2.094-.062v-.653a2.468 2.468 0 0 0-.54-1.75a2.191 2.191 0 0 0-1.683-.586a5.812 5.812 0 0 0-1.789.27c-.563.187-1.113.41-1.652.664l-.836-1.84a9.024 9.024 0 0 1 2.164-.785a9.814 9.814 0 0 1 2.215-.266c1.535 0 2.707.336 3.52 1.008c.804.676 1.19 1.73 1.167 3.164v8.184Zm-3.836-1.754a3.172 3.172 0 0 0 2.25-.781a2.84 2.84 0 0 0 .851-2.2v-1.05l-1.558.07a5.27 5.27 0 0 0-2.645.586a1.84 1.84 0 0 0-.828 1.66a1.64 1.64 0 0 0 .477 1.25c.406.336.926.5 1.453.469Zm0 0\\\"/><path fill=\\\"#343741\\\" d=\\\"M9.047 58.133v24.672l17.535-20.196a36.49 36.49 0 0 0-17.535-4.476m0 0\\\"/><path fill=\\\"#f04e98\\\" d=\\\"M9.047 40.492v17.64a36.63 36.63 0 0 1 17.535 4.473l19.195-22.113Zm0 0\\\"/><path fill=\\\"#00bfb3\\\" d=\\\"M30.352 64.96L10.789 87.509h34.258a36.73 36.73 0 0 0-14.695-22.543Zm0 0\\\"/>\"\n\t\t},\n\t\t\"knexjs\": {\n\t\t\t\"body\": \"<path fill=\\\"#e16426\\\" d=\\\"m126.79 70.959l-15.632-7.552l14.809-6.926c1.149-.538 1.823-1.96 1.028-3.284l-1.539-1.781c-.993-1.086-2.071-1.878-3.381-1.363L111.073 54.2c-.24.09-.504.102-.751.032l-4.259-1.206a.93.93 0 0 0-.893.22l-4.556 4.324a37.001 37.001 0 0 0-6.817-15.81l6.66-.053a.794.794 0 0 0 .689-.41l2.357-4.276c.123-.223.317-.398.55-.497l10.898-4.647c.67-.286 1.081-1.676.953-2.578l-.355-3.254c-.29-.935-1.602-1.758-2.23-1.526l-16.392 5.714l5.574-15.369c.431-1.193-.097-2.674-1.595-3.05l-2.348-.17c-1.47-.066-2.793.136-3.355 1.427l-4.848 10.712a1.202 1.202 0 0 1-.508.553l-3.864 2.159a.93.93 0 0 0-.476.787l-.164 6.282a36.957 36.957 0 0 0-16.004-6.359l4.676-4.75a.794.794 0 0 0 .197-.777l-1.357-4.69a1.14 1.14 0 0 1 .037-.741l4.42-10.992c.273-.675-.42-1.95-1.149-2.496L73.612.709c-.866-.456-2.376-.11-2.656.497l-7.551 15.633l-6.926-14.81c-.54-1.148-1.96-1.822-3.285-1.028l-1.781 1.54c-1.086.993-1.878 2.07-1.362 3.381l4.147 11.002c.09.24.101.504.031.75l-1.206 4.26a.928.928 0 0 0 .22.893l4.325 4.556A37.007 37.007 0 0 0 41.757 34.2l-.053-6.66a.794.794 0 0 0-.41-.689l-4.277-2.357a1.138 1.138 0 0 1-.497-.55l-4.646-10.899c-.285-.67-1.676-1.081-2.578-.952l-3.255.354c-.934.29-1.757 1.603-1.525 2.23L30.23 31.07l-15.369-5.574c-1.193-.432-2.674.096-3.05 1.594l-.17 2.348c-.066 1.47.136 2.793 1.427 3.355L23.78 37.64a1.2 1.2 0 0 1 .553.509l2.16 3.864a.93.93 0 0 0 .786.476l6.282.164a36.957 36.957 0 0 0-6.358 16.004l-4.75-4.676a.794.794 0 0 0-.778-.197l-4.69 1.357a1.132 1.132 0 0 1-.74-.037l-10.993-4.42c-.675-.272-1.95.42-2.496 1.149l-2.05 2.552c-.456.865-.11 2.375.497 2.655l15.632 7.551l-14.809 6.926c-1.149.539-1.822 1.96-1.029 3.284l1.54 1.782c.993 1.086 2.071 1.878 3.382 1.363l11.002-4.148c.24-.09.503-.101.75-.031l4.26 1.206a.93.93 0 0 0 .893-.22l4.555-4.325a37.001 37.001 0 0 0 6.817 15.811l-6.66.053a.793.793 0 0 0-.689.41L24.49 90.98a1.142 1.142 0 0 1-.55.498l-10.898 4.646c-.67.285-1.082 1.676-.953 2.578l.355 3.254c.29.935 1.602 1.757 2.23 1.526l16.392-5.714l-5.574 15.369c-.43 1.193.097 2.674 1.595 3.05l2.348.17c1.47.066 2.793-.136 3.355-1.427l4.847-10.712c.106-.234.284-.428.509-.554l3.864-2.158a.93.93 0 0 0 .476-.787l.164-6.282a36.957 36.957 0 0 0 16.004 6.358l-4.676 4.75a.795.795 0 0 0-.196.777l1.356 4.691c.07.244.057.505-.037.74l-4.421 10.993c-.271.674.42 1.95 1.15 2.496l2.551 2.05c.866.456 2.376.11 2.656-.497l7.55-15.633l6.927 14.809c.54 1.149 1.96 1.823 3.284 1.029l1.781-1.54c1.086-.993 1.88-2.071 1.363-3.381l-4.147-11.002a1.2 1.2 0 0 1-.031-.751l1.206-4.26a.93.93 0 0 0-.22-.893l-4.325-4.556A36.998 36.998 0 0 0 86.236 93.8l.053 6.66c.002.287.16.55.41.689l4.277 2.357c.222.123.397.316.497.55l4.646 10.899c.285.67 1.676 1.08 2.578.952l3.254-.354c.935-.29 1.757-1.603 1.526-2.23L97.763 96.93l15.369 5.574c1.193.432 2.674-.096 3.05-1.595l.17-2.348c.066-1.47-.136-2.793-1.427-3.354l-10.712-4.848a1.204 1.204 0 0 1-.554-.508l-2.158-3.865a.93.93 0 0 0-.787-.475l-6.282-.164a36.957 36.957 0 0 0 6.358-16.004l4.75 4.676a.794.794 0 0 0 .777.197l4.691-1.357c.244-.071.505-.058.74.037l10.993 4.42c.675.272 1.95-.42 2.496-1.149l2.05-2.552c.456-.865.11-2.375-.497-2.655zM90.654 59.853h-7.905a19.104 19.104 0 0 0-3.202-7.12l5.541-5.54a26.843 26.843 0 0 1 5.566 12.66M74.323 47.809a19.073 19.073 0 0 0-7.296-2.776v-7.835c4.785.535 9.19 2.32 12.883 5.024zm-.962 16.19a9.364 9.364 0 1 1-18.728 0a9.364 9.364 0 0 1 18.728 0M59.85 37.341v7.905a19.115 19.115 0 0 0-7.12 3.202l-5.54-5.541a26.845 26.845 0 0 1 12.66-5.566M47.807 53.672a19.079 19.079 0 0 0-2.776 7.296h-7.835a26.827 26.827 0 0 1 5.024-12.883zM37.34 68.145h7.905a19.103 19.103 0 0 0 3.201 7.12l-5.541 5.54a26.847 26.847 0 0 1-5.565-12.66m16.33 12.044a19.081 19.081 0 0 0 7.297 2.776V90.8a26.818 26.818 0 0 1-12.883-5.024zm14.474 10.468v-7.905a19.118 19.118 0 0 0 7.119-3.202l5.54 5.541a26.843 26.843 0 0 1-12.66 5.566zm12.044-16.331a19.087 19.087 0 0 0 2.775-7.296h7.835a26.827 26.827 0 0 1-5.023 12.883z\\\"/>\"\n\t\t},\n\t\t\"knexjs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#e16426\\\" d=\\\"m106.28 47.941l-10.525-5.084l9.97-4.664c.774-.362 1.228-1.319.693-2.21l-1.036-1.2c-.669-.731-1.395-1.265-2.277-.918l-7.407 2.792a.802.802 0 0 1-.506.02l-2.867-.812a.629.629 0 0 0-.602.149l-3.067 2.911a24.908 24.908 0 0 0-4.59-10.645l4.484-.035a.534.534 0 0 0 .464-.276l1.587-2.88a.764.764 0 0 1 .37-.334l7.338-3.128c.45-.193.728-1.129.641-1.736l-.239-2.191c-.195-.63-1.078-1.183-1.5-1.027L86.172 20.52l3.753-10.348c.29-.803-.065-1.8-1.073-2.053l-1.581-.116c-.99-.044-1.88.092-2.26.962l-3.263 7.212a.81.81 0 0 1-.342.372l-2.602 1.454a.626.626 0 0 0-.32.53l-.11 4.23a24.884 24.884 0 0 0-10.776-4.282l3.148-3.198a.534.534 0 0 0 .133-.523l-.914-3.158a.765.765 0 0 1 .026-.499l2.976-7.4c.183-.455-.283-1.313-.774-1.681L70.477.64c-.584-.307-1.6-.074-1.788.335l-5.085 10.526l-4.663-9.97C58.578.757 57.62.303 56.73.837l-1.2 1.037c-.73.669-1.264 1.394-.917 2.277l2.792 7.407a.802.802 0 0 1 .02.506l-.812 2.868a.62.62 0 0 0 .149.601l2.911 3.067a24.913 24.913 0 0 0-10.645 4.59l-.035-4.484a.534.534 0 0 0-.276-.464l-2.88-1.587a.766.766 0 0 1-.334-.37l-3.129-7.338c-.192-.451-1.128-.728-1.736-.641l-2.19.238c-.63.195-1.184 1.079-1.028 1.501l3.848 11.038L30.92 17.33c-.804-.29-1.801.065-2.054 1.074l-.115 1.58c-.044.99.092 1.881.961 2.26l7.212 3.263a.809.809 0 0 1 .373.342l1.453 2.602c.108.193.31.315.53.32l4.23.11a24.883 24.883 0 0 0-4.281 10.776L36.03 36.51a.535.535 0 0 0-.524-.133l-3.158.914a.761.761 0 0 1-.498-.026l-7.4-2.975c-.455-.183-1.313.283-1.68.774l-1.382 1.718c-.306.583-.073 1.6.336 1.788l10.525 5.084l-9.971 4.663c-.774.363-1.227 1.32-.693 2.211l1.037 1.2c.668.731 1.394 1.265 2.277.917l7.407-2.792a.802.802 0 0 1 .505-.02l2.868.812c.212.06.441.003.601-.148l3.068-2.912a24.909 24.909 0 0 0 4.59 10.645l-4.485.035a.534.534 0 0 0-.463.277l-1.588 2.879a.77.77 0 0 1-.37.335l-7.337 3.128c-.451.192-.729 1.128-.642 1.736l.239 2.19c.195.63 1.079 1.184 1.501 1.028L41.83 65.99l-3.753 10.348c-.29.803.065 1.8 1.074 2.053l1.58.115c.99.044 1.881-.092 2.26-.961l3.263-7.213a.811.811 0 0 1 .342-.372l2.602-1.453a.626.626 0 0 0 .32-.53l.111-4.23a24.884 24.884 0 0 0 10.775 4.281l-3.148 3.198a.535.535 0 0 0-.132.524l.913 3.158a.767.767 0 0 1-.025.498l-2.977 7.401c-.182.455.284 1.313.775 1.681l1.717 1.38c.583.307 1.6.074 1.788-.334L64.4 75.008l4.664 9.97c.363.774 1.319 1.228 2.211.693l1.2-1.036c.73-.67 1.264-1.395.917-2.277L70.6 74.95a.802.802 0 0 1-.02-.505l.811-2.868a.628.628 0 0 0-.148-.602l-2.911-3.067a24.907 24.907 0 0 0 10.645-4.59l.035 4.485c.002.193.107.37.276.463l2.88 1.588c.15.082.267.212.334.37l3.129 7.338c.192.45 1.128.728 1.735.64l2.191-.238c.63-.195 1.183-1.079 1.028-1.5l-3.848-11.039l10.348 3.753c.804.29 1.8-.065 2.054-1.074l.115-1.58c.044-.99-.092-1.881-.961-2.26l-7.213-3.263a.811.811 0 0 1-.372-.342l-1.454-2.602a.626.626 0 0 0-.53-.32l-4.23-.11a24.883 24.883 0 0 0 4.282-10.776L91.973 50a.534.534 0 0 0 .523.132l3.159-.913a.761.761 0 0 1 .498.025l7.4 2.976c.455.183 1.314-.283 1.682-.773l1.38-1.719c.307-.582.074-1.599-.335-1.787m-24.33-7.478h-5.323a12.863 12.863 0 0 0-2.155-4.793l3.73-3.73a18.074 18.074 0 0 1 3.748 8.523m-10.996-8.109a12.842 12.842 0 0 0-4.912-1.869V25.21a18.056 18.056 0 0 1 8.674 3.383zm-.648 10.901a6.304 6.304 0 1 1-12.609 0a6.304 6.304 0 0 1 12.609 0M61.21 25.306v5.323a12.87 12.87 0 0 0-4.793 2.155l-3.731-3.73a18.075 18.075 0 0 1 8.524-3.748M53.1 36.302a12.846 12.846 0 0 0-1.868 4.913h-5.275a18.062 18.062 0 0 1 3.382-8.674zm-7.047 9.745h5.323a12.863 12.863 0 0 0 2.155 4.793l-3.73 3.73a18.076 18.076 0 0 1-3.748-8.523m10.996 8.109a12.847 12.847 0 0 0 4.913 1.869V61.3a18.057 18.057 0 0 1-8.674-3.382zm9.745 7.048V55.88a12.871 12.871 0 0 0 4.793-2.155l3.73 3.73a18.073 18.073 0 0 1-8.523 3.748zm8.11-10.996a12.852 12.852 0 0 0 1.868-4.912h5.275a18.062 18.062 0 0 1-3.382 8.674z\\\"/><path fill=\\\"#dfa486\\\" d=\\\"M71.299 119.31v6.217h.672v-.607h.017c.284.47.704.705 1.259.705c.593 0 1.06-.21 1.402-.632c.342-.423.513-.987.513-1.69c0-.63-.153-1.133-.46-1.508c-.303-.377-.724-.566-1.263-.566c-.637 0-1.12.28-1.451.837h-.017v-2.756zm11.724 0v6.217h.673v-6.217zm4.946 0v2.6h-.016c-.263-.454-.683-.68-1.26-.68c-.582 0-1.048.208-1.398.626c-.35.418-.525.975-.525 1.67c0 .647.157 1.16.472 1.537c.317.375.739.562 1.267.562c.65 0 1.132-.271 1.444-.812h.016v.714h.673v-6.217zm-6.658.078a.422.422 0 0 0-.285.126a.416.416 0 0 0-.127.312a.426.426 0 0 0 .435.435a.424.424 0 0 0 .311-.127a.414.414 0 0 0 .132-.308a.41.41 0 0 0-.132-.312a.423.423 0 0 0-.312-.126zm-47.844.16c-.254 0-.505.031-.75.094a2.112 2.112 0 0 0-.653.287a1.502 1.502 0 0 0-.463.492c-.117.197-.176.43-.176.697c0 .219.037.41.11.574c.077.161.181.306.312.435c.132.128.286.246.463.353c.178.106.37.212.575.316c.194.098.374.192.541.282c.17.088.315.18.439.279c.123.096.218.202.287.32a.787.787 0 0 1 .106.414c0 .296-.104.522-.315.68c-.208.156-.524.235-.947.235a2.45 2.45 0 0 1-.403-.037a3.585 3.585 0 0 1-.434-.103a2.992 2.992 0 0 1-.41-.168a1.602 1.602 0 0 1-.333-.222v.812c.077.052.178.1.304.144c.128.04.264.075.406.103c.142.03.282.051.418.065c.137.016.252.025.345.025c.279 0 .544-.029.796-.086c.251-.055.473-.145.664-.27c.194-.127.347-.29.46-.489c.114-.202.171-.449.171-.738c0-.22-.042-.413-.127-.582a1.66 1.66 0 0 0-.336-.464a2.734 2.734 0 0 0-.496-.381a7.748 7.748 0 0 0-.6-.328a18.929 18.929 0 0 1-.545-.28a2.509 2.509 0 0 1-.397-.262a.984.984 0 0 1-.25-.3a.86.86 0 0 1-.083-.389a.73.73 0 0 1 .111-.41a.89.89 0 0 1 .287-.274c.118-.071.252-.122.402-.152a2.12 2.12 0 0 1 .451-.05c.544 0 .99.12 1.337.362v-.776c-.265-.14-.687-.209-1.267-.209m5.154 0c-.877 0-1.572.28-2.086.844c-.512.56-.767 1.315-.767 2.264c0 .88.25 1.595.75 2.144c.506.55 1.174.825 2.006.825c.344 0 .66-.046.95-.136l1.108.829h1.25l-1.652-1.185a2.27 2.27 0 0 0 .386-.345c.508-.557.762-1.316.762-2.275c0-.883-.249-1.599-.746-2.145c-.498-.547-1.151-.82-1.96-.82zm3.864.098v5.88h3.05v-.623h-2.361v-5.257zm-3.912.525c.634 0 1.132.212 1.493.636c.36.42.54 1.02.54 1.8c0 .757-.185 1.346-.557 1.767c-.372.421-.88.632-1.525.632c-.605 0-1.095-.22-1.473-.66c-.374-.446-.562-1.03-.562-1.751c0-.725.193-1.31.578-1.756c.386-.446.888-.668 1.505-.668m11.44 1.058c-.565.013-1.018.222-1.357.627c-.35.416-.524.972-.524 1.67c0 .647.158 1.16.475 1.537c.32.375.744.562 1.272.562c.664 0 1.143-.274 1.435-.82h.017v2.653h.672v-6.131h-.672v.582h-.017c-.257-.453-.673-.68-1.247-.68zm9.701 0c-.527.013-.97.22-1.33.62c-.37.41-.554.941-.554 1.594c0 .692.17 1.23.509 1.612c.339.38.805.57 1.398.57c.607 0 1.095-.134 1.464-.402v-.631a2.067 2.067 0 0 1-1.304.467c-.421 0-.752-.128-.993-.382c-.24-.254-.366-.614-.377-1.082h2.965v-.352c0-.632-.15-1.126-.451-1.481c-.3-.356-.725-.533-1.275-.533zm31.886 0c-.527.013-.97.22-1.33.62c-.37.41-.554.941-.554 1.594c0 .692.17 1.23.509 1.612c.339.38.804.57 1.398.57c.606 0 1.095-.134 1.464-.402v-.631a2.064 2.064 0 0 1-1.305.467c-.42 0-.751-.128-.992-.382c-.24-.254-.366-.614-.377-1.082h2.965v-.352c0-.632-.15-1.126-.451-1.481c-.3-.356-.726-.533-1.276-.533zm-27.303.025a.995.995 0 0 0-.66.25c-.197.163-.343.393-.438.688h-.017v-.865h-.672v4.2h.672v-2.141c0-.468.096-.837.287-1.107c.194-.271.435-.406.722-.406c.221 0 .391.045.509.135v-.697a1.1 1.1 0 0 0-.403-.057m31.886 0a.995.995 0 0 0-.66.25a1.453 1.453 0 0 0-.439.688h-.017v-.865h-.672v4.2h.672v-2.141c0-.468.096-.837.288-1.107c.194-.271.435-.406.722-.406c.221 0 .39.045.508.135v-.697a1.096 1.096 0 0 0-.402-.057m-42.909.073v2.51c0 1.192.5 1.788 1.501 1.788c.585 0 1.017-.254 1.296-.763h.016v.665h.673v-4.2h-.673v2.42c0 .39-.107.708-.32.951c-.21.24-.48.36-.808.36c-.678 0-1.017-.442-1.017-1.327v-2.404zm11.532 0l1.64 4.191l-.336.796c-.17.404-.423.606-.762.606c-.12 0-.254-.024-.399-.073v.603c.118.035.265.053.44.053c.623 0 1.106-.435 1.45-1.304l1.932-4.872h-.697l-1.193 3.24a4.806 4.806 0 0 0-.082.312h-.025a6.915 6.915 0 0 0-.085-.32l-1.136-3.232zm11.34 0v2.51c0 1.192.5 1.788 1.501 1.788c.585 0 1.017-.254 1.296-.763h.016v.665h.673v-4.2h-.673v2.42c0 .39-.106.708-.32.951c-.21.24-.48.36-.808.36c-.678 0-1.016-.442-1.016-1.327v-2.404zm4.844 0v4.2h.672v-4.2zm-30.857.468c.347 0 .633.118.857.356c.227.238.34.53.34.874v.61c0 .41-.117.751-.352 1.022c-.233.268-.546.402-.94.402c-.358 0-.65-.136-.877-.41c-.227-.276-.34-.656-.34-1.14c0-.544.117-.965.352-1.263c.235-.301.555-.451.96-.451m9.591 0h.03c.328 0 .583.108.766.324c.186.216.28.518.283.906h-2.267c.052-.366.188-.663.41-.89c.214-.22.474-.333.778-.34m13.547 0c.37 0 .662.132.878.397c.216.265.324.632.324 1.1c0 .554-.116.988-.349 1.3c-.23.311-.549.467-.956.467a1.13 1.13 0 0 1-.86-.36a1.26 1.26 0 0 1-.337-.887v-.586c0-.41.12-.75.357-1.022c.238-.273.552-.41.943-.41m13.508 0c.345 0 .629.117.853.353a1.2 1.2 0 0 1 .336.86v.62c0 .413-.117.754-.352 1.025c-.232.27-.536.406-.91.406c-.38 0-.684-.14-.911-.418c-.224-.282-.336-.665-.336-1.149c0-.53.117-.946.353-1.246c.235-.301.557-.451.967-.451m4.83 0h.03c.328 0 .583.108.767.324c.185.216.28.518.282.906H90.42c.052-.366.189-.663.41-.89c.215-.22.474-.333.778-.34\\\"/><path fill=\\\"#c5bab5\\\" d=\\\"M79.584 100.81a1.1 1.1 0 0 0-.75.302a.996.996 0 0 0-.318.753c0 .302.106.55.318.746c.217.196.476.294.778.294c.307 0 .569-.1.785-.302a.983.983 0 0 0 .326-.738a.985.985 0 0 0-.326-.753a1.114 1.114 0 0 0-.785-.302zm-39.051.547v11.38h1.889v-5.603h.032c.031.07.12.201.269.397l3.96 5.206h2.46l-4.81-5.92l4.47-5.46H46.54l-3.817 4.96a2.605 2.605 0 0 0-.27.39h-.031v-5.35zm13.712 3.064c-1.148 0-2.026.513-2.635 1.539h-.031v-1.349h-1.85v8.127h1.85v-4.635c0-.64.183-1.17.548-1.587a1.754 1.754 0 0 1 1.388-.635c1.074 0 1.611.76 1.611 2.278v4.579h1.841v-4.968c0-1.085-.233-1.913-.698-2.484c-.466-.577-1.14-.865-2.024-.865m7.993 0c-1.088.012-2.002.402-2.742 1.172c-.746.776-1.118 1.783-1.118 3.02c0 1.31.338 2.327 1.015 3.051c.683.72 1.622 1.08 2.818 1.08c1.217 0 2.034-.228 2.775-.684v-1.451c-.725.507-1.36.76-2.228.76c-.772 0-1.38-.199-1.825-.597c-.439-.399-.669-.966-.69-1.7h5.54v-.692c0-1.242-.305-2.212-.914-2.91c-.608-.7-1.468-1.049-2.579-1.049zm23.172 0c-.423 0-.833.052-1.23.158c-.397.1-.751.255-1.063.461c-.312.201-.56.452-.746.754c-.185.296-.278.64-.278 1.031c0 .318.045.596.135.834c.09.238.222.452.396.642c.18.185.403.352.668.5c.27.148.57.288.904.42c.27.101.514.191.73.27c.223.08.413.17.571.27c.164.101.294.218.39.35a.757.757 0 0 1 .142.468c0 .656-.555.984-1.666.984c-.83 0-1.59-.262-2.278-.786v1.706c.651.297 1.42.445 2.31.445c.46 0 .896-.05 1.309-.15a3.495 3.495 0 0 0 1.103-.445a2.38 2.38 0 0 0 .762-.762c.19-.306.285-.667.285-1.08c0-.338-.052-.629-.158-.872a1.922 1.922 0 0 0-.452-.65a3.08 3.08 0 0 0-.715-.509a9.832 9.832 0 0 0-.936-.436a45.8 45.8 0 0 1-.707-.246a3.46 3.46 0 0 1-.523-.254a1.06 1.06 0 0 1-.326-.326a.838.838 0 0 1-.111-.444c0-.143.037-.272.111-.389a.96.96 0 0 1 .31-.31c.132-.084.29-.15.476-.198a2.62 2.62 0 0 1 .635-.071c.74 0 1.396.196 1.968.587v-1.61c-.593-.228-1.265-.342-2.016-.342m-19.363.19l2.62 4.143l-2.763 3.984h2.127l1.452-2.516c.201-.344.313-.54.334-.587h.031c.122.238.228.433.318.587l1.428 2.516h2.135l-2.674-4.016l2.706-4.111h-2.016l-1.818 3.246h-.023c-.1-.206-.204-.408-.31-.603l-1.404-2.643zm12.628 0v7.73c0 1.83-.518 2.746-1.555 2.746c-.307 0-.632-.12-.976-.357v1.579c.365.17.74.254 1.127.254c1.042 0 1.843-.363 2.404-1.088c.561-.72.841-1.745.841-3.079v-7.785zm-16.409 1.137c.54 0 .963.182 1.27.544c.307.357.463.859.468 1.506h-3.761c.085-.61.31-1.105.674-1.483c.37-.378.82-.567 1.35-.567m13.517 4.469c-.365 0-.675.122-.931.365a1.167 1.167 0 0 0-.384.876c0 .335.128.624.384.868c.256.237.566.356.931.356c.372 0 .685-.119.94-.356a1.16 1.16 0 0 0 .001-1.744a1.312 1.312 0 0 0-.94-.365\\\"/>\"\n\t\t},\n\t\t\"kotlin\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconKotlin0\\\" x1=\\\"500.003\\\" x2=\\\"-.097\\\" y1=\\\"579.106\\\" y2=\\\"1079.206\\\" gradientTransform=\\\"translate(15.534 -96.774)scale(.1939)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".003\\\" stop-color=\\\"#e44857\\\"/><stop offset=\\\".469\\\" stop-color=\\\"#c711e1\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7f52ff\\\"/></linearGradient></defs><path fill=\\\"url(#deviconKotlin0)\\\" d=\\\"M112.484 112.484H15.516V15.516h96.968L64 64Zm0 0\\\"/>\"\n\t\t},\n\t\t\"kotlin-wordmark\": {\n\t\t\t\"body\": \"<defs><radialGradient id=\\\"deviconKotlinWordmark0\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" fx=\\\"0\\\" fy=\\\"0\\\" gradientTransform=\\\"translate(31.27 41.62)scale(26.70313)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".003\\\" stop-color=\\\"#e44857\\\"/><stop offset=\\\".469\\\" stop-color=\\\"#c711e1\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7f52ff\\\"/></radialGradient></defs><path fill=\\\"url(#deviconKotlinWordmark0)\\\" d=\\\"M32 64H8.727V40.727H32L20.18 52.18Zm0 0\\\"/><path d=\\\"M58.793 40.727h-4.45L44.247 51.402V40.727h-3.52v23.246h3.52V52.734L54.41 63.973h4.598L48.184 51.938Zm13.156 7.015a9.38 9.38 0 0 0-9.015 0a8.425 8.425 0 0 0-3.18 3.18a9.035 9.035 0 0 0-1.164 4.566a9.039 9.039 0 0 0 1.156 4.559a8.316 8.316 0 0 0 3.172 3.187a9.364 9.364 0 0 0 9.008 0a8.41 8.41 0 0 0 3.187-3.187a9.033 9.033 0 0 0 1.16-4.559a9.024 9.024 0 0 0-1.152-4.566a8.377 8.377 0 0 0-3.172-3.18m.024 10.762a5.154 5.154 0 0 1-1.868 2.059a5.19 5.19 0 0 1-5.335 0a5.157 5.157 0 0 1-1.88-2.06a6.508 6.508 0 0 1-.68-3.015a6.524 6.524 0 0 1 .68-3.02a4.984 4.984 0 0 1 4.551-2.792a4.937 4.937 0 0 1 2.664.742c.801.5 1.446 1.21 1.868 2.059c.468.933.703 1.968.683 3.011a6.463 6.463 0 0 1-.683 3.016m11.605-15.785h-3.273v2.922c.03.363-.082.726-.313 1.007a1.407 1.407 0 0 1-1.031.325h-1.91l-.016 2.988h3.055l.015 9.945c0 1.262.383 2.254 1.149 2.98c.762.727 1.816 1.087 3.152 1.087h3.156v-2.989h-2.574c-.379.02-.75-.113-1.027-.37a1.392 1.392 0 0 1-.383-1.04l-.016-9.613h4l.016-2.988h-4Zm6.777 21.254h3.473V40.727h-3.473Zm7.461-19.707h3.637v-3.54h-3.637Zm.086 19.707h3.485v-17h-3.485Zm21.676-14.23a5.565 5.565 0 0 0-2.176-2.34a7.09 7.09 0 0 0-6.445-.11a5.44 5.44 0 0 0-2.125 2.102v-2.422h-3.387v17h3.489V54.41a5.815 5.815 0 0 1 .523-2.566a3.902 3.902 0 0 1 1.484-1.676a4.212 4.212 0 0 1 2.258-.59c1.153 0 2.047.356 2.692 1.063c.64.707.96 1.699.964 2.972v10.36h3.485V53.246a7.666 7.666 0 0 0-.762-3.504ZM45.387 75.597a2.887 2.887 0 0 0-1.52-.414a2.701 2.701 0 0 0-1.265.304c-.38.2-.704.492-.942.856l.035-3.258h-.953v2.242h-.004v6.106h.918v-1.02c.235.363.559.656.942.86c.39.206.828.308 1.27.304a2.903 2.903 0 0 0 2.6-1.55a3.649 3.649 0 0 0 0-3.294a2.938 2.938 0 0 0-1.081-1.136m.199 4.011c-.168.344-.43.633-.75.836a2.024 2.024 0 0 1-2.117 0a2.049 2.049 0 0 1-.754-.836a2.878 2.878 0 0 1 0-2.457c.168-.34.43-.629.754-.832a2.024 2.024 0 0 1 2.117 0c.32.203.582.493.75.832a2.88 2.88 0 0 1 0 2.457m4.445.043l-1.847-4.324h-1.008l2.347 5.453l-1.12 2.563h.984l3.445-8.016h-1.008Zm8.598-.066a.894.894 0 0 1-.578.902a.874.874 0 0 1-.375.051h-1.778v.895h1.895c.336.007.664-.067.96-.215a1.52 1.52 0 0 0 .642-.606c.156-.281.234-.597.226-.918v-6.61h-.992Zm7-3.992a2.776 2.776 0 0 0-1.488-.41a2.936 2.936 0 0 0-1.536.418a2.986 2.986 0 0 0-1.078 1.148a3.56 3.56 0 0 0 0 3.262c.25.472.621.87 1.078 1.148c.461.281.993.426 1.536.418c.425.004.851-.074 1.246-.23c.37-.141.703-.36.984-.641c.25-.246.422-.562.492-.906h-.953c-.07.191-.191.355-.351.484a1.96 1.96 0 0 1-.614.336a2.213 2.213 0 0 1-.746.121a1.97 1.97 0 0 1-1.766-1.012c-.19-.347-.3-.73-.32-1.12h4.91v-.227a3.551 3.551 0 0 0-.367-1.653a2.8 2.8 0 0 0-1.027-1.136m-3.488 2.238c.058-.508.293-.977.66-1.332a1.9 1.9 0 0 1 1.34-.484c.472-.024.937.148 1.285.476c.347.363.562.836.61 1.34Zm7.382-4.031h-.886v1.05a.495.495 0 0 1-.114.364a.49.49 0 0 1-.363.113h-.687l-.008.848h1.097l.008 3.937c-.02.364.118.715.38.969c.292.25.667.375 1.05.352h.957v-.844h-.894a.498.498 0 0 1-.54-.54l-.003-3.874h1.437l.004-.848h-1.438Zm7.309 3.3a1.842 1.842 0 0 0 1.371-1.84a1.941 1.941 0 0 0-.328-1.12a2.201 2.201 0 0 0-.906-.774a3.014 3.014 0 0 0-1.317-.281h-3.316v8.348h3.387a3.16 3.16 0 0 0 1.39-.297c.39-.18.723-.465.961-.825c.23-.351.352-.769.344-1.19a1.998 1.998 0 0 0-.43-1.29a2.076 2.076 0 0 0-1.156-.73Zm-3.543-3.132h2.363c.27-.004.54.054.785.172c.22.109.403.277.532.488c.125.223.191.473.187.73a1.45 1.45 0 0 1-.187.73a1.29 1.29 0 0 1-.531.493a1.662 1.662 0 0 1-.786.176H73.29Zm3.875 5.879c-.14.226-.34.406-.582.52a1.862 1.862 0 0 1-.86.183H73.29v-2.934h2.434c.297-.004.593.059.859.188c.238.113.441.289.582.515c.14.227.211.493.207.758c.004.274-.066.54-.207.77Zm4.55-4.274a2.127 2.127 0 0 0-.741.887v-1.133h-.953v6.106h.953v-3.29a2.25 2.25 0 0 1 .222-1.035c.137-.277.356-.507.625-.66c.297-.156.625-.234.961-.226H83v-.953h-.184a1.965 1.965 0 0 0-1.101.304Zm5.778-.133a2.716 2.716 0 0 0-1.191-.257a2.84 2.84 0 0 0-1.2.254c-.343.152-.648.39-.878.69c-.223.294-.36.645-.391 1.013h.93a1.21 1.21 0 0 1 .238-.602c.14-.18.324-.32.531-.41a1.86 1.86 0 0 1 .742-.145a1.7 1.7 0 0 1 .723.149c.2.094.367.238.488.426c.118.191.176.41.172.636a.714.714 0 0 1-.117.434a.435.435 0 0 1-.312.176l-1.786.175c-.34.032-.671.137-.968.31a1.86 1.86 0 0 0-.672.655c-.16.266-.246.57-.242.88c-.004.323.09.64.27.905c.183.274.44.489.745.625c.336.153.707.23 1.078.223c.407.008.813-.086 1.176-.266c.34-.167.629-.425.84-.742v.864h.93v-4.235a1.867 1.867 0 0 0-.293-1.043a1.97 1.97 0 0 0-.813-.715m.164 3.66c.004.313-.078.622-.234.891a1.649 1.649 0 0 1-.64.617a1.84 1.84 0 0 1-.923.223a1.727 1.727 0 0 1-.699-.133a1.125 1.125 0 0 1-.476-.375a.942.942 0 0 1-.172-.554c0-.18.047-.36.136-.516a1.184 1.184 0 0 1 .926-.578l2.082-.215Zm2.524-4.882h1.027v-1.133H90.18Zm.035 7.215h.957v-6.106h-.957Zm6.73-5.954a2.611 2.611 0 0 0-2.375-.02a2.011 2.011 0 0 0-.78.806v-.938h-.919v6.106h.953v-3.465a2.42 2.42 0 0 1 .215-1.047c.133-.281.344-.52.61-.684c.28-.164.597-.25.925-.242c.41-.023.809.133 1.094.43c.277.336.418.765.39 1.199v3.809h.954v-3.852a2.757 2.757 0 0 0-.278-1.262a1.996 1.996 0 0 0-.789-.84m6.555 3.051a2.337 2.337 0 0 0-1.29-.61l-1.05-.183a1.197 1.197 0 0 1-.633-.3a.749.749 0 0 1-.23-.56a.73.73 0 0 1 .164-.476c.121-.148.281-.257.46-.324a1.962 1.962 0 0 1 1.337.012c.183.074.344.195.465.355a.883.883 0 0 1 .172.516h.953c0-.328-.102-.652-.29-.926a1.855 1.855 0 0 0-.792-.625a3.017 3.017 0 0 0-1.2-.226a2.955 2.955 0 0 0-1.16.214c-.304.122-.57.332-.758.602c-.18.266-.273.582-.265.902a1.53 1.53 0 0 0 .453 1.13c.348.323.789.527 1.258.59l1.015.171c.254.035.493.148.68.324c.16.164.25.383.242.613a.927.927 0 0 1-.172.56c-.125.17-.296.3-.492.374a1.902 1.902 0 0 1-.738.133a1.966 1.966 0 0 1-.762-.14a1.292 1.292 0 0 1-.531-.395a.985.985 0 0 1-.207-.578h-.957c0 .351.11.699.316.988c.219.297.52.531.864.668c.414.168.859.25 1.308.238c.418.012.832-.07 1.215-.23c.32-.141.598-.368.797-.657c.187-.293.285-.636.277-.984a1.6 1.6 0 0 0-.449-1.176m0 0\\\"/>\"\n\t\t},\n\t\t\"krakenjs\": {\n\t\t\t\"body\": \"<path fill=\\\"#0081C2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M120.935 30.631c-5.13-2.544-10.016-5.131-15.203-7.569C95.627 18.314 85.941 12.926 75.78 8.281c-3.298-1.507-6.433-3.25-9.654-4.923c-1.077-.559-2.027-.562-3.119-.004c-4.195 2.143-8.442 4.156-12.683 6.203c-10.055 4.854-20.583 10.082-30.685 14.853C15.247 26.484 11 28.698 6 30.806v66.486c1 .043 1.035.043 1.163.106c3.188 1.571 6.721 3.109 9.88 4.735c3.224 1.66 6.681 3.169 9.951 4.729c10.146 4.837 20.235 9.969 30.301 14.975c1.946.968 3.993 1.821 5.905 2.852c.97.522 1.729.475 2.715.005c3.007-1.433 6.036-2.857 9.025-4.316c11.598-5.663 22.644-11.561 34.309-17.091C113.311 101.36 117 99.27 121 97.193V30.737c0-.044.062-.043-.065-.106m-14.556 61.447c-2.415 2.523-5.244 4.431-8.351 5.96c-.777.382-1.575.835-2.409.966c-1.281.2-1.728 1.212-2.324 2.052c-1.021 1.439-3.477 2.896-5.181 2.918c-.47.007-.942-.031-1.409.007c-1.844.148-3.52-.307-5.173-1.138c-2.266-1.139-4.725-1.328-7.25-1.26c-1.328.037-2.489.343-3.603.983c-1.479.852-2.275 2.798-1.956 4.401c.078.393-.303.876-.558 1.537c-.549-.463-1.148-.722-1.173-1.027c-.167-2.042-.289-4.164 1.154-5.836c1.977-2.292 4.548-3.552 7.587-3.77c.779-.055 1.567.012 2.35-.012c1.895-.06 3.687.293 5.531.804c1.528.423 3.33.512 4.87-.474c.541-2.03-.532-3.5-2.014-4.454c-1.564-1.007-3.137-2.071-5.066-2.515c-1.378-.316-2.593-1.287-3.945-1.793c-1.355-.508-2.711-1.057-4.065-1.55c-1.293-.471-2.765-.452-3.921-1.297c-2.147.101-4.23-.858-6.383-.458c-2.808.522-5.643.981-8.308 2.063c-2.011.816-4.047 1.573-5.976 2.6c-1.142.608-2.446.903-3.623 1.456c-.922.433-1.822.969-2.623 1.597c-1.378 1.083-2.299 2.431-1.866 4.343c1.7.79 3.411.895 5.229.284c1.968-.662 4.046-.522 6.094-.646c2.596-.157 4.868.655 6.958 1.958c1.985 1.238 3.349 3.015 3.274 5.555c-.016.548.081 1.114-.027 1.64c-.096.464-.406.884-.732 1.546c-.651-.678-1.703-.839-.744-1.868c-.614-1.13-.255-2.689-1.487-3.532c-1.09-.746-2.156-1.579-3.609-1.503c-.859.045-1.729.075-2.583-.005c-2.019-.188-3.834.494-5.544 1.377c-2.362 1.221-4.862.952-7.349.987c-1.402-.79-3.078-1.154-4.13-2.487c-.533-.675-.765-1.884-1.398-2.112c-.827-.298-1.584-.867-2.401-.997c-2.066-.328-3.515-1.778-5.228-2.705c-1.441-.78-2.595-2.116-3.821-3.265c-1.343-1.257-2.037-2.836-2.347-4.669c-.46-2.718.598-5.242 2.057-6.78c1.92-2.023 4.312-3.068 6.892-4.019c-.631-1.25-1.117-2.652-1.969-3.777c-.816-1.077-.897-2.344-1.227-3.492c-.374-1.303-.341-2.858-.014-4.188c.321-1.299 1.122-2.535 1.925-3.645c.725-1.002 1.708-1.832 2.642-2.663c.299-.266.807-.296 1.188-.424c.514.717.354 1.207-.152 1.722c-.526.538-.964 1.162-1.445 1.745c-1.361 1.65-.932 3.62-.911 5.485c.013 1.199.727 2.199 1.414 3.163c1.318 1.849 2.665 3.59 4.911 4.507c1.203.491 2.335.91 3.638.869c1.163-.037 2.328-.008 4.064-.008c-1.019-.455-1.533-.678-2.042-.915c-3.571-1.661-5.43-4.484-5.433-8.242c-.001-1.332.133-2.681-.04-3.99c-.15-1.133.506-2.035.538-3.1c.029-.957-.439-2.027.443-2.861c-.24-1.82.447-3.688-.362-5.49c-.427-.95-.072-2.009-.497-3.082c-.819-2.067-1.407-4.078-4.083-4.33c-.287-.026-.531-.497-.783-.749c.466-1.011.943-1.214 2.004-.879c2.711.856 4.333 2.687 5.637 5.101c1.4 2.593 1.871 5.356 2.386 8.198c.518 2.854.228 5.681.421 8.511c.065.943.321 1.89.609 2.797c.28.88.941 1.404 1.845 1.492c1.313.132 1.495.04 3.495-1.166v-2.386c-2-.487-1.061-1.707-2.456-1.662c-.529.017-.76-.769-.74-1.478c.057-2.035.176-4.085-.003-6.106c-.193-2.182.312-4.297.637-6.37c.286-1.832.5-3.76 1.246-5.564c.691-1.672.825-3.573 1.495-5.257c1.234-3.1 2.622-6.13 4.35-9.018c.987-1.648 2.309-3.063 3.141-4.799c.063-.131.144-.26.24-.37c1.215-1.378 2.367-2.822 3.671-4.109c1.572-1.551 3.276-2.968 4.989-4.502c1.791 1.591 3.657 2.969 5.181 4.655c4.136 4.579 7.77 9.559 10.108 15.302c1.089 2.674 2.125 5.4 2.675 8.308c.496 2.624 1.011 5.232 1.446 7.871c.564 3.414.109 6.786.38 10.161c.054.669-.91 1.307-1.266 1.279C81.692 63.375 81 64.641 80 65.142v2.41c1 .902 2.376 1.225 3.597 1.186c1.472-.047 2.481-.839 2.883-2.362c.439-1.669.663-3.33.519-4.985c-.21-2.408.322-4.758.649-7.082c.382-2.715 1.341-5.365 2.775-7.772c.956-1.605 3.821-3.801 5.498-4.133c.737-.146 1.366.107 1.637 1.126c-.28.217-.594.673-.953.708c-2.369.231-3.072 2.076-3.775 3.86c-.381.965-.292 2.121-.58 3.06c-.493 1.611-.348 3.182-.354 4.767c-.003.953.271 1.909.446 2.859c.161.875-.386 1.841.423 2.66c.197.2.041.751.042 1.141c.001 1.488-.03 2.978.006 4.464c.093 3.729-2.494 7.871-7.01 9.002c2.807.238 5.538.464 8.185-1.158c2.578-1.581 3.956-4.006 5.401-6.45c.035-2.811.42-5.729-2.193-7.779c-.566-.445-.729-.954-.544-1.868c.486.069.999-.016 1.194.194c1.438 1.549 3.339 2.722 4.023 4.902c.194.617.788 1.197.762 1.776c-.065 1.519.25 3.021-.213 4.584c-.354 1.196-.729 2.371-1.26 3.481c-.503 1.051-1.172 2.022-1.805 3.089c.886.432 1.733.994 2.665 1.269c1.986.587 3.348 1.963 4.718 3.373c1.363 1.403 1.531 3.285 2.055 5.025c-.729 1.893-.892 4-2.412 5.589m-73.145-7.859c-.777.069-1.568-.034-2.347.021c-1.263.089-2.437.545-3.471 1.238c-1.043.699-1.12 1.347-.627 2.555c.489 1.2 1.219 2.195 2.146 3.114c1.653 1.639 3.375 3.165 5.405 4.302c.723-4.017 2.971-6.929 6.395-9.069c-.598-.294-1.068-.494-1.507-.746c-1.86-1.064-3.831-1.608-5.994-1.415m68.727 1.407c-.576-.511-2.785-1.376-3.649-1.392c-1.095-.02-2.198.07-3.286-.022c-1.637-.138-3.05.503-4.479 1.114c-.666.284-1.293.656-2.076 1.059c3.417 2.136 5.666 5.048 6.402 9.147c.9-.645 1.835-1.205 2.638-1.915a70.97 70.97 0 0 0 4.204-4.005c.428-.444.606-1.145.847-1.75c.343-.859.126-1.59-.601-2.236M57.462 63.075c-1.064.029-1.378.476-1.325 1.886c.04 1.074.5 1.485 1.573 1.405c.872-.065 1.811-1.032 1.717-1.769c-.095-.764-1.107-1.547-1.965-1.522m14.317 0c-1.007-.047-2.06.85-2.009 1.711c.046.777 1.019 1.583 1.907 1.58c1.033-.004 1.373-.396 1.384-1.594c.012-1.251-.29-1.651-1.282-1.697\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"krakenjs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0081C2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M109.629 24.573c-4.109-2.039-8.184-4.111-12.34-6.064c-8.096-3.804-15.935-8.12-24.076-11.843c-2.642-1.208-5.193-2.604-7.773-3.943c-.863-.448-1.644-.451-2.519-.004c-3.361 1.717-6.773 3.33-10.171 4.97c-8.057 3.889-16.109 8.078-24.204 11.9C25.027 21.25 22 23.025 18 24.713V77.98c1 .035.443.035.546.085c2.554 1.258 5.191 2.491 7.723 3.793c2.583 1.329 5.255 2.539 7.875 3.788c8.129 3.875 16.164 7.987 24.229 11.998c1.559.776 3.175 1.459 4.706 2.285c.777.419 1.374.381 2.163.004c2.409-1.148 4.83-2.289 7.225-3.458c9.292-4.537 18.458-9.263 27.804-13.693C103.525 81.239 106 79.564 110 77.9V24.657zM97.648 73.802c-1.935 2.021-4.201 3.551-6.69 4.776c-.623.306-1.262.669-1.93.774c-1.027.16-1.384.971-1.862 1.644c-.818 1.153-2.786 2.32-4.15 2.338c-.376.005-.755-.025-1.129.005c-1.477.119-2.819-.246-4.145-.912c-1.816-.912-3.786-1.064-5.808-1.009c-1.064.03-1.995.275-2.887.788c-1.186.682-1.823 2.242-1.567 3.526c.063.314-.243.702-.446 1.231c-.44-.371-.92-.579-.939-.823c-.134-1.636-.232-3.336.924-4.676c1.583-1.835 3.644-2.845 6.079-3.02c.625-.044 1.256.01 1.883-.01c1.518-.048 2.953.235 4.431.645c1.225.339 2.668.41 3.902-.38c.433-1.626-.426-2.804-1.614-3.568c-1.253-.807-2.513-1.659-4.059-2.015c-1.104-.253-2.077-1.031-3.16-1.438c-1.086-.406-2.172-.847-3.257-1.241c-1.036-.377-2.215-.361-3.142-1.039c-1.721.081-3.39-.688-5.114-.367c-2.25.419-4.521.787-6.656 1.653c-1.611.654-3.242 1.26-4.788 2.083c-.915.487-1.96.723-2.903 1.166c-.739.347-1.459.776-2.101 1.28c-1.104.867-1.842 1.948-1.495 3.479c1.361.634 2.732.717 4.189.228c1.576-.53 3.241-.418 4.882-.518c2.08-.125 3.9.525 5.574 1.569c1.591.992 2.684 2.416 2.624 4.451c-.013.439.065.893-.022 1.313c-.077.372-.326.708-.586 1.239c-.522-.543-1.365-.672-.596-1.496c-.492-.905-.204-2.154-1.191-2.83c-.874-.597-1.727-1.265-2.892-1.204c-.688.036-1.385.061-2.069-.004c-1.617-.15-3.072.396-4.442 1.103c-1.892.978-3.895.763-5.887.791c-1.124-.633-2.466-.924-3.309-1.992c-.427-.541-.612-1.509-1.12-1.692c-.663-.239-1.269-.694-1.924-.798c-1.656-.263-2.816-1.425-4.188-2.167c-1.155-.625-2.079-1.695-3.062-2.615c-1.076-1.008-1.632-2.272-1.88-3.741c-.369-2.178.479-4.201 1.648-5.433c1.539-1.621 3.455-2.458 5.521-3.22c-.505-1.002-.895-2.125-1.577-3.026c-.654-.863-.719-1.878-.983-2.797c-.299-1.044-.274-2.29-.011-3.355c.257-1.042.899-2.031 1.542-2.92c.581-.803 1.368-1.467 2.117-2.133c.239-.213.646-.237.952-.34c.412.574.284.966-.122 1.379c-.422.431-.772.932-1.158 1.398c-1.09 1.322-.746 2.9-.73 4.395c.011.961.583 1.762 1.134 2.535c1.056 1.481 2.135 2.875 3.934 3.611c.964.394 1.872.729 2.915.696c.932-.03 1.865-.006 3.256-.006c-.816-.365-1.228-.543-1.635-.733c-2.861-1.331-4.351-3.593-4.353-6.604c-.001-1.067.106-2.148-.032-3.196c-.12-.908.405-1.631.431-2.483c.022-.767-.353-1.624.354-2.293c-.192-1.458.358-2.954-.291-4.398c-.342-.761-.057-1.609-.398-2.469c-.656-1.656-1.127-3.268-3.271-3.469c-.229-.021-.425-.398-.627-.6c.374-.811.756-.973 1.606-.704c2.172.686 3.472 2.152 4.517 4.087c1.122 2.078 1.499 4.291 1.911 6.567c.415 2.287.182 4.552.338 6.819c.052.756.257 1.514.488 2.24c.224.706.815 1.125 1.54 1.195c1.049.103 1.858.03 2.858-.937v-1.912c-1-.39-.911-1.368-2.029-1.331c-.424.014-.639-.615-.624-1.185c.045-1.63.125-3.272-.018-4.892c-.155-1.748.243-3.442.502-5.103c.229-1.468.396-3.013.995-4.458c.554-1.34.659-2.863 1.196-4.212c.988-2.484 2.099-4.912 3.484-7.225c.791-1.321 1.849-2.454 2.516-3.845c.051-.105.115-.208.192-.296c.974-1.104 1.896-2.261 2.941-3.293c1.26-1.242 2.625-2.377 3.997-3.606c1.435 1.274 2.93 2.378 4.15 3.729c3.314 3.668 6.225 7.658 8.099 12.26c.873 2.143 1.702 4.326 2.143 6.656c.397 2.103.81 4.192 1.159 6.306c.451 2.735.087 5.437.305 8.141c.043.536-.486 1.047-.771 1.024c-1.124-.086-1.237.928-2.237 1.329v1.932c1 .723 1.661.981 2.639.95c1.179-.038 1.867-.672 2.188-1.892a11.61 11.61 0 0 0 .355-3.995c-.168-1.929.227-3.812.49-5.674a16.806 16.806 0 0 1 2.208-6.228c.767-1.286 3.054-3.045 4.397-3.312c.591-.117 1.09.087 1.308.903c-.225.174-.478.539-.765.567c-1.898.186-2.462 1.664-3.025 3.093c-.306.773-.235 1.699-.465 2.451c-.396 1.292-.279 2.55-.284 3.819c-.002.764.216 1.529.356 2.291c.129.701-.309 1.475.339 2.131c.158.16.033.602.033.914c.001 1.192-.024 2.386.006 3.577c.074 2.987-1.998 6.306-5.616 7.212c2.249.191 4.437.372 6.557-.928c2.065-1.267 3.169-3.209 4.327-5.167c.028-2.252.336-4.59-1.757-6.232c-.454-.356-.583-.764-.436-1.496c.389.055.8-.013.956.155c1.152 1.241 2.675 2.181 3.224 3.927c.155.495.631.96.611 1.423c-.052 1.217.2 2.42-.171 3.673c-.283.958-.583 1.899-1.009 2.789c-.403.842-.939 1.62-1.446 2.475c.71.346 1.389.796 2.135 1.017c1.591.47 2.682 1.573 3.779 2.702c1.092 1.125 1.227 2.632 1.647 4.026c-.584 1.517-.714 3.205-1.933 4.477m-58.602-6.295c-.622.055-1.256-.028-1.88.017c-1.012.072-1.952.437-2.781.993c-.835.56-.897 1.079-.502 2.047c.392.962.977 1.759 1.719 2.495c1.324 1.313 2.704 2.535 4.33 3.447c.579-3.218 2.38-5.551 5.124-7.266c-.479-.235-.855-.396-1.207-.597c-1.49-.855-3.069-1.291-4.803-1.136m55.063 1.127c-.461-.41-2.231-1.103-2.923-1.115c-.877-.016-1.761.056-2.633-.018c-1.312-.111-2.443.403-3.588.892c-.533.228-1.036.526-1.664.849c2.738 1.711 4.539 4.044 5.129 7.328c.721-.517 1.47-.966 2.114-1.534a57.01 57.01 0 0 0 3.368-3.209c.343-.355.486-.917.679-1.401c.274-.689.1-1.275-.482-1.792M58.458 50.566c-.853.024-1.104.381-1.062 1.511c.032.861.4 1.19 1.26 1.126c.699-.052 1.451-.827 1.376-1.417c-.076-.612-.887-1.239-1.574-1.22m11.471 0c-.807-.038-1.65.681-1.609 1.371c.037.623.816 1.269 1.528 1.266c.827-.004 1.1-.317 1.108-1.277c.009-1.003-.233-1.323-1.027-1.36\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M26.053 114.115h.048c.292-.413.681-.947 1.021-1.337l3.476-4.06h2.553l-4.546 4.838l5.178 6.929h-2.601l-4.036-5.665l-1.094 1.24v4.425h-2.139v-17.261h2.139v10.891zm9.7-1.726c0-1.386-.024-2.577-.097-3.671h1.872l.097 2.31h.073c.535-1.58 1.848-2.577 3.282-2.577c.219 0 .389.024.583.073v1.993c-.243-.024-.462-.048-.753-.048c-1.507 0-2.577 1.143-2.869 2.723a6.68 6.68 0 0 0-.073 1.021v6.272h-2.139zm16.07 5.276c0 1.021.049 2.018.17 2.82h-1.92l-.195-1.483h-.072c-.632.924-1.921 1.75-3.599 1.75c-2.382 0-3.598-1.677-3.598-3.379c0-2.844 2.528-4.4 7.074-4.376v-.242c0-.973-.267-2.748-2.674-2.724c-1.118 0-2.261.316-3.087.875l-.486-1.434c.972-.608 2.407-1.021 3.89-1.021c3.623 0 4.498 2.455 4.498 4.814zm-2.091-3.185c-2.334-.049-4.984.364-4.984 2.649c0 1.41.924 2.043 1.994 2.043c1.556 0 2.553-.973 2.893-1.97c.073-.219.097-.462.097-.681zm7.659-.365h.049c.292-.413.681-.947 1.021-1.337l3.477-4.06h2.552l-4.546 4.838l5.178 6.929h-2.601l-4.036-5.665l-1.094 1.24v4.425h-2.139v-17.261h2.139zm10.648.851c.049 2.893 1.872 4.084 4.011 4.084c1.531 0 2.479-.268 3.257-.583l.389 1.507c-.753.34-2.066.754-3.938.754c-3.598 0-5.786-2.407-5.786-5.932c0-3.574 2.115-6.37 5.543-6.37c3.841 0 4.838 3.38 4.838 5.543c0 .438-.024.778-.073 1.021zm6.248-1.531c.024-1.337-.56-3.477-2.942-3.477c-2.188 0-3.112 1.994-3.282 3.477zm4.716-1.532c0-1.239-.024-2.212-.097-3.185h1.896l.121 1.921h.049c.583-1.094 1.945-2.188 3.89-2.188c1.629 0 4.157.973 4.157 5.008v7.026H86.88v-6.783c0-1.896-.706-3.5-2.723-3.5c-1.386 0-2.479.997-2.869 2.188c-.097.268-.146.656-.146.997v7.099h-2.139z\\\"/><path fill=\\\"#0081C2\\\" d=\\\"M89.604 123.937c.997-.073 1.823-.341 2.334-.9c.583-.656.826-1.604.826-4.424v-9.895h2.14v10.721c0 2.286-.365 3.769-1.41 4.838c-.948.948-2.504 1.337-3.646 1.337zm4.181-17.383c-.802 0-1.337-.632-1.337-1.385s.559-1.361 1.386-1.361s1.361.608 1.361 1.361s-.51 1.385-1.386 1.385zm4.327 11.767c.656.389 1.774.827 2.844.827c1.532 0 2.261-.753 2.261-1.75c0-1.021-.607-1.58-2.164-2.163c-2.139-.778-3.136-1.921-3.136-3.331c0-1.896 1.556-3.452 4.06-3.452c1.191 0 2.237.316 2.869.729l-.51 1.531c-.462-.267-1.313-.681-2.407-.681c-1.264 0-1.945.729-1.945 1.604c0 .997.681 1.435 2.212 2.018c2.018.753 3.088 1.775 3.088 3.549c0 2.091-1.629 3.549-4.376 3.549c-1.289 0-2.48-.34-3.307-.826z\\\"/>\"\n\t\t},\n\t\t\"ktor\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconKtor0\\\" x1=\\\"24.941\\\" x2=\\\"52.306\\\" y1=\\\"24.941\\\" y2=\\\"52.306\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".296\\\" stop-color=\\\"#00afff\\\"/><stop offset=\\\".694\\\" stop-color=\\\"#5282ff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#945dff\\\"/></linearGradient><linearGradient id=\\\"deviconKtor1\\\" x1=\\\"53.151\\\" x2=\\\"79.023\\\" y1=\\\"53.151\\\" y2=\\\"79.023\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".108\\\" stop-color=\\\"#c757bc\\\"/><stop offset=\\\".173\\\" stop-color=\\\"#cd5ca9\\\"/><stop offset=\\\".492\\\" stop-color=\\\"#e8744f\\\"/><stop offset=\\\".716\\\" stop-color=\\\"#f88316\\\"/><stop offset=\\\".823\\\" stop-color=\\\"#ff8900\\\"/></linearGradient></defs><path fill=\\\"url(#deviconKtor0)\\\" d=\\\"M80.457 47.543L47.543 14.629L14.629 47.543l32.914 32.914Zm0 0\\\"/><path fill=\\\"url(#deviconKtor1)\\\" d=\\\"m47.543 80.457l32.914 32.914l32.914-32.914l-32.914-32.914Zm0 0\\\"/><path d=\\\"M80.457 47.543H47.543v32.914h32.914Zm0 0\\\"/>\"\n\t\t},\n\t\t\"ktor-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconKtorWordmark0\\\" x1=\\\"34.379\\\" x2=\\\"64.784\\\" y1=\\\"21.379\\\" y2=\\\"51.784\\\" gradientTransform=\\\"translate(0 40)scale(.45714)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#07c3f2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#6b57ff\\\"/></linearGradient><linearGradient id=\\\"deviconKtorWordmark1\\\" x1=\\\"65.723\\\" x2=\\\"94.471\\\" y1=\\\"52.723\\\" y2=\\\"81.471\\\" gradientTransform=\\\"translate(0 40)scale(.45714)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#b74af7\\\"/><stop offset=\\\".492\\\" stop-color=\\\"#fc801d\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fc801d\\\"/></linearGradient></defs><path fill=\\\"url(#deviconKtorWordmark0)\\\" d=\\\"M36.57 56.914L22.855 43.2l-7.238 7.242l-6.472 6.473l13.71 13.715Zm0 0\\\"/><path fill=\\\"url(#deviconKtorWordmark1)\\\" d=\\\"m22.855 70.629l6.832 6.828l6.883 6.887l13.715-13.715L36.57 56.914Zm0 0\\\"/><path d=\\\"M36.57 56.914H22.855V70.63H36.57Zm39.188-2.266H70.82l-7.367 7.997v-7.997H59.43v18.286h4.023v-5.59l2.117-2.192l5.668 7.782h4.832l-7.785-10.528Zm5.773.625H77.56v3.579h-1.672v3.394h1.672v6.637c0 3.238 1.644 4.207 4.074 4.207a5.859 5.859 0 0 0 3.137-.813v-3.183a4.04 4.04 0 0 1-1.961.496c-.887 0-1.278-.445-1.278-1.36v-5.984h3.29v-3.394h-3.29Zm12.223 3.239c-4.363 0-7.602 3.265-7.602 7.289v.05c0 4.024 3.215 7.239 7.551 7.239c4.363 0 7.602-3.266 7.602-7.29v-.05c0-4.023-3.215-7.238-7.551-7.238m3.633 7.34c0 2.066-1.36 3.816-3.633 3.816c-2.192 0-3.684-1.805-3.684-3.867v-.051c0-2.066 1.36-3.816 3.633-3.816c2.195 0 3.684 1.804 3.684 3.867Zm10.011-4.098v-2.82h-3.972v14h3.972v-5.172c0-3.344 1.618-4.938 4.258-4.938h.207v-4.152c-2.351-.106-3.656 1.148-4.465 3.082m0 0\\\"/>\"\n\t\t},\n\t\t\"kubernetes\": {\n\t\t\t\"body\": \"<path fill=\\\"#326ce5\\\" d=\\\"M63.556 1.912a8.51 8.44 0 0 0-3.26.826L15.795 24a8.51 8.44 0 0 0-4.604 5.725L.214 77.485a8.51 8.44 0 0 0 1.155 6.47a8.51 8.44 0 0 0 .484.672l30.8 38.296a8.51 8.44 0 0 0 6.653 3.176l49.394-.012a8.51 8.44 0 0 0 6.653-3.17l30.789-38.301a8.51 8.44 0 0 0 1.645-7.142l-10.996-47.76a8.51 8.44 0 0 0-4.604-5.726L67.682 2.738a8.51 8.44 0 0 0-4.126-.826\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.975 18.143v.01c-1.472.014-2.664 1.336-2.664 2.972c0 .028.005.052.005.074c-.002.222-.012.49-.005.684c.035.946.24 1.668.365 2.535c.17 1.42.215 2.547.224 3.687l.036-.164a40.909 40.909 0 0 0-.118-2.394c.139 1.228.24 2.364.186 3.392c-.015-.325-.061-.677-.066-.982l-.036.164c.003.347.096.79.069 1.123c-.061.29-.291.495-.467.742l-.025.121c.173-.227.354-.444.46-.699c-.134.423-.42.796-.707 1.094c.08-.124.146-.262.24-.385l.026-.12c-.145.203-.227.457-.385.61l-.006.006l-.064 1.12a34.702 34.702 0 0 0-4.797.736a34.279 34.279 0 0 0-17.398 9.935c-.296-.202-.8-.56-.95-.672l-.005-.005l-.01.002c-.478.064-.95.207-1.57-.153c-1.187-.8-2.271-1.907-3.584-3.24c-.601-.637-1.037-1.246-1.754-1.861c-.163-.141-.41-.33-.592-.473a3.193 3.193 0 0 0-1.87-.705c-.825-.028-1.62.294-2.14.947c-.925 1.16-.628 2.933.658 3.96l.04.026c.174.143.39.326.552.446c.762.561 1.457.849 2.21 1.293c1.594.984 2.91 1.798 3.956 2.779c.402.427.474 1.19.53 1.525v.008l.847.754c-4.561 6.874-6.675 15.36-5.432 24.006l-1.103.324l-.004.006c-.295.381-.712.972-1.135 1.147c-1.366.43-2.908.588-4.77.783c-.872.073-1.626.031-2.556.207c-.205.04-.49.112-.713.164l-.023.006l-.04.011c-1.58.383-2.6 1.837-2.27 3.272c.327 1.435 1.873 2.306 3.464 1.963l.039-.006h.002c.02-.005.038-.015.05-.018c.22-.048.496-.101.69-.154c.913-.245 1.574-.603 2.393-.916c1.76-.632 3.218-1.16 4.637-1.365c.582-.046 1.204.362 1.517.537l.008.004l1.152-.197c2.674 8.274 8.266 14.96 15.346 19.162l-.48 1.152l.003.01c.174.45.364 1.057.237 1.492c-.516 1.336-1.4 2.749-2.408 4.326c-.488.728-.99 1.295-1.43 2.131c-.107.201-.24.507-.342.717c-.69 1.475-.184 3.177 1.143 3.816c1.335.643 2.99-.036 3.707-1.513l.007-.008v-.01c.1-.207.242-.478.329-.674c.378-.866.505-1.607.77-2.441h-.003c.706-1.773 1.094-3.627 2.059-4.778c.26-.31.688-.432 1.136-.552l.01-.004l.6-1.084a34.436 34.436 0 0 0 24.556.062c.172.303.478.865.563 1.01l.004.006l.008.004c.458.149.948.223 1.35.816c.722 1.237 1.218 2.703 1.822 4.475c.265.832.397 1.575.775 2.441c.087.2.23.475.33.684c.715 1.482 2.375 2.163 3.713 1.52c1.326-.64 1.832-2.34 1.143-3.815c-.102-.21-.243-.518-.348-.719c-.441-.836-.943-1.397-1.43-2.125c-1.01-1.577-1.843-2.885-2.36-4.222c-.213-.685.036-1.104.206-1.555l.006-.014l-.01-.01a.834.834 0 0 1-.09-.168a6.23 6.23 0 0 1-.12-.29c-.08-.21-.16-.442-.224-.596c7.358-4.35 12.786-11.285 15.34-19.295c.347.054.93.155 1.12.193l.01.002l.009-.004c.402-.265.76-.606 1.475-.549c1.419.205 2.876.734 4.638 1.366c.817.312 1.479.677 2.393.921c.194.052.47.101.69.149c.012.003.029.012.05.017h.002l.04.004c1.59.341 3.137-.528 3.464-1.963c.327-1.435-.691-2.888-2.272-3.269c-.227-.052-.551-.141-.775-.184c-.93-.176-1.683-.132-2.557-.205c-1.86-.195-3.402-.353-4.77-.783c-.547-.213-.942-.872-1.138-1.148l-.006-.006l-1.066-.31a34.42 34.42 0 0 0-.56-12.425a34.497 34.497 0 0 0-4.983-11.525c.278-.252.785-.701.932-.836l.007-.006v-.01c.044-.48.006-.97.495-1.494c1.045-.98 2.364-1.797 3.957-2.779c.754-.444 1.454-.731 2.214-1.293c.174-.128.408-.328.588-.473c1.286-1.026 1.584-2.798.658-3.959c-.925-1.16-2.718-1.267-4.003-.242c-.182.145-.43.332-.594.473c-.717.618-1.16 1.226-1.76 1.863c-1.313 1.335-2.398 2.446-3.586 3.246c-.507.294-1.258.193-1.603.172h-.008l-1.004.719c-5.775-6.048-13.63-9.916-22.09-10.672a63.543 63.543 0 0 1-.064-1.174v-.008l-.006-.006c-.35-.333-.76-.61-.864-1.318v-.002c-.115-1.428.077-2.967.3-4.824c.125-.867.332-1.59.366-2.535c.009-.216-.005-.527-.005-.758c0-1.645-1.203-2.982-2.688-2.982zm-3.514 13.7a34.663 34.663 0 0 0-3.59.552a34.618 34.618 0 0 1 3.59-.551zm-4.781.823a34.262 34.262 0 0 0-3.711 1.133a34.208 34.208 0 0 1 3.71-1.133zm-4.825 1.564a34.262 34.262 0 0 0-3.496 1.666a34.216 34.216 0 0 1 3.496-1.666M28.8 35.377c.142.02.28.048.418.086a3.168 3.168 0 0 0-.418-.086m.943.283c.132.064.259.137.38.219a3.168 3.168 0 0 0-.38-.219m16.549.848a34.262 34.262 0 0 0-3.176 2.14a34.228 34.228 0 0 1 3.176-2.14m14.346 2.344l-.787 13.93l-.057.029l-.002.013c-.002.05-.014.095-.02.143a2.348 2.348 0 0 1-.263.857c-.038.07-.076.141-.121.207a2.348 2.348 0 0 1-.69.662c-.07.045-.147.08-.222.118a2.348 2.348 0 0 1-.873.226c-.045.003-.088.014-.133.014c-.05 0-.094-.022-.143-.026a2.334 2.334 0 0 1-.943-.304c-.045-.026-.094-.041-.137-.069l-.006.022l.004-.022c-.044-.027-.102-.016-.144-.047l-.012-.01l-.022.014l-11.421-8.097c.093-.091.192-.174.287-.264a27.438 27.438 0 0 1 3.23-2.635c.237-.165.473-.332.715-.49a27.438 27.438 0 0 1 3.816-2.078c.24-.107.487-.204.73-.305a27.438 27.438 0 0 1 4.044-1.312c.12-.03.238-.067.36-.094c.576-.13 1.162-.206 1.745-.299l.006-.025a28.076 28.076 0 0 1 .004 0l-.006.025c.355-.056.704-.14 1.06-.183zm6.726.002c.197.024.39.068.586.097a27.668 27.668 0 0 1 3.16.656c.412.111.82.23 1.225.36a27.668 27.668 0 0 1 3.033 1.168c.375.17.745.348 1.112.535a27.668 27.668 0 0 1 2.83 1.662c.344.23.68.47 1.015.717a27.668 27.668 0 0 1 2.496 2.074c.144.134.297.257.438.395l-11.346 8.044l-.04-.015l-.01.008c-.045.032-.094.045-.14.074a2.35 2.35 0 0 1-.882.334c-.077.012-.153.03-.23.033a2.35 2.35 0 0 1-.99-.176a2.34 2.34 0 0 1-.265-.127a2.35 2.35 0 0 1-.746-.65c-.05-.069-.088-.146-.13-.22a2.35 2.35 0 0 1-.288-.887c-.006-.055-.026-.103-.03-.159v-.011l-.011-.006zm-25.238.576a34.262 34.262 0 0 0-2.81 2.576a34.228 34.228 0 0 1 2.81-2.576m50.916 8.14a34.483 34.483 0 0 1 1.522 2.594a34.478 34.478 0 0 0-1.522-2.594m1.994 3.508c.488.993.927 2.01 1.317 3.045a34.478 34.478 0 0 0-1.317-3.045m-54.576.69l10.43 9.328l-.012.056l.01.008c.94.817 1.07 2.23.293 3.203c-.028.035-.068.057-.098.09a2.348 2.348 0 0 1-.986.65c-.043.015-.078.043-.121.055l-.014.002l-.012.047l-13.367 3.86c-.02-.185-.02-.37-.037-.555a27.432 27.432 0 0 1-.092-3.344c.013-.387.033-.773.063-1.158a27.432 27.432 0 0 1 .457-3.307c.08-.407.173-.812.273-1.215a27.432 27.432 0 0 1 .99-3.162c.14-.37.29-.734.448-1.097a27.432 27.432 0 0 1 1.51-2.987c.09-.156.17-.32.265-.474m47.002.007c.097.158.176.324.27.483a27.774 27.774 0 0 1 1.53 3.01c.15.346.298.694.434 1.046a27.774 27.774 0 0 1 1.04 3.288c.045.175.104.346.144.523c.69 3.002.86 5.999.578 8.896l-13.434-3.87l-.011-.057l-.014-.004c-.045-.012-.084-.034-.127-.049a2.35 2.35 0 0 1-.79-.455c-.058-.052-.116-.103-.17-.16a2.35 2.35 0 0 1-.491-.824c-.027-.078-.044-.158-.063-.239a2.35 2.35 0 0 1-.03-.892c.009-.049.01-.096.02-.145c.01-.045.038-.084.05-.129a2.329 2.329 0 0 1 .599-.996c.034-.033.054-.076.09-.107l.01-.01l-.006-.03zm9.228 3.305c.332.965.619 1.945.864 2.938a34.478 34.478 0 0 0-.864-2.938m-34.824 6.752h4.262l2.65 3.314l-.95 4.133l-3.83 1.84l-3.837-1.848l-.953-4.132zm13.727 11.395c.18-.01.357.008.533.04l.014.003l.023-.03l13.828 2.338c-.064.18-.147.351-.215.53a27.466 27.466 0 0 1-1.36 3.011c-.19.363-.386.721-.593 1.074a27.466 27.466 0 0 1-1.853 2.768c-.243.32-.492.633-.748.941a27.466 27.466 0 0 1-2.29 2.432c-.29.274-.588.54-.892.8a27.466 27.466 0 0 1-2.64 2.012c-.16.107-.31.225-.471.329l-5.365-12.967l.015-.022l-.004-.011c-.02-.045-.026-.092-.043-.137a2.351 2.351 0 0 1-.135-.889c.004-.081.006-.162.018-.242a2.351 2.351 0 0 1 .334-.89c.045-.072.098-.137.15-.204a2.351 2.351 0 0 1 .68-.578c.043-.024.079-.055.123-.076c.289-.139.59-.218.89-.232zm-23.31.056l.013.002c.03 0 .06.008.092.01a2.349 2.349 0 0 1 1.226.445c.07.05.133.101.196.158a2.349 2.349 0 0 1 .689 1.106c.008.03.022.059.03.09c.11.479.065.98-.13 1.431l-.005.012l.04.05l-5.31 12.837c-.155-.1-.3-.212-.451-.315a27.58 27.58 0 0 1-2.64-2.011a27.508 27.508 0 0 1-.891-.803a27.58 27.58 0 0 1-2.272-2.408c-.26-.312-.513-.629-.76-.951a27.58 27.58 0 0 1-1.82-2.704a27.294 27.294 0 0 1-.627-1.123a27.58 27.58 0 0 1-1.346-2.947c-.07-.181-.154-.356-.22-.539l13.707-2.326l.023.03l.014-.005c.147-.027.294-.04.443-.039zm2.304 1.994a2.326 2.326 0 0 1 .02.344a2.286 2.286 0 0 0-.02-.344m-.008.703a2.326 2.326 0 0 1-.1.4c.046-.13.077-.264.1-.4m9.334 2.944c.058-.002.114.013.172.015a2.32 2.32 0 0 1 .752.159c.054.021.112.03.164.056v.002a2.31 2.31 0 0 1 1.043.99l.006.012h.053l6.757 12.213c-.276.092-.557.173-.836.256a28.056 28.056 0 0 1-.996.277c-.283.074-.564.15-.85.215c-.124.029-.25.046-.376.072a27.542 27.542 0 0 1-4.18.561c-.28.016-.558.035-.838.043a27.542 27.542 0 0 1-4.32-.223c-.28-.036-.56-.085-.838-.13a27.542 27.542 0 0 1-4.055-.975c-.127-.041-.257-.072-.384-.115l6.742-12.188h.01l.007-.012c.026-.048.065-.085.094-.13a2.351 2.351 0 0 1 .606-.647c.083-.06.168-.115.26-.164a2.351 2.351 0 0 1 .85-.262c.054-.005.103-.023.157-.025M52.297 98.69a34.413 34.413 0 0 0 3.758 1.137a34.352 34.352 0 0 1-3.758-1.137m23.385.09c-1.07.381-2.156.709-3.258.983a34.56 34.56 0 0 0 3.258-.983m-4.575 1.281a34.399 34.399 0 0 1-3.718.563a34.413 34.413 0 0 0 3.718-.563m-13.937.016a34.413 34.413 0 0 0 3.898.572a34.358 34.358 0 0 1-3.898-.572m8.91.649a34.36 34.36 0 0 1-3.851.005a34.413 34.413 0 0 0 3.85-.005z\\\"/>\"\n\t\t},\n\t\t\"kubernetes-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"m31.441 92.652l-3.586.569v17.667a5.527 5.527 0 0 0 1.094.305c.437.088.875.176 1.312.22c.481.043.917.087 1.398.13c.482.044.919.088 1.356.088a8.003 8.003 0 0 0 2.799-.437a6.725 6.725 0 0 0 2.055-1.355a5.628 5.628 0 0 0 1.268-2.1a7.918 7.918 0 0 0 .438-2.755a12.418 12.418 0 0 0-.306-2.667a5.274 5.274 0 0 0-1.05-2.1a4.736 4.736 0 0 0-1.749-1.311a5.54 5.54 0 0 0-2.361-.481a7.238 7.238 0 0 0-1.4.13a6.108 6.108 0 0 0-1.268.395zm-27.856 0L0 93.222v18.059h3.585v-5.51a7.514 7.514 0 0 1 1.181 1.18a12.574 12.574 0 0 1 1.18 1.488a15.923 15.923 0 0 1 1.05 1.53c.307.48.612.92.875 1.356h4.11c-.261-.525-.612-1.093-1.006-1.75a18.675 18.675 0 0 0-1.31-1.924a55.026 55.026 0 0 0-1.487-1.835a17.662 17.662 0 0 0-1.488-1.576a72.507 72.507 0 0 0 2.623-2.755c.83-.874 1.662-1.837 2.493-2.798H7.565c-.218.262-.524.61-.831.96c-.307.35-.656.745-1.006 1.182a246.454 246.454 0 0 1-1.093 1.224c-.377.378-.714.756-1.05 1.133zm94.631 2.318l-3.585.569v10.583a11.334 11.334 0 0 0 .218 2.23a4.339 4.339 0 0 0 .83 1.749a4.047 4.047 0 0 0 1.532 1.093a6.682 6.682 0 0 0 2.448.394a8.407 8.407 0 0 0 1.968-.175a6.965 6.965 0 0 0 1.443-.438l-.525-2.798a7.11 7.11 0 0 1-1.137.306a10.72 10.72 0 0 1-1.18.087c-.788 0-1.356-.218-1.619-.656a3.516 3.516 0 0 1-.393-1.792v-4.46h4.286v-2.974h-4.286zm25.276 3.367c-1.53 0-2.755.35-3.63 1.05a3.327 3.327 0 0 0-1.312 2.799a4.237 4.237 0 0 0 .263 1.574a3.42 3.42 0 0 0 .742 1.137a4.372 4.372 0 0 0 1.139.787c.436.218.961.437 1.53.656a8.295 8.295 0 0 1 1.617.744c.35.218.525.436.525.742a.766.766 0 0 1-.393.744a3.593 3.593 0 0 1-1.4.175a8.047 8.047 0 0 1-1.793-.175a13.365 13.365 0 0 1-1.88-.568l-.612 2.93a7.982 7.982 0 0 0 1.53.48a10.109 10.109 0 0 0 2.799.307c1.749 0 3.06-.306 3.979-.962a3.26 3.26 0 0 0 1.4-2.843a4.538 4.538 0 0 0-.175-1.4a2.284 2.284 0 0 0-.612-1.092a3.265 3.265 0 0 0-1.18-.92a14.424 14.424 0 0 0-1.97-.873c-.393-.175-.699-.262-.961-.393c-.219-.132-.438-.263-.569-.35a.734.734 0 0 1-.306-.35a1.277 1.277 0 0 1-.087-.395c0-.612.524-.918 1.662-.918a6.118 6.118 0 0 1 1.617.176c.482.13.919.262 1.356.394l.613-2.8a8.085 8.085 0 0 0-1.662-.437a12.44 12.44 0 0 0-2.23-.22zm-75.696.044a5.844 5.844 0 0 0-2.274.437a5.097 5.097 0 0 0-1.924 1.269a6.692 6.692 0 0 0-1.355 2.099a7.463 7.463 0 0 0-.525 2.93a10.271 10.271 0 0 0 .35 2.624a6.312 6.312 0 0 0 1.223 2.099a6.439 6.439 0 0 0 2.099 1.355a7.69 7.69 0 0 0 2.974.525c.438 0 .918-.044 1.356-.088a9.871 9.871 0 0 0 1.267-.175a4.409 4.409 0 0 0 1.094-.22c.35-.13.612-.217.787-.305l-.48-2.93a7.845 7.845 0 0 1-1.575.438a9.267 9.267 0 0 1-1.924.175a4.16 4.16 0 0 1-2.449-.656a2.397 2.397 0 0 1-1.05-1.75h8.134c0-.218.044-.436.044-.655a4.002 4.002 0 0 0 .043-.7c0-2.1-.524-3.717-1.573-4.81a5.597 5.597 0 0 0-4.242-1.662m38.351 0a5.844 5.844 0 0 0-2.274.437a5.097 5.097 0 0 0-1.924 1.269a6.692 6.692 0 0 0-1.356 2.099a7.462 7.462 0 0 0-.525 2.93a10.269 10.269 0 0 0 .35 2.624a6.312 6.312 0 0 0 1.225 2.099a6.438 6.438 0 0 0 2.099 1.355a7.69 7.69 0 0 0 2.973.525c.437 0 .918-.044 1.356-.088a9.873 9.873 0 0 0 1.268-.175a4.408 4.408 0 0 0 1.093-.22c.35-.13.612-.217.787-.305l-.48-2.93a7.844 7.844 0 0 1-1.574.438a9.267 9.267 0 0 1-1.926.175a4.16 4.16 0 0 1-2.448-.656a2.397 2.397 0 0 1-1.05-1.75h8.134c0-.218.044-.436.044-.655a4 4 0 0 0 .043-.7c0-2.098-.524-3.717-1.573-4.81a5.597 5.597 0 0 0-4.242-1.662m24.27 0a5.844 5.844 0 0 0-2.275.437a5.097 5.097 0 0 0-1.924 1.269a6.692 6.692 0 0 0-1.355 2.099a7.462 7.462 0 0 0-.525 2.93a8.647 8.647 0 0 0 .35 2.624a6.312 6.312 0 0 0 1.225 2.099a6.438 6.438 0 0 0 2.098 1.355a7.69 7.69 0 0 0 2.974.525c.437 0 .918-.044 1.356-.088a9.871 9.871 0 0 0 1.267-.175a4.408 4.408 0 0 0 1.094-.22c.35-.13.612-.217.787-.305l-.481-2.93a7.844 7.844 0 0 1-1.574.438a9.267 9.267 0 0 1-1.925.175a4.16 4.16 0 0 1-2.448-.656a2.397 2.397 0 0 1-1.05-1.75h8.134c0-.218.044-.436.044-.655a4.001 4.001 0 0 0 .043-.7c0-2.098-.524-3.717-1.574-4.81a5.597 5.597 0 0 0-4.241-1.662m-48.89.045a12.302 12.302 0 0 0-2.93.305a18.601 18.601 0 0 0-2.274.612v12.026h3.586v-9.664a6.869 6.869 0 0 1 .7-.131a7.71 7.71 0 0 1 .83-.088a7.237 7.237 0 0 1 1.4.132a6.57 6.57 0 0 1 1.137.219v-.001l.612-2.974c-.175-.043-.438-.13-.7-.174a32.987 32.987 0 0 1-.83-.132a5.975 5.975 0 0 0-.831-.087a4.256 4.256 0 0 0-.7-.043m10.364 0a21.144 21.144 0 0 0-5.378.699h-.001v12.288h3.543v-9.752a4.332 4.332 0 0 1 .786-.087a5.576 5.576 0 0 1 .831-.044c.831 0 1.399.219 1.705.7c.307.48.438 1.312.438 2.45v6.69h3.586v-7.13a9.755 9.755 0 0 0-.263-2.36a5.108 5.108 0 0 0-.874-1.837a3.746 3.746 0 0 0-1.706-1.181a6.67 6.67 0 0 0-2.667-.436m-58.336.262v7.04a10.283 10.283 0 0 0 .263 2.36a4.017 4.017 0 0 0 2.536 3.062a7.046 7.046 0 0 0 2.711.438a16.903 16.903 0 0 0 3.018-.22a17.016 17.016 0 0 0 2.361-.48l.044-12.2h-3.586v9.75c-.262.045-.481.045-.787.088a5.576 5.576 0 0 1-.83.044c-.832 0-1.4-.262-1.706-.787c-.306-.524-.437-1.355-.437-2.492v-6.603zm34.284 2.579a2.09 2.09 0 0 1 1.75.788a2.658 2.658 0 0 1 .393.786a2.827 2.827 0 0 1 .17.832h-4.718a6.394 6.394 0 0 1 .219-.875a2.294 2.294 0 0 1 .437-.787a1.74 1.74 0 0 1 .7-.525a2.642 2.642 0 0 1 1.049-.22zm38.35 0a2.09 2.09 0 0 1 1.751.788a2.659 2.659 0 0 1 .393.786a2.828 2.828 0 0 1 .17.832h-4.718a6.391 6.391 0 0 1 .219-.875a2.294 2.294 0 0 1 .437-.787a1.74 1.74 0 0 1 .7-.525a2.642 2.642 0 0 1 1.049-.22zm24.228 0a2.09 2.09 0 0 1 1.75.788a2.658 2.658 0 0 1 .392.786a2.827 2.827 0 0 1 .17.832h-4.718a6.392 6.392 0 0 1 .22-.875a2.294 2.294 0 0 1 .436-.787a1.74 1.74 0 0 1 .7-.525a2.642 2.642 0 0 1 1.05-.22zm-77.008.176c1.705 0 2.537 1.136 2.537 3.454a4.484 4.484 0 0 1-.744 2.668a2.708 2.708 0 0 1-2.23 1.006c-.307 0-.613-.045-.875-.045c-.263-.043-.481-.043-.656-.087v-6.516a3.304 3.304 0 0 1 .875-.35a4.67 4.67 0 0 1 1.093-.13\\\"/><path fill=\\\"#326ce5\\\" d=\\\"M63.8 16.283a4.956 4.915 0 0 0-1.899.48L35.985 29.146a4.956 4.915 0 0 0-2.682 3.335L26.91 60.296a4.956 4.915 0 0 0 .673 3.768a4.956 4.915 0 0 0 .281.39L45.802 86.76a4.956 4.915 0 0 0 3.875 1.85l28.767-.007a4.956 4.915 0 0 0 3.874-1.847L100.25 64.45a4.956 4.915 0 0 0 .958-4.16l-6.404-27.815a4.956 4.915 0 0 0-2.681-3.334l-25.92-12.378a4.956 4.915 0 0 0-2.403-.48\\\"/><path fill=\\\"#fff\\\" d=\\\"M64.057 25.748c-.857 0-1.551.772-1.551 1.724c0 .015.003.029.003.043c-.001.13-.007.285-.003.398c.02.549.14.97.212 1.475c.13 1.082.24 1.98.172 2.814c-.065.314-.297.602-.503.802l-.037.656a20.187 20.187 0 0 0-2.804.43a19.952 19.952 0 0 0-10.136 5.79a26.001 26.001 0 0 1-.56-.396c-.277.037-.557.123-.921-.09c-.695-.467-1.327-1.112-2.092-1.89c-.35-.371-.604-.724-1.02-1.083c-.095-.081-.24-.191-.345-.275a1.845 1.845 0 0 0-1.08-.408a1.494 1.494 0 0 0-1.237.547c-.534.67-.363 1.694.38 2.287l.024.017c.102.083.228.189.322.258c.442.327.845.494 1.286.753c.927.573 1.697 1.048 2.307 1.62c.238.255.28.702.311.896l.497.444a20.073 20.073 0 0 0-3.165 13.994l-.65.189c-.17.22-.413.569-.666.672c-.798.252-1.696.344-2.78.458c-.51.042-.95.017-1.489.119c-.119.023-.284.066-.414.096l-.014.003l-.023.007c-.914.22-1.501 1.06-1.312 1.89c.189.827 1.082 1.33 2.002 1.133c.006-.002.016-.002.023-.003c.01-.003.02-.008.03-.01c.128-.028.289-.06.4-.09c.531-.142.916-.35 1.393-.533c1.026-.37 1.876-.676 2.704-.796c.346-.027.71.213.892.315l.676-.116c1.556 4.824 4.817 8.723 8.946 11.17l-.282.676c.102.263.214.618.138.877c-.3.78-.817 1.605-1.404 2.524c-.284.424-.575.753-.832 1.24c-.061.115-.14.294-.199.417c-.398.853-.106 1.835.66 2.204c.77.37 1.727-.02 2.141-.875l.004-.004v-.003c.059-.122.142-.28.192-.395c.22-.503.293-.935.447-1.422c.41-1.03.636-2.112 1.201-2.786c.155-.185.407-.256.669-.326l.351-.636a20.043 20.043 0 0 0 11.654.838a20.128 20.128 0 0 0 2.661-.802c.1.175.283.512.332.597c.266.086.556.13.792.48c.423.722.712 1.577 1.064 2.609c.155.487.231.918.45 1.422c.05.114.134.276.193.397c.413.858 1.373 1.25 2.145.879c.765-.37 1.058-1.352.66-2.204c-.06-.123-.142-.302-.203-.418c-.257-.486-.548-.812-.832-1.236c-.587-.92-1.074-1.682-1.375-2.463c-.126-.403.02-.653.119-.915c-.059-.067-.185-.447-.259-.626a20.186 20.186 0 0 0 8.943-11.25c.2.032.55.094.663.116c.233-.154.447-.354.868-.321c.828.12 1.678.427 2.705.795c.477.183.861.395 1.392.537c.112.03.273.058.4.086c.011.003.02.008.03.01l.024.004c.92.198 1.813-.306 2.002-1.134c.189-.828-.398-1.668-1.313-1.89c-.133-.03-.321-.08-.45-.105c-.54-.102-.98-.077-1.489-.12c-1.084-.113-1.982-.205-2.78-.457c-.326-.126-.558-.513-.67-.673l-.627-.182c.325-2.35.238-4.795-.324-7.242a20.08 20.08 0 0 0-2.907-6.72c.16-.145.464-.413.55-.493c.025-.278.004-.57.292-.878c.61-.573 1.379-1.048 2.307-1.62c.44-.26.847-.427 1.289-.753c.1-.074.236-.19.341-.275c.744-.594.916-1.617.381-2.287c-.534-.67-1.569-.733-2.313-.14c-.106.084-.25.194-.345.276c-.416.358-.673.712-1.024 1.084c-.765.777-1.397 1.425-2.091 1.892c-.301.175-.742.115-.942.103l-.59.42c-3.364-3.527-7.944-5.782-12.876-6.22a37.228 37.228 0 0 1-.037-.693c-.202-.193-.446-.358-.507-.775c-.068-.834.045-1.732.176-2.814c.072-.506.191-.926.212-1.475c.004-.125-.003-.306-.004-.441c0-.952-.694-1.724-1.551-1.724M62.115 37.78l-.461 8.137l-.033.017a1.367 1.367 0 0 1-1.366 1.309a1.36 1.36 0 0 1-.805-.262l-.013.007l-6.672-4.73a15.98 15.98 0 0 1 7.696-4.193a16.347 16.347 0 0 1 1.654-.285m3.888 0a16.113 16.113 0 0 1 9.293 4.48l-6.629 4.7l-.023-.01a1.369 1.369 0 0 1-1.876-.25a1.358 1.358 0 0 1-.298-.793l-.007-.003zm-15.658 7.517l6.092 5.45l-.007.033c.55.478.631 1.307.173 1.882a1.367 1.367 0 0 1-.71.468l-.006.026l-7.81 2.254a15.976 15.976 0 0 1 2.268-10.113m27.38.004a16.175 16.175 0 0 1 2 4.882c.403 1.755.504 3.507.338 5.2l-7.849-2.26l-.007-.033a1.368 1.368 0 0 1-.97-1.624a1.356 1.356 0 0 1 .433-.726l-.003-.017zm-14.918 5.866h2.496l1.551 1.94l-.556 2.419l-2.241 1.077l-2.247-1.08l-.557-2.42zm8.002 6.636a1.359 1.359 0 0 1 .315.023l.013-.016l8.077 1.365a15.996 15.996 0 0 1-6.466 8.124l-3.136-7.574l.01-.013a1.37 1.37 0 0 1 1.187-1.91zm-13.567.033a1.368 1.368 0 0 1 1.237 1.906l.023.03l-3.102 7.497a16.062 16.062 0 0 1-6.447-8.067l8.008-1.36l.013.017a1.384 1.384 0 0 1 .268-.023m6.765 3.285a1.354 1.354 0 0 1 .64.136c.271.13.481.336.613.583h.03l3.948 7.133a16.362 16.362 0 0 1-1.578.44a16.04 16.04 0 0 1-8.754-.45l3.938-7.12h.007a1.37 1.37 0 0 1 1.156-.722\\\"/>\"\n\t\t},\n\t\t\"labview\": {\n\t\t\t\"body\": \"<path fill=\\\"#bec7cc\\\" d=\\\"M105.085 59.84a3.54 3.54 0 0 0-3.54 3.54v1.34a3.54 3.54 0 0 0 3.54 3.54h19.38a3.54 3.54 0 0 0 3.54-3.54v-1.34a3.54 3.54 0 0 0-3.54-3.54zM3.535 41.8a3.54 3.54 0 0 0-3.54 3.54v1.35a3.54 3.54 0 0 0 3.54 3.54h19.38a3.54 3.54 0 0 0 3.54-3.54v-1.35a3.54 3.54 0 0 0-3.54-3.54zm0 36.07a3.54 3.54 0 0 0-3.54 3.54v1.34a3.54 3.54 0 0 0 3.54 3.54h19.38a3.54 3.54 0 0 0 3.54-3.54v-1.34a3.54 3.54 0 0 0-3.54-3.54z\\\" opacity=\\\".998\\\"/><path fill=\\\"#ffd500\\\" d=\\\"M29.755 22.46c-4.42-.09-8.06 2.99-8.06 6.82v69.43c0 5.25 6.56 8.53 11.81 5.91l69.49-34.72c5.25-2.62 5.25-9.18 0-11.8l-69.49-34.72a8.856 8.856 0 0 0-3.75-.91z\\\" opacity=\\\".998\\\"/><path fill=\\\"#727b84\\\" d=\\\"M64.535 67.07h-11.95v11.99h-6.15V67.08h-11.95V61h11.95V49.02h6.15v11.99h11.95z\\\" opacity=\\\".998\\\"/>\"\n\t\t},\n\t\t\"labview-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#bec7cc\\\" d=\\\"M105.09 46.97a3.54 3.54 0 0 0-3.54 3.54v1.34a3.54 3.54 0 0 0 3.54 3.54h19.38a3.54 3.54 0 0 0 3.54-3.54v-1.34a3.54 3.54 0 0 0-3.54-3.54zM3.54 28.93A3.54 3.54 0 0 0 0 32.47v1.35a3.54 3.54 0 0 0 3.54 3.54h19.38a3.54 3.54 0 0 0 3.54-3.54v-1.35a3.54 3.54 0 0 0-3.54-3.54zm0 36.07A3.54 3.54 0 0 0 0 68.54v1.34a3.54 3.54 0 0 0 3.54 3.54h19.38a3.54 3.54 0 0 0 3.54-3.54v-1.34A3.54 3.54 0 0 0 22.92 65z\\\"/><path fill=\\\"#ffd500\\\" d=\\\"M29.76 9.59c-4.42-.09-8.06 2.99-8.06 6.82v69.43c0 5.25 6.56 8.53 11.81 5.91L103 57.03c5.25-2.62 5.25-9.18 0-11.8L33.51 10.51a8.856 8.856 0 0 0-3.75-.91z\\\"/><path fill=\\\"#727b84\\\" d=\\\"M64.54 54.2H52.59v11.99h-6.15V54.21H34.49v-6.08h11.95V36.15h6.15v11.99h11.95z\\\"/><path d=\\\"M93.54 102.52c-.88 0-.99 1.84-.13 2.16c.23.09.52.28.63.43c.12.15.81 2.58 1.54 5.4c1.84 7.09 3.22 12.14 3.45 12.68c.18.41.31.45 1.42.4l1.22-.06l1.55-5.23c2.77-9.35 3.2-10.68 3.4-10.68c.22 0 .25.1 2.72 9.21l1.82 6.7l1.23.06c1.12.05 1.25.02 1.43-.4c.22-.5 1.66-5.79 3.57-13.07c1.15-4.39 1.29-4.78 1.9-5.34c.51-.47.65-.76.65-1.31c0-.84-.38-1.04-1.59-.83c-1.42.24-1.73.98-3.82 9.17c-1.63 6.41-2.08 7.86-2.3 7.47c-.09-.16-1.11-3.84-2.26-8.17c-1.15-4.33-2.19-7.98-2.3-8.12c-.12-.14-.6-.25-1.09-.25c-.8 0-.89.06-1.14.64c-.2.48-3.32 10.91-4.62 15.47c-.07.24-.21.45-.32.46c-.25.02-.41-.49-2.18-7.4c-1.62-6.31-2.17-8.13-2.58-8.6c-.3-.34-1.54-.77-2.22-.77zm-57.16.03c-.8.06-1.06.39-1 1.11c.05.66.12.73.69.79c1.17.11 1.14-.15 1.22 9.94l.07 9.25l1.02-.06c.99-.06 1.02-.08 1.08-.7c.08-.8.5-.84 1.25-.12c.3.29 1.01.68 1.59.88c3.07 1.06 6.19-.27 7.8-3.31c1.83-3.47 1.15-8.17-1.54-10.59c-2.12-1.91-5.4-2-7.87-.23c-.54.39-1.02.71-1.07.71c-.05 0-.11-1.51-.15-3.35c-.07-3.99-.13-4.11-2.07-4.28c-.4-.04-.73-.05-1-.03zm-30.27.01c-.31.02-.56.07-.72.15c-.35.19-.43.38-.38.96c.05.66.14.75.87.98l.8.26l.13 2.5c.07 1.38.13 5.4.13 8.93c0 5.87.03 6.46.35 6.73c.19.17.48.35.64.41c.16.06 2.6.12 5.41.13c4.99.02 5.12 0 5.57-.41c.4-.38.46-.61.46-1.97v-1.54h-.98c-.91 0-.99.04-1.1.55c-.22 1.04-.35 1.12-1.98 1.28c-1.98.2-5.53.09-5.79-.17c-.13-.13-.25-3.5-.35-9.11c-.13-7.87-.19-8.94-.47-9.23c-.31-.31-1.67-.5-2.59-.44zm78.16 0c-3.2-.03-6.01-.01-6.25.05c-.53.13-.79 1.08-.47 1.68c.15.28.41.41.86.41h.66l.12 8.78c.13 9.39.17 9.7 1.12 9.97c.27.08 2.86.15 5.76.16l5.26.02l.41-.52c.33-.42.41-.8.41-1.97v-1.45h-.74c-.94 0-1.12.14-1.35.98c-.17.61-.28.7-1.07.85c-.86.16-6.85.05-7.03-.13c-.05-.05-.15-1.69-.21-3.65l-.11-3.57h7.73l.06-.54c.03-.3.03-.79-.01-1.09l-.07-.55H81.7v-7.29h3.25c3.5 0 4.25.14 4.25.8c0 .81.36 1.17 1.16 1.17h.75l.12-.97c.17-1.45-.03-2.35-.62-2.74c-.44-.29-1.28-.34-6.33-.39zm-13.81.01c-2.55.05-4.8.15-4.98.24c-.19.08-.56.61-.83 1.17c-.46.95-3.48 9.07-5.14 13.79c-.42 1.21-.85 2.12-1 2.12c-.14 0-.39-.38-.55-.84c-4.94-13.56-5.77-15.67-6.3-16.01c-.66-.42-1.86-.59-2.2-.3c-.17.14-.3.57-.3 1c0 .58.09.78.4.88c.6.19 1.06 1.24 4.3 9.85c1.64 4.34 3.08 8.18 3.22 8.53c.24.63.28.63 1.45.63h1.2l3.54-9.46l3.54-9.46l2.32-.01h2.31v16.96h-.75c-.88 0-1.23.28-1.23.99c0 .91.27.98 3.29.98h2.82v-.98c0-.98 0-.99-.63-.99c-.35 0-.74-.07-.86-.15c-.15-.1-.25-2.75-.33-8.48l-.11-8.33h.75c.84 0 1.24-.35 1.24-1.09c0-1.11-.1-1.13-5.17-1.04m51.11.15l.2.79c.22.87.48 1.02.58.35c.07-.49.56-.74.56-.29c0 .39.16.48 1.12.63c.87.14 1.11-.1.9-.9c-.09-.35-.21-.42-.66-.32c-.31.06-.61.03-.67-.07c-.06-.11-.55-.19-1.08-.19zm-94.23 5.71c-2.12 0-2.64.06-3.34.4c-1.21.58-1.52 1.03-1.62 2.28l-.09 1.09l.96-.06c.89-.06.99-.12 1.3-.78c.42-.9 1.21-1.24 2.83-1.23c.91.01 1.45.14 2.09.49c.73.4.91.63 1.25 1.6c.52 1.52.35 1.78-1.3 1.97c-4.18.48-5.49.87-6.87 2.03c-1.41 1.19-1.83 3.54-.94 5.23c.48.92 1.87 2.02 2.97 2.33c.97.28 2.56.24 3.49-.09c.47-.17 1.32-.65 1.88-1.08l1.03-.78l.24.59c.13.32.43.72.66.88c.58.4 2.76.39 3.17-.02c.6-.6.21-1.37-.85-1.65l-.75-.2l-.14-4.48c-.08-2.47-.23-4.86-.35-5.31c-.26-1.02-1.33-2.31-2.35-2.83c-.64-.33-1.16-.39-3.27-.39zm16.86 1.98c1.97 0 3.15.77 4.01 2.66c.66 1.44.64 4.48-.02 5.97c-.54 1.22-1.9 2.51-2.95 2.8c-.94.26-1.54.24-2.45-.08c-1.3-.46-2.13-1.33-2.71-2.86c-.61-1.59-.71-3.31-.3-4.85c.67-2.48 2.08-3.64 4.41-3.64zm-13.12 5.65l-.14 1.16c-.26 2.23-1.63 4.16-3.28 4.62c-2.08.58-3.86-.27-4.08-1.94c-.15-1.1.03-1.65.75-2.36c.87-.85 2.09-1.21 4.59-1.36z\\\"/>\"\n\t\t},\n\t\t\"laravel\": {\n\t\t\t\"body\": \"<path fill=\\\"#f0513f\\\" d=\\\"M27.271.11c-.2.078-5.82 3.28-12.487 7.112c-8.078 4.644-12.227 7.09-12.449 7.32c-.19.225-.34.482-.438.76c-.167.564-.179 82.985-.01 83.578c.061.23.26.568.44.754c.436.46 48.664 28.19 49.25 28.324c.272.065.577.054.88-.03c.658-.165 48.76-27.834 49.188-28.286c.175-.195.375-.532.44-.761c.084-.273.115-4.58.115-13.655v-13.26l11.726-6.735c11.056-6.357 11.733-6.755 12.017-7.191l.29-.47V43.287c0-15.548.03-14.673-.585-15.235c-.165-.146-5.798-3.433-12.53-7.31L100.89 13.71h-1.359l-11.963 6.87c-6.586 3.788-12.184 7.027-12.457 7.203c-.272.18-.597.512-.73.753l-.242.417l-.054 13.455l-.048 13.46l-9.879 5.69c-5.434 3.124-9.957 5.71-10.053 5.734c-.175.049-.187-1.232-.187-25.966V15.293l-.26-.447c-.326-.545 1.136.324-13.544-8.114C27.803-.348 28.098-.2 27.27.11zm11.317 10.307c5.15 2.955 9.364 5.4 9.364 5.43c0 .031-4.516 2.641-10.035 5.813l-10.041 5.765l-10.023-5.764c-5.507-3.173-10.02-5.783-10.02-5.814c0-.03 4.505-2.64 10.013-5.805l9.999-5.752l.69.376c3.357 1.907 6.708 3.824 10.053 5.751m71.668 13.261c5.422 3.122 9.908 5.702 9.95 5.744c.114.103-19.774 11.535-20.046 11.523c-.272-.008-19.915-11.335-19.907-11.473c.01-.157 19.773-11.527 19.973-11.496c.091.022 4.607 2.59 10.03 5.702M16.3 25.328l9.558 5.503l.055 27.247l.05 27.252l.233.368c.122.194.352.459.52.581c.158.115 5.477 3.146 11.818 6.724l11.52 6.506v11.527c0 6.326-.043 11.516-.097 11.516c-.041 0-10-5.699-22.124-12.676L5.793 97.201l-.03-38.966l-.019-38.954l.49.271c.283.15 4.807 2.748 10.065 5.775zm33.754 19.18v25.109l-.387.253c-.525.332-19.667 11.335-19.732 11.335c-.03 0-.054-11.336-.054-25.193l.012-25.182l10-5.752c5.499-3.165 10.034-5.733 10.088-5.714c.039.024.073 11.34.073 25.144m38.15-5.775l10.023 5.763V55.92c0 10.838-.011 11.42-.176 11.357c-.107-.041-4.642-2.64-10.083-5.774l-9.91-5.69v-11.42c0-6.287.032-11.424.062-11.424c.043 0 4.577 2.592 10.084 5.764m34.164 5.587c0 6.254-.042 11.412-.084 11.462c-.072.115-19.896 11.538-20.022 11.538c-.031 0-.062-5.135-.062-11.423v-11.42l10-5.756c5.507-3.16 10.042-5.752 10.084-5.752c.053 0 .084 5.105.084 11.351M95.993 70.933L52.005 96.04L32.056 84.693S76 59.277 76.176 59.343zm2.215 14.827l-.034 11.442l-22.028 12.676c-12.12 6.976-22.082 12.675-22.132 12.675c-.053 0-.095-4.658-.095-11.516V99.51l22.08-12.592c12.132-6.923 22.101-12.59 22.154-12.602c.043 0 .062 5.148.054 11.443z\\\"/>\"\n\t\t},\n\t\t\"laravel-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f0513f\\\" d=\\\"M7.595 45.354a.584.584 0 0 0-.291.078L.292 49.468c-.024.015-.043.034-.065.05c-.019.015-.04.028-.057.044c-.02.02-.035.045-.052.068c-.013.018-.029.033-.04.052c-.016.029-.026.06-.037.091c-.006.017-.016.032-.02.05a.586.586 0 0 0-.021.152v24.013c0 .21.112.403.293.507l14.022 8.073c.031.018.064.028.097.04c.015.005.03.014.045.018c.049.013.1.02.15.02a.578.578 0 0 0 .15-.02c.013-.003.026-.011.04-.016c.034-.012.069-.023.101-.042l14.023-8.073a.584.584 0 0 0 .293-.506v-7.667l6.718-3.868a.585.585 0 0 0 .293-.507v-8.005a.59.59 0 0 0-.02-.152c-.006-.017-.015-.032-.021-.049c-.012-.03-.021-.062-.038-.09c-.01-.02-.027-.035-.04-.052c-.017-.023-.031-.048-.052-.068c-.016-.017-.038-.03-.057-.044c-.021-.017-.04-.036-.064-.05h-.001L28.92 49.4a.584.584 0 0 0-.583 0l-7.011 4.037c-.025.014-.044.033-.065.05c-.02.014-.04.027-.057.043c-.02.02-.035.045-.052.068c-.013.018-.03.034-.04.053c-.016.028-.026.059-.038.09c-.006.017-.015.032-.02.049a.586.586 0 0 0-.02.152v7.667l-5.843 3.364V49.975a.58.58 0 0 0-.02-.153c-.006-.017-.015-.032-.021-.049c-.012-.03-.021-.062-.038-.09c-.01-.02-.027-.035-.04-.053c-.017-.023-.032-.047-.052-.068c-.017-.016-.038-.029-.057-.044c-.021-.016-.04-.035-.064-.05h-.001l-7.011-4.036a.584.584 0 0 0-.292-.078m0 1.258l5.84 3.363l-5.84 3.362l-5.84-3.362zm21.034 3.968l5.84 3.363l-5.84 3.362l-5.84-3.362zm-14.607.405v14.66l-3.389 1.952L8.18 69.01V54.35l3.39-1.952zm-12.854 0l2.453 1.413l3.39 1.951v15.674c0 .022.006.043.009.065c.003.029.004.058.011.086v.001c.007.023.02.044.028.066c.01.024.017.05.03.073l.002.002c.012.02.029.037.043.056c.016.021.03.044.048.062l.002.002c.017.016.038.028.056.042c.021.017.04.036.063.05h.003l.002.002l6.715 3.8v6.722l-12.854-7.4zm44.379 2.96v19.714h9.321v-2.901h-6.083V53.945Zm79.384 0v19.714H128V53.945ZM22.2 54.953l2.455 1.413l3.389 1.951v6.656l-2.454-1.412l-3.39-1.951Zm12.855 0v6.657l-5.843 3.364v-6.657l3.39-1.951zm27.19 5.243c-.995 0-1.905.184-2.731.55a6.393 6.393 0 0 0-2.127 1.507a7.129 7.129 0 0 0-1.873 4.844c0 .939.165 1.821.493 2.647a7.003 7.003 0 0 0 1.38 2.197c.592.638 1.3 1.14 2.127 1.506c.826.366 1.736.55 2.732.55c.77 0 1.535-.188 2.295-.564c.76-.375 1.347-.891 1.76-1.549v1.775h3.07V60.535h-3.07v1.774c-.413-.657-1-1.173-1.76-1.549c-.76-.375-1.525-.563-2.295-.563zm24.954 0c-.996 0-1.906.184-2.733.55a6.395 6.395 0 0 0-2.126 1.507a6.977 6.977 0 0 0-1.38 2.21a7.129 7.129 0 0 0-.493 2.634c0 .939.164 1.821.493 2.647a7.003 7.003 0 0 0 1.38 2.197a6.4 6.4 0 0 0 2.126 1.506c.826.366 1.737.55 2.733.55c.77 0 1.534-.188 2.295-.564c.76-.375 1.347-.891 1.76-1.549v1.775h3.07V60.535h-3.07v1.774c-.414-.657-1-1.173-1.76-1.549c-.76-.375-1.526-.563-2.295-.563zm29.236.001c-3.759 0-6.734 3.09-6.734 6.9c0 4.212 2.88 6.9 7.128 6.9c2.377 0 3.895-.91 5.75-2.89l-2.074-1.604c-.001.002-1.565 2.055-3.9 2.055c-2.716 0-3.858-2.188-3.858-3.32h10.183c.535-4.336-2.315-8.04-6.495-8.04zm-44.642.338v13.124h3.07V63.555h5.267v-3.02zm24.012 0l5.038 13.124h3.859l5.038-13.124h-3.11l-3.857 10.05l-3.859-10.05zm-74.188 2.087l5.836 3.36l-4.282 2.444l-8.567 4.89l-5.831-3.3l6.124-3.526zm94.794.014c3.279 0 3.677 3.067 3.7 3.32h-7.356c.023-.252.377-3.32 3.656-3.32m-53.997.293c.582 0 1.113.112 1.592.338c.479.225.887.526 1.225.9c.338.377.601.818.789 1.324c.187.507.281 1.042.281 1.606c0 .563-.094 1.098-.281 1.605a4.07 4.07 0 0 1-.789 1.324a3.807 3.807 0 0 1-1.225.9a3.692 3.692 0 0 1-1.592.339a3.596 3.596 0 0 1-1.577-.338a3.852 3.852 0 0 1-1.21-.901a3.874 3.874 0 0 1-.775-1.324a4.792 4.792 0 0 1-.268-1.605c0-.564.09-1.099.268-1.606c.178-.506.437-.947.775-1.323a3.857 3.857 0 0 1 1.21-.901c.47-.226.995-.338 1.578-.338zm24.953 0a3.68 3.68 0 0 1 1.591.338c.48.225.888.526 1.226.9c.338.377.6.818.788 1.324a4.58 4.58 0 0 1 .282 1.606a4.59 4.59 0 0 1-.282 1.605a4.07 4.07 0 0 1-.788 1.324a3.808 3.808 0 0 1-1.226.9a3.69 3.69 0 0 1-1.59.339a3.597 3.597 0 0 1-1.578-.338a3.85 3.85 0 0 1-1.211-.901a3.873 3.873 0 0 1-.774-1.324a4.79 4.79 0 0 1-.268-1.605c0-.564.089-1.099.267-1.606c.178-.506.437-.947.775-1.323a3.857 3.857 0 0 1 1.21-.901c.47-.226.996-.338 1.578-.338M28.045 66.99v6.66l-12.854 7.4v-6.723l9.52-5.434z\\\"/>\"\n\t\t},\n\t\t\"latex\": {\n\t\t\t\"body\": \"<path d=\\\"M29.2 63H28c-.5 5.1-1.2 11.3-10 11.3h-4c-2.3 0-2.4-.3-2.4-2V45.8c0-1.7 0-2.4 4.7-2.4h1.6v-1.5c-1.9.1-6.3.1-8.4.1c-1.9 0-5.8 0-7.5-.1v1.5h1.1c3.8 0 3.9.5 3.9 2.3v26.1c0 1.8-.1 2.3-3.9 2.3H2v1.5h25.8z\\\"/><path d=\\\"M28.3 41.8c-.2-.6-.3-.8-.9-.8s-.8.2-1 .8l-8 20.3c-.3.8-.9 2.4-4 2.4v1.2h7.7v-1.2c-1.5 0-2.5-.7-2.5-1.7c0-.2 0-.3.1-.7l1.7-4.3h9.9l2 5.1c.1.2.2.4.2.6c0 1-1.9 1-2.8 1v1.2h9.8v-1.2h-.7c-2.3 0-2.6-.3-2.9-1.3zm-1.9 3.6l4.4 11.3h-8.9z\\\"/><path d=\\\"M68.2 42.2H37.9L37 53.3h1.2c.7-8 1.4-9.7 9-9.7c.9 0 2.2 0 2.7.1c1 .2 1 .7 1 1.9v26.1c0 1.7 0 2.4-5.2 2.4h-2v1.5c2-.1 7.1-.1 9.4-.1s7.4 0 9.5.1v-1.5h-2c-5.2 0-5.2-.7-5.2-2.4v-26c0-1 0-1.7.9-1.9c.5-.1 1.9-.1 2.8-.1c7.5 0 8.2 1.6 8.9 9.7h1.2z\\\"/><path d=\\\"M94.9 74.2h-1.2c-1.2 7.6-2.4 11.3-10.9 11.3h-6.6c-2.3 0-2.4-.3-2.4-2V70.2h4.4c4.8 0 5.4 1.6 5.4 5.8h1.2V62.9h-1.2c0 4.2-.5 5.8-5.4 5.8h-4.4v-12c0-1.6.1-2 2.4-2h6.4c7.6 0 8.9 2.7 9.7 9.7h1.2l-1.4-11.2H64.2v1.5h1.1c3.8 0 3.9.5 3.9 2.3v26c0 1.8-.1 2.3-3.9 2.3h-1.1V87h28.6z\\\"/><path d=\\\"m109.9 56.6l6.8-10c1-1.6 2.7-3.2 7.2-3.2v-1.5H112v1.5c2 0 3.1 1.1 3.1 2.3c0 .5-.1.6-.4 1.1l-5.7 8.4l-6.4-9.6c-.1-.1-.3-.5-.3-.7c0-.6 1.1-1.4 3.2-1.5v-1.5c-1.7.1-5.3.1-7.2.1c-1.5 0-4.6 0-6.5-.1v1.5h.9c2.7 0 3.7.3 4.6 1.7l9.1 13.8l-8.1 12c-.7 1-2.2 3.3-7.2 3.3v1.5H103v-1.5c-2.3 0-3.1-1.4-3.1-2.3c0-.4.1-.6.5-1.2l7-10.4l7.9 11.9c.1.2.2.4.2.5c0 .6-1.1 1.4-3.2 1.5v1.5c1.7-.1 5.4-.1 7.2-.1c2.1 0 4.4 0 6.5.1v-1.5h-.9c-2.6 0-3.6-.2-4.7-1.8z\\\"/>\"\n\t\t},\n\t\t\"linkedin\": {\n\t\t\t\"body\": \"<path fill=\\\"#0076b2\\\" d=\\\"M116 3H12a8.91 8.91 0 0 0-9 8.8v104.42a8.91 8.91 0 0 0 9 8.78h104a8.93 8.93 0 0 0 9-8.81V11.77A8.93 8.93 0 0 0 116 3\\\"/><path fill=\\\"#fff\\\" d=\\\"M21.06 48.73h18.11V107H21.06zm9.06-29a10.5 10.5 0 1 1-10.5 10.49a10.5 10.5 0 0 1 10.5-10.49m20.41 29h17.36v8h.24c2.42-4.58 8.32-9.41 17.13-9.41C103.6 47.28 107 59.35 107 75v32H88.89V78.65c0-6.75-.12-15.44-9.41-15.44s-10.87 7.36-10.87 15V107H50.53z\\\"/>\"\n\t\t},\n\t\t\"linkedin-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#1d1d1b\\\" d=\\\"M.85 52.73h4.94v17.98h9.14v4.56H.85zM17.11 60h4.74v15.26h-4.74zm2.37-7.59a2.75 2.75 0 1 1-2.75 2.75a2.75 2.75 0 0 1 2.75-2.75m22.21.32h4.74V66.2l5.38-6.22h5.81l-6.22 7.07l6.09 8.22h-5.96l-5.04-7.55h-.06v7.55h-4.74zM24.48 60H29v2.09h.06a5 5 0 0 1 4.49-2.47c4.81 0 5.69 3.16 5.69 7.27v8.38h-4.7v-7.43c0-1.77 0-4-2.47-4s-2.85 1.93-2.85 3.92v7.55h-4.74z\\\"/><path fill=\\\"#1d1d1b\\\" d=\\\"M67.61 65.85a2.84 2.84 0 0 0-2.91-2.91a3.16 3.16 0 0 0-3.35 2.91zm4 6.77a8.35 8.35 0 0 1-6.48 3c-4.74 0-8.54-3.16-8.54-8.07s3.8-8.06 8.54-8.06c4.43 0 7.21 3.16 7.21 8.06v1.49h-11a3.54 3.54 0 0 0 3.57 3a4 4 0 0 0 3.38-1.87zm10.62-8.94A3.89 3.89 0 1 0 86 67.57a3.6 3.6 0 0 0-3.8-3.89m8.2 11.58H86v-2a6 6 0 0 1-4.71 2.4c-4.56 0-7.56-3.29-7.56-7.94c0-4.27 2.66-8.19 7-8.19a5.73 5.73 0 0 1 4.87 2h.06v-8.8h4.74z\\\"/><path fill=\\\"#0076b2\\\" d=\\\"M124.78 48H97.51a2.34 2.34 0 0 0-2.36 2.31v27.38A2.34 2.34 0 0 0 97.51 80h27.27a2.34 2.34 0 0 0 2.37-2.31V50.31a2.34 2.34 0 0 0-2.37-2.31\\\"/><path fill=\\\"#fff\\\" d=\\\"M99.89 60h4.75v15.27h-4.75zm2.37-7.59a2.75 2.75 0 1 1-2.75 2.75a2.75 2.75 0 0 1 2.75-2.75m5.35 7.59h4.55v2.09h.06a5 5 0 0 1 4.49-2.47c4.81 0 5.69 3.16 5.69 7.27v8.38h-4.74v-7.43c0-1.77 0-4-2.47-4s-2.85 1.93-2.85 3.92v7.55h-4.74z\\\"/>\"\n\t\t},\n\t\t\"linux\": {\n\t\t\t\"body\": \"<radialGradient id=\\\"deviconLinux0\\\" cx=\\\"-992.915\\\" cy=\\\"-952.952\\\" r=\\\"43.267\\\" gradientTransform=\\\"matrix(.7 0 0 .35 782.303 444.575)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\".502\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconLinux0)\\\" d=\\\"M117.641 111.137c0 8.362-13.557 15.14-30.28 15.14c-16.722 0-30.279-6.778-30.279-15.14s13.556-15.14 30.278-15.14c16.723.001 30.281 6.779 30.281 15.14\\\"/><radialGradient id=\\\"deviconLinux1\\\" cx=\\\"-770.661\\\" cy=\\\"-951.636\\\" r=\\\"43.267\\\" gradientTransform=\\\"matrix(.719 0 0 .35 595.327 443.952)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\".502\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconLinux1)\\\" d=\\\"M72.546 110.974c0 8.362-13.921 15.14-31.094 15.14s-31.093-6.778-31.093-15.14c0-8.361 13.921-15.14 31.093-15.14c17.173 0 31.094 6.779 31.094 15.14\\\"/><path d=\\\"M108.095 81.343c-1.534 6.324-9.322 19.527-13.459 25.338c-4.138 5.835-3.626 11.089-11.275 9.043c-7.625-2.045-9.763-1.673-17.644-1.208c-7.833.464-6.137-.233-11.042 1.976c-4.882 2.208-21.27-26.78-22.595-32.173c-1.301-5.393-1.93-4.743 1.464-10.577c3.395-5.834 3.883-11.6 8.368-18.667c4.487-7.09 9.671-10.693 9.299-16.109c-1.464-20.108-2.626-30.15 6.301-34.8c8.507-4.417 15.621-1.79 18.434-.279c1.208.651 3.673 1.906 5.509 4.115c1.836 2.162 3.487 5.44 4.417 9.577c1.906 8.299-.791 5.556 1.371 15.064c2.139 9.484 6.485 14.133 11.787 21.642c5.299 7.508 10.832 19.898 9.065 27.058\\\"/><path fill=\\\"#666\\\" d=\\\"M57.644 32.088c1.394-.558 1.16-.632 2.089-2.655c.744-1.557 1.398-2.227 1.375-4.598c0-2.325-.722-3.115-1.814-4.626c-1.045-1.441-2.719-1.511-3.765-1.325c-.604.093-1.395.86-1.93 2c-.348.767-.628 1.744-.651 2.766c-.07 2.743.163 3.79.791 5.649c.743 2.185 2.556 3.325 3.905 2.789\\\"/><path fill=\\\"#6D6D6D\\\" d=\\\"M57.644 32.08c1.385-.554 1.15-.631 2.074-2.641c.739-1.547 1.392-2.215 1.379-4.573c.009-2.309-.698-3.133-1.771-4.585c-1.065-1.403-2.705-1.456-3.743-1.276c-.619.091-1.406.829-1.95 1.927a6.637 6.637 0 0 0-.673 2.755c-.068 2.724.176 3.775.794 5.624c.732 2.173 2.55 3.3 3.89 2.769\\\"/><path fill=\\\"#757575\\\" d=\\\"M57.644 32.071c1.376-.551 1.141-.629 2.059-2.626c.735-1.537 1.387-2.202 1.384-4.547c.017-2.294-.676-3.15-1.731-4.544c-1.082-1.364-2.688-1.401-3.719-1.227c-.633.089-1.417.798-1.969 1.854c-.401.725-.675 1.713-.698 2.745c-.067 2.706.191 3.761.798 5.598c.721 2.16 2.545 3.275 3.876 2.747\\\"/><path fill=\\\"#7C7C7C\\\" d=\\\"M57.644 32.063c1.367-.547 1.132-.628 2.044-2.611c.729-1.528 1.381-2.191 1.389-4.522c.026-2.278-.653-3.167-1.69-4.503c-1.099-1.325-2.673-1.345-3.695-1.178c-.648.088-1.429.769-1.989 1.783c-.427.703-.697 1.697-.72 2.733c-.066 2.687.205 3.747.802 5.573c.707 2.147 2.537 3.248 3.859 2.725\\\"/><path fill=\\\"#848484\\\" d=\\\"M57.644 32.054c1.359-.544 1.123-.627 2.028-2.598c.726-1.518 1.378-2.179 1.395-4.497c.034-2.263-.629-3.185-1.649-4.462c-1.117-1.287-2.658-1.29-3.672-1.129c-.662.086-1.44.737-2.01 1.709c-.453.683-.721 1.682-.744 2.723c-.064 2.668.22 3.732.808 5.548c.694 2.137 2.531 3.227 3.844 2.706\\\"/><path fill=\\\"#8C8C8C\\\" d=\\\"M57.644 32.046c1.35-.54 1.113-.626 2.013-2.583c.721-1.507 1.373-2.167 1.4-4.472c.043-2.248-.608-3.202-1.609-4.422c-1.134-1.248-2.643-1.235-3.649-1.08c-.676.085-1.45.707-2.029 1.637c-.479.662-.744 1.667-.766 2.712c-.063 2.65.233 3.718.81 5.522c.683 2.125 2.526 3.203 3.83 2.686\\\"/><path fill=\\\"#939393\\\" d=\\\"M57.644 32.037c1.34-.536 1.104-.624 1.998-2.569c.715-1.497 1.367-2.154 1.405-4.446c.052-2.232-.584-3.22-1.567-4.381c-1.152-1.209-2.625-1.18-3.625-1.032c-.691.084-1.462.676-2.049 1.565c-.505.641-.768 1.651-.791 2.702c-.06 2.631.249 3.704.815 5.497c.67 2.112 2.517 3.178 3.814 2.664\\\"/><path fill=\\\"#9B9B9B\\\" d=\\\"M57.644 32.028c1.333-.533 1.095-.624 1.983-2.554c.71-1.488 1.361-2.143 1.41-4.421c.061-2.217-.562-3.237-1.528-4.339c-1.168-1.171-2.609-1.125-3.602-.983c-.705.082-1.473.646-2.069 1.492c-.531.619-.79 1.636-.813 2.691c-.06 2.613.261 3.689.818 5.472c.66 2.099 2.514 3.153 3.801 2.642\\\"/><path fill=\\\"#A3A3A3\\\" d=\\\"M57.644 32.02c1.323-.529 1.086-.622 1.968-2.54c.706-1.478 1.356-2.13 1.415-4.396c.069-2.202-.54-3.254-1.487-4.299c-1.187-1.132-2.594-1.07-3.579-.934c-.719.081-1.484.615-2.088 1.42c-.557.598-.814 1.621-.836 2.681c-.059 2.593.275 3.674.822 5.446c.649 2.087 2.507 3.129 3.785 2.622\\\"/><path fill=\\\"#aaa\\\" d=\\\"M57.644 32.011c1.314-.525 1.077-.62 1.953-2.526c.7-1.467 1.351-2.119 1.419-4.37c.078-2.187-.516-3.272-1.445-4.258c-1.205-1.094-2.58-1.015-3.556-.885c-.733.079-1.496.584-2.109 1.347c-.583.578-.837 1.606-.859 2.669c-.057 2.576.289 3.661.826 5.422c.638 2.075 2.5 3.105 3.771 2.601\\\"/><path fill=\\\"#B2B2B2\\\" d=\\\"M57.644 32.002c1.305-.522 1.067-.62 1.937-2.512c.696-1.457 1.346-2.106 1.425-4.345c.086-2.171-.493-3.29-1.404-4.217c-1.223-1.055-2.563-.959-3.532-.836c-.749.077-1.507.554-2.128 1.275c-.61.556-.861 1.591-.883 2.659c-.055 2.556.304 3.646.831 5.396c.624 2.064 2.493 3.081 3.754 2.58\\\"/><path fill=\\\"#BABABA\\\" d=\\\"M57.644 31.994c1.296-.518 1.058-.618 1.922-2.497c.692-1.448 1.341-2.095 1.43-4.32c.096-2.156-.47-3.307-1.363-4.176c-1.239-1.016-2.547-.903-3.508-.787c-.763.075-1.518.522-2.148 1.202c-.637.535-.885 1.576-.906 2.648c-.054 2.538.317 3.632.834 5.371c.611 2.051 2.486 3.055 3.739 2.559\\\"/><path fill=\\\"#C1C1C1\\\" d=\\\"M57.644 31.985c1.288-.515 1.049-.616 1.907-2.483c.686-1.437 1.336-2.082 1.435-4.294c.104-2.141-.448-3.324-1.322-4.135c-1.257-.978-2.533-.849-3.486-.738c-.776.074-1.529.492-2.168 1.13c-.662.513-.907 1.56-.929 2.636c-.052 2.519.333 3.618.839 5.346c.599 2.039 2.481 3.031 3.724 2.538\\\"/><path fill=\\\"#C9C9C9\\\" d=\\\"M57.644 31.976c1.278-.511 1.04-.615 1.892-2.468c.681-1.427 1.33-2.071 1.439-4.269c.114-2.125-.424-3.342-1.281-4.094c-1.274-.939-2.516-.794-3.462-.69c-.79.072-1.54.462-2.188 1.058c-.688.492-.931 1.544-.953 2.626c-.05 2.5.346 3.603.843 5.32c.588 2.027 2.475 3.007 3.71 2.517\\\"/><path fill=\\\"#D1D1D1\\\" d=\\\"M57.645 31.968c1.269-.508 1.029-.614 1.875-2.454c.678-1.417 1.327-2.059 1.446-4.244c.121-2.11-.402-3.359-1.241-4.053c-1.292-.901-2.501-.739-3.438-.641c-.806.07-1.552.431-2.208.985c-.714.471-.955 1.529-.976 2.616c-.049 2.481.36 3.588.847 5.295c.575 2.014 2.467 2.983 3.695 2.496\\\"/><path fill=\\\"#D8D8D8\\\" d=\\\"M57.645 31.96c1.259-.504 1.02-.613 1.86-2.44c.672-1.407 1.321-2.046 1.451-4.218c.129-2.095-.38-3.376-1.199-4.013c-1.311-.862-2.486-.683-3.416-.591c-.819.069-1.563.399-2.228.913c-.74.45-.978 1.514-.999 2.604c-.048 2.463.374 3.575.851 5.27c.565 2.001 2.462 2.957 3.68 2.475\\\"/><path fill=\\\"#E0E0E0\\\" d=\\\"M57.645 31.95c1.251-.5 1.011-.611 1.845-2.425c.667-1.397 1.315-2.034 1.455-4.193c.139-2.079-.356-3.395-1.159-3.972c-1.327-.823-2.47-.628-3.392-.542c-.833.067-1.573.369-2.247.841c-.766.429-1.001 1.499-1.022 2.594c-.047 2.445.389 3.561.855 5.245c.553 1.988 2.455 2.932 3.665 2.452\\\"/><path fill=\\\"#E8E8E8\\\" d=\\\"M57.645 31.942c1.242-.497 1.002-.61 1.83-2.411c.662-1.387 1.311-2.022 1.46-4.167c.147-2.064-.334-3.412-1.118-3.931c-1.345-.784-2.454-.573-3.369-.494a4.872 4.872 0 0 0-2.268.768c-.791.408-1.024 1.483-1.044 2.583c-.045 2.426.403 3.546.858 5.219c.541 1.978 2.45 2.909 3.651 2.433\\\"/><path fill=\\\"#EFEFEF\\\" d=\\\"M57.645 31.934c1.232-.494.992-.609 1.814-2.397c.658-1.376 1.305-2.01 1.466-4.142c.156-2.048-.312-3.429-1.077-3.89c-1.362-.746-2.439-.518-3.345-.444a5.373 5.373 0 0 0-2.287.695c-.818.386-1.048 1.468-1.069 2.572c-.044 2.408.417 3.532.863 5.194c.528 1.965 2.442 2.884 3.635 2.412\\\"/><path fill=\\\"#F7F7F7\\\" d=\\\"M57.645 31.925c1.225-.49.984-.607 1.799-2.383c.653-1.367 1.3-1.998 1.471-4.117c.165-2.033-.289-3.447-1.036-3.849c-1.38-.707-2.423-.462-3.322-.396a6.03 6.03 0 0 0-2.308.623c-.844.366-1.071 1.453-1.092 2.562c-.042 2.388.431 3.518.868 5.168c.516 1.954 2.436 2.861 3.62 2.392\\\"/><path fill=\\\"#fff\\\" d=\\\"M57.645 31.916c1.215-.486.974-.606 1.784-2.368c.648-1.356 1.295-1.986 1.475-4.091c.174-2.018-.266-3.464-.995-3.808c-1.397-.669-2.407-.408-3.298-.348a6.878 6.878 0 0 0-2.326.551c-.871.344-1.095 1.438-1.116 2.551c-.04 2.37.446 3.503.871 5.144c.504 1.94 2.431 2.835 3.605 2.369\\\"/><path d=\\\"M56.342 22.627c.698 0 1.581.465 1.999 1.092c.442.628.767 1.511.767 2.511c0 1.488-.163 3.138-1.046 3.649c-.279.163-.884.302-1.232.302c-.79 0-.86-.512-1.604-1.279c-.255-.279-1.023-1.627-1.023-2.743c0-.697-.163-1.697.441-2.581c.42-.649.954-.951 1.698-.951m-.186 1.247c.272-.421 1.363-.223 1.759.645c.397.868.322 2.752.049 2.851c-.718.223-.495-.818-1.115-1.76c-.619-.892-.966-1.314-.693-1.736\\\"/><path fill=\\\"#070707\\\" d=\\\"M56.173 23.893c.269-.416 1.346-.22 1.737.636c.392.856.318 2.717.049 2.814c-.709.22-.489-.808-1.101-1.738c-.611-.88-.954-1.296-.685-1.712\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M56.191 23.91c.266-.411 1.329-.217 1.715.628c.387.845.314 2.682.049 2.778c-.701.217-.484-.797-1.088-1.715c-.604-.869-.942-1.28-.676-1.691\\\"/><path fill=\\\"#161616\\\" d=\\\"M56.208 23.928c.263-.406 1.312-.215 1.692.62c.382.834.311 2.647.048 2.742c-.692.214-.477-.788-1.073-1.693c-.595-.858-.929-1.263-.667-1.669\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M56.226 23.945c.258-.399 1.293-.211 1.67.612c.376.824.306 2.613.047 2.707c-.683.211-.471-.776-1.059-1.67c-.587-.848-.917-1.248-.658-1.649\\\"/><path fill=\\\"#262626\\\" d=\\\"M56.243 23.963c.255-.395 1.277-.208 1.648.604c.371.812.301 2.577.046 2.67c-.672.209-.464-.767-1.044-1.648c-.58-.836-.905-1.231-.65-1.626\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M56.26 23.981c.253-.39 1.26-.206 1.627.595c.366.802.297 2.542.046 2.634c-.665.206-.458-.756-1.031-1.627c-.572-.823-.894-1.212-.642-1.602\\\"/><path fill=\\\"#353535\\\" d=\\\"M56.278 23.999c.249-.384 1.243-.203 1.604.587c.361.791.293 2.507.046 2.598c-.656.204-.452-.745-1.017-1.604c-.565-.813-.882-1.197-.633-1.581\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M56.295 24.017c.246-.378 1.226-.2 1.582.579c.356.78.29 2.472.045 2.562c-.646.201-.446-.735-1.002-1.581c-.558-.802-.87-1.181-.625-1.56\\\"/><path fill=\\\"#444\\\" d=\\\"M56.313 24.034c.241-.373 1.208-.197 1.559.571c.352.769.286 2.438.044 2.526c-.637.198-.439-.725-.988-1.559c-.549-.791-.857-1.164-.615-1.538\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M56.33 24.052c.238-.368 1.19-.194 1.537.563c.347.758.281 2.403.044 2.489c-.628.195-.433-.714-.974-1.537c-.543-.779-.845-1.147-.607-1.515\\\"/><path fill=\\\"#545454\\\" d=\\\"M56.347 24.07c.235-.362 1.174-.192 1.515.554c.341.747.276 2.368.042 2.454c-.619.191-.426-.705-.96-1.515c-.533-.767-.831-1.13-.597-1.493\\\"/><path fill=\\\"#5B5B5B\\\" d=\\\"M56.365 24.088c.231-.357 1.157-.189 1.493.546c.336.735.273 2.333.042 2.417c-.609.189-.42-.694-.946-1.492c-.526-.756-.82-1.114-.589-1.471\\\"/><path fill=\\\"#636363\\\" d=\\\"M56.383 24.106c.228-.352 1.139-.186 1.47.539c.332.725.269 2.298.041 2.381c-.6.187-.413-.684-.931-1.47c-.518-.746-.808-1.098-.58-1.45\\\"/><path fill=\\\"#6B6B6B\\\" d=\\\"M56.4 24.124c.224-.347 1.122-.183 1.448.53c.326.714.265 2.263.041 2.345c-.591.184-.408-.673-.918-1.447c-.51-.735-.795-1.082-.571-1.428\\\"/><path fill=\\\"#727272\\\" d=\\\"M56.417 24.141c.221-.341 1.104-.181 1.425.522c.321.703.261 2.229.04 2.308c-.582.181-.401-.663-.903-1.425c-.502-.722-.783-1.064-.562-1.405\\\"/><path fill=\\\"#7A7A7A\\\" d=\\\"M56.434 24.159c.218-.336 1.087-.178 1.403.514c.316.692.256 2.193.04 2.272c-.574.178-.395-.653-.889-1.403c-.494-.711-.771-1.047-.554-1.383\\\"/><path fill=\\\"#828282\\\" d=\\\"M56.452 24.177c.213-.331 1.07-.175 1.38.505c.312.681.252 2.158.039 2.236c-.564.175-.388-.642-.875-1.38c-.486-.699-.758-1.031-.544-1.361\\\"/><path fill=\\\"#898989\\\" d=\\\"M56.47 24.194c.21-.325 1.053-.172 1.358.498c.307.669.25 2.124.039 2.201c-.555.172-.383-.632-.861-1.358c-.479-.69-.746-1.015-.536-1.341\\\"/><path fill=\\\"#919191\\\" d=\\\"M56.487 24.212c.207-.32 1.035-.169 1.335.49c.301.658.246 2.088.038 2.164c-.546.17-.376-.621-.846-1.335c-.471-.678-.734-.999-.527-1.319\\\"/><path fill=\\\"#999\\\" d=\\\"M56.504 24.23c.204-.314 1.018-.167 1.314.481c.295.647.239 2.054.036 2.128c-.536.167-.369-.611-.832-1.314c-.462-.666-.721-.98-.518-1.295\\\"/><path fill=\\\"#666\\\" d=\\\"M72.056 32.391c3.487-.372 4.719-1.72 5.347-4.068c.558-2.092.582-4.417-.976-7.137c-1.465-2.603-2.301-3.022-4.417-3.185c-3.254-.278-4.789 1.999-5.51 3.626c-.767 1.767-.604 1.511-.558 3.743c.047 2.348 1.37 3.002 2.185 4.467c.813 1.442 3.534 2.577 3.929 2.554\\\"/><path fill=\\\"#6D6D6D\\\" d=\\\"M72.058 32.377c3.474-.365 4.719-1.729 5.332-4.058c.549-2.106.576-4.419-.969-7.075c-1.432-2.517-2.272-2.932-4.363-3.094c-3.244-.278-4.824 1.896-5.547 3.511c-.744 1.705-.606 1.523-.557 3.726c.052 2.346 1.378 2.978 2.191 4.442c.813 1.446 3.518 2.572 3.913 2.548\\\"/><path fill=\\\"#757575\\\" d=\\\"M72.059 32.364c3.461-.358 4.721-1.737 5.318-4.048c.541-2.121.572-4.42-.962-7.013c-1.398-2.431-2.243-2.842-4.308-3.002c-3.235-.277-4.86 1.792-5.585 3.395c-.719 1.643-.608 1.536-.556 3.708c.057 2.346 1.385 2.953 2.196 4.419c.813 1.449 3.503 2.565 3.897 2.541\\\"/><path fill=\\\"#7C7C7C\\\" d=\\\"M72.061 32.351c3.447-.352 4.721-1.745 5.303-4.038c.532-2.136.567-4.423-.955-6.951c-1.365-2.345-2.213-2.751-4.254-2.911c-3.224-.275-4.894 1.69-5.622 3.28c-.697 1.581-.611 1.548-.555 3.691c.062 2.344 1.391 2.929 2.202 4.395c.813 1.451 3.486 2.558 3.881 2.534\\\"/><path fill=\\\"#848484\\\" d=\\\"M72.063 32.337c3.434-.345 4.721-1.753 5.287-4.027c.524-2.151.563-4.425-.947-6.889c-1.333-2.259-2.186-2.661-4.201-2.819c-3.214-.275-4.929 1.587-5.66 3.164c-.672 1.518-.612 1.56-.554 3.674c.068 2.343 1.399 2.904 2.209 4.37c.815 1.455 3.471 2.552 3.866 2.527\\\"/><path fill=\\\"#8C8C8C\\\" d=\\\"M72.065 32.324c3.42-.338 4.721-1.762 5.272-4.018c.516-2.165.558-4.426-.94-6.827c-1.299-2.172-2.156-2.571-4.146-2.727c-3.205-.273-4.964 1.484-5.697 3.048c-.649 1.457-.615 1.573-.553 3.658c.073 2.341 1.406 2.879 2.214 4.346c.813 1.458 3.455 2.545 3.85 2.52\\\"/><path fill=\\\"#939393\\\" d=\\\"M72.066 32.311c3.407-.332 4.724-1.77 5.258-4.008c.507-2.179.553-4.428-.934-6.765c-1.266-2.086-2.125-2.48-4.09-2.636c-3.194-.273-5 1.381-5.736 2.933c-.625 1.394-.616 1.585-.552 3.64c.078 2.34 1.413 2.855 2.221 4.322c.813 1.461 3.439 2.538 3.833 2.514\\\"/><path fill=\\\"#9B9B9B\\\" d=\\\"M72.068 32.297c3.393-.326 4.723-1.778 5.243-3.998c.498-2.194.547-4.43-.926-6.704c-1.233-2-2.098-2.39-4.038-2.544c-3.184-.271-5.034 1.277-5.773 2.817c-.602 1.333-.619 1.598-.551 3.624c.083 2.339 1.42 2.831 2.226 4.299c.815 1.464 3.424 2.532 3.819 2.506\\\"/><path fill=\\\"#A3A3A3\\\" d=\\\"M72.069 32.284c3.381-.318 4.724-1.787 5.23-3.988c.489-2.209.542-4.432-.921-6.641c-1.2-1.914-2.068-2.301-3.982-2.453c-3.174-.271-5.069 1.174-5.811 2.702c-.579 1.269-.621 1.61-.551 3.606c.089 2.337 1.427 2.805 2.233 4.274c.815 1.468 3.408 2.525 3.802 2.5\\\"/><path fill=\\\"#aaa\\\" d=\\\"M72.072 32.27c3.366-.312 4.724-1.795 5.213-3.978c.481-2.224.538-4.434-.912-6.58c-1.167-1.828-2.04-2.209-3.929-2.361c-3.164-.27-5.104 1.071-5.848 2.586c-.555 1.208-.623 1.622-.549 3.589c.093 2.336 1.433 2.781 2.239 4.25c.814 1.473 3.39 2.52 3.786 2.494\\\"/><path fill=\\\"#B2B2B2\\\" d=\\\"M72.073 32.257c3.353-.305 4.725-1.803 5.199-3.967c.472-2.238.533-4.436-.906-6.519c-1.134-1.741-2.01-2.12-3.874-2.269c-3.153-.269-5.138.968-5.886 2.47c-.531 1.146-.625 1.635-.548 3.572c.099 2.335 1.441 2.756 2.246 4.226c.813 1.475 3.374 2.513 3.769 2.487\\\"/><path fill=\\\"#BABABA\\\" d=\\\"M72.075 32.243c3.34-.298 4.726-1.811 5.184-3.958c.464-2.252.529-4.438-.898-6.456c-1.101-1.656-1.981-2.03-3.82-2.178c-3.144-.268-5.173.865-5.923 2.354c-.507 1.084-.627 1.648-.547 3.555c.104 2.334 1.448 2.732 2.251 4.202c.813 1.48 3.358 2.508 3.753 2.481\\\"/><path fill=\\\"#C1C1C1\\\" d=\\\"M72.076 32.231c3.327-.292 4.727-1.82 5.17-3.948c.455-2.268.524-4.439-.891-6.395c-1.068-1.569-1.952-1.939-3.766-2.086c-3.133-.267-5.21.761-5.962 2.239c-.483 1.021-.627 1.66-.545 3.538c.109 2.332 1.455 2.708 2.257 4.177c.814 1.482 3.343 2.501 3.737 2.475\\\"/><path fill=\\\"#C9C9C9\\\" d=\\\"M72.078 32.217c3.313-.285 4.727-1.829 5.155-3.938c.446-2.282.518-4.441-.884-6.332c-1.035-1.483-1.922-1.849-3.711-1.995c-3.124-.266-5.244.659-6 2.124c-.46.959-.631 1.672-.545 3.521c.115 2.331 1.461 2.682 2.263 4.153c.814 1.485 3.327 2.494 3.722 2.467\\\"/><path fill=\\\"#D1D1D1\\\" d=\\\"M72.079 32.203c3.3-.278 4.728-1.836 5.141-3.928c.438-2.296.513-4.443-.877-6.27c-1.002-1.396-1.893-1.759-3.657-1.903c-3.114-.265-5.279.555-6.037 2.008c-.437.897-.633 1.685-.544 3.504c.119 2.329 1.469 2.658 2.27 4.129c.813 1.489 3.31 2.488 3.704 2.46\\\"/><path fill=\\\"#D8D8D8\\\" d=\\\"M72.081 32.19c3.286-.272 4.728-1.845 5.126-3.918c.429-2.311.509-4.445-.87-6.208c-.969-1.311-1.864-1.668-3.604-1.812c-3.103-.263-5.314.453-6.074 1.893c-.413.835-.634 1.697-.543 3.487c.125 2.328 1.476 2.633 2.276 4.105c.814 1.492 3.295 2.481 3.689 2.453\\\"/><path fill=\\\"#E0E0E0\\\" d=\\\"M72.083 32.176c3.273-.264 4.729-1.853 5.111-3.907c.42-2.326.504-4.447-.863-6.147c-.936-1.224-1.835-1.578-3.548-1.72c-3.094-.262-5.349.349-6.112 1.776c-.389.773-.637 1.709-.542 3.47c.13 2.327 1.482 2.609 2.281 4.082c.814 1.495 3.279 2.475 3.673 2.446\\\"/><path fill=\\\"#E8E8E8\\\" d=\\\"M72.085 32.164c3.259-.259 4.729-1.862 5.097-3.897c.411-2.341.498-4.449-.856-6.084c-.903-1.138-1.805-1.488-3.495-1.628c-3.083-.262-5.384.246-6.149 1.661c-.366.711-.639 1.722-.541 3.453c.135 2.325 1.489 2.583 2.287 4.057c.814 1.495 3.262 2.465 3.657 2.438\\\"/><path fill=\\\"#EFEFEF\\\" d=\\\"M72.086 32.149c3.247-.251 4.73-1.87 5.082-3.887c.404-2.355.495-4.451-.848-6.022c-.87-1.052-1.776-1.398-3.441-1.538c-3.072-.26-5.418.143-6.187 1.545c-.342.649-.641 1.734-.54 3.436c.141 2.324 1.497 2.56 2.294 4.033c.813 1.502 3.246 2.463 3.64 2.433\\\"/><path fill=\\\"#F7F7F7\\\" d=\\\"M72.088 32.136c3.233-.244 4.731-1.878 5.067-3.877c.395-2.369.49-4.453-.841-5.96c-.837-.965-1.748-1.308-3.386-1.445c-3.062-.26-5.455.04-6.225 1.429c-.318.587-.642 1.748-.539 3.419c.146 2.323 1.504 2.535 2.3 4.009c.813 1.504 3.23 2.455 3.624 2.425\\\"/><path fill=\\\"#fff\\\" d=\\\"M72.089 32.123c3.221-.238 4.732-1.887 5.053-3.868c.386-2.384.485-4.455-.834-5.898c-.803-.879-1.718-1.218-3.332-1.354c-3.053-.258-5.488-.062-6.262 1.314c-.295.524-.645 1.759-.538 3.402c.151 2.321 1.511 2.51 2.306 3.985c.813 1.507 3.213 2.448 3.607 2.419\\\"/><path d=\\\"M71.778 22.534c1.743 0 2.766 1.558 3.114 3.557c.14.907-.07 1.953-.627 2.674c-.628.836-1.744 1.348-2.649 1.348c-.86 0-1.837.14-2.348-.558c-.511-.72-.628-2.325-.628-3.464c0-1.278.373-2.185 1.023-2.906c.487-.535 1.37-.651 2.115-.651m.111.718c.316-.211.843 0 1.45.685c.658.738.948 1.317.158 1.739c-.606.316-.79-.633-1.16-1.028c-.579-.632-1.08-.975-.448-1.396\\\"/><path fill=\\\"#070707\\\" d=\\\"M71.901 23.271c.311-.209.832 0 1.428.675c.648.727.925 1.298.156 1.712c-.593.316-.776-.623-1.139-1.012c-.57-.622-1.063-.957-.445-1.375\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M71.914 23.29c.303-.209.818 0 1.407.665c.637.715.901 1.278.152 1.687c-.581.314-.761-.614-1.118-.997c-.56-.612-1.047-.941-.441-1.355\\\"/><path fill=\\\"#161616\\\" d=\\\"M71.927 23.308c.296-.207.806 0 1.385.655c.629.705.878 1.258.151 1.661c-.568.314-.748-.604-1.097-.981c-.554-.601-1.032-.924-.439-1.335\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M71.94 23.327c.291-.206.793 0 1.363.645c.62.693.855 1.239.148 1.635c-.555.313-.732-.595-1.076-.966c-.544-.591-1.014-.906-.435-1.314\\\"/><path fill=\\\"#262626\\\" d=\\\"M71.953 23.346c.283-.204.78 0 1.341.634c.61.684.833 1.219.147 1.609c-.543.312-.719-.584-1.055-.951c-.536-.579-.999-.887-.433-1.292\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M71.966 23.365c.277-.203.769 0 1.32.624c.6.672.808 1.2.144 1.584c-.53.31-.704-.576-1.034-.936c-.528-.57-.984-.871-.43-1.272\\\"/><path fill=\\\"#353535\\\" d=\\\"M71.979 23.384c.271-.202.755 0 1.298.614c.589.661.785 1.18.142 1.558c-.517.309-.688-.567-1.013-.921c-.518-.56-.968-.854-.427-1.251\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M71.992 23.403c.264-.201.743 0 1.276.603c.581.651.763 1.162.14 1.533c-.504.309-.674-.557-.992-.905c-.511-.55-.952-.837-.424-1.231\\\"/><path fill=\\\"#444\\\" d=\\\"M72.004 23.422c.258-.199.731 0 1.256.594c.571.639.738 1.141.137 1.506c-.492.308-.66-.548-.971-.89c-.502-.539-.936-.819-.422-1.21\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M72.017 23.441c.251-.198.719 0 1.234.583c.561.628.716 1.122.135 1.481c-.479.306-.646-.539-.95-.875c-.494-.529-.92-.802-.419-1.189\\\"/><path fill=\\\"#545454\\\" d=\\\"M72.03 23.46c.245-.197.706 0 1.213.573c.55.617.691 1.103.132 1.455c-.466.305-.631-.529-.929-.86c-.485-.518-.904-.785-.416-1.168\\\"/><path fill=\\\"#5B5B5B\\\" d=\\\"M72.043 23.479c.238-.196.694 0 1.192.563c.541.606.667 1.083.129 1.429c-.454.305-.617-.52-.908-.844c-.477-.509-.888-.768-.413-1.148\\\"/><path fill=\\\"#636363\\\" d=\\\"M72.056 23.498c.231-.195.681 0 1.169.553c.532.595.646 1.063.128 1.404c-.44.303-.602-.511-.887-.83c-.468-.498-.872-.751-.41-1.127\\\"/><path fill=\\\"#6B6B6B\\\" d=\\\"M72.069 23.517c.224-.193.668 0 1.148.542c.521.585.622 1.044.125 1.378c-.428.303-.586-.501-.866-.814c-.46-.488-.856-.733-.407-1.106\\\"/><path fill=\\\"#727272\\\" d=\\\"M72.082 23.535c.218-.191.656 0 1.127.533c.512.574.599 1.024.123 1.352c-.416.302-.573-.492-.846-.798c-.451-.478-.84-.717-.404-1.087\\\"/><path fill=\\\"#7A7A7A\\\" d=\\\"M72.095 23.555c.211-.19.643 0 1.104.522c.502.563.576 1.004.121 1.326c-.403.301-.559-.482-.825-.783c-.441-.468-.823-.7-.4-1.065\\\"/><path fill=\\\"#828282\\\" d=\\\"M72.108 23.574c.205-.189.63 0 1.083.512c.493.551.552.985.119 1.299c-.39.3-.544-.472-.804-.767c-.434-.457-.808-.682-.398-1.044\\\"/><path fill=\\\"#898989\\\" d=\\\"M72.121 23.592c.198-.188.618 0 1.062.502c.482.541.528.965.116 1.274c-.378.299-.53-.463-.784-.752c-.425-.447-.792-.664-.394-1.024\\\"/><path fill=\\\"#919191\\\" d=\\\"M72.133 23.611c.193-.187.606 0 1.041.492c.473.53.505.946.114 1.249c-.364.298-.515-.454-.761-.737c-.418-.437-.777-.648-.394-1.004\\\"/><path fill=\\\"#999\\\" d=\\\"M72.147 23.631c.185-.186.592 0 1.018.481c.464.519.482.926.112 1.223c-.353.297-.501-.444-.742-.722c-.407-.426-.759-.631-.388-.982\\\"/><path d=\\\"M63.141 24.293c.546-.211.972-.223 1.817.334c1.022.674.551 1.694-.251 1.485c-.693-.179-.78-.22-1.417-.351c-1.002-.207-1.175-1.071-.149-1.468\\\"/><path fill=\\\"#050505\\\" d=\\\"M63.162 24.335c.536-.204.96-.212 1.793.331c.99.648.534 1.618-.26 1.415c-.688-.177-.757-.212-1.383-.34c-.986-.205-1.157-1.025-.15-1.406\\\"/><path fill=\\\"#0A0A0A\\\" d=\\\"M63.184 24.376c.524-.195.947-.201 1.77.328c.957.623.517 1.543-.269 1.343c-.684-.174-.733-.203-1.349-.329c-.971-.2-1.14-.977-.152-1.342\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M63.205 24.417c.512-.187.934-.189 1.746.324c.924.598.5 1.468-.277 1.271c-.679-.171-.71-.195-1.315-.317c-.956-.194-1.122-.928-.154-1.278\\\"/><path fill=\\\"#141414\\\" d=\\\"M63.226 24.457c.501-.178.922-.178 1.721.321c.893.572.484 1.393-.284 1.2c-.676-.168-.688-.187-1.281-.306c-.941-.19-1.106-.879-.156-1.215\\\"/><path fill=\\\"#191919\\\" d=\\\"M63.247 24.499c.491-.171.91-.168 1.697.317c.86.546.468 1.317-.292 1.129c-.671-.166-.666-.179-1.247-.295c-.926-.186-1.088-.831-.158-1.151\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M63.269 24.539c.478-.163.896-.156 1.672.314c.828.521.451 1.242-.299 1.058c-.667-.163-.643-.171-1.213-.285c-.912-.179-1.072-.782-.16-1.087\\\"/><path fill=\\\"#232323\\\" d=\\\"M63.29 24.58c.467-.154.884-.145 1.649.312c.795.496.434 1.167-.308.986c-.664-.16-.62-.163-1.18-.273c-.896-.176-1.053-.735-.161-1.025\\\"/><path fill=\\\"#282828\\\" d=\\\"M63.311 24.621c.456-.146.872-.135 1.625.308c.762.47.417 1.091-.316.916c-.659-.157-.596-.155-1.145-.263c-.882-.171-1.036-.686-.164-.961\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M63.332 24.662c.445-.139.86-.124 1.602.304c.731.445.401 1.016-.325.843c-.654-.154-.572-.146-1.11-.25c-.867-.165-1.02-.638-.167-.897\\\"/><path fill=\\\"#333\\\" d=\\\"M63.354 24.703c.433-.13.847-.112 1.577.301c.698.418.384.94-.333.772c-.65-.152-.55-.138-1.077-.24c-.852-.16-1.001-.589-.167-.833\\\"/><path fill=\\\"#383838\\\" d=\\\"M63.375 24.743c.422-.122.834-.101 1.553.298c.667.394.368.865-.34.701c-.646-.148-.527-.13-1.043-.229c-.838-.156-.984-.54-.17-.77\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M63.396 24.784c.411-.113.822-.09 1.53.295c.633.368.352.791-.349.63c-.642-.146-.504-.122-1.008-.218c-.824-.152-.967-.492-.173-.707\\\"/><path fill=\\\"#424242\\\" d=\\\"M63.418 24.826c.399-.106.81-.08 1.505.291c.601.343.334.715-.357.558c-.638-.143-.481-.114-.974-.207c-.809-.146-.951-.444-.174-.642\\\"/><path fill=\\\"#474747\\\" d=\\\"M63.439 24.866c.388-.098.796-.068 1.481.288c.569.317.318.64-.365.487c-.634-.14-.457-.105-.94-.196c-.794-.141-.933-.395-.176-.579\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M63.46 24.908c.377-.089.785-.057 1.457.284c.536.292.302.564-.373.416c-.629-.138-.434-.097-.905-.185c-.78-.136-.916-.347-.179-.515\\\"/><path fill=\\\"#515151\\\" d=\\\"M63.482 24.948c.365-.081.771-.046 1.432.281c.504.266.285.489-.381.345c-.625-.135-.411-.089-.871-.174c-.764-.131-.898-.298-.18-.452\\\"/><path fill=\\\"#565656\\\" d=\\\"M63.503 24.989c.354-.073.758-.035 1.408.278c.472.241.269.414-.389.273c-.621-.132-.388-.081-.837-.162c-.749-.127-.881-.251-.182-.389\\\"/><path fill=\\\"#5B5B5B\\\" d=\\\"M63.524 25.03c.343-.065.747-.023 1.385.275c.438.215.25.338-.398.202c-.617-.129-.364-.073-.803-.151c-.734-.123-.863-.203-.184-.326\\\"/><path fill=\\\"#606060\\\" d=\\\"M63.545 25.071c.332-.057.734-.013 1.361.271c.407.189.235.263-.406.13c-.612-.126-.341-.064-.769-.14c-.719-.117-.846-.153-.186-.261\\\"/><path fill=\\\"#666\\\" d=\\\"M63.567 25.111c.32-.049.72-.001 1.336.268c.375.164.219.188-.414.059c-.607-.124-.318-.056-.734-.129c-.705-.111-.829-.104-.188-.198M61.363 43.13c-3.022.117-7.811-8.345-7.927-4.834c-.093 2.975.07 2.929.07 5.811c0 1.93-.883 2.069-2.79 4.975c-.977 1.535-1.743 3.185-2.348 4.858c-.372 1-.72 2.046-1 3.069l-.441 1.557c-.953 3.51-4.347 7.835-5.137 11.345c-.792 3.487-1.72 5.718-1.604 10.391c.117 4.673.163 3.324 1.581 4.487c1.395 1.163 2.836 2.255 5.044 4.208c2.325 2.022 7.16 5.556 7.811 6.648c.697 1.116.674 3.627.255 4.44c-.418.79-4.068 1.232-4.045 1.232c-.023 0 3.185 4.416 3.813 5.043c.604.604 3.208 3.511 13.808 1.535c5.975-1.116 10.6-4.463 13.948-7.695c4.323-4.208 2.138-5.416 2.696-7.532c.814-3.045 3.464-4.184 4.068-7.625c.07-.488.232-.86.674-1.58c.674-1.023.512-3.046.512-4.905c0-4.835-.559-9.763-1.674-13.389c-1.023-3.395-2.649-5.765-4.045-8.834c-2.789-6.114-2.649-8.857-5.137-12.762c-2.836-4.51-1.441-7.508-5.207-7.323c-4.696.255-8.485 6.694-12.925 6.88\\\"/><path fill=\\\"#6D6D6D\\\" d=\\\"M61.357 43.481c-2.996.114-7.666-8.237-7.827-4.901c-.102 2.827.032 2.802.01 5.568c-.049 1.895-.954 2.143-2.818 4.998c-.972 1.538-1.703 3.168-2.257 4.804c-.313 1.05-.504 2.073-.785 3.075c-.135.53-.484 1.029-.706 1.628c-1.051 3.481-4.374 7.807-5.153 11.261c-.796 3.49-1.734 5.713-1.602 10.377c.118 4.52.127 3.286 1.541 4.46c1.383 1.168 2.854 2.282 5.056 4.23c2.319 2.017 7.18 5.559 7.827 6.647c.694 1.112.688 3.654.273 4.463c-.416.787-4.062 1.251-4.039 1.251c-.023 0 3.168 4.38 3.796 5.007c.604.604 3.196 3.49 13.779 1.519c5.98-1.115 10.694-4.44 13.908-7.702c4.128-4.12 1.972-5.415 2.527-7.519c.811-3.041 3.64-4.186 4.243-7.621c.07-.487.243-.857.683-1.575c.676-1.034.504-3.05.511-4.903c.021-4.852-.551-9.762-1.667-13.377c-1.023-3.384-2.648-5.752-4.04-8.816c-2.785-6.104-2.654-8.852-5.146-12.745c-2.771-4.395-1.485-7.291-5.169-7.1c-4.637.269-8.512 6.787-12.945 6.971\\\"/><path fill=\\\"#757575\\\" d=\\\"M61.351 43.831c-2.971.111-7.522-8.128-7.726-4.967c-.112 2.678-.006 2.675-.051 5.325c-.097 1.861-1.023 2.217-2.845 5.022c-.969 1.542-1.662 3.151-2.167 4.748c-.253 1.101-.288 2.101-.57 3.083c-.152.549-.641 1.012-.969 1.698c-1.147 3.451-4.398 7.781-5.169 11.178c-.801 3.493-1.747 5.708-1.599 10.362c.12 4.368.092 3.248 1.501 4.437c1.37 1.172 2.871 2.31 5.069 4.252c2.313 2.012 7.199 5.561 7.844 6.646c.691 1.108.701 3.681.288 4.486c-.41.784-4.054 1.27-4.03 1.27c-.023 0 3.153 4.343 3.779 4.97c.603.603 3.186 3.469 13.75 1.502c5.988-1.115 10.789-4.417 13.869-7.709c3.935-4.034 1.805-5.415 2.357-7.509c.809-3.034 3.818-4.185 4.419-7.615c.069-.484.254-.854.69-1.567c.679-1.044.497-3.055.51-4.9c.043-4.868-.543-9.76-1.658-13.365c-1.025-3.375-2.647-5.74-4.037-8.798c-2.779-6.095-2.657-8.846-5.15-12.728c-2.708-4.28-1.53-7.074-5.131-6.877c-4.588.277-8.548 6.875-12.974 7.056\\\"/><path fill=\\\"#7C7C7C\\\" d=\\\"M61.346 44.182c-2.946.108-7.378-8.02-7.627-5.033c-.119 2.529-.042 2.548-.11 5.083c-.146 1.827-1.094 2.291-2.873 5.045a18.713 18.713 0 0 0-2.078 4.693c-.193 1.15-.07 2.128-.354 3.089c-.17.567-.799.995-1.233 1.769c-1.245 3.421-4.424 7.754-5.185 11.094c-.807 3.496-1.76 5.702-1.598 10.349c.123 4.216.057 3.209 1.462 4.41c1.359 1.178 2.89 2.338 5.083 4.276c2.307 2.007 7.218 5.563 7.86 6.645c.688 1.104.715 3.71.305 4.51c-.406.78-4.047 1.288-4.024 1.288c-.023 0 3.137 4.307 3.762 4.931c.603.603 3.174 3.449 13.721 1.488c5.994-1.115 10.882-4.394 13.83-7.717c3.74-3.946 1.638-5.415 2.188-7.498c.806-3.029 3.996-4.184 4.594-7.61c.069-.483.265-.85.698-1.561c.681-1.057.489-3.061.509-4.899c.065-4.883-.535-9.757-1.649-13.352c-1.025-3.366-2.646-5.728-4.032-8.78c-2.774-6.085-2.663-8.841-5.156-12.71c-2.646-4.166-1.575-6.857-5.095-6.655c-4.534.289-8.58 6.966-12.998 7.145\\\"/><path fill=\\\"#848484\\\" d=\\\"M61.34 44.532c-2.919.107-7.234-7.911-7.526-5.099c-.128 2.381-.08 2.421-.17 4.84c-.194 1.792-1.163 2.365-2.9 5.069a17.056 17.056 0 0 0-1.987 4.638c-.134 1.202.147 2.156-.14 3.097c-.188.586-.957.977-1.498 1.839c-1.341 3.391-4.45 7.728-5.199 11.011c-.813 3.5-1.774 5.696-1.596 10.334c.125 4.064.022 3.17 1.423 4.385c1.347 1.184 2.907 2.365 5.095 4.298c2.302 2.002 7.238 5.566 7.876 6.643c.685 1.101.729 3.738.322 4.534c-.403.777-4.042 1.307-4.019 1.307c-.023 0 3.122 4.271 3.746 4.895c.601.601 3.164 3.427 13.692 1.472c6-1.114 10.977-4.372 13.791-7.725c3.544-3.859 1.471-5.414 2.017-7.486c.805-3.025 4.173-4.185 4.77-7.606c.07-.481.276-.847.707-1.554c.683-1.067.481-3.065.509-4.897c.086-4.898-.529-9.755-1.643-13.339c-1.027-3.357-2.645-5.715-4.028-8.763c-2.769-6.076-2.667-8.835-5.163-12.692c-2.581-4.051-1.619-6.64-5.057-6.432c-4.479.298-8.61 7.055-13.022 7.231\\\"/><path fill=\\\"#8C8C8C\\\" d=\\\"M61.335 44.882c-2.894.104-7.091-7.802-7.427-5.164c-.138 2.232-.118 2.293-.23 4.596c-.242 1.758-1.233 2.439-2.929 5.094a15.58 15.58 0 0 0-1.896 4.583c-.076 1.252.363 2.184.075 3.104c-.206.604-1.114.959-1.761 1.909c-1.438 3.362-4.476 7.702-5.215 10.928c-.818 3.502-1.787 5.69-1.593 10.319c.127 3.912-.014 3.132 1.383 4.36c1.334 1.188 2.924 2.392 5.105 4.32c2.298 1.998 7.259 5.569 7.894 6.643c.681 1.097.742 3.765.338 4.557c-.398.773-4.035 1.325-4.012 1.325c-.023 0 3.106 4.234 3.73 4.857c.601.6 3.153 3.407 13.664 1.456c6.007-1.113 11.07-4.348 13.75-7.732c3.35-3.772 1.305-5.413 1.847-7.475c.802-3.019 4.35-4.184 4.945-7.601c.069-.479.288-.843.714-1.547c.687-1.078.474-3.069.508-4.894c.107-4.915-.52-9.753-1.635-13.327c-1.027-3.349-2.643-5.703-4.022-8.745c-2.765-6.066-2.671-8.831-5.17-12.675c-2.517-3.937-1.663-6.423-5.019-6.21c-4.425.31-8.64 7.146-13.044 7.319\\\"/><path fill=\\\"#939393\\\" d=\\\"M61.329 45.232c-2.869.102-6.947-7.694-7.326-5.23c-.147 2.083-.155 2.166-.291 4.353c-.292 1.724-1.304 2.513-2.957 5.117a14.206 14.206 0 0 0-1.806 4.527c-.016 1.303.581 2.212.291 3.111c-.224.623-1.272.942-2.025 1.979c-1.536 3.332-4.501 7.675-5.231 10.844c-.825 3.505-1.801 5.685-1.591 10.306c.128 3.759-.049 3.094 1.343 4.334c1.322 1.193 2.942 2.419 5.119 4.343c2.292 1.992 7.277 5.571 7.91 6.641c.678 1.094.756 3.793.355 4.581c-.396.771-4.029 1.344-4.005 1.344c-.023 0 3.09 4.197 3.712 4.82c.6.599 3.141 3.386 13.635 1.44c6.013-1.113 11.164-4.325 13.711-7.74c3.155-3.685 1.137-5.413 1.676-7.463c.8-3.013 4.528-4.184 5.121-7.596c.069-.478.298-.84.722-1.542c.689-1.089.467-3.074.507-4.892c.128-4.931-.512-9.751-1.626-13.314c-1.028-3.339-2.643-5.69-4.019-8.727c-2.759-6.057-2.675-8.825-5.176-12.658c-2.454-3.821-1.708-6.206-4.981-5.987c-4.371.323-8.671 7.239-13.068 7.409\\\"/><path fill=\\\"#9B9B9B\\\" d=\\\"M61.323 45.583c-2.842.1-6.802-7.585-7.226-5.295c-.156 1.935-.192 2.039-.351 4.11c-.34 1.689-1.373 2.587-2.984 5.14a12.977 12.977 0 0 0-1.716 4.473c.044 1.354.798 2.239.506 3.118c-.242.641-1.43.925-2.289 2.049c-1.633 3.303-4.527 7.648-5.247 10.761c-.83 3.509-1.814 5.679-1.589 10.292c.131 3.607-.083 3.056 1.305 4.309c1.31 1.199 2.959 2.447 5.131 4.365c2.287 1.988 7.297 5.575 7.926 6.642c.676 1.088.771 3.82.372 4.602c-.391.768-4.021 1.363-3.999 1.363c-.023 0 3.076 4.161 3.697 4.783c.599.598 3.129 3.365 13.605 1.424c6.019-1.113 11.258-4.302 13.671-7.748c2.962-3.598.971-5.412 1.508-7.452c.798-3.008 4.705-4.185 5.295-7.592c.07-.475.31-.835.731-1.533c.692-1.101.459-3.08.507-4.89c.149-4.948-.506-9.749-1.619-13.302c-1.029-3.33-2.641-5.678-4.015-8.709c-2.754-6.047-2.68-8.819-5.184-12.64c-2.389-3.707-1.751-5.988-4.943-5.765c-4.316.331-8.702 7.327-13.092 7.495\\\"/><path fill=\\\"#A3A3A3\\\" d=\\\"M61.318 45.933c-2.818.098-6.658-7.476-7.126-5.361c-.165 1.786-.229 1.911-.41 3.867c-.388 1.654-1.443 2.661-3.012 5.164c-.948 1.563-1.418 3.051-1.625 4.417c.102 1.405 1.014 2.267.719 3.125c-.259.66-1.588.908-2.553 2.119c-1.729 3.273-4.552 7.622-5.262 10.678c-.836 3.512-1.828 5.674-1.586 10.278c.134 3.454-.119 3.016 1.265 4.283c1.298 1.205 2.977 2.475 5.144 4.389c2.28 1.982 7.316 5.576 7.941 6.639c.673 1.086.785 3.849.389 4.627c-.387.763-4.015 1.381-3.992 1.381c-.022 0 3.06 4.124 3.68 4.745c.598.598 3.119 3.345 13.576 1.409c6.026-1.113 11.352-4.279 13.632-7.755c2.767-3.511.804-5.412 1.338-7.441c.795-3.003 4.882-4.184 5.47-7.586c.07-.474.32-.833.739-1.527c.694-1.111.451-3.084.506-4.888c.172-4.963-.498-9.747-1.61-13.289c-1.029-3.32-2.639-5.666-4.01-8.691c-2.75-6.038-2.684-8.814-5.189-12.623c-2.326-3.592-1.796-5.771-4.906-5.542c-4.264.342-8.736 7.416-13.118 7.582\\\"/><path fill=\\\"#aaa\\\" d=\\\"M61.312 46.283c-2.791.095-6.514-7.367-7.025-5.427l-.471 3.624c-.437 1.621-1.513 2.735-3.04 5.188c-.944 1.566-1.376 3.034-1.536 4.361c.162 1.456 1.231 2.295.936 3.133c-.277.677-1.746.89-2.817 2.189c-1.827 3.244-4.579 7.595-5.278 10.594c-.841 3.515-1.841 5.668-1.585 10.263c.136 3.303-.153 2.979 1.226 4.258c1.286 1.209 2.995 2.502 5.156 4.41c2.275 1.978 7.336 5.579 7.958 6.638c.668 1.083.798 3.877.405 4.65c-.383.76-4.008 1.4-3.985 1.4c-.023 0 3.044 4.087 3.664 4.708c.598.596 3.107 3.324 13.547 1.393c6.033-1.112 11.446-4.256 13.594-7.763c2.571-3.423.637-5.411 1.167-7.43c.792-2.998 5.059-4.183 5.645-7.581c.07-.472.332-.83.748-1.521c.697-1.123.444-3.09.505-4.885c.194-4.98-.49-9.746-1.603-13.276c-1.03-3.312-2.638-5.654-4.005-8.674c-2.745-6.028-2.689-8.809-5.197-12.605c-2.262-3.478-1.84-5.555-4.868-5.32c-4.209.356-8.765 7.511-13.141 7.673\\\"/><path fill=\\\"#B2B2B2\\\" d=\\\"M61.306 46.633c-2.766.092-6.37-7.259-6.925-5.493l-.531 3.381c-.486 1.586-1.584 2.809-3.068 5.211c-.941 1.57-1.336 3.017-1.446 4.306c.222 1.506 1.449 2.323 1.15 3.139c-.295.697-1.904.874-3.081 2.26c-1.924 3.213-4.604 7.569-5.294 10.51c-.847 3.52-1.855 5.664-1.582 10.25c.137 3.15-.189 2.94 1.186 4.233c1.274 1.215 3.013 2.529 5.168 4.433c2.271 1.972 7.356 5.581 7.976 6.637c.665 1.077.812 3.904.421 4.672c-.378.757-4.001 1.419-3.978 1.419c-.023 0 3.029 4.052 3.647 4.67c.596.597 3.097 3.304 13.518 1.378c6.04-1.112 11.54-4.233 13.554-7.77c2.376-3.336.47-5.411.997-7.418c.791-2.992 5.237-4.184 5.822-7.578c.069-.47.342-.825.755-1.514c.699-1.132.436-3.094.504-4.883c.216-4.996-.482-9.743-1.594-13.263c-1.032-3.302-2.636-5.641-4.001-8.657c-2.739-6.019-2.692-8.803-5.202-12.587c-2.199-3.363-1.885-5.337-4.831-5.097c-4.154.368-8.796 7.601-13.165 7.761\\\"/><path fill=\\\"#BABABA\\\" d=\\\"M61.302 46.983c-2.741.09-6.226-7.15-6.826-5.558l-.59 3.137c-.535 1.553-1.653 2.884-3.096 5.236c-.936 1.573-1.294 3-1.354 4.25c.279 1.558 1.665 2.351 1.365 3.147c-.313.715-2.061.856-3.345 2.33c-2.021 3.184-4.629 7.542-5.309 10.427c-.854 3.521-1.868 5.657-1.58 10.234c.14 2.998-.224 2.901 1.147 4.208c1.262 1.219 3.03 2.557 5.18 4.455c2.265 1.967 7.375 5.584 7.991 6.636c.663 1.074.826 3.932.439 4.696c-.375.753-3.995 1.438-3.972 1.438c-.023 0 3.012 4.015 3.63 4.633c.596.596 3.085 3.283 13.488 1.362c6.046-1.112 11.635-4.21 13.515-7.778c2.182-3.25.304-5.41.829-7.406c.788-2.986 5.414-4.184 5.996-7.572c.069-.469.353-.823.763-1.508c.702-1.144.429-3.099.504-4.881c.237-5.011-.475-9.741-1.585-13.25c-1.033-3.293-2.636-5.628-3.997-8.639c-2.735-6.009-2.697-8.797-5.21-12.57c-2.134-3.248-1.929-5.12-4.793-4.875c-4.103.378-8.831 7.691-13.19 7.848\\\"/><path fill=\\\"#C1C1C1\\\" d=\\\"M61.295 47.334c-2.714.088-6.081-7.042-6.725-5.624c-.199 1.19-.379 1.403-.65 2.895c-.584 1.518-1.724 2.958-3.124 5.26c-.933 1.577-1.254 2.983-1.265 4.195c.339 1.607 1.882 2.378 1.581 3.154c-.332.733-2.22.839-3.609 2.4c-2.118 3.154-4.656 7.516-5.324 10.344c-.859 3.524-1.882 5.651-1.578 10.221c.141 2.845-.26 2.862 1.106 4.182c1.25 1.225 3.048 2.584 5.193 4.479c2.258 1.962 7.395 5.586 8.007 6.634c.659 1.07.84 3.96.455 4.719c-.371.75-3.988 1.457-3.965 1.457c-.023 0 2.997 3.979 3.615 4.596c.594.595 3.074 3.263 13.459 1.346c6.052-1.111 11.729-4.187 13.475-7.786c1.987-3.161.137-5.409.658-7.395c.787-2.982 5.591-4.183 6.172-7.567c.069-.466.364-.818.772-1.5c.704-1.155.421-3.104.503-4.878c.257-5.028-.468-9.74-1.579-13.239c-1.033-3.284-2.634-5.616-3.992-8.621c-2.73-6-2.702-8.793-5.216-12.553c-2.071-3.133-1.974-4.903-4.756-4.652c-4.047.386-8.859 7.777-13.213 7.933\\\"/><path fill=\\\"#C9C9C9\\\" d=\\\"M61.29 47.684c-2.689.085-5.938-6.933-6.626-5.689c-.209 1.041-.417 1.275-.71 2.651c-.632 1.483-1.794 3.032-3.152 5.284c-.929 1.58-1.212 2.966-1.174 4.14c.399 1.658 2.1 2.406 1.796 3.162c-.349.751-2.377.821-3.873 2.47c-2.214 3.124-4.682 7.489-5.34 10.261c-.864 3.528-1.896 5.646-1.576 10.206c.144 2.693-.295 2.825 1.068 4.158c1.239 1.229 3.065 2.611 5.205 4.5c2.253 1.957 7.415 5.589 8.024 6.633c.656 1.067.854 3.989.472 4.743c-.367.747-3.981 1.475-3.959 1.475c-.022 0 2.981 3.942 3.598 4.558c.595.594 3.063 3.243 13.431 1.331c6.06-1.111 11.822-4.164 13.435-7.793c1.793-3.074-.03-5.408.489-7.384c.785-2.976 5.768-4.183 6.347-7.562c.069-.465.375-.816.779-1.495c.707-1.166.414-3.108.503-4.876c.279-5.043-.46-9.737-1.571-13.225c-1.034-3.275-2.631-5.604-3.988-8.604c-2.725-5.99-2.705-8.787-5.222-12.535c-2.007-3.019-2.019-4.686-4.718-4.43c-3.994.397-8.891 7.868-13.238 8.021\\\"/><path fill=\\\"#D1D1D1\\\" d=\\\"M61.285 48.035c-2.664.083-5.793-6.825-6.525-5.755c-.218.893-.453 1.148-.771 2.408c-.681 1.449-1.863 3.106-3.178 5.307c-.927 1.584-1.173 2.95-1.085 4.085c.458 1.708 2.316 2.434 2.011 3.167c-.367.771-2.535.805-4.136 2.541c-2.312 3.095-4.708 7.462-5.356 10.177c-.87 3.532-1.909 5.641-1.574 10.192c.146 2.541-.332 2.786 1.029 4.131c1.226 1.234 3.083 2.64 5.216 4.522c2.249 1.953 7.435 5.593 8.041 6.632c.653 1.063.867 4.017.489 4.767c-.364.744-3.975 1.493-3.952 1.493c-.023 0 2.966 3.905 3.582 4.521c.591.593 3.05 3.222 13.401 1.315c6.065-1.11 11.917-4.14 13.396-7.801c1.598-2.987-.197-5.408.317-7.372c.783-2.972 5.946-4.183 6.523-7.558c.069-.463.386-.812.788-1.487c.708-1.177.406-3.114.502-4.875c.3-5.059-.452-9.734-1.563-13.211c-1.035-3.267-2.63-5.592-3.982-8.586c-2.722-5.98-2.711-8.782-5.23-12.518c-1.943-2.904-2.062-4.469-4.679-4.207c-3.943.411-8.926 7.961-13.264 8.112\\\"/><path fill=\\\"#D8D8D8\\\" d=\\\"M61.279 48.385c-2.638.081-5.649-6.715-6.425-5.821c-.227.743-.491 1.021-.831 2.165c-.729 1.415-1.933 3.18-3.207 5.331c-.922 1.588-1.131 2.933-.994 4.029c.518 1.76 2.534 2.462 2.227 3.175c-.385.789-2.693.788-4.401 2.611c-2.409 3.065-4.733 7.436-5.372 10.093c-.875 3.534-1.922 5.636-1.571 10.178c.148 2.389-.366 2.748.989 4.106c1.213 1.241 3.1 2.667 5.229 4.546c2.243 1.947 7.455 5.594 8.057 6.631c.65 1.059.881 4.043.505 4.789c-.359.741-3.968 1.513-3.945 1.513c-.023 0 2.95 3.868 3.564 4.483c.592.593 3.041 3.201 13.372 1.299c6.072-1.109 12.011-4.117 13.357-7.808c1.403-2.9-.364-5.407.147-7.361c.78-2.966 6.124-4.183 6.698-7.553c.069-.462.397-.808.796-1.48c.711-1.189.399-3.119.501-4.873c.322-5.075-.445-9.733-1.555-13.2c-1.036-3.257-2.63-5.58-3.979-8.568c-2.715-5.972-2.714-8.777-5.235-12.5c-1.879-2.79-2.108-4.251-4.644-3.985c-3.883.422-8.951 8.052-13.283 8.2\\\"/><path fill=\\\"#E0E0E0\\\" d=\\\"M61.273 48.735c-2.612.078-5.505-6.606-6.325-5.886c-.235.595-.529.893-.89 1.922c-.778 1.381-2.004 3.253-3.235 5.354c-.919 1.591-1.091 2.916-.904 3.974c.577 1.811 2.75 2.49 2.441 3.183c-.403.808-2.85.77-4.664 2.681c-2.506 3.036-4.758 7.41-5.387 10.011c-.882 3.537-1.936 5.63-1.569 10.164c.15 2.237-.402 2.708.949 4.081c1.201 1.245 3.117 2.694 5.241 4.567c2.239 1.941 7.474 5.598 8.074 6.629c.646 1.055.895 4.071.521 4.813c-.354.737-3.96 1.531-3.938 1.531c-.022 0 2.935 3.832 3.547 4.446c.592.591 3.03 3.18 13.344 1.284c6.079-1.109 12.105-4.095 13.316-7.815c1.208-2.814-.531-5.407-.021-7.35c.777-2.96 6.3-4.183 6.874-7.549c.068-.459.408-.805.804-1.473c.713-1.2.391-3.124.5-4.871c.343-5.091-.437-9.73-1.548-13.187c-1.036-3.247-2.627-5.566-3.974-8.55c-2.71-5.962-2.719-8.771-5.242-12.483c-1.815-2.674-2.152-4.034-4.604-3.762c-3.831.432-8.986 8.14-13.31 8.286\\\"/><path fill=\\\"#E8E8E8\\\" d=\\\"M61.267 49.086c-2.586.075-5.361-6.499-6.224-5.953c-.245.446-.567.766-.951 1.679c-.826 1.346-2.073 3.328-3.262 5.378c-.915 1.595-1.05 2.899-.813 3.919c.636 1.861 2.967 2.517 2.655 3.19c-.42.826-3.009.752-4.929 2.751c-2.603 3.006-4.784 7.383-5.402 9.927c-.888 3.542-1.95 5.624-1.567 10.15c.152 2.084-.437 2.67.91 4.055c1.19 1.25 3.136 2.722 5.254 4.592c2.232 1.937 7.492 5.599 8.09 6.627c.643 1.052.909 4.1.538 4.837c-.35.733-3.954 1.549-3.931 1.549c-.023 0 2.918 3.796 3.531 4.409c.59.59 3.019 3.159 13.315 1.267c6.084-1.109 12.199-4.07 13.277-7.822c1.014-2.727-.697-5.406-.191-7.338c.775-2.955 6.478-4.182 7.048-7.543c.069-.457.419-.802.812-1.467c.716-1.21.384-3.128.5-4.868c.365-5.108-.43-9.729-1.539-13.175c-1.038-3.238-2.626-5.554-3.97-8.532c-2.706-5.953-2.723-8.766-5.249-12.465c-1.751-2.561-2.196-3.817-4.567-3.539c-3.778.44-9.017 8.228-13.335 8.372\\\"/><path fill=\\\"#EFEFEF\\\" d=\\\"M61.262 49.436c-2.562.073-5.217-6.39-6.125-6.019c-.253.297-.604.639-1.011 1.436c-.874 1.312-2.144 3.401-3.29 5.402c-.911 1.598-1.009 2.882-.723 3.863c.694 1.911 3.184 2.545 2.87 3.197c-.438.844-3.167.735-5.192 2.821c-2.7 2.977-4.809 7.356-5.417 9.844c-.894 3.544-1.963 5.618-1.565 10.136c.155 1.932-.472 2.633.87 4.03c1.178 1.255 3.153 2.749 5.266 4.613c2.228 1.932 7.513 5.603 8.107 6.627c.64 1.047.922 4.127.555 4.86c-.347.729-3.948 1.567-3.925 1.567c-.023 0 2.903 3.758 3.515 4.371c.59.59 3.008 3.139 13.285 1.252c6.092-1.108 12.293-4.047 13.239-7.831c.819-2.639-.864-5.405-.361-7.326c.773-2.95 6.655-4.183 7.224-7.539c.069-.456.43-.798.82-1.461c.719-1.221.376-3.133.499-4.865c.386-5.124-.422-9.727-1.531-13.163c-1.038-3.229-2.625-5.541-3.964-8.514c-2.702-5.943-2.729-8.761-5.256-12.449c-1.688-2.445-2.24-3.599-4.529-3.316c-3.728.456-9.05 8.323-13.361 8.464\\\"/><path fill=\\\"#F7F7F7\\\" d=\\\"M61.257 49.786c-2.536.07-5.074-6.281-6.025-6.083c-.262.148-.641.511-1.069 1.192c-.924 1.278-2.215 3.476-3.319 5.426c-.908 1.602-.968 2.865-.633 3.809c.754 1.961 3.401 2.573 3.087 3.204c-.457.863-3.325.718-5.457 2.891c-2.797 2.947-4.836 7.33-5.434 9.761c-.899 3.546-1.976 5.613-1.562 10.122c.156 1.781-.507 2.593.831 4.004c1.165 1.262 3.17 2.777 5.279 4.635c2.222 1.927 7.532 5.605 8.124 6.626c.635 1.044.935 4.155.571 4.883c-.343.728-3.941 1.587-3.918 1.587c-.023 0 2.887 3.722 3.498 4.333c.59.588 2.997 3.118 13.257 1.237c6.099-1.109 12.387-4.025 13.199-7.839c.625-2.551-1.032-5.404-.531-7.314c.771-2.944 6.832-4.183 7.398-7.534c.069-.453.441-.794.83-1.454c.72-1.232.369-3.137.498-4.863c.408-5.14-.415-9.725-1.523-13.149c-1.039-3.22-2.624-5.53-3.961-8.497c-2.695-5.934-2.732-8.756-5.262-12.431c-1.624-2.331-2.284-3.383-4.492-3.095c-3.675.464-9.084 8.411-13.386 8.549\\\"/><path fill=\\\"#fff\\\" d=\\\"M61.25 50.137c-2.51.068-4.93-6.173-5.924-6.15c-.271 0-.678.385-1.131.95c-.972 1.244-2.282 3.55-3.345 5.45c-.905 1.605-.927 2.849-.543 3.753c.813 2.012 3.618 2.601 3.301 3.211c-.475.882-3.482.701-5.721 2.962c-2.894 2.917-4.861 7.303-5.449 9.677c-.905 3.55-1.99 5.607-1.561 10.107c.159 1.628-.543 2.555.792 3.98c1.153 1.266 3.188 2.804 5.291 4.657c2.216 1.922 7.552 5.608 8.14 6.626c.633 1.04.949 4.182.587 4.906c-.339.723-3.934 1.605-3.912 1.605c-.022 0 2.872 3.685 3.482 4.296c.587.588 2.984 3.098 13.229 1.221c6.104-1.108 12.48-4.002 13.158-7.846c.43-2.464-1.198-5.403-.7-7.303c.768-2.939 7.009-4.183 7.574-7.53c.068-.451.452-.791.837-1.446c.723-1.244.361-3.143.497-4.862a33.816 33.816 0 0 0-1.515-13.137c-1.04-3.211-2.623-5.517-3.957-8.479c-2.691-5.924-2.736-8.75-5.269-12.413c-1.56-2.216-2.328-3.166-4.454-2.872c-3.616.474-9.11 8.501-13.407 8.637\\\"/><path fill=\\\"#995900\\\" d=\\\"M62.967 27.183c1.697-.209 4.021.209 5.091 1c.999.745 1.696 1.14 2.603 1.441c3.045 1 7.044 1.465 6.858 4.208c-.209 3.277-1.162 4.742-3.882 5.602c-2.185.674-6.09 4.463-9.112 4.463c-1.348 0-3.231.07-4.324-.325c-1.046-.372-2.511-2.139-4.231-3.557c-1.721-1.395-3.324-2.882-3.37-4.835c-.07-2.068 1.278-2.743 3.185-4.394c1-.883 2.813-2.348 4.068-2.999c1.161-.581 1.906-.465 3.114-.604\\\"/><path fill=\\\"#9E5F00\\\" d=\\\"M63.003 27.214c1.687-.208 3.998.208 5.062.994c.993.74 1.688 1.134 2.589 1.433c3.026.994 7.015 1.462 6.832 4.188c-.208 3.258-1.186 4.708-3.888 5.561c-2.171.669-6.06 4.387-9.063 4.404c-1.359.01-3.204.076-4.29-.315c-1.038-.369-2.498-2.134-4.207-3.542c-1.708-1.385-3.312-2.833-3.331-4.767c-.049-2.018 1.263-2.715 3.155-4.354c.992-.875 2.775-2.358 4.024-3.014c1.149-.582 1.914-.449 3.117-.588\\\"/><path fill=\\\"#A36400\\\" d=\\\"M63.038 27.244c1.677-.207 3.975.207 5.032.988c.988.736 1.677 1.128 2.574 1.425c3.008.988 6.986 1.46 6.805 4.169c-.204 3.237-1.206 4.673-3.893 5.519c-2.157.664-6.029 4.311-9.014 4.344c-1.369.021-3.178.082-4.255-.305c-1.03-.366-2.486-2.129-4.184-3.526c-1.697-1.376-3.3-2.784-3.292-4.699c-.03-1.969 1.248-2.689 3.126-4.316c.984-.867 2.737-2.368 3.98-3.028c1.139-.584 1.926-.433 3.121-.571\\\"/><path fill=\\\"#A86A00\\\" d=\\\"M63.073 27.274c1.668-.206 3.953.206 5.004.982c.982.731 1.667 1.123 2.559 1.417c2.99.982 6.959 1.458 6.779 4.15c-.203 3.219-1.229 4.639-3.898 5.479c-2.142.659-5.998 4.235-8.964 4.284c-1.381.031-3.151.087-4.222-.295c-1.022-.362-2.473-2.124-4.161-3.511c-1.684-1.368-3.289-2.734-3.251-4.631c-.01-1.919 1.232-2.662 3.097-4.278c.976-.859 2.699-2.378 3.936-3.042c1.125-.585 1.933-.418 3.121-.555\\\"/><path fill=\\\"#AD7000\\\" d=\\\"M63.109 27.304c1.657-.204 3.929.205 4.974.977c.976.727 1.659 1.117 2.543 1.408c2.971.977 6.931 1.456 6.753 4.131c-.199 3.198-1.25 4.604-3.904 5.437c-2.126.654-5.966 4.159-8.915 4.225c-1.392.041-3.125.093-4.188-.285c-1.014-.359-2.461-2.118-4.138-3.495c-1.672-1.358-3.276-2.685-3.21-4.564c.01-1.869 1.216-2.634 3.065-4.239c.969-.851 2.663-2.389 3.893-3.058c1.116-.584 1.945-.401 3.127-.537\\\"/><path fill=\\\"#B27600\\\" d=\\\"M63.143 27.335c1.649-.204 3.907.203 4.945.971c.971.722 1.647 1.111 2.529 1.399c2.953.97 6.903 1.453 6.727 4.112c-.198 3.178-1.272 4.57-3.909 5.395c-2.113.649-5.936 4.083-8.867 4.165c-1.401.052-3.097.099-4.152-.275c-1.006-.356-2.449-2.113-4.115-3.48c-1.66-1.349-3.264-2.635-3.17-4.496c.03-1.819 1.201-2.607 3.037-4.201c.96-.842 2.624-2.398 3.848-3.071c1.103-.584 1.954-.384 3.127-.519\\\"/><path fill=\\\"#B77B00\\\" d=\\\"M63.18 27.364c1.639-.203 3.882.202 4.915.965c.965.718 1.639 1.105 2.514 1.391c2.934.965 6.875 1.451 6.702 4.093c-.196 3.158-1.296 4.535-3.916 5.354c-2.097.645-5.905 4.007-8.816 4.105c-1.413.062-3.07.104-4.119-.265c-.998-.353-2.437-2.108-4.092-3.465c-1.648-1.34-3.252-2.585-3.13-4.427c.05-1.769 1.185-2.58 3.007-4.161c.953-.835 2.586-2.409 3.804-3.087c1.09-.585 1.963-.368 3.131-.503\\\"/><path fill=\\\"#BC8100\\\" d=\\\"M63.214 27.395c1.629-.201 3.86.201 4.886.96c.96.713 1.629 1.1 2.499 1.383c2.915.959 6.847 1.449 6.675 4.074c-.194 3.138-1.316 4.5-3.92 5.312c-2.083.64-5.874 3.931-8.768 4.046c-1.423.072-3.044.11-4.085-.255c-.99-.35-2.424-2.103-4.067-3.449c-1.637-1.332-3.241-2.536-3.091-4.36c.071-1.719 1.169-2.553 2.978-4.123c.945-.826 2.549-2.419 3.76-3.101c1.079-.588 1.974-.354 3.133-.487\\\"/><path fill=\\\"#C18700\\\" d=\\\"M63.249 27.425c1.62-.2 3.837.2 4.857.954c.954.709 1.62 1.095 2.484 1.375c2.897.954 6.819 1.446 6.649 4.055c-.191 3.119-1.339 4.467-3.926 5.271c-2.067.635-5.843 3.855-8.718 3.987c-1.433.082-3.017.116-4.051-.245c-.982-.347-2.411-2.098-4.043-3.435c-1.625-1.322-3.229-2.486-3.052-4.292c.09-1.668 1.155-2.526 2.948-4.083c.937-.818 2.511-2.429 3.716-3.116c1.068-.589 1.984-.338 3.136-.471\\\"/><path fill=\\\"#C68D00\\\" d=\\\"M63.285 27.455c1.609-.198 3.813.198 4.828.948c.947.706 1.609 1.09 2.468 1.367c2.879.947 6.79 1.444 6.625 4.036c-.19 3.098-1.362 4.432-3.932 5.229c-2.054.63-5.812 3.778-8.669 3.926c-1.445.093-2.99.122-4.017-.234c-.973-.344-2.399-2.093-4.021-3.419c-1.613-1.314-3.217-2.438-3.011-4.224c.11-1.619 1.138-2.5 2.918-4.046c.929-.81 2.473-2.439 3.672-3.13c1.055-.589 1.993-.321 3.139-.453\\\"/><path fill=\\\"#CC9200\\\" d=\\\"M63.32 27.485c1.6-.197 3.79.197 4.798.942c.943.701 1.6 1.083 2.455 1.358c2.859.942 6.761 1.442 6.596 4.018c-.187 3.079-1.383 4.397-3.936 5.187c-2.039.625-5.782 3.703-8.62 3.868c-1.455.103-2.963.127-3.982-.225c-.966-.34-2.387-2.088-3.999-3.404c-1.601-1.304-3.206-2.387-2.971-4.156c.129-1.569 1.123-2.471 2.888-4.006c.922-.802 2.435-2.45 3.629-3.146c1.044-.589 2.003-.305 3.142-.436\\\"/><path fill=\\\"#D19800\\\" d=\\\"M63.356 27.515c1.589-.196 3.767.196 4.769.937c.936.696 1.589 1.078 2.439 1.35c2.841.936 6.733 1.439 6.57 3.998c-.184 3.06-1.405 4.363-3.942 5.146c-2.024.62-5.75 3.626-8.57 3.807c-1.466.114-2.936.134-3.948-.214c-.957-.337-2.374-2.083-3.975-3.389c-1.589-1.295-3.193-2.338-2.932-4.088c.151-1.52 1.108-2.444 2.859-3.968c.914-.793 2.398-2.459 3.584-3.16c1.034-.59 2.013-.288 3.146-.419\\\"/><path fill=\\\"#D69E00\\\" d=\\\"M63.391 27.545c1.581-.194 3.744.195 4.74.931c.93.692 1.58 1.073 2.423 1.342c2.823.931 6.706 1.438 6.545 3.979c-.183 3.04-1.427 4.329-3.948 5.105c-2.01.615-5.719 3.55-8.52 3.748c-1.478.124-2.91.14-3.915-.205c-.949-.333-2.362-2.077-3.951-3.372c-1.577-1.287-3.182-2.289-2.891-4.021c.169-1.469 1.092-2.418 2.829-3.929c.906-.785 2.36-2.47 3.541-3.174c1.02-.592 2.022-.274 3.147-.404\\\"/><path fill=\\\"#DBA300\\\" d=\\\"M63.427 27.575c1.57-.193 3.72.194 4.71.925c.925.688 1.57 1.067 2.409 1.333c2.804.925 6.678 1.436 6.519 3.96c-.181 3.02-1.45 4.294-3.953 5.063c-1.995.61-5.689 3.474-8.471 3.688c-1.488.134-2.883.145-3.88-.194c-.941-.331-2.349-2.072-3.928-3.358c-1.565-1.277-3.169-2.239-2.851-3.952c.189-1.419 1.076-2.391 2.799-3.891c.898-.777 2.322-2.48 3.497-3.189c1.007-.591 2.03-.256 3.149-.385\\\"/><path fill=\\\"#E0A900\\\" d=\\\"M63.462 27.606c1.561-.192 3.698.192 4.681.919c.919.684 1.561 1.062 2.394 1.325c2.786.919 6.649 1.433 6.493 3.94c-.179 3-1.472 4.26-3.958 5.021c-1.981.606-5.657 3.399-8.422 3.629c-1.499.145-2.856.151-3.846-.184c-.933-.328-2.337-2.067-3.905-3.342c-1.553-1.269-3.157-2.189-2.811-3.885c.209-1.369 1.061-2.363 2.771-3.852c.89-.769 2.283-2.49 3.452-3.204c.995-.591 2.039-.24 3.151-.367\\\"/><path fill=\\\"#E5AF00\\\" d=\\\"M63.498 27.635c1.551-.191 3.674.191 4.651.914c.913.68 1.551 1.056 2.379 1.317c2.767.913 6.62 1.431 6.467 3.921c-.176 2.979-1.494 4.225-3.964 4.979c-1.966.601-5.627 3.323-8.373 3.57c-1.51.154-2.83.156-3.812-.174c-.925-.324-2.325-2.062-3.882-3.327c-1.54-1.259-3.145-2.14-2.77-3.816c.229-1.319 1.044-2.336 2.739-3.813c.882-.761 2.246-2.5 3.409-3.218c.985-.593 2.051-.225 3.156-.353\\\"/><path fill=\\\"#EAB500\\\" d=\\\"M63.533 27.666c1.541-.189 3.651.19 4.623.908c.908.675 1.541 1.05 2.364 1.309c2.748.907 6.592 1.428 6.44 3.903c-.174 2.958-1.516 4.19-3.97 4.938c-1.951.596-5.595 3.247-8.323 3.509c-1.521.165-2.802.163-3.778-.164c-.916-.321-2.312-2.057-3.857-3.312c-1.53-1.25-3.134-2.091-2.732-3.749c.249-1.269 1.03-2.309 2.711-3.775c.875-.752 2.208-2.51 3.364-3.232c.973-.594 2.06-.208 3.158-.335\\\"/><path fill=\\\"#EFBA00\\\" d=\\\"M63.569 27.695c1.531-.188 3.627.189 4.592.902c.902.671 1.532 1.045 2.349 1.3c2.73.902 6.564 1.426 6.415 3.884c-.172 2.939-1.539 4.156-3.976 4.896c-1.936.591-5.563 3.17-8.273 3.45c-1.532.175-2.776.168-3.744-.154c-.909-.318-2.3-2.052-3.835-3.296c-1.517-1.241-3.121-2.041-2.691-3.681c.271-1.22 1.014-2.282 2.682-3.736c.867-.745 2.171-2.521 3.321-3.248c.96-.593 2.069-.191 3.16-.317\\\"/><path fill=\\\"#F4C000\\\" d=\\\"M63.603 27.726c1.521-.187 3.606.188 4.564.896c.896.667 1.521 1.04 2.334 1.292c2.711.896 6.536 1.424 6.389 3.864c-.168 2.919-1.56 4.122-3.981 4.855c-1.921.586-5.533 3.095-8.224 3.391c-1.542.186-2.75.174-3.71-.144c-.9-.315-2.287-2.047-3.811-3.281c-1.505-1.232-3.109-1.992-2.651-3.613c.29-1.17.999-2.255 2.651-3.698c.859-.736 2.133-2.531 3.276-3.262c.95-.594 2.08-.175 3.163-.3\\\"/><path fill=\\\"#F9C600\\\" d=\\\"M63.639 27.755c1.512-.186 3.583.187 4.535.891c.891.663 1.512 1.035 2.32 1.284c2.692.89 6.507 1.421 6.361 3.845c-.167 2.9-1.582 4.088-3.985 4.814c-1.907.581-5.503 3.018-8.175 3.331c-1.553.196-2.722.18-3.675-.133c-.893-.312-2.276-2.042-3.788-3.266c-1.493-1.223-3.098-1.942-2.611-3.545c.309-1.119.983-2.228 2.621-3.659c.853-.729 2.095-2.542 3.233-3.277c.936-.595 2.088-.16 3.164-.285\\\"/><path fill=\\\"#fc0\\\" d=\\\"M63.675 27.786c1.5-.185 3.559.186 4.504.885c.885.658 1.502 1.029 2.304 1.275c2.674.884 6.48 1.42 6.337 3.826c-.165 2.879-1.604 4.053-3.992 4.772c-1.892.576-5.472 2.942-8.125 3.271c-1.564.206-2.696.185-3.642-.124c-.884-.309-2.263-2.037-3.764-3.25c-1.482-1.214-3.086-1.893-2.572-3.477c.33-1.07.967-2.201 2.592-3.621c.843-.72 2.057-2.551 3.188-3.292c.927-.594 2.1-.142 3.17-.265m.268.932c.327.674 1.163.767 1.721 1.069c.535.303.837.372 1.046.256c.465-.256.117-1.093-.349-1.395c-.441-.302-2.604-.372-2.418.07\\\"/><path fill=\\\"#F9C600\\\" d=\\\"M63.99 28.725c.316.657 1.133.748 1.677 1.043c.521.294.815.362 1.02.249c.452-.249.113-1.065-.34-1.359c-.432-.296-2.539-.364-2.357.067\\\"/><path fill=\\\"#F4C000\\\" d=\\\"M64.035 28.731c.309.64 1.103.729 1.633 1.016c.508.287.794.353.993.243c.442-.243.11-1.037-.331-1.324c-.419-.287-2.471-.353-2.295.065\\\"/><path fill=\\\"#EFBA00\\\" d=\\\"M64.081 28.739c.301.623 1.074.708 1.59.988c.494.279.773.344.966.236c.429-.236.108-1.01-.322-1.289c-.408-.279-2.406-.343-2.234.065\\\"/><path fill=\\\"#EAB500\\\" d=\\\"M64.127 28.746c.292.605 1.044.689 1.545.961c.481.271.752.334.941.229c.417-.229.104-.982-.314-1.253c-.396-.271-2.339-.335-2.172.063\\\"/><path fill=\\\"#E5AF00\\\" d=\\\"M64.173 28.752c.285.589 1.015.67 1.502.934c.467.264.731.325.914.224c.406-.224.101-.955-.304-1.219c-.386-.263-2.274-.324-2.112.061\\\"/><path fill=\\\"#E0A900\\\" d=\\\"M64.219 28.759c.277.572.986.651 1.459.907c.453.256.71.315.887.217c.395-.217.099-.927-.296-1.183c-.374-.256-2.207-.315-2.05.059\\\"/><path fill=\\\"#DBA300\\\" d=\\\"M64.265 28.767c.268.555.956.631 1.416.88c.44.249.688.306.861.21c.382-.21.095-.899-.287-1.148c-.364-.249-2.142-.306-1.99.058\\\"/><path fill=\\\"#D69E00\\\" d=\\\"M64.311 28.773c.26.538.927.612 1.372.853c.427.241.667.296.834.204c.371-.204.093-.871-.277-1.111c-.353-.242-2.078-.298-1.929.054\\\"/><path fill=\\\"#D19800\\\" d=\\\"M64.357 28.78c.25.521.897.592 1.329.826c.412.233.646.287.807.197c.358-.197.09-.843-.27-1.077c-.34-.232-2.01-.287-1.866.054\\\"/><path fill=\\\"#CC9200\\\" d=\\\"M64.403 28.788c.244.503.869.573 1.286.799c.398.226.625.277.78.19c.347-.19.087-.816-.26-1.042c-.33-.226-1.945-.277-1.806.053\\\"/><path fill=\\\"#C68C00\\\" d=\\\"M64.449 28.794c.235.486.839.553 1.241.771c.385.218.604.269.754.184c.335-.184.084-.788-.251-1.006c-.319-.217-1.878-.267-1.744.051\\\"/><path fill=\\\"#C18700\\\" d=\\\"M64.495 28.801c.226.469.809.535 1.197.745c.372.21.583.259.729.178c.323-.178.081-.761-.243-.971c-.308-.21-1.812-.259-1.683.048\\\"/><path fill=\\\"#BC8100\\\" d=\\\"M64.541 28.809c.218.452.779.514 1.153.717c.359.203.562.249.703.171c.312-.171.078-.733-.234-.935c-.297-.203-1.747-.25-1.622.047\\\"/><path fill=\\\"#B77B00\\\" d=\\\"M64.587 28.815c.21.435.75.495 1.11.69c.345.195.54.24.675.165c.3-.165.076-.706-.225-.9c-.285-.194-1.68-.24-1.56.045\\\"/><path fill=\\\"#B27500\\\" d=\\\"M64.634 28.822c.201.418.719.476 1.065.663c.333.188.519.23.649.159c.288-.159.073-.677-.216-.865c-.274-.187-1.614-.231-1.498.043\\\"/><path fill=\\\"#AD7000\\\" d=\\\"M64.68 28.829c.193.401.69.456 1.022.636c.317.18.497.221.622.152c.276-.152.069-.649-.208-.83c-.262-.178-1.547-.22-1.436.042\\\"/><path fill=\\\"#A86A00\\\" d=\\\"M64.725 28.836c.185.384.662.437.979.608c.304.173.476.212.596.146c.264-.146.066-.622-.199-.794c-.251-.171-1.483-.211-1.376.04\\\"/><path fill=\\\"#A36400\\\" d=\\\"M64.771 28.843c.176.367.631.417.936.582c.29.164.455.202.569.139c.252-.139.062-.594-.19-.759c-.24-.164-1.417-.202-1.315.038\\\"/><path fill=\\\"#9E5E00\\\" d=\\\"M64.817 28.85c.168.35.603.398.892.555c.277.157.434.192.543.132c.24-.132.061-.566-.182-.724c-.228-.155-1.35-.192-1.253.037\\\"/><path fill=\\\"#995900\\\" d=\\\"M64.863 28.857c.161.333.573.378.848.528c.264.148.413.183.517.125c.229-.125.057-.539-.173-.688c-.217-.148-1.284-.182-1.192.035\\\"/><path fill=\\\"#fc0\\\" d=\\\"M59.066 29.584c-.105.262.629.761.998.42a10.91 10.91 0 0 1 1.025-.762c.708-.473.447-.814-.735-.604c-1.183.21-1.183.682-1.288.946\\\"/><path fill=\\\"#F9C600\\\" d=\\\"M59.085 29.58c-.103.257.615.744.975.41c.384-.333.846-.641 1.001-.744c.692-.462.436-.795-.719-.59c-1.155.205-1.155.667-1.257.924\\\"/><path fill=\\\"#F4C000\\\" d=\\\"M59.104 29.576c-.1.25.601.727.952.401c.375-.325.826-.626.977-.727c.676-.451.426-.776-.702-.576c-1.127.201-1.127.652-1.227.902\\\"/><path fill=\\\"#EFBA00\\\" d=\\\"M59.123 29.573c-.098.245.586.708.929.391c.366-.318.806-.611.953-.709c.659-.439.415-.757-.684-.562c-1.1.196-1.1.635-1.198.88\\\"/><path fill=\\\"#EAB500\\\" d=\\\"M59.142 29.57c-.096.238.572.691.905.381c.358-.31.787-.596.93-.692c.644-.428.405-.739-.667-.548c-1.073.191-1.073.62-1.168.859\\\"/><path fill=\\\"#E5AF00\\\" d=\\\"M59.161 29.566c-.093.232.558.673.882.372c.349-.302.767-.58.906-.673c.628-.418.395-.72-.65-.535c-1.046.186-1.045.604-1.138.836\\\"/><path fill=\\\"#E0A900\\\" d=\\\"M59.18 29.564c-.09.226.543.656.859.362c.339-.294.747-.565.882-.656c.611-.407.384-.702-.634-.52c-1.017.18-1.017.587-1.107.814\\\"/><path fill=\\\"#DBA300\\\" d=\\\"M59.199 29.56c-.088.219.528.638.836.352c.33-.286.727-.55.858-.638c.594-.396.374-.683-.616-.506c-.991.175-.991.571-1.078.792\\\"/><path fill=\\\"#D69E00\\\" d=\\\"M59.218 29.556c-.086.214.513.621.813.343c.321-.278.707-.535.834-.621c.578-.386.364-.664-.599-.492c-.962.171-.962.556-1.048.77\\\"/><path fill=\\\"#D19800\\\" d=\\\"M59.237 29.553c-.083.208.499.604.791.333c.311-.27.686-.52.81-.604c.562-.374.354-.645-.582-.478c-.936.167-.936.541-1.019.749\\\"/><path fill=\\\"#CC9200\\\" d=\\\"M59.256 29.55c-.081.202.484.586.766.323c.304-.263.667-.505.789-.585c.545-.363.342-.626-.566-.464c-.909.16-.909.524-.989.726\\\"/><path fill=\\\"#C68C00\\\" d=\\\"M59.275 29.546c-.079.196.47.568.743.313c.294-.254.647-.49.765-.568c.528-.353.332-.607-.549-.45c-.882.158-.882.509-.959.705\\\"/><path fill=\\\"#C18700\\\" d=\\\"M59.293 29.543c-.076.189.455.55.721.303c.286-.247.626-.474.741-.55c.512-.342.322-.588-.532-.437c-.854.153-.854.494-.93.684\\\"/><path fill=\\\"#BC8100\\\" d=\\\"M59.312 29.54c-.074.184.44.532.698.294c.275-.239.605-.459.716-.533c.496-.33.312-.57-.515-.422c-.825.147-.825.477-.899.661\\\"/><path fill=\\\"#B77B00\\\" d=\\\"M59.331 29.537c-.071.177.426.514.675.283c.266-.23.585-.444.692-.515c.479-.319.302-.55-.497-.408s-.799.462-.87.64\\\"/><path fill=\\\"#B27500\\\" d=\\\"M59.35 29.533c-.069.171.411.497.652.274c.257-.222.565-.428.668-.497c.463-.309.292-.532-.48-.395s-.771.447-.84.618\\\"/><path fill=\\\"#AD7000\\\" d=\\\"M59.369 29.53c-.066.166.397.48.627.265c.249-.215.546-.414.646-.48c.447-.297.28-.513-.463-.38c-.744.132-.744.429-.81.595\\\"/><path fill=\\\"#A86A00\\\" d=\\\"M59.389 29.526c-.063.159.382.462.605.255c.239-.207.525-.398.621-.462c.43-.287.271-.494-.446-.366c-.717.128-.717.414-.78.573\\\"/><path fill=\\\"#A36400\\\" d=\\\"M59.407 29.523c-.061.153.368.444.582.246c.23-.2.506-.383.598-.445c.414-.276.262-.475-.429-.352c-.689.122-.689.398-.751.551\\\"/><path fill=\\\"#9E5E00\\\" d=\\\"M59.426 29.52c-.059.146.354.427.559.235c.22-.191.486-.368.574-.427c.397-.265.25-.457-.412-.338c-.662.118-.662.383-.721.53\\\"/><path fill=\\\"#995900\\\" d=\\\"M59.445 29.517c-.056.141.339.409.536.226a5.48 5.48 0 0 1 .55-.409c.381-.255.24-.438-.396-.325c-.633.113-.633.366-.69.508\\\"/><path fill=\\\"#fc0\\\" d=\\\"M60.381 36.556c-.074.923 2.049-1.384 2.178-1.587c.276-.498 1.199-1.9 1.347-2.491c.276-1.033.775-1.79.461-2.878c-.111-.35-.885-.442-1.236-.221c-.996.59-.848 1.31-.959 1.974c-.37 1.882-1.661 3.782-1.791 5.203\\\"/><path fill=\\\"#FFCC02\\\" d=\\\"M60.469 36.412c-.072.899 1.994-1.352 2.12-1.55c.269-.486 1.167-1.855 1.309-2.431c.269-1.008.753-1.746.446-2.807c-.109-.342-.864-.431-1.206-.214c-.971.577-.825 1.278-.933 1.926c-.356 1.835-1.613 3.69-1.736 5.076\\\"/><path fill=\\\"#FFCC05\\\" d=\\\"M60.555 36.268c-.068.877 1.942-1.32 2.063-1.514c.263-.475 1.135-1.809 1.272-2.371c.259-.982.731-1.702.43-2.736c-.107-.333-.843-.418-1.176-.207c-.945.564-.802 1.247-.906 1.878c-.343 1.79-1.564 3.6-1.683 4.95\\\"/><path fill=\\\"#FFCC07\\\" d=\\\"M60.642 36.124c-.064.854 1.889-1.289 2.008-1.477c.253-.462 1.101-1.764 1.234-2.311c.251-.957.708-1.659.414-2.665c-.105-.324-.821-.405-1.145-.199c-.92.551-.779 1.216-.879 1.831c-.333 1.742-1.519 3.506-1.632 4.821\\\"/><path fill=\\\"#FFCD0A\\\" d=\\\"M60.728 35.98c-.061.831 1.835-1.258 1.95-1.441c.247-.45 1.069-1.718 1.198-2.25c.243-.932.687-1.616.397-2.594c-.101-.314-.799-.394-1.114-.192c-.894.538-.756 1.184-.852 1.783c-.319 1.696-1.471 3.414-1.579 4.694\\\"/><path fill=\\\"#FFCD0C\\\" d=\\\"M60.815 35.836c-.058.808 1.782-1.227 1.894-1.405c.238-.438 1.035-1.672 1.16-2.19c.234-.907.666-1.572.383-2.523c-.1-.306-.778-.38-1.084-.185c-.867.524-.733 1.153-.825 1.735c-.309 1.65-1.425 3.323-1.528 4.568\\\"/><path fill=\\\"#FFCD0F\\\" d=\\\"M60.902 35.691c-.055.785 1.729-1.195 1.836-1.369c.23-.426 1.002-1.626 1.124-2.129c.226-.881.643-1.529.366-2.451c-.097-.297-.756-.369-1.053-.177c-.842.511-.709 1.122-.798 1.688c-.296 1.602-1.378 3.229-1.475 4.438\\\"/><path fill=\\\"#FFCD11\\\" d=\\\"M60.989 35.547c-.052.762 1.675-1.163 1.78-1.332c.223-.415.97-1.581 1.085-2.069c.217-.855.621-1.485.351-2.38c-.095-.289-.734-.356-1.022-.17c-.816.498-.688 1.09-.771 1.639c-.285 1.557-1.331 3.139-1.423 4.312\\\"/><path fill=\\\"#FFCE14\\\" d=\\\"M61.076 35.403c-.048.739 1.622-1.132 1.723-1.296c.216-.402.936-1.535 1.048-2.009c.208-.83.599-1.441.335-2.309c-.093-.28-.715-.345-.992-.163c-.79.484-.664 1.059-.744 1.591c-.272 1.512-1.284 3.048-1.37 4.186\\\"/><path fill=\\\"#FFCE16\\\" d=\\\"M61.162 35.259c-.045.717 1.569-1.1 1.667-1.259c.208-.39.904-1.489 1.011-1.949c.201-.805.577-1.398.318-2.237c-.09-.271-.693-.332-.961-.156c-.765.471-.64 1.027-.718 1.543c-.259 1.464-1.236 2.955-1.317 4.058\\\"/><path fill=\\\"#FFCE19\\\" d=\\\"M61.249 35.115c-.043.693 1.515-1.068 1.61-1.223c.2-.377.871-1.443.974-1.888c.191-.78.555-1.355.302-2.167c-.088-.262-.671-.319-.93-.148c-.739.458-.618.996-.691 1.496c-.249 1.417-1.188 2.862-1.265 3.93\\\"/><path fill=\\\"#FFCE1C\\\" d=\\\"M61.336 34.971c-.039.67 1.462-1.037 1.553-1.187c.193-.366.839-1.398.936-1.829c.184-.754.533-1.311.288-2.095c-.086-.252-.65-.308-.9-.141c-.713.444-.595.964-.664 1.448c-.237 1.372-1.143 2.771-1.213 3.804\\\"/><path fill=\\\"#FFCF1E\\\" d=\\\"M61.422 34.826c-.035.648 1.41-1.005 1.498-1.15c.184-.354.806-1.353.898-1.769c.176-.728.511-1.267.271-2.023c-.084-.244-.628-.295-.869-.133c-.688.432-.572.933-.637 1.4c-.225 1.324-1.096 2.678-1.161 3.675\\\"/><path fill=\\\"#FFCF21\\\" d=\\\"M61.509 34.683c-.032.624 1.356-.975 1.44-1.114c.176-.342.773-1.306.861-1.708c.167-.703.489-1.224.256-1.953c-.082-.235-.607-.282-.839-.126c-.663.418-.548.902-.611 1.353c-.212 1.277-1.047 2.585-1.107 3.548\\\"/><path fill=\\\"#FFCF23\\\" d=\\\"M61.596 34.539c-.028.601 1.304-.943 1.383-1.078c.169-.33.741-1.261.824-1.648c.159-.677.467-1.18.241-1.882c-.08-.226-.586-.27-.81-.118c-.636.404-.525.87-.583 1.304c-.2 1.232-1 2.494-1.055 3.422\\\"/><path fill=\\\"#FFCF26\\\" d=\\\"M61.682 34.394c-.026.579 1.25-.911 1.326-1.041c.162-.317.708-1.215.788-1.588c.149-.652.444-1.137.224-1.81c-.077-.217-.564-.257-.778-.111c-.61.392-.502.839-.556 1.256c-.189 1.185-.955 2.402-1.004 3.294\\\"/><path fill=\\\"#FFD028\\\" d=\\\"M61.769 34.25c-.022.556 1.196-.879 1.27-1.005c.154-.306.675-1.169.75-1.527c.142-.627.424-1.093.208-1.739c-.075-.208-.542-.245-.748-.104c-.584.378-.478.808-.529 1.208c-.177 1.139-.907 2.311-.951 3.167\\\"/><path fill=\\\"#FFD02B\\\" d=\\\"M61.856 34.106c-.02.533 1.144-.848 1.212-.969c.146-.293.643-1.124.712-1.467c.134-.602.401-1.05.193-1.668c-.073-.199-.521-.232-.718-.096c-.558.364-.455.775-.502 1.161c-.163 1.091-.859 2.218-.897 3.039\\\"/><path fill=\\\"#FFD02D\\\" d=\\\"M61.943 33.962c-.016.51 1.089-.816 1.155-.932c.14-.282.61-1.079.676-1.407c.125-.576.378-1.006.177-1.597c-.07-.19-.499-.22-.687-.088c-.533.351-.432.744-.475 1.112c-.153 1.046-.813 2.126-.846 2.912\\\"/><path fill=\\\"#FFD030\\\" d=\\\"M62.03 33.817c-.013.487 1.037-.785 1.099-.895c.131-.27.577-1.033.638-1.347c.117-.55.357-.962.162-1.526c-.068-.181-.478-.208-.657-.082c-.507.338-.409.713-.448 1.065c-.142 1-.766 2.035-.794 2.785\\\"/><path fill=\\\"#FFD133\\\" d=\\\"M62.116 33.673c-.009.464.985-.753 1.043-.859c.124-.257.544-.987.601-1.287c.108-.525.334-.919.145-1.455c-.066-.173-.456-.196-.626-.074c-.481.325-.385.681-.421 1.017c-.13.954-.719 1.944-.742 2.658\\\"/><path fill=\\\"#fc0\\\" d=\\\"M67.709 32.716c-1.022 1.116-1.743 2.185-2.324 2.906c-.605.744-2.093 1.627-1.349 2.487c.627.767 3.208-.627 5.208-2.115c1.975-1.488 5.067-2.813 3.557-4.509c-.791-.86-2.651-.675-3.371-.209c-.559.348-.884.534-1.721 1.44\\\"/><path fill=\\\"#FFCC02\\\" d=\\\"M67.753 32.766c-1.007 1.091-1.715 2.14-2.287 2.844c-.595.726-2.059 1.597-1.334 2.432c.611.746 3.139-.627 5.1-2.088c1.937-1.461 4.966-2.769 3.493-4.417c-.77-.835-2.589-.645-3.296-.188c-.546.341-.861.538-1.676 1.417\\\"/><path fill=\\\"#FFCC05\\\" d=\\\"M67.797 32.815c-.99 1.066-1.688 2.095-2.25 2.783c-.585.708-2.026 1.566-1.319 2.377c.595.725 3.071-.627 4.993-2.062c1.899-1.434 4.863-2.724 3.43-4.325c-.75-.811-2.53-.616-3.222-.168c-.536.338-.839.544-1.632 1.395\\\"/><path fill=\\\"#FFCC07\\\" d=\\\"M67.841 32.865c-.975 1.04-1.66 2.049-2.214 2.721c-.575.69-1.991 1.535-1.304 2.323c.579.703 3.004-.627 4.886-2.035c1.86-1.407 4.761-2.679 3.366-4.232c-.729-.787-2.469-.587-3.146-.147c-.524.33-.816.547-1.588 1.37\\\"/><path fill=\\\"#FFCD0A\\\" d=\\\"M67.885 32.915c-.958 1.014-1.63 2.003-2.177 2.659c-.565.672-1.957 1.504-1.29 2.268c.563.681 2.935-.627 4.778-2.008c1.822-1.381 4.659-2.635 3.303-4.141c-.71-.762-2.41-.557-3.073-.127c-.511.326-.791.554-1.541 1.349\\\"/><path fill=\\\"#FFCD0C\\\" d=\\\"M67.929 32.964c-.942.99-1.603 1.959-2.141 2.598c-.555.654-1.923 1.473-1.275 2.213c.547.66 2.867-.627 4.671-1.981c1.783-1.354 4.558-2.591 3.239-4.048c-.689-.738-2.349-.528-2.998-.105c-.498.318-.768.556-1.496 1.323\\\"/><path fill=\\\"#FFCD0F\\\" d=\\\"M67.973 33.014c-.927.964-1.576 1.913-2.104 2.537c-.545.636-1.89 1.442-1.26 2.158c.531.639 2.798-.627 4.563-1.955c1.744-1.327 4.456-2.546 3.176-3.955c-.67-.714-2.29-.5-2.924-.085c-.487.312-.745.56-1.451 1.3\\\"/><path fill=\\\"#FFCD11\\\" d=\\\"M68.017 33.063c-.911.939-1.548 1.868-2.068 2.476c-.535.618-1.856 1.412-1.245 2.102c.514.617 2.729-.626 4.456-1.927c1.707-1.301 4.354-2.502 3.113-3.863c-.65-.689-2.229-.47-2.848-.064c-.476.306-.723.565-1.408 1.276\\\"/><path fill=\\\"#FFCE14\\\" d=\\\"M68.061 33.112c-.895.914-1.519 1.823-2.031 2.414c-.525.6-1.822 1.381-1.231 2.047c.498.596 2.662-.626 4.349-1.9c1.668-1.273 4.252-2.458 3.048-3.771c-.628-.665-2.167-.44-2.773-.043c-.464.301-.699.57-1.362 1.253\\\"/><path fill=\\\"#FFCE16\\\" d=\\\"M68.105 33.162c-.879.888-1.491 1.777-1.994 2.353c-.515.583-1.788 1.35-1.216 1.993c.481.574 2.593-.625 4.241-1.874c1.628-1.247 4.149-2.414 2.986-3.679c-.61-.641-2.109-.412-2.699-.023c-.452.295-.677.575-1.318 1.23\\\"/><path fill=\\\"#FFCE19\\\" d=\\\"M68.149 33.212c-.863.863-1.462 1.732-1.958 2.291c-.504.564-1.754 1.319-1.202 1.938c.465.553 2.525-.625 4.134-1.847c1.591-1.22 4.048-2.369 2.922-3.586c-.589-.616-2.048-.382-2.625-.002c-.439.288-.652.578-1.271 1.206\\\"/><path fill=\\\"#FFCE1C\\\" d=\\\"M68.193 33.261c-.846.838-1.435 1.687-1.921 2.229c-.495.546-1.72 1.289-1.187 1.882c.449.531 2.457-.625 4.027-1.82c1.552-1.193 3.946-2.325 2.859-3.494c-.57-.591-1.988-.353-2.551.019c-.427.284-.629.584-1.227 1.184\\\"/><path fill=\\\"#FFCF1E\\\" d=\\\"M68.237 33.311c-.831.813-1.407 1.642-1.884 2.168c-.485.529-1.687 1.258-1.172 1.828c.433.51 2.388-.625 3.919-1.792c1.514-1.167 3.843-2.28 2.795-3.402c-.549-.566-1.927-.324-2.476.039c-.416.276-.606.587-1.182 1.159\\\"/><path fill=\\\"#FFCF21\\\" d=\\\"M68.281 33.36c-.814.788-1.378 1.597-1.847 2.106c-.475.511-1.654 1.227-1.158 1.773c.416.489 2.32-.624 3.812-1.766c1.475-1.14 3.741-2.236 2.732-3.31c-.529-.542-1.867-.295-2.402.06c-.404.272-.583.593-1.137 1.137\\\"/><path fill=\\\"#FFCF23\\\" d=\\\"M68.326 33.41c-.8.763-1.352 1.551-1.811 2.045c-.465.493-1.62 1.196-1.143 1.717c.4.468 2.251-.624 3.704-1.739c1.437-1.113 3.64-2.191 2.669-3.217c-.509-.519-1.808-.266-2.327.081c-.394.266-.561.597-1.092 1.113\\\"/><path fill=\\\"#FFCF26\\\" d=\\\"M68.369 33.459c-.783.737-1.324 1.505-1.774 1.983c-.456.475-1.586 1.166-1.129 1.663c.384.446 2.184-.624 3.598-1.712c1.398-1.086 3.538-2.147 2.605-3.125c-.489-.493-1.748-.236-2.252.101c-.382.26-.537.602-1.048 1.09\\\"/><path fill=\\\"#FFD028\\\" d=\\\"M68.412 33.509c-.766.711-1.294 1.46-1.736 1.921c-.446.457-1.553 1.135-1.114 1.607c.368.425 2.115-.624 3.49-1.685c1.36-1.061 3.436-2.104 2.543-3.033c-.469-.47-1.688-.208-2.178.122c-.371.255-.515.607-1.005 1.068\\\"/><path fill=\\\"#FFD02B\\\" d=\\\"M68.456 33.559c-.75.687-1.265 1.415-1.699 1.86c-.436.439-1.519 1.104-1.1 1.553c.353.403 2.047-.623 3.383-1.658c1.321-1.033 3.334-2.058 2.479-2.94c-.448-.445-1.627-.178-2.103.143c-.359.247-.492.609-.96 1.042\\\"/><path fill=\\\"#FFD02D\\\" d=\\\"M68.501 33.608c-.735.661-1.238 1.37-1.664 1.799c-.426.421-1.485 1.073-1.084 1.498c.335.381 1.978-.624 3.275-1.632c1.284-1.006 3.232-2.014 2.416-2.848c-.429-.42-1.566-.149-2.029.163c-.347.242-.468.615-.914 1.02\\\"/><path fill=\\\"#FFD030\\\" d=\\\"M68.545 33.657c-.719.636-1.21 1.324-1.627 1.737c-.415.403-1.451 1.043-1.069 1.443c.318.36 1.91-.623 3.168-1.605c1.243-.979 3.129-1.97 2.352-2.756c-.41-.396-1.507-.12-1.955.184c-.335.238-.445.621-.869.997\\\"/><path fill=\\\"#FFD133\\\" d=\\\"M68.589 33.707c-.704.611-1.183 1.278-1.591 1.676c-.405.385-1.417 1.012-1.055 1.388c.302.338 1.841-.623 3.061-1.578c1.206-.953 3.028-1.926 2.289-2.664c-.388-.372-1.446-.091-1.879.205z\\\"/><path fill=\\\"#fff\\\" d=\\\"M69.894 56.148c.278-.907 9.322-3.045 10.81-2.348c1.464.697 8.484 10.903 7.23 11.461c-1.255.535-3.953-3.395-7.881-5.208c-3.929-1.813-10.438-2.975-10.159-3.905\\\"/><path fill=\\\"#F9F9F9\\\" d=\\\"M70.161 56.167c.273-.892 9.087-2.931 10.554-2.26c1.445.671 8.319 10.622 7.084 11.168c-1.234.525-3.863-3.34-7.729-5.125c-3.867-1.783-10.183-2.869-9.909-3.783\\\"/><path fill=\\\"#F4F4F4\\\" d=\\\"M70.427 56.186c.268-.876 8.853-2.816 10.299-2.17c1.426.645 8.155 10.339 6.94 10.875c-1.214.515-3.774-3.287-7.579-5.043c-3.804-1.756-9.929-2.765-9.66-3.662\\\"/><path fill=\\\"#EFEFEF\\\" d=\\\"M70.693 56.204c.264-.861 8.618-2.701 10.044-2.082c1.407.619 7.989 10.059 6.796 10.583c-1.193.505-3.686-3.233-7.428-4.96c-3.742-1.727-9.675-2.66-9.412-3.541\\\"/><path fill=\\\"#EAEAEA\\\" d=\\\"M70.959 56.222c.258-.847 8.382-2.585 9.79-1.993c1.387.593 7.824 9.778 6.651 10.291c-1.173.495-3.597-3.179-7.277-4.878c-3.681-1.699-9.422-2.556-9.164-3.42\\\"/><path fill=\\\"#E5E5E5\\\" d=\\\"M71.226 56.24c.252-.831 8.148-2.47 9.534-1.903c1.368.566 7.659 9.497 6.507 9.998c-1.153.484-3.509-3.125-7.127-4.796c-3.618-1.67-9.168-2.451-8.914-3.299\\\"/><path fill=\\\"#E0E0E0\\\" d=\\\"M71.491 56.258c.249-.816 7.914-2.355 9.28-1.815c1.349.541 7.495 9.216 6.363 9.707c-1.132.474-3.42-3.073-6.977-4.714c-3.556-1.642-8.914-2.345-8.666-3.178\\\"/><path fill=\\\"#DBDBDB\\\" d=\\\"M71.758 56.277c.243-.801 7.678-2.241 9.024-1.727c1.33.515 7.33 8.934 6.218 9.414c-1.11.464-3.331-3.019-6.825-4.631s-8.66-2.24-8.417-3.056\\\"/><path fill=\\\"#D6D6D6\\\" d=\\\"M72.024 56.295c.237-.786 7.444-2.126 8.769-1.638c1.312.489 7.164 8.653 6.074 9.122c-1.09.454-3.242-2.965-6.675-4.549c-3.432-1.584-8.406-2.135-8.168-2.935\\\"/><path fill=\\\"#D1D1D1\\\" d=\\\"M72.29 56.313c.233-.77 7.209-2.011 8.514-1.548c1.292.462 6.999 8.372 5.93 8.829c-1.07.445-3.154-2.911-6.523-4.466c-3.371-1.556-8.153-2.031-7.921-2.815\\\"/><path fill=\\\"#ccc\\\" d=\\\"M72.556 56.331c.228-.755 6.976-1.896 8.259-1.459c1.273.436 6.835 8.091 5.786 8.537c-1.05.434-3.066-2.858-6.374-4.385c-3.307-1.527-7.898-1.925-7.671-2.693\\\"/><path fill=\\\"#C6C6C6\\\" d=\\\"M72.823 56.35c.222-.74 6.74-1.781 8.004-1.371c1.253.41 6.669 7.809 5.64 8.244c-1.028.424-2.977-2.805-6.222-4.302c-3.246-1.498-7.644-1.82-7.422-2.571\\\"/><path fill=\\\"#C1C1C1\\\" d=\\\"M73.089 56.369c.217-.726 6.505-1.667 7.749-1.283c1.233.384 6.503 7.528 5.496 7.952c-1.008.415-2.887-2.75-6.071-4.221c-3.185-1.469-7.391-1.714-7.174-2.448\\\"/><path fill=\\\"#BCBCBC\\\" d=\\\"M73.355 56.387c.21-.71 6.27-1.552 7.494-1.194c1.215.358 6.338 7.248 5.352 7.66c-.987.404-2.799-2.697-5.92-4.137c-3.122-1.442-7.137-1.61-6.926-2.329\\\"/><path fill=\\\"#B7B7B7\\\" d=\\\"M73.621 56.406c.208-.695 6.035-1.437 7.239-1.105c1.196.332 6.174 6.965 5.208 7.367c-.967.394-2.711-2.643-5.771-4.056c-3.06-1.412-6.882-1.505-6.676-2.206\\\"/><path fill=\\\"#B2B2B2\\\" d=\\\"M73.887 56.423c.202-.679 5.801-1.321 6.984-1.016c1.177.305 6.008 6.685 5.063 7.075c-.946.385-2.622-2.589-5.62-3.973c-2.997-1.383-6.627-1.4-6.427-2.086\\\"/><path fill=\\\"#ADADAD\\\" d=\\\"M74.154 56.442c.196-.665 5.565-1.207 6.728-.928c1.159.28 5.844 6.404 4.919 6.783c-.925.373-2.533-2.536-5.469-3.892c-2.935-1.354-6.374-1.294-6.178-1.963\\\"/><path fill=\\\"#A8A8A8\\\" d=\\\"M74.42 56.46c.19-.649 5.331-1.092 6.474-.839c1.137.253 5.678 6.123 4.774 6.491c-.905.364-2.445-2.482-5.319-3.809c-2.873-1.326-6.12-1.19-5.929-1.843\\\"/><path fill=\\\"#A3A3A3\\\" d=\\\"M74.685 56.479c.186-.634 5.097-.977 6.219-.75c1.12.228 5.514 5.842 4.629 6.198c-.883.354-2.355-2.429-5.167-3.727c-2.81-1.298-5.865-1.084-5.681-1.721\\\"/><path fill=\\\"#9E9E9E\\\" d=\\\"M74.952 56.497c.181-.62 4.862-.862 5.963-.661c1.1.201 5.348 5.56 4.486 5.905c-.863.344-2.267-2.375-5.017-3.644c-2.748-1.269-5.612-.979-5.432-1.6\\\"/><path fill=\\\"#999\\\" d=\\\"M75.219 56.515c.174-.604 4.627-.747 5.708-.572c1.082.175 5.184 5.279 4.341 5.613s-2.178-2.321-4.866-3.562c-2.687-1.241-5.358-.874-5.183-1.479\\\"/><path fill=\\\"#fff\\\" d=\\\"M58.503 70.05c.93.046.047 5.253.047 10.624c0 5.37.72 7.252.047 7.926c-.674.675-1.836-1.743-1.836-7.113c-.001-5.37.813-11.484 1.742-11.437\\\"/><path fill=\\\"#F9F9F9\\\" d=\\\"M58.494 70.176c.898.052.035 5.182.031 10.467c-.003 5.284.707 7.17.054 7.825c-.652.656-1.796-1.738-1.791-7.023c.004-5.284.808-11.321 1.706-11.269\\\"/><path fill=\\\"#F4F4F4\\\" d=\\\"M58.484 70.302c.868.058.025 5.111.017 10.31c-.008 5.199.691 7.087.06 7.725c-.63.635-1.755-1.732-1.745-6.933c.008-5.199.802-11.16 1.668-11.102\\\"/><path fill=\\\"#EFEFEF\\\" d=\\\"M58.475 70.428c.835.064.013 5.042.001 10.154c-.011 5.112.677 7.004.066 7.622c-.609.616-1.714-1.728-1.699-6.843c.012-5.112.797-10.996 1.632-10.933\\\"/><path fill=\\\"#EAEAEA\\\" d=\\\"M58.465 70.555c.804.069.003 4.97-.013 9.996c-.016 5.028.663 6.923.072 7.522c-.587.597-1.673-1.723-1.654-6.753c.017-5.027.792-10.835 1.595-10.765\\\"/><path fill=\\\"#E5E5E5\\\" d=\\\"M58.456 70.681c.772.074-.009 4.898-.029 9.84c-.02 4.942.648 6.839.079 7.42c-.565.577-1.632-1.718-1.608-6.663c.02-4.942.785-10.672 1.558-10.597\\\"/><path fill=\\\"#E0E0E0\\\" d=\\\"M58.447 70.807c.742.08-.02 4.827-.045 9.682c-.024 4.856.634 6.757.086 7.319c-.544.558-1.591-1.711-1.562-6.572c.024-4.856.779-10.509 1.521-10.429\\\"/><path fill=\\\"#DBDBDB\\\" d=\\\"M58.437 70.933c.709.086-.031 4.756-.059 9.527c-.028 4.77.618 6.673.091 7.217c-.521.538-1.55-1.707-1.516-6.483c.028-4.77.774-10.347 1.484-10.261\\\"/><path fill=\\\"#D6D6D6\\\" d=\\\"M58.428 71.059c.679.091-.042 4.685-.074 9.37c-.032 4.685.604 6.591.098 7.116c-.5.519-1.509-1.702-1.471-6.393c.033-4.684.768-10.184 1.447-10.093\\\"/><path fill=\\\"#D1D1D1\\\" d=\\\"M58.418 71.186c.648.097-.053 4.614-.089 9.212c-.036 4.6.59 6.507.104 7.014c-.477.5-1.468-1.695-1.425-6.302c.036-4.598.763-10.022 1.41-9.924\\\"/><path fill=\\\"#ccc\\\" d=\\\"M58.409 71.312c.617.103-.063 4.542-.103 9.056s.574 6.425.111 6.914c-.457.479-1.428-1.691-1.38-6.213c.039-4.513.756-9.86 1.372-9.757\\\"/><path fill=\\\"#C6C6C6\\\" d=\\\"M58.399 71.439c.585.107-.075 4.472-.119 8.899c-.044 4.427.56 6.342.117 6.811c-.434.462-1.386-1.684-1.333-6.122c.044-4.427.751-9.697 1.335-9.588\\\"/><path fill=\\\"#C1C1C1\\\" d=\\\"M58.389 71.564c.554.114-.086 4.4-.134 8.743c-.047 4.342.546 6.259.124 6.71c-.412.441-1.345-1.68-1.288-6.033c.048-4.341.746-9.534 1.298-9.42\\\"/><path fill=\\\"#BCBCBC\\\" d=\\\"M58.38 71.691c.522.119-.098 4.33-.148 8.586c-.052 4.257.531 6.177.13 6.609c-.392.422-1.305-1.675-1.243-5.942c.052-4.257.74-9.374 1.261-9.253\\\"/><path fill=\\\"#B7B7B7\\\" d=\\\"M58.37 71.817c.491.125-.108 4.258-.164 8.429c-.056 4.171.517 6.094.137 6.507c-.37.403-1.264-1.669-1.197-5.851c.056-4.171.735-9.211 1.224-9.085\\\"/><path fill=\\\"#B2B2B2\\\" d=\\\"M58.362 71.944c.459.13-.12 4.187-.179 8.271c-.061 4.085.502 6.011.142 6.407c-.347.383-1.223-1.665-1.15-5.762c.059-4.085.727-9.047 1.187-8.916\\\"/><path fill=\\\"#ADADAD\\\" d=\\\"M58.351 72.069c.428.136-.13 4.116-.193 8.116c-.064 4 .487 5.928.148 6.305c-.325.363-1.182-1.66-1.104-5.672c.064-3.999.722-8.885 1.149-8.749\\\"/><path fill=\\\"#A8A8A8\\\" d=\\\"M58.343 72.196c.396.142-.142 4.044-.208 7.959c-.068 3.914.472 5.845.154 6.203c-.303.344-1.14-1.654-1.059-5.582c.068-3.914.716-8.722 1.113-8.58\\\"/><path fill=\\\"#A3A3A3\\\" d=\\\"M58.332 72.322c.365.148-.152 3.974-.223 7.802c-.072 3.829.458 5.763.162 6.102c-.282.325-1.1-1.648-1.014-5.492c.071-3.827.711-8.561 1.075-8.412\\\"/><path fill=\\\"#9E9E9E\\\" d=\\\"M58.324 72.448c.333.154-.164 3.903-.24 7.646c-.076 3.743.444 5.679.169 6c-.261.306-1.059-1.644-.968-5.401c.075-3.743.705-8.399 1.039-8.245\\\"/><path fill=\\\"#999\\\" d=\\\"M58.314 72.574c.302.159-.175 3.831-.254 7.489c-.08 3.657.429 5.597.175 5.899c-.238.286-1.018-1.638-.922-5.311c.078-3.657.699-8.236 1.001-8.077\\\"/><path fill=\\\"#fff\\\" d=\\\"M60.538 55.693c.56.062 4.015-.716 4.14-.405c.125.249-2.148.935-2.895 1.712c-.249.25-.902.84-1.308.778c-.311-.031-.498-.685-.965-1.183c-1.121-1.121-1.836-1.027-1.619-1.463c.188-.341 1.682.468 2.647.561\\\"/><path fill=\\\"#FBFBFB\\\" d=\\\"M60.552 55.707c.549.061 3.932-.701 4.053-.396c.122.244-2.103.914-2.834 1.676c-.244.244-.883.823-1.279.762c-.304-.03-.488-.67-.945-1.157c-1.098-1.097-1.798-1.006-1.585-1.433c.183-.336 1.646.456 2.59.548\\\"/><path fill=\\\"#F8F8F8\\\" d=\\\"M60.567 55.719c.537.06 3.847-.686 3.966-.388c.12.239-2.057.896-2.773 1.641c-.239.239-.864.806-1.252.746c-.298-.029-.477-.656-.924-1.133c-1.074-1.073-1.759-.984-1.551-1.401c.179-.329 1.61.446 2.534.535\\\"/><path fill=\\\"#F5F5F5\\\" d=\\\"M60.582 55.732c.525.058 3.762-.67 3.879-.379c.116.234-2.012.875-2.712 1.604c-.233.233-.845.787-1.225.729c-.291-.029-.467-.642-.905-1.108c-1.05-1.05-1.721-.962-1.516-1.371c.175-.32 1.575.438 2.479.525\\\"/><path fill=\\\"#F2F2F2\\\" d=\\\"M60.596 55.746c.514.057 3.678-.656 3.792-.371c.114.228-1.967.855-2.651 1.567c-.228.229-.828.77-1.198.713c-.284-.028-.456-.627-.884-1.083c-1.026-1.026-1.681-.941-1.482-1.34c.171-.314 1.54.428 2.423.514\\\"/><path fill=\\\"#EFEFEF\\\" d=\\\"M60.611 55.758c.502.056 3.594-.641 3.705-.362c.112.223-1.921.836-2.59 1.532c-.223.223-.808.752-1.169.697c-.279-.028-.446-.613-.864-1.059c-1.003-1.002-1.644-.919-1.448-1.31c.165-.306 1.502.418 2.366.502\\\"/><path fill=\\\"#EBEBEB\\\" d=\\\"M60.625 55.772c.49.054 3.51-.626 3.618-.354c.109.218-1.877.816-2.529 1.497c-.218.217-.79.734-1.143.68c-.271-.027-.435-.599-.843-1.034c-.979-.979-1.605-.897-1.414-1.278c.162-.301 1.469.406 2.311.489\\\"/><path fill=\\\"#E8E8E8\\\" d=\\\"M60.64 55.784c.478.053 3.425-.611 3.53-.345c.107.211-1.831.796-2.468 1.46c-.212.212-.771.717-1.115.663c-.265-.026-.425-.583-.823-1.008c-.956-.956-1.567-.876-1.38-1.248c.159-.292 1.433.398 2.256.478\\\"/><path fill=\\\"#E5E5E5\\\" d=\\\"M60.655 55.797c.466.052 3.34-.596 3.444-.337c.103.207-1.786.777-2.408 1.424c-.208.207-.75.699-1.088.647c-.258-.026-.414-.57-.802-.984c-.932-.932-1.528-.854-1.346-1.217c.154-.284 1.397.389 2.2.467\\\"/><path fill=\\\"#E2E2E2\\\" d=\\\"M60.669 55.81c.455.051 3.256-.58 3.357-.328c.101.202-1.741.757-2.347 1.388c-.202.202-.732.682-1.06.631c-.252-.025-.404-.555-.783-.959c-.908-.908-1.489-.833-1.312-1.186c.152-.278 1.362.377 2.145.454\\\"/><path fill=\\\"#DFDFDF\\\" d=\\\"M60.683 55.822c.442.049 3.171-.565 3.27-.319c.099.197-1.696.737-2.286 1.352c-.196.197-.713.664-1.032.614c-.245-.024-.393-.541-.762-.934c-.885-.885-1.45-.811-1.278-1.155c.147-.27 1.326.369 2.088.442\\\"/><path fill=\\\"#DBDBDB\\\" d=\\\"M60.698 55.835c.432.048 3.087-.551 3.184-.311c.095.19-1.652.717-2.227 1.315c-.19.191-.693.646-1.005.599c-.239-.024-.382-.526-.742-.91c-.861-.861-1.412-.79-1.244-1.125c.143-.261 1.292.36 2.034.432\\\"/><path fill=\\\"#D8D8D8\\\" d=\\\"M60.713 55.849c.419.046 3.002-.535 3.095-.303c.093.186-1.605.698-2.164 1.28c-.186.186-.675.629-.977.582c-.233-.023-.373-.512-.722-.885c-.838-.837-1.373-.768-1.209-1.094c.138-.255 1.255.349 1.977.42\\\"/><path fill=\\\"#D5D5D5\\\" d=\\\"M60.727 55.861c.407.045 2.918-.52 3.008-.294c.091.181-1.561.679-2.104 1.244c-.181.181-.656.611-.95.566c-.226-.023-.361-.498-.7-.86c-.814-.813-1.335-.746-1.177-1.062c.136-.249 1.222.338 1.923.406\\\"/><path fill=\\\"#D2D2D2\\\" d=\\\"M60.742 55.874c.396.044 2.833-.505 2.922-.285c.088.175-1.516.659-2.042 1.208c-.176.175-.637.593-.922.549c-.221-.022-.352-.483-.682-.834c-.79-.791-1.295-.725-1.142-1.032c.13-.243 1.185.328 1.866.394\\\"/><path fill=\\\"#CFCFCF\\\" d=\\\"M60.757 55.887c.384.043 2.749-.49 2.834-.277c.086.17-1.47.64-1.982 1.172c-.169.171-.618.575-.895.533c-.213-.021-.34-.469-.66-.81c-.768-.768-1.258-.704-1.109-1.002c.128-.233 1.151.32 1.812.384\\\"/><path fill=\\\"#ccc\\\" d=\\\"M60.771 55.9c.372.042 2.665-.475 2.748-.268c.082.165-1.426.62-1.921 1.135c-.166.166-.599.558-.869.517c-.207-.021-.33-.454-.64-.785c-.743-.744-1.218-.682-1.074-.971c.125-.227 1.116.31 1.756.372\\\"/><path fill=\\\"#C8C8C8\\\" d=\\\"M60.785 55.913c.36.04 2.581-.46 2.661-.26c.08.16-1.38.6-1.86 1.1c-.16.16-.58.54-.84.5c-.2-.02-.32-.44-.621-.76c-.72-.72-1.18-.66-1.039-.94c.12-.221 1.08.3 1.699.36\\\"/><path fill=\\\"#C5C5C5\\\" d=\\\"M60.801 55.926c.348.038 2.496-.445 2.573-.252c.077.154-1.335.581-1.799 1.064c-.155.155-.562.522-.813.483c-.194-.02-.31-.425-.599-.735c-.698-.696-1.142-.639-1.007-.91c.116-.211 1.045.292 1.645.35\\\"/><path fill=\\\"#C2C2C2\\\" d=\\\"M60.815 55.939c.336.038 2.411-.43 2.486-.243c.075.15-1.289.561-1.738 1.028c-.15.149-.543.505-.785.467c-.187-.019-.3-.411-.58-.71c-.672-.673-1.103-.618-.972-.879c.112-.205 1.01.28 1.589.337\\\"/><path fill=\\\"#BFBFBF\\\" d=\\\"M60.829 55.951c.325.036 2.327-.415 2.4-.235c.072.145-1.245.542-1.678.993c-.145.144-.523.487-.758.451c-.181-.018-.288-.396-.559-.685c-.65-.649-1.064-.596-.938-.849c.108-.198.974.271 1.533.325\\\"/><path d=\\\"M72.425 5.573c-.394.849-1.23 7.494-.08 6.745c1.161-.756 4.381-1.715 6.42-2.265c2.261-.608-5.548-6.283-6.34-4.48\\\"/><path fill=\\\"#060606\\\" d=\\\"M72.5 5.696c-.391.838-1.196 7.186-.076 6.459c1.128-.73 4.222-1.646 6.147-2.189c2.128-.614-5.306-6.008-6.071-4.27\\\"/><path fill=\\\"#0C0C0C\\\" d=\\\"M72.575 5.821c-.386.826-1.161 6.875-.071 6.174c1.095-.706 4.063-1.578 5.874-2.115c1.994-.621-5.064-5.733-5.803-4.059\\\"/><path fill=\\\"#131313\\\" d=\\\"M72.65 5.945c-.383.814-1.125 6.566-.067 5.889c1.062-.679 3.905-1.51 5.602-2.041c1.86-.627-4.822-5.458-5.535-3.848\\\"/><path fill=\\\"#191919\\\" d=\\\"M72.724 6.069c-.38.802-1.09 6.257-.062 5.603s3.745-1.441 5.328-1.966c1.727-.633-4.579-5.182-5.266-3.637\\\"/><path fill=\\\"#1F1F1F\\\" d=\\\"M72.8 6.193c-.375.79-1.056 5.947-.058 5.318c.996-.629 3.585-1.373 5.056-1.892c1.592-.638-4.337-4.907-4.998-3.426\\\"/><path fill=\\\"#262626\\\" d=\\\"M72.874 6.317c-.372.778-1.021 5.638-.053 5.033c.963-.604 3.427-1.305 4.782-1.817c1.459-.645-4.093-4.632-4.729-3.216\\\"/><path fill=\\\"#2C2C2C\\\" d=\\\"M72.95 6.441c-.369.766-.987 5.328-.05 4.747c.931-.578 3.269-1.235 4.51-1.742c1.326-.651-3.852-4.356-4.46-3.005\\\"/><path fill=\\\"#333\\\" d=\\\"M73.025 6.565c-.365.754-.951 5.018-.045 4.461c.897-.553 3.108-1.167 4.235-1.668c1.193-.655-3.607-4.08-4.19-2.793\\\"/><path fill=\\\"#393939\\\" d=\\\"M73.1 6.69c-.361.742-.916 4.708-.041 4.176c.865-.528 2.951-1.099 3.963-1.594C78.08 8.61 73.656 5.467 73.1 6.69\\\"/><path fill=\\\"#3F3F3F\\\" d=\\\"M73.175 6.814c-.357.73-.881 4.399-.036 3.89c.831-.502 2.791-1.03 3.689-1.52c.925-.667-3.124-3.529-3.653-2.37\\\"/><path fill=\\\"#464646\\\" d=\\\"M73.249 6.938c-.354.718-.846 4.089-.032 3.605c.799-.478 2.632-.962 3.417-1.445c.792-.673-2.881-3.254-3.385-2.16\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M73.325 7.063c-.351.706-.812 3.779-.027 3.319c.767-.452 2.473-.895 3.144-1.37c.657-.68-2.639-2.979-3.117-1.949\\\"/><path fill=\\\"#525252\\\" d=\\\"M73.399 7.187c-.346.694-.776 3.47-.023 3.034c.733-.427 2.314-.826 2.871-1.295c.524-.687-2.396-2.704-2.848-1.739\\\"/><path fill=\\\"#595959\\\" d=\\\"M73.474 7.311c-.342.682-.741 3.161-.018 2.749c.701-.402 2.156-.757 2.598-1.222c.39-.691-2.154-2.428-2.58-1.527\\\"/><path fill=\\\"#5F5F5F\\\" d=\\\"M73.549 7.435c-.338.671-.706 2.851-.014 2.462c.667-.376 1.997-.688 2.324-1.147c.258-.696-1.91-2.151-2.31-1.315\\\"/><path fill=\\\"#666\\\" d=\\\"M73.624 7.559c-.334.659-.671 2.541-.009 2.177c.636-.351 1.837-.62 2.052-1.072c.122-.703-1.669-1.877-2.043-1.105\\\"/><path fill=\\\"#6C6C6C\\\" d=\\\"M73.699 7.683c-.331.647-.637 2.231-.005 1.892c.603-.325 1.678-.551 1.778-.997c-.009-.71-1.425-1.602-1.773-.895\\\"/><path fill=\\\"#727272\\\" d=\\\"M73.773 7.807c-.328.635-.601 1.922-.001 1.606c.571-.3 1.52-.483 1.506-.923c-.143-.714-1.182-1.325-1.505-.683\\\"/><path fill=\\\"#797979\\\" d=\\\"M73.849 7.931c-.325.623-.567 1.612.003 1.321c.537-.275 1.361-.415 1.232-.849c-.277-.72-.939-1.05-1.235-.472\\\"/><path fill=\\\"#7F7F7F\\\" d=\\\"M73.924 8.055c-.321.611-.532 1.303.007 1.035c.505-.25 1.202-.346.96-.774c-.411-.726-.697-.774-.967-.261\\\"/><path d=\\\"M56.039 16.7c-.232.697 2.813 1.65 3.488 2.255c.906.813.976 2.417 2.045 1.767c.697-.418.163-1.348-1.117-2.766c-1.882-2.094-4.206-1.838-4.416-1.256\\\"/><path fill=\\\"#050505\\\" d=\\\"M56.197 16.763c-.23.669 2.672 1.583 3.338 2.177c.886.793.956 2.34 1.984 1.715c.677-.405.145-1.315-1.08-2.673c-1.799-2.003-4.032-1.778-4.242-1.219\\\"/><path fill=\\\"#0A0A0A\\\" d=\\\"M56.355 16.826c-.229.642 2.532 1.514 3.188 2.098c.865.773.935 2.263 1.923 1.664c.654-.391.126-1.281-1.043-2.581c-1.717-1.912-3.859-1.717-4.068-1.181\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M56.513 16.89c-.227.613 2.39 1.445 3.039 2.02c.845.752.915 2.185 1.861 1.612c.635-.378.111-1.248-1.005-2.488c-1.635-1.824-3.686-1.659-3.895-1.144\\\"/><path fill=\\\"#141414\\\" d=\\\"M56.67 16.954c-.226.585 2.25 1.376 2.889 1.94c.825.731.895 2.108 1.799 1.561c.613-.365.093-1.214-.968-2.395c-1.551-1.733-3.51-1.599-3.72-1.106\\\"/><path fill=\\\"#191919\\\" d=\\\"M56.827 17.017c-.224.557 2.109 1.308 2.739 1.862c.805.711.875 2.031 1.739 1.51c.592-.351.075-1.18-.931-2.302c-1.469-1.645-3.337-1.54-3.547-1.07\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M56.985 17.08c-.222.53 1.968 1.24 2.59 1.784c.784.691.854 1.954 1.676 1.458c.571-.338.058-1.147-.894-2.209c-1.386-1.554-3.162-1.48-3.372-1.033\\\"/><path fill=\\\"#232323\\\" d=\\\"M57.143 17.144c-.222.501 1.827 1.172 2.441 1.706c.764.67.833 1.877 1.615 1.407c.55-.324.04-1.114-.856-2.117c-1.305-1.465-2.99-1.421-3.2-.996\\\"/><path fill=\\\"#282828\\\" d=\\\"M57.301 17.208c-.22.473 1.686 1.103 2.291 1.627c.744.65.814 1.799 1.555 1.355c.528-.311.022-1.08-.82-2.024c-1.223-1.375-2.816-1.362-3.026-.958\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M57.459 17.272c-.22.445 1.544 1.034 2.141 1.548c.724.629.792 1.722 1.492 1.304c.508-.297.005-1.046-.783-1.931c-1.138-1.286-2.64-1.303-2.85-.921\\\"/><path fill=\\\"#333\\\" d=\\\"M57.616 17.335c-.217.417 1.404.965 1.992 1.469c.704.609.772 1.645 1.431 1.253c.486-.284-.013-1.013-.747-1.838c-1.055-1.196-2.466-1.243-2.676-.884\\\"/><path fill=\\\"#383838\\\" d=\\\"M57.774 17.398c-.216.389 1.263.897 1.842 1.391c.683.589.752 1.568 1.369 1.202c.465-.27-.03-.979-.709-1.746c-.972-1.106-2.292-1.183-2.502-.847\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M57.931 17.461c-.214.361 1.123.829 1.692 1.313c.663.568.732 1.49 1.308 1.149c.444-.256-.048-.945-.672-1.652c-.89-1.017-2.117-1.124-2.328-.81\\\"/><path fill=\\\"#424242\\\" d=\\\"M58.089 17.525c-.212.333.982.76 1.542 1.234c.642.547.712 1.413 1.247 1.098c.423-.243-.065-.912-.636-1.56c-.807-.926-1.942-1.064-2.153-.772\\\"/><path fill=\\\"#474747\\\" d=\\\"M58.248 17.589c-.211.305.84.691 1.392 1.155c.622.527.691 1.336 1.186 1.047c.401-.229-.083-.878-.599-1.466c-.725-.838-1.77-1.006-1.979-.736\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M58.406 17.652c-.21.278.698.624 1.242 1.078c.602.506.671 1.258 1.124.995c.381-.216-.1-.845-.561-1.374c-.643-.748-1.596-.946-1.805-.699\\\"/><path fill=\\\"#515151\\\" d=\\\"M58.563 17.715c-.208.25.558.555 1.093.999c.582.486.652 1.181 1.063.944c.359-.202-.118-.811-.525-1.281c-.559-.658-1.42-.887-1.631-.662\\\"/><path fill=\\\"#565656\\\" d=\\\"M58.72 17.779c-.206.221.418.486.944.92c.562.465.63 1.104 1.001.893c.338-.189-.135-.777-.487-1.188c-.477-.569-1.247-.828-1.458-.625\\\"/><path fill=\\\"#5B5B5B\\\" d=\\\"M58.877 17.843c-.204.193.277.417.794.841c.542.445.611 1.027.94.841c.317-.176-.152-.744-.45-1.095c-.394-.479-1.072-.768-1.284-.587\\\"/><path fill=\\\"#606060\\\" d=\\\"M59.036 17.906c-.204.166.136.349.644.763c.521.425.591.95.878.791c.296-.162-.17-.71-.413-1.002c-.312-.391-.899-.71-1.109-.552\\\"/><path fill=\\\"#666\\\" d=\\\"M59.194 17.969c-.202.137-.006.281.494.685c.501.404.571.872.816.739c.275-.149-.188-.677-.376-.91c-.228-.3-.724-.65-.934-.514\\\"/><path d=\\\"M72.173 16.444c-.024.349.953.558 1.581.791c.628.209 1.859 1.046 2.441 1.697c.581.627 1.836 2.487 2.116 1.999c.278-.441-.651-1.72-.907-2.255c-.255-.535-1.045-1.697-2.301-2.092c-1.094-.326-2.907-.419-2.93-.14\\\"/><path fill=\\\"#060606\\\" d=\\\"M72.273 16.469c-.023.338.926.543 1.536.771c.611.204 1.807 1.021 2.372 1.654c.564.611 1.786 2.419 2.058 1.946c.271-.429-.625-1.67-.884-2.194c-.257-.524-1.025-1.644-2.244-2.034c-1.061-.322-2.815-.415-2.838-.143\\\"/><path fill=\\\"#0C0C0C\\\" d=\\\"M72.372 16.494c-.023.33.899.529 1.491.751c.593.199 1.755.995 2.302 1.61c.547.595 1.738 2.351 2.002 1.893c.262-.416-.599-1.62-.862-2.133c-.26-.513-1.004-1.59-2.188-1.977c-1.026-.318-2.723-.408-2.745-.144\\\"/><path fill=\\\"#131313\\\" d=\\\"M72.472 16.518c-.023.32.873.516 1.446.732c.576.194 1.702.968 2.233 1.567c.53.578 1.688 2.283 1.944 1.839c.254-.403-.573-1.571-.84-2.072c-.264-.502-.983-1.537-2.13-1.918c-.992-.314-2.631-.404-2.653-.148\\\"/><path fill=\\\"#191919\\\" d=\\\"M72.572 16.543c-.023.31.845.502 1.402.712c.558.19 1.649.943 2.164 1.524c.512.562 1.639 2.215 1.887 1.786c.248-.39-.547-1.521-.817-2.011c-.266-.491-.961-1.483-2.074-1.861c-.96-.31-2.54-.399-2.562-.15\\\"/><path fill=\\\"#1F1F1F\\\" d=\\\"M72.672 16.568c-.023.3.817.487 1.358.692c.54.185 1.596.918 2.093 1.481c.494.545 1.589 2.146 1.831 1.732c.237-.376-.522-1.471-.796-1.95c-.269-.479-.94-1.43-2.017-1.803c-.926-.305-2.447-.393-2.469-.152\\\"/><path fill=\\\"#262626\\\" d=\\\"M72.77 16.592c-.022.291.792.474 1.314.673c.523.18 1.545.893 2.025 1.438c.477.529 1.54 2.079 1.772 1.679c.231-.364-.495-1.421-.773-1.89c-.271-.468-.919-1.376-1.96-1.745c-.891-.301-2.356-.387-2.378-.155\\\"/><path fill=\\\"#2C2C2C\\\" d=\\\"M72.87 16.617c-.021.282.765.46 1.27.654c.504.175 1.492.867 1.955 1.394c.46.512 1.49 2.011 1.716 1.626c.222-.351-.47-1.372-.751-1.829c-.273-.457-.898-1.323-1.904-1.687c-.859-.298-2.264-.383-2.286-.158\\\"/><path fill=\\\"#333\\\" d=\\\"M72.97 16.642c-.022.272.737.446 1.226.634c.487.17 1.439.841 1.886 1.351c.442.496 1.44 1.942 1.658 1.573c.214-.338-.445-1.322-.729-1.768c-.276-.446-.878-1.27-1.846-1.629c-.827-.294-2.173-.378-2.195-.161\\\"/><path fill=\\\"#393939\\\" d=\\\"M73.07 16.667c-.021.263.712.432 1.181.615c.47.166 1.387.815 1.817 1.308c.425.479 1.39 1.875 1.601 1.519c.207-.324-.418-1.271-.706-1.707c-.279-.436-.856-1.216-1.789-1.571c-.794-.291-2.083-.374-2.104-.164\\\"/><path fill=\\\"#3F3F3F\\\" d=\\\"M73.17 16.691c-.022.253.684.418 1.136.595c.453.161 1.335.79 1.747 1.265c.408.463 1.342 1.806 1.545 1.466c.197-.312-.393-1.222-.685-1.646c-.281-.424-.834-1.162-1.731-1.513c-.761-.287-1.991-.369-2.012-.167\\\"/><path fill=\\\"#464646\\\" d=\\\"M73.269 16.716c-.021.243.658.404 1.092.576c.435.155 1.282.764 1.678 1.221c.391.447 1.292 1.738 1.488 1.413c.189-.299-.367-1.172-.663-1.585c-.284-.414-.814-1.109-1.676-1.455c-.726-.283-1.899-.364-1.919-.17\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M73.369 16.741c-.021.234.629.39 1.047.557c.417.15 1.229.738 1.608 1.178c.373.43 1.243 1.67 1.43 1.359c.182-.286-.341-1.122-.64-1.525c-.287-.402-.792-1.055-1.619-1.397c-.691-.279-1.806-.359-1.826-.172\\\"/><path fill=\\\"#525252\\\" d=\\\"M73.469 16.766c-.021.223.604.375 1.002.536c.4.146 1.178.713 1.54 1.135c.356.414 1.194 1.602 1.375 1.306c.172-.273-.315-1.072-.618-1.464c-.29-.391-.772-1.002-1.563-1.339c-.66-.274-1.716-.353-1.736-.174\\\"/><path fill=\\\"#595959\\\" d=\\\"M73.569 16.791c-.021.214.576.362.958.517c.382.141 1.125.687 1.47 1.091c.338.397 1.144 1.534 1.316 1.253c.166-.26-.29-1.022-.596-1.403c-.291-.38-.75-.949-1.504-1.282c-.627-.27-1.624-.348-1.644-.176\\\"/><path fill=\\\"#5F5F5F\\\" d=\\\"M73.669 16.815c-.021.205.549.348.913.498c.365.135 1.072.662 1.401 1.049c.32.38 1.094 1.465 1.258 1.199c.158-.247-.262-.973-.573-1.342c-.294-.368-.73-.895-1.448-1.223c-.592-.267-1.532-.344-1.551-.181\\\"/><path fill=\\\"#666\\\" d=\\\"M73.768 16.84c-.02.194.522.333.869.478c.347.131 1.019.636 1.332 1.005c.303.364 1.043 1.397 1.201 1.146c.15-.234-.237-.922-.551-1.281c-.296-.358-.708-.841-1.391-1.166c-.559-.263-1.441-.338-1.46-.182\\\"/><path fill=\\\"#6C6C6C\\\" d=\\\"M73.868 16.865c-.021.185.495.32.825.458c.329.126.967.61 1.261.961c.286.348.995 1.329 1.146 1.093c.141-.221-.211-.873-.529-1.22c-.299-.347-.688-.788-1.334-1.108c-.528-.258-1.35-.333-1.369-.184\\\"/><path fill=\\\"#727272\\\" d=\\\"M73.968 16.889c-.021.176.468.306.779.439c.312.122.914.584 1.192.919c.27.331.946 1.261 1.088 1.039c.133-.208-.186-.823-.506-1.16c-.302-.335-.667-.734-1.277-1.05c-.494-.254-1.258-.327-1.276-.187\\\"/><path fill=\\\"#797979\\\" d=\\\"M74.068 16.914c-.021.167.441.292.735.419c.294.117.861.559 1.123.876c.251.315.896 1.193 1.031.986c.124-.194-.161-.773-.484-1.098c-.305-.324-.646-.681-1.221-.992c-.46-.251-1.166-.324-1.184-.191\\\"/><path fill=\\\"#7F7F7F\\\" d=\\\"M74.167 16.939c-.02.157.415.278.691.4c.277.111.809.533 1.054.832c.234.298.846 1.125.974.933c.117-.182-.135-.724-.462-1.038c-.308-.313-.625-.628-1.164-.934c-.427-.247-1.075-.318-1.093-.193\\\"/><path fill=\\\"#995900\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.462 3.742-10.042 6.183c-4.511 3.091-6.067 4.464-7.532 5.927c-2.278 2.279-4.44 3.045-7.904 3.045s-5.021-.72-6.09-1.674c-1.07-.93-2.254-3.301-2.139-6.834c.093-3.511 1.208-6.719 1.744-12.182c.232-2.348.208-5.253.208-7.833c0-3.255.047-6.021.745-6.439c1.255-.79 1.534-.836 3.021-.836s2.162.092 2.65.581c.464.464.279 1.534.116 3.045c-.14 1.511.582 1.999 1.302 2.627c.721.604 1.372 1.372 3.65 1.558c2.278.162 3.114-.209 4.184-.884c1.07-.674 2.58-1.882 3.139-2.58c.534-.674 1.859-2.999 2.115-2.999c.232 0 1.767-.534 2.627.721\\\"/><path fill=\\\"#9E5E00\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.496 3.73-10.093 6.136c-4.483 3.025-6.104 4.372-7.594 5.78c-2.231 2.176-4.331 2.933-7.721 2.912c-3.361-.016-4.881-.704-5.945-1.653c-1.064-.925-2.237-3.218-2.135-6.644c.066-3.503 1.194-6.678 1.696-12.036c.216-2.382.132-5.263.109-7.87c-.025-3.25-.024-6.014.673-6.432c1.255-.789 1.534-.837 3.021-.837s2.164.094 2.65.581c.481.481.248 1.578.066 3.037c-.204 1.504.471 2.094 1.226 2.779c.755.665 1.449 1.443 3.723 1.621c2.335.156 3.234-.269 4.315-1.002c1.066-.713 2.509-1.905 3.071-2.637c.53-.689 1.849-3.031 2.105-3.031c.232.001 1.767-.533 2.627.722\\\"/><path fill=\\\"#A36400\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.53 3.719-10.143 6.09c-4.456 2.958-6.14 4.279-7.657 5.632c-2.186 2.074-4.221 2.82-7.54 2.778c-3.258-.03-4.74-.688-5.8-1.632c-1.06-.92-2.219-3.134-2.131-6.453c.04-3.496 1.18-6.637 1.65-11.891c.198-2.417.053-5.275.007-7.906c-.049-3.248-.093-6.007.602-6.425c1.255-.788 1.535-.837 3.021-.837c1.488 0 2.165.095 2.65.581c.498.498.217 1.621.017 3.029c-.268 1.497.36 2.189 1.147 2.931c.791.726 1.528 1.516 3.799 1.686c2.392.149 3.352-.328 4.445-1.123c1.062-.75 2.438-1.929 3.003-2.694c.526-.703 1.839-3.062 2.094-3.062c.235.001 1.77-.533 2.63.722\\\"/><path fill=\\\"#A86A00\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.563 3.707-10.193 6.043c-4.43 2.894-6.175 4.188-7.72 5.485c-2.139 1.971-4.112 2.707-7.356 2.644c-3.157-.045-4.599-.671-5.655-1.611c-1.056-.916-2.203-3.049-2.128-6.262c.012-3.489 1.167-6.596 1.604-11.745c.18-2.453-.024-5.285-.094-7.942c-.074-3.244-.163-6 .531-6.418c1.255-.787 1.534-.836 3.021-.836s2.166.096 2.65.581c.513.515.185 1.664-.034 3.021c-.332 1.49.25 2.285 1.072 3.083c.825.786 1.604 1.588 3.873 1.75c2.449.142 3.471-.388 4.574-1.243c1.059-.79 2.368-1.953 2.936-2.751c.521-.716 1.828-3.092 2.084-3.092c.234-.002 1.769-.536 2.629.719\\\"/><path fill=\\\"#AD7000\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.597 3.695-10.243 5.997c-4.403 2.827-6.211 4.096-7.783 5.337c-2.092 1.869-4.002 2.594-7.174 2.511c-3.054-.061-4.458-.656-5.508-1.59c-1.051-.912-2.186-2.966-2.125-6.072c-.013-3.483 1.153-6.556 1.558-11.601c.163-2.487-.102-5.295-.194-7.979c-.098-3.24-.233-5.993.46-6.411c1.255-.786 1.534-.836 3.021-.836s2.167.097 2.65.58c.53.531.154 1.707-.083 3.013c-.396 1.483.14 2.38.995 3.235c.86.847 1.683 1.661 3.947 1.813c2.507.135 3.59-.446 4.706-1.362c1.056-.827 2.296-1.976 2.869-2.808c.516-.729 1.817-3.124 2.074-3.124c.229.002 1.764-.532 2.624.723\\\"/><path fill=\\\"#B27500\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.631 3.684-10.292 5.951c-4.376 2.761-6.247 4.004-7.846 5.19c-2.046 1.767-3.894 2.481-6.991 2.376c-2.952-.075-4.318-.639-5.364-1.568c-1.045-.907-2.167-2.883-2.121-5.881c-.041-3.477 1.139-6.516 1.511-11.456c.145-2.522-.181-5.306-.296-8.014c-.123-3.238-.303-5.986.389-6.405c1.255-.784 1.534-.836 3.021-.836s2.167.099 2.65.581c.546.547.122 1.75-.133 3.005c-.459 1.476.029 2.476.918 3.388c.895.907 1.76 1.731 4.021 1.877c2.562.128 3.708-.505 4.835-1.482c1.053-.866 2.227-1.999 2.801-2.865c.512-.744 1.808-3.155 2.063-3.155c.233-.001 1.768-.535 2.628.72\\\"/><path fill=\\\"#B77B00\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.665 3.673-10.342 5.904c-4.35 2.695-6.283 3.913-7.909 5.042c-1.999 1.665-3.785 2.369-6.809 2.243c-2.849-.091-4.178-.623-5.218-1.548c-1.042-.902-2.15-2.799-2.119-5.69c-.067-3.468 1.125-6.475 1.465-11.31c.128-2.557-.258-5.316-.397-8.05c-.147-3.233-.373-5.979.317-6.397c1.256-.783 1.535-.836 3.022-.836c1.487 0 2.168.1 2.649.581c.563.563.091 1.793-.184 2.997c-.523 1.469-.081 2.571.842 3.541c.929.967 1.838 1.803 4.096 1.941c2.621.121 3.827-.565 4.966-1.602c1.049-.904 2.155-2.022 2.734-2.922c.506-.758 1.796-3.187 2.052-3.187c.234-.002 1.769-.536 2.629.719\\\"/><path fill=\\\"#BC8100\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.699 3.661-10.392 5.858c-4.323 2.628-6.32 3.821-7.972 4.895c-1.953 1.562-3.675 2.256-6.626 2.11c-2.748-.106-4.037-.607-5.074-1.528c-1.037-.897-2.132-2.715-2.114-5.5c-.094-3.461 1.111-6.434 1.419-11.165c.11-2.592-.336-5.326-.499-8.086c-.171-3.23-.442-5.972.248-6.391c1.255-.782 1.534-.837 3.021-.837s2.17.102 2.65.581c.579.579.059 1.836-.233 2.988c-.587 1.462-.192 2.667.765 3.693c.964 1.028 1.917 1.876 4.17 2.005c2.676.114 3.944-.625 5.095-1.722c1.045-.942 2.083-2.045 2.667-2.979c.502-.772 1.786-3.218 2.042-3.218c.232.001 1.767-.533 2.627.722\\\"/><path fill=\\\"#C18700\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.733 3.649-10.442 5.811c-4.296 2.563-6.356 3.729-8.035 4.748c-1.906 1.46-3.565 2.144-6.443 1.976c-2.646-.121-3.896-.59-4.929-1.507c-1.032-.892-2.116-2.63-2.111-5.309c-.121-3.454 1.097-6.393 1.372-11.018c.093-2.627-.414-5.338-.6-8.123c-.196-3.227-.512-5.965.176-6.383c1.256-.781 1.535-.837 3.022-.837c1.487 0 2.171.103 2.649.581c.596.596.029 1.878-.283 2.98c-.651 1.455-.302 2.761.688 3.845c.999 1.088 1.994 1.948 4.244 2.069c2.734.107 4.063-.684 5.226-1.841c1.042-.981 2.013-2.069 2.599-3.036c.498-.786 1.776-3.25 2.032-3.25c.234-.001 1.769-.535 2.629.72\\\"/><path fill=\\\"#C68C00\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.766 3.637-10.492 5.764c-4.269 2.496-6.392 3.638-8.097 4.6c-1.86 1.357-3.457 2.03-6.261 1.843c-2.544-.137-3.756-.575-4.783-1.486c-1.028-.888-2.098-2.548-2.107-5.12c-.147-3.447 1.083-6.352 1.325-10.873c.076-2.662-.491-5.347-.701-8.158c-.22-3.223-.581-5.958.106-6.376c1.255-.78 1.534-.836 3.021-.836s2.172.103 2.65.58c.612.612-.004 1.921-.333 2.972c-.716 1.448-.413 2.857.612 3.998c1.034 1.148 2.071 2.02 4.319 2.132c2.79.1 4.181-.742 5.356-1.961c1.038-1.019 1.942-2.092 2.532-3.093c.492-.8 1.765-3.281 2.021-3.281c.231 0 1.766-.534 2.626.721\\\"/><path fill=\\\"#CC9200\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.8 3.626-10.542 5.718c-4.243 2.43-6.428 3.545-8.16 4.452c-1.813 1.255-3.347 1.917-6.078 1.708c-2.441-.151-3.615-.558-4.637-1.464c-1.023-.883-2.081-2.465-2.105-4.929c-.173-3.44 1.07-6.312 1.278-10.728c.059-2.697-.569-5.358-.801-8.194c-.245-3.22-.65-5.952.035-6.37c1.255-.779 1.534-.836 3.021-.836s2.173.104 2.65.58c.628.628-.035 1.964-.384 2.964c-.779 1.441-.523 2.952.535 4.15c1.07 1.209 2.15 2.092 4.394 2.197c2.847.093 4.3-.802 5.485-2.081c1.035-1.057 1.871-2.116 2.465-3.149c.488-.814 1.754-3.313 2.011-3.313c.232 0 1.767-.534 2.627.721\\\"/><path fill=\\\"#D19800\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.833 3.614-10.593 5.671c-4.215 2.363-6.463 3.454-8.222 4.305c-1.767 1.153-3.238 1.805-5.896 1.575c-2.338-.167-3.474-.542-4.492-1.444c-1.019-.879-2.064-2.381-2.101-4.738c-.202-3.433 1.056-6.271 1.231-10.583c.041-2.731-.647-5.368-.902-8.229c-.27-3.216-.721-5.944-.037-6.363c1.255-.777 1.535-.836 3.021-.836c1.488 0 2.176.105 2.65.581c.645.644-.066 2.008-.434 2.957c-.842 1.434-.632 3.047.459 4.301c1.104 1.27 2.228 2.164 4.468 2.26c2.905.086 4.419-.861 5.617-2.2c1.031-1.096 1.8-2.138 2.397-3.207c.483-.828 1.744-3.344 2-3.344c.233-.001 1.768-.535 2.628.72\\\"/><path fill=\\\"#D69E00\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.868 3.603-10.642 5.625c-4.189 2.297-6.5 3.362-8.286 4.157c-1.719 1.051-3.128 1.692-5.713 1.441c-2.236-.181-3.334-.525-4.348-1.422c-1.013-.874-2.045-2.296-2.097-4.547c-.228-3.426 1.042-6.229 1.187-10.438c.023-2.766-.725-5.379-1.005-8.267c-.292-3.212-.79-5.937-.106-6.355c1.255-.776 1.534-.836 3.021-.836s2.177.106 2.65.581c.66.66-.098 2.051-.484 2.948c-.906 1.428-.743 3.143.381 4.454c1.14 1.33 2.306 2.236 4.542 2.325c2.962.079 4.538-.921 5.747-2.32a16.361 16.361 0 0 0 2.329-3.263c.478-.842 1.733-3.376 1.99-3.376c.233-.002 1.768-.536 2.628.719\\\"/><path fill=\\\"#DBA300\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.9 3.591-10.691 5.578c-4.164 2.231-6.537 3.27-8.348 4.01c-1.675.948-3.02 1.579-5.533 1.307c-2.134-.196-3.192-.509-4.201-1.402c-1.009-.869-2.028-2.213-2.093-4.356c-.255-3.42 1.027-6.189 1.139-10.293c.006-2.801-.803-5.39-1.105-8.302c-.317-3.209-.86-5.93-.179-6.349c1.256-.775 1.535-.836 3.022-.836c1.487 0 2.177.107 2.649.581c.677.677-.128 2.094-.533 2.94c-.971 1.42-.854 3.238.304 4.606c1.174 1.39 2.384 2.308 4.617 2.388c3.019.072 4.656-.979 5.876-2.44c1.024-1.173 1.659-2.186 2.263-3.321c.474-.855 1.723-3.406 1.979-3.406c.233 0 1.768-.534 2.628.721\\\"/><path fill=\\\"#E0A900\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.935 3.58-10.743 5.532c-4.135 2.165-6.571 3.178-8.41 3.862c-1.627.846-2.91 1.467-5.349 1.174c-2.032-.211-3.052-.493-4.056-1.381c-1.005-.865-2.011-2.129-2.09-4.166c-.282-3.413 1.015-6.149 1.093-10.147c-.011-2.835-.881-5.4-1.206-8.338c-.342-3.205-.93-5.923-.25-6.342c1.255-.774 1.535-.837 3.021-.837c1.488 0 2.179.109 2.65.581c.693.693-.161 2.136-.583 2.932c-1.034 1.413-.964 3.333.229 4.758c1.208 1.451 2.461 2.381 4.69 2.453c3.076.066 4.775-1.039 6.008-2.559c1.02-1.211 1.587-2.209 2.194-3.379c.469-.869 1.712-3.437 1.969-3.437c.232-.001 1.767-.535 2.627.72\\\"/><path fill=\\\"#E5AF00\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-6.968 3.568-10.792 5.485c-4.108 2.098-6.607 3.086-8.473 3.714c-1.581.744-2.801 1.353-5.167 1.04c-1.93-.227-2.912-.477-3.911-1.36c-1-.86-1.994-2.046-2.087-3.976c-.307-3.405 1-6.107 1.046-10.001c-.029-2.871-.959-5.411-1.307-8.375c-.366-3.202-1-5.916-.32-6.334c1.256-.773 1.535-.836 3.022-.836c1.487 0 2.18.11 2.649.581c.709.709-.191 2.18-.632 2.924c-1.099 1.406-1.076 3.428.15 4.911c1.244 1.511 2.54 2.453 4.765 2.516c3.133.058 4.894-1.098 6.137-2.679c1.017-1.25 1.517-2.232 2.128-3.435c.465-.883 1.702-3.47 1.958-3.47c.233 0 1.768-.534 2.628.721\\\"/><path fill=\\\"#EAB500\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-7.002 3.557-10.842 5.439c-4.083 2.032-6.643 2.994-8.536 3.566c-1.534.642-2.691 1.241-4.985.907c-1.826-.242-2.77-.46-3.765-1.339c-.995-.855-1.976-1.962-2.083-3.785c-.335-3.398.986-6.067.999-9.856c-.046-2.906-1.036-5.422-1.408-8.411c-.391-3.199-1.07-5.91-.391-6.328c1.256-.772 1.535-.837 3.022-.837c1.487 0 2.181.112 2.649.581c.726.726-.222 2.223-.684 2.915c-1.162 1.399-1.185 3.524.075 5.063c1.278 1.572 2.617 2.525 4.84 2.581c3.189.051 5.012-1.158 6.267-2.798c1.014-1.289 1.446-2.255 2.06-3.492c.46-.898 1.692-3.501 1.948-3.501c.233 0 1.768-.534 2.628.721\\\"/><path fill=\\\"#EFBA00\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-7.035 3.544-10.892 5.393c-4.056 1.965-6.68 2.902-8.598 3.418c-1.488.54-2.583 1.129-4.802.773c-1.725-.256-2.63-.444-3.622-1.318c-.989-.85-1.958-1.878-2.079-3.593c-.361-3.392.972-6.027.953-9.711c-.064-2.941-1.115-5.432-1.51-8.447c-.414-3.195-1.139-5.902-.462-6.32c1.256-.77 1.535-.837 3.022-.837c1.487 0 2.182.113 2.649.581c.743.742-.254 2.266-.732 2.907c-1.227 1.394-1.296 3.62-.003 5.216c1.313 1.632 2.696 2.597 4.915 2.644c3.246.045 5.13-1.216 6.397-2.918c1.01-1.326 1.374-2.278 1.992-3.548c.455-.912 1.682-3.533 1.937-3.533c.234-.002 1.769-.536 2.629.719\\\"/><path fill=\\\"#F4C000\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-7.069 3.533-10.942 5.347c-4.029 1.899-6.716 2.81-8.662 3.271c-1.441.437-2.473 1.016-4.619.639c-1.623-.272-2.49-.428-3.476-1.297c-.986-.847-1.941-1.794-2.076-3.404c-.389-3.384.957-5.985.907-9.565c-.082-2.976-1.194-5.442-1.612-8.482c-.439-3.192-1.208-5.896-.533-6.314c1.256-.769 1.535-.836 3.022-.836c1.487 0 2.183.114 2.649.581c.759.758-.285 2.308-.782 2.899c-1.291 1.386-1.407 3.714-.08 5.368c1.348 1.692 2.773 2.669 4.988 2.708c3.303.037 5.249-1.276 6.527-3.039c1.007-1.364 1.305-2.301 1.925-3.605c.451-.925 1.671-3.563 1.927-3.563c.236-.003 1.771-.537 2.631.718\\\"/><path fill=\\\"#F9C600\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-7.103 3.521-10.992 5.299c-4.001 1.833-6.752 2.719-8.725 3.124c-1.394.335-2.364.904-4.436.505c-1.521-.287-2.349-.411-3.33-1.276c-.981-.842-1.924-1.711-2.072-3.213c-.415-3.377.944-5.945.86-9.42c-.099-3.011-1.27-5.453-1.711-8.519c-.464-3.188-1.279-5.888-.604-6.307c1.255-.768 1.534-.836 3.021-.836s2.185.115 2.65.581c.773.774-.317 2.351-.833 2.891c-1.354 1.378-1.517 3.81-.156 5.52c1.383 1.753 2.851 2.741 5.062 2.771c3.361.031 5.368-1.335 6.658-3.157c1.003-1.403 1.233-2.324 1.857-3.663c.447-.939 1.662-3.595 1.917-3.595c.233 0 1.768-.534 2.628.721\\\"/><path fill=\\\"#fc0\\\" d=\\\"M107.74 86.485c1.441 2.092-.047 4.812 1 6.486c1.72 2.743 5.184 5.508 6.509 6.276c.953.581 2.301 1.139 2.254 2.836c-.07 1.93-1.023 2.44-1.557 2.976c-1.07 1.069-7.137 3.51-11.042 5.253c-3.976 1.767-6.788 2.627-8.788 2.976c-1.348.233-2.254.79-4.254.372c-1.418-.302-2.208-.396-3.184-1.255c-.976-.836-1.906-1.627-2.069-3.022c-.442-3.371.93-5.905.813-9.275c-.116-3.045-1.348-5.463-1.813-8.554c-.488-3.185-1.348-5.882-.673-6.3c1.255-.767 1.534-.836 3.021-.836s2.186.116 2.65.58c.791.791-.349 2.395-.883 2.883c-1.418 1.372-1.628 3.905-.233 5.671c1.418 1.814 2.929 2.813 5.138 2.837c3.417.023 5.485-1.395 6.787-3.278c1-1.442 1.164-2.348 1.791-3.72c.442-.953 1.65-3.625 1.906-3.625c.232-.002 1.767-.536 2.627.719m-21.751 4.273c-.229-.084-1.27-4.911-.708-5.244c1.082-.645 1.373-.749 2.704-.749c1.333 0 1.956.104 2.372.52c.687.687-.374 2.164-.79 2.581c-1.206 1.185-3.349 2.974-3.578 2.892\\\"/><path fill=\\\"#FFCC02\\\" d=\\\"M86.063 90.604c-.249-.106-1.324-4.752-.764-5.083c1.08-.643 1.381-.713 2.686-.713c1.333 0 1.93.087 2.352.518c.679.689-.361 2.121-.774 2.535c-1.204 1.181-3.256 2.843-3.5 2.743\\\"/><path fill=\\\"#FFCC05\\\" d=\\\"M86.137 90.449c-.268-.126-1.379-4.593-.822-4.922c1.078-.64 1.39-.678 2.669-.678c1.333 0 1.904.069 2.331.514c.673.693-.348 2.08-.758 2.491c-1.201 1.178-3.16 2.714-3.42 2.595\\\"/><path fill=\\\"#FFCC07\\\" d=\\\"M86.211 90.296c-.289-.149-1.435-4.436-.879-4.762c1.076-.639 1.398-.644 2.651-.644c1.333 0 1.877.052 2.31.511c.667.696-.333 2.039-.741 2.445c-1.197 1.177-3.066 2.586-3.341 2.45\\\"/><path fill=\\\"#FFCD0A\\\" d=\\\"M86.285 90.142c-.309-.171-1.49-4.278-.936-4.603c1.074-.637 1.406-.608 2.633-.608c1.332 0 1.851.034 2.29.507c.661.7-.321 1.998-.725 2.402c-1.195 1.173-2.971 2.456-3.262 2.302\\\"/><path fill=\\\"#FFCD0C\\\" d=\\\"M86.358 89.987c-.327-.193-1.545-4.119-.993-4.442c1.071-.635 1.414-.572 2.615-.572c1.333 0 1.825.016 2.268.504c.655.703-.307 1.956-.707 2.357c-1.191 1.17-2.876 2.326-3.183 2.153\\\"/><path fill=\\\"#FFCD0F\\\" d=\\\"M86.432 89.834c-.347-.214-1.6-3.962-1.051-4.282c1.07-.632 1.423-.537 2.599-.537c1.332 0 1.799-.002 2.247.501c.649.706-.292 1.915-.691 2.311c-1.188 1.167-2.782 2.196-3.104 2.007\\\"/><path fill=\\\"#FFCD11\\\" d=\\\"M86.506 89.679c-.368-.236-1.656-3.802-1.108-4.122c1.067-.63 1.431-.501 2.581-.501c1.332 0 1.773-.02 2.227.498c.643.708-.281 1.873-.675 2.267c-1.185 1.164-2.687 2.065-3.025 1.858\\\"/><path fill=\\\"#FFCE14\\\" d=\\\"M86.58 89.526c-.386-.259-1.71-3.646-1.165-3.962c1.064-.629 1.44-.466 2.562-.466c1.331 0 1.748-.037 2.206.495c.637.711-.267 1.831-.658 2.223c-1.181 1.161-2.591 1.935-2.945 1.71\\\"/><path fill=\\\"#FFCE16\\\" d=\\\"M86.654 89.372c-.407-.279-1.765-3.487-1.223-3.801c1.064-.626 1.448-.431 2.546-.431c1.331 0 1.722-.055 2.185.492c.631.714-.252 1.789-.641 2.177c-1.179 1.158-2.498 1.806-2.867 1.563\\\"/><path fill=\\\"#FFCE19\\\" d=\\\"M86.727 89.218c-.426-.302-1.82-3.329-1.279-3.641c1.061-.625 1.456-.396 2.528-.396c1.331 0 1.695-.073 2.164.489c.625.718-.239 1.748-.624 2.133c-1.176 1.155-2.403 1.675-2.789 1.415\\\"/><path fill=\\\"#FFCE1C\\\" d=\\\"M86.802 89.064c-.446-.323-1.876-3.171-1.337-3.48c1.059-.622 1.465-.36 2.511-.36c1.331 0 1.669-.09 2.143.486c.618.721-.226 1.707-.608 2.088c-1.173 1.15-2.31 1.544-2.709 1.266\\\"/><path fill=\\\"#FFCF1E\\\" d=\\\"M86.875 88.91c-.466-.344-1.931-3.012-1.393-3.32c1.056-.621 1.473-.325 2.492-.325c1.332 0 1.644-.108 2.123.482c.612.725-.212 1.665-.591 2.043c-1.17 1.149-2.215 1.416-2.631 1.12\\\"/><path fill=\\\"#FFCF21\\\" d=\\\"M86.949 88.756c-.486-.367-1.986-2.854-1.451-3.161c1.055-.618 1.481-.289 2.475-.289c1.331 0 1.618-.126 2.102.48c.605.727-.2 1.622-.575 1.998c-1.167 1.146-2.119 1.285-2.551.972\\\"/><path fill=\\\"#FFCF23\\\" d=\\\"M87.023 88.602c-.505-.389-2.041-2.697-1.508-3c1.053-.616 1.489-.254 2.457-.254c1.331 0 1.592-.144 2.081.477c.599.73-.186 1.582-.558 1.955c-1.164 1.14-2.025 1.153-2.472.822\\\"/><path fill=\\\"#FFCF26\\\" d=\\\"M87.097 88.448c-.525-.411-2.096-2.538-1.565-2.839c1.051-.614 1.498-.219 2.44-.219c1.331 0 1.565-.161 2.06.473c.593.733-.171 1.54-.541 1.909c-1.162 1.139-1.931 1.025-2.394.676\\\"/><path fill=\\\"#FFD028\\\" d=\\\"M87.171 88.294c-.545-.433-2.152-2.381-1.623-2.681c1.049-.612 1.506-.182 2.422-.182c1.331 0 1.54-.18 2.039.47c.587.735-.158 1.498-.524 1.863c-1.158 1.137-1.836.896-2.314.53\\\"/><path fill=\\\"#FFD02B\\\" d=\\\"M87.244 88.14c-.565-.455-2.207-2.222-1.68-2.52c1.046-.609 1.514-.147 2.404-.147c1.331 0 1.513-.197 2.018.468c.58.739-.145 1.455-.508 1.818c-1.153 1.134-1.739.764-2.234.381\\\"/><path fill=\\\"#FFD02D\\\" d=\\\"M87.318 87.985c-.584-.476-2.261-2.062-1.737-2.359c1.045-.607 1.523-.112 2.387-.112c1.331 0 1.487-.215 1.997.464c.575.743-.131 1.414-.491 1.774c-1.151 1.132-1.646.635-2.156.233\\\"/><path fill=\\\"#FFD030\\\" d=\\\"M87.392 87.832c-.604-.498-2.317-1.905-1.794-2.199c1.042-.606 1.531-.077 2.368-.077c1.332 0 1.462-.232 1.977.461c.568.746-.117 1.372-.475 1.729c-1.147 1.128-1.551.506-2.076.086\\\"/><path fill=\\\"#FFD133\\\" d=\\\"M87.466 87.678c-.624-.52-2.372-1.748-1.851-2.039c1.04-.603 1.54-.042 2.351-.042c1.331 0 1.435-.25 1.956.458c.561.749-.104 1.331-.458 1.685c-1.145 1.125-1.457.375-1.998-.062\\\"/><path fill=\\\"#fc0\\\" d=\\\"M107.461 86.758c1.208 1.763-.02 4.12.853 5.526c-2.199-2.021-3.209-2.852-6.24.119c.833-1.208 1.011-2.021 1.526-3.169c.356-.792 1.406-3.09 1.624-3.09c.198 0 1.525-.436 2.237.614\\\"/><path fill=\\\"#FFCC02\\\" d=\\\"M107.449 86.77c1.181 1.722.012 4.068.833 5.4c-2.153-1.969-3.141-2.798-6.105.104c.781-1.139.977-1.968 1.487-3.097c.362-.795 1.37-3.003 1.599-3.006c.202-.003 1.49-.426 2.186.599\\\"/><path fill=\\\"#FFCC05\\\" d=\\\"M107.436 86.782c1.152 1.682.042 4.016.812 5.273c-2.106-1.917-3.074-2.745-5.971.089c.732-1.069.944-1.916 1.449-3.025c.368-.797 1.334-2.917 1.574-2.923c.208-.005 1.456-.415 2.136.586\\\"/><path fill=\\\"#FFCC07\\\" d=\\\"M107.424 86.794c1.124 1.643.074 3.966.793 5.146c-2.062-1.865-3.005-2.69-5.835.075c.681-1.001.91-1.863 1.41-2.954c.375-.799 1.298-2.829 1.549-2.839c.211-.006 1.419-.404 2.083.572\\\"/><path fill=\\\"#FFCD0A\\\" d=\\\"M107.411 86.806c1.096 1.602.104 3.915.773 5.021c-2.016-1.814-2.939-2.636-5.702.061c.632-.933.877-1.812 1.373-2.883c.379-.801 1.263-2.743 1.523-2.755c.216-.01 1.386-.395 2.033.556\\\"/><path fill=\\\"#FFCD0C\\\" d=\\\"M107.399 86.818c1.067 1.562.136 3.863.754 4.894c-1.971-1.763-2.871-2.583-5.567.046c.581-.863.843-1.76 1.334-2.812c.385-.803 1.227-2.655 1.497-2.671c.221-.011 1.35-.384 1.982.543\\\"/><path fill=\\\"#FFCD0F\\\" d=\\\"M107.386 86.83c1.04 1.521.167 3.812.735 4.767c-1.926-1.711-2.804-2.528-5.434.032c.531-.794.811-1.708 1.296-2.74c.391-.806 1.19-2.569 1.472-2.588c.226-.013 1.317-.373 1.931.529\\\"/><path fill=\\\"#FFCD11\\\" d=\\\"M107.374 86.843c1.011 1.48.197 3.759.715 4.639c-1.88-1.658-2.736-2.473-5.299.017c.481-.725.776-1.654 1.257-2.668c.397-.808 1.154-2.482 1.446-2.504c.231-.015 1.282-.362 1.881.516\\\"/><path fill=\\\"#FFCE14\\\" d=\\\"M107.361 86.855c.983 1.44.229 3.708.695 4.513c-1.834-1.607-2.667-2.419-5.164.003c.431-.656.744-1.603 1.221-2.597c.402-.811 1.118-2.395 1.42-2.421c.235-.017 1.246-.351 1.828.502\\\"/><path fill=\\\"#FFCE16\\\" d=\\\"M107.348 86.867c.955 1.399.26 3.657.676 4.387c-1.788-1.555-2.601-2.365-5.029-.012c.38-.587.709-1.551 1.181-2.526c.409-.812 1.083-2.308 1.395-2.336c.24-.02 1.212-.341 1.777.487\\\"/><path fill=\\\"#FFCE19\\\" d=\\\"M107.336 86.879c.926 1.359.292 3.605.657 4.26c-1.743-1.503-2.533-2.311-4.896-.026c.33-.518.678-1.498 1.144-2.454c.414-.815 1.047-2.222 1.37-2.253c.244-.022 1.175-.332 1.725.473\\\"/><path fill=\\\"#FFCE1C\\\" d=\\\"M107.324 86.891c.897 1.319.321 3.554.637 4.133c-1.697-1.452-2.465-2.257-4.761-.041c.28-.449.644-1.446 1.105-2.383c.421-.817 1.011-2.134 1.345-2.168c.248-.024 1.14-.32 1.674.459\\\"/><path fill=\\\"#FFCF1E\\\" d=\\\"M107.311 86.904c.869 1.277.352 3.502.618 4.006c-1.653-1.4-2.398-2.204-4.627-.056c.229-.379.61-1.393 1.068-2.31c.425-.819.974-2.048 1.319-2.087c.252-.024 1.105-.309 1.622.447\\\"/><path fill=\\\"#FFCF21\\\" d=\\\"M107.298 86.915c.841 1.238.384 3.451.599 3.88c-1.606-1.349-2.33-2.148-4.494-.07c.18-.31.577-1.342 1.03-2.239c.432-.821.938-1.96 1.294-2.002c.258-.027 1.071-.299 1.571.431\\\"/><path fill=\\\"#FFCF23\\\" d=\\\"M107.286 86.927c.813 1.198.415 3.401.578 3.754c-1.561-1.298-2.262-2.095-4.358-.084c.129-.243.544-1.29.99-2.168c.438-.824.903-1.875 1.27-1.919c.261-.029 1.035-.289 1.52.417\\\"/><path fill=\\\"#FFCF26\\\" d=\\\"M107.273 86.939c.786 1.157.446 3.349.559 3.628c-1.515-1.245-2.195-2.042-4.225-.099c.079-.173.51-1.237.953-2.096c.443-.826.867-1.787 1.244-1.835c.267-.034 1.001-.279 1.469.402\\\"/><path fill=\\\"#FFD028\\\" d=\\\"M107.261 86.952c.756 1.117.476 3.297.539 3.501c-1.47-1.194-2.127-1.987-4.089-.114c.029-.104.477-1.185.914-2.024c.449-.828.831-1.701 1.217-1.751c.272-.035.967-.269 1.419.388\\\"/><path fill=\\\"#FFD02B\\\" d=\\\"M107.248 86.963c.729 1.077.508 3.246.52 3.375c-1.425-1.142-2.06-1.933-3.956-.127c-.021-.036.443-1.133.876-1.954c.455-.83.795-1.613 1.192-1.668c.277-.037.933-.257 1.368.374\\\"/><path fill=\\\"#FFD02D\\\" d=\\\"M107.235 86.976c.702 1.036.54 3.194.501 3.248c-1.379-1.091-1.992-1.879-3.821-.142c-.072.033.41-1.082.838-1.883c.46-.833.758-1.526 1.167-1.583c.281-.04.897-.248 1.315.36\\\"/><path fill=\\\"#FFD030\\\" d=\\\"M107.223 86.987c.671.996.571 3.144.481 3.122c-1.334-1.039-1.925-1.825-3.688-.157c-.122.103.377-1.03.8-1.81c.466-.835.723-1.44 1.142-1.501c.286-.041.862-.236 1.265.346\\\"/><path fill=\\\"#FFD133\\\" d=\\\"M107.21 87c.645.956.602 3.092.462 2.996c-1.289-.988-1.857-1.771-3.554-.171c-.172.171.344-.978.762-1.74c.472-.837.688-1.352 1.117-1.417c.291-.044.827-.227 1.213.332\\\"/><path fill=\\\"#fc0\\\" d=\\\"M108.46 93.25c1.93 2.534 5.51 5.253 6.788 5.998c.929.535 2.278 1.162 2.254 2.836c-.047 1.906-1.023 2.44-1.557 2.976c-1.07 1.069-7.161 3.533-11.042 5.253c-3.952 1.743-6.812 2.65-8.788 2.976c-1.325.209-2.278.767-4.254.372c-1.395-.279-2.231-.418-3.184-1.255c-.953-.813-1.93-1.674-2.069-3.022c-.396-3.348 1.186-5.462 2.719-8.369c1.255-2.325 3.789-2.79 5.37-2.58c5.672.767 5.3-2.79 6.857-4.347c1.443-1.443 5.558-2.606 6.906-.838\\\"/><path fill=\\\"#FFCC02\\\" d=\\\"M108.443 93.272c1.925 2.529 5.497 5.242 6.772 5.983c.928.534 2.272 1.16 2.25 2.83c-.047 1.902-1.021 2.435-1.555 2.969c-1.066 1.066-7.212 3.549-11.054 5.194c-3.958 1.671-6.666 2.542-8.654 2.893c-1.316.221-2.311.773-4.28.38c-1.39-.276-2.186-.398-3.134-1.231c-.949-.811-1.858-1.602-1.997-2.944c-.391-3.338 1.087-5.378 2.598-8.282c1.255-2.381 3.806-2.723 5.38-2.51c5.655.779 5.233-2.893 6.787-4.447c1.437-1.436 5.542-2.597 6.887-.835\\\"/><path fill=\\\"#FFCC05\\\" d=\\\"M108.428 93.297c1.92 2.522 5.482 5.229 6.756 5.969c.925.532 2.267 1.157 2.244 2.823c-.047 1.897-1.019 2.43-1.551 2.962c-1.064 1.064-7.266 3.565-11.068 5.135c-3.964 1.599-6.521 2.435-8.519 2.809c-1.309.233-2.343.779-4.308.388c-1.383-.273-2.137-.377-3.083-1.206c-.944-.807-1.788-1.53-1.924-2.866c-.387-3.329.987-5.293 2.474-8.194c1.256-2.438 3.825-2.657 5.392-2.442c5.636.792 5.164-2.996 6.714-4.545c1.435-1.435 5.529-2.592 6.873-.833\\\"/><path fill=\\\"#FFCC07\\\" d=\\\"M108.41 93.321c1.916 2.515 5.47 5.216 6.74 5.955c.923.531 2.263 1.154 2.239 2.816c-.046 1.893-1.015 2.424-1.546 2.954c-1.062 1.062-7.319 3.582-11.081 5.078c-3.971 1.525-6.378 2.325-8.386 2.725c-1.299.244-2.376.785-4.334.396c-1.379-.27-2.089-.355-3.033-1.18c-.94-.804-1.717-1.459-1.852-2.787c-.382-3.321.888-5.209 2.352-8.107c1.256-2.495 3.842-2.59 5.402-2.373c5.618.805 5.097-3.1 6.643-4.646c1.432-1.431 5.517-2.586 6.856-.831\\\"/><path fill=\\\"#FFCD0A\\\" d=\\\"M108.393 93.344c1.911 2.51 5.458 5.205 6.724 5.941c.921.53 2.256 1.151 2.233 2.81c-.046 1.887-1.013 2.417-1.543 2.947c-1.059 1.06-7.372 3.598-11.093 5.018c-3.977 1.453-6.234 2.218-8.253 2.642c-1.29.256-2.408.791-4.361.404c-1.372-.268-2.042-.334-2.982-1.155c-.935-.801-1.646-1.388-1.779-2.71c-.378-3.312.79-5.124 2.229-8.02c1.256-2.551 3.86-2.524 5.413-2.304c5.602.817 5.029-3.202 6.571-4.745c1.43-1.427 5.505-2.578 6.841-.828\\\"/><path fill=\\\"#FFCD0C\\\" d=\\\"M108.376 93.368c1.907 2.504 5.445 5.192 6.708 5.927c.919.528 2.251 1.148 2.228 2.802c-.046 1.884-1.011 2.413-1.54 2.941c-1.057 1.056-7.425 3.613-11.106 4.959c-3.983 1.379-6.088 2.109-8.119 2.558c-1.281.268-2.44.797-4.387.412c-1.367-.264-1.995-.313-2.931-1.13c-.931-.798-1.575-1.315-1.707-2.632c-.374-3.302.689-5.038 2.106-7.932c1.257-2.607 3.878-2.458 5.423-2.234c5.583.83 4.961-3.304 6.5-4.844c1.427-1.424 5.493-2.573 6.825-.827\\\"/><path fill=\\\"#FFCD0F\\\" d=\\\"M108.36 93.391c1.903 2.498 5.432 5.179 6.693 5.913c.916.527 2.247 1.146 2.223 2.796c-.045 1.879-1.008 2.406-1.535 2.934c-1.055 1.054-7.479 3.63-11.119 4.9c-3.99 1.308-5.945 2.002-7.985 2.476c-1.273.278-2.472.802-4.414.42c-1.362-.262-1.947-.293-2.881-1.105c-.926-.795-1.503-1.245-1.635-2.554c-.369-3.294.591-4.954 1.984-7.845c1.258-2.664 3.896-2.392 5.435-2.166c5.564.843 4.892-3.408 6.429-4.944c1.419-1.421 5.475-2.566 6.805-.825\\\"/><path fill=\\\"#FFCD11\\\" d=\\\"M108.344 93.415c1.897 2.492 5.418 5.167 6.676 5.899c.914.525 2.24 1.143 2.217 2.789c-.046 1.875-1.006 2.4-1.532 2.926c-1.052 1.053-7.53 3.646-11.132 4.842c-3.996 1.234-5.8 1.893-7.852 2.392c-1.264.29-2.504.808-4.44.427c-1.355-.259-1.9-.272-2.829-1.08c-.922-.792-1.433-1.173-1.562-2.476c-.366-3.285.491-4.869 1.86-7.758c1.258-2.72 3.913-2.325 5.445-2.096c5.547.855 4.825-3.511 6.356-5.043c1.419-1.417 5.466-2.56 6.793-.822\\\"/><path fill=\\\"#FFCE14\\\" d=\\\"M108.326 93.438c1.893 2.486 5.406 5.155 6.66 5.885c.912.524 2.235 1.14 2.212 2.783c-.046 1.87-1.003 2.395-1.528 2.92c-1.05 1.049-7.584 3.662-11.145 4.783c-4.003 1.161-5.656 1.784-7.718 2.307c-1.256.303-2.537.815-4.467.436c-1.351-.255-1.853-.25-2.779-1.054c-.917-.79-1.362-1.102-1.49-2.398c-.36-3.276.394-4.784 1.738-7.671c1.259-2.778 3.931-2.259 5.456-2.026c5.529.867 4.757-3.615 6.285-5.144c1.416-1.414 5.453-2.554 6.776-.821\\\"/><path fill=\\\"#FFCE16\\\" d=\\\"M108.31 93.462c1.889 2.48 5.393 5.143 6.644 5.871c.91.523 2.23 1.138 2.208 2.776c-.046 1.866-1.001 2.389-1.525 2.912c-1.047 1.047-7.636 3.679-11.158 4.724c-4.008 1.089-5.511 1.677-7.584 2.225c-1.247.315-2.57.821-4.494.444c-1.345-.253-1.805-.23-2.729-1.029c-.912-.786-1.29-1.03-1.417-2.32c-.356-3.267.293-4.699 1.616-7.583c1.258-2.833 3.949-2.192 5.466-1.958c5.512.881 4.689-3.717 6.214-5.242c1.411-1.412 5.439-2.55 6.759-.82\\\"/><path fill=\\\"#FFCE19\\\" d=\\\"M108.293 93.485c1.884 2.475 5.38 5.13 6.628 5.857c.908.522 2.226 1.135 2.202 2.77c-.045 1.861-.998 2.383-1.52 2.905c-1.045 1.044-7.69 3.694-11.17 4.665c-4.015 1.016-5.367 1.568-7.451 2.141c-1.239.327-2.603.828-4.521.453c-1.339-.25-1.758-.209-2.678-1.005c-.909-.783-1.219-.958-1.345-2.242c-.352-3.258.195-4.615 1.494-7.497c1.258-2.89 3.965-2.125 5.476-1.888c5.495.893 4.621-3.821 6.142-5.342c1.408-1.407 5.426-2.541 6.743-.817\\\"/><path fill=\\\"#FFCE1C\\\" d=\\\"M108.276 93.509c1.88 2.469 5.367 5.118 6.613 5.842c.905.521 2.219 1.133 2.196 2.764c-.046 1.856-.997 2.377-1.517 2.898c-1.042 1.042-7.743 3.71-11.184 4.607c-4.021.942-5.222 1.46-7.316 2.057c-1.23.338-2.635.833-4.547.46c-1.334-.248-1.711-.188-2.627-.979c-.904-.78-1.148-.888-1.272-2.165c-.348-3.249.095-4.529 1.37-7.409c1.26-2.947 3.984-2.059 5.488-1.819c5.477.905 4.554-3.923 6.071-5.441c1.403-1.404 5.411-2.535 6.725-.815\\\"/><path fill=\\\"#FFCF1E\\\" d=\\\"M108.26 93.532c1.875 2.462 5.354 5.106 6.597 5.829c.904.52 2.213 1.129 2.191 2.756c-.045 1.853-.994 2.372-1.514 2.892c-1.039 1.039-7.794 3.726-11.196 4.547c-4.026.87-5.077 1.352-7.184 1.974c-1.221.351-2.665.839-4.572.468c-1.328-.245-1.664-.167-2.577-.954c-.899-.777-1.078-.816-1.2-2.086c-.344-3.239-.005-4.445 1.248-7.322c1.259-3.004 4-1.993 5.498-1.75c5.458.918 4.487-4.028 6-5.541c1.4-1.399 5.398-2.529 6.709-.813\\\"/><path fill=\\\"#FFCF21\\\" d=\\\"M108.243 93.556c1.87 2.457 5.341 5.094 6.58 5.814c.902.518 2.208 1.127 2.187 2.75c-.045 1.849-.992 2.367-1.51 2.885c-1.037 1.037-7.849 3.742-11.209 4.488c-4.033.797-4.934 1.245-7.05 1.891c-1.213.361-2.698.844-4.599.476c-1.323-.241-1.617-.146-2.526-.929c-.895-.774-1.007-.744-1.128-2.008c-.34-3.231-.103-4.36 1.125-7.234c1.26-3.061 4.019-1.927 5.508-1.682c5.442.931 4.418-4.129 5.928-5.64c1.398-1.397 5.386-2.524 6.694-.811\\\"/><path fill=\\\"#FFCF23\\\" d=\\\"M108.226 93.58c1.866 2.451 5.328 5.081 6.564 5.8c.9.517 2.203 1.125 2.181 2.743c-.045 1.843-.99 2.361-1.507 2.877c-1.034 1.034-7.901 3.759-11.222 4.431c-4.04.725-4.788 1.136-6.917 1.808c-1.204.373-2.73.85-4.625.484c-1.318-.239-1.57-.126-2.476-.904c-.891-.771-.935-.672-1.055-1.93c-.335-3.222-.202-4.275 1.002-7.148c1.261-3.116 4.038-1.86 5.519-1.611c5.424.943 4.351-4.233 5.858-5.74c1.395-1.395 5.374-2.519 6.678-.81\\\"/><path fill=\\\"#FFCF26\\\" d=\\\"M108.21 93.604c1.861 2.445 5.315 5.069 6.548 5.786c.897.516 2.198 1.122 2.175 2.736c-.044 1.839-.986 2.354-1.502 2.871c-1.032 1.031-7.955 3.774-11.235 4.37c-4.045.652-4.644 1.029-6.783 1.724c-1.196.385-2.763.857-4.652.493c-1.312-.236-1.522-.105-2.425-.88c-.886-.767-.865-.601-.982-1.851c-.332-3.213-.302-4.19.879-7.06c1.26-3.174 4.055-1.794 5.529-1.543c5.406.956 4.283-4.336 5.785-5.838c1.392-1.391 5.362-2.514 6.663-.808\\\"/><path fill=\\\"#FFD028\\\" d=\\\"M108.192 93.628c1.858 2.438 5.303 5.055 6.534 5.772c.894.514 2.192 1.118 2.17 2.729c-.045 1.835-.985 2.349-1.499 2.863c-1.03 1.03-8.007 3.791-11.249 4.312c-4.052.579-4.499.92-6.648 1.641c-1.188.396-2.796.862-4.68.499c-1.307-.232-1.474-.083-2.374-.854c-.882-.765-.793-.529-.91-1.774c-.327-3.204-.401-4.105.758-6.973c1.26-3.23 4.071-1.728 5.54-1.473c5.388.968 4.215-4.44 5.714-5.938c1.387-1.387 5.347-2.506 6.644-.804\\\"/><path fill=\\\"#FFD02B\\\" d=\\\"M108.176 93.651c1.852 2.433 5.289 5.043 6.516 5.758c.894.513 2.188 1.116 2.165 2.723c-.044 1.831-.981 2.344-1.495 2.857c-1.027 1.026-8.061 3.807-11.261 4.253c-4.058.506-4.354.812-6.515 1.557c-1.178.408-2.828.868-4.706.508c-1.301-.23-1.427-.063-2.323-.829c-.877-.762-.722-.458-.837-1.696c-.324-3.195-.5-4.02.633-6.886c1.262-3.286 4.09-1.661 5.551-1.404c5.371.982 4.147-4.542 5.642-6.038c1.385-1.384 5.336-2.5 6.63-.803\\\"/><path fill=\\\"#FFD02D\\\" d=\\\"M108.159 93.675c1.848 2.426 5.276 5.031 6.501 5.743c.89.513 2.182 1.114 2.159 2.717c-.044 1.826-.979 2.338-1.491 2.85c-1.025 1.024-8.114 3.823-11.273 4.194c-4.064.434-4.21.704-6.382 1.474c-1.169.42-2.86.875-4.732.517c-1.296-.228-1.38-.042-2.273-.805c-.872-.759-.652-.386-.764-1.618c-.319-3.186-.599-3.936.511-6.799c1.262-3.343 4.107-1.595 5.562-1.335c5.353.994 4.08-4.646 5.571-6.137c1.379-1.38 5.32-2.494 6.611-.801\\\"/><path fill=\\\"#FFD030\\\" d=\\\"M108.143 93.698c1.843 2.421 5.263 5.02 6.485 5.73c.888.511 2.176 1.11 2.154 2.709c-.045 1.822-.978 2.332-1.488 2.843c-1.022 1.022-8.167 3.839-11.287 4.136c-4.069.361-4.065.596-6.248 1.391c-1.161.431-2.892.88-4.759.524c-1.29-.225-1.332-.021-2.221-.779c-.868-.756-.581-.314-.693-1.54c-.314-3.177-.698-3.851.389-6.711c1.262-3.399 4.125-1.529 5.572-1.266c5.335 1.006 4.011-4.749 5.5-6.236c1.376-1.378 5.307-2.489 6.596-.801\\\"/><path fill=\\\"#FFD133\\\" d=\\\"M108.125 93.722c1.839 2.414 5.251 5.007 6.47 5.715c.886.51 2.171 1.108 2.148 2.703c-.044 1.817-.975 2.326-1.484 2.836c-1.019 1.019-8.22 3.855-11.299 4.076c-4.077.288-3.921.487-6.114 1.308c-1.153.443-2.925.886-4.785.531c-1.285-.221-1.285 0-2.171-.753c-.864-.754-.51-.244-.621-1.462c-.311-3.168-.797-3.766.266-6.624c1.263-3.457 4.143-1.462 5.583-1.197c5.317 1.019 3.944-4.852 5.429-6.336c1.372-1.373 5.294-2.481 6.578-.797\\\"/><path fill=\\\"#995900\\\" d=\\\"M26.657 90.065c-2.093 1.511-7.393 1.371-8.741 3.138c-1.325 1.767.047 4.324.023 9.066c0 2.023-.348 3.558-.581 4.789c-.325 1.558-.535 2.651.116 3.766c1.187 1.977 3.091 2.465 13.995 4.743c5.834 1.208 11.344 4.347 15.04 4.649c3.696.279 4.487-.953 6.742-2.952c2.231-1.999 2.952-1.372 2.882-5.765c-.069-4.37-2.882-5.672-6.067-10.717c-3.185-5.044-3.695-5.974-5.811-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.907-.046-2.976.977-4.162 2.186c-1.186 1.208-2.651 4.276-4.742 5.787\\\"/><path fill=\\\"#9E5E00\\\" d=\\\"M26.689 90.158c-2.065 1.518-7.256 1.223-8.737 3.071c-1.341 1.749.074 4.287.032 9.026c-.008 2.011-.372 3.513-.625 4.803c-.335 1.573-.542 2.647.113 3.751c1.222 1.99 3.129 2.3 14.03 4.574c5.832 1.207 11.153 4.296 14.963 4.557c3.611.255 4.379-.913 6.607-2.893c2.226-2 2.913-1.381 2.859-5.62c-.024-4.365-2.682-5.602-5.866-10.646c-3.185-5.043-3.696-5.974-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.046-2.975.977-4.162 2.186c-1.184 1.209-2.631 4.351-4.708 5.881\\\"/><path fill=\\\"#A36400\\\" d=\\\"M26.723 90.251c-2.038 1.525-7.12 1.075-8.733 3.004c-1.357 1.729.101 4.249.04 8.985c-.016 2.001-.395 3.47-.669 4.818c-.343 1.588-.549 2.646.11 3.736c1.259 2.003 3.168 2.136 14.065 4.407c5.828 1.205 10.961 4.245 14.885 4.464c3.527.232 4.272-.874 6.472-2.834c2.223-2.001 2.876-1.39 2.839-5.475c.02-4.361-2.48-5.531-5.666-10.575c-3.185-5.043-3.695-5.974-5.811-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.907-.046-2.976.977-4.162 2.186s-2.616 4.426-4.676 5.974\\\"/><path fill=\\\"#A86A00\\\" d=\\\"M26.757 90.344c-2.012 1.532-6.984.925-8.73 2.936c-1.374 1.711.127 4.212.048 8.944c-.025 1.991-.419 3.428-.714 4.834c-.354 1.603-.556 2.644.106 3.721c1.297 2.018 3.207 1.972 14.103 4.24c5.824 1.202 10.769 4.193 14.807 4.371c3.441.209 4.166-.835 6.337-2.775c2.217-2.002 2.837-1.399 2.816-5.329c.066-4.356-2.28-5.46-5.464-10.504c-3.185-5.043-3.696-5.974-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.046-2.975.977-4.162 2.186c-1.185 1.208-2.597 4.499-4.641 6.066\\\"/><path fill=\\\"#AD7000\\\" d=\\\"M26.791 90.437c-1.985 1.539-6.849.777-8.727 2.869c-1.39 1.693.154 4.175.056 8.904c-.033 1.981-.441 3.384-.757 4.849c-.362 1.618-.563 2.642.102 3.707c1.334 2.031 3.245 1.808 14.138 4.072c5.821 1.2 10.577 4.142 14.729 4.277c3.357.186 4.059-.795 6.203-2.715c2.212-2.003 2.798-1.409 2.793-5.183c.112-4.353-2.079-5.389-5.263-10.434c-3.185-5.044-3.696-5.975-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.047-2.975.976-4.162 2.185c-1.184 1.208-2.579 4.573-4.606 6.159\\\"/><path fill=\\\"#B27500\\\" d=\\\"M26.825 90.53c-1.959 1.545-6.713.627-8.724 2.802c-1.406 1.673.181 4.137.064 8.861c-.041 1.971-.465 3.342-.802 4.864c-.371 1.634-.569 2.639.1 3.691c1.372 2.046 3.283 1.645 14.174 3.905c5.818 1.197 10.385 4.092 14.651 4.185c3.272.162 3.952-.756 6.067-2.657c2.208-2.005 2.76-1.418 2.772-5.039c.157-4.347-1.877-5.318-5.062-10.362c-3.186-5.043-3.696-5.974-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.046-2.975.977-4.162 2.186c-1.184 1.21-2.561 4.649-4.572 6.254\\\"/><path fill=\\\"#B77B00\\\" d=\\\"M26.859 90.622c-1.932 1.554-6.577.479-8.72 2.734c-1.423 1.655.207 4.1.072 8.822c-.049 1.959-.488 3.299-.846 4.879c-.381 1.648-.576 2.637.095 3.676c1.409 2.06 3.322 1.481 14.211 3.737c5.814 1.196 10.193 4.042 14.573 4.092c3.188.14 3.845-.716 5.933-2.596c2.204-2.007 2.723-1.428 2.75-4.894c.203-4.342-1.676-5.247-4.861-10.292c-3.186-5.043-3.696-5.974-5.812-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.906-.046-2.976.977-4.162 2.186c-1.185 1.21-2.545 4.725-4.539 6.346\\\"/><path fill=\\\"#BC8100\\\" d=\\\"M26.892 90.716c-1.905 1.56-6.441.33-8.716 2.667c-1.439 1.636.233 4.063.08 8.782c-.057 1.948-.511 3.254-.89 4.893c-.39 1.664-.583 2.634.092 3.661c1.446 2.074 3.36 1.317 14.247 3.57c5.811 1.193 10.002 3.989 14.495 3.998c3.103.117 3.738-.676 5.798-2.537c2.199-2.007 2.684-1.436 2.728-4.748c.248-4.338-1.475-5.175-4.66-10.22s-3.696-5.975-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.047-2.975.976-4.162 2.185c-1.185 1.209-2.527 4.797-4.506 6.439\\\"/><path fill=\\\"#C18700\\\" d=\\\"M26.926 90.808c-1.878 1.567-6.304.182-8.713 2.6c-1.455 1.618.261 4.026.089 8.74c-.065 1.939-.535 3.212-.935 4.909c-.399 1.679-.59 2.632.089 3.646c1.483 2.087 3.398 1.153 14.282 3.403c5.806 1.19 9.81 3.938 14.417 3.905c3.018.093 3.631-.636 5.664-2.478c2.194-2.008 2.645-1.446 2.705-4.603c.292-4.333-1.274-5.105-4.458-10.149c-3.186-5.044-3.696-5.975-5.812-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.906-.047-2.976.976-4.162 2.186c-1.186 1.208-2.51 4.872-4.472 6.531\\\"/><path fill=\\\"#C68C00\\\" d=\\\"M26.959 90.901c-1.85 1.574-6.167.033-8.709 2.531c-1.471 1.6.288 3.989.097 8.7c-.074 1.929-.558 3.169-.979 4.924c-.409 1.694-.598 2.63.085 3.63c1.521 2.102 3.438.99 14.319 3.236c5.804 1.188 9.618 3.887 14.339 3.813c2.933.07 3.524-.599 5.528-2.419c2.189-2.009 2.606-1.455 2.684-4.458c.338-4.328-1.073-5.034-4.258-10.079c-3.185-5.044-3.695-5.975-5.811-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.907-.047-2.976.976-4.162 2.186c-1.185 1.21-2.493 4.948-4.439 6.626\\\"/><path fill=\\\"#CC9200\\\" d=\\\"M26.993 90.994c-1.825 1.581-6.032-.116-8.706 2.465c-1.488 1.581.313 3.952.104 8.659c-.082 1.917-.582 3.127-1.023 4.939c-.419 1.708-.604 2.628.081 3.615c1.558 2.115 3.476.825 14.355 3.068c5.8 1.186 9.426 3.836 14.262 3.719c2.847.046 3.417-.558 5.393-2.359c2.186-2.011 2.569-1.464 2.662-4.312c.384-4.324-.871-4.963-4.057-10.007c-3.185-5.044-3.695-5.975-5.811-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.907-.047-2.976.976-4.162 2.185s-2.474 5.022-4.404 6.718\\\"/><path fill=\\\"#D19800\\\" d=\\\"M27.027 91.088c-1.798 1.588-5.896-.264-8.702 2.397c-1.504 1.562.34 3.914.113 8.618c-.089 1.907-.604 3.083-1.067 4.955c-.428 1.724-.611 2.625.078 3.6c1.595 2.131 3.514.662 14.39 2.901c5.797 1.184 9.235 3.785 14.184 3.626c2.763.023 3.311-.518 5.259-2.299c2.181-2.013 2.53-1.475 2.64-4.167c.429-4.32-.67-4.893-3.856-9.938c-3.185-5.043-3.695-5.974-5.811-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.907-.046-2.976.977-4.162 2.186s-2.458 5.096-4.372 6.811\\\"/><path fill=\\\"#D69E00\\\" d=\\\"M27.06 91.181c-1.771 1.595-5.76-.414-8.698 2.329c-1.521 1.544.367 3.877.12 8.578c-.097 1.897-.626 3.04-1.111 4.97c-.437 1.74-.618 2.623.075 3.585c1.631 2.145 3.551.498 14.426 2.734c5.793 1.181 9.043 3.733 14.106 3.533c2.678 0 3.204-.479 5.123-2.241c2.177-2.013 2.493-1.483 2.618-4.021c.475-4.314-.469-4.821-3.654-9.866c-3.185-5.044-3.695-5.975-5.811-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.907-.047-2.976.976-4.162 2.185s-2.441 5.169-4.338 6.904\\\"/><path fill=\\\"#DBA300\\\" d=\\\"M27.095 91.273c-1.745 1.603-5.625-.562-8.696 2.262c-1.536 1.525.395 3.84.129 8.537c-.104 1.886-.65 2.997-1.154 4.984c-.447 1.755-.626 2.62.071 3.57c1.668 2.157 3.59.333 14.463 2.566c5.789 1.178 8.851 3.682 14.028 3.44c2.592-.023 3.097-.439 4.988-2.182c2.172-2.015 2.454-1.493 2.596-3.876c.519-4.311-.27-4.751-3.454-9.796c-3.185-5.044-3.696-5.975-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.047-2.975.976-4.162 2.186c-1.185 1.211-2.423 5.247-4.303 6.999\\\"/><path fill=\\\"#E0A900\\\" d=\\\"M27.128 91.366c-1.718 1.609-5.488-.711-8.692 2.195c-1.553 1.507.42 3.803.137 8.496c-.114 1.876-.673 2.955-1.199 5c-.455 1.77-.632 2.618.068 3.555c1.706 2.171 3.628.17 14.499 2.399c5.786 1.177 8.659 3.632 13.95 3.348c2.509-.047 2.99-.399 4.854-2.122c2.167-2.016 2.415-1.502 2.573-3.732c.565-4.305-.067-4.68-3.253-9.724c-3.185-5.043-3.695-5.974-5.811-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.907-.046-2.976.977-4.162 2.186c-1.185 1.209-2.405 5.318-4.27 7.089\\\"/><path fill=\\\"#E5AF00\\\" d=\\\"M27.162 91.459c-1.691 1.616-5.353-.859-8.689 2.128c-1.569 1.488.447 3.766.146 8.455c-.123 1.865-.697 2.912-1.244 5.015c-.465 1.785-.639 2.616.063 3.541c1.744 2.184 3.667.005 14.535 2.231c5.783 1.174 8.468 3.58 13.873 3.254c2.423-.07 2.882-.361 4.718-2.063c2.162-2.017 2.377-1.512 2.552-3.586c.609-4.3.132-4.609-3.052-9.653c-3.185-5.043-3.696-5.974-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.046-2.975.977-4.162 2.186c-1.183 1.209-2.386 5.393-4.234 7.182\\\"/><path fill=\\\"#EAB500\\\" d=\\\"M27.196 91.553c-1.665 1.622-5.217-1.009-8.685 2.06c-1.585 1.469.474 3.728.154 8.415c-.131 1.855-.72 2.868-1.288 5.03c-.474 1.8-.647 2.614.061 3.524c1.78 2.2 3.706-.158 14.571 2.064c5.779 1.172 8.276 3.529 13.794 3.162c2.338-.093 2.775-.32 4.584-2.004c2.157-2.018 2.338-1.52 2.529-3.44c.656-4.296.334-4.539-2.85-9.583c-3.185-5.043-3.696-5.974-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.046-2.975.977-4.161 2.186c-1.186 1.209-2.372 5.467-4.203 7.276\\\"/><path fill=\\\"#EFBA00\\\" d=\\\"M27.229 91.646c-1.638 1.63-5.081-1.157-8.682 1.992c-1.602 1.451.502 3.692.162 8.375c-.138 1.845-.744 2.826-1.331 5.045c-.484 1.815-.654 2.611.057 3.509c1.817 2.213 3.743-.321 14.607 1.896c5.775 1.17 8.083 3.478 13.715 3.069c2.254-.116 2.669-.281 4.45-1.944c2.153-2.02 2.301-1.53 2.508-3.296c.701-4.291.535-4.466-2.649-9.511c-3.185-5.044-3.696-5.975-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.047-2.975.976-4.162 2.185c-1.185 1.21-2.354 5.543-4.169 7.37\\\"/><path fill=\\\"#F4C000\\\" d=\\\"M27.263 91.739c-1.61 1.635-4.944-1.307-8.678 1.924c-1.618 1.433.528 3.654.169 8.334c-.146 1.834-.768 2.782-1.376 5.061c-.493 1.83-.661 2.609.053 3.494c1.855 2.227 3.782-.486 14.644 1.729c5.772 1.167 7.892 3.427 13.639 2.976c2.168-.14 2.562-.242 4.314-1.885c2.147-2.02 2.262-1.54 2.485-3.15c.747-4.287.736-4.396-2.448-9.441c-3.185-5.043-3.696-5.974-5.812-9.322c-2.115-3.301-6.299-9.298-8.694-9.368c-1.906-.046-2.975.977-4.162 2.186c-1.184 1.209-2.335 5.616-4.134 7.462\\\"/><path fill=\\\"#F9C600\\\" d=\\\"M27.296 91.831c-1.584 1.644-4.808-1.455-8.674 1.857c-1.633 1.413.555 3.618.179 8.294c-.156 1.823-.791 2.739-1.421 5.075c-.502 1.845-.667 2.606.05 3.479c1.892 2.241 3.821-.65 14.68 1.562c5.768 1.165 7.7 3.375 13.56 2.884c2.085-.163 2.456-.203 4.18-1.826c2.144-2.022 2.224-1.548 2.463-3.006c.792-4.281.938-4.325-2.247-9.37c-3.185-5.043-3.695-5.974-5.811-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.907-.046-2.976.977-4.162 2.186c-1.186 1.21-2.32 5.691-4.103 7.555\\\"/><path fill=\\\"#fc0\\\" d=\\\"M27.33 91.924c-1.557 1.65-4.672-1.604-8.67 1.79c-1.65 1.394.581 3.58.186 8.252c-.163 1.813-.813 2.697-1.464 5.091c-.512 1.86-.675 2.604.046 3.464c1.93 2.255 3.859-.813 14.715 1.395c5.765 1.162 7.508 3.324 13.483 2.79c1.999-.186 2.347-.162 4.045-1.767c2.138-2.022 2.184-1.558 2.441-2.859c.836-4.277 1.139-4.254-2.046-9.298c-3.186-5.044-3.696-5.975-5.812-9.322c-2.116-3.301-6.3-9.298-8.694-9.368c-1.906-.047-2.976.976-4.162 2.185c-1.185 1.209-2.301 5.765-4.068 7.647m1.007 1.816c-1.381 1.466-5.902-.439-8.036 1.173c-1.528 1.13.774 2.553.46 6.739c-.125 1.59-1.234 1.883-.774 4.081c.356 1.653.733 1.611 1.361 2.365c1.715 2.009 1.318.544 11.092 2.511c5.169 1.047 6.76 2.993 12.139 2.512c1.799-.167 2.135-.146 3.642-1.59c1.925-1.8.942-1.424 1.15-2.574c.733-3.83.147-4.5-2.721-9.042c-2.867-4.542-2.616-4.793-4.499-7.785c-1.884-2.952-4.479-8.33-6.635-8.372c-1.694-.042-2.679.879-3.746 1.967c-1.068 1.089-1.863 6.342-3.433 8.015\\\"/><path fill=\\\"#FFCC02\\\" d=\\\"M28.432 93.771c-1.441 1.518-6.006-.386-8.091 1.196c-1.518 1.134.832 2.599.519 6.677c-.129 1.58-1.205 1.897-.793 4.079c.318 1.644.76 1.594 1.399 2.324c1.836 1.98 1.509.59 11.016 2.5c5.139 1.037 6.72 2.976 12.066 2.497c1.789-.166 2.092-.149 3.602-1.565c1.893-1.746.923-1.384 1.102-2.602c.667-3.805.143-4.514-2.644-8.926c-2.851-4.515-2.629-4.745-4.501-7.721c-1.872-2.933-4.423-8.332-6.566-8.373c-1.685-.042-2.663.873-3.723 1.955c-1.063 1.082-1.824 6.297-3.386 7.959\\\"/><path fill=\\\"#FFCC05\\\" d=\\\"M28.528 93.799c-1.5 1.571-6.112-.333-8.146 1.221c-1.507 1.138.891 2.645.579 6.615c-.134 1.57-1.176 1.91-.813 4.076c.281 1.636.791 1.578 1.438 2.286c1.956 1.949 1.7.635 10.94 2.488c5.109 1.027 6.681 2.957 11.993 2.481c1.778-.164 2.048-.152 3.562-1.54c1.862-1.691.905-1.346 1.053-2.628c.602-3.783.14-4.529-2.567-8.814c-2.835-4.488-2.642-4.699-4.503-7.656c-1.86-2.916-4.368-8.334-6.498-8.375c-1.675-.041-2.647.868-3.702 1.944c-1.055 1.077-1.782 6.254-3.336 7.902\\\"/><path fill=\\\"#FFCC07\\\" d=\\\"M28.622 93.829c-1.559 1.624-6.216-.279-8.2 1.245c-1.498 1.143.949 2.69.638 6.552c-.137 1.562-1.146 1.925-.832 4.075c.244 1.626.819 1.561 1.477 2.245c2.076 1.92 1.89.681 10.864 2.478c5.079 1.016 6.641 2.939 11.922 2.466c1.768-.162 2.005-.155 3.521-1.515c1.83-1.638.886-1.307 1.003-2.656c.537-3.758.136-4.543-2.49-8.7c-2.818-4.46-2.655-4.651-4.505-7.591c-1.849-2.898-4.313-8.335-6.43-8.376c-1.665-.041-2.63.863-3.679 1.932s-1.742 6.209-3.289 7.845\\\"/><path fill=\\\"#FFCD0A\\\" d=\\\"M28.717 93.859c-1.618 1.676-6.321-.226-8.254 1.269c-1.488 1.148 1.007 2.736.697 6.491c-.142 1.553-1.117 1.938-.853 4.072c.208 1.618.848 1.543 1.516 2.205c2.195 1.891 2.08.727 10.788 2.467c5.049 1.007 6.602 2.921 11.849 2.452c1.756-.16 1.962-.158 3.481-1.491c1.798-1.583.868-1.267.954-2.681c.472-3.736.131-4.559-2.413-8.586c-2.802-4.434-2.667-4.605-4.507-7.526c-1.838-2.881-4.258-8.337-6.362-8.379c-1.654-.041-2.615.859-3.656 1.92c-1.042 1.061-1.7 6.162-3.24 7.787\\\"/><path fill=\\\"#FFCD0C\\\" d=\\\"M28.813 93.888c-1.676 1.729-6.427-.173-8.309 1.293c-1.478 1.151 1.063 2.781.755 6.427c-.145 1.543-1.088 1.952-.871 4.07c.169 1.609.876 1.527 1.555 2.166c2.315 1.861 2.269.772 10.71 2.455c5.021.997 6.563 2.904 11.778 2.437c1.745-.158 1.919-.161 3.441-1.465c1.766-1.529.849-1.229.904-2.71c.407-3.711.129-4.572-2.334-8.472c-2.787-4.406-2.682-4.558-4.509-7.461c-1.828-2.863-4.203-8.34-6.294-8.381c-1.646-.04-2.6.854-3.635 1.909s-1.659 6.121-3.191 7.732\\\"/><path fill=\\\"#FFCD0F\\\" d=\\\"M28.908 93.917c-1.736 1.783-6.531-.119-8.363 1.319c-1.467 1.156 1.123 2.827.814 6.365c-.148 1.533-1.058 1.965-.89 4.067c.133 1.6.905 1.51 1.594 2.126c2.435 1.833 2.461.817 10.635 2.443c4.99.987 6.523 2.886 11.705 2.422c1.735-.156 1.876-.164 3.401-1.44c1.735-1.475.83-1.189.855-2.737c.341-3.687.125-4.587-2.258-8.358c-2.77-4.379-2.694-4.51-4.511-7.396c-1.816-2.845-4.147-8.341-6.226-8.381c-1.633-.041-2.583.847-3.611 1.897c-1.032 1.049-1.622 6.075-3.145 7.673\\\"/><path fill=\\\"#FFCD11\\\" d=\\\"M29.002 93.946c-1.795 1.836-6.637-.066-8.417 1.342c-1.458 1.161 1.181 2.873.874 6.303c-.153 1.524-1.029 1.979-.91 4.066c.096 1.59.935 1.492 1.633 2.085c2.554 1.802 2.651.863 10.558 2.432c4.96.977 6.485 2.868 11.632 2.407c1.725-.155 1.833-.167 3.361-1.415c1.703-1.421.812-1.151.806-2.764c.276-3.664.121-4.603-2.182-8.245c-2.754-4.352-2.707-4.464-4.513-7.332c-1.804-2.828-4.091-8.343-6.157-8.383c-1.625-.041-2.566.842-3.589 1.885c-1.023 1.046-1.579 6.034-3.096 7.619\\\"/><path fill=\\\"#FFCE14\\\" d=\\\"M29.097 93.975c-1.854 1.89-6.741-.013-8.473 1.367c-1.447 1.165 1.239 2.918.933 6.241c-.157 1.515-.999 1.993-.929 4.063c.059 1.582.963 1.476 1.672 2.046c2.673 1.773 2.841.908 10.482 2.421c4.931.967 6.446 2.85 11.56 2.392c1.714-.152 1.79-.168 3.321-1.389c1.671-1.368.793-1.112.756-2.792c.211-3.64.118-4.616-2.105-8.131c-2.737-4.324-2.72-4.416-4.513-7.266c-1.793-2.81-4.037-8.346-6.089-8.386c-1.614-.04-2.551.837-3.568 1.873c-1.016 1.038-1.537 5.989-3.047 7.561\\\"/><path fill=\\\"#FFCE16\\\" d=\\\"M29.192 94.005c-1.913 1.943-6.846.041-8.526 1.391c-1.438 1.169 1.297 2.964.991 6.179c-.16 1.505-.969 2.006-.948 4.061c.021 1.574.992 1.459 1.71 2.006c2.793 1.744 3.032.955 10.406 2.411c4.9.957 6.405 2.832 11.487 2.376c1.703-.15 1.746-.172 3.28-1.364c1.64-1.313.775-1.073.708-2.818c.146-3.616.115-4.632-2.026-8.017c-2.723-4.298-2.733-4.37-4.516-7.202c-1.782-2.792-3.982-8.348-6.021-8.388c-1.604-.039-2.535.832-3.545 1.862c-1.011 1.03-1.498 5.944-3 7.503\\\"/><path fill=\\\"#FFCE19\\\" d=\\\"M29.287 94.034c-1.972 1.996-6.951.094-8.58 1.416c-1.428 1.174 1.354 3.01 1.051 6.117c-.165 1.496-.94 2.02-.968 4.059c-.016 1.564 1.021 1.441 1.75 1.966c2.913 1.713 3.221 1 10.33 2.398c4.87.947 6.367 2.814 11.415 2.361c1.693-.148 1.704-.174 3.24-1.339c1.608-1.258.757-1.035.658-2.845c.081-3.593.111-4.646-1.95-7.904c-2.706-4.271-2.747-4.322-4.517-7.136c-1.771-2.776-3.927-8.349-5.954-8.389c-1.594-.04-2.519.827-3.523 1.85c-1.004 1.024-1.457 5.9-2.952 7.446\\\"/><path fill=\\\"#FFCE1C\\\" d=\\\"M29.383 94.064c-2.032 2.048-7.056.147-8.636 1.439c-1.417 1.178 1.414 3.056 1.11 6.055c-.167 1.485-.91 2.033-.987 4.056c-.053 1.556 1.05 1.425 1.788 1.926c3.034 1.685 3.412 1.046 10.254 2.388c4.841.937 6.327 2.796 11.342 2.347c1.683-.146 1.661-.177 3.2-1.314c1.577-1.205.739-.995.61-2.872c.016-3.569.106-4.662-1.873-7.79c-2.689-4.243-2.759-4.275-4.52-7.072c-1.759-2.757-3.87-8.351-5.885-8.391c-1.584-.039-2.503.822-3.501 1.839c-.996 1.017-1.416 5.854-2.902 7.389\\\"/><path fill=\\\"#FFCF1E\\\" d=\\\"M29.477 94.092c-2.089 2.102-7.161.201-8.69 1.464c-1.407 1.183 1.472 3.101 1.168 5.992c-.171 1.478-.881 2.048-1.006 4.056c-.09 1.545 1.078 1.407 1.827 1.886c3.153 1.655 3.602 1.092 10.177 2.375c4.81.928 6.287 2.779 11.271 2.333c1.67-.145 1.617-.181 3.159-1.29c1.545-1.151.72-.957.561-2.899c-.051-3.544.102-4.675-1.797-7.675c-2.672-4.217-2.771-4.229-4.521-7.009c-1.749-2.739-3.815-8.353-5.817-8.392c-1.574-.039-2.488.816-3.478 1.827c-.989 1.012-1.375 5.811-2.854 7.332\\\"/><path fill=\\\"#FFCF21\\\" d=\\\"M29.572 94.122c-2.148 2.155-7.266.253-8.744 1.489c-1.397 1.187 1.529 3.146 1.228 5.93c-.176 1.467-.851 2.062-1.026 4.053c-.128 1.537 1.106 1.39 1.866 1.846c3.272 1.626 3.792 1.137 10.101 2.365c4.781.917 6.248 2.761 11.199 2.317c1.659-.142 1.574-.183 3.119-1.264c1.513-1.097.701-.918.511-2.926c-.116-3.521.099-4.69-1.72-7.562c-2.657-4.19-2.785-4.181-4.522-6.942c-1.737-2.723-3.76-8.356-5.749-8.395c-1.564-.038-2.471.811-3.456 1.815c-.985 1.003-1.335 5.765-2.807 7.274\\\"/><path fill=\\\"#FFCF23\\\" d=\\\"M29.667 94.151c-2.208 2.208-7.371.307-8.798 1.514c-1.388 1.19 1.586 3.192 1.286 5.867c-.181 1.458-.822 2.074-1.046 4.05c-.164 1.527 1.137 1.374 1.905 1.806c3.393 1.597 3.983 1.183 10.025 2.354c4.751.908 6.209 2.743 11.126 2.301c1.65-.14 1.531-.186 3.08-1.238c1.481-1.042.683-.879.462-2.954c-.181-3.498.096-4.704-1.643-7.447c-2.64-4.163-2.797-4.135-4.524-6.878c-1.727-2.704-3.705-8.357-5.68-8.396c-1.555-.039-2.456.806-3.434 1.803c-.977.998-1.294 5.723-2.759 7.218\\\"/><path fill=\\\"#FFCF26\\\" d=\\\"M29.763 94.181c-2.268 2.261-7.477.36-8.854 1.538c-1.377 1.195 1.646 3.237 1.346 5.805c-.184 1.448-.793 2.088-1.065 4.047c-.202 1.52 1.165 1.357 1.944 1.768c3.512 1.566 4.173 1.227 9.948 2.342c4.721.897 6.169 2.726 11.054 2.288c1.639-.139 1.487-.189 3.039-1.214c1.45-.988.665-.839.412-2.979c-.246-3.475.092-4.72-1.564-7.334c-2.625-4.136-2.812-4.087-4.527-6.813c-1.715-2.687-3.649-8.359-5.612-8.398c-1.544-.038-2.44.801-3.412 1.792c-.971.988-1.252 5.675-2.709 7.158\\\"/><path fill=\\\"#FFD028\\\" d=\\\"M29.858 94.21c-2.326 2.314-7.582.414-8.908 1.562c-1.367 1.2 1.704 3.283 1.405 5.743c-.188 1.438-.764 2.102-1.085 4.046c-.237 1.511 1.195 1.339 1.984 1.726c3.632 1.538 4.363 1.274 9.872 2.332c4.691.886 6.13 2.707 10.981 2.271c1.628-.136 1.445-.191 3-1.188c1.418-.936.646-.801.363-3.008c-.312-3.45.088-4.734-1.488-7.22c-2.609-4.109-2.824-4.042-4.528-6.749c-1.704-2.67-3.594-8.361-5.544-8.399c-1.534-.038-2.424.795-3.389 1.78c-.967.984-1.215 5.634-2.663 7.104\\\"/><path fill=\\\"#FFD02B\\\" d=\\\"M29.952 94.239c-2.385 2.367-7.686.467-8.961 1.586c-1.358 1.204 1.761 3.329 1.463 5.68c-.191 1.43-.733 2.116-1.103 4.043c-.275 1.502 1.223 1.323 2.022 1.688c3.751 1.508 4.553 1.319 9.795 2.319c4.661.878 6.09 2.69 10.909 2.257c1.618-.135 1.401-.195 2.959-1.164c1.386-.881.627-.762.313-3.034c-.375-3.427.086-4.749-1.41-7.107c-2.593-4.081-2.837-3.994-4.53-6.683c-1.693-2.652-3.54-8.363-5.477-8.401c-1.524-.038-2.408.79-3.367 1.768c-.957.979-1.171 5.591-2.613 7.048\\\"/><path fill=\\\"#FFD02D\\\" d=\\\"M30.047 94.269c-2.444 2.419-7.791.52-9.015 1.61c-1.348 1.208 1.819 3.374 1.522 5.618c-.195 1.419-.705 2.129-1.123 4.042c-.312 1.492 1.251 1.306 2.061 1.646c3.871 1.479 4.744 1.366 9.72 2.309c4.631.867 6.051 2.671 10.836 2.242c1.607-.133 1.358-.197 2.919-1.138c1.354-.828.609-.723.265-3.061c-.441-3.402.081-4.764-1.334-6.993c-2.576-4.054-2.849-3.946-4.532-6.617c-1.681-2.636-3.483-8.366-5.408-8.404c-1.514-.037-2.392.786-3.344 1.756c-.953.972-1.132 5.544-2.567 6.99\\\"/><path fill=\\\"#FFD030\\\" d=\\\"M30.142 94.298c-2.502 2.472-7.895.573-9.07 1.635c-1.337 1.212 1.877 3.421 1.582 5.556c-.199 1.41-.675 2.143-1.142 4.039c-.35 1.484 1.279 1.289 2.099 1.607c3.992 1.449 4.935 1.411 9.644 2.296c4.602.858 6.012 2.655 10.765 2.228c1.596-.131 1.314-.201 2.879-1.113c1.322-.773.59-.684.214-3.088c-.506-3.379.078-4.778-1.256-6.879c-2.561-4.027-2.863-3.899-4.533-6.553c-1.671-2.617-3.429-8.368-5.34-8.404c-1.503-.038-2.375.78-3.322 1.744c-.948.965-1.093 5.5-2.52 6.932\\\"/><path fill=\\\"#FFD133\\\" d=\\\"M30.238 94.327c-2.563 2.526-8 .627-9.125 1.659c-1.327 1.217 1.935 3.466 1.64 5.494c-.201 1.4-.645 2.156-1.161 4.037c-.387 1.474 1.309 1.272 2.139 1.567c4.11 1.419 5.125 1.456 9.567 2.286c4.571.848 5.973 2.636 10.691 2.212c1.585-.129 1.272-.203 2.839-1.088c1.291-.718.572-.645.166-3.115c-.572-3.356.074-4.793-1.179-6.766c-2.544-4.001-2.876-3.853-4.535-6.489c-1.66-2.6-3.374-8.37-5.272-8.406c-1.494-.037-2.36.774-3.3 1.733c-.94.961-1.051 5.456-2.47 6.876\\\"/><path d=\\\"M38.372 72.328c-.302.673-.558 6.462.953 8.717c1.511 2.231 1.07 3.51-.604 1.813c-1.744-1.65-2.883-4.138-2.906-5.858c0-.999.768-5.114 1.07-5.556c.324-.465 1.719.372 1.487.884\\\"/><path fill=\\\"#030303\\\" d=\\\"M38.343 72.441c-.292.755-.535 6.359.972 8.609c1.506 2.229 1.029 3.387-.594 1.73c-1.689-1.614-2.779-4.026-2.822-5.743c-.014-1.005.721-4.978 1.011-5.421c.311-.449 1.656.32 1.433.825\\\"/><path fill=\\\"#070707\\\" d=\\\"M38.314 72.554c-.282.836-.511 6.258.99 8.503c1.502 2.225.988 3.264-.584 1.646c-1.633-1.576-2.675-3.914-2.738-5.627c-.028-1.011.677-4.843.954-5.287c.294-.435 1.59.267 1.378.765\\\"/><path fill=\\\"#0B0B0B\\\" d=\\\"M38.285 72.666c-.271.918-.488 6.156 1.009 8.396c1.497 2.222.947 3.141-.573 1.563c-1.58-1.54-2.573-3.803-2.656-5.514c-.042-1.017.632-4.706.895-5.151c.282-.419 1.526.215 1.325.706\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M38.256 72.779c-.26 1-.465 6.053 1.028 8.29c1.492 2.217.907 3.017-.562 1.479c-1.525-1.501-2.469-3.692-2.571-5.398c-.056-1.023.585-4.569.836-5.016c.264-.405 1.46.161 1.269.645\\\"/><path fill=\\\"#131313\\\" d=\\\"M38.227 72.891c-.25 1.082-.442 5.952 1.046 8.183c1.488 2.214.866 2.895-.552 1.395c-1.471-1.463-2.366-3.58-2.488-5.282c-.07-1.029.541-4.435.78-4.882c.25-.39 1.394.11 1.214.586\\\"/><path fill=\\\"#161616\\\" d=\\\"M38.198 73.004c-.239 1.163-.418 5.849 1.065 8.076c1.483 2.211.825 2.771-.542 1.311c-1.417-1.427-2.263-3.468-2.404-5.167c-.084-1.034.495-4.298.721-4.747c.235-.374 1.329.058 1.16.527\\\"/><path fill=\\\"#1A1A1A\\\" d=\\\"M38.169 73.117c-.229 1.244-.396 5.747 1.083 7.969c1.478 2.207.784 2.647-.532 1.227c-1.361-1.39-2.158-3.357-2.32-5.052c-.098-1.04.451-4.163.663-4.612c.22-.359 1.265.005 1.106.468\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M38.139 73.23c-.219 1.326-.371 5.645 1.102 7.862c1.474 2.204.745 2.525-.52 1.144c-1.307-1.353-2.056-3.245-2.238-4.938c-.11-1.046.405-4.026.605-4.477c.205-.344 1.201-.047 1.051.409\\\"/><path fill=\\\"#222\\\" d=\\\"M38.111 73.343c-.208 1.406-.349 5.542 1.121 7.755c1.469 2.201.704 2.401-.51 1.06c-1.252-1.315-1.952-3.134-2.153-4.823c-.125-1.052.358-3.89.546-4.342c.189-.329 1.134-.099.996.35\\\"/><path fill=\\\"#262626\\\" d=\\\"M38.081 73.455c-.197 1.488-.325 5.44 1.139 7.647c1.465 2.197.664 2.278-.499.977c-1.198-1.279-1.849-3.021-2.07-4.707c-.139-1.058.314-3.755.489-4.208c.175-.313 1.069-.15.941.291\\\"/><path fill=\\\"#2A2A2A\\\" d=\\\"M38.053 73.568c-.187 1.569-.302 5.337 1.158 7.541c1.46 2.193.622 2.155-.489.893c-1.143-1.242-1.745-2.911-1.985-4.593c-.153-1.063.268-3.618.429-4.073c.159-.298 1.004-.203.887.232\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M38.024 73.681c-.177 1.65-.279 5.234 1.177 7.434c1.455 2.19.581 2.032-.479.809c-1.088-1.204-1.642-2.799-1.902-4.477c-.167-1.069.224-3.482.372-3.938c.143-.284.939-.256.832.172\\\"/><path fill=\\\"#313131\\\" d=\\\"M37.995 73.794c-.167 1.731-.257 5.133 1.194 7.326c1.451 2.187.541 1.909-.468.726c-1.034-1.167-1.538-2.688-1.818-4.362c-.182-1.075.178-3.346.314-3.804c.129-.268.874-.307.778.114\\\"/><path fill=\\\"#353535\\\" d=\\\"M37.966 73.906c-.155 1.813-.232 5.03 1.213 7.22c1.447 2.183.501 1.786-.457.643c-.979-1.131-1.434-2.576-1.735-4.248c-.194-1.081.133-3.21.256-3.668c.113-.254.809-.36.723.053\\\"/><path fill=\\\"#393939\\\" d=\\\"M37.937 74.019c-.146 1.895-.209 4.929 1.231 7.114c1.441 2.179.459 1.662-.448.558c-.923-1.093-1.33-2.464-1.65-4.132c-.208-1.087.088-3.074.199-3.534c.098-.238.743-.413.668-.006\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M37.908 74.132c-.136 1.976-.187 4.825 1.25 7.005c1.436 2.176.418 1.54-.437.475c-.87-1.056-1.228-2.353-1.567-4.017c-.224-1.092.041-2.938.139-3.398c.084-.223.68-.465.615-.065\\\"/><path fill=\\\"#414141\\\" d=\\\"M37.878 74.245c-.124 2.057-.163 4.724 1.27 6.899c1.432 2.172.377 1.416-.427.391c-.814-1.018-1.124-2.241-1.483-3.902c-.237-1.099-.004-2.802.081-3.264c.069-.208.614-.517.559-.124\\\"/><path fill=\\\"#444\\\" d=\\\"M37.849 74.357c-.114 2.138-.14 4.621 1.289 6.792c1.427 2.17.336 1.293-.416.307c-.761-.981-1.021-2.128-1.4-3.786c-.25-1.104-.048-2.667.023-3.129c.053-.193.549-.569.504-.184\\\"/><path fill=\\\"#484848\\\" d=\\\"M37.82 74.47c-.104 2.22-.116 4.52 1.306 6.686c1.423 2.166.296 1.169-.405.223c-.707-.944-.918-2.018-1.316-3.672c-.265-1.11-.094-2.53-.035-2.994c.039-.178.484-.622.45-.243\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M37.791 74.583c-.093 2.301-.093 4.416 1.325 6.579c1.418 2.162.255 1.046-.395.14c-.652-.907-.814-1.906-1.233-3.557c-.278-1.116-.14-2.394-.093-2.859c.024-.164.419-.676.396-.303\\\"/><path d=\\\"M38.372 72.328c1.395-3.046 2.163-6.324 4.162-9.508c1.976-3.161 1.186-4.394-.279-2.79c-1.465 1.604-3.068 4.999-3.068 4.999s-1.883 2.975-2.301 6.416c-.072.58 1.253 1.371 1.486.883\\\"/><path fill=\\\"#020202\\\" d=\\\"M38.432 72.13c1.382-3.066 2.136-6.213 4.063-9.299c1.906-3.063 1.166-4.287-.247-2.735c-1.421 1.565-3.002 4.919-3.024 4.966c0 0-1.819 2.904-2.221 6.211c-.066.572 1.202 1.339 1.429.857\\\"/><path fill=\\\"#050505\\\" d=\\\"M38.492 71.933c1.368-3.088 2.11-6.104 3.966-9.09c1.835-2.965 1.146-4.181-.213-2.681c-1.379 1.525-2.938 4.84-2.981 4.934c0 0-1.757 2.831-2.14 6.007c-.065.563 1.147 1.305 1.368.83\\\"/><path fill=\\\"#070707\\\" d=\\\"M38.552 71.736c1.356-3.111 2.083-5.997 3.868-8.882c1.765-2.866 1.125-4.075-.182-2.626c-1.335 1.486-2.872 4.761-2.937 4.902c0 0-1.693 2.757-2.058 5.802c-.062.554 1.093 1.272 1.309.804\\\"/><path fill=\\\"#0A0A0A\\\" d=\\\"M38.612 71.54c1.342-3.132 2.058-5.888 3.771-8.674c1.693-2.768 1.104-3.968-.15-2.571c-1.292 1.447-2.806 4.682-2.892 4.87c0 0-1.632 2.685-1.978 5.597c-.061.543 1.039 1.239 1.249.778\\\"/><path fill=\\\"#0C0C0C\\\" d=\\\"M38.671 71.342c1.33-3.154 2.032-5.778 3.672-8.465c1.624-2.67 1.086-3.862-.116-2.517c-1.25 1.408-2.741 4.604-2.848 4.838c0 0-1.568 2.613-1.897 5.393c-.057.534.986 1.205 1.189.751\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M38.731 71.145c1.316-3.175 2.006-5.669 3.575-8.256c1.554-2.571 1.064-3.756-.084-2.463c-1.207 1.369-2.675 4.524-2.804 4.807c0 0-1.506 2.54-1.816 5.188c-.055.524.931 1.171 1.129.724\\\"/><path fill=\\\"#111\\\" d=\\\"M38.791 70.948c1.303-3.197 1.979-5.561 3.478-8.048c1.483-2.472 1.044-3.649-.052-2.408c-1.164 1.33-2.61 4.446-2.76 4.774c0 0-1.443 2.468-1.735 4.985c-.054.514.876 1.137 1.069.697\\\"/><path fill=\\\"#141414\\\" d=\\\"M38.851 70.75c1.291-3.219 1.953-5.452 3.38-7.839c1.412-2.374 1.024-3.543-.019-2.354c-1.122 1.291-2.545 4.367-2.718 4.742c0 0-1.379 2.395-1.653 4.78c-.05.506.823 1.105 1.01.671\\\"/><path fill=\\\"#161616\\\" d=\\\"M38.911 70.553c1.276-3.24 1.928-5.343 3.282-7.631c1.342-2.276 1.004-3.437.014-2.3c-1.079 1.252-2.479 4.289-2.673 4.711c0 0-1.317 2.323-1.574 4.576c-.047.495.769 1.071.951.644\\\"/><path fill=\\\"#191919\\\" d=\\\"M38.971 70.356c1.265-3.262 1.902-5.233 3.185-7.422c1.271-2.178.984-3.331.047-2.246c-1.036 1.212-2.414 4.21-2.629 4.679c0 0-1.254 2.25-1.493 4.372c-.046.485.714 1.037.89.617\\\"/><path fill=\\\"#1C1C1C\\\" d=\\\"M39.03 70.159c1.251-3.285 1.876-5.125 3.087-7.215c1.202-2.079.964-3.224.079-2.19c-.992 1.173-2.348 4.13-2.584 4.646c0 0-1.192 2.178-1.412 4.167c-.043.476.661 1.005.83.592\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M39.09 69.961c1.238-3.306 1.85-5.016 2.991-7.006c1.129-1.98.943-3.118.111-2.136c-.949 1.134-2.283 4.052-2.541 4.615c0 0-1.128 2.106-1.331 3.962c-.041.468.607.972.77.565\\\"/><path fill=\\\"#212121\\\" d=\\\"M39.149 69.764c1.226-3.328 1.824-4.907 2.892-6.797c1.061-1.881.923-3.011.144-2.082c-.906 1.095-2.217 3.973-2.497 4.583c0 0-1.066 2.032-1.25 3.758c-.037.459.554.938.711.538\\\"/><path fill=\\\"#232323\\\" d=\\\"M39.209 69.567c1.212-3.349 1.798-4.798 2.794-6.588c.99-1.783.903-2.906.177-2.027c-.863 1.055-2.151 3.894-2.453 4.551c0 0-1.003 1.96-1.17 3.553c-.034.447.5.904.652.511\\\"/><path fill=\\\"#262626\\\" d=\\\"M39.269 69.37c1.198-3.371 1.772-4.689 2.696-6.38c.92-1.685.883-2.799.209-1.973c-.82 1.017-2.087 3.815-2.409 4.52c0 0-.941 1.888-1.088 3.349c-.032.437.445.87.592.484\\\"/><path fill=\\\"#282828\\\" d=\\\"M39.329 69.173c1.187-3.393 1.747-4.581 2.6-6.171c.848-1.587.862-2.693.242-1.918c-.778.977-2.022 3.736-2.366 4.487c0 0-.876 1.815-1.007 3.144c-.031.428.39.837.531.458\\\"/><path fill=\\\"#2B2B2B\\\" d=\\\"M39.388 68.975c1.173-3.414 1.72-4.471 2.502-5.963c.779-1.488.842-2.586.273-1.864c-.734.938-1.956 3.657-2.321 4.456c0 0-.814 1.742-.927 2.94c-.026.419.339.804.473.431\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M39.449 68.778c1.16-3.437 1.694-4.363 2.404-5.754c.708-1.39.822-2.48.306-1.81c-.692.9-1.89 3.579-2.278 4.424c0 0-.75 1.67-.845 2.735c-.025.41.284.771.413.405\\\"/><path fill=\\\"#303030\\\" d=\\\"M39.509 68.581c1.146-3.458 1.667-4.253 2.306-5.546c.638-1.29.802-2.374.339-1.755c-.648.86-1.824 3.5-2.233 4.392c0 0-.688 1.597-.765 2.531c-.023.4.23.736.353.378\\\"/><path fill=\\\"#333\\\" d=\\\"M39.568 68.383c1.134-3.479 1.643-4.144 2.209-5.337c.567-1.193.783-2.268.372-1.701c-.606.821-1.759 3.421-2.188 4.359c0 0-.627 1.526-.686 2.327c-.02.392.176.704.293.352\\\"/><path d=\\\"M97.859 74.559c.675-1.906.605-6.764-1.116-9.902c-.604-1.14-1.186-2.464-1.534-2.535c-.372-.069-1.047.675-.977.791c.094.186 3.232 4.604 2.581 10.601c-.046.488.884 1.488 1.046 1.045\\\"/><path fill=\\\"#030303\\\" d=\\\"M97.829 74.314c.654-1.847.566-6.58-1.08-9.577c-.586-1.1-1.142-2.381-1.484-2.451c-.362-.069-1.009.653-.944.764c.084.181 3.101 4.449 2.496 10.252c-.041.48.855 1.438 1.012 1.012\\\"/><path fill=\\\"#070707\\\" d=\\\"M97.799 74.067c.635-1.786.529-6.396-1.042-9.252c-.569-1.061-1.098-2.297-1.434-2.367c-.352-.067-.971.632-.911.739c.073.177 2.971 4.293 2.41 9.903c-.038.472.825 1.39.977.977\\\"/><path fill=\\\"#0B0B0B\\\" d=\\\"M97.768 73.821c.615-1.727.49-6.21-1.006-8.925c-.551-1.022-1.054-2.214-1.382-2.284c-.343-.068-.935.61-.881.712c.064.172 2.841 4.139 2.326 9.554c-.033.465.797 1.341.943.943\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M97.738 73.574c.595-1.667.451-6.025-.969-8.599c-.533-.983-1.011-2.13-1.333-2.201c-.332-.067-.897.589-.848.687c.054.167 2.711 3.984 2.241 9.205c-.029.458.767 1.292.909.908\\\"/><path fill=\\\"#131313\\\" d=\\\"M97.708 73.328c.574-1.606.412-5.841-.933-8.273c-.515-.944-.967-2.047-1.282-2.117c-.323-.066-.86.566-.815.66c.044.163 2.581 3.83 2.156 8.856c-.026.45.737 1.243.874.874\\\"/><path fill=\\\"#161616\\\" d=\\\"M97.677 73.082c.556-1.547.375-5.656-.895-7.948c-.497-.905-.923-1.963-1.231-2.034c-.313-.066-.823.546-.783.634c.034.159 2.45 3.675 2.071 8.508c-.022.442.707 1.194.838.84\\\"/><path fill=\\\"#1A1A1A\\\" d=\\\"M97.646 72.836c.536-1.487.337-5.472-.858-7.623c-.479-.866-.879-1.88-1.181-1.951c-.303-.065-.786.525-.75.609c.024.154 2.319 3.52 1.986 8.159c-.018.434.678 1.145.803.806\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M97.616 72.589c.516-1.427.298-5.287-.822-7.297c-.462-.826-.835-1.796-1.131-1.866c-.292-.063-.749.502-.719.583c.014.149 2.189 3.365 1.901 7.81c-.013.426.651 1.096.771.77\\\"/><path fill=\\\"#222\\\" d=\\\"M97.585 72.343c.496-1.367.261-5.102-.785-6.97c-.443-.788-.792-1.713-1.081-1.784c-.283-.063-.711.482-.687.557c.005.145 2.06 3.211 1.816 7.462c-.006.417.622 1.045.737.735\\\"/><path fill=\\\"#262626\\\" d=\\\"M97.555 72.096c.476-1.307.223-4.917-.75-6.645c-.424-.748-.748-1.629-1.029-1.7c-.273-.062-.673.46-.655.53c-.005.141 1.93 3.057 1.731 7.113c-.003.412.593.998.703.702\\\"/><path fill=\\\"#2A2A2A\\\" d=\\\"M97.524 71.85c.456-1.247.185-4.732-.713-6.319c-.407-.709-.703-1.546-.979-1.617c-.263-.062-.637.439-.623.504c-.015.136 1.8 2.902 1.646 6.764c.002.404.565.95.669.668\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M97.493 71.604c.437-1.188.147-4.547-.674-5.994c-.39-.67-.661-1.462-.929-1.533c-.253-.061-.6.417-.591.479c-.024.132 1.669 2.747 1.562 6.415c.005.396.534.9.632.633\\\"/><path fill=\\\"#313131\\\" d=\\\"M97.463 71.357c.416-1.127.108-4.362-.639-5.667c-.372-.631-.617-1.38-.878-1.451c-.243-.061-.562.396-.559.452c-.034.127 1.54 2.593 1.477 6.067c.01.39.505.852.599.599\\\"/><path fill=\\\"#353535\\\" d=\\\"M97.432 71.112c.397-1.068.07-4.178-.602-5.342c-.353-.592-.572-1.296-.827-1.367c-.234-.06-.525.375-.527.426c-.044.123 1.409 2.438 1.392 5.718c.015.38.477.803.564.565\\\"/><path fill=\\\"#393939\\\" d=\\\"M97.402 70.865c.377-1.007.031-3.993-.565-5.016c-.335-.554-.529-1.213-.778-1.284c-.223-.059-.487.354-.494.401c-.054.118 1.279 2.284 1.307 5.369c.018.373.448.753.53.53\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M97.371 70.619c.357-.948-.007-3.808-.529-4.69c-.317-.514-.485-1.128-.727-1.2c-.214-.058-.451.333-.462.375c-.064.114 1.148 2.128 1.221 5.02c.024.364.421.704.497.495\\\"/><path fill=\\\"#414141\\\" d=\\\"M97.342 70.373c.338-.888-.045-3.624-.492-4.364c-.3-.475-.441-1.045-.676-1.117c-.206-.058-.414.31-.43.348c-.074.109 1.018 1.974 1.136 4.672c.028.356.39.654.462.461\\\"/><path fill=\\\"#444\\\" d=\\\"M97.31 70.127c.318-.828-.083-3.439-.455-4.039c-.282-.436-.397-.962-.625-1.033c-.195-.058-.376.289-.398.322c-.083.104.888 1.82 1.053 4.324c.03.348.358.605.425.426\\\"/><path fill=\\\"#484848\\\" d=\\\"M97.281 69.88c.297-.767-.122-3.253-.419-3.713c-.264-.396-.354-.878-.575-.95c-.185-.057-.339.268-.366.296c-.093.1.759 1.665.967 3.974c.035.342.331.558.393.393\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M97.25 69.633c.277-.708-.16-3.068-.382-3.386c-.247-.357-.311-.795-.525-.866c-.175-.056-.301.246-.333.27c-.103.096.628 1.511.882 3.625c.039.333.302.508.358.357\\\"/><path d=\\\"M95.21 62.122c-3.301-4.509-7.578-5.974-7.137-4.556c0 0 3.278 1.86 6.16 5.346c.558.675 1.488-.092.977-.79\\\"/><path fill=\\\"#030303\\\" d=\\\"M95.064 61.998c-3.205-4.356-7.392-5.783-6.954-4.423c.005.004 3.196 1.812 6.007 5.189c.543.651 1.443-.093.947-.766\\\"/><path fill=\\\"#070707\\\" d=\\\"M94.919 61.873c-3.107-4.205-7.206-5.592-6.772-4.29c.012.007 3.116 1.765 5.856 5.031c.526.627 1.397-.091.916-.741\\\"/><path fill=\\\"#0B0B0B\\\" d=\\\"M94.774 61.748c-3.011-4.052-7.019-5.4-6.59-4.156c.018.011 3.036 1.717 5.705 4.873c.509.604 1.35-.091.885-.717\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M94.628 61.623c-2.913-3.899-6.832-5.209-6.408-4.023c.023.015 2.955 1.67 5.552 4.715c.495.581 1.306-.09.856-.692\\\"/><path fill=\\\"#131313\\\" d=\\\"M94.482 61.499c-2.816-3.746-6.645-5.018-6.224-3.89c.028.018 2.873 1.623 5.401 4.557c.477.556 1.258-.09.823-.667\\\"/><path fill=\\\"#161616\\\" d=\\\"M94.338 61.373c-2.719-3.593-6.459-4.825-6.042-3.756c.034.022 2.792 1.576 5.248 4.398c.46.534 1.213-.087.794-.642\\\"/><path fill=\\\"#1A1A1A\\\" d=\\\"M94.192 61.249c-2.623-3.441-6.272-4.635-5.86-3.624c.04.025 2.711 1.528 5.096 4.242a.491.491 0 0 0 .764-.618\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M94.047 61.124c-2.527-3.289-6.086-4.443-5.679-3.491c.047.029 2.632 1.481 4.945 4.083c.43.488 1.122-.086.734-.592\\\"/><path fill=\\\"#222\\\" d=\\\"M93.902 60.999c-2.429-3.135-5.9-4.252-5.496-3.357c.051.032 2.551 1.433 4.793 3.925c.412.464 1.076-.086.703-.568\\\"/><path fill=\\\"#262626\\\" d=\\\"M93.756 60.874c-2.332-2.982-5.713-4.061-5.312-3.224c.057.036 2.47 1.386 4.64 3.767c.396.441 1.03-.084.672-.543\\\"/><path fill=\\\"#2A2A2A\\\" d=\\\"M93.611 60.75c-2.235-2.83-5.526-3.87-5.131-3.091c.062.04 2.389 1.339 4.489 3.609c.381.417.985-.084.642-.518\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M93.466 60.625c-2.139-2.678-5.34-3.679-4.949-2.958c.069.043 2.308 1.292 4.337 3.451c.364.394.939-.082.612-.493\\\"/><path fill=\\\"#313131\\\" d=\\\"M93.32 60.5c-2.041-2.524-5.153-3.487-4.766-2.824c.074.046 2.228 1.244 4.185 3.294c.348.369.893-.083.581-.47\\\"/><path fill=\\\"#353535\\\" d=\\\"M93.175 60.375c-1.945-2.372-4.967-3.296-4.584-2.691c.08.05 2.146 1.196 4.034 3.135c.33.347.847-.081.55-.444\\\"/><path fill=\\\"#393939\\\" d=\\\"M93.03 60.25c-1.847-2.219-4.78-3.104-4.402-2.558c.085.054 2.065 1.149 3.881 2.978c.316.324.802-.081.521-.42\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M92.885 60.126c-1.751-2.067-4.594-2.913-4.22-2.425c.091.058 1.985 1.102 3.729 2.819c.299.3.757-.08.491-.394\\\"/><path fill=\\\"#414141\\\" d=\\\"M92.739 60.001c-1.655-1.914-4.407-2.722-4.038-2.292c.098.061 1.904 1.055 3.578 2.662c.283.277.711-.079.46-.37\\\"/><path fill=\\\"#444\\\" d=\\\"M92.593 59.876c-1.557-1.762-4.221-2.53-3.855-2.158c.103.064 1.824 1.007 3.425 2.504c.268.253.666-.079.43-.346\\\"/><path fill=\\\"#484848\\\" d=\\\"M92.449 59.751c-1.461-1.608-4.035-2.339-3.673-2.025c.109.068 1.742.96 3.273 2.346c.251.229.62-.077.4-.321\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M92.303 59.626c-1.363-1.456-3.848-2.147-3.491-1.892c.114.072 1.662.913 3.122 2.188c.235.206.574-.076.369-.296\\\"/><path d=\\\"M97.859 74.559c.047 2.023-1.859 7.183-2.58 6.998c-.814-.187.163-1.697.906-4.254c.302-1.07.535-3.696.628-3.789c.303-.303 1.046.557 1.046 1.045\\\"/><path fill=\\\"#050505\\\" d=\\\"M97.801 74.728c.033 1.964-1.82 6.972-2.518 6.786c-.781-.183.177-1.661.909-4.174c.29-1.026.515-3.534.609-3.632c.295-.299 1.015.493 1 1.02\\\"/><path fill=\\\"#0A0A0A\\\" d=\\\"M97.741 74.897c.021 1.906-1.78 6.761-2.454 6.575c-.75-.18.191-1.626.91-4.095c.279-.981.496-3.372.592-3.474c.286-.297.985.428.952.994\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M97.682 75.065c.006 1.847-1.742 6.549-2.391 6.364c-.719-.178.205-1.591.913-4.015c.265-.938.475-3.211.572-3.317c.279-.294.955.364.906.968\\\"/><path fill=\\\"#141414\\\" d=\\\"M97.622 75.233c-.006 1.788-1.701 6.338-2.328 6.153c-.686-.175.22-1.555.916-3.935c.253-.894.455-3.049.554-3.159c.271-.29.924.298.858.941\\\"/><path fill=\\\"#191919\\\" d=\\\"M97.563 75.401c-.021 1.73-1.661 6.127-2.265 5.942c-.655-.172.233-1.52.918-3.854c.242-.851.436-2.887.535-3.002c.264-.288.894.233.812.914\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M97.503 75.57c-.033 1.672-1.621 5.916-2.202 5.731c-.622-.169.248-1.485.92-3.775c.229-.808.416-2.726.517-2.845c.256-.285.864.169.765.889\\\"/><path fill=\\\"#232323\\\" d=\\\"M97.443 75.738c-.046 1.614-1.582 5.705-2.138 5.52c-.591-.167.262-1.448.921-3.694c.217-.764.397-2.565.499-2.688c.249-.283.835.104.718.862\\\"/><path fill=\\\"#282828\\\" d=\\\"M97.385 75.907c-.06 1.555-1.542 5.493-2.076 5.309c-.559-.164.276-1.413.924-3.614c.205-.721.377-2.403.48-2.53c.241-.281.804.037.672.835\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M97.325 76.075c-.073 1.497-1.502 5.282-2.011 5.097c-.527-.16.288-1.376.925-3.534l.463-2.373c.232-.277.772-.026.623.81\\\"/><path fill=\\\"#333\\\" d=\\\"M97.265 76.243c-.086 1.438-1.463 5.071-1.949 4.888c-.495-.158.303-1.342.928-3.455c.18-.634.337-2.081.443-2.216c.227-.274.744-.091.578.783\\\"/><path fill=\\\"#383838\\\" d=\\\"M97.206 76.412c-.099 1.38-1.422 4.859-1.885 4.676c-.464-.155.317-1.307.929-3.375c.169-.59.318-1.918.426-2.059c.218-.271.713-.155.53.758\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M97.147 76.58c-.113 1.322-1.383 4.648-1.822 4.465c-.432-.152.332-1.271.931-3.295c.157-.546.298-1.756.407-1.9c.211-.269.683-.222.484.73\\\"/><path fill=\\\"#424242\\\" d=\\\"M97.087 76.749c-.125 1.264-1.343 4.437-1.759 4.254c-.399-.15.347-1.235.934-3.216c.145-.501.279-1.594.389-1.743c.202-.266.652-.286.436.705\\\"/><path fill=\\\"#474747\\\" d=\\\"M97.028 76.918c-.14 1.205-1.304 4.225-1.696 4.042c-.369-.146.36-1.199.936-3.135c.132-.458.259-1.433.37-1.586c.195-.263.622-.351.39.679\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M96.968 77.085c-.152 1.147-1.264 4.015-1.633 3.833c-.335-.145.374-1.165.939-3.056c.121-.416.239-1.272.351-1.429c.189-.26.592-.416.343.652\\\"/><path fill=\\\"#515151\\\" d=\\\"M96.91 77.254c-.166 1.088-1.225 3.803-1.57 3.621c-.304-.142.387-1.129.94-2.976c.109-.372.22-1.111.333-1.272c.181-.256.561-.48.297.627\\\"/><path fill=\\\"#565656\\\" d=\\\"M96.849 77.422c-.179 1.03-1.185 3.591-1.507 3.41c-.272-.139.403-1.093.943-2.896c.096-.328.2-.949.315-1.114c.174-.254.531-.545.249.6\\\"/><path fill=\\\"#5B5B5B\\\" d=\\\"M96.791 77.59c-.193.972-1.146 3.381-1.444 3.199c-.24-.136.416-1.058.945-2.816c.083-.284.18-.787.296-.957c.165-.251.5-.61.203.574\\\"/><path fill=\\\"#606060\\\" d=\\\"M96.731 77.759c-.206.913-1.106 3.169-1.38 2.987c-.208-.132.43-1.022.947-2.735c.072-.242.161-.626.278-.8c.157-.248.469-.675.155.548\\\"/><path fill=\\\"#666\\\" d=\\\"M96.672 77.928c-.219.854-1.066 2.958-1.318 2.776c-.176-.129.445-.986.949-2.656c.06-.197.141-.464.261-.642c.149-.246.438-.739.108.522\\\"/><path d=\\\"M90.769 62.378c-.496.523-.938 3.226.303 4.163c1.24.91 3.419-.772 3.419-1.736c-.028-2.179-3.225-2.978-3.722-2.427\\\"/><path fill=\\\"#010101\\\" d=\\\"M90.814 62.424c-.504.52-.929 3.171.277 4.09c1.204.893 3.341-.734 3.353-1.705c-.016-2.123-3.126-2.932-3.63-2.385\\\"/><path fill=\\\"#030303\\\" d=\\\"M90.858 62.469c-.511.517-.92 3.117.25 4.016c1.17.875 3.264-.695 3.286-1.671c-.003-2.068-3.025-2.888-3.536-2.345\\\"/><path fill=\\\"#050505\\\" d=\\\"M90.902 62.515c-.518.513-.911 3.062.224 3.942c1.134.856 3.187-.658 3.22-1.64c.01-2.011-2.925-2.841-3.444-2.302\\\"/><path fill=\\\"#070707\\\" d=\\\"M90.946 62.56c-.525.51-.902 3.008.198 3.87c1.097.839 3.109-.619 3.153-1.607c.023-1.958-2.825-2.798-3.351-2.263\\\"/><path fill=\\\"#090909\\\" d=\\\"M90.991 62.605c-.532.507-.894 2.954.171 3.797c1.061.821 3.032-.582 3.087-1.574c.035-1.903-2.725-2.753-3.258-2.223\\\"/><path fill=\\\"#0B0B0B\\\" d=\\\"M91.035 62.65c-.539.502-.885 2.898.144 3.723c1.026.804 2.954-.543 3.022-1.542c.047-1.846-2.626-2.707-3.166-2.181\\\"/><path fill=\\\"#0D0D0D\\\" d=\\\"M91.078 62.696c-.547.499-.876 2.844.118 3.649c.989.787 2.876-.505 2.955-1.509c.061-1.792-2.525-2.662-3.073-2.14\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M91.123 62.741c-.554.496-.868 2.791.091 3.576c.953.769 2.799-.467 2.889-1.476c.073-1.737-2.425-2.617-2.98-2.1\\\"/><path fill=\\\"#111\\\" d=\\\"M91.167 62.787c-.561.492-.859 2.734.064 3.502c.919.75 2.722-.43 2.823-1.443c.086-1.682-2.325-2.573-2.887-2.059\\\"/><path fill=\\\"#131313\\\" d=\\\"M91.211 62.832c-.568.489-.85 2.681.038 3.429c.881.733 2.644-.392 2.756-1.411c.099-1.627-2.224-2.527-2.794-2.018\\\"/><path fill=\\\"#151515\\\" d=\\\"M91.255 62.877c-.575.486-.841 2.625.012 3.354c.846.716 2.567-.353 2.69-1.377c.111-1.571-2.125-2.482-2.702-1.977\\\"/><path fill=\\\"#161616\\\" d=\\\"M91.3 62.922c-.583.481-.833 2.572-.015 3.281c.81.699 2.489-.314 2.624-1.345c.124-1.515-2.025-2.437-2.609-1.936\\\"/><path fill=\\\"#181818\\\" d=\\\"M91.344 62.968c-.59.479-.824 2.518-.042 3.208c.774.68 2.412-.277 2.558-1.313c.136-1.461-1.924-2.392-2.516-1.895\\\"/><path fill=\\\"#1A1A1A\\\" d=\\\"M91.388 63.013c-.598.475-.815 2.462-.068 3.135c.738.663 2.334-.24 2.492-1.28c.148-1.406-1.825-2.347-2.424-1.855\\\"/><path fill=\\\"#1C1C1C\\\" d=\\\"M91.432 63.058c-.604.471-.807 2.408-.094 3.061c.703.646 2.256-.2 2.425-1.248c.162-1.348-1.725-2.301-2.331-1.813\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M91.477 63.104c-.613.467-.798 2.353-.122 2.987c.667.627 2.18-.163 2.36-1.214c.174-1.295-1.626-2.257-2.238-1.773\\\"/><path fill=\\\"#202020\\\" d=\\\"M91.52 63.149c-.619.464-.789 2.3-.147 2.914c.631.61 2.102-.124 2.293-1.182c.187-1.239-1.525-2.212-2.146-1.732\\\"/><path fill=\\\"#222\\\" d=\\\"M91.564 63.194c-.625.46-.78 2.245-.173 2.841c.595.592 2.025-.086 2.226-1.15c.2-1.184-1.424-2.166-2.053-1.691\\\"/><path fill=\\\"#242424\\\" d=\\\"M91.608 63.24c-.632.457-.771 2.19-.2 2.768c.559.573 1.947-.049 2.16-1.117c.213-1.13-1.324-2.122-1.96-1.651\\\"/><path fill=\\\"#262626\\\" d=\\\"M91.653 63.285c-.641.454-.763 2.136-.228 2.694c.523.557 1.87-.01 2.094-1.084c.226-1.074-1.223-2.077-1.866-1.61\\\"/><path d=\\\"M90.653 84.603c.488.488.907-.721 1.396-1.117c.488-.395 1.278-1.255 2.859-1.255s1.464-.046 1.394-.651c-.046-.581-.511-.535-1.906-.326a4.533 4.533 0 0 0-2.882 1.557c-.535.628-1.14 1.512-.861 1.792\\\"/><path fill=\\\"#050505\\\" d=\\\"M90.761 84.484c.471.468.872-.685 1.357-1.068s1.269-1.205 2.789-1.205c1.521 0 1.426-.042 1.359-.626c-.045-.562-.498-.515-1.856-.316a4.417 4.417 0 0 0-2.812 1.5c-.522.607-1.11 1.445-.837 1.715\\\"/><path fill=\\\"#0A0A0A\\\" d=\\\"M90.869 84.364c.453.449.839-.648 1.319-1.019c.482-.371 1.26-1.155 2.72-1.155c1.46 0 1.386-.036 1.322-.601c-.042-.545-.484-.495-1.805-.307a4.302 4.302 0 0 0-2.743 1.443c-.509.585-1.081 1.38-.813 1.639\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M90.976 84.245c.437.429.805-.611 1.283-.97c.478-.359 1.25-1.105 2.649-1.105c1.4 0 1.347-.03 1.286-.576c-.04-.526-.471-.474-1.755-.298a4.2 4.2 0 0 0-2.673 1.388c-.495.562-1.052 1.311-.79 1.561\\\"/><path fill=\\\"#141414\\\" d=\\\"M91.083 84.127c.42.409.771-.576 1.246-.922c.475-.348 1.24-1.055 2.58-1.056c1.34 0 1.308-.025 1.251-.552c-.039-.508-.458-.453-1.707-.29a4.08 4.08 0 0 0-2.604 1.332c-.48.543-1.021 1.247-.766 1.488\\\"/><path fill=\\\"#191919\\\" d=\\\"M91.19 84.009c.403.387.738-.54 1.209-.875c.47-.335 1.23-1.004 2.51-1.005c1.279-.001 1.269-.02 1.214-.527c-.037-.491-.445-.433-1.655-.28a3.976 3.976 0 0 0-2.534 1.274c-.467.521-.992 1.18-.744 1.413\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M91.298 83.89c.386.368.705-.504 1.171-.826c.467-.323 1.222-.954 2.441-.955c1.218-.001 1.229-.014 1.178-.502c-.034-.472-.431-.412-1.606-.27a3.858 3.858 0 0 0-2.464 1.217c-.454.499-.962 1.114-.72 1.336\\\"/><path fill=\\\"#232323\\\" d=\\\"M91.406 83.771c.37.349.67-.467 1.135-.778c.464-.311 1.211-.903 2.37-.903c1.159-.002 1.189-.009 1.143-.478c-.033-.454-.418-.393-1.556-.263a3.755 3.755 0 0 0-2.394 1.161c-.443.478-.936 1.048-.698 1.261\\\"/><path fill=\\\"#282828\\\" d=\\\"M91.514 83.652c.352.329.637-.431 1.097-.729c.46-.299 1.202-.853 2.3-.854c1.099-.002 1.151-.004 1.106-.454c-.03-.436-.404-.372-1.505-.252a3.638 3.638 0 0 0-2.324 1.104c-.429.457-.906.981-.674 1.185\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M91.62 83.533c.335.308.603-.395 1.06-.681c.457-.286 1.193-.802 2.23-.803c1.039-.002 1.112.002 1.07-.428c-.028-.418-.391-.352-1.455-.244a3.539 3.539 0 0 0-2.254 1.047c-.414.434-.875.915-.651 1.109\\\"/><path fill=\\\"#333\\\" d=\\\"M91.728 83.415c.318.288.568-.358 1.022-.633c.453-.275 1.183-.752 2.161-.754s1.072.007 1.034-.403c-.026-.399-.378-.331-1.406-.234a3.434 3.434 0 0 0-2.184.99c-.401.413-.846.85-.627 1.034\\\"/><path fill=\\\"#383838\\\" d=\\\"M91.836 83.296c.301.268.535-.322.985-.584c.45-.263 1.174-.702 2.092-.704s1.033.013.997-.379c-.024-.38-.364-.31-1.355-.224c-.99.07-1.715.531-2.114.934c-.389.391-.819.782-.605.957\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M91.943 83.177c.284.249.502-.286.949-.536c.446-.25 1.164-.653 2.021-.654c.857-.003.994.018.962-.354c-.022-.363-.351-.29-1.306-.217c-.953.06-1.661.497-2.045.877c-.375.372-.788.719-.581.884\\\"/><path fill=\\\"#424242\\\" d=\\\"M92.051 83.059c.267.229.467-.25.911-.487c.443-.239 1.154-.603 1.951-.604c.797-.002.954.024.926-.329c-.021-.345-.338-.27-1.255-.207c-.918.049-1.606.462-1.975.82c-.362.349-.76.651-.558.807\\\"/><path fill=\\\"#474747\\\" d=\\\"M92.158 82.94c.25.208.434-.213.874-.44c.44-.226 1.145-.551 1.882-.553c.737-.003.915.029.889-.304c-.019-.327-.324-.25-1.206-.198c-.88.039-1.55.429-1.905.764c-.347.327-.729.584-.534.731\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M92.265 82.821c.233.188.4-.178.836-.391c.437-.215 1.136-.501 1.812-.504c.677-.003.876.035.854-.279c-.016-.308-.312-.229-1.155-.188c-.844.028-1.495.395-1.836.707c-.333.305-.7.518-.511.655\\\"/><path fill=\\\"#515151\\\" d=\\\"M92.373 82.702c.215.168.366-.14.799-.343c.433-.201 1.125-.45 1.742-.452c.617-.004.836.039.817-.255c-.015-.29-.298-.208-1.105-.179c-.807.017-1.439.36-1.766.65c-.321.284-.67.452-.487.579\\\"/><path fill=\\\"#565656\\\" d=\\\"M92.481 82.584c.198.148.332-.104.761-.294c.43-.19 1.117-.4 1.672-.403c.556-.003.797.045.782-.23c-.013-.272-.285-.188-1.056-.17c-.771.007-1.384.326-1.695.593c-.308.262-.642.386-.464.504\\\"/><path fill=\\\"#5B5B5B\\\" d=\\\"M92.587 82.465c.183.128.299-.068.726-.247c.425-.178 1.106-.35 1.602-.353c.496-.003.758.05.746-.206c-.01-.253-.271-.168-1.005-.161c-.733-.003-1.329.292-1.625.536c-.297.244-.614.322-.444.431\\\"/><path fill=\\\"#606060\\\" d=\\\"M92.695 82.346c.165.108.266-.033.688-.198c.423-.166 1.097-.3 1.533-.303s.719.057.708-.181c-.008-.234-.257-.146-.955-.152c-.696-.014-1.273.258-1.556.479c-.281.221-.582.256-.418.355\\\"/><path fill=\\\"#666\\\" d=\\\"M92.803 82.228c.147.088.23.003.649-.15c.42-.154 1.088-.249 1.463-.252c.375-.003.68.062.673-.155c-.006-.217-.245-.127-.905-.143c-.66-.024-1.217.224-1.486.423c-.267.197-.554.187-.394.277\\\"/><path d=\\\"M96.953 81.557c0 .744 1.511 1 2.952 1.208c1.418.209 2.558.489 2.626 1.977c.07 1.464-.301 2.51.35 2.395c1.395-.256 1.906-1.768 1.883-2.465c0-.698-1.023-1.953-2.859-2.65c-1.348-.512-2.325-.744-3.511-.791c-1.58-.069-1.441.326-1.441.326\\\"/><path fill=\\\"#030303\\\" d=\\\"M96.994 81.569c.003.723 1.499.959 2.921 1.174c1.405.218 2.503.488 2.619 1.938c.112 1.426-.275 2.427.367 2.321c1.338-.238 1.836-1.679 1.811-2.367c-.005-.694-1.007-1.908-2.82-2.595c-1.333-.504-2.295-.742-3.468-.792c-1.535-.069-1.433.308-1.43.321\\\"/><path fill=\\\"#070707\\\" d=\\\"M97.034 81.582c.008.702 1.487.918 2.891 1.14c1.392.226 2.447.487 2.61 1.901c.153 1.386-.249 2.341.384 2.248c1.281-.222 1.768-1.592 1.738-2.271c-.009-.693-.991-1.864-2.78-2.541c-1.317-.498-2.268-.74-3.425-.793c-1.488-.071-1.424.289-1.418.316\\\"/><path fill=\\\"#0B0B0B\\\" d=\\\"M97.075 81.593c.012.681 1.475.878 2.86 1.107c1.379.235 2.392.487 2.603 1.862c.194 1.348-.222 2.256.402 2.174c1.226-.206 1.698-1.504 1.666-2.173c-.014-.69-.974-1.82-2.74-2.486c-1.302-.491-2.238-.738-3.383-.794c-1.444-.071-1.416.27-1.408.31\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M97.116 81.606c.015.66 1.463.838 2.829 1.073c1.366.244 2.338.486 2.596 1.824c.233 1.309-.197 2.173.419 2.102c1.168-.189 1.627-1.417 1.594-2.078c-.019-.687-.959-1.774-2.702-2.431c-1.287-.485-2.208-.736-3.34-.795c-1.398-.072-1.407.252-1.396.305\\\"/><path fill=\\\"#131313\\\" d=\\\"M97.157 81.619c.019.639 1.451.797 2.798 1.04c1.353.252 2.283.485 2.587 1.786c.276 1.27-.17 2.087.438 2.029c1.112-.173 1.557-1.33 1.521-1.981c-.024-.684-.943-1.73-2.662-2.376c-1.272-.479-2.181-.733-3.298-.797c-1.351-.074-1.399.232-1.384.299\\\"/><path fill=\\\"#161616\\\" d=\\\"M97.197 81.631c.023.618 1.44.757 2.768 1.006c1.34.26 2.229.484 2.58 1.747c.316 1.231-.143 2.002.455 1.956c1.056-.155 1.488-1.242 1.449-1.885c-.028-.682-.927-1.686-2.623-2.322c-1.257-.471-2.151-.731-3.255-.797c-1.307-.073-1.391.215-1.374.295\\\"/><path fill=\\\"#1A1A1A\\\" d=\\\"M97.238 81.644c.027.597 1.428.716 2.736.972c1.328.269 2.174.484 2.573 1.71c.357 1.191-.117 1.918.472 1.882c1-.14 1.419-1.156 1.377-1.788c-.034-.679-.911-1.641-2.583-2.268c-1.243-.465-2.124-.729-3.212-.799c-1.26-.073-1.383.197-1.363.291\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M97.279 81.656c.03.575 1.416.675 2.707.938c1.313.277 2.118.483 2.562 1.671c.399 1.152-.09 1.833.491 1.809c.943-.123 1.349-1.067 1.305-1.691c-.038-.676-.896-1.597-2.544-2.213c-1.227-.458-2.094-.727-3.169-.8c-1.216-.073-1.375.179-1.352.286\\\"/><path fill=\\\"#222\\\" d=\\\"M97.32 81.668c.034.555 1.404.636 2.674.905c1.301.286 2.064.482 2.556 1.633c.44 1.113-.063 1.749.508 1.736c.887-.106 1.279-.98 1.232-1.595c-.043-.674-.879-1.552-2.505-2.158c-1.211-.452-2.064-.726-3.126-.802c-1.169-.073-1.365.161-1.339.281\\\"/><path fill=\\\"#262626\\\" d=\\\"M97.36 81.68c.038.533 1.391.595 2.644.87c1.289.295 2.01.481 2.548 1.596c.482 1.074-.037 1.664.526 1.663c.831-.09 1.209-.893 1.161-1.499c-.048-.671-.863-1.508-2.465-2.104c-1.196-.446-2.037-.723-3.084-.803c-1.124-.073-1.359.144-1.33.277\\\"/><path fill=\\\"#2A2A2A\\\" d=\\\"M97.4 81.692c.042.513 1.38.555 2.614.836c1.275.303 1.955.481 2.54 1.558c.523 1.036-.011 1.58.544 1.59c.773-.074 1.14-.805 1.088-1.402c-.053-.669-.847-1.463-2.426-2.049c-1.18-.439-2.007-.721-3.042-.805c-1.077-.073-1.349.127-1.318.272\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M97.441 81.706c.046.491 1.368.513 2.583.801c1.263.312 1.9.481 2.532 1.52c.564.996.016 1.495.562 1.517c.716-.057 1.07-.718 1.015-1.305c-.057-.666-.83-1.419-2.386-1.995c-1.166-.432-1.978-.718-2.999-.805c-1.032-.075-1.34.107-1.307.267\\\"/><path fill=\\\"#313131\\\" d=\\\"M97.482 81.717c.049.47 1.356.473 2.552.769c1.248.32 1.845.48 2.523 1.482c.605.957.043 1.41.579 1.443c.661-.04 1.001-.63.943-1.208c-.062-.664-.814-1.375-2.346-1.94c-1.151-.425-1.95-.716-2.957-.807c-.985-.074-1.332.089-1.294.261\\\"/><path fill=\\\"#353535\\\" d=\\\"M97.523 81.73c.053.449 1.343.433 2.521.734c1.236.329 1.791.479 2.516 1.444c.647.918.069 1.325.597 1.37c.604-.024.931-.543.871-1.111c-.067-.661-.799-1.331-2.307-1.885c-1.136-.419-1.92-.715-2.914-.809c-.94-.075-1.325.071-1.284.257\\\"/><path fill=\\\"#393939\\\" d=\\\"M97.563 81.742c.057.428 1.333.393 2.491.701c1.222.337 1.735.478 2.509 1.406c.687.879.095 1.241.613 1.297c.548-.007.861-.456.798-1.016c-.072-.658-.783-1.285-2.267-1.83c-1.121-.413-1.892-.713-2.872-.811c-.894-.074-1.315.054-1.272.253\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M97.604 81.754c.061.407 1.32.352 2.459.667c1.21.346 1.682.478 2.501 1.368c.729.84.122 1.155.631 1.223c.492.01.792-.368.727-.918c-.076-.655-.766-1.241-2.229-1.775c-1.104-.406-1.862-.712-2.828-.812c-.848-.075-1.307.035-1.261.247\\\"/><path fill=\\\"#414141\\\" d=\\\"M97.645 81.767c.064.386 1.308.312 2.428.633c1.198.354 1.627.477 2.493 1.331c.769.8.148 1.069.649 1.149c.435.026.722-.28.654-.821c-.081-.653-.75-1.198-2.188-1.722c-1.09-.399-1.834-.708-2.786-.812c-.803-.076-1.299.016-1.25.242\\\"/><path fill=\\\"#444\\\" d=\\\"M97.686 81.78c.068.364 1.296.27 2.397.599c1.185.363 1.572.477 2.485 1.292c.81.761.174.986.667 1.077c.378.043.652-.193.582-.726c-.086-.65-.736-1.151-2.15-1.666c-1.075-.393-1.805-.707-2.744-.814c-.756-.076-1.289-.002-1.237.238\\\"/><path fill=\\\"#484848\\\" d=\\\"M97.725 81.792c.073.344 1.286.231 2.367.565c1.172.372 1.518.476 2.477 1.254c.852.723.202.901.686 1.003c.322.06.582-.106.509-.628c-.091-.648-.719-1.108-2.109-1.611c-1.06-.387-1.776-.705-2.702-.816c-.71-.076-1.281-.02-1.228.233\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M97.766 81.804c.076.323 1.272.189 2.336.531c1.159.381 1.462.475 2.469 1.216c.893.684.228.817.703.931c.265.075.513-.019.437-.532c-.095-.645-.703-1.063-2.07-1.557c-1.045-.38-1.747-.703-2.659-.816c-.665-.078-1.272-.039-1.216.227m4.787 1.557c.531.324.437.665.778.894c.171.114.456.114.286-.323c-.229-.513-.418-.798-1.596-1.273c-.759-.304-.608.018.532.702\\\"/><path fill=\\\"#505050\\\" d=\\\"M102.567 83.366c.518.314.426.648.759.87c.167.111.445.111.278-.315c-.223-.5-.408-.778-1.557-1.242c-.74-.296-.592.019.52.687\\\"/><path fill=\\\"#545454\\\" d=\\\"M102.58 83.369c.506.307.416.631.741.849c.163.108.434.108.271-.308c-.217-.487-.397-.758-1.518-1.21c-.722-.288-.577.019.506.669\\\"/><path fill=\\\"#575757\\\" d=\\\"M102.595 83.373c.493.298.405.616.722.827c.159.105.423.105.263-.299c-.21-.475-.387-.739-1.478-1.179c-.704-.282-.563.017.493.651\\\"/><path fill=\\\"#5B5B5B\\\" d=\\\"M102.61 83.377c.479.292.393.599.701.805c.155.103.411.103.258-.291c-.206-.462-.377-.72-1.439-1.148c-.686-.275-.548.017.48.634\\\"/><path fill=\\\"#5F5F5F\\\" d=\\\"M102.622 83.38c.467.284.384.584.684.784c.15.1.4.1.25-.283c-.201-.45-.367-.701-1.4-1.117c-.666-.266-.533.017.466.616\\\"/><path fill=\\\"#636363\\\" d=\\\"M102.638 83.384c.453.276.372.568.664.762c.146.097.389.097.244-.275c-.195-.438-.356-.681-1.361-1.086c-.649-.259-.52.017.453.599\\\"/><path fill=\\\"#676767\\\" d=\\\"M102.651 83.389c.44.267.362.551.645.739c.142.094.378.094.236-.267c-.188-.425-.346-.661-1.322-1.055c-.628-.252-.503.016.441.583\\\"/><path fill=\\\"#6B6B6B\\\" d=\\\"M102.665 83.393c.428.259.351.534.627.717c.137.091.366.091.229-.259c-.184-.412-.336-.642-1.284-1.023c-.61-.244-.488.015.428.565\\\"/><path fill=\\\"#6E6E6E\\\" d=\\\"M102.68 83.397c.414.251.341.518.606.696c.134.088.356.088.223-.251c-.178-.399-.325-.622-1.245-.992c-.591-.238-.473.013.416.547\\\"/><path fill=\\\"#727272\\\" d=\\\"M102.693 83.4c.401.244.331.501.589.674c.129.085.343.085.215-.244c-.172-.387-.315-.602-1.205-.961c-.573-.229-.459.015.401.531\\\"/><path fill=\\\"#767676\\\" d=\\\"M102.707 83.404c.388.236.319.486.57.653c.125.083.332.083.208-.236c-.167-.375-.305-.583-1.166-.93c-.555-.222-.444.014.388.513\\\"/><path fill=\\\"#7A7A7A\\\" d=\\\"M102.722 83.408c.376.228.308.469.55.63c.121.081.322.081.201-.228c-.161-.362-.295-.563-1.126-.898c-.537-.215-.43.013.375.496\\\"/><path fill=\\\"#7E7E7E\\\" d=\\\"M102.736 83.412c.362.22.297.453.53.608c.117.078.312.078.195-.22c-.155-.35-.285-.543-1.087-.867c-.518-.206-.415.013.362.479\\\"/><path fill=\\\"#828282\\\" d=\\\"M102.75 83.416c.349.212.287.437.512.586c.112.075.299.075.187-.212c-.149-.336-.274-.524-1.048-.835c-.5-.201-.399.012.349.461\\\"/><path fill=\\\"#858585\\\" d=\\\"M102.764 83.42c.336.204.275.419.492.564c.108.072.289.072.181-.204c-.145-.325-.265-.505-1.009-.805c-.481-.192-.384.013.336.445\\\"/><path fill=\\\"#898989\\\" d=\\\"M102.778 83.424c.323.197.266.404.473.543c.104.069.277.069.173-.197c-.139-.311-.254-.485-.97-.773c-.461-.185-.368.011.324.427\\\"/><path fill=\\\"#8D8D8D\\\" d=\\\"M102.792 83.428c.31.189.255.388.454.521c.1.066.265.066.167-.188c-.133-.299-.245-.466-.931-.743c-.443-.177-.354.011.31.41\\\"/><path fill=\\\"#919191\\\" d=\\\"M102.806 83.432c.297.181.245.372.435.5c.096.063.256.063.16-.181c-.127-.286-.233-.446-.892-.711c-.424-.171-.34.01.297.392\\\"/><path fill=\\\"#959595\\\" d=\\\"M102.821 83.435c.283.172.232.356.416.478c.091.061.243.061.152-.173c-.122-.274-.224-.426-.854-.68c-.404-.163-.324.011.286.375\\\"/><path fill=\\\"#999\\\" d=\\\"M102.834 83.439c.271.165.223.339.397.455c.088.058.232.058.146-.164c-.117-.262-.213-.407-.814-.65c-.387-.154-.31.011.271.359\\\"/><path d=\\\"M81.472 36.408c-.239.292.186 2.701 1.748 4.289c1.562 1.562 2.516 1.562 3.151.874c1.217-1.297.237-2.515-.503-3.362c-.743-.847-1.695-.556-2.569-1.403s-1.482-.796-1.827-.398\\\"/><path fill=\\\"#050505\\\" d=\\\"M81.495 36.429c-.236.289.184 2.68 1.733 4.256c1.551 1.55 2.496 1.55 3.126.867c1.208-1.287.236-2.495-.499-3.336s-1.682-.552-2.549-1.392c-.865-.841-1.469-.789-1.811-.395\\\"/><path fill=\\\"#0A0A0A\\\" d=\\\"M81.518 36.451c-.234.286.183 2.659 1.72 4.223c1.538 1.538 2.476 1.538 3.102.86c1.199-1.277.235-2.477-.495-3.311c-.73-.834-1.669-.547-2.529-1.381c-.86-.834-1.459-.782-1.798-.391\\\"/><path fill=\\\"#0F0F0F\\\" d=\\\"M81.54 36.473c-.232.284.182 2.638 1.708 4.189c1.526 1.525 2.456 1.525 3.078.853c1.189-1.267.232-2.457-.492-3.284c-.724-.828-1.654-.543-2.509-1.37c-.853-.828-1.448-.776-1.785-.388\\\"/><path fill=\\\"#141414\\\" d=\\\"M81.563 36.495c-.23.282.18 2.616 1.693 4.155c1.514 1.514 2.437 1.514 3.053.847c1.18-1.257.23-2.438-.488-3.258c-.718-.821-1.642-.539-2.488-1.36c-.846-.821-1.437-.77-1.77-.384\\\"/><path fill=\\\"#191919\\\" d=\\\"M81.586 36.516c-.229.28.179 2.596 1.68 4.123c1.5 1.501 2.418 1.501 3.028.84c1.171-1.247.229-2.418-.484-3.232c-.712-.813-1.628-.534-2.468-1.348c-.84-.815-1.426-.765-1.756-.383\\\"/><path fill=\\\"#1E1E1E\\\" d=\\\"M81.609 36.537c-.228.278.177 2.575 1.666 4.09c1.49 1.489 2.399 1.489 3.004.833c1.162-1.237.228-2.398-.48-3.206c-.706-.808-1.615-.53-2.448-1.338c-.834-.808-1.414-.757-1.742-.379\\\"/><path fill=\\\"#232323\\\" d=\\\"M81.631 36.559c-.225.275.176 2.554 1.652 4.056c1.477 1.477 2.379 1.477 2.98.826c1.151-1.227.226-2.378-.476-3.179c-.701-.801-1.602-.526-2.428-1.327c-.826-.801-1.403-.751-1.728-.376\\\"/><path fill=\\\"#282828\\\" d=\\\"M81.654 36.581c-.223.273.173 2.533 1.64 4.023c1.465 1.464 2.359 1.464 2.955.819c1.142-1.217.223-2.359-.472-3.154c-.696-.794-1.589-.521-2.409-1.315c-.82-.795-1.391-.746-1.714-.373\\\"/><path fill=\\\"#2D2D2D\\\" d=\\\"M81.677 36.602c-.222.271.172 2.512 1.625 3.989c1.453 1.453 2.339 1.453 2.93.812c1.132-1.207.221-2.34-.468-3.127c-.689-.788-1.576-.517-2.388-1.305c-.813-.787-1.379-.738-1.699-.369\\\"/><path fill=\\\"#333\\\" d=\\\"M81.7 36.624c-.221.269.17 2.491 1.612 3.957c1.441 1.44 2.32 1.44 2.906.806c1.123-1.196.22-2.32-.464-3.101c-.685-.781-1.564-.513-2.369-1.294c-.807-.783-1.368-.735-1.685-.368\\\"/><path fill=\\\"#383838\\\" d=\\\"M81.722 36.645c-.218.267.169 2.47 1.599 3.923c1.429 1.429 2.3 1.429 2.881.799c1.115-1.187.219-2.3-.46-3.076c-.678-.774-1.55-.508-2.348-1.283c-.8-.774-1.357-.726-1.672-.363\\\"/><path fill=\\\"#3D3D3D\\\" d=\\\"M81.745 36.667c-.216.264.168 2.449 1.584 3.89c1.417 1.417 2.28 1.417 2.857.792c1.104-1.176.216-2.281-.456-3.048c-.673-.769-1.537-.504-2.33-1.272c-.791-.77-1.343-.722-1.655-.362\\\"/><path fill=\\\"#424242\\\" d=\\\"M81.768 36.689c-.214.262.167 2.428 1.571 3.856c1.405 1.404 2.261 1.404 2.832.785c1.096-1.167.214-2.262-.452-3.023c-.666-.762-1.523-.5-2.308-1.261c-.786-.762-1.334-.715-1.643-.357\\\"/><path fill=\\\"#474747\\\" d=\\\"M81.791 36.71c-.212.26.165 2.407 1.557 3.823c1.393 1.392 2.242 1.392 2.808.778c1.086-1.157.213-2.242-.448-2.997s-1.511-.495-2.29-1.25c-.778-.755-1.321-.708-1.627-.354\\\"/><path fill=\\\"#4C4C4C\\\" d=\\\"M81.814 36.732c-.21.257.164 2.386 1.544 3.789c1.38 1.38 2.221 1.38 2.783.772c1.076-1.146.209-2.222-.445-2.971s-1.497-.491-2.268-1.24c-.773-.747-1.311-.701-1.614-.35\\\"/><path fill=\\\"#515151\\\" d=\\\"M81.836 36.753c-.208.255.163 2.365 1.531 3.756c1.367 1.368 2.203 1.368 2.758.765c1.067-1.136.208-2.202-.44-2.944c-.649-.742-1.484-.487-2.25-1.229c-.764-.742-1.298-.695-1.599-.348\\\"/><path fill=\\\"#565656\\\" d=\\\"M81.859 36.775c-.207.253.161 2.344 1.517 3.723c1.355 1.356 2.184 1.356 2.734.758c1.057-1.126.207-2.183-.436-2.918c-.644-.735-1.472-.482-2.23-1.218c-.758-.735-1.287-.689-1.585-.345\\\"/><path fill=\\\"#5B5B5B\\\" d=\\\"M81.882 36.797c-.206.25.159 2.323 1.503 3.689c1.343 1.343 2.164 1.343 2.71.751c1.047-1.116.205-2.164-.433-2.893s-1.457-.478-2.209-1.207c-.752-.727-1.276-.682-1.571-.34\\\"/><path fill=\\\"#606060\\\" d=\\\"M81.905 36.818c-.204.249.158 2.302 1.489 3.656c1.333 1.331 2.145 1.331 2.686.745c1.038-1.106.203-2.144-.429-2.866c-.632-.723-1.444-.474-2.188-1.196s-1.266-.677-1.558-.339\\\"/><path fill=\\\"#666\\\" d=\\\"M81.927 36.84c-.201.246.157 2.281 1.476 3.623c1.319 1.318 2.125 1.318 2.661.737c1.029-1.096.201-2.124-.425-2.84c-.626-.716-1.431-.47-2.17-1.186c-.737-.714-1.252-.67-1.542-.334\\\"/><g transform=\\\"translate(-3.405 19.001)\\\"><path fill=\\\"#fc0\\\" d=\\\"M57.6 18.004c.639.441.656.519 1.598 1.135c1.498 1.216 4.16 1.49 5.464 1.533c2.98.474 8.31-2.312 10.419-3.587c1.063-.795 3.029-2.438 3.765-2.466c.453.479-.213.579-1.158 1.219c-1.262.897-2.341 1.665-4.253 2.75c-2.046 1.07-5.19 2.839-9.217 2.601c-2.113-.31-2.12-.331-3.424-.997c-.776-.56-2.552-1.488-3.194-2.188\\\"/><linearGradient id=\\\"deviconLinux2\\\" x1=\\\"-257.579\\\" x2=\\\"-240.246\\\" y1=\\\"-130.856\\\" y2=\\\"-130.856\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FAC700\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#F7C400\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F7C400\\\"/></linearGradient><path fill=\\\"url(#deviconLinux2)\\\" d=\\\"M57.585 17.999c.622.411.699.53 1.641 1.147c1.491 1.206 4.105 1.49 5.423 1.538c3.024.469 8.411-2.354 10.447-3.603c1.084-.809 3.017-2.42 3.743-2.455c.441.476-.235.571-1.19 1.231c-1.255.889-2.298 1.636-4.188 2.707c-2.031 1.062-5.191 2.84-9.213 2.616c-2.119-.305-2.212-.345-3.474-.994c-.798-.567-2.543-1.481-3.189-2.187\\\"/><linearGradient id=\\\"deviconLinux3\\\" x1=\\\"-257.591\\\" x2=\\\"-240.258\\\" y1=\\\"-130.857\\\" y2=\\\"-130.857\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F6C200\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#EFBC00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EFBC00\\\"/></linearGradient><path fill=\\\"url(#deviconLinux3)\\\" d=\\\"M57.569 17.992c.605.382.742.542 1.684 1.161c1.483 1.195 4.052 1.491 5.382 1.542c3.067.464 8.513-2.398 10.475-3.619c1.105-.823 3.004-2.403 3.722-2.444c.428.47-.257.563-1.224 1.245c-1.25.879-2.256 1.605-4.124 2.663c-2.016 1.055-5.191 2.84-9.209 2.633c-2.124-.3-2.303-.361-3.522-.992c-.818-.575-2.534-1.474-3.184-2.189\\\"/><linearGradient id=\\\"deviconLinux4\\\" x1=\\\"-257.604\\\" x2=\\\"-240.269\\\" y1=\\\"-130.859\\\" y2=\\\"-130.859\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F1BD00\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#E8B500\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E8B500\\\"/></linearGradient><path fill=\\\"url(#deviconLinux4)\\\" d=\\\"M57.553 17.986c.59.353.786.553 1.729 1.174c1.475 1.183 3.997 1.49 5.341 1.545c3.109.46 8.613-2.441 10.501-3.633c1.128-.838 2.994-2.387 3.702-2.434c.415.466-.279.555-1.256 1.257c-1.244.872-2.215 1.577-4.058 2.622c-2.001 1.046-5.191 2.84-9.206 2.649c-2.132-.296-2.395-.376-3.572-.99c-.841-.582-2.527-1.468-3.181-2.19\\\"/><linearGradient id=\\\"deviconLinux5\\\" x1=\\\"-257.618\\\" x2=\\\"-240.282\\\" y1=\\\"-130.86\\\" y2=\\\"-130.86\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#EDB800\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#E0AD00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E0AD00\\\"/></linearGradient><path fill=\\\"url(#deviconLinux5)\\\" d=\\\"M57.537 17.98c.573.323.83.566 1.772 1.187c1.467 1.172 3.942 1.49 5.301 1.55c3.153.455 8.713-2.484 10.527-3.648c1.148-.852 2.983-2.37 3.679-2.423c.403.46-.299.546-1.288 1.269c-1.238.863-2.173 1.547-3.993 2.579c-1.985 1.039-5.191 2.841-9.202 2.665c-2.138-.292-2.487-.391-3.62-.988c-.861-.59-2.518-1.462-3.176-2.191\\\"/><linearGradient id=\\\"deviconLinux6\\\" x1=\\\"-257.629\\\" x2=\\\"-240.292\\\" y1=\\\"-130.862\\\" y2=\\\"-130.862\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#E9B300\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#D8A500\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#D8A500\\\"/></linearGradient><path fill=\\\"url(#deviconLinux6)\\\" d=\\\"M57.523 17.974c.557.293.872.577 1.815 1.2c1.46 1.162 3.888 1.49 5.26 1.554c3.195.45 8.814-2.527 10.555-3.664c1.169-.866 2.97-2.353 3.658-2.413c.39.456-.321.539-1.321 1.282c-1.231.854-2.13 1.517-3.929 2.536c-1.97 1.031-5.19 2.841-9.198 2.681c-2.144-.287-2.579-.405-3.668-.985c-.884-.597-2.512-1.455-3.172-2.191\\\"/><linearGradient id=\\\"deviconLinux7\\\" x1=\\\"-257.642\\\" x2=\\\"-240.304\\\" y1=\\\"-130.863\\\" y2=\\\"-130.863\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#E4AE00\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#D19E00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#D19E00\\\"/></linearGradient><path fill=\\\"url(#deviconLinux7)\\\" d=\\\"M57.506 17.968c.54.264.916.589 1.859 1.213c1.452 1.15 3.834 1.49 5.219 1.559c3.238.445 8.916-2.571 10.582-3.68c1.191-.88 2.959-2.335 3.638-2.402c.377.451-.342.531-1.354 1.295c-1.225.845-2.088 1.488-3.864 2.493c-1.955 1.023-5.191 2.842-9.195 2.697c-2.15-.282-2.67-.421-3.716-.984c-.906-.604-2.503-1.447-3.169-2.191\\\"/><linearGradient id=\\\"deviconLinux8\\\" x1=\\\"-257.655\\\" x2=\\\"-240.315\\\" y1=\\\"-130.864\\\" y2=\\\"-130.864\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#E0A900\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#C99600\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#C99600\\\"/></linearGradient><path fill=\\\"url(#deviconLinux8)\\\" d=\\\"M57.491 17.962c.523.234.959.601 1.902 1.226c1.445 1.14 3.779 1.49 5.178 1.562c3.281.44 9.017-2.614 10.609-3.696c1.213-.893 2.948-2.317 3.616-2.39c.365.446-.364.522-1.386 1.307c-1.22.837-2.047 1.458-3.799 2.45c-1.939 1.015-5.191 2.843-9.191 2.713c-2.156-.277-2.761-.436-3.766-.981c-.927-.611-2.494-1.44-3.163-2.191\\\"/><linearGradient id=\\\"deviconLinux9\\\" x1=\\\"-257.667\\\" x2=\\\"-240.325\\\" y1=\\\"-130.866\\\" y2=\\\"-130.866\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#DCA400\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#C18E00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#C18E00\\\"/></linearGradient><path fill=\\\"url(#deviconLinux9)\\\" d=\\\"M57.475 17.957c.507.205 1.003.612 1.946 1.239c1.436 1.128 3.724 1.489 5.137 1.566c3.324.436 9.118-2.657 10.636-3.711c1.234-.908 2.936-2.301 3.596-2.38c.352.441-.386.515-1.419 1.32c-1.213.828-2.005 1.429-3.734 2.408c-1.923 1.006-5.191 2.843-9.187 2.729c-2.162-.272-2.853-.451-3.814-.979c-.951-.62-2.488-1.435-3.161-2.192\\\"/><linearGradient id=\\\"deviconLinuxa\\\" x1=\\\"-257.68\\\" x2=\\\"-240.336\\\" y1=\\\"-130.866\\\" y2=\\\"-130.866\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#D79F00\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#BA8700\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#BA8700\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxa)\\\" d=\\\"M57.46 17.95c.491.175 1.047.624 1.989 1.252c1.43 1.117 3.67 1.49 5.097 1.571c3.367.431 9.22-2.7 10.663-3.726c1.257-.922 2.925-2.284 3.574-2.37c.34.437-.407.506-1.451 1.332c-1.208.819-1.962 1.4-3.669 2.365c-1.908.999-5.19 2.843-9.183 2.746c-2.167-.268-2.944-.466-3.863-.977c-.974-.626-2.481-1.427-3.157-2.193\\\"/><linearGradient id=\\\"deviconLinuxb\\\" x1=\\\"-257.693\\\" x2=\\\"-240.346\\\" y1=\\\"-130.867\\\" y2=\\\"-130.867\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#D39B00\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#B27F00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#B27F00\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxb)\\\" d=\\\"M57.443 17.944c.475.146 1.091.636 2.033 1.266c1.422 1.106 3.617 1.489 5.058 1.575c3.409.425 9.32-2.744 10.69-3.742c1.277-.936 2.912-2.267 3.552-2.359c.327.432-.429.499-1.484 1.345c-1.202.811-1.921 1.37-3.605 2.322c-1.892.991-5.19 2.844-9.179 2.761c-2.173-.263-3.037-.48-3.912-.975c-.994-.633-2.472-1.42-3.153-2.193\\\"/><linearGradient id=\\\"deviconLinuxc\\\" x1=\\\"-257.705\\\" x2=\\\"-240.357\\\" y1=\\\"-130.868\\\" y2=\\\"-130.868\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#CF9600\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#a70\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#a70\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxc)\\\" d=\\\"M57.428 17.938c.458.116 1.134.647 2.077 1.278c1.414 1.095 3.562 1.489 5.016 1.579c3.452.421 9.421-2.786 10.717-3.757c1.299-.95 2.901-2.25 3.532-2.349c.314.427-.45.491-1.517 1.357c-1.196.802-1.878 1.34-3.54 2.28c-1.877.982-5.19 2.844-9.175 2.778c-2.18-.259-3.128-.496-3.961-.973c-1.017-.64-2.464-1.412-3.149-2.193\\\"/><linearGradient id=\\\"deviconLinuxd\\\" x1=\\\"-257.718\\\" x2=\\\"-240.367\\\" y1=\\\"-130.869\\\" y2=\\\"-130.869\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#CA9100\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#A37000\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A37000\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxd)\\\" d=\\\"M57.413 17.932c.442.086 1.176.659 2.12 1.291c1.407 1.084 3.507 1.49 4.976 1.583c3.495.416 9.522-2.829 10.744-3.773c1.321-.964 2.889-2.231 3.51-2.337c.302.422-.471.483-1.549 1.371c-1.189.793-1.836 1.311-3.475 2.237c-1.862.974-5.19 2.844-9.171 2.794c-2.186-.255-3.22-.511-4.009-.971c-1.041-.648-2.458-1.407-3.146-2.195\\\"/><linearGradient id=\\\"deviconLinuxe\\\" x1=\\\"-257.731\\\" x2=\\\"-240.377\\\" y1=\\\"-130.869\\\" y2=\\\"-130.869\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#C68C00\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#9B6800\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#9B6800\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxe)\\\" d=\\\"M57.397 17.926c.426.057 1.221.67 2.164 1.305c1.399 1.073 3.454 1.489 4.935 1.587c3.538.412 9.623-2.873 10.772-3.788c1.342-.979 2.877-2.215 3.488-2.327c.289.417-.493.475-1.582 1.383c-1.184.785-1.794 1.281-3.41 2.194c-1.847.966-5.191 2.845-9.168 2.81c-2.194-.25-3.312-.525-4.059-.968c-1.061-.657-2.448-1.401-3.14-2.196\\\"/><linearGradient id=\\\"deviconLinuxf\\\" x1=\\\"-257.744\\\" x2=\\\"-240.387\\\" y1=\\\"-130.87\\\" y2=\\\"-130.87\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#C28700\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#936000\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#936000\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxf)\\\" d=\\\"M57.381 17.92c.409.027 1.263.682 2.207 1.318c1.392 1.062 3.399 1.489 4.894 1.592c3.581.406 9.725-2.916 10.798-3.804c1.364-.992 2.866-2.198 3.468-2.316c.275.413-.516.467-1.615 1.396c-1.177.776-1.752 1.252-3.345 2.151c-1.832.959-5.191 2.846-9.164 2.826c-2.2-.245-3.403-.541-4.106-.966c-1.083-.664-2.441-1.394-3.137-2.197\\\"/><linearGradient id=\\\"deviconLinuxg\\\" x1=\\\"-257.756\\\" x2=\\\"-240.396\\\" y1=\\\"-130.871\\\" y2=\\\"-130.871\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#BD8200\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#8C5900\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#8C5900\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxg)\\\" d=\\\"M57.366 17.914c.393-.002 1.306.694 2.25 1.331c1.384 1.051 3.345 1.489 4.853 1.596c3.624.402 9.826-2.958 10.826-3.819c1.385-1.006 2.855-2.181 3.447-2.306c.262.408-.537.458-1.647 1.408c-1.172.768-1.71 1.222-3.28 2.109c-1.816.95-5.19 2.845-9.16 2.842c-2.204-.241-3.495-.556-4.155-.964c-1.106-.671-2.435-1.386-3.134-2.197\\\"/><linearGradient id=\\\"deviconLinuxh\\\" x1=\\\"-257.769\\\" x2=\\\"-240.406\\\" y1=\\\"-130.871\\\" y2=\\\"-130.871\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B97D00\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#845100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#845100\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxh)\\\" d=\\\"M57.351 17.908c.376-.032 1.349.706 2.293 1.344c1.376 1.04 3.29 1.489 4.812 1.6c3.666.397 9.926-3.002 10.853-3.834c1.406-1.021 2.842-2.163 3.424-2.295c.25.403-.558.451-1.68 1.421c-1.166.759-1.668 1.193-3.215 2.066c-1.8.942-5.19 2.846-9.156 2.858c-2.211-.235-3.586-.571-4.204-.962c-1.126-.679-2.425-1.38-3.127-2.198\\\"/><linearGradient id=\\\"deviconLinuxi\\\" x1=\\\"-257.782\\\" x2=\\\"-240.415\\\" y1=\\\"-130.872\\\" y2=\\\"-130.872\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B57800\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#7C4900\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7C4900\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxi)\\\" d=\\\"M57.335 17.901c.36-.061 1.393.718 2.337 1.357c1.368 1.029 3.235 1.489 4.772 1.604c3.709.392 10.027-3.045 10.879-3.851c1.428-1.034 2.831-2.146 3.404-2.284c.238.398-.58.443-1.712 1.434c-1.16.75-1.626 1.163-3.15 2.023c-1.785.935-5.191 2.847-9.153 2.875c-2.217-.231-3.679-.586-4.253-.959c-1.148-.685-2.417-1.373-3.124-2.199\\\"/><linearGradient id=\\\"deviconLinuxj\\\" x1=\\\"-257.794\\\" x2=\\\"-240.424\\\" y1=\\\"-130.872\\\" y2=\\\"-130.872\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B07300\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#754200\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#754200\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxj)\\\" d=\\\"M57.319 17.896c.343-.091 1.437.729 2.381 1.37c1.361 1.018 3.181 1.489 4.731 1.608c3.752.387 10.128-3.089 10.907-3.866c1.45-1.048 2.819-2.128 3.383-2.273c.225.393-.601.435-1.745 1.446c-1.153.742-1.584 1.134-3.086 1.98c-1.769.926-5.19 2.847-9.149 2.891c-2.223-.227-3.769-.602-4.301-.958c-1.171-.693-2.41-1.365-3.121-2.198\\\"/><linearGradient id=\\\"deviconLinuxk\\\" x1=\\\"-257.807\\\" x2=\\\"-240.433\\\" y1=\\\"-130.872\\\" y2=\\\"-130.872\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#AC6E00\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#6D3A00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#6D3A00\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxk)\\\" d=\\\"M57.303 17.89c.327-.12 1.481.74 2.425 1.383c1.354 1.006 3.126 1.488 4.69 1.612c3.795.382 10.229-3.132 10.934-3.881c1.471-1.062 2.807-2.112 3.361-2.263c.212.389-.623.427-1.777 1.459c-1.149.732-1.542 1.104-3.021 1.938c-1.755.918-5.191 2.847-9.145 2.906c-2.23-.222-3.862-.616-4.351-.956c-1.192-.699-2.401-1.358-3.116-2.198\\\"/><linearGradient id=\\\"deviconLinuxl\\\" x1=\\\"-257.82\\\" x2=\\\"-240.441\\\" y1=\\\"-130.873\\\" y2=\\\"-130.873\\\" gradientTransform=\\\"translate(375.489 179.416)scale(1.234)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#A86A00\\\"/><stop offset=\\\".415\\\" stop-color=\\\"#663200\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#663200\\\"/></linearGradient><path fill=\\\"url(#deviconLinuxl)\\\" d=\\\"M57.288 17.884c.311-.15 1.523.752 2.468 1.396c1.345.996 3.073 1.489 4.649 1.617c3.838.377 10.331-3.175 10.961-3.896c1.493-1.076 2.796-2.095 3.34-2.252c.2.384-.645.419-1.809 1.472c-1.143.724-1.501 1.075-2.957 1.895c-1.738.91-5.19 2.848-9.141 2.922c-2.236-.217-3.953-.631-4.399-.953c-1.215-.709-2.394-1.354-3.112-2.201\\\"/></g>\"\n\t\t},\n\t\t\"liquibase\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff3c00\\\" d=\\\"M64.43 0c4.113.23 7.418.273 10.683.594c7.598.73 15.063 2.332 22.172 5.351c4.11 1.782 8 3.93 10.996 7.453c2.992 3.563 3.172 7.223.356 10.743a21.546 21.546 0 0 1-3.887 3.703c-4.563 3.43-9.79 5.351-15.2 6.906c-9.609 2.695-19.398 3.566-29.323 3.063c-4.872-.231-9.7-1.008-14.48-1.739c-5.454-.824-10.642-2.515-15.602-4.89c-3.352-1.555-6.391-3.477-8.852-6.22c-2.816-3.062-3.484-6.308-1.61-9.554c.985-1.738 2.462-3.293 3.981-4.574c3.621-3.063 7.91-5.027 12.383-6.402C40.023 3.246 44.09 2.285 48.16 1.37c1.61-.367 3.305-.504 4.961-.64C57.187.41 61.211.183 64.43 0m45.644 67.04c.047.64.133 1.097.133 1.554v10.605c0 4.254-1.785 7.637-4.824 10.38c-4.293 3.886-9.434 6.218-14.797 8.003c-6.035 2.012-12.16 3.746-18.281 5.438c-5.766 1.554-11.668 2.835-17.434 4.347c-8.137 2.149-16.226 4.434-23.824 8.227a49.683 49.683 0 0 0-4.293 2.426c-.758.457-1.383.5-2.055-.047c-1.387-1.235-2.949-2.38-4.203-3.75c-3.039-3.383-2.86-7.453-.98-11.246c2.011-4.07 5.539-6.586 9.34-8.688c5.722-3.156 11.89-5.258 18.148-6.86c6.437-1.69 12.918-3.199 19.398-4.847c5.098-1.277 10.192-2.559 15.29-3.793c5.855-1.418 11.663-3.156 17.163-5.668c3.262-1.465 6.305-3.43 9.43-5.168c.403-.23.762-.504 1.164-.73c.133-.047.27-.094.625-.184Zm.137-22.497c0 1.598-.047 3.2 0 4.8c.266 5.259-2.191 9.009-6.172 11.934c-4.512 3.293-9.61 5.348-14.84 6.996c-4.469 1.418-8.984 2.696-13.5 3.887c-5.136 1.324-10.277 2.422-15.418 3.656c-3.355.825-6.75 1.649-10.058 2.516c-3.532.914-7.063 1.875-10.551 2.973c-7.063 2.238-13.945 4.937-19.934 9.507c-.36.278-.851.368-1.254.551c-.086-.457-.265-.914-.265-1.418c-.09-5.898 1.07-11.43 4.336-16.37c2.77-4.204 6.433-7.36 10.593-9.966c5.497-3.43 11.442-5.898 17.61-7.683c5.992-1.735 12.07-3.336 18.105-4.89c6.258-1.645 12.606-3.063 18.864-4.755c6.12-1.648 12.203-3.476 17.699-6.77c1.164-.683 2.234-1.507 3.351-2.238c.317-.23.715-.32 1.075-.457c.132.364.312.73.359 1.141c.043 2.152 0 4.344 0 6.586m-.18 51.941c.09.594.18 1.004.18 1.371v10.516c-.047 3.477-2.012 5.852-4.426 8c-3.129 2.746-6.75 4.527-10.55 6.035c-4.56 1.832-9.297 3.02-14.079 3.844c-6.304 1.05-12.652 1.555-19 1.371c-1.652-.047-3.261-.094-4.914-.23c-6.082-.364-12.07-1.325-17.926-2.926c-1.43-.41-2.863-.914-4.293-1.418v-.457c.942-.457 1.88-.961 2.864-1.371c5.855-2.422 11.843-4.254 17.968-5.762c6.391-1.598 12.782-3.152 19.176-4.8c7.375-1.919 14.75-3.887 21.813-6.813c4.156-1.692 8.18-3.656 11.758-6.492c.355-.32.847-.504 1.43-.868Zm0 0\\\"/>\"\n\t\t},\n\t\t\"liquibase-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#FF3C00\\\" d=\\\"M63.195 23.797c-2.425.101-4.32.367-6.246.863c-1.383.356-2.414.727-3.5 1.266c-2.355 1.16-3.554 2.605-3.273 3.945c.078.379.191.633.437.996c.535.774 1.434 1.477 2.762 2.149c2.219 1.125 4.965 1.804 8.484 2.101c.926.082 4.184.067 5.137-.015c3.367-.309 6.106-1 8.262-2.094c1.808-.914 2.953-2.031 3.176-3.098c.07-.328.07-.496 0-.828c-.364-1.754-3.063-3.496-6.903-4.46c-1.613-.407-3.187-.642-5.082-.774c-.578-.043-2.746-.078-3.254-.051M78.11 34.14c-1.359 1.007-3.007 1.746-5.488 2.464c-.984.29-2.832.754-5.004 1.266c-3.617.856-4.805 1.152-6.34 1.594c-5.722 1.644-8.894 3.672-10.32 6.59c-.555 1.136-.785 2.199-.828 3.832l-.024.843l.317-.253c1.308-1.055 3.297-2.028 5.848-2.872c1.957-.64 3.707-1.09 8.28-2.136c4.927-1.125 7.184-1.746 9.196-2.543c.684-.27 1.828-.836 2.317-1.14c1.273-.806 2.039-1.704 2.324-2.727c.078-.29.082-.368.097-2.434c.004-1.176.008-2.277 0-2.445l-.011-.309Zm.137 9.082c-1.7 1.289-4.121 2.316-7.848 3.34c-1.082.296-2.78.71-5.308 1.28c-3.738.856-4.91 1.15-6.563 1.618c-1.89.543-3.312 1.066-4.59 1.695c-1.183.586-1.91 1.09-2.582 1.782c-.753.785-1.097 1.492-1.203 2.472c-.039.344-.035.442.016.719c.176.863.883 1.726 2.062 2.508l.211.14l.41-.254c.829-.503 2.126-1.117 3.32-1.562c2.083-.781 4.134-1.348 9.618-2.664c4.508-1.082 7.027-1.879 8.996-2.856c1.156-.574 1.89-1.082 2.543-1.77c.57-.589.863-1.093 1.063-1.816c.074-.273.078-.386.093-2.292c.008-.754.008-1.504 0-2.254l-.011-.258Zm-.176 9.066c-1.332 1.008-3.09 1.856-5.523 2.672c-1.652.55-3.41 1.035-6.227 1.715c-2.39.578-4.648 1.14-5.382 1.344c-2.422.656-4.301 1.3-5.54 1.898l-.273.129l.535.176c2.008.652 4.149 1.035 6.707 1.195c.778.05 3.098.05 3.875 0c1.766-.11 3.219-.313 4.7-.645c3.734-.847 6.519-2.394 7.312-4.058c.23-.492.238-.59.23-2.774l-.011-1.957ZM64.457 82.555v10.312h3.613v-.222c0-.125.008-.227.02-.227c.015 0 .25.11.52.242a6.647 6.647 0 0 0 1.726.594c.375.078.527.09 1.328.09c.793-.004.95-.012 1.297-.09c1.426-.309 2.582-.953 3.574-2c2.356-2.465 2.508-6.317.352-8.977a8.912 8.912 0 0 0-1.293-1.226c-2.059-1.492-4.723-1.703-7.012-.559c-.266.133-.492.242-.5.242c-.004 0-.012-1.175-.012-2.617c0-1.691-.02-2.699-.043-2.847a3.685 3.685 0 0 0-.742-1.645c-.656-.824-1.523-1.277-2.61-1.371l-.218-.02Zm7.996.71c1.563.407 2.664 1.895 2.567 3.481a3.43 3.43 0 0 1-2.614 3.145c-.418.101-1.11.109-1.484.02c-1.34-.329-2.332-1.329-2.617-2.653c-.078-.352-.075-1.059.004-1.39c.332-1.395 1.359-2.395 2.746-2.661c.363-.066 1.011-.039 1.398.059Zm-66.93.192v9.41h10.989v-3.625l-3.508-.008l-3.512-.011l-.02-5.953l-.019-5.957l-.082-.297c-.34-1.153-1.055-2.036-2.078-2.555c-.473-.242-1.145-.414-1.586-.414h-.184Zm14.45-9.352c-.606.16-1.16.61-1.442 1.172a2.374 2.374 0 0 0-.12 1.703c.187.567.609 1.06 1.128 1.313c.36.176.61.23 1.04.227a2.11 2.11 0 0 0 1.23-.387c.62-.442.949-1.078.949-1.848c0-.652-.192-1.117-.653-1.582c-.328-.328-.609-.496-1.023-.601c-.277-.07-.836-.067-1.11.003Zm38.62.008c-.402.121-.648.274-.972.594c-.453.453-.656.922-.656 1.559c0 .39.055.64.203.976c.254.54.734.969 1.324 1.172c.348.121.871.145 1.223.059a2.264 2.264 0 0 0 1.68-2.575a2.274 2.274 0 0 0-1.465-1.738c-.332-.12-1.004-.14-1.336-.047Zm43.024 5.625c-.39.04-.949.14-1.265.227c-2.122.562-3.344 1.976-3.344 3.855c0 1.707.844 2.848 2.597 3.504c.493.184 1.051.328 2.235.574c1.23.258 1.539.368 1.808.641c.215.215.282.387.282.707c0 .492-.325.836-.926.996c-.258.067-.973.078-1.262.016c-.695-.145-1.129-.625-1.187-1.313l-.024-.234h-4.015l.02.195c.206 1.75.944 2.871 2.35 3.586c1.813.914 4.868.953 6.677.074c1.613-.777 2.453-2.273 2.28-4.078c-.132-1.441-.878-2.37-2.41-2.992c-.581-.238-1.18-.41-2.386-.676c-1.387-.312-1.676-.41-1.95-.68c-.257-.25-.32-.706-.128-.988c.12-.183.355-.347.613-.437c.34-.11 1.117-.102 1.426.02c.41.16.734.597.734.988c0 .242-.14.226 1.973.226h1.93l-.04-.293a4.386 4.386 0 0 0-.98-2.328c-.258-.312-.793-.723-1.227-.945c-.851-.438-1.707-.63-2.894-.649a13.41 13.41 0 0 0-.887.004m14 .02a6.714 6.714 0 0 0-5.027 3.133c-.485.777-.817 1.738-.942 2.699c-.066.523-.027 1.758.075 2.273c.261 1.297.824 2.403 1.683 3.305c1.047 1.098 2.348 1.746 3.946 1.977c.437.058 1.664.058 2.125-.008c2.605-.352 4.464-1.785 5.246-4.04l.136-.386h-3.683l-.137.207c-.324.492-.965.945-1.543 1.094c-.836.21-1.797.148-2.48-.16c-.715-.329-1.27-.934-1.582-1.727c-.094-.238-.207-.598-.207-.672c0-.016 2.222-.027 4.93-.027h4.929v-.86c0-1.171-.07-1.714-.328-2.523c-.867-2.715-3.297-4.36-6.387-4.324c-.25.004-.59.02-.754.039m1.73 3.152c.864.242 1.485.746 1.864 1.5c.102.207.187.41.187.45c0 .07-.07.07-2.992.07c-2.27 0-2.992-.008-2.992-.043c0-.024.07-.184.148-.348c.442-.898 1.16-1.457 2.149-1.668c.328-.07 1.324-.05 1.637.04Zm-86.242-3.113c-1.171.11-2.3.539-3.32 1.266c-.414.296-1.226 1.124-1.535 1.562c-.332.473-.742 1.277-.914 1.816a6.91 6.91 0 0 0 .914 6.086c.324.461 1.129 1.27 1.586 1.598c.703.5 1.695.93 2.605 1.129c.344.078.493.086 1.329.086c.843 0 .984-.008 1.335-.086a6.777 6.777 0 0 0 1.57-.535l.462-.219l.011 3.008l.012 3.015l.102.375a3.98 3.98 0 0 0 1.297 2.024c.609.496 1.308.77 2.148.844l.234.023V80.055h-3.574v.36c0 .198-.012.358-.02.358a2.289 2.289 0 0 1-.214-.117c-1.125-.672-2.645-.996-4.028-.86Zm1.665 3.484c.628.18 1.082.446 1.523.89c.687.7 1.031 1.575.984 2.536c-.039.871-.351 1.61-.945 2.223a3.361 3.361 0 0 1-2.906 1.011a3.395 3.395 0 0 1-2.153-1.214a3.444 3.444 0 0 1-.53-3.407a3.405 3.405 0 0 1 1.964-1.937a3.388 3.388 0 0 1 2.063-.102m53.503-3.484a6.8 6.8 0 0 0-3.613 1.492a8.27 8.27 0 0 0-1.308 1.434c-1.2 1.77-1.504 3.949-.84 6.004a8 8 0 0 0 .906 1.8c.324.461 1.133 1.27 1.59 1.598c.699.5 1.695.93 2.601 1.129c.344.078.496.086 1.332.086c.836 0 .98-.008 1.336-.086a7.42 7.42 0 0 0 1.754-.625l.465-.242v.48h3.613V80.055h-3.613v.343c0 .192-.012.336-.023.332c-.172-.082-.336-.164-.504-.246a6.681 6.681 0 0 0-3.696-.687m1.497 3.473a3.417 3.417 0 0 1 2.238 1.855c.238.5.312.836.312 1.434c.004.609-.074.957-.332 1.492c-.46.953-1.273 1.597-2.343 1.86c-.356.081-1.036.081-1.418-.005c-1.579-.363-2.672-1.722-2.672-3.332c0-1.316.715-2.465 1.879-3.047a3.338 3.338 0 0 1 2.336-.257m-69.153 3.19v6.407h3.801V80.055h-3.8Zm23.567-1.858c.015 5.03.004 4.796.261 5.62c.395 1.231 1.254 2.196 2.371 2.645a5.265 5.265 0 0 0 2.079.328c1.308-.082 2.382-.605 3.156-1.52l.273-.323l.012.757l.008.758h3.574V80.055h-3.797l-.023 7.918l-.09.265c-.27.797-.684 1.235-1.38 1.442c-.335.101-1.01.093-1.331-.02c-.645-.222-1-.64-1.215-1.422l-.086-.3l-.023-7.883h-3.801Zm15.12 1.859v6.406h3.801V80.055h-3.8Zm0 0\\\"/>\"\n\t\t},\n\t\t\"livewire\": {\n\t\t\t\"body\": \"<defs><path id=\\\"deviconLivewire0\\\" fill=\\\"#fb70a9\\\" d=\\\"M108.566 83.547c-1.937 2.926-3.406 6.527-7.34 6.527c-6.624 0-6.98-10.203-13.609-10.203c-6.625 0-6.265 10.203-12.887 10.203c-6.625 0-6.98-10.203-13.609-10.203c-6.625 0-6.266 10.203-12.887 10.203c-6.625 0-6.98-10.203-13.605-10.203c-6.629 0-6.27 10.203-12.89 10.203c-2.083 0-3.544-1.008-4.778-2.39c-4.738-8.239-7.465-17.895-7.465-28.22c0-30.222 23.367-54.722 52.191-54.722c28.825 0 52.192 24.5 52.192 54.723c0 8.64-1.91 16.816-5.313 24.082m0 0\\\"/></defs><use href=\\\"#deviconLivewire0\\\" fill-rule=\\\"evenodd\\\"/><path fill=\\\"#4e56a6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M40.844 78.145v22.668c0 4.066-3.301 7.363-7.371 7.363a7.365 7.365 0 0 1-7.371-7.364V73.45c1.375-2.523 2.945-4.707 5.78-4.707c4.61 0 6.223 5.79 8.962 9.403Zm27.843 1.183v35.844a8.185 8.185 0 0 1-8.187 8.183c-4.523 0-8.191-3.664-8.191-8.183v-40.57c1.543-2.973 3.132-5.86 6.39-5.86c5.16 0 6.563 7.242 9.989 10.586Zm26.211-.66v26.023c0 4.067-3.3 7.364-7.37 7.364c-4.071 0-7.372-3.297-7.372-7.364V72.707c1.281-2.195 2.809-3.965 5.364-3.965c4.84 0 6.375 6.38 9.378 9.926m0 0\\\"/><path fill-opacity=\\\".298\\\" fill-rule=\\\"evenodd\\\" d=\\\"M40.844 85.094c-1.309-1.602-2.856-2.79-5.094-2.79c-5.316 0-6.293 6.696-9.648 9.712V63.145a7.365 7.365 0 0 1 7.37-7.364c4.071 0 7.372 3.297 7.372 7.364Zm27.843.515c-1.394-1.855-3.023-3.304-5.496-3.304c-5.914 0-6.457 8.285-10.882 10.578v-12.77c0-4.52 3.668-8.183 8.191-8.183a8.185 8.185 0 0 1 8.188 8.183Zm26.211-1.433c-1.136-1.117-2.48-1.871-4.265-1.871c-5.73 0-6.418 7.777-10.477 10.343V66.734a7.371 7.371 0 0 1 14.742 0Zm0 0\\\"/><use href=\\\"#deviconLivewire0\\\" fill-rule=\\\"evenodd\\\"/><path fill=\\\"#e24ca6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M97.273 88.984c13.676-20.332 14.028-42.879 1.059-67.652c9.613 9.844 15.547 23.348 15.547 38.25c0 8.61-1.98 16.75-5.508 23.992c-2.004 2.91-3.531 6.5-7.61 6.5a5.947 5.947 0 0 1-3.488-1.09m0 0\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M58.89 73.117c18.15 0 25.79-10.52 25.79-25.46c0-14.942-11.547-28.692-25.79-28.692c-14.245 0-25.792 13.75-25.792 28.691c0 14.942 7.64 25.461 25.793 25.461Zm0 0\\\"/><path fill=\\\"#030776\\\" fill-rule=\\\"evenodd\\\" d=\\\"M61.625 37.836c0 5.89-4.332 10.668-9.672 10.668c-5.344 0-9.672-4.777-9.672-10.668c0-5.89 4.328-10.668 9.672-10.668c5.34 0 9.672 4.777 9.672 10.668m0 0\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M55.176 35.375c0 2.719-2.164 4.922-4.836 4.922s-4.836-2.203-4.836-4.922s2.164-4.922 4.836-4.922s4.836 2.203 4.836 4.922m0 0\\\"/>\"\n\t\t},\n\t\t\"livewire-wordmark\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconLivewireWordmark0\\\"><path d=\\\"M0 96.48h127V128H0Zm0 0\\\"/></clipPath><path id=\\\"deviconLivewireWordmark1\\\" fill=\\\"#fb70a9\\\" d=\\\"M98.262 63.816c-1.489 2.235-2.617 4.985-5.64 4.985c-5.095 0-5.368-7.793-10.466-7.793c-5.094 0-4.816 7.793-9.91 7.793c-5.09 0-5.363-7.793-10.46-7.793c-5.095 0-4.817 7.793-9.911 7.793c-5.09 0-5.367-7.793-10.46-7.793c-5.095 0-4.817 7.793-9.911 7.793c-1.598 0-2.723-.77-3.672-1.824c-3.645-6.293-5.738-13.672-5.738-21.555c0-23.086 17.965-41.8 40.125-41.8c22.164 0 40.129 18.714 40.129 41.8c0 6.601-1.47 12.844-4.086 18.394m0 0\\\"/></defs><g clip-path=\\\"url(#deviconLivewireWordmark0)\\\"><path fill=\\\"#4e56a6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M91.617 25.219c2.445 5.12 3.977 9.699 4.938 14.761c.457 2.418.64 8.98.316 11.56c-.766 6.179-3.117 12.444-6.734 17.948l-.977 1.485l.805.359c1.262.566 3.219.395 4.375-.375c1.351-.902 3.16-3.602 4.398-6.57c5.387-12.895 3.399-27.371-5.281-38.442c-.676-.86-1.672-2.023-2.215-2.578l-.992-1.012zm-38.422 1.09c-1.383.265-2.886 1.09-3.89 2.12c-3.075 3.169-2.805 8.66.57 11.473c2.008 1.672 5.063 2.133 7.402 1.118c4.141-1.801 5.774-7.024 3.477-11.122c-1.484-2.644-4.664-4.156-7.559-3.59m2.258 3c1.668 1.278 1.938 3.579.59 5.036c-2.02 2.183-5.477 1.453-6.36-1.344c-.984-3.121 3.106-5.734 5.77-3.691M39.895 64.53c-1.067.356-2.075 1.332-3.547 3.43l-1.606 2.293l.07 5.422c.063 5.11.094 5.472.528 6.238c1.086 1.902 2.707 2.824 4.98 2.832c1.38.004 1.758-.082 2.742-.598c1.2-.644 2.11-1.683 2.555-2.925c.168-.465.25-2.848.25-7.41v-6.727l-1.062-1.055c-.586-.578-1.399-1.183-1.809-1.347c-.723-.286-2.457-.371-3.101-.153m20.058.074c-1.125.45-1.96 1.29-3.52 3.543l-1.62 2.34l.058 10.575l.063 10.574l.578 1.043c1.582 2.847 5.183 3.937 8.23 2.492c1.387-.66 2.117-1.344 2.883-2.703c.465-.824.469-.926.531-12.293l.059-11.461l-1.168-1.52c-1.527-1.984-2.59-2.668-4.285-2.742c-.707-.035-1.52.035-1.809.152m19.922.168c-.922.399-1.883 1.41-3.145 3.309l-.773 1.16l.129 7.246c.094 5.282.207 7.426.41 7.907a5.17 5.17 0 0 0 2.43 2.558c2.273 1.176 4.824.84 6.629-.875c1.648-1.566 1.699-1.875 1.699-10.36v-7.234l-.934-1.187c-.511-.652-1.207-1.43-1.547-1.73a4.678 4.678 0 0 0-4.898-.794m9.086 34.614c-1.32.625-1.844 2.3-1.188 3.8c.887 2.012 4.473 2.012 5.36 0c1.172-2.667-1.477-5.082-4.172-3.8m2.93.773c1.07.664 1.156 2.375.164 3.317c-.442.418-.75.515-1.625.515c-.95 0-1.153-.078-1.7-.66c-1.867-1.984.79-4.648 3.16-3.172m-81.35.774c-.606.574-.727.836-.724 1.57c.004 1.164.375 1.816 1.282 2.262c1.586.777 3.656-.059 3.96-1.606c.329-1.66-.855-2.91-2.757-2.914c-.895 0-1.137.094-1.762.688m-8.664.03c-.363.188-.664.583-.813 1.06c-.16.515-.21 4.382-.167 12.234l.066 11.48l.512.52c.668.672 1.66.844 2.636.457c1.38-.547 1.332-.059 1.332-13.063v-11.82l-.699-.59c-.789-.672-1.894-.777-2.867-.277m115.293 6.578c-3.262.453-6.102 3.187-6.98 6.727c-.41 1.66-.41 4.812.003 6.343c.696 2.563 2.395 4.707 4.567 5.758c1.351.656 3.726 1.07 5.242.918c2.504-.25 5.043-1.164 6.035-2.18c1.23-1.25.633-3.796-.894-3.796c-.282 0-1.215.32-2.079.707c-2.62 1.18-4.613 1.277-6.273.3c-.762-.445-1.535-1.746-1.734-2.914l-.125-.726h5.117c3.152 0 5.375-.086 5.785-.22c.988-.327 1.25-1.32.93-3.57c-.426-3.019-2.086-5.574-4.328-6.652c-.856-.414-3.266-.949-3.926-.875c-.117.012-.723.094-1.34.18m-60.758.379c-.797.46-1.254 1.418-1.097 2.305c.062.359 1.468 4.027 3.128 8.152c2.641 6.555 3.114 7.578 3.778 8.176c.707.632.843.675 1.847.582c1.649-.149 1.91-.547 4.075-6.23c1.039-2.727 1.953-5.028 2.027-5.106c.074-.082 1.039 2.152 2.144 4.965c2.313 5.879 2.68 6.425 4.333 6.425c1.054 0 1.886-.484 2.375-1.386c.707-1.305 6.312-15.45 6.312-15.93c0-1.719-2.184-2.95-3.582-2.02c-.7.465-1.07 1.293-3.023 6.723c-.973 2.703-1.829 4.914-1.903 4.914c-.07-.004-1.043-2.394-2.156-5.32c-2.313-6.063-2.68-6.633-4.27-6.633c-1.59 0-1.957.57-4.257 6.633c-1.11 2.926-2.07 5.32-2.133 5.32c-.063-.004-.922-2.215-1.91-4.914c-1.993-5.46-2.356-6.262-3.047-6.723c-.645-.425-1.84-.398-2.64.067m32.597-.067c-1.094.727-1.113.891-1.113 9.508c0 8.621.02 8.782 1.113 9.512c.265.176.914.316 1.488.316c.82 0 1.152-.117 1.715-.593l.695-.59v-17.285l-.695-.594c-.563-.477-.895-.59-1.715-.59c-.574 0-1.223.137-1.488.316m9.363-.035c-1.062.563-1.074.664-1.082 9.485c-.008 5.976.063 8.39.246 8.777c.692 1.438 3.633 1.465 4.485.043c.19-.324.3-2.012.378-5.824c.118-5.883.165-6.094 1.485-7.153c.594-.472 1.289-.671 3.722-1.05c1.266-.2 2.047-1.051 2.047-2.227c0-1.73-.617-2.316-2.453-2.324c-1.547-.008-3.547.8-4.426 1.793l-.566.64l-.23-.804c-.297-1.059-1.09-1.64-2.22-1.63c-.484.005-1.105.13-1.386.274m-39.574.618c.305.203 1.125 2.16 2.75 6.585c1.277 3.461 2.383 6.29 2.46 6.29c.079 0 1.18-2.739 2.45-6.086c1.91-5.043 2.414-6.172 2.926-6.582c.805-.641 1.289-.63 2.074.058c.516.453 1.059 1.684 2.902 6.535c1.25 3.285 2.336 6.04 2.414 6.121c.075.079 1.09-2.476 2.25-5.675c2.344-6.442 2.704-7.25 3.301-7.43c.992-.297 2.367.617 2.367 1.578c0 .398-5.699 14.652-6.3 15.754c-.54.988-1.954 1.227-2.95.496c-.238-.172-1.402-2.793-2.812-6.328c-2.293-5.738-2.426-6.004-2.656-5.43a672.581 672.581 0 0 0-2.258 5.875c-1.625 4.254-2.137 5.375-2.653 5.824c-.75.653-1.347.7-2.242.184c-.582-.34-.96-1.152-3.789-8.164c-1.726-4.285-3.136-8-3.136-8.254c0-.629 1.171-1.64 1.894-1.64c.313 0 .766.128 1.008.288m32.582-.066c.285.125.629.45.758.719c.16.336.234 3.004.234 8.273c0 5.27-.074 7.942-.234 8.274c-.508 1.058-2.043 1.242-2.98.351l-.626-.59v-7.906c0-5.383.078-8.066.239-8.402c.406-.844 1.574-1.164 2.609-.719m9.187.008c.61.262.98 1.101.98 2.207c0 .863.528 1.258.759.566c.222-.66 1.59-1.984 2.52-2.433c.468-.23 1.398-.461 2.066-.52c1.043-.09 1.28-.043 1.668.328c.496.47.613 1.594.238 2.258c-.227.406-1.094.676-2.879.903c-1.508.195-2.75.94-3.457 2.085l-.594.957l-.105 5.266c-.114 5.461-.192 5.938-1.059 6.379c-.625.316-1.617.246-2.129-.148c-.254-.196-.55-.72-.66-1.165c-.273-1.128-.262-14.593.016-15.542c.355-1.215 1.41-1.672 2.636-1.141m20.91.187c2.41.856 4.165 3.266 4.641 6.383c.297 1.926.149 2.66-.59 2.93c-.297.105-2.968.195-5.933.195h-5.395l.184 1.133c.347 2.094 1.074 3.227 2.523 3.926c1.778.86 3.79.703 6.461-.5c2.063-.93 2.711-.715 2.711.887c0 1.492-3.57 3.085-6.902 3.082c-3.227-.004-5.688-1.25-7.207-3.657c-1.098-1.734-1.27-2.347-1.399-4.972c-.148-3.051.453-5.188 2.008-7.13c1.89-2.359 5.832-3.37 8.899-2.277m-110.22.09c-.32.168-.679.485-.796.696c-.293.515-.3 15.793-.008 16.515c.266.672 1.524 1.195 2.453 1.031c.375-.066.91-.355 1.192-.64l.515-.52l.063-7.972l.058-7.977l-.593-.633c-.72-.761-1.98-.984-2.883-.5m7.597-.117c-.656.266-1.363 1.203-1.363 1.813c0 .605 6.84 15.277 7.39 15.855c.2.207.716.48 1.15.602c.652.183.925.164 1.573-.133c.957-.43.829-.192 5.02-9.168c3.48-7.453 3.527-7.606 2.488-8.535c-.273-.239-.828-.489-1.242-.551c-1.363-.211-1.766.379-4.566 6.77c-1.532 3.492-2.575 5.62-2.668 5.456c-.086-.148-1.274-2.77-2.633-5.828c-1.36-3.058-2.645-5.722-2.852-5.922c-.445-.425-1.66-.617-2.297-.359m24.512.106c-2.21.656-3.93 2.113-4.98 4.218c-.867 1.742-1.121 3.153-1 5.512c.117 2.242.508 3.555 1.5 5.04c2.406 3.608 8.172 4.644 12.808 2.304c1.754-.887 2.383-2.32 1.477-3.38c-.535-.624-1-.589-3.063.255c-2.207.898-3.406 1.082-4.875.75c-1.898-.434-3.101-1.817-3.355-3.867l-.125-1h11.355l.356-.512c.285-.414.328-.805.226-1.977c-.328-3.672-2.367-6.468-5.355-7.332c-1.277-.37-3.742-.375-4.969-.011m73.645 2.453c-1.48.734-2.32 1.949-2.625 3.816l-.188 1.133h8.91l-.132-1.063c-.204-1.625-1.098-3.199-2.125-3.746c-1.028-.547-2.88-.613-3.84-.14m3.699.832c.652.449 1.469 1.906 1.57 2.8l.067.61l-3.707.055l-3.704.054l.149-.765c.394-2.059 2.059-3.395 4.023-3.235c.567.047 1.286.262 1.602.48m-72.559.227c.778.528 1.465 1.813 1.618 3.031l.109.86h-8.066l.003-.555c0-.73.871-2.465 1.516-3.027c.781-.684 1.457-.875 2.863-.813c.922.04 1.48.184 1.957.504\\\"/></g><use href=\\\"#deviconLivewireWordmark1\\\" fill-rule=\\\"evenodd\\\"/><path fill=\\\"#4e56a6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M46.195 59.688v17.316c0 3.105-2.535 5.625-5.664 5.625c-3.133 0-5.668-2.52-5.668-5.625V56.102c1.055-1.926 2.266-3.598 4.446-3.598c3.543 0 4.785 4.426 6.886 7.184m21.41.902v27.379c0 3.453-2.816 6.25-6.296 6.25c-3.477 0-6.297-2.797-6.297-6.25V56.984c1.187-2.27 2.41-4.48 4.914-4.48c3.969 0 5.047 5.535 7.68 8.086Zm20.153-.5v19.875c0 3.105-2.54 5.625-5.668 5.625c-3.13 0-5.668-2.52-5.668-5.625v-24.43c.988-1.676 2.16-3.031 4.125-3.031c3.723 0 4.902 4.875 7.21 7.586Zm0 0\\\"/><path fill-opacity=\\\".298\\\" fill-rule=\\\"evenodd\\\" d=\\\"M46.195 64.996c-1.004-1.223-2.195-2.129-3.914-2.129c-4.086 0-4.836 5.113-7.418 7.418V48.23c0-3.105 2.535-5.625 5.664-5.625c3.133 0 5.668 2.52 5.668 5.625Zm21.41.395c-1.07-1.418-2.324-2.524-4.226-2.524c-4.547 0-4.965 6.328-8.367 8.078v-9.754c0-3.453 2.82-6.25 6.297-6.25c3.48 0 6.296 2.797 6.296 6.25Zm20.153-1.094c-.875-.856-1.906-1.43-3.281-1.43c-4.403 0-4.934 5.938-8.055 7.899V50.973c0-3.106 2.539-5.625 5.668-5.625s5.668 2.52 5.668 5.625Zm0 0\\\"/><use href=\\\"#deviconLivewireWordmark1\\\" fill-rule=\\\"evenodd\\\"/><path fill=\\\"#e24ca6\\\" fill-rule=\\\"evenodd\\\" d=\\\"M89.578 67.969c10.516-15.528 10.79-32.754.817-51.672c7.39 7.515 11.953 17.832 11.953 29.21a41.526 41.526 0 0 1-4.235 18.329c-1.543 2.223-2.715 4.965-5.847 4.965a4.624 4.624 0 0 1-2.688-.832m0 0\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M60.07 55.848c13.953 0 19.828-8.035 19.828-19.446c0-11.414-8.878-21.918-19.828-21.918c-10.953 0-19.832 10.504-19.832 21.918c0 11.41 5.875 19.446 19.832 19.446m0 0\\\"/><path fill=\\\"#030776\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.176 28.898c0 4.5-3.332 8.145-7.438 8.145c-4.105 0-7.437-3.645-7.437-8.145s3.332-8.148 7.437-8.148c4.106 0 7.438 3.648 7.438 8.148m0 0\\\"/><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M57.215 27.02c0 2.074-1.664 3.757-3.715 3.757c-2.055 0-3.719-1.683-3.719-3.757c0-2.079 1.664-3.762 3.719-3.762c2.05 0 3.715 1.683 3.715 3.762m0 0\\\"/>\"\n\t\t},\n\t\t\"llvm\": {\n\t\t\t\"body\": \"<path fill=\\\"#fefefe\\\" d=\\\"M82.625 103.785c-1.48-.203-3.551-.723-5.164-1.301a22.87 22.87 0 0 1-1.992-.875c-3.031-1.496-4.984-3.203-8.324-7.281c-.609-.746-1.066-1.254-1.141-1.266s-.531.18-1.027.418c-1.711.824-5.727 2.488-7.871 3.262c-6.113 2.203-10.492 3.074-14.324 2.848c-2.918-.172-5.246-.676-6.93-1.5c-1.246-.609-2-1.258-2.605-2.242c-.375-.609-.684-1.402-.582-1.5c.074-.074.168-.016 1.047.668c.754.59 1.383.973 1.969 1.207c.91.363 2.332.688 3.906.887c.883.109 3.887.109 4.637-.004c2.254-.336 6.117-1.441 8.777-2.512c1.09-.441 4.414-2.039 7.375-3.547c2.387-1.219 3.113-1.617 3.383-1.859c.191-.168.191-.176.117-.457c-.043-.16-.367-1.023-.727-1.922a146.046 146.046 0 0 1-2.324-6.391c-1.023-3.008-1.309-3.734-1.465-3.734c-.172 0-.734.738-2.133 2.797c-1.051 1.543-1.227 1.746-1.543 1.746c-.324 0-.758-.184-1.355-.574c-.859-.559-1.625-1.234-3.234-2.859c-.973-.98-1.578-1.547-1.656-1.547c-.359 0-.582.699-.625 1.945c-.027.836.008 1.199.145 1.563c.023.063.008.102-.039.102c-.141 0-.852-.5-1.109-.777c-.324-.352-.73-1.215-.91-1.934c-.078-.316-.16-.609-.184-.645c-.086-.141-.281-.055-.551.246c-.52.574-.852 1.66-.852 2.766c0 .688-.047.73-.41.367c-.508-.508-.965-1.457-1.09-2.27c-.191-1.215-.27-1.309-.687-.855c-.387.418-.789 1.285-.902 1.949c-.051.309-.117.586-.148.617c-.062.066-.402-.391-.594-.801c-.5-1.074-.445-2.586.141-3.727c.496-.973.57-1.148.699-1.625c.32-1.18.895-1.785 2.117-2.23c.293-.105.547-.129 1.645-.152c1.992-.047 3.23.109 4.012.508c.363.184 1.055.898 2.371 2.453c1.402 1.66 1.738 2.012 1.898 1.988c.152-.02.621-.777.914-1.48c.168-.395.207-.59.25-1.246c.031-.426.098-.93.152-1.117c.266-.914.906-1.676 1.914-2.27l.602-.355l-.027-.227a18.65 18.65 0 0 1-.066-.75c-.051-.75-.141-1.109-.309-1.242c-.109-.086-.348-.133-.973-.187a19.47 19.47 0 0 1-3.414-.676c-1.93-.582-5.559-2.359-10.211-5c-3.344-1.898-4.945-2.59-6.902-2.984c-1.305-.266-2.648-.328-3.559-.164c-.922.164-2.328.836-2.895 1.383c-.359.348-.445.539-.57 1.266c-.109.652-.203.813-.203.359c0-.145-.027-.445-.062-.668c-.055-.363-.09-.43-.324-.645c-.402-.367-1.285-.766-1.941-.879c-.719-.125-2.703-.129-3.273-.008c-1.656.355-4.082 2.102-5.82 4.195c-.582.695-.641.793-.68 1.09c-.117.902-.242 1.598-.293 1.598c-.027 0-.055-.387-.055-.859c0-1 .055-.902-.809-1.461c-2.102-1.355-4.074-1.59-5.789-.691c-2.684 1.406-4.75 5.344-6.223 11.855c-.633 2.805-.652 4.008-.09 6.465l.246 1.047c.016.043.004.078-.02.078c-.105 0-.754-1.965-1.293-3.922C1.66 74.691.719 69.727.348 66.164c-.25-2.371-.285-7.445-.07-9.336c.352-3.094.676-4.531 1.719-7.672c1.184-3.574 2.297-5.937 4.027-8.574c2.074-3.164 4.801-6.199 7.898-8.789a61.3 61.3 0 0 1 1.988-1.547c.723-.543 1.348-1.031 1.387-1.082s.07-.156.059-.234c-.02-.125-.07-.148-.426-.195c-.422-.051-3.945-.008-4.996.063c-.402.027-.605.02-.605-.023c0-.082.145-.109 1.398-.266c1.656-.203 2.512-.254 4.918-.293c3.125-.047 5.746.094 7.875.426c1.328.207 1.742.215 2.148.051c.281-.113.402-.129.699-.094c.387.051 3.801.895 6.238 1.551c1.813.484 2.707.688 2.836.637c.219-.082.051-.543-.512-1.426c-.648-1.016-1.199-1.652-2.941-3.418c-.699-.711-1.25-1.312-1.223-1.34c.059-.059 1.121.5 1.84.965c1.574 1.016 2.914 2.395 3.707 3.813c.652 1.16.797 1.391 1.184 1.848c.602.727.734 1.289.441 1.918c-.145.309-.254.422-.895.906c-.281.211-.371.34-.637.883c-.777 1.609-2.16 6.383-3.047 10.512c-.176.809-.316 1.52-.316 1.578s.113.234.258.395c.332.375.785 1.309.859 1.773c.035.203.09.402.129.449s.215.113.391.152c.512.109 7.863 1.309 8.035 1.309c.125 0 .195-.074.379-.398c.121-.219.262-.434.309-.473s1.047-.191 2.223-.344c2.867-.371 5.738-.816 9.266-1.437c1.664-.297 1.988-.336 2.16-.277c.16.059.234.055.402-.031c.238-.121 3.094-2.977 4.594-4.594c1.215-1.312 1.625-1.84 2.043-2.645c.625-1.211.848-2.105.805-3.273c-.031-.937-.172-1.348-.609-1.785c-.418-.422-.598-.461-2.082-.457c-1.391.004-2.047.082-3.531.43c-1.285.301-1.406.363-1.762.898c-.344.527-.59.746-1.285 1.152c-.812.477-1.316.883-2.473 1.977c-1.277 1.211-1.875 1.715-2.227 1.867c-.25.113-.266.113-.652-.008c-.457-.145-.801-.336-.801-.453c0-.105.258-.344.996-.93c1.027-.816 1.875-1.746 2.336-2.57c.34-.613.465-1.07.465-1.715c0-.52-.012-.574-.16-.723c-.141-.141-.187-.152-.445-.117c-.387.059-1.281.387-1.477.543c-.215.168-.199.316.066.609c.121.137.215.273.203.305s-.219.004-.457-.059c-.602-.16-1.09-.156-1.301.008c-.09.07-.164.184-.164.246s.141.301.313.523s.313.426.313.445c0 .086-.582-.039-1.035-.223c-.715-.285-1.02-.242-1.02.141c0 .238.086.398.387.707c.156.164.223.273.176.301c-.09.059-.66-.113-1.34-.402c-.309-.133-.754-.273-.988-.309s-.512-.113-.613-.164c-.32-.164-.711-.609-.93-1.059c-.187-.387-.207-.48-.207-.977c0-.523.008-.559.168-.695c.098-.086.32-.176.527-.215c1.461-.273 2.098-.543 2.723-1.145c.227-.219.418-.461.445-.562s.008-.371-.039-.602c-.109-.582-.051-1.094.168-1.504c.922-1.727 5.48-4.035 9.613-4.871c.773-.156 1.609-.211 1.609-.105c0 .031-.227.203-.508.387c-1.492.969-3.535 3.113-3.535 3.711c0 .137.035.223.102.25c.219.082 2.469-.461 3.109-.754c.18-.082.543-.359.84-.637c.809-.762 1.371-1.105 2.328-1.414c1.219-.395 3.473-.633 3.297-.348c-.02.031-.406.238-.859.453c-1.352.645-2.098 1.113-2.098 1.32c0 .156.191.211 1.063.301c1.969.203 2 .203 2.891-.09c.855-.277 1.469-.367 2.559-.367c.816-.004 1.77.066 1.77.125c0 .051-.434.223-1.543.609c-.879.309-1.023.398-1 .621c.016.129.172.277.707.68a8.24 8.24 0 0 0 2.195 1.223c1.129.434 2.469 1.215 2.328 1.355c-.039.043-.316.031-.832-.039a8.54 8.54 0 0 0-1.141-.086l-.375.02l-.02.262c-.008.145.039.492.105.777s.141.66.164.828s.055.395.074.496c.023.125.352.504 1.086 1.258c.914.941 1.172 1.266 1.008 1.266c-.023 0-.387-.109-.805-.246c-.836-.273-.969-.293-1.078-.164c-.082.102-.211.801-.32 1.762l-.078.695l.344.578c.395.668.609 1.078.609 1.172c0 .117-.121.066-.547-.219c-.461-.309-.539-.328-.625-.168c-.082.148-1.094 3.766-1.32 4.711c-.219.918-.227 1.066-.059 1.152c.426.23 6.484 1.313 10.082 1.805l2.086.289c.832.113 1.098.227 1.164.504a.724.724 0 0 0 .223.332c.152.125.219.133.73.102c.566-.031 4.191-.594 4.961-.766c.68-.152.777-.254 1.047-1.062c.266-.797.379-1 .773-1.387c.152-.152.281-.316.281-.363c0-.164-.93-4.187-1.305-5.645a68.772 68.772 0 0 0-1.359-4.637c-.687-2.02-.871-2.332-1.805-3.102c-.414-.34-.594-.68-.598-1.133c-.008-.477.168-.883.578-1.336c.195-.215.531-.711.754-1.117c1.188-2.141 2.359-3.422 4.195-4.578c.742-.465 1.828-1.031 1.883-.977c.02.02-.281.34-.668.707c-.914.871-1.789 1.777-2.375 2.465c-.953 1.113-1.805 2.465-1.773 2.816c.027.344.211.316 3.293-.504c2.484-.66 5.074-1.301 5.664-1.402c.426-.07.477-.066.762.059c.383.172.797.172 1.832.012c2.117-.328 4.672-.5 7.488-.5c2.637 0 5.074.16 6.68.441c.645.109.508.207-.234.16c-1.207-.074-4.309-.121-4.855-.074c-.395.031-.559.07-.586.137c-.055.145.348.516 1.57 1.441c4.609 3.5 7.984 7.176 10.637 11.582c1.563 2.598 2.676 5.32 3.863 9.434c.547 1.895.82 3.367 1.07 5.758c.137 1.309.16 6.234.035 7.688c-.359 4.141-.984 7.84-2.043 12.074c-.684 2.734-1.691 5.914-1.703 5.375c0-.059.195-.961.438-2.008l.438-1.902l-.223-1.262c-.547-3.086-1.375-6.18-2.254-8.418c-1.215-3.082-3.094-5.434-4.902-6.137c-.637-.246-1.184-.324-2.02-.289c-.844.035-1.324.176-2.402.699c-.828.402-1.418.777-1.559.992c-.082.125-.113.359-.141 1c-.016.465-.051.84-.078.84s-.066-.145-.09-.324c-.098-.777-.297-1.59-.449-1.852c-.34-.582-2.469-2.629-3.512-3.375c-.668-.477-2.113-1.195-2.664-1.32c-.523-.121-2.855-.141-3.379-.031c-.418.09-1.484.555-1.773.777s-.434.57-.484 1.191c-.023.285-.066.516-.098.516s-.07-.133-.094-.297c-.117-.863-.215-1.125-.535-1.477c-.617-.676-1.613-1.191-2.789-1.441c-.734-.156-2.539-.156-3.332 0c-2.109.414-4.043 1.223-7.094 2.965c-2.074 1.184-4.062 2.266-5.418 2.945c-1.664.828-3.812 1.801-4.496 2.027a17.58 17.58 0 0 1-4.211.84c-.949.078-1.066.098-1.164.219c-.137.168-.203.66-.207 1.5l-.004.652l.594.047c1.215.09 2.051.395 2.676.965c.668.613.984 1.391 1.113 2.711c.078.813.223 1.27.641 2.035c.289.535.461.75.609.75c.105 0 .676-.625 1.988-2.18c1.375-1.625 1.832-2.094 2.262-2.297c.781-.367 1.766-.504 3.586-.504c1.781 0 2.527.199 3.258.867c.438.402.691.848.887 1.559c.102.371.277.789.469 1.121c.477.832.633 1.379.668 2.305c.023.598.008.867-.07 1.18c-.129.496-.348.984-.574 1.281c-.16.211-.18.219-.254.113a.564.564 0 0 1-.082-.277c0-.262-.238-.98-.477-1.437c-.555-1.059-1.078-1.242-1.078-.379c0 .754-.453 1.871-1.066 2.613c-.492.602-.523.57-.574-.605c-.043-1.059-.355-1.93-.898-2.504c-.254-.273-.574-.203-.574.125c0 .305-.199.934-.496 1.539c-.227.469-.383.699-.633.938c-.344.328-.902.691-.965.629c-.02-.02.004-.184.051-.367c.129-.508.098-1.84-.059-2.398s-.281-.762-.473-.762c-.176 0-.836.598-2.426 2.191c-1.309 1.309-2.242 2.078-2.945 2.426c-.633.316-.996.367-1.258.18c-.102-.07-.523-.633-.937-1.242c-.676-1-1.797-2.543-2.195-3.02c-.176-.211-.359-.187-.359.039c0 .242.281 1.891.684 4c.645 3.371.961 4.754 1.098 4.805c.047.02.441-.121.879-.309c2.055-.883 3.941-1.418 6.52-1.848c1.555-.258 2.469-.324 4.449-.324c2.43 0 3.746.133 5.387.547c4.281 1.082 7.035 3.156 8.285 6.242c.684 1.695.84 3.219.516 5.145c-.137.832-.336 1.402-.785 2.277c-1.621 3.141-5.523 5.785-9.387 6.367c-.812.125-4.008.121-4.918 0zm3.641-6.66c1.176-.254 2.336-.918 3.301-1.891c1.063-1.07 1.461-1.824 1.422-2.711c-.027-.598-.203-.996-.723-1.621c-1.027-1.25-2.824-2.117-5.273-2.547c-1.379-.242-4.699-.242-6.801 0c-1.887.219-4.621 1.234-4.621 1.715c0 .16 1.129 1.641 1.922 2.523c1.047 1.164 2.047 2.035 3.293 2.867c1.305.871 3.012 1.613 4.047 1.758c.641.09 2.879.027 3.434-.094zm0 0\\\"/><path fill=\\\"#97c3e6\\\" d=\\\"M82.781 103.938c-.613-.07-1.898-.328-2.832-.559c-1.746-.434-3.465-1.07-4.852-1.793c-2.949-1.535-4.895-3.289-8.289-7.469l-.797-.98l-.937.449c-2.023.973-6.32 2.73-8.723 3.566c-5.309 1.848-8.828 2.578-12.41 2.574c-4.352-.004-8.031-.977-9.824-2.602c-.828-.746-1.727-2.359-1.598-2.867c.02-.082.074-.148.121-.148s.316.176.602.391l.984.746c.934.703 2.207 1.199 3.887 1.504c1.453.266 2.098.316 3.93.313c2 0 2.359-.047 4.566-.59c3.34-.816 5.887-1.715 8.691-3.062c2.883-1.383 8.305-4.129 8.465-4.285c.094-.09-.043-.508-.773-2.359c-.77-1.949-1.258-3.293-2.23-6.133c-.969-2.816-1.34-3.828-1.414-3.824c-.086 0-.82.996-1.949 2.648c-.516.758-1.055 1.492-1.191 1.633c-.352.363-.602.367-1.34.02c-.973-.461-2.109-1.422-4.113-3.477c-.785-.805-1.281-1.27-1.336-1.25c-.277.09-.496 1.008-.496 2.074c0 .617.023.793.16 1.191c.09.258.148.48.133.496c-.086.086-1.164-.605-1.484-.953c-.371-.395-.77-1.258-.984-2.113c-.066-.262-.145-.504-.18-.535c-.066-.07-.48.453-.691.879c-.27.531-.437 1.387-.437 2.191c0 .902-.023.918-.621.32c-.684-.687-1-1.418-1.238-2.871c-.039-.219-.082-.41-.102-.43c-.121-.125-.77.883-.992 1.551a4.95 4.95 0 0 0-.199 1.023l-.043.551l-.332-.367c-.672-.734-.93-1.559-.875-2.766c.039-.879.168-1.32.672-2.309a7.46 7.46 0 0 0 .496-1.203c.066-.27.191-.621.277-.785c.336-.664 1.078-1.246 1.93-1.516c.41-.129.543-.137 2.238-.133c1.996.004 2.605.082 3.387.434c.461.207 1.016.766 2.473 2.488c1.367 1.613 1.723 2.012 1.809 2.016c.094.008.449-.578.777-1.277c.238-.504.258-.598.313-1.324c.031-.434.098-.949.148-1.152c.246-.984.98-1.824 2.156-2.465l.328-.18l-.02-.453c-.02-.527-.109-1.18-.203-1.461c-.074-.234-.121-.25-1.035-.328c-.898-.078-1.66-.211-2.691-.473c-1.078-.27-1.281-.344-2.742-.969c-2.133-.914-4.68-2.227-8.027-4.133c-1.922-1.094-4.023-2.152-4.934-2.488a17.984 17.984 0 0 0-2.602-.695c-.434-.082-.91-.113-1.801-.113H32.77l-.684.234c-.789.273-1.504.637-1.984 1.016s-.625.707-.789 1.859c-.199 1.41-.242 1.395-.371-.156c-.09-1.059-.109-1.105-.582-1.418c-.742-.488-1.316-.668-2.426-.758c-1.051-.086-2.246.004-2.875.211c-1.668.559-3.719 2.109-5.316 4.027l-.602.719l-.137.918c-.336 2.258-.508 2.367-.512.324v-1.066l-.574-.387c-.703-.469-1.719-.961-2.348-1.137c-.684-.191-1.59-.23-2.242-.098c-1.977.398-3.68 2.109-5.137 5.16c-.785 1.645-1.352 3.324-2.016 5.984c-.59 2.352-.781 3.625-.734 4.855c.035.973.141 1.555.641 3.641c.184.77.336 1.453.336 1.523c.004.566-1.031-2.215-1.734-4.668C1.613 75.164.617 69.988.219 66.133c-.207-2.02-.277-5.773-.156-8.031c.109-1.961.477-4.41.91-6.066c.391-1.504 1.555-4.941 2.145-6.34c.371-.875 1.402-2.914 1.895-3.746c2.098-3.535 4.914-6.859 8.309-9.809c.781-.676 2.266-1.852 2.957-2.336c.633-.449 1.07-.836 1.008-.898c-.137-.141-4.707-.074-6.695.102c-1.465.125-1.535.129-1.441.07c.129-.086 1.383-.359 2.445-.539c3.648-.613 10.008-.625 13.93-.027c1.406.215 1.641.223 2.121.055c.398-.141.449-.145.898-.066c.527.09 3.48.824 5.969 1.488c1.879.5 2.828.723 2.875.676c.16-.16-.93-1.906-1.82-2.906c-.227-.254-1.07-1.129-1.875-1.937s-1.445-1.504-1.422-1.539c.051-.086.18-.035 1.156.461a13.71 13.71 0 0 1 2.492 1.621c1.105.922 2.199 2.262 2.77 3.398c.297.59.582 1.023.922 1.398c.594.664.758 1.395.453 2.047c-.148.316-.359.531-.867.883c-.359.246-.531.52-.887 1.387c-.82 1.996-2.117 6.633-2.891 10.309l-.266 1.254l.297.363c.391.484.77 1.273.836 1.766c.031.215.07.402.086.422c.043.039 2.441.449 5.75.984c2.992.484 2.648.5 2.973-.137c.094-.18.211-.34.27-.363s.973-.152 2.035-.285c2.789-.355 6.313-.902 9.824-1.531c1.445-.258 1.633-.277 1.848-.207l.238.078l.363-.312c.676-.594 3.68-3.672 4.898-5.023c.988-1.094 1.629-2.191 2.004-3.426c.156-.504.172-.656.176-1.523c.004-.914-.004-.984-.156-1.312c-.215-.457-.5-.766-.82-.902c-.391-.16-1.883-.195-2.988-.066c-1.223.145-3.211.605-3.457.805c-.047.035-.203.254-.355.484c-.305.477-.66.781-1.41 1.211c-.738.422-1.422.973-2.469 1.988c-1.98 1.922-2.207 2.047-3.07 1.719c-.445-.172-.676-.348-.676-.527c0-.164.188-.348 1.027-1.004c1.402-1.102 2.348-2.301 2.672-3.387c.133-.453.137-1.328 0-1.461s-.254-.125-.91.086c-.617.199-.98.387-.98.508c0 .043.188.266.422.5c.32.316.395.426.305.426c-.066 0-.488-.086-.934-.191c-.797-.187-.816-.187-1.051-.086c-.129.059-.238.141-.238.176c0 .141.273.512.641.871l.379.371l-.43-.043c-.473-.043-.832-.141-1.32-.352c-.672-.289-.906-.016-.48.563c.125.168.246.309.266.313s.156.102.293.223l.25.219l-.406-.039c-.473-.047-1.121-.254-1.77-.562c-.285-.133-.555-.219-.703-.219c-1.004 0-1.945-1.152-1.945-2.371c0-.672.254-.906 1.137-1.047c.977-.156 1.855-.551 2.391-1.074c.395-.387.453-.543.348-.937c-.133-.492-.078-1.199.125-1.609c.793-1.609 4.586-3.695 8.633-4.75a20.11 20.11 0 0 1 1.395-.312c.574-.102 1.75-.133 1.805-.047c.016.023-.277.234-.648.469a12.1 12.1 0 0 0-2.773 2.348c-.879 1.008-1.168 1.555-.816 1.555c.176 0 1.52-.324 2.223-.539c.742-.223.953-.348 1.496-.867c.871-.824 1.754-1.301 2.965-1.59c.645-.152 1.727-.301 2.211-.301c.355-.004.984.113.98.18c0 .02-.637.348-1.414.73c-1.262.621-1.977 1.063-1.879 1.164c.055.059 1.883.23 2.566.242c.598.012.676 0 1.289-.223c.594-.219.746-.246 1.625-.305c.953-.066 2.926-.004 3.023.098s-.199.25-1.168.594c-1.492.527-1.684.617-1.613.754c.066.125 1.262 1.023 1.68 1.262c.156.09.617.293 1.027.449c.906.352 1.727.766 2.215 1.129c.344.25.609.551.547.613c-.016.016-.461-.023-.992-.09l-1.285-.148l-.328-.035v.211c0 .113.07.531.156.93s.156.813.156.922c0 .281.078.383 1.09 1.418c.82.836 1.273 1.375 1.273 1.504c0 .102-.258.047-1.09-.23c-.465-.152-.895-.277-.957-.277c-.137 0-.195.254-.352 1.523l-.105.871l.359.59c.586.965.793 1.5.574 1.492c-.043 0-.316-.152-.605-.34s-.543-.316-.566-.293c-.102.117-1.488 5.297-1.488 5.563c0 .145-.008.145.809.324c2.203.492 7.508 1.379 10.457 1.754l1.566.223c.348.074.613.266.613.438c0 .066.07.195.16.281c.156.156.18.16.699.125a68.84 68.84 0 0 0 4.957-.789c.273-.07.543-.176.602-.234s.18-.344.273-.637c.25-.77.48-1.195.816-1.488l.293-.258l-.328-1.445c-1.031-4.57-1.926-7.797-2.715-9.824c-.449-1.164-.656-1.5-1.09-1.797c-.504-.344-.785-.684-.902-1.094c-.184-.633-.012-1.207.547-1.816c.188-.199.5-.66.699-1.016c.914-1.637 1.375-2.273 2.313-3.172c1.102-1.055 2.035-1.676 3.789-2.523c.582-.285 1.066-.504 1.078-.492s-.082.113-.215.227c-2.086 1.801-3.648 3.453-4.625 4.879c-.457.664-.812 1.316-.812 1.484c0 .066.055.098.176.098c.191 0 1.461-.312 4.023-.992c2.234-.598 4.402-1.117 4.824-1.16a1.09 1.09 0 0 1 .645.094c.375.164.73.164 1.758.008c1.176-.18 3.039-.359 4.621-.441c1.566-.086 5.691-.047 6.887.063c1.973.18 4.605.617 5.098.848c.215.102.184.098-1.34-.031c-1.957-.172-6.492-.246-6.629-.109c-.062.066.203.297 1.441 1.238c5.531 4.215 9.434 8.773 12.012 14.023c.867 1.762 1.641 3.832 2.457 6.566c.992 3.316 1.371 6.141 1.371 10.27c0 3.195-.266 6.242-.844 9.68c-.793 4.691-2.238 10.184-3.238 12.285c-.187.391-.348.699-.363.688s.254-1.23.594-2.699l.617-2.672l-.223-1.25c-.691-3.871-1.797-7.617-2.906-9.832c-.844-1.687-1.785-2.934-2.871-3.809a4.78 4.78 0 0 0-1.902-.965c-.691-.176-1.801-.145-2.465.066c-.973.313-2.609 1.199-2.773 1.508c-.047.09-.094.59-.121 1.344c-.023.66-.062 1.219-.086 1.242c-.074.074-.152-.121-.223-.574c-.395-2.461-.32-2.301-1.574-3.57c-1.367-1.391-2.133-2.02-3.172-2.617c-1.469-.844-1.852-.945-3.594-.945c-1.531-.004-1.707.031-2.66.473c-.961.453-1.016.531-1.133 1.715c-.066.684-.105.867-.195.867c-.07 0-.105-.133-.215-.871c-.148-1.016-.223-1.18-.723-1.645c-1.012-.937-2.602-1.402-4.504-1.324c-2.211.094-4.625.965-8.031 2.91c-3.617 2.063-5.652 3.133-8.09 4.25c-.855.391-1.879.816-2.273.941a17.777 17.777 0 0 1-4.305.816c-.402.02-.773.07-.828.113c-.145.102-.215.457-.258 1.289l-.043.723l.637.043c1.258.086 2.063.406 2.742 1.094c.66.664.922 1.32 1.055 2.676c.086.883.281 1.426.863 2.395l.223.367l.309-.336c.168-.187.828-.953 1.465-1.703c1.621-1.91 2.121-2.406 2.594-2.586c.887-.336 1.418-.398 3.328-.402c1.551-.004 1.82.012 2.145.109c.621.191 1.098.473 1.496.875c.418.426.641.832.832 1.547c.074.266.301.797.504 1.184c.465.879.625 1.492.625 2.418c0 1.094-.246 1.828-.863 2.566l-.289.348l-.043-.41c-.098-.977-.477-1.934-.973-2.465c-.293-.312-.344-.246-.41.523c-.078.859-.508 1.801-1.141 2.484c-.219.238-.453.434-.516.434c-.133 0-.164-.172-.207-1.184c-.043-.965-.363-1.867-.867-2.41c-.203-.223-.355-.187-.355.082c0 .285-.316 1.242-.578 1.734c-.27.52-.902 1.133-1.461 1.426c-.289.148-.449.203-.449.152s.059-.266.129-.488c.184-.582.219-1.395.09-2.082c-.105-.566-.316-1.152-.41-1.152c-.082 0-.758.633-2.301 2.148c-1.555 1.527-1.863 1.801-2.57 2.258c-.84.547-1.43.695-1.824.453c-.117-.07-.477-.535-.93-1.195c-1.398-2.059-2.348-3.316-2.379-3.16c-.066.34 1.523 8.523 1.688 8.688c.012.012.441-.16.949-.379c1.957-.836 3.879-1.367 6.566-1.809c1.488-.246 2.527-.301 4.902-.266c2.348.039 2.988.102 4.43.43c5.031 1.148 8.141 3.742 9.152 7.637a9.58 9.58 0 0 1-.172 5.176c-.66 1.934-2.391 3.992-4.562 5.434c-1.324.879-3.258 1.695-4.824 2.039c-.562.125-.824.137-2.77.152c-1.18.012-2.355-.008-2.613-.039zm.742-.145c-.016-.016-.301-.113-.633-.219c-.59-.191-.609-.195-.809-.086c-.23.121-.254.113.574.23c.637.094.91.117.867.074zm-2.113-.52l-.004-.23l-.887-.43l-.887-.426l-.465.203c-.254.113-.504.242-.551.285c-.078.066-.062.09.082.145a1.02 1.02 0 0 0 .246.066c.043 0 .102.023.137.055c.066.063 1.988.543 2.254.563c.047.004.074-.078.074-.23zm-3.062-1.066a2.74 2.74 0 0 0 .176-.492c.035-.172.016-.199-.262-.359a21.354 21.354 0 0 1-.84-.531l-.535-.355l-.523.25c-.285.141-.547.297-.574.348c-.047.074-.152.082-.594.047c-.348-.027-.516-.023-.473.016c.133.133 1.758.918 2.355 1.141c.348.129.742.238.879.238c.238.004.258-.008.391-.301zm11.031.09c1.059-.129 1.934-.328 2.457-.562c.105-.047.336-.141.512-.211a8.905 8.905 0 0 0 1.855-1.012c.637-.465.875-.664.836-.699c-.016-.016-.258.035-.535.117c-2.695.781-3.922 1.016-5.598 1.07c-1.258.039-2.105-.027-3.309-.266c-.906-.18-3.004-.758-3.75-1.035c-.566-.207-1.766-.805-2.434-1.211a16.47 16.47 0 0 1-2.09-1.602c-.223-.211-.43-.391-.461-.402c-.109-.039-1.344-1.434-1.801-2.031c-1.594-2.09-2.727-4.184-3.844-7.098c-.492-1.293-1.242-4.125-1.539-5.82c-.68-3.895-.965-9.289-.652-12.355c.137-1.359.238-2.035.465-3.172c.082-.41.184-.973.223-1.246c.082-.609.328-1.664.457-1.996c.148-.375.492-1.77.84-3.418l.375-1.68c.074-.227.254-1.301.473-2.789l.16-1.109l-.285-.426c-1.02-1.531-1.289-3.484-.719-5.168a16.24 16.24 0 0 0 .25-.809a3.31 3.31 0 0 1 .125-.406c.059-.125.219-.687.84-2.957c.418-1.512.523-2.434.527-4.48c.004-1.836-.141-2.973-.531-4.219c-.543-1.727-1.246-2.754-2.449-3.574c-.777-.531-1.52-.816-2.742-1.055c-.652-.129-.902-.141-2.77-.145c-1.523 0-2.152.02-2.43.082c-2.191.5-3.023.762-4.383 1.375c-1.168.523-1.508.891-1.41 1.508c.039.234.023.262-.242.508c-.281.262-.625.852-.535.914c.074.047.191.793.191 1.207c0 .504-.246 1.195-.703 1.961c-.488.816-1.016 1.383-2.078 2.23l-.977.777c-.113.094-.117.117-.039.172c.262.172 1.063-.059 1.605-.465c.57-.43 1.102-.973 2.578-2.652c.078-.09.316-.277.527-.422c.52-.344 1.219-1.059 1.398-1.422c.125-.254.145-.395.145-.922c0-.598-.008-.641-.238-1.105c-.133-.266-.227-.5-.207-.52s.324-.059.676-.086s.758-.094.898-.152c.609-.246 2.289-.727 3.168-.906a14.46 14.46 0 0 1 3.059-.352c1.297-.039 2.203.035 2.387.195c.051.043.207.113.344.156a5.59 5.59 0 0 1 2.223 1.523c.359.449.879 1.426.895 1.684c.004.102.074.48.152.84a6.33 6.33 0 0 1 .141 1.492c0 .82-.133 1.785-.258 1.863c-.074.051-.152.473-.473 2.578c-.18 1.176-.305 1.828-.367 1.898c-.051.059-.145.383-.207.727c-.137.75-.16 3.121-.035 3.727c.043.211.051.398.023.438s-.02.355.027.723c.16 1.309.223 2.738.203 4.523c-.02 1.621-.035 1.828-.129 1.898c-.082.063-.121.254-.172.828a24.36 24.36 0 0 1-.648 3.758a27.19 27.19 0 0 0-.348 1.625c-.105.633-.156.801-.27.887a6.346 6.346 0 0 1-.203.164c-.078.063-.281 1.055-.434 2.094c-.055.375-.125 1.34-.156 2.141c-.031.848-.082 1.484-.117 1.523c-.102.098-.074.719.113 2.746c.152 1.633.164 1.887.086 2.004s-.07.266.043 1.164a85.14 85.14 0 0 0 .352 2.355c.344 2.063.359 2.176.285 2.297c-.113.18.195 2.102.555 3.422c.188.703.297 1.219.273 1.309c-.043.172.016.34 1.031 2.961c.133.348.246.727.246.84s.035.266.082.332s.129.234.184.371a20.98 20.98 0 0 0 1.117 2.336c.258.461.5.945.535 1.074c.129.465 1.301 2.129 2.152 3.051c.984 1.063 2.855 2.941 3.242 3.254c.207.164.441.371.527.457c.266.262 1.734 1.191 2.328 1.469a15.55 15.55 0 0 0 1.254.496c.375.125.727.254.785.281c.273.145 2.461.5 3.539.578c.742.055 2.156.031 2.801-.047zm-13.699-2.012c.199-.492.23-.637.145-.637c-.027 0-.219-.148-.422-.332l-.852-.75l-.48-.414l-.566.32l-.57.32l-.879-.129c-.484-.07-.887-.117-.898-.105c-.059.055 1.563 1.336 2.289 1.813c.492.32.605.348 1.719.387l.32.012zm-28.719-1.562c1.816-.258 3.574-.699 5.109-1.289c2.289-.871 5.852-3.082 8.242-5.113c1.277-1.086 2.508-2.199 2.469-2.234c-.031-.031-1.598.719-3.34 1.598l-3.766 1.926c-.035.031-.523.254-1.09.496l-1.309.578c-.355.164-3.066 1.117-3.887 1.363c-1.852.559-4.266 1.113-5.512 1.273c-1.781.223-5.191-.016-6.75-.477c-2.098-.621-2.59-.863-3.602-1.766l-.676-.586l-.184-.148l.102.238c.133.324.344.598 1.09 1.418c.391.43 1.375 1.152 1.902 1.391c.762.352 3.781 1.105 5.285 1.32c1.234.176 1.242.176 3.207.16c1.418-.012 1.961-.043 2.707-.148zm26.168-.785c.18-.258.301-.469.273-.469c-.086 0-1.23-1.379-1.508-1.82c-.145-.23-.285-.418-.309-.418c-.086 0-.848.266-.918.32c-.059.043-2.301-.508-2.723-.668c-.059-.023-.102-.016-.102.016c0 .117 1.438 1.813 2.305 2.719l.41.43l1.086.172l1.125.18c.02.004.184-.203.359-.461zm12.605-.848c1.574-.203 3.172-1.113 4.203-2.395c.758-.945 1.078-1.754.941-2.395c-.102-.492-.461-1.066-1-1.617c-.555-.562-1.055-.91-1.832-1.277c-1.957-.918-4.273-1.25-7.598-1.09c-2.488.121-3.078.215-4.641.73c-1.02.336-1.957.77-2.074.961s1.656 2.391 2.859 3.543c1.781 1.703 3.953 2.992 5.816 3.449c.855.211 2.109.246 3.324.09zm8.18-2.793c.746-1.121 1.078-2.062 1.184-3.379c.059-.727.004-1.715-.121-2.172c-.098-.371-.5-1.445-.555-1.484c-.023-.016-.145-.227-.27-.465c-.504-.961-.898-1.281-2.379-1.945l-.934-.414c-.82-.367-2.781-.805-4.355-.969c-.375-.039-.82-.098-.984-.129c-.391-.078-3.18-.078-3.57 0c-.164.031-.68.09-1.141.129s-.953.094-1.09.117l-.246.047l.215.039c.121.02.57.07.996.109c2.801.246 5.266.609 6.383.934c2.371.695 3.715 1.402 4.914 2.594c.824.816 1.574 2.094 1.941 3.297c.238.793.238 1.789 0 2.66c-.168.613-.594 1.594-.855 1.98c-.109.16-.07.137.188-.109a6.3 6.3 0 0 0 .68-.84zm-23.125.453l.293-.43l-.629-1.305c-.348-.715-.715-1.527-.816-1.801s-.203-.52-.227-.543c-.043-.043-.711.172-1.277.41c-.238.102-.254.098-1.371-.215l-1.234-.344c-.098-.027-.102-.016-.023.176c.164.387.84 1.762 1.039 2.102l.527.938l.332.598l1.074.289c.594.16 1.273.359 1.516.441s.449.141.469.129s.164-.211.328-.445zm-5.719-4.059c-.094-.211-.184-.367-.203-.348s.047.199.145.406c.23.48.281.434.059-.059zm3.25-.363l.66-.555l.172-.133l-.215-.582a33.72 33.72 0 0 1-.746-2.309c-.059-.199-.117-.359-.137-.359c-.156 0-1.398.285-1.527.352c-.152.074-.203.066-.531-.094c-.199-.098-.613-.281-.922-.41s-.77-.328-1.02-.445s-.477-.199-.492-.184c-.066.066.855 2.891 1.281 3.93l.176.426l.836.238c.461.129.879.254.93.277c.188.082.781.254.914.262c.082.004.32-.156.621-.414m-4.332-1.961a52.96 52.96 0 0 1-.375-1.23a19.19 19.19 0 0 0-.316-1.023a5.98 5.98 0 0 1-.129-.406c-.043-.152-.113-.324-.16-.383s-.258-.754-.465-1.555c-.672-2.594-.715-2.746-.812-2.82c-.094-.066-.176-.406-.602-2.461a27.08 27.08 0 0 0-.215-.965a41.337 41.337 0 0 1-.289-1.328c-.129-.629-.23-.988-.305-1.062c-.129-.129-.211-.715-.355-2.59c-.211-2.691-.219-2.738-.305-2.805a.43.43 0 0 1-.121-.219c-.055-.254-.152-2.039-.227-4.133c-.051-1.453-.094-2.02-.148-2.086c-.137-.16-.152-.285-.285-2.211c-.145-2.137-.148-3.777-.012-4.66c.074-.496.078-.633.012-.754a.7.7 0 0 1-.039-.395c.066-.41.449-1.68.742-2.473l.777-2.082c.27-.738.543-1.449.605-1.578c.094-.191.098-.258.035-.375c-.066-.129-.023-.246.387-1.07a23.22 23.22 0 0 1 .93-1.676l.543-.902c.043-.086-.715.656-1.684 1.645c-1.332 1.363-1.762 1.836-1.746 1.93c.063.375.078 2.203.02 2.398a36.93 36.93 0 0 0-.168.625c-.219.84-.605 1.508-1.352 2.332l-.281.313l-.047 1.711c-.047 1.813-.008 4.391.094 5.633l.125 1.836c.086 1.348.289 3.766.402 4.762c.293 2.57 1.02 6.883 1.219 7.242c.031.059.227.707.43 1.441c.375 1.352 1.508 4.848 1.906 5.883l.645 1.742c.234.652.672 1.77.969 2.488l.598 1.449c.109.273.113.133 0-.187zm3.109-2.453l.742-.496c.016-.012-.023-.184-.086-.379a43.178 43.178 0 0 1-.598-2.414c-.043-.203-.098-.391-.117-.418s-.16-.016-.316.016l-.621.129a3.416 3.416 0 0 0-.488.137c-.16.078-.125.09-1.223-.406a38.25 38.25 0 0 0-1.34-.574c-.324-.133-.625-.266-.668-.301c-.055-.043-.078-.027-.078.043c0 .141.547 2.34.621 2.496c.031.07.129.387.215.707s.164.59.172.594c.027.016.582.258 1.09.473c.25.105.766.344 1.152.527s.73.34.766.344s.383-.215.777-.477zm-1.238-4.109c.219-.16.48-.371.582-.465s.238-.191.297-.211c.133-.043.133-.016.016-.867c-.133-.941-.34-2.879-.344-3.145c0-.414-.012-.418-1.035-.223c-.508.094-1.016.199-1.125.234c-.176.051-.262.027-.746-.23a9.843 9.843 0 0 1-.613-.344a47.47 47.47 0 0 0-1.984-1.055c-.02 0-.035-.082.461 2.332c.34 1.668.59 2.754.641 2.809a16.64 16.64 0 0 0 .703.293a34.7 34.7 0 0 1 1.086.465c.82.383 1.527.691 1.598.695c.039 0 .246-.129.465-.289zm59.02-2.289l.41-1.496a6.68 6.68 0 0 1 .188-.621c.113-.25.938-4.012 1.094-4.98c.02-.137.063-.305.094-.375c.059-.133.355-1.941.555-3.391a75.57 75.57 0 0 0 .438-4.262l.129-1.535c.078-.695.078-3.258 0-3.75a18.477 18.477 0 0 1-.129-1.223c-.152-1.953-.523-4.605-.785-5.633c-.227-.891-.777-2.418-1.121-3.102c-.168-.336-.664-1.152-1.027-1.691c-.531-.797-2.047-2.395-2.945-3.109a5.172 5.172 0 0 1-.469-.398c-.129-.141-1.898-1.457-2.613-1.937c-.324-.219-.625-.43-.664-.469s-.223-.164-.406-.277l-1.078-.687c-1.223-.785-2.031-1.219-4.262-2.281a25.23 25.23 0 0 0-1.371-.59l-1.43-.578a36.79 36.79 0 0 0-1.898-.684a28.502 28.502 0 0 1-1.371-.469c-.215-.105-3.262-.992-4.637-1.352a118.88 118.88 0 0 0-2.426-.59l-1.836-.43c-.566-.145-4.805-.93-5.016-.93c-.035 0 .039.152.172.34l.234.34l.719.164l1.305.32l2.707.703l5.883 1.535l1.434.402l2.645.754c.68.238 2.48.93 2.828 1.09l1.402.609c2.074.891 4.477 2.16 6.195 3.262c3.09 1.984 4.996 3.75 6.496 6.012c.367.551 1.094 1.973 1.371 2.676c.383.973.875 2.605 1.059 3.516c.402 2.02.547 3.82.547 6.879c-.004 3.48-.18 6.137-.609 9.18a116.8 116.8 0 0 1-1.273 6.473c-.707 2.801-1.066 4.348-.871 3.734c.027-.086.18-.602.336-1.148zm-121.414.953c-.02-.051-.035-.035-.035.035s.012.102.031.082s.023-.074.004-.117m-.168-.676a93.502 93.502 0 0 1-.867-3.609l-.379-1.707c-.367-1.605-.895-5.078-1.117-7.348c-.23-2.324-.332-7.215-.187-8.965c.168-1.992.578-4.312 1.035-5.82a24.54 24.54 0 0 1 1.074-2.664a16.91 16.91 0 0 1 1.93-2.961c.52-.613 1.656-1.734 2.34-2.312l.563-.473c.398-.336 1.59-1.16 2.863-1.977c1.336-.855 4.395-2.437 6.035-3.121l.965-.414c1.91-.867 3.934-1.504 8.965-2.828l2.086-.551c.227-.066 4.301-1.102 5.66-1.437c1.023-.254 1.039-.266 1.371-.703l.184-.242l-.309.043a138.53 138.53 0 0 0-4.512.836l-1.215.285l-1.367.316c-1.66.375-5.836 1.527-6.566 1.813a162.98 162.98 0 0 1-1.543.527c-.793.27-1.566.543-1.711.609s-.727.305-1.293.527c-1.723.68-4.41 2.027-5.598 2.809c-2.91 1.902-3.633 2.414-5.035 3.547c-1.852 1.5-3.422 3.281-4.156 4.715c-.902 1.766-1.207 2.664-1.578 4.652c-.07.395-.16.816-.191.934s-.074.332-.09.469l-.121.996c-.539 4.387-.434 8.586.336 13.441c.5 3.145.754 4.445 1.328 6.848c.512 2.129.586 2.406.906 3.41c.301.953.418 1.164.195.355zm41.758-.172c-.793-1.805-.352-4.055 1.164-5.934c.363-.449.387-.496.277-.551c-.203-.109-.465-.07-.871.129c-.852.426-1.437 1.313-1.687 2.543c-.285 1.422.043 2.813.887 3.762c.172.191.32.348.336.348s-.035-.133-.105-.297zm40.02-.687c.75-1.266.734-3.062-.035-4.465c-.305-.551-.703-.941-1.223-1.203c-.34-.168-.469-.203-.672-.176c-.137.02-.266.047-.281.066s.082.168.223.328c.422.477 1.074 1.555 1.289 2.133a5.32 5.32 0 0 1 .383 2.336c-.031.719-.074.93-.387 1.809c-.078.227.441-.391.703-.828m-36.422.477a8.577 8.577 0 0 1-.605-1.484c-.113-.418-.098-1.512.027-1.992c.148-.555.676-1.605.988-1.961c.246-.281.25-.297.137-.379c-.172-.129-.574-.223-.73-.176c-.824.254-1.359 1.086-1.473 2.293c-.125 1.332.215 2.52.953 3.328c.254.273.797.703.836.66c.012-.012-.047-.141-.133-.289m32.293.137c.34-.223.902-.898 1.117-1.34c.32-.66.418-1.121.414-1.988c-.004-1.449-.402-2.285-1.293-2.715c-.293-.145-.512-.129-.871.059l-.199.102l.273.305c.352.391.809 1.301.969 1.934c.277 1.102.094 2.34-.512 3.441c-.195.355-.18.387.102.203zm-39.109-1.332c-.02-.566.004-.812.109-1.23c.238-.953.945-2.242 1.758-3.203c.234-.281.426-.539.426-.578c0-.113-.457-.078-.816.066c-.879.352-1.422 1-1.844 2.199c-.227.641-.266 1.684-.086 2.395c.102.406.387 1.059.461 1.059c.008 0 .004-.316-.008-.707zm46.105.113c.203-.539.273-1.043.238-1.754c-.07-1.441-.801-2.723-1.824-3.203c-.441-.207-1.023-.309-1.023-.18c0 .039.238.363.523.719a9.321 9.321 0 0 1 1.602 2.832c.121.348.145.531.145 1.293c.004.855.008.883.113.746c.059-.074.16-.281.227-.453zm-23.48-1.883c1.051-.73 1.828-1.348 1.801-1.422c-.02-.047-.051-.852-.074-1.793s-.062-1.715-.09-1.715a63.51 63.51 0 0 0-2.551.465c-.086.031-.969-.496-1.801-1.07c-.187-.129-.566-.371-.84-.535s-.551-.348-.609-.398s-.121-.086-.137-.074c-.031.035.191 3.355.277 4.102c.09.766.117.875.242.926c.18.074 1.715.902 1.75.941c.016.023.297.176.621.344s.676.352.777.414s.191.113.199.113a14.91 14.91 0 0 0 .434-.297zm-8.781-.527c.234-.418.496-.875.59-1.012c.152-.23.434-.742.434-.797c0-.035-.437-.164-.75-.219l-.277-.051l-.539 1.066l-.535 1.066l.316.355c.176.195.324.355.332.355s.199-.344.43-.766zm19.086.109c.027-.043-.176-.535-.465-1.137l-.512-1.062l-.187.031c-.852.152-.852.156-.434.871l.633 1.109c.152.277.32.566.371.645l.094.145l.227-.262a4.57 4.57 0 0 0 .273-.34m-17.539-2.441c.508-.52.766-1.398.703-2.383c-.035-.52-.195-1.289-.289-1.383c-.074-.082-.762.402-1.094.773a3.341 3.341 0 0 0-.902 2.332v.516l.234.039c.125.02.398.102.605.184s.406.145.445.148s.172-.098.297-.227zm15.691.094c.102-.035.211-.09.242-.117s.133-.055.219-.055c.418-.004.441-.031.441-.598c0-1.082-.629-2.258-1.523-2.852c-.184-.121-.363-.223-.395-.223c-.121 0-.289 1.016-.285 1.742c.004.594.027.777.148 1.09c.266.688.664 1.195.871 1.113a7.53 7.53 0 0 1 .281-.102zM43.103 72.29c.172-.051.676-.109 1.121-.129c.828-.035 1.574-.16 2.535-.43c.801-.227 1.727-.605 1.727-.707c0-.172-2.926-.219-3.641-.055c-.574.133-.73.195-1.227.496a2.262 2.262 0 0 0-.641.547c-.191.266-.254.375-.199.375c.008 0 .152-.043.324-.098zm43.602.063c0-.109-.379-.539-.652-.742a3.724 3.724 0 0 0-1.434-.641c-.719-.164-3.711-.117-3.605.059c.055.09.707.367 1.375.586c.879.289 2.039.512 2.883.551c.395.02.855.074 1.027.121c.387.109.406.109.406.066m-22.937-.902a59.33 59.33 0 0 1 1.184-.723c.547-.328 1.043-.637 1.105-.691c.09-.078.109-.203.109-.723c0-.695.102-2.418.18-2.977c.039-.309.031-.359-.051-.359c-.055 0-.59.129-1.187.285l-1.246.32a1.41 1.41 0 0 0-.34.152c-.254.152-.285.148-.535-.105c-.117-.121-.5-.461-.852-.75s-.637-.551-.637-.574s-.176-.184-.391-.355a14.92 14.92 0 0 1-.793-.684l-.535-.484l-.133-.109l.023.605l.188 4.391l.039.605l.41.258l2.34 1.516c.445.289.84.527.875.527s.145-.055.246-.125zm1.246-6.102c1.441-.887 1.648-1.023 1.676-1.113c.109-.344.465-3.98.473-4.805c0-.094-.039-.094-.453.023a40.98 40.98 0 0 0-1.293.395l-1.293.406l-.457.141l-2.199-2.195l-2.195-2.195l-.035.207a22.89 22.89 0 0 0-.109 1.176c-.07.859-.062 1.199.059 3.129l.184 2.277c.043.113.734.77 1.816 1.719l1.051.945a18.2 18.2 0 0 0 .754.66l.34.277l.5-.312l1.184-.734zm-10.363.188c1.066-.129 1.125-.148 1.383-.504c.238-.316.277-.449.184-.598c-.039-.062-.176-.02-.578.188c-.527.273-1.129.551-1.859.867l-.406.172l.375-.031zm19.855.086c-.152-.055-.844-.379-1.863-.871c-.895-.434-.969-.457-1.043-.355a.423.423 0 0 0-.082.211c0 .156.348.672.477.707c.215.063 1.355.238 1.855.285c.633.063.777.066.656.023m-57.672-1.574c.188-1.566.676-3.891 1.102-5.215a28.22 28.22 0 0 1 1.094-2.656a13.91 13.91 0 0 1 1.883-2.773c1.496-1.664 3.477-2.812 5.945-3.449c1.672-.434 2.465-.531 4.234-.535h1.309l.305-.359l.305-.355l-.273-.043c-.531-.078-2.52-.051-3.305.047c-.891.113-2.242.398-2.914.613c-1.488.473-2.781.992-3.27 1.313a7.99 7.99 0 0 1-.562.332c-.469.234-1.301.898-1.961 1.563c-1.012 1.016-1.867 2.367-2.449 3.863l-.312.777c-.383.867-.91 3.266-1.156 5.262c-.062.52-.148 2.531-.105 2.488c.02-.016.078-.41.133-.871zm94.398-.809a35.437 35.437 0 0 0-.164-1.805c-.109-.848-.445-2.547-.52-2.645c-.031-.035-.074-.16-.102-.281s-.195-.68-.383-1.242c-.523-1.578-1.203-2.848-2.16-4.043c-.324-.402-.711-.832-.863-.957a15.49 15.49 0 0 1-.551-.477c-.289-.27-1.598-1.113-2.172-1.406s-2.598-1.02-3.379-1.219c-1.633-.41-2.75-.555-4.273-.551c-.633.004-1.258.023-1.387.047l-.234.043l.32.359l.316.355h1.207c1.695 0 2.625.117 4.25.531c1.793.453 3.379 1.215 4.699 2.258c.512.402 1.375 1.273 1.707 1.727c.754 1.016.883 1.219 1.367 2.145c1.039 1.992 1.75 4.359 2.125 7.066c.223 1.609.215 1.574.242 1.367c.012-.102-.008-.676-.047-1.273zm-58.016-1.246c.492-.055.547-.074.73-.273c.234-.254.309-.488.227-.715c-.082-.234-.223-.23-.758.008c-.43.195-.898.348-2.457.809c-.383.109-.453.148-.344.184c.227.063 2.02.055 2.602-.012zm24.184 0c.105-.047.109-.055.016-.059c-.062 0-.16-.027-.219-.059s-.516-.172-1.012-.316a18.87 18.87 0 0 1-1.492-.5c-.617-.258-.711-.254-.762.027c-.039.203.082.465.32.688c.156.148.273.195.551.227c.547.059 2.457.055 2.598-.008m-48.117-2.238c.191-1.699.336-2.363.887-4.07c.563-1.727 1.492-3.332 2.57-4.43l.43-.441l-.387.023c-.414.027-.348-.02-.949.648c-.355.391-1.34 1.926-1.625 2.531c-.484 1.023-.785 1.98-.926 2.934c-.09.625-.207 3.805-.133 3.738c.016-.02.078-.437.133-.934zm69.539-.797c-.055-1.906-.227-3.008-.637-4.105c-.227-.602-1.266-2.477-1.461-2.629c-.02-.02-.195-.242-.387-.5c-.621-.84-.645-.855-1.113-.891l-.414-.027l.406.383c.75.703 1.668 2.133 2.223 3.461l.281.652c.352.781.805 2.84 1.039 4.715c.078.617.098.25.063-1.059m-34.121.41L66.918 58l.289-.18l.039-1.977l.074-2.992c.039-.977.035-1.02-.078-.988c-.586.18-2.359.805-2.418.855c-.098.082-.512-.344-2.707-2.758c-.395-.434-.73-.789-.754-.789s-.07.117-.113.262c-.094.32-.547 1.531-.633 1.684c-.133.242-1.344 3.711-1.402 4.02c-.039.207-.016.234 2.254 2.504l2.293 2.293l.188-.113l.75-.453zm12.137-1.426a6.31 6.31 0 0 0 .688-.121a19.63 19.63 0 0 1 .996-.254c.445-.105.848-.219.898-.242c.051-.031-.195-.055-.551-.055c-1.129-.012-2.395-.152-3.199-.355c-.344-.09-.367-.086-.543.039c-.336.238-.301.648.082.969c.176.148.215.156.66.117c.258-.02.695-.066.969-.098m-23.75-.152c.262-.301.266-.582 0-.801c-.219-.184-.344-.195-.758-.07c-.473.145-1.602.281-2.652.324c-.609.027-.91.059-.824.09c.074.031.59.137 1.145.242l1.32.254a14.67 14.67 0 0 0 1.441.172c.082.008.211-.074.328-.211m12.012-5.68a8.05 8.05 0 0 1 .629-.414a37.81 37.81 0 0 0 1.004-.641l.598-.395l.039-.379c.023-.211.039-.57.039-.801c0-.641.117-1.621.246-2.094l.305-1.07l.188-.648l-1.031.043c-.562.027-1.059.059-1.098.074c-.066.023-.887-1.301-1.246-2.016c-.09-.18-.187-.324-.215-.324c-.062 0-.957 1.258-1.258 1.762c-.117.199-.262.41-.316.473c-.098.105-.691 1.117-1.023 1.75c-.102.188-.199.355-.223.371s-.113.199-.203.398c-.187.426-.23.324.473 1.066a23.12 23.12 0 0 1 .625.684a11.69 11.69 0 0 0 .52.566c.168.176.602.645.961 1.039s.676.723.707.727s.156-.078.281-.172zM54.816 52c1.754-.281 2.703-1.016 3.676-2.828c.258-.488.422-.922.371-.973c-.02-.02-.254.012-.523.066c-1.336.277-5.039.91-8.266 1.406c-1.277.199-3.773.496-4.16.496c-.133 0-.23.023-.219.055s.324.258.691.504l.668.453l1.043.203a47.03 47.03 0 0 0 2.164.367c2.422.352 3.543.41 4.555.25zm23.918-.375c1.555-.172 3.434-.523 4.152-.773c.316-.109 1.668-.926 1.617-.977c-.016-.012-.441-.066-.953-.121a36.78 36.78 0 0 1-1.484-.18l-2.023-.309c-2.363-.355-4.84-.773-5.379-.902l-.723-.152l-1.238-.223c-.562-.102-1.031-.176-1.039-.168c-.027.027.32.992.441 1.223c.484.941 1.32 1.867 2.016 2.234c.926.492 2.359.598 4.613.348m9.773-.312c1.398-.152 2.793-.488 3.039-.734c.102-.105.066-.312-.098-.52l-.109-.137l-2.148.34c-3.957.625-3.773.586-4.027.871l-.219.246l.613.035c.82.047 1.922.008 2.949-.102zm-44.383-.121c.043-.043-.445-.148-1.566-.328c-6.324-1.027-5.934-.984-6.113-.637c-.078.145-.062.25.055.422a12.88 12.88 0 0 0 .629.164c.645.16 1.684.316 2.707.41c.824.074 4.207.051 4.289-.031zm-9.98-1.461c.203-.07.691-.305 1.086-.52c.805-.445.801-.434.523-.992c-.238-.484-.422-.687-.574-.641c-.445.145-2.258 1.617-2.25 1.836a.39.39 0 0 0 .074.195c.211.273.574.313 1.141.121zm60.652.063a.71.71 0 0 0 .223-.266l.102-.199l-.453-.426c-.812-.758-1.758-1.402-1.953-1.328c-.113.043-.387.504-.543.914l-.117.313l.297.188c.316.203 1.051.566 1.508.75c.316.125.758.148.938.055zM34.531 47.5l.355-.242l.203-1.051c.391-2.031 1.625-7.07 1.762-7.211a.254.254 0 0 0 .059-.152c0-.187.82-2.719 1.07-3.305l.281-.668c.016-.043-.145-.004-.387.098c-.41.168-.422.176-.566.543a76.28 76.28 0 0 0-1.395 4.074l-.469 1.535c-.367 1.105-1.164 4.676-1.359 6.094c-.098.68-.117.668.445.285zm59.301-.734c-.176-1.168-.473-2.68-.687-3.477l-.738-2.707c-.281-.996-1.391-4.301-1.656-4.934c-.207-.5-.246-.535-.754-.746l-.223-.094l.34.91l.418 1.098c.16.363.707 2.258 1.34 4.637a57.14 57.14 0 0 1 .391 1.648l.387 1.711l.359 1.598l.199.883l.371.25c.207.137.379.242.387.234s-.051-.461-.133-1.012zM67.656 44.91l.777-.242c0-.004.094-.277.207-.602c.664-1.887.93-2.711.887-2.758c-.074-.078-1.805.027-1.895.113c-.043.043-.27.57-.508 1.176s-.457 1.094-.488 1.094s-.031-.086 0-.199c.059-.219.051-2.52-.012-2.969l-.039-.273l-.328.629c-.441.84-.566 1.047-.871 1.414l-.434.543l-.172.234l.199.352c.109.191.223.383.258.418s.242.398.465.797l.402.727l.387-.113zm1.547-4.523c.297-.105.563-.211.59-.238c.105-.102.352-1.348.352-1.781c0-.344-.109-1.027-.176-1.094c-.09-.09-.977.113-1.285.297l-.309.188l-.078.68A18 18 0 0 1 68 40.012l-.219.914c0 .012.199-.059.441-.164s.68-.273.98-.375zM50.199 38.2c-.121-.211-.254-.383-.297-.379a4.3 4.3 0 0 0-.406.133l-.332.121l.172.109c.223.148.832.398.969.402c.094.004.074-.059-.105-.387zm-1.094-.488c.566-.191 2.742-1.344 2.742-1.453c0-.008-.187.035-.422.102a3.817 3.817 0 0 1-1.824.09a5.948 5.948 0 0 0-.82-.102c-.387 0-.805.191-1.012.461c-.094.125-.195.207-.223.191s-.055-.246-.055-.5c0-.875.281-1.234 1.184-1.516c.125-.039.711-.109 1.309-.16c1.242-.102 1.582-.195 1.941-.539l.254-.242l.246.164c.93.613 1.672.379 2.383-.762a7.65 7.65 0 0 0 .734-1.656c.039-.164.031-.164-.418.141c-.437.301-.461.324-.531.648c-.172.766-.629 1.078-1.48 1.008a21.76 21.76 0 0 0-1.141-.055c-.527-.012-.715-.043-.957-.156c-.352-.16-.414-.168-.414-.055c0 .121-.727.801-1.059.988c-.242.141-.812.355-1.461.547a4.19 4.19 0 0 1-.57.098c-.75.082-.949.336-.84 1.066a2.437 2.437 0 0 0 1.059 1.645c.355.223.805.238 1.375.047m2.645-.316a3.424 3.424 0 0 1-.234-.391c-.023-.07-.211.016-.473.215l-.152.113l.242.109c.246.105.707.266.789.273c.023 0-.055-.141-.172-.32zm17.398-.586c.293-.176.555-.363.586-.414c.078-.121-.145-.672-.477-1.184a4.09 4.09 0 0 0-1.082-1.105l-.258-.18l-.09.137a3.257 3.257 0 0 0-.488 1.23l-.066.445l.313.289c.305.285.691.961.691 1.215c0 .113.008.113.172.004c.094-.062.41-.258.699-.437m-15.934-.305a.883.883 0 0 0-.133-.215c-.129-.176-.141-.18-.316-.086c-.211.109-.203.129.121.242c.266.094.328.105.328.059m8.016-.965l.449-.082v-.23a15.79 15.79 0 0 0-.27-1.723c-.027-.023-.645.277-.68.332c-.016.031-.051.457-.074.949c-.039.742-.031.891.039.867a4.81 4.81 0 0 1 .535-.113zm5.859-.91c.074-.531.129-.977.117-.988c-.082-.074-.848-.172-1.547-.199l-.848-.035l-.07.363a2.96 2.96 0 0 0-.035 1.09l.035.223l.508.066c.598.074 1.227.23 1.461.359c.094.047.184.09.203.094s.102-.437.176-.973m-4.219.594c.055-.027.402-.07.77-.094l.672-.043l-.039-.598a12.164 12.164 0 0 0-.082-.84l-.039-.242l-.691.047c-1.152.078-1.285.105-1.426.297c-.117.156-.121.199-.051.715c.137.977.094.898.465.852a1.99 1.99 0 0 0 .422-.094zm12.223-1.961c-.336-.262-1.895-1.043-1.957-.98c-.07.07.277.285.93.578l.902.41c.246.109.277.109.125-.008m-22.883-.117c.012-.012-.09-.137-.227-.277c-.324-.332-.469-.645-.422-.902c.055-.297.527-.961.898-1.262c.18-.148.352-.266.383-.266s.063.082.063.184c0 .406.227.625.656.625c.445 0 .801-.605.617-1.043a.58.58 0 0 0-.18-.246c-.078-.043-.012-.117.328-.379c1.379-1.047 4.117-2.488 5.766-3.031c1.105-.359 1.051-.34 1.016-.375c-.094-.094-2.867.516-3.363.738c-.113.051-.637.25-1.168.441c-1.117.406-3.172 1.414-3.945 1.934c-1.102.738-1.711 1.348-2.004 1.992c-.437.973-.098 1.695.906 1.902c.195.043.621.02.676-.035m-13.32-.469c.359-.187.57-.586.57-1.062c0-.34-.047-.422-.328-.562c-.543-.277-1.484-.203-1.613.125c-.102.266-.027 1.105.117 1.301c.285.391.754.465 1.254.199zm51.133.102c.32-.133.434-.367.465-.953c.039-.719.008-.793-.332-.891c-.59-.164-1.477.074-1.566.422c-.055.219.008.641.133.906c.227.469.832.711 1.301.516zm-53.137-1.66l.215-.223l-1.016-.27c-.555-.148-1.055-.293-1.105-.324s-1.031-.293-2.18-.586c-4.559-1.168-4.656-1.187-5.152-.934l-.324.164l-.855-.125a84.07 84.07 0 0 0-4.125-.441a82.81 82.81 0 0 0-6.965-.062c-2.176.141-2.07.16.836.16c1.77 0 3.254.031 3.891.078c3.621.285 5.461.523 9.242 1.195c2.73.488 4.531.914 6.383 1.516c.734.234.844.258.891.172c.031-.055.152-.199.266-.32zm56.734-.246c1.973-.547 3.105-.793 5.563-1.215l1.617-.277a67.386 67.386 0 0 1 11.691-.926c2.246.023 2.277 0 .164-.137c-1.555-.098-5.742-.047-7.344.09c-1.543.133-2.785.27-3.77.418l-.816.121l-.336-.156a1.7 1.7 0 0 0-.543-.156a23.73 23.73 0 0 0-2.379.5c-.117.039-1.168.316-2.332.613l-2.645.711l-1.047.297l-.52.133l.184.195c.102.105.215.254.25.324l.066.133l.551-.184c.301-.102 1.039-.32 1.645-.484zm-54.844-.422a9.76 9.76 0 0 0-.301-.637c-.621-1.223-1.812-2.633-2.969-3.512a9.207 9.207 0 0 1-.59-.469c-.074-.098-1.434-.875-1.531-.875c-.027 0 .191.188.477.414c1.117.875 2.445 2.227 3.121 3.168c.289.402.859 1.359 1.004 1.688c.117.258.121.258.453.262c.184.004.336-.016.336-.039m51.438-.578c.375-.754 1.039-1.687 1.824-2.562c.332-.367.617-.668.637-.672s.27-.223.563-.492s.73-.641.977-.824s.453-.348.453-.371c.004-.09-1.211.621-1.816 1.066c-.727.527-1.977 1.746-2.461 2.398c-.297.398-.937 1.492-1.117 1.91l-.074.172l.355-.008l.355-.012zm-20.895-.336c.508-.195 2.199-.52 2.836-.539c.207-.008.168-.02-.172-.062c-.867-.113-2.445.047-3.199.324c-.41.148-.422.172-.113.285c.27.102.375.098.648-.008m-6.953-.305c.484-.074.566-.109 1.004-.426c.813-.582 1.813-1.016 3.352-1.445l.344-.098l-.562.035c-1.086.063-2.375.355-3.035.691a6.83 6.83 0 0 0-1.473 1.043c-.152.156-.25.285-.219.281s.297-.039.59-.082zm-49.375-.699c-.02-.02-.074-.023-.121-.004s-.035.035.039.035c.066.004.102-.012.082-.031m0 0\\\"/><path fill=\\\"#0b99d2\\\" d=\\\"M82.969 103.938c-1.98-.211-4.883-1.004-6.84-1.871c-2.312-1.02-3.871-2.113-5.863-4.098c-1.336-1.332-1.824-1.879-3.262-3.641l-.937-1.141c-.059-.07-.211-.012-.84.301c-1.488.746-5.828 2.551-8.121 3.375c-3.941 1.422-7.195 2.289-9.988 2.664c-1.254.168-3.773.23-5.074.125c-4.066-.324-7.086-1.422-8.406-3.055c-.691-.855-1.246-2.062-1.086-2.359c.063-.117.082-.121.238-.043c.094.051.512.359.938.688c1.188.926 1.844 1.258 3.184 1.613c1.496.398 2.605.539 4.555.582c2.246.047 2.91-.031 5.371-.641c2.773-.691 5.391-1.578 7.531-2.562c.918-.422 6.324-3.117 8.23-4.102c1.227-.637 1.262-.656 1.223-.82c-.059-.246-.422-1.223-.863-2.312c-.488-1.199-1.254-3.305-2.113-5.82c-.852-2.477-1.387-3.961-1.461-4.035c-.066-.066-.738.828-2.055 2.742c-1.062 1.551-1.312 1.824-1.668 1.82c-.469-.004-1.289-.449-2.289-1.246c-.273-.219-1.254-1.145-2.18-2.062s-1.715-1.668-1.75-1.668c-.293 0-.531.922-.539 2.055c0 .766.012.875.164 1.27c.094.234.156.441.137.461c-.059.059-1.047-.586-1.371-.895c-.41-.395-.832-1.238-1.047-2.102c-.086-.336-.176-.633-.199-.656c-.07-.07-.52.488-.711.887c-.324.68-.461 1.344-.453 2.199c.004.422-.008.766-.023.766c-.117 0-.426-.234-.668-.5c-.562-.629-.926-1.449-1.07-2.434c-.141-.93-.148-.941-.496-.539c-.504.59-.898 1.676-.902 2.492v.355l-.348-.379c-.652-.707-.934-1.594-.875-2.73c.043-.84.195-1.352.656-2.246c.207-.398.434-.941.504-1.211c.273-1.016.719-1.609 1.527-2.031c.695-.363 1-.43 2.176-.469c1.816-.062 3.32.109 4.172.477c.395.172.965.754 2.477 2.531l1.469 1.703c.301.332.309.34.406.219c.055-.07.297-.52.535-.996l.434-.871l.059-.871c.082-1.219.332-1.836 1.02-2.512c.473-.465.578-.543 1.148-.875c.246-.145.449-.297.449-.336l-.059-.699c-.082-.887-.172-1.262-.328-1.344c-.074-.039-.457-.094-.852-.125c-1.203-.09-3.004-.477-4.129-.891c-2.074-.762-5.379-2.418-9.445-4.727c-2.012-1.141-3.664-1.988-4.57-2.336c-2.406-.926-4.957-1.211-6.508-.719c-1.207.379-2.418 1.16-2.637 1.699c-.051.129-.152.629-.223 1.105c-.145.969-.195 1.223-.223 1.195c-.012-.012-.066-.488-.121-1.059s-.125-1.109-.156-1.195c-.117-.309-1.09-.844-1.887-1.035c-1.062-.258-3.035-.223-3.875.063c-1.703.586-3.816 2.199-5.402 4.125l-.527.641l-.137.902c-.156 1.039-.301 1.727-.371 1.77c-.082.051-.129-.496-.129-1.527v-.98l-.574-.383c-.805-.539-1.715-.969-2.445-1.16c-.555-.141-.707-.156-1.43-.129c-.656.023-.895.059-1.262.184c-2.461.855-4.516 3.828-5.957 8.602c-.922 3.07-1.41 5.449-1.418 6.91c-.004 1.02.094 1.629.605 3.793c.227.953.398 1.746.379 1.766c-.125.125-1.113-2.637-1.746-4.875C1.449 74.469.332 68.27.129 64.762C-.156 59.828.09 55.777.871 52.5c.332-1.395 1.395-4.641 2.07-6.316c2.395-5.957 6.934-11.578 13.023-16.125c.582-.434 1.137-.875 1.234-.98l.18-.187l-.363-.047c-.848-.105-5.727.047-7.266.227c-.305.035-.566.051-.582.035c-.078-.078 2.188-.543 3.344-.687c4.191-.52 9.781-.43 13.75.219l.824.133l.492-.168c.379-.129.559-.156.758-.125c.484.074 2.359.527 4.402 1.066l4.582 1.141c.133 0 .152-.02.113-.137c-.074-.246-.281-.621-.633-1.168c-.766-1.18-1.289-1.785-3.152-3.641c-1.105-1.098-1.41-1.434-1.32-1.453c.148-.031 1.57.684 2.309 1.16c1.184.762 2.355 1.832 3.066 2.785c.281.379.531.785 1.227 1.988c.168.293.469.723.668.953c.563.645.734 1.266.52 1.867c-.133.379-.332.621-.75.898c-.203.137-.426.309-.488.383c-.383.441-1.352 3.121-2.062 5.699c-.676 2.453-1.648 6.57-1.648 6.977c0 .074.125.273.281.449c.438.488.703 1.098.875 2.016c.012.07.07.148.129.172c.082.031 2.902.504 7.789 1.305l.52.082l.152-.242a5.54 5.54 0 0 0 .254-.453c.055-.113.16-.227.23-.246s.914-.133 1.875-.254c2.754-.352 6.422-.918 9.664-1.496c1.688-.301 2.031-.336 2.25-.219c.133.074.254-.035 2.148-1.937c2.57-2.578 3.672-3.781 4.203-4.578c1.445-2.176 1.711-4.707.598-5.73c-.355-.328-.73-.406-1.902-.398c-1.047.008-2.043.129-3.234.391c-1.523.336-1.645.391-1.949.863c-.332.512-.789.918-1.488 1.328c-.871.512-1.328.883-2.457 1.977c-1.676 1.633-2.055 1.902-2.582 1.852c-.375-.039-1.133-.41-1.164-.57c-.027-.148.313-.504.953-.992c1.148-.871 2.246-2.168 2.621-3.094c.23-.566.32-1.262.207-1.617c-.078-.246-.113-.281-.285-.297c-.105-.012-.465.07-.797.18c-.594.195-.902.371-.902.512c0 .039.188.262.418.496l.422.43l-.219-.039a26.54 26.54 0 0 1-.891-.203c-.586-.141-.707-.152-.922-.086c-.441.133-.395.328.246 1.012c.293.313.367.422.281.422c-.336-.008-1.105-.191-1.516-.367c-.691-.293-.934-.172-.684.344c.125.254.363.508.777.82l.188.141l-.312-.035c-.539-.066-1.031-.211-1.68-.492c-.395-.172-.762-.289-.996-.312c-.441-.043-.781-.227-1.137-.613c-.559-.609-.844-1.602-.633-2.211c.094-.273.375-.418 1.023-.539c1.164-.219 1.922-.559 2.477-1.113c.355-.355.438-.559.344-.836c-.043-.125-.078-.48-.078-.789c0-.516.016-.59.207-.949c.867-1.617 4.598-3.645 8.668-4.711c1.34-.352 2.398-.484 2.969-.371c.184.039.168.055-.508.473c-.383.238-.895.59-1.133.785c-.566.453-1.734 1.621-2.098 2.098c-.281.371-.547.84-.547.961c0 .152.824.008 2.223-.398c.941-.27 1.07-.336 1.539-.781c1.344-1.273 2.516-1.766 4.734-1.992c.664-.066 1.523 0 1.523.117c0 .027-.496.289-1.105.582c-1.637.797-2.258 1.188-2.113 1.332c.051.051 1.441.199 2.285.242l.777.043l.746-.262c.688-.238.809-.262 1.496-.281c.715-.023.723-.02.246.035c-.926.105-1.836.352-1.836.5c0 .031.156.098.348.156c.266.074.387.082.516.031c.297-.117 1.961-.492 2.375-.531c.223-.023.516-.059.652-.082l.25-.043l-.312-.043c-.219-.031-.137-.039.27-.023c1.02.031.922.137-.625.676c-1.082.379-1.543.57-1.539.645c0 .102.105.195.805.719c.77.57 1.219.82 2 1.109c.66.242 1.434.617 1.895.914c.402.262.852.688.809.762c-.016.023-.402-.004-.855-.066c-1.465-.191-1.723-.207-1.762-.105c-.02.051.008.297.066.551a37.92 37.92 0 0 1 .215 1.102c.059.352.152.699.203.777s.484.531.957 1.012c.91.918 1.348 1.477 1.184 1.512c-.051.012-.355-.07-.676-.176s-.754-.25-.973-.312l-.391-.113l-.051.137c-.07.184-.238 1.254-.289 1.855l-.043.477l.316.523c.535.883.809 1.543.645 1.543c-.027 0-.293-.156-.594-.344s-.566-.34-.59-.34c-.047 0-1.023 3.457-1.316 4.664c-.285 1.18-.344 1.07.668 1.297c2.055.461 7.813 1.426 10.496 1.758c1.723.211 1.98.285 2.059.602c.086.344.262.453.715.453c.676 0 4.949-.687 5.461-.879c.355-.133.352-.129.699-1.184c.164-.496.43-.914.723-1.141c.117-.09.215-.215.215-.277c0-.172-.758-3.488-1.187-5.184c-.961-3.812-1.941-6.734-2.496-7.457c-.066-.082-.309-.293-.535-.465c-.273-.207-.488-.43-.621-.652c-.176-.297-.199-.391-.199-.777c0-.559.164-.93.66-1.48c.223-.246.52-.691.762-1.145c.914-1.703 1.754-2.711 3.207-3.832c.887-.684 2.41-1.543 3.578-2.012l.227-.09l-.219.191l-.953.852c-.953.852-2.258 2.203-2.91 3.012c-.895 1.113-1.715 2.469-1.574 2.605c.078.078.973-.117 2.762-.598c2.16-.578 5.281-1.359 5.961-1.492l.582-.109l.352.148c.434.176.727.18 1.879.004c2.32-.352 4.207-.473 7.41-.473c3.867 0 6.203.219 8.613.809c.691.172.848.25.379.195c-1.383-.172-3.844-.293-5.977-.289c-1.645 0-1.918.02-1.879.145c.027.09.734.66 2.02 1.641c5.609 4.281 10.109 9.973 12.336 15.602a61.87 61.87 0 0 1 2.051 6.355c.848 3.383 1.098 8.426.66 13.195c-.352 3.82-1.145 8.16-2.246 12.285c-.34 1.277-.895 3.082-1.184 3.848c-.266.715-.699 1.664-.742 1.625c-.016-.016.238-1.191.57-2.605l.598-2.578l-.137-.84c-.512-3.152-1.484-6.77-2.469-9.184c-1.18-2.891-3.035-5.109-4.82-5.762a4.806 4.806 0 0 0-2.918-.082c-.844.254-2.371 1.043-2.723 1.406c-.164.176-.168.184-.215 1.398c-.07 1.719-.117 1.715-.406-.012c-.109-.668-.254-1.332-.32-1.477c-.305-.68-2.523-2.832-3.777-3.66c-.543-.359-1.609-.895-2.18-1.094c-.484-.168-.527-.172-1.926-.176c-1.637-.004-1.789.027-2.898.578c-.531.262-.602.32-.727.57c-.094.195-.156.496-.203.965c-.078.773-.117.965-.191.965c-.027 0-.07-.09-.09-.203s-.086-.516-.148-.898s-.172-.805-.238-.934c-.164-.32-.855-.891-1.402-1.16c-.973-.473-1.863-.664-3.133-.664c-1.008 0-1.555.074-2.609.344c-1.805.461-3.453 1.195-6.16 2.742c-3.371 1.922-5.504 3.035-8.035 4.184c-2.305 1.051-4.02 1.504-6.156 1.633c-.48.027-.922.07-.98.094c-.164.063-.238.414-.277 1.289l-.039.797h.152c.375.004 1.363.133 1.668.223c1.199.348 2.07 1.191 2.395 2.328c.055.188.137.711.188 1.16c.063.578.137.941.258 1.242c.172.441.516 1.102.73 1.414l.121.176l.188-.176c.102-.098.723-.805 1.375-1.578c1.68-1.973 2.285-2.59 2.75-2.801c.516-.234 1.133-.363 2.133-.445c1.059-.082 2.902-.027 3.371.102c.859.234 1.641.82 2.004 1.5c.094.168.242.574.332.898c.098.352.277.785.438 1.059c.34.586.492.977.617 1.578c.273 1.316-.035 2.699-.793 3.555l-.27.309l-.039-.496c-.066-.82-.496-1.875-.957-2.352c-.266-.273-.395-.227-.395.148c0 .898-.516 2.148-1.187 2.879c-.227.25-.426.414-.484.402c-.086-.016-.113-.18-.172-.949c-.09-1.133-.262-1.727-.699-2.367c-.395-.578-.504-.578-.609-.012c-.156.855-.625 1.84-1.102 2.313c-.305.305-1.129.844-1.289.844c-.043 0-.055-.043-.031-.109c.16-.398.281-1.094.281-1.586c0-.895-.293-2.039-.52-2.039c-.055 0-.906.793-1.898 1.766c-1.961 1.926-2.66 2.512-3.48 2.918c-.875.434-1.254.371-1.703-.293c-1.266-1.871-2.777-3.953-2.867-3.957s-.047.359.203 1.781c.504 2.863 1.301 6.727 1.422 6.926c.043.066.25.004 1.012-.324c1.637-.699 3.168-1.156 5.219-1.559c2.141-.422 3.328-.535 5.602-.535c2.98 0 4.816.27 7.047 1.031c3.91 1.34 6.309 3.75 7.195 7.23c.156.629.168.746.164 2.039c0 1.184-.02 1.457-.145 2.023c-.836 3.875-4.918 7.391-9.754 8.41c-.535.113-.879.133-2.578.148c-1.078.012-2.199-.008-2.488-.039zm1.141-.039a8 8 0 0 0 .07-.777l.043-.73l-.176-.035a38.16 38.16 0 0 1-1.016-.246l-.93-.23c-.07-.016-.113.152-.203.789c-.062.445-.102.84-.09.875s.371.113.793.176l1.051.16c.387.07.426.07.457.02zm2.535-.055l.219-.035l-.047-.504c-.031-.289-.086-.527-.129-.555s-.191-.051-.332-.051c-.238 0-1.187-.129-1.621-.219l-.191-.043l-.043.695c-.023.383-.023.723 0 .762c.043.07 1.68.031 2.145-.051zm1.918-.312c.355-.078.66-.16.676-.176c.063-.059-.082-.625-.156-.621c-.043.004-.5.012-1.016.016l-.941.012l.043.414c.023.23.059.457.078.504c.039.105.355.07 1.316-.148zm-7.062-.754l.137-.895c.035-.152-.008-.18-.762-.551c-.437-.215-.949-.488-1.133-.605s-.34-.203-.348-.195s-.102.246-.215.52c-.441 1.078-.645 1.648-.613 1.73c.027.07 1.23.398 2.504.684c.32.074.316.082.43-.687zm9.172.063c.598-.266.762-.406.555-.488c-.047-.016-.379.039-.742.125s-.715.16-.789.16c-.141 0-.16.09-.09.422c.035.18.043.188.23.125c.109-.035.484-.191.836-.344m-12.383-.437c.082-.156.758-2.047.754-2.109c0-.027-.238-.234-.531-.453s-.605-.473-.699-.562l-.547-.523l-.383-.355l-.156.328c-.086.184-.301.699-.473 1.152s-.367.922-.426 1.043l-.105.223l-.562-.035l-.562-.039l.559.32c1.488.852 2.969 1.328 3.133 1.012zm10.996-.078c2.063-.23 3.934-.965 5.332-2.098c.863-.695 2.074-2.293 2.52-3.316c.625-1.441.816-3.434.496-5.109c-.145-.75-.441-1.75-.621-2.094c-.074-.145-.09-.016-.121 1.141c-.043 1.625-.172 2.25-.715 3.48c-.328.746-.547 1.082-1.094 1.68s-1.504 1.266-2.191 1.531c-.832.32-2.609.738-3.668.859c-.785.094-2.746.082-3.453-.02a13.22 13.22 0 0 1-3.336-.945a8.472 8.472 0 0 0-.812-.309c-.402-.098-2.48-1.109-2.73-1.332a9.737 9.737 0 0 0-.621-.441c-1.328-.883-3.004-2.562-4.125-4.125a14.27 14.27 0 0 1-1.387-2.223c-.656-1.23-.895-1.832-1.25-3.109c-.215-.781-.227-.844-.586-2.738l-.781-3.953a47.982 47.982 0 0 1-.484-2.77c-.199-1.375-.254-2.262-.297-4.605c-.051-2.824.066-5.082.355-6.973c.109-.734.188-1.055.492-2.086c.113-.383.574-2.285.84-3.453l.219-.941c.145-.625.43-2.281.625-3.664l.137-.965l-.207-.312c-.324-.477-.727-1.32-.863-1.797a6.44 6.44 0 0 1-.191-2.289c.059-.492.293-1.344.5-1.824c.063-.148 1.055-3.672 1.313-4.672c.223-.84.512-2.301.66-3.297c.156-1.07.16-3.617.004-4.449c-.434-2.309-1.453-3.73-3.359-4.684c-2.152-1.07-5.527-1.277-8.949-.543c-.812.176-1.523.355-1.93.492c-.648.215-1.418.438-1.516.438c-.156 0-.125-.109.234-.84c.496-1.008 1.02-1.656 2.09-2.598l.406-.355l-.527.344c-1.035.672-2.445 2.043-3.223 3.141c-.426.598-1.164 1.336-1.555 1.555c-.16.086-.266.191-.266.258c0 .234-.258.785-.453.965c-.352.336-.906.426-1.504.246c-.219-.066-.34-.074-.48-.023c-.27.094-.887.012-1.277-.168c-.289-.129-.332-.137-.332-.047c0 .117-.664.77-.996.977c-.496.313-1.676.656-2.246.656a.9.9 0 0 0-.684.453c-.105.254-.023.945.16 1.324c.086.172.313.473.504.668c.559.563.961.625 1.926.316c.449-.145 2.527-1.273 2.801-1.523c.281-.254 2.043-1.055 2.57-1.168c.563-.121.617-.105.703.195c.043.145.078.543.078.887c0 .508-.023.684-.141.965a12.36 12.36 0 0 1-.961 1.711c-.266.355-.969 1.031-1.492 1.43c-.77.586-1.258.98-1.277 1.027c-.027.078.895.438 1.125.438c.359 0 .77-.332 2.195-1.777c.77-.777 1.492-1.453 1.648-1.543s.539-.293.852-.457c.645-.336 1.281-.867 1.457-1.219c.34-.66.398-1.84.113-2.344a1.17 1.17 0 0 0-.359-.383c-.242-.145-.215-.199.148-.297A45.62 45.62 0 0 0 60 33.238l1.34-.406c.496-.148 1.844-.398 2.699-.5c1.383-.16 3.297-.094 3.555.125c.051.043.207.113.344.156c.887.281 2.004 1.109 2.52 1.867c.281.414.574 1.074.598 1.34c.008.102.074.398.145.652c.168.625.273 1.617.223 2.117c-.062.609-.219 1.328-.312 1.43c-.047.059-.207.953-.398 2.238c-.199 1.363-.348 2.176-.402 2.238c-.051.055-.137.352-.191.66l-.16.82c-.035.145-.059.676-.059 1.18c0 .828.035 1.191.184 1.902c.031.137.023.254-.016.293s-.039.207.008.516c.176 1.156.227 2.113.227 4.262s-.004 2.254-.121 2.387c-.086.094-.137.266-.168.582c-.148 1.57-.375 2.988-.648 4.023c-.086.324-.199.816-.25 1.09c-.227 1.223-.27 1.363-.453 1.469c-.16.094-.184.16-.34.996c-.25 1.32-.281 1.621-.359 3.262c-.059 1.172-.094 1.516-.168 1.602c-.086.098-.082.254.043 1.496c.262 2.699.285 3.078.199 3.238c-.098.184-.016.91.402 3.629c.281 1.832.32 2.23.223 2.289c-.051.031.016.578.207 1.688c.051.309.238 1.074.41 1.703c.211.766.297 1.164.254 1.215c-.062.074.246 1.125.441 1.5c.199.383.859 2.223.859 2.395c0 .102.086.371.191.605c.34.746 1.23 2.527 1.453 2.918c.121.207.227.434.238.5c.051.324 1.324 2.199 1.988 2.93c.641.703 3.285 3.324 3.75 3.715a17.32 17.32 0 0 0 2.191 1.492c.406.207 1.465.633 2.074.832c.797.266 2.414.547 3.766.66c.582.051 2.285.039 2.801-.02zM47.66 36.52c.098-.473.254-.84.414-.973c.148-.121.543-.102.641.031c.109.148.105.207-.039.441c-.078.129-.195.219-.328.254s-.285.156-.453.371c-.137.176-.266.32-.285.324s0-.199.051-.449zm44.691 65.461c-.012-.016-.195.031-.406.102c-.27.09-.371.152-.348.215s.113.047.406-.102c.207-.105.363-.203.348-.215m-16.75-1.445c.051-.129.145-.344.207-.48c.195-.434.75-1.848.75-1.91s-1.687-1.855-1.742-1.855c-.039.004-.406.492-1.113 1.492l-.621.859l-.113.148l-.918-.137c-.508-.07-.93-.121-.941-.109c-.059.055 1.316 1.16 2.117 1.703l.465.32c.152.113.609.176 1.391.191l.422.012zm-28.863-1.137c3.512-.504 6.48-1.277 8.406-2.191c.359-.172.863-.402 1.121-.516c.621-.273 2.898-1.379 5.203-2.531l1.871-.937l.238-1.797c.129-.992.223-1.816.207-1.832c-.051-.047-.852.332-4.645 2.203l-1.34.684c-.18.141-3.133 1.59-3.773 1.852l-.996.414c-1.328.598-4.84 1.676-7.047 2.164c-2.047.449-2.777.527-4.437.477c-1.832-.055-2.902-.199-4.488-.598c-1.703-.434-2.602-.879-3.598-1.797c-.523-.484-.785-.684-.785-.605c0 .141.367.941.637 1.387c.602.996 1.355 1.645 2.633 2.27c1.363.668 2.445.965 4.543 1.258c1.773.246 2.035.27 3.527.277a13.69 13.69 0 0 0 2.723-.18zm27.004-2.281c.418-.59.762-1.094.762-1.117s-.219-.312-.484-.641a14.14 14.14 0 0 1-1.316-1.895c-.113-.199-.227-.34-.254-.309s-.43.57-.902 1.203l-.895 1.195c-.035.039-2.309-.543-2.699-.691c-.094-.035-.172-.047-.172-.02c.004.141 1.848 2.293 2.5 2.914c.328.313.34.316.984.426l1.09.184c.414.074.441.07.531-.051c.051-.066.434-.609.855-1.199zm14.785.383a10.65 10.65 0 0 0 3.195-1.164c1.543-.926 2.645-2.301 3.098-3.867c.242-.84.305-1.297.301-2.281c-.004-.773-.027-.992-.168-1.52c-.227-.852-.461-1.387-.953-2.172s-.562-.84-1.914-1.516c-1.391-.695-2.539-1.051-4.48-1.395c-1.336-.234-1.473-.246-3.285-.285c-1.746-.039-3.328.027-4.059.168l-.934.156a37.93 37.93 0 0 0-3.051.594c-.852.211-1.68.512-1.492.543c.719.109 2.445.605 3.199.914c.57.234 1.609.762 1.914.973l.262.18h1.48c1.523 0 2.781.07 3.383.188a19.25 19.25 0 0 1 1.992.504c2.379.762 4.051 2.676 4.211 4.816c.059.793-.152 1.375-.855 2.363a7.71 7.71 0 0 1-1.559 1.551c-.383.258-1.449.781-1.848.906c-.457.145-1.316.313-1.586.313c-.391 0-.086.086.469.133c.727.059 1.926.012 2.68-.102m-2.52-.434a6.61 6.61 0 0 0 3.594-1.977c.805-.848 1.328-1.812 1.332-2.449c.004-.594-.449-1.406-1.156-2.086c-1.129-1.082-2.73-1.75-5.129-2.141c-1.309-.215-4.699-.18-6.629.07c-1.391.18-3.617.938-4.262 1.445l-.148.121l.535.715c1.125 1.496 2.305 2.766 3.441 3.688c1.699 1.383 3.773 2.422 5.352 2.676a12.26 12.26 0 0 0 3.07-.062m-15.16-2.355a10.02 10.02 0 0 1 .473-.641c.063-.066.164-.203.23-.305s.266-.383.445-.625l.324-.437l-.594-1.148c-.582-1.121-1.145-2.344-1.145-2.48c0-.094-.168-.086-.23.012c-.027.047-.219.219-.43.391l-1.172.977c-.434.367-.844.668-.906.668s-.625-.141-1.246-.316s-1.141-.305-1.156-.289c-.047.043.883 1.941 1.422 2.91c.289.516.523.867.613.914c.082.043.555.191 1.051.332l1.402.402a9.48 9.48 0 0 0 .527.148c.02.004.191-.227.391-.512zm-5.594-3.668c-.316-.645-.461-.887-.461-.773c0 .105.727 1.477.781 1.477c.016 0-.129-.316-.32-.703zm3-.621l.918-.793l.867-.727c.211-.18.395-.352.406-.387s-.09-.324-.227-.645c-.328-.77-.68-1.707-.875-2.34l-.164-.52l-.746.492c-1.391.922-1.984 1.27-2.113 1.238c-.137-.031-1.531-.637-2.273-.988c-.328-.152-.473-.195-.484-.141c-.043.172.512 1.934 1.098 3.5c.301.809.348.875.648.953s.844.238.98.293a38.6 38.6 0 0 0 1.496.445c.02.004.23-.168.469-.383zm-4.105-1.648c-.051-.098-.277-.82-.504-1.609s-.437-1.477-.473-1.535s-.059-.141-.059-.18s-.039-.102-.09-.141s-.277-.809-.523-1.781c-.555-2.187-.656-2.539-.773-2.633c-.098-.074-.223-.598-.641-2.656l-.273-1.309a34.35 34.35 0 0 1-.211-.953c-.102-.473-.195-.766-.262-.812c-.141-.105-.242-.93-.406-3.363c-.125-1.84-.145-2-.266-2.094c-.113-.094-.133-.223-.203-1.246a126.31 126.31 0 0 1-.148-3.129c-.062-1.777-.082-2-.187-2.148c-.102-.141-.133-.441-.254-2.25c-.145-2.223-.137-3.746.023-4.672c.07-.41.07-.496-.008-.613s-.082-.191.02-.617c.121-.527.652-2.184.801-2.508c.055-.117.309-.789.566-1.5s.535-1.441.617-1.625c.188-.402.199-.461.141-.672c-.039-.125.031-.328.324-.941c.203-.43.469-.93.586-1.113s.434-.695.699-1.141l.48-.805l-.996 1.023l-1.875 1.926l-.883.902l.047.375c.023.207.043.75.035 1.215c-.008 1.02-.184 1.797-.57 2.535c-.242.465-.32.574-.945 1.313l-.289.34l-.047 1.531c-.051 1.723-.004 4.883.094 6.012l.156 2.211c.148 2.293.469 5.609.59 6.129a16.78 16.78 0 0 1 .16.934c.301 2.023.82 4.684.969 4.945c.031.055.227.688.434 1.406c.371 1.285 1.773 5.543 1.867 5.664c.023.031.074.16.109.277c.117.402.953 2.645 1.07 2.875c.066.129.32.73.563 1.34c.48 1.199.551 1.352.598 1.305c.02-.016-.012-.109-.062-.211zM67.027 86l1.391-.91c.742-.484.789-.531.754-.684c-.02-.09-.059-.191-.082-.223s-.062-.121-.082-.187c-.316-1.109-.43-1.633-.551-2.492c-.078-.562-.16-1.027-.176-1.027c-.039 0-.426.285-2.281 1.676l-.531.402l-.324-.164c-.176-.09-.797-.359-1.379-.605s-1.164-.496-1.293-.562l-.234-.121l.035.141l.883 3.406l.125.402l.492.211l.957.43c.871.414 1.527.695 1.613.695c.047.004.355-.172.684-.387zm-.516-4.664l1.441-1.105c.43-.328.445-.348.418-.559l-.527-3.301a27.29 27.29 0 0 1-.156-1.023c-.051-.371-.102-.687-.109-.695s-.398.262-.859.605l-1.273.926a8.852 8.852 0 0 0-.559.414a4.35 4.35 0 0 1-.699.512c-.125.066-.215.031-.777-.293a32.52 32.52 0 0 0-1.168-.637c-.293-.145-.707-.375-.922-.512s-.406-.23-.426-.211s.051.422.152.895a66.19 66.19 0 0 1 .383 1.887c.215 1.16.352 1.781.469 2.148c.078.242.102.254.914.613c1.898.832 2.516 1.094 2.609 1.094c.055 0 .547-.34 1.09-.758zM3.449 80.223c-.348-1.488-.406-1.773-.738-3.609l-.469-2.484c-.25-1.191-.699-4.594-.969-7.344c-.297-3.07-.383-5.223-.281-7.105c.082-1.562.117-1.914.316-3.258s.645-3.25.871-3.734a52.98 52.98 0 0 0 .406-.996c.477-1.195 1.332-2.758 1.895-3.453c.125-.156.383-.492.578-.746c.613-.812 1.918-2.078 3.023-2.941c.711-.551 2.645-1.852 3.293-2.215c.285-.156.566-.332.629-.391s.262-.187.449-.289c1.781-.984 3.574-1.785 6.406-2.859c.324-.121.676-.262.777-.309c.871-.395 6.719-2.305 8.746-2.855l1.773-.5c.543-.168 1.914-.488 3.328-.781l1.402-.305c.273-.062.855-.164 1.293-.227s.793-.129.793-.152s-.07-.117-.152-.215a1.913 1.913 0 0 1-.371-.785c-.035-.152-.051-.156-.27-.109c-.129.031-.43.078-.672.113c-.988.129-5.52 1.031-6.156 1.223c-.168.051-.742.191-1.277.313c-1.23.277-2.797.68-3.238.832a23.27 23.27 0 0 1-1.152.344c-1.207.336-2.211.648-2.5.781a3.128 3.128 0 0 1-.434.16a45.23 45.23 0 0 0-2.566.906c-.148.066-.484.207-.746.313c-1.453.578-3.707 1.637-4.434 2.086c-.219.137-.562.336-.758.445c-.48.266-1.566.973-3.191 2.074a44.95 44.95 0 0 0-2.957 2.277c-1.84 1.59-2.992 3.012-3.875 4.777a10.73 10.73 0 0 0-.945 2.551C.764 53.748.62 54.611.331 57.451c-.156 1.5-.152 5.645 0 7.406c.117 1.355.312 3.105.441 3.953c.234 1.547.965 5.484 1.18 6.348c.699 2.816 1.02 4.02 1.293 4.836c.18.539.336.969.348.957s-.055-.34-.145-.727zm121.512-.926c.563-1.934.719-2.547 1.086-4.234l.379-1.711c.387-1.625.965-5.621 1.297-8.961c.172-1.727.133-5.77-.066-7.066a64.24 64.24 0 0 1-.187-1.461c-.172-1.445-.398-2.82-.621-3.742c-.18-.758-.777-2.395-1.125-3.086c-.277-.547-1.176-1.898-1.586-2.387c-.484-.57-1.93-2.008-2.32-2.312a18.346 18.346 0 0 1-.68-.551c-.602-.504-2.027-1.539-3.187-2.309l-1.184-.789c-1.359-.918-3.734-2.145-5.711-2.941l-1.305-.547a38.309 38.309 0 0 0-1.574-.566l-1.586-.562c-.516-.234-4.195-1.258-7.285-2.023c-.715-.18-3.684-.793-5.691-1.184l-.965-.184a9.842 9.842 0 0 0-.664-.09l-.414-.039l-.043.25c-.023.141-.141.398-.258.57s-.207.324-.195.332s.27.047.578.09c.617.082 1.039.164 3.047.594c1.379.293 2.637.605 4.359 1.086l3.078.91l1.59.5a124.41 124.41 0 0 1 4.98 1.742c.102.047.648.254 1.211.469s1.211.469 1.434.57a31.73 31.73 0 0 0 1.09.465c.992.406 2.82 1.336 3.578 1.82l.965.598c.617.355 2.191 1.434 2.895 1.98c2.293 1.793 3.793 3.586 5.023 6.02c.535 1.055.836 1.859 1.348 3.602c.91 3.09 1.012 8.438.285 14.754a28.22 28.22 0 0 1-.312 2.176l-.219 1.402c-.258 1.73-.578 3.613-.773 4.543l-.496 2.367c-.445 2.121-.41 2.109.227-.094zm-79.594-1.191a4.722 4.722 0 0 1 .871-1.727c.176-.219.32-.414.32-.437c.008-.25.152-.992.25-1.293a1.81 1.81 0 0 1 .434-.754c.094-.105-.039-.281-.437-.582c-.359-.27-.609-.305-1.043-.152c-.277.098-.383.172-.891.645c-.648.605-1.008 1.652-1.016 2.969c-.004 1.234.289 2.098.953 2.793l.348.367l.043-.676c.023-.375.098-.891.168-1.152zm39.828.68c.32-.656.41-1.105.41-2.012c-.004-.922-.133-1.523-.473-2.207c-.395-.785-1.293-1.496-1.887-1.496c-.27 0-.57.16-.914.484c-.195.184-.211.242-.086.383c.289.336.535 1.02.629 1.762c.027.207.105.375.277.59c.73.922 1.117 2 1.125 3.164l.004.496l.359-.387a3.99 3.99 0 0 0 .555-.777zm-36.465.598c-.039-.168-.07-.625-.074-1.02c-.004-.91.133-1.426.656-2.477c.371-.746.383-.785.406-1.344l.027-.578l-.211-.176c-.262-.219-.691-.406-.934-.406s-.504.141-.844.453c-.437.402-.656.906-.797 1.828c-.164 1.09.141 2.277.828 3.219c.203.277.93.887.988.828c.012-.016-.008-.16-.047-.328zm32.695-.25c.406-.406.719-.961.93-1.641c.117-.387.141-.605.141-1.246c-.004-.844-.098-1.336-.359-1.852s-.91-1.012-1.305-1.012c-.25.004-.707.207-.93.422c-.156.148-.172.203-.172.617c0 .547.145 1.02.531 1.73a4.13 4.13 0 0 1 .531 1.676c.055.465 0 1.395-.105 1.777l-.043.152l.211-.137c.117-.074.375-.293.57-.488zm-39.191-.988c.168-.566.527-1.207.961-1.715c.219-.25.309-.418.34-.621c.094-.559.582-1.691.883-2.055l.172-.203l-.246-.215c-.234-.207-.262-.215-.629-.184c-.734.055-1.535.699-1.945 1.563s-.531 1.344-.527 2.121c0 .809.137 1.332.504 1.953l.234.398l.055-.273a9.55 9.55 0 0 1 .199-.77zm45.629.391c.359-.715.457-1.93.219-2.797c-.234-.848-.523-1.391-.988-1.848c-.5-.488-.91-.711-1.395-.746c-.332-.023-.367-.012-.586.191l-.238.215l.195.242c.273.34.539.957.734 1.703c.152.574.195.664.461.941c.387.402.898 1.418 1.074 2.133l.133.555l.121-.148a4.17 4.17 0 0 0 .27-.441m-30.758-.887c.398-.914.527-1.359.609-2.07l.07-.637l-.18-.187c-.426-.445-1.039-.762-1.75-.902l-.195-.039l-.535 1.066c-.328.648-.52 1.102-.492 1.148s.16.203.297.352c.664.711 1.23 1.609 1.461 2.316l.078.242l.184-.336c.102-.184.305-.613.453-.953m16.238.391c.203-.457.723-1.18 1.281-1.793c.137-.152.246-.293.238-.309l-.543-1.074l-.523-1.043l-.254.039c-.414.059-.949.301-1.379.621l-.406.305l.027.652c.039.848.234 1.504.77 2.598c.414.84.418.844.496.664c.043-.102.176-.398.293-.66m1.547-1.27l1.914-1.656l.883-.762a15.46 15.46 0 0 1 .539-.473c.184-.156.184-.164.125-.5a2.77 2.77 0 0 1-.031-.672l.035-.336l-.16.148a8.62 8.62 0 0 0-.535.613a33.38 33.38 0 0 1-.766.934l-2.187 2.645a5.22 5.22 0 0 1-.32.367c-.359.383-.125.238.504-.309zm-20.062.051c-.176-.23-.508-.645-.742-.918l-2.25-2.707a21.717 21.717 0 0 0-.469-.551l-.234-.27l-.004.52c0 .285-.02.59-.043.676c-.031.133.008.191.277.402a15.18 15.18 0 0 1 .695.594c.211.191.574.512.816.715l.465.406c.02.02.215.188.438.375s.613.527.867.758s.473.422.484.422s-.125-.187-.301-.422zm9.969-.59c1.742-1.258 2.922-2.18 2.922-2.277s-.27-3.121-.352-3.918l-.031-.332l-.199.133a16.78 16.78 0 0 1-.633.383l-1.367.828l-1.281.762l-.348.195l-.457-.277c-.254-.152-.699-.441-.992-.641s-.758-.492-1.031-.656s-.578-.367-.676-.449s-.191-.141-.203-.125c-.031.031.199 3.414.293 4.289c.043.367.105.695.145.727a6.22 6.22 0 0 0 .504.285l.965.531c.832.477 1.891 1.043 1.965 1.051c.039.004.387-.227.777-.508zm7.656-2.34c.289-.137.719-.285.953-.328l.426-.078l-.023-.727c-.027-.695-.039-.746-.277-1.246c-.492-1.02-1.285-1.711-2.297-1.992c-.332-.094-1.418-.121-1.5-.039c-.031.027-.055.434-.051.902c0 .801.012.891.207 1.477c.148.449.938 3.266.941 3.371c0 .004.246-.238.547-.539c.445-.441.645-.594 1.074-.801m-14.187-.293c.121-.926.129-1.125.063-1.613l-.34-2.379c-.074-.074-.926.453-1.262.781c-.77.75-1.023 1.316-1.066 2.379l-.031.719l.43.078c.555.098 1.34.48 1.73.84c.168.156.316.277.324.266s.078-.492.152-1.07zm-7.484-.711c.004-1.254-.27-1.504-2.078-1.906c-.289-.066-.91-.109-1.836-.133c-1.746-.039-2.207.031-2.992.453c-.586.316-.883.57-1.059.914c-.137.266-.133.27.16.145c.848-.355 4.449-.254 6.41.18c.637.141.949.473 1.098 1.164l.07.328l.113-.277c.082-.199.113-.441.113-.867zm28.473.117c.273-.305.406-.371.949-.484c2.063-.437 5.402-.516 6.266-.148c.129.055.25.086.266.066s-.051-.152-.148-.309c-.336-.527-1.238-1.055-2.074-1.215c-.77-.145-3.078-.086-3.941.105c-1.195.262-1.695.559-1.828 1.082c-.105.418-.086 1.27.035 1.625l.105.305l.117-.437c.063-.238.18-.504.254-.59zm-15.051-1.801c.137-.094.598-.371 1.023-.617s.855-.512.945-.586s.438-.285.766-.473l.594-.34v-.437c0-1.328.164-2.777.488-4.297c.066-.309.113-.566.109-.574s-.359.203-.785.469l-2.457 1.508l-1.172.723c-.48.313-.402.332-1.008-.227l-1.082-.965l-1.305-1.168c-.328-.301-.621-.547-.648-.547c-.066 0-.012 1.797.113 3.879l.09 1.605c0 .082.148.211.453.406l1.078.699l1.02.664l.742.473l.352.227l.215-.129a12.29 12.29 0 0 0 .469-.293m-.219-5.195a17.54 17.54 0 0 0 .715-.441a49.54 49.54 0 0 1 1.121-.695l2.637-1.641c.066-.059.137-.23.16-.406a11.87 11.87 0 0 1 .41-1.812c.219-.699.398-1.684.523-2.848c.148-1.434.152-1.465.074-1.414l-.574.355l-.848.539a7.03 7.03 0 0 1-.555.336a15.9 15.9 0 0 0-.801.492a37.54 37.54 0 0 1-.996.625c-.223.133-.676.414-1.008.629c-.617.402-1.102.672-1.141.637c-.016-.012-1.004-1-2.203-2.195s-2.195-2.156-2.215-2.137c-.07.066-.215 1.512-.215 2.16c-.004.789.238 4.609.297 4.707c.051.086 1.641 1.516 2.309 2.074c.258.219.625.547.816.73a8 8 0 0 0 .59.516c.215.16.266.176.375.105c.066-.043.305-.184.527-.316zm-9.773-.371a6.5 6.5 0 0 0 .75-.098l.871-.187a17.74 17.74 0 0 0 1.133-.289l.547-.164v-.316a10.83 10.83 0 0 0-.039-.734l-.039-.414l-.164.102a5.96 5.96 0 0 0-.422.309c-.437.352-1.207.785-2.078 1.172l-1.18.539l-.344.168l.25-.027l.715-.059zm20.105-.137a20.62 20.62 0 0 0-.746-.332c-.445-.176-1.574-.742-1.684-.844c-.055-.051-.121-.09-.145-.09c-.059 0-.641-.414-.992-.703c-.164-.137-.312-.234-.328-.219c-.043.047-.273 1.121-.273 1.301c-.004.145.043.176.48.32a14.06 14.06 0 0 0 1.789.477a18.91 18.91 0 0 1 .621.133c.207.051 1.105.148 1.621.172c.066.004-.086-.09-.344-.215zm-57.383-1.766c.215-1.203.93-3.969 1.27-4.914c1.055-2.941 2.137-4.59 3.77-5.742c2.098-1.48 4.461-2.473 6.781-2.844c.867-.141 2.145-.254 2.84-.254h.457l.211-.328a5.66 5.66 0 0 1 .5-.648l.293-.324l-.297-.051c-.543-.09-2.668-.051-3.441.066c-1.277.195-3.18.648-3.703.883a46.7 46.7 0 0 1-.977.395c-1.051.414-1.504.648-2.355 1.223c-1.594 1.07-2.852 2.586-3.742 4.523c-.641 1.387-.965 2.414-1.367 4.301c-.32 1.527-.5 3.191-.484 4.516c.008.516.008.523.063.227l.184-1.027zm94.332.141a25 25 0 0 0-.355-3.5c-.137-.77-.457-2.129-.551-2.336c-.031-.066-.16-.43-.289-.809a13.05 13.05 0 0 0-1.297-2.801c-.605-.992-.793-1.227-1.684-2.105c-.754-.742-1.863-1.527-2.746-1.937c-1.73-.805-3.293-1.285-5.285-1.625c-.855-.148-1.18-.172-2.305-.176c-.719-.004-1.414.016-1.543.043l-.238.051l.371.398c.203.215.418.504.48.641l.105.242l.945.043c1.914.082 4.074.469 5.043.906c.141.063.449.191.688.285c.813.32 1.43.633 2.324 1.176c1.211.73 2.066 1.406 2.531 2.004c.203.266.41.516.453.559c.27.277 1.203 2.09 1.566 3.043c.32.848.848 2.484 1.027 3.207a53.74 53.74 0 0 1 .664 3.285c.039.281.09.512.105.512s.012-.496-.012-1.105zm-57.699-1.918c1.359-.172 2.434-.531 3.223-1.07l.43-.293l-.012-.777c-.008-.426-.023-.789-.039-.801c-.023-.023-.805.383-2.145 1.109c-1.977 1.07-2.32 1.211-3.98 1.641l-.836.215l.336.039c.934.102 1.879.082 3.023-.062zm23.895.055l.309-.039l-.215-.055c-1.148-.289-1.988-.535-2.441-.715c-.707-.277-1.812-.898-2.82-1.586c-.445-.305-.812-.531-.82-.504s-.086.379-.176.785s-.176.773-.195.816c-.051.137.75.594 1.422.813c1.504.488 3.422.676 4.938.484zM29.626 58.04c.141-.687.199-.906.605-2.191c.266-.836.398-1.074 1.145-2.078c.598-.801.973-1.242 2.004-2.344c.332-.359.605-.68.605-.711s-.023-.043-.051-.027s-.383.051-.789.074l-.734.039l-.32.344c-.363.395-1.254 1.66-1.594 2.258a16.28 16.28 0 0 0-.93 2.113c-.258.762-.383 1.891-.41 3.645l-.023 1.617l.176-1.023zm69.219.5c-.102-1.781-.305-2.863-.73-3.891c-.453-1.094-1.5-2.738-2.273-3.566l-.27-.289l-.621-.035a8.375 8.375 0 0 1-.801-.07c-.227-.047-.199.008.305.539c.629.664.984 1.063 1.363 1.523l.586.711c.629.758 1.184 1.727 1.43 2.504c.234.734.566 2.246.895 4.094l.082.465l.051-.402c.031-.234.023-.887-.016-1.582zm-32.961.125a18.96 18.96 0 0 1 .859-.527c.195-.109.434-.266.527-.34s.422-.289.73-.473a39.03 39.03 0 0 0 1.219-.758c.66-.426.664-.43.703-.715c.059-.437.043-2.867-.023-3.848c-.066-.965-.195-2.293-.227-2.328c-.02-.023-.609.332-1.629.992l-1.32.836c-.324.203-.676.43-.777.504c-.258.188-1.148.711-1.215.711c-.027 0-.301-.273-.602-.602l-.984-1.078l-1.082-1.168c-.355-.387-.664-.699-.687-.699s-.125.23-.223.512s-.254.684-.348.887s-.383.992-.648 1.742l-.562 1.559c-.117.254-.402 1.262-.402 1.414c0 .082.801.922 2.289 2.406l2.285 2.281l.809-.492zm10.676-.684c.898-.105 1.313-.191 2.301-.48l.715-.207l-.465-.016c-1.855-.055-3.008-.223-4.203-.605l-.684-.219l-1.121.227c-1.125.23-1.273.293-1.273.535c0 .125.195.223.996.5c.98.344 2.285.434 3.734.266zM55 57.945c.27-.035.602-.094.738-.133c1.449-.41 1.805-.66 1.137-.793l-1.656-.34l-1.328-.27l-.844.27c-.465.152-1.082.316-1.375.367c-.504.086-1.82.199-2.687.23l-.406.016l.934.211a17.73 17.73 0 0 0 2.305.41c.844.098 2.531.117 3.184.031zm2.227-2.211c.027-.535.035-.984.023-.996s-.164.027-.336.094c-.852.324-2.289.324-3.754.008c-2.363-.512-3.055-.727-4.645-1.422l-1.918-.836c-.84-.363-.875-.391-1.371-.898c-.406-.418-.543-.523-.691-.523a18.06 18.06 0 0 1-1.215-.187a560.21 560.21 0 0 0-6.816-1.078c-.133-.02-.242.016-.375.125c-.102.082-.465.238-.809.344c-.602.188-.957.406-.875.539c.035.059.816.32 3.273 1.102a50.15 50.15 0 0 0 1.93.559l1.867.508c.426.121 1.676.441 2.77.707l2.59.648a88.6 88.6 0 0 0 2.18.504l2.465.563c.484.121 1.703.387 2.707.59l2.754.59c.191.063.203.008.246-.937zm15.66.598l1.68-.348c1.164-.242 2.277-.492 2.582-.582c.289-.086.621-.164 2.395-.562l2.023-.477l2.336-.59l2.137-.551c.098-.039.867-.254 1.711-.477s1.914-.531 2.375-.68l2.133-.684c.707-.23 1.309-.445 1.328-.48c.078-.121-.258-.348-.719-.484c-.492-.145-1.023-.391-1.094-.5c-.02-.035-.129-.051-.238-.031l-2.871.438l-2.957.477c-.219.055-.402.188-.844.605c-.547.52-.586.543-1.461.902a43.16 43.16 0 0 0-1.555.676c-1.082.508-1.344.602-2.23.82l-1.598.398c-.996.25-1.926.43-2.637.508c-1.004.109-2.406-.105-2.824-.437c-.09-.066-.172-.125-.187-.125s-.047.105-.066.234s-.109.652-.195 1.16s-.141.949-.125.977s.098.027.172-.004s.402-.113.73-.184zM65.34 51.98c.301-.199.781-.508 1.07-.684s.703-.441.918-.586a89.46 89.46 0 0 1 2.023-1.309c.352-.223.371-.246.336-.437c-.18-.953-.156-2.777.047-3.844c.051-.254.082-.469.074-.477s-.18.035-.383.102s-.523.164-.711.219s-.398.129-.469.16c-.277.129-2.301.684-2.316.637a14.35 14.35 0 0 0-.414-.711a32.26 32.26 0 0 1-.664-1.164c-.148-.277-.285-.504-.305-.5c-.113.008-1.629 2.289-2.273 3.422c-.586 1.027-.902 1.641-.902 1.742c0 .039.215.301.48.586l1.293 1.402l1.199 1.301c.211.227.387.434.387.457c0 .086.059.055.609-.316zM55.238 52a5.07 5.07 0 0 0 .902-.312c.961-.457 1.582-1.07 2.262-2.234c.258-.437.59-1.258.531-1.305c-.02-.016-.645.098-2.637.484c-.445.086-1.789.309-2.988.5l-2.582.406c-2.016.332-4.344.629-4.902.629c-.145 0-.262.02-.262.047s.117.113.262.195s.457.289.688.457c.473.348.551.367 2.332.695c1.945.355 3.051.504 4.094.559c.695.031 1.828-.027 2.301-.121zm23.371-.316a42.6 42.6 0 0 0 3.727-.621c.633-.145.789-.203 1.223-.488l.801-.512l.301-.191l-.207-.035c-.117-.02-.504-.066-.863-.102s-.82-.094-1.027-.133s-1.086-.16-1.961-.281a119.823 119.823 0 0 1-4.699-.746c-1.867-.355-4.223-.77-4.246-.746c-.039.039.195.758.383 1.184c.387.875 1.316 1.906 2.059 2.285c1.008.52 2.34.633 4.512.387zm-44.43-1.391c1.148-.195 1.777-.465 1.926-.824c.152-.367-.539-1.918-.855-1.918c-.176 0-1.234.719-1.723 1.168c-.516.477-1.023 1.141-1.148 1.5l-.07.195h.582c.32 0 .902-.055 1.289-.121zm61.547.059c0-.105-.187-.441-.434-.777c-.504-.68-1.832-1.781-2.375-1.973c-.187-.066-.211-.055-.375.141c-.207.246-.551 1.098-.598 1.477c-.027.223-.008.297.117.426c.27.289.93.523 1.895.672c.68.105 1.77.129 1.77.035zm-62.027-2.23a10.79 10.79 0 0 1 .598-.422a4.3 4.3 0 0 0 .398-.285c.066-.062.141-.109.164-.109s.09-.281.148-.625a45.3 45.3 0 0 1 .313-1.508l1.086-4.527c.75-2.82 1.262-4.352 2.098-6.262c.02-.043-.078-.086-.242-.105a4.23 4.23 0 0 1-.574-.141c-.16-.055-.316-.078-.344-.051s-.234.559-.465 1.176l-.484 1.234c-.031.066-.332.934-.668 1.93a35.991 35.991 0 0 0-.957 3.309l-.508 2.113c-.086.344-.32 1.438-.527 2.43l-.406 1.945c-.043.191.004.176.371-.102zm61.031.164c0-.082-.266-1.34-.371-1.758c-.035-.137-.176-.77-.309-1.402l-.805-3.582a49.21 49.21 0 0 0-1.625-5.07l-.535-1.461a12.43 12.43 0 0 0-.258-.613c-.145-.305-.187-.355-.293-.32c-.398.129-.766.219-.891.219c-.141 0-.141.004-.051.176c.152.293.461 1.094.855 2.219c.469 1.328.594 1.746 1.012 3.328l.438 1.621c.129.461.48 1.992.813 3.547c.48 2.273.41 2.078.91 2.414a15.22 15.22 0 0 1 .723.523c.32.25.387.277.387.16zm-27.852-3.117c.137-.055.695-.227 1.246-.387c1.734-.508 1.828-.535 1.891-.613c.074-.09.125-.359.41-2.281l.242-1.57c.031-.133-.047-.117-.582.125c-.352.152-1.91.75-2.309.879c-.172.055-.238.121-.301.305c-.176.504-.781 2-.801 1.98s.277-1.227.48-1.93l.125-.43l-.316-.586c-.176-.32-.328-.574-.336-.562s-.164.305-.336.652a9.19 9.19 0 0 1-1.187 1.852c-.172.203-.312.406-.312.445s.145.324.324.625l.656 1.152l.336.598l.258-.078c.145-.043.375-.125.512-.176m1.414-4.391c.215-.102.852-.355 1.414-.566s1.059-.41 1.098-.441c.113-.094.223-.926.219-1.664c0-.602-.141-1.613-.246-1.797c-.039-.07-.984.469-1.504.855a7.19 7.19 0 0 1-.566.367l-.352.207l-.039.473c-.051.547-.297 1.789-.469 2.355c-.141.461-.125.469.445.211m-.703-.703l.145-.535l-.141-.613c-.078-.34-.215-.785-.309-.988l-.168-.375l-.039.531c-.023.289-.098.75-.164 1.023l-.121.5l.293.543c.16.297.309.52.328.496s.102-.285.176-.582M50.398 38.47a2.49 2.49 0 0 1-.273-.434c-.062-.137-.129-.25-.145-.254s-.223.066-.457.148l-.422.148l.352.203c.359.203.773.359.984.367c.102.004.098-.016-.039-.18zm1.535-.891a5.1 5.1 0 0 1-.297-.406l-.168-.27l-.23.137c-.391.234-.422.281-.254.375c.195.105.801.297.953.301c.117.004.117 0-.004-.137m17.895-1.203c.457-.305.844-.586.859-.625s-.082-.293-.219-.562c-.473-.937-1.402-1.762-2.387-2.125l-.355-.133l-.062.324c-.074.402-.098.543-.266 1.633l-.133.875l.371.371c.27.27.41.473.508.734a2.34 2.34 0 0 1 .133.445c0 .059.121.008.359-.148l1.191-.789zm-16.711-.09l-.168-.25l-.172.109c-.25.16-.246.223.035.309c.453.137.488.117.305-.168m7.816-.676l.777-.168l-.02-.277c-.02-.281-.145-1.07-.262-1.656l-.066-.32l-.57.148c-.316.082-.82.238-1.121.348l-.551.195l.246.254c.426.445.68 1.043.656 1.547c-.008.137-.027.137.91-.07zm6.039-.055c0-.023.086-.648.188-1.383s.176-1.371.16-1.41s-.219-.09-.453-.113c-.453-.051-2.32-.055-2.367-.008c-.016.016.016.418.07.895a15.08 15.08 0 0 1 .098 1.219c0 .23.027.363.078.375c.043.012.344.055.668.09s.789.137 1.027.219c.52.176.531.18.531.117zm-4.078-.293a10.44 10.44 0 0 1 1.047-.094c.234 0 .367-.027.391-.082c.016-.043-.016-.484-.074-.98l-.133-1.164c-.016-.145-.043-.266-.059-.266c-.082 0-1.539.266-1.937.352c-.379.082-.449.117-.41.203c.023.055.113.52.199 1.035c.176 1.066.18 1.086.242 1.086a19.46 19.46 0 0 0 .734-.09m-23.754-1.5c.441-.184.762-.609.848-1.129c.105-.641-.402-1.461-1.035-1.672c-.453-.148-1.07-.098-1.449.125c-.719.422-.914 1.445-.406 2.145c.441.609 1.313.836 2.043.531zm51.215-.059c1.223-.602 1.18-2.219-.07-2.742c-.34-.141-.945-.113-1.312.059c-.531.246-.957.859-.961 1.383c-.008 1.156 1.23 1.844 2.344 1.301zm-15.078-.336c-.07-.07-1.035-.66-1.293-.793a6.014 6.014 0 0 0-.586-.246L73 32.176l.137.191c.141.199.48.379 1.508.809c.598.246.734.289.633.191zm-22.77-.457c.313-.316 1.098-.746 1.598-.875c.613-.16 1.316-.75 2.051-1.73c.555-.738.988-1.23 1.645-1.859c1.141-1.105 1.977-1.687 3.008-2.102l.531-.211l-.375.035c-1.699.145-4.578 1.078-6.691 2.172c-.711.367-1.652.895-1.773.992l-.652.508c-.895.699-1.371 1.395-1.414 2.078c-.039.66.176.957.863 1.203a1.44 1.44 0 0 0 .641.09c.258-.027.348-.074.57-.301zm-16.035-1.016c0-.164.191-.484.449-.75l.246-.258l-.332-.078a10.84 10.84 0 0 1-.582-.156c-.75-.238-1.355-.406-3.074-.852l-2.496-.648a34.59 34.59 0 0 0-1.602-.367l-1.012-.207l-.398.18c-.359.164-.434.176-.707.125c-.566-.105-2.965-.375-4.59-.512c-2.371-.195-6.051-.195-8.121.004l-1.477.156a106.1 106.1 0 0 0 2.551.016c2.516.004 3.68.051 5.805.246c1.891.168 4.332.516 5.414.766c.137.031.992.211 1.898.402c2.953.613 6.254 1.43 7.344 1.813c.707.246.684.242.684.121zm55.801-.152c.332-.121 2.539-.699 4.512-1.184a117.43 117.43 0 0 1 2.551-.551l2.367-.5c2.656-.605 8.207-1.055 12.074-.977c1.652.035 1.578 0-.402-.191c-1.719-.164-5.57-.148-7.719.031c-1.699.145-3.414.328-4.359.473l-.559.086l-.41-.18l-.41-.176l-.742.148c-1.008.207-2.332.52-2.484.59c-.066.031-1.02.281-2.113.559l-2.117.563c-.07.031-.449.148-.84.254l-.719.199l.238.254c.129.141.281.387.336.547c.117.324.063.32.797.055zm-53.496-1.277c0-.16-.781-1.641-.934-1.77c-.023-.02-.195-.242-.387-.5s-.625-.734-.961-1.062c-.555-.543-.867-.801-1.586-1.32c-.273-.199-1.734-1.047-1.734-1.008c0 .016.227.246.508.512c1.887 1.797 3.027 3.18 3.695 4.496c.164.328.32.621.344.656c.063.082 1.055.082 1.055-.004m51.719-.453c.25-.52 1.168-1.898 1.477-2.223a11.76 11.76 0 0 0 .508-.59c.184-.223.813-.879 1.402-1.457s.984-1.004.879-.937a18.74 18.74 0 0 1-.684.391c-1.379.766-2.937 2.125-3.754 3.273c-.48.68-1.133 1.84-1.133 2.023c0 .02.242.031.535.027l.531-.012zm-27.754-.816c.09-.004.355-.141.594-.305c.547-.387 1.496-.887 2.02-1.07a19.39 19.39 0 0 1 1.148-.348l.75-.203l-.43-.004c-.234 0-.723.039-1.082.094c-1.355.199-2.383.559-3.043 1.059c-.422.324-1.02.848-1.02.898c0 .02.203.004.453-.039s.523-.082.609-.082zm-50.215-.605c-.043-.016-.125-.02-.187 0s-.023.027.078.027s.152-.012.109-.027m103.133 0c-.043-.016-.113-.016-.156 0s-.008.031.078.031s.121-.016.078-.031m0 0\\\"/><path fill=\\\"#09637d\\\" d=\\\"M83 103.938c-1.047-.102-2.961-.516-4.418-.957c-2.383-.727-4.82-1.992-6.621-3.437c-1.301-1.043-2.937-2.762-4.797-5.027l-1.094-1.328c-.062-.07-.199-.023-.754.254c-1.336.668-5.176 2.289-7.402 3.125c-2.551.957-5.859 1.977-7.84 2.418c-2.164.48-3.594.664-5.543.711c-4.691.105-8.73-.937-10.547-2.73c-.828-.812-1.652-2.426-1.41-2.758c.07-.098.105-.086.418.125c.184.129.535.395.773.59c1.031.848 1.875 1.254 3.422 1.645c2.148.547 5.293.707 7.316.383c2.672-.434 7.07-1.789 9.703-2.996c1.605-.734 9.457-4.672 9.605-4.816c.074-.07-.105-.602-.824-2.434c-.773-1.973-1.27-3.336-2.227-6.133c-.809-2.352-1.301-3.707-1.371-3.777c-.09-.09-.664.68-2.215 2.953c-.895 1.309-1.172 1.605-1.5 1.605c-.484 0-1.336-.473-2.391-1.324c-.262-.211-1.223-1.125-2.141-2.035c-1.812-1.797-1.762-1.762-1.984-1.305c-.176.359-.266.988-.262 1.801c0 .688.02.824.168 1.207c.094.234.16.438.145.449c-.039.043-.637-.305-1.062-.617c-.652-.484-1.125-1.328-1.379-2.465c-.145-.629-.172-.648-.465-.324c-.305.336-.582.902-.754 1.543c-.102.375-.129.668-.129 1.277c0 .438-.023.797-.051.797c-.109 0-.602-.43-.82-.719c-.488-.648-.773-1.398-.922-2.441c-.043-.285-.105-.535-.141-.555s-.168.074-.297.215a4.31 4.31 0 0 0-.93 2.465v.375l-.312-.309c-.762-.746-1.098-2.09-.844-3.398c.113-.598.305-1.098.633-1.672a5.66 5.66 0 0 0 .438-1.059c.219-.777.453-1.23.82-1.602c.332-.332.977-.695 1.508-.852c.734-.219 3.52-.184 4.668.055a4.71 4.71 0 0 1 .867.289c.477.219.93.672 2.191 2.16c1.191 1.41 2.051 2.379 2.109 2.379c.074 0 .656-1.039.871-1.562c.156-.383.195-.59.246-1.27c.063-.906.117-1.145.391-1.684c.238-.477 1.055-1.293 1.59-1.586c.703-.387.656-.301.578-1.152c-.094-1.043-.172-1.285-.445-1.379a1.96 1.96 0 0 0-.551-.078c-.742-.008-2.473-.336-3.703-.699c-.348-.102-1.246-.453-2-.781c-2.25-.977-4.551-2.164-8.129-4.191c-1.984-1.125-3.828-2.055-4.75-2.395c-2.211-.812-4.703-1.086-6.121-.676c-.84.246-1.883.789-2.367 1.23c-.387.355-.488.629-.66 1.781c-.078.551-.164 1.02-.184 1.039s-.039 0-.039-.047c0-.34-.191-2.051-.242-2.184c-.121-.324-1.195-.914-1.969-1.082c-.605-.133-2.168-.187-2.879-.098c-.664.082-1.371.324-2.059.699c-1.516.828-2.977 2.059-4.223 3.563l-.562.68l-.168 1.063c-.187 1.184-.277 1.594-.344 1.594c-.082 0-.129-.547-.129-1.527v-.953l-.57-.383c-.949-.637-1.84-1.039-2.676-1.215c-.559-.117-1.59-.113-2.105.008c-.965.223-2.148 1-2.961 1.941c-.969 1.129-2 2.965-2.727 4.871c-.867 2.281-1.867 6.285-2.031 8.156c-.105 1.195-.004 1.953.598 4.508c.434 1.828.406 1.711.367 1.711c-.164 0-1.27-3.176-1.855-5.324c-1.172-4.289-2.18-9.988-2.41-13.598c-.094-1.445-.098-6.184-.004-7.219c.172-1.988.563-4.297.977-5.785c.266-.957.973-3.109 1.465-4.465c2.34-6.434 7-12.375 13.5-17.211c.531-.395 1.043-.805 1.141-.906l.18-.191l-.363-.047c-.855-.105-5.859.047-7.332.227c-.27.031-.504.047-.52.031c-.062-.062 1.793-.461 2.91-.621c3.926-.57 9.965-.512 14.004.133l1.023.164l.5-.176l.5-.172l.652.133c.359.074 1.691.398 2.957.723l3.875.996c.863.223 1.641.402 1.73.402c.199 0 .18-.09-.141-.684c-.66-1.227-1.449-2.184-3.375-4.105c-1.168-1.164-1.562-1.594-1.477-1.609c.176-.035 1.605.711 2.496 1.305c1.758 1.172 2.875 2.383 3.832 4.168c.211.391.496.848.629 1.02l.492.625c.699.875.543 1.879-.395 2.523a3.701 3.701 0 0 0-.496.395c-.73.855-2.309 6.016-3.437 11.238l-.328 1.523l.293.32c.426.465.875 1.434.879 1.895c0 .363-.203.316 4.758 1.121l3.566.59c.113.027.172-.02.32-.25c.098-.156.211-.363.25-.461s.137-.195.211-.215s.934-.133 1.91-.258a224.13 224.13 0 0 0 10.332-1.617c.895-.164 1.367-.195 1.555-.094c.098.051.223-.039.789-.578c.887-.836 3.258-3.262 4.305-4.402c1.492-1.625 2.191-2.895 2.461-4.477c.125-.715.125-1.09.012-1.633s-.273-.84-.613-1.152c-.371-.344-.734-.422-1.941-.41c-1.125.012-1.98.121-3.336.422c-1.379.309-1.559.391-1.832.84c-.285.473-.828.969-1.402 1.277c-.742.398-1.391.918-2.516 2.012c-1.668 1.617-2.078 1.91-2.586 1.863c-.398-.039-1.094-.371-1.152-.547s.105-.344 1.027-1.09c1.719-1.379 2.672-2.77 2.781-4.035c.051-.613-.07-.91-.367-.91c-.223 0-1.125.281-1.465.457c-.109.059-.199.152-.199.211s.188.297.418.531l.422.43l-.219-.039a30.554 30.554 0 0 1-.906-.203c-.687-.164-.887-.164-1.109 0c-.187.137-.09.352.406.879l.445.477l-.336-.039c-.492-.059-.777-.137-1.316-.352c-.406-.168-.504-.184-.637-.125c-.086.039-.156.121-.156.184c0 .203.359.691.711.961c.188.145.332.273.32.285c-.043.043-.887-.121-1.242-.242c-.203-.07-.57-.219-.812-.332a2.93 2.93 0 0 0-.812-.246a1.72 1.72 0 0 1-1.172-.59c-.488-.523-.773-1.293-.711-1.914c.063-.578.23-.703 1.211-.891c1.078-.207 1.707-.488 2.242-.996c.461-.441.547-.629.441-.992c-.047-.156-.082-.5-.082-.758c0-.406.031-.531.203-.883c.551-1.117 2.73-2.582 5.496-3.691c2.113-.848 4.5-1.465 5.621-1.453c.746.004.75.043.039.484a12.91 12.91 0 0 0-3.047 2.66c-.492.59-.785 1.09-.73 1.23c.035.094.305.063 1.055-.113c1.707-.398 2.137-.578 2.777-1.172c1.309-1.219 2.445-1.684 4.672-1.91c.605-.062 1.266-.016 1.457.105c.031.02-.543.332-1.277.695c-1.395.691-1.922 1.008-1.922 1.16c0 .051.008.09.016.09s.344.043.738.09a25.3 25.3 0 0 0 1.527.133l.801.043l.777-.266c.699-.238.848-.266 1.465-.281c.375-.012.57-.008.434.008c-.898.09-2.086.387-2.086.52c0 .027.176.098.391.152a9.32 9.32 0 0 1 .789.262l.402.16l.41-.156a42.702 42.702 0 0 1 1.945-.699c.395-.125.398-.191.016-.234c-.137-.016-.012-.016.277-.004c.926.035.828.133-.637.641c-1.035.359-1.602.598-1.598.672c0 .105.109.207.777.703a7.49 7.49 0 0 0 2.105 1.16c.949.363 1.895.887 2.309 1.281c.453.43.516.414-1.07.227c-.867-.105-1.156-.121-1.211-.066s-.035.254.094.836c.09.422.184.918.203 1.105c.055.434.152.563 1.18 1.59c.863.859 1.293 1.414 1.125 1.449c-.051.012-.426-.094-.828-.23c-1.098-.371-1.191-.391-1.258-.262c-.055.098-.172.824-.305 1.891l-.055.422l.313.512c.168.281.402.707.516.945c.352.723.289.77-.434.313c-.293-.187-.559-.34-.582-.34c-.105 0-1.512 5.191-1.512 5.578c0 .199 0 .199.543.324c1.906.438 7.281 1.352 10.102 1.719c2.461.32 2.695.383 2.766.707a.765.765 0 0 0 .195.328c.219.207.578.184 2.973-.195c2.859-.453 3.273-.551 3.371-.801c.023-.055.141-.379.258-.723c.254-.723.484-1.113.82-1.387l.242-.191l-.18-.797c-1.242-5.453-2.02-8.312-2.824-10.387c-.48-1.246-.66-1.531-1.234-1.977c-.684-.527-.871-.871-.836-1.539c.031-.516.242-1.008.547-1.262c.25-.215.457-.516.875-1.289c1.047-1.918 2.109-3.094 3.855-4.262c.719-.48 1.855-1.094 2.77-1.492c.207-.09.332-.125.281-.078s-.473.426-.934.836c-1.617 1.438-3.047 3.012-3.93 4.32c-.461.688-.781 1.344-.695 1.43c.078.078.832-.086 2.895-.633c2.316-.617 5.215-1.34 5.844-1.457c.492-.09.563-.09.813 0c.633.23.633.23 1.816.066c2.797-.395 4.391-.5 7.574-.5c3.191 0 5.184.145 7.242.523c.844.156 2.047.441 2.012.477c-.016.016-.277 0-.582-.035c-1.59-.187-7.141-.34-7.48-.207c-.145.055-.137.066.246.398c.219.188.816.66 1.332 1.051c5.262 3.988 9.242 8.652 11.766 13.785c.723 1.473 1.121 2.457 1.77 4.359c.879 2.578 1.406 4.586 1.676 6.379c.879 5.871.441 12.594-1.34 20.414c-.523 2.316-1.312 5.129-1.832 6.539c-.27.73-.734 1.77-.777 1.727c-.012-.012.246-1.187.574-2.605l.598-2.578l-.105-.684c-.453-2.91-1.434-6.633-2.387-9.059c-1.125-2.867-2.949-5.191-4.664-5.953c-1.012-.445-2.277-.488-3.379-.113c-.949.32-2.43 1.125-2.617 1.422c-.055.09-.102.512-.141 1.348c-.027.664-.066 1.227-.082 1.242c-.074.07-.145-.191-.242-.867c-.164-1.109-.328-1.801-.492-2.082c-.324-.559-2.23-2.406-3.32-3.223c-.621-.469-2.281-1.309-2.816-1.426c-.281-.062-.812-.09-1.742-.086c-1.496 0-1.637.023-2.59.465c-.988.457-1.043.531-1.152 1.66c-.039.402-.094.793-.117.859c-.047.117-.055.117-.113-.039a4.4 4.4 0 0 1-.137-.684c-.141-1.008-.227-1.227-.656-1.641c-.68-.664-1.633-1.105-2.836-1.312c-.832-.145-2.457-.098-3.355.094c-2.027.438-3.82 1.215-7.031 3.055c-1.965 1.121-3.762 2.098-5.086 2.762c-1.711.855-3.945 1.859-4.625 2.082c-1.375.445-2.848.734-4.18.816c-.492.031-.941.074-1 .098c-.164.066-.242.422-.277 1.285l-.035.785l.488.039c1.355.109 2.246.445 2.887 1.098c.621.633.898 1.371 1.055 2.836c.035.363.129.742.25 1.059c.199.516.738 1.469.844 1.496c.063.016.512-.488 2.258-2.531c1.566-1.832 1.836-2.039 2.941-2.277c1.082-.23 3.77-.266 4.574-.059c1.234.32 2.051 1.152 2.359 2.398a4.24 4.24 0 0 0 .293.777c.531 1.02.613 1.199.711 1.582c.156.613.188 1.617.066 2.184c-.125.582-.449 1.246-.812 1.652l-.277.309l-.004-.34c-.008-.516-.16-1.086-.465-1.711c-.32-.66-.672-1.082-.805-.973c-.051.039-.105.262-.129.52a3.87 3.87 0 0 1-.473 1.633a4.017 4.017 0 0 1-.699 1.055c-.484.527-.605.531-.605.012c0-.617-.129-1.609-.262-1.992c-.238-.707-.746-1.465-.934-1.391c-.059.02-.113.152-.141.336c-.117.832-.629 1.926-1.152 2.445c-.293.293-1.211.871-1.277.801c-.012-.012.035-.187.105-.395c.195-.59.223-1.719.055-2.414c-.145-.621-.277-.914-.41-.914c-.051 0-.883.777-1.852 1.727c-2.238 2.195-2.887 2.719-3.852 3.109c-.48.195-.797.168-1.062-.086c-.102-.098-.508-.652-.906-1.234c-.883-1.301-2.199-3.082-2.277-3.082s-.008.621.242 2.004c.598 3.285 1.293 6.625 1.398 6.734c.031.031.445-.109.957-.328c2.262-.961 4.836-1.625 7.633-1.973c1.699-.211 5.348-.176 7.012.07c1.316.195 3.055.688 4.32 1.223c3.258 1.375 5.289 3.609 6.105 6.711c.336 1.273.316 3.168-.047 4.602c-.187.75-.809 2.008-1.355 2.77c-1.992 2.75-5.523 4.844-8.93 5.297c-.738.098-3.445.113-4.398.023zm1.176-.746c.027-.414.031-.766.016-.781s-.316-.094-.672-.176s-.828-.207-1.047-.277s-.422-.105-.445-.082c-.07.082-.258 1.641-.203 1.691s.594.152 1.516.285c.883.129.785.203.836-.66zm2.602.664c.074-.031.094-.102.078-.242a14.981 14.981 0 0 1-.062-.551l-.035-.352l-.387-.031c-.211-.016-.703-.078-1.094-.133s-.715-.094-.723-.082s-.035.348-.062.754l-.043.738l1.109-.027c.613-.016 1.16-.047 1.219-.074m1.801-.324l.691-.16l-.043-.32c-.023-.176-.047-.32-.055-.328s-.477.008-1.043.023l-1.035.031l.023.289a18.09 18.09 0 0 0 .059.496l.035.211l.34-.039c.188-.023.648-.113 1.027-.203zm-7.074-.66l.152-.898l.047-.258l-.68-.328a22.64 22.64 0 0 1-1.148-.598c-.262-.148-.48-.262-.484-.254l-.121.266c-.172.371-.777 1.984-.754 2.008c.07.07 2.523.684 2.781.695c.078.004.121-.125.207-.633m8.656.203c.527-.187 1.148-.508 1.148-.598c0-.152-.113-.156-.82-.02c-.883.168-.98.203-.953.348c.09.449.098.465.203.422c.059-.023.25-.094.422-.152m-11.727-1.027c.309-.789.613-1.652.613-1.73c0-.043-.203-.23-.453-.418s-.73-.602-1.07-.918s-.637-.578-.656-.578s-.203.414-.402.918l-.547 1.371l-.184.453l-.57-.035l-.566-.039l.188.117a11.56 11.56 0 0 0 1.398.734c1.059.453 1.465.586 1.77.57l.309-.012zm10.852.277c1.773-.199 3.406-.77 4.762-1.664c1.066-.707 2.418-2.309 3.023-3.59c.59-1.242.895-3.145.719-4.484c-.137-1.059-.484-2.297-.848-3.02a9.97 9.97 0 0 0-1.672-2.332c-.906-.895-.895-.895-.535-.125c.438.934.668 1.668.75 2.379c.156 1.371-.113 2.809-.785 4.215c-.742 1.563-2.418 2.992-4.301 3.668c-1.965.711-4.301.777-6.867.195a19.846 19.846 0 0 0-.926-.191a8.29 8.29 0 0 1-1.41-.43l-.762-.336c-.895-.387-2.312-1.293-3.113-1.984c-.656-.57-1.812-1.699-2.086-2.039c-.137-.172-.383-.465-.543-.656c-1.012-1.164-2.332-3.469-2.855-4.988c-.355-1.035-.512-1.727-1.414-6.371l-.523-2.707c-.352-1.785-.484-3.25-.539-5.91c-.074-3.613.211-7.168.699-8.652c.152-.465.578-2.172.957-3.828l.254-1.059c.078-.262.461-2.539.625-3.711l.137-.973l-.156-.211c-.211-.281-.633-1.113-.816-1.609c-.41-1.102-.414-2.906-.008-3.762c.113-.242.133-.301.625-2.09l.617-2.148c.688-2.203 1.223-5.609 1.125-7.187c-.09-1.449-.359-2.746-.75-3.594c-.125-.262-.246-.492-.27-.512a2.34 2.34 0 0 1-.246-.32c-.727-1.07-2.113-1.996-3.57-2.391c-1.32-.355-3.172-.566-4.316-.496c-1.641.102-4.402.605-5.434.992c-.395.145-1.262.406-1.355.406c-.051 0-.09-.023-.09-.051s.18-.41.398-.855c.336-.672.492-.906.961-1.434c.309-.348.707-.754.883-.902l.547-.48c.387-.344-.824.453-1.363.898c-.672.559-1.871 1.82-2.27 2.387c-.473.676-1.078 1.313-1.52 1.598c-.215.141-.375.285-.375.348c0 .215-.254.777-.422.938c-.359.348-.937.449-1.531.27c-.219-.066-.348-.074-.523-.023c-.305.082-.734.027-1.195-.16c-.258-.105-.375-.125-.375-.074c0 .133-.855.926-1.168 1.086c-.5.254-1.082.43-1.664.504c-1.004.129-1.195.313-1.125 1.086c.051.547.25.977.652 1.391c.516.531.824.629 1.508.473c.254-.055.609-.168.789-.25c.457-.199 2.098-1.113 2.453-1.367s1.105-.633 1.699-.859l.559-.227c.16-.074.645-.18.824-.184c.191 0 .289.371.293 1.152c.004.609 0 .633-.262 1.176c-.648 1.344-1.289 2.148-2.359 2.938c-.27.199-.559.426-.641.508a3.5 3.5 0 0 1-.391.309c-.129.086-.234.18-.234.203c0 .086.777.395 1.059.422c.48.047.797-.211 2.555-2.062c.738-.773 1.32-1.223 2.133-1.637c.559-.285.785-.441 1.137-.793c.422-.422.449-.465.586-.969a2.82 2.82 0 0 0 .109-1.062c-.035-.641-.16-.941-.5-1.187c-.156-.113-.215-.187-.16-.203l.801-.258a40.64 40.64 0 0 1 1.402-.414l.902-.246c1.98-.57 5.52-.742 6.086-.297c.086.066.199.117.25.117s.395.148.754.328c.563.277.738.41 1.223.887c.477.473.613.652.859 1.152c.164.328.305.691.313.813a5.8 5.8 0 0 0 .148.684c.188.684.281 1.695.207 2.285c-.07.555-.23 1.203-.309 1.254c-.051.035-.121.461-.508 3.078c-.102.711-.219 1.297-.273 1.379c-.098.145-.215.629-.344 1.406c-.09.539-.086 2.109.004 2.582c.039.203.074.605.082.898a18.92 18.92 0 0 0 .129 1.43c.09.723.113 1.371.117 3.258l.004 2.355l-.141.113c-.098.082-.137.18-.137.344c0 .371-.301 2.625-.441 3.297c-.07.344-.195.875-.277 1.184s-.18.742-.215.965c-.152.91-.262 1.242-.437 1.371c-.156.109-.187.203-.336.977c-.223 1.172-.332 2.195-.383 3.594c-.035.922-.062 1.207-.137 1.293c-.109.125-.105.234.133 2.598c.184 1.781.195 2.063.09 2.164c-.094.094-.008.855.387 3.414c.316 2.039.352 2.383.254 2.488c-.051.055-.008.441.176 1.582c.074.449.27 1.215.605 2.383c.105.379.137.57.094.625c-.07.082.254 1.172.484 1.629c.242.488.813 2.086.813 2.281c0 .227 1.102 2.598 1.57 3.379c.164.27.297.551.301.621c.008.289 1.285 2.168 2.012 2.961c1.059 1.152 2.883 2.965 3.699 3.672c.48.418 1.699 1.25 2.215 1.508a21.12 21.12 0 0 0 2.34.93c.543.16 1.871.398 2.676.484l.84.09c.438.051 2.285.035 2.801-.023zM47.641 36.676c.09-.496.238-.906.379-1.051c.211-.207.551-.203.691.008c.094.145.094.168-.012.328c-.145.227-.277.32-.441.324c-.09 0-.211.109-.363.313c-.125.172-.242.313-.262.313s-.012-.105.008-.234zm44.84 65.246a3.25 3.25 0 0 0-.844.297c-.055.156.031.145.426-.051c.242-.125.43-.234.418-.246m-16.676-1.836c.258-.586.754-1.867.75-1.953c-.004-.039-.395-.477-.875-.973l-.867-.902l-.16.188c-.086.102-.301.395-.477.652s-.516.73-.754 1.059l-.449.609c-.008.012-.426-.039-.93-.113s-.922-.121-.934-.109c-.031.027.977.898 1.363 1.18l.84.59l.523.363l.816.063l.816.066l.078-.16l.258-.559zm-29.187-.617l1.277-.223c3.25-.562 5.609-1.238 7.594-2.18c.309-.148.668-.312.801-.367a321.3 321.3 0 0 0 8.328-4.133c.129-.074.344-.187.484-.262l.25-.129l-.68-1.363l-.684-1.363l-.484.219c-1.242.563-7.937 3.906-8.137 4.063c-.25.199-3.219 1.375-4.641 1.84l-1.5.504c-.637.234-3.34.879-5.004 1.191c-.777.145-3.465.145-4.574-.004c-3.203-.426-4.789-1.008-6.184-2.27c-.535-.488-.789-.684-.789-.605c0 .086.281.828.363.969c.672 1.098 1.207 1.695 1.949 2.18c.473.305 1.656.883 2.156 1.051c.652.219 1.539.434 2.465.594c1.496.262 1.672.289 2.277.344c.746.066 4.273.027 4.73-.055zm26.477-1.422l.848-1.199c.305-.426.559-.809.559-.848s-.145-.25-.324-.469c-.586-.715-1.016-1.32-1.316-1.84c-.164-.285-.316-.527-.344-.543c-.051-.035-.203.129-.437.465c-.082.117-.445.609-.801 1.086l-.66.887a98.56 98.56 0 0 1-2.633-.719c-.25-.078-.258-.016-.027.25a15.02 15.02 0 0 1 .41.516a13.49 13.49 0 0 0 .656.781l.602.68c.41.496.969.969 1.199 1.012l1.5.27l.473.082c.004.008.137-.18.297-.41zm14.73-.453c.676-.062 1.875-.305 2.145-.434a21.79 21.79 0 0 1 .531-.223c1.359-.555 2.531-1.406 3.227-2.348c.234-.316.496-.699.586-.855c.598-1.039.941-2.805.805-4.121c-.125-1.168-.488-2.16-1.199-3.254c-.457-.711-.516-.75-2.328-1.637c-.793-.387-2.199-.809-3.488-1.051l-.965-.176c-.926-.172-2.219-.234-4.102-.195c-1.012.02-2.051.066-2.309.102c-1.453.199-2.855.441-3.828.656c-.809.184-1.84.465-1.93.527c-.031.027-.258.109-.496.188c-1.309.426-2.582 1.008-2.582 1.18c0 .23.938 2.574 1.059 2.648c.031.02.328-.109.664-.281c1.145-.59 3.188-1.121 5.277-1.371c1.375-.168 5.07-.125 5.984.063l.926.191c2.359.484 4.016 1.617 4.91 3.359c.309.598.535 1.469.535 2.031c-.004.523-.238 1.133-.727 1.859c-.422.629-1.137 1.383-1.625 1.723a10.57 10.57 0 0 1-2.035 1a7.44 7.44 0 0 1-1.105.238c-.332.047-.59.094-.578.105c.031.031 1.051.117 1.527.129c.223.004.727-.02 1.121-.055zm-2.18-.469a6.73 6.73 0 0 0 4.684-2.934c.469-.699.57-.973.574-1.543c0-.445-.02-.547-.203-.902c-.82-1.637-2.848-2.781-5.832-3.305c-1.855-.324-6.277-.187-7.973.246c-1.145.293-2.746.926-3.133 1.242l-.152.121l.457.613c1.625 2.172 3.082 3.605 4.855 4.77c1.273.836 3.074 1.586 4.109 1.715c.742.09 1.867.082 2.613-.023zm-27.539-.801c.203-.082.375-.18.391-.215c.02-.07-.656.203-.766.309c-.086.086-.027.07.375-.094m1.281-.516c.309-.121.426-.199.426-.277c0-.062-.02-.113-.047-.113c-.105 0-.848.41-.871.48c-.035.109.004.102.492-.09m1.215-.465c.41-.152.488-.211.547-.41c.059-.187-.023-.18-.535.055c-.352.164-.426.223-.426.344c0 .082.012.148.027.148s.188-.062.387-.137m10.137-.473a10.03 10.03 0 0 1 .438-.605c.113-.137.355-.461.539-.715l.477-.66l.141-.187l-.684-1.336c-.594-1.168-.871-1.758-1.074-2.285c-.055-.152-.105-.113-1.637 1.199c-.809.695-1 .84-1.102.84c-.062 0-.609-.141-1.219-.309s-1.145-.312-1.191-.312c-.062 0-.051.051.039.203c.066.109.313.605.547 1.102s.531 1.074.652 1.277s.328.563.457.793s.25.43.281.449c.047.027 1.074.336 1.777.535a21.63 21.63 0 0 1 .688.207c.273.082.527.152.566.156s.176-.152.305-.352m-8.637-.176c.305-.133.328-.156.328-.363c0-.121-.016-.223-.035-.223a5.15 5.15 0 0 0-.465.219c-.395.199-.434.234-.434.41c0 .215.023.215.605-.043zm1.395-.59c.086-.047.113-.133.113-.34v-.281l-.434.219c-.43.219-.437.227-.437.469v.246l.32-.125a8.58 8.58 0 0 0 .438-.187zm.953-.445l.406-.199v-.586l-.434.195l-.437.191v.301c0 .164.012.297.031.297s.211-.09.434-.199m1.402-.676c0-.027-.059-.148-.129-.27c-.09-.152-.16-.207-.234-.18c-.207.074-.258.164-.258.457v.301l.309-.129c.172-.07.313-.152.313-.18zm-.566-1.879c-.344-.699-.492-.949-.492-.836c0 .059.609 1.27.73 1.457c.195.297.125.117-.238-.621m2.945-.652c.215-.199.531-.473.703-.605a24.8 24.8 0 0 0 .703-.59l.617-.535l.223-.191l-.113-.34a7.574 7.574 0 0 0-.285-.719a32.27 32.27 0 0 1-.812-2.187l-.086-.266l-.496.313l-1.156.738l-.906.566l-.25.137l-.867-.371l-1.418-.629c-.301-.145-.559-.254-.566-.242c-.043.047.668 2.344.977 3.168c.473 1.25.496 1.285.813 1.367a9.6 9.6 0 0 1 .637.195c.363.125 1.762.539 1.848.547c.027 0 .223-.16.438-.355zm21.926-.191a3.397 3.397 0 0 0-.496-.633l-.332-.324l-.043.207c-.043.184-.027.223.133.332c.098.07.332.273.52.449s.352.313.363.301s-.051-.16-.145-.332m-16.09-1.27c0-.266-.012-.484-.031-.484s-.23.098-.469.219c-.484.246-.473.18-.137.762l.152.266l.484-.273zm14.902.414c.094-.242.035-.449-.164-.598c-.258-.195-1.012-.613-1.102-.613c-.039 0-.066.137-.066.336v.332l.605.313c.715.367.676.355.727.23m-13.594-.508c.152-.055.297-.113.32-.133s.063-.23.086-.469l.047-.426l-.148.047c-.082.023-.391.125-.687.23l-.543.184l-.02.438c-.012.238-.008.445.004.457s.164-.035.34-.105a11.88 11.88 0 0 1 .602-.223zm-11.23-.156c-.078-.18-.316-.93-.527-1.668c-.426-1.477-.496-1.68-.605-1.773c-.039-.031-.246-.746-.457-1.586c-.609-2.422-.691-2.699-.812-2.801s-.242-.613-.652-2.707a28.58 28.58 0 0 0-.285-1.371a38.17 38.17 0 0 1-.215-.922c-.09-.422-.187-.707-.25-.75c-.141-.105-.238-.926-.402-3.367c-.125-1.848-.145-2-.262-2.094s-.137-.215-.207-1.305a120.08 120.08 0 0 1-.152-3.137c-.051-1.437-.09-1.953-.152-2.023c-.137-.156-.148-.266-.289-2.367c-.141-2.156-.133-3.68.023-4.609c.07-.41.07-.496-.008-.613s-.082-.191.02-.617c.121-.508.492-1.723.621-2.031c.188-.449.254-.617.625-1.652l.68-1.785c.238-.578.273-.723.215-.816s-.02-.227.219-.758c.266-.598 1.668-3.012 1.789-3.086c.031-.02.055-.062.055-.098s-.594.547-1.32 1.293l-1.867 1.898l-.551.535l.051.676c.145 1.934-.187 3.207-1.148 4.391l-.516.637l-.152.188l-.004 3.211c0 2.496.023 3.531.109 4.672l.203 2.77c.156 2.176.379 4.324.586 5.602l.215 1.34c.34 2.113.777 4.094 1.035 4.695c.031.07.25.801.492 1.625s.488 1.629.555 1.781s.281.773.473 1.379s.477 1.426.633 1.828l.656 1.762c.203.563.438 1.164.52 1.336s.328.762.551 1.309c.488 1.215.547 1.336.605 1.336c.027 0-.016-.145-.094-.324zm23.117-.383v-.402l-.621-.199c-.344-.113-.637-.191-.648-.176s-.043.199-.066.41c-.035.305-.027.395.039.414l1.25.344c.027.004.047-.172.047-.391zm-10.176.066l.621-.145l.051-.395c.027-.215.035-.402.023-.418c-.027-.027-1.531.266-1.562.305c-.012.008-.035.211-.059.445l-.043.43l.172-.039zm8.496-.539c0-.309-.023-.437-.078-.437c-.043-.004-.355-.043-.699-.086s-.629-.078-.637-.07s-.035.18-.055.387l-.043.379l.461.074c.254.043.543.102.645.129c.402.105.406.102.406-.375zm-6.441.18c.309-.039.578-.102.605-.141s.047-.203.047-.367c0-.289-.004-.297-.187-.297s-1.387.125-1.41.148a5.312 5.312 0 0 0-.055.406l-.047.398l.242-.043a19.97 19.97 0 0 1 .805-.105zm4.594-.414c.02-.195.027-.363.012-.379s-.371-.039-.797-.059l-.77-.031l-.043.148a2.02 2.02 0 0 0-.039.379v.23l.387.023c.215.012.574.027.801.031l.414.012zm-1.961-.094l.02-.359h-.805c-.906 0-.879-.012-.883.516v.234l1.648-.031zm-14.922-1.434l.586-.395c.105-.074.52-.336.922-.59s.762-.488.797-.531c.047-.055-.016-.336-.219-.969c-.254-.797-.406-1.559-.578-2.867l-.051-.359l-.496.352c-.273.191-.582.426-.684.523s-.426.344-.719.551l-.719.535l-.187.156l-.621-.273l-1.336-.566c-.391-.164-.84-.363-.992-.441s-.285-.137-.293-.125c-.035.031.719 3.008.879 3.488l.148.438l.613.266l.984.449c.633.313 1.363.621 1.465.625c.055 0 .277-.117.5-.266zm-.742-4.477l1.113-.844l.855-.652l.328-.258l-.039-.281c-.02-.156-.164-1.086-.316-2.059l-.363-2.324a4.766 4.766 0 0 0-.105-.574c-.031-.031-1.664 1.141-2.758 1.98c-.789.609-.719.59-1.133.336c-.437-.262-.602-.355-1.48-.816c-.375-.199-.82-.445-.984-.551s-.312-.168-.332-.148s.051.438.156.926l.477 2.348c.395 2.012.336 1.875.867 2.09a24.54 24.54 0 0 1 .957.422c.762.355 1.957.848 2.074.852c.055 0 .363-.199.684-.445zM3.488 80.348l-.336-1.488c-.133-.566-.359-1.781-.844-4.512l-.215-1.184c-.137-.707-.449-2.98-.594-4.293c-.738-6.629-.652-11.105.281-14.801c.168-.668.297-1.094.426-1.383a11.5 11.5 0 0 0 .238-.621c.215-.605.707-1.707.813-1.828c.051-.059.164-.254.258-.441c.559-1.113 1.598-2.457 2.887-3.73c1.297-1.281 2.789-2.406 4.895-3.68l1.094-.668c.594-.367 2.27-1.199 3.168-1.574c.43-.176.891-.371 1.027-.437a38.092 38.092 0 0 1 2.117-.84c.445-.16.949-.355 1.121-.434s.719-.27 1.215-.434s1.227-.418 1.621-.566s1.375-.465 2.176-.707l1.586-.504c.23-.102.676-.23 2.117-.617l1.934-.535c.633-.191 2.063-.523 3.668-.848c1.676-.34 1.727-.348 2.332-.434c.293-.039.539-.078.551-.09s-.07-.141-.187-.289c-.234-.293-.363-.551-.363-.734c0-.062-.02-.129-.047-.145c-.051-.031-.969.117-2.223.363l-5.121 1.051c-.301.086-1.215.313-2.039.508a42.5 42.5 0 0 0-2.145.563c-.359.113-1.16.352-1.777.527s-1.344.398-1.617.492l-3.422 1.23c-.242.105-.801.34-1.246.52c-.867.348-3.262 1.488-3.672 1.75c-.137.086-.445.262-.684.395c-.477.258-2.395 1.5-3.492 2.262c-1.629 1.125-3.078 2.316-4.137 3.402c-1.258 1.289-1.832 2.063-2.563 3.453c-.453.863-.73 1.621-1.062 2.898c-.5 1.938-.594 2.504-.887 5.441c-.137 1.34-.187 4.527-.098 6.102c.117 2.031.438 4.965.684 6.285c.031.152.129.715.223 1.246c.273 1.598.707 3.789.867 4.418l.527 2.086c.332 1.309 1.063 3.727 1.113 3.676c.012-.012-.066-.395-.168-.852zm52.496.68c.379-.297.441-.883.184-1.77c-.187-.656-.586-1.578-.785-1.824l-1.414-1.684a45.28 45.28 0 0 1-.566-.687l-.641-.777a23.35 23.35 0 0 1-.594-.715a15.276 15.276 0 0 0-.605-.723a6.49 6.49 0 0 1-.301-.344l-.168-.211l.039.313c.098.797-.227 1.727-.77 2.215c-.328.289-.457.52-.672 1.18c-.02.063.277.422.859 1.027c2.473 2.594 3.656 3.613 4.613 3.98c.484.188.605.191.82.02zm18.613-.172c.902-.453 2.219-1.621 4.285-3.812l.922-.98l-.16-.398a3.78 3.78 0 0 1-.16-.449c0-.027-.164-.195-.363-.375c-.578-.52-.895-1.426-.785-2.234l.043-.309l-.336.367c-.184.199-.437.504-.566.676s-.324.41-.437.535s-.434.504-.715.848l-1.086 1.316l-.937 1.125a4.252 4.252 0 0 0-.609 1.016l-.309.711c-.281.621-.344 1.574-.133 1.918c.262.426.57.434 1.348.047zm50.289-1.312l.426-1.43c.129-.375.414-1.555.762-3.145l.34-1.523c.242-1.039.719-3.945.93-5.695l.188-1.523c.371-2.895.426-6.699.129-8.965l-.129-.996c-.348-2.785-.762-4.855-1.137-5.668c-.055-.117-.184-.43-.289-.695c-.285-.73-.562-1.242-1.133-2.105c-.891-1.348-1.699-2.215-3.504-3.754c-.969-.828-2.461-1.887-4.867-3.457c-2.113-1.375-5.152-2.809-8.27-3.898l-1.93-.676a46.004 46.004 0 0 0-1.742-.535l-1.465-.437c-.34-.117-2.258-.609-3.484-.895a35.184 35.184 0 0 1-1.121-.277c-.547-.145-5.711-1.168-6.504-1.285a7.52 7.52 0 0 1-.387-.066c-.113-.023-.141 0-.145.113c0 .184-.207.641-.406.902l-.156.203h.148c.539 0 5.328 1.004 6.516 1.367a63.69 63.69 0 0 0 1.465.41c1.121.293 1.82.496 2.363.68c.242.082 1.066.348 1.836.586c2.375.742 6.723 2.309 7.844 2.828c.188.086.637.273.996.418c.867.348 3.055 1.422 3.52 1.73c.203.133.734.461 1.18.727s.824.508.84.531s.27.195.559.375a20.49 20.49 0 0 1 4.797 4.258c.988 1.223 2.184 3.379 2.668 4.805c.66 1.953.992 3.566 1.195 5.809c.113 1.246.098 4.957-.031 6.723c-.102 1.402-.352 3.914-.469 4.699l-1.125 6.973a207.09 207.09 0 0 0-.867 4.305c.008.109.145-.309.461-1.414zM58.109 78.02l.707-1.027l.234-.34l-.113-.227c-.223-.445-1.039-1.465-1.426-1.789c-.547-.453-1.016-.68-1.633-.785l-.23-.039l-.324.641c-.785 1.566-.754 1.484-.664 1.605c.043.059.316.387.602.723a6.376 6.376 0 0 1 1.406 3.035l.043.238l.465-.676zm14.711 1.672c.008-.238.301-1.168.52-1.645s.621-1.031 1.215-1.691c.18-.199.32-.387.309-.414s-.25-.516-.535-1.086l-.52-1.039l-.23.035c-.59.102-1.074.328-1.586.746a7.44 7.44 0 0 0-1.395 1.699l-.199.367l.32.461l.836 1.207c1.109 1.613 1.172 1.695 1.219 1.594a.83.83 0 0 0 .047-.234zm-27.453-1.586a4.814 4.814 0 0 1 1.047-1.93c.121-.133.168-.27.207-.629c.063-.566.25-1.113.496-1.457c.102-.145.188-.285.188-.316c0-.086-.449-.484-.672-.602c-.258-.133-.668-.125-.98.016c-.137.063-.445.301-.687.523c-.336.313-.484.512-.637.84c-.805 1.746-.613 3.871.449 4.984l.379.395l.043-.676a7.65 7.65 0 0 1 .168-1.148zm39.844.66c.316-.664.402-1.094.395-1.992c-.008-1.383-.34-2.293-1.109-3.047c-.816-.801-1.484-.867-2.121-.215c-.227.23-.238.258-.156.387a3.74 3.74 0 0 1 .625 1.711c.039.301.094.438.238.602c.102.117.344.477.535.793c.418.703.586 1.301.641 2.258l.039.684l.363-.398c.203-.219.449-.57.551-.781zm-36.477.594c-.094-.508-.074-1.648.039-2.113c.051-.227.258-.746.457-1.156c.438-.898.5-1.113.5-1.684c0-.398-.016-.453-.172-.602c-.234-.219-.68-.422-.93-.422c-.277 0-.547.141-.879.457c-.441.422-.711 1.063-.82 1.938c-.168 1.344.449 2.922 1.426 3.66c.219.164.406.289.418.277s-.004-.172-.039-.355m32.645-.164c.801-.785 1.223-2.008 1.129-3.27c-.074-1-.324-1.648-.805-2.09c-.531-.488-.883-.566-1.398-.305c-.496.254-.59.398-.586.906c0 .563.281 1.414.582 1.785c.031.039.145.305.254.594c.188.496.199.559.199 1.453c.004.512-.02 1.055-.047 1.203l-.055.273l.199-.117c.109-.062.348-.258.527-.434zm-39.207-.801a5.34 5.34 0 0 1 1.137-2.074c.105-.109.207-.293.23-.402c.129-.613.5-1.578.75-1.953l.277-.426c0-.047-.242-.273-.355-.332c-.207-.109-.703-.086-1 .051c-.684.309-1.187.848-1.535 1.633c-.379.855-.441 1.148-.434 2.008c.004.754.016.84.191 1.258c.105.246.27.582.367.746l.176.301l.043-.187c.027-.102.094-.383.152-.621zm45.711.082c.281-.598.406-1.441.316-2.121c-.133-1.043-.559-1.969-1.164-2.539c-.512-.477-.82-.633-1.328-.668c-.387-.027-.414-.02-.648.184l-.242.211l.172.184c.355.383.695 1.172.848 1.965c.063.34.121.445.367.711c.328.352.758 1.059.875 1.43c.043.137.098.277.125.313s.094.281.152.543l.105.484l.121-.152a3.39 3.39 0 0 0 .301-.543zm-22.996-2.309l2.488-1.844l.359-.273l-.035-.504c-.02-.277-.09-1.082-.16-1.781l-.148-1.633c-.012-.199-.039-.375-.062-.395s-.227.086-.461.238s-.703.438-1.047.637s-.805.48-1.027.625s-.605.371-.852.512l-.445.25l-.613-.395l-1.344-.848c-.406-.25-.879-.559-1.055-.687s-.328-.223-.34-.211c-.031.031.219 3.656.301 4.344c.039.332.09.629.109.66s.277.176.566.32a16.05 16.05 0 0 1 .742.398c.375.234 2.086 1.148 2.164 1.156c.043.004.43-.254.859-.57zm5.582-.312c.492-.797 1.344-1.652 1.941-1.941c.422-.207 1.059-.406 1.297-.406c.121 0 .148-.195.117-.84c-.059-1.336-1.066-2.641-2.379-3.086c-.477-.16-1.457-.234-1.66-.125c-.129.066-.137.109-.137.926c0 1.309.117 4.219.188 4.742c.129.918.199 1.309.238 1.309c.023 0 .199-.262.395-.578zm-11.34-.109c-.398-1.527-1.055-5.156-1.059-5.832c0-.332-.074-.359-.441-.176c-1.371.691-2.078 1.938-1.996 3.531c.012.215.023.23.277.27c.82.125 1.477.48 2.148 1.168c.578.59.664.695.949 1.18c.117.195.219.348.227.34s-.039-.227-.105-.48zm-8.992-1.879c-.047-.297-.242-.75-.371-.855c-.227-.187-2.187-.418-4.078-.48c-1.906-.059-2.883.098-3.148.504c-.059.09-.094.176-.082.191s.191-.059.398-.16c.43-.215.945-.312 1.262-.238c.121.027.34.133.488.234l.262.188l.477-.246c.391-.199.535-.242.828-.242a1.63 1.63 0 0 1 1.184.523l.207.234l.133-.121c.438-.398 1.035-.465 1.613-.184c.395.195.66.469.715.738c.055.285.16.207.113-.086zm29.547-.348c.195-.207.652-.43.984-.477c.324-.047.719.07 1.035.313l.203.156l.219-.242c.516-.57 1.289-.656 2.063-.234c.414.227.414.23.547.109c.469-.426 1.23-.441 1.961-.035c.32.176.379.156.227-.074c-.266-.402-1.242-.562-3.113-.504c-1.953.063-3.879.289-4.113.48c-.133.113-.324.566-.363.871l-.039.277l.125-.246c.07-.133.191-.312.266-.395zm-.527-.363c.121-.219.5-.512.746-.578c.703-.187 3.238-.434 4.496-.437c.82-.004 1.719.102 2.074.242c.277.105.301.082.168-.18c-.266-.52-1.207-1.105-2.066-1.281c-.437-.09-.742-.102-2.012-.07c-1.535.039-2.078.105-2.727.34c-.566.207-.883.418-1.008.672c-.219.469-.234 1.379-.023 2.004l.078.23l.102-.402c.055-.223.133-.465.172-.539zm-28.492.664c.18-.43.184-1.426.008-1.879c-.195-.504-1.133-.895-2.512-1.047c-.93-.098-2.766-.082-3.32.031c-.832.172-1.754.758-2.02 1.281c-.133.258-.109.281.168.176c.742-.289 3.098-.316 4.906-.059c1.449.207 1.797.277 1.98.402c.27.18.551.656.586.996c.039.328.098.355.203.098zM64.547 71l2.277-1.379l.695-.41l.039-.98c.023-.539.082-1.312.133-1.727c.082-.687.355-2.266.441-2.547c.031-.105.004-.098-.266.055c-.168.098-.484.293-.707.438s-.699.441-1.059.656l-2.52 1.543l-.305.199l-.16-.141l-.504-.449a88.8 88.8 0 0 0-1.051-.934l-1.273-1.137c-.309-.281-.586-.516-.617-.516c-.098 0 .035 3.496.195 5.199l.039.434l.535.344l1.016.652l1.266.824l.777.512l.227-.137l.82-.5zm6.781-4.25a6.49 6.49 0 0 0 .684-.086l.656-.125c.59-.117 1.969-.449 1.945-.473c-.012-.012-.344-.051-.734-.09c-1.371-.133-2.551-.379-3.355-.707c-.219-.09-.418-.164-.441-.164s-.07.23-.109.512c-.137.977-.145 1.156-.062 1.188s.613.012 1.418-.055zm-13.664-.695c-.023-.402-.055-.75-.066-.773s-.258.039-.539.133c-.648.227-1.609.422-2.461.508c-.367.035-.805.082-.977.109l-.312.043l.84.199c1.605.383 2.211.484 3.074.5l.488.012zm6.602-.215l1.398-.859l1.773-1.086c.516-.309.98-.605 1.035-.656c.063-.055.141-.328.203-.684c.055-.328.145-.746.199-.934c.414-1.453.578-2.328.738-3.953c.051-.512.086-.937.078-.941c-.016-.016-.957.547-1.535.914l-3.051 1.895c-.223.133-.437.273-.48.316s-.262.18-.492.305l-.414.234l-2.23-2.234l-2.234-2.168c0 .031-.043.395-.094.809a15.19 15.19 0 0 0-.09 1.414c-.004 1.07.242 4.609.328 4.727c.074.105 3.418 3.086 3.738 3.336c.18.137.18.137.375.02l.754-.453zm-9.961-.211a7.82 7.82 0 0 0 .871-.121l.84-.184c.258-.055.719-.172 1.02-.266l.555-.164l-.039-.371a7.918 7.918 0 0 1-.039-.734c0-.242-.027-.363-.074-.363c-.039 0-.23.121-.422.27c-.652.512-1.262.871-2.141 1.266l-1.254.578l-.375.188l.281-.027l.777-.07zm20.125-.082a12.6 12.6 0 0 0-.715-.32c-.992-.395-2.125-1.039-2.891-1.652l-.41-.324l-.07.289c-.043.16-.113.492-.16.742c-.098.527-.148.473.617.719c1.191.391 2.602.648 3.859.715c.066.004-.035-.07-.23-.168zm-57.387-2.309c.316-1.402.48-2.086.699-2.891a29.13 29.13 0 0 1 1.301-3.551a15.95 15.95 0 0 1 1.23-2.086c1.434-1.898 4.926-3.797 8.109-4.414c.66-.129 1.781-.246 2.727-.289l.953-.047l.258-.379a7.53 7.53 0 0 1 .496-.641l.242-.262l-.238-.051c-.129-.027-.84-.047-1.574-.047c-1.187 0-1.449.02-2.336.176c-2.125.375-3.883.934-5.535 1.766c-1.176.59-2.656 1.816-3.43 2.844c-.766 1.012-.922 1.289-1.695 2.969c-.355.777-.684 1.914-1.16 4.023c-.223.996-.414 2.93-.402 4.121l.004.594l.145-.777l.207-1.059zm94.227.637a30.404 30.404 0 0 0-.141-2.008c-.191-1.617-.594-3.512-.898-4.199a34.29 34.29 0 0 1-.281-.777c-.285-.832-.535-1.391-.922-2.055c-.988-1.703-1.93-2.723-3.414-3.711c-.812-.539-1.297-.789-2.387-1.215l-.746-.301c-.48-.215-2.117-.625-3.395-.855c-.855-.148-1.117-.168-2.363-.172c-.77 0-1.48.02-1.574.047l-.176.047l.332.359c.18.199.398.488.48.645l.152.281l.938.047c1.941.09 3.996.461 4.977.902a4.97 4.97 0 0 0 .41.16c.957.289 3.141 1.516 4.191 2.359a8.09 8.09 0 0 1 1.801 2.059a21 21 0 0 1 1.262 2.613a46.47 46.47 0 0 1 1.051 3.363c.18.727.566 2.703.629 3.219c.082.676.113.359.074-.809zm-54.742-.219c.156-.109.418-.324.578-.473l.297-.273l-.043-.66a19.751 19.751 0 0 0-.074-.918l-.035-.254l-.695.352c-1.547.781-2.812 1.027-5.07.988l-1.234-.008a64.68 64.68 0 0 0 .508.223c.887.375 2.535.902 3.238 1.035c.898.164.953.172 1.652.184c.578.008.605.004.879-.195zm16.91.109c1.09-.16 2.676-.637 3.902-1.176l.441-.191l-1.625-.004c-1.281-.004-1.746-.027-2.211-.113a10.233 10.233 0 0 1-2.359-.766c-.316-.152-.598-.262-.621-.238s-.129.383-.234.797c-.23.883-.273.766.504 1.387l.496.398h.523c.285 0 .82-.043 1.184-.098zM53.109 62.02c1.613-.172 2.777-.523 3.664-1.105l.477-.312l-.035-.781a11.045 11.045 0 0 0-.047-.805c-.02-.023-1.418.691-2.238 1.148c-1.758.973-2.316 1.199-4.016 1.633c-.777.203-.781.184.031.281c.465.055 1.355.031 2.164-.059m24.465-.012c.156-.043.102-.066-.434-.195c-1.02-.242-2.234-.668-2.902-1.016c-.348-.18-1.109-.645-1.691-1.027l-1.062-.699l-.187.793c-.105.434-.211.824-.234.863c-.062.102.551.477 1.156.711c1.137.438 2.758.688 4.215.648c.531-.016 1.043-.047 1.141-.078zm-48.102-3.066c.348-1.898.863-3.648 1.234-4.203l.332-.492a21.25 21.25 0 0 1 1.273-1.621a15.94 15.94 0 0 0 .402-.465c.098-.121.438-.496.758-.832s.57-.625.559-.637s-.383.012-.828.051l-.805.07l-.312.34c-.406.441-1.258 1.652-1.613 2.293c-.402.73-.887 1.91-1.031 2.516c-.191.824-.312 2.23-.305 3.586l.008 1.23l.086-.496zm69.422.688c.012-1.918-.273-3.75-.77-4.969c-.402-.988-1.168-2.234-1.988-3.25l-.48-.59l-.816-.074c-.449-.043-.832-.062-.848-.047s.137.207.34.418c1.027 1.066 2.254 2.539 2.73 3.281c.68 1.059 1.023 2.141 1.465 4.637l.191 1.008c.031.145.063.34.066.438l.004.176l.051-.156c.027-.086.051-.48.055-.871zm-44.852.645c.18-.09.41-.223.512-.297s.734-.414 1.402-.762l1.211-.629l.02-.414c.012-.227 0-.41-.027-.41a5.26 5.26 0 0 0-.484.148c-.836.285-1.312.355-2.668.391c-1.641.043-2.836-.074-4.617-.457l-.906-.191l-.152-.035l.125.141c.27.305 2.02 1.406 2.953 1.859c.875.422 1.906.809 2.199.816c.059 0 .254-.07.434-.16zm21.105-.047c.875-.293 2.18-.934 2.996-1.473c.879-.578 1.473-1.004 1.445-1.031c-.012-.012-.398.074-.859.191c-1.18.297-1.98.41-3.168.449c-1.254.043-2.16-.07-3.082-.387l-.68-.23c-.031-.008-.102.191-.152.449l-.09.461l.223.184c.453.367 2.445 1.598 2.59 1.598c.082 0 .434-.098.777-.211m-9.703-1.266c.105-.055.203-.117.219-.137s.215-.152.438-.293l.934-.582l1.398-.863c1.137-.691 1.457-.926 1.492-1.09c.066-.336.082-1.988.031-3.09c-.059-1.219-.234-3.18-.285-3.234c-.016-.016-.078.004-.137.043s-.258.164-.445.277s-.652.398-1.027.645l-1.316.844l-1.297.816c-.367.234-.687.422-.719.422s-.273-.242-.539-.543l-.98-1.07l-1.516-1.637c-.312-.34-.332-.352-.387-.219c-.105.25-.496 1.289-1.133 3c-.613 1.648-.984 2.793-.984 3.043c0 .082.793.914 2.289 2.402l2.285 2.277l.746-.457zm11.805-1.07c.398-.07.93-.184 1.184-.258l.832-.234l.371-.105l-1.027-.043c-1.723-.07-2.473-.187-3.699-.586c-.375-.121-.75-.211-.84-.195c-.785.137-2.16.457-2.195.508c-.105.156-.047.348.137.441a6.535 6.535 0 0 0 1.621.523l.621.094c.395.07 2.309-.023 2.996-.145zm-21.605-.031c.258-.059.516-.133.574-.164s.137-.059.172-.059s.23-.074.438-.168c.25-.109.371-.199.371-.273c0-.133.023-.125-1.211-.367l-1.531-.32l-.535-.121l-.848.281a11.26 11.26 0 0 1-1.395.375c-.617.105-1.914.215-2.625.227l-.477.008l.469.117c.824.211 1.883.418 2.488.484l.777.094c.105.016.789.02 1.527.008c.977-.012 1.465-.043 1.805-.121zm1.613-2.637c0-.281-.004-.512-.012-.512s-.172.055-.359.117c-.875.309-2.242.324-3.547.043c-1.07-.23-2.82-.664-2.895-.719a1.867 1.867 0 0 0-.363-.121c-.289-.07-2.305-.902-2.437-1.004c-.035-.027-.469-.219-.965-.43c-.898-.375-.902-.379-1.367-.879l-.469-.5l-.965-.16l-1.211-.207c-.137-.027-1.629-.262-3.316-.523c-2.797-.437-3.074-.469-3.164-.379c-.156.156-.52.32-1.035.469c-.32.094-.531.195-.645.313l-.164.176l.238.102c.133.055.824.281 1.539.5l1.648.527c.195.07 1.039.309 1.879.535l2.023.559c.449.137 3.207.828 5.414 1.359l2.332.531c.805.176 1.52.344 1.59.375s1.258.297 2.645.59l3.02.645l.496.109l.043-.5a21.58 21.58 0 0 0 .047-1.016m15.781 1.102l2.492-.551l2.332-.527l2.367-.562l2.707-.656l2.18-.559c1.832-.469 4.918-1.328 5.164-1.437c.07-.031.363-.129.652-.219c1.66-.512 2.68-.867 2.68-.937c0-.102-.359-.398-.488-.398c-.184-.004-.953-.297-1.199-.461l-.238-.16l-2.852.434l-3.145.504c-.242.059-.367.145-.684.477c-.508.531-.684.637-1.945 1.172l-1.824.805c-.598.273-1.012.406-1.898.621l-1.484.367a23.66 23.66 0 0 1-1.184.27c-.723.152-.969.176-1.918.176c-1.234 0-1.715-.09-2.152-.402l-.254-.18l-.074.352c-.07.344-.32 1.961-.32 2.082c0 .035.059.043.137.02s.504-.125.949-.227zm-17.051-1.617c.777-.109.988-.211 1.512-.734c.598-.59 1.199-1.531 1.422-2.219c.137-.422.168-.645.191-1.445c.027-.867-.043-1.77-.16-2.066c-.043-.113-.066-.109-2.406.332c-1.48.281-2.012.371-4.086.695c-3.672.578-4.785.73-6.109.852l-.855.078l-.195.422l-.199.422l.402.406c.449.457.613.547 2.02 1.148c.547.23 1.289.563 1.652.734c.477.223.996.395 1.867.621l1.551.402a15.37 15.37 0 0 0 .996.223l.777.152c.242.055 1.191.039 1.621-.023zm19.605-.367c.473-.078 1.715-.344 3.234-.695c1.02-.234 1.523-.383 1.961-.582a51.38 51.38 0 0 1 1.215-.531c.344-.141.875-.379 1.184-.527s.668-.305.797-.352c.332-.113 1.125-.945 1.051-1.098c-.375-.777-.273-.715-1.352-.824c-1.57-.16-5.859-.801-7.656-1.145l-4.371-.785c-.082 0-.297.508-.434 1.008c-.168.625-.137 1.844.07 2.633c.207.805.633 1.648 1.082 2.145c.379.426.629.563 1.227.676l.496.098a8.07 8.07 0 0 0 1.496-.02zm-9.937-2.555l1.5-.965l2.48-1.582c.07-.043.07-.156.008-.652c-.094-.742-.039-2.789.09-3.461c.047-.258.082-.473.078-.48c-.016-.016-1.527.434-1.906.57a32.14 32.14 0 0 1-1.109.34l-.828.238l-.152-.238c-.082-.133-.152-.258-.152-.277s-.078-.152-.176-.297s-.34-.551-.531-.91l-.383-.676c-.047-.047-.246.219-1.008 1.352c-1.234 1.828-2.254 3.66-2.156 3.871c.051.102.395.484 1.609 1.797l1.672 1.848c.063.113-.008.148.965-.477zM34.047 50.32c.676-.094 1.535-.332 1.789-.5a.877.877 0 0 0 .246-.309c.098-.199.094-.23-.07-.727c-.215-.645-.516-1.164-.703-1.211c-.207-.051-1.125.539-1.781 1.148c-.641.598-.773.75-.988 1.133c-.25.434-.266.547-.098.578c.195.039.82-.008 1.605-.113zm61.547.117c.117-.031.137-.066.102-.203c-.074-.305-.406-.734-1.043-1.352c-.621-.605-1.477-1.234-1.785-1.312c-.223-.055-.453.258-.754 1.031c-.223.578-.242.672-.18.859c.156.477 1.145.793 3.047.977c.406.039.469.039.613 0m-62.012-2.203c.066-.074.387-.309.715-.527l.594-.398l.207-1.078l.324-1.512c.066-.238.219-.883.344-1.43c.848-3.742 1.723-6.59 2.738-8.91c.02-.043-.078-.086-.258-.113a3.39 3.39 0 0 1-.547-.133c-.141-.051-.289-.078-.328-.062s-.199.375-.355.797l-.453 1.172c-.215.508-1.086 3.039-1.363 3.957a33.66 33.66 0 0 0-.434 1.68l-.387 1.613c-.211.844-1.078 4.902-1.078 5.055c0 .07.188-.008.281-.109zm61.148.043c0-.105-.344-1.734-.684-3.246l-.5-2.27a34.478 34.478 0 0 0-.375-1.559l-.34-1.184c-.258-.898-.773-2.488-.836-2.582a2.542 2.542 0 0 1-.145-.34c-1.156-3.23-1.129-3.176-1.48-2.988a2.763 2.763 0 0 1-.496.141l-.375.078l.129.246c.379.738 1.328 3.543 1.805 5.355l.531 2.008c.18.684.406 1.68.836 3.715c.172.816.348 1.539.391 1.605c.074.113 1.398 1.086 1.492 1.098c.027.004.047-.031.047-.078zm-27.633-3.172c.465-.156.891-.281 2.23-.672c.539-.156.719-.234.762-.332c.027-.07.168-.926.305-1.902l.289-1.883c.016-.059.02-.109.004-.109c-.055 0-.887.32-1.148.441c-.145.066-.656.266-1.133.438l-.867.32l-.105.32a22.42 22.42 0 0 1-.711 1.77c-.086.133-.09.156.277-1.203l.289-1.059l-.285-.527c-.156-.289-.312-.555-.344-.586s-.16.168-.328.527c-.258.551-.754 1.418-.852 1.488c-.121.086-.687.848-.687.926c0 .047.234.484.523.965l.652 1.141l.129.258l.266-.082c.148-.043.477-.152.734-.238zm6.926-3.262a4.015 4.015 0 0 0-.437-.758c-.176-.23-.223-.199-.281.184c-.031.211-.02.227.27.391c.164.094.32.199.34.23c.063.105.152.066.109-.047zm-5.609-1.113a42.2 42.2 0 0 1 1.48-.582l.965-.363l.086-.426c.125-.602.113-1.797-.02-2.496c-.059-.316-.133-.594-.16-.609c-.055-.035-.223.066-1.59.961l-.812.535l-.074.656c-.062.574-.406 2.133-.539 2.441c-.066.164.074.137.664-.117m-.77-.832c.281-1.098.418-1.969.332-2.102c-.023-.035-.164-.137-.32-.23a3.75 3.75 0 0 1-.41-.293l-.129-.117l-.039.672c-.02.371-.094.926-.164 1.234l-.133.559l.297.539c.164.297.316.52.34.496s.125-.367.227-.758zM50.328 38.34c-.121-.172-.234-.367-.254-.437c-.051-.152-.043-.152-.562.023l-.43.145l.309.18c.328.191.859.398 1.043.398c.09.004.07-.051-.105-.309zm24.93-.426c-.152-.215-1.227-1.234-1.391-1.324c-.102-.055-.109-.02-.109.465c0 .445.016.531.109.559c.059.016.414.145.793.281s.695.238.707.227s-.039-.105-.109-.207zm-23.328-.336a2.977 2.977 0 0 1-.27-.391l-.16-.27c-.023-.027-.578.301-.621.367c-.062.102.703.41 1.059.426c.113.008.113.004-.008-.133zm17.918-1.199c.469-.309.852-.594.855-.641s-.09-.281-.203-.527c-.191-.414-.613-.949-1.129-1.434c-.25-.23-.859-.574-1.305-.727l-.352-.121l-.051.141c-.027.074-.129.711-.227 1.41l-.172 1.277l.375.383c.352.359.637.887.637 1.176c0 .063.109.02.359-.145l1.211-.793zm-1.941.797c-.004-.105-.375-.684-.539-.836c-.207-.191-.641-.488-.711-.488c-.031 0 .027.176.129.387c.152.332.242.434.598.688c.414.289.523.34.523.25zm-14.687-.75a1.697 1.697 0 0 0-.172-.246l-.109-.141l-.211.129c-.234.141-.211.203.117.297c.355.098.449.09.375-.039m7.031-.66l1.09-.242l.371-.082l-.02-.277c-.02-.293-.164-1.203-.266-1.687l-.062-.289l-.48.121c-.719.184-1.687.492-1.723.555c-.02.031.027.176.105.32c.125.234.141.359.145 1.031c0 .48.023.754.063.738s.383-.098.777-.187zm6.742-.367c.133-.793.367-2.668.336-2.695c-.133-.137-2.691-.203-2.816-.074c-.027.023 0 .449.055.941a15.07 15.07 0 0 1 .102 1.219c0 .203.031.328.078.34s.344.055.672.09s.789.137 1.027.219a9.72 9.72 0 0 0 .473.16c.023 0 .055-.086.074-.199zm-4.035-.141c.344-.047.797-.09 1.012-.09c.383 0 .391-.004.387-.172c0-.254-.105-1.219-.195-1.805c-.074-.504-.082-.516-.25-.516a2.39 2.39 0 0 0-.437.066a47.33 47.33 0 0 1-1.004.211c-.402.082-.746.16-.758.172s.043.359.125.77a18.87 18.87 0 0 1 .191 1.102c.051.414-.008.398.93.262zm-23.91-1.461c.879-.328 1.207-1.273.742-2.129c-.285-.527-.785-.797-1.473-.793c-1.078.004-1.738.871-1.441 1.902c.258.887 1.266 1.359 2.172 1.02m51.27-.047c.328-.16.648-.453.785-.723a1.93 1.93 0 0 0 .055-1.25c-.293-.766-1.367-1.137-2.184-.758c-.375.172-.789.621-.891.961c-.238.801.145 1.535.969 1.848c.328.129.918.09 1.266-.078m-15.039-.383c-.078-.078-1.059-.672-1.336-.816c-.191-.098-1.457-.559-1.531-.559c-.016 0 .059.125.164.281s.25.418.32.582l.125.301l.977.125c1.148.148 1.363.164 1.281.086m-21.523-.195a.78.78 0 0 0 .395-.395c.223-.461.176-.492-.371-.27c-.336.141-.996.586-.996.676c0 .023.063.059.141.07c.324.063.582.039.832-.082zm-1.23-.266c.379-.352.98-.684 1.566-.855c.254-.078.551-.207.652-.285l.539-.418c.125-.094.352-.332.496-.527c1.883-2.492 3.504-3.906 5.184-4.531c.32-.121.348-.141.188-.145c-.48-.008-2.57.453-3.48.766c-3.023 1.039-5.809 2.598-6.664 3.73c-.469.617-.605.969-.578 1.48c.023.367.051.453.203.613c.32.332.816.512 1.305.473c.25-.023.348-.07.59-.301zm-16.02-1.082c.047-.195.223-.465.48-.742l.184-.195l-.176-.039c-.098-.023-.555-.156-1.02-.293s-1.527-.426-2.363-.645l-1.867-.492a65.61 65.61 0 0 0-3.023-.719l-.625-.129l-.43.18l-.434.176l-.777-.113c-4.027-.598-8.973-.773-12.324-.434l-1.371.156c-.051.016.543.02 1.316.004c3.941-.066 8.543.277 11.602.867c1.18.227 4.492.918 5.039 1.055l2.055.5c1.555.375 2.559.656 3.164.883c.492.184.52.18.57-.02m55.863-.086a43.652 43.652 0 0 1 2.148-.59l1.742-.437c1.367-.352 4.676-1.051 6.598-1.395c2.863-.512 6.047-.758 9.926-.766c2.719-.004 2.699.004.531-.227c-1.023-.109-4.484-.152-5.883-.074c-2.059.113-4.543.355-6.133.594l-.559.086l-.398-.18l-.398-.184l-.918.191a42.93 42.93 0 0 0-1.965.461l-4.91 1.301l-.785.23l-.477.137l.238.246c.133.137.281.379.34.551s.105.309.113.309a55.59 55.59 0 0 0 .789-.254zm-53.59-1.289c0-.195-.715-1.473-1.145-2.043c-.469-.617-1.699-1.883-2.062-2.113c-.102-.066-.328-.234-.504-.375s-.582-.406-.902-.586a17.07 17.07 0 0 1-.742-.434c-.461-.316-.301-.102.504.672c1.668 1.605 2.84 3.055 3.449 4.262l.355.703l.523-.004c.379 0 .523-.023.523-.082zm51.688-.359c.176-.375 1.215-1.992 1.336-2.082c.023-.016.258-.281.52-.59a31.37 31.37 0 0 1 2.164-2.246c.414-.367.547-.551.277-.371a12.88 12.88 0 0 1-.652.379c-.508.281-1.195.707-1.246.773c-.016.023-.297.254-.621.516c-.695.555-1.516 1.43-2.004 2.133c-.41.586-.961 1.551-1.016 1.773l-.035.156l.539-.008l.539-.004zm-27.941-.863c.305-.051.789-.109 1.074-.133c.5-.043.527-.051.965-.383c.246-.184.953-.586 1.57-.891l1.121-.555h-.437c-.582 0-1.605.148-2.332.34c-.988.262-1.559.578-2.414 1.324c-.406.355-.484.488-.25.426c.078-.023.395-.082.703-.129zm-49.965-.637c-.062-.016-.16-.016-.219 0s-.012.027.109.027s.168-.012.109-.027zm103.133 0c-.059-.016-.156-.016-.219 0s-.008.027.109.027s.168-.012.109-.027zm0 0\\\"/><path d=\\\"M83.941 103.961c.195-.023.195-.027.234-.473l.051-.789l.012-.34l-.277-.051a23.16 23.16 0 0 1-1.105-.273l-.852-.199c-.062.063-.27 1.707-.223 1.754c.07.07.465.148 1.281.258c.414.055.527.082.34.086c-.645.016-2.527-.336-4.027-.746c-2.914-.797-5.402-2.031-7.484-3.715c-1.254-1.012-3.062-2.93-5.035-5.348l-.844-1.012c-.008 0-.406.184-.883.41c-1.836.875-5.937 2.57-8.086 3.344c-4.594 1.656-8.258 2.547-11.418 2.781c-2.77.207-6.105-.152-8.367-.895c-2.305-.762-3.555-1.723-4.375-3.379c-.309-.621-.43-1.203-.254-1.203c.113 0 .445.219.98.652c.563.449 1.199.879 1.633 1.098c.871.438 2.375.828 4.063 1.059c1.215.16 3.738.195 4.699.063c1.711-.238 4.414-.934 6.91-1.785c2.379-.809 3.211-1.187 8.914-4.059c2.879-1.449 4.031-2.059 4.031-2.133c0-.156-.242-.832-.793-2.207c-.656-1.641-1.078-2.797-2.238-6.133l-1.434-3.969c-.121-.039-.703.738-2.227 2.973c-.41.602-.867 1.211-1.016 1.363c-.258.258-.285.27-.551.238c-.57-.062-1.613-.707-2.727-1.68c-.273-.238-1.129-1.074-1.902-1.859c-1-1.012-1.445-1.422-1.547-1.422c-.48 0-.75 2.355-.383 3.316c.078.199.125.379.105.398c-.094.094-1.336-.777-1.547-1.086c-.332-.484-.73-1.434-.832-1.977a2.4 2.4 0 0 0-.117-.422l-.074-.176l-.258.277c-.316.348-.594.887-.773 1.516c-.109.387-.137.648-.141 1.281c0 .496-.023.793-.062.793c-.156 0-.547-.344-.809-.711a4.813 4.813 0 0 1-.871-2.305c-.086-.742-.219-.828-.562-.363c-.523.711-.836 1.582-.84 2.348l-.004.438l-.332-.352c-.602-.637-.867-1.398-.867-2.48c-.004-.906.145-1.473.625-2.406c.219-.43.457-1.012.551-1.34c.09-.316.246-.723.348-.902c.371-.648 1.152-1.195 2.047-1.426c.551-.141 3.773-.094 4.473.066c.949.215 1.102.301 1.816 1.02a42.28 42.28 0 0 1 1.68 1.875c.559.668 1.18 1.379 1.379 1.586l.359.379l.125-.156c.199-.246.789-1.43.898-1.801c.055-.187.098-.551.098-.809c.004-1.473.703-2.621 2.074-3.398l.547-.312l-.035-.652c-.043-.754-.164-1.34-.305-1.477c-.062-.066-.305-.113-.766-.152a17.52 17.52 0 0 1-4.004-.828c-2.023-.691-5.457-2.395-9.773-4.848c-3.633-2.062-5.164-2.707-7.375-3.094a8.86 8.86 0 0 0-1.867-.141c-1.289 0-1.699.094-2.801.641c-.895.441-1.398.82-1.578 1.195c-.117.246-.168.492-.387 1.906c-.039.25-.078.449-.09.438s-.051-.426-.09-.922c-.098-1.164-.137-1.32-.422-1.551c-.891-.734-2.484-1.094-4.184-.945c-.449.039-1.004.129-1.234.203c-1.215.371-2.937 1.496-4.27 2.785c-.734.711-1.762 1.941-1.805 2.16c-.02.098-.094.543-.16.988c-.156 1.043-.25 1.461-.32 1.461c-.031 0-.062-.09-.066-.199l-.047-1.23l-.035-1.027l-.668-.445c-.742-.492-1.594-.891-2.332-1.09c-.645-.176-1.797-.187-2.387-.027c-2.191.594-4.066 2.82-5.559 6.605c-.887 2.254-1.934 6.363-2.109 8.289c-.117 1.285-.023 1.988.609 4.652c.188.781.332 1.453.32 1.484c-.074.227-1.223-3.074-1.785-5.141C1.5 74.426.492 68.957.184 65.414c-.106-1.195-.149-6.379-.067-7.617c.141-2.031.516-4.387.969-6.043c.266-.957.957-3.074 1.48-4.512c2.34-6.445 6.945-12.336 13.402-17.156c.664-.496 1.25-.961 1.301-1.035c.09-.129.086-.141-.043-.195c-.336-.137-5.234-.031-7.137.152c-.355.035-.656.055-.672.039c-.066-.066 2.098-.48 3.281-.625a21.685 21.685 0 0 1 1.336-.129l.559-.027l-.465.055l-1.742.234c-.156.027 1.176.047 2.957.047c3.629.004 5.473.109 8.09.473a113.28 113.28 0 0 1 6.473 1.238l2.242.527c1.547.363 2.184.535 3.527.949l.793.246l.133-.328a2.41 2.41 0 0 1 .344-.574l.211-.25l-.613-.191c-.559-.176-1.824-.516-5.109-1.371a66.49 66.49 0 0 0-2.254-.539l-1.098-.234l-.781.352l-1.312-.168l-1.715-.227c-.625-.09-2.648-.25-3.891-.309l-1.117-.055l1.43.027c1.98.039 3.734.188 5.391.465c.918.156 1.113.152 1.492-.012c.262-.109.387-.125.762-.094c.484.039 2.52.531 5.68 1.371c1.707.453 3.293.848 3.414.848c.164 0-.176-.727-.727-1.551c-.605-.906-1.266-1.664-2.84-3.258c-.871-.879-1.566-1.621-1.539-1.645c.066-.066 1.742.801 2.434 1.266a11.48 11.48 0 0 1 2.148 1.805c.723.75 1.211 1.434 1.801 2.512c.215.395.547.906.742 1.141c.469.57.617.836.699 1.242c.141.691-.176 1.262-1.012 1.828a1.84 1.84 0 0 0-.457.48c-.75 1.285-2.219 6.219-3.234 10.891l-.348 1.605l.285.316c.355.398.758 1.223.852 1.738c.039.219.098.43.137.473c.074.082 1.211.285 5.477.984c2.371.387 2.93.457 2.973.391a15.74 15.74 0 0 0 .273-.465l.219-.387l.418-.066a149.89 149.89 0 0 1 2.16-.285c2.457-.309 5.383-.77 10.094-1.594c.672-.117.871-.133 1.078-.078l.254.07l.512-.449c.715-.629 4.082-4.109 5.113-5.289c.883-1.008 1.574-2.414 1.813-3.687c.125-.656.094-1.57-.066-2.051c-.137-.41-.496-.883-.781-1.031c-.734-.375-2.91-.277-5.164.238c-1.316.301-1.426.355-1.742.855s-.676.828-1.367 1.234c-.91.535-1.301.848-2.668 2.148c-1.383 1.309-1.859 1.684-2.215 1.738c-.281.047-.988-.191-1.242-.418l-.195-.172l.133-.176c.07-.098.461-.445.871-.777c1.898-1.531 2.887-3 2.887-4.289c0-.195-.031-.441-.066-.547c-.062-.18-.094-.195-.34-.195c-.27 0-1.246.305-1.508.473c-.23.148-.172.332.238.723c.453.43.422.441-.562.199c-.703-.172-1.055-.172-1.25.008c-.113.102-.113.109.008.348c.07.137.289.406.492.605c.363.355.363.359.168.336a4.959 4.959 0 0 1-1.391-.34c-.477-.195-.684-.207-.785-.043c-.117.184.023.453.453.879l.43.422h-.199a3.27 3.27 0 0 1-.637-.121c-.383-.105-.641-.207-1.367-.535c-.102-.047-.379-.113-.609-.148c-.512-.074-.887-.281-1.191-.648c-.562-.687-.801-1.777-.496-2.266c.133-.207.379-.309 1-.418c1.289-.223 2.273-.75 2.703-1.445c.125-.199.129-.25.066-.531c-.102-.434-.09-1.16.023-1.492c.355-1.039 2.367-2.504 4.98-3.621c2.418-1.039 5.379-1.809 6.488-1.691l.406.043l-.211.129c-1.277.773-2.215 1.527-3.094 2.492c-.867.949-1.254 1.57-1.086 1.738c.141.141 2.82-.566 3.273-.863c.133-.086.461-.363.73-.613c.914-.855 1.992-1.367 3.418-1.617c.797-.141 1.949-.191 2.285-.098l.266.07l-1.418.711c-1.316.66-1.977 1.078-1.867 1.188c.023.023.305.078.621.117l.578.074l-1.336.039c-.773.02-1.551.078-1.836.133l-1.184.223c-.84.164-2.605.613-3.363.859c-.309.102-.566.176-.578.168c-.043-.035.316-.879.543-1.266c.328-.559 1.199-1.582 1.66-1.949c.535-.422.875-.734.809-.734c-.094-.004-.82.48-1.477.977c-.738.559-1.797 1.648-2.414 2.477c-.566.758-1.234 1.461-1.625 1.711c-.266.172-.301.223-.402.602c-.211.781-.77 1.117-1.582.957a3.72 3.72 0 0 0-.598-.074l-.594.016c-.328.008-.484-.02-.77-.152c-.363-.164-.473-.168-.473-.012c0 .047-.195.266-.434.484c-.66.613-1.383.922-2.453 1.039c-.887.102-1.07.289-1.016 1.066c.043.66.242 1.063.734 1.512c.602.543 1.027.586 2.086.199c.395-.145 2.383-1.234 2.754-1.512c.27-.203 1.492-.777 2-.941c.223-.07.551-.148.73-.172c.316-.039.324-.035.371.141c.027.098.051.516.051.926l-.004.746l-.332.652c-.668 1.32-1.195 1.922-2.723 3.082c-.582.445-.801.645-.758.695c.086.105.949.457 1.125.457c.316 0 .945-.512 2.133-1.73c1.195-1.227 1.652-1.598 2.457-2.004c1.473-.742 1.93-1.457 1.855-2.91c-.031-.613-.176-.98-.461-1.168c-.129-.086-.148-.121-.082-.156c.344-.191 2.309-.75 4.137-1.176c1.395-.328 4.551-.391 4.844-.098c.047.043.293.164.551.266c1.004.387 1.816 1.004 2.348 1.781c.207.305.566 1.102.566 1.262c0 .063.074.434.164.828c.207.91.234 2.066.063 2.828c-.059.273-.137.531-.172.57s-.203 1.035-.375 2.211c-.242 1.668-.336 2.168-.426 2.266c-.266.293-.48 2.262-.379 3.492c.035.406.086.871.117 1.027s.031.328.004.379s-.012.383.035.738c.23 1.785.25 2.137.25 4.145c0 2.039 0 2.066-.137 2.211c-.113.125-.148.281-.234 1.109c-.18 1.727-.32 2.566-.625 3.672c-.082.289-.219.895-.309 1.34c-.207 1.027-.203 1.023-.371 1.086c-.121.047-.16.156-.305.883c-.238 1.203-.34 2.09-.414 3.594c-.051 1.039-.086 1.348-.156 1.402c-.078.055-.082.18-.027.813c.031.41.086.973.121 1.246c.195 1.609.258 2.484.184 2.621c-.109.203-.047.816.309 3.168c.406 2.645.406 2.633.316 2.734c-.055.07-.055.207-.004.574c.184 1.289.277 1.777.441 2.324c.398 1.32.48 1.648.43 1.746c-.074.145.121.762.734 2.289c.293.734.539 1.449.551 1.59a1.79 1.79 0 0 0 .121.504a50.74 50.74 0 0 0 1.465 2.965c.168.297.309.574.309.621c0 .262 1.332 2.211 1.992 2.918c3.426 3.688 4.688 4.691 7.313 5.809c1.457.621 4.637 1.051 6.738.91c1.559-.105 2.84-.418 4.027-.992c1.512-.73 2.367-1.426 3.328-2.703c1.336-1.777 1.805-3.301 1.727-5.574c-.035-.918-.07-1.195-.277-1.992a15.73 15.73 0 0 0-.641-1.699c-.176-.379-.254-.508-.797-1.297c-.281-.402-1.582-1.734-1.699-1.734c-.035 0-.051.023-.039.047c1.152 2.25 1.359 3.715.824 5.824a6.49 6.49 0 0 1-1.164 2.445c-.715.949-1.551 1.617-2.828 2.258c-1.289.648-2.273.875-4.008.922c-1.348.039-2.094-.023-3.23-.266l-1.199-.25c-.617-.117-1.758-.512-2.512-.863c-.512-.238-2.211-1.301-2.457-1.539l-.645-.543c-1.781-1.488-3.52-3.715-4.59-5.883c-.848-1.723-1.039-2.437-2.047-7.691l-.496-2.551c-.48-2.242-.625-3.973-.629-7.406c0-2.34.055-3.598.234-5.168c.113-1.004.215-1.527.492-2.52c.371-1.328 1.086-4.328 1.305-5.477a66.04 66.04 0 0 0 .402-2.461l.223-1.422c.016-.047-.066-.215-.18-.371c-.437-.602-.887-1.695-1.031-2.527a7.4 7.4 0 0 1 .02-2.059a4.08 4.08 0 0 1 .215-.68a6.55 6.55 0 0 0 .266-.809c.215-.848.742-2.73.832-2.965c.117-.309.496-1.746.688-2.609c.414-1.891.59-3.238.59-4.621c0-1.211-.051-1.633-.324-2.758c-.246-1.008-.523-1.621-1.047-2.309s-.664-.816-1.469-1.348c-.902-.594-1.699-.875-3.633-1.281c-.262-.051-.242-.059.262-.062c.457-.008.664-.047 1.277-.254c.574-.191.855-.254 1.293-.273c.309-.016.461-.016.34 0c-.719.078-1.926.402-1.926.516c0 .023.203.105.449.18s.621.203.828.285l.375.145l.652-.238l1.422-.516c.422-.148.73-.289.684-.309s.016-.035.145-.035s.246.02.266.055c.051.082-.238.219-1.078.508c-1.297.445-1.691.621-1.691.742c0 .152 1.398 1.195 1.961 1.465a16.79 16.79 0 0 0 1.09.461c.359.141.91.395 1.227.57c.578.32 1.27.871 1.191.953c-.023.023-.504-.016-1.062-.086s-1.141-.133-1.281-.133c-.32 0-.324.023-.105 1.035c.086.395.156.801.156.902c0 .367.195.637 1.176 1.641c.887.906 1.254 1.359 1.168 1.441c-.016.02-.402-.094-.859-.242c-1.07-.355-1.145-.371-1.219-.277s-.168.617-.297 1.625l-.094.738l.305.508c.457.762.699 1.277.68 1.441c-.02.141-.035.137-.547-.195c-.574-.367-.66-.395-.711-.227a226.2 226.2 0 0 0-1.246 4.563c-.25 1.066-.246 1.035-.102 1.113c.453.242 8.047 1.547 11.582 1.992c.566.07 1.113.156 1.215.188c.172.055.164.059-.066.035a26.18 26.18 0 0 0-.684-.066a116.32 116.32 0 0 1-5.82-.801l-2.801-.5l-3.437-.637c-.086-.023-.141.039-.234.27a4.765 4.765 0 0 1-.184.402c-.098.168-.25 1.098-.25 1.516c0 1.625.941 3.672 1.918 4.164c.816.414 2.488.43 3.867.035c.121-.031.836-.199 1.59-.371c1.867-.422 2.016-.465 2.5-.707a25.05 25.05 0 0 1 1.203-.539c.426-.18 1.027-.445 1.336-.59s.617-.281.688-.305s.336-.25.59-.508l.465-.469l-.234-.434c-.129-.238-.207-.434-.18-.434c.082 0 .262.215.262.316c0 .047.066.172.148.273c.145.184.168.188.637.18c.27-.004 1.383-.152 2.477-.328c2.344-.375 2.773-.461 3.078-.609c.211-.105.242-.16.477-.828c.324-.914.387-1.031.77-1.387l.316-.297l-.375-1.664c-.961-4.227-1.789-7.266-2.512-9.207c-.547-1.473-.797-1.914-1.27-2.23c-.613-.414-.887-.812-.934-1.375c-.043-.52.125-.945.582-1.461a6.79 6.79 0 0 0 .715-1.043c1.195-2.195 2.266-3.387 4.141-4.613c.563-.367 2.711-1.496 2.852-1.496c.02 0-.289.293-.691.648a36.88 36.88 0 0 0-3.168 3.211c-.848 1.02-1.703 2.367-1.703 2.695c0 .066.047.105.133.105c.195 0 1.074-.211 3.008-.727c3.023-.805 5.465-1.395 5.918-1.43c.34-.027.484-.012.637.066c.344.18.684.18 1.82.016c2.148-.316 4.117-.461 6.781-.5c1.965-.027 1.82-.012-.824.086a56.03 56.03 0 0 0-5.492.465c-2.012.266-1.801.262-2.215.063l-.367-.176l-.98.203c-.539.113-1.555.352-2.258.531l-5.586 1.508l-.266.102l.242.258a1.68 1.68 0 0 1 .32.508c.043.133.098.266.125.297c.047.051.684-.121 1.848-.492c.246-.078 1-.273 1.68-.434l2.352-.562c2.543-.613 6.223-1.297 8.188-1.52c2.539-.289 3.621-.34 7.031-.344c1.797 0 3.145-.023 2.988-.047c-.742-.121-2.637-.305-3.641-.352c-.82-.039-.961-.055-.527-.059c1.703-.027 4.949.355 6.547.77c.57.148.574.148.203.121a74.278 74.278 0 0 0-4.012-.219c-1.898-.059-3.359-.035-3.547.066c-.117.063.145.309 1.148 1.07c1.07.813 2.148 1.672 2.148 1.711c0 .02-.051-.004-.109-.055c-.824-.691-3.199-2.445-3.566-2.637c-.133-.07-.363-.074-1.184-.027c-1.246.074-3.055.23-3.605.313l-1.027.152a72.25 72.25 0 0 0-4.172.738c-1.57.328-5.055 1.117-5.664 1.285l-2.687.785c.008.008.672.125 1.477.266l1.711.316c.137.035.992.219 1.898.406c2.371.488 6.141 1.434 7.328 1.832l1.809.563c1.152.348 1.488.461 1.848.621a52.86 52.86 0 0 0 1.371.5c.684.246 1.344.5 1.461.563s.695.316 1.277.563s1.086.469 1.121.496s.508.273 1.059.547s1.094.563 1.211.645s.43.27.688.422c.559.328 2.754 1.773 2.871 1.887c.047.047.266.203.488.352c.621.418 2.262 1.711 2.949 2.324c1.117 1 1.938 1.934 2.828 3.215c.176.258.32.449.32.43s-.039-.156-.094-.301s-.082-.281-.066-.293c.039-.043.926 2.676 1.273 3.902c.375 1.328.516 1.969.719 3.301c.879 5.719.473 12.406-1.215 19.98c-.75 3.344-1.621 6.355-2.281 7.875c-.266.609-.477 1.012-.422.801c.238-.895 1.164-5.027 1.16-5.191c0-.582-.691-3.902-1.195-5.758c-1.266-4.652-2.75-7.488-4.754-9.098c-1.055-.848-1.785-1.109-3.082-1.105c-.777.004-.883.02-1.422.203c-1.176.402-2.535 1.156-2.715 1.504c-.078.145-.109.469-.141 1.344c-.02.633-.059 1.164-.082 1.18c-.051.031-.137-.391-.277-1.34c-.145-.961-.262-1.363-.504-1.719c-.254-.375-2.09-2.195-2.773-2.75c-.828-.668-2.062-1.371-2.937-1.672c-.617-.207-1.797-.297-2.844-.215c-.707.059-.898.098-1.391.293c-1.004.402-1.266.566-1.445.906c-.047.09-.125.535-.176.988c-.129 1.168-.164 1.172-.344.035c-.152-.945-.238-1.164-.582-1.523c-.746-.777-1.957-1.285-3.453-1.445c-1.27-.137-2.68.055-4.375.602c-1.629.523-2.684 1.031-5.547 2.656c-3.227 1.836-4.93 2.727-7.27 3.809c-1.633.754-2.461 1.066-3.535 1.336c-1.223.305-1.996.426-3.199.5c-.555.031-.836.074-.895.137c-.133.129-.215.676-.215 1.398v.641l.203.031a13.57 13.57 0 0 0 .676.066c1.434.109 2.508.77 3.043 1.863c.25.512.434 1.246.438 1.73c0 .457.172 1.117.438 1.668c.324.684.625 1.184.715 1.184c.074 0 .742-.75 2.055-2.305a30.08 30.08 0 0 1 1.426-1.59c.527-.523.594-.57 1.059-.727c.922-.309 1.125-.328 3.145-.328c1.699 0 1.934.012 2.242.117c.566.195.902.391 1.289.75c.434.402.703.875.887 1.555a4.72 4.72 0 0 0 .246.715l.398.777c.367.711.504 1.305.504 2.184c-.004 1.066-.23 1.762-.82 2.48l-.297.367l-.039-.52a4.505 4.505 0 0 0-.457-1.613c-.199-.387-.637-.93-.75-.93c-.129 0-.215.254-.215.633c0 .719-.391 1.68-.996 2.441c-.395.496-.605.664-.684.535c-.023-.039-.062-.426-.082-.859s-.082-.961-.137-1.164c-.137-.52-.469-1.195-.746-1.512c-.223-.258-.238-.262-.352-.164c-.074.066-.117.191-.117.332c0 .305-.371 1.355-.629 1.785c-.266.441-.855.992-1.352 1.258c-.426.23-.449.211-.289-.238c.051-.145.125-.504.164-.801c.059-.453.055-.637-.031-1.141c-.121-.715-.285-1.227-.426-1.316s-.422.164-2.137 1.863c-1.988 1.973-2.852 2.648-3.758 2.949c-.703.238-.836.148-1.684-1.109l-1.227-1.75l-.895-1.227c-.246-.34-.434-.488-.434-.344c0 .285.695 4.063 1.188 6.457c.402 1.949.512 2.367.621 2.344c.051-.012.469-.184.93-.383c1.961-.844 4.383-1.484 7.168-1.898c1.625-.238 4.785-.27 6.711-.066c2.52.27 5.285 1.195 7.066 2.371c2.195 1.445 3.578 3.43 4.141 5.934c.246 1.098.219 2.742-.066 4.063c-.477 2.203-2.32 4.563-4.855 6.211c-1.668 1.09-4.145 1.996-5.703 2.086c-.27.016-.437.016-.375-.004c.098-.031.105-.09.066-.574c-.023-.297-.07-.574-.102-.617s-.164-.078-.285-.078s-.598-.047-1.051-.102s-.844-.09-.859-.074s-.051.344-.078.73c-.043.598-.035.707.047.754c.063.035-.059.055-.34.047c-.242-.004-.348-.016-.242-.031zm3.793-.195c.102-.031.469-.121.816-.199s.668-.16.703-.184c.043-.027.039-.152-.008-.398c-.07-.355-.074-.359-.258-.324c-.102.023-.574.039-1.055.039h-.867l.043.512a4.8 4.8 0 0 0 .07.563c.039.063.336.059.555-.008zm-6.141-1.164c.078-.5.129-.918.117-.93a11.85 11.85 0 0 0-.707-.332c-.711-.32-1.426-.715-1.492-.82c-.109-.18-.191-.012-.711 1.395c-.176.477-.297.887-.27.91c.105.094 2.445.668 2.762.68c.156.004.16-.004.301-.902zm8.707.445a10.66 10.66 0 0 0 .813-.344c.223-.113.246-.148.199-.27c-.062-.16-.031-.16-.855.008a6.72 6.72 0 0 1-.789.133c-.086 0-.172.023-.187.047c-.055.09.105.637.184.637c.043 0 .328-.094.637-.211zm-11.617-1.594c.23-.598.418-1.117.418-1.152s-.227-.234-.508-.445s-.785-.641-1.121-.957s-.621-.562-.633-.547s-.219.512-.461 1.109c-.695 1.73-.668 1.684-.867 1.652a8.692 8.692 0 0 0-.637-.059c-.453-.031-.461-.031-.277.066c.102.051.375.207.602.344s.891.441 1.465.676c.824.336 1.105.426 1.324.414l.277-.012zm13.359.75c.367-.187.801-.473.637-.418c-.055.02-.328.109-.609.207c-.387.129-.512.199-.512.285c0 .152.07.141.484-.074m-16.363-1.762a38.48 38.48 0 0 0 .566-1.371l.387-.98l-.891-.918c-.488-.504-.91-.926-.937-.934s-.195.195-.375.461a59.25 59.25 0 0 1-1.402 1.934l-.109.137l-.934-.145c-.516-.078-.945-.133-.961-.121s.055.086.156.164s.336.281.523.457s.742.602 1.23.945l.887.625l.605.039a15.13 15.13 0 0 1 .73.063c.324.051.344.039.523-.355zm-28.937-.973c1.738-.227 5.012-.965 6.426-1.445c1.598-.543 2.977-1.176 7.891-3.617c3.168-1.574 4.355-2.191 4.355-2.27a.98.98 0 0 0-.125-.207c-.07-.098-.379-.699-.684-1.332s-.586-1.156-.613-1.156c-.09 0-3.348 1.555-4.488 2.145c-4.797 2.465-6.207 3.105-8.59 3.898c-2.687.891-3.43 1.094-5.402 1.48l-1.664.324c-.687.137-2.871.102-4.168-.062c-1.371-.176-2.742-.457-3.57-.727c-1.02-.336-2.27-1.055-2.621-1.516c-.168-.219-.738-.66-.789-.609s.105.555.305.945c.625 1.242 1.379 1.961 2.852 2.73c1.535.797 3.953 1.359 6.609 1.535c1.18.078 3.215.023 4.277-.117zm26.273-1.297c.109-.164.262-.367.34-.453a8.22 8.22 0 0 0 .477-.652l.543-.789l.207-.289l-.336-.402c-.477-.57-1.164-1.531-1.445-2.023c-.129-.23-.258-.441-.289-.469s-.16.094-.293.277c-1.254 1.707-1.617 2.168-1.699 2.168c-.051 0-.582-.141-1.184-.316c-1.469-.426-1.555-.449-1.594-.41c-.074.074 1.5 1.941 2.383 2.824c.492.492.52.508.871.555a31.48 31.48 0 0 1 1.016.152l.73.117c.039.004.164-.129.273-.289zm14.965-.578a9.844 9.844 0 0 0 2-.414a12.41 12.41 0 0 0 2.191-1.074c.492-.336 1.336-1.141 1.602-1.52l.402-.57c.227-.312.633-1.348.77-1.961a17.5 17.5 0 0 1 .168-.707c.035-.133.063-.625.063-1.094c0-.773-.016-.918-.199-1.562a12.675 12.675 0 0 0-.441-1.27c-.262-.609-.832-1.504-1.105-1.734c-.195-.164-1.852-1.02-2.371-1.227c-.828-.328-2.73-.812-3.891-.988c-2.223-.34-5.793-.285-7.996.121c-2.516.465-3.793.789-5.254 1.336c-1.055.391-1.93.777-2.051.898c-.059.059.254 1.098.457 1.527l.363.793l.25.543l.766-.363c1.305-.617 2.602-.965 4.723-1.262c.918-.129 1.266-.141 3.297-.141c2.395 0 3.02.051 4.297.344c1.387.32 2.523.871 3.418 1.66c1.199 1.059 2.008 2.992 1.719 4.133c-.121.477-.297.832-.766 1.531c-.316.469-.656.82-1.445 1.5c-.715.613-2.762 1.359-3.797 1.383c-.309.004-.172.047.371.109c.664.078 1.805.082 2.461.008zm-2.211-.469c.324-.051.773-.152.996-.223c.602-.195 1.867-.84 2.055-1.047c.016-.02.25-.23.516-.465c.551-.488 1.246-1.465 1.473-2.066c.285-.762.074-1.543-.664-2.418c-1.027-1.223-2.816-2.055-5.371-2.5c-.555-.098-.996-.117-2.957-.117c-3.145.004-4.211.125-5.883.668c-1.258.406-2.301.91-2.301 1.105c0 .082 1.234 1.684 1.773 2.305c1.617 1.852 3.527 3.297 5.445 4.125c.867.371 1.414.547 2.02.641a12.62 12.62 0 0 0 2.898-.008m-28.508-.461c.152-.098.043-.125-.125-.031c-.09.051-.113.086-.062.086s.137-.023.188-.055zm.918-.324c.285-.102.391-.168.391-.25c0-.062-.016-.113-.031-.113c-.078 0-.84.406-.84.449c0 .074.055.063.48-.086m1.199-.473c.152-.066.328-.137.387-.16c.066-.023.109-.102.109-.199c0-.191-.07-.18-.637.105c-.293.145-.359.207-.359.336s.02.145.109.098c.063-.031.234-.109.391-.18m1.301-.52l.504-.191v-.242c0-.137-.012-.246-.031-.246c-.043 0-.859.441-.949.516c-.07.055-.113.355-.051.355c.012 0 .25-.086.527-.191zm10.43-.941l.867-1.168a7.86 7.86 0 0 1 .328-.426c.109-.109.109-.113-.102-.441c-.227-.352-1.453-2.875-1.559-3.199c-.051-.16-.102-.227-.16-.203c-.047.016-.637.504-1.309 1.078s-1.254 1.051-1.293 1.063s-.621-.137-1.281-.328l-1.254-.344c-.062 0 1.207 2.531 1.668 3.316c.328.559.371.609.605.672a13.33 13.33 0 0 1 .727.223c.492.16 1.969.57 2.082.578c.039 0 .344-.367.68-.82zm-9.09.387l.41-.191v-.543l-.445.195c-.441.195-.551.32-.551.605c0 .164.109.152.586-.066m1.25-.555l.402-.184v-.316c0-.172-.016-.312-.039-.312s-.227.102-.461.227c-.41.223-.422.234-.441.5c-.027.324 0 .332.539.086zm1.289-.574l.359-.18v-.34c0-.187-.012-.344-.031-.344a6.59 6.59 0 0 0-.496.234l-.469.23v.332c0 .387.004.387.637.066zm1.063-.496l.277-.145c.023-.02-.301-.594-.336-.594c-.016 0-.109.043-.211.094c-.172.09-.184.121-.184.438c0 .395.043.414.453.207zm.168-1.129c-.555-1.121-.887-1.758-1-1.898c-.062-.082-.23-.449-.371-.812l-.34-.852c-.113-.258-.289-.816-.629-2.023c-.156-.562-.324-1.07-.367-1.121c-.125-.145-.238-.527-.727-2.488c-.25-1.012-.469-1.844-.488-1.852c-.164-.09-.223-.215-.352-.801c-.082-.375-.262-1.266-.402-1.984s-.332-1.629-.434-2.02s-.18-.762-.18-.82s-.055-.148-.125-.195c-.152-.109-.266-.973-.402-3.098c-.133-2.016-.16-2.289-.258-2.367c-.047-.039-.098-.16-.117-.266c-.066-.387-.16-1.977-.246-4.043c-.07-1.754-.098-2.121-.184-2.215c-.121-.133-.187-.738-.324-2.996c-.109-1.816-.09-2.832.07-3.844c.082-.52.082-.594-.004-.727s-.086-.195.063-.777c.09-.348.254-.891.371-1.203l.707-1.945a41.89 41.89 0 0 1 .637-1.68c.332-.762.441-1.141.363-1.266c-.062-.102-.016-.234.309-.891a23.888 23.888 0 0 1 1.574-2.723c.367-.539.406-.621.25-.512c-.105.074-.25.211-.32.305s-.879.934-1.793 1.867l-1.656 1.699l-.004 1.383c-.008 1.242-.02 1.426-.148 1.84c-.246.813-.676 1.555-1.332 2.281l-.281.313l-.074 1.277c-.082 1.375-.055 4.395.055 5.723l.16 2.238c.34 5.117.867 9.066 1.598 11.984c.359 1.426 2.41 7.762 2.754 8.504a36.37 36.37 0 0 1 .465 1.203a44.29 44.29 0 0 0 .723 1.836l.578 1.371c.535 1.289 1.988 4.109 2.109 4.109c.016 0-.09-.23-.227-.516zm2.559-1.648c.258-.23.789-.687 1.176-1.012l.852-.715l.145-.125l-.207-.559c-.117-.309-.285-.723-.375-.918s-.285-.727-.441-1.176s-.289-.828-.309-.848c-.035-.035-.23.078-1.281.762l-1.16.73l-.379.23l-.77-.332a24.59 24.59 0 0 1-1.023-.465c-.453-.238-1.086-.504-1.086-.453c0 .059.582 2.086.719 2.496c.051.156.25.664.445 1.133c.285.703.379.867.512.914a37.69 37.69 0 0 0 2.617.75c.051 0 .305-.184.566-.414zm21.984.121c-.129-.348-.859-1.258-1.012-1.258c-.027 0-.062.113-.078.254c-.02.238-.008.262.289.492a6 6 0 0 1 .527.461c.215.223.344.246.273.051zm-16.488-.863c.211-.102.215-.105.258-.625c.023-.285.031-.535.012-.551c-.062-.062-.98.418-.98.516c0 .125.367.766.438.766c.031 0 .152-.047.273-.105zm15.18-.379c.047-.355-.016-.422-.836-.879l-.539-.301l-.039.184a2.54 2.54 0 0 0-.035.398c0 .203.02.219.668.547c.367.188.688.344.707.344s.055-.129.074-.293m-14.133-.129a6.83 6.83 0 0 1 .625-.254c.125-.043.242-.098.258-.121s.047-.25.07-.5l.047-.457l-.211.047a7.802 7.802 0 0 0-.742.25l-.527.207l-.02.5c-.012.313.008.504.047.504s.238-.078.453-.176m12.434-.789c0-.387-.008-.41-.172-.473c-.25-.098-1.215-.371-1.23-.352a4.75 4.75 0 0 0-.039.449l-.02.434l.555.141c.305.078.57.156.586.176s.098.031.176.031c.137 0 .145-.023.145-.406zm-10.539.184l.813-.184c.109-.023.141-.09.172-.328l.066-.434c.039-.18-.043-.18-.949-.012l-.695.133l-.039.289l-.059.492c-.016.109-.016.203-.004.203a20.91 20.91 0 0 0 .695-.16zm8.824-.594c.023-.242.031-.457.012-.473c-.043-.047-1.461-.238-1.492-.203c-.016.016-.035.211-.051.43c-.023.473-.07.441.852.582l.598.098c.023.004.059-.191.082-.434zm-6.453.188l.637-.078v-.191c.004-.105.02-.297.043-.43l.039-.234l-.43.039c-.594.051-1.277.141-1.305.168c-.012.012-.039.211-.066.449l-.043.426l.242-.035a21.56 21.56 0 0 1 .883-.113zm2.641-.398a3.22 3.22 0 0 0 .047-.422l.004-.172l-.449.004c-.25 0-.641.016-.867.039l-.41.039l-.043.363c-.023.203-.027.387-.012.414s.398.031.855.016l.832-.031zm1.949.266c.016-.043.035-.234.047-.422l.016-.344l-.809-.043c-.445-.023-.824-.023-.848 0s-.055.211-.066.418l-.02.375l.371.035c.727.07 1.281.063 1.309-.02zm-16.461-2.133c.426-.281 1.023-.66 1.328-.844s.566-.375.586-.422c.027-.074-.219-1.004-.461-1.75c-.051-.152-.164-.754-.25-1.34l-.176-1.082c-.031-.027-1.039.684-1.348.949c-.219.188-1.238.949-1.406 1.055c-.094.055-1.32-.434-2.812-1.121c-.254-.117-.473-.199-.488-.18c-.031.031.633 2.77.855 3.52l.121.406l.422.18c.23.102.672.301.98.449c1.035.488 1.68.75 1.773.719c.055-.016.445-.262.875-.539zm-1.18-4.191l1.086-.809c1.172-.879 1.211-.91 1.211-1.07c0-.086-.109-.867-.246-1.742l-.473-3.223c-.02-.145-.051-.262-.066-.262s-.219.137-.449.309l-1.484 1.09l-.996.73c-.312.23-.609.422-.652.422s-.18-.066-.301-.148a14.59 14.59 0 0 0-.902-.504c-.914-.48-1.176-.625-1.605-.887c-.199-.117-.379-.199-.402-.176s.035.34.129.707s.324 1.449.512 2.41l.402 1.93c.059.168.168.234 1.074.633l2.48 1.07c.02.004.328-.211.684-.48zM3.547 80.5l-.285-1.328c-.887-3.926-1.703-9.309-2.059-13.539c-.141-1.656-.16-6.723-.031-7.902c.215-2 .488-3.293 1.016-4.855c.406-1.191.695-1.895.992-2.418c.102-.176.27-.488.379-.695c.445-.859 1.445-2.219 2.324-3.152c1.457-1.551 3.016-2.73 6.145-4.641c.953-.586 2.992-1.594 4.188-2.074l1.152-.48c.512-.23 2.625-1.016 4.449-1.648l3.516-1.176l1.617-.5c.953-.309 4.148-1.168 5.531-1.488a101.85 101.85 0 0 1 4.41-.84l.199-.031l-.211-.277c-.117-.156-.262-.434-.32-.621s-.133-.344-.164-.344c-.102 0-1.922.313-2.41.414l-2.43.492c-1.875.379-5.496 1.25-6.812 1.637c-1.945.574-3.461 1.047-4.203 1.316l-1.727.621c-.484.172-1.059.398-1.273.496s-.687.297-1.047.441c-.711.281-3.027 1.398-3.434 1.656c-.141.09-.523.316-.852.504c-1.098.633-3.512 2.273-4.957 3.375c-2.703 2.063-4.602 4.367-5.477 6.664c-.332.867-.746 2.352-.926 3.305c-.297 1.563-.562 4.043-.664 6.121c-.148 3.172.285 8.301 1 11.891l.438 2.211c.207 1.043.496 2.359.648 2.926l.563 2.113c.293 1.109.844 2.82.887 2.777c.016-.016-.062-.441-.172-.949zm121.434-1.172a78.22 78.22 0 0 0 1.801-7.687c.176-1 .496-3.07.629-4.047c.715-5.348.555-10.551-.473-15.168c-.5-2.242-1.457-4.219-2.844-5.852c-1.105-1.312-2.918-2.906-4.648-4.094a18.386 18.386 0 0 1-.758-.543c-.285-.23-1.695-1.148-2.422-1.578l-.91-.559c-.465-.301-2.684-1.402-3.645-1.809l-1.016-.434a31.44 31.44 0 0 0-2.145-.824l-1.434-.508a30.45 30.45 0 0 0-1.586-.508l-1.727-.527a52.539 52.539 0 0 0-2.305-.617l-1.82-.461c-.828-.258-7.574-1.625-8.031-1.625c-.043 0-.113.145-.156.316s-.168.441-.285.598s-.195.305-.176.336s.133.059.254.059s.336.027.477.059s.754.148 1.352.254c1.176.211 2.762.551 3.457.738l1.398.375c2.188.582 1.871.488 5.445 1.609a112.28 112.28 0 0 1 6.535 2.313c2.105.82 4.879 2.082 5.496 2.504a20.84 20.84 0 0 0 .82.508a47.182 47.182 0 0 1 3.176 2.086c1.238.922 2.738 2.313 3.266 3.031c.102.137.289.363.414.504c.262.293 1.047 1.473 1.402 2.109a22.61 22.61 0 0 1 1.234 2.758c.406 1.199.813 2.957.996 4.305c.336 2.504.285 6.832-.125 10.645c-.156 1.445-.629 4.828-.902 6.484c-.219 1.297-1.137 5.977-1.309 6.66c-.152.598-.152.895 0 .426c.063-.187.313-1.016.563-1.836zm-68.914 1.715c.484-.406.43-1.238-.18-2.68c-.266-.629-.398-.855-.734-1.246l-1.277-1.531l-1.152-1.387l-.625-.754c-.637-.785-.965-1.176-.996-1.18c-.02 0-.023.23-.012.516c.035.902-.219 1.551-.797 2.039c-.234.195-.332.336-.414.578a3.99 3.99 0 0 1-.191.496c-.086.172-.082.184.238.527c.793.859 2.766 2.844 3.211 3.227l.57.504c.176.172 1.027.719 1.336.859c.398.18.828.191 1.023.031zm18.391-.059c.809-.371 1.75-1.156 3.387-2.816c1.383-1.402 1.984-2.055 1.969-2.133a5.536 5.536 0 0 0-.176-.504a1.51 1.51 0 0 0-.5-.734a2.33 2.33 0 0 1-.539-.715c-.187-.383-.207-.473-.227-1.117l-.023-.703l-.242.273c-.133.152-.426.508-.656.793s-.457.563-.504.609s-.242.285-.434.527a13.41 13.41 0 0 1-.582.691a9.04 9.04 0 0 0-.504.602c-.148.195-.543.676-.879 1.074c-.477.563-.68.863-.918 1.363c-.348.727-.555 1.469-.555 1.973c0 .379.168.82.348.926c.211.121.633.078 1.035-.109m-17.41-1.348l.926-1.328l.844-1.234l.277-.402l-.18-.34c-.441-.848-1.367-1.824-2.055-2.168c-.465-.238-1.121-.402-1.211-.309s-1.062 1.992-1.062 2.078c0 .043.266.398.594.789c.363.43.664.859.77 1.098l.313.688c.172.375.379 1.172.379 1.461c0 .121.012.207.023.191s.188-.25.383-.523zm15.934-.539c.188-.734.648-1.59 1.25-2.316l.613-.758c.047-.062-.078-.359-.461-1.098a20.71 20.71 0 0 0-.57-1.07c-.082-.094-.742.07-1.215.305c-.719.352-1.695 1.41-2.113 2.289l-.109.23l.348.512l.977 1.418l.859 1.242l.234.336l.043-.348c.023-.191.09-.527.145-.742zm-27.754.277c.016-.914.203-1.617.625-2.328a9.51 9.51 0 0 1 .543-.832c.164-.207.211-.336.273-.777c.07-.504.34-1.195.59-1.523c.086-.109.082-.141-.062-.328c-.234-.309-.656-.535-.984-.531c-.645.012-1.492.652-1.863 1.406a6.564 6.564 0 0 0-.379 1.07c-.145.555-.156.707-.129 1.43c.031.867.109 1.211.426 1.883c.164.344.801 1.137.914 1.137c.02 0 .043-.273.047-.605zm39.449.199c.695-.789 1.004-1.742.953-2.953c-.055-1.285-.387-2.18-1.051-2.855c-.832-.84-1.555-.941-2.184-.312l-.297.297l.184.293c.219.344.402.883.512 1.488c.063.363.125.5.371.824c.406.535.844 1.445.965 2.008c.055.254.102.727.109 1.043s.023.574.043.574s.199-.184.395-.406zm-35.922-.246c-.113-.539-.078-1.711.07-2.211c.059-.187.258-.648.441-1.027c.516-1.035.645-1.699.418-2.145c-.078-.16-.215-.273-.504-.422c-.215-.109-.465-.203-.551-.203c-.453 0-1.102.574-1.418 1.262c-.465 1.012-.449 2.363.031 3.402c.355.758.672 1.176 1.141 1.504c.238.168.441.301.449.289s-.027-.211-.078-.449zm32.602-.094c.461-.43.746-.914.992-1.668c.172-.527.191-.668.191-1.348c0-.672-.02-.82-.184-1.301c-.203-.605-.422-.957-.75-1.219c-.547-.43-.848-.465-1.387-.16c-.398.223-.488.348-.531.727c-.047.465.102.984.551 1.945c.207.441.414.988.461 1.211c.137.648.105 1.617-.074 2.242l-.043.148l.203-.117c.113-.066.371-.273.57-.461zm-39.281-.238c0-.242.203-.91.422-1.391c.215-.473.496-.898.828-1.266c.16-.176.25-.352.305-.59c.195-.891.488-1.582.82-1.965l.195-.223l-.176-.18a1.14 1.14 0 0 0-.367-.25c-.242-.078-.738.008-1.094.188c-.367.188-1 .848-1.191 1.246c-.457.945-.543 1.191-.605 1.758c-.105.93.078 1.773.559 2.566c.215.355.305.387.305.105zm45.781-.395c.25-.484.402-1.168.402-1.82c0-.48-.031-.687-.184-1.145c-.285-.875-.59-1.422-1.02-1.836c-.437-.426-.684-.562-1.18-.664c-.336-.07-.383-.066-.648.07c-.441.219-.457.293-.156.672c.297.371.598 1.105.738 1.793c.086.43.125.508.367.746c.148.145.387.457.531.695c.246.418.617 1.426.617 1.68c0 .066.031.199.066.293l.066.172l.125-.184a6.32 6.32 0 0 0 .273-.473zM3.789 74.516c.453-2.187 1.25-4.766 1.992-6.453c.398-.906.82-1.785.887-1.836c.02-.02.199-.309.402-.645a9.28 9.28 0 0 1 1.977-2.312a4.93 4.93 0 0 1 1.645-.902c1.168-.387 2.434-.305 3.777.246c.586.238.707.301 1.508.813l.387.242l.031-.199c.02-.109.047-.48.07-.824c.07-1.187.348-2.879.625-3.824c.418-1.414.863-2.699 1.121-3.207c.469-.934.961-1.809 1.105-1.965c.074-.086.281-.352.465-.598c.395-.539 1.363-1.477 1.895-1.836c.215-.145.402-.277.422-.301c.117-.148.973-.605 2.176-1.168c.758-.355 2.363-.855 3.766-1.176a15.62 15.62 0 0 1 4.078-.332c.426.027.789.039.801.027c.039-.039.301-1.18.633-2.766l.844-3.734c.391-1.504.844-3.074 1-3.488c.086-.223.32-.867.52-1.43c.355-1.02.672-1.852.84-2.211c.215-.469.223-.527.086-.527c-.375 0-3.176.504-4.164.746l-4.074 1.059c-1.289.371-4.117 1.238-4.328 1.328c-.117.051-.832.293-1.586.539l-1.555.531c-.105.047-.832.32-1.621.609c-1.523.563-3.758 1.457-4.168 1.668c-.137.074-.672.324-1.184.566s-1.074.523-1.246.637s-.66.414-1.09.668c-1.02.605-2.344 1.453-2.469 1.578a2.527 2.527 0 0 1-.355.258c-.746.465-2.34 1.875-3.137 2.777c-1.805 2.039-2.949 4.184-3.75 7.043l-.148.547c-.164.586-.395 2.059-.508 3.25c-.301 3.129.004 9.215.652 13.105c.035.188.145.914.254 1.617c.336 2.215.738 4.473.828 4.656c.063.125.094.008.234-.84l.363-1.937zm121.25 1.605l.254-1.367c.297-1.41.727-4.465.992-7.035l.188-1.68c.207-1.535.281-5.969.133-7.687c-.176-2.012-.77-4.824-1.254-5.941l-.434-1.031c-.25-.598-.652-1.387-.871-1.711a40.228 40.228 0 0 1-.453-.703c-1.16-1.867-3.266-3.867-5.738-5.453l-1.121-.723c-.273-.18-.598-.375-.715-.434s-.434-.25-.699-.418c-.555-.355-3.027-1.539-3.937-1.887a21.35 21.35 0 0 1-1.496-.621a46.62 46.62 0 0 0-1.336-.496l-1.559-.574c-.664-.266-3.207-1.105-5.133-1.699l-2.117-.652a131.6 131.6 0 0 0-3.641-.949a1.24 1.24 0 0 1-.281-.082c-.441-.195-4.699-.953-4.699-.836c0 .055.34.969.777 2.086c.609 1.559 1.391 4.051 1.715 5.457l.406 1.73c.199.777.531 2.285.781 3.547l.27 1.32c.008.008.359-.012.785-.039c1.957-.141 4.18.211 6.719 1.055c.656.219.703.238 1.797.754c1.875.891 3.328 2.137 4.438 3.82a10.08 10.08 0 0 1 1.145 2.125l.34.809c.512 1.121 1.293 4.945 1.305 6.375c0 .227.02.426.039.445s.266-.109.551-.293c2.121-1.371 4.152-1.578 5.941-.613c.289.152.637.387.777.52s.355.316.477.414c.273.215.48.453 1.016 1.16s.809 1.152 1.34 2.207c.477.941.574 1.172.98 2.316a19.98 19.98 0 0 0 .328.902c.133.316.191.488.379 1.156c.473 1.66 1.02 4.047 1.215 5.316c.07.438.133.684.16.613a28.18 28.18 0 0 0 .238-1.203zm-60.367.242l1.73-1.27a36.59 36.59 0 0 0 .992-.742c.438-.344.438-.332.324-1.281c-.156-1.289-.309-2.855-.309-3.125c-.004-.164-.016-.297-.035-.297a8.69 8.69 0 0 0-.605.355l-1.305.797l-1.336.801l-.605.367l-.312-.176c-.176-.094-.48-.289-.684-.426s-.605-.406-.902-.59l-.992-.641c-.254-.172-.473-.293-.492-.277c-.039.043.215 3.77.305 4.484l.07.539l.383.191c.207.105.449.242.539.305s.645.367 1.238.68a28.65 28.65 0 0 1 1.207.656c.07.051.16.082.195.07s.301-.203.594-.422zm5.824-.477c.523-.867 1.313-1.652 2-1.992c.281-.141.645-.273.809-.297a4.01 4.01 0 0 0 .402-.066c.262-.074.188-1.277-.117-1.977c-.324-.734-.977-1.445-1.621-1.773a3.24 3.24 0 0 0-1.715-.367l-.574.016l-.02 1.496c-.027 2.094.137 5.023.301 5.43c.031.078.082.141.113.141s.219-.273.422-.609zm-11.328-.117c-.152-.59-.508-2.324-.777-3.785a31.58 31.58 0 0 1-.234-1.543c-.082-.645-.129-.855-.195-.855c-.051 0-.281.102-.52.227c-.621.324-1.281 1.043-1.543 1.668c-.223.535-.352 1.316-.289 1.738c.035.246.066.293.211.324c1.051.215 1.57.5 2.293 1.262a7.99 7.99 0 0 1 .84 1.074c.184.297.34.531.352.523s-.051-.293-.137-.633zm-9.004-1.785c.004-.418-.246-.934-.512-1.055c-.473-.215-2.656-.418-4.496-.418c-1.891 0-2.414.113-2.707.594c-.078.121-.125.234-.109.25s.188-.066.387-.184c.352-.215.801-.348 1.152-.348c.246 0 .477.094.75.313l.234.184l.355-.215c.477-.289.941-.391 1.285-.289c.336.102.676.32.883.566l.168.195l.238-.187c.43-.344.836-.406 1.328-.215c.582.227.922.629.922 1.094c0 .152.016.18.063.109c.031-.051.059-.227.059-.395zm29.41-.266c.145-.219.57-.512.867-.59a1.29 1.29 0 0 1 1.152.215l.316.227l.23-.254c.574-.637 1.359-.703 2.148-.184l.289.195l.285-.219c.352-.27.637-.328 1.121-.23c.414.086.68.207.891.398c.188.172.25.082.117-.168c-.258-.477-.824-.605-2.672-.602c-1.828 0-3.992.199-4.512.414c-.355.145-.664.969-.504 1.348l.082.203l.043-.301c.023-.164.09-.367.145-.453zm-.426-.441c.18-.375.461-.609.836-.691c.91-.203 2.59-.34 4.23-.348c1.629-.004 2.004.031 2.508.242c.109.047.109.035-.008-.195c-.164-.312-.434-.586-.898-.895c-.77-.516-1.723-.66-3.656-.559c-1.461.078-2.039.172-2.609.438c-.746.344-.906.637-.902 1.648c0 .52.027.676.152.965l.152.34l.043-.359c.027-.199.094-.461.152-.586m-28.469.559c.113-.246.137-.414.137-.949c0-.977-.148-1.242-.895-1.621c-.898-.453-4.148-.625-5.402-.285c-.691.188-1.543.809-1.781 1.301c-.051.109-.09.203-.082.211s.141-.027.293-.082c.484-.168 1.34-.227 2.676-.187c1.793.055 3.516.242 4.078.445c.379.141.656.578.746 1.18c.023.156.055.281.07.281s.09-.133.16-.293zm13.492-2.59l.965-.582l.965-.582l1.074-.645l.418-.254v-.625c0-1.059.18-2.684.441-4.004c.07-.355.113-.656.098-.676c-.031-.027-.91.457-.973.539c-.02.023-.453.293-.965.602l-2.41 1.473c-.508.324-.508.324-.828.039l-1.121-.992l-1.398-1.246c-.574-.516-.809-.703-.844-.672c-.035.039.074 3.027.168 4.457l.074 1.199l.988.637l1.453.949c.711.473 1.176.77 1.211.773c.02 0 .328-.176.684-.391zm-6.445-4.941a22.26 22.26 0 0 0-.082-.832l-.039-.293l-.652.215c-.984.316-2.527.578-3.422.582c-.219 0-.316.02-.277.059c.09.094 1.836.539 2.547.648c.844.137.922.145 1.484.156l.484.008zm14.047.449c.691-.09 2.824-.594 3.031-.715c.074-.043-.016-.059-.301-.062c-1.059-.004-2.523-.27-3.652-.652c-.437-.152-.82-.254-.844-.23a16.94 16.94 0 0 0-.234 1.707c0 .082 1.25.051 2-.047zm-7.168-1.102l1.371-.836l1.719-1.047l.875-.523l.078-.395c.043-.215.199-.883.348-1.484s.328-1.43.398-1.836c.129-.773.316-2.367.316-2.707v-.191l-.172.117a28.82 28.82 0 0 1-.855.539l-1.617 1.004l-1.465.906l-1.203.754l-.672.434l-2.219-2.223c-1.805-1.812-2.223-2.199-2.258-2.105c-.023.063-.078.457-.121.879c-.094.875-.059 2.496.094 4.621l.094 1.336l.297.281a181.19 181.19 0 0 0 1.992 1.781l1.695 1.504l.387-.246c.215-.137.629-.391.918-.562zm-10.187-.02c.863-.09 1.609-.25 2.641-.562l.516-.156v-.262c0-.535-.082-1.289-.141-1.289c-.031 0-.203.121-.379.273c-.625.531-1.961 1.258-3.262 1.777c-.863.34-.785.367.625.219m20.363.043c-.035-.027-.48-.227-.992-.445s-1.09-.473-1.277-.578c-.508-.273-1.547-.973-1.824-1.223c-.176-.156-.254-.195-.289-.137a16.2 16.2 0 0 0-.336 1.395c-.027.16 1.91.73 2.977.879c1.082.152 1.844.199 1.742.109zm-21.336-.449c1.121-.453 1.828-.777 2.082-.953c.145-.102.141-.102-.133-.102c-.969-.004-3.168-.527-4.23-1.012a19.49 19.49 0 0 0-.687-.297c-.605-.242-1.605-.754-1.641-.836c-.023-.066.031-.102.199-.133c.391-.066 1.57-.336 2.191-.5c.637-.168.828-.23 1.211-.398c.137-.059.355-.141.484-.184s.234-.094.234-.121s-.137-.078-.297-.121c-1.035-.27-2.645-1.117-4.109-2.168l-.949-.695c-.016-.023-.203-.199-.414-.398L47 56.949h1.266c1.355 0 2.543-.074 3.336-.211c.484-.086 1.645-.461 1.59-.516c-.016-.016-.668-.164-1.449-.328a73.164 73.164 0 0 1-3.102-.715c-.203-.051-1.059-.25-1.898-.441l-1.992-.473a203.63 203.63 0 0 0-2.363-.613l-2.18-.582a47.74 47.74 0 0 0-1.555-.445c-.992-.273-3.848-1.184-4.488-1.43c-.074-.027-.285.164-.773.695a33.15 33.15 0 0 0-.996 1.137l-.492.594c-.156.172-.582.797-.98 1.434c-.203.32-.441.988-.637 1.758c-.187.746-.551 2.508-.523 2.535c.012.012.203-.117.426-.285a6 6 0 0 1 2.023-.973c.57-.148.727-.164 1.867-.168c1.32-.004 1.824.059 2.996.367c.844.223 2.805 1 3.57 1.418l.59.313a37.68 37.68 0 0 1 1.914 1.094c.23.141.434.258.453.258c.039 0 .813.434 1.492.84a21.61 21.61 0 0 0 1.09.594c.359.184.668.352.684.375c.063.086 3.168 1.613 3.828 1.883l1.059.441c.207.086.426.16.488.16s.605-.195 1.203-.437zm22.93.23a51.93 51.93 0 0 1 1.148-.5c1.254-.535 4.91-2.418 5.758-2.965c.238-.156 1.762-.996 1.805-.996c.027 0 .059-.023.07-.051c.027-.07 1.168-.703 2.355-1.312c.922-.473 2.758-1.18 3.578-1.379c1.984-.488 3.773-.484 5.262.008c.395.133.695.266.832.375c.039.031.301.207.582.395l.508.34l-.035-.199c-.148-.812-.469-2.309-.516-2.395a3.234 3.234 0 0 1-.133-.387c-.176-.621-.465-1.297-.711-1.68c-.293-.461-1.266-1.711-1.617-2.086a20.002 20.002 0 0 1-.547-.621a7.39 7.39 0 0 0-.566-.602l-.254-.223l-1.52.516c-.836.285-2.082.676-2.77.871l-1.687.492a60.7 60.7 0 0 1-2.211.59l-2.148.566c-.203.066-1.043.273-1.867.465l-2.023.473l-3.594.836c-.625.133-1.137.258-1.137.281s.121.078.266.121a1.73 1.73 0 0 1 .328.133c.125.09 1.316.297 2.102.363c.441.035 1.379.066 2.086.066l1.289.004l-.406.375c-.367.34-.707.605-1.773 1.387c-.832.609-2.492 1.469-3.379 1.754c-.316.098-.574.199-.574.223c0 .156 2.344.859 3.824 1.148l.555.109l-.152.121c-.195.156-.809.465-1.578.785l-.891.383c-.875.398-2.828.859-4.02.941l-.238.02l.344.203c.184.113.824.402 1.418.641l1.27.531c.238.117.543.082.969-.121zM16.863 64.39c.418-2.27.91-4.211 1.449-5.695c.531-1.465.715-1.875 1.266-2.84c.957-1.68 1.734-2.418 3.824-3.637a25.62 25.62 0 0 1 1.059-.59c.5-.254 2.184-.883 2.832-1.059a16.744 16.744 0 0 1 4.004-.527c.398-.004.758-.023.797-.047s.133-.172.207-.324s.277-.418.445-.598s.305-.352.305-.387c0-.062-.195-.09-1.246-.172c-1.406-.109-4.086.336-6.129 1.016a22.77 22.77 0 0 0-2.43 1.027c-.672.352-1.73 1.121-2.328 1.691c-.609.586-1.422 1.625-1.852 2.367c-1.059 1.824-1.93 4.637-2.23 7.191c-.094.809-.195 3.48-.129 3.328c.016-.035.086-.371.156-.746zm94.465-.492a21.638 21.638 0 0 0-.102-1.437l-.16-1.184c-.414-3.094-1.453-5.895-2.918-7.844c-.73-.973-1.82-1.926-3.07-2.68c-.473-.289-2.078-1.008-2.691-1.207c-1.586-.52-3.398-.898-4.793-1c-.852-.062-2.57 0-2.668.098c-.016.02.125.191.316.387a3.92 3.92 0 0 1 .531.668l.18.313l1.055.039c1.996.074 3.355.34 5.129 1a15.985 15.985 0 0 1 4.199 2.313c.641.484.844.695 1.379 1.41c.586.789.809 1.172 1.301 2.238c.871 1.902 1.59 4.359 2.059 7.047c.227 1.297.309 1.242.254-.16zm-54.941-.109c.121-.07.41-.289.645-.48l.43-.352l-.039-.621c-.059-.961-.109-1.34-.172-1.34c-.031 0-.148.066-.258.148c-.426.324-1.172.625-2.211.906c-1.059.285-1.637.344-3.23.34c-.797-.004-1.445-.004-1.445.004s.414.176.918.375l1.105.441c.313.133 1.582.453 2.207.551c1.23.199 1.762.207 2.051.027zm17.289-.027c.996-.172 1.57-.332 2.723-.766c1.734-.656 1.734-.613.031-.609c-1.598.004-2.113-.051-3.211-.336c-.785-.203-1.137-.332-1.762-.648c-.242-.121-.457-.219-.488-.219s-.141.379-.258.844l-.207.844l.148.16c.082.09.371.328.645.535l.5.371l.664-.039c.367-.023.914-.082 1.215-.137m-55.383-1.551c1.094-1.168 2.68-2.395 3.699-2.863a10.65 10.65 0 0 1 1.879-.637c.523-.117 1.902-.176 2.207-.09c.121.035.508.137.855.23s.914.305 1.246.469l.605.301l.043-1.008c.043-1.074.184-2.266.34-2.875c.371-1.449 1.328-3.191 2.586-4.711c.199-.238.238-.336.227-.52l-.016-.23l-.84.043c-1.645.082-2.887.273-3.926.605l-.934.297c-.422.137-1.637.629-1.68.684c-.02.02-.242.148-.5.277c-1.312.676-2.531 1.551-3.16 2.277c-1.074 1.234-1.809 2.695-2.645 5.262a30.78 30.78 0 0 0-.828 3.23l-.043.246l.207-.246c.117-.133.422-.469.676-.742zm92.188.34c-.336-1.453-.98-3.652-1.246-4.262a26.085 26.085 0 0 1-.336-.797c-.242-.586-.691-1.504-.793-1.621a15.403 15.403 0 0 1-.426-.633a7.81 7.81 0 0 0-.828-1.027c-.941-.953-3.191-2.309-4.746-2.859c-1.93-.68-3.211-.937-5.203-1.031l-.848-.043l-.027.227c-.023.207.012.277.375.707c1.063 1.273 2.086 3.195 2.457 4.621c.172.648.289 1.633.332 2.746l.039 1.039l.418-.211a9.03 9.03 0 0 1 1.77-.664c.578-.152 1.98-.223 2.34-.117a20.56 20.56 0 0 0 .715.184c.961.234 1.68.559 2.641 1.199a15.182 15.182 0 0 1 2.898 2.543c.305.348.566.609.574.582s-.035-.289-.105-.582zm-56.969-.531c1.41-.199 2.516-.566 3.332-1.109l.48-.316l-.035-.5a19.81 19.81 0 0 0-.066-.824l-.031-.324l-.754.379c-.414.207-1.176.617-1.691.91s-1.258.668-1.648.836c-.641.277-2.102.727-2.703.832c-.25.047-.242.121.02.172c.406.07 2.469.035 3.098-.055zm24.223.008c.066-.039-.145-.117-.715-.266c-1.672-.43-2.738-.883-3.949-1.684c-1.379-.91-1.57-1.023-1.617-.949c-.055.09-.453 1.688-.426 1.711c.012.012.16.105.328.211c.617.391 1.906.793 3.105.973c.645.098 3.125.102 3.273.004zm-48.418-2.09c.156-.953.598-2.937.836-3.75c.215-.742.434-1.262.641-1.531c.094-.125.273-.379.395-.566c.297-.461 1.023-1.332 2.035-2.449c.461-.504.828-.93.813-.945s-.383-.008-.82.012l-.793.039l-.371.402a8.178 8.178 0 0 0-.602.754a21.46 21.46 0 0 1-.492.711c-.379.516-1.242 2.285-1.418 2.91c-.211.746-.344 1.742-.402 2.965c-.043.902-.027 2.367.023 2.309c.008-.008.078-.395.156-.859zm69.566-.793c-.02-1.059-.066-1.883-.129-2.27c-.172-1.074-.598-2.348-1.074-3.219a20.12 20.12 0 0 0-1.676-2.445l-.414-.484l-.477-.004a9.81 9.81 0 0 1-.832-.051c-.199-.023-.359-.02-.359.012s.23.297.516.598c.684.723 1.426 1.551 1.535 1.711a21.24 21.24 0 0 0 .441.566c.871 1.074 1.328 2.016 1.676 3.465c.199.816.688 3.41.688 3.648c0 .074.031.137.07.137c.051 0 .063-.453.035-1.664m-44.363.906c.43-.25 1.203-.668 1.715-.93l.934-.477l.02-.504l.016-.5l-.328.152c-.676.309-2.031.527-3.246.527c-1.461-.004-3.527-.297-5.039-.715c-.199-.055-.395-.09-.43-.078c-.078.027.387.387 1.355 1.059c1.238.848 3.301 1.797 4.16 1.906c.031.004.41-.195.844-.441zm20.781.16c.68-.223 2.078-.902 2.758-1.344c1.152-.746 1.871-1.293 1.699-1.293a4.82 4.82 0 0 0-.52.156c-.5.172-1.637.414-2.496.531c-.773.109-2.402.098-3.117-.023c-.578-.098-1.621-.422-1.785-.555c-.043-.035-.09-.055-.102-.043c-.062.066-.227 1.074-.184 1.109c.234.172 2.004 1.32 2.32 1.508c.457.27.461.27 1.426-.047zm-10.715-.707l1.453-.902l2.93-1.809c.363-.219.746-.477.855-.578l.199-.184v-1.703c0-.937-.031-2.012-.066-2.387c-.09-.941-.25-2.297-.277-2.324c-.012-.012-.227.109-.477.27l-2.605 1.648l-1.156.742l-.691.445l-.402-.422c-.5-.523-1.859-2-2.473-2.68c-.25-.281-.477-.512-.5-.512s-.109.188-.191.418a6.76 6.76 0 0 1-.25.641c-.059.117-.27.664-.465 1.211l-.656 1.777a19.91 19.91 0 0 0-.496 1.508l-.195.73l2.324 2.301L63.777 60c.008 0 .371-.223.809-.496m-10.059-1.496c.906-.062 1.852-.27 2.305-.5c.371-.184.422-.23.391-.359c-.023-.086-.242-.148-1.051-.312a60.72 60.72 0 0 1-1.648-.359l-.625-.156l-.48.184c-1.277.488-2.141.648-3.957.734c-.883.039-.914.047-.687.125c.656.23 2.566.551 3.82.641c1.031.074 1.012.07 1.934.004zm22.848-.113c.734-.133 1.941-.441 2.137-.555c.074-.039-.195-.07-.879-.102c-1.875-.082-2.605-.203-3.711-.613l-.672-.25l-1.043.23c-1.406.316-1.34.289-1.387.52c-.035.176-.016.211.168.32c.297.172 1.121.438 1.688.535c.719.129 2.758.078 3.699-.086zM57.27 56.266c.02-.258.043-.727.047-1.047c.008-.535 0-.578-.102-.539c-.391.164-.941.293-1.496.355c-.812.09-1.512.012-2.969-.32c-2.039-.465-3.602-.98-4.793-1.582a28.42 28.42 0 0 0-1.215-.535c-.875-.371-.914-.395-1.43-.902c-.527-.516-.531-.52-.965-.586l-.777-.137a482.54 482.54 0 0 0-6.984-1.098c-.242-.027-.328-.004-.496.125c-.199.148-1.059.477-1.258.477c-.121 0-.477.301-.477.406c0 .051.512.246 1.387.527l1.621.535c.129.047.953.289 1.836.531l1.785.496c.504.152 4.809 1.23 6.32 1.586l2.895.68a173.06 173.06 0 0 0 3.234.723l2.832.617c.43.098.82.168.871.164c.07-.008.105-.129.133-.477zm15.758.098l1.352-.309c1.156-.238 3.105-.672 3.656-.816a157.32 157.32 0 0 1 2.32-.555c1.797-.418 6.016-1.48 6.441-1.625c.137-.047.922-.27 1.742-.496s2.266-.664 3.207-.977l1.82-.594c.313-.09-.047-.418-.637-.578c-.488-.137-.895-.32-1.094-.496c-.102-.094-.172-.102-.402-.062c-.156.031-1.57.254-3.145.496l-2.863.445l-.5.496c-.547.543-.621.582-2.363 1.332l-1.586.703c-.391.18-.934.344-2.023.605c-3.035.727-3.082.734-4.109.738c-1.125.008-1.637-.082-2.121-.371c-.191-.117-.371-.211-.395-.211c-.039 0-.254 1.297-.355 2.16c-.035.281-.023.328.066.328c.059 0 .504-.098.988-.215zm-16.824-1.66c.664-.102.98-.285 1.477-.848c1.18-1.34 1.582-2.48 1.492-4.25c-.035-.687-.137-1.352-.219-1.441c-.039-.039-2.656.398-3.59.602c-.492.105-2.559.441-4.23.688l-2.117.313a63.05 63.05 0 0 1-2.281.289l-1.285.141l-.195.434l-.191.438l.449.453c.43.43.492.473 1.355.832l1.434.629c.953.449 1.652.727 2.184.859l1.27.344c2.02.574 3.219.715 4.449.52zm9.418-2.871l1.828-1.168c2.012-1.262 2.332-1.488 2.297-1.602c-.07-.234-.16-1.262-.16-1.871c0-.699.082-1.566.211-2.18l.082-.395l-.191.035c-.18.035-.762.211-2.809.844c-.445.137-.84.25-.871.25s-.16-.172-.277-.387a13.14 13.14 0 0 0-.375-.641a11.52 11.52 0 0 1-.473-.82c-.293-.555-.309-.57-.422-.469c-.121.109-1.766 2.574-2.152 3.23c-.371.625-.937 1.766-.937 1.887c0 .102 3.336 3.797 3.426 3.797c.02 0 .391-.23.824-.512zM34.25 50.32c.586-.102 1.281-.301 1.555-.441c.191-.098.359-.379.359-.605c0-.164-.242-.836-.445-1.242c-.152-.305-.355-.539-.465-.539c-.043 0-.367.188-.719.422c-1.133.746-2.09 1.777-2.211 2.379l-.039.207l.707-.043c.391-.02.957-.082 1.258-.137zm61.488.004c-.105-.664-1.469-2.027-2.691-2.695l-.312-.168l-.133.152c-.223.27-.691 1.32-.719 1.625c-.023.242-.004.309.117.43c.445.426 2.047.813 3.293.789c.43-.008.465-.02.445-.133M33.75 48.125c.215-.164.543-.395.73-.512s.363-.238.383-.27s.113-.437.207-.902s.188-.918.219-1.004s.109-.422.184-.746c.395-1.793.836-3.66.965-4.09a104.32 104.32 0 0 0 .535-1.855c.379-1.355.996-3.117 1.406-4.008a7.4 7.4 0 0 0 .211-.484c0-.012-.113-.02-.25-.02s-.41-.059-.605-.125s-.371-.105-.398-.078c-.074.078-.953 2.352-1.316 3.406c-.711 2.063-.855 2.52-1.125 3.609l-.473 1.898c-.109.43-.348 1.508-.531 2.398l-.465 2.191c-.125.563-.16.891-.094.891c.016 0 .207-.137.418-.301zm61.004.25c.031-.051-.406-2.25-.637-3.187l-.469-2.059c-.437-1.961-.566-2.465-.992-3.793c-.676-2.133-1.883-5.352-2-5.352a3.43 3.43 0 0 0-.344.125c-.172.066-.441.125-.594.125s-.277.008-.277.02s.125.289.277.609c.25.527 1.066 2.84 1.395 3.945c.414 1.398 1.191 4.547 1.563 6.348l.355 1.695l.094.453l.664.457c.367.254.703.504.75.563c.09.109.168.129.215.051M3.293 46.84c.039-.023.188-.203.332-.398c.48-.652 2.508-2.578 3.191-3.035a4.9 4.9 0 0 0 .5-.395a5.37 5.37 0 0 1 .594-.453c.184-.121.539-.371.785-.555c.738-.543 2.113-1.441 3.629-2.363c1.352-.824 4.496-2.273 6.535-3.012l1.152-.43c.242-.109 1.336-.461 2.426-.781l.996-.312c.352-.145.664-.234 2.895-.805l1.434-.379c.309-.094 1.66-.395 3.359-.75l1.898-.398a45.68 45.68 0 0 1 1.703-.312l1.293-.238c.02-.02-1.531-.48-2.684-.797a74.15 74.15 0 0 0-1.992-.469l-1.93-.437c-1.703-.41-4.687-.953-6.941-1.266c-.656-.09-2.441-.242-3.578-.309l-1.059-.059l-.434.293c-.238.16-.469.32-.504.355s-.273.199-.52.371s-.57.402-.711.516l-.82.629c-.309.234-.645.508-.746.609a4.35 4.35 0 0 1-.406.34c-.223.168-.781.672-1.918 1.727c-.91.848-2.816 2.895-3.332 3.578a10.84 10.84 0 0 1-.508.629a6.95 6.95 0 0 0-.426.547a31.61 31.61 0 0 1-.586.809a19.69 19.69 0 0 0-.73 1.043l-.625.965c-.531.82-1.301 2.242-1.77 3.27l-.527 1.125c-.141.246-.906 2.359-.902 2.48c0 .02.191-.262.43-.629s.457-.68.496-.703zm63.836-1.719a83.55 83.55 0 0 1 1.836-.559c.598-.176 1.105-.336 1.129-.359c.031-.031.613-3.844.613-4.012c0-.031-.445.133-2.273.852l-.871.34l-.395 1.004c-.219.551-.402.996-.414.984s.109-.496.266-1.078l.285-1.055l-.305-.59c-.285-.543-.461-.754-.465-.555c0 .129-.59 1.32-.816 1.652a12.65 12.65 0 0 1-.535.703c-.184.223-.348.465-.367.539c-.031.129.094.383.852 1.703c.449.785.426.754.578.711l.883-.281zm6.879-3.383c-.141-.332-.551-.969-.621-.969c-.086 0-.184.711-.105.758c.039.023.238.152.445.289s.379.238.391.23s-.039-.148-.109-.309zm-5.75-.914c.27-.105.602-.242.738-.305a33.68 33.68 0 0 1 1.047-.406c.91-.344.855-.277 1.016-1.199a3.23 3.23 0 0 0 .027-1.227c-.078-.637-.238-1.395-.316-1.48c-.023-.027-.586.313-1.258.754l-1.215.805l-.012.387a10.55 10.55 0 0 1-.348 1.957c-.187.566-.27.906-.223.906c.027 0 .273-.086.543-.191zm-.77-.195a11.45 11.45 0 0 1 .191-.668c.188-.633.352-1.523.348-1.926c0-.309.063-.246-.816-.836l-.172-.113v.645c0 .371-.043.84-.102 1.109l-.137.633c-.02.117.059.328.273.73c.168.309.32.563.344.566s.051-.062.07-.141zm-16.887-1.945c0-.016-.125-.203-.277-.41s-.281-.426-.281-.477c0-.062-.035-.078-.109-.047c-.059.023-.262.102-.453.172s-.352.141-.367.152c-.09.066.641.441 1.086.551c.371.094.402.098.402.059zm24.758-.668c-.187-.289-.699-.812-1.148-1.176l-.461-.379l.039 1.156l.809.289c.445.16.82.281.832.273s-.02-.086-.07-.164zm-23.512-.602c-.137-.199-.25-.395-.25-.434c0-.105-.098-.086-.437.086c-.168.086-.309.191-.309.238c0 .109.387.285.84.383l.391.09c.008 0-.098-.16-.234-.363zm16.977-.34c.266-.18.664-.441.887-.574a13.02 13.02 0 0 0 .727-.484c.367-.266.367-.199.016-.941c-.305-.656-1.148-1.48-1.863-1.828c-.473-.227-.922-.379-.937-.312c-.004.012-.098.652-.211 1.422l-.203 1.402l.359.375c.383.402.504.598.613 1.012c.039.145.086.262.102.262s.246-.148.512-.332zm-.855.207c0-.145-.203-.535-.41-.785c-.254-.309-.672-.617-.93-.684l-.176-.043l.133.191c.078.105.188.309.25.453c.086.203.219.34.574.59c.488.348.559.383.559.277zm-14.629-.734c0-.031-.055-.105-.121-.164a.65.65 0 0 1-.16-.23c-.047-.148-.133-.145-.395.016c-.254.152-.215.207.242.332c.414.109.434.113.434.047zm6.898-.754l1.121-.258l.391-.074l-.039-.391a19.798 19.798 0 0 0-.176-1.125l-.137-.738l-.191.012c-.172.016-2.078.559-2.129.609c-.012.012.039.133.109.27c.164.324.27 1.055.215 1.52c-.027.258-.02.359.035.359c.039 0 .398-.082.801-.184m6.738-.207c.215-1.301.402-2.887.348-2.922c-.121-.078-.934-.121-1.91-.102l-.961.02l.004.188c0 .102.051.57.109 1.039s.102.961.102 1.094v.238l.668.078c.371.043.852.145 1.074.227c.375.133.559.18.566.141zm-3.926-.324c.426-.051.91-.094 1.074-.094h.305l-.035-.266c-.02-.145-.062-.574-.098-.949s-.098-.832-.133-1.012l-.062-.324l-.293.039c-.855.109-2.129.41-2.129.5c0 .043.055.359.125.703a16.49 16.49 0 0 1 .16 1.016c.051.508.07.555.199.516c.059-.02.457-.078.887-.129m-24.086-1.383c.609-.195 1.117-.871 1.117-1.477c0-.254-.309-.895-.535-1.105c-.633-.594-1.77-.602-2.348-.016a1.367 1.367 0 0 0-.422 1.039c.004.625.344 1.164.941 1.48c.375.195.793.223 1.246.078zm51.285-.059c.66-.32 1.016-.836 1.02-1.48c.004-.73-.383-1.227-1.133-1.445c-1.293-.375-2.547.93-2.039 2.125a1.66 1.66 0 0 0 2.152.801zm-14.937-.426c-.117-.141-1.035-.715-1.422-.887c-.516-.23-1.516-.586-1.551-.555c-.016.02.043.125.129.238a4.5 4.5 0 0 1 .352.594c.105.215.211.391.238.395l1.07.148c1.324.184 1.277.18 1.184.066zm-21.492-.199c.16-.078.262-.191.367-.422c.195-.418.195-.492-.023-.445c-.273.066-1.023.457-1.258.664c-.18.152-.203.195-.125.246c.152.098.801.07 1.039-.043m-1.535-.062c.086-.055.238-.18.34-.273c.316-.297.91-.617 1.434-.777c.816-.25 1.328-.672 2.199-1.832c1.445-1.926 3.426-3.535 4.941-4.016c1.148-.363-.57-.133-2.316.309a19.42 19.42 0 0 0-2.957 1.012c-1.336.555-3.484 1.684-3.703 1.945a7.2 7.2 0 0 1-.312.25c-.773.582-1.391 1.383-1.512 1.965c-.086.41.008.852.227 1.074c.363.363 1.328.566 1.66.344zM38.836 30.52c.02-.016-.133-.352-.332-.742c-.906-1.789-2.516-3.422-4.488-4.559l-.641-.371c-.148-.082-.285-.137-.305-.117s.195.254.48.523a45.3 45.3 0 0 1 2.004 2.039c.617.68 1.5 1.938 1.836 2.617l.336.691l.539-.027c.297-.016.555-.039.57-.055zm51.578-.262c.168-.379.727-1.297 1.102-1.805c.57-.773 1.238-1.52 2.375-2.648l1.184-1.176l-.555.297c-1.141.617-2.375 1.492-2.992 2.125c-.941.961-1.727 2.035-2.145 2.918c-.312.664-.336.625.32.617l.57-.008zm-27.77-1.004a17.74 17.74 0 0 1 .977-.117c.492-.047.563-.07.82-.281c.32-.266 1.32-.828 2.094-1.184a9.39 9.39 0 0 0 .648-.324c.109-.074.105-.082-.059-.125c-.527-.129-2.824.328-3.723.746c-.449.207-1.191.766-1.598 1.195l-.215.23l.309-.039c.172-.02.508-.066.746-.102zm23.293 74.707c.113-.016.309-.016.438 0s.039.023-.203.023s-.344-.012-.234-.023zm39.305-56.984a34.013 34.013 0 0 1-.453-1.105c-.465-1.172-1.426-3.051-2.223-4.355c-.633-1.035-.699-1.16-.543-.965c.406.496 1.633 2.676 2.32 4.121c.391.828 1.027 2.387.992 2.426c-.012.012-.055-.043-.094-.121zm-3.449-6.691a12.787 12.787 0 0 1-.516-.727c-.336-.5-1.695-2.273-1.836-2.398c-.02-.02-.289-.328-.602-.687s-.629-.707-.703-.777s-.254-.266-.391-.434c-.152-.195-.047-.109.289.234c.992 1.012 2.512 2.883 3.484 4.293c.398.57.492.742.273.496zm-74.16-3.469c.02-.07.066-.285.105-.48c.125-.629.48-.973.84-.809c.316.145.145.543-.312.734a1.105 1.105 0 0 0-.379.32c-.246.336-.293.379-.254.234zm.762-.969c.07-.109-.004-.125-.129-.027c-.105.078-.109.09-.016.09c.059.004.121-.027.145-.062zm67.762-2.168c-.641-.613-1.383-1.293-1.648-1.504s-.469-.406-.453-.422c.055-.055 3.332 2.91 3.332 3.012c0 .078-.16-.062-1.23-1.086zM66.18 29.398a.5.5 0 0 1 .215 0c.063.016.012.027-.105.027s-.172-.012-.109-.027zm6.039-.5c.059-.016.145-.016.184.004s-.008.027-.109.027s-.137-.016-.074-.031zm-57.328-.687a3.13 3.13 0 0 1 .469 0c.129.016.023.027-.234.027s-.363-.012-.234-.027zm1.246-.062a7.27 7.27 0 0 1 .715 0c.195.012.035.023-.359.023s-.555-.012-.355-.023zm0 0\\\"/>\"\n\t\t},\n\t\t\"lodash\": {\n\t\t\t\"body\": \"<path d=\\\"M0 6.418h11.914v79.074h47.121v9.754H0zm96.191 21.449c-12.187-.164-24.371 7.582-28.168 19.332c-5.414 13.543-2.926 30.551 7.691 40.895c10.293 8.555 25.781 9.207 37.371 3.145c7.965-4.227 13-12.621 14.086-21.453c1.406-9.203.707-19.281-3.789-27.621c-5.312-8.883-15.707-14.621-26-14.246l-1.191-.16zm1.082 9.422c8.938 0 16.953 6.824 18.414 15.602c2.711 9.906 1.086 22.039-7.039 29.027c-7.582 6.176-19.773 5.313-26-2.324c-7.582-8.129-7.582-20.586-3.68-30.332c2.707-7.043 9.906-12.078 17.492-11.918h.973zm0 0\\\"/><path fill=\\\"#3492ff\\\" d=\\\"M0 107.863h127.816v13.539H0zm0 0\\\"/>\"\n\t\t},\n\t\t\"logstash\": {\n\t\t\t\"body\": \"<path fill=\\\"#00bfb3\\\" d=\\\"M72 128h44V80H72Zm0 0\\\"/><path fill=\\\"#fec514\\\" d=\\\"M12 0H8v80h52V48C60 21.488 38.508 0 12 0\\\"/><path fill=\\\"#343741\\\" d=\\\"M8 80c0 26.508 21.492 48 48 48h4V80Zm0 0\\\"/>\"\n\t\t},\n\t\t\"logstash-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#00bfb3\\\" d=\\\"M26.957 66.734h10.445v11.399H26.957Zm0 0\\\"/><path fill=\\\"#fec514\\\" d=\\\"M12.707 47.734h-.95v19h12.348v-7.601c0-6.293-5.101-11.395-11.394-11.399Zm0 0\\\"/><path fill=\\\"#343741\\\" d=\\\"M11.758 66.734c0 6.293 5.105 11.395 11.398 11.395h.95V66.734Zm0 0\\\"/><path d=\\\"M47.8 67.293h-2.093v-13.86h2.094Zm11.723-4.938c0 1.602-.41 2.848-1.23 3.766a4.443 4.443 0 0 1-3.45 1.352a4.776 4.776 0 0 1-2.44-.621a4.132 4.132 0 0 1-1.63-1.793a6.09 6.09 0 0 1-.57-2.707c0-1.598.406-2.848 1.23-3.743a4.453 4.453 0 0 1 3.462-1.343a4.364 4.364 0 0 1 3.406 1.39a5.311 5.311 0 0 1 1.226 3.696Zm-7.164 0c0 2.27.84 3.407 2.516 3.407c1.68.004 2.504-1.133 2.477-3.41c0-2.25-.836-3.375-2.508-3.375a2.14 2.14 0 0 0-1.899.875a4.446 4.446 0 0 0-.586 2.5ZM70.25 57.45v1.145l-1.688.312c.168.23.301.492.387.766c.098.305.153.625.153.95a2.943 2.943 0 0 1-1.051 2.37a4.369 4.369 0 0 1-2.899.875c-.285.004-.57-.02-.855-.07c-.402.191-.66.59-.672 1.035a.542.542 0 0 0 .313.508c.37.14.769.2 1.164.172h1.718a3.802 3.802 0 0 1 2.477.691c.582.5.894 1.242.844 2.008a2.913 2.913 0 0 1-1.391 2.559c-.922.605-2.25.906-3.992.906a5.482 5.482 0 0 1-3.07-.711a2.303 2.303 0 0 1-1.06-2.035a2.154 2.154 0 0 1 .571-1.524c.438-.441 1-.742 1.61-.86a1.54 1.54 0 0 1-.688-.573a1.471 1.471 0 0 1 .035-1.766c.266-.305.578-.562.926-.762a2.745 2.745 0 0 1-1.242-1.074a3.17 3.17 0 0 1-.477-1.738a3.107 3.107 0 0 1 1.012-2.48a4.242 4.242 0 0 1 2.883-.887c.293.004.586.02.875.058c.234.024.465.067.691.125Zm-7.742 11.399c-.008.433.226.836.613 1.039c.527.27 1.121.398 1.715.363a5.16 5.16 0 0 0 2.547-.473c.5-.242.824-.746.836-1.3a.978.978 0 0 0-.477-.915a3.69 3.69 0 0 0-1.703-.269h-1.562a2.233 2.233 0 0 0-1.426.422a1.38 1.38 0 0 0-.543 1.113Zm.902-8.196a1.98 1.98 0 0 0 .477 1.426c.363.352.86.531 1.367.5c1.21 0 1.816-.648 1.812-1.945a2.171 2.171 0 0 0-.445-1.48a1.71 1.71 0 0 0-1.367-.524a1.755 1.755 0 0 0-1.375.52a2.147 2.147 0 0 0-.469 1.484Zm15.278 3.84a2.57 2.57 0 0 1-1.047 2.211a5.057 5.057 0 0 1-3.012.77a7.011 7.011 0 0 1-3.156-.598V65.07a7.71 7.71 0 0 0 3.226.797c1.29 0 1.934-.387 1.934-1.164a.937.937 0 0 0-.215-.625c-.2-.21-.438-.387-.703-.512a11.509 11.509 0 0 0-1.363-.609a6.316 6.316 0 0 1-2.278-1.316a2.44 2.44 0 0 1-.597-1.707a2.245 2.245 0 0 1 1.015-1.97a4.862 4.862 0 0 1 2.778-.698a7.842 7.842 0 0 1 3.28.703l-.671 1.578a7.407 7.407 0 0 0-2.68-.66c-1.11 0-1.656.316-1.656.949c.004.316.164.61.43.785c.597.363 1.238.66 1.902.883a8.339 8.339 0 0 1 1.77.863c.34.23.625.54.82.903c.172.382.25.8.226 1.222Zm5.933 1.29a4.98 4.98 0 0 0 1.531-.243v1.578c-.289.117-.59.203-.894.25c-.375.074-.754.11-1.137.106c-1.984 0-2.976-1.043-2.973-3.133V59.03h-1.343v-.953l1.425-.766l.711-2.082h1.293v2.196h2.809v1.578h-2.809v5.273c-.035.41.102.817.38 1.121c.269.258.632.395 1.007.383Zm9.66 1.511l-.418-1.367h-.07c-.371.515-.86.933-1.426 1.219a4.483 4.483 0 0 1-1.851.328a3.124 3.124 0 0 1-2.293-.785a2.925 2.925 0 0 1-.813-2.215a2.598 2.598 0 0 1 1.13-2.301c.75-.516 1.897-.797 3.444-.844l1.7-.055v-.527a2.016 2.016 0 0 0-.438-1.422a1.8 1.8 0 0 0-1.367-.476a4.699 4.699 0 0 0-1.453.218c-.45.157-.89.336-1.317.543l-.68-1.496c.56-.289 1.15-.5 1.758-.636a7.997 7.997 0 0 1 1.801-.22c1.246 0 2.196.274 2.848.821c.652.547.969 1.406.95 2.57v6.649Zm-3.117-1.426a2.56 2.56 0 0 0 1.828-.637c.48-.464.735-1.117.695-1.785v-.855l-1.269.058a4.263 4.263 0 0 0-2.145.477c-.453.293-.71.809-.675 1.348c-.02.379.12.75.394 1.015c.328.27.75.407 1.172.38Zm14.156-1.375a2.58 2.58 0 0 1-1.05 2.211a5.029 5.029 0 0 1-3.012.77a7.011 7.011 0 0 1-3.156-.598V65.07a7.77 7.77 0 0 0 3.226.797c1.293 0 1.934-.39 1.934-1.164a.937.937 0 0 0-.215-.625c-.2-.21-.438-.387-.703-.512a12.18 12.18 0 0 0-1.364-.609a6.348 6.348 0 0 1-2.312-1.316a2.444 2.444 0 0 1-.602-1.707a2.253 2.253 0 0 1 1.02-1.97a4.85 4.85 0 0 1 2.773-.698a7.89 7.89 0 0 1 3.29.703l-.68 1.578a7.407 7.407 0 0 0-2.68-.66c-1.105 0-1.656.316-1.656.949c.004.316.164.61.43.785a9.83 9.83 0 0 0 1.906.887a8.73 8.73 0 0 1 1.77.863c.343.23.62.543.82.902c.183.38.273.797.261 1.22m10.922 2.801h-2.097v-6.055a2.67 2.67 0 0 0-.477-1.703a1.79 1.79 0 0 0-1.457-.558a2.292 2.292 0 0 0-1.934.789c-.414.523-.62 1.406-.62 2.64v4.887h-2.09v-13.86h2.09v3.516c-.005.606-.04 1.207-.106 1.809h.133a2.883 2.883 0 0 1 1.187-1.102a3.824 3.824 0 0 1 1.774-.394c2.39 0 3.582 1.203 3.582 3.605Zm0 0\\\"/>\"\n\t\t},\n\t\t\"lua\": {\n\t\t\t\"body\": \"<path fill=\\\"navy\\\" d=\\\"M112.956.708c-7.912 0-14.335 6.424-14.335 14.336s6.424 14.335 14.335 14.335s14.335-6.41 14.335-14.335c0-7.912-6.424-14.336-14.335-14.336M64 15.058c-27.02 0-48.956 21.935-48.956 48.955S36.979 112.97 64 112.97c27.02 0 48.956-21.935 48.956-48.956c0-27.02-21.936-48.956-48.956-48.956\\\"/><path fill=\\\"#fff\\\" d=\\\"M84.285 29.392c-7.91 0-14.335 6.424-14.335 14.335s6.424 14.336 14.335 14.336s14.336-6.424 14.336-14.336s-6.424-14.335-14.335-14.335zM30.773 56.36v32.119h19.961v-3.611H34.87V56.359Zm57.584 8.37c-3.354 0-6.126.975-7.668 2.692c-1.055 1.19-1.488 2.516-1.582 4.801h3.705c.311-2.826 1.988-4.098 5.423-4.098c3.3 0 5.153 1.231 5.153 3.435v.974c0 1.542-.92 2.205-3.827 2.556c-5.193.663-5.991.839-7.398 1.407c-2.69 1.095-4.057 3.164-4.057 6.166c0 4.193 2.908 6.83 7.574 6.83c2.907 0 5.247-1.014 7.843-3.395c.257 2.34 1.407 3.395 3.787 3.395c.757 0 1.325-.081 2.515-.392v-2.773a2.917 2.917 0 0 1-.798.095c-1.284 0-1.988-.663-1.988-1.812V71.032c0-4.098-3.002-6.302-8.682-6.302m-33.742.664V83.19c0 3.84 2.867 6.302 7.357 6.302c3.395 0 5.545-1.19 7.709-4.233v3.219h3.3V65.393h-3.652v13.09c0 4.72-2.475 7.804-6.302 7.804c-2.907 0-4.76-1.772-4.76-4.544v-16.35Zm38.773 11.67v4.139c0 1.244-.365 1.988-1.46 3.002c-1.502 1.366-3.3 2.07-5.464 2.07c-2.867 0-4.544-1.367-4.544-3.706c0-2.42 1.636-3.665 5.558-4.233c3.881-.528 4.68-.703 5.91-1.271z\\\"/><path fill=\\\"gray\\\" d=\\\"M61.733 0a64.06 64.06 0 0 0-5.57.436l.179 1.458a62.596 62.596 0 0 1 5.442-.426zm5.585.046l-.075 1.468a62.432 62.432 0 0 1 5.433.52L72.88.578a63.91 63.91 0 0 0-5.561-.532Zm-16.665 1.31a63.301 63.301 0 0 0-5.409 1.398l.43 1.405a61.835 61.835 0 0 1 5.284-1.367Zm27.72.237l-.33 1.431a62.536 62.536 0 0 1 5.262 1.455l.452-1.397a63.998 63.998 0 0 0-5.384-1.489M39.98 4.623a63.447 63.447 0 0 0-5.081 2.323l.668 1.308a61.98 61.98 0 0 1 4.964-2.27zm49.012.41l-.573 1.353a62.539 62.539 0 0 1 4.929 2.346l.688-1.298a64.012 64.012 0 0 0-5.044-2.4ZM30.04 9.706a63.95 63.95 0 0 0-4.6 3.17l.886 1.173a62.484 62.484 0 0 1 4.494-3.098zm-8.906 6.728a64.247 64.247 0 0 0-3.983 3.918l1.075 1.001a62.774 62.774 0 0 1 3.891-3.827zm-7.61 8.165a64.04 64.04 0 0 0-3.247 4.546l1.231.8a62.571 62.571 0 0 1 3.172-4.44zm-6.086 9.357a63.459 63.459 0 0 0-2.408 5.042l1.352.574a61.99 61.99 0 0 1 2.352-4.925zm113.623.973l-1.31.667a62.616 62.616 0 0 1 2.263 4.967l1.362-.55a64.073 64.073 0 0 0-2.315-5.083zM3.075 44.23a63.382 63.382 0 0 0-1.49 5.385l1.432.328a61.91 61.91 0 0 1 1.455-5.26Zm122.166 1.049l-1.404.429a62.513 62.513 0 0 1 1.366 5.285l1.437-.306a63.983 63.983 0 0 0-1.399-5.409zM.574 55.108a64.093 64.093 0 0 0-.528 5.561l1.467.075a62.622 62.622 0 0 1 .516-5.434Zm126.988 1.088l-1.458.179a62.465 62.465 0 0 1 .428 5.441l1.468-.05a63.916 63.916 0 0 0-.438-5.57M1.468 66.205L0 66.255a64.082 64.082 0 0 0 .435 5.57l1.458-.179a62.61 62.61 0 0 1-.425-5.441m125.018 1.071a62.63 62.63 0 0 1-.518 5.434l1.455.203a64.16 64.16 0 0 0 .53-5.561zM2.79 77.031l-1.437.304a63.332 63.332 0 0 0 1.398 5.41l1.405-.43A61.864 61.864 0 0 1 2.79 77.03Zm122.188 1.046a61.966 61.966 0 0 1-1.457 5.26l1.397.454a63.43 63.43 0 0 0 1.492-5.384zM5.981 87.459l-1.362.551a63.434 63.434 0 0 0 2.323 5.082l1.307-.669a61.968 61.968 0 0 1-2.268-4.964m115.627.99a61.98 61.98 0 0 1-2.354 4.925l1.296.69a63.447 63.447 0 0 0 2.41-5.04zM10.944 97.17l-1.245.78a63.949 63.949 0 0 0 3.17 4.6l1.172-.885a62.481 62.481 0 0 1-3.097-4.495m105.534.904a62.546 62.546 0 0 1-3.173 4.44l1.156.906a64.024 64.024 0 0 0 3.249-4.545zm-98.96 7.8l-1.092.983a64.235 64.235 0 0 0 3.917 3.983l1.002-1.074a62.77 62.77 0 0 1-3.827-3.892m92.24.79a62.76 62.76 0 0 1-3.893 3.826l.983 1.092a64.221 64.221 0 0 0 3.984-3.916zm-84.263 6.648l-.906 1.157a64.026 64.026 0 0 0 4.546 3.248l.8-1.232a62.554 62.554 0 0 1-4.44-3.173m76.16.654a62.475 62.475 0 0 1-4.495 3.096l.78 1.245a63.945 63.945 0 0 0 4.6-3.17zm-67.018 5.294l-.691 1.296a63.45 63.45 0 0 0 5.04 2.409l.575-1.352a61.984 61.984 0 0 1-4.924-2.353m57.775.496a61.956 61.956 0 0 1-4.964 2.268l.551 1.362a63.425 63.425 0 0 0 5.082-2.322zm-47.74 3.77l-.453 1.396a63.419 63.419 0 0 0 5.385 1.49l.329-1.43a61.949 61.949 0 0 1-5.26-1.456zm37.632.322a62.05 62.05 0 0 1-5.284 1.365l.304 1.437a63.361 63.361 0 0 0 5.41-1.398zm-27.003 2.122l-.203 1.455a64.093 64.093 0 0 0 5.561.529l.075-1.467a62.605 62.605 0 0 1-5.433-.517m16.335.139a62.635 62.635 0 0 1-5.442.424l.05 1.468a64.114 64.114 0 0 0 5.57-.434z\\\"/>\"\n\t\t},\n\t\t\"lua-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"navy\\\" d=\\\"M127.3 15.1c0-7.9-6.4-14.3-14.3-14.3S98.6 7.1 98.6 15.1S105 29.4 113 29.4s14.3-6.4 14.3-14.3\\\"/><g fill=\\\"navy\\\"><path d=\\\"M64 15.1c-27 0-49 21.9-49 49s21.9 49 49 49s49-21.9 49-49s-22-49-49-49zM50.7 88.5h-20V56.4h4.1v28.5h15.9v3.6zm22.3 0h-3.3v-3.2c-2.2 3-4.3 4.2-7.7 4.2c-4.5 0-7.4-2.5-7.4-6.3V65.4h3.7v16.3c0 2.8 1.9 4.5 4.8 4.5c3.8 0 6.3-3.1 6.3-7.8v-13H73v23.1zm-3-44.8c0-7.9 6.4-14.3 14.3-14.3s14.3 6.4 14.3 14.3S92.2 58 84.3 58S70 51.6 70 43.7zm29.8 45.4c-1.2.3-1.8.4-2.5.4c-2.4 0-3.5-1.1-3.8-3.4c-2.6 2.4-4.9 3.4-7.8 3.4c-4.7 0-7.6-2.6-7.6-6.8c0-3 1.4-5.1 4.1-6.2c1.4-.6 2.2-.7 7.4-1.4c2.9-.4 3.8-1 3.8-2.6v-1c0-2.2-1.9-3.4-5.2-3.4c-3.4 0-5.1 1.3-5.4 4.1h-3.7c.1-2.3.5-3.6 1.6-4.8c1.5-1.7 4.3-2.7 7.7-2.7c5.7 0 8.7 2.2 8.7 6.3v13.6c0 1.1.7 1.8 2 1.8c.2 0 .4 0 .8-.1l-.1 2.8z\\\"/><path d=\\\"M81.9 82.6c0 2.3 1.7 3.7 4.5 3.7c2.2 0 4-.7 5.5-2.1c1.1-1 1.5-1.8 1.5-3v-4.1c-1.2.6-2 .7-5.9 1.3c-3.9.5-5.6 1.8-5.6 4.2z\\\"/></g><path fill=\\\"gray\\\" d=\\\"m66.3 128l-.1-1.5c1.8-.1 3.6-.2 5.4-.4l.2 1.5c-1.8.2-3.7.3-5.5.4zm-5.6 0c-1.9-.1-3.7-.3-5.6-.5l.2-1.5c1.8.2 3.6.4 5.4.5v1.5zm16.6-1.4l-.3-1.4c1.8-.4 3.5-.8 5.3-1.4l.4 1.4c-1.7.6-3.5 1.1-5.4 1.4zm-27.7-.2c-1.8-.4-3.6-.9-5.4-1.5l.5-1.4c1.7.6 3.5 1 5.3 1.5l-.4 1.4zm38.4-3l-.6-1.4c1.7-.7 3.3-1.4 5-2.3l.7 1.3c-1.7.9-3.4 1.7-5.1 2.4zm-49-.4c-1.7-.7-3.4-1.5-5-2.4l.7-1.3c1.6.9 3.3 1.6 4.9 2.4L39 123zm59-4.7l-.8-1.2c1.5-1 3-2 4.5-3.1l.9 1.2c-1.5 1.1-3.1 2.1-4.6 3.1zm-68.8-.6c-1.6-1-3.1-2.1-4.5-3.2l.9-1.2c1.4 1.1 2.9 2.2 4.4 3.2l-.8 1.2zm77.7-6.1l-1-1.1c1.3-1.2 2.7-2.5 3.9-3.8l1.1 1c-1.3 1.3-2.7 2.6-4 3.9zm-86.5-.7c-1.4-1.3-2.7-2.6-3.9-4l1.1-1c1.2 1.3 2.5 2.7 3.8 3.9l-1 1.1zm94.1-7.5l-1.2-.9c1.1-1.4 2.2-2.9 3.2-4.4l1.2.8c-1 1.5-2.1 3.1-3.2 4.5zm-101.6-.8c-1.1-1.5-2.2-3-3.2-4.6l1.2-.8c1 1.5 2 3 3.1 4.5l-1.1.9zm107.7-8.5l-1.3-.7c.9-1.6 1.6-3.3 2.4-4.9l1.3.5l-2.4 5.1zM7 93.1c-.8-1.7-1.6-3.4-2.3-5.1l1.3-.5c.7 1.7 1.4 3.3 2.3 5l-1.3.6zm117.9-9.3l-1.4-.5c.6-1.7 1-3.5 1.5-5.3l1.4.3c-.4 1.9-.9 3.7-1.5 5.5zm-122.1-1c-.5-1.8-1-3.6-1.4-5.4l1.4-.3c.4 1.8.8 3.5 1.4 5.3l-1.4.4zm124.6-9.9l-1.5-.2c.2-1.8.4-3.6.5-5.4l1.5.1c0 1.8-.2 3.7-.5 5.5zM.5 71.9C.2 70 .1 68.2 0 66.3l1.5-.1c.1 1.8.2 3.6.4 5.4l-1.4.3zm126-10.1c-.1-1.8-.2-3.6-.4-5.4l1.5-.2c.2 1.8.4 3.7.4 5.6h-1.5zm-125-1L0 60.7c.1-1.9.3-3.7.5-5.6l1.5.3c-.2 1.8-.4 3.6-.5 5.4zM125.2 51c-.4-1.8-.8-3.6-1.4-5.3l1.4-.4c.5 1.8 1 3.6 1.4 5.4l-1.4.3zM3 50l-1.4-.3c.4-1.8.9-3.6 1.5-5.4l1.4.5C3.9 46.5 3.4 48.2 3 50zm119-9.4c-.7-1.7-1.4-3.4-2.3-5l1.3-.7c.8 1.7 1.6 3.4 2.3 5.1l-1.3.6zm-115.6-1L5 39.1c.7-1.7 1.5-3.4 2.4-5l1.3.7c-.8 1.5-1.6 3.2-2.3 4.8zm5.1-9.6l-1.2-.8c1-1.6 2.1-3.1 3.2-4.5l1.2.9c-1.2 1.4-2.2 2.9-3.2 4.4zm6.7-8.6l-1.1-1c1.3-1.4 2.6-2.7 4-3.9l1 1.1c-1.4 1.2-2.7 2.5-3.9 3.8zm8.1-7.3l-.9-1.2c1.5-1.1 3-2.2 4.6-3.2l.8 1.2c-1.6 1.1-3.1 2.1-4.5 3.2zm67-5.4c-1.6-.8-3.3-1.6-4.9-2.3l.5-1.4c1.7.7 3.4 1.5 5 2.4l-.6 1.3zm-57.8-.4L34.8 7c1.7-.8 3.4-1.6 5.1-2.3l.6 1.3c-1.7.7-3.4 1.5-5 2.3zm47.7-3.8c-1.7-.6-3.5-1-5.3-1.4l.3-1.4c1.8.4 3.6.9 5.4 1.5l-.4 1.3zm-37.6-.3l-.4-1.4c1.8-.5 3.6-1 5.4-1.4l.3 1.4c-1.8.4-3.6.9-5.3 1.4zm27-2.2c-1.8-.2-3.6-.4-5.4-.5l.1-1.5c1.9.1 3.7.3 5.6.5L72.6 2zm-16.3-.1L56.1.4c1.8-.2 3.7-.4 5.6-.4l.1 1.5c-1.9 0-3.7.2-5.5.4z\\\"/>\",\n\t\t\t\"hidden\": true\n\t\t},\n\t\t\"lumen\": {\n\t\t\t\"body\": \"<path fill=\\\"#e54537\\\" d=\\\"M35.82 35.477c.543 0 1.082-.118 1.578-.348L93.516 9.035a3.758 3.758 0 0 0 1.824-4.988a3.756 3.756 0 0 0-4.988-1.82L34.234 28.32a3.752 3.752 0 0 0 1.586 7.157M90.352 18.18L34.234 44.273a3.75 3.75 0 0 0-1.82 4.985a3.753 3.753 0 0 0 4.984 1.82L93.52 24.984A3.755 3.755 0 0 0 95.34 20a3.756 3.756 0 0 0-4.988-1.82m0 16.086l-56.118 26.09a3.756 3.756 0 0 0 1.586 7.16c.528 0 1.067-.114 1.578-.352L93.52 41.07a3.755 3.755 0 0 0-3.168-6.808ZM35.82 19.57a3.74 3.74 0 0 0 1.582-.351L63.273 7.156A3.754 3.754 0 0 0 60.102.352L34.23 12.414a3.753 3.753 0 0 0 1.59 7.156m54.52 30.653L70.5 59.547a3.75 3.75 0 0 0-2.156 3.398v18.73h-8.668V67.692c0-2.07-1.68-3.754-3.754-3.754a3.758 3.758 0 0 0-3.754 3.754v13.985h-5.379a2.563 2.563 0 0 0-2.52 3.02l1.266 7.027a2.564 2.564 0 0 0 2.524 2.109h13.168l-13.95 2.531a1.876 1.876 0 1 0 .672 3.692l31.989-5.809a1.86 1.86 0 0 0 1.187-.75a2.555 2.555 0 0 0 1.27-1.836l1.085-7.027a2.563 2.563 0 0 0-2.53-2.957h-5.098V65.328l17.68-8.312a3.756 3.756 0 0 0 1.8-4.996a3.751 3.751 0 0 0-4.992-1.797m-11.07 49.894l-31.993 5.809a1.876 1.876 0 1 0 .668 3.691l31.992-5.808a1.873 1.873 0 0 0 1.512-2.18a1.873 1.873 0 0 0-2.18-1.512Zm0 9.918l-31.993 5.809a1.876 1.876 0 1 0 .668 3.691l31.992-5.808a1.873 1.873 0 0 0 1.512-2.18a1.873 1.873 0 0 0-2.18-1.512Zm-3.83 10.005l-23.859 4.113a1.877 1.877 0 0 0 .637 3.7l23.86-4.114a1.874 1.874 0 0 0 1.53-2.168a1.88 1.88 0 0 0-2.168-1.53Zm0 0\\\"/>\"\n\t\t},\n\t\t\"magento\": {\n\t\t\t\"body\": \"<path fill=\\\"#f26322\\\" d=\\\"M119.82 31.97v64.01l-15.85 9.12V41.17l-39.62-22.9l-39.64 22.9l.1 63.96l-15.82-9.15V32.02L64.45 0zM72.3 105.1l-7.9 4.6l-7.95-4.55V41.17l-15.82 9.15l.03 63.96L64.38 128l23.77-13.72V50.29L72.3 41.14z\\\"/>\"\n\t\t},\n\t\t\"magento-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f26322\\\" d=\\\"M15.748 45.826L0 54.918v18.164l4.492 2.602l-.033-18.162l11.256-6.502l11.255 6.5v18.153l4.502-2.592V54.908l-15.725-9.082zm-2.273 11.695l-4.493 2.592l.012 18.174l6.73 3.887l6.755-3.887V60.113l-4.502-2.591v18.162l-2.24 1.306l-2.262-1.295z\\\"/><path fill=\\\"#4d4d4d\\\" d=\\\"m41.773 55.04l6.183 15.626h.055l6.029-15.627h2.35v17.9h-1.625V57.334h-.055c-.088.286-.176.571-.275.846a44.768 44.768 0 0 0-.285.769c-.11.285-.209.549-.286.801l-5.183 13.178h-1.472L41.971 59.76a13.774 13.774 0 0 1-.296-.758c-.1-.274-.198-.538-.275-.79a81.538 81.538 0 0 0-.296-.879h-.055V72.94h-1.56v-17.9Zm19.35 17.976a3.844 3.844 0 0 1-1.34-.67a3.312 3.312 0 0 1-.89-1.131c-.219-.45-.329-.978-.329-1.57c0-.77.143-1.395.429-1.878a3.24 3.24 0 0 1 1.153-1.164a5.438 5.438 0 0 1 1.69-.66a18.86 18.86 0 0 1 2.065-.35a23.377 23.377 0 0 0 1.615-.22a5.54 5.54 0 0 0 1.076-.286c.274-.12.472-.274.604-.461c.12-.198.186-.461.186-.79v-.253c0-.879-.263-1.538-.801-1.966c-.538-.428-1.307-.637-2.306-.637c-2.306 0-3.514.956-3.635 2.877h-1.527c.088-1.252.55-2.251 1.395-3.009c.846-.746 2.098-1.13 3.767-1.13c1.416 0 2.536.318 3.349.944c.813.626 1.23 1.647 1.23 3.064v7.028c0 .384.077.659.22.834c.142.176.35.275.637.286c.087 0 .175-.011.263-.022c.088-.011.198-.044.319-.077h.076v1.13a4.893 4.893 0 0 1-.428.144a3.03 3.03 0 0 1-.626.066c-.57 0-1.021-.143-1.35-.44c-.341-.296-.517-.757-.55-1.394v-.275h-.066a7.498 7.498 0 0 1-.658.78a4.08 4.08 0 0 1-.945.725a5.575 5.575 0 0 1-1.274.527a6.275 6.275 0 0 1-1.647.197a5.842 5.842 0 0 1-1.702-.22m3.821-1.36c.539-.22 1-.517 1.362-.868a3.458 3.458 0 0 0 1.098-2.526v-2.328c-.417.23-.922.417-1.515.538c-.593.132-1.208.23-1.845.318c-.549.088-1.065.176-1.526.264c-.462.088-.879.23-1.22.44a2.218 2.218 0 0 0-.812.812c-.198.34-.297.79-.297 1.34c0 .45.077.823.242 1.13c.154.286.362.539.626.725c.275.187.582.319.911.385c.363.077.736.11 1.099.11c.713-.012 1.328-.121 1.877-.34m8.072 4.853c-.868-.648-1.362-1.45-1.472-2.416h1.505c.132.747.538 1.285 1.219 1.614c.67.33 1.482.483 2.416.483c1.383 0 2.405-.329 3.063-.988c.66-.659.989-1.57.989-2.723v-2.054h-.077c-.483.736-1.043 1.296-1.68 1.68c-.637.385-1.45.571-2.427.571c-.857 0-1.614-.153-2.306-.472a5.07 5.07 0 0 1-1.757-1.329a6.011 6.011 0 0 1-1.12-2.042c-.264-.79-.385-1.67-.385-2.614c0-1.054.154-1.976.45-2.789c.297-.813.703-1.494 1.209-2.043a5.142 5.142 0 0 1 1.768-1.252a5.522 5.522 0 0 1 2.14-.428c1 0 1.824.209 2.483.615s1.197.967 1.625 1.658h.077v-2.01h1.537v12.443c0 1.438-.406 2.591-1.208 3.48c-.988 1.033-2.427 1.55-4.326 1.55c-1.615.021-2.856-.297-3.723-.934m6.786-6.556c.681-.955 1.033-2.207 1.033-3.756c0-.768-.088-1.471-.253-2.108a4.442 4.442 0 0 0-.78-1.636a3.65 3.65 0 0 0-1.317-1.066c-.528-.252-1.142-.373-1.845-.373c-1.285 0-2.284.472-2.998 1.428c-.714.955-1.065 2.218-1.065 3.81a7.547 7.547 0 0 0 .252 2.043c.165.626.417 1.164.747 1.625c.33.45.758.824 1.252 1.076c.505.264 1.098.384 1.779.384c1.45 0 2.504-.472 3.195-1.427m7.841 2.8a5.35 5.35 0 0 1-1.889-1.427a6.35 6.35 0 0 1-1.164-2.153a8.799 8.799 0 0 1-.406-2.69c0-.967.143-1.867.428-2.69a6.92 6.92 0 0 1 1.186-2.153a5.363 5.363 0 0 1 1.856-1.428c.725-.34 1.538-.516 2.438-.516c1.032 0 1.91.198 2.614.582a4.93 4.93 0 0 1 1.724 1.57c.439.66.757 1.417.944 2.263c.187.867.275 1.746.275 2.624h-9.862a7.61 7.61 0 0 0 .319 2.043c.175.593.45 1.142.823 1.636c.363.472.835.846 1.362 1.098c.55.264 1.197.407 1.933.407c1.087 0 1.922-.264 2.515-.791c.593-.527 1.01-1.23 1.262-2.12h1.505c-.286 1.285-.868 2.318-1.757 3.075c-.89.77-2.065 1.153-3.525 1.153c-.978.022-1.834-.142-2.58-.483m6.105-9.016a4.278 4.278 0 0 0-.725-1.45a3.344 3.344 0 0 0-1.208-.965c-.483-.231-1.065-.352-1.724-.352c-.67 0-1.252.12-1.746.352a3.58 3.58 0 0 0-1.285.966a4.612 4.612 0 0 0-.834 1.439a7.277 7.277 0 0 0-.418 1.8h8.214a6.61 6.61 0 0 0-.274-1.79m5.38-3.744v1.976h.056a5.35 5.35 0 0 1 1.713-1.614c.714-.428 1.581-.637 2.613-.637c1.197 0 2.197.352 2.965 1.044c.78.691 1.164 1.69 1.164 2.998v9.19h-1.548v-9.037c0-.988-.264-1.702-.79-2.163c-.528-.461-1.253-.692-2.164-.692c-.527 0-1.054.088-1.548.275c-.473.175-.9.428-1.274.757a3.63 3.63 0 0 0-.868 1.164a3.584 3.584 0 0 0-.318 1.472v8.214h-1.55V59.992ZM111.65 72.5c-.45-.363-.67-.956-.67-1.79v-9.444h-1.955v-1.274h1.955v-3.986h1.548v3.986h2.405v1.274h-2.405v9.191c0 .472.11.79.319.967c.208.175.516.263.933.263c.187 0 .373-.022.56-.066a2.22 2.22 0 0 0 .461-.143h.077v1.33a4.518 4.518 0 0 1-1.427.23c-.747 0-1.351-.187-1.801-.538m7.873.252c-.724-.33-1.372-.823-1.888-1.427s-.912-1.33-1.186-2.153a8.478 8.478 0 0 1-.418-2.69c0-.967.143-1.867.418-2.69c.274-.824.67-1.549 1.186-2.153a5.35 5.35 0 0 1 1.888-1.428c.747-.34 1.582-.516 2.515-.516c.934 0 1.768.176 2.504.516c.725.33 1.362.824 1.878 1.428s.911 1.329 1.175 2.152c.263.824.395 1.724.406 2.69c0 .967-.132 1.868-.406 2.691a6.288 6.288 0 0 1-1.175 2.153a5.442 5.442 0 0 1-1.878 1.427c-.736.34-1.57.516-2.504.516c-.933-.01-1.768-.175-2.515-.516m4.426-1.219a3.74 3.74 0 0 0 1.373-1.175a5.292 5.292 0 0 0 .823-1.757a8.442 8.442 0 0 0 0-4.25a5.519 5.519 0 0 0-.823-1.757a3.922 3.922 0 0 0-1.373-1.175c-.55-.285-1.186-.428-1.9-.428s-1.35.143-1.922.428a4.043 4.043 0 0 0-1.372 1.175a5.105 5.105 0 0 0-.835 1.757a8.442 8.442 0 0 0 0 4.25c.187.67.461 1.252.835 1.757c.362.494.834.89 1.372 1.175c.538.286 1.186.429 1.922.429s1.373-.143 1.9-.429\\\"/>\"\n\t\t},\n\t\t\"mariadb\": {\n\t\t\t\"body\": \"<path fill=\\\"#003545\\\" d=\\\"M127.403 22.767a1.824 1.824 0 0 0-1.24-.414c-1.236 0-2.833.838-3.693 1.287l-.34.175a11.721 11.721 0 0 1-4.612 1.16a64.756 64.756 0 0 0-4.896.34c-10.91 1.121-15.777 9.484-20.464 17.57c-2.552 4.399-5.188 8.969-8.802 12.46c-.747.724-1.541 1.4-2.378 2.02c-3.74 2.78-8.435 4.765-12.088 6.17c-3.518 1.345-7.359 2.553-11.066 3.722c-3.4 1.07-6.609 2.082-9.56 3.178c-1.144.422-2.299.823-3.459 1.205c-2.688.872-4.626 1.54-7.458 3.49a47.949 47.949 0 0 0-2.963 2.183a31.255 31.255 0 0 0-5.913 6.227a36.767 36.767 0 0 1-4.966 5.961c-.598.584-1.659.872-3.248.872c-1.86 0-4.115-.384-6.501-.79c-2.462-.435-5.006-.85-7.188-.85c-1.771 0-3.13.29-4.141.873c0 0-1.708.995-2.427 2.282l.707.32a14.493 14.493 0 0 1 3.02 2.181a15.153 15.153 0 0 0 3.141 2.234c.365.134.695.344.97.616c-.296.436-.734.999-1.193 1.6c-2.517 3.296-3.987 5.377-3.145 6.511c.404.21.855.312 1.31.297c5.49 0 8.44-1.426 12.17-3.233c1.082-.522 2.182-1.06 3.491-1.615c2.182-.946 4.531-2.456 7.022-4.054c3.26-2.124 6.668-4.306 9.976-5.358a27.188 27.188 0 0 1 8.391-1.179c3.492 0 7.167.466 10.71.92c2.641.342 5.377.69 8.06.852a50.27 50.27 0 0 0 2.946.092a34.127 34.127 0 0 0 3.757-.196l.3-.105c1.883-1.158 2.765-3.64 3.618-6.04c.551-1.546 1.014-2.933 1.747-3.814c.043-.043.09-.082.14-.117a.175.175 0 0 1 .213.034v.07c-.435 9.387-4.215 15.348-8.038 20.646l-2.552 2.736s3.573 0 5.607-.786c7.42-2.217 13.018-7.104 17.093-14.899a63.583 63.583 0 0 0 2.693-6.15c.07-.172.712-.496.65.407c-.021.267-.04.563-.061.874c0 .182 0 .37-.035.558c-.104 1.31-.414 4.076-.414 4.076l2.29-1.227c5.525-3.49 9.784-10.533 13.015-21.491c1.344-4.566 2.33-9.1 3.197-13.093c1.039-4.801 1.935-8.915 2.96-10.512c1.61-2.506 4.067-4.2 6.445-5.844c.323-.222.65-.437.97-.673c2.988-2.098 5.96-4.52 6.616-9.037v-.1c.474-3.37.073-4.228-.384-4.621z\\\"/>\"\n\t\t},\n\t\t\"mariadb-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#003545\\\" d=\\\"M127.434 12.182a1.727 1.727 0 0 0-1.174-.392c-1.168 0-2.68.793-3.495 1.218l-.322.165a11.095 11.095 0 0 1-4.365 1.1c-1.554.049-2.892.14-4.635.322c-10.327 1.06-14.933 8.975-19.37 16.63c-2.416 4.164-4.91 8.489-8.33 11.793a22.472 22.472 0 0 1-2.252 1.913c-3.54 2.631-7.985 4.51-11.443 5.84c-3.329 1.273-6.964 2.417-10.474 3.524c-3.219 1.012-6.255 1.97-9.048 3.008a96.902 96.902 0 0 1-3.275 1.14c-2.545.825-4.378 1.458-7.06 3.304a45.386 45.386 0 0 0-2.804 2.066a29.585 29.585 0 0 0-5.597 5.894a34.802 34.802 0 0 1-4.701 5.642c-.566.554-1.57.826-3.074.826c-1.76 0-3.895-.363-6.154-.747c-2.33-.413-4.738-.805-6.803-.805c-1.677 0-2.962.273-3.92.826c0 0-1.617.942-2.298 2.16l.67.302a13.718 13.718 0 0 1 2.859 2.065a14.342 14.342 0 0 0 2.973 2.115a2.553 2.553 0 0 1 .918.582c-.281.413-.694.946-1.129 1.516c-2.384 3.119-3.774 5.09-2.977 6.163a2.507 2.507 0 0 0 1.239.28c5.196 0 7.989-1.35 11.52-3.06c1.024-.495 2.066-1.004 3.305-1.528c2.065-.896 4.288-2.325 6.647-3.838c3.084-2.01 6.31-4.076 9.442-5.072a25.734 25.734 0 0 1 7.943-1.115c3.305 0 6.783.441 10.138.872c2.499.322 5.089.652 7.63.805c.986.057 1.9.086 2.787.086a32.307 32.307 0 0 0 3.557-.185l.284-.1c1.781-1.094 2.617-3.444 3.425-5.717c.52-1.462.96-2.775 1.652-3.61a1.054 1.054 0 0 1 .132-.11a.166.166 0 0 1 .202.032v.066c-.412 8.885-3.99 14.527-7.608 19.543l-2.416 2.59s3.383 0 5.307-.744c7.024-2.099 12.324-6.725 16.181-14.103a60.185 60.185 0 0 0 2.549-5.82c.065-.165.673-.47.616.384c-.021.252-.038.533-.059.827c0 .173 0 .35-.033.528c-.1 1.24-.392 3.859-.392 3.859l2.169-1.162c5.229-3.304 9.26-9.97 12.318-20.343c1.272-4.321 2.205-8.613 3.027-12.392c.983-4.545 1.83-8.44 2.801-9.952c1.524-2.37 3.85-3.973 6.101-5.53c.306-.211.616-.414.917-.637c2.83-1.986 5.643-4.279 6.263-8.555v-.095c.45-3.189.07-4.002-.364-4.373zm-7.283 103.727h-10.327V97.92h9.315c3.56 0 6.952.67 6.902 4.66c0 2.813-1.747 3.59-3.589 3.886c2.615.224 4.188 1.892 4.188 4.586c.017 4.035-3.523 4.858-6.489 4.858zm-.772-10.14c3.565 0 4.362-1.372 4.362-3.115c0-2.619-1.595-3.214-4.362-3.214h-7.402v6.328zm.099 1.52h-7.501v7.1h7.823c2.194 0 4.511-.723 4.511-3.486c0-3.19-2.665-3.615-4.833-3.615zm-31.497-9.37h8.125c6.828 0 10.24 3.764 10.19 8.994c.05 5.436-3.716 8.997-9.591 8.997H87.98zm2.242 1.596v14.825h6.197c5.432 0 7.501-3.665 7.501-7.477c0-4.309-2.59-7.348-7.5-7.348zm-10.838 5.357v-2.095h3.404v13.132h-3.392v-2.114c-.896 1.52-2.739 2.391-4.982 2.391c-4.684 0-7.303-3.305-7.303-7.105c0-3.664 2.479-6.609 6.804-6.609c2.454.029 4.498.855 5.469 2.4m-8.675 4.387c0 2.416 1.52 4.485 4.462 4.485c2.841 0 4.386-2.02 4.386-4.411c0-2.392-1.599-4.436-4.544-4.436c-2.828 0-4.3 2.04-4.3 4.362zm-10.013-9.947a1.722 1.722 0 0 1 1.818-1.768a1.788 1.788 0 0 1 1.847 1.821a1.714 1.714 0 0 1-1.847 1.744a1.743 1.743 0 0 1-1.818-1.797m.15 3.465h3.39v9.596c0 .595.125 1.02.62 1.02a3.657 3.657 0 0 0 .648-.073l.525 2.478a5.931 5.931 0 0 1-2.242.414c-1.421 0-2.942-.414-2.942-3.64zM52.15 115.91h-3.386v-13.132h3.386v2.942a5.197 5.197 0 0 1 4.735-3.218a6.13 6.13 0 0 1 2.119.347l-.723 2.479a7.435 7.435 0 0 0-1.793-.249c-2.445 0-4.338 1.843-4.338 4.545zm-11.037-11.037v-2.095h3.392v13.132h-3.392v-2.114c-.896 1.52-2.738 2.391-4.982 2.391c-4.688 0-7.303-3.305-7.303-7.105c0-3.664 2.479-6.609 6.804-6.609c2.466.029 4.51.855 5.481 2.4m-8.675 4.387c0 2.416 1.52 4.485 4.462 4.485c2.838 0 4.383-2.02 4.383-4.411c0-2.391-1.595-4.436-4.544-4.436c-2.826 0-4.296 2.04-4.296 4.362zm-9.24-11.34l4.651 17.99h-3.51l-3.099-12.96l-5.84 12.96h-2.965l-5.808-12.883l-3.19 12.883H0l4.61-17.99h3.04l6.28 13.93l6.253-13.93z\\\"/>\"\n\t\t},\n\t\t\"markdown\": {\n\t\t\t\"body\": \"<path d=\\\"M11.95 24.348c-5.836 0-10.618 4.867-10.618 10.681v57.942c0 5.814 4.782 10.681 10.617 10.681h104.102c5.835 0 10.617-4.867 10.617-10.681V35.03c0-5.814-4.783-10.681-10.617-10.681H14.898l-.002-.002zm-.007 9.543h104.108c.625 0 1.076.423 1.076 1.14v57.94c0 .717-.453 1.14-1.076 1.14H11.949c-.623 0-1.076-.423-1.076-1.14V35.029c0-.715.451-1.135 1.07-1.138\\\" color=\\\"#000\\\"/><path d=\\\"M20.721 84.1V43.9H32.42l11.697 14.78L55.81 43.9h11.696v40.2H55.81V61.044l-11.694 14.78l-11.698-14.78V84.1H20.722zm73.104 0L76.28 64.591h11.697V43.9h11.698v20.69h11.698zm0 0\\\"/>\"\n\t\t},\n\t\t\"materializecss\": {\n\t\t\t\"body\": \"<path fill=\\\"#f6a2ad\\\" d=\\\"M52.106 31.332c-10.69 2.814-16.377 19.274-8.423 27.718l.107.7c.243 1.965.703 3.893 1.053 5.857c.77 3.861 1.507 7.723 2.316 11.583c1.087 4.946 2.138 9.893 3.892 14.669c.494 1.332 1.056 2.665 1.933 3.785c.488.562 1.087 1.194 1.929 1.017c13.134-9.982 9.07-17.77 8.718-26.854l.906.237l-1.168-5.589a531.11 531.11 0 0 0-2.424-12.457c-1.05-4.915-2.104-9.825-3.646-14.6c-.455-1.264-.948-2.521-1.578-3.684c-.455-1.017-1.303-1.857-2.281-2.382Zm40.177 0c-11.202 3.79-17.397 14.315-8.42 27.902l.11.581a.271.271 0 0 1 .028.114l.133.72c1.667 8.984 3.23 17.97 5.623 26.789c.77 2.457 1.433 4.947 2.735 7.19c.632.916 1.371 2.14 2.666 2.002c12.193.031 12.751-14.337 9.439-26.195l-.358-2.615a89.892 89.892 0 0 0-.343-1.896c-.985-5.47-2.034-10.98-3.192-16.422c-.877-4.03-1.825-8.104-3.126-12.034c-.525-1.435-1.05-2.946-1.895-4.28c-.525-.739-1.087-1.438-1.896-1.856h-1.502ZM1.226 66.384c-.423 0-.84.07-1.226.102c1.087.246 2.104.846 3.014 1.51c1.196 1.055 2.111 2.387 2.845 3.79c1.23 2.313 2.033 4.809 2.703 7.336c1.295 5.048 1.541 10.38 3.646 15.19c.422.737.846 1.546 1.579 2c.214.14.422.319.669.28c25.666-.743 16.07-18.685 8.484-27.695l-.206-.232c-.663-.846-1.543-1.548-2.523-1.933c-.706-.315-1.438-.247-2.14-.348z\\\"/><path fill=\\\"#eb7077\\\" d=\\\"M34.07 31.285c-.176 0-.352.009-.526.047c-.877.385-1.472 1.156-1.933 1.927c-.803 1.403-1.365 2.95-1.858 4.454c-1.017 3.159-1.787 6.425-2.559 9.653c-.947 4.14-1.792 8.347-2.596 12.523c-.492 2.843-1.127 5.687-1.549 8.531c-.35 2.56-.948 5.084-1.473 7.643c-.84 3.86-1.68 7.758-2.772 11.582c-.701 2.388-1.435 4.771-2.597 6.984a6.105 6.105 0 0 1-1.718 1.964c1.054.106 2.07-.002 3.126.037h15.436c.385.031.669-.247.915-.493c1.119-1.017 1.68-2.49 2.281-3.86c1.259-3.329 2.106-6.775 2.909-10.21c1.723-7.476 3.089-14.982 4.42-22.526c.424-2.28.879-4.597 1.372-6.91c1.087-5.093 2.174-10.178 3.754-15.126c.562-1.612 1.156-3.262 2.072-4.74c.316-.594.801-1.048 1.332-1.47H34.598c-.177 0-.352-.01-.528-.01m49.035.033c-3.07-.005-6.14-.005-9.208.014c-1.23.418-1.895 1.61-2.457 2.666c-1.439 2.983-2.248 6.242-2.981 9.47c-1.789 7.404-3.197 14.88-4.53 22.386c-1.119 5.825-2.211 11.65-3.613 17.407c-.772 3.09-1.545 6.21-2.702 9.192c-.632 1.51-1.262 3.158-2.564 4.208c.316.037.67.037.986.037c5.858 0 11.72.039 17.577 0c.878-.422 1.441-1.332 1.933-2.173c.98-1.863 1.612-3.86 2.207-5.826c.948-3.196 1.686-6.455 2.388-9.684a524.832 524.832 0 0 0 3.72-19.403c1.194-6.597 2.49-13.16 4.316-19.58c.702-2.35 1.402-4.702 2.596-6.844c.385-.7.981-1.3 1.543-1.856c-3.07 0-6.141-.01-9.211-.014m42.248 35.056c-.886.009-1.773.026-2.648.01h-12.666c-1.472-.07-2.913.632-3.899 1.72c-.595.561-.91 1.366-1.365 1.997c-.564.777-.773 1.719-1.088 2.597c-.985 3.127-1.617 6.387-2.142 9.615a54.746 54.746 0 0 1-1.788 7.507c-.563 1.826-1.301 3.614-2.457 5.124c-.563.738-1.301 1.262-2.142 1.649c.354.068.741.068 1.125.068c5.788-.033 11.575.039 17.4-.031c1.863-1.472 2.95-3.683 3.652-5.894c1.054-3.16 1.054-6.528 1.542-9.755c.492-3.298 1.087-6.667 2.773-9.617a10.305 10.305 0 0 1 4.63-4.176c.563-.278 1.195-.419 1.72-.77a38.824 38.824 0 0 0-2.647-.044\\\"/>\"\n\t\t},\n\t\t\"materialui\": {\n\t\t\t\"body\": \"<path fill=\\\"#1FA6CA\\\" d=\\\"M.2 68.6V13.4L48 41v18.4L16.1 41v36.8z\\\"/><path fill=\\\"#1C7FB6\\\" d=\\\"m48 41l47.9-27.6v55.3L64 87l-16-9.2l32-18.4V41L48 59.4z\\\"/><path fill=\\\"#1FA6CA\\\" d=\\\"M48 77.8v18.4l32 18.4V96.2z\\\"/><path fill=\\\"#1C7FB6\\\" d=\\\"M80 114.6L127.8 87V50.2l-16 9.2v18.4L80 96.2zM111.9 41V22.6l16-9.2v18.4z\\\"/>\"\n\t\t},\n\t\t\"matlab\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconMatlab0\\\" x1=\\\"16.803\\\" x2=\\\"15.013\\\" y1=\\\"16.631\\\" y2=\\\"22.411\\\" gradientTransform=\\\"matrix(4 0 0 -4 0 128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#512\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#523\\\"/><stop offset=\\\".36\\\" stop-color=\\\"#534\\\"/><stop offset=\\\".51\\\" stop-color=\\\"#645\\\"/><stop offset=\\\".66\\\" stop-color=\\\"#568\\\"/><stop offset=\\\".84\\\" stop-color=\\\"#29d\\\"/></linearGradient><linearGradient id=\\\"deviconMatlab1\\\" x1=\\\"29.71\\\" x2=\\\"11.71\\\" y1=\\\"18.983\\\" y2=\\\"14.563\\\" gradientTransform=\\\"scale(4)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".081\\\" stop-color=\\\"#c33\\\"/><stop offset=\\\".189\\\" stop-color=\\\"#de5239\\\"/><stop offset=\\\".313\\\" stop-color=\\\"#f06e3e\\\"/><stop offset=\\\".421\\\" stop-color=\\\"#fa8042\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#fe8643\\\"/><stop offset=\\\".58\\\" stop-color=\\\"#fa7f42\\\"/><stop offset=\\\".696\\\" stop-color=\\\"#ef6c3e\\\"/><stop offset=\\\".833\\\" stop-color=\\\"#dc4c37\\\"/><stop offset=\\\".916\\\" stop-color=\\\"#cf3633\\\"/></linearGradient></defs><path fill=\\\"#49d\\\" d=\\\"m8 70.2l31.879-12.88a82.62 82.62 0 0 1 10.883-11.8c2.636-1.399 7.597-.641 16.68-11.918c8.796-11 11.597-20.403 15.718-20.403c6.52 0 11.32 14.082 18.602 35.403A461.75 461.75 0 0 0 120 96.48c-7.602-7.082-14.078-14.718-21.48-14.52c-6.88.161-14.52 8.321-22.88 18.802C69 109.16 60.2 114.922 56.763 114.8c0 0-8.883-25.121-16.32-29.2a10.563 10.563 0 0 0-9.563.797L8 70.16zm0 0\\\"/><path fill=\\\"url(#deviconMatlab0)\\\" d=\\\"M79.2 16.078c-2.68 3.602-5.92 10.203-11.76 17.524c-9.082 11.277-14 10.52-16.68 11.918a78.673 78.673 0 0 0-10.882 11.8l13.2 9.64C64.28 51.68 70.28 35.122 74.96 24.399a54.649 54.649 0 0 1 4.238-8.32zm0 0\\\"/><path fill=\\\"url(#deviconMatlab1)\\\" d=\\\"M83.2 13.2c-8.72 0-14.68 45.921-46.88 71.562c9.04-1.48 16.88 20.957 20.48 30.039c16-2.723 28.802-33.32 41.72-32.84c7.402.277 13.878 7.437 21.48 14.52C102.64 60 94.52 13.198 83.2 13.198zm0 0\\\"/>\"\n\t\t},\n\t\t\"matplotlib\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M63.975 125.09c-16.317 0-31.658-6.355-43.197-17.893S2.885 80.318 2.885 64S9.24 32.341 20.778 20.803S47.657 2.91 63.975 2.91s31.659 6.355 43.198 17.893S125.065 47.682 125.065 64s-6.355 31.659-17.893 43.198s-26.879 17.892-43.197 17.892\\\"/><path fill=\\\"none\\\" stroke=\\\"#858585\\\" stroke-dasharray=\\\".407 .814\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"7.976\\\" stroke-width=\\\".856\\\" d=\\\"M63.974 63.784h61.09m-61.09 0l43.197-43.196M63.974 63.784V2.694m0 61.09L20.778 20.588m43.196 43.196H2.884m61.09 0l-43.196 43.197m43.196-43.197v61.09m0-61.09l43.197 43.197\\\" opacity=\\\".9\\\"/><g fill=\\\"none\\\" stroke=\\\"#818181\\\" stroke-dasharray=\\\".407 .814\\\" stroke-linecap=\\\"square\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"199.409\\\" stroke-width=\\\".856\\\"><path d=\\\"m70.764 63.784l-.202-1.643l-.593-1.543l-.949-1.355l-1.25-1.085l-1.474-.751l-1.61-.373l-1.654.03l-1.599.429l-1.447.801l-1.209 1.128l-.9 1.388l-.539 1.565l-.145 1.649l.259 1.634l.646 1.523l.994 1.321l1.286 1.041l1.5.698l1.623.316l1.653-.086l1.582-.484l1.418-.852l1.17-1.17l.851-1.417l.484-1.582l.105-1.182h0\\\" opacity=\\\".9\\\"/><path d=\\\"m84.339 63.784l-.198-2.833l-.59-2.779l-.973-2.669l-1.333-2.509l-1.67-2.299l-1.973-2.044l-2.238-1.75l-2.461-1.42l-2.633-1.064l-2.758-.688l-2.825-.297l-2.84.099l-2.797.494l-2.702.877l-2.554 1.246l-2.356 1.588l-2.111 1.901l-1.826 2.177l-1.506 2.408l-1.155 2.596l-.782 2.73l-.396 2.814v2.842l.396 2.814l.782 2.73l1.155 2.596l1.506 2.408l1.826 2.177l2.111 1.902l2.356 1.588l2.554 1.245l2.702.877l2.798.494l2.84.1l2.824-.298l2.758-.687l2.633-1.065l2.461-1.42l2.238-1.75l1.973-2.044l1.67-2.299l1.333-2.51l.972-2.668l.591-2.779l.198-2.83h0\\\" opacity=\\\".9\\\"/><path d=\\\"m97.914 63.784l-.185-3.548l-.555-3.509l-.92-3.43l-1.272-3.317l-1.613-3.166l-1.935-2.978l-2.236-2.762l-2.512-2.511l-2.761-2.236l-2.979-1.935l-3.165-1.613l-3.317-1.273l-3.43-.919l-3.51-.555l-3.548-.185l-3.548.185l-3.508.555l-3.43.92l-3.318 1.272l-3.165 1.613l-2.979 1.935l-2.761 2.236l-2.512 2.511l-2.236 2.762l-1.935 2.978l-1.613 3.166l-1.273 3.317l-.919 3.43l-.555 3.509l-.185 3.548l.185 3.548l.555 3.509l.92 3.43l1.272 3.317l1.613 3.166l1.935 2.978l2.236 2.762l2.512 2.511l2.761 2.236l2.979 1.935l3.165 1.614l3.317 1.272l3.43.92l3.51.555l3.547.185l3.549-.185l3.508-.556l3.43-.919l3.318-1.272l3.165-1.614l2.979-1.935l2.761-2.236l2.512-2.511l2.236-2.762l1.935-2.978l1.613-3.166l1.272-3.317l.92-3.43l.555-3.509l.185-3.548h0\\\" opacity=\\\".9\\\"/><path d=\\\"m111.489 63.784l-.26-4.966l-.78-4.911l-1.286-4.804l-1.782-4.642l-2.257-4.432l-2.709-4.171l-3.13-3.866l-3.516-3.517l-3.866-3.13l-4.171-2.709L83.3 20.38l-4.642-1.781l-4.804-1.287l-4.912-.779l-4.966-.26l-4.966.26l-4.91.779l-4.805 1.287l-4.642 1.781l-4.432 2.257l-4.17 2.71l-3.867 3.13l-3.517 3.516l-3.13 3.866l-2.708 4.17l-2.257 4.433l-1.782 4.642l-1.287 4.804l-.778 4.911l-.261 4.966l.26 4.966l.779 4.911l1.287 4.805l1.782 4.642l2.257 4.431l2.709 4.171l3.13 3.866l3.516 3.517l3.866 3.13l4.171 2.709l4.432 2.257l4.642 1.781l4.804 1.288l4.911.778l4.966.26l4.966-.26l4.912-.778l4.804-1.288l4.642-1.781l4.432-2.257l4.17-2.71l3.867-3.129l3.516-3.517l3.13-3.866l2.71-4.17l2.256-4.432l1.782-4.642l1.287-4.805l.778-4.91l.261-4.967h0\\\" opacity=\\\".9\\\"/></g><path fill=\\\"#11557c\\\" d=\\\"M64 126c-16.56 0-32.13-6.449-43.84-18.159S2 80.561 2 64s6.449-32.13 18.159-43.841S47.439 2 64 2s32.131 6.449 43.841 18.159S126 47.439 126 64s-6.449 32.131-18.159 43.841S80.561 126 64 126M64 3.82c-16.074 0-31.187 6.26-42.553 17.626C10.08 32.813 3.82 47.925 3.82 64c0 16.075 6.26 31.188 17.626 42.554S47.925 124.18 64 124.18c16.075 0 31.188-6.26 42.554-17.626S124.18 80.075 124.18 64c0-16.075-6.26-31.187-17.626-42.554C95.187 10.08 80.075 3.82 64 3.82\\\"/><path fill=\\\"#004cff\\\" d=\\\"m63.975 63.784l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.129-.042l.025.046l.013.041l.013.041l.013.041l.013.041l.013.041l.012.041l.012.041l.011.039l.012.041l.012.041l.012.041l.012.041l.011.041l.011.041l.011.041l.011.041l.011.041l.011.041l.011.041l.011.041l.01.041l.01.041l.01.041l.01.041l.01.041l.01.042l.01.042l.009.042l.009.042l.009.042l.009.042l.009.042l.009.042l.009.042l.009.042l.009.042l.008.042l.008.042l.008.042l.008.042l.008.042l.008.042l.007.042l.007.042l.007.042l.007.042l.007.042l.007.042l.007.042l.007.042l.007.042l.006.042l.006.042l.006.042l.006.042l.006.042l.006.042l.006.042l.005.042l.005.042l.005.042l.005.042l.005.042l.005.042l.005.042l.005.042l.004.042l.004.042l.004.042l.004.042l.004.042l.004.042l.004.043l.003.043l.003.043l.003.043l.003.043l.003.043l.003.043l.003.043l.003.043l.002.043l.002.043l.002.043l.002.043l.002.043l.002.043l.002.043l.001.043l.001.043l.001.043l.001.043l.001.043l.001.043l.001.043v.172H64.11z\\\" opacity=\\\".6\\\"/><path fill=\\\"#ceff29\\\" d=\\\"m63.975 63.784l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.143-.381l.154-.411l.143-.381l.143-.381l.12.045l.12.046l.119.046l.119.046l.119.047l.119.047l.119.047l.119.048l.119.048l.118.049l.118.049l.118.049l.118.05l.118.05l.118.05l.117.051l.117.051l.117.051l.117.052l.117.052l.117.053l.116.053l.116.053l.116.054l.116.054l.116.054l.116.055l.115.055l.115.055l.115.056l.115.056l.115.057l.115.057l.114.057l.114.058l.114.058l.114.058l.114.059l.113.059l.113.059l.113.06l.113.06l.113.061l.113.061l.112.061l.112.062l.112.062l.112.062l.112.063l.111.063l.111.063l.111.064l.111.064l.111.064l.11.065l.11.065l.11.065l.11.066l.11.066l.109.066l.109.067l.109.067l.109.067l.108.068l.108.068l.108.068l.108.069l.108.069l.107.069l.107.07l.107.07l.107.071l.107.071l.106.071l.106.072l.106.072l.106.072l.105.073l.105.073l.105.073l.105.074l.104.074l.104.074l.104.074l.104.075l.104.075l.103.075l.103.076l.103.076l.103.076l.102.077l.102.077l.102.077l.102.078l.101.078l.101.078l.101.079l.101.079l.1.079l.1.08l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.252.324l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.253.32l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.252.332l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.32l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.252.328l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318l-.254.318z\\\" opacity=\\\".6\\\"/><path fill=\\\"#ff6800\\\" d=\\\"m63.975 63.784l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.349-.403l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l-.348-.417l.197-.164l.198-.163l.198-.162l.199-.161l.2-.16l.201-.159l.201-.158l.202-.157l.203-.156l.204-.155l.204-.154l.205-.153l.206-.152l.206-.151l.207-.15l.208-.149l.209-.148l.209-.147l.21-.146l.211-.145l.211-.144l.212-.143l.213-.142l.213-.141l.214-.14l.215-.139l.215-.138l.216-.137l.217-.136l.217-.135l.218-.134l.219-.133l.219-.132l.22-.131l.22-.13l.221-.129l.222-.128l.222-.127l.223-.126l.223-.125l.224-.124l.225-.123l.225-.122l.226-.121l.226-.12l.227-.118l.227-.117l.228-.116l.228-.115l.229-.114l.23-.113l.23-.112l.231-.111l.231-.11l.232-.109l.232-.108l.233-.107l.233-.105l.234-.104l.234-.103l.235-.102l.235-.101l.236-.1l.236-.099l.237-.098l.237-.097l.237-.095l.238-.094l.238-.093l.239-.092l.239-.091l.24-.09l.24-.089l.24-.088l.241-.086l.241-.085l.242-.084l.242-.083l.242-.082l.243-.081l.243-.08l.244-.078l.244-.077l.244-.076l.245-.075l.245-.074l.245-.073l.246-.072l.246-.07l.246-.069l.247-.068l.247-.067l.247-.066l.248-.065l.248-.063l.248-.062l.249-.061l.249-.06l.249-.059l.249-.058l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.113.543l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529l.121.529z\\\" opacity=\\\".6\\\"/><path fill=\\\"#ffc400\\\" d=\\\"m63.975 63.784l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.463.083l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.462.083l-.468.085l-.468.085l-.468.085l-.466.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.456.081l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.45.079l-.468.085l-.468.085l-.468.085l-.466.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.468.085l-.052-.294l-.051-.294l-.049-.295l-.047-.295l-.045-.295l-.038-.297l-.041-.296l-.039-.296l-.038-.296l-.036-.296l-.034-.297l-.032-.297l-.03-.297l-.028-.297l-.026-.297l-.024-.298l-.023-.298l-.021-.298l-.019-.298l-.017-.298l-.015-.298l-.013-.298l-.011-.298l-.009-.298l-.008-.298l-.006-.298l-.004-.299l-.002-.299v-.299l.002-.299l.004-.299l.005-.298l.007-.298l.009-.298l.011-.298l.013-.298l.015-.298l.017-.298l.019-.298l.02-.298l.022-.298l.024-.298l.026-.297l.028-.297l.03-.297l.032-.297l.034-.297l.035-.296l.037-.296l.039-.296l.041-.296l.043-.295l.045-.295l.047-.295l.048-.295l.05-.294l.052-.294l.054-.294l.056-.293l.058-.293l.059-.293l.061-.292l.063-.292l.065-.291l.067-.291l.069-.291l.07-.29l.072-.29l.074-.289l.076-.289l.078-.288l.08-.288l.081-.287l.083-.287l.085-.286l.087-.286l.089-.285l.09-.285l.092-.284l.094-.283l.096-.283l.097-.282l.099-.282l.101-.281l.103-.28l.105-.28l.106-.279l.108-.278l.11-.278l.112-.277l.113-.276l.115-.276l.117-.275l.118-.274l.12-.273l.122-.273l.124-.272l.125-.271l.127-.27l.129-.269l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206l.428.206z\\\" opacity=\\\".6\\\"/><path fill=\\\"#29ffce\\\" d=\\\"m63.975 63.784l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.224.151l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.232.137l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.223.155l-.231.138l-.223.155l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.035l-.024-.036l-.024-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.023-.036l-.022-.036l-.022-.036l-.022-.036l-.022-.036l-.022-.036l-.022-.036l-.022-.036l-.022-.036l-.022-.037l-.022-.037l-.022-.037l-.022-.037l-.022-.037l-.022-.037l-.022-.037l-.022-.037l-.022-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.021-.037l-.02-.037l-.02-.037l-.02-.037l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.02-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.038l-.019-.041l-.019-.038l-.019-.038l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118l.245-.118z\\\" opacity=\\\".6\\\"/><path fill=\\\"#7dff7a\\\" d=\\\"m63.975 63.784l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l.057.335l-.131.022l-.132.022l-.132.021l-.132.021l-.132.02l-.132.019l-.132.019l-.132.018l-.132.018l-.132.017l-.132.017l-.132.016l-.132.016l-.132.015l-.132.015l-.132.014l-.133.014l-.133.013l-.133.013l-.133.012l-.133.012l-.133.011l-.133.011l-.133.01l-.133.01l-.133.009l-.133.009l-.133.008l-.133.007l-.133.007l-.133.007l-.133.006l-.133.005l-.133.005l-.133.004l-.133.004l-.133.003l-.133.003l-.133.002l-.133.002l-.133.001l-.133.001h-.266l-.133-.001l-.133-.001l-.133-.002l-.133-.002l-.133-.003l-.133-.003l-.133-.004l-.153-.047l-.133-.005l-.133-.005l-.133-.006l-.133-.007l-.134-.007l-.133-.008l-.133-.008l-.133-.009l-.133-.009l-.133-.01l-.133-.01l-.133-.011l-.133-.011l-.133-.012l-.133-.012l-.133-.013l-.133-.013l-.133-.014l-.132-.015l-.13-.015l-.132-.015l-.132-.016l-.132-.017l-.132-.017l-.132-.018l-.132-.018l-.132-.019l-.132-.019l-.132-.02l-.132-.02l-.132-.021l-.132-.021l-.131-.022l-.131-.022l-.131-.023l-.131-.023l-.131-.024l-.131-.024l-.131-.025l-.131-.025l-.131-.026l-.131-.026l-.131-.027l-.13-.027l-.13-.028l-.13-.028l-.13-.029l-.13-.029l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331l.076-.331z\\\" opacity=\\\".6\\\"/><path fill=\\\"#ff6800\\\" d=\\\"m63.975 63.784l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.433.33l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l.428.334l-.079.101l-.079.101l-.079.1l-.079.1l-.08.1l-.08.1l-.08.1l-.08.1l-.081.099l-.081.099l-.081.099l-.081.099l-.082.099l-.082.098l-.082.098l-.082.098l-.083.098l-.083.098l-.083.097l-.083.097l-.083.097l-.084.097l-.084.097l-.084.096l-.084.096l-.085.096l-.085.096l-.085.096l-.085.095l-.085.095l-.086.095l-.086.095l-.086.095l-.086.094l-.087.094l-.087.094l-.087.094l-.087.094l-.087.093l-.088.093l-.088.093l-.088.093l-.088.093l-.089.092l-.089.092l-.089.092l-.089.092l-.089.092l-.09.091l-.09.091l-.09.091l-.09.091l-.09.09l-.091.09l-.091.09l-.091.09l-.091.09l-.092.089l-.092.089l-.092.089l-.092.089l-.092.089l-.093.088l-.093.088l-.093.088l-.093.088l-.093.087l-.094.087l-.094.087l-.094.087l-.094.087l-.094.086l-.068.066l-.095.086l-.095.086l-.095.085l-.095.085l-.096.085l-.096.085l-.096.084l-.096.084l-.096.084l-.097.084l-.097.084l-.097.083l-.097.083l-.097.083l-.098.083l-.098.082l-.098.082l-.098.082l-.098.082l-.099.082l-.099.081l-.099.081l-.099.081l-.099.081l-.1.08l-.1.08l-.1.08l-.339-.425l-.338-.424l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.33-.414l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425l-.339-.425z\\\" opacity=\\\".6\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"m77.551 64.198l-13.576-.001a.414.414 0 0 1-.128-.806l12.912-4.194a.413.413 0 0 1 .521.265c.455 1.398.685 2.853.684 4.323a.413.413 0 0 1-.413.413m-10.965-.828h10.545a13.114 13.114 0 0 0-.516-3.258z\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M63.975 64.197a.414.414 0 0 1-.387-.558L77.899 25.51a.412.412 0 0 1 .532-.242a41 41 0 0 1 11.196 6.351a.414.414 0 0 1 .066.581L64.298 64.041a.415.415 0 0 1-.323.156m14.552-38.008L65.28 61.484l23.507-29.475a40.163 40.163 0 0 0-10.26-5.82\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M63.975 64.197a.415.415 0 0 1-.317-.148L28.857 22.364a.412.412 0 0 1 .052-.582A54.784 54.784 0 0 1 51.801 10.44a.414.414 0 0 1 .495.312l12.083 52.941a.415.415 0 0 1-.22.463a.444.444 0 0 1-.184.041M29.757 22.152l33.431 40.044l-11.607-50.857a53.967 53.967 0 0 0-21.824 10.813\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M17.224 72.681a.413.413 0 0 1-.406-.339c-1.813-9.884-.401-20.309 3.977-29.355a.414.414 0 0 1 .552-.193l42.808 20.615a.413.413 0 0 1-.106.78l-46.75 8.485a.318.318 0 0 1-.075.007m4.136-28.96c-4.103 8.678-5.448 18.61-3.801 28.067l45.09-8.183z\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M41.657 79.659a.42.42 0 0 1-.341-.178a27.673 27.673 0 0 1-2.177-3.738a.413.413 0 0 1 .193-.552l24.462-11.78a.413.413 0 0 1 .415.713L41.893 79.586a.414.414 0 0 1-.236.073m-1.59-3.904a27.058 27.058 0 0 0 1.697 2.913L59.42 66.436z\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M63.99 98.132c-2.58 0-5.165-.287-7.66-.857a.415.415 0 0 1-.311-.496l7.552-33.088c.044-.192.223-.354.415-.321a.412.412 0 0 1 .396.344l5.685 33.46a.414.414 0 0 1-.339.477a34.201 34.201 0 0 1-5.738.481m-7.072-1.574c4 .86 8.22.98 12.264.344l-5.267-30.999z\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M97.832 106.652a.413.413 0 0 1-.324-.156L63.651 64.041a.413.413 0 0 1 .577-.584l42.833 33.379a.414.414 0 0 1 .072.581a54.697 54.697 0 0 1-9.045 9.146a.409.409 0 0 1-.256.089M66.477 66.258l31.42 39.399a53.985 53.985 0 0 0 8.329-8.423z\\\"/>\"\n\t\t},\n\t\t\"matplotlib-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#11557c\\\" d=\\\"M22.155 70.824a.449.449 0 0 1-.104.256a.733.733 0 0 1-.297.17c-.136.047-.318.08-.547.099a7.368 7.368 0 0 1-.87.043c-.36 0-.652-.014-.877-.043a2.373 2.373 0 0 1-.547-.099a.6.6 0 0 1-.271-.17a.449.449 0 0 1-.052-.256l.559-7.513a4.848 4.848 0 0 0-.041-1.165a2.308 2.308 0 0 0-.303-.895a1.43 1.43 0 0 0-.582-.582c-.236-.142-.529-.213-.879-.213c-.426 0-.869.166-1.329.497c-.46.331-.97.814-1.528 1.449l-.626 8.422a.449.449 0 0 1-.104.256a.732.732 0 0 1-.311.17c-.136.047-.318.08-.547.099a7.211 7.211 0 0 1-.855.043c-.35 0-.638-.014-.863-.043a2.373 2.373 0 0 1-.547-.099a.6.6 0 0 1-.271-.17a.394.394 0 0 1-.066-.256l.559-7.513a4.848 4.848 0 0 0-.041-1.165a2.463 2.463 0 0 0-.289-.895a1.43 1.43 0 0 0-.582-.582a1.724 1.724 0 0 0-.879-.213c-.436 0-.883.166-1.344.497c-.46.331-.965.814-1.514 1.449l-.627 8.422a.449.449 0 0 1-.104.256a.732.732 0 0 1-.311.17c-.136.047-.318.08-.547.099a7.368 7.368 0 0 1-.87.043c-.35 0-.638-.014-.863-.043a2.373 2.373 0 0 1-.547-.099a.6.6 0 0 1-.271-.17a.394.394 0 0 1-.066-.256l.942-12.669a.43.43 0 0 1 .089-.241a.558.558 0 0 1 .269-.185a1.94 1.94 0 0 1 .476-.099c.201-.028.448-.043.742-.043c.303 0 .553.014.75.043c.197.019.346.052.447.099c.11.047.186.109.228.185c.042.066.06.147.053.241l-.109 1.463c.757-.757 1.495-1.326 2.215-1.704c.729-.379 1.472-.568 2.229-.568c.521 0 .985.057 1.393.17c.409.104.767.26 1.073.469c.317.199.583.44.798.724c.216.284.391.601.526.952c.409-.407.804-.757 1.186-1.051c.391-.294.768-.53 1.132-.71a5.013 5.013 0 0 1 1.096-.412a4.389 4.389 0 0 1 1.104-.142c.843 0 1.542.142 2.099.426s.992.672 1.305 1.165c.324.483.537 1.051.64 1.704a9.02 9.02 0 0 1 .073 2.074zm14.327.043a.41.41 0 0 1-.165.312c-.1.076-.256.128-.466.156a5.245 5.245 0 0 1-.899.057c-.426 0-.737-.019-.933-.057c-.187-.028-.321-.08-.4-.156c-.07-.076-.1-.18-.09-.312l.075-1.008a6.357 6.357 0 0 1-1.887 1.307a5.37 5.37 0 0 1-2.25.469c-.672 0-1.286-.09-1.84-.27a3.85 3.85 0 0 1-1.406-.767a3.26 3.26 0 0 1-.855-1.292c-.189-.511-.258-1.108-.208-1.79c.055-.739.244-1.378.569-1.917a3.93 3.93 0 0 1 1.393-1.349c.604-.36 1.339-.625 2.204-.795c.865-.17 1.861-.256 2.987-.256h1.236l.057-.767a3.63 3.63 0 0 0-.051-1.037a1.506 1.506 0 0 0-.342-.753c-.165-.199-.4-.346-.706-.44c-.296-.095-.671-.142-1.126-.142c-.597 0-1.136.066-1.62.199a9.959 9.959 0 0 0-1.268.44c-.372.161-.686.308-.942.44c-.247.133-.446.199-.597.199a.426.426 0 0 1-.277-.099a.757.757 0 0 1-.178-.284a2.18 2.18 0 0 1-.08-.454a3.845 3.845 0 0 1 .002-.597c.022-.294.063-.525.123-.696s.161-.322.304-.454c.143-.142.386-.294.73-.454c.344-.17.744-.327 1.199-.469a10.67 10.67 0 0 1 1.474-.341a9.42 9.42 0 0 1 1.644-.142c.994 0 1.834.099 2.52.298c.696.189 1.256.488 1.68.895c.425.398.718.914.879 1.548c.161.634.209 1.387.145 2.258zm-3.104-5.425h-1.363c-.578 0-1.073.043-1.487.128c-.413.085-.754.213-1.023.383c-.268.17-.473.379-.615.625a1.997 1.997 0 0 0-.232.824c-.039.53.095.947.404 1.25c.318.303.776.454 1.372.454c.502 0 .971-.128 1.406-.383c.445-.256.904-.63 1.376-1.122zm13.994 4.133c-.031.417-.083.739-.157.966c-.064.218-.141.374-.234.469a1.401 1.401 0 0 1-.401.241a3.523 3.523 0 0 1-.595.17a5.238 5.238 0 0 1-.734.128a7.256 7.256 0 0 1-.784.043c-.71 0-1.319-.09-1.826-.27c-.507-.18-.918-.454-1.231-.824c-.313-.379-.528-.852-.647-1.42s-.149-1.24-.091-2.017l.483-6.491h-1.52c-.18 0-.309-.109-.388-.327c-.078-.227-.097-.601-.059-1.122c.02-.275.047-.507.08-.696c.042-.189.091-.336.146-.44a.608.608 0 0 1 .188-.241a.501.501 0 0 1 .261-.071h1.505l.21-2.826a.503.503 0 0 1 .09-.256a.658.658 0 0 1 .298-.185c.146-.057.334-.095.562-.114c.239-.028.529-.043.87-.043c.35 0 .638.014.863.043c.235.019.417.057.545.114a.532.532 0 0 1 .27.185a.394.394 0 0 1 .066.256l-.21 2.826h2.755c.095 0 .173.024.236.071a.451.451 0 0 1 .167.241c.04.104.062.251.067.44c.014.189.011.421-.009.696c-.039.521-.114.895-.225 1.122c-.111.218-.256.327-.436.327h-2.77l-.443 5.951c-.051.691.019 1.212.21 1.562c.192.341.568.511 1.127.511c.189 0 .361-.014.514-.043c.154-.038.29-.076.406-.114l.307-.114a.597.597 0 0 1 .231-.057c.057 0 .107.019.152.057c.055.028.092.095.113.199c.021.095.035.227.041.398c.019.172.017.389-.003.655m15.759-5.27c-.084 1.127-.283 2.145-.596 3.054c-.304.899-.711 1.666-1.222 2.301a5.225 5.225 0 0 1-1.842 1.463c-.717.341-1.52.511-2.41.511c-.369 0-.707-.038-1.014-.114a3.746 3.746 0 0 1-.872-.312a5.537 5.537 0 0 1-.811-.554a9.158 9.158 0 0 1-.824-.767l-.444 5.965a.449.449 0 0 1-.104.256a.659.659 0 0 1-.312.185c-.137.057-.32.099-.549.128s-.519.043-.87.043c-.35 0-.638-.014-.863-.043a2.137 2.137 0 0 1-.544-.128a.532.532 0 0 1-.27-.185a.394.394 0 0 1-.066-.256l1.316-17.697a.43.43 0 0 1 .089-.241a.557.557 0 0 1 .255-.185a1.94 1.94 0 0 1 .476-.099c.201-.028.448-.043.742-.043c.284 0 .52.014.707.043c.197.019.351.052.461.099c.12.047.2.109.242.185c.042.066.06.147.053.241l-.111 1.491c.397-.379.782-.71 1.153-.994a6.876 6.876 0 0 1 1.147-.724a5.11 5.11 0 0 1 1.169-.44c.405-.095.83-.142 1.275-.142c.928 0 1.705.185 2.331.554c.627.36 1.12.857 1.48 1.491c.369.634.618 1.373.744 2.216c.128.843.155 1.742.084 2.698m-3.74.256c.04-.54.036-1.056-.013-1.548a4.077 4.077 0 0 0-.313-1.335a2.136 2.136 0 0 0-.698-.923c-.295-.237-.679-.355-1.152-.355c-.237 0-.476.038-.719.114c-.232.066-.477.18-.735.341c-.249.161-.51.369-.785.625a9.913 9.913 0 0 0-.88.952l-.31 4.176c.455.634.896 1.127 1.325 1.477c.429.341.89.511 1.382.511c.464 0 .866-.118 1.205-.355c.349-.237.642-.544.878-.923c.237-.388.421-.824.552-1.307c.139-.484.227-.967.263-1.45m9.704 6.263a.449.449 0 0 1-.104.256a.732.732 0 0 1-.311.17c-.136.047-.318.08-.547.099c-.229.028-.519.043-.87.043s-.638-.014-.863-.043a2.373 2.373 0 0 1-.547-.099a.6.6 0 0 1-.271-.17a.394.394 0 0 1-.066-.256l1.389-18.676a.449.449 0 0 1 .104-.256a.658.658 0 0 1 .298-.185c.146-.057.334-.099.563-.128s.519-.043.87-.043c.35 0 .638.014.863.043s.402.071.53.128c.139.047.233.109.285.185s.073.161.066.256zm26.794-1.249c-.031.417-.083.739-.157.966c-.064.218-.141.374-.234.469a1.401 1.401 0 0 1-.401.241a3.523 3.523 0 0 1-.595.17a5.238 5.238 0 0 1-.734.128a7.256 7.256 0 0 1-.784.043c-.71 0-1.319-.09-1.826-.27c-.507-.18-.918-.454-1.231-.824c-.313-.379-.528-.852-.647-1.42s-.149-1.24-.091-2.017l.483-6.491h-1.52c-.18 0-.309-.109-.388-.327c-.078-.227-.097-.601-.059-1.122c.02-.275.047-.507.08-.696c.042-.189.091-.336.146-.44a.608.608 0 0 1 .188-.241a.501.501 0 0 1 .261-.071h1.505l.21-2.826a.503.503 0 0 1 .09-.256a.658.658 0 0 1 .298-.185c.146-.057.334-.095.562-.114c.239-.028.529-.043.87-.043c.35 0 .638.014.863.043c.235.019.417.057.545.114a.532.532 0 0 1 .27.185a.394.394 0 0 1 .066.256l-.21 2.826h2.755c.095 0 .173.024.236.071a.451.451 0 0 1 .167.241c.04.104.062.251.067.44c.014.189.011.421-.009.696c-.039.521-.114.895-.225 1.122c-.111.218-.256.327-.436.327h-2.77l-.443 5.951c-.051.691.019 1.212.21 1.562c.192.341.568.511 1.127.511c.189 0 .361-.014.514-.043c.154-.038.29-.076.406-.114l.307-.114a.597.597 0 0 1 .231-.057c.057 0 .107.019.152.057c.055.028.092.095.113.199c.021.095.035.227.041.398c.018.172.016.389-.003.655m6.099 1.249a.449.449 0 0 1-.104.256a.732.732 0 0 1-.311.17c-.136.047-.318.08-.547.099a7.368 7.368 0 0 1-.87.043c-.35 0-.638-.014-.863-.043a2.373 2.373 0 0 1-.547-.099a.594.594 0 0 1-.271-.17a.394.394 0 0 1-.066-.256l1.389-18.676c.007-.095.042-.18.104-.256s.162-.137.298-.185c.146-.057.334-.099.563-.128c.229-.028.519-.043.87-.043s.638.014.863.043c.225.028.402.071.53.128c.139.047.233.109.285.185a.394.394 0 0 1 .066.256zm7.158 0a.449.449 0 0 1-.104.256a.732.732 0 0 1-.311.17c-.136.047-.318.08-.547.099a7.368 7.368 0 0 1-.87.043c-.35 0-.638-.014-.863-.043a2.373 2.373 0 0 1-.547-.099a.6.6 0 0 1-.271-.17a.394.394 0 0 1-.066-.256l.94-12.64a.381.381 0 0 1 .103-.241a.658.658 0 0 1 .298-.185c.146-.057.334-.099.563-.128c.229-.028.519-.043.87-.043c.35 0 .638.014.863.043c.225.028.402.071.53.128c.139.047.233.109.285.185a.336.336 0 0 1 .067.241zm1.531-16.958c-.054.72-.237 1.217-.551 1.491s-.869.412-1.664.412c-.805 0-1.339-.133-1.604-.398c-.255-.265-.357-.743-.305-1.434c.054-.72.232-1.217.537-1.491c.315-.284.874-.426 1.679-.426c.795 0 1.325.137 1.588.412c.265.265.371.743.32 1.434m15.286 10.454c-.084 1.127-.282 2.14-.595 3.039s-.725 1.666-1.236 2.301s-1.12 1.122-1.827 1.463c-.698.341-1.477.511-2.339.511a5.19 5.19 0 0 1-1.184-.128a3.754 3.754 0 0 1-1.037-.383a5.538 5.538 0 0 1-.943-.682a8.8 8.8 0 0 1-.92-.994l-.102 1.378a.474.474 0 0 1-.105.27a.605.605 0 0 1-.268.17c-.117.047-.276.08-.476.099c-.2.019-.442.028-.726.028c-.294 0-.539-.009-.736-.028a1.761 1.761 0 0 1-.461-.099a.496.496 0 0 1-.229-.17a.472.472 0 0 1-.051-.27l1.389-18.676a.449.449 0 0 1 .104-.256a.658.658 0 0 1 .298-.185c.146-.057.334-.099.563-.128c.229-.028.519-.043.87-.043c.35 0 .638.014.863.043c.225.028.402.071.53.128c.139.047.233.109.285.185a.394.394 0 0 1 .066.256l-.521 7.002c.346-.322.688-.597 1.027-.824s.674-.412 1.007-.554c.333-.151.673-.26 1.018-.327a5.79 5.79 0 0 1 1.087-.099c.937 0 1.719.189 2.344.568a4.023 4.023 0 0 1 1.479 1.505c.369.634.617 1.378.743 2.23c.124.842.153 1.732.083 2.67m-3.726.255c.04-.54.036-1.06-.012-1.562a4.077 4.077 0 0 0-.313-1.335a2.237 2.237 0 0 0-.713-.923c-.295-.237-.684-.355-1.167-.355c-.237 0-.471.033-.703.099c-.232.066-.477.18-.735.341c-.249.161-.51.369-.785.625s-.568.573-.88.952l-.313 4.204c.454.644.895 1.136 1.325 1.477c.439.331.91.497 1.412.497c.464 0 .866-.118 1.205-.355c.34-.237.628-.544.864-.923c.246-.379.434-.81.565-1.292a7.74 7.74 0 0 0 .25-1.45\\\"/><circle cx=\\\"79.33\\\" cy=\\\"64.198\\\" r=\\\"11.013\\\" fill=\\\"#fff\\\" transform=\\\"rotate(-58.283 79.335 64.201)\\\"/><path fill=\\\"none\\\" stroke=\\\"#858585\\\" stroke-dasharray=\\\".062 .123\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"7.976\\\" stroke-width=\\\".13\\\" d=\\\"M79.32 64.192h10.187m-10.187 0l7.202-7.202m-7.202 7.202V54.006m0 10.186l-7.202-7.202m7.202 7.202H69.134m10.186 0l-7.202 7.202m7.202-7.202V74.38m0-10.188l7.202 7.202\\\" opacity=\\\".9\\\"/><g fill=\\\"none\\\" stroke=\\\"#818181\\\" stroke-dasharray=\\\".062 .123\\\" stroke-linecap=\\\"square\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"199.409\\\" stroke-width=\\\".13\\\"><path d=\\\"m80.452 64.192l-.034-.273l-.099-.257l-.157-.225l-.209-.18l-.246-.127l-.269-.063l-.275.004l-.268.072l-.241.134l-.202.187l-.15.232l-.09.26l-.023.276l.044.274l.107.254l.166.221l.215.175l.25.115l.272.053l.275-.015l.263-.08l.236-.143l.195-.195l.143-.236l.08-.263l.017-.2h0\\\" opacity=\\\".9\\\"/><path d=\\\"m82.715 64.192l-.033-.473l-.1-.463l-.161-.446l-.223-.418l-.278-.383l-.328-.34l-.372-.293l-.41-.238l-.44-.177l-.46-.113l-.472-.05l-.473.016l-.467.082l-.45.147l-.425.209l-.393.265l-.352.317l-.305.364l-.25.402l-.193.433l-.13.455l-.066.469v.473l.065.469l.13.454l.194.434l.25.401l.305.364l.352.318l.393.265l.425.208l.45.147l.467.082l.473.017l.471-.05l.46-.114l.44-.177l.41-.237l.373-.293l.328-.34l.278-.383l.223-.419l.162-.446l.099-.462l.033-.476h0\\\" opacity=\\\".9\\\"/><path d=\\\"m84.98 64.192l-.031-.59l-.093-.586l-.153-.572l-.213-.553l-.269-.528l-.322-.496l-.372-.46l-.418-.42l-.461-.372l-.497-.322l-.527-.269l-.554-.212l-.572-.154l-.584-.092l-.592-.032l-.59.032l-.585.092l-.572.154l-.554.212l-.528.27l-.496.321l-.46.373l-.42.418l-.371.46l-.322.497l-.27.528l-.212.553l-.153.572l-.093.585l-.032.591l.032.591l.093.585l.153.572l.213.553l.269.528l.322.497l.372.46l.418.419l.461.372l.496.322l.528.27l.554.212l.572.153l.584.093l.591.031l.592-.031l.584-.093l.572-.153l.554-.213l.527-.27l.497-.32l.46-.373l.42-.419l.371-.46l.322-.497l.27-.528l.212-.553l.153-.572l.093-.585l.031-.59h0\\\" opacity=\\\".9\\\"/><path d=\\\"m87.244 64.192l-.044-.829l-.13-.818l-.215-.801l-.297-.774l-.377-.738l-.452-.697l-.521-.643l-.587-.587l-.644-.522l-.696-.452l-.738-.376l-.774-.297l-.802-.215l-.818-.13l-.829-.044l-.828.044l-.819.13l-.8.215l-.775.297l-.738.376l-.696.452l-.644.522l-.587.587l-.522.643l-.452.697l-.376.738l-.297.774l-.214.801l-.13.818l-.045.83l.044.828l.13.818l.215.801l.297.775l.376.738l.452.696l.522.644l.587.586l.644.522l.696.452l.738.377l.774.296l.801.215l.819.13l.828.045l.83-.045l.817-.13l.802-.215l.774-.296l.738-.377l.696-.452l.644-.522l.587-.586l.521-.644l.452-.696l.377-.738l.297-.775l.214-.8l.13-.82l.045-.828h0\\\" opacity=\\\".9\\\"/></g><path fill=\\\"#11557c\\\" d=\\\"M79.321 74.53a10.27 10.27 0 0 1-7.31-3.028a10.27 10.27 0 0 1-3.028-7.31a10.27 10.27 0 0 1 3.028-7.31a10.27 10.27 0 0 1 7.31-3.028c2.761 0 5.358 1.075 7.31 3.028a10.27 10.27 0 0 1 3.028 7.31c0 2.761-1.075 5.358-3.028 7.31a10.27 10.27 0 0 1-7.31 3.028m0-20.372c-2.68 0-5.2 1.044-7.095 2.939a9.969 9.969 0 0 0-2.939 7.095c0 2.68 1.044 5.2 2.939 7.095s4.415 2.939 7.095 2.939c2.68 0 5.2-1.044 7.095-2.939s2.939-4.415 2.939-7.095c0-2.68-1.044-5.2-2.939-7.095a9.969 9.969 0 0 0-7.095-2.939\\\"/><path fill=\\\"#004cff\\\" d=\\\"m79.321 64.192l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l-.015-.006l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.022-.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.002.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007l.001.007v.154H79.34z\\\" opacity=\\\".6\\\"/><path fill=\\\"#ceff29\\\" d=\\\"m79.321 64.192l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.015-.038l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.024-.064l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.008l.02.009l.02.009l.02.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.009l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.01l.019.011l.019.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.011l.018.012l.018.012l.018.012l.018.012l.018.012l.018.012l.018.012l.018.012l.018.012l.018.012l.018.012l.018.012l.018.012l.017.012l.017.012l.017.012l.017.012l.017.012l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l.017.013l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.061.072l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.055.057l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.042.053l-.051.055l-.042.053l-.042.053l-.042.053z\\\" opacity=\\\".6\\\"/><path fill=\\\"#ff6800\\\" d=\\\"m79.321 64.192l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.059-.05l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l-.058-.07l.033-.027l.033-.027l.033-.027l.033-.027l.033-.027l.033-.026l.034-.026l.034-.026l.034-.026l.034-.026l.034-.026l.034-.026l.034-.025l.034-.025l.035-.025l.035-.025l.035-.025l.035-.025l.035-.024l.035-.024l.035-.024l.035-.024l.035-.024l.036-.024l.036-.023l.036-.023l.036-.023l.036-.023l.036-.023l.036-.023l.036-.022l.036-.022l.037-.022l.037-.022l.037-.022l.037-.022l.037-.021l.037-.021l.037-.021l.037-.021l.037-.021l.037-.02l.038-.02l.038-.02l.038-.02l.038-.02l.038-.02l.038-.019l.038-.019l.038-.019l.038-.019l.038-.019l.038-.018l.039-.018l.039-.018l.039-.018l.039-.018l.039-.018l.039-.017l.039-.017l.039-.017l.039-.017l.039-.017l.039-.016l.039-.016l.04-.016l.04-.016l.04-.016l.04-.016l.04-.015l.04-.015l.04-.015l.04-.015l.04-.015l.04-.014l.04-.014l.04-.014l.04-.014l.04-.014l.04-.013l.041-.013l.041-.013l.041-.013l.041-.013l.041-.013l.041-.012l.041-.012l.041-.012l.041-.012l.041-.012l.041-.011l.041-.011l.041-.011l.041-.011l.041-.011l.041-.01l.041-.01l.041-.01l.042-.01l.042-.01l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088l.02.088z\\\" opacity=\\\".6\\\"/><path fill=\\\"#ffc400\\\" d=\\\"m79.321 64.192l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.076.022l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.077.015l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.078.014l-.009-.049l-.008-.049l-.007-.043l-.008-.049l-.007-.049l-.007-.049l-.007-.049l-.007-.049l-.006-.049l-.006-.049l-.006-.049l-.005-.049l-.005-.05l-.005-.05l-.004-.05l-.004-.05l-.004-.05l-.003-.05l-.003-.05l-.003-.05l-.003-.05l-.002-.05l-.002-.05l-.002-.05l-.001-.049l-.001-.05l-.001-.05v-.15l.001-.05l.001-.05l.001-.05l.002-.05l.002-.05l.002-.05l.002-.05l.003-.05l.003-.05l.003-.05l.004-.05l.004-.05l.004-.05l.005-.05l.005-.05l.005-.049l.006-.049l.006-.049l.006-.049l.007-.049l.007-.049l.007-.049l.007-.049l.008-.049l.008-.049l.008-.049l.009-.049l.009-.049l.009-.049l.01-.049l.01-.049l.01-.049l.011-.049l.011-.049l.011-.049l.011-.048l.012-.048l.012-.048l.012-.048l.013-.048l.013-.048l.013-.048l.014-.048l.014-.048l.014-.048l.014-.048l.015-.048l.015-.047l.015-.047l.016-.047l.016-.047l.016-.047l.017-.047l.017-.047l.017-.047l.017-.047l.018-.047l.018-.046l.018-.046l.019-.046l.019-.042l.019-.046l.019-.046l.02-.046l.02-.046l.02-.045l.021-.045l.021-.045l.021-.045l.021-.045l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034l.071.034z\\\" opacity=\\\".6\\\"/><path fill=\\\"#29ffce\\\" d=\\\"m79.321 64.192l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.04.023l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.046.017l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.041.022l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.041.022l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.037.026l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.005-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.004-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l-.003-.006l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02l.041-.02z\\\" opacity=\\\".6\\\"/><path fill=\\\"#7dff7a\\\" d=\\\"m79.321 64.192l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.047.04l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l.009.056l-.022.004l-.022.004l-.022.004l-.022.003l-.022.003l-.022.003l-.022.003l-.022.003l-.022.003l-.022.003l-.022.003l-.022.003l-.022.003l-.022.003l-.022.002l-.022.002l-.022.002l-.022.002l-.022.002l-.022.002l-.022.002l-.022.002l-.022.002l-.022.002l-.022.002l-.022.002l-.022.001l-.022.001l-.022.001l-.022.001l-.022.001l-.022.001l-.022.001l-.022.001l-.022.001l-.022.001l-.022.001h-.264l-.022-.001l-.022-.001l-.022-.001l-.022-.001l-.022-.001l-.022-.001l-.022-.001l-.022-.001l-.022-.001l-.022-.001l-.022-.001l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.002l-.022-.003l-.022-.003l-.022-.003l-.022-.003l-.023-.009l-.022-.003l-.022-.003l-.022-.003l-.022-.003l-.022-.003l-.022-.003l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.004l-.022-.005l-.022-.005l-.022-.005l-.022-.005l-.022-.005l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055l.013-.055z\\\" opacity=\\\".6\\\"/><path fill=\\\"#ff6800\\\" d=\\\"m79.321 64.192l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l.071.056l-.013.017l-.013.017l-.013.017l-.013.017l-.013.017l-.013.017l-.013.017l-.013.017l-.013.017l-.013.017l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.014.016l-.015.016l-.015.016l-.015.016l-.015.016l-.015.016l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.015.015l-.016.015l-.016.015l-.016.015l-.016.015l-.016.015l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.016.014l-.017.014l-.017.013l-.017.013l-.017.013l-.017.013l-.017.013l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.037-.096l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.075-.063l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071l-.056-.071z\\\" opacity=\\\".6\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M81.584 64.261H79.32a.069.069 0 0 1-.021-.134l2.153-.699a.07.07 0 0 1 .087.044c.076.233.114.476.114.721a.068.068 0 0 1-.069.068m-1.828-.138h1.758a2.22 2.22 0 0 0-.086-.543z\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M79.321 64.261a.07.07 0 0 1-.065-.093l2.386-6.358a.068.068 0 0 1 .089-.04a6.834 6.834 0 0 1 1.867 1.059c.03.024.035.067.011.097l-4.234 5.309a.07.07 0 0 1-.054.026m2.426-6.337l-2.209 5.885l3.92-4.915a6.717 6.717 0 0 0-1.711-.97\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M79.321 64.261a.07.07 0 0 1-.053-.025l-5.803-6.951a.068.068 0 0 1 .009-.097a9.142 9.142 0 0 1 3.817-1.891a.07.07 0 0 1 .083.052l2.015 8.827a.069.069 0 0 1-.037.077a.06.06 0 0 1-.031.008m-5.706-7.01l5.574 6.677l-1.935-8.48a8.998 8.998 0 0 0-3.639 1.803\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M71.525 65.676a.069.069 0 0 1-.068-.056a8.006 8.006 0 0 1 .663-4.895a.069.069 0 0 1 .092-.032l7.138 3.437a.069.069 0 0 1 .038.071a.07.07 0 0 1-.056.059l-7.795 1.415zm.69-4.829a7.872 7.872 0 0 0-.634 4.68l7.518-1.364z\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"m75.6 66.839l-.012-.001a.067.067 0 0 1-.044-.029a4.558 4.558 0 0 1-.363-.623a.07.07 0 0 1-.003-.053a.07.07 0 0 1 .035-.039l4.079-1.964a.071.071 0 0 1 .09.027a.069.069 0 0 1-.02.091l-3.721 2.578a.076.076 0 0 1-.041.013m-.266-.651c.084.167.179.33.283.486l2.944-2.04z\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M79.323 69.92c-.43 0-.861-.048-1.277-.143a.07.07 0 0 1-.052-.083l1.259-5.517c.007-.032.037-.059.069-.054a.069.069 0 0 1 .066.057l.948 5.579a.07.07 0 0 1-.056.08a5.654 5.654 0 0 1-.957.081m-1.179-.263a5.647 5.647 0 0 0 2.045.057l-.878-5.169z\\\"/><path fill=\\\"#2c2c2c\\\" d=\\\"M84.966 71.34a.07.07 0 0 1-.054-.026l-5.645-7.079a.068.068 0 0 1 .005-.091a.069.069 0 0 1 .091-.006l7.142 5.566a.07.07 0 0 1 .012.097a9.104 9.104 0 0 1-1.508 1.525a.076.076 0 0 1-.043.014m-5.228-6.735l5.239 6.569a9.003 9.003 0 0 0 1.389-1.405z\\\"/>\"\n\t\t},\n\t\t\"maven\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconMaven0\\\" x1=\\\"-7274.8\\\" x2=\\\"-7243.872\\\" y1=\\\"2082.507\\\" y2=\\\"2046.343\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f69923\\\"/><stop offset=\\\".312\\\" stop-color=\\\"#f79a23\\\"/><stop offset=\\\".838\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMaven1\\\" x1=\\\"-7503.689\\\" x2=\\\"-7283.036\\\" y1=\\\"2086.595\\\" y2=\\\"2086.595\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMaven2\\\" x1=\\\"-7477.053\\\" x2=\\\"-7345.566\\\" y1=\\\"2064.42\\\" y2=\\\"2064.42\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#282662\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662e8d\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9f2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#cd2032\\\"/></linearGradient><linearGradient id=\\\"deviconMaven3\\\" x1=\\\"-7491.296\\\" x2=\\\"-7270.643\\\" y1=\\\"2088.633\\\" y2=\\\"2088.633\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMaven4\\\" x1=\\\"-7475.203\\\" x2=\\\"-7359.244\\\" y1=\\\"2085.61\\\" y2=\\\"2085.61\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#282662\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662e8d\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9f2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#cd2032\\\"/></linearGradient><linearGradient id=\\\"deviconMaven5\\\" x1=\\\"-7491.296\\\" x2=\\\"-7270.643\\\" y1=\\\"2065.799\\\" y2=\\\"2065.799\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMaven6\\\" x1=\\\"-7504.984\\\" x2=\\\"-7284.331\\\" y1=\\\"2066.905\\\" y2=\\\"2066.905\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMaven7\\\" x1=\\\"-7491.296\\\" x2=\\\"-7270.643\\\" y1=\\\"2058.959\\\" y2=\\\"2058.959\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMaven8\\\" x1=\\\"-7491.296\\\" x2=\\\"-7270.643\\\" y1=\\\"2059.762\\\" y2=\\\"2059.762\\\" gradientTransform=\\\"matrix(-.092 -.464 -.464 .092 318.72 -3557.936)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMaven9\\\" x1=\\\"-8307.632\\\" x2=\\\"-8276.704\\\" y1=\\\"2040.008\\\" y2=\\\"2003.844\\\" gradientTransform=\\\"matrix(.296 -.448 -.448 -.296 3456.332 -3102.04)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f69923\\\"/><stop offset=\\\".312\\\" stop-color=\\\"#f79a23\\\"/><stop offset=\\\".838\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavena\\\" x1=\\\"-8536.521\\\" x2=\\\"-8315.868\\\" y1=\\\"2044.096\\\" y2=\\\"2044.096\\\" gradientTransform=\\\"matrix(.296 -.448 -.448 -.296 3456.332 -3102.04)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenb\\\" x1=\\\"-8509.885\\\" x2=\\\"-8378.397\\\" y1=\\\"2021.921\\\" y2=\\\"2021.921\\\" gradientTransform=\\\"matrix(.296 -.448 -.448 -.296 3456.332 -3102.04)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#282662\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662e8d\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9f2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#cd2032\\\"/></linearGradient><linearGradient id=\\\"deviconMavenc\\\" x1=\\\"-8524.128\\\" x2=\\\"-8303.475\\\" y1=\\\"2046.134\\\" y2=\\\"2046.134\\\" gradientTransform=\\\"matrix(.296 -.448 -.448 -.296 3456.332 -3102.04)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavend\\\" x1=\\\"-8508.035\\\" x2=\\\"-8392.076\\\" y1=\\\"2043.111\\\" y2=\\\"2043.111\\\" gradientTransform=\\\"matrix(.296 -.448 -.448 -.296 3456.332 -3102.04)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#282662\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662e8d\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9f2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#cd2032\\\"/></linearGradient><linearGradient id=\\\"deviconMavene\\\" x1=\\\"-8524.128\\\" x2=\\\"-8303.475\\\" y1=\\\"2023.3\\\" y2=\\\"2023.3\\\" gradientTransform=\\\"matrix(.296 -.448 -.448 -.296 3456.332 -3102.04)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenf\\\" x1=\\\"-8537.816\\\" x2=\\\"-8317.163\\\" y1=\\\"2024.407\\\" y2=\\\"2024.407\\\" gradientTransform=\\\"matrix(.296 -.448 -.448 -.296 3456.332 -3102.04)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMaveng\\\" x1=\\\"-8524.128\\\" x2=\\\"-8303.475\\\" y1=\\\"2016.46\\\" y2=\\\"2016.46\\\" gradientTransform=\\\"matrix(.296 -.448 -.448 -.296 3456.332 -3102.04)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><path id=\\\"deviconMavenh\\\" d=\\\"M0 0h128v128H0z\\\"/><path id=\\\"deviconMaveni\\\" fill=\\\"#be202e\\\" d=\\\"M43.695 53.98c-.265.293-.543.567-.824.844c.145-.133.293-.289.43-.433c.14-.13.27-.266.394-.41Zm0 0\\\"/><path id=\\\"deviconMavenj\\\" fill=\\\"#be202e\\\" d=\\\"M41.602 49.426c.046-.04.082-.086.125-.121c.18-.18.363-.36.511-.543c-.199.218-.425.43-.64.664Zm0 0\\\"/><path id=\\\"deviconMavenk\\\" fill=\\\"#be202e\\\" d=\\\"M43.309 54.398c-.133.149-.282.278-.43.434a5.68 5.68 0 0 1 .43-.434m0 0\\\"/><path id=\\\"deviconMavenl\\\" fill=\\\"#be202e\\\" d=\\\"M41.602 49.438c.046-.04.082-.086.14-.133c-.047.035-.082.082-.14.133m0 0\\\"/><path id=\\\"deviconMavenm\\\" fill=\\\"#be202e\\\" d=\\\"M79.602 62.586c-.45.023-.895.023-1.336.023h.687c.215.004.43-.004.649-.023m0 0\\\"/><path id=\\\"deviconMavenn\\\" fill=\\\"#be202e\\\" d=\\\"M81.535 57.258h.2c.288 0 .578 0 .85-.035c-.339 0-.69 0-1.046.023Zm0 0\\\"/><path id=\\\"deviconMaveno\\\" fill=\\\"#be202e\\\" d=\\\"M78.953 62.621h-.687a6.56 6.56 0 0 1 .687 0m0 0\\\"/><clipPath id=\\\"deviconMavenp\\\"><use href=\\\"#deviconMavenh\\\"/></clipPath><clipPath id=\\\"deviconMavenq\\\"><use href=\\\"#deviconMavenh\\\"/></clipPath><clipPath id=\\\"deviconMavenr\\\"><use href=\\\"#deviconMavenh\\\"/></clipPath><clipPath id=\\\"deviconMavens\\\"><use href=\\\"#deviconMavenh\\\"/></clipPath><clipPath id=\\\"deviconMavent\\\"><use href=\\\"#deviconMavenh\\\"/></clipPath><clipPath id=\\\"deviconMavenu\\\"><use href=\\\"#deviconMavenh\\\"/></clipPath><clipPath id=\\\"deviconMavenv\\\"><use href=\\\"#deviconMavenh\\\"/></clipPath><mask id=\\\"deviconMavenw\\\"><g filter=\\\"url(#deviconMaven1a)\\\"><use href=\\\"#deviconMavenh\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMavenx\\\"><g filter=\\\"url(#deviconMaven1a)\\\"><use href=\\\"#deviconMavenh\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMaveny\\\"><g filter=\\\"url(#deviconMaven1a)\\\"><use href=\\\"#deviconMavenh\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMavenz\\\"><g filter=\\\"url(#deviconMaven1a)\\\"><use href=\\\"#deviconMavenh\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMaven10\\\"><g filter=\\\"url(#deviconMaven1a)\\\"><use href=\\\"#deviconMavenh\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMaven11\\\"><g filter=\\\"url(#deviconMaven1a)\\\"><use href=\\\"#deviconMavenh\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMaven12\\\"><g filter=\\\"url(#deviconMaven1a)\\\"><use href=\\\"#deviconMavenh\\\" fill-opacity=\\\".349\\\"/></g></mask><g id=\\\"deviconMaven13\\\" clip-path=\\\"url(#deviconMavenp)\\\"><use href=\\\"#deviconMaveni\\\"/></g><g id=\\\"deviconMaven14\\\" clip-path=\\\"url(#deviconMavenq)\\\"><use href=\\\"#deviconMavenj\\\"/></g><g id=\\\"deviconMaven15\\\" clip-path=\\\"url(#deviconMavenr)\\\"><use href=\\\"#deviconMavenk\\\"/></g><g id=\\\"deviconMaven16\\\" clip-path=\\\"url(#deviconMavens)\\\"><use href=\\\"#deviconMavenl\\\"/></g><g id=\\\"deviconMaven17\\\" clip-path=\\\"url(#deviconMavent)\\\"><use href=\\\"#deviconMavenm\\\"/></g><g id=\\\"deviconMaven18\\\" clip-path=\\\"url(#deviconMavenu)\\\"><use href=\\\"#deviconMavenn\\\"/></g><g id=\\\"deviconMaven19\\\" clip-path=\\\"url(#deviconMavenv)\\\"><use href=\\\"#deviconMaveno\\\"/></g><filter id=\\\"deviconMaven1a\\\" width=\\\"100%\\\" height=\\\"100%\\\" x=\\\"0%\\\" y=\\\"0%\\\" filterUnits=\\\"objectBoundingBox\\\"><feColorMatrix in=\\\"SourceGraphic\\\" values=\\\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\\\"/></filter></defs><path fill=\\\"url(#deviconMaven0)\\\" d=\\\"M23.902 10.133a38.039 38.039 0 0 0-1.597 10.62l5.707 2.763a72.4 72.4 0 0 1 .398-10.164c.024-.23.047-.368.047-.368c0 .125-.035.243-.047.368a64.129 64.129 0 0 0-.012 10.027a110.54 110.54 0 0 0 8.457-8a12.174 12.174 0 0 0-6.37-6.805s-5.055-2.039-6.583 1.559m0 0\\\"/><use href=\\\"#deviconMaveni\\\"/><use href=\\\"#deviconMaven13\\\" mask=\\\"url(#deviconMavenw)\\\"/><use href=\\\"#deviconMavenj\\\"/><use href=\\\"#deviconMaven14\\\" mask=\\\"url(#deviconMavenx)\\\"/><path fill=\\\"url(#deviconMaven1)\\\" d=\\\"M29.52 40.367a231.874 231.874 0 0 1-.72-5.597a112.17 112.17 0 0 1-.523-5.633c0-.114-.02-.227 0-.325a89.502 89.502 0 0 1-.277-5.3l-5.7-2.746c0 .343-.038.699-.054 1.074c-.055 1.363-.098 2.8-.11 4.34c0 1.718 0 3.511.032 5.386c.039 1.73.113 3.532.203 5.364c.094 1.566.195 3.148.324 4.765v.184l7.625 3.86c-.254-1.801-.53-3.594-.8-5.372m0 0\\\"/><path fill=\\\"url(#deviconMaven2)\\\" d=\\\"M40.8 85.45c.4 1.421.848 2.89 1.313 4.378v.059c.063.218.114.422.196.629c.304 1.004.593 1.894 1.226 3.937A7.694 7.694 0 0 1 47.91 95.5a6.244 6.244 0 0 0-4.164-2.266a13.38 13.38 0 0 0 7.309-11.906a15.897 15.897 0 0 0-.188-1.305a5.387 5.387 0 0 1-3.062 4.61a15.057 15.057 0 0 0 2.437-9.492a29.88 29.88 0 0 0-.297-2.477a12.23 12.23 0 0 1-7.09 9.848l-2.312 2.129c.086.265.156.53.258.808Zm0 0\\\"/><path fill=\\\"url(#deviconMaven3)\\\" d=\\\"M37.813 78.941c-.485-1.808-.97-3.644-1.461-5.496A361.37 361.37 0 0 1 35 68.06c-.445-1.817-.871-3.645-1.297-5.47c-.422-1.827-.84-3.737-1.23-5.6c-.395-1.864-.762-3.723-1.13-5.575c-.132-.672-.25-1.324-.37-2c-.211-1.14-.403-2.293-.61-3.45a.618.618 0 0 0-.039-.187l-7.582-3.87c.02.12.028.241.031.366c.153 1.715.297 3.457.504 5.2c.203 1.738.422 3.558.688 5.363c.223 1.52.465 3.027.715 4.55c.05.301.113.618.164.915a109.705 109.705 0 0 0 2.555 10.828c.328 1.101.652 2.168.984 3.176c.289.847.601 1.699.902 2.539a73.593 73.593 0 0 0 2.399 5.754l7.66 3.879c-.399-1.41-.801-2.84-1.2-4.293c-.113-.418-.214-.825-.331-1.243Zm0 0\\\"/><path fill=\\\"url(#deviconMaven4)\\\" d=\\\"M31.79 80.832a59.387 59.387 0 0 0 3.523 6.508c.042.062.085.152.132.215a15.505 15.505 0 0 0-5.84-.45a21.445 21.445 0 0 1 9.41 5.485a9.865 9.865 0 0 1-4.449 2.23a9.838 9.838 0 0 0 4.883-.433a12.014 12.014 0 0 0-2.969 5.789a12.343 12.343 0 0 1 4.82-5.106c2.302 7.625 5.067 15.89 8.138 24.563c.476-.617.609-1.43.359-2.164c-.567-1.559-4.219-11.871-8.383-25.871c-.117-.403-.223-.801-.355-1.203c-.036-.114-.063-.215-.098-.336a749.886 749.886 0 0 1-1.305-4.528c-.097-.36-.199-.695-.297-1.058l-7.66-3.88c.024.083.051.16.09.239Zm0 0\\\"/><path fill=\\\"url(#deviconMaven5)\\\" d=\\\"M31.223 45.902c.047.258.093.485.136.746c.149.758.282 1.528.438 2.301c.16.844.336 1.703.504 2.586c.082.445.168.89.261 1.344c.278 1.36.579 2.754.887 4.187c.399 1.766.797 3.579 1.242 5.465c.403 1.785.871 3.645 1.344 5.535c.461 1.805.926 3.653 1.438 5.567c.449 1.691.93 3.43 1.418 5.199c0 .082.058.176.074.262a632.38 632.38 0 0 0 1.543 5.41a.305.305 0 0 0 .035.117l2.312-2.129c-.058 0-.101.051-.18.082a22.18 22.18 0 0 0 5.634-12.453a29.749 29.749 0 0 0-.075-6.95a47.27 47.27 0 0 0-1.109-5.944a78.476 78.476 0 0 0-1.7-5.825a11.615 11.615 0 0 1-1.765 2.551l-.398.438c-.133.148-.282.277-.43.433a13.5 13.5 0 0 0 1.664-10.027a12.698 12.698 0 0 1-2.289 3.965c-.152.183-.332.363-.512.543c-.047.035-.082.082-.144.133a13.94 13.94 0 0 0 1.484-3.258c.07-.223.13-.45.172-.68c.082-.348.137-.7.188-1.05c.02-.235.058-.45.078-.684a9.725 9.725 0 0 0 0-1.653c0-.183 0-.347-.043-.52c-.047-.257-.078-.495-.125-.73a41.03 41.03 0 0 0-.598-2.8c-.102-.399-.2-.766-.305-1.098c-.047-.133-.07-.262-.117-.403c-.125-.363-.226-.699-.336-.976a10.217 10.217 0 0 0-.422-.969a2.14 2.14 0 0 1-.168.457a15.014 15.014 0 0 1-2.597 3.739l2.129-1.95l-2.145 1.938a.08.08 0 0 0-.035.05a4.49 4.49 0 0 0-.313.348c0-.027.04-.05.043-.074l-7.28 6.66c.058.05.066.09.062.117m0 0\\\"/><path fill=\\\"url(#deviconMaven6)\\\" d=\\\"M28.398 23.379c.09 1.601.23 3.394.403 5.379c.004.101.015.207.035.308c.164 1.735.375 3.602.648 5.637c.23 1.758.489 3.602.801 5.602c.258 1.73.578 3.543.906 5.468l7.282-6.668a11.974 11.974 0 0 0 1.828-6.59c0-.57-.043-1.171-.09-1.788A56.41 56.41 0 0 0 39.578 25a49.186 49.186 0 0 0-1.082-5.148a28.214 28.214 0 0 0-.836-2.614a32.462 32.462 0 0 0-.8-1.812a115.46 115.46 0 0 1-8.462 7.953m0 0\\\"/><use href=\\\"#deviconMavenk\\\"/><use href=\\\"#deviconMaven15\\\" mask=\\\"url(#deviconMaveny)\\\"/><path fill=\\\"url(#deviconMaven7)\\\" d=\\\"M43.309 54.398c-.133.149-.282.278-.43.434a5.68 5.68 0 0 1 .43-.434m0 0\\\"/><use href=\\\"#deviconMavenl\\\"/><use href=\\\"#deviconMaven16\\\" mask=\\\"url(#deviconMavenz)\\\"/><path fill=\\\"url(#deviconMaven8)\\\" d=\\\"M41.602 49.438c.046-.04.082-.086.14-.133c-.047.035-.082.082-.14.133m0 0\\\"/><path fill=\\\"url(#deviconMaven9)\\\" d=\\\"M98.508 11.563a43.16 43.16 0 0 0-9.707 7.289l2.398 6.761a80.326 80.326 0 0 1 8.403-7.86c.203-.167.328-.265.328-.265c-.106.098-.227.168-.328.266a71.75 71.75 0 0 0-8 8.05c4.375.325 8.765.423 13.152.29a13.78 13.78 0 0 0 .281-10.559s-2.445-5.656-6.527-3.973Zm0 0\\\"/><use href=\\\"#deviconMavenm\\\"/><use href=\\\"#deviconMaven17\\\" mask=\\\"url(#deviconMaven10)\\\"/><use href=\\\"#deviconMavenn\\\"/><use href=\\\"#deviconMaven18\\\" mask=\\\"url(#deviconMaven11)\\\"/><path fill=\\\"url(#deviconMavena)\\\" d=\\\"M79.004 40.363a318.718 318.718 0 0 1 3.871-5.086a138.623 138.623 0 0 1 4.055-4.949c.078-.101.164-.195.238-.277a135.156 135.156 0 0 1 4-4.465l-2.398-6.742c-.286.27-.59.535-.899.82a136.81 136.81 0 0 0-3.535 3.402a222.161 222.161 0 0 0-4.258 4.368a220.475 220.475 0 0 0-4.09 4.472a260.517 260.517 0 0 0-3.527 4.098l-.137.156l3.067 9.164c1.222-1.652 2.418-3.324 3.613-4.96Zm0 0\\\"/><path fill=\\\"url(#deviconMavenb)\\\" d=\\\"M52.254 85.602c-.8 1.476-1.602 3-2.422 4.566c0 .02-.027.039-.031.059c-.121.23-.242.433-.34.66c-.555 1.05-1.023 2-2.137 4.144a8.72 8.72 0 0 1 2.692 4.32a7.08 7.08 0 0 0-1.551-5.128c6.23 1.203 11.89.402 15.344-3.778c.3-.379.597-.777.882-1.203a6.088 6.088 0 0 1-6.129 1.274a17.043 17.043 0 0 0 9.504-5.715a35.594 35.594 0 0 0 1.727-2.235a13.818 13.818 0 0 1-13.531 2.297l-3.555-.125c-.152.305-.309.575-.453.864m0 0\\\"/><path fill=\\\"url(#deviconMavenc)\\\" d=\\\"M55.031 78c1.047-1.844 2.117-3.703 3.2-5.602a296.203 296.203 0 0 1 3.203-5.406c1.097-1.808 2.195-3.625 3.3-5.437a282.35 282.35 0 0 1 3.47-5.5c1.175-1.825 2.347-3.598 3.515-5.383a86.9 86.9 0 0 1 1.3-1.914c.739-1.09 1.497-2.18 2.254-3.262c.032-.059.082-.121.114-.184l-3.028-9.136a2.994 2.994 0 0 1-.265.316c-1.242 1.504-2.504 3.024-3.739 4.598c-1.23 1.57-2.488 3.2-3.707 4.867a265.274 265.274 0 0 0-3.039 4.23c-.199.282-.402.586-.593.868c-1.2 1.797-2.364 3.558-3.387 5.25a113.286 113.286 0 0 0-3.156 5.5a134.34 134.34 0 0 0-1.735 3.34c-.441.91-.867 1.843-1.289 2.757a85.328 85.328 0 0 0-2.644 6.535l3.082 9.2c.8-1.461 1.625-2.914 2.445-4.403c.219-.394.469-.8.7-1.234Zm0 0\\\"/><path fill=\\\"url(#deviconMavend)\\\" d=\\\"M48.68 74.742a67.607 67.607 0 0 0-2.332 8.043c0 .086-.051.192-.063.278a17.542 17.542 0 0 0-4.344-5.004a24.348 24.348 0 0 1 3.22 11.894a11.167 11.167 0 0 1-5.356-1.742a11.088 11.088 0 0 0 4.27 3.531a13.604 13.604 0 0 0-6.985 2.301a13.928 13.928 0 0 1 7.933-.273c-4.222 7.957-8.543 16.808-12.964 26.23a2.598 2.598 0 0 0 2-1.457c.8-1.703 6.043-12.902 13.812-27.488c.219-.399.453-.82.672-1.254l.184-.348c.824-1.52 1.671-3.082 2.55-4.68c.207-.37.399-.722.602-1.09v-.019l-3.082-9.2c-.047.09-.086.184-.117.278m0 0\\\"/><path fill=\\\"url(#deviconMavene)\\\" d=\\\"M75.977 46.176c-.168.238-.313.465-.48.703c-.485.73-.99 1.453-1.477 2.2a208.44 208.44 0 0 1-1.653 2.483c-.281.426-.566.848-.855 1.293c-.86 1.317-1.723 2.676-2.617 4.075a347.967 347.967 0 0 0-3.34 5.383a502.867 502.867 0 0 0-3.317 5.523c-1.062 1.816-2.152 3.676-3.261 5.602c-.985 1.718-1.977 3.5-3 5.324c-.055.078-.094.183-.149.265a529.846 529.846 0 0 0-3.058 5.602a.298.298 0 0 0-.067.125l3.555.121c-.063-.031-.13-.04-.215-.074a25.118 25.118 0 0 0 14.43-5.559a33.84 33.84 0 0 0 5.472-5.64a55.376 55.376 0 0 0 3.825-5.668a86.801 86.801 0 0 0 3.257-6.043c-1.113.37-2.27.59-3.441.648l-.676.035h-.687a15.28 15.28 0 0 0 9.304-6.75a14.342 14.342 0 0 1-4.992 1.375c-.27.028-.558.028-.847.031h-.22a15.9 15.9 0 0 0 3.778-1.437c.234-.121.465-.254.684-.402c.343-.215.664-.453.984-.696c.207-.168.402-.32.606-.488c.472-.41.906-.855 1.304-1.34c.137-.156.266-.293.375-.457c.168-.238.332-.457.477-.683a40.85 40.85 0 0 0 1.758-2.735c.234-.398.445-.777.629-1.129c.066-.144.148-.265.218-.398c.192-.403.375-.746.508-1.059c.16-.36.305-.73.426-1.11a2.336 2.336 0 0 1-.5.235a16.92 16.92 0 0 1-5.059.946l3.266.125l-3.266-.125c-.023-.012-.047-.012-.066 0a5.675 5.675 0 0 0-.516 0c.028 0 .07 0 .094-.032l-11.16-.402c.02.074-.008.113-.031.133m0 0\\\"/><path fill=\\\"url(#deviconMavenf)\\\" d=\\\"M91.602 25.809a161.424 161.424 0 0 0-3.946 4.656c-.082.086-.156.18-.219.277a178.511 178.511 0 0 0-3.957 5.055c-1.199 1.598-2.48 3.297-3.816 5.16c-1.168 1.598-2.348 3.316-3.602 5.121l11.16.402a13.554 13.554 0 0 0 6.712-3.847a45.42 45.42 0 0 0 1.351-1.508A66.175 66.175 0 0 0 99.313 36a56.266 56.266 0 0 0 3.199-5.004a29.64 29.64 0 0 0 1.402-2.766c.309-.73.566-1.421.8-2.097c-4.374.113-8.75.004-13.112-.324m0 0\\\"/><use href=\\\"#deviconMaveno\\\"/><use href=\\\"#deviconMaven19\\\" mask=\\\"url(#deviconMaven12)\\\"/><path fill=\\\"url(#deviconMaveng)\\\" d=\\\"M78.953 62.621h-.687a6.56 6.56 0 0 1 .687 0m0 0\\\"/>\"\n\t\t},\n\t\t\"maven-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconMavenWordmark0\\\" x1=\\\"-7708.797\\\" x2=\\\"-7633.153\\\" y1=\\\"-803.36\\\" y2=\\\"-714.907\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f69923\\\"/><stop offset=\\\".312\\\" stop-color=\\\"#f79a23\\\"/><stop offset=\\\".838\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark1\\\" x1=\\\"-8268.639\\\" x2=\\\"-7728.958\\\" y1=\\\"-813.123\\\" y2=\\\"-813.123\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark2\\\" x1=\\\"-8203.492\\\" x2=\\\"-7881.895\\\" y1=\\\"-758.994\\\" y2=\\\"-758.994\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#282662\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662e8d\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9f2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#cd2032\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark3\\\" x1=\\\"-8238.328\\\" x2=\\\"-7698.647\\\" y1=\\\"-818.152\\\" y2=\\\"-818.152\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark4\\\" x1=\\\"-8198.968\\\" x2=\\\"-7915.35\\\" y1=\\\"-810.851\\\" y2=\\\"-810.851\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#282662\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662e8d\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9f2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#cd2032\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark5\\\" x1=\\\"-8238.328\\\" x2=\\\"-7698.647\\\" y1=\\\"-762.297\\\" y2=\\\"-762.297\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark6\\\" x1=\\\"-8271.806\\\" x2=\\\"-7732.125\\\" y1=\\\"-765.071\\\" y2=\\\"-765.071\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark7\\\" x1=\\\"-8238.328\\\" x2=\\\"-7698.647\\\" y1=\\\"-745.685\\\" y2=\\\"-745.685\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark8\\\" x1=\\\"-8238.328\\\" x2=\\\"-7698.647\\\" y1=\\\"-747.586\\\" y2=\\\"-747.586\\\" gradientTransform=\\\"matrix(-.00842 -.04202 .04225 -.00838 28.582 -245.087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmark9\\\" x1=\\\"-7708.797\\\" x2=\\\"-7633.153\\\" y1=\\\"-803.36\\\" y2=\\\"-714.907\\\" gradientTransform=\\\"matrix(.02678 -.04048 .0407 .02664 313.586 -205.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#f69923\\\"/><stop offset=\\\".312\\\" stop-color=\\\"#f79a23\\\"/><stop offset=\\\".838\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmarka\\\" x1=\\\"-8268.639\\\" x2=\\\"-7728.958\\\" y1=\\\"-813.123\\\" y2=\\\"-813.123\\\" gradientTransform=\\\"matrix(.02678 -.04048 .0407 .02664 313.586 -205.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmarkb\\\" x1=\\\"-8203.492\\\" x2=\\\"-7881.895\\\" y1=\\\"-758.994\\\" y2=\\\"-758.994\\\" gradientTransform=\\\"matrix(.02678 -.04048 .0407 .02664 313.586 -205.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#282662\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662e8d\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9f2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#cd2032\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmarkc\\\" x1=\\\"-8238.328\\\" x2=\\\"-7698.647\\\" y1=\\\"-818.152\\\" y2=\\\"-818.152\\\" gradientTransform=\\\"matrix(.02678 -.04048 .0407 .02664 313.586 -205.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmarkd\\\" x1=\\\"-8198.968\\\" x2=\\\"-7915.35\\\" y1=\\\"-810.851\\\" y2=\\\"-810.851\\\" gradientTransform=\\\"matrix(.02678 -.04048 .0407 .02664 313.586 -205.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#282662\\\"/><stop offset=\\\".095\\\" stop-color=\\\"#662e8d\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#9f2064\\\"/><stop offset=\\\".949\\\" stop-color=\\\"#cd2032\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmarke\\\" x1=\\\"-8238.328\\\" x2=\\\"-7698.647\\\" y1=\\\"-762.297\\\" y2=\\\"-762.297\\\" gradientTransform=\\\"matrix(.02678 -.04048 .0407 .02664 313.586 -205.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmarkf\\\" x1=\\\"-8271.806\\\" x2=\\\"-7732.125\\\" y1=\\\"-765.071\\\" y2=\\\"-765.071\\\" gradientTransform=\\\"matrix(.02678 -.04048 .0407 .02664 313.586 -205.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><linearGradient id=\\\"deviconMavenWordmarkg\\\" x1=\\\"-8238.328\\\" x2=\\\"-7698.647\\\" y1=\\\"-745.685\\\" y2=\\\"-745.685\\\" gradientTransform=\\\"matrix(.02678 -.04048 .0407 .02664 313.586 -205.069)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".323\\\" stop-color=\\\"#9e2064\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#c92037\\\"/><stop offset=\\\".751\\\" stop-color=\\\"#cd2335\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e97826\\\"/></linearGradient><clipPath id=\\\"deviconMavenWordmarkh\\\"><use href=\\\"#deviconMavenWordmark13\\\"/></clipPath><clipPath id=\\\"deviconMavenWordmarki\\\"><use href=\\\"#deviconMavenWordmark13\\\"/></clipPath><clipPath id=\\\"deviconMavenWordmarkj\\\"><use href=\\\"#deviconMavenWordmark13\\\"/></clipPath><clipPath id=\\\"deviconMavenWordmarkk\\\"><use href=\\\"#deviconMavenWordmark13\\\"/></clipPath><clipPath id=\\\"deviconMavenWordmarkl\\\"><use href=\\\"#deviconMavenWordmark13\\\"/></clipPath><clipPath id=\\\"deviconMavenWordmarkm\\\"><use href=\\\"#deviconMavenWordmark13\\\"/></clipPath><clipPath id=\\\"deviconMavenWordmarkn\\\"><use href=\\\"#deviconMavenWordmark13\\\"/></clipPath><mask id=\\\"deviconMavenWordmarko\\\"><g filter=\\\"url(#deviconMavenWordmark12)\\\"><use href=\\\"#deviconMavenWordmark13\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMavenWordmarkp\\\"><g filter=\\\"url(#deviconMavenWordmark12)\\\"><use href=\\\"#deviconMavenWordmark13\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMavenWordmarkq\\\"><g filter=\\\"url(#deviconMavenWordmark12)\\\"><use href=\\\"#deviconMavenWordmark13\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMavenWordmarkr\\\"><g filter=\\\"url(#deviconMavenWordmark12)\\\"><use href=\\\"#deviconMavenWordmark13\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMavenWordmarks\\\"><g filter=\\\"url(#deviconMavenWordmark12)\\\"><use href=\\\"#deviconMavenWordmark13\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMavenWordmarkt\\\"><g filter=\\\"url(#deviconMavenWordmark12)\\\"><use href=\\\"#deviconMavenWordmark13\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconMavenWordmarku\\\"><g filter=\\\"url(#deviconMavenWordmark12)\\\"><use href=\\\"#deviconMavenWordmark13\\\" fill-opacity=\\\".349\\\"/></g></mask><g id=\\\"deviconMavenWordmarkv\\\" clip-path=\\\"url(#deviconMavenWordmarkh)\\\"><path fill=\\\"#be202e\\\" d=\\\"m63.79 93.09l-.18.183c.03-.027.062-.062.093-.093c.031-.032.063-.063.086-.09Zm0 0\\\"/></g><g id=\\\"deviconMavenWordmarkw\\\" clip-path=\\\"url(#deviconMavenWordmarki)\\\"><path fill=\\\"#be202e\\\" d=\\\"M63.328 92.082c-.004.004-.004.004 0 0c.008-.008.016-.02.027-.027c.04-.04.079-.078.114-.118c-.043.047-.094.094-.14.145Zm0 0\\\"/></g><g id=\\\"deviconMavenWordmarkx\\\" clip-path=\\\"url(#deviconMavenWordmarkj)\\\"><path fill=\\\"#be202e\\\" d=\\\"m63.707 93.184l-.098.093c.032-.03.059-.062.098-.093m0 0\\\"/></g><g id=\\\"deviconMavenWordmarky\\\" clip-path=\\\"url(#deviconMavenWordmarkk)\\\"><path fill=\\\"#be202e\\\" d=\\\"M63.324 92.086c.008-.008.016-.02.031-.031c-.011.007-.02.02-.03.03Zm0 0\\\"/></g><g id=\\\"deviconMavenWordmarkz\\\" clip-path=\\\"url(#deviconMavenWordmarkl)\\\"><path fill=\\\"#be202e\\\" d=\\\"M71.766 94.988c-.098.004-.2.004-.297.008c.05 0 .105 0 .152-.004c.05.004.102 0 .145-.004m0 0\\\"/></g><g id=\\\"deviconMavenWordmark10\\\" clip-path=\\\"url(#deviconMavenWordmarkm)\\\"><path fill=\\\"#be202e\\\" d=\\\"M72.195 93.813c-.004 0-.004 0 0 0h.043c.067 0 .13 0 .188-.004c-.074.004-.153 0-.23.004Zm0 0\\\"/></g><g id=\\\"deviconMavenWordmark11\\\" clip-path=\\\"url(#deviconMavenWordmarkn)\\\"><path fill=\\\"#be202e\\\" d=\\\"M71.621 94.996c-.05.004-.098 0-.152.004c.05-.004.097-.008.152-.004m0 0\\\"/></g><filter id=\\\"deviconMavenWordmark12\\\" width=\\\"1\\\" height=\\\"1\\\" x=\\\"0\\\" y=\\\"0\\\" filterUnits=\\\"objectBoundingBox\\\"><feColorMatrix in=\\\"SourceGraphic\\\" values=\\\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\\\"/></filter><path id=\\\"deviconMavenWordmark13\\\" d=\\\"M0 0h128v180H0z\\\"/></defs><g transform=\\\"translate(0 -30)\\\"><path fill=\\\"url(#deviconMavenWordmark0)\\\" d=\\\"M59.395 83.402c-.165.387-.293 1.227-.352 2.348l1.27.61a15.3 15.3 0 0 1 .09-2.247c.003-.05.007-.078.007-.078c0 .027-.008.05-.008.078c-.027.227-.082.938-.007 2.215c.527-.426 1.28-1.144 1.878-1.762c-.632-1.28-1.418-1.507-1.418-1.507s-1.12-.45-1.46.343m0 0\\\"/><path fill=\\\"#bd1e2e\\\" d=\\\"m63.79 93.09l-.18.183c.03-.027.062-.062.093-.093c.031-.032.063-.063.086-.09zm0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconMavenWordmarkv\\\" mask=\\\"url(#deviconMavenWordmarko)\\\"/><path fill=\\\"#bd1e2e\\\" d=\\\"M63.328 92.082c-.004.004-.004.004 0 0c.008-.008.016-.02.027-.027c.04-.04.079-.078.114-.117c-.043.046-.094.093-.14.144zm0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconMavenWordmarkw\\\" mask=\\\"url(#deviconMavenWordmarkp)\\\"/><path fill=\\\"url(#deviconMavenWordmark1)\\\" d=\\\"M60.645 90.082a51.359 51.359 0 0 1-.16-1.238c-.051-.422-.09-.836-.118-1.242c-.004-.028-.004-.051-.004-.075c-.027-.398-.05-.789-.058-1.168l-1.266-.609l-.012.238c-.011.301-.023.621-.023.961a40.969 40.969 0 0 0 .05 2.371c.024.348.044.7.075 1.055v.04l1.695.855c-.058-.399-.12-.797-.18-1.188zm0 0\\\"/><path fill=\\\"url(#deviconMavenWordmark2)\\\" d=\\\"M63.145 100.04c.093.312.187.636.289.968c.003 0 .003.008.007.012a.796.796 0 0 0 .043.136c.067.223.133.418.27.871c.277-.058.617.067.973.23a1.383 1.383 0 0 0-.922-.5c1.035-.687 1.718-1.573 1.62-2.628a2.583 2.583 0 0 0-.042-.29c-.016.407-.184.7-.68 1.016l-.004.004l.004-.004c.469-.82.598-1.375.543-2.093a7.97 7.97 0 0 0-.066-.547c-.149 1.07-.73 1.765-1.575 2.176l-.515.468c.02.063.035.118.055.18zm0 0\\\"/><path fill=\\\"url(#deviconMavenWordmark3)\\\" d=\\\"M62.484 98.602c-.109-.399-.214-.805-.324-1.215c-.101-.39-.203-.785-.3-1.188c-.098-.402-.192-.804-.29-1.21c-.093-.41-.187-.825-.273-1.239c-.086-.41-.168-.824-.25-1.23a8.149 8.149 0 0 1-.082-.446c-.047-.254-.094-.508-.137-.761c-.004-.012-.004-.028-.008-.043l-1.683-.852a40.884 40.884 0 0 0 .117 1.23c.047.391.094.786.152 1.184c.051.336.106.668.16 1.008c.012.062.028.133.04.2c.074.417.16.82.25 1.194c.097.426.206.825.316 1.196c.074.246.144.48.219.703c.062.187.132.375.199.562c.16.434.34.856.531 1.27l1.703.855c-.094-.308-.176-.625-.27-.945c-.023-.09-.042-.18-.07-.273m0 0\\\"/><path fill=\\\"url(#deviconMavenWordmark4)\\\" d=\\\"M61.148 99.02c.235.5.493.98.782 1.437c.011.016.02.035.03.047c-.472-.188-1.304-.102-1.3-.098c.863.297 1.617.66 2.094 1.211c-.191.207-.543.363-.988.492c.613.067.957-.043 1.082-.097c-.32.27-.5.757-.66 1.28c.363-.589.722-.98 1.07-1.128a125.95 125.95 0 0 0 1.808 5.426a.505.505 0 0 0 .082-.477a113.83 113.83 0 0 1-1.863-5.715c-.027-.09-.05-.18-.078-.27a1.73 1.73 0 0 1-.023-.073c-.094-.325-.192-.657-.29-1c-.019-.078-.042-.153-.066-.235l-1.703-.86c.008.024.012.04.023.06m0 0\\\"/><path fill=\\\"url(#deviconMavenWordmark5)\\\" d=\\\"M61.02 91.305c.011.054.023.105.03.164c.036.168.063.336.098.508c.036.187.075.375.114.57c.02.101.035.2.058.3c.063.298.13.606.196.923a90.058 90.058 0 0 0 .574 2.43c.101.398.207.808.32 1.23c.098.37.207.757.317 1.152c0 .016.011.035.015.055c.11.39.223.789.34 1.195c.004.012.004.02.008.027l.515-.468c-.015.004-.023.011-.039.015c.61-.57 1.13-1.718 1.25-2.75a6.545 6.545 0 0 0-.015-1.535c-.047-.41-.133-.844-.25-1.312a16.832 16.832 0 0 0-.375-1.29a2.5 2.5 0 0 1-.395.563c-.027.035-.058.066-.086.098l-.097.097c.449-.695.504-1.441.37-2.214a2.793 2.793 0 0 1-.62.996c-.012.007-.02.02-.036.027c.149-.246.262-.48.333-.719c.015-.05.027-.097.039-.148c.015-.078.027-.156.039-.235c.007-.05.015-.097.02-.152a2.27 2.27 0 0 0-.005-.363c-.004-.04-.004-.078-.008-.114a8.196 8.196 0 0 0-.16-.781a5.08 5.08 0 0 0-.07-.246a1.32 1.32 0 0 1-.023-.086c-.028-.082-.051-.156-.075-.215c-.035-.093-.07-.164-.093-.214a.414.414 0 0 1-.04.101c-.105.246-.351.586-.578.824l.473-.43l-.473.43l-.007.012c-.02.02-.047.047-.067.07c0-.004.008-.007.008-.015l-1.617 1.472c.012.012.015.02.012.028m0 0\\\"/><path fill=\\\"url(#deviconMavenWordmark6)\\\" d=\\\"M60.395 86.328c.02.356.05.75.093 1.188c0 .027 0 .046.008.07c.035.383.082.793.14 1.246c.055.387.11.797.18 1.238c.059.383.13.785.204 1.211l1.617-1.472c.336-.61.41-.989.406-1.457c-.004-.125-.012-.258-.02-.395a13.16 13.16 0 0 0-.144-1.27c-.067-.41-.149-.8-.242-1.136a6.404 6.404 0 0 0-.184-.578c-.058-.145-.121-.274-.18-.403c-.597.614-1.351 1.332-1.878 1.758m0 0\\\"/><path fill=\\\"#bd1e2e\\\" d=\\\"m63.707 93.184l-.098.093c.032-.03.059-.062.098-.093m0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconMavenWordmarkx\\\" mask=\\\"url(#deviconMavenWordmarkq)\\\"/><path fill=\\\"url(#deviconMavenWordmark7)\\\" d=\\\"m63.707 93.184l-.098.093c.032-.03.059-.062.098-.093m0 0\\\"/><path fill=\\\"#bd1e2e\\\" d=\\\"M63.324 92.086c.008-.008.016-.02.031-.031c-.011.007-.02.02-.03.03zm0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconMavenWordmarky\\\" mask=\\\"url(#deviconMavenWordmarkr)\\\"/><path fill=\\\"url(#deviconMavenWordmark8)\\\" d=\\\"M63.324 92.086c.008-.008.016-.02.031-.031c-.011.007-.02.02-.03.03zm0 0\\\"/><path d=\\\"M9.957 77.34h5.922c.41 0 .7.086.871.254c.145.12.23.3.254.543c.023.215.058.433.11.648c.046.387.097.785.144 1.192c.074.386.133.785.18 1.195a70.33 70.33 0 0 1 .656 4.621c.191 1.566.422 3.121.691 4.66c.094.484.168.977.215 1.48c.05.508.121 1 .219 1.485c.023.117.05.238.074.36a.447.447 0 0 0 .18.288c.05.024.086.047.109.075c.047.023.11.011.184-.04c.191-.046.347-.19.468-.433a7.99 7.99 0 0 1 .364-.648c.293-.555.57-1.098.836-1.625c.27-.555.558-1.11.87-1.665c.778-1.468 1.551-2.937 2.329-4.406a378.892 378.892 0 0 0 2.36-4.48c.195-.383.386-.758.581-1.117c.219-.387.422-.774.617-1.157c.098-.195.207-.386.329-.578a1.31 1.31 0 0 1 .507-.469a.974.974 0 0 1 .582-.183h6.246c.243 0 .41.05.508.144c.242.145.317.422.219.832c-.074.387-.144.782-.219 1.192l-1.09 5.418l-2.722 13.437l-.617 3.145c-.051.265-.11.531-.184.797a.967.967 0 0 1-.363.539a1.2 1.2 0 0 1-.582.219h-3.45a3.673 3.673 0 0 0-.472-.11c-.121-.023-.219-.11-.29-.254c-.073-.12-.097-.277-.073-.469c.05-.19.097-.398.144-.613l.363-1.844l1.891-9.285c.047-.336.098-.648.145-.937c.074-.313.132-.625.183-.938c.047-.195.094-.386.145-.578c.046-.219.07-.422.07-.617a2.073 2.073 0 0 1 0-.54c.05-.194.012-.312-.11-.362c-.07-.024-.132-.012-.18.035c-.046.05-.085.086-.109.11a1.67 1.67 0 0 0-.328.362c-.07.122-.144.239-.214.36c-.22.363-.438.734-.657 1.12c-.191.384-.41.77-.652 1.157c-.074.145-.145.29-.219.434a1.74 1.74 0 0 1-.219.433c-.191.313-.375.625-.543.938a9.683 9.683 0 0 1-.507.941a.726.726 0 0 0-.11.25a1.144 1.144 0 0 1-.11.219a6.22 6.22 0 0 0-.401.688c-.094.238-.227.48-.399.718c-.144.219-.277.45-.398.688a5.005 5.005 0 0 1-.364.722c-.437.7-.836 1.41-1.199 2.133a91.22 91.22 0 0 1-1.125 2.094a.545.545 0 0 0-.144.219c0 .07-.04.144-.11.215a8.641 8.641 0 0 0-.472.832a6.154 6.154 0 0 1-.438.793a8.365 8.365 0 0 1-.289.472c-.098.14-.207.262-.328.36a1.1 1.1 0 0 1-.399.18c-.12 0-.277.023-.472.073h-.836a6.57 6.57 0 0 0-.617.036h-.692a5.07 5.07 0 0 1-.617-.036c-.191-.023-.324-.074-.398-.144c-.168-.121-.278-.254-.328-.398a3.191 3.191 0 0 0-.145-.579a11.162 11.162 0 0 1-.11-.867a5.179 5.179 0 0 0-.144-.902l-.035-.324a5.164 5.164 0 0 1-.145-.907a5.604 5.604 0 0 0-.148-.937v-.18a.711.711 0 0 0-.035-.219a2.994 2.994 0 0 1-.145-.683a7.5 7.5 0 0 0-.11-.723v-.183a.41.41 0 0 0-.034-.18a6.59 6.59 0 0 1-.11-.723c0-.238-.039-.48-.109-.722c-.098-.48-.184-.989-.254-1.516a16.545 16.545 0 0 0-.219-1.555a43.515 43.515 0 0 1-.254-1.84a8.552 8.552 0 0 0-.328-1.808a3.117 3.117 0 0 0-.218-.832a.506.506 0 0 0-.145-.106c-.023-.05-.07-.05-.144 0a.542.542 0 0 0-.29.36a2.132 2.132 0 0 1-.148.508a1.466 1.466 0 0 0-.18.539l-.074.543a9.73 9.73 0 0 1-.18.796c-.05.262-.109.528-.183.793l-1.922 9.61l-.363 1.77c-.051.19-.098.386-.149.577a.772.772 0 0 1-.215.47c-.12.167-.328.277-.617.323a1.898 1.898 0 0 1-.547.075a4.857 4.857 0 0 0-.582-.036H4.582c-.219-.023-.387-.097-.508-.218c-.12-.121-.172-.301-.148-.54c.05-.265.097-.53.148-.796l.617-3.18l2.723-13.437l1.016-5.059c.027-.145.05-.313.074-.504c.047-.219.098-.422.144-.613a31.3 31.3 0 0 1 .145-.543c.074-.192.133-.336.184-.434c.144-.168.363-.289.652-.36c.074-.027.121-.027.144 0c.051 0 .11-.015.184-.038m43.414 24.312c0 .266-.023.532-.07.797a.68.68 0 0 1-.473.54a1.373 1.373 0 0 1-.547.109h-3.195c-.195-.024-.34-.086-.438-.18a.694.694 0 0 1-.289-.398a.977.977 0 0 0-.254-.47a.436.436 0 0 0-.183-.109c-.047-.046-.133-.058-.254-.035a2.06 2.06 0 0 0-.398.18a2.24 2.24 0 0 1-.364.18c-.144.097-.3.183-.472.253c-.145.07-.301.145-.473.215a7.94 7.94 0 0 1-1.05.364c-.364.07-.727.156-1.09.254c-.196.046-.376.07-.548.07c-.144.023-.3.05-.472.074h-.219a.688.688 0 0 1-.215.035h-.402a1.89 1.89 0 0 1-.727 0h-.324a1.923 1.923 0 0 0-.508-.074a.836.836 0 0 1-.437-.035a31.255 31.255 0 0 1-.653-.145a1.454 1.454 0 0 1-.582-.18c-.656-.265-1.187-.601-1.597-1.011c-.414-.434-.692-1-.836-1.7a3.21 3.21 0 0 1-.11-.538c0-.196-.011-.399-.035-.618a.798.798 0 0 1 0-.359a1 1 0 0 0 .07-.363c0-.07.012-.215.04-.43c.046-.242.093-.41.144-.508c.094-.242.156-.445.18-.613c.12-.266.242-.531.363-.797c.145-.289.305-.539.473-.758c.531-.699 1.101-1.226 1.707-1.59c.605-.359 1.355-.671 2.254-.937a5.02 5.02 0 0 1 1.015-.254c.34-.047.692-.11 1.055-.18c.191-.047.398-.074.617-.074a5.81 5.81 0 0 0 .688-.105a1.2 1.2 0 0 1 .511-.04c.168 0 .364-.023.579-.07a1.93 1.93 0 0 1 .511-.074c.168 0 .348-.023.543-.07a23.163 23.163 0 0 1 1.453-.29a3.04 3.04 0 0 0 1.309-.652a2.65 2.65 0 0 0 .578-.722a.499.499 0 0 0 .04-.18a.34.34 0 0 1 .034-.145a.298.298 0 0 0 .075-.214c.023-.098.046-.168.07-.22v-.538c-.098-.723-.508-1.219-1.235-1.485a3.07 3.07 0 0 0-.761-.144a3.899 3.899 0 0 0-.91-.035c-.313 0-.63.023-.942.074a4.72 4.72 0 0 0-.765.18a1.78 1.78 0 0 0-.473.215a3.284 3.284 0 0 0-.906.652c-.168.168-.29.324-.364.469a8.2 8.2 0 0 0-.437.687c-.121.215-.324.36-.617.434a2.6 2.6 0 0 1-.618.07h-2.031a2.55 2.55 0 0 0-.402.035a.953.953 0 0 1-.29-.035h-.327a.41.41 0 0 0-.18-.035a.244.244 0 0 1-.184-.074c-.168-.047-.265-.204-.289-.47a.98.98 0 0 1 .07-.359c.051-.12.098-.23.15-.324c.12-.265.241-.508.362-.722c.145-.243.29-.461.434-.653c.098-.12.195-.242.293-.36a23.5 23.5 0 0 1 .289-.362c.242-.266.531-.516.871-.758a.729.729 0 0 0 .254-.18c.145-.098.266-.18.363-.254c.121-.07.254-.144.399-.215c.46-.265.933-.472 1.418-.617a36.13 36.13 0 0 1 1.527-.469c.313-.07.629-.12.941-.144a7.05 7.05 0 0 0 .985-.145c.094-.023.238-.023.433 0c.196.024.329.012.399-.035a20.76 20.76 0 0 1 2.797.11c.898.093 1.683.277 2.363.539c.703.265 1.27.629 1.707 1.086c.461.433.762 1 .906 1.695c.075.41.075.879 0 1.41a19.79 19.79 0 0 1-.289 1.625l-1.636 8.055c-.07.46-.157.93-.254 1.41a4.87 4.87 0 0 0-.11 1.266c0 .07-.011.156-.035.253zm-4.21-5.562a1.98 1.98 0 0 0 .105-.399c.027-.168.039-.312.039-.433a2.1 2.1 0 0 1 .035-.399a.272.272 0 0 0-.11-.289c-.097-.093-.265-.144-.507-.144c-.098.027-.184.05-.254.074c-.074 0-.172.012-.293.035a3.32 3.32 0 0 1-.543.11a5.733 5.733 0 0 0-.617.109a1.157 1.157 0 0 1-.328.035a7.81 7.81 0 0 1-.981.145a4.528 4.528 0 0 0-.945.18c-.192.05-.387.097-.578.144c-.172.023-.34.074-.512.144a4.376 4.376 0 0 0-1.488.977c-.434.434-.688 1.035-.762 1.805c-.024.41.047.746.219 1.011c.097.266.3.485.617.653c.312.144.664.25 1.05.324c.391.07.801.098 1.239.07a7.567 7.567 0 0 0 1.305-.25c.68-.195 1.238-.496 1.671-.906a5.65 5.65 0 0 0 1.164-1.586c.07-.172.133-.34.18-.508c.051-.191.121-.387.219-.578zm46.335-2.492c0 .191-.047.41-.144.648c-.098.242-.22.399-.364.469c-.12.098-.3.172-.543.219c-.242.023-.511.046-.8.07h-.836a8.324 8.324 0 0 0-.727-.035h-9.371a1.02 1.02 0 0 0-.398.074c-.22.094-.364.191-.438.289a2.26 2.26 0 0 0-.219.29a.694.694 0 0 0-.105.358c.023.145.023.29 0 .434c0 .121.012.254.035.398c.07.579.207 1.06.398 1.446c.22.36.536.683.946.972c.168.122.351.207.543.254c.218.024.425.075.617.145c.195.05.45.086.765.11c.34.023.641.011.907-.036h.328l.691-.144c.215-.075.434-.145.653-.22c.265-.12.57-.277.906-.468a3.83 3.83 0 0 0 .8-.578c.145-.168.305-.324.473-.469a1.58 1.58 0 0 1 .543-.363c.27-.121.582-.168.946-.145h1.488a.83.83 0 0 1 .437.04h.364c.218.046.375.105.472.18c.07.046.098.155.07.323a.849.849 0 0 1-.105.434a6.765 6.765 0 0 1-.621.902a9 9 0 0 1-.652.797c-.676.793-1.403 1.43-2.18 1.914c-.773.48-1.707.89-2.797 1.227a3.61 3.61 0 0 1-.836.18a7.602 7.602 0 0 0-.87.144a.666.666 0 0 1-.329 0a1.25 1.25 0 0 0-.29.04h-.398a.93.93 0 0 1-.437.034c-.145 0-.277-.011-.398-.035a1.835 1.835 0 0 0-.508 0a1.052 1.052 0 0 1-.473-.039a1.094 1.094 0 0 0-.398-.07a.76.76 0 0 1-.364-.074a8.166 8.166 0 0 1-.8-.18a1.881 1.881 0 0 1-.653-.254a12.2 12.2 0 0 0-.691-.25a3.717 3.717 0 0 1-.582-.324a8.315 8.315 0 0 1-1.742-1.664a6.744 6.744 0 0 1-1.02-2.239a4.749 4.749 0 0 1-.144-.797c0-.289-.036-.578-.11-.867v-.25c.027-.097.04-.195.04-.289a5.405 5.405 0 0 1 0-.941c.046-.336.093-.672.144-1.012c.023-.121.035-.25.035-.394a1.98 1.98 0 0 1 .11-.399l.109-.433l.289-.868c.172-.41.328-.808.472-1.191c.145-.387.329-.746.547-1.086c1.547-2.504 3.68-4.273 6.39-5.309a4.506 4.506 0 0 1 1.09-.289c.364-.074.75-.156 1.165-.254a4.51 4.51 0 0 1 .543-.035c.172 0 .351-.011.547-.035c1.234-.027 2.261.117 3.086.434c.824.289 1.539.672 2.144 1.156c.192.145.375.312.543.504c.195.168.352.348.473.543c.05.12.133.215.254.289c.144.266.265.539.363.828c.121.266.254.543.398.832c.075.219.121.445.149.688c.047.214.094.457.144.722c.047.313.07.637.07.973c.028.34.051.676.075 1.012c0 .195-.035.41-.11.652a1.838 1.838 0 0 0-.035.613zm-5.047-2.133c.219-.238.29-.528.219-.867l-.11-.793c-.218-.653-.57-1.145-1.054-1.48c-.484-.364-1.223-.555-2.215-.579a.316.316 0 0 1-.254.035a.464.464 0 0 0-.254 0a3.77 3.77 0 0 1-.437.11c-.145 0-.278.023-.399.07c-1.14.336-2.058 1-2.761 1.988a3.539 3.539 0 0 0-.254.395a1.736 1.736 0 0 0-.22.472c-.046.145-.07.29-.07.434a.44.44 0 0 0 .18.36c.168.12.426.18.762.18h6.066c.387-.024.657-.134.801-.325m20.711-7.477c1.453-.047 2.617.157 3.488.614c.895.457 1.524 1.132 1.887 2.023c.121.266.195.555.219.867c.047.29.086.59.11.903c.023.19.023.375 0 .543a1.817 1.817 0 0 0 0 .503c-.048.145-.063.243-.036.29c-.027.34-.074.687-.148 1.046c-.07.364-.145.711-.215 1.051l-.617 3.215l-1.2 5.852c-.097.457-.195.902-.293 1.335c-.093.41-.324.676-.687.793a1.57 1.57 0 0 1-.512.075h-2.538c-.294 0-.548-.012-.766-.036c-.22-.05-.375-.156-.473-.328a.979.979 0 0 1-.07-.539c.046-.242.097-.496.144-.758l.508-2.53l1.09-5.384c.172-.89.293-1.707.363-2.457c.098-.77.012-1.418-.254-1.949c-.242-.48-.664-.82-1.27-1.012a1.116 1.116 0 0 0-.402-.07c-.12 0-.242-.027-.363-.074a1.576 1.576 0 0 0-.473 0c-.168 0-.3.012-.398.035c-.121.027-.219.04-.29.04a.711.711 0 0 0-.218.034c-.582.145-1.066.336-1.453.578c-.895.555-1.527 1.36-1.89 2.418a34.245 34.245 0 0 0-.907 3.578l-.906 4.516l-.438 2.203c-.047.219-.097.434-.144.653a1.63 1.63 0 0 1-.219.539a.973.973 0 0 1-.691.468a5.336 5.336 0 0 1-.98.075H98.3c-.266 0-.531-.012-.797-.036c-.266-.023-.438-.109-.508-.254c-.148-.218-.172-.53-.074-.937c.098-.41.18-.797.254-1.156l.98-4.914l1.598-7.95l.402-1.84c.047-.265.094-.507.145-.722a.965.965 0 0 1 .324-.543a.398.398 0 0 1 .258-.145c.12-.046.238-.085.36-.109h.183c.12-.023.242-.035.363-.035h1.927c.191 0 .375.012.543.035c.195 0 .363.024.508.074c.148.07.23.18.257.325c.047.144.07.312.07.507c0 .094-.011.18-.034.25a.35.35 0 0 0 0 .22c.023.12.046.19.07.214c.05.023.11.062.183.11c.243.023.473-.06.692-.255c.215-.214.433-.382.652-.504c.75-.484 1.55-.867 2.399-1.156c.242-.074.472-.12.687-.144c.242-.024.512-.063.8-.11a.753.753 0 0 1 .329 0c.145 0 .242-.011.29-.035zm8.996-.028c.024.02.035.06.035.122a.409.409 0 0 1-.035.172l-.008.058a.477.477 0 0 1-.066.11a.215.215 0 0 1-.094.058a1.105 1.105 0 0 1-.183.012c-.079-.004-.141-.004-.196-.004h-.109c-.023.008-.047.012-.066.004a.086.086 0 0 0-.055.008a.272.272 0 0 0-.14.137a.22.22 0 0 0-.028.09c-.004.03-.012.066-.016.101l-.347 1.703c-.004.024-.008.047-.008.067a.09.09 0 0 1-.016.054l-.015.059l-.012.043c0 .016-.008.027-.024.039a.17.17 0 0 1-.093.078a.281.281 0 0 1-.086.016h-.328c-.082 0-.137-.02-.168-.059c-.016-.031-.02-.062-.016-.101c.012-.04.02-.082.031-.13l.34-1.706c.008-.024.012-.047.016-.07a.103.103 0 0 0 .008-.067l.015-.102c.004-.078-.02-.125-.074-.144a.39.39 0 0 0-.195-.028c-.082.004-.156.008-.219.008c-.023 0-.047 0-.074.004c-.02 0-.035 0-.05-.004a.062.062 0 0 0-.052-.008a.2.2 0 0 1-.043-.007c-.047-.024-.07-.063-.062-.118a1.58 1.58 0 0 1 .027-.187c.004-.027.008-.055.016-.078a.425.425 0 0 1 .035-.074a.146.146 0 0 1 .059-.051l.07-.035c.015-.004.027-.004.031 0c.008 0 .02 0 .035-.008h1.942c.043 0 .082.004.12.008c.04 0 .071.011.098.03m3.864.013a.172.172 0 0 1 .015.117c-.008.043-.012.09-.023.144l-.473 2.348a.72.72 0 0 1-.035.145a.309.309 0 0 1-.05.101c-.036.04-.087.059-.161.059h-.203c-.031 0-.063 0-.094.008a.19.19 0 0 1-.074-.016c-.043-.016-.07-.035-.078-.067c-.008-.027-.008-.062-.008-.109l.02-.121a.24.24 0 0 1 .007-.05c.004-.024.012-.048.016-.067l.187-.918c.012-.055.02-.113.032-.172a.814.814 0 0 0 .02-.16c-.005-.024-.009-.043-.009-.055c0-.02-.004-.035-.02-.043c-.003-.008-.011-.008-.023-.008a.295.295 0 0 1-.05.028a1.41 1.41 0 0 0-.13.195c-.039.074-.082.14-.125.21c-.085.15-.171.302-.253.454c-.082.149-.168.297-.254.441c-.04.067-.078.145-.125.23a.443.443 0 0 1-.153.18a.263.263 0 0 1-.101.04h-.231a.272.272 0 0 0-.066-.024a.149.149 0 0 1-.05-.035a.103.103 0 0 1-.028-.058c-.008-.024-.012-.047-.016-.07a.926.926 0 0 1-.031-.134c-.004-.046-.012-.093-.02-.144a4.84 4.84 0 0 1-.074-.426a7.187 7.187 0 0 0-.07-.434l-.047-.246a.393.393 0 0 0-.078-.207c-.008 0-.016 0-.023.008h-.012a.13.13 0 0 0-.05.063c-.017.023-.024.05-.032.074c0 .02-.004.039-.012.062l-.023.125c-.012.02-.016.04-.024.059c-.004.016-.004.035-.004.047l-.175.84c-.012.062-.024.14-.043.23a.488.488 0 0 1-.067.188a.37.37 0 0 0-.043.039a.208.208 0 0 1-.035.02c-.027.011-.055.015-.09.023h-.289a.22.22 0 0 1-.144-.043c-.028-.02-.04-.051-.04-.094c.008-.047.012-.094.024-.145l.48-2.386c.008-.043.02-.082.028-.121a.348.348 0 0 1 .05-.102c.024-.035.063-.055.118-.066c.015-.004.023-.004.027 0c.012 0 .023 0 .039-.008h.629c.05 0 .086.012.11.039c.038.027.062.074.066.137a13.028 13.028 0 0 1 .11.586c.023.132.046.27.073.41c.016.07.032.148.043.222a3.805 3.805 0 0 0 .063.32a.09.09 0 0 0 .058.055c.028.012.047.008.067-.011c.023-.02.043-.036.05-.051a.932.932 0 0 0 .118-.168c.031-.063.066-.121.101-.18c.102-.16.196-.32.282-.484c.093-.168.191-.332.293-.492l.117-.207a.34.34 0 0 1 .172-.16c.035-.008.07-.016.101-.016h.524a.288.288 0 0 1 .082 0h.035c.02.012.039.02.058.023c.024.004.04.016.043.028zm0 0\\\"/><path fill=\\\"url(#deviconMavenWordmark9)\\\" d=\\\"M75.965 83.719c-.442.18-1.215.754-2.16 1.61l.535 1.495a17.974 17.974 0 0 1 1.867-1.738l.07-.059c-.02.024-.047.04-.07.059c-.203.164-.812.691-1.773 1.781c.761.07 1.945.086 2.918.063c.515-1.532.062-2.332.062-2.332s-.543-1.25-1.45-.88zm0 0\\\"/><path fill=\\\"#bd1e2e\\\" d=\\\"M71.766 94.988c-.098.004-.2.004-.297.008c.05 0 .105 0 .152-.004a.87.87 0 0 0 .145-.004m0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconMavenWordmarkz\\\" mask=\\\"url(#deviconMavenWordmarks)\\\"/><path fill=\\\"#bd1e2e\\\" d=\\\"M72.195 93.813c-.004 0-.004 0 0 0h.043c.067 0 .13 0 .188-.004c-.074.004-.153 0-.23.004zm0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconMavenWordmark10\\\" mask=\\\"url(#deviconMavenWordmarkt)\\\"/><path fill=\\\"url(#deviconMavenWordmarka)\\\" d=\\\"M71.633 90.082c.289-.387.574-.758.86-1.125a32.004 32.004 0 0 1 1.843-2.14l-.535-1.489c-.063.059-.13.117-.2.184c-.25.23-.511.48-.785.75c-.304.304-.617.625-.945.965c-.297.312-.601.648-.91.988c-.258.297-.52.594-.781.906a.284.284 0 0 0-.032.035l.684 2.024c.27-.367.535-.735.8-1.098zm0 0\\\"/><path fill=\\\"url(#deviconMavenWordmarkb)\\\" d=\\\"M65.691 100.074c-.175.324-.359.66-.539 1.008c0 .004-.004.008-.004.012c-.027.05-.054.097-.078.148c-.12.23-.226.442-.472.914c.265.172.441.54.597.953a1.547 1.547 0 0 0-.347-1.132c1.386.265 2.644.093 3.41-.832c.066-.086.133-.172.195-.266c-.336.312-.707.414-1.36.281l-.003-.004l.004.004c1.031-.293 1.582-.637 2.11-1.262a7 7 0 0 0 .382-.492c-.977.746-1.996.848-3.004.508l-.789-.027a8.111 8.111 0 0 0-.102.187m0 0\\\"/><path fill=\\\"url(#deviconMavenWordmarkc)\\\" d=\\\"M66.309 98.395c.234-.407.468-.817.71-1.235a102.953 102.953 0 0 1 1.442-2.395c.25-.41.508-.812.77-1.214a62.244 62.244 0 0 1 1.57-2.332c.008-.016.02-.028.023-.04l-.672-2.019a.466.466 0 0 1-.058.07c-.274.332-.555.668-.828 1.016c-.282.352-.555.707-.825 1.074a79.26 79.26 0 0 0-.675.934c-.043.062-.086.129-.133.191a28.586 28.586 0 0 0-1.453 2.375c-.133.254-.266.5-.383.739c-.098.199-.192.406-.285.609a18.93 18.93 0 0 0-.59 1.441l.687 2.036c.172-.325.36-.645.54-.973c.054-.094.105-.184.16-.277m0 0\\\"/><path fill=\\\"url(#deviconMavenWordmarkd)\\\" d=\\\"M64.898 97.676c-.21.586-.386 1.176-.52 1.773c0 .02-.01.043-.01.063c-.231-.524-.97-1.11-.966-1.106c.453.918.774 1.809.715 2.625c-.316.02-.726-.133-1.187-.383c.441.54.8.727.945.782c-.469-.04-1.004.21-1.55.507c.76-.187 1.362-.218 1.76-.062a138.794 138.794 0 0 0-2.878 5.797a.57.57 0 0 0 .445-.324a136.99 136.99 0 0 1 3.07-6.07l.15-.278c.01-.027.026-.05.038-.078c.184-.332.371-.68.567-1.031l.136-.243v-.003l-.687-2.036a.476.476 0 0 0-.028.067m0 0\\\"/><path fill=\\\"url(#deviconMavenWordmarke)\\\" d=\\\"M70.96 91.363c-.038.055-.07.106-.105.157c-.109.16-.222.32-.328.488c-.12.176-.242.36-.367.547l-.191.285c-.188.293-.383.59-.578.902c-.246.38-.493.774-.743 1.188c-.242.39-.488.8-.738 1.218c-.234.403-.48.813-.722 1.243c-.22.379-.442.773-.668 1.175c-.012.02-.02.043-.032.059c-.222.398-.453.812-.68 1.234c-.007.008-.015.02-.015.028l.789.027c-.012-.008-.027-.008-.047-.016c.95.02 2.285-.492 3.207-1.226a7.55 7.55 0 0 0 1.211-1.25c.293-.367.57-.785.852-1.254c.242-.402.484-.848.722-1.332c-.23.078-.488.125-.765.14c-.051.004-.098.008-.149.008c-.05.004-.097.004-.152.004c.918-.203 1.555-.761 2.066-1.492c-.25.121-.648.27-1.109.305c-.059.008-.125.008-.188.008c-.015-.004-.03 0-.046-.004c.316-.082.59-.184.84-.317c.05-.027.101-.058.148-.094a2.18 2.18 0 0 0 .219-.152c.046-.039.09-.07.136-.11c.102-.085.2-.183.29-.292a.936.936 0 0 0 .081-.102c.04-.054.075-.101.11-.152a7.868 7.868 0 0 0 .527-.852c.016-.03.035-.058.047-.09c.043-.09.086-.164.113-.234c.047-.101.078-.183.098-.246a.432.432 0 0 1-.113.05c-.282.118-.75.196-1.121.212l.722.027l-.722-.027c-.008 0-.012-.004-.016 0c-.035 0-.074 0-.113.004c.004-.004.015 0 .02-.008l-2.477-.09c0 .02-.008.027-.012.031zm0 0\\\"/><path fill=\\\"url(#deviconMavenWordmarkf)\\\" d=\\\"M74.434 86.867c-.266.297-.559.64-.88 1.028c-.015.02-.034.039-.046.058c-.278.34-.567.707-.88 1.117a57.702 57.702 0 0 0-1.648 2.273l2.477.09c.758-.222 1.117-.468 1.488-.847c.102-.106.2-.219.301-.336a14.557 14.557 0 0 0 1.613-2.242c.125-.223.23-.426.313-.61c.066-.164.125-.316.176-.464c-.97.02-2.153.003-2.914-.067m0 0\\\"/><path fill=\\\"#bd1e2e\\\" d=\\\"M71.621 94.996c-.05.004-.098 0-.152.004c.05-.004.097-.008.152-.004m0 0\\\"/><use width=\\\"100%\\\" height=\\\"100%\\\" href=\\\"#deviconMavenWordmark11\\\" mask=\\\"url(#deviconMavenWordmarku)\\\"/><path fill=\\\"url(#deviconMavenWordmarkg)\\\" d=\\\"M71.621 94.996c-.05.004-.098 0-.152.004c.05-.004.097-.008.152-.004m0 0\\\"/></g>\"\n\t\t},\n\t\t\"maya\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconMaya0\\\" x1=\\\"100.777\\\" x2=\\\"86.576\\\" y1=\\\"85.094\\\" y2=\\\"91.058\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".09\\\" stop-color=\\\"#1A5964\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#137078\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#0E8085\\\"/><stop offset=\\\".66\\\" stop-color=\\\"#0C858A\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0A8B8F\\\"/></linearGradient><linearGradient id=\\\"deviconMaya1\\\" x1=\\\"99.581\\\" x2=\\\"130.166\\\" y1=\\\"56.123\\\" y2=\\\"75.523\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#079EA0\\\"/><stop offset=\\\".43\\\" stop-color=\\\"#14878E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#256A77\\\"/></linearGradient><linearGradient id=\\\"deviconMaya2\\\" x1=\\\"112\\\" x2=\\\"112\\\" y1=\\\"16.835\\\" y2=\\\"120.497\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B4B4B4\\\"/><stop offset=\\\".8\\\" stop-color=\\\"#03ABAB\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#137980\\\"/></linearGradient><linearGradient id=\\\"deviconMaya3\\\" x1=\\\"59.349\\\" x2=\\\"135.485\\\" y1=\\\"57.417\\\" y2=\\\"42.575\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F5D64\\\"/><stop offset=\\\".1\\\" stop-color=\\\"#097A7E\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#049395\\\"/><stop offset=\\\".34\\\" stop-color=\\\"#01A3A3\\\"/><stop offset=\\\".43\\\" stop-color=\\\"#00A8A8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4EBCC1\\\"/></linearGradient><linearGradient id=\\\"deviconMaya4\\\" x1=\\\"-10.003\\\" x2=\\\"26.772\\\" y1=\\\"72.033\\\" y2=\\\"50.748\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00A9A9\\\"/><stop offset=\\\".65\\\" stop-color=\\\"#049496\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#088286\\\"/></linearGradient><linearGradient id=\\\"deviconMaya5\\\" x1=\\\"2.06\\\" x2=\\\"32.014\\\" y1=\\\"91.643\\\" y2=\\\"89.985\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#20626E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#069D9F\\\"/></linearGradient><linearGradient id=\\\"deviconMaya6\\\" x1=\\\"41.036\\\" x2=\\\"36.336\\\" y1=\\\"5.266\\\" y2=\\\"101.578\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#99CBD2\\\"/><stop offset=\\\".9\\\" stop-color=\\\"#498F93\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2E7B7D\\\"/></linearGradient></defs><path fill=\\\"url(#deviconMaya0)\\\" d=\\\"M98 121h3V49l-6 9v56z\\\"/><path fill=\\\"url(#deviconMaya1)\\\" d=\\\"M98 121V51l23-44h5v54l-22 60z\\\"/><path fill=\\\"url(#deviconMaya2)\\\" d=\\\"M126 121H98c2.9-5.7 14.1-29.2 19-48c8.5-33.1 9-58 9-58z\\\"/><path fill=\\\"url(#deviconMaya3)\\\" d=\\\"M126 7H89L63 69l11 30h1c.4 0 1-.3 2-2c4.1-7.6 49-90 49-90\\\"/><path fill=\\\"url(#deviconMaya4)\\\" d=\\\"m2 121.7l3-.7l27-49V56L5 9L2 7.4z\\\"/><path fill=\\\"url(#deviconMaya5)\\\" d=\\\"M32 59.1c-2.3 6.9-7.9 23.6-13.6 34.3C8.2 113 2 121.7 2 121.7s23.7 2 30-5.7V60z\\\"/><path fill=\\\"url(#deviconMaya6)\\\" d=\\\"M52 97c1 1.8 1.6 2 2 2h21c.2-.2.4-.4.4-.7c-.1-.4-.2-.9-.4-1.3L38 4L2 7.4S47.7 89.2 52 97\\\"/>\"\n\t\t},\n\t\t\"maya-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconMayaWordmark0\\\" x1=\\\"94.252\\\" x2=\\\"82.572\\\" y1=\\\"60.301\\\" y2=\\\"55.395\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".09\\\" stop-color=\\\"#1A5964\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#137078\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#0E8085\\\"/><stop offset=\\\".66\\\" stop-color=\\\"#0C858A\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0A8B8F\\\"/></linearGradient><linearGradient id=\\\"deviconMayaWordmark1\\\" x1=\\\"93.27\\\" x2=\\\"118.425\\\" y1=\\\"84.129\\\" y2=\\\"68.173\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#079EA0\\\"/><stop offset=\\\".43\\\" stop-color=\\\"#14878E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#256A77\\\"/></linearGradient><linearGradient id=\\\"deviconMayaWordmark2\\\" x1=\\\"103.484\\\" x2=\\\"103.484\\\" y1=\\\"116.443\\\" y2=\\\"31.181\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B4B4B4\\\"/><stop offset=\\\".8\\\" stop-color=\\\"#03ABAB\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#137980\\\"/></linearGradient><linearGradient id=\\\"deviconMayaWordmark3\\\" x1=\\\"60.175\\\" x2=\\\"122.803\\\" y1=\\\"83.059\\\" y2=\\\"95.268\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#0F5D64\\\"/><stop offset=\\\".1\\\" stop-color=\\\"#097A7E\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#049395\\\"/><stop offset=\\\".34\\\" stop-color=\\\"#01A3A3\\\"/><stop offset=\\\".43\\\" stop-color=\\\"#00A8A8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4EBCC1\\\"/></linearGradient><linearGradient id=\\\"deviconMayaWordmark4\\\" x1=\\\"3.122\\\" x2=\\\"33.369\\\" y1=\\\"71.054\\\" y2=\\\"88.561\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00A9A9\\\"/><stop offset=\\\".65\\\" stop-color=\\\"#049496\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#088286\\\"/></linearGradient><linearGradient id=\\\"deviconMayaWordmark5\\\" x1=\\\"13.047\\\" x2=\\\"37.687\\\" y1=\\\"54.95\\\" y2=\\\"56.314\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#20626E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#069D9F\\\"/></linearGradient><linearGradient id=\\\"deviconMayaWordmark6\\\" x1=\\\"45.099\\\" x2=\\\"41.233\\\" y1=\\\"125.96\\\" y2=\\\"46.743\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#99CBD2\\\"/><stop offset=\\\".9\\\" stop-color=\\\"#498F93\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2E7B7D\\\"/></linearGradient></defs><path fill=\\\"url(#deviconMayaWordmark0)\\\" d=\\\"M92 99.2h2.5V40l-4.9 7.4v46.1z\\\"/><path fill=\\\"url(#deviconMayaWordmark1)\\\" d=\\\"M92 99.2V41.7l18.9-36.2h4.1v44.4L96.9 99.2z\\\"/><path fill=\\\"url(#deviconMayaWordmark2)\\\" d=\\\"M115 99.2H92c2.4-4.7 11.6-24 15.6-39.5c7-27.2 7.4-47.7 7.4-47.7z\\\"/><path fill=\\\"url(#deviconMayaWordmark3)\\\" d=\\\"M115 5.5H84.6l-21.4 51l9 24.7h.8c.3 0 .8-.2 1.6-1.6C78.1 73.2 115 5.5 115 5.5\\\"/><path fill=\\\"url(#deviconMayaWordmark4)\\\" d=\\\"m13 99.8l2.5-.6l22.2-40.3V45.8L15.5 7.1L13 5.8z\\\"/><path fill=\\\"url(#deviconMayaWordmark5)\\\" d=\\\"M37.7 48.3c-1.9 5.7-6.5 19.4-11.2 28.2C18.1 92.7 13 99.8 13 99.8s19.5 1.6 24.7-4.7v-46z\\\"/><path fill=\\\"url(#deviconMayaWordmark6)\\\" d=\\\"M54.1 79.5c.8 1.5 1.3 1.6 1.6 1.6H73c.2-.2.3-.3.3-.6c-.1-.3-.2-.7-.3-1.1L42.6 3L13 5.8s37.6 67.3 41.1 73.7\\\"/><path fill=\\\"#149B9A\\\" d=\\\"m61 106l-5 14l-5-14h-4v19h3v-14l5 14h2l5-14v14h3v-19zm38.5 0L93 117v8h-3v-8l-6.4-11H87l4.5 8l4.5-8zm10.4 14l1.5 5h3.6l-6-19h-5l-6 19h3.5l1.5-5zm-6-2.7l2.7-8.9l2.6 8.9zm-24 2.7l1.5 5H85l-6-19h-5l-6 19h3.5l1.5-5zm-6-2.7l2.7-8.9l2.6 8.9z\\\"/>\"\n\t\t},\n\t\t\"meteor\": {\n\t\t\t\"body\": \"<path fill=\\\"#DF5052\\\" d=\\\"M120.3 65.4c1.2 0 2.1-.9 2.1-2.1c0-.5-.2-1-.5-1.3c-.1-.2-28-25.8-28-25.8l24.6 28.1c.3.7 1 1.1 1.8 1.1m5.7 14.3l-.2-.2L65 24l55.7 60.6l.2.2c.6.6 1.5 1 2.5 1c2 0 3.6-1.6 3.6-3.6c0-.9-.4-1.8-1-2.5m-26.9 37.6l-88-81.5l81.1 88.5c.9 1 2.2 1.7 3.7 1.7c2.7 0 4.9-2.2 4.9-4.9c0-1.5-.6-2.9-1.7-3.8M1 2l107.6 114.6l.1.1c.9.9 2.1 1.4 3.4 1.4c2.7 0 4.9-2.2 4.9-4.9c0-1-.3-2-.9-2.8C115.8 109.9 1 2 1 2m122.4 92.8l-88-81.5l81.1 88.5c.9 1 2.2 1.7 3.7 1.7c2.7 0 4.9-2.2 4.9-4.9c0-1.6-.7-2.9-1.7-3.8m-42.5 24.8l-.2-.2l-60.8-55.5l55.7 60.6l.2.2c.6.6 1.5 1 2.5 1c2 0 3.6-1.6 3.6-3.6c0-1-.4-1.8-1-2.5M34.1 91.7l24.6 28.1c.4.6 1 1.1 1.8 1.1c1.2 0 2.1-.9 2.1-2.1c0-.5-.2-1-.5-1.3c-.2-.1-28-25.8-28-25.8\\\"/>\"\n\t\t},\n\t\t\"meteor-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M10.3 67.8C8.7 65.2 7.1 62 5.5 60H1v19h4V66c1 .8 1.2 1.8 1.8 2.6c.6.9 1.2 1.8 1.8 2.6c.6.8.9 1.7 1.5 2.6c1.7-2.7 2.9-5.2 4.9-8V79h5V60h-4.8c-1.6 2-3.2 5.2-4.9 7.8M123 71.9c.6-.4 1.2-.9 1.7-1.3c1.4-.9 2-2.4 2.2-4c.1-.7 0-1.5 0-2.2l-.1-.7c-.2-.8-.6-1.5-1.1-2.2c-.5-.8-1.3-1-1.9-1.5c-1.1-.3-2.2-.7-3.4-.7c-2.7.1-5.6 0-8.4 0h-.9v19.6h5v-6h2.7c1.3 2 2.7 4 3.9 6h4.7c-1.4-1.9-3-4.8-4.4-7m-.6-5c-.4.7-.9 1.2-1.8 1.3c-.6.1-.9.2-1.5.2h-3.2v-5.5h3.9c.5 0 .9.1 1.3.3c.7.3 1.2.9 1.5 1.6c.5.8.4 1.2-.2 2.1M25 79h14v-4H29v-4.4c0-.1.1.4.2.4H38v-3h-9v-4h10v-4H25zm43.9-4.7c.1-1.3.1-2.5.1-3.7c0-.1-.1.4 0 .4h9v-3h-9v-4h10v-4H65v19h14v-4.7zM44 63.1h5.7s.2 0 .2.1v14.6h4V63.9h5v-4h-15c.1 1.1.1 2 .1 3.2\\\"/><path fill=\\\"#DF5052\\\" d=\\\"M105.7 64.3c.3 0 .5-.2.5-.5c0-.1 0-.2-.1-.3l-6.6-6.1l5.8 6.6c.1.2.2.3.4.3m1.4 3.4L92.7 54.6l13.1 14.3c.2.1.4.2.6.2c.5 0 .8-.4.8-.8c.1-.3 0-.5-.1-.6m-6.3 8.8L80.1 57.4l19.1 20.8c.2.2.5.4.9.4c.6 0 1.2-.5 1.2-1.2c-.1-.3-.3-.7-.5-.9M77.7 49.4l25.3 27c.2.2.5.3.8.3c.6 0 1.2-.5 1.2-1.2c0-.2-.1-.5-.2-.7c-.1 0-27.1-25.4-27.1-25.4m28.8 21.8L85.8 52.1l19.1 20.8c.2.2.5.4.9.4c.6 0 1.2-.5 1.2-1.2c-.1-.3-.3-.7-.5-.9m-10 5.9c0-.1-.1-.1 0 0L82.1 64l13.1 14.3c.2.1.4.2.6.2c.5 0 .8-.4.8-.8c.1-.3 0-.5-.1-.6m-11-6.6l5.8 6.6c.1.1.2.3.4.3c.3 0 .5-.2.5-.5c0-.1 0-.2-.1-.3c-.1-.1-6.6-6.1-6.6-6.1\\\"/>\"\n\t\t},\n\t\t\"microsoftsqlserver\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconMicrosoftsqlserver0\\\" x1=\\\"-2901.952\\\" x2=\\\"-2061.249\\\" y1=\\\"923.573\\\" y2=\\\"1420.331\\\" gradientTransform=\\\"matrix(.01102 0 0 -.01102 56.808 125.521)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#909ca9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ededee\\\"/></linearGradient><linearGradient id=\\\"deviconMicrosoftsqlserver1\\\" x1=\\\"-2882.7\\\" x2=\\\"-2206.249\\\" y1=\\\"10288.81\\\" y2=\\\"10288.81\\\" gradientTransform=\\\"matrix(.01102 0 0 -.01102 56.808 125.521)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#939fab\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dcdee1\\\"/></linearGradient><radialGradient id=\\\"deviconMicrosoftsqlserver2\\\" cx=\\\"-14217.448\\\" cy=\\\"7277.705\\\" r=\\\"898.12\\\" gradientTransform=\\\"matrix(-.01059 -.0016 -.00321 .02118 -64.462 -130.43)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ee352c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#a91d22\\\"/></radialGradient></defs><path fill=\\\"url(#deviconMicrosoftsqlserver0)\\\" d=\\\"m79.363 59.755l-25.634 8.37l-22.3 9.842l-6.24 1.648a135.666 135.666 0 0 1-5.057 4.592c-1.976 1.704-3.816 3.255-5.23 4.378c-1.57 1.24-3.895 3.565-5.077 5.038c-1.764 2.209-3.158 4.553-3.759 6.355c-1.066 3.255-.542 6.549 1.511 9.591c2.636 3.875 7.886 7.828 14.008 10.52c3.12 1.377 8.37 3.14 12.324 4.127c6.567 1.667 19.278 3.47 26.272 3.74c1.414.059 3.313.059 3.39 0c.156-.097 1.241-2.17 2.501-4.746c4.3-8.778 7.4-17.012 9.087-24.046c1.007-4.262 1.801-9.939 2.324-16.662c.136-1.88.194-8.177.078-10.308c-.175-3.487-.485-6.316-.97-9.086c-.077-.408-.096-.776-.057-.796c.077-.057.31-.135 3.468-1.046zm-5.851 3.43c.233 0 .852 5.947 1.007 9.706c.039.795.02 1.318-.02 1.318c-.154 0-3.274-1.84-5.501-3.236c-1.938-1.22-5.62-3.661-6.2-4.127c-.195-.135-.176-.155 1.413-.697c2.693-.91 9.088-2.965 9.3-2.965zm-13.06 4.3c.175 0 .62.252 1.686.911c3.991 2.5 9.417 5.523 11.742 6.53c.716.31.794.193-.853 1.318c-3.526 2.402-7.924 4.766-13.31 7.149c-.95.426-1.745.755-1.764.755c-.039 0 .078-.484.233-1.065c1.297-4.825 2.034-9.707 2.073-13.621c.02-1.938.02-1.938.194-1.996c-.04.02-.02.02 0 .02zm-2.692 1.027c.116.117.038 4.457-.117 5.639a49.361 49.361 0 0 1-1.782 8.428c-.213.717-.407 1.318-.446 1.356c-.078.097-2.732-2.5-3.604-3.507c-1.511-1.744-2.693-3.487-3.565-5.192c-.445-.872-1.143-2.577-1.085-2.635c.31-.214 10.521-4.166 10.599-4.089m-12.672 4.98c.019 0 .038 0 .058.019c.039.039.175.35.291.698c.62 1.685 2.014 4.165 3.216 5.754c1.318 1.744 3.042 3.605 4.476 4.825c.465.387.891.755.949.813c.116.117.155.097-3.004 1.299c-3.66 1.395-7.652 2.79-12.225 4.262a609.837 609.837 0 0 0-3.274 1.066c-.175.058-.116-.04.387-.834c2.267-3.544 5.715-10.5 7.653-15.422c.33-.853.66-1.705.718-1.899c.077-.271.174-.368.425-.504c.136-.038.272-.077.33-.077M41.213 75.1c.058.039-.93 2.112-1.899 4.01c-1.88 3.663-3.933 7.267-6.684 11.646c-.466.755-.91 1.453-.97 1.53c-.096.136-.134.097-.445-.503c-.659-1.299-1.201-2.965-1.492-4.496c-.29-1.511-.232-4.146.098-5.774c.25-1.2.232-1.181.813-1.472c2.48-1.26 10.502-5.018 10.58-4.941zm33.422 1.357v.813c0 4.321-.465 10.25-1.143 14.57c-.116.756-.213 1.376-.232 1.396c0 0-.562-.155-1.22-.349a49.985 49.985 0 0 1-8.914-3.817c-1.88-1.027-4.61-2.713-4.533-2.79c.019-.02.833-.446 1.782-.95c3.798-1.976 7.44-4.107 10.599-6.22c1.182-.794 2.964-2.072 3.351-2.421zm-48.05 5.734c.077 0 .057.155-.059.853a27.507 27.507 0 0 0-.213 2.072c-.155 2.83.31 4.923 1.705 7.79c.388.794.698 1.453.678 1.472c-.135.117-12.962 3.876-16.992 4.98c-1.201.33-2.247.62-2.325.639c-.136.04-.155.02-.097-.31c.446-2.848 2.616-6.568 5.639-9.707c2.014-2.093 3.623-3.313 6.374-4.882c1.976-1.124 5.018-2.81 5.25-2.887c0-.02.02-.02.04-.02m30.225 5.406c.02-.02.484.233 1.046.562c4.147 2.403 9.92 4.631 14.841 5.774l.446.097l-.62.349c-2.576 1.434-11.044 4.96-19.704 8.195c-1.26.465-2.5.93-2.732 1.027c-.233.097-.446.155-.446.135c0-.02.349-.697.794-1.53c2.422-4.534 4.863-10.056 6.104-13.892c.155-.368.251-.697.27-.717zm-3.08 1.007c.019.02-.136.427-.33.892c-1.686 4.088-3.895 8.545-6.724 13.543c-.716 1.28-1.317 2.306-1.336 2.306c-.02 0-.601-.349-1.299-.775c-4.107-2.519-7.75-5.619-10.132-8.622l-.35-.426l1.764-.485c6.316-1.724 11.683-3.584 17.011-5.87c.756-.31 1.376-.563 1.395-.563zm19.142 6.685s.02.02 0 0c.02.446-.969 4.437-1.783 7.324c-.678 2.422-1.259 4.32-2.325 7.672c-.464 1.474-.87 2.693-.89 2.693c-.02 0-.136-.018-.253-.057c-5.754-1.047-10.908-2.5-15.752-4.437c-1.356-.543-3.293-1.415-3.41-1.512c-.038-.039 1.124-.581 2.597-1.22c8.816-3.856 17.96-8.235 21.1-10.114c.368-.233.658-.349.716-.349M28.677 96.8c.039.04-2.422 3.585-5.87 8.41c-1.202 1.685-2.597 3.661-3.12 4.397a77.468 77.468 0 0 0-1.763 2.597l-.814 1.26l-.872-.737c-1.027-.853-2.809-2.674-3.604-3.681c-1.666-2.073-2.79-4.263-3.235-6.258c-.214-.93-.214-1.396-.02-1.453a1459.3 1459.3 0 0 1 10.308-2.423a861.65 861.65 0 0 0 6.936-1.627c1.124-.271 2.035-.485 2.054-.485m2.48.95l.62.697c2.79 3.12 5.638 5.426 9.087 7.44c.62.35 1.085.66 1.046.68c-.135.096-11.974 4.3-17.457 6.199a462.501 462.501 0 0 1-5.638 1.957c-.019 0-.194-.117-.387-.252l-.349-.252l.562-.814c1.82-2.635 4.107-5.522 9.086-11.528zm15.462 11.063c.019-.02.871.29 1.918.679c2.519.949 4.514 1.55 7.188 2.228c3.294.833 8.06 1.647 10.87 1.88c.426.038.658.077.581.135c-.136.077-2.984 1.027-5.076 1.685c-3.333 1.047-13.505 4.05-21.798 6.433a218.735 218.735 0 0 1-2.925.834c-.194.038-.834-.137-.834-.214c0-.038.465-.639 1.027-1.298c2.79-3.333 5.561-7.053 7.867-10.579c.64-.969 1.182-1.764 1.182-1.783m-3.41.097c.019.02-1.357 2.228-3.76 6.026c-1.026 1.608-2.17 3.43-2.576 4.069c-.388.62-.97 1.589-1.298 2.131l-.562.988l-.291-.077c-.698-.194-5.6-1.919-6.898-2.442a48.226 48.226 0 0 1-4.514-2.072c-1.55-.834-3.487-2.074-3.332-2.113c.038-.02 2.693-.736 5.89-1.608c8.485-2.306 13.194-3.642 16.275-4.611c.562-.175 1.046-.31 1.065-.29zm24.122 5.657h.02c.077.195-3.062 8.913-4.206 11.664c-.251.62-.348.776-.484.756c-.329-.02-4.882-.658-7.653-1.065c-4.824-.736-12.924-2.151-14.957-2.616l-.466-.097l2.887-.659c6.2-1.395 9.184-2.15 12.207-3.08a86.251 86.251 0 0 0 11.412-4.399c.6-.27 1.104-.484 1.24-.503z\\\"/><path fill=\\\"url(#deviconMicrosoftsqlserver1)\\\" d=\\\"M52.935.001c-.426-.058-7.305 2.422-11.741 4.224c-5.988 2.441-10.637 4.766-13.505 6.781c-1.066.756-2.403 2.093-2.616 2.616a1.812 1.812 0 0 0-.116.659l2.597 2.46l6.18 1.977l14.706 2.635l16.817 2.887l.175-1.453c-.058 0-.097-.02-.155-.02l-2.209-.348l-.445-.795c-2.287-4.03-4.805-9.029-6.278-12.4c-1.142-2.616-2.228-5.638-2.828-7.808C53.187.098 53.149.02 52.935 0Zm-.31.988h.02c.019.02.096.563.174 1.202c.33 2.712.93 5.328 1.88 8.157c.716 2.13.716 2.015-.117 1.763c-1.976-.542-10.83-2.073-17.244-2.965c-1.027-.135-1.899-.27-1.899-.29c-.077-.078 4.63-2.538 6.704-3.507c2.654-1.22 9.94-4.263 10.482-4.36M33.947 9.67l.756.252c4.108 1.395 14.434 3.372 20.131 3.837c.639.058 1.182.116 1.2.116c.02.02-.522.31-1.22.639c-2.751 1.376-5.774 3.062-7.866 4.36c-.62.387-1.182.698-1.26.698c-.077 0-.484-.078-.91-.137l-.775-.116l-1.938-1.899a803.532 803.532 0 0 0-7.11-6.84zm-.775.601l2.732 3.41c1.492 1.88 3.004 3.72 3.333 4.127c.33.407.6.736.58.756c-.077.058-3.952-.698-6.005-1.162c-2.112-.485-2.984-.718-4.282-1.125l-1.066-.349v-.27c.02-1.3 1.667-3.237 4.456-5.212zm23.212 4.65c.077 0 .174.174.406.697c.66 1.453 2.713 5.367 3.217 6.123c.155.252.426.272-2.306-.174c-6.568-1.066-8.68-1.415-8.68-1.453c0-.02.194-.155.446-.291c2.035-1.124 4.088-2.557 5.91-4.088c.445-.368.852-.717.93-.775c.019-.039.057-.058.077-.039\\\"/><path fill=\\\"url(#deviconMicrosoftsqlserver2)\\\" d=\\\"M25.209 13.35s-.426.679-.02 1.687c.252.62.988 1.375 1.822 2.15c0 0 8.621 8.409 9.668 9.61c4.766 5.503 6.84 10.928 7.033 18.407c.117 4.805-.794 9.029-3.061 13.931c-4.03 8.796-12.536 18.504-25.653 29.276l1.918-.64c1.24-.93 2.926-1.917 6.879-4.087c9.125-5 19.394-9.591 31.988-14.32c18.135-6.82 47.954-14.802 64.926-17.398l1.764-.271l-.272-.427c-1.55-2.403-2.616-3.894-3.895-5.483c-3.72-4.611-8.233-8.35-13.756-11.45c-7.595-4.244-17.418-7.557-29.857-10.017c-2.345-.466-7.499-1.357-11.684-1.996a1193.72 1193.72 0 0 1-20.925-3.41c-2.267-.388-5.658-.969-7.905-1.454c-1.163-.252-3.39-.775-5.134-1.375c-1.395-.543-3.41-1.085-3.837-2.732Zm4.999 4.844c.019-.018.329.098.736.233a50.336 50.336 0 0 0 2.81.853a142.908 142.908 0 0 0 2.557.678c1.162.29 2.131.561 2.15.561c.136.136 2.093 6.394 2.752 8.797c.252.91.446 1.685.427 1.685c-.02.02-.233-.31-.485-.755c-2.267-3.991-5.851-8.04-9.998-11.296c-.542-.387-.95-.736-.95-.756Zm9.532 2.636c.098 0 .524.058 1.047.174c3.293.736 9.203 1.86 12.98 2.5c.64.097 1.144.213 1.144.251c0 .04-.232.175-.523.33c-.64.329-3.216 1.86-4.069 2.44c-2.15 1.435-4.088 2.985-5.483 4.38c-.562.562-1.046 1.027-1.046 1.027s-.116-.33-.214-.736c-.697-2.694-2.15-6.685-3.468-9.495c-.213-.445-.387-.852-.387-.89c0 .038 0 .019.02.019zm16.78 3.196c.116.04.31.698.697 2.151a31.732 31.732 0 0 1 .93 8.874c-.039.814-.078 1.57-.117 1.667l-.058.193l-1.007-.33c-2.073-.658-5.444-1.646-8.331-2.46c-1.647-.446-2.984-.852-2.984-.89c0-.117 2.403-2.52 3.43-3.43c1.956-1.725 7.265-5.832 7.44-5.775m1.336.194c.058-.058 8.022 1.317 11.645 2.015c2.694.523 6.607 1.337 6.84 1.434c.115.039-.291.27-1.59.853c-5.115 2.305-8.912 4.378-12.69 6.897c-.988.659-1.822 1.202-1.84 1.202c-.02 0-.04-.562-.04-1.24c0-3.681-.735-7.402-2.092-10.54c-.136-.31-.252-.601-.233-.62zm20.596 4.07c.058.057-.193 1.627-.426 2.557c-.698 2.887-2.577 7.169-4.882 11.199c-.408.717-.776 1.298-.815 1.317c-.038.02-.56-.271-1.162-.62c-2.247-1.318-4.805-2.557-7.595-3.72c-.775-.33-1.453-.6-1.472-.64c-.136-.115 6.103-4.242 9.396-6.219c2.617-1.589 6.88-3.952 6.956-3.875zm1.473.232c.174 0 3.7.968 5.541 1.511c4.553 1.356 9.785 3.274 13.195 4.824l1.414.64l-.988.232c-8.33 1.918-15.461 4.128-22.34 6.917c-.562.233-1.066.427-1.104.427c-.039 0 .155-.446.407-.988c2.073-4.399 3.41-8.99 3.74-12.905c.019-.368.077-.658.135-.658m-35.108 8.06c.058-.058 2.75.581 4.204.988c2.21.62 6.898 2.19 6.898 2.305c0 .02-.523.466-1.143 1.008c-2.538 2.112-4.98 4.34-7.906 7.169c-.871.833-1.607 1.511-1.646 1.511c-.04 0-.058-.116-.04-.271c.446-3.255.35-7.44-.27-11.683c-.059-.543-.117-1.008-.098-1.027zm56.595.058c.038.039-1.24 2.053-2.054 3.196c-1.162 1.667-2.868 3.876-6.723 8.72a1289.453 1289.453 0 0 0-5.076 6.413c-.775.969-1.414 1.782-1.435 1.782c-.018 0-.27-.348-.542-.774c-2.17-3.256-4.766-6.104-7.847-8.661a44.534 44.534 0 0 0-1.433-1.163c-.214-.155-.388-.31-.388-.33c0-.057 3.293-1.472 5.793-2.479c4.38-1.783 10.346-3.914 14.823-5.29c2.344-.736 4.843-1.453 4.882-1.414m1.492.387c.077-.019.543.214 1.104.543c4.709 2.693 9.32 6.162 12.962 9.726c1.027 1.008 3.566 3.643 3.527 3.662c0 0-.892.078-1.938.155c-8.157.62-18.6 2.344-28.636 4.766c-.679.155-1.28.29-1.318.29c-.038 0 .717-.755 1.667-1.665c5.89-5.677 8.583-9.261 11.76-15.656c.446-.948.833-1.762.872-1.82c-.02 0-.02 0 0 0zm-43.149 4.418c.271.058 2.79 1.24 4.689 2.19c1.744.871 4.36 2.266 4.495 2.383c.02.019-.91.503-2.054 1.066a135.032 135.032 0 0 0-10.017 5.521c-.93.562-1.705 1.027-1.724 1.027c-.078 0-.058-.078.465-1.027c1.744-3.177 3.139-6.975 3.933-10.676c.077-.29.155-.484.213-.484m-2.519.465c.058.058-.6 2.441-1.007 3.74c-.795 2.46-2.132 5.54-3.43 7.866c-.31.542-.775 1.337-1.027 1.782l-.484.775l-1.085-1.046c-1.26-1.22-2.286-1.976-3.603-2.655c-.524-.27-.931-.503-.931-.542c0-.155 3.314-3.158 5.852-5.328c1.82-1.57 5.657-4.65 5.715-4.592m15.404 6.336l.95.62c2.17 1.415 4.727 3.294 6.684 4.94c1.104.91 3.235 2.83 3.662 3.294l.232.252l-1.57.446c-8.873 2.46-15.732 4.65-23.734 7.595c-.892.33-1.647.6-1.705.6c-.116 0-.213.097 1.783-1.744c5.115-4.707 9.648-9.9 13.02-14.957zm-4.05 1.007c.04.039-2.615 3.778-4.204 5.89c-1.899 2.519-5.27 6.743-7.596 9.494c-.968 1.144-1.8 2.093-1.84 2.112c-.058.02-.078-.27-.078-.717c0-2.344-.6-4.844-1.646-6.975c-.446-.891-.524-1.104-.426-1.201c.368-.33 6.006-3.546 9.57-5.464c2.404-1.279 6.162-3.177 6.22-3.139M44.1 55.26c.058 0 .503.232 1.008.503a21.28 21.28 0 0 1 3.332 2.248c.039.038-.465.446-1.124.93c-1.84 1.317-4.63 3.43-6.258 4.728c-1.705 1.356-1.763 1.394-1.57 1.104c1.28-1.957 1.919-3.061 2.597-4.476a36.066 36.066 0 0 0 1.627-4.05c.155-.56.349-.987.388-.987m6.53 5.114c.096-.018.213.156.735.931c1.104 1.647 1.957 3.856 2.17 5.638l.04.387l-2.655 1.028c-4.747 1.84-9.126 3.661-12.09 5.018a217.066 217.066 0 0 0-3.236 1.55c-.95.484-1.724.852-1.724.833c0-.02.6-.465 1.336-1.008C41 70.547 46.018 65.935 49.777 61.324c.407-.484.775-.93.813-.949zm-3.004.737c.078.077-2.131 2.577-3.642 4.108c-3.74 3.816-7.44 6.8-12.032 9.706c-.582.368-1.105.698-1.163.736c-.135.078.038-.116 2.054-2.305a52.694 52.694 0 0 0 3.352-3.972c.736-.95.871-1.085 1.937-1.84c2.849-2.055 9.417-6.511 9.494-6.434z\\\"/>\"\n\t\t},\n\t\t\"microsoftsqlserver-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconMicrosoftsqlserverWordmark0\\\" x1=\\\"-2901.952\\\" x2=\\\"-2061.249\\\" y1=\\\"923.573\\\" y2=\\\"1420.331\\\" gradientTransform=\\\"matrix(.01123 0 0 -.01123 137.366 9.007)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#909ca9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ededee\\\"/></linearGradient><linearGradient id=\\\"deviconMicrosoftsqlserverWordmark1\\\" x1=\\\"-2882.7\\\" x2=\\\"-2206.249\\\" y1=\\\"10288.81\\\" y2=\\\"10288.81\\\" gradientTransform=\\\"matrix(.01123 0 0 -.01123 137.366 9.007)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#939fab\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dcdee1\\\"/></linearGradient><radialGradient id=\\\"deviconMicrosoftsqlserverWordmark2\\\" cx=\\\"-14217.448\\\" cy=\\\"7277.705\\\" r=\\\"898.12\\\" gradientTransform=\\\"matrix(-.01079 -.00162 -.00328 .02158 13.8 -251.794)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ee352c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#a91d22\\\"/></radialGradient></defs><path fill=\\\"url(#deviconMicrosoftsqlserverWordmark0)\\\" d=\\\"m160.349-58.006l-26.12 8.529l-22.723 10.029l-6.357 1.678c-1.62 1.54-3.317 3.1-5.153 4.68c-2.014 1.737-3.89 3.316-5.33 4.461c-1.6 1.264-3.969 3.633-5.173 5.133c-1.797 2.25-3.218 4.64-3.83 6.476c-1.086 3.317-.553 6.673 1.54 9.772c2.685 3.949 8.035 7.976 14.274 10.72c3.178 1.402 8.528 3.199 12.556 4.205c6.692 1.698 19.644 3.535 26.77 3.811c1.441.06 3.376.06 3.455 0c.158-.099 1.264-2.211 2.547-4.837c4.383-8.943 7.542-17.334 9.26-24.5c1.026-4.343 1.835-10.128 2.368-16.979c.139-1.915.198-8.331.08-10.503c-.179-3.553-.495-6.436-.988-9.259c-.079-.415-.099-.79-.059-.81c.079-.059.316-.137 3.534-1.066zm-5.962 3.495c.236 0 .868 6.06 1.026 9.89c.04.81.02 1.343-.02 1.343c-.158 0-3.336-1.875-5.606-3.296c-1.975-1.244-5.726-3.732-6.318-4.206c-.198-.138-.178-.158 1.441-.71c2.744-.929 9.26-3.021 9.477-3.021m-13.307 4.383c.178 0 .632.256 1.718.927c4.066 2.547 9.595 5.627 11.964 6.654c.73.316.809.197-.87 1.342c-3.592 2.448-8.074 4.857-13.562 7.285a41.2 41.2 0 0 1-1.797.77c-.039 0 .08-.493.237-1.086c1.323-4.916 2.073-9.89 2.113-13.879c.02-1.974.02-1.974.197-2.033c-.04.02-.02.02 0 .02m-2.744 1.046c.118.118.04 4.54-.119 5.745a50.246 50.246 0 0 1-1.816 8.588c-.217.73-.415 1.343-.454 1.382c-.08.098-2.784-2.547-3.672-3.574c-1.54-1.776-2.744-3.553-3.633-5.29c-.454-.889-1.164-2.626-1.105-2.685c.316-.218 10.72-4.245 10.799-4.166m-12.912 5.074c.02 0 .04 0 .06.02c.039.039.177.355.296.71c.631 1.718 2.053 4.245 3.277 5.864c1.342 1.777 3.1 3.672 4.56 4.915c.474.395.908.77.967.83c.12.118.159.098-3.06 1.322c-3.73 1.422-7.798 2.843-12.457 4.344a621.39 621.39 0 0 0-3.336 1.086c-.178.059-.119-.04.395-.85c2.31-3.612 5.823-10.7 7.798-15.714c.336-.87.671-1.738.73-1.935c.08-.277.178-.375.435-.514c.138-.039.276-.078.335-.078m-3.948 1.638c.06.04-.948 2.152-1.935 4.087c-1.915 3.731-4.008 7.404-6.811 11.865c-.474.77-.928 1.481-.987 1.56c-.099.138-.138.099-.454-.513c-.671-1.323-1.224-3.021-1.52-4.58c-.297-1.54-.237-4.226.098-5.884c.257-1.224.237-1.204.83-1.5c2.526-1.284 10.7-5.114 10.78-5.035zm34.056 1.382v.83c0 4.402-.474 10.443-1.165 14.846c-.119.77-.218 1.401-.237 1.421c0 0-.573-.157-1.244-.355a50.946 50.946 0 0 1-9.082-3.89c-1.915-1.045-4.698-2.763-4.62-2.842c.02-.02.85-.454 1.817-.968c3.87-2.013 7.581-4.185 10.8-6.337c1.203-.81 3.02-2.112 3.415-2.468zm-48.962 5.844c.079 0 .06.158-.06.869a27.978 27.978 0 0 0-.216 2.112c-.158 2.882.316 5.015 1.737 7.936c.395.81.711 1.481.691 1.5c-.138.12-13.207 3.95-17.314 5.075c-1.224.335-2.29.632-2.37.651c-.137.04-.157.02-.098-.316c.454-2.902 2.665-6.692 5.745-9.89c2.053-2.133 3.692-3.377 6.495-4.976c2.014-1.145 5.114-2.862 5.35-2.941c0-.02.02-.02.04-.02m30.799 5.508c.02-.02.493.237 1.065.573c4.225 2.448 10.109 4.718 15.123 5.883l.454.099l-.632.355c-2.625 1.46-11.253 5.054-20.077 8.351c-1.284.474-2.547.948-2.785 1.046c-.236.099-.454.158-.454.139c0-.02.356-.711.81-1.56c2.468-4.62 4.955-10.246 6.219-14.155c.158-.376.256-.711.277-.731m-3.14 1.027c.02.02-.138.434-.335.908c-1.718 4.166-3.969 8.707-6.85 13.8c-.731 1.303-1.343 2.35-1.363 2.35c-.02 0-.612-.356-1.323-.79c-4.186-2.567-7.897-5.726-10.325-8.786l-.356-.434l1.797-.494c6.436-1.757 11.904-3.652 17.334-5.981c.77-.316 1.402-.573 1.421-.573m19.506 6.81s.02.02 0 0c.02.455-.987 4.522-1.816 7.463c-.691 2.468-1.284 4.403-2.37 7.818c-.473 1.501-.888 2.745-.908 2.745c-.02 0-.138-.02-.256-.06c-5.864-1.066-11.115-2.546-16.05-4.52c-1.383-.553-3.357-1.442-3.476-1.54c-.039-.04 1.146-.593 2.646-1.244c8.983-3.93 18.301-8.391 21.5-10.306c.374-.237.67-.355.73-.355zm-45.033 1.541c.04.04-2.467 3.652-5.982 8.568c-1.224 1.718-2.645 3.731-3.178 4.482a78.936 78.936 0 0 0-1.797 2.645l-.83 1.283l-.888-.75c-1.046-.869-2.862-2.724-3.671-3.75c-1.698-2.113-2.843-4.344-3.297-6.377c-.218-.948-.218-1.422-.02-1.481c.296-.08 5.567-1.323 10.503-2.468a875.555 875.555 0 0 0 7.067-1.658c1.146-.277 2.074-.494 2.093-.494m2.527.967l.632.711c2.843 3.179 5.745 5.528 9.26 7.581c.631.356 1.105.671 1.065.691c-.138.1-12.2 4.383-17.788 6.318a476.073 476.073 0 0 1-5.744 1.993c-.02 0-.198-.118-.396-.256l-.355-.257l.573-.829c1.855-2.685 4.185-5.626 9.26-11.747zm15.755 11.273c.02-.02.888.296 1.954.691c2.567.968 4.6 1.58 7.325 2.27c3.356.85 8.213 1.679 11.076 1.916c.434.039.67.079.592.138c-.139.079-3.04 1.046-5.173 1.718c-3.396 1.065-13.76 4.126-22.21 6.554c-1.56.454-2.902.83-2.981.849c-.197.04-.85-.139-.85-.217c0-.04.475-.652 1.047-1.323c2.843-3.396 5.666-7.186 8.016-10.78c.651-.987 1.204-1.796 1.204-1.816m-3.475.1c.02.019-1.382 2.27-3.83 6.139c-1.046 1.638-2.211 3.494-2.626 4.146c-.395.631-.987 1.619-1.322 2.171l-.573 1.007l-.296-.079c-.71-.197-5.706-1.954-7.028-2.487a48.891 48.891 0 0 1-4.6-2.113c-1.58-.849-3.554-2.112-3.396-2.152c.04-.02 2.744-.75 6.001-1.638c8.648-2.35 13.445-3.712 16.584-4.699c.573-.178 1.066-.316 1.086-.296zm24.58 5.764h.02c.078.197-3.12 9.081-4.285 11.885c-.256.631-.355.79-.493.77c-.336-.02-4.975-.672-7.799-1.086c-4.915-.75-13.168-2.192-15.24-2.665l-.474-.1l2.94-.67c6.319-1.422 9.359-2.192 12.439-3.14a87.909 87.909 0 0 0 11.628-4.481c.612-.277 1.125-.494 1.264-.513\\\" transform=\\\"translate(0 76.601)scale(.5412)\\\"/><path fill=\\\"url(#deviconMicrosoftsqlserverWordmark1)\\\" d=\\\"M133.42-118.892c-.434-.059-7.443 2.468-11.964 4.304c-6.1 2.488-10.838 4.857-13.76 6.91c-1.086.77-2.449 2.132-2.665 2.665a1.846 1.846 0 0 0-.12.672l2.647 2.507l6.297 2.014l14.985 2.685l17.136 2.941l.178-1.48c-.06 0-.099-.02-.158-.02l-2.25-.356l-.455-.809c-2.33-4.106-4.896-9.2-6.396-12.635c-1.165-2.665-2.27-5.745-2.883-7.956c-.335-1.343-.375-1.422-.591-1.441h-.001zm-.316 1.007h.02c.02.02.099.573.178 1.224c.335 2.765.947 5.43 1.915 8.312c.73 2.172.73 2.053-.119 1.796c-2.013-.552-11.036-2.112-17.57-3.02c-1.047-.138-1.935-.276-1.935-.296c-.08-.079 4.718-2.586 6.83-3.573c2.705-1.244 10.128-4.344 10.68-4.443zm-19.032 8.845l.77.256c4.186 1.422 14.708 3.436 20.513 3.91c.651.059 1.204.118 1.223.118c.02.02-.532.316-1.243.652c-2.803 1.401-5.883 3.119-8.016 4.442c-.631.394-1.204.71-1.283.71c-.079 0-.493-.079-.927-.138l-.79-.118l-1.974-1.935a827.404 827.404 0 0 0-7.246-6.97zm-.79.612l2.784 3.475c1.52 1.915 3.06 3.79 3.396 4.205c.336.414.612.75.593.77c-.08.059-4.028-.711-6.12-1.185c-2.153-.493-3.041-.73-4.364-1.145l-1.086-.355v-.277c.02-1.323 1.698-3.297 4.541-5.31zm23.652 4.738c.08 0 .178.178.415.71c.67 1.481 2.764 5.47 3.277 6.24c.158.256.434.276-2.35-.178c-6.692-1.086-8.844-1.441-8.844-1.48c0-.02.197-.159.454-.297c2.073-1.145 4.166-2.606 6.022-4.166c.454-.375.868-.73.947-.79c.02-.039.06-.059.08-.039z\\\" transform=\\\"translate(0 76.601)scale(.5412)\\\"/><path fill=\\\"url(#deviconMicrosoftsqlserverWordmark2)\\\" d=\\\"M105.168-105.29s-.434.692-.02 1.719c.258.631 1.008 1.401 1.856 2.191c0 0 8.786 8.568 9.852 9.792c4.856 5.607 6.969 11.135 7.166 18.756c.119 4.896-.81 9.2-3.119 14.195c-4.106 8.963-12.773 18.854-26.139 29.83l1.955-.65c1.263-.949 2.98-1.955 7.008-4.167c9.299-5.093 19.762-9.772 32.595-14.59c18.479-6.949 48.863-15.083 66.157-17.728l1.796-.277l-.276-.434c-1.58-2.448-2.665-3.968-3.969-5.587c-3.79-4.699-8.39-8.509-14.016-11.668c-7.74-4.323-17.75-7.7-30.424-10.207c-2.388-.474-7.64-1.382-11.904-2.033a1212.446 1212.446 0 0 1-21.322-3.475c-2.31-.395-5.765-.987-8.055-1.48c-1.185-.257-3.455-.79-5.232-1.402c-1.421-.553-3.474-1.106-3.909-2.784zm5.094 4.937c.02-.02.335.098.75.237c.75.256 1.718.552 2.863.868a145.616 145.616 0 0 0 2.606.691c1.185.296 2.172.573 2.191.573c.139.138 2.133 6.514 2.804 8.962c.256.929.454 1.718.434 1.718c-.02.02-.237-.316-.493-.77c-2.31-4.067-5.963-8.193-10.188-11.51c-.552-.394-.967-.75-.967-.77zm9.713 2.685c.1 0 .534.059 1.066.177c3.357.75 9.378 1.896 13.228 2.547c.651.099 1.165.217 1.165.257c0 .04-.237.177-.534.335c-.65.336-3.277 1.895-4.145 2.488c-2.192 1.46-4.166 3.04-5.587 4.462a80.297 80.297 0 0 1-1.067 1.046s-.118-.336-.217-.75c-.71-2.745-2.191-6.812-3.534-9.674c-.217-.454-.395-.869-.395-.908c0 .04 0 .02.02.02m17.097 3.257c.119.04.316.71.71 2.191a32.32 32.32 0 0 1 .949 9.043c-.04.829-.08 1.599-.119 1.698l-.06.197l-1.026-.336c-2.112-.67-5.547-1.678-8.489-2.507c-1.678-.454-3.04-.869-3.04-.908c0-.119 2.448-2.567 3.494-3.495c1.994-1.757 7.403-5.942 7.581-5.883m1.362.197c.06-.059 8.174 1.343 11.866 2.054c2.744.533 6.732 1.362 6.969 1.46c.118.04-.296.277-1.62.87c-5.211 2.349-9.08 4.46-12.93 7.028c-1.007.67-1.856 1.224-1.876 1.224c-.02 0-.04-.573-.04-1.264c0-3.75-.75-7.541-2.132-10.74c-.138-.316-.256-.612-.236-.632zm20.987 4.147c.06.059-.198 1.658-.435 2.605c-.71 2.942-2.625 7.306-4.974 11.412c-.415.73-.79 1.322-.83 1.342c-.04.02-.572-.276-1.184-.632c-2.29-1.342-4.896-2.606-7.74-3.79c-.789-.336-1.48-.612-1.5-.652c-.138-.118 6.219-4.323 9.575-6.337c2.665-1.619 7.009-4.028 7.088-3.948m1.5.236c.178 0 3.771.988 5.646 1.54c4.64 1.382 9.97 3.337 13.445 4.916l1.44.652l-1.006.237c-8.489 1.954-15.754 4.205-22.763 7.048c-.572.237-1.086.434-1.125.434c-.04 0 .158-.454.415-1.007c2.112-4.481 3.474-9.16 3.81-13.149c.02-.375.079-.67.138-.67zm-35.773 8.213c.059-.059 2.803.593 4.284 1.007c2.25.632 7.028 2.23 7.028 2.35c0 .02-.533.473-1.164 1.026c-2.587 2.152-5.074 4.422-8.056 7.305c-.888.849-1.638 1.54-1.677 1.54c-.04 0-.06-.119-.04-.277c.454-3.317.356-7.58-.276-11.904c-.06-.553-.119-1.027-.1-1.047zm57.668.06c.039.039-1.264 2.092-2.093 3.257c-1.185 1.698-2.922 3.949-6.851 8.884a1314.027 1314.027 0 0 0-5.172 6.535c-.79.987-1.442 1.816-1.462 1.816c-.02 0-.275-.355-.552-.79c-2.211-3.316-4.857-6.218-7.996-8.824a46.115 46.115 0 0 0-1.46-1.185c-.218-.158-.396-.316-.396-.336c0-.059 3.356-1.5 5.903-2.527c4.462-1.816 10.542-3.988 15.103-5.39c2.39-.75 4.936-1.48 4.976-1.44m1.52.394c.078-.02.552.218 1.125.553c4.798 2.744 9.496 6.278 13.208 9.91c1.046 1.028 3.632 3.713 3.593 3.732c0 0-.909.08-1.974.158c-8.312.632-18.953 2.389-29.18 4.856a39.48 39.48 0 0 1-1.342.297c-.04 0 .73-.77 1.698-1.698c6.002-5.785 8.746-9.437 11.983-15.952c.454-.967.85-1.796.889-1.856c-.02 0-.02 0 0 0m-43.967 4.502c.277.059 2.843 1.263 4.778 2.23c1.777.889 4.442 2.31 4.58 2.429c.02.02-.928.513-2.092 1.086a137.63 137.63 0 0 0-10.207 5.626c-.948.573-1.738 1.047-1.757 1.047c-.08 0-.06-.08.473-1.047c1.777-3.237 3.199-7.107 4.008-10.878c.079-.296.158-.493.217-.493m-2.566.473c.059.06-.612 2.488-1.027 3.81c-.81 2.508-2.172 5.647-3.494 8.016c-.316.553-.79 1.362-1.047 1.816l-.493.79l-1.106-1.066c-1.283-1.244-2.33-2.014-3.672-2.705c-.533-.276-.947-.513-.947-.552c0-.158 3.376-3.218 5.962-5.43c1.855-1.599 5.765-4.738 5.824-4.679m15.695 6.456l.968.632c2.21 1.441 4.816 3.356 6.81 5.034c1.126.928 3.297 2.883 3.732 3.356l.236.257l-1.598.454c-9.042 2.507-16.031 4.738-24.185 7.74c-.908.335-1.678.611-1.737.611c-.119 0-.218.099 1.816-1.777c5.212-4.797 9.832-10.088 13.267-15.24zm-4.126 1.027c.04.04-2.665 3.85-4.284 6.001c-1.935 2.567-5.37 6.87-7.74 9.674c-.986 1.165-1.835 2.132-1.875 2.152c-.06.02-.079-.276-.079-.73c0-2.39-.612-4.936-1.678-7.108c-.454-.908-.533-1.125-.434-1.224c.375-.335 6.12-3.613 9.752-5.567c2.449-1.303 6.278-3.238 6.338-3.198m-24.955 6.12c.06 0 .514.237 1.027.513a21.702 21.702 0 0 1 3.396 2.29c.039.04-.474.455-1.145.948a184.418 184.418 0 0 0-6.377 4.817c-1.738 1.382-1.796 1.422-1.6 1.126c1.304-1.994 1.955-3.12 2.646-4.56a36.75 36.75 0 0 0 1.659-4.127c.157-.573.355-1.007.394-1.007m6.654 5.212c.098-.02.217.158.75.948c1.125 1.677 1.994 3.928 2.211 5.745l.04.395l-2.705 1.046c-4.837 1.875-9.299 3.731-12.32 5.113c-.848.395-2.33 1.106-3.296 1.58c-.968.493-1.758.868-1.758.849c0-.02.612-.474 1.363-1.027c5.903-4.284 11.016-8.983 14.846-13.682c.415-.493.79-.947.83-.967zm-3.06.75c.079.08-2.172 2.626-3.712 4.185c-3.81 3.89-7.581 6.93-12.26 9.892c-.592.375-1.125.71-1.185.75c-.138.079.04-.119 2.093-2.35a53.773 53.773 0 0 0 3.415-4.047c.75-.967.889-1.105 1.975-1.875c2.902-2.093 9.595-6.634 9.674-6.555\\\" transform=\\\"translate(0 76.601)scale(.5412)\\\"/><path fill=\\\"#231f1f\\\" d=\\\"M23.012 90.198c-.198 0-.395.019-.59.019c-3.981.212-6.666 1.964-8.236 5.386c-1.343 3.094-1.196 7.138.015 10.252c1.408 3.042 3.684 4.648 7.483 5.254c.803.132 1.342.573 2.9 2.39l1.915 2.245h3.474l-2.31-2.33c-1.277-1.276-2.31-2.388-2.31-2.486c0-.097.488-.311 1.08-.491c1.949-.59 3.567-2.096 4.7-4.404c.916-1.853 1.048-2.426 1.18-4.732c.343-6.863-3.276-11.154-9.302-11.105zm3.045 17.948c-1.69.818-4.144.982-5.746.394c-1.656-.608-3.26-2.328-3.981-4.275c-.801-2.13-.687-6.058.23-7.827c1.473-2.817 3.423-4.112 6.27-4.112c4.226 0 6.63 2.587 6.943 7.45c.248 4.06-1.111 7.106-3.714 8.369zm60.01-12.085c-1.457 0-2.572.59-3.324 1.752l-.59.92V96.34h-2.521v14.346h2.52V106.1c0-4.193.053-4.683.639-5.83c.807-1.574 2.197-2.358 3.54-1.983l.9.263v-2.486h-1.163zm-14.816-.132a7.32 7.32 0 0 0-1.54.18c-3.374.883-5.276 4.113-5.16 7.436c0 2.783.542 4.175 1.884 5.634c2.751 2.257 5.24 2.437 8.597 1.226c.572-.244 1.196-.526 1.196-.526v-2.257l-1.196.62c-2.717 1.183-4.764 1.183-6.404-.21c-1.045-1.065-1.506-2.342-1.717-3.8h10.168v-1.933c0-3.944-2.374-6.434-5.83-6.37zm-4.112 6.29s.376-2.46 1.77-3.424a3.802 3.802 0 0 1 2.193-.703c.755 0 1.507.244 2.129.72c1.277.982 1.49 3.39 1.49 3.39H67.14ZM6.342 99.633c-2.734-1.657-3.947-2.851-3.798-4.26c.424-3.896 5.238-3.357 7.905-1.883l.019-2.621s-1.474-.639-3.587-.673C3.64 90.148 1.544 91.21.563 93.373c-1.443 3.193-.166 5.6 4.45 8.286c2.591 1.507 3.736 2.816 3.736 4.243c0 2.948-3.554 3.978-7.221 2.128c-.754-.376-1.393-.69-1.428-.69c-.132.836-.064 2.836-.064 2.836s1.127.473 2.817.8c4.19.835 8.005-1.131 8.365-4.323c.314-2.997-.77-4.57-4.876-7.023zm102.045-3.737a7.67 7.67 0 0 0-1.559.181c-3.37.883-5.269 4.113-5.14 7.437c0 2.779.54 4.157 1.882 5.614c2.751 2.26 5.24 2.44 8.613 1.228a92.962 92.962 0 0 0 1.193-.521v-2.261l-1.194.623c-2.723 1.18-4.77 1.18-6.404-.214c-1.051-1.063-1.507-2.325-1.72-3.799h10.152v-1.934c0-3.924-2.374-6.417-5.829-6.35zm-4.113 6.29s.38-2.456 1.771-3.44a3.783 3.783 0 0 1 2.191-.704c.752 0 1.508.244 2.13.72c1.277.983 1.491 3.407 1.491 3.407h-7.58zM58.05 99.664c-2.734-1.652-3.944-2.85-3.797-4.26c.424-3.897 5.239-3.356 7.905-1.883l.02-2.62s-1.475-.64-3.587-.67c-3.242-.048-5.337 1.015-6.32 3.178c-1.441 3.192-.147 5.6 4.453 8.285c2.588 1.506 3.733 2.798 3.733 4.225c0 2.948-3.553 3.994-7.22 2.127c-.751-.375-1.39-.685-1.427-.685c-.131.835-.064 2.836-.064 2.836s1.114.456 2.798.8c4.195.837 8.01-1.128 8.37-4.32c.311-2.982-.77-4.553-4.864-7.01zm65.153-3.637c-1.457 0-2.585.59-3.324 1.754l-.59.916v-2.388h-2.521v14.342h2.52v-4.585c0-4.192.05-4.684.638-5.83c.808-1.571 2.198-2.357 3.54-1.979l.902.262v-2.492zm-85.208 3.555v-9.138h-2.542v20.239h10.692v-2.39h-8.15zm58.797 2.848l-2.095 5.453l-2.016-5.484l-2.046-6.076h-2.603a445.904 445.904 0 0 0 5.37 14.36c.803.018 1.606 0 2.408 0l2.83-7.106l2.882-7.252h-2.487s-1.1 2.88-2.245 6.106zM43.855 84.929c.409 0 .751-.131 1.032-.413a1.37 1.37 0 0 0 .425-1.014c0-.41-.146-.751-.425-1.014a1.41 1.41 0 0 0-1.014-.395c-.413 0-.754.132-1.032.41c-.282.278-.41.62-.41 1.014c0 .413.132.755.41 1.014c.263.263.604.394 1.014.394zm-.902-2.329c.244-.243.541-.357.92-.357c.357 0 .654.114.902.357c.244.245.376.542.376.902a1.261 1.261 0 0 1-.376.916c-.248.244-.545.36-.902.36c-.362 0-.657-.112-.9-.36a1.261 1.261 0 0 1-.376-.916c0-.36.112-.657.357-.902zm.606 1.034h.166c.117 0 .231.112.329.326l.197.443h.31l-.244-.492c-.1-.197-.197-.311-.312-.343c.145-.034.26-.083.342-.18a.452.452 0 0 0 .112-.33a.42.42 0 0 0-.146-.345c-.113-.094-.293-.144-.526-.144h-.521v1.834h.262v-.77zm0-.853h.23c.165 0 .281.034.346.083c.061.048.079.112.079.228c0 .213-.132.312-.376.312h-.281v-.623zm-41.997.69c0-.64-.019-1.115-.034-1.394h.015c.065.33.147.576.213.74l2.44 5.453h.41l2.44-5.502c.067-.15.132-.376.213-.69h.019a15.8 15.8 0 0 0-.066 1.396v4.812h.836v-7.154H7L4.756 86.11c-.083.197-.197.49-.344.882h-.034a5.771 5.771 0 0 0-.326-.849l-2.194-5.027H.745v7.155h.803v-4.797zm8.316.012h.722v4.456h-.722Zm.361-1.634a.509.509 0 0 0 .375-.15a.521.521 0 0 0 .166-.375a.472.472 0 0 0-.163-.376a.526.526 0 0 0-.38-.15a.514.514 0 0 0-.375.15a.528.528 0 0 0-.165.376c0 .163.05.277.165.375a.541.541 0 0 0 .375.15zm5.502 6.188v-.785c-.395.295-.82.441-1.259.441c-.525 0-.952-.18-1.263-.525c-.31-.342-.476-.817-.476-1.409c0-.62.166-1.112.508-1.487c.328-.36.755-.541 1.277-.541c.426 0 .835.132 1.213.395v-.836c-.344-.18-.736-.263-1.18-.263c-.818 0-1.457.263-1.934.77c-.473.507-.717 1.196-.717 2.028c0 .74.212 1.362.654 1.837c.46.488 1.048.736 1.768.736c.558-.016 1.014-.132 1.409-.361m2.063-2.376c0-.587.132-1.062.376-1.39c.229-.294.507-.442.835-.442c.278 0 .476.05.62.165v-.853c-.112-.049-.276-.065-.488-.065c-.295 0-.557.1-.789.282c-.244.193-.439.488-.554.863h-.019v-1.046h-.816v5.108h.818v-2.621zm4.7 2.723c.77 0 1.39-.248 1.85-.74c.458-.488.687-1.145.687-1.964c0-.835-.21-1.474-.638-1.949c-.425-.475-1.014-.705-1.784-.705s-1.39.23-1.85.673c-.492.488-.751 1.178-.751 2.062c0 .77.21 1.408.654 1.883c.458.492 1.064.738 1.833.738zm-1.164-4.161c.312-.329.721-.492 1.228-.492c.526 0 .92.163 1.213.492c.295.344.442.833.442 1.49c0 .622-.132 1.113-.41 1.441c-.277.344-.687.526-1.228.526c-.525 0-.933-.182-1.245-.526c-.31-.345-.458-.819-.458-1.442c-.032-.62.132-1.126.458-1.489m7.286 3.716c.312-.278.477-.62.477-1.048a1.28 1.28 0 0 0-.376-.933c-.199-.197-.506-.376-.952-.556c-.394-.165-.638-.311-.77-.426a.7.7 0 0 1-.212-.526c0-.212.083-.375.245-.507c.165-.131.375-.195.657-.195c.44 0 .819.116 1.163.363v-.82a2.396 2.396 0 0 0-1.098-.243c-.525 0-.969.145-1.295.424a1.31 1.31 0 0 0-.508 1.063c0 .375.113.687.327.916c.18.195.488.395.917.573c.41.18.687.343.835.475a.625.625 0 0 1 .212.488c0 .477-.327.723-.965.723c-.492 0-.933-.161-1.328-.488v.882c.357.215.785.312 1.259.312c.606-.032 1.081-.18 1.408-.475zm3.898-4.912c-.77 0-1.39.229-1.85.672c-.488.489-.75 1.178-.75 2.062c0 .77.212 1.408.653 1.883c.46.492 1.065.739 1.835.739c.788 0 1.389-.248 1.849-.74c.46-.489.69-1.146.69-1.965c0-.835-.215-1.473-.64-1.949c-.442-.475-1.032-.704-1.783-.704zm1.589 2.685c0 .623-.132 1.114-.41 1.442c-.278.344-.687.526-1.228.526c-.526 0-.933-.182-1.245-.526c-.31-.345-.458-.819-.458-1.442c0-.657.163-1.164.492-1.506c.31-.327.72-.492 1.228-.492c.507 0 .915.165 1.21.492c.262.36.41.851.41 1.506zm2.212 2.556h.817v-4.422h1.196v-.688h-1.196v-.788c0-.718.277-1.078.852-1.078c.193 0 .391.049.537.131v-.737c-.146-.066-.344-.081-.59-.081c-.44 0-.8.132-1.096.41c-.344.326-.526.75-.526 1.325v.837h-.864v.688h.864v4.405zm3.356-1.394c0 1 .44 1.508 1.342 1.508c.327 0 .573-.052.77-.17v-.7a.855.855 0 0 1-.526.165c-.278 0-.473-.066-.587-.214c-.117-.147-.183-.394-.183-.736v-2.883h1.296v-.687h-1.296v-1.506c-.281.097-.557.18-.819.262v1.243h-.882v.688h.882v3.029zm87.88 9.416a1.406 1.406 0 0 0-1.014-.394c-.413 0-.755.132-1.033.413c-.278.276-.41.62-.41 1.014c0 .41.132.75.408 1.014c.278.263.62.394 1.033.394c.407 0 .75-.131 1.033-.41c.276-.28.422-.605.422-1.013c-.015-.413-.163-.755-.441-1.017zm-.131 1.934a1.215 1.215 0 0 1-.902.358c-.357 0-.653-.114-.901-.358a1.273 1.273 0 0 1-.376-.92c0-.357.113-.653.36-.901c.244-.244.54-.357.917-.357c.357 0 .654.113.902.357c.243.248.375.544.375.9c0 .381-.113.673-.375.921m-.736-.835a.704.704 0 0 0 .343-.18a.457.457 0 0 0 .113-.33c0-.147-.047-.264-.146-.344c-.113-.094-.295-.145-.526-.145h-.523v1.832h.263v-.77h.164c.112 0 .225.113.327.327l.195.442h.312l-.244-.493c-.085-.214-.183-.312-.282-.344zm-.181-.165h-.282v-.62h.231c.164 0 .278.03.344.08c.066.05.08.113.08.23c0 .212-.13.31-.375.31zM80.829 82.947h.228v-1.835h.607v-.23h-1.442v.23h.607zm1.389-1.38c0-.177 0-.323-.013-.406c.015.097.049.163.064.212l.704 1.574h.112l.707-1.59c.019-.048.034-.112.065-.196c-.015.163-.015.294-.015.394v1.39h.244v-2.063h-.294l-.639 1.424c-.015.05-.066.15-.097.263h-.02c-.012-.066-.046-.132-.093-.244l-.639-1.442h-.33v2.065h.23V81.57z\\\"/>\"\n\t\t},\n\t\t\"minitab\": {\n\t\t\t\"body\": \"<path fill=\\\"#8DC63F\\\" d=\\\"M0 0h128v128H0z\\\"/><linearGradient id=\\\"deviconMinitab0\\\" x1=\\\"99.32\\\" x2=\\\"21.21\\\" y1=\\\"-254.43\\\" y2=\\\"-332.79\\\" gradientTransform=\\\"translate(0 374)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8DC63F\\\" stop-opacity=\\\".2\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\".2\\\"/></linearGradient><path fill=\\\"url(#deviconMinitab0)\\\" d=\\\"m41 128l-26.2-21.7l19.8-53.9l19.2 17.9V19.4h7.9l21 23.5l6.1-5.3L113.9 70l2.1-1.5l12 16.1v43.2z\\\"/><path fill=\\\"#FFF\\\" d=\\\"M42 19.4h19.7v86.9H42zm27.1 18.2h19.7v68.7H69.1zm27.2 30.9H116v37.8H96.3zM14.8 52.4h19.7v53.9H14.8z\\\"/><path fill=\\\"#D1D1D2\\\" d=\\\"m14.8 100.3l19.8-7.4v13.4H14.8zm46.9-28.4v34.4H42V89.1zm7.4 0l19.7 14.5v19.9H69.1zm27.2 14.3l19.7-7.6v27.7H96.3z\\\"/>\"\n\t\t},\n\t\t\"mithril\": {\n\t\t\t\"body\": \"<path fill=\\\"#010002\\\" d=\\\"M106.71 82.578c-.058 23.649-19.32 42.879-42.987 42.879c-23.703 0-42.985-19.285-42.985-42.992c0-.07.012-.14.012-.215C8.332 74.703 0 61.086 0 45.531C0 21.824 19.285 2.54 42.988 2.54c7.633 0 14.79 2.023 21.008 5.524c6.219-3.5 13.379-5.524 21.012-5.524c23.707 0 42.988 19.29 42.988 42.992c0 15.782-8.574 29.57-21.285 37.047ZM63.997 17.102c-7.781 5.761-13.144 14.601-14.195 24.73c4.37-1.504 9.047-2.36 13.922-2.36c5.093 0 9.96.934 14.492 2.571c-1-10.215-6.387-19.14-14.219-24.941m-35.34 60.773a35.239 35.239 0 0 0 14.332 3.055c4.961 0 9.688-1.032 13.977-2.887c-7.113-6.145-12.211-14.55-14.113-24.113c-7.614 5.593-12.914 14.129-14.196 23.945m35.067-30.813a35.17 35.17 0 0 0-13.825 2.817c1.215 9.851 6.493 18.445 14.098 24.082c7.547-5.594 12.793-14.086 14.063-23.84a35.146 35.146 0 0 0-14.336-3.059m7.308 30.985a35.156 35.156 0 0 0 13.973 2.887c4.902 0 9.574-1.004 13.828-2.817c-1.195-9.707-6.336-18.18-13.754-23.828c-1.96 9.418-7.023 17.688-14.047 23.758m-7.308 39.824c18.277 0 33.359-13.922 35.215-31.71c-4.376 1.503-9.047 2.359-13.93 2.359a42.667 42.667 0 0 1-21.012-5.524a42.63 42.63 0 0 1-21.008 5.524c-5.093 0-9.957-.934-14.492-2.567c1.762 17.89 16.883 31.918 35.227 31.918M42.988 10.125c-19.523 0-35.406 15.879-35.406 35.406c0 11.5 5.535 21.703 14.055 28.176c2.504-12.05 10.09-22.23 20.386-28.289c.036-12.945 5.836-24.54 14.942-32.406a35.107 35.107 0 0 0-13.977-2.887m42.02 0a35.08 35.08 0 0 0-13.973 2.887c9.133 7.886 14.95 19.523 14.95 32.515c0 .075-.016.145-.016.215c10.117 6.156 17.527 16.328 19.91 28.317c8.793-6.45 14.535-16.82 14.535-28.528c-.004-19.523-15.883-35.406-35.406-35.406m0 0\\\"/>\"\n\t\t},\n\t\t\"mobx\": {\n\t\t\t\"body\": \"<path fill=\\\"#ea6618\\\" d=\\\"M128 118.195V9.805c0-4.45-2.96-8.2-7.02-9.403l-4.605 2.758l-51.133 54.52l-1.605 5.011l-.934 4.809l15.945 59.59l2.465.91h37.082c5.414 0 9.805-4.39 9.805-9.805\\\"/><path fill=\\\"#d65813\\\" d=\\\"M0 9.805v108.39a9.79 9.79 0 0 0 4.25 8.078l3.145-1.503l54.12-57.95l2.122-4.129l.082-3.996l-14.73-56.043L46.757 0H9.805C4.39 0 0 4.39 0 9.805\\\"/><path fill=\\\"#e05e11\\\" d=\\\"M63.637 62.691L120.98.402A9.778 9.778 0 0 0 118.195 0H46.758Zm0 0\\\"/><path fill=\\\"#de5c16\\\" d=\\\"M9.805 128h71.308L63.637 62.691L4.25 126.273A9.74 9.74 0 0 0 9.805 128\\\"/><path fill=\\\"#fff\\\" d=\\\"M47.46 48.516h7.11c2.836 10.691 6.063 20.074 9.66 28.543c4.075-9.528 7.063-18.918 9.59-28.543h6.723c-3.012 11.96-7.934 24.02-13.566 36.464H61.03c-5.41-11.793-10.015-23.918-13.57-36.464M24 29.988h15.813v67.817H23.93v-5.227h9.734V35.074H24Zm80.082 5.086h-9.664v57.504h9.734v5.227H88.27V29.988h15.812Zm0 0\\\"/>\"\n\t\t},\n\t\t\"mocha\": {\n\t\t\t\"body\": \"<path fill=\\\"#8d6748\\\" d=\\\"m116.904 98.49l-49.469 28.582a6.826 6.826 0 0 1-6.87 0L11.096 98.491c-2.13-1.237-3.435-3.504-3.435-5.91V35.419c0-2.473 1.305-4.672 3.435-5.909L60.565.928a6.825 6.825 0 0 1 6.87 0l49.469 28.581c2.13 1.237 3.435 3.504 3.435 5.91v57.163c-.068 2.405-1.374 4.672-3.435 5.909z\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.931 8.69c-1.03 0-2.061.277-2.955.826L18.241 34.182c-1.855 1.03-2.953 3.022-2.953 5.084v49.33c0 2.13 1.098 4.055 2.953 5.086l42.735 24.665c.894.55 1.924.824 2.955.824c1.03 0 2.062-.274 2.955-.824l42.735-24.665c1.855-1.03 2.955-3.024 2.955-5.085V39.266c0-2.13-1.1-4.054-2.955-5.084L66.886 9.516a5.645 5.645 0 0 0-2.955-.825Zm0 2.062c.687 0 1.306.207 1.924.55l42.735 24.666a3.953 3.953 0 0 1 1.924 3.367v49.33c0 1.375-.756 2.68-1.924 3.367l-42.735 24.666c-.618.343-1.237.55-1.924.55a3.694 3.694 0 0 1-1.924-.55L19.272 92.032a3.953 3.953 0 0 1-1.924-3.366V39.335c0-1.375.756-2.68 1.924-3.367l42.735-24.666c.619-.343 1.306-.55 1.924-.55m.24 19.375c-.893 1.1-2.404 2.268-.755 4.741c.55.618.824 1.924.756 2.336c0 0 2.473-1.442.961-4.053c-.893-1.374-1.305-2.543-.961-3.024zm-2.747 2.543c-.619.756-1.58 1.511-.481 3.229c.343.343.48 1.237.48 1.512c0 0 1.65-.962.62-2.748c-.619-.893-.894-1.718-.62-1.993zm-5.017 5.91a.687.687 0 0 0-.686.686c0 2.336.343 10.374 3.779 14.29a.624.624 0 0 0 .48.207h5.772a.625.625 0 0 0 .481-.206c3.436-3.848 3.779-11.887 3.779-14.291a.688.688 0 0 0-.688-.687zm1.993 2.128h9.07a.69.69 0 0 1 .687.688c0 1.924-.344 7.35-2.68 10.168c-.206.137-.343.207-.549.207h-4.054a.624.624 0 0 1-.481-.207c-2.336-2.748-2.61-8.244-2.68-10.168a.69.69 0 0 1 .687-.688m8.657 4.672s-.068.62-1.717 1.238c-2.267.824-6.252.274-6.252.274c.343 1.443.892 2.817 1.717 3.848c.069.137.274.205.412.205h3.436c.137 0 .274-.068.412-.205c1.168-1.374 1.718-3.505 1.992-5.36M20.2 48.747v.757h35.11c0-.275-.069-.482-.069-.757zm50.362 0c0 .275-.069.482-.069.757H107.8v-.757Zm-22.674 7.489c-1.03 0-1.993.137-2.886.55c-.893.343-1.649.893-2.267 1.511a6.9 6.9 0 0 0-1.512 2.267c-.343.894-.548 1.786-.548 2.748v.07c0 .961.205 1.924.548 2.749c.344.893.825 1.648 1.443 2.267c.618.618 1.375 1.168 2.268 1.511a7.986 7.986 0 0 0 2.886.549c1.03 0 1.991-.136 2.885-.549c.893-.343 1.65-.893 2.268-1.511a6.9 6.9 0 0 0 1.512-2.267c.343-.894.548-1.788.548-2.75v-.069a7.26 7.26 0 0 0-.548-2.748c-.344-.893-.825-1.648-1.443-2.267c-.618-.618-1.375-1.168-2.268-1.511a7.986 7.986 0 0 0-2.886-.55m18.963 0c-1.1 0-1.992.206-2.885.55c-.893.343-1.65.893-2.268 1.511a7.932 7.932 0 0 0-1.443 2.267a7.26 7.26 0 0 0-.549 2.748v.07c0 .961.205 1.855.549 2.749c.343.893.824 1.648 1.443 2.267c.618.618 1.375 1.168 2.2 1.511a7 7 0 0 0 2.747.549c.619 0 1.237 0 1.855-.137c.481-.068 1.03-.274 1.443-.48c.412-.207.824-.414 1.236-.757c.413-.344.756-.619 1.1-1.031l-1.58-1.58c-.619.55-1.237.962-1.787 1.306c-.55.343-1.304.48-2.129.48c-.618 0-1.238-.205-1.787-.411c-.55-.206-1.031-.619-1.443-1.031c-.412-.481-.756-.962-.962-1.58c-.206-.62-.343-1.238-.343-1.925v-.067c0-.619.137-1.238.343-1.857c.275-.55.55-1.098.962-1.51a5.503 5.503 0 0 1 1.443-1.03c.55-.276 1.1-.413 1.787-.413c.825 0 1.51.138 2.13.481a9.877 9.877 0 0 1 1.718 1.236l1.58-1.786c-.344-.343-.688-.618-1.032-.893c-.343-.275-.755-.481-1.167-.687c-.48-.138-.893-.275-1.443-.412c-.55-.07-1.1-.138-1.718-.138m32.293.206l-6.047 13.81h2.474l1.442-3.297h6.458l1.376 3.298h2.54l-6.045-13.81zm-77.227.07v13.81h2.405v-9.827l4.26 6.39h.069l4.328-6.457v9.825h2.405V56.51h-2.542l-4.192 6.46l-4.191-6.458zm55.172 0v13.74h2.404v-5.771h6.596v5.772h2.405V56.51h-2.405v5.703h-6.596V56.51ZM47.82 58.434c.687 0 1.306.137 1.855.412a5.52 5.52 0 0 1 1.443 1.031c.412.481.756.961.962 1.58c.206.618.343 1.236.343 1.923v.07c0 .617-.137 1.236-.343 1.854c-.275.55-.55 1.1-.962 1.512a5.503 5.503 0 0 1-1.443 1.03c-.55.276-1.168.413-1.855.413c-.618 0-1.306-.137-1.856-.412a5.496 5.496 0 0 1-1.442-1.031c-.412-.481-.755-.962-.961-1.58c-.207-.62-.345-1.238-.345-1.925v-.067c0-.619.138-1.238.345-1.857c.274-.55.55-1.098.961-1.51a5.496 5.496 0 0 1 1.442-1.03c.55-.276 1.17-.413 1.856-.413m52.422.893l2.336 5.496h-4.672ZM20.2 74.581v.755h87.6v-.755z\\\"/>\"\n\t\t},\n\t\t\"modx\": {\n\t\t\t\"body\": \"<path fill=\\\"#00b5de\\\" d=\\\"m63.864 14.059l-8.29 13.317l43.215 26.5l24.869-39.817z\\\"/><path fill=\\\"#ff5529\\\" d=\\\"m99.06 58.089l-27.178 42.806L111.97 125.9V66.106z\\\" class=\\\"modx-original-st2\\\"/><path fill=\\\"#00decc\\\" d=\\\"m29.483 69.911l69.306-16.035L15.622 2.1v59.794z\\\" class=\\\"modx-original-st3\\\"/><path fill=\\\"#ff9640\\\" d=\\\"M64.136 113.67L99.06 58.088L29.21 74.532L4.342 113.669z\\\" class=\\\"modx-original-st4\\\"/>\"\n\t\t},\n\t\t\"modx-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#00b5de\\\" d=\\\"m92.1 40.8l18.3-29.3h-44l-6.1 9.8z\\\" class=\\\"modx-original-wordmark-st0\\\"/><path fill=\\\"#ff5529\\\" d=\\\"M101.8 93.8v-44l-9.5-5.9l-20 31.5z\\\" class=\\\"modx-original-wordmark-st2\\\"/><path fill=\\\"#00decc\\\" d=\\\"M30.9 2.7v44l10.2 5.9l51-11.8z\\\" class=\\\"modx-original-wordmark-st3\\\"/><path fill=\\\"#ff9640\\\" d=\\\"M40.9 56L22.6 84.8h44l25.7-40.9z\\\" class=\\\"modx-original-wordmark-st4\\\"/><path fill=\\\"#102c53\\\" d=\\\"M16.2 122.1h2.6l1.3-15.6h-2.6v-3h7l4.8 12.2c.4 1.1.5 1.8.5 1.8h.1s.2-.7.5-1.8l4.8-12.2h7v3h-2.6l1.2 15.6h2.6v3h-8.9v-3h2.4l-.7-11c-.1-.8.1-2 .1-2h-.1s-.2 1.2-.5 1.9l-4.1 10h-3.4l-4.1-10c-.3-.7-.5-1.9-.5-1.9h-.1s.2 1.2.1 2l-.8 10.9h2.4v3h-9zM56.1 103c6.4 0 11.2 4.8 11.2 11c0 6.4-4.8 11.3-11.2 11.3c-6.4 0-11.2-5-11.2-11.3c0-6.1 4.8-11 11.2-11m0 18.9c3.9 0 7.1-3.4 7.1-7.8c0-4.3-3.2-7.5-7.1-7.5c-3.9 0-7.1 3.3-7.1 7.5c0 4.4 3.2 7.8 7.1 7.8m13.2.2h2.6v-15.6h-2.6v-3h9.4c1.7 0 3.1.1 4.5.5c4.2 1.2 7 5 7 10.3c0 5.1-2.6 8.8-6.7 10.2c-1.5.5-3 .6-4.8.6h-9.4zm9.2-.3c1.4 0 2.5-.1 3.5-.6c2.5-1 4-3.5 4-7.1c0-3.7-1.6-6.2-4.2-7.1c-1.1-.4-2.1-.5-3.4-.5h-2.6v15.2zm14 .3h1.9l5.5-8l-5.3-7.6h-1.9v-3h8.2v3h-2.1l3 4.5c.4.5.6.9.6.9h.1s.2-.4.6-.9l2.9-4.5h-2.1v-3h7.9v3h-1.9l-5.5 7.9l5.4 7.7h1.9v3h-8.2v-3h2.1l-3-4.5c-.4-.5-.6-.9-.6-.9h-.1c-.1 0-.2.4-.6.9l-2.9 4.5h2.1v3h-7.9z\\\"/>\"\n\t\t},\n\t\t\"moleculer\": {\n\t\t\t\"body\": \"<path fill=\\\"#3cafce\\\" d=\\\"M79.969 10.016c-6.895 0-12.48 5.586-12.48 12.48a12.481 12.481 0 0 0 6.628 10.988l-6.887 13.07a17.009 17.009 0 0 0-5.214-.827c-9.368 0-16.961 7.593-16.961 16.96c.015 1.211.16 2.418.433 3.598l-13.71 5.016a14.364 14.364 0 0 0-12.16-6.723c-7.938 0-14.368 6.43-14.368 14.367c0 7.934 6.43 14.368 14.367 14.368c7.934 0 14.367-6.434 14.367-14.368a14.504 14.504 0 0 0-.336-3.074l13.141-5.77a16.957 16.957 0 0 0 15.227 9.547A16.96 16.96 0 0 0 72.3 76.121l11.058 10.527a20.854 20.854 0 0 0-3.648 11.72c0 11.507 9.328 20.831 20.832 20.831c11.508 0 20.832-9.324 20.832-20.832c0-11.504-9.324-20.832-20.832-20.832a20.847 20.847 0 0 0-13.129 4.707l-11.766-9.535a16.957 16.957 0 0 0 3.329-10.02a16.967 16.967 0 0 0-7.364-13.976l5.836-14.023c.828.18 1.672.277 2.52.289c6.89 0 12.48-5.586 12.48-12.48c0-6.892-5.59-12.481-12.48-12.481Zm0 0\\\"/>\"\n\t\t},\n\t\t\"moleculer-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#3cafce\\\" d=\\\"M67.898 26.566a4.125 4.125 0 0 0-2.863 1.22c-.648.648-1.039 1.44-1.18 2.382c-.035.223-.03.91.004 1.145a4.127 4.127 0 0 0 1.18 2.335c.25.25.523.465.777.618c.09.05.168.101.18.109c.02.016-.191.426-1.117 2.18l-1.14 2.16a1.026 1.026 0 0 1-.176-.043a5.7 5.7 0 0 0-4.079.375a5.66 5.66 0 0 0-3.035 4.058c-.066.383-.074.48-.074.993c0 .511.008.582.074.996c.02.11.031.207.028.21c-.004.005-4.52 1.657-4.532 1.657c-.004 0-.043-.059-.09-.125a5.36 5.36 0 0 0-.976-1.059a4.718 4.718 0 0 0-2.438-1.015a6.563 6.563 0 0 0-1.035-.012a4.787 4.787 0 0 0-4.238 4.027a6.444 6.444 0 0 0-.031 1.2a4.718 4.718 0 0 0 1.375 2.902c.254.258.472.434.77.629a4.78 4.78 0 0 0 5.581-.258c.2-.16.606-.563.758-.754a4.801 4.801 0 0 0 .98-3.793a1.481 1.481 0 0 1-.027-.226c.004-.004.969-.426 2.137-.942c1.172-.512 2.148-.941 2.172-.953l.043-.023l.066.132c.094.184.246.438.39.645a5.858 5.858 0 0 0 2.212 1.867c1.855.863 4.054.664 5.691-.516l.149-.109l.093.094c.055.05.832.789 1.73 1.64l1.735 1.649l.102.102l-.098.152a6.84 6.84 0 0 0-1.101 3.93c.007.367.023.546.066.847a6.906 6.906 0 0 0 1.969 3.895c1.218 1.215 2.77 1.902 4.527 2.015c.195.012.871-.007 1.094-.03a7.085 7.085 0 0 0 2-.52a6.724 6.724 0 0 0 2.125-1.43a6.853 6.853 0 0 0 2.004-3.914a5.98 5.98 0 0 0 .07-1.04a6.42 6.42 0 0 0-.2-1.675a6.871 6.871 0 0 0-1.847-3.242a6.918 6.918 0 0 0-5.773-1.953a7.015 7.015 0 0 0-2.547.851a9.68 9.68 0 0 0-.781.52a.631.631 0 0 1-.176.117a919.27 919.27 0 0 1-3.867-3.129c-.008-.004.035-.078.09-.16c.542-.79.859-1.652.968-2.633c.028-.23.028-.89 0-1.137a5.64 5.64 0 0 0-1.21-2.96a6.383 6.383 0 0 0-1.083-1.032a.535.535 0 0 1-.12-.105c.003-.012.437-1.063.964-2.336c.863-2.078.965-2.309.992-2.305c.016.004.113.023.215.04c.234.034.922.038 1.145.007a4.163 4.163 0 0 0 3.543-3.414a4.192 4.192 0 0 0-.864-3.32a6.06 6.06 0 0 0-.613-.614a4.247 4.247 0 0 0-1.617-.8a4.004 4.004 0 0 0-1.07-.122ZM29.434 76.36a5.382 5.382 0 0 0-1.504.243a5.072 5.072 0 0 0-1.657.902a8.587 8.587 0 0 0-.937.945c-1.266 1.594-2.05 3.942-2.328 6.965a29.824 29.824 0 0 0 .035 5.41c.281 2.82 1.012 5.067 2.121 6.543c.648.86 1.445 1.488 2.293 1.805c.355.133.738.226 1.117.277c.25.028 1.086.02 1.336-.015c.969-.141 1.785-.489 2.524-1.079c.332-.27.754-.714 1.043-1.105c1.464-1.973 2.218-5.191 2.218-9.48c0-4.329-.812-7.59-2.379-9.54a7.54 7.54 0 0 0-.714-.742a4.635 4.635 0 0 0-1.692-.933a4.942 4.942 0 0 0-1.476-.196m39.578.075c-.13.004-.239.007-.313.011a6.8 6.8 0 0 0-3.57 1.364a8.074 8.074 0 0 0-1.531 1.543c-1.172 1.566-1.914 3.664-2.203 6.222a24.64 24.64 0 0 0 .015 5.395c.297 2.531 1.043 4.578 2.2 6.008c1.167 1.449 2.718 2.261 4.605 2.414c.238.02 1.02.02 1.312 0a8.61 8.61 0 0 0 1.532-.223c.464-.117.972-.316.972-.379c-.004-.082-.394-2.14-.41-2.137c-.008 0-.078.032-.16.067a5.24 5.24 0 0 1-1.086.32c-.402.074-.57.086-1.094.086c-.558 0-.719-.016-1.117-.117c-1.73-.438-2.953-1.856-3.629-4.2c-.347-1.21-.527-2.57-.566-4.265c-.074-3.164.426-5.7 1.465-7.438c.785-1.308 1.875-2.132 3.125-2.355c.16-.027.285-.035.59-.043c.847-.016 1.417.086 2.12.375a5.2 5.2 0 0 0 .204.082c0-.004.125-.488.28-1.074c.153-.59.278-1.078.278-1.09c0-.027-.32-.184-.523-.254a6.391 6.391 0 0 0-1.332-.273a12.433 12.433 0 0 0-1.164-.04Zm47.914.097c-.54.004-1.094.035-1.59.086c-.684.07-1.297.18-1.867.328l-.063.016v22.254h2.578V89.36h.66c.696 0 .946.016 1.254.079c1.239.253 1.973 1.05 2.442 2.644c.164.547.242.918.41 1.977c.438 2.687.813 4.421 1.098 5.066l.039.09h2.61l-.036-.082c-.106-.266-.305-.942-.438-1.492c-.238-.993-.457-2.11-.726-3.704c-.152-.886-.219-1.234-.32-1.664c-.489-2.02-1.247-3.183-2.403-3.699a7.12 7.12 0 0 0-.281-.113c-.098-.027-.117-.04-.117-.07c0-.028.043-.055.246-.157c1.234-.613 2.152-1.492 2.703-2.601c.43-.856.633-1.746.66-2.89c.047-1.716-.379-3.165-1.246-4.247c-.879-1.094-2.242-1.723-4.133-1.91a14.258 14.258 0 0 0-1.48-.055m-112.352.094v.031c0 .031-1.316 22.29-1.328 22.492l-.008.067h2.305l.215-4.684c.117-2.574.226-4.996.242-5.379c.16-3.746.238-6.304.238-7.656c0-.324.008-.652.012-.723c.012-.132.012-.132.055-.132c.054 0 .043-.043.129.449c.246 1.422.601 3.09 1.097 5.148c.293 1.235.676 2.723 1.989 7.746l1.324 5.079l.82.003l.824.004l1.446-5.507a1584.91 1584.91 0 0 0 1.613-6.157c.496-1.949 1-4.152 1.445-6.355l.086-.41h.145l-.012.191c-.023.434-.031 1.86-.012 2.703c.031 1.582.09 3.035.219 5.32c.027.52.504 10.286.504 10.352c0 .004.539.008 1.2.008h1.198v-.055c0-.031-.293-5.097-.648-11.258c-.356-6.156-.649-11.215-.649-11.238v-.039h-2.878l-.016.059c-.043.164-2.524 10.222-2.672 10.843c-.75 3.106-1.14 4.926-1.473 6.825c-.07.406-.058.367-.12.367h-.052l-.035-.196c-.328-1.78-.8-3.816-1.601-6.906c-.2-.77-2.817-10.976-2.817-10.984c0-.004-.625-.008-1.39-.008Zm34.227 0v22.59h8.941V97.04h-6.367V76.625Zm11.535 0v22.59h9.008v-2.238H52.91V88.48h5.664v-2.16H52.91v-7.457h6.035v-2.238Zm24.336 0l.004 8.004c.004 5.894.011 8.062.023 8.226c.059.704.106 1.086.184 1.528c.46 2.664 1.68 4.293 3.64 4.867c.32.094.72.164 1.125.207c.22.02 1.227.004 1.438-.023c.887-.121 1.578-.368 2.207-.786c.266-.175.434-.308.68-.55a5.391 5.391 0 0 0 1.086-1.524c.535-1.094.82-2.351.945-4.168c.012-.199.02-2.347.023-8.027l.004-7.754h-2.574v7.707c0 4.906-.008 7.852-.016 8.102c-.035.851-.117 1.5-.265 2.109c-.371 1.527-1.114 2.39-2.242 2.61c-.375.07-.817.07-1.176 0c-1.512-.31-2.336-1.805-2.492-4.52c-.012-.172-.016-3.156-.016-8.14l-.004-7.868Zm15.344 0v22.59h8.945V97.04h-6.367V76.625Zm11.535 0v22.59h9.008v-2.238h-6.43V88.48h5.664v-2.16h-5.664v-7.457h6.031v-2.238Zm15.699 1.977c.25 0 .496.007.605.02c.618.07 1.06.187 1.477.394c.75.359 1.281.992 1.57 1.851c.172.516.258 1.07.278 1.781c.023.97-.133 1.793-.485 2.516a3.89 3.89 0 0 1-.757 1.094c-.668.668-1.532 1.043-2.563 1.117c-.125.008-.492.016-.813.016h-.578v-8.657l.04-.015c.066-.024.378-.074.593-.098c.125-.012.38-.02.633-.02Zm-87.945.035c.398 0 .683.066 1.039.242c.445.223.797.55 1.133 1.058c.226.336.37.614.55 1.051c.68 1.664 1.028 4.203.993 7.25a28.669 28.669 0 0 1-.11 2.387c-.215 2.531-.75 4.402-1.566 5.496a3.68 3.68 0 0 1-.61.617a2.333 2.333 0 0 1-1.054.446c-.88.117-1.668-.204-2.282-.934c-.925-1.102-1.52-3.129-1.734-5.906c-.187-2.434-.078-5.137.281-7.047c.399-2.121 1.047-3.508 1.957-4.192c.422-.32.875-.472 1.403-.468m0 0\\\"/>\"\n\t\t},\n\t\t\"mongodb\": {\n\t\t\t\"body\": \"<path fill=\\\"#439934\\\" fill-rule=\\\"evenodd\\\" d=\\\"M88.038 42.812c1.605 4.643 2.761 9.383 3.141 14.296c.472 6.095.256 12.147-1.029 18.142c-.035.165-.109.32-.164.48c-.403.001-.814-.049-1.208.012c-3.329.523-6.655 1.065-9.981 1.604c-3.438.557-6.881 1.092-10.313 1.687c-1.216.21-2.721-.041-3.212 1.641c-.014.046-.154.054-.235.08l.166-10.051l-.169-24.252l1.602-.275c2.62-.429 5.24-.864 7.862-1.281c3.129-.497 6.261-.98 9.392-1.465c1.381-.215 2.764-.412 4.148-.618\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#45A538\\\" fill-rule=\\\"evenodd\\\" d=\\\"M61.729 110.054c-1.69-1.453-3.439-2.842-5.059-4.37c-8.717-8.222-15.093-17.899-18.233-29.566c-.865-3.211-1.442-6.474-1.627-9.792c-.13-2.322-.318-4.665-.154-6.975c.437-6.144 1.325-12.229 3.127-18.147l.099-.138c.175.233.427.439.516.702c1.759 5.18 3.505 10.364 5.242 15.551c5.458 16.3 10.909 32.604 16.376 48.9c.107.318.384.579.583.866z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#46A037\\\" fill-rule=\\\"evenodd\\\" d=\\\"M88.038 42.812c-1.384.206-2.768.403-4.149.616c-3.131.485-6.263.968-9.392 1.465c-2.622.417-5.242.852-7.862 1.281l-1.602.275l-.012-1.045c-.053-.859-.144-1.717-.154-2.576c-.069-5.478-.112-10.956-.18-16.434c-.042-3.429-.105-6.857-.175-10.285c-.043-2.13-.089-4.261-.185-6.388c-.052-1.143-.236-2.28-.311-3.423c-.042-.657.016-1.319.029-1.979c.817 1.583 1.616 3.178 2.456 4.749c1.327 2.484 3.441 4.314 5.344 6.311c7.523 7.892 12.864 17.068 16.193 27.433\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#409433\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.036 80.753c.081-.026.222-.034.235-.08c.491-1.682 1.996-1.431 3.212-1.641c3.432-.594 6.875-1.13 10.313-1.687c3.326-.539 6.652-1.081 9.981-1.604c.394-.062.805-.011 1.208-.012c-.622 2.22-1.112 4.488-1.901 6.647c-.896 2.449-1.98 4.839-3.131 7.182a49.142 49.142 0 0 1-6.353 9.763c-1.919 2.308-4.058 4.441-6.202 6.548c-1.185 1.165-2.582 2.114-3.882 3.161l-.337-.23l-1.214-1.038l-1.256-2.753a41.402 41.402 0 0 1-1.394-9.838l.023-.561l.171-2.426c.057-.828.133-1.655.168-2.485c.129-2.982.241-5.964.359-8.946\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4FAA41\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.036 80.753c-.118 2.982-.23 5.964-.357 8.947c-.035.83-.111 1.657-.168 2.485l-.765.289c-1.699-5.002-3.399-9.951-5.062-14.913c-2.75-8.209-5.467-16.431-8.213-24.642a4498.887 4498.887 0 0 0-6.7-19.867c-.105-.31-.407-.552-.617-.826l4.896-9.002c.168.292.39.565.496.879a6167.476 6167.476 0 0 1 6.768 20.118c2.916 8.73 5.814 17.467 8.728 26.198c.116.349.308.671.491 1.062l.67-.78z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4AA73C\\\" fill-rule=\\\"evenodd\\\" d=\\\"M43.155 32.227c.21.274.511.516.617.826a4498.887 4498.887 0 0 1 6.7 19.867c2.746 8.211 5.463 16.433 8.213 24.642c1.662 4.961 3.362 9.911 5.062 14.913l.765-.289l-.171 2.426l-.155.559c-.266 2.656-.49 5.318-.814 7.968c-.163 1.328-.509 2.632-.772 3.947c-.198-.287-.476-.548-.583-.866c-5.467-16.297-10.918-32.6-16.376-48.9a3888.972 3888.972 0 0 0-5.242-15.551c-.089-.263-.34-.469-.516-.702z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#57AE47\\\" fill-rule=\\\"evenodd\\\" d=\\\"m65.202 70.702l-.67.78c-.183-.391-.375-.714-.491-1.062c-2.913-8.731-5.812-17.468-8.728-26.198a6167.476 6167.476 0 0 0-6.768-20.118c-.105-.314-.327-.588-.496-.879l6.055-7.965c.191.255.463.482.562.769c1.681 4.921 3.347 9.848 5.003 14.778c1.547 4.604 3.071 9.215 4.636 13.813c.105.308.47.526.714.786l.012 1.045c.058 8.082.115 16.167.171 24.251\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#60B24F\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.021 45.404c-.244-.26-.609-.478-.714-.786c-1.565-4.598-3.089-9.209-4.636-13.813c-1.656-4.93-3.322-9.856-5.003-14.778c-.099-.287-.371-.514-.562-.769c1.969-1.928 3.877-3.925 5.925-5.764c1.821-1.634 3.285-3.386 3.352-5.968c.003-.107.059-.214.145-.514l.519 1.306c-.013.661-.072 1.322-.029 1.979c.075 1.143.259 2.28.311 3.423c.096 2.127.142 4.258.185 6.388c.069 3.428.132 6.856.175 10.285c.067 5.478.111 10.956.18 16.434c.008.861.098 1.718.152 2.577\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#A9AA88\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.598 107.085c.263-1.315.609-2.62.772-3.947c.325-2.649.548-5.312.814-7.968l.066-.01l.066.011a41.402 41.402 0 0 0 1.394 9.838c-.176.232-.425.439-.518.701c-.727 2.05-1.412 4.116-2.143 6.166c-.1.28-.378.498-.574.744l-.747-2.566z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B6B598\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.476 112.621c.196-.246.475-.464.574-.744c.731-2.05 1.417-4.115 2.143-6.166c.093-.262.341-.469.518-.701l1.255 2.754c-.248.352-.59.669-.728 1.061l-2.404 7.059c-.099.283-.437.483-.663.722z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C2C1A7\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.171 116.605c.227-.238.564-.439.663-.722l2.404-7.059c.137-.391.48-.709.728-1.061l1.215 1.037c-.587.58-.913 1.25-.717 2.097l-.369 1.208c-.168.207-.411.387-.494.624c-.839 2.403-1.64 4.819-2.485 7.222c-.107.305-.404.544-.614.812c-.109-1.387-.22-2.771-.331-4.158\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#CECDB7\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.503 120.763c.209-.269.506-.508.614-.812c.845-2.402 1.646-4.818 2.485-7.222c.083-.236.325-.417.494-.624l-.509 5.545c-.136.157-.333.294-.398.477c-.575 1.614-1.117 3.24-1.694 4.854c-.119.333-.347.627-.525.938c-.158-.207-.441-.407-.454-.623c-.051-.841-.016-1.688-.013-2.533\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DBDAC7\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.969 123.919c.178-.312.406-.606.525-.938c.578-1.613 1.119-3.239 1.694-4.854c.065-.183.263-.319.398-.477l.012 3.64l-1.218 3.124z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EBE9DC\\\" fill-rule=\\\"evenodd\\\" d=\\\"m65.38 124.415l1.218-3.124l.251 3.696z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#CECDB7\\\" fill-rule=\\\"evenodd\\\" d=\\\"M67.464 110.898c-.196-.847.129-1.518.717-2.097l.337.23z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4FAA41\\\" fill-rule=\\\"evenodd\\\" d=\\\"m64.316 95.172l-.066-.011l-.066.01l.155-.559z\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"mongodb-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#94795D\\\" fill-rule=\\\"evenodd\\\" d=\\\"M87.259 100.139c.169-.325.331-.612.469-.909c.087-.19.221-.228.41-.223c1.133.032 2.266.067 3.4.078c.963.01 1.928-.008 2.892-.019c1.086-.013 2.172-.07 3.257-.039c1.445.042 2.853.325 4.16.968c1.561.769 2.742 1.94 3.547 3.483a8.71 8.71 0 0 1 .931 3.14c.172 1.608.059 3.179-.451 4.717c-.632 1.906-1.832 3.365-3.499 4.458c-1.283.841-2.69 1.338-4.198 1.622c-1.596.301-3.197.204-4.798.209c-1.756.007-3.511-.031-5.267-.051c-.307-.003-.351-.061-.27-.354l.075-.27c.171-.538.263-.562.809-.652a2.83 2.83 0 0 0 1.087-.413c.184-.122.26-.44.332-.685c.062-.214.065-.449.067-.675c.025-3.425.051-6.849.065-10.272a44.077 44.077 0 0 0-.065-2.596c-.034-.605-.357-1.019-1.077-1.162c-.56-.111-1.124-.197-1.687-.296zm16.076 8.293c-.076-.682-.113-1.37-.235-2.042c-.292-1.613-.998-3.018-2.238-4.119c-2.005-1.779-4.419-2.053-6.949-1.841c-.576.048-.7.245-.709.837c-.014.84-.028 1.68-.029 2.52c-.004 2.664-.004 5.328 0 7.992c.001.758.009 1.516.031 2.272c.024.774.305 1.429 1.063 1.729c1.195.473 2.452.529 3.706.336c2.003-.307 3.404-1.474 4.344-3.223c.744-1.388.954-2.903 1.016-4.461m4.869 9.071c-.024-.415.146-.758.356-1.073c.057-.085.253-.081.388-.108l1.146-.227c.405-.086.618-.358.675-.755c.038-.262.074-.527.077-.792a879.6 879.6 0 0 0 .059-6.291c.01-2.1.002-4.2.002-6.3l-.009-.401c-.041-.675-.367-1.025-1.037-1.124l-1.453-.221c-.179-.024-.244-.11-.179-.269c.112-.271.219-.552.377-.796c.059-.09.258-.125.392-.122c.694.01 1.388.062 2.082.061l6.041-.036c1.164-.001 2.288.202 3.332.759c1.149.612 1.792 1.559 1.976 2.849c.192 1.355-.219 2.497-1.209 3.404c-.407.374-.934.618-1.406.922l-.154.096c.438.161.855.3 1.261.466c1.188.487 2.133 1.248 2.633 2.463c.395.959.395 1.959.161 2.953c-.364 1.556-1.389 2.591-2.722 3.374c-1.251.735-2.605 1.163-4.047 1.235c-1.33.067-2.666.042-3.999.057l-.772.004a996.106 996.106 0 0 1-3.854-.096zm5.537-6.089h.013c0 .658-.009 1.316.003 1.974c.008.426-.007.864.085 1.274c.138.613.418 1.166 1.106 1.342a6.671 6.671 0 0 0 2.818.124c1.177-.205 2.116-.795 2.631-1.916c.382-.833.439-1.716.308-2.618c-.174-1.188-.805-2.05-1.854-2.615c-.688-.371-1.422-.598-2.204-.628c-.876-.033-1.753-.035-2.629-.062c-.246-.007-.28.118-.279.32c.005.934.002 1.869.002 2.805m1.865-4.475c.479-.024 1.021-.031 1.56-.085c1.032-.103 1.759-.622 2.138-1.609c.193-.501.185-1.017.19-1.538c.015-1.357-.777-2.469-2.066-2.929c-.995-.355-2.021-.361-3.053-.333c-.418.011-.605.194-.611.615l-.062 5.489c-.003.218.091.312.303.319z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#50382B\\\" fill-rule=\\\"evenodd\\\" d=\\\"m10.543 116.448l-.073.944c-.68 0-1.307-.005-1.934.002c-1.181.012-2.362.031-3.544.048l-.114.007c-.169-.02-.476-.02-.484-.07c-.05-.281-.034-.576-.021-.867c.001-.033.116-.075.183-.091l.919-.205c.573-.149.775-.396.802-.988c.031-.667.062-1.335.065-2.002c.009-1.642-.001-3.282.006-4.924c.001-.384-.132-.67-.49-.826a43.787 43.787 0 0 0-1.285-.546c-.204-.082-.469-.127-.445-.401c.024-.279.281-.352.523-.407c1.002-.229 2.005-.452 3.004-.696c.322-.079.63-.212 1.015-.346c.02.208.057.406.053.604l-.059.941c-.001.106.054.248.133.307c.048.037.209-.03.289-.092c.854-.65 1.758-1.211 2.789-1.538c1.597-.507 2.968-.037 3.928 1.34c.338.485.339.485.808.146c.805-.585 1.647-1.101 2.589-1.441c2.068-.747 4.055.201 4.774 2.284c.262.756.362 1.537.36 2.335l-.019 5.298c-.001.437.144.686.56.822c.467.153.951.258 1.477.396l-.122.911c-.598 0-1.148-.004-1.698.001c-1.344.012-2.688.019-4.031.05c-.234.006-.295-.052-.307-.271c-.039-.701-.045-.7.615-.858l.222-.057c.645-.176.86-.374.865-1.028c.015-1.878.054-3.761-.041-5.635c-.099-1.944-1.642-2.979-3.526-2.481a5.194 5.194 0 0 0-1.69.814c-.175.125-.208.269-.194.488c.053.828.086 1.657.093 2.486c.012 1.451-.006 2.902 0 4.354c.002.588.203.813.784.949l.863.199l.16.036c.012.276.023.552.01.828c-.008.173-.142.188-.292.185c-.839-.021-1.679-.049-2.518-.047c-1.021.002-2.041.031-3.061.049h-.24c0-.293-.014-.573.01-.852c.005-.067.123-.161.204-.182l1.006-.213c.427-.105.631-.324.655-.758c.114-2.01.196-4.021.007-6.03a3.695 3.695 0 0 0-.326-1.145c-.515-1.138-1.674-1.613-3.011-1.271c-.635.162-1.208.453-1.75.82a.795.795 0 0 0-.378.695c0 2.005.007 4.01.013 6.014l.011.773c.012.539.241.823.776.939c.344.078.692.131 1.082.203\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F382B\\\" fill-rule=\\\"evenodd\\\" d=\\\"M71.001 105.285c.155.754.152 1.432-.402 1.946c-.55.511-1.246.339-1.925.225c.063.358.133.662.167.97c.247 2.289-.738 3.988-2.861 4.959c-.802.366-1.653.502-2.522.572c-.432.034-.81.364-.851.719c-.042.36.184.73.636.838c.533.127 1.089.163 1.636.226c1.174.134 2.361.195 3.521.405c1.754.316 2.733 1.847 2.424 3.609c-.275 1.568-1.183 2.709-2.449 3.584c-2.133 1.478-4.473 1.91-6.965 1.156c-1.425-.432-2.43-1.369-2.777-2.885c-.174-.759.011-1.446.582-1.961c.679-.61 1.418-1.154 2.129-1.73l.23-.231l-.264-.185c-.725-.344-1.305-.815-1.53-1.633c-.077-.277.003-.459.238-.601c.4-.241.798-.486 1.193-.735c.186-.116.37-.236.543-.37c.236-.18.215-.314-.067-.418c-.656-.242-1.239-.593-1.691-1.133c-.755-.901-.969-1.974-.907-3.107c.097-1.77 1.058-2.936 2.62-3.686c1.857-.891 3.72-.947 5.613-.135c.7.3 1.438.364 2.189.312c.561-.04 1.051-.252 1.49-.711m-6.843 12.681c-1.394-.012-1.831.16-2.649.993c-.916.934-.911 2.229.003 3.167c.694.711 1.56 1.044 2.523 1.144c1.125.116 2.233.069 3.255-.494c1.09-.603 1.632-1.723 1.387-2.851c-.203-.931-.889-1.357-1.724-1.602c-.95-.278-1.932-.331-2.795-.357m-2.738-8.908c.051.387.072.779.158 1.158c.223.982.65 1.845 1.627 2.282c1.147.515 2.612.294 3.114-1.316a4.853 4.853 0 0 0-.113-3.274a2.512 2.512 0 0 0-.91-1.184c-.996-.695-2.793-.787-3.525.749c-.238.499-.331 1.03-.351 1.585\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F372B\\\" fill-rule=\\\"evenodd\\\" d=\\\"M47.35 105.038c.037.171.111.365.113.56c.003.371-.037.742-.058 1.113v.322l.314-.24c.86-.708 1.784-1.311 2.86-1.636c1.942-.585 3.882.478 4.515 2.456c.24.752.335 1.525.344 2.311c.02 1.746.032 3.492.05 5.238c.006.627.078.739.671.92a7.4 7.4 0 0 0 1.03.229c.191.03.273.105.263.292l.002.172c-.007.723-.057.756-.758.754c-1.678-.003-3.355.007-5.033.021c-.5.004-.501.019-.551-.475l-.01-.284c.031-.426.041-.422.46-.484c.282-.042.562-.107.837-.179c.283-.073.419-.282.457-.562c.019-.142.044-.284.043-.426c-.024-1.908.007-3.818-.097-5.723c-.084-1.541-1.26-2.459-2.807-2.354a4.047 4.047 0 0 0-2.071.743c-.413.289-.496.706-.494 1.155c.008 1.784.025 3.568.044 5.353c.004.391.015.782.052 1.17c.039.424.188.595.604.687c.398.088.804.139 1.229.21l.036.328c.014.765-.066.822-.809.819c-1.735-.007-3.47.004-5.204.023c-.273.004-.389-.082-.382-.348l-.004-.114c-.045-.689-.025-.715.627-.827l.308-.062c.706-.159.887-.347.897-1.064c.033-2.271.045-4.541.068-6.812c.003-.326-.12-.579-.424-.714a53.88 53.88 0 0 0-1.287-.544c-.238-.098-.51-.16-.519-.489c-.006-.232.242-.437.581-.506c.681-.138 1.368-.253 2.041-.422c.67-.167 1.328-.391 2.062-.611\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F382B\\\" fill-rule=\\\"evenodd\\\" d=\\\"M84.865 110.97c-.032 2.121-.583 3.836-2.083 5.123c-1.9 1.633-4.864 2.188-7.287.967c-1.034-.521-1.794-1.32-2.289-2.357c-.759-1.595-.949-3.272-.553-4.99c.392-1.699 1.421-2.93 2.961-3.727c1.584-.819 3.252-1.139 5.011-.709c2.225.543 3.824 2.357 4.142 4.667c.057.405.079.815.098 1.026m-2.577 1.149l-.086-.01c0-.2.011-.4-.002-.6c-.073-1.246-.353-2.433-1.075-3.476c-.685-.988-1.618-1.571-2.832-1.656c-1.359-.096-2.501.664-2.902 2.052c-.602 2.084-.398 4.115.66 6.024c.461.832 1.144 1.446 2.059 1.769c1.793.631 3.383-.186 3.85-2.022c.172-.678.222-1.387.328-2.081\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4F372B\\\" fill-rule=\\\"evenodd\\\" d=\\\"M40.819 111.134c-.037 1.522-.396 2.929-1.336 4.152c-1.007 1.31-2.391 2.01-3.965 2.305c-1.861.348-3.609.032-5.104-1.217c-.71-.594-1.195-1.355-1.515-2.221c-.525-1.42-.656-2.875-.333-4.358c.345-1.587 1.241-2.8 2.63-3.614c1.606-.939 3.339-1.358 5.19-.936c2.38.544 3.754 2.095 4.262 4.443c.102.474.116.964.171 1.446m-2.606 1.004l-.069-.01v-.286c-.039-1.396-.312-2.726-1.145-3.886c-.617-.861-1.443-1.401-2.502-1.552c-1.726-.246-2.854.778-3.228 2.169c-.488 1.817-.335 3.612.42 5.335c.471 1.074 1.215 1.911 2.358 2.317c1.782.633 3.396-.205 3.847-2.034c.166-.669.216-1.367.319-2.053\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#439934\\\" fill-rule=\\\"evenodd\\\" d=\\\"M82.362 33.544c1.227 3.547 2.109 7.168 2.4 10.92c.36 4.656.196 9.28-.786 13.859l-.126.366c-.308.001-.622-.038-.923.009c-2.543.4-5.083.814-7.624 1.226c-2.627.426-5.256.835-7.878 1.289c-.929.16-2.079-.031-2.454 1.253l-.18.061l.127-7.678l-.129-18.526l1.224-.21c2.001-.327 4.002-.66 6.006-.979c2.39-.379 4.782-.749 7.174-1.119c1.056-.162 2.113-.313 3.169-.471\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#45A538\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.265 84.911c-1.291-1.11-2.627-2.171-3.864-3.339c-6.658-6.28-11.529-13.673-13.928-22.586c-.661-2.452-1.101-4.945-1.243-7.479c-.1-1.774-.243-3.563-.117-5.328c.333-4.693 1.012-9.341 2.388-13.862l.076-.105c.134.178.326.336.394.537c1.344 3.956 2.677 7.916 4.004 11.879c4.169 12.451 8.333 24.905 12.509 37.354c.082.243.293.442.445.661z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#46A037\\\" fill-rule=\\\"evenodd\\\" d=\\\"M82.362 33.544c-1.057.157-2.114.309-3.169.471c-2.392.37-4.784.74-7.174 1.119c-2.003.318-4.004.651-6.006.979l-1.224.21l-.01-.798c-.041-.656-.109-1.312-.118-1.968l-.137-12.554c-.032-2.619-.08-5.238-.133-7.856a198.423 198.423 0 0 0-.141-4.88c-.04-.873-.181-1.742-.237-2.615c-.033-.502.011-1.008.022-1.512c.624 1.209 1.235 2.427 1.876 3.627c1.013 1.897 2.628 3.295 4.083 4.82c5.746 6.031 9.825 13.039 12.368 20.957\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#409433\\\" fill-rule=\\\"evenodd\\\" d=\\\"m64.792 62.527l.18-.061c.375-1.284 1.525-1.093 2.454-1.253c2.622-.454 5.251-.863 7.878-1.289c2.541-.411 5.081-.825 7.624-1.226c.301-.047.615-.008.923-.009c-.475 1.696-.849 3.429-1.452 5.078c-.685 1.87-1.513 3.696-2.392 5.486a37.595 37.595 0 0 1-4.853 7.458c-1.466 1.762-3.1 3.393-4.737 5.002c-.906.889-1.972 1.614-2.966 2.414l-.258-.176l-.927-.792l-.959-2.104a31.65 31.65 0 0 1-1.065-7.516l.018-.428l.131-1.854c.043-.633.101-1.265.128-1.898c.096-2.276.182-4.554.273-6.832\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4FAA41\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64.792 62.527c-.09 2.278-.176 4.557-.273 6.835c-.027.634-.084 1.266-.128 1.898l-.584.221c-1.298-3.821-2.597-7.602-3.867-11.392c-2.101-6.271-4.176-12.551-6.274-18.824a3423.013 3423.013 0 0 0-5.118-15.176c-.081-.236-.311-.422-.471-.631l3.74-6.877c.129.223.298.432.379.672c1.73 5.12 3.457 10.241 5.169 15.367c2.228 6.67 4.441 13.343 6.667 20.014c.089.266.235.512.375.811l.512-.596z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4AA73C\\\" fill-rule=\\\"evenodd\\\" d=\\\"M48.076 25.458c.161.209.391.395.471.631a3379.774 3379.774 0 0 1 5.118 15.176c2.098 6.273 4.173 12.553 6.274 18.824c1.27 3.79 2.569 7.57 3.867 11.392l.584-.221l-.131 1.854l-.119.427c-.203 2.029-.374 4.062-.622 6.087c-.124 1.015-.389 2.011-.59 3.015c-.151-.219-.363-.418-.445-.661c-4.177-12.449-8.34-24.903-12.509-37.354a3010.791 3010.791 0 0 0-4.004-11.879c-.068-.201-.26-.359-.394-.537z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#57AE47\\\" fill-rule=\\\"evenodd\\\" d=\\\"m64.918 54.849l-.512.596c-.14-.299-.286-.545-.375-.811c-2.226-6.671-4.439-13.344-6.667-20.014a4618.057 4618.057 0 0 0-5.169-15.367c-.081-.24-.25-.449-.379-.672l4.625-6.084c.146.194.354.367.429.586c1.284 3.76 2.556 7.523 3.822 11.289c1.182 3.518 2.346 7.04 3.542 10.552c.08.235.359.401.545.601l.01.798z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#60B24F\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64.779 35.525c-.187-.199-.465-.365-.545-.601c-1.195-3.512-2.36-7.034-3.542-10.552a2495.581 2495.581 0 0 0-3.822-11.289c-.075-.219-.283-.392-.429-.586c1.504-1.473 2.961-2.999 4.526-4.404c1.391-1.248 2.509-2.586 2.561-4.559l.11-.393l.396.998c-.01.504-.055 1.01-.022 1.512c.057.873.198 1.742.237 2.615c.073 1.625.108 3.253.141 4.88c.053 2.618.101 5.237.133 7.856l.137 12.554c.01.657.079 1.313.119 1.969\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#A9AA88\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.929 82.642c.201-1.004.466-2 .59-3.015c.248-2.024.419-4.058.622-6.087l.051-.008l.05.009a31.65 31.65 0 0 0 1.065 7.516c-.135.178-.324.335-.396.535c-.555 1.566-1.079 3.145-1.637 4.71c-.076.214-.29.381-.439.568l-.571-1.96z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#B6B598\\\" fill-rule=\\\"evenodd\\\" d=\\\"M62.835 86.871c.149-.188.363-.354.439-.568c.558-1.565 1.082-3.144 1.637-4.71c.071-.2.261-.357.396-.535l.959 2.104c-.189.268-.451.511-.556.81l-1.836 5.392c-.076.217-.333.369-.507.552z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#C2C1A7\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.367 89.915c.173-.183.431-.335.507-.552l1.836-5.392c.104-.299.367-.542.556-.81l.928.791c-.448.443-.697.955-.547 1.602l-.282.923c-.128.158-.314.296-.377.477c-.641 1.836-1.252 3.682-1.898 5.517c-.082.232-.309.415-.468.621z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#CECDB7\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.621 93.091c.16-.206.387-.389.468-.621c.646-1.835 1.258-3.681 1.898-5.517c.063-.181.249-.318.377-.477l-.389 4.236c-.104.12-.254.225-.304.364l-1.294 3.708c-.091.253-.265.479-.401.716c-.121-.158-.337-.311-.347-.475c-.038-.642-.011-1.289-.008-1.934\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#DBDAC7\\\" fill-rule=\\\"evenodd\\\" d=\\\"M63.977 95.501c.136-.237.31-.463.401-.716l1.294-3.708c.05-.14.201-.244.304-.364l.01 2.78l-.931 2.387z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#EBE9DC\\\" fill-rule=\\\"evenodd\\\" d=\\\"m65.055 95.88l.931-2.387l.192 2.824z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#CECDB7\\\" fill-rule=\\\"evenodd\\\" d=\\\"M66.646 85.554c-.149-.646.099-1.158.547-1.602l.258.176z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4FAA41\\\" fill-rule=\\\"evenodd\\\" d=\\\"m64.242 73.542l-.05-.009l-.051.008l.119-.427z\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"mongoose\": {\n\t\t\t\"body\": \"<path fill=\\\"#850000\\\" d=\\\"M69.953 39.309c-1.676.07-4.508.52-4.508.71c0 .079 1.996 1.079 2.149 1.079c.14 0 2.457 1.156 2.972 1.476c.672.43 1.153.82 1.012.82c-.09 0-2.469-.921-3.371-1.308c-.734-.309-3.785-1.219-5.27-1.57c-.804-.188-1.144-.258-2.511-.508c-2.016-.368-4.387-.39-5.418-.051c-1.477.48-1.809 1.07-1.809 3.246c0 1.2.059 1.707.32 2.785c.114.469.434 1.5.583 1.848c.043.11.183.45.3.75c.121.297.485 1.066.805 1.695c1.797 3.567 4.488 6.54 8.281 9.156c1.196.82 4.446 2.375 5.75 2.747c.332.09.442.277.172.277c-.3 0-3.05-.758-3.613-.996a9.982 9.982 0 0 0-.652-.262c-1.957-.789-4.457-2.414-6.524-4.262a21.38 21.38 0 0 1-5.312-7.257c-.793-1.79-1.332-3.875-1.465-5.692c-.078-1.039-.16-1.289-.43-1.277c-.09 0-.945-.031-1.887-.082c-2.562-.11-6.062.172-9.527.77c-6.625 1.128-13.773 3.734-21.129 7.706a94.93 94.93 0 0 0-3.625 2.067c-.14.082-.582.351-.984.601c-.399.25-.871.528-1.043.637c-.38.223-4.586 3.078-5.09 3.457c-.188.137-.711.527-1.152.848C4.98 60.195.633 63.742.383 64.102c-.121.18.07.27.328.18c.133-.052.473-.122.746-.16c.281-.044 1.004-.231 1.605-.43c.61-.192 1.266-.391 1.454-.442c1.488-.348 2.09-.469 2.96-.598c.395-.05.977-.14 1.305-.191c4.078-.598 6.024-.746 7.84-.61c3.945.32 7.719.993 9.879 1.758c1.617.582 4.906 2.36 6.352 3.426c.836.63 3.523 3.305 4.117 4.113c.46.641.972 1.2 1.093 1.2c.04 0 .09-2.04.102-4.524l.027-4.512l5.282-.03c4.156-.02 5.308.011 5.379.1c.101.13.343.56 1.136 2.024c.754 1.41 1.125 2.09 1.356 2.496c.12.223.398.739.633 1.149c.218.41.628 1.168.91 1.687c.281.52.511.961.511.98c0 .09.414.63.485.63c.039 0 .14-.153.21-.32c.079-.18.29-.579.462-.88c.18-.3.5-.886.722-1.296c.223-.41.524-.98.684-1.25c.441-.79.902-1.645 1.285-2.344A84.813 84.813 0 0 1 58.5 63.96c.129-.25.29-.512.34-.578c.082-.09 1.265-.121 5.543-.102l5.43.031l.03 8.817c.02 6.945.048 8.805.15 8.805c.058-.012.46-.243.874-.532c.582-.406.832-.656 1.102-1.117c.613-1.047 2.351-2.695 3.515-3.336A16.556 16.556 0 0 1 80 74.254c1.605-.34 2.078-.39 5.723-.52c6.652-.23 7.636-.27 7.687-.32c.031-.027-.058-.289-.191-.59c-.14-.289-.38-.828-.551-1.187c-.633-1.367-.633-1.825.031-2.496c.45-.47 1.613-.88 3.613-1.278c.329-.07.743-.16.91-.218c.173-.051.383-.09.473-.09c.254 0 2.25-.489 2.672-.649c.29-.12 1.856-.46 3.723-.82c.812-.16 2.922-.578 4.668-.93c1.105-.218 2.258-.449 2.558-.508c.301-.058.735-.148.954-.187c.222-.05.511-.113.652-.133c.14-.027.844-.168 1.558-.316a33.704 33.704 0 0 1 1.614-.313c.504-.047 4.289-.957 5.16-1.238c1.387-.45 1.797-.629 2.672-1.215c.941-.64 1.203-.988 2.136-2.848c1.036-2.066 1.184-2.414 1.477-3.285c.45-1.386.422-1.914-.152-2.496c-.403-.398-1.266-.808-1.895-.898c-.472-.059-.535-.04-.765.21c-.141.15-.262.329-.262.391c0 .09-.16.528-.61 1.606c-.043.11-.132.379-.203.597c-.058.223-.18.532-.25.7c-.129.28-.14.23-.09-.547c.051-.77.18-1.418.473-2.399c.051-.187.121-.507.149-.707l.05-.36l-1.043-.417c-1.085-.45-2.02-.84-2.558-1.082c-.184-.066-.633-.246-1.004-.387c-.383-.14-.844-.32-1.035-.41a23.9 23.9 0 0 0-1.055-.437c-.672-.262-3.02-1.059-5.02-1.688a458.117 458.117 0 0 0-4.011-1.21a36.162 36.162 0 0 1-1.406-.388c-.16-.043-.555-.152-.856-.23c-1.766-.488-2.226-.61-2.86-.79a26.367 26.367 0 0 0-1.054-.28c-.191-.047-.71-.168-1.152-.278c-.774-.191-4.016-.937-5.774-1.34l-1.254-.289c-.222-.05-.62-.129-.902-.18c-.273-.05-.844-.16-1.258-.25c-.41-.077-1.293-.25-1.957-.359c-.66-.117-1.453-.257-1.754-.308c-2.773-.5-2.96-.528-7.93-1.078c-3.062-.348-7.18-.641-8.183-.59c-.16 0-1.05.039-1.965.09M58.348 44.23c2.652.86 5.23 2.028 6.996 3.168c1.406.907 3.152 2.356 3.625 3.004l.199.27l-.379-.149c-.21-.09-.652-.28-.984-.441c-1.766-.82-1.957-.887-1.957-.707c0 .047.41.707.902 1.445c.504.75.902 1.41.902 1.47c0 .05-.187-.032-.422-.192c-.902-.618-3.02-1.508-3.14-1.328c-.031.05.62.878 1.457 1.847c.82.969 1.504 1.797 1.504 1.86c0 .148-.16.128-.922-.153c-.785-.277-.984-.308-.984-.117c0 .129 1.695 2.414 2.367 3.203c.191.219.343.43.343.48c0 .239-2.351-1.288-4.015-2.605c-2.38-1.898-4.68-4.445-5.89-6.55c-.997-1.72-1.337-2.645-1.337-3.665c0-.597.028-.718.25-.93c.13-.136.293-.25.352-.25c.058 0 .562.153 1.133.34m31.691 3.555c.961.172 2.277.399 2.91.512c.633.11 1.406.238 1.707.289c.301.059.73.137.953.187c.22.051.653.141.954.211c.992.22 1.234.27 2.859.649c1.746.41 2.129.488 2.66.597c.453.09.902.262.902.34c0 .032-.328.223-.73.43c-.824.41-.996.441-4.387.57c-2.308.098-3.543.07-4.668-.11c-2.27-.35-3.441-.987-4.355-2.366c-.32-.469-.531-.61-1.266-.797c-.27-.082-.683-.192-.902-.262c-.223-.07-.602-.18-.844-.25c-.723-.187-.312-.297 1.145-.297c1.003 0 1.707.067 3.062.297m12.074 13.95a.54.54 0 0 1-.25 0c-.07-.032-.02-.051.121-.051c.137 0 .188.02.13.05zm-.433.117c0 .05-.117.12-.27.152c-.312.078-1.535.43-1.937.558c-.141.051-.594.192-1.004.31c-1.035.3-3.543 1.116-4.215 1.378c-1.266.48-4.238 2.055-4.656 2.477c-.625.609-.817 1.265-.723 2.523c.027.531.098 1.2.16 1.488c.121.63.05.801-.191.489c-.242-.309-.754-1.426-.903-1.977c-.082-.246-.171-.578-.222-.738c-.18-.567-.11-1.239.172-1.645c.379-.582 1.746-1.508 3.351-2.277c.762-.371 2.98-1.13 5.02-1.727c.41-.12.863-.261 1.004-.3c1.445-.489 4.414-.958 4.414-.711m-31.746.671c-.032.028-.121.04-.192.008c-.082-.027-.05-.058.059-.058c.113-.012.172.02.133.05m0 0\\\"/><path fill=\\\"#850000\\\" d=\\\"M48.883 81.832v6.988h5c3.754 0 5.027-.03 5.117-.12c.152-.15.184-13.856.031-13.856c-.05 0-.12.078-.152.168c-.04.09-1.133 1.797-2.438 3.793c-2.066 3.156-2.64 3.925-2.64 3.535c0-.07-3.422-5.41-4.297-6.7a3.725 3.725 0 0 1-.309-.527c-.082-.152-.18-.27-.23-.27c-.043 0-.082 3.145-.082 6.989m0 0\\\"/>\"\n\t\t},\n\t\t\"mongoose-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#850000\\\" d=\\\"M8.983 78.08c-.937.246-2.276 1.019-2.908 1.687l-.622.628l-.173-2.212H2.987L2.935 86.2l-.039 8.033h2.61l.074-5.224c.086-5.895.19-6.455 1.305-7.594c.81-.825 2.08-1.284 3.19-1.158c.936.103 1.588.524 2.082 1.365c.332.564.35.967.407 6.598l.052 6.013h2.61l.051-5.575c.052-5.349.07-5.596.442-6.299c1.357-2.506 4.939-2.89 6.117-.664c.355.664.373 1.033.425 6.611l.069 5.927h2.454l-.056-6.541l-.052-6.526l-.495-.927c-1.092-2.072-4.11-2.878-6.61-1.79c-.408.178-1.184.755-1.73 1.261c-.914.863-1.005.916-1.196.6c-.46-.79-1.219-1.492-1.978-1.86c-.901-.405-2.804-.612-3.684-.37m0 0\\\"/><path fill=\\\"#850000\\\" d=\\\"M30.953 78.097c-2.133.455-4.196 1.98-5.007 3.736c-1.253 2.65-1.201 6.456.122 9.03c1.343 2.632 4.816 4.14 7.971 3.49c4.306-.91 6.313-3.91 6.013-8.977c-.052-.877-.212-1.981-.368-2.489c-.598-1.912-2.327-3.702-4.27-4.422c-1.145-.437-3.296-.61-4.461-.368m3.616 2.528c1.886.875 2.804 2.683 2.788 5.54c-.018 2.896-.864 4.699-2.628 5.596c-1.183.61-3.156.628-4.253.07c-.755-.404-1.656-1.318-2.081-2.125c-.794-1.526-.828-5.085-.069-6.714c.846-1.842 2.242-2.754 4.196-2.771c.85-.017 1.379.086 2.047.404m11.887-2.476c-1.254.368-2.012.789-2.736 1.526c-.386.386-.759.702-.828.702c-.07 0-.139-.507-.139-1.14V78.08l-1.096.05l-1.11.053l-.052 8.016l-.036 8.033h2.645v-5.05c.018-5.332.104-6.208.81-7.261c.495-.773 1.817-1.51 2.983-1.665c1.674-.23 3.386.737 3.773 2.137c.125.442.194 2.735.194 6.264v5.575h2.662l-.052-6.277l-.052-6.26l-.46-.984c-.529-1.105-1.321-1.825-2.574-2.315c-1.093-.422-2.91-.543-3.932-.247m12.87-.07c-2.661.581-4.547 2.598-5.288 5.632c-.334 1.348-.282 3.91.086 5.172c1.08 3.72 3.477 5.562 6.95 5.315c1.34-.105 2.505-.56 3.402-1.35c.6-.527.655-.545.76-.211c.177.577-.105 2.839-.443 3.611c-.667 1.51-1.99 2.193-4.214 2.193c-1.99-.016-3.334-.754-3.65-2.033c-.087-.333-.264-.42-.915-.51a12.985 12.985 0 0 1-1.218-.192c-.369-.07-.408-.017-.408.668c.018 1.682 1.288 3.156 3.334 3.858c.903.317 1.553.403 2.927.403c3.177 0 5.362-1.123 6.42-3.281c.793-1.596.919-3.455.862-11.978l-.052-7.192h-2.293l-.052.915c-.034.507-.104.927-.155.927c-.057 0-.373-.244-.725-.542c-1.34-1.174-3.632-1.773-5.327-1.404zm3.477 2.562c.495.264 1.127.737 1.392 1.088c1.976 2.576 1.603 7.89-.688 9.537c-2.239 1.617-5.36.737-6.47-1.803c-.567-1.3-.706-4.244-.264-5.839c.333-1.284 1.283-2.51 2.363-3.07c.949-.51 2.536-.477 3.667.087m11.072-2.475c-1.461.421-1.903.633-2.874 1.37c-1.887 1.405-2.766 3.559-2.749 6.714c0 2.299.352 3.686 1.305 5.16c1.27 1.946 3.438 3.035 6.082 3.053c3.052.016 5.467-1.337 6.685-3.738l.616-1.227l.546 1.122c1.994 4.193 8.237 5.208 11.783 1.947c.563-.51 1.18-1.226 1.357-1.56c.195-.351.385-.633.437-.633c.057 0 .248.369.425.841c.885 2.107 3.07 3.264 6.19 3.246c1.817 0 3.157-.332 4.375-1.105c.724-.455 1.886-1.756 1.886-2.124c0-.069.087-.35.195-.61l.173-.495l.511.88c2.208 3.858 8.363 4.716 11.71 1.647c.866-.806 2.046-2.891 1.765-3.156c-.088-.086-.686-.23-1.34-.3l-1.161-.155l-.287.594c-.793 1.647-1.92 2.475-3.629 2.614c-2.7.247-4.729-1.422-5.258-4.278c-.087-.508-.122-.967-.07-1.02c.052-.051 2.788-.086 6.065-.086h5.96v-.945c0-1.214-.229-2.406-.718-3.703c-.569-1.509-2.293-3.19-3.862-3.77c-1.696-.633-4.041-.594-5.715.086c-2.804 1.14-4.5 3.984-4.517 7.508v1.21l-.702-.616c-.76-.629-2.275-1.244-4.673-1.873c-2.684-.702-3.582-1.054-4.058-1.6c-.511-.61-.546-1.013-.177-1.716c.407-.807 1.533-1.244 3.211-1.244c1.92 0 2.784.437 3.404 1.7c.35.718.51.892.793.84a20.47 20.47 0 0 1 1.196-.173c.989-.122 1.063-.386.408-1.773c-.863-1.843-2.857-2.788-5.835-2.77c-1.396.016-1.977.086-2.804.42c-1.8.685-2.823 1.895-3.088 3.667l-.125.807l-.546-1.054c-2.75-5.263-10.934-5.154-13.383.174l-.442.966l-.616-1.226c-.777-1.544-1.994-2.632-3.65-3.265c-1.465-.56-3.511-.702-4.799-.35m3.932 2.493c1.816.893 2.718 2.719 2.718 5.505c-.018 3.858-1.799 6.139-4.799 6.139c-1.834 0-3.368-1.019-4.196-2.752c-.438-.946-.477-1.176-.477-3.386c0-2.58.195-3.313 1.218-4.51c1.218-1.434 3.72-1.89 5.536-.996m14.037-.195c.85.35 1.994 1.405 2.401 2.194c.777 1.508.898 4.664.266 6.506c-.355 1.036-1.323 2.176-2.26 2.632c-1.587.807-3.88.541-5.184-.6c-2.15-1.875-2.415-7.134-.46-9.397c1.218-1.44 3.563-2.016 5.238-1.335zm27.298.073c1.397.595 2.436 2.016 2.489 3.4l.034.736h-8.99l.052-.525c.12-1.474 1.143-2.856 2.592-3.576c.95-.477 2.766-.495 3.823-.034zm-20.383 4.96c.706.65 1.695 1.036 4.833 1.876c1.496.404 2.927.881 3.174 1.055c1.517 1.087.724 3.19-1.414 3.702c-1.27.294-2.996.139-4.018-.386c-.707-.351-.92-.599-1.358-1.526l-.528-1.088l-2.08.208l.121-.824c.051-.455.108-1.665.108-2.683v-1.86l.333.529c.174.282.547.737.829.997M69.77 25.244c-1.609.065-4.318.495-4.318.677c0 .077 1.912 1.032 2.055 1.032c.139 0 2.359 1.11 2.848 1.417c.646.41 1.105.785.971.785c-.086 0-2.367-.88-3.23-1.254c-.702-.299-3.624-1.166-5.05-1.504c-.767-.178-1.092-.247-2.402-.485c-1.933-.355-4.2-.373-5.193-.048c-1.413.46-1.73 1.023-1.73 3.108c0 1.145.056 1.634.308 2.666c.104.45.412 1.435.56 1.77c.038.103.172.428.286.719c.116.286.463 1.023.77 1.625c1.721 3.412 4.297 6.26 7.93 8.765c1.143.785 4.262 2.277 5.51 2.633c.317.086.424.268.165.268c-.291 0-2.922-.729-3.464-.958a9.908 9.908 0 0 0-.625-.247c-1.872-.759-4.266-2.315-6.247-4.084a20.48 20.48 0 0 1-5.09-6.954c-.757-1.711-1.273-3.71-1.399-5.449c-.077-.992-.155-1.235-.416-1.222c-.086 0-.902-.03-1.809-.077c-2.448-.105-5.804.164-9.12.737c-6.347 1.078-13.192 3.575-20.24 7.382a88.8 88.8 0 0 0-3.474 1.976c-.133.078-.555.333-.94.577c-.385.238-.837.508-1.001.61c-.364.21-4.392 2.945-4.872 3.308c-.183.135-.686.508-1.107.811c-1.912 1.419-6.077 4.812-6.315 5.155c-.118.173.064.26.316.173c.125-.047.45-.112.71-.152c.27-.038.963-.22 1.54-.41a47.98 47.98 0 0 1 1.396-.422c1.421-.333 1.997-.45 2.835-.572c.373-.052.932-.134 1.249-.182c3.906-.577 5.77-.72 7.507-.585c3.781.308 7.396.945 9.465 1.682c1.547.555 4.698 2.258 6.086 3.282c.798.602 3.373 3.165 3.94 3.94c.443.612.932 1.145 1.05 1.145c.034 0 .086-1.951.095-4.33l.026-4.323l5.059-.03c3.98-.018 5.085.013 5.155.1c.095.122.325.532 1.083 1.937c.725 1.349 1.08 1.998 1.3 2.393c.114.209.382.707.608 1.096c.207.395.602 1.12.87 1.617c.27.5.491.92.491.937c0 .087.394.603.464.603c.04 0 .133-.144.2-.303c.078-.175.28-.555.442-.842c.173-.29.48-.854.693-1.244c.212-.395.503-.936.655-1.196c.424-.755.866-1.578 1.23-2.246c.183-.346.474-.88.642-1.197c.173-.316.425-.762.56-1.005a4.905 4.905 0 0 1 .33-.55c.073-.087 1.209-.118 5.305-.1l5.203.03l.025 8.445c.023 6.654.048 8.431.148 8.431c.055-.009.442-.23.837-.507c.555-.39.797-.628 1.053-1.07c.59-1.002 2.25-2.58 3.368-3.192a15.87 15.87 0 0 1 4.326-1.624c1.54-.325 1.99-.373 5.48-.5c6.373-.22 7.318-.26 7.366-.307c.025-.027-.061-.278-.182-.564c-.134-.277-.368-.793-.53-1.135c-.606-1.314-.606-1.751.027-2.394c.433-.446 1.547-.84 3.463-1.222c.317-.07.711-.152.877-.213c.16-.047.364-.082.45-.082c.239 0 2.154-.473 2.558-.624c.278-.113 1.777-.438 3.567-.784c.777-.152 2.797-.555 4.47-.89c1.058-.208 2.163-.429 2.45-.485c.29-.06.702-.143.914-.182c.212-.048.49-.104.625-.126c.133-.03.81-.16 1.49-.303a34.027 34.027 0 0 1 1.548-.3c.481-.047 4.106-.918 4.942-1.183c1.327-.432 1.72-.602 2.558-1.166c.906-.616 1.153-.95 2.046-2.727c.993-1.98 1.136-2.315 1.414-3.147c.432-1.326.407-1.833-.145-2.388c-.38-.382-1.208-.777-1.815-.864c-.45-.055-.507-.039-.733.204c-.134.144-.247.312-.247.373c0 .082-.156.508-.585 1.54c-.039.103-.125.364-.195.571a6.215 6.215 0 0 1-.239.668c-.125.269-.133.221-.087-.525c.048-.737.175-1.357.452-2.292c.048-.182.117-.491.142-.682l.048-.342l-.997-.403a129.623 129.623 0 0 1-2.452-1.032a67.753 67.753 0 0 0-.964-.373a15.992 15.992 0 0 1-.987-.395a31.478 31.478 0 0 0-1.01-.42c-.647-.247-2.897-1.009-4.809-1.613c-.52-.164-3.546-1.07-3.845-1.157a37.918 37.918 0 0 1-1.343-.373c-.157-.039-.53-.142-.82-.221c-1.69-.468-2.133-.585-2.74-.755a17.671 17.671 0 0 0-1.01-.268c-.182-.048-.68-.164-1.106-.269a588.71 588.71 0 0 0-5.526-1.278a106.296 106.296 0 0 0-1.206-.278a21.523 21.523 0 0 0-.863-.173a41.008 41.008 0 0 1-1.2-.238a84.375 84.375 0 0 0-1.878-.348a192.56 192.56 0 0 0-1.682-.294c-2.652-.477-2.836-.507-7.595-1.032c-2.935-.333-6.876-.61-7.838-.564a75.2 75.2 0 0 0-1.88.087m-11.115 4.712c2.535.825 5.007 1.942 6.702 3.03c1.343.872 3.017 2.26 3.468 2.88l.195.26l-.369-.144c-.2-.086-.624-.268-.94-.42c-1.69-.785-1.873-.855-1.873-.68c0 .047.394.68.862 1.386c.482.715.867 1.349.867 1.404c0 .048-.182-.03-.403-.182c-.866-.593-2.896-1.442-3.013-1.27c-.025.048.6.842 1.396 1.77c.788.927 1.443 1.72 1.443 1.776c0 .145-.155.126-.883-.143c-.75-.268-.946-.294-.946-.116c0 .125 1.626 2.315 2.272 3.074c.182.207.325.407.325.455c0 .23-2.25-1.232-3.845-2.494c-2.28-1.815-4.483-4.257-5.645-6.272c-.949-1.647-1.278-2.536-1.278-3.512c0-.572.03-.689.243-.888c.122-.135.277-.24.333-.24c.06 0 .538.145 1.089.326m30.354 3.405c.924.164 2.18.38 2.787.49c.607.104 1.344.229 1.635.277c.286.055.702.134.914.182c.209.047.625.13.91.2c.955.207 1.185.255 2.742.62c1.672.394 2.036.467 2.548.576c.432.082.866.247.866.325c0 .025-.32.209-.701.407c-.79.395-.954.422-4.202.546c-2.215.096-3.393.07-4.472-.103c-2.173-.334-3.296-.946-4.172-2.267c-.307-.452-.51-.582-1.213-.764c-.26-.078-.655-.182-.863-.25c-.212-.066-.577-.17-.81-.24c-.69-.181-.296-.286 1.096-.286c.962 0 1.635.066 2.935.287m11.564 13.36a.573.573 0 0 1-.241 0c-.066-.032-.018-.048.116-.048s.182.016.125.047m-.416.112c0 .047-.112.117-.26.144a57.5 57.5 0 0 0-1.855.537c-.133.048-.564.182-.958.294c-.993.286-3.395 1.071-4.04 1.318c-1.209.46-4.058 1.973-4.46 2.371c-.594.586-.78 1.219-.694 2.424c.03.502.1 1.144.155 1.421c.113.603.048.768-.182.469c-.233-.294-.724-1.365-.867-1.89c-.077-.243-.164-.555-.212-.71c-.174-.543-.104-1.185.165-1.579c.364-.555 1.673-1.443 3.212-2.18c.728-.352 2.853-1.08 4.808-1.653c.394-.116.824-.25.958-.285c1.387-.468 4.23-.919 4.23-.681m-30.41.642c-.026.026-.113.039-.182.008c-.078-.03-.048-.056.055-.056c.11-.009.167.017.127.047zm0 0\\\"/><path fill=\\\"#850000\\\" d=\\\"M49.585 65.968v6.692h4.79c3.595 0 4.817-.03 4.903-.117c.144-.143.174-13.27.031-13.27c-.047 0-.117.075-.147.161c-.035.087-1.085 1.72-2.336 3.633c-1.978 3.022-2.529 3.758-2.529 3.386c0-.066-3.277-5.18-4.114-6.416a3.465 3.465 0 0 1-.3-.507c-.077-.145-.172-.256-.22-.256c-.039 0-.078 3.012-.078 6.693zm0 0\\\"/>\"\n\t\t},\n\t\t\"moodle\": {\n\t\t\t\"body\": \"<radialGradient id=\\\"deviconMoodle0\\\" cx=\\\"532.855\\\" cy=\\\"-537.557\\\" r=\\\"209.76\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -460.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FAAF40\\\"/><stop offset=\\\".043\\\" stop-color=\\\"#F9A538\\\"/><stop offset=\\\".112\\\" stop-color=\\\"#F89D31\\\"/><stop offset=\\\".227\\\" stop-color=\\\"#F89A2F\\\"/><stop offset=\\\".528\\\" stop-color=\\\"#F7922D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F37B28\\\"/></radialGradient><path fill=\\\"url(#deviconMoodle0)\\\" d=\\\"M106.259 105.754V66.975c0-8.164-3.397-12.244-10.034-12.244c-6.629 0-10.034 4.08-10.034 12.244v38.779H66.294V66.975c0-8.164-3.228-12.244-9.862-12.244c-6.633 0-10.036 4.08-10.036 12.244v38.779H26.667V64.768c0-8.504 2.891-14.801 8.844-19.223c5.102-3.91 12.246-5.777 20.92-5.777c9.015 0 15.478 2.207 19.727 6.801c3.57-4.594 10.207-6.801 19.897-6.801c8.844 0 15.819 1.867 20.922 5.777c5.951 4.422 8.843 10.719 8.843 19.223v41.152h-19.563v-.166z\\\"/><path fill=\\\"#58595B\\\" d=\\\"m28.539 49.627l-2.041 10.207c18.708 6.291 36.395.166 45.751-16.158c-13.778-9.522-26.535.17-43.71 5.951\\\"/><linearGradient id=\\\"deviconMoodle1\\\" x1=\\\"324.268\\\" x2=\\\"368.932\\\" y1=\\\"-509.952\\\" y2=\\\"-509.952\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -460.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#929497\\\"/><stop offset=\\\".124\\\" stop-color=\\\"#757578\\\"/><stop offset=\\\".279\\\" stop-color=\\\"#575658\\\"/><stop offset=\\\".44\\\" stop-color=\\\"#403E3F\\\"/><stop offset=\\\".609\\\" stop-color=\\\"#302D2E\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#262223\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#231F20\\\"/></linearGradient><path fill=\\\"url(#deviconMoodle1)\\\" d=\\\"M28.539 47.08c-.681 3.91-1.192 7.65-1.872 11.563c17.857 6.125 35.375.85 44.73-15.137c-11.909-13.776-25.17-2.383-42.858 3.574\\\"/><linearGradient id=\\\"deviconMoodle2\\\" x1=\\\"332.834\\\" x2=\\\"351.377\\\" y1=\\\"-495.051\\\" y2=\\\"-521.534\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -460.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#231F20\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#231F20\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconMoodle2)\\\" d=\\\"M49.799 51.668c-8.164-1.701-17.009 2.555-23.131 6.975c-3.912-28.57 13.777-27.893 36.903-20.75c-1.529 6.975-4.083 16.33-8.502 21.941c-.169-3.744-1.869-6.293-5.27-8.166\\\"/><linearGradient id=\\\"deviconMoodle3\\\" x1=\\\"299.778\\\" x2=\\\"381.412\\\" y1=\\\"-495.802\\\" y2=\\\"-495.802\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -460.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#929497\\\"/><stop offset=\\\".124\\\" stop-color=\\\"#757578\\\"/><stop offset=\\\".279\\\" stop-color=\\\"#575658\\\"/><stop offset=\\\".44\\\" stop-color=\\\"#403E3F\\\"/><stop offset=\\\".609\\\" stop-color=\\\"#302D2E\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#262223\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#231F20\\\"/></linearGradient><path fill=\\\"url(#deviconMoodle3)\\\" d=\\\"M2.178 47.08c29.932-18.031 46.77-21.43 81.634-25c-40.478 31.969-41.499 25-81.634 25\\\"/><path fill=\\\"none\\\" stroke=\\\"#4A4A4C\\\" stroke-width=\\\".5\\\" d=\\\"M83.812 22.246L51.667 45.545\\\"/><path fill=\\\"#231F20\\\" d=\\\"M45.545 34.66c.34 3.744-.511-3.572 0 0\\\" opacity=\\\".23\\\"/><path fill=\\\"none\\\" stroke=\\\"#A8ABAD\\\" stroke-width=\\\".5\\\" d=\\\"m2.178 47.08l49.489-1.535\\\"/><path fill=\\\"none\\\" stroke=\\\"#F16922\\\" stroke-width=\\\".5\\\" d=\\\"M42.484 35.002C33.98 37.383 6.09 43.506 5.747 47.08c-.849 6.631-.167 17.176-.167 17.176\\\"/><path fill=\\\"#F16922\\\" d=\\\"M8.131 89.596c-3.063-7.652-6.804-16.158-2.384-26.703C8.64 72.756 8.131 80.24 8.131 89.596\\\"/><path fill=\\\"#6D6E70\\\" d=\\\"M41.076 33.844c.708-.25 1.384-.17 1.509.184c.126.355-.344.846-1.052 1.096c-.709.256-1.384.172-1.51-.184c-.127-.352.344-.844 1.053-1.096\\\"/>\"\n\t\t},\n\t\t\"moodle-wordmark\": {\n\t\t\t\"body\": \"<radialGradient id=\\\"deviconMoodleWordmark0\\\" cx=\\\"365.269\\\" cy=\\\"-236.049\\\" r=\\\"59.206\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FAAF40\\\"/><stop offset=\\\".043\\\" stop-color=\\\"#F9A538\\\"/><stop offset=\\\".112\\\" stop-color=\\\"#F89D31\\\"/><stop offset=\\\".227\\\" stop-color=\\\"#F89A2F\\\"/><stop offset=\\\".528\\\" stop-color=\\\"#F7922D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F37B28\\\"/></radialGradient><path fill=\\\"url(#deviconMoodleWordmark0)\\\" d=\\\"M31.26 79.361V68.416c0-2.304-.96-3.456-2.832-3.456s-2.832 1.152-2.832 3.456v10.945h-5.617V68.416c0-2.304-.912-3.456-2.784-3.456s-2.833 1.152-2.833 3.456v10.945H8.795V67.792c0-2.4.816-4.177 2.496-5.425c1.44-1.104 3.457-1.632 5.905-1.632c2.544 0 4.368.624 5.568 1.92c1.008-1.296 2.88-1.92 5.616-1.92c2.496 0 4.465.528 5.905 1.632c1.68 1.248 2.496 3.024 2.496 5.425v11.616H31.26z\\\"/><radialGradient id=\\\"deviconMoodleWordmark1\\\" cx=\\\"365.266\\\" cy=\\\"-236.049\\\" r=\\\"59.201\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FAAF40\\\"/><stop offset=\\\".043\\\" stop-color=\\\"#F9A538\\\"/><stop offset=\\\".112\\\" stop-color=\\\"#F89D31\\\"/><stop offset=\\\".227\\\" stop-color=\\\"#F89A2F\\\"/><stop offset=\\\".528\\\" stop-color=\\\"#F7922D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F37B28\\\"/></radialGradient><path fill=\\\"url(#deviconMoodleWordmark1)\\\" d=\\\"M47.389 79.841c-2.832 0-5.136-.913-7.008-2.689c-1.824-1.776-2.784-4.08-2.784-6.912c0-2.833.912-5.136 2.784-6.913c1.824-1.776 4.176-2.688 7.008-2.688c2.833 0 5.185.912 7.009 2.688c1.872 1.776 2.784 4.08 2.784 6.913c0 2.832-.912 5.136-2.784 6.912c-1.872 1.777-4.225 2.689-7.009 2.689m0-14.737c-1.344 0-2.4.528-3.12 1.536c-.72 1.008-1.104 2.208-1.104 3.648c0 1.393.336 2.592 1.008 3.552c.768 1.104 1.825 1.632 3.168 1.632c1.344 0 2.4-.528 3.168-1.632c.72-.96 1.056-2.16 1.056-3.552s-.336-2.592-1.008-3.552c-.72-1.104-1.824-1.632-3.168-1.632\\\"/><radialGradient id=\\\"deviconMoodleWordmark2\\\" cx=\\\"365.268\\\" cy=\\\"-236.049\\\" r=\\\"59.204\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FAAF40\\\"/><stop offset=\\\".043\\\" stop-color=\\\"#F9A538\\\"/><stop offset=\\\".112\\\" stop-color=\\\"#F89D31\\\"/><stop offset=\\\".227\\\" stop-color=\\\"#F89A2F\\\"/><stop offset=\\\".528\\\" stop-color=\\\"#F7922D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F37B28\\\"/></radialGradient><path fill=\\\"url(#deviconMoodleWordmark2)\\\" d=\\\"M67.55 79.841c-2.832 0-5.136-.913-7.008-2.689c-1.824-1.776-2.784-4.08-2.784-6.912c0-2.833.912-5.136 2.784-6.913c1.824-1.776 4.176-2.688 7.008-2.688c2.833 0 5.185.912 7.009 2.688c1.872 1.776 2.784 4.08 2.784 6.913c0 2.832-.912 5.136-2.784 6.912c-1.872 1.777-4.225 2.689-7.009 2.689m0-14.737c-1.344 0-2.4.528-3.12 1.536c-.72 1.008-1.104 2.208-1.104 3.648c0 1.393.336 2.592 1.008 3.552c.769 1.104 1.825 1.632 3.168 1.632c1.344 0 2.4-.528 3.168-1.632c.72-.96 1.056-2.16 1.056-3.552s-.336-2.592-1.008-3.552c-.719-1.104-1.823-1.632-3.168-1.632\\\"/><radialGradient id=\\\"deviconMoodleWordmark3\\\" cx=\\\"365.267\\\" cy=\\\"-236.049\\\" r=\\\"59.205\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FAAF40\\\"/><stop offset=\\\".043\\\" stop-color=\\\"#F9A538\\\"/><stop offset=\\\".112\\\" stop-color=\\\"#F89D31\\\"/><stop offset=\\\".227\\\" stop-color=\\\"#F89A2F\\\"/><stop offset=\\\".528\\\" stop-color=\\\"#F7922D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F37B28\\\"/></radialGradient><path fill=\\\"url(#deviconMoodleWordmark3)\\\" d=\\\"M92.416 79.313v-1.824c-.48.672-1.344 1.2-2.544 1.584a8.737 8.737 0 0 1-3.024.528c-2.64 0-4.8-.912-6.385-2.736c-1.632-1.824-2.4-4.08-2.4-6.769c0-2.64.768-4.896 2.353-6.672c1.584-1.776 3.696-2.688 6.288-2.688c2.976 0 4.848.816 5.712 2.4V48.063h5.424v31.25zm0-10.369c0-1.008-.48-1.968-1.44-2.88c-.96-.912-1.92-1.392-2.928-1.392c-1.44 0-2.544.576-3.408 1.728c-.72 1.007-1.104 2.304-1.104 3.792c0 1.44.384 2.688 1.104 3.745c.816 1.2 1.968 1.776 3.408 1.776c.864 0 1.776-.384 2.832-1.2c1.008-.816 1.536-1.632 1.536-2.496z\\\"/><radialGradient id=\\\"deviconMoodleWordmark4\\\" cx=\\\"365.266\\\" cy=\\\"-236.048\\\" r=\\\"59.205\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FAAF40\\\"/><stop offset=\\\".043\\\" stop-color=\\\"#F9A538\\\"/><stop offset=\\\".112\\\" stop-color=\\\"#F89D31\\\"/><stop offset=\\\".227\\\" stop-color=\\\"#F89A2F\\\"/><stop offset=\\\".528\\\" stop-color=\\\"#F7922D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F37B28\\\"/></radialGradient><path fill=\\\"url(#deviconMoodleWordmark4)\\\" d=\\\"M99.809 79.313v-31.25h5.567v31.25z\\\"/><radialGradient id=\\\"deviconMoodleWordmark5\\\" cx=\\\"365.269\\\" cy=\\\"-236.049\\\" r=\\\"59.201\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FAAF40\\\"/><stop offset=\\\".043\\\" stop-color=\\\"#F9A538\\\"/><stop offset=\\\".112\\\" stop-color=\\\"#F89D31\\\"/><stop offset=\\\".227\\\" stop-color=\\\"#F89A2F\\\"/><stop offset=\\\".528\\\" stop-color=\\\"#F7922D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#F37B28\\\"/></radialGradient><path fill=\\\"url(#deviconMoodleWordmark5)\\\" d=\\\"M112.049 71.92c.24 1.152.816 2.112 1.68 2.928c.913.816 1.873 1.248 2.977 1.248c.768 0 1.584-.192 2.496-.576c1.104-.48 1.632-1.008 1.632-1.632l5.856-.048c-.815 1.968-2.255 3.504-4.223 4.561c-1.873 1.008-3.89 1.536-6.145 1.536c-2.833 0-5.233-.912-7.104-2.64c-1.872-1.776-2.832-4.081-2.832-6.961c0-2.976.959-5.28 2.832-7.056c1.872-1.728 4.319-2.592 7.296-2.592c3.264 0 5.809 1.056 7.633 3.217c1.68 1.968 2.543 4.656 2.543 8.016h-14.641zm9.12-3.456c-.24-1.2-.72-2.16-1.488-2.928c-.865-.816-1.872-1.248-2.976-1.248c-1.152 0-2.112.385-2.929 1.2c-.768.816-1.296 1.776-1.583 2.976z\\\"/><path fill=\\\"#58595B\\\" d=\\\"m9.323 63.52l-.576 2.88c5.28 1.775 10.272.047 12.913-4.561c-3.889-2.687-7.489.049-12.337 1.681\\\"/><linearGradient id=\\\"deviconMoodleWordmark6\\\" x1=\\\"306.394\\\" x2=\\\"319.001\\\" y1=\\\"-228.257\\\" y2=\\\"-228.257\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#929497\\\"/><stop offset=\\\".124\\\" stop-color=\\\"#757578\\\"/><stop offset=\\\".279\\\" stop-color=\\\"#575658\\\"/><stop offset=\\\".44\\\" stop-color=\\\"#403E3F\\\"/><stop offset=\\\".609\\\" stop-color=\\\"#302D2E\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#262223\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#231F20\\\"/></linearGradient><path fill=\\\"url(#deviconMoodleWordmark6)\\\" d=\\\"m9.323 62.8l-.528 3.264c5.04 1.729 9.985.24 12.625-4.272c-3.361-3.889-7.105-.672-12.097 1.008\\\"/><linearGradient id=\\\"deviconMoodleWordmark7\\\" x1=\\\"308.813\\\" x2=\\\"314.048\\\" y1=\\\"-224.051\\\" y2=\\\"-231.526\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#231F20\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#231F20\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconMoodleWordmark7)\\\" d=\\\"M15.324 64.096c-2.304-.48-4.801.72-6.529 1.968c-1.104-8.064 3.889-7.873 10.416-5.856c-.432 1.968-1.152 4.608-2.4 6.193c-.047-1.057-.527-1.777-1.487-2.305\\\"/><linearGradient id=\\\"deviconMoodleWordmark8\\\" x1=\\\"299.482\\\" x2=\\\"322.523\\\" y1=\\\"-224.263\\\" y2=\\\"-224.263\\\" gradientTransform=\\\"matrix(1 0 0 -1 -297.6 -164.9)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#929497\\\"/><stop offset=\\\".124\\\" stop-color=\\\"#757578\\\"/><stop offset=\\\".279\\\" stop-color=\\\"#575658\\\"/><stop offset=\\\".44\\\" stop-color=\\\"#403E3F\\\"/><stop offset=\\\".609\\\" stop-color=\\\"#302D2E\\\"/><stop offset=\\\".788\\\" stop-color=\\\"#262223\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#231F20\\\"/></linearGradient><path fill=\\\"url(#deviconMoodleWordmark8)\\\" d=\\\"M1.883 62.8c8.448-5.089 13.201-6.049 23.041-7.057C13.499 64.768 13.211 62.8 1.883 62.8\\\"/><path fill=\\\"none\\\" stroke=\\\"#4A4A4C\\\" stroke-width=\\\".5\\\" d=\\\"m24.924 55.792l-9.073 6.576\\\"/><path fill=\\\"#231F20\\\" d=\\\"M14.123 59.295c.096 1.057-.144-1.007 0 0\\\" opacity=\\\".23\\\"/><path fill=\\\"none\\\" stroke=\\\"#A8ABAD\\\" stroke-width=\\\".5\\\" d=\\\"m1.883 62.8l13.968-.432\\\"/><path fill=\\\"none\\\" stroke=\\\"#F16922\\\" stroke-width=\\\".5\\\" d=\\\"M13.259 59.392c-2.4.672-10.272 2.4-10.369 3.409c-.24 1.872-.047 4.848-.047 4.848\\\"/><path fill=\\\"#F16922\\\" d=\\\"M3.563 74.801c-.864-2.16-1.92-4.561-.673-7.537c.817 2.784.673 4.897.673 7.537\\\"/><ellipse cx=\\\"12.926\\\" cy=\\\"59.245\\\" fill=\\\"#6D6E70\\\" rx=\\\".192\\\" ry=\\\".384\\\" transform=\\\"rotate(-109.63 12.915 59.236)\\\"/>\"\n\t\t},\n\t\t\"msdos\": {\n\t\t\t\"body\": \"<path d=\\\"M84 124v4h24v-4zm-4.001-8.002h-3.996v4h3.996zm4 8.001v-4h-4v4zm-7.996-12.002h-4.001v4h4v-4M84 95.999v4h4v-4zm12.002 4v-4h-4v4H88V104h16v-4h-7.997M104 95.999v4h4v-4zm12.002 24h4.001v-4.001h-4v4m0 4.001v-4H108v4h8m-48 0H52V128h28v-4H68m-24 4v-4H8.002v4zm12.003-16.003v-4H48v12.002h-4v4h8v-12.002zm-28-68.001h4v-7.997h-4zM36 75.998v-8.001h-3.996v4H20V104h24v-4h-4v-4.001h-4.001v4H24V76h8.002v20h3.996V76M48 71.996v20h-4v8.001h4v-4h4V67.996h-4zm0-15.998v-4h-4v4zm-8.002 0v4H44v-4.001h-4m0 8.001v-4h-4.001v7.996h4V64M24.002 3.996v8.002h4V3.996zm-11.998 0h11.998V0h-16v47.996h-4v76.002h4V51.997h36v-8.002H40v4.001h-4.001v-4h-3.996v4H24V36h4v-8.002h-4v-4h-4v24h-7.998V3.995m20 16.003v-8.001h-4.001v8.001h4M40 27.996h4v-7.997h-4zm8 8.001h-4v7.997h4zm-12-8.001v8.002h4v-8.002zm-3.996-7.997v7.997H36v-7.997zM48 11.998h-4v8.001h4zm4 0V3.996h-4v8.002zm72 75.998h-3.996v28.002H124zM116.002 84v3.996h4.001V84h-4m0-24h4v-4.002h-4v4m4 0v11.998H124V60h-3.996m-12.002 19.999v4h8.001v-4zm-4-8.002h4v-4h-4zm4 0v4.001h12.002v-4h-12.002m-35.999 8V60h-4v11.997H64V64H52v3.997h8v32.002h-3.996v7.997H60V104h8v7.997h4.001v-16h-4v4.001h-4.002v-24H68V80h4.001m4 4v-4h-4v4zM84 67.998h12v28.001h7.997v-4h-4.001v-12h8.002v-4h-8.002v-8.002h4V64H84v3.996m0 8.001v-8.001h-4.001V84h-3.996v3.996h3.996v4h-7.997v4.001H84V75.998m-11.998-24h4v-4h-8V0h-16v3.996h11.997v44h-7.996v-24h-4.001v4.001H48V36h4v11.997h-4v4.001h24m4 4h-4V60h4v-4.001m0 0h3.997v-4.001h-3.996v4m3.996-12.002h-3.996v4.001h3.996zm28.003 8v4h8v-4zm0-4H79.999v4h28.002zm0-4.001v4h4v-4zm-4-7.997h-4.002v4H104zm0-8.002h4v-4h-8v4zM96.003 36H100v-4.001h-3.996v4m-12.002 0v-4h-12v11.998h4V36H84m4 0h-4v7.997h15.998V40H88zm-4-8.002v4.001h12.002v-4zm-4.001-4.001h-3.996v4H84v-4zM88.001 20v3.996h11.997V20H88m0-8.002h-4V20h4v-8M76.004 7.998h-4.001v15.998h4V7.997m0-4v4H84V3.996zm23.996 0H104V0H84v3.996zm0 8.002V7.997H88v4zm12.001 20v-4h-4v4zm4.001 0h-4v11.998h4zm-4-24v-4h-8.002v4H112m4.001 0h-4V16h-8.002v-4.001h-4V20H116zm0 0\\\"/><path fill=\\\"navy\\\" d=\\\"M72.002 115.998v4h4v-4zm4 8.001H80v-4h-3.996v4M84 95.997h4v-4h-4zm-31.998 24v4.001h4v-4h-4m7.996-4.002h-3.996v4.001h3.996v-4m4.001 4H68v-4h-4zm4 0v4.001h4v-4h-4m-4 4v-4h-4.002v4zm0-52.002h4v-4h-4zM44 84h4.001v-4.001h-4v4m4 3.997h-4v4h4zm-4-15.999v4.001h4v-4h-4M84 84v3.996h4V84zm0-12.003h4v-4h-4zm4 4.001h-4V80h4v-4M72.002 60v-4.001h-4v4zm4-4v-4.001h-4v4zm0 0\\\"/><path fill=\\\"purple\\\" d=\\\"M72.002 119.999v4h4v-4zm-20-4.001v4h4.002v-4zm4 8.001H60v-4h-3.996zM68 115.998v4h4.001v-4h-4m-4.001 4v-4h-4v4zm0 0V124h4.001v-4h-4M48 67.996h4V64h-4zm-4 16.003v3.996h4V84h-4m0-12.003h4v-4h-4zm4 4.001h-4V80h4v-4m20-11.998h-4.002v3.996H68V64m16 20h4v-4.001h-4v4m4 3.997h-4v4h4zm-4-15.999v4.001h4v-4zm0 0\\\"/><path fill=\\\"#f0f\\\" d=\\\"M92.001 95.997v-4h-4v4zm-52.002-4h-4v4h4zM44 99.998v-4h-4v4zm20 7.997h4v-3.996h-4zm4 4h-4v4.001h4v-4m-8-4.001v4h4v-4zm0 4h-3.996v4.001H60v-4m-16-24h-4v4h4zm-4-7.997v4h4v-4zm-4.001 7.997h4V84h-4zm4-11.998h-4V80h4v-4m0-8.002h-4v4h4zm4.001 8v-4h-4v4zm0-11.997h-4v3.996h4V64m0-4v4h4.001v-4zm24-4.001h-4.002v4H68zm-15.998 4v-4H48v4h4m7.998 0V64h4v-4.001zm-7.997 0v4h4v-4zm4-4.001v-4.001h-4v4zm3.997-4v4h4v-4zm0 4h-3.996v4.001h3.996v-4m36.003 31.998h-4v4h4zm0-7.997h-4v4h4zm-4-4h4v-4.002h-4zM88 76v4h4v-4zm0 8v3.997h4V84zm0-16.003v4h4v-4zm-15.999-12v-4h-4v4zm0 0\\\"/><path fill=\\\"#00f\\\" d=\\\"M92.001 99.998v-4h-4v4zm4.001-8.001h-4v4h4zM68 111.996v4h4.001v-4h-4M44 95.997v-4h-4.002v4zm20 15.999h-4.001v4h4zm0-4.001v4h4v-4zm-4.001-3.996v3.996h4v-3.996zm-3.996 7.997h-4.001v4h4zm0 0H60v-4.001h-3.996v4M39.999 80H44v-4h-4zm0 4v3.997h4V84zm0 3.996h-4.001v4h4zm0-7.997h-4v4h4zm-4-4h4v-4.002h-4zm8.001-4v-4.001h-4v4h4m4.001-7.996h-4v3.996h4V64m0-8.002h-4v4h4zm-8.002 4V64H44v-4h-4m24 0v4h4v-4zm4-4.001v-4.001h-4v4zm-8.001 0V60h4v-4zm-3.996 4v-4h-4.001v4zm0 0v4H60v-4.001zm-4.001 4v-4H48v4h4m0-8.001v-4.001h-4v4zm4.002 0h3.996v-4h-3.996zm35.998 32h-4v4h4zm0 0h4.001V84h-4v3.996m4-11.998h-4v4h4zm0-8.001h-4v4h4zM88 79.999v4h4v-4zm0-8.002v4.001h4v-4zm0 0\\\"/><path fill=\\\"olive\\\" d=\\\"M103.999 95.997h4v-4h-4zM112 107.995v4h-4v4.001H88v-4h-8v-4.001h-3.996v-7.997h-4.001v11.998h4v4H80v4.001h4v4.001h24v-4h8.002v-4.002h4V104h-4v3.996h-4M104 87.997h-4.001v4h4v-4m4.002-20v4.001h12.002v-7.996h-4v3.996H108M79.999 79.999h-3.996v4h3.996zm-3.996-4h-4.001v4h4v-4m32-11.999H104v3.996h4zm0 0\\\"/><path fill=\\\"maroon\\\" d=\\\"M48.001 111.996h-4v4h-32v4.001h-4v4.001H44v-4h4.001zm8.002-11.998h-4.001v7.997h4zm0 0H60v-4h-3.996zM39.999 51.997v4H44v-4zm0 4h-4.001v4.001h4zM20 64v7.996h12.003v-4h3.996V64zm0 0\\\"/><path fill=\\\"red\\\" d=\\\"M20 71.997v-7.996h16v-8.003h4v-4.001H8.001v68h4.001v-4H44v-4.001h4.001v-4.001h4v-7.997h4.002v-4h3.996V67.996h-7.997v28.002H48v4h-4V104H20Zm0 0\\\"/><path fill=\\\"gray\\\" d=\\\"M24.001 23.996V20h-4v-4H16v31.998h4v-24h4.001m4-11.998h-4v4h4zm-8-8.002V8h4V4h-4m36.003 19.999V20h-4.001v3.996h4M40 36h-4v4h4zm-4-4.001v-4h-3.996v4zm-3.996-8.001V20h-4.001v3.996h4m31.999-20H60v44h4v-44m48.002 39.999V31.998H108v11.998h4m-4 4v-4h-4v4zm0-15.998v-4h-4v4zm-8.002-8.002h-3.996v4.001H100v-4m-16-12h-4v11.998h8.002V20H84v-8.001m0 0h4V7.997h-4v4m15.998-8v4h4V3.996zM112 15.998V7.997h-4v8.001Zm0 0\\\"/><path fill=\\\"silver\\\" d=\\\"M52.002 3.996v8.002H48v8.001h-4v7.997h-4.002v12.002h-4v-8h-3.996v-8.002h-4.001V16H24V7.998h-4v-4h-7.998v44H16V16h4v4h4.001v7.997h4V36h4.001v7.997H36v4h4v-4h4V36h4v-8.002h4.002V20h4v27.997h3.996v-44zM84 35.998h-7.997v7.997h3.996v4h24v-4h4V31.998h-4v-4h-7.997v4h3.996v4h4V40h-4v3.995H84V36m4-12.003h-4v4.001h12.002v-4H88M84 12V7.998h-7.997v15.998h3.996V11.998h4m16-4.001v4h4V16h4V7.996h-8.001m0 0v-4H84v4zm0 0\\\"/><path fill=\\\"#ff0\\\" d=\\\"M99.998 79.999v7.997h4v4H108v8.002h-4.001v4H88v-4h-4v-4H72.002v4h4v7.997H80v4h8v4.001h20v-4h4v-4.001h4.001v-3.996h4.001V87.996h-4V84H108v-4.001zm8.002-24v-4H79.999v4h-3.996v4h-4.001v16h4v4H80V67.997h4V64h24v3.996h8.002V64h4v-4h-4v-4.002zm0 0\\\"/>\"\n\t\t},\n\t\t\"mysql\": {\n\t\t\t\"body\": \"<path fill=\\\"#00618A\\\" d=\\\"M117.688 98.242c-6.973-.191-12.297.461-16.852 2.379c-1.293.547-3.355.559-3.566 2.18c.711.746.82 1.859 1.387 2.777c1.086 1.754 2.922 4.113 4.559 5.352c1.789 1.348 3.633 2.793 5.551 3.961c3.414 2.082 7.223 3.27 10.504 5.352c1.938 1.23 3.859 2.777 5.75 4.164c.934.684 1.563 1.75 2.773 2.18v-.195c-.637-.812-.801-1.93-1.387-2.777l-2.578-2.578c-2.52-3.344-5.719-6.281-9.117-8.719c-2.711-1.949-8.781-4.578-9.91-7.73l-.199-.199c1.922-.219 4.172-.914 5.949-1.391c2.98-.797 5.645-.59 8.719-1.387l4.164-1.187v-.793c-1.555-1.594-2.664-3.707-4.359-5.152c-4.441-3.781-9.285-7.555-14.273-10.703c-2.766-1.746-6.184-2.883-9.117-4.363c-.988-.496-2.719-.758-3.371-1.586c-1.539-1.961-2.379-4.449-3.566-6.738c-2.488-4.793-4.93-10.023-7.137-15.066c-1.504-3.437-2.484-6.828-4.359-9.91c-9-14.797-18.687-23.73-33.695-32.508c-3.195-1.867-7.039-2.605-11.102-3.57l-6.543-.395c-1.332-.555-2.715-2.184-3.965-2.977C16.977 3.52 4.223-3.312.539 5.672C-1.785 11.34 4.016 16.871 6.09 19.746c1.457 2.012 3.32 4.273 4.359 6.539c.688 1.492.805 2.984 1.391 4.559c1.438 3.883 2.695 8.109 4.559 11.695c.941 1.816 1.98 3.727 3.172 5.352c.727.996 1.98 1.438 2.18 2.973c-1.227 1.715-1.297 4.375-1.984 6.543c-3.098 9.77-1.926 21.91 2.578 29.137c1.383 2.223 4.641 6.98 9.117 5.156c3.918-1.598 3.043-6.539 4.164-10.902c.254-.988.098-1.715.594-2.379v.199l3.57 7.133c2.641 4.254 7.324 8.699 11.297 11.699c2.059 1.555 3.68 4.242 6.344 5.152v-.199h-.199c-.516-.805-1.324-1.137-1.98-1.781c-1.551-1.523-3.277-3.414-4.559-5.156c-3.613-4.902-6.805-10.27-9.711-15.855c-1.391-2.668-2.598-5.609-3.77-8.324c-.453-1.047-.445-2.633-1.387-3.172c-1.281 1.988-3.172 3.598-4.164 5.945c-1.582 3.754-1.789 8.336-2.375 13.082c-.348.125-.195.039-.398.199c-2.762-.668-3.73-3.508-4.758-5.949c-2.594-6.164-3.078-16.09-.793-23.191c.59-1.836 3.262-7.617 2.18-9.316c-.516-1.691-2.219-2.672-3.172-3.965c-1.18-1.598-2.355-3.703-3.172-5.551c-2.125-4.805-3.113-10.203-5.352-15.062c-1.07-2.324-2.875-4.676-4.359-6.738c-1.645-2.289-3.484-3.977-4.758-6.742c-.453-.984-1.066-2.559-.398-3.566c.215-.684.516-.969 1.191-1.191c1.148-.887 4.352.297 5.547.793c3.18 1.32 5.832 2.578 8.527 4.363c1.289.855 2.598 2.512 4.16 2.973h1.785c2.789.641 5.914.195 8.523.988c4.609 1.402 8.738 3.582 12.488 5.949c11.422 7.215 20.766 17.48 27.156 29.734c1.027 1.973 1.473 3.852 2.379 5.945c1.824 4.219 4.125 8.559 5.941 12.688c1.816 4.113 3.582 8.27 6.148 11.695c1.348 1.801 6.551 2.766 8.918 3.766c1.66.699 4.379 1.43 5.949 2.379c3 1.809 5.906 3.965 8.723 5.945c1.402.992 5.73 3.168 5.945 4.957zm-88.605-75.52c-1.453-.027-2.48.156-3.566.395v.199h.195c.695 1.422 1.918 2.34 2.777 3.566l1.98 4.164l.199-.195c1.227-.867 1.789-2.25 1.781-4.363c-.492-.52-.562-1.164-.992-1.785c-.562-.824-1.66-1.289-2.375-1.98zm0 0\\\"/>\"\n\t\t},\n\t\t\"mysql-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#00618A\\\" d=\\\"M0 91.313h4.242V74.566l6.566 14.598c.773 1.77 1.832 2.391 3.914 2.391s3.098-.621 3.871-2.391l6.566-14.598v16.746h4.242V74.594c0-1.633-.652-2.422-2-2.828c-3.223-1.004-5.383-.137-6.363 2.039l-6.441 14.41l-6.238-14.41c-.937-2.176-3.14-3.043-6.359-2.039c-1.348.406-2 1.195-2 2.828zM32.93 77.68h4.238v9.227c-.039.5.16 1.676 2.484 1.715h9.223V77.633h4.25c.02 0-.008 14.984-.008 15.047c.023 3.695-4.582 4.496-6.707 4.559H33.02v-2.852l13.414-.004c2.73-.285 2.406-1.645 2.406-2.098v-1.113h-9.012c-4.195-.039-6.863-1.871-6.898-3.977c-.004-.191.09-9.422 0-9.516zm0 0\\\"/><path fill=\\\"#E48E00\\\" d=\\\"M56.391 91.313h12.195c1.426 0 2.813-.301 3.914-.816c1.836-.84 2.73-1.984 2.73-3.48v-3.098c0-1.223-1.016-2.367-3.016-3.125c-1.059-.41-2.367-.625-3.629-.625h-5.141c-1.711 0-2.527-.516-2.73-1.656c-.039-.137-.039-.246-.039-.383V76.2c0-.109 0-.219.039-.355c.203-.867.652-1.113 2.16-1.25l.41-.027h12.109v-2.824H63.488c-1.711 0-2.609.109-3.426.352c-2.527.789-3.629 2.039-3.629 4.215v2.473c0 1.902 2.16 3.535 5.789 3.914l1.223.055h4.406c.164 0 .324 0 .449.027c1.344.109 1.914.355 2.324.844c.211.195.332.473.324.758v2.477c0 .297-.203.68-.609 1.004c-.367.328-.98.543-1.793.598l-.449.027H56.391zm45.297-4.922c0 2.91 2.164 4.539 6.523 4.867l1.227.055h11.051v-2.828h-11.133c-2.488 0-3.426-.625-3.426-2.121V71.738h-4.238V86.39zm-23.75.148V76.457c0-2.559 1.801-4.113 5.355-4.602a7.976 7.976 0 0 1 1.145-.082h8.047c.41 0 .777.027 1.188.082c3.555.488 5.352 2.043 5.352 4.602v10.082c0 2.078-.762 3.188-2.523 3.914l4.18 3.77h-4.926l-3.379-3.051l-3.402.215H84.44a9.23 9.23 0 0 1-2.492-.352c-2.699-.734-4.008-2.152-4.008-4.496zm4.578-.246c0 .137.039.273.082.438c.246 1.172 1.348 1.824 3.023 1.824h3.852l-3.539-3.195h4.926l3.086 2.789c.57-.305.941-.766 1.074-1.363c.039-.137.039-.273.039-.41v-9.668c0-.109 0-.246-.039-.383c-.246-1.09-1.348-1.715-2.984-1.715h-6.414c-1.879 0-3.105.816-3.105 2.098zm0 0\\\"/><path fill=\\\"#00618A\\\" d=\\\"M124.219 67.047c-2.605-.07-4.598.172-6.301.891c-.484.203-1.258.207-1.336.813c.266.281.309.699.52 1.039c.406.66 1.094 1.539 1.707 2l2.074 1.484c1.273.777 2.699 1.223 3.93 2c.723.461 1.441 1.039 2.148 1.559c.348.254.582.656 1.039.816v-.074c-.238-.305-.301-.723-.52-1.039l-.965-.965c-.941-1.25-2.137-2.348-3.41-3.262c-1.016-.727-3.281-1.711-3.707-2.891l-.074-.074c.719-.078 1.563-.34 2.223-.516c1.117-.301 2.113-.223 3.262-.52l1.559-.449v-.293c-.582-.598-.996-1.387-1.633-1.93c-1.656-1.41-3.469-2.824-5.336-4.004c-1.035-.652-2.312-1.074-3.41-1.629c-.367-.187-1.016-.281-1.262-.594c-.574-.734-.887-1.664-1.332-2.52l-2.668-5.633c-.562-1.285-.93-2.555-1.633-3.707c-3.363-5.535-6.988-8.875-12.602-12.156c-1.191-.699-2.633-.973-4.148-1.332l-2.449-.148c-.496-.211-1.012-.82-1.48-1.113c-1.859-1.176-6.629-3.73-8.008-.371c-.867 2.121 1.301 4.191 2.078 5.266c.543.754 1.242 1.598 1.629 2.445c.258.555.301 1.113.52 1.703c.539 1.453 1.008 3.031 1.707 4.375c.352.68.738 1.395 1.184 2c.273.371.742.539.816 1.113c-.457.641-.484 1.633-.742 2.445c-1.16 3.652-.723 8.191.965 10.898c.516.828 1.734 2.609 3.41 1.926c1.465-.598 1.137-2.445 1.555-4.078c.098-.367.039-.641.223-.887v.074l1.336 2.668c.988 1.59 2.738 3.25 4.223 4.371c.773.582 1.379 1.59 2.375 1.93V68.6h-.074c-.195-.297-.496-.422-.742-.664c-.582-.57-1.227-1.277-1.703-1.93c-1.352-1.832-2.547-3.84-3.633-5.93c-.52-.996-.973-2.098-1.41-3.113c-.168-.391-.164-.984-.516-1.184c-.48.742-1.187 1.344-1.559 2.223c-.594 1.402-.668 3.117-.891 4.891l-.148.074c-1.031-.25-1.395-1.312-1.777-2.223c-.973-2.305-1.152-6.02-.297-8.672c.219-.687 1.219-2.852.813-3.484c-.191-.633-.828-1-1.184-1.484a11.7 11.7 0 0 1-1.187-2.074c-.793-1.801-1.164-3.816-2-5.633c-.398-.871-1.074-1.75-1.629-2.523c-.617-.855-1.305-1.484-1.781-2.52c-.168-.367-.398-.957-.148-1.336c.078-.254.195-.359.445-.441c.43-.332 1.629.109 2.074.293c1.191.496 2.184.965 3.191 1.633c.48.32.969.941 1.555 1.113h.668c1.043.238 2.211.07 3.188.367c1.723.523 3.27 1.34 4.668 2.227c4.273 2.695 7.766 6.535 10.156 11.117c.387.738.551 1.441.891 2.223c.684 1.578 1.543 3.203 2.223 4.746s1.34 3.094 2.297 4.375c.504.672 2.453 1.031 3.336 1.406c.621.262 1.637.535 2.223.891c1.125.676 2.211 1.48 3.266 2.223c.523.375 2.141 1.188 2.223 1.855zM91.082 38.805a5.26 5.26 0 0 0-1.332.148v.074h.074c.258.535.715.879 1.035 1.336l.742 1.555l.074-.07c.461-.324.668-.844.668-1.633c-.187-.195-.211-.437-.371-.668c-.211-.309-.621-.48-.891-.742zm0 0\\\"/>\"\n\t\t},\n\t\t\"nano\": {\n\t\t\t\"body\": \"<path fill=\\\"#C8F\\\" d=\\\"M74.02 2.517c0-.151.053-.275.158-.372S74.421 2 74.589 2c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375m0 1.605c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375m3.568-1.605c0-.151.053-.275.158-.372S77.989 2 78.157 2c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.605c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m3.569-1.605c0-.151.053-.275.158-.372A.581.581 0 0 1 81.726 2c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375m0 1.605c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375M28.47 11.325h.932c.075 0 .131.016.167.048c.036.032.054.083.054.152c0 .079-.017.134-.051.164s-.096.045-.187.045h-2.25c-.077 0-.135-.017-.174-.052c-.039-.035-.058-.087-.058-.157c0-.068.02-.118.061-.151c.041-.033.102-.049.183-.049h.886V9.461h-.568c-.08 0-.141-.018-.182-.053c-.042-.036-.063-.087-.063-.154s.019-.118.058-.151c.039-.033.097-.05.174-.05h.851c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087v2.153zm-.537-3.11c0-.209.019-.341.057-.395c.038-.054.119-.081.242-.081c.12 0 .199.023.238.068c.039.045.058.153.058.324c0 .166-.018.27-.054.309c-.036.04-.117.06-.242.06c-.124 0-.205-.018-.242-.055c-.038-.037-.057-.114-.057-.23m4.93 2.349c0-.145.015-.239.044-.282s.084-.064.166-.064c.07 0 .122.018.157.054c.035.036.052.091.052.167v1.08c0 .068-.018.12-.055.158s-.088.057-.154.057H30.36c-.07 0-.122-.017-.157-.052c-.035-.035-.052-.087-.052-.157c0-.077.021-.13.062-.158c.042-.028.136-.042.283-.042h.363V8.709h-.363c-.143 0-.237-.015-.28-.045c-.044-.03-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.57c.07 0 .123.017.16.052c.037.035.055.087.055.157c0 .079-.022.134-.065.164s-.139.045-.286.045h-.488v2.616h1.545zm1.231 1.17h-.136c-.07 0-.122-.017-.158-.052c-.036-.035-.054-.087-.054-.157c0-.077.021-.13.062-.158c.042-.028.137-.042.286-.042h.186V8.709h-.186c-.145 0-.24-.015-.283-.045s-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.09-.051.164-.051h2.529c.066 0 .116.02.15.06c.034.04.051.097.051.173v.685c0 .101-.015.17-.044.209c-.029.039-.081.058-.157.058c-.079 0-.134-.021-.164-.064s-.045-.138-.045-.287v-.416h-1.545v.978h.761v-.154c0-.105.014-.177.042-.218c.028-.041.077-.061.147-.061c.068 0 .115.022.141.065c.026.044.039.137.039.28v.54c0 .145-.014.238-.041.279s-.075.061-.145.061s-.118-.023-.144-.07c-.026-.046-.039-.136-.039-.27v-.102h-.761v1.286h1.545v-.47c0-.149.015-.245.045-.287s.085-.064.164-.064c.074 0 .125.02.155.06c.03.04.045.115.045.225v.732c0 .07-.017.123-.052.16c-.035.037-.084.055-.148.055zm4.23-1.877a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.284-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.551 2.728h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052V8.709h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a4.158 4.158 0 0 0-.214-.007m0-.409a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003a1.293 1.293 0 0 0-.132.012zm5.154.238c0 .246-.015.433-.043.56s-.076.234-.141.319c-.11.143-.262.252-.457.327a1.916 1.916 0 0 1-.688.112c-.219 0-.379-.022-.482-.067c-.103-.045-.154-.113-.154-.206a.21.21 0 0 1 .074-.158a.252.252 0 0 1 .176-.068c.052 0 .134.007.244.022s.194.022.25.022c.283 0 .484-.065.604-.196s.18-.357.18-.679v-2.09H48.93c-.188 0-.305-.015-.353-.045c-.047-.03-.071-.084-.071-.163c0-.067.019-.118.058-.151c.039-.033.097-.05.174-.05h1.598c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087v2.392zm-.784-3.348c0-.207.019-.338.058-.393c.039-.055.121-.083.247-.083c.118 0 .196.022.234.067c.038.045.057.153.057.325c0 .17-.017.274-.052.312c-.036.038-.116.057-.239.057c-.126 0-.208-.019-.247-.057c-.039-.038-.058-.114-.058-.228m2.892 3.043c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.481.481 0 0 1-.157-.375m10.705-1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.481.481 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.481.481 0 0 1-.157-.375m5.029.305c0 .246-.015.433-.044.56a.813.813 0 0 1-.141.319a1.017 1.017 0 0 1-.457.327a1.912 1.912 0 0 1-.688.112c-.219 0-.379-.022-.482-.067c-.103-.045-.154-.113-.154-.206a.21.21 0 0 1 .074-.158a.252.252 0 0 1 .176-.068c.052 0 .134.007.244.022c.11.015.194.022.25.022c.283 0 .484-.065.604-.196s.18-.357.18-.679v-2.09H66.77c-.188 0-.305-.015-.353-.045c-.047-.03-.071-.084-.071-.163c0-.067.019-.118.058-.151c.039-.033.097-.05.174-.05h1.598c.052 0 .093.011.122.032a.1.1 0 0 1 .045.087zm-.784-3.348c0-.207.019-.338.058-.393s.121-.083.247-.083c.118 0 .196.022.234.067c.038.045.057.153.057.325c0 .17-.017.274-.052.312c-.036.038-.116.057-.239.057c-.126 0-.208-.019-.247-.057c-.039-.038-.058-.114-.058-.228m2.767 3.519h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052V8.709h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717s-.202.414-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a4.158 4.158 0 0 0-.214-.007m0-.409a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003s-.091.006-.132.012zm3.681-1.468a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.03-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.624.624 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.284-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.284-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.628.628 0 0 0-.188.468m3.551 2.728h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052V8.709h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a4.158 4.158 0 0 0-.214-.007m0-.409a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003s-.091.006-.132.012zm5.154.238c0 .246-.015.433-.043.56a.813.813 0 0 1-.141.319a1.02 1.02 0 0 1-.458.327a1.912 1.912 0 0 1-.688.112c-.219 0-.379-.022-.482-.067c-.103-.045-.154-.113-.154-.206a.21.21 0 0 1 .074-.158a.252.252 0 0 1 .176-.068c.052 0 .134.007.244.022c.11.015.194.022.25.022c.283 0 .484-.065.604-.196s.18-.357.18-.679v-2.09h-1.135c-.188 0-.305-.015-.353-.045c-.047-.03-.071-.084-.071-.163c0-.067.019-.118.058-.151c.039-.033.097-.05.174-.05h1.598c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087v2.392zm-.784-3.348c0-.207.019-.338.058-.393c.039-.055.121-.083.247-.083c.118 0 .196.022.234.067c.038.045.057.153.057.325c0 .17-.017.274-.052.312c-.036.038-.115.057-.239.057c-.126 0-.208-.019-.247-.057c-.039-.038-.058-.114-.058-.228m2.892 1.437c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375m-78.505 7.136c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.484.484 0 0 1-.157-.375m5.232-.694c0-.145.015-.239.044-.282c.029-.043.084-.064.165-.064c.07 0 .122.018.157.054c.035.036.052.091.052.167v1.08c0 .068-.018.12-.055.158a.204.204 0 0 1-.154.057h-2.711c-.07 0-.122-.017-.157-.052s-.052-.087-.052-.157c0-.077.021-.13.062-.158c.042-.028.136-.042.283-.042h.363v-2.616h-.363c-.143 0-.237-.015-.28-.045s-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.57c.07 0 .123.017.16.052s.055.087.055.157c0 .079-.022.134-.065.164s-.139.045-.286.045h-.488v2.616h1.545zm3.397.668v-.689h-.72c-.058 0-.101-.015-.129-.046c-.028-.031-.042-.078-.042-.142c0-.074.013-.124.038-.151s.074-.041.145-.041h1.254c.05 0 .088.016.112.048c.024.032.036.08.036.144c0 .072-.016.121-.048.148s-.089.041-.17.041h-.038v.874c0 .052-.006.089-.017.109s-.035.04-.07.06c-.11.066-.271.122-.482.168s-.425.07-.642.07c-.519 0-.938-.165-1.257-.496c-.319-.331-.479-.763-.479-1.295s.156-.972.469-1.318a1.54 1.54 0 0 1 1.195-.52c.132 0 .264.015.396.045c.133.03.271.075.414.135c.019-.05.046-.087.08-.109s.078-.033.132-.033c.091 0 .151.027.181.081s.045.179.045.375v.395c0 .095-.016.161-.049.199c-.033.038-.09.057-.171.057c-.101 0-.173-.062-.218-.186a.968.968 0 0 0-.038-.084a.809.809 0 0 0-.767-.479c-.346 0-.623.125-.83.376c-.207.251-.311.588-.311 1.014c0 .439.114.788.343 1.047c.228.259.532.389.912.389c.11 0 .224-.015.341-.043c.118-.033.246-.079.385-.143m2.915.092h.932c.075 0 .131.016.167.048s.054.083.054.152c0 .079-.017.134-.051.164s-.096.045-.187.045h-2.25c-.077 0-.135-.017-.174-.052s-.058-.087-.058-.157c0-.068.02-.118.061-.151c.041-.033.102-.049.183-.049h.885v-1.864h-.568c-.08 0-.141-.018-.182-.053c-.042-.036-.063-.087-.063-.154s.019-.118.058-.151c.039-.033.097-.05.174-.05h.851c.052 0 .093.011.123.032s.045.05.045.087zm-.537-3.109c0-.209.019-.341.057-.395c.038-.054.119-.081.242-.081c.12 0 .199.023.238.068c.039.045.058.153.058.324c0 .166-.018.27-.054.309c-.036.04-.117.06-.242.06c-.124 0-.205-.018-.242-.055c-.038-.038-.057-.114-.057-.23m4.628.999c.095 0 .164.016.208.049c.044.033.065.085.065.157c0 .068-.02.119-.061.152c-.041.034-.102.051-.183.051h-1.176v.97c0 .317.041.526.123.627c.082.101.223.151.422.151c.176 0 .387-.051.633-.154c.246-.103.398-.154.456-.154c.054 0 .1.019.138.058a.195.195 0 0 1 .057.142a.23.23 0 0 1-.071.167a.73.73 0 0 1-.242.138c-.19.075-.361.131-.512.165a1.912 1.912 0 0 1-.428.052c-.226 0-.417-.036-.571-.109a.728.728 0 0 1-.344-.324a.752.752 0 0 1-.083-.241a2.75 2.75 0 0 1-.025-.43v-1.06h-.494c-.081 0-.14-.016-.177-.048s-.055-.084-.055-.155c0-.079.025-.134.075-.163c.05-.029.158-.044.322-.044h.328V15.6c0-.083.018-.145.054-.184c.036-.04.091-.06.167-.06c.085 0 .144.024.177.073s.049.159.049.331v.589h1.148zm1.533 2.52h-.136c-.07 0-.122-.017-.158-.052c-.036-.035-.054-.087-.054-.157c0-.077.021-.13.062-.158c.042-.028.137-.042.286-.042h.186v-2.616h-.186c-.145 0-.24-.015-.283-.045s-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.09-.051.164-.051h2.529c.066 0 .116.02.15.06c.034.04.051.097.051.173v.685c0 .101-.015.17-.044.209c-.029.039-.081.058-.157.058c-.079 0-.134-.021-.164-.064s-.045-.138-.045-.287v-.415h-1.545v.978h.761v-.154c0-.105.014-.177.042-.218c.028-.041.077-.061.147-.061c.068 0 .115.022.141.065s.039.137.039.28v.54c0 .145-.014.238-.041.279c-.027.041-.075.061-.145.061c-.07 0-.118-.023-.144-.07c-.026-.046-.039-.136-.039-.27v-.102h-.761v1.286h1.545v-.47c0-.149.015-.245.045-.287c.03-.043.085-.064.164-.064c.074 0 .125.02.155.06c.03.04.045.115.045.225v.732c0 .07-.017.123-.052.16c-.035.037-.084.055-.148.055h-2.399zm4.231-1.877a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.974.974 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182s-.362.061-.488.182s-.188.278-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.984.984 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291s.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.974.974 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.551 2.728h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052v-2.616h-.046c-.116 0-.196-.015-.24-.046s-.065-.085-.065-.163c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466s.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581c-.145.151-.322.261-.53.33s-.476.103-.803.103c-.039 0-.104-.002-.196-.006a5.345 5.345 0 0 0-.214-.006m0-.41a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003a1.293 1.293 0 0 0-.132.012zm3.693-.066c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.484.484 0 0 1-.157-.375m5.032.061c.079 0 .14.017.181.052c.042.035.062.086.062.154c0 .07-.02.122-.06.157s-.097.052-.173.052h-1.899c-.079 0-.14-.017-.181-.052c-.042-.035-.062-.087-.062-.157c0-.068.02-.119.06-.154c.04-.035.097-.052.173-.052h.494v-1.774h-.476c-.079 0-.141-.018-.184-.055s-.065-.089-.065-.157c0-.07.02-.122.061-.157s.1-.052.177-.052h.459v-.197c0-.35.1-.604.299-.762c.199-.158.522-.237.967-.237c.217 0 .377.024.481.073s.155.124.155.226c0 .06-.022.109-.067.148a.251.251 0 0 1-.171.058c-.035 0-.119-.012-.251-.035a2.05 2.05 0 0 0-.341-.035c-.219 0-.376.046-.47.138c-.095.092-.142.244-.142.457v.166h1.028c.079 0 .14.017.181.052c.042.035.062.087.062.157a.194.194 0 0 1-.064.155a.253.253 0 0 1-.174.057h-1.005v1.774zm2.093-1.462a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.98.98 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182s-.362.061-.488.182a.626.626 0 0 0-.188.468m5.169 2.226v-.689h-.72c-.058 0-.101-.015-.129-.046c-.028-.031-.042-.078-.042-.142c0-.074.013-.124.038-.151c.025-.027.074-.041.145-.041h1.254c.05 0 .088.016.112.048c.024.032.036.08.036.144c0 .072-.016.121-.048.148s-.089.041-.17.041h-.038v.874c0 .052-.006.089-.017.109s-.035.04-.07.06c-.11.066-.271.122-.482.168c-.211.046-.425.07-.642.07c-.519 0-.938-.165-1.257-.496c-.319-.331-.479-.763-.479-1.295s.156-.972.469-1.318a1.54 1.54 0 0 1 1.195-.52c.132 0 .264.015.396.045c.133.03.271.075.414.135c.019-.05.046-.087.08-.109s.078-.033.132-.033c.091 0 .151.027.181.081c.03.054.045.179.045.375v.395c0 .095-.016.161-.049.199c-.033.038-.09.057-.171.057c-.101 0-.173-.062-.218-.186a.968.968 0 0 0-.038-.084a.809.809 0 0 0-.767-.479c-.346 0-.623.125-.83.376c-.207.251-.311.588-.311 1.014c0 .439.114.788.343 1.047s.532.389.912.389c.11 0 .224-.015.341-.043c.117-.033.245-.079.385-.143m3.536.33c0 .246-.015.433-.044.56a.813.813 0 0 1-.141.319a1.017 1.017 0 0 1-.457.327a1.912 1.912 0 0 1-.688.112c-.219 0-.379-.022-.482-.067c-.103-.045-.154-.113-.154-.206a.21.21 0 0 1 .074-.158a.252.252 0 0 1 .176-.068c.052 0 .134.007.244.022c.11.015.194.022.25.022c.283 0 .484-.065.604-.196s.18-.357.18-.679v-2.09h-1.135c-.188 0-.305-.015-.353-.045s-.071-.084-.071-.163c0-.067.019-.118.058-.151c.039-.033.097-.05.174-.05h1.598c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087zm-.784-3.347c0-.207.019-.338.058-.393s.121-.083.247-.083c.118 0 .196.022.234.067c.038.045.057.153.057.325c0 .17-.017.274-.052.312c-.035.038-.114.057-.238.057c-.126 0-.208-.019-.247-.057s-.059-.114-.059-.228m4.352 3.347c0 .246-.015.433-.043.56a.813.813 0 0 1-.141.319a1.02 1.02 0 0 1-.458.327a1.912 1.912 0 0 1-.688.112c-.219 0-.379-.022-.482-.067c-.103-.045-.154-.113-.154-.206a.21.21 0 0 1 .074-.158a.252.252 0 0 1 .176-.068c.052 0 .134.007.244.022c.11.015.194.022.25.022c.283 0 .484-.065.604-.196s.18-.357.18-.679v-2.09h-1.135c-.188 0-.305-.015-.353-.045c-.047-.03-.071-.084-.071-.163c0-.067.019-.118.058-.151c.039-.033.097-.05.174-.05h1.598c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087zm-.784-3.347c0-.207.019-.338.058-.393c.039-.055.121-.083.247-.083c.118 0 .196.022.234.067c.038.045.057.153.057.325c0 .17-.017.274-.052.312s-.114.057-.238.057c-.126 0-.208-.019-.247-.057c-.039-.038-.059-.114-.059-.228m4.353 3.347c0 .246-.015.433-.043.56a.813.813 0 0 1-.141.319a1.02 1.02 0 0 1-.458.327a1.912 1.912 0 0 1-.688.112c-.219 0-.379-.022-.482-.067c-.103-.045-.154-.113-.154-.206c0-.06.025-.113.074-.158s.108-.068.176-.068c.052 0 .134.007.244.022c.11.015.194.022.25.022c.283 0 .484-.065.604-.196s.18-.357.18-.679v-2.09h-1.135c-.188 0-.305-.015-.353-.045s-.071-.084-.071-.163c0-.067.019-.118.058-.151c.039-.033.097-.05.174-.05h1.598c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087zm-.784-3.347c0-.207.019-.338.058-.393s.121-.083.247-.083c.118 0 .196.022.234.067c.038.045.057.153.057.325c0 .17-.017.274-.052.312c-.035.038-.114.057-.238.057c-.126 0-.208-.019-.247-.057s-.059-.114-.059-.228M82.82 17.7c0-.145.015-.239.044-.282c.029-.043.084-.064.166-.064c.07 0 .122.018.157.054s.052.091.052.167v1.08c0 .068-.018.12-.055.158a.204.204 0 0 1-.154.057h-2.711c-.07 0-.122-.017-.157-.052c-.035-.035-.052-.087-.052-.157c0-.077.021-.13.062-.158c.042-.028.136-.042.283-.042h.363v-2.616h-.363c-.143 0-.237-.015-.28-.045s-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051H81.9c.07 0 .123.017.16.052c.037.035.055.087.055.157c0 .079-.022.134-.065.164c-.044.03-.139.045-.286.045h-.488v2.616h1.545V17.7zm1.893-.707a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.984.984 0 0 1 .444-.354m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.627.627 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182s-.188.278-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291s.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.974.974 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182s-.362.061-.488.182s-.188.278-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.984.984 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.974.974 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182s-.362.061-.488.182s-.188.278-.188.468m3.002 2.728h-.136c-.07 0-.122-.017-.158-.052s-.054-.087-.054-.157c0-.077.021-.13.062-.158c.042-.028.137-.042.286-.042h.186v-2.616h-.186c-.145 0-.24-.015-.283-.045c-.044-.03-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.09-.051.164-.051h2.529c.066 0 .116.02.15.06c.034.04.051.097.051.173v.685c0 .101-.015.17-.044.209c-.029.039-.081.058-.157.058c-.079 0-.134-.021-.164-.064s-.045-.138-.045-.287v-.415H98.97v.978h.761v-.154c0-.105.014-.177.042-.218c.028-.041.077-.061.147-.061c.068 0 .115.022.141.065s.039.137.039.28v.54c0 .145-.014.238-.041.279c-.027.041-.075.061-.145.061s-.118-.023-.144-.07c-.026-.046-.039-.136-.039-.27v-.102h-.761v1.286h1.545v-.47c0-.149.015-.245.045-.287c.03-.043.085-.064.164-.064c.074 0 .125.02.155.06c.03.04.045.115.045.225v.732c0 .07-.017.123-.052.16s-.084.055-.148.055h-2.399zm4.448-.709c.017-.064.038-.105.061-.122s.063-.026.119-.026h.601c.025 0 .046.006.062.017s.025.026.025.044a.235.235 0 0 1-.023.076l-.749 1.559a.176.176 0 0 1-.051.067a.108.108 0 0 1-.068.02l-.036-.001l-.022-.004l-.192-.07a.155.155 0 0 1-.065-.044a.086.086 0 0 1-.022-.058l.001-.026a.28.28 0 0 1 .01-.046zm-.223-1.373c0-.151.053-.275.158-.372s.242-.145.411-.145a.6.6 0 0 1 .418.144a.48.48 0 0 1 .16.373a.477.477 0 0 1-.16.373a.6.6 0 0 1-.418.144a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375m-81.217 8.808h.932c.075 0 .131.016.167.048c.036.032.054.083.054.152c0 .079-.017.134-.051.164c-.034.03-.096.045-.187.045h-2.25c-.077 0-.135-.017-.174-.052s-.058-.087-.058-.157c0-.068.02-.118.061-.151c.041-.033.102-.049.183-.049h.886v-1.864h-.568c-.08 0-.141-.018-.182-.053c-.042-.036-.063-.087-.063-.154s.019-.118.058-.151c.039-.033.097-.05.174-.05h.851c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087v2.153zm-.537-3.109c0-.209.019-.341.057-.395c.038-.054.119-.081.242-.081c.12 0 .199.023.238.068c.039.045.058.153.058.324c0 .166-.018.27-.054.309s-.117.06-.242.06c-.124 0-.205-.018-.242-.055c-.038-.038-.057-.114-.057-.23m2.593 3.519h-.136c-.07 0-.122-.017-.158-.052c-.036-.035-.054-.087-.054-.157c0-.077.021-.13.062-.158c.042-.028.137-.042.286-.042h.186V22.98h-.186c-.145 0-.24-.015-.283-.045s-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.09-.051.164-.051h2.529c.066 0 .116.02.15.06s.051.097.051.173v.685c0 .101-.015.17-.044.209s-.081.058-.157.058c-.079 0-.134-.021-.164-.064s-.045-.138-.045-.287v-.416h-1.545v.978h.761v-.154c0-.105.014-.177.042-.218c.028-.041.077-.061.147-.061c.068 0 .115.022.141.065c.026.044.039.137.039.28v.54c0 .145-.014.238-.041.279s-.075.061-.145.061s-.118-.023-.144-.07s-.039-.136-.039-.27v-.1h-.761v1.286h1.545v-.47c0-.149.015-.245.045-.287c.03-.043.085-.064.164-.064c.074 0 .125.02.155.06s.045.115.045.225v.732c0 .07-.017.123-.052.16s-.084.055-.148.055zm14.947-2.082c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.483.483 0 0 1-.157-.375m0 1.605c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.481.481 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.103-.854-.306a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.354m-.125.879a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.85a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.986.986 0 0 1 .444-.355m-.125.879a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.85a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291s.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.976.976 0 0 1 .444-.355m-.125.879a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.85a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.103-.854-.306a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.354m-.125.879a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.626.626 0 0 0-.188.468m3.002 2.728h-.136c-.07 0-.122-.017-.158-.052c-.036-.035-.054-.087-.054-.157c0-.077.021-.13.062-.158c.042-.028.137-.042.286-.042h.186V22.98h-.186c-.145 0-.24-.015-.283-.045s-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.09-.051.164-.051h2.529c.066 0 .116.02.15.06s.051.097.051.173v.685c0 .101-.015.17-.044.209s-.081.058-.157.058c-.079 0-.134-.021-.164-.064s-.045-.138-.045-.287v-.416h-1.545v.978h.761v-.154c0-.105.014-.177.042-.218c.028-.041.077-.061.147-.061c.068 0 .115.022.141.065s.039.137.039.28v.54c0 .145-.014.238-.041.279c-.027.041-.075.061-.145.061s-.118-.023-.144-.07s-.039-.136-.039-.27v-.1h-.761v1.286h1.545v-.47c0-.149.015-.245.045-.287c.03-.043.085-.064.164-.064c.074 0 .125.02.155.06s.045.115.045.225v.732c0 .07-.017.123-.052.16c-.035.037-.084.055-.148.055zm5.604-2.521c.095 0 .164.016.208.049s.065.085.065.157c0 .068-.02.119-.061.152s-.102.051-.183.051h-1.176v.97c0 .317.041.526.123.627c.082.101.223.151.422.151c.176 0 .387-.051.633-.154c.246-.103.398-.154.456-.154c.054 0 .1.019.138.058a.195.195 0 0 1 .057.142c0 .064-.024.12-.071.167s-.128.093-.242.138c-.19.075-.361.131-.512.165a1.912 1.912 0 0 1-.428.052c-.226 0-.417-.036-.571-.109a.728.728 0 0 1-.344-.324a.752.752 0 0 1-.083-.241a2.75 2.75 0 0 1-.025-.43v-1.06h-.494c-.081 0-.14-.016-.177-.048s-.055-.084-.055-.155c0-.079.025-.134.075-.163c.05-.029.158-.044.322-.044h.328v-.746c0-.083.018-.145.054-.184c.036-.04.091-.06.167-.06c.085 0 .144.024.177.073s.049.159.049.331v.589zm2.207 2.044c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.481.481 0 0 1-.157-.375m21.41 0c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375m5.061-.025v-.689h-.72c-.058 0-.101-.015-.129-.046c-.028-.031-.042-.078-.042-.142c0-.074.013-.124.038-.151c.025-.027.074-.041.145-.041h1.254c.05 0 .088.016.112.048s.036.08.036.144c0 .072-.016.121-.048.148c-.032.027-.089.041-.17.041h-.038v.874c0 .052-.006.089-.017.109s-.035.04-.07.06c-.11.066-.271.122-.482.168c-.211.046-.425.07-.642.07c-.519 0-.938-.165-1.257-.496s-.479-.763-.479-1.295s.156-.972.469-1.318s.711-.52 1.195-.52c.132 0 .264.015.396.045c.133.03.271.075.414.135c.019-.05.046-.087.08-.109s.078-.033.132-.033c.091 0 .151.027.181.081c.03.054.045.179.045.375v.395c0 .095-.016.161-.049.199c-.033.038-.09.057-.171.057c-.101 0-.173-.062-.218-.186a.968.968 0 0 0-.038-.084a.809.809 0 0 0-.767-.479c-.346 0-.623.125-.83.376c-.207.251-.311.588-.311 1.014c0 .439.114.788.343 1.047c.228.259.532.389.912.389c.11 0 .224-.015.341-.043c.117-.033.246-.079.385-.143m2.064-1.376a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.986.986 0 0 1 .444-.355m-.125.879a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.85a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.636-.103-.854-.306a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.354m-.125.879a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.626.626 0 0 0-.188.468m3.664.85a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291s.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.976.976 0 0 1 .444-.355m-.125.879a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.85a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.986.986 0 0 1 .444-.355m-.124.879a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.626.626 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675 2.251c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375M20.7 32.433c.017-.064.038-.105.061-.122s.063-.026.119-.026h.601c.025 0 .046.006.062.017c.016.012.025.026.025.044a.235.235 0 0 1-.023.076l-.749 1.559c-.015.031-.032.053-.051.067s-.041.02-.068.02l-.036-.001a.109.109 0 0 1-.022-.004l-.192-.07a.155.155 0 0 1-.065-.044a.086.086 0 0 1-.022-.058l.001-.026a.28.28 0 0 1 .01-.046zm-.223-1.374c0-.151.053-.275.158-.372s.242-.145.411-.145a.6.6 0 0 1 .418.144c.106.096.16.22.16.373s-.053.277-.16.373a.6.6 0 0 1-.418.144a.588.588 0 0 1-.412-.142a.481.481 0 0 1-.157-.375m4.425 1.673h.932c.075 0 .131.016.167.048c.036.032.054.083.054.152c0 .079-.017.134-.051.164c-.034.03-.096.045-.187.045h-2.25c-.077 0-.135-.017-.174-.052c-.039-.035-.058-.087-.058-.157c0-.068.02-.118.061-.151s.102-.049.183-.049h.886v-1.864h-.568c-.08 0-.141-.018-.182-.053c-.042-.036-.063-.087-.063-.154s.019-.118.058-.151c.039-.033.097-.05.174-.05h.851c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087v2.153zm-.538-3.11c0-.209.019-.341.057-.395c.038-.054.119-.081.242-.081c.12 0 .199.023.238.068s.058.153.058.324c0 .166-.018.27-.054.309c-.036.04-.117.06-.242.06c-.124 0-.205-.018-.242-.055c-.038-.037-.057-.114-.057-.23m16.867 3.519h-.136c-.07 0-.122-.017-.158-.052c-.036-.035-.054-.087-.054-.157c0-.077.021-.13.062-.158c.042-.028.137-.042.286-.042h.186v-2.616h-.186c-.145 0-.24-.015-.283-.045s-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.09-.051.164-.051h2.529c.066 0 .116.02.15.06c.034.04.051.097.051.173v.685c0 .101-.015.17-.044.209c-.029.039-.081.058-.157.058c-.079 0-.134-.021-.164-.064s-.045-.138-.045-.287v-.415h-1.545v.978h.761v-.155c0-.105.014-.177.042-.218c.028-.041.077-.061.147-.061c.068 0 .115.022.141.065s.039.137.039.28v.54c0 .145-.014.238-.041.279c-.027.041-.075.061-.145.061s-.118-.023-.144-.07s-.039-.136-.039-.27v-.102h-.761v1.286h1.545v-.47c0-.149.015-.245.045-.287s.085-.064.164-.064c.074 0 .125.02.155.06c.03.04.045.115.045.225v.732c0 .07-.017.123-.052.16c-.035.037-.084.055-.148.055zm4.23-1.877a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291s.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.628.628 0 0 0-.188.468m3.902 1.918c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017c.017.012.026.026.026.044a.235.235 0 0 1-.023.082l-.798 1.661a.193.193 0 0 1-.055.07a.124.124 0 0 1-.075.026a.068.068 0 0 1-.019-.003a.387.387 0 0 1-.033-.012l-.203-.075a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zm32.116 0c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017c.017.012.026.026.026.044a.235.235 0 0 1-.023.082l-.798 1.661a.193.193 0 0 1-.055.07a.124.124 0 0 1-.075.026a.068.068 0 0 1-.019-.003a.387.387 0 0 1-.033-.012l-.203-.075a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zm3.33-1.067a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291s.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.902 1.918c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017c.017.012.026.026.026.044a.235.235 0 0 1-.023.082l-.798 1.661a.193.193 0 0 1-.055.07a.124.124 0 0 1-.075.026a.068.068 0 0 1-.019-.003a.387.387 0 0 1-.033-.012l-.203-.075a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zM41.78 40.277h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052v-2.616h-.046c-.116 0-.196-.015-.24-.046s-.065-.085-.065-.163c0-.072.018-.124.054-.158s.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a5.345 5.345 0 0 0-.214-.006m0-.41a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003a1.293 1.293 0 0 0-.132.012zm3.681-1.467a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.973.973 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.963.963 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.963.963 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.626.626 0 0 0-.188.468m3.902 1.918c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017c.017.012.026.026.026.044a.235.235 0 0 1-.023.082l-.798 1.661c-.014.029-.032.052-.055.07s-.048.026-.075.026l-.019-.003a.387.387 0 0 1-.033-.012l-.203-.075a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zm31.889-1.272c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.488.488 0 0 1-.157-.375M91.85 38.4a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.973.973 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.963.963 0 0 1 .444-.355m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.283-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.963.963 0 0 1 .444-.355m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.973.973 0 0 1 .444-.355m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.626.626 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.488.488 0 0 1-.157-.375M41.78 47.412h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052v-2.616h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158s.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a5.345 5.345 0 0 0-.214-.006m0-.409a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003a1.293 1.293 0 0 0-.132.012zm3.681-1.468a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.037 1.037 0 0 1-.328-.791c0-.197.052-.373.157-.527a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.974.974 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.527a.974.974 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182s-.362.061-.488.182a.628.628 0 0 0-.188.468m3.902 1.918c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017c.017.012.026.026.026.044a.235.235 0 0 1-.023.082l-.798 1.661a.193.193 0 0 1-.055.07a.124.124 0 0 1-.075.026a.068.068 0 0 1-.019-.003a.387.387 0 0 1-.033-.012l-.203-.075a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zm31.889-1.272c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.527a.984.984 0 0 1 .444-.354m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.974.974 0 0 1 .444-.354m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.284-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182s-.362.061-.488.182s-.188.278-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739s.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.974.974 0 0 1 .444-.354m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182a.676.676 0 0 0-.488.182a.628.628 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781s-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.527a.984.984 0 0 1 .444-.354m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476c0-.186-.063-.34-.19-.461s-.29-.182-.489-.182s-.362.061-.488.182s-.188.278-.188.468m3.675.646c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375M41.78 54.548h-.59c-.072 0-.125-.017-.161-.052s-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052v-2.616h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a5.345 5.345 0 0 0-.214-.006m0-.41a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319s.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003a1.293 1.293 0 0 0-.132.012zm3.681-1.467a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.626.626 0 0 0-.188.468m3.902 1.918c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017c.017.012.026.026.026.044a.211.211 0 0 1-.023.082l-.798 1.661c-.014.029-.032.052-.055.07s-.048.026-.075.026a.068.068 0 0 1-.019-.003a.387.387 0 0 1-.033-.012l-.203-.075a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zm31.889-1.272c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.488.488 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.962.962 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.061-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.97.97 0 0 1 .444-.355m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471s.289.183.486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.874.874 0 0 1-.142-.498c0-.3.107-.547.322-.739c.215-.193.49-.289.825-.289c.329 0 .603.097.822.291c.219.194.328.43.328.709a.946.946 0 0 1-.139.526a1.012 1.012 0 0 1-.433.354a.957.957 0 0 1 .45.35a.936.936 0 0 1 .157.541c0 .319-.11.579-.33.781c-.22.201-.505.302-.855.302s-.635-.102-.854-.305s-.328-.466-.328-.789c0-.197.052-.373.157-.526a.98.98 0 0 1 .444-.355m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.627.627 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.676.676 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.488.488 0 0 1-.157-.375M41.78 61.684h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052v-2.616h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a5.345 5.345 0 0 0-.214-.006m0-.41a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319s.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003a1.293 1.293 0 0 0-.132.012zm3.681-1.467a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.987.987 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.977.977 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.977.977 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.902 1.918c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017c.017.012.026.026.026.044a.235.235 0 0 1-.023.082l-.798 1.661a.193.193 0 0 1-.055.07a.124.124 0 0 1-.075.026a.068.068 0 0 1-.019-.003a.387.387 0 0 1-.033-.012l-.203-.075a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zm31.889-1.272c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.605c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m3.557-1.4a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.987.987 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.977.977 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.977.977 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.987.987 0 0 1 .444-.352m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186s.193-.288.193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.626.626 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.605c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m-64.242 5.735a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.284-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.496 1.985l.499-1.736c.017-.062.037-.101.06-.118c.022-.016.062-.025.12-.025h.131c.056 0 .096.009.12.026c.024.017.045.052.062.105l.566 1.748l.285-2.308h-.456c-.089 0-.154-.015-.196-.046c-.042-.031-.062-.08-.062-.148c0-.074.02-.125.06-.154c.04-.029.114-.044.222-.044h.938c.043 0 .08.019.113.057s.049.085.049.141c0 .066-.018.115-.055.147s-.092.048-.166.048h-.035l-.412 2.903c-.006.06-.017.1-.033.119s-.043.029-.08.029h-.206a.172.172 0 0 1-.102-.026a.205.205 0 0 1-.061-.099l-.63-1.998l-.557 2.003c-.014.048-.031.08-.052.096c-.021.015-.056.023-.105.023h-.218c-.039 0-.067-.009-.086-.028c-.018-.018-.031-.06-.039-.126l-.441-2.898h-.035c-.075 0-.132-.016-.17-.049s-.057-.081-.057-.145c0-.058.015-.105.046-.142a.142.142 0 0 1 .113-.055h.941c.106 0 .18.015.219.044c.04.029.06.08.06.154c0 .068-.021.117-.062.148c-.042.031-.106.046-.193.046h-.409zm3.974-.067c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017s.026.026.026.044a.235.235 0 0 1-.023.082l-.798 1.661a.193.193 0 0 1-.055.07a.124.124 0 0 1-.075.026l-.019-.003a.387.387 0 0 1-.033-.012l-.203-.075a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zm31.889-1.272c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.284-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372s.242-.145.411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m-64.411 6.869l.499-1.736c.017-.062.037-.101.06-.118c.022-.016.062-.025.12-.025h.131c.056 0 .096.009.12.026c.024.017.045.052.062.105l.566 1.748l.285-2.308h-.456c-.089 0-.154-.015-.196-.046c-.042-.031-.062-.08-.062-.148c0-.074.02-.125.06-.154c.04-.029.114-.044.222-.044h.938c.043 0 .08.019.113.057a.207.207 0 0 1 .049.141c0 .066-.018.115-.055.147c-.037.032-.092.048-.166.048h-.034l-.412 2.903c-.006.06-.017.1-.033.119s-.043.029-.08.029h-.206a.172.172 0 0 1-.102-.026a.205.205 0 0 1-.061-.099l-.63-1.998l-.557 2.003c-.014.048-.031.08-.052.096c-.021.015-.056.023-.105.023h-.218c-.039 0-.067-.009-.086-.028c-.018-.018-.031-.06-.039-.126l-.441-2.898h-.035c-.075 0-.132-.016-.17-.049c-.038-.033-.057-.081-.057-.145c0-.058.015-.105.046-.142a.142.142 0 0 1 .113-.055h.941c.106 0 .18.015.219.044s.06.08.06.154c0 .068-.021.117-.062.148c-.042.031-.106.046-.193.046h-.409zm3.737-1.134a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.496 1.985l.499-1.736c.017-.062.037-.101.06-.118c.022-.016.062-.025.12-.025h.131c.056 0 .096.009.12.026c.024.017.045.052.062.105l.566 1.748l.285-2.308h-.456c-.089 0-.154-.015-.196-.046c-.042-.031-.062-.08-.062-.148c0-.074.02-.125.06-.154c.04-.029.114-.044.222-.044h.938c.043 0 .08.019.113.057a.207.207 0 0 1 .049.141c0 .066-.018.115-.055.147c-.037.032-.092.048-.166.048h-.035l-.412 2.903c-.006.06-.017.1-.033.119s-.043.029-.08.029h-.206a.172.172 0 0 1-.102-.026a.205.205 0 0 1-.061-.099l-.63-1.998l-.557 2.003c-.014.048-.031.08-.052.096c-.021.015-.056.023-.105.023h-.218c-.039 0-.067-.009-.086-.028c-.018-.018-.031-.06-.039-.126l-.441-2.898h-.035c-.075 0-.132-.016-.17-.049s-.057-.081-.057-.145c0-.058.015-.105.046-.142a.142.142 0 0 1 .113-.055h.941c.106 0 .18.015.219.044c.04.029.06.08.06.154c0 .068-.021.117-.062.148c-.042.031-.106.046-.193.046h-.409zm3.974-.067c.015-.066.036-.108.061-.126c.025-.018.068-.028.128-.028h.636c.029 0 .052.006.07.017s.026.026.026.044a.211.211 0 0 1-.023.082l-.798 1.661a.193.193 0 0 1-.055.07a.124.124 0 0 1-.075.026a.068.068 0 0 1-.019-.003a.387.387 0 0 1-.033-.012l-.205-.076a.218.218 0 0 1-.07-.046a.09.09 0 0 1-.023-.061v-.045c0-.009.002-.018.006-.028zm31.889-1.272c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m-64.411 6.869l.499-1.736c.017-.062.037-.101.06-.118c.022-.016.062-.025.12-.025h.131c.056 0 .096.009.12.026c.024.017.045.052.062.105l.566 1.748l.285-2.308h-.456c-.089 0-.154-.015-.196-.046c-.042-.031-.062-.08-.062-.148c0-.074.02-.125.06-.154c.04-.029.114-.044.222-.044h.938c.043 0 .08.019.113.057s.049.085.049.141c0 .066-.018.115-.055.147s-.092.048-.166.048h-.034l-.412 2.903c-.006.06-.017.1-.033.119c-.016.019-.043.029-.08.029h-.206c-.045 0-.078-.009-.102-.026s-.044-.05-.061-.099l-.63-1.998l-.557 2.003c-.014.048-.031.08-.052.096c-.021.015-.056.023-.105.023h-.218c-.039 0-.067-.009-.086-.028c-.018-.018-.031-.06-.039-.126l-.441-2.898h-.035c-.075 0-.132-.016-.17-.049c-.038-.033-.057-.081-.057-.145c0-.058.015-.105.046-.142a.142.142 0 0 1 .113-.055h.941c.106 0 .18.015.219.044c.04.029.06.08.06.154c0 .068-.021.117-.062.148c-.042.031-.106.046-.193.046h-.409zm3.737-1.134a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.496 1.985l.499-1.736c.017-.062.037-.101.06-.118c.022-.016.062-.025.12-.025h.131c.056 0 .096.009.12.026c.024.017.045.052.062.105l.566 1.748l.285-2.308h-.456c-.089 0-.154-.015-.196-.046c-.042-.031-.062-.08-.062-.148c0-.074.02-.125.06-.154c.04-.029.114-.044.222-.044h.938c.043 0 .08.019.113.057s.049.085.049.141c0 .066-.018.115-.055.147s-.092.048-.166.048h-.035l-.412 2.903c-.006.06-.017.1-.033.119c-.016.019-.043.029-.08.029h-.206a.172.172 0 0 1-.102-.026a.205.205 0 0 1-.061-.099l-.63-1.998l-.557 2.003c-.014.048-.031.08-.052.096c-.021.015-.056.023-.105.023h-.218c-.039 0-.067-.009-.086-.028c-.018-.018-.031-.06-.039-.126l-.441-2.898h-.035c-.075 0-.132-.016-.17-.049s-.057-.081-.057-.145c0-.058.015-.105.046-.142a.142.142 0 0 1 .113-.055h.941c.106 0 .18.015.219.044c.04.029.06.08.06.154c0 .068-.021.117-.062.148c-.042.031-.106.046-.193.046h-.409zm3.748-1.339c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.481.481 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.484.484 0 0 1-.157-.375m32.115-1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.488.488 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.627.627 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.488.488 0 0 1-.157-.375M41.78 90.226h-.59c-.072 0-.125-.017-.161-.052s-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052V87.2h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158s.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a5.345 5.345 0 0 0-.214-.006m0-.409a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003s-.091.006-.132.012zm5.185-.093v-.689h-.72c-.058 0-.101-.015-.129-.046c-.028-.031-.042-.078-.042-.142c0-.074.013-.124.038-.151c.025-.027.074-.041.145-.041h1.254c.05 0 .088.016.112.048s.036.08.036.144c0 .072-.016.121-.048.148c-.032.027-.089.041-.17.041h-.038v.874a.25.25 0 0 1-.017.109a.188.188 0 0 1-.07.06c-.11.066-.271.122-.482.168s-.425.07-.642.07c-.519 0-.938-.166-1.257-.496c-.319-.331-.479-.763-.479-1.295c0-.532.156-.972.469-1.318a1.54 1.54 0 0 1 1.195-.52c.132 0 .264.015.396.045c.133.03.271.075.414.135c.019-.05.046-.087.08-.109s.078-.033.132-.033c.091 0 .151.027.181.081s.045.179.045.375v.395c0 .095-.016.161-.049.199c-.033.038-.09.057-.171.057c-.101 0-.173-.062-.218-.186a.968.968 0 0 0-.038-.084a.809.809 0 0 0-.767-.479c-.346 0-.623.125-.83.376c-.207.251-.311.588-.311 1.014c0 .439.114.788.343 1.047c.228.259.532.389.912.389c.11 0 .224-.015.341-.044c.118-.032.246-.078.385-.142m3.569 0v-.689h-.72c-.058 0-.101-.015-.129-.046c-.028-.031-.042-.078-.042-.142c0-.074.013-.124.038-.151c.025-.027.074-.041.145-.041h1.254c.05 0 .088.016.112.048s.036.08.036.144c0 .072-.016.121-.048.148c-.032.027-.089.041-.17.041h-.038v.874a.25.25 0 0 1-.017.109a.188.188 0 0 1-.07.06c-.11.066-.271.122-.482.168s-.425.07-.642.07c-.519 0-.938-.166-1.257-.496c-.319-.331-.479-.763-.479-1.295c0-.532.156-.972.469-1.318a1.54 1.54 0 0 1 1.195-.52c.132 0 .264.015.396.045c.133.03.271.075.414.135c.019-.05.046-.087.08-.109s.078-.033.132-.033c.091 0 .151.027.181.081s.045.179.045.375v.395c0 .095-.016.161-.049.199s-.09.057-.171.057c-.101 0-.173-.062-.218-.186a.968.968 0 0 0-.038-.084a.809.809 0 0 0-.767-.479c-.346 0-.623.125-.83.376c-.207.251-.311.588-.311 1.014c0 .439.114.788.343 1.047c.228.259.532.389.912.389c.11 0 .224-.015.341-.044a2.54 2.54 0 0 0 .385-.142m1.951.502h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157c.042-.029.12-.044.237-.044h.052V87.2h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717a1.704 1.704 0 0 1-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a5.345 5.345 0 0 0-.214-.006m0-.409a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003s-.091.006-.132.012zm3.693-1.673c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.481.481 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.481.481 0 0 1-.157-.375m32.115-1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m-17.842 5.53c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.486.486 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.999.999 0 0 1 .444-.351m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.988.988 0 0 1 .444-.351m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.988.988 0 0 1 .444-.351m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.999.999 0 0 1 .444-.351m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.486.486 0 0 1-.157-.375m-17.842 5.529c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m3.389-.267l.499-1.736c.017-.062.037-.101.06-.118c.022-.016.062-.025.12-.025h.131c.056 0 .096.009.12.026c.024.017.045.052.062.105l.566 1.748l.285-2.308h-.455c-.089 0-.154-.015-.196-.046c-.042-.031-.062-.08-.062-.148c0-.074.02-.125.06-.154c.04-.029.114-.044.222-.044h.938c.043 0 .08.019.113.057a.207.207 0 0 1 .049.141c0 .066-.018.115-.055.147c-.037.032-.092.048-.165.048h-.035l-.412 2.903c-.006.06-.017.1-.033.119c-.016.019-.043.029-.08.029h-.206a.172.172 0 0 1-.102-.026a.205.205 0 0 1-.061-.099l-.63-1.998l-.557 2.003c-.014.048-.031.08-.052.096s-.056.023-.105.023h-.218c-.039 0-.067-.009-.086-.028c-.018-.018-.031-.06-.039-.126l-.441-2.898h-.037c-.075 0-.132-.016-.17-.049s-.057-.081-.057-.145c0-.058.015-.105.046-.142a.142.142 0 0 1 .113-.055h.941c.106 0 .18.015.219.044c.04.029.06.08.06.154c0 .068-.021.117-.062.148c-.042.031-.106.046-.193.046h-.409zm3.737-1.134a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.988.988 0 0 1 .444-.351m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.284-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.988.988 0 0 1 .444-.351m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.527a.999.999 0 0 1 .444-.351m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m-17.842 5.53c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142c.105.095.157.22.157.375s-.053.28-.158.375a.593.593 0 0 1-.414.142a.588.588 0 0 1-.412-.142a.485.485 0 0 1-.157-.375m3.557-1.401a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.665.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494c0-.201-.066-.364-.197-.489s-.302-.187-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.675.646c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m0 1.606c0-.151.053-.275.158-.372a.581.581 0 0 1 .411-.145c.172 0 .311.047.415.142s.157.22.157.375s-.053.28-.158.375c-.105.095-.243.142-.414.142s-.308-.047-.412-.142a.485.485 0 0 1-.157-.375m-14.947 7.612h-.136c-.07 0-.122-.017-.158-.052c-.036-.035-.054-.087-.054-.157c0-.077.021-.13.062-.158c.042-.028.137-.042.286-.042h.186v-2.616h-.186c-.145 0-.24-.015-.283-.045c-.044-.03-.065-.085-.065-.164c0-.072.018-.124.054-.158c.036-.034.09-.051.164-.051h2.529c.066 0 .116.02.15.06s.051.097.051.173v.685c0 .101-.015.17-.044.209c-.029.039-.081.058-.157.058c-.079 0-.134-.021-.164-.064s-.045-.138-.045-.287v-.415h-1.545v.978h.761v-.154c0-.105.014-.177.042-.218c.028-.041.077-.061.147-.061c.068 0 .115.022.141.065c.026.044.039.137.039.28v.54c0 .145-.014.238-.041.279s-.075.061-.145.061c-.07 0-.118-.023-.144-.07s-.039-.136-.039-.27v-.102h-.761v1.286h1.545v-.47c0-.149.015-.245.045-.287c.03-.043.085-.064.164-.064c.074 0 .125.02.155.06s.045.115.045.225v.732c0 .07-.017.123-.052.16c-.035.037-.084.055-.148.055zm4.231-1.877a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.962.962 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187c-.207 0-.376.061-.508.184s-.197.284-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461c-.127-.121-.29-.182-.489-.182s-.362.06-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.63.63 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.627.627 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m4.515 2.318h.932c.075 0 .131.016.167.048c.036.032.054.083.054.152c0 .079-.017.134-.051.164c-.034.03-.096.045-.187.045h-2.25c-.077 0-.135-.017-.174-.052s-.058-.087-.058-.157c0-.068.02-.118.061-.151s.102-.049.183-.049h.886v-1.864h-.568a.276.276 0 0 1-.182-.053c-.042-.036-.062-.087-.062-.154s.019-.118.058-.151c.039-.033.097-.05.174-.05h.851c.052 0 .093.011.123.032a.1.1 0 0 1 .045.087v2.153zm-.538-3.109c0-.209.019-.341.057-.395s.119-.081.242-.081c.12 0 .199.023.238.068c.039.045.058.153.058.324c0 .166-.018.27-.054.309c-.036.04-.117.06-.242.06c-.124 0-.205-.018-.242-.055c-.038-.038-.057-.114-.057-.23m-13.213 8.134c.095 0 .164.016.208.049c.044.033.065.085.065.157c0 .068-.02.119-.061.152s-.102.051-.183.051h-1.176v.97c0 .317.041.526.123.627c.082.101.223.151.422.151c.176 0 .387-.051.633-.154c.246-.103.398-.154.456-.154c.054 0 .1.019.138.058s.057.086.057.142c0 .064-.024.12-.071.167s-.128.093-.242.138c-.19.075-.361.131-.512.165a1.912 1.912 0 0 1-.428.052c-.226 0-.417-.036-.571-.109s-.269-.18-.344-.324c-.039-.068-.066-.148-.083-.241s-.025-.236-.025-.43v-1.06h-.494c-.081 0-.14-.016-.177-.048c-.037-.032-.055-.084-.055-.155c0-.079.025-.134.075-.163c.05-.029.158-.044.322-.044h.328v-.749c0-.083.018-.145.054-.184c.036-.04.091-.06.167-.06c.085 0 .144.024.177.073c.033.048.049.159.049.331v.589h1.148zm2.026 1.777l.499-1.736c.017-.062.037-.101.06-.118s.062-.025.12-.025h.131c.056 0 .096.009.12.026c.024.017.045.052.062.105l.566 1.748l.285-2.308h-.456c-.089 0-.154-.015-.196-.046c-.042-.031-.062-.08-.062-.148c0-.074.02-.125.06-.154c.04-.029.114-.044.222-.044h.938c.043 0 .08.019.113.057s.049.085.049.141c0 .066-.018.115-.055.147c-.037.032-.092.048-.165.048h-.035l-.412 2.903c-.006.06-.017.1-.033.119c-.016.019-.043.029-.08.029h-.206a.172.172 0 0 1-.102-.026a.205.205 0 0 1-.061-.099l-.63-1.998l-.557 2.003c-.014.048-.031.08-.052.096c-.021.015-.056.023-.105.023h-.218c-.039 0-.067-.009-.086-.028c-.018-.018-.031-.06-.039-.126l-.441-2.898h-.035c-.075 0-.132-.016-.17-.049c-.038-.033-.057-.081-.057-.145c0-.058.015-.105.046-.142a.142.142 0 0 1 .113-.055h.941c.106 0 .18.015.219.044c.04.029.06.08.06.154c0 .068-.021.117-.062.148c-.042.031-.106.046-.193.046h-.409zm3.737-1.134a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.983.983 0 0 1 .444-.352m-.125.878c0 .205.064.372.193.499s.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.632.632 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.664.851a1.06 1.06 0 0 1-.424-.353a.879.879 0 0 1-.142-.498c0-.301.107-.547.322-.74c.215-.193.49-.289.825-.289c.329 0 .603.097.822.29c.219.194.328.43.328.709a.948.948 0 0 1-.139.526a1.019 1.019 0 0 1-.433.354a.957.957 0 0 1 .45.35a.934.934 0 0 1 .157.541c0 .319-.11.579-.33.78c-.22.201-.505.302-.855.302s-.635-.102-.854-.305a1.026 1.026 0 0 1-.328-.789c0-.197.052-.373.157-.526a.994.994 0 0 1 .444-.352m-.124.878a.67.67 0 0 0 .193.499c.129.128.3.192.512.192c.215 0 .387-.062.515-.186a.652.652 0 0 0 .193-.494a.646.646 0 0 0-.197-.489a.712.712 0 0 0-.511-.187a.715.715 0 0 0-.508.184a.629.629 0 0 0-.197.481m.029-1.729c0 .192.063.349.19.471a.673.673 0 0 0 .486.183a.67.67 0 0 0 .489-.185a.634.634 0 0 0 .19-.476a.61.61 0 0 0-.19-.461a.68.68 0 0 0-.489-.182a.672.672 0 0 0-.488.182a.626.626 0 0 0-.188.468m3.551 2.728h-.59c-.072 0-.125-.017-.161-.052c-.036-.035-.054-.087-.054-.157c0-.075.021-.128.062-.157s.12-.044.237-.044h.052v-2.616h-.046c-.116 0-.196-.015-.24-.046c-.044-.031-.065-.085-.065-.163c0-.072.018-.124.054-.158c.036-.034.091-.051.167-.051h1.226c.482 0 .866.155 1.153.466c.286.311.43.73.43 1.259c0 .257-.041.496-.123.717s-.202.414-.359.581a1.282 1.282 0 0 1-.53.33c-.208.069-.476.103-.803.103c-.039 0-.104-.002-.196-.006a5.345 5.345 0 0 0-.214-.006m0-.409a3.882 3.882 0 0 0 .363.017c.476 0 .825-.106 1.047-.319c.222-.213.332-.549.332-1.008c0-.461-.111-.796-.334-1.006c-.223-.21-.579-.315-1.068-.315c-.091 0-.16.001-.208.003a1.293 1.293 0 0 0-.132.012z\\\"/>\"\n\t\t},\n\t\t\"nano-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#C8F\\\" d=\\\"M32.535 31.532c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.884-.848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.116-.083-.198zm1.885-.848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.252.252 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.252.252 0 0 1-.083-.198zM6.597 36.183h.492c.04 0 .069.008.088.025s.028.044.028.08c0 .042-.009.071-.027.087c-.017.017-.05.025-.098.025H5.891c-.041 0-.072-.009-.092-.028c-.02-.018-.031-.046-.031-.083c0-.036.011-.062.032-.08s.054-.026.097-.026h.468v-.984h-.3c-.042 0-.074-.009-.096-.028c-.022-.019-.033-.046-.033-.082s.01-.062.031-.08c.02-.018.051-.027.092-.027h.449c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.138zm-.284-1.642c0-.11.01-.18.03-.209c.02-.029.063-.043.128-.043c.063 0 .105.012.126.036c.02.024.031.081.031.171c0 .088-.009.142-.028.163c-.019.021-.062.031-.128.031c-.065 0-.108-.01-.128-.029c-.021-.018-.031-.058-.031-.12zm2.604 1.241c0-.077.008-.126.023-.149c.015-.022.044-.034.087-.034c.037 0 .064.009.083.028s.028.048.028.088v.57c0 .036-.01.064-.029.084a.108.108 0 0 1-.081.03H7.595c-.037 0-.064-.009-.083-.028c-.018-.018-.028-.046-.028-.083c0-.041.011-.069.033-.084c.022-.015.072-.022.149-.022h.192v-1.381h-.191c-.076 0-.125-.008-.148-.024c-.023-.016-.034-.045-.034-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.83c.037 0 .065.009.084.028c.019.018.029.046.029.083c0 .042-.012.071-.034.087c-.023.016-.073.024-.151.024h-.258v1.381h.816v-.4zm.65.618h-.072c-.037 0-.065-.009-.084-.028c-.019-.018-.028-.046-.028-.083c0-.041.011-.069.033-.084c.022-.015.072-.022.151-.022h.098v-1.381h-.098c-.077 0-.126-.008-.149-.024c-.023-.016-.034-.045-.034-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.087-.027h1.335c.035 0 .061.01.079.031c.018.021.027.051.027.091v.362c0 .053-.008.09-.023.11c-.015.02-.043.031-.083.031c-.042 0-.071-.011-.087-.034c-.016-.022-.024-.073-.024-.152V34.8h-.816v.517h.402v-.081c0-.055.007-.094.022-.115c.015-.021.041-.032.077-.032s.061.011.074.035c.014.023.021.072.021.148v.285c0 .077-.007.126-.021.147c-.014.021-.04.032-.077.032s-.062-.012-.076-.037a.326.326 0 0 1-.021-.143v-.054h-.401v.679h.816v-.248c0-.079.008-.129.024-.152c.016-.022.045-.034.087-.034c.039 0 .066.01.082.031c.016.021.024.061.024.119v.386c0 .037-.009.065-.028.084a.103.103 0 0 1-.078.029H9.567zm2.234-.992a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zM15.51 36.4h-.311c-.038 0-.066-.009-.085-.028c-.019-.018-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379a.904.904 0 0 1-.189.307a.671.671 0 0 1-.28.174c-.11.036-.251.054-.424.054l-.103-.003a2.67 2.67 0 0 0-.115-.002zm0-.217l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169c.117-.112.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm2.721.126c0 .13-.008.228-.023.296a.423.423 0 0 1-.075.169a.532.532 0 0 1-.242.172a1.023 1.023 0 0 1-.363.059c-.116 0-.2-.012-.255-.035s-.081-.06-.081-.109c0-.032.013-.06.039-.084a.132.132 0 0 1 .093-.036c.028 0 .071.004.129.012c.058.008.102.011.132.011c.149 0 .256-.034.319-.104c.064-.068.096-.188.096-.358v-1.103h-.6c-.099 0-.161-.008-.186-.024s-.038-.044-.038-.086c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.844c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.264zm-.414-1.768c0-.109.01-.179.031-.208s.064-.044.13-.044c.062 0 .103.012.123.035s.03.081.03.172c0 .09-.009.145-.028.165c-.018.02-.06.03-.126.03s-.11-.01-.13-.03c-.02-.019-.03-.059-.03-.12zm1.527 1.607c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm5.653-.848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm2.656.161c0 .13-.008.228-.023.296a.423.423 0 0 1-.075.169a.532.532 0 0 1-.242.172a1.023 1.023 0 0 1-.363.059a.697.697 0 0 1-.255-.035c-.054-.024-.081-.06-.081-.109c0-.032.013-.06.039-.084s.057-.036.093-.036c.028 0 .071.004.129.012c.058.008.102.011.132.011c.149 0 .256-.034.319-.104c.063-.069.095-.188.095-.358v-1.103h-.6c-.099 0-.161-.008-.186-.024c-.025-.016-.038-.044-.038-.086c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.844c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.264zm-.414-1.768c0-.109.01-.179.031-.208c.02-.029.064-.044.13-.044c.062 0 .103.012.123.035c.02.024.03.081.03.172c0 .09-.009.145-.028.165c-.018.02-.06.03-.126.03s-.11-.01-.13-.03c-.02-.019-.03-.059-.03-.12zM28.7 36.4h-.311c-.038 0-.066-.009-.085-.028c-.019-.018-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.646c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379a.904.904 0 0 1-.189.307a.671.671 0 0 1-.28.174c-.11.036-.251.054-.424.054l-.103-.003a2.606 2.606 0 0 0-.114-.002zm0-.217l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169c.117-.112.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm1.945-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.876 1.441h-.311c-.038 0-.066-.009-.085-.028c-.019-.018-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.035-.045-.035-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379a.904.904 0 0 1-.189.307a.671.671 0 0 1-.28.174c-.11.036-.251.054-.424.054l-.103-.003a2.63 2.63 0 0 0-.114-.002zm0-.217l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169c.117-.112.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm2.721.126c0 .13-.008.228-.023.296a.423.423 0 0 1-.075.169a.532.532 0 0 1-.242.172a1.023 1.023 0 0 1-.363.059a.697.697 0 0 1-.255-.035c-.054-.024-.081-.06-.081-.109c0-.032.013-.06.039-.084s.057-.036.093-.036c.028 0 .071.004.129.012c.058.008.102.011.132.011c.149 0 .256-.034.319-.104c.063-.069.095-.188.095-.358v-1.103h-.6c-.099 0-.161-.008-.186-.024s-.038-.044-.038-.086c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.844c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.264zm-.414-1.768c0-.109.01-.179.031-.208s.064-.044.13-.044c.062 0 .103.012.123.035c.02.024.03.081.03.172c0 .09-.009.145-.028.165c-.018.02-.06.03-.126.03s-.11-.01-.13-.03c-.02-.019-.03-.059-.03-.12zm1.527.759c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.116-.083-.198zM2.385 39.916c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198c-.056.05-.129.075-.218.075s-.163-.025-.218-.075s-.083-.116-.083-.198zm2.763-.366c0-.077.008-.126.023-.149c.015-.022.044-.034.087-.034c.037 0 .064.009.083.028c.018.019.028.048.028.088v.57c0 .036-.01.064-.029.084a.108.108 0 0 1-.081.03H3.826c-.037 0-.064-.009-.083-.028s-.028-.046-.028-.083c0-.041.011-.069.033-.084c.022-.015.072-.022.149-.022h.193v-1.38h-.192c-.076 0-.125-.008-.148-.024c-.023-.016-.034-.045-.034-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.83c.037 0 .065.009.084.028c.019.018.029.046.029.083c0 .042-.011.071-.034.087c-.023.016-.074.024-.151.024h-.258v1.381h.816v-.401zm1.794.353v-.364h-.38c-.031 0-.053-.008-.068-.025c-.015-.016-.022-.041-.022-.075c0-.039.007-.065.02-.08c.013-.014.039-.021.077-.021h.661c.027 0 .046.008.059.025s.019.042.019.076c0 .038-.008.064-.025.078c-.017.014-.047.021-.09.021h-.02V40a.123.123 0 0 1-.009.057a.085.085 0 0 1-.037.031a.882.882 0 0 1-.255.089a1.538 1.538 0 0 1-.339.037c-.274 0-.495-.087-.664-.262c-.169-.175-.253-.403-.253-.684a1 1 0 0 1 .248-.696a.811.811 0 0 1 .631-.274c.07 0 .139.008.209.024c.07.016.143.04.218.071a.107.107 0 0 1 .042-.057a.123.123 0 0 1 .07-.018c.048 0 .08.014.096.043s.024.095.024.198v.209c0 .05-.009.085-.026.105c-.017.02-.048.03-.09.03c-.053 0-.091-.033-.115-.098a.767.767 0 0 0-.02-.044a.426.426 0 0 0-.405-.253a.542.542 0 0 0-.439.198c-.109.132-.164.311-.164.535c0 .232.06.416.181.553a.61.61 0 0 0 .481.205a.766.766 0 0 0 .18-.023c.063-.015.131-.04.205-.073zm1.539.049h.492c.04 0 .069.008.088.025c.019.017.028.044.028.08c0 .042-.009.071-.027.087s-.051.024-.099.024H7.776c-.041 0-.072-.009-.092-.028c-.02-.018-.031-.046-.031-.083c0-.036.011-.062.032-.08s.054-.026.097-.026h.468v-.984h-.3c-.042 0-.074-.009-.096-.028c-.023-.019-.034-.046-.034-.081c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.449c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.138zm-.284-1.643c0-.11.01-.18.03-.209c.02-.029.063-.043.128-.043c.063 0 .105.012.126.036c.02.024.031.081.031.171c0 .088-.009.142-.028.163c-.019.021-.062.031-.128.031c-.065 0-.108-.01-.128-.029c-.021-.018-.031-.058-.031-.12zm2.444.528c.05 0 .087.009.11.026c.023.017.034.045.034.083c0 .036-.011.063-.032.08c-.021.018-.054.027-.097.027h-.621v.512c0 .168.022.278.065.331s.118.08.223.08a.898.898 0 0 0 .334-.081a.984.984 0 0 1 .241-.081c.029 0 .053.01.073.031s.03.045.03.075c0 .034-.013.063-.038.088s-.068.049-.128.073c-.1.04-.19.069-.271.087a1.04 1.04 0 0 1-.226.028a.706.706 0 0 1-.301-.057a.383.383 0 0 1-.182-.171a.413.413 0 0 1-.044-.127a1.778 1.778 0 0 1-.011-.228v-.56h-.261c-.043 0-.074-.008-.094-.025c-.019-.017-.029-.044-.029-.082c0-.042.013-.071.04-.086a.406.406 0 0 1 .17-.023H9.8v-.395c0-.044.009-.076.028-.097s.048-.031.088-.031c.045 0 .076.013.094.038s.026.084.026.175v.311h.605zm.81 1.331h-.072c-.037 0-.065-.009-.084-.028s-.028-.046-.028-.083c0-.041.011-.069.033-.084s.072-.022.151-.022h.098V38.57h-.098c-.077 0-.126-.008-.149-.024c-.023-.016-.034-.045-.034-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.087-.027h1.335c.035 0 .061.01.079.031c.018.021.027.051.027.091v.362c0 .053-.008.09-.023.11c-.015.02-.043.031-.083.031c-.042 0-.071-.011-.087-.034c-.016-.022-.024-.073-.024-.152v-.217h-.816v.517h.402v-.081c0-.055.007-.094.022-.115c.015-.021.041-.032.077-.032s.061.011.074.034s.021.072.021.148v.285c0 .077-.007.126-.021.147c-.014.021-.04.032-.077.032s-.062-.012-.076-.037s-.021-.072-.021-.143v-.054h-.402v.679h.816v-.248c0-.079.008-.129.024-.152c.016-.022.045-.034.087-.034c.039 0 .066.01.082.031c.016.021.024.061.024.119v.386c0 .037-.009.065-.028.084s-.044.029-.078.029h-1.266zm2.234-.992a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251c0-.098-.033-.18-.1-.244s-.153-.096-.258-.096s-.191.032-.258.096s-.099.147-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096c-.105 0-.191.032-.258.096s-.099.147-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.875 1.441h-.311c-.038 0-.066-.009-.085-.028s-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028V38.57h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.035-.045-.035-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379a.904.904 0 0 1-.189.307c-.077.08-.17.138-.28.174s-.251.054-.424.054l-.103-.003a2.606 2.606 0 0 0-.114-.002zm0-.216l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169c.117-.112.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm1.951-.036c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.252.252 0 0 1-.083-.198zm2.657.032c.042 0 .074.009.096.028c.022.018.033.045.033.081c0 .037-.01.064-.031.083a.136.136 0 0 1-.091.028H22.89c-.042 0-.074-.009-.096-.028s-.033-.046-.033-.083c0-.036.01-.063.031-.081s.051-.028.091-.028h.261v-.937h-.251a.148.148 0 0 1-.097-.029c-.023-.019-.034-.047-.034-.083c0-.037.011-.064.032-.083a.142.142 0 0 1 .094-.028h.242v-.104c0-.185.053-.319.158-.402c.105-.083.275-.125.511-.125c.114 0 .199.013.254.038c.055.026.082.065.082.12c0 .032-.012.058-.035.078s-.054.031-.09.031c-.018 0-.063-.006-.133-.018a1.09 1.09 0 0 0-.18-.018c-.116 0-.198.024-.248.073s-.075.129-.075.241v.087h.543c.042 0 .074.009.096.028c.022.018.033.046.033.083c0 .035-.011.062-.034.082s-.053.03-.092.03h-.531v.937h.497zm1.105-.772a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm2.729 1.176v-.364h-.38c-.031 0-.053-.008-.068-.025c-.015-.016-.022-.041-.022-.075c0-.039.007-.065.02-.08c.013-.014.039-.021.077-.021h.662c.027 0 .046.008.059.025s.019.042.019.076c0 .038-.008.064-.025.078c-.017.014-.047.021-.09.021h-.02V40a.123.123 0 0 1-.009.057a.085.085 0 0 1-.037.031c-.058.035-.143.064-.255.089s-.224.037-.339.037c-.274 0-.495-.087-.664-.262c-.169-.175-.253-.403-.253-.684a1 1 0 0 1 .248-.696a.811.811 0 0 1 .631-.274c.07 0 .139.008.209.024c.07.016.143.04.218.071a.107.107 0 0 1 .042-.057a.123.123 0 0 1 .07-.018c.048 0 .08.014.096.043s.024.095.024.198v.209c0 .05-.009.085-.026.105c-.017.02-.048.03-.09.03c-.053 0-.091-.033-.115-.098a.767.767 0 0 0-.02-.044a.426.426 0 0 0-.405-.253a.542.542 0 0 0-.439.198c-.109.132-.164.311-.164.535c0 .232.06.416.181.553a.61.61 0 0 0 .481.205a.766.766 0 0 0 .18-.023c.063-.015.13-.04.204-.073zm1.867.174c0 .13-.008.228-.023.296a.423.423 0 0 1-.075.169a.532.532 0 0 1-.242.172a1.023 1.023 0 0 1-.363.059a.697.697 0 0 1-.255-.035c-.054-.024-.081-.06-.081-.109c0-.032.013-.06.039-.084a.132.132 0 0 1 .093-.036c.028 0 .071.004.129.012c.058.008.102.011.132.011c.149 0 .256-.035.319-.104c.063-.069.095-.188.095-.358v-1.103h-.6c-.099 0-.161-.008-.186-.024s-.038-.044-.038-.086c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.844c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.264zm-.413-1.768c0-.109.01-.179.031-.208c.02-.029.064-.044.13-.044c.062 0 .103.012.123.035s.03.081.03.172c0 .09-.009.145-.028.165c-.018.02-.06.03-.126.03s-.11-.01-.13-.03c-.02-.019-.03-.059-.03-.12zm2.298 1.768c0 .13-.008.228-.023.296a.423.423 0 0 1-.075.169a.532.532 0 0 1-.242.172a1.023 1.023 0 0 1-.363.059a.697.697 0 0 1-.255-.035c-.054-.024-.081-.06-.081-.109c0-.032.013-.06.039-.084a.132.132 0 0 1 .093-.036c.028 0 .071.004.129.012c.058.008.102.011.132.011c.149 0 .256-.035.319-.104c.063-.069.095-.188.095-.358v-1.103h-.6c-.099 0-.161-.008-.186-.024s-.038-.044-.038-.086c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.844c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.264zm-.414-1.768c0-.109.01-.179.031-.208s.064-.044.13-.044c.062 0 .103.012.123.035c.02.024.03.081.03.172c0 .09-.009.145-.028.165c-.018.02-.06.03-.126.03s-.11-.01-.13-.03c-.02-.019-.03-.059-.03-.12zm2.298 1.768c0 .13-.008.228-.023.296a.423.423 0 0 1-.075.169a.532.532 0 0 1-.242.172a1.023 1.023 0 0 1-.363.059c-.116 0-.2-.012-.255-.035s-.081-.06-.081-.109c0-.032.013-.06.039-.084a.132.132 0 0 1 .093-.036c.028 0 .071.004.129.012c.058.008.102.011.132.011c.149 0 .256-.035.319-.104c.063-.069.095-.188.095-.358v-1.103h-.6c-.099 0-.161-.008-.186-.024s-.038-.044-.038-.086c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.844c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.264zm-.414-1.768c0-.109.01-.179.031-.208s.064-.044.13-.044c.062 0 .103.012.123.035s.03.081.03.172c0 .09-.009.145-.028.165c-.018.02-.06.03-.126.03s-.11-.01-.13-.03c-.019-.019-.03-.059-.03-.12zm2.406 1.241c0-.077.008-.126.023-.149c.015-.022.044-.034.087-.034c.037 0 .064.009.083.028c.018.019.028.048.028.088v.57c0 .036-.01.064-.029.084a.108.108 0 0 1-.081.03h-1.432c-.037 0-.064-.009-.083-.028s-.028-.046-.028-.083c0-.041.011-.069.033-.084s.072-.022.149-.022h.192v-1.38h-.192c-.076 0-.125-.008-.148-.024c-.023-.016-.035-.045-.035-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.83c.037 0 .065.009.084.028c.019.018.029.046.029.083c0 .042-.011.071-.034.087c-.023.016-.073.024-.151.024h-.258v1.381h.816v-.401zm1-.374a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251c0-.098-.033-.18-.1-.244s-.153-.096-.258-.096c-.105 0-.191.032-.258.096s-.099.147-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.335.335 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251c0-.098-.033-.18-.1-.244s-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251c0-.098-.033-.18-.1-.244s-.153-.096-.258-.096c-.105 0-.191.032-.258.096s-.099.147-.099.247zm1.586 1.441h-.072c-.037 0-.065-.009-.084-.028c-.019-.018-.028-.046-.028-.083c0-.041.011-.069.033-.084s.072-.022.151-.022h.098V38.57h-.098c-.077 0-.126-.008-.149-.024c-.023-.016-.034-.045-.034-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.087-.027h1.335c.035 0 .061.01.079.031c.018.021.027.051.027.091v.362c0 .053-.008.09-.023.11c-.015.02-.043.031-.083.031c-.042 0-.071-.011-.087-.034c-.016-.022-.024-.073-.024-.152v-.217h-.816v.517h.402v-.081c0-.055.007-.094.022-.115c.015-.021.041-.032.077-.032s.061.011.074.034c.014.023.021.072.021.148v.285c0 .077-.007.126-.021.147c-.014.021-.04.032-.077.032s-.062-.012-.076-.037a.326.326 0 0 1-.021-.143v-.054h-.402v.679h.816v-.248c0-.079.008-.129.024-.152c.016-.022.045-.034.087-.034c.039 0 .066.01.082.031c.016.021.024.061.024.119v.386c0 .037-.009.065-.028.084s-.044.029-.078.029h-1.266zm2.349-.374c.009-.034.02-.055.032-.064c.012-.009.033-.014.063-.014h.317c.013 0 .024.003.033.009a.027.027 0 0 1 .013.023a.086.086 0 0 1-.003.017a.092.092 0 0 1-.009.023l-.396.823a.092.092 0 0 1-.027.035a.061.061 0 0 1-.036.011l-.019-.001l-.012-.002l-.101-.037a.093.093 0 0 1-.035-.023a.045.045 0 0 1-.012-.031l.001-.014l.005-.025l.186-.73zm-.118-.726c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .165.025.221.076s.084.116.084.197s-.028.146-.084.197s-.13.076-.221.076c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm16.968.848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm2.647.252c-.021 0-.037-.005-.045-.016c-.009-.011-.013-.031-.013-.062v-.126c-.061.077-.138.136-.23.179s-.192.064-.299.064a.642.642 0 0 1-.485-.206a.716.716 0 0 1-.195-.513a.72.72 0 0 1 .729-.739c.105 0 .2.019.284.056a.578.578 0 0 1 .216.165v-.587h-.081c-.089 0-.146-.008-.172-.024c-.026-.016-.039-.045-.039-.087c0-.037.01-.064.031-.083a.136.136 0 0 1 .091-.028h.314c.031 0 .053.005.067.015c.014.01.021.026.021.048v1.728h.069c.05 0 .086.008.109.025c.022.017.034.044.034.08a.11.11 0 0 1-.029.081a.106.106 0 0 1-.078.029h-.299zm-1.005-.689c0 .141.045.257.136.347s.206.135.347.135s.257-.047.348-.14s.136-.212.136-.356a.468.468 0 0 0-.485-.489c-.144 0-.261.047-.35.14s-.132.213-.132.363zm2.121-.303a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096c-.105 0-.191.032-.258.096s-.099.147-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.335.335 0 0 0-.099.247zm1.846.245a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512a.702.702 0 0 1-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.479.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.472.472 0 0 0 .349.137zm1.501-.039c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm5.647-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.335.335 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251c0-.098-.033-.18-.1-.244s-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.846.245a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512a.702.702 0 0 1-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028s-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028H87c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.479.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.47.47 0 0 0 .349.137zm9.032-.779a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.335.335 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251c0-.098-.033-.18-.1-.244s-.153-.096-.258-.096s-.191.032-.258.096s-.099.147-.099.247zm3.82.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251c0-.098-.033-.18-.1-.244s-.153-.096-.258-.096s-.191.032-.258.096s-.099.147-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm11.357.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.335.335 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251c0-.098-.033-.18-.1-.244s-.153-.096-.258-.096s-.191.032-.258.096s-.099.147-.099.247zM2.828 43.72h.492c.04 0 .069.008.088.025s.028.044.028.08c0 .042-.009.071-.027.087c-.018.016-.051.024-.099.024H2.123c-.041 0-.072-.009-.092-.028C2.01 43.89 2 43.862 2 43.826c0-.036.011-.062.032-.08s.054-.026.097-.026h.468v-.984h-.3c-.042 0-.074-.009-.096-.028c-.022-.019-.033-.046-.033-.082c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.449c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.138zm-.284-1.642c0-.11.01-.18.03-.209s.063-.043.128-.043c.063 0 .105.012.126.036c.02.024.031.081.031.171c0 .088-.009.142-.028.163c-.019.021-.062.031-.128.031c-.065 0-.108-.01-.128-.029c-.021-.019-.031-.059-.031-.12zm1.37 1.858h-.073c-.037 0-.065-.009-.084-.028c-.018-.018-.027-.046-.027-.082c0-.041.011-.069.033-.084c.022-.015.072-.022.151-.022h.098v-1.381h-.098c-.077 0-.126-.008-.149-.024c-.024-.016-.035-.045-.035-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.087-.027H5.18c.035 0 .061.01.079.031s.027.052.027.092v.362c0 .053-.008.09-.023.11c-.015.02-.043.031-.083.031c-.042 0-.071-.011-.087-.034s-.023-.073-.023-.151v-.219h-.816v.517h.402v-.081c0-.055.007-.094.022-.115c.015-.021.041-.032.077-.032s.061.012.074.035c.014.023.021.072.021.148v.285c0 .077-.007.126-.021.147s-.04.032-.077.032s-.062-.012-.076-.037a.326.326 0 0 1-.021-.143v-.054h-.401v.679h.816v-.248c0-.079.008-.129.024-.152s.045-.034.087-.034c.039 0 .066.01.082.031s.024.061.024.119v.386c0 .037-.009.065-.028.084a.103.103 0 0 1-.078.029H3.914zm7.893-1.099c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.117-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.914c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.585 1.441h-.072c-.037 0-.065-.009-.084-.028c-.019-.018-.028-.046-.028-.083c0-.041.011-.069.033-.084c.022-.015.072-.022.151-.022h.098v-1.381h-.098c-.077 0-.126-.008-.149-.024s-.034-.045-.034-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.087-.027h1.335c.035 0 .061.01.079.031c.018.021.027.051.027.091v.362c0 .053-.008.09-.023.11c-.015.02-.043.031-.083.031c-.042 0-.071-.011-.087-.034c-.016-.022-.024-.073-.024-.152v-.219h-.816v.517h.402v-.081c0-.055.007-.094.022-.115s.041-.032.077-.032s.061.012.074.035c.014.023.021.072.021.148v.285c0 .077-.007.126-.021.147c-.014.021-.04.032-.077.032s-.062-.012-.076-.037s-.021-.072-.021-.143v-.054h-.402v.679h.816v-.248c0-.079.008-.129.024-.152c.016-.022.045-.034.087-.034c.039 0 .066.01.082.031s.024.061.024.119v.386c0 .037-.009.065-.028.084a.103.103 0 0 1-.078.029h-1.266zm2.959-1.331c.05 0 .087.009.11.026s.034.045.034.083c0 .036-.011.063-.032.08c-.021.018-.054.027-.097.027h-.621v.512c0 .168.022.278.065.331c.043.053.118.08.223.08a.898.898 0 0 0 .334-.081a.984.984 0 0 1 .241-.081c.029 0 .053.01.073.031c.02.02.03.045.03.075c0 .034-.013.063-.038.088s-.068.049-.128.073c-.1.04-.19.069-.271.087a1.04 1.04 0 0 1-.226.028a.706.706 0 0 1-.301-.057a.383.383 0 0 1-.182-.171a.413.413 0 0 1-.044-.127a1.394 1.394 0 0 1-.013-.227v-.56h-.259c-.043 0-.074-.008-.094-.025c-.019-.017-.029-.044-.029-.082c0-.042.013-.071.04-.086s.083-.023.17-.023h.173v-.396c0-.044.009-.076.028-.097c.019-.021.048-.031.088-.031c.045 0 .076.013.094.038c.017.026.026.084.026.175v.311h.606zm1.165 1.08c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.258.258 0 0 1-.083-.198zm11.307 0c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm2.672-.014v-.364h-.38c-.031 0-.053-.008-.068-.025c-.015-.016-.022-.041-.022-.075c0-.039.007-.065.02-.08c.013-.014.039-.021.077-.021h.662c.027 0 .046.008.059.025c.013.017.019.042.019.076c0 .038-.008.064-.025.078s-.047.021-.09.021h-.02v.462a.123.123 0 0 1-.009.057a.085.085 0 0 1-.037.031c-.058.035-.143.064-.255.089s-.224.037-.339.037c-.274 0-.495-.087-.664-.262s-.253-.403-.253-.684a1 1 0 0 1 .248-.696a.811.811 0 0 1 .631-.274c.07 0 .139.008.209.024s.143.04.218.071a.107.107 0 0 1 .042-.057a.123.123 0 0 1 .07-.018c.048 0 .08.014.096.043a.502.502 0 0 1 .024.198v.209c0 .05-.009.085-.026.105c-.017.02-.048.03-.09.03c-.053 0-.091-.033-.115-.098a.767.767 0 0 0-.02-.044a.426.426 0 0 0-.405-.253a.542.542 0 0 0-.439.198c-.109.132-.164.311-.164.535c0 .232.06.416.181.553s.281.205.481.205a.766.766 0 0 0 .18-.023c.063-.015.131-.039.204-.073zm1.09-.726a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.941 1.19c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.258.258 0 0 1-.083-.198zm13.953.251c-.021 0-.037-.005-.045-.016s-.013-.031-.013-.062v-.126a.626.626 0 0 1-.23.179a.713.713 0 0 1-.299.064a.642.642 0 0 1-.485-.206a.716.716 0 0 1-.195-.513a.72.72 0 0 1 .729-.739c.105 0 .2.019.284.056a.578.578 0 0 1 .216.165v-.588h-.081c-.089 0-.146-.008-.172-.024c-.026-.016-.039-.045-.039-.087c0-.037.01-.064.031-.083a.136.136 0 0 1 .091-.028h.314c.031 0 .053.005.067.015c.014.01.021.026.021.048v1.728h.069c.05 0 .086.008.109.025s.034.044.034.08a.11.11 0 0 1-.029.081a.106.106 0 0 1-.078.029h-.299zm-1.004-.688c0 .141.045.257.136.347c.091.09.206.135.347.135a.466.466 0 0 0 .348-.14a.49.49 0 0 0 .136-.356a.468.468 0 0 0-.485-.489a.463.463 0 0 0-.35.14a.5.5 0 0 0-.132.363zm2.12-.303a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159c-.185 0-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm2.304 1.225c.05 0 .086.008.109.025c.022.017.034.044.034.08c0 .041-.011.07-.032.086c-.021.016-.062.025-.123.025h-.75c-.035 0-.061-.009-.08-.028a.115.115 0 0 1-.028-.082c0-.036.009-.062.027-.08c.018-.017.046-.026.084-.026h.198v-1.381h-.107c-.09 0-.146-.008-.168-.024c-.022-.016-.033-.045-.033-.087c0-.036.009-.063.028-.082s.045-.028.08-.028h.71c.248 0 .437.048.566.144s.193.238.193.425s-.064.328-.192.423s-.317.143-.567.143h-.268v.468h.319zm-.32-1.382v.711h.287c.16 0 .281-.03.36-.089c.08-.059.12-.149.12-.268c0-.118-.04-.206-.12-.265c-.08-.059-.2-.089-.36-.089h-.287zm6.248 1.382c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086c0 .041-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.06c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.224zm1.24-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.914c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.846.245a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512s-.312.21-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.479.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353s.207.137.349.137zm3.379-.778a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.846.245a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512s-.312.21-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.478.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353s.207.137.349.137zm7.148-.778a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm3.82.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.914c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm11.357.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.532.532 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286c0 .169-.058.306-.174.412s-.267.159-.452.159s-.335-.054-.451-.161s-.173-.246-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.914c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zM2.494 47.33c.009-.034.02-.055.032-.064c.012-.009.033-.014.063-.014h.317c.013 0 .024.003.033.009a.027.027 0 0 1 .013.023a.086.086 0 0 1-.003.017a.092.092 0 0 1-.009.023l-.396.823a.092.092 0 0 1-.027.035a.061.061 0 0 1-.036.011l-.019-.001l-.011-.002l-.101-.037a.081.081 0 0 1-.034-.023a.044.044 0 0 1-.011-.031l.001-.014l.005-.025l.183-.73zm-.118-.725c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .165.025.221.076s.084.116.084.197s-.028.146-.084.197s-.13.076-.221.076c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm2.336.883h.492c.04 0 .069.008.088.025s.028.044.028.08c0 .042-.009.071-.027.087s-.051.024-.099.024H4.007c-.041 0-.072-.009-.092-.028c-.02-.018-.031-.046-.031-.083c0-.036.011-.062.032-.08s.054-.026.097-.026h.468v-.984h-.3c-.042 0-.074-.009-.096-.028c-.022-.019-.033-.046-.033-.082c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.449c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.139zm-.283-1.642c0-.11.01-.18.03-.209c.02-.029.063-.043.128-.043c.063 0 .105.012.126.036c.02.024.031.081.031.171c0 .088-.009.142-.028.163c-.019.021-.062.031-.128.031c-.065 0-.108-.01-.128-.029c-.021-.019-.031-.059-.031-.12zm8.906 1.858h-.072c-.037 0-.065-.009-.084-.028c-.019-.018-.028-.046-.028-.083c0-.041.011-.069.033-.084c.022-.015.072-.022.151-.022h.098v-1.381h-.098c-.077 0-.126-.008-.149-.024c-.023-.016-.034-.045-.034-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.087-.027h1.335c.035 0 .061.01.079.031c.018.021.027.051.027.091v.362c0 .053-.008.09-.023.11c-.015.02-.043.031-.083.031c-.042 0-.071-.011-.087-.034c-.016-.022-.024-.073-.024-.152v-.219h-.816v.517h.402v-.081c0-.055.007-.094.022-.115c.015-.021.041-.032.077-.032s.061.011.074.035c.014.023.021.072.021.148v.285c0 .077-.007.126-.021.147c-.014.021-.04.032-.077.032s-.062-.012-.076-.037a.326.326 0 0 1-.021-.143v-.054h-.402v.679h.816v-.245c0-.079.008-.129.024-.152c.016-.022.045-.034.087-.034c.039 0 .066.01.082.031c.016.021.024.061.024.119v.386c0 .037-.009.065-.028.084a.103.103 0 0 1-.078.029h-1.266zm2.234-.991a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm2.06 1.012c.008-.035.019-.057.032-.067c.013-.01.036-.015.067-.015h.336c.015 0 .028.003.037.009c.009.006.014.014.014.023l-.003.02a.092.092 0 0 1-.009.023l-.422.878a.098.098 0 0 1-.029.037a.067.067 0 0 1-.04.014l-.01-.002l-.018-.006l-.107-.04a.096.096 0 0 1-.037-.025a.047.047 0 0 1-.012-.032v-.024l.003-.015l.198-.778zm16.96 0c.008-.035.019-.057.032-.067c.013-.01.036-.015.067-.015h.336c.015 0 .028.003.037.009c.009.006.014.014.014.023l-.003.02a.092.092 0 0 1-.009.023l-.422.877a.098.098 0 0 1-.029.037a.067.067 0 0 1-.04.014l-.01-.002l-.018-.006l-.107-.04a.096.096 0 0 1-.037-.025a.047.047 0 0 1-.012-.032v-.024l.003-.015l.198-.777zm1.758-.563a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm2.061 1.012c.008-.035.019-.057.032-.067c.013-.01.036-.015.067-.015h.336c.015 0 .028.003.037.009c.009.006.014.014.014.023l-.003.02a.092.092 0 0 1-.009.023l-.422.877a.098.098 0 0 1-.029.037a.067.067 0 0 1-.04.014l-.01-.002l-.018-.006l-.107-.04a.096.096 0 0 1-.037-.025a.047.047 0 0 1-.012-.032v-.024l.003-.015l.198-.777zm13.065-.563a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm9.472.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm3.819.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.846.244c.057-.072.129-.126.215-.164s.183-.057.291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512a.702.702 0 0 1-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.478.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.135.208-.135.351s.045.261.136.353c.09.092.206.138.348.138zm5.264-.778a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm3.82.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153s.173.227.173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913c0 .101.033.184.1.249s.153.097.257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm11.357.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.39s.259-.153.435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263a.5.5 0 0 1 .17-.39a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.479.479 0 0 1 .173.374c0 .11-.025.202-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913c0 .101.033.184.1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zM13.625 51.472h-.311c-.038 0-.066-.009-.085-.028c-.019-.018-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084s.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379s-.107.219-.189.307a.671.671 0 0 1-.28.174c-.11.036-.251.054-.424.054l-.103-.003a2.647 2.647 0 0 0-.115-.002zm0-.216l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169s.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm1.944-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm2.06 1.012c.008-.035.019-.057.032-.067c.013-.01.036-.015.067-.015h.336c.015 0 .028.003.037.009s.014.014.014.023a.092.092 0 0 1-.012.043l-.422.878a.098.098 0 0 1-.029.037a.067.067 0 0 1-.04.014l-.01-.002l-.018-.006l-.107-.04a.096.096 0 0 1-.037-.025a.047.047 0 0 1-.012-.032v-.024l.003-.015l.198-.778zm16.84-.671c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.257.257 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.117-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.257.257 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.258.258 0 0 1-.083-.198zm13.185-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm17.01.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm2.579 1.224c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086c0 .041-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.227zm1.241-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512s-.312.21-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.28c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083s.051-.028.09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.479.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137a.481.481 0 0 0-.136.352c0 .143.045.261.136.353a.47.47 0 0 0 .349.137zm3.379-.778a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm3.82.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm11.357.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zM13.625 55.24h-.311c-.038 0-.066-.009-.085-.028s-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379a.904.904 0 0 1-.189.307a.671.671 0 0 1-.28.174c-.11.036-.251.054-.424.054l-.103-.003a2.647 2.647 0 0 0-.115-.002zm0-.216l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169c.117-.112.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm1.944-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm2.06 1.013c.008-.035.019-.057.032-.067c.013-.01.036-.015.067-.015h.336c.015 0 .028.003.037.009c.009.006.014.014.014.023a.092.092 0 0 1-.012.043l-.422.877c-.007.015-.017.028-.029.037s-.026.014-.04.014l-.01-.002l-.018-.006l-.107-.04a.096.096 0 0 1-.037-.025a.047.047 0 0 1-.012-.032v-.024l.003-.015l.198-.777zm16.84-.672c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm13.185-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm3.819.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm4.463 1.224c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872H88.7c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086s-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665H89.7c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.223zm1.241-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512a.702.702 0 0 1-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.478.983c.144 0 .261-.045.351-.136s.135-.209.135-.354a.47.47 0 0 0-.486-.489c-.142 0-.258.046-.349.137s-.136.209-.136.352s.045.261.136.353s.207.137.349.137zm1.495-.778a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm3.82.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm11.357.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zM13.625 59.009h-.311c-.038 0-.066-.009-.085-.028c-.019-.018-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379s-.107.219-.189.307a.671.671 0 0 1-.28.174c-.11.036-.251.054-.424.054l-.103-.003a2.647 2.647 0 0 0-.115-.002zm0-.217l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169c.117-.112.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm1.944-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm2.06 1.013c.008-.035.019-.057.032-.067c.013-.01.036-.015.067-.015h.336c.015 0 .028.003.037.009c.009.006.014.014.014.023l-.003.02a.092.092 0 0 1-.009.023l-.422.878a.098.098 0 0 1-.029.037a.067.067 0 0 1-.04.014l-.01-.002l-.018-.006l-.107-.04a.096.096 0 0 1-.037-.025a.047.047 0 0 1-.012-.032v-.024l.003-.015l.198-.778zm16.84-.672c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm13.185-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm9.472.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm3.819.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm6.348 1.224c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086c0 .041-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.227zm1.24-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm3.82.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm11.357.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zM13.625 62.777h-.311c-.038 0-.066-.009-.085-.028c-.019-.018-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084s.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379s-.107.219-.189.307a.671.671 0 0 1-.28.174c-.11.036-.251.054-.424.054l-.103-.003a2.647 2.647 0 0 0-.115-.002zm0-.217l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169s.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm1.944-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm2.06 1.013c.008-.035.019-.057.032-.067c.013-.01.036-.015.067-.015h.336c.015 0 .028.003.037.009s.014.014.014.023a.092.092 0 0 1-.012.043l-.422.878a.098.098 0 0 1-.029.037a.067.067 0 0 1-.04.014l-.01-.002l-.018-.006l-.107-.04a.096.096 0 0 1-.037-.025a.047.047 0 0 1-.012-.032v-.024l.003-.015l.198-.778zm16.84-.672c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm13.829.035c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025s.031.045.031.086c0 .041-.013.07-.038.086s-.071.025-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025s-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024s.033.045.033.087c0 .041-.011.07-.033.086s-.064.025-.125.025h-.025l-.521.894v.488h.227zm1.24-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.846.245a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512s-.312.21-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.478.983c.144 0 .261-.045.351-.136s.135-.209.135-.354a.47.47 0 0 0-.486-.489c-.142 0-.258.046-.349.137s-.136.209-.136.352s.045.261.136.353s.207.137.349.137zm6.032.213c-.021 0-.037-.005-.045-.016c-.009-.011-.013-.031-.013-.062v-.126a.626.626 0 0 1-.23.179a.713.713 0 0 1-.299.064a.642.642 0 0 1-.485-.206a.716.716 0 0 1-.195-.513a.72.72 0 0 1 .729-.739c.105 0 .2.019.284.056a.578.578 0 0 1 .216.165v-.589h-.081c-.089 0-.146-.008-.172-.024c-.026-.016-.039-.045-.039-.087c0-.037.01-.064.031-.083a.136.136 0 0 1 .091-.028h.314c.031 0 .053.005.067.015c.014.01.021.026.021.048v1.728h.069c.05 0 .086.008.109.025c.022.017.034.044.034.08a.11.11 0 0 1-.029.081a.106.106 0 0 1-.078.029h-.299zm-1.004-.689c0 .141.045.257.136.347c.091.09.206.135.347.135s.257-.047.348-.14s.136-.212.136-.356a.468.468 0 0 0-.485-.489a.463.463 0 0 0-.35.14a.502.502 0 0 0-.132.363zm2.12-.303a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm2.305 1.224c.05 0 .086.008.109.025c.022.017.034.044.034.08c0 .041-.011.07-.032.086c-.021.016-.062.025-.123.025h-.75c-.035 0-.061-.009-.08-.028c-.018-.019-.028-.046-.028-.082s.009-.062.027-.08c.018-.017.046-.026.084-.026h.198v-1.381h-.107c-.09 0-.146-.008-.168-.024c-.022-.016-.033-.045-.033-.087c0-.036.009-.063.028-.082s.045-.028.08-.028h.71c.248 0 .437.048.566.144s.193.238.193.425s-.064.328-.192.423s-.317.143-.567.143h-.268v.468h.319zm-.321-1.381v.711h.287c.16 0 .281-.03.36-.089c.08-.059.12-.149.12-.268c0-.118-.04-.206-.12-.265c-.08-.059-.2-.089-.36-.089h-.287zm3.72.606a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm8.232 1.224c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.025c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086c0 .041-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025s-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.226zm1.241-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm4.464 1.224c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086c0 .041-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025s-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.227zm1.24-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.846.245a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512s-.312.21-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.478.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.472.472 0 0 0 .349.137zm1.501-.039c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.116-.083-.198zm3.769 0c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm2.646.252c-.021 0-.037-.005-.045-.016c-.009-.011-.013-.031-.013-.062v-.126a.626.626 0 0 1-.23.179a.713.713 0 0 1-.299.064a.642.642 0 0 1-.485-.206a.716.716 0 0 1-.195-.513a.72.72 0 0 1 .729-.739c.105 0 .2.019.284.056a.578.578 0 0 1 .216.165v-.589h-.081c-.089 0-.146-.008-.172-.024c-.026-.016-.039-.045-.039-.087c0-.037.01-.064.031-.083a.136.136 0 0 1 .091-.028h.314c.031 0 .053.005.067.015c.014.01.021.026.021.048v1.728h.069c.05 0 .086.008.109.025c.022.017.034.044.034.08a.11.11 0 0 1-.029.081a.106.106 0 0 1-.078.029h-.299zm-1.004-.689c0 .141.045.257.136.347c.091.09.206.135.347.135s.257-.047.348-.14s.136-.212.136-.356a.47.47 0 0 0-.485-.489c-.144 0-.261.047-.35.14s-.132.213-.132.363zm2.121-.303a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm2.305 1.224c.05 0 .086.008.109.025c.022.017.034.044.034.08c0 .041-.011.07-.032.086c-.021.016-.062.025-.123.025h-.75c-.035 0-.061-.009-.08-.028c-.018-.019-.028-.046-.028-.082s.009-.062.027-.08c.018-.017.046-.026.084-.026h.198v-1.381h-.107c-.09 0-.146-.008-.168-.024c-.022-.016-.033-.045-.033-.087c0-.036.009-.063.028-.082c.018-.019.045-.028.08-.028h.71c.248 0 .437.048.566.144s.193.238.193.425s-.064.328-.192.423c-.128.095-.317.143-.567.143h-.268v.468h.319zm-.32-1.381v.711h.287c.16 0 .281-.03.36-.089c.08-.059.12-.149.12-.268c0-.118-.04-.206-.12-.265c-.08-.059-.2-.089-.36-.089h-.287zM13.685 65.554a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.846 1.048l.264-.917c.009-.033.02-.053.031-.062c.012-.009.033-.013.064-.013h.069c.03 0 .051.005.064.014c.013.009.024.028.033.055l.299.923l.15-1.219h-.241c-.047 0-.082-.008-.103-.025c-.022-.016-.033-.042-.033-.078c0-.039.01-.066.031-.081c.021-.015.06-.023.117-.023h.495a.08.08 0 0 1 .06.03c.017.02.026.045.026.074c0 .035-.01.061-.029.077c-.019.017-.049.025-.087.025h-.018l-.218 1.533c-.003.032-.009.053-.018.063c-.009.01-.023.015-.042.015h-.109c-.024 0-.041-.005-.054-.014s-.023-.027-.032-.052l-.333-1.055l-.294 1.058c-.007.026-.016.042-.028.051s-.03.012-.055.012h-.115c-.02 0-.036-.005-.045-.015c-.01-.01-.017-.032-.021-.067l-.233-1.53h-.018c-.04 0-.07-.009-.09-.026c-.02-.017-.03-.043-.03-.077c0-.031.008-.056.025-.075a.076.076 0 0 1 .06-.029h.497c.056 0 .095.008.116.023c.021.015.031.042.031.081c0 .036-.011.062-.033.078a.174.174 0 0 1-.102.025h-.216l.165 1.221zm2.099-.035c.008-.035.019-.057.032-.067c.013-.01.036-.015.067-.015h.336c.015 0 .028.003.037.009s.014.014.014.023l-.003.02a.092.092 0 0 1-.009.023l-.422.878c-.007.015-.017.028-.029.037s-.026.014-.04.014l-.01-.002l-.018-.006l-.107-.04c-.016-.007-.029-.015-.037-.025s-.012-.02-.012-.032v-.024l.003-.015l.198-.778zm16.84-.671c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.117-.083-.198zm0 .847c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.878-.739a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.941.342c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.258.258 0 0 1-.083-.198zm0 .847c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zM62.697 65.2c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057c.011-.012.029-.018.052-.018h.147c.024 0 .041.006.052.018c.011.012.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm.543 0c-.026 0-.044-.006-.055-.019c-.011-.013-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057c.012-.012.029-.018.051-.018h.149c.022 0 .04.006.051.018c.012.012.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm1.967 1.129c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024s-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086s-.013.07-.038.086a.273.273 0 0 1-.137.025h-.047l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.223zm1.241-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.335.335 0 0 0-.099.247zm2.305 1.225c.05 0 .086.008.109.025c.022.017.034.044.034.08c0 .041-.011.07-.032.086c-.021.016-.062.025-.123.025h-.75c-.035 0-.061-.009-.08-.028c-.018-.019-.028-.046-.028-.082s.009-.062.027-.08c.018-.017.046-.026.084-.026h.198v-1.381h-.107c-.09 0-.146-.008-.168-.024c-.022-.016-.033-.045-.033-.087c0-.036.009-.063.028-.082c.018-.019.045-.028.08-.028h.71c.248 0 .437.048.566.144c.129.096.193.238.193.425s-.064.328-.192.423c-.128.095-.317.143-.567.143h-.268v.468h.319zm-.321-1.382v.711h.287c.16 0 .281-.03.36-.089c.08-.059.12-.149.12-.268c0-.118-.04-.206-.12-.265c-.08-.059-.2-.089-.36-.089h-.287zm1.836.607a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm3.819.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm10.117 1.225c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086s-.013.07-.038.086a.273.273 0 0 1-.137.025h-.048l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.224zm1.24-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm5.722.096c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057c.011-.012.029-.018.052-.018h.147c.024 0 .041.006.052.018c.011.012.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm.543 0c-.026 0-.044-.006-.055-.019c-.011-.013-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057c.012-.012.029-.018.051-.018h.149c.022 0 .04.006.051.018c.012.012.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm1.967 1.129c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086s-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.227zm1.241-.775a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.335.335 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm2.304 1.225c.05 0 .086.008.109.025c.022.017.034.044.034.08c0 .041-.011.07-.032.086c-.021.016-.062.025-.123.025h-.75c-.035 0-.061-.009-.08-.028s-.028-.046-.028-.082s.009-.062.027-.08c.018-.017.046-.026.084-.026h.198v-1.381h-.107c-.09 0-.146-.008-.168-.024c-.022-.016-.033-.045-.033-.087c0-.036.009-.063.028-.082c.018-.019.045-.028.08-.028h.71c.248 0 .437.048.566.144c.129.096.193.238.193.425s-.064.328-.192.423c-.128.095-.317.143-.567.143h-.268v.468h.319zm-.32-1.382v.711h.287c.16 0 .281-.03.36-.089s.12-.149.12-.268c0-.118-.04-.206-.12-.265c-.08-.059-.2-.089-.36-.089h-.287zm1.853.253c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057c.011-.012.029-.018.052-.018h.147c.024 0 .041.006.052.018c.011.012.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm.543 0c-.026 0-.044-.006-.055-.019c-.011-.013-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057c.012-.012.029-.018.051-.018h.149c.022 0 .04.006.051.018c.012.012.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm-108.06 4.72l.264-.917c.009-.033.02-.053.031-.062c.012-.009.033-.013.064-.013h.069c.03 0 .051.005.064.014s.024.028.033.055l.299.923l.15-1.219h-.241c-.047 0-.082-.008-.103-.025c-.022-.016-.033-.042-.033-.078c0-.039.01-.066.031-.081c.021-.015.06-.023.117-.023h.495a.08.08 0 0 1 .06.03c.017.02.026.045.026.074c0 .035-.01.061-.029.077s-.049.025-.087.025h-.018l-.218 1.533c-.003.032-.009.053-.018.063c-.009.01-.023.015-.042.015h-.109a.091.091 0 0 1-.054-.014a.113.113 0 0 1-.032-.052l-.333-1.055l-.294 1.058c-.007.026-.016.042-.028.051c-.011.008-.03.012-.055.012h-.115c-.02 0-.036-.005-.045-.015c-.01-.01-.017-.032-.021-.067l-.233-1.53h-.018c-.04 0-.07-.009-.09-.026c-.02-.017-.03-.043-.03-.077c0-.031.008-.056.025-.075a.076.076 0 0 1 .06-.029h.497c.056 0 .095.008.116.023c.021.015.031.042.031.081c0 .036-.011.062-.033.078a.174.174 0 0 1-.102.025h-.216l.165 1.221zm1.973-.598a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.846 1.048l.264-.917c.009-.033.02-.053.031-.062s.033-.013.064-.013h.069c.03 0 .051.005.064.014c.013.009.024.028.033.055l.299.923l.15-1.219h-.241c-.047 0-.082-.008-.103-.025c-.022-.016-.033-.042-.033-.078c0-.039.01-.066.031-.081c.021-.015.06-.023.117-.023h.495a.08.08 0 0 1 .06.03c.017.02.026.045.026.074c0 .035-.01.061-.029.077c-.019.017-.049.025-.087.025h-.018l-.218 1.533c-.003.032-.009.053-.018.063c-.009.01-.023.015-.042.015h-.109a.091.091 0 0 1-.054-.014a.113.113 0 0 1-.032-.052l-.333-1.055l-.294 1.058c-.007.026-.016.042-.028.051s-.03.012-.055.012h-.115c-.02 0-.036-.005-.045-.015s-.017-.032-.021-.067l-.233-1.53h-.018c-.04 0-.07-.009-.09-.026c-.02-.017-.03-.043-.03-.077c0-.031.008-.056.025-.075a.076.076 0 0 1 .06-.029h.497c.056 0 .095.008.116.023c.021.015.031.042.031.081c0 .036-.011.062-.033.078a.174.174 0 0 1-.102.025h-.216l.165 1.221zm2.099-.035c.008-.035.019-.057.032-.067s.036-.015.067-.015h.336c.015 0 .028.003.037.009s.014.014.014.023a.092.092 0 0 1-.012.043l-.422.878c-.007.015-.017.028-.029.037s-.026.014-.04.014l-.01-.002l-.018-.006l-.107-.04a.096.096 0 0 1-.037-.025a.047.047 0 0 1-.012-.032v-.024l.003-.015l.198-.778zm16.84-.671c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.117-.083-.198zm0 .847c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.878-.739a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.333.333 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.463c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.941.342c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.258.258 0 0 1-.083-.198zm0 .847c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm-34.014 3.628l.264-.917c.009-.033.02-.053.031-.062c.012-.009.033-.013.064-.013h.069c.03 0 .051.005.064.014s.024.028.033.055l.299.923l.15-1.219h-.241c-.047 0-.082-.008-.103-.025c-.022-.016-.033-.042-.033-.078c0-.039.01-.066.031-.081c.021-.015.06-.023.117-.023h.495a.08.08 0 0 1 .06.03c.017.02.026.045.026.074c0 .035-.01.061-.029.077c-.019.017-.049.025-.087.025h-.018l-.218 1.533c-.003.032-.009.053-.018.063s-.023.015-.042.015h-.109c-.024 0-.041-.005-.054-.014s-.023-.027-.032-.052l-.333-1.055l-.294 1.058c-.007.026-.016.042-.028.051c-.011.008-.03.012-.055.012h-.115c-.02 0-.036-.005-.045-.015c-.01-.01-.017-.032-.021-.067l-.233-1.53h-.018c-.04 0-.07-.009-.09-.026c-.02-.017-.03-.043-.03-.077c0-.031.008-.056.025-.075a.076.076 0 0 1 .06-.029h.497c.056 0 .095.008.116.023c.021.015.031.042.031.081c0 .036-.011.062-.033.078a.174.174 0 0 1-.102.025h-.216l.165 1.221zm1.973-.599a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.846 1.048l.264-.917c.009-.033.02-.053.031-.062c.012-.009.033-.013.064-.013h.069c.03 0 .051.005.064.014c.013.009.024.028.033.055l.299.923l.15-1.219h-.241c-.047 0-.082-.008-.103-.025c-.022-.016-.033-.042-.033-.078c0-.039.01-.066.031-.081c.021-.015.06-.023.117-.023h.495a.08.08 0 0 1 .06.03c.017.02.026.045.026.074c0 .035-.01.061-.029.077c-.019.017-.049.025-.087.025h-.018l-.218 1.533c-.003.032-.009.053-.018.063c-.009.01-.023.015-.042.015h-.109c-.024 0-.041-.005-.054-.014s-.023-.027-.032-.052l-.333-1.055l-.294 1.058c-.007.026-.016.042-.028.051s-.03.012-.055.012h-.115c-.02 0-.036-.005-.045-.015c-.01-.01-.017-.032-.021-.067l-.233-1.53h-.018c-.04 0-.07-.009-.09-.026c-.02-.017-.03-.043-.03-.077c0-.031.008-.056.025-.075a.076.076 0 0 1 .06-.029h.497c.056 0 .095.008.116.023c.021.015.031.042.031.081c0 .036-.011.062-.033.078a.174.174 0 0 1-.102.025h-.216l.165 1.221zm1.98-.707c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.252.252 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm16.959-.848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.117-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.258.258 0 0 1-.083-.198zm13.185-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512a.702.702 0 0 1-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06s-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025s-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.478.983c.144 0 .261-.045.351-.136s.135-.209.135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.472.472 0 0 0 .349.137zm1.501-.038c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075a.258.258 0 0 1-.083-.198zm7.532-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.332.332 0 0 0-.357.343zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512a.702.702 0 0 1-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06s-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028H87c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.479.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.47.47 0 0 0 .349.137zm1.501-.038c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.117-.083-.198zm5.647-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512a.702.702 0 0 1-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06s-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.478.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.472.472 0 0 0 .349.137zm1.501-.038c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.117-.083-.198zm7.538 0c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075a.255.255 0 0 1-.083-.198zm2.646.251c-.021 0-.037-.005-.045-.016c-.009-.011-.013-.031-.013-.062v-.126c-.061.077-.138.136-.23.179s-.192.064-.299.064a.642.642 0 0 1-.485-.206a.716.716 0 0 1-.195-.513a.72.72 0 0 1 .729-.739c.105 0 .2.019.284.056s.156.092.216.165v-.587h-.081c-.089 0-.146-.008-.172-.024c-.026-.016-.039-.045-.039-.087c0-.037.01-.064.031-.083a.136.136 0 0 1 .091-.028h.314c.031 0 .053.005.067.015c.014.01.021.026.021.048v1.728h.069c.05 0 .086.008.109.025c.022.017.034.044.034.08a.11.11 0 0 1-.029.081a.106.106 0 0 1-.078.029h-.299zm-1.004-.688c0 .141.045.257.136.347s.206.135.347.135a.466.466 0 0 0 .348-.14a.49.49 0 0 0 .136-.356a.47.47 0 0 0-.485-.489c-.144 0-.261.047-.35.14s-.132.212-.132.363zm2.12-.303a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512a.702.702 0 0 1-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06s-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.479.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489c-.142 0-.258.046-.349.137s-.136.208-.136.351s.045.261.136.353s.206.138.349.138zm1.501-.038c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.117-.083-.198zM13.625 77.849h-.311c-.038 0-.066-.009-.085-.028s-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379a.904.904 0 0 1-.189.307c-.077.08-.17.138-.28.174s-.251.054-.424.054l-.103-.003a2.647 2.647 0 0 0-.115-.002zm0-.216l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169s.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm2.739-.049v-.364h-.38c-.031 0-.053-.008-.068-.025c-.015-.016-.022-.041-.022-.075c0-.039.007-.065.02-.08c.013-.014.039-.021.077-.021h.662c.027 0 .046.008.059.025c.013.017.019.042.019.076c0 .038-.008.064-.025.078c-.017.014-.047.021-.09.021h-.02v.462a.123.123 0 0 1-.009.057a.085.085 0 0 1-.037.031a.882.882 0 0 1-.255.089a1.538 1.538 0 0 1-.339.037c-.274 0-.495-.087-.664-.262c-.169-.175-.253-.403-.253-.684s.083-.513.248-.696a.811.811 0 0 1 .631-.274c.07 0 .139.008.209.024c.07.016.143.04.218.071a.114.114 0 0 1 .042-.058a.145.145 0 0 1 .07-.016c.048 0 .08.014.096.043a.502.502 0 0 1 .024.198v.209c0 .05-.009.085-.026.105c-.017.02-.048.03-.09.03c-.053 0-.091-.033-.115-.098a.767.767 0 0 0-.02-.044a.426.426 0 0 0-.405-.253a.542.542 0 0 0-.439.198c-.109.132-.164.311-.164.535c0 .232.06.416.181.553a.61.61 0 0 0 .481.205a.766.766 0 0 0 .18-.023c.062-.016.13-.04.204-.074zm1.884 0v-.364h-.38c-.031 0-.053-.008-.068-.025c-.015-.016-.022-.041-.022-.075c0-.039.007-.065.02-.08s.039-.021.077-.021h.662c.027 0 .046.008.059.025c.013.017.019.042.019.076c0 .038-.008.064-.025.078c-.017.014-.047.021-.09.021h-.02v.462a.123.123 0 0 1-.009.057a.085.085 0 0 1-.037.031a.882.882 0 0 1-.255.089a1.538 1.538 0 0 1-.339.037c-.274 0-.495-.087-.664-.262c-.169-.175-.253-.403-.253-.684s.083-.513.248-.696a.811.811 0 0 1 .631-.274c.07 0 .139.008.209.024c.07.016.143.04.218.071a.114.114 0 0 1 .042-.058a.15.15 0 0 1 .071-.016c.048 0 .08.014.096.043a.502.502 0 0 1 .024.198v.209c0 .05-.009.085-.026.105c-.017.02-.048.03-.09.03c-.053 0-.091-.033-.115-.098a.767.767 0 0 0-.02-.044a.426.426 0 0 0-.405-.253a.542.542 0 0 0-.439.198c-.109.132-.164.311-.164.535c0 .232.06.416.181.553a.61.61 0 0 0 .481.205a.766.766 0 0 0 .18-.023c.062-.016.129-.04.203-.074zm1.03.265h-.311c-.038 0-.066-.009-.085-.028s-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.025c-.061 0-.103-.008-.126-.025c-.023-.016-.035-.045-.035-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379a.904.904 0 0 1-.189.307c-.077.08-.17.138-.28.174s-.251.054-.424.054l-.103-.003a2.606 2.606 0 0 0-.114-.002zm0-.216l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169c.117-.112.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381zm1.951-.883c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.252.252 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.252.252 0 0 1-.083-.198zm16.959-.848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm13.185-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm3.838.096c-.026 0-.044-.006-.056-.019s-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057c.011-.012.029-.018.052-.018h.147c.024 0 .041.006.052.018c.011.012.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm.542 0c-.026 0-.044-.006-.055-.019s-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057s.029-.018.051-.018h.149c.022 0 .04.006.051.018c.012.012.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm1.324.353a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512s-.312.21-.514.21c-.107 0-.201-.019-.281-.057s-.145-.095-.196-.172v.123c0 .028-.005.048-.015.06s-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.479.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.472.472 0 0 0 .349.137zm10.935-1.131c-.026 0-.044-.006-.056-.019s-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057c.011-.012.029-.018.052-.018h.147c.024 0 .041.006.052.018s.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm.543 0c-.026 0-.044-.006-.055-.019s-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057c.012-.012.029-.018.051-.018h.149c.022 0 .04.006.051.018c.012.012.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm1.323.353a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512s-.312.21-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015c.014.01.021.026.021.048v.751zm.478.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.472.472 0 0 0 .349.137zm3.38-.778a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.266.159-.451.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417c0-.104.028-.197.083-.278a.52.52 0 0 1 .234-.186zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm3.838.096c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057c.011-.012.029-.018.052-.018h.147c.024 0 .041.006.052.018s.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm.542 0c-.026 0-.044-.006-.055-.019s-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057c.012-.012.029-.018.051-.018h.149c.022 0 .04.006.051.018c.012.012.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm1.324.353a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.722c0 .201-.07.372-.211.512s-.312.21-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015s.021.026.021.048v.751zm.479.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.47.47 0 0 0 .349.137zm4.147.213c-.021 0-.037-.005-.045-.016s-.013-.031-.013-.062v-.126a.626.626 0 0 1-.23.179a.713.713 0 0 1-.299.064a.642.642 0 0 1-.485-.206a.716.716 0 0 1-.195-.513a.72.72 0 0 1 .729-.739c.105 0 .2.019.284.056a.578.578 0 0 1 .216.165v-.587h-.081c-.089 0-.146-.008-.172-.024c-.026-.016-.039-.045-.039-.087c0-.037.01-.064.031-.083s.051-.028.091-.028h.314c.031 0 .053.005.067.015c.014.01.021.026.021.048v1.728h.069c.05 0 .086.008.109.025c.022.017.034.044.034.08a.11.11 0 0 1-.029.081a.106.106 0 0 1-.078.029h-.299zm-1.004-.688c0 .141.045.257.136.347c.091.09.206.135.347.135s.257-.047.348-.14s.136-.212.136-.356a.47.47 0 0 0-.485-.489c-.144 0-.261.047-.35.14s-.132.213-.132.363zm2.121-.303a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.954.096c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057s.029-.018.052-.018h.147c.024 0 .041.006.052.018c.011.012.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm.542 0c-.026 0-.044-.006-.055-.019c-.011-.013-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057s.029-.018.051-.018h.149c.022 0 .04.006.051.018s.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm1.342 0c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057s.029-.018.052-.018h.147c.024 0 .041.006.052.018s.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm.543 0c-.026 0-.044-.006-.055-.019s-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057c.012-.012.029-.018.051-.018h.149c.022 0 .04.006.051.018c.012.012.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm1.323.353a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.846.244a.555.555 0 0 1 .215-.164a.713.713 0 0 1 .291-.057a.703.703 0 0 1 .719.723c0 .201-.07.372-.211.512s-.312.21-.514.21a.65.65 0 0 1-.281-.057a.477.477 0 0 1-.196-.172v.123c0 .028-.005.048-.015.06c-.01.012-.026.018-.048.018h-.281c-.04 0-.07-.009-.089-.028c-.019-.018-.029-.046-.029-.083c0-.041.012-.069.035-.084c.024-.015.07-.022.14-.022h.032v-1.57h-.029c-.07 0-.117-.008-.143-.025c-.026-.016-.038-.045-.038-.086c0-.037.01-.064.031-.083a.133.133 0 0 1 .09-.028h.233c.031 0 .053.005.067.015s.021.026.021.048v.75zm.478.983a.472.472 0 0 0 .351-.136a.482.482 0 0 0 .135-.354a.47.47 0 0 0-.486-.489a.472.472 0 0 0-.349.137c-.09.091-.136.209-.136.352s.045.261.136.353a.472.472 0 0 0 .349.137zm-87.065 2.882c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm13.185-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm3.825 1.189c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075a.255.255 0 0 1-.083-.198zm2.647.251c-.021 0-.037-.005-.045-.016c-.009-.011-.013-.031-.013-.062v-.126a.626.626 0 0 1-.23.179a.713.713 0 0 1-.299.064a.642.642 0 0 1-.485-.206a.716.716 0 0 1-.195-.513a.72.72 0 0 1 .729-.739c.105 0 .2.019.284.056s.156.092.216.165v-.587h-.081c-.089 0-.146-.008-.172-.024c-.026-.016-.039-.045-.039-.087c0-.037.01-.064.031-.083a.136.136 0 0 1 .091-.028h.314c.031 0 .053.005.067.015c.014.01.021.026.021.048v1.728h.069c.05 0 .086.008.109.025c.022.017.034.044.034.08a.11.11 0 0 1-.029.081a.106.106 0 0 1-.078.029h-.299zm-1.005-.688c0 .141.045.257.136.347c.091.09.206.135.347.135s.257-.047.348-.14s.136-.212.136-.356a.47.47 0 0 0-.485-.489a.463.463 0 0 0-.35.14a.506.506 0 0 0-.132.363zm2.121-.303a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm3.82.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm3.819.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm-86.625 4.109c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.79-.141l.264-.917c.009-.033.02-.053.031-.062c.012-.009.033-.013.064-.013h.069c.03 0 .051.005.064.014c.013.009.024.028.033.055l.299.923l.15-1.219h-.242c-.047 0-.082-.008-.103-.025c-.022-.016-.033-.042-.033-.078c0-.039.01-.066.031-.081s.06-.023.117-.023h.495a.08.08 0 0 1 .06.03c.017.02.026.045.026.074c0 .035-.01.061-.029.077c-.019.017-.049.025-.087.025h-.018l-.218 1.533c-.003.032-.009.053-.018.063c-.009.01-.023.015-.042.015h-.109a.091.091 0 0 1-.054-.014a.113.113 0 0 1-.032-.052l-.333-1.055l-.294 1.058c-.007.026-.016.042-.028.051c-.011.008-.03.012-.055.012h-.115c-.02 0-.036-.005-.045-.015c-.01-.01-.017-.032-.021-.067l-.233-1.53h-.018c-.04 0-.07-.009-.09-.026c-.02-.017-.03-.043-.03-.077c0-.031.008-.056.025-.075a.076.076 0 0 1 .06-.029h.497c.056 0 .095.008.116.023s.031.042.031.081c0 .036-.011.062-.033.078a.174.174 0 0 1-.102.025h-.216l.166 1.221zm1.973-.599a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm13.185-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm3.819.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm3.82.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm4.463 1.225c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.51l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086s-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.227zm1.241-.776a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.941 1.189c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075s-.083-.116-.083-.198zm1.885 0c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198s-.129.075-.218.075s-.163-.025-.218-.075a.252.252 0 0 1-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm2.304 1.225c.05 0 .086.008.109.025c.022.017.034.044.034.08c0 .041-.011.07-.032.086c-.021.016-.062.025-.123.025h-.75c-.035 0-.061-.009-.08-.028a.115.115 0 0 1-.028-.082c0-.036.009-.062.027-.08c.018-.017.046-.026.084-.026h.198v-1.381h-.107c-.09 0-.146-.008-.168-.024c-.022-.016-.033-.045-.033-.087c0-.036.009-.063.028-.082c.018-.019.045-.028.08-.028h.71c.248 0 .437.048.566.144c.129.096.193.238.193.425s-.064.328-.192.423c-.128.095-.317.143-.567.143h-.268v.468h.319zm-.32-1.382v.711h.287c.16 0 .281-.03.36-.089s.12-.149.12-.268c0-.118-.04-.206-.12-.265c-.08-.059-.2-.089-.36-.089h-.287zm-86.725 4.266c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm0 .848c0-.08.028-.145.084-.196s.128-.077.217-.077c.091 0 .164.025.219.075s.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075c-.09 0-.163-.025-.218-.075s-.083-.116-.083-.198zm1.878-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.941.341c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198s-.028.148-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm0 .848c0-.08.028-.145.084-.196a.31.31 0 0 1 .217-.077c.091 0 .164.025.219.075c.055.05.083.116.083.198a.253.253 0 0 1-.084.198a.316.316 0 0 1-.218.075a.312.312 0 0 1-.218-.075a.255.255 0 0 1-.083-.198zm13.185-.74a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm3.838.096c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057s.029-.018.052-.018h.147c.024 0 .041.006.052.018s.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm.542 0c-.026 0-.044-.006-.055-.019s-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057c.012-.012.029-.018.051-.018h.149c.022 0 .04.006.051.018s.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm1.968 1.129c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.025c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086c0 .041-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.023l-.521.894v.488h.224zm1.24-.776a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm3.82.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.065.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261c0-.106-.035-.192-.104-.258s-.159-.099-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm5.704.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099c-.109 0-.199.032-.268.097s-.105.15-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.334.334 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm5.722.096c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057s.029-.018.052-.018h.147c.024 0 .041.006.052.018s.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm.543 0c-.026 0-.044-.006-.055-.019s-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057c.012-.012.029-.018.051-.018h.149c.022 0 .04.006.051.018c.012.012.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm1.967 1.129c.079 0 .129.007.151.022c.022.015.033.043.033.084c0 .042-.011.071-.033.087c-.022.016-.066.024-.133.024h-.728c-.066 0-.11-.008-.132-.024c-.021-.016-.032-.045-.032-.087c0-.041.012-.069.036-.084c.024-.015.074-.022.149-.022h.222v-.509l-.511-.872h-.026c-.061 0-.103-.008-.126-.025c-.022-.016-.034-.045-.034-.086c0-.038.009-.066.028-.084c.019-.018.048-.027.088-.027h.42c.06 0 .101.008.122.025c.021.016.031.045.031.086c0 .041-.013.07-.038.086a.273.273 0 0 1-.137.025h-.051l.371.665l.385-.665h-.063c-.055 0-.094-.008-.115-.025c-.021-.016-.032-.045-.032-.086c0-.043.009-.072.028-.087c.018-.015.065-.023.14-.023h.282c.078 0 .128.008.149.024c.022.016.033.045.033.087c0 .041-.011.07-.033.086c-.022.016-.064.025-.125.025h-.025l-.521.894v.488h.227zm1.24-.776a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.519.519 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412c-.116.106-.267.159-.452.159s-.335-.054-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.33.33 0 0 0-.099.247zm2.305 1.225c.05 0 .086.008.109.025c.022.017.034.044.034.08c0 .041-.011.07-.032.086c-.021.016-.062.025-.123.025h-.75c-.035 0-.061-.009-.08-.028a.115.115 0 0 1-.028-.082c0-.036.009-.062.027-.08c.018-.017.046-.026.084-.026h.198v-1.381h-.107c-.09 0-.146-.008-.168-.024c-.022-.016-.033-.045-.033-.087c0-.036.009-.063.028-.082c.018-.019.045-.028.08-.028h.71c.248 0 .437.048.566.144c.129.096.193.238.193.425s-.064.328-.192.423c-.128.095-.317.143-.567.143h-.268v.468h.319zm-.321-1.382v.711h.287c.16 0 .281-.03.36-.089c.08-.059.12-.149.12-.268c0-.118-.04-.206-.12-.265c-.08-.059-.2-.089-.36-.089h-.287zm1.854.253c-.026 0-.044-.006-.056-.019c-.012-.013-.019-.039-.022-.077l-.048-.566v-.018c0-.026.006-.044.017-.057s.029-.018.052-.018h.147c.024 0 .041.006.052.018c.011.012.017.031.017.057v.018l-.046.566c-.004.039-.012.065-.023.077s-.03.019-.055.019h-.035zm.543 0c-.026 0-.044-.006-.055-.019c-.011-.013-.019-.039-.023-.077l-.048-.566v-.018c0-.026.006-.044.018-.057s.029-.018.051-.018h.149c.022 0 .04.006.051.018s.018.031.018.057v.018l-.048.566c-.004.039-.012.065-.023.077c-.011.013-.03.019-.055.019h-.035zm-83.824 5.113h-.072c-.037 0-.065-.009-.084-.028c-.019-.018-.028-.046-.028-.083c0-.041.011-.069.033-.084c.022-.015.072-.022.151-.022h.098v-1.381h-.098c-.077 0-.126-.008-.149-.024c-.023-.016-.035-.045-.035-.087c0-.038.009-.066.028-.084c.019-.018.048-.027.087-.027h1.335c.035 0 .061.01.079.031c.018.021.027.051.027.091v.362c0 .053-.008.09-.023.11c-.015.02-.043.031-.083.031c-.042 0-.071-.011-.087-.034c-.016-.022-.024-.073-.024-.152v-.219h-.816v.517h.402v-.079c0-.055.007-.094.022-.115c.015-.021.041-.032.077-.032s.061.011.074.035c.014.023.021.072.021.148v.285c0 .077-.007.126-.021.147c-.014.021-.04.032-.077.032s-.062-.012-.076-.037a.326.326 0 0 1-.021-.143v-.054h-.402v.679h.816v-.248c0-.079.008-.129.024-.152c.016-.022.045-.034.087-.034c.039 0 .066.01.082.031c.016.021.024.061.024.119v.386c0 .037-.009.065-.028.084a.103.103 0 0 1-.078.029h-1.265zm2.234-.991a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.015-.914a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.33.33 0 0 0-.105.254zm.016-.914a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.332.332 0 0 0-.099.247zm1.935.45a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264a.37.37 0 0 0 .271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.326.326 0 0 0-.105.254zm.015-.914a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.332.332 0 0 0-.099.247zm2.384 1.225h.492c.04 0 .069.008.088.025c.019.017.028.044.028.08c0 .042-.009.071-.027.087c-.018.016-.051.024-.099.024h-1.188c-.041 0-.072-.009-.092-.028c-.02-.018-.031-.046-.031-.083c0-.036.011-.062.032-.08s.054-.026.097-.026h.468v-.984h-.3c-.042 0-.074-.009-.096-.028c-.022-.019-.033-.046-.033-.082c0-.036.01-.062.031-.08c.02-.018.051-.027.092-.027h.449c.028 0 .049.006.065.017a.054.054 0 0 1 .024.046v1.139zm-.283-1.642c0-.11.01-.18.03-.209c.02-.029.063-.043.128-.043c.063 0 .105.012.126.036c.02.024.031.081.031.171c0 .088-.009.142-.028.163c-.019.021-.062.031-.128.031c-.065 0-.108-.01-.128-.029c-.021-.019-.031-.059-.031-.12zm-6.978 4.295c.05 0 .087.009.11.026c.023.017.035.045.035.083c0 .036-.011.063-.032.08c-.021.018-.054.027-.097.027h-.621v.512c0 .168.022.278.065.331s.118.08.223.08c.093 0 .204-.027.334-.081s.21-.081.241-.081c.029 0 .053.01.073.031c.02.02.03.045.03.075a.12.12 0 0 1-.038.088a.392.392 0 0 1-.128.073c-.1.04-.19.069-.271.087a1.04 1.04 0 0 1-.226.028a.706.706 0 0 1-.301-.057a.383.383 0 0 1-.182-.171a.413.413 0 0 1-.044-.127a1.394 1.394 0 0 1-.013-.227v-.56h-.261c-.043 0-.074-.008-.094-.025c-.019-.017-.029-.044-.029-.082c0-.042.013-.071.04-.086a.406.406 0 0 1 .17-.023h.173v-.395c0-.044.009-.076.028-.097c.019-.021.048-.031.088-.031c.045 0 .076.013.094.038c.017.026.026.084.026.175v.311h.607zm1.07.939l.264-.917c.009-.033.02-.053.031-.062c.012-.009.033-.013.064-.013h.069c.03 0 .051.005.064.014c.013.009.024.028.033.055l.299.923l.15-1.219h-.241c-.047 0-.082-.008-.103-.025c-.022-.016-.033-.042-.033-.078c0-.039.01-.066.031-.081c.021-.015.06-.023.117-.023h.495a.08.08 0 0 1 .06.03c.017.02.026.045.026.074c0 .035-.01.061-.029.077c-.019.017-.049.025-.087.025h-.018l-.218 1.533c-.003.032-.009.053-.018.063c-.009.01-.023.015-.042.015h-.109a.091.091 0 0 1-.054-.014a.113.113 0 0 1-.032-.052l-.333-1.055l-.294 1.058c-.007.026-.016.042-.028.051c-.011.008-.03.012-.055.012h-.115c-.02 0-.036-.005-.045-.015c-.01-.01-.017-.032-.021-.067l-.233-1.53h-.018c-.04 0-.07-.009-.09-.026c-.02-.017-.03-.043-.03-.077c0-.031.008-.056.025-.075a.076.076 0 0 1 .06-.029h.496c.056 0 .095.008.116.023c.021.015.031.042.031.081c0 .036-.011.062-.033.078a.174.174 0 0 1-.102.025h-.216l.166 1.221zm1.973-.599a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101c.113 0 .204-.033.272-.098s.102-.152.102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.331.331 0 0 0-.105.254zm.016-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244c-.067-.064-.153-.096-.258-.096s-.191.032-.258.096a.328.328 0 0 0-.099.247zm1.935.449a.559.559 0 0 1-.224-.186a.464.464 0 0 1-.075-.263c0-.159.057-.289.17-.391a.626.626 0 0 1 .435-.153c.174 0 .318.051.434.153a.48.48 0 0 1 .173.375a.503.503 0 0 1-.074.278a.534.534 0 0 1-.228.187a.512.512 0 0 1 .238.185a.496.496 0 0 1 .083.286a.533.533 0 0 1-.174.412a.645.645 0 0 1-.452.159a.639.639 0 0 1-.451-.161a.54.54 0 0 1-.173-.417a.484.484 0 0 1 .318-.464zm-.066.464c0 .108.034.196.102.264s.158.101.271.101a.378.378 0 0 0 .272-.098a.344.344 0 0 0 .102-.261a.341.341 0 0 0-.104-.258a.376.376 0 0 0-.27-.099a.376.376 0 0 0-.268.097a.328.328 0 0 0-.105.254zm.015-.913a.33.33 0 0 0 .1.249a.354.354 0 0 0 .257.097a.351.351 0 0 0 .258-.098a.334.334 0 0 0 .1-.251a.323.323 0 0 0-.1-.244a.358.358 0 0 0-.258-.096a.358.358 0 0 0-.258.096a.328.328 0 0 0-.099.247zm1.875 1.44h-.311c-.038 0-.066-.009-.085-.028c-.019-.018-.028-.046-.028-.083c0-.04.011-.067.033-.083c.022-.015.064-.023.125-.023h.028v-1.381h-.026c-.061 0-.103-.008-.126-.025c-.023-.016-.035-.045-.035-.086c0-.038.009-.066.028-.084s.048-.027.088-.027h.647c.255 0 .457.082.609.246c.151.164.227.386.227.665c0 .136-.022.262-.065.379a.904.904 0 0 1-.189.307a.671.671 0 0 1-.28.174c-.11.036-.251.054-.424.054l-.103-.003a2.565 2.565 0 0 0-.113-.002zm0-.216l.097.007c.032.002.064.002.094.002c.251 0 .436-.056.553-.169c.117-.112.176-.29.176-.532c0-.243-.059-.42-.176-.531c-.118-.111-.306-.166-.564-.166a2.776 2.776 0 0 0-.18.008v1.381z\\\"/>\",\n\t\t\t\"hidden\": true\n\t\t},\n\t\t\"neo4j\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\"><path fill=\\\"#000\\\" d=\\\"M63.333 32.567c-5.2.866-9.566 3-12.833 6.266c-3.867 3.867-5.833 8.5-6.5 15.367c-.3 3.133-.467 15.467-.2 15.467c.067 0 .7-.234 1.4-.534c1.633-.7 5.167-.7 7-.033l1.4.5l.167-8.033c.166-8.567.366-9.867 1.966-13.067c1.1-2.133 3.767-4.633 6.034-5.667c2.6-1.2 6.4-1.666 9.333-1.2c6.267 1.034 10 4.434 11.567 10.5c.633 2.434.666 3.7.666 17.1v14.434H93.4L93.233 67.9c-.1-14.9-.166-15.9-.866-18.567c-1.9-7.4-6.5-12.766-12.934-15.2c-3.433-1.3-6.7-1.8-11.2-1.766c-2.233.033-4.433.133-4.9.2\\\"/><path fill=\\\"#018BFF\\\" d=\\\"M22.733 57.2c-2.866 1.433-4.4 4-4.4 7.467c0 1.1.2 2.5.467 3.133c.633 1.567 2.433 3.467 4 4.3c1.9 1 5.5 1 7.367.033l1.366-.7l4.267 2.9l4.267 2.934V81.7L35.8 84.633l-4.3 2.934l-1.1-.667c-1.6-.933-4.7-1.133-6.6-.4c-2 .767-4.067 2.6-4.833 4.333c-.834 1.767-.834 5.234 0 7c.7 1.567 2.333 3.3 3.8 4.067c.6.3 2.033.6 3.233.7c2.8.2 5.167-.733 6.867-2.733c1.366-1.6 2.266-4.4 2.033-6.334l-.167-1.366l4.3-2.9l4.3-2.9l1.534.7c2.333 1 5.8.766 8-.567c2.4-1.5 3.6-3.633 3.733-6.633c.1-2.1 0-2.567-.833-4.2c-2.167-4.134-7-5.7-11.134-3.634l-1.233.6l-4.233-2.9l-4.234-2.9l-.1-2.333c-.066-2.8-.866-4.6-2.833-6.233c-2.5-2.134-6.233-2.567-9.267-1.067\\\"/></g>\"\n\t\t},\n\t\t\"neo4j-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\"><path fill=\\\"#000\\\" d=\\\"M25.107 51.667c-6.771 0-11.315 4.106-11.315 12.073v5.68A4.954 4.954 0 0 1 16 68.873c.767 0 1.525.183 2.214.534v-5.694c0-5.166 2.74-7.82 6.912-7.82c4.173 0 6.874 2.654 6.874 7.82v12.414h4.41V63.713c.012-8.013-4.532-12.046-11.303-12.046M38.822 64.2c0-7.247 5.12-12.56 12.333-12.56s12.243 5.333 12.243 12.56v1.687H43.456c.64 4.253 3.712 6.62 7.68 6.62c2.97 0 5.056-.967 6.4-3.04H62.4c-1.76 4.44-5.933 7.293-11.264 7.293c-7.213 0-12.314-5.313-12.314-12.56m19.936-2.413c-.883-3.82-3.89-5.894-7.603-5.894c-3.712 0-6.675 2.127-7.558 5.894zm6.996 2.413c0-7.24 5.12-12.553 12.332-12.553c7.213 0 12.333 5.333 12.333 12.553c0 7.22-5.12 12.56-12.333 12.56c-7.212 0-12.332-5.313-12.332-12.56m20.217 0c0-4.827-3.155-8.307-7.885-8.307s-7.878 3.48-7.878 8.307s3.149 8.307 7.872 8.307s7.891-3.474 7.891-8.307m29.639 16.68h.512c2.828 0 3.891-1.333 3.891-4.667V52.44h4.409v23.467c0 5.893-2.227 8.933-7.884 8.933h-.928zm-2.202-2.453h-4.41v-5.66H97.83a5.354 5.354 0 0 1-2.917-.744A5.653 5.653 0 0 1 92.8 69.8a5.336 5.336 0 0 1-.451-2.81a5.262 5.262 0 0 1 1.053-2.63l10.022-13.7a5.548 5.548 0 0 1 2.771-2.063a5.325 5.325 0 0 1 3.406.018a5.556 5.556 0 0 1 2.752 2.091a5.935 5.935 0 0 1 1.055 3.374v14.613h3.309v4.074h-3.309zm-16.34-11.56a1.207 1.207 0 0 0-.121 1.109c.055.14.136.268.24.375a1.065 1.065 0 0 0 .785.336h11.026v-14.72a1.164 1.164 0 0 0-.199-.694a1.093 1.093 0 0 0-.562-.426a1.451 1.451 0 0 0-.403-.06c-.173 0-.343.044-.494.129a1.06 1.06 0 0 0-.377.357z\\\"/><path fill=\\\"#018BFF\\\" d=\\\"M122.24 42.687a3.67 3.67 0 0 0-2.1.66a3.908 3.908 0 0 0-1.393 1.763a4.084 4.084 0 0 0-.218 2.273a3.986 3.986 0 0 0 1.032 2.016c.528.55 1.201.926 1.934 1.078a3.633 3.633 0 0 0 2.182-.222a3.815 3.815 0 0 0 1.696-1.45a4.053 4.053 0 0 0 .637-2.185a4.017 4.017 0 0 0-1.104-2.779a3.702 3.702 0 0 0-2.666-1.154M15.808 70.333a3.644 3.644 0 0 0-2.266.8L9.395 68.18a4.12 4.12 0 0 0 .141-1.06a4.047 4.047 0 0 0-.613-2.193a3.811 3.811 0 0 0-1.681-1.467a3.63 3.63 0 0 0-2.18-.244a3.723 3.723 0 0 0-1.943 1.062a3.978 3.978 0 0 0-1.045 2.008a4.08 4.08 0 0 0 .204 2.274c.283.72.765 1.337 1.385 1.772c.62.434 1.35.667 2.097.668c.82 0 1.616-.28 2.266-.8l4.134 2.973a4.084 4.084 0 0 0 0 2.127l-4.147 2.953a3.624 3.624 0 0 0-2.253-.8a3.67 3.67 0 0 0-2.1.66a3.903 3.903 0 0 0-1.394 1.765a4.086 4.086 0 0 0-.216 2.274a3.987 3.987 0 0 0 1.034 2.016c.528.55 1.201.925 1.935 1.077a3.635 3.635 0 0 0 2.183-.226a3.814 3.814 0 0 0 1.694-1.451a4.06 4.06 0 0 0 .634-2.188c0-.353-.046-.706-.135-1.047l4.147-2.953c.651.518 1.447.8 2.266.8a3.717 3.717 0 0 0 2.494-1.243a4.024 4.024 0 0 0 1.013-2.68a4.02 4.02 0 0 0-1.013-2.68a3.717 3.717 0 0 0-2.494-1.244\\\"/></g>\"\n\t\t},\n\t\t\"neovim\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconNeovim0\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"0\\\" y2=\\\"1\\\" gradientTransform=\\\"matrix(32.95703 0 0 154.72266 .426 .426)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#16b0ed\\\" stop-opacity=\\\".8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0f59b2\\\" stop-opacity=\\\".835\\\"/></linearGradient><linearGradient id=\\\"deviconNeovim1\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"0\\\" y2=\\\"1\\\" gradientTransform=\\\"matrix(-33.59375 0 0 154.72266 128 .426)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7db643\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#367533\\\"/></linearGradient><linearGradient id=\\\"deviconNeovim2\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"0\\\" y2=\\\"1\\\" gradientTransform=\\\"matrix(109.71484 0 0 154.72656 9.355 .637)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#88c649\\\" stop-opacity=\\\".8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#439240\\\" stop-opacity=\\\".839\\\"/></linearGradient></defs><g fill-rule=\\\"evenodd\\\"><path fill=\\\"url(#deviconNeovim0)\\\" d=\\\"M.426 33.703L33.383.426v154.722L.426 122.258Zm0 0\\\" transform=\\\"translate(10.95 -.352)scale(.82614)\\\"/><path fill=\\\"url(#deviconNeovim1)\\\" d=\\\"M127.773 34L94.406.426l.676 154.722L128 122.254Zm0 0\\\" transform=\\\"translate(10.95 -.352)scale(.82614)\\\"/><path fill=\\\"url(#deviconNeovim2)\\\" d=\\\"m33.379.637l85.691 130.75l-23.98 23.976L9.355 24.903Zm0 0\\\" transform=\\\"translate(10.95 -.352)scale(.82614)\\\"/><path fill-opacity=\\\".129\\\" d=\\\"m38.53 50.01l-.04 4.244l-21.743-32.18l2.014-2.06zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"neovim-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconNeovimWordmark0\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"0\\\" y2=\\\"1\\\" gradientTransform=\\\"matrix(7.79688 0 0 36.6836 .176 .145)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#16b0ed\\\" stop-opacity=\\\".8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0f59b2\\\" stop-opacity=\\\".835\\\"/></linearGradient><linearGradient id=\\\"deviconNeovimWordmark1\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"0\\\" y2=\\\"1\\\" gradientTransform=\\\"matrix(-7.95703 0 0 36.67969 30.355 .148)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7db643\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#367533\\\"/></linearGradient><linearGradient id=\\\"deviconNeovimWordmark2\\\" x1=\\\".5\\\" x2=\\\".5\\\" y1=\\\"0\\\" y2=\\\"1\\\" gradientTransform=\\\"matrix(25.95313 0 0 36.6875 2.285 .148)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#88c649\\\" stop-opacity=\\\".8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#439240\\\" stop-opacity=\\\".839\\\"/></linearGradient></defs><g fill-rule=\\\"evenodd\\\"><path fill=\\\"url(#deviconNeovimWordmark0)\\\" d=\\\"M.176 8.031L7.973.145v36.683l-7.797-7.8zm0 0\\\" transform=\\\"translate(-.177 45.434)scale(1.00409)\\\"/><path fill=\\\"url(#deviconNeovimWordmark1)\\\" d=\\\"M30.305 8.105L22.398.148l.16 36.68l7.797-7.8zm0 0\\\" transform=\\\"translate(-.177 45.434)scale(1.00409)\\\"/><path fill=\\\"url(#deviconNeovimWordmark2)\\\" d=\\\"m7.969.148l20.27 31.004l-5.673 5.684L2.286 5.902Zm0 0\\\" transform=\\\"translate(-.177 45.434)scale(1.00409)\\\"/><path fill-opacity=\\\".129\\\" d=\\\"m7.832 60.021l-.012 1.228l-6.284-9.3l.581-.592zm0 0\\\"/><path fill=\\\"#424242\\\" d=\\\"M39.143 72.168V56.62h.804c.27 0 .424.13.467.393l.137 2.341a8.686 8.686 0 0 1 2.46-2.16c.933-.55 1.976-.825 3.125-.825c.848 0 1.593.138 2.24.408c.643.271 1.18.663 1.604 1.173c.424.51.745 1.126.96 1.843c.217.718.327 1.53.327 2.436v9.94h-1.475v-9.94c0-1.455-.33-2.6-.992-3.428c-.66-.827-1.671-1.243-3.036-1.243a5.358 5.358 0 0 0-2.824.788c-.867.53-1.643 1.251-2.326 2.165v11.657Zm21.41-15.798c.88 0 1.69.152 2.437.454c.75.302 1.396.742 1.945 1.318c.55.577.977 1.287 1.287 2.13c.306.84.459 1.808.459 2.898c0 .232-.032.385-.102.471c-.067.082-.173.122-.318.122H55.008v.298c0 1.165.134 2.188.408 3.07c.27.887.655 1.63 1.157 2.225a4.818 4.818 0 0 0 1.82 1.35c.71.301 1.502.45 2.38.45c.785 0 1.464-.086 2.04-.255a7.816 7.816 0 0 0 1.448-.577c.392-.215.702-.407.933-.58c.228-.169.396-.255.502-.255a.36.36 0 0 1 .314.157l.408.498c-.251.31-.584.604-.996.875a7.1 7.1 0 0 1-1.38.694c-.507.192-1.052.345-1.63.46a9.09 9.09 0 0 1-1.748.171c-1.067 0-2.035-.188-2.914-.557a6.186 6.186 0 0 1-2.26-1.612c-.627-.706-1.113-1.572-1.458-2.596c-.341-1.024-.514-2.196-.514-3.518c0-1.114.16-2.138.479-3.08c.317-.94.776-1.752 1.38-2.435a6.308 6.308 0 0 1 2.208-1.596c.87-.384 1.863-.58 2.97-.58zm.099 1.043c-.811 0-1.541.121-2.184.364a4.84 4.84 0 0 0-1.671 1.052a5.36 5.36 0 0 0-1.141 1.643a7.275 7.275 0 0 0-.577 2.15h10.39c0-.813-.114-1.542-.35-2.185a4.592 4.592 0 0 0-.98-1.64a4.316 4.316 0 0 0-1.522-1.027c-.592-.24-1.243-.357-1.965-.357m14.61-1.043c1.134 0 2.146.192 3.036.572a6.153 6.153 0 0 1 2.26 1.612c.61.698 1.082 1.538 1.404 2.518c.32.985.482 2.083.482 3.3c0 1.22-.16 2.313-.482 3.293c-.322.977-.793 1.812-1.405 2.51a6.09 6.09 0 0 1-2.26 1.605c-.89.376-1.901.564-3.034.564c-1.13 0-2.142-.188-3.032-.564a6.15 6.15 0 0 1-2.267-1.605c-.62-.698-1.09-1.533-1.412-2.51c-.322-.98-.483-2.075-.483-3.294c0-1.216.16-2.314.483-3.299c.32-.98.792-1.82 1.412-2.518a6.215 6.215 0 0 1 2.267-1.612c.89-.38 1.902-.573 3.032-.573zm-.086 14.93c.926 0 1.734-.16 2.424-.478a4.57 4.57 0 0 0 1.734-1.373c.463-.596.808-1.314 1.035-2.157c.228-.844.345-1.789.345-2.832c0-1.036-.117-1.977-.345-2.824c-.227-.851-.572-1.573-1.035-2.177a4.648 4.648 0 0 0-1.734-1.388c-.69-.322-1.498-.487-2.424-.487c-.921 0-1.733.165-2.424.487a4.667 4.667 0 0 0-1.73 1.388c-.462.604-.811 1.326-1.043 2.177c-.235.847-.353 1.788-.353 2.824c0 1.043.118 1.988.353 2.832c.232.843.58 1.56 1.044 2.157a4.588 4.588 0 0 0 1.73 1.373c.69.317 1.498.478 2.423.478m16.548.523h-3.475l-6.323-15.971h3.177c.279 0 .514.066.706.2c.192.137.322.306.396.514l3.068 8.53c.176.498.325.99.443 1.463c.117.48.223.957.317 1.432c.095-.475.2-.953.318-1.432c.118-.474.27-.965.459-1.463l3.146-8.53c.074-.208.2-.377.388-.514c.184-.134.408-.2.667-.2h3.024zM98.9 56.024h3.98v15.971H98.9zm6.582 15.971V55.926h2.357c.502 0 .828.236.985.706l.25 1.189c.283-.31.577-.6.883-.86a5.396 5.396 0 0 1 2.11-1.121c.4-.11.84-.165 1.322-.165c1.008 0 1.84.275 2.49.824c.652.549 1.138 1.275 1.463 2.184c.248-.533.56-.988.938-1.368c.372-.38.784-.695 1.231-.934a5.81 5.81 0 0 1 1.432-.533a6.912 6.912 0 0 1 1.522-.173c.886 0 1.675.137 2.361.408a4.51 4.51 0 0 1 1.734 1.192c.47.522.827 1.157 1.07 1.91c.243.754.369 1.613.369 2.585v10.225h-3.86V61.77c0-1.023-.227-1.796-.674-2.31c-.447-.518-1.102-.777-1.969-.777c-.396 0-.76.067-1.102.204a2.67 2.67 0 0 0-.89.589a2.673 2.673 0 0 0-.6.96c-.146.389-.22.832-.22 1.334v10.225h-3.875V61.77c0-1.074-.216-1.859-.647-2.35c-.432-.49-1.071-.737-1.914-.737c-.553 0-1.071.138-1.558.416a5.231 5.231 0 0 0-1.35 1.134v11.762ZM98.9 50.643h3.98v3.299H98.9zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"nestjs\": {\n\t\t\t\"body\": \"<path fill=\\\"#df234f\\\" d=\\\"M75.323.4c-.898 0-1.796.199-2.594.498c1.696 1.098 2.594 2.594 3.093 4.29c0 .2.1.4.1.599c0 .2.1.399.1.598c.1 2.894-.799 3.293-1.397 4.989c-.998 2.194-.698 4.589.499 6.484c.1.2.2.5.399.699c-1.297-8.38 5.686-9.578 6.983-12.172c.1-2.294-1.795-3.79-3.292-4.888C77.718.599 76.52.399 75.324.399ZM85.8 2.194c-.1.798 0 .599-.1.998c0 .299 0 .598-.1.898c-.1.299-.1.499-.2.798c-.1.3-.199.499-.299.798c-.1.2-.2.399-.3.698c-.099.1-.199.3-.298.4c-.1.1-.1.199-.2.299c-.2.2-.3.498-.499.698l-.598.599c-.2.2-.4.399-.599.498c-.698.5-1.496.898-2.195 1.397c-.2.2-.499.3-.698.499c-.2.2-.4.3-.599.499l-.598.598c-.2.2-.4.4-.5.699c-.199.2-.299.499-.498.698c-.1.3-.2.499-.399.798c-.1.3-.2.5-.3.798c-.1.3-.199.599-.199.798c0 .1 0 .3-.1.4c0 .1 0 .299-.1.399v1.396c0 .3 0 .5.1.798c0 .3.1.5.2.799s.2.498.3.798c.099.2.199.299.199.499l-7.583-2.894a53.157 53.157 0 0 0-3.79-.997c-.699-.2-1.397-.3-2.096-.5a61.927 61.927 0 0 0-5.986-.897h-.2c-1.995-.2-3.89-.3-5.885-.3c-1.497 0-2.894.1-4.29.2c-1.996.1-3.99.4-5.986.699l-1.497.299c-.997.2-1.995.399-2.993.698c-.499.1-.997.3-1.496.4c-.499.199-.998.398-1.397.598c-.399.2-.698.3-1.097.499c-.1 0-.1 0-.2.1c-.3.199-.598.299-.898.498c-.1 0-.2.1-.2.1c-.398.2-.698.4-.997.499c-.2.1-.499.2-.698.3c-.1.099-.2.099-.3.199c-.299.2-.598.299-.898.498c-.299.2-.598.3-.798.5c-.2.199-.499.299-.698.498c0 0-.1 0-.1.1c-.2.1-.399.3-.598.499l-.1.1c-.2.1-.3.299-.499.399c-.1 0-.1.1-.2.1c-.199.1-.299.299-.498.398c0 .1-.1.1-.1.1l-.599.599l-.1.1l-.598.598s0 .1-.1.1l-.499.499c-.1.1-.2.1-.2.2l-.598.598c0 .1-.1.1-.1.2l-.798.797l-.1.1c-.498.599-1.097 1.098-1.695 1.597c-.599.498-1.198.997-1.896 1.496s-1.297.898-1.995 1.297c-.699.399-1.397.698-2.095.998c-.699.299-1.397.598-2.095.798c-1.397.3-2.794.898-3.991.997c0-.498-.3-.399-.599-.399c-.299.1-.598.1-.798.2c-.3.1-.499.2-.798.3a2.96 2.96 0 0 0-.798.398c-.2.2-.499.3-.698.5c-.2.199-.5.398-.699.598c-.2.2-.499.399-.698.598c-.2.2-.4.4-.599.699c-.2.299-.399.498-.499.798c-.199.2-.299.499-.498.798c-.1.3-.3.598-.4.898l-.299.898c-.1.299-.1.498-.2.798v.1c-.1.3-.1.698-.1.898c.1-.1.1.1.1.299v.399c0 .2.1.399.1.598c.1.2.1.4.2.599c.099.2.199.399.398.599c.1.2.3.399.4.598c.199.2.398.4.598.499c.2.2.399.4.598.499c.798.698.998.898 1.996 1.496c.2.1.299.2.499.3h.1v.2c0 .298.1.498.199.797c.1.3.2.599.3.798l.298.599c0 .1.1.1.1.2c.1.299.3.498.4.698c.199.2.299.499.498.698l.599.599l.598.598h.1c.2.2.399.3.599.5s.499.299.698.398c.2.1.499.3.798.4c.2.1.4.199.698.199c0 0 .1 0 .1.1c.1 0 .3.1.4.1c-.1 1.795-.1 3.491.1 4.09c.298.698 1.795-1.397 3.192-3.691c-.2 2.294-.3 4.988 0 5.786c.399.798 2.294-1.796 4.09-4.59c23.345-5.387 44.695 10.775 46.99 33.622c-.4-3.592-4.79-5.587-6.884-5.088c-.998 2.394-2.694 5.587-5.387 7.482c.199-2.195.1-4.39-.3-6.584c-.698 2.993-2.095 5.886-4.09 8.28c-3.093.2-6.285-1.297-7.882-3.591c-.1-.1-.2-.3-.299-.4c-.1-.199-.2-.498-.3-.698c-.1-.2-.199-.499-.199-.698v-1.197c0-.2.1-.5.2-.699s.1-.499.2-.698c.099-.2.199-.499.398-.698c.599-1.597.599-2.894-.499-3.592l-.598-.3c-.1 0-.3-.099-.4-.099s-.199-.1-.299-.1c-.199-.1-.498-.1-.698-.2c-.2-.1-.499-.1-.698-.1c-.2 0-.5-.099-.699-.099h-.498c-.3 0-.5 0-.699.1c-.2 0-.499.1-.698.1c-.2.1-.499.1-.699.2c-.199.099-.399.199-.698.298l-.599.3c-7.682 4.988-3.092 16.76 2.096 20.152c-1.996.4-3.991.798-4.59 1.198l-.1.1c1.397.897 2.894 1.596 4.49 2.194c2.095.699 4.39 1.297 5.387 1.597c2.694.598 5.488.798 8.281.598c14.566-.998 26.538-12.171 28.732-26.737c.1.3.1.598.2.898c.1.598.2 1.197.3 1.895c.1.3.1.599.1.898v.1c0 .3.099.599.099.898c0 .399.1.698.1 1.097v4.19c0 .3-.1.5-.1.799v.299c0 .3-.1.599-.1.998c-.1.299-.1.598-.2.898v.1c-.1.299-.1.598-.199.897v.1c-.1.3-.1.599-.2.898v.1l-.299.898v.1c-.1.299-.2.698-.299.997c-.1.3-.2.599-.4.998c-.099.299-.199.698-.398.997c-.1.3-.3.599-.4.998c-.099.3-.299.599-.398.898c0 .1-.1.2-.1.2s0 .1-.1.1c-2.095 4.289-5.287 8.08-9.278 11.073c-.3.2-.499.4-.798.599c-.1.1-.2.1-.2.2c-.2.199-.499.299-.698.498l.1.2c.498-.1.898-.1 1.396-.2c.898-.1 1.696-.3 2.594-.499c.2 0 .5-.1.699-.2c.2 0 .299-.1.498-.1s.5-.099.699-.099c.2-.1.399-.1.598-.2c3.293-.797 6.485-1.895 9.578-3.192c-5.288 7.183-12.271 12.97-20.452 16.76c3.791-.299 7.582-.897 11.273-1.995a52.469 52.469 0 0 0 31.127-24.941c-1.396 7.582-4.39 14.865-8.879 21.25c3.193-2.095 6.086-4.59 8.78-7.283c7.382-7.682 12.27-17.559 13.867-28.034c1.098 5.188 1.497 10.575.998 15.863c23.844-33.222 1.995-67.641-7.183-76.72c0-.1-.1-.1-.1-.2c0 .4 0 .798-.1 1.198c-.1.798-.2 1.496-.3 2.194c-.199.699-.398 1.497-.598 2.195c-.2.699-.499 1.397-.798 2.095c-.3.699-.599 1.397-.998 1.996s-.798 1.297-1.197 1.895c-.399.599-.898 1.197-1.397 1.796c-.498.599-.997 1.097-1.596 1.696c-.3.3-.598.599-.997.798c-.3.2-.5.4-.799.698c-.598.5-1.197.898-1.895 1.297c-.599.4-1.297.799-1.995 1.098l-2.096.898c-.698.299-1.396.499-2.095.698c-.698.2-1.496.4-2.195.499c-.798.1-1.496.2-2.194.3c-.5 0-1.098.099-1.597.099c-.798 0-1.496-.1-2.194-.1c-.799-.1-1.497-.2-2.195-.3a7.874 7.874 0 0 1-2.195-.598c.698-.1 1.496-.1 2.195-.299c.798-.1 1.496-.3 2.195-.499c.698-.2 1.496-.399 2.095-.698l2.095-.898c.698-.3 1.297-.698 1.995-1.097c.599-.4 1.297-.898 1.896-1.297c.598-.5 1.197-.998 1.696-1.497c.598-.499 1.097-1.097 1.596-1.596c.499-.599.998-1.197 1.397-1.796c.1-.1.1-.2.2-.3c.298-.498.697-1.097.997-1.595a18.56 18.56 0 0 0 .997-1.996c.3-.698.6-1.397.799-2.095l.598-2.095c.1-.798.3-1.496.3-2.195c.1-.798.1-1.496.1-2.195c0-.498 0-1.097-.1-1.596c-.1-.798-.2-1.496-.3-2.195c-.1-.798-.3-1.496-.499-2.195c-.2-.698-.499-1.396-.698-2.095c-.3-.698-.599-1.396-.898-1.995c-.399-.698-.698-1.297-1.097-1.995c-.4-.599-.898-1.198-1.297-1.796c-.499-.599-.998-1.098-1.497-1.696c-.299-.3-.598-.599-.898-.798c-1.496-1.197-2.993-2.195-4.589-3.193c-.2-.1-.399-.2-.698-.3c-1.297-1.096-2.295-1.396-3.292-1.795Z\\\"/>\"\n\t\t},\n\t\t\"nestjs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#df234f\\\" d=\\\"M25.54 42.617c-.3 0-.602.1-.902.2c.6.4.901.901 1.101 1.402v.401c0 1.002-.3 1.101-.5 1.702c-.301.701-.2 1.604.201 2.205c0 .1.1.2.1.2c-.4-2.805 1.903-3.305 2.404-4.107c0-.801-.6-1.301-1.101-1.602c-.501-.3-.903-.4-1.303-.4zm3.505.8v.603c0 .1 0 .199-.1.299c0 .1-.1.201-.1.301c0 .1-.101.2-.101.3l-.1.101s0 .1-.1.1c-.1.1-.099.2-.2.2l-.2.201l-.2.2c-.2.2-.502.3-.702.5c-.1.1-.2.1-.2.2l-.2.201l-.2.2l-.2.201c-.1.1-.102.2-.202.2c0 .1-.1.2-.1.301c0 .1-.1.2-.1.3c0 .1-.1.2-.1.3v1.002c0 .1 0 .2.1.3c0 .1.1.2.1.3c0 .1.1.1.1.2l-2.604-1.001c-.4-.1-.9-.2-1.3-.3c-.2-.1-.502-.1-.703-.201c-.7-.1-1.402-.2-2.003-.3h-.1c-.7-.1-1.302-.1-2.003-.1c-.5 0-1.001 0-1.502.1c-.701 0-1.402.1-2.003.2c-.2 0-.3.1-.501.1c-.3.1-.701.101-1.001.202c-.2 0-.301.1-.501.1c-.2.1-.3.099-.501.199c-.1.1-.2.101-.401.201h-.1c-.1.1-.2.1-.301.2h-.1c-.1.1-.199.101-.3.201c-.1 0-.2.1-.2.1s-.1 0-.1.1c-.1.1-.201.1-.302.2c-.1.1-.199.1-.299.2c-.1.1-.201.1-.201.2c-.1 0-.1.102-.2.202c-.1 0-.1.1-.2.1h-.101c-.1 0-.1.1-.2.1l-.2.199l-.2.201c-.1-.2-.1-.2-.2-.1c0 0-.1 0-.1.1l-.201.2v.1l-.3.3c-.2.201-.402.402-.602.502c-.2.2-.4.3-.6.5c-.201.2-.4.301-.701.402c-.2.1-.402.199-.702.299c-.2.1-.5.2-.7.301c-.501.1-1.003.301-1.403.301h-.3c-.1 0-.2 0-.3.1c0 .1-.1.1-.2.1s-.201.1-.302.1c-.1.1-.2.1-.2.201c-.1.1-.2.1-.2.2c-.1.1-.2.099-.2.2l-.202.2c-.1.1-.1.2-.2.3c-.1.1-.099.2-.199.301c0 .1-.101.201-.101.301c0 .1-.1.2-.1.3c0 .1 0 .2-.1.3v.801c0 .1 0 .101.1.202c0 .1.1.099.1.199s.101.101.101.202l.2.199l.2.2c.3.2.301.3.702.5c.1 0 .099.102.2.102v.1c0 .1-.001.199.099.3c0 .1.102.2.102.3c0 .1.1.1.1.2v.102c0 .1.1.2.1.2c.1.1.099.199.199.199l.201.201l.2.2l.201.201c.1.1.2.1.2.1c.1 0 .2.1.3.1h.4v1.402c.3.3.802-.401 1.303-1.203c-.1.802-.1 1.703 0 1.904c.1.3.801-.601 1.402-1.602c7.913-1.803 15.224 3.606 15.926 11.418c-.1-1.202-1.604-1.904-2.305-1.704c-.3.801-.902 1.903-1.803 2.504c.1-.701 0-1.502-.1-2.203a6.2 6.2 0 0 1-1.403 2.805a3.033 3.033 0 0 1-2.703-1.203l-.1-.1c0-.1-.1-.2-.1-.2c0-.1-.101-.2-.101-.2v-.402c0-.1.001-.2.101-.2c0-.1 0-.199.1-.199c0-.1.1-.201.1-.201c.2-.5.2-1-.2-1.201c-.1 0-.101-.1-.201-.1h-.2c-.1 0-.201-.002-.201-.102h-1.002c-.1 0-.2.002-.2.102c-.1 0-.099.1-.199.1s-.101.1-.201.1c-2.905 1.502-1.302 5.508.4 6.61c-.7.1-1.401.3-1.502.4c.501.3 1.002.5 1.503.7c.7.201 1.503.401 1.803.502c.902.2 1.902.301 2.804.201c5.007-.3 9.014-4.106 9.816-9.114c0 .1 0 .2.1.3c0 .2.1.4.1.6v3.106c0 .1 0 .2-.1.3c0 .1 0 .2-.1.301c0 .1 0 .2-.1.3c0 .1-.102.2-.102.3c0 .1-.1.202-.1.302c0 .1-.1.199-.1.3c0 .1-.1.2-.1.3c0 .1-.099.2-.099.3c0 .1-.102.2-.102.3v.1c-.7 1.503-1.802 2.806-3.104 3.807c-.1.1-.2.1-.3.2c0 0-.101 0-.101.1c-.1.1-.2.101-.2.201v.1c.2 0 .3 0 .501-.1c.3 0 .601-.101.902-.201c.1 0 .2 0 .2-.1h.4c.1 0 .1 0 .2-.1c1.102-.3 2.205-.6 3.206-1.101c-1.803 2.404-4.207 4.406-6.911 5.708c1.302-.1 2.605-.3 3.807-.7c4.507-1.302 8.312-4.408 10.616-8.414a19.059 19.059 0 0 1-3.005 7.21c1.102-.7 2.103-1.502 3.005-2.503c2.504-2.604 4.105-5.91 4.706-9.515c.401 1.803.502 3.606.302 5.409c7.812-10.817.399-22.535-2.706-25.64v.401c0 .3-.1.5-.1.7c-.1.2-.099.502-.2.703c-.1.2-.2.5-.3.7c-.1.2-.2.5-.3.7c-.1.2-.3.403-.4.603c-.1.2-.301.4-.501.6c-.2.2-.3.4-.501.6l-.301.302c-.1.1-.2.1-.3.2c-.2.2-.402.3-.602.4c-.2.1-.4.302-.7.402c-.2.1-.5.199-.7.299c-.201.1-.503.202-.703.202c-.2.1-.5.099-.7.199c-.3 0-.502.1-.802.1h-1.301c-.3 0-.502-.1-.802-.1c-.3 0-.5-.1-.7-.2c.2 0 .5-.001.7-.101c.3 0 .5-.1.7-.2c.2-.1.502-.1.702-.2c.2-.1.5-.2.7-.3c.2-.1.402-.201.703-.401c.2-.1.4-.301.6-.401c.2-.2.4-.301.6-.501l.502-.501c.2-.2.3-.4.5-.6c0 0 0-.1.1-.1c.1-.2.201-.401.301-.501c.1-.2.2-.4.3-.7c.1-.2.2-.502.301-.703c.1-.2.1-.5.2-.7c0-.3.101-.502.101-.702v-1.301c0-.3-.101-.502-.101-.702c0-.3-.1-.5-.2-.7c-.1-.201-.2-.5-.2-.701c-.1-.2-.2-.502-.3-.702c-.1-.2-.201-.4-.402-.7c-.1-.201-.3-.4-.4-.601c-.201-.2-.301-.402-.502-.603l-.299-.299c-.5-.4-1.001-.8-1.602-1.101c-.1 0-.101-.102-.201-.102c-.401-.2-.701-.4-1.102-.5zm93.446 10.016c-1.802 3.806-5.81 5.11-5.81 5.11v.8c0 .5.402.5.402.5h2.003s-.2 7.712-.1 10.417c.1 2.704 2.003 3.505 2.003 3.505s1.3.701 3.404.501c2.103-.2 3.607-2.304 3.607-2.304l-.702-1.102c-3.105 2.604-3.705-.5-3.705-.5V59.742h4.206V57.74h-4.007v-4.307zm-60.594 2.404c-1.502 2.704-5.81 3.206-5.81 3.206v1.101c2.805.601 2.504 1.904 2.504 1.904s.1 6.709.1 8.812s-.7 1.704-.7 1.704l-1.904.4v1.202c2.003-.6 9.114 0 9.114 0l.1-1.203c-2.103-.3-2.303-1.602-2.303-1.602v-9.916c1.903-1.702 3.705-2.302 3.705-2.302c3.706-.902 4.007 2.703 4.007 2.703l.1 9.114c.7 2.404-2.804 2.003-2.804 2.003l.1 1.203l5.509-.4l3.705.4v-1.203c-1.803-.3-1.903-.3-2.003-1.702c.4-10.316-.4-11.216-.4-11.216c-4.507-7.312-11.919 0-11.919 0v-4.208zm26.44.6c-8.013 0-8.412 7.213-8.412 7.213s-1.404 10.917 8.412 10.917c6.31 0 8.214-3.607 8.214-3.607l-1.203-1.101s-9.415 6.81-10.616-6.11H96.65c-.1-.1-.302-7.312-8.314-7.312zm18.13.306c-.66.004-1.391.033-2.205.096c0 0-3.505.8-4.106 4.106c-.601 3.305 1.502 5.109 1.502 5.109s.902 1.302 4.007 1.602c2.704.3 3.906 1.403 3.906 1.403s1.403 1.3-.1 2.903c-1.502 1.602-3.505 1.001-3.505 1.001s-2.304.1-5.008-4.607l-1.303.1l.5 4.709s6.412 3.605 11.32 0c5.007-4.507.8-8.715-1.904-9.216c-2.704-.5-4.507-1.2-4.507-1.2s-4.207-1.703-.5-4.207c4.106-2.103 6.51 3.905 6.51 3.905s.9.201 1.502-.3c.2-.6-.501-4.207-.501-4.207s-.998-1.226-5.609-1.197zM88.538 57.94c1.903 0 3.506 1.602 3.506 3.505v.902h-7.412v-.5c0-2.104 1.703-3.907 3.906-3.907\\\"/>\"\n\t\t},\n\t\t\"netlify\": {\n\t\t\t\"body\": \"<path fill=\\\"#014847\\\" d=\\\"M80.46 82.605h-8.777l-.734-.733V61.326c0-3.656-1.436-6.489-5.844-6.588c-2.269-.06-4.864 0-7.638.11l-.416.425v26.589l-.733.733H47.54l-.733-.733V46.764l.733-.733h19.753c7.677 0 13.899 6.22 13.899 13.898v21.943z\\\"/><path fill=\\\"#05bdba\\\" d=\\\"M58.942 119.902v-26.33l.733-.734h8.797l.733.733v26.331l-.733.733h-8.796zm0-84.838V8.734L59.675 8h8.797l.733.733v26.331l-.733.733h-8.796zm68.335 34.385H92.169l-.733-.733V59.92l.733-.733h35.108l.733.733v8.797zm-91.436 0H.733L0 68.716V59.92l.733-.733h35.108l.733.733v8.797zm-8.49-35.633v-1.209l6.034-6.033h1.208l9.223 9.223v6.39l-.852.852h-6.39zm7.242 68.235h-1.208l-6.033-6.033v-1.209l9.223-9.222h6.39l.851.851v6.39z\\\"/>\"\n\t\t},\n\t\t\"netlify-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#05bdba\\\" d=\\\"M110.25 61.727h17.478l.273.278v2.77l-.273.277h-18.57l-.273-.277l1.091-2.77zm-109.977 0h18.57l.273.278v2.77l-.273.277H.273L0 64.775v-2.77Zm17.214-14.864H17.1l-1.931 1.959v.391l4.508 4.573l2.045-.001l.274-.277v-2.073zm.002 33.054h-.387l-1.93-1.96v-.391l4.508-4.572h2.044l.275.277v2.074zm11.87-29.344V37.277l.274-.277h2.73l.274.277v13.296l-.274.277h-2.73zm0 38.929V76.206l.274-.278h2.73l.274.278v13.296l-.274.277h-2.73z\\\"/><path fill=\\\"#014847\\\" d=\\\"m33.863 70.393l-.273-.278l.002-8.03c0-1.386-.537-2.46-2.186-2.495a42.287 42.287 0 0 0-2.854.042l-.155.162l.002 10.321l-.273.278h-3.278l-.274-.278V56.663l.274-.277l7.377-.068c3.696 0 5.192 2.576 5.192 5.483v8.314l-.274.278zm67.242.277c-1.094 2.772-2.186 4.434-6.012 4.434h-1.367l-.273-.277v-2.772l.273-.277h1.367c1.366 0 1.639-.277 1.913-1.109v-.277l-4.372-10.81V56.81l.273-.277h2.46l.273.277l3.279 9.425h.273l3.28-9.425l.273-.277h2.459l.273.277v2.772l-4.371 11.087Zm-10.11-19.402v2.772l-.274.277h-2.458c-.547 0-.82.277-.82.832v1.109l.273.277h2.732l.274.277v2.772l-.274.277h-2.732l-.274.277v9.978l-.273.278h-3.28l-.272-.278V60.14l-.274-.278h-1.912l-.274-.277v-2.772l.274-.277h1.912l.274-.277v-1.11c0-3.048 2.185-4.158 4.644-4.158h2.46l.273.278zm-12.843 3.049h-3.279l-.273-.277v-2.772l.273-.277h3.28l.273.277v2.772zm0 16.076h-3.279l-.273-.278V56.811l.273-.277h3.28l.273.277v13.304zm-7.377 0h-3.279l-.273-.278V51.268l.273-.277h3.28l.273.277v18.847zm-10.11-4.158c0 .554.273.831.82.831h2.46l.273.278v2.771l-.274.278h-2.459c-2.46 0-4.645-1.11-4.645-4.158v-6.098l-.273-.278h-1.913l-.273-.277V56.81l.273-.277h1.913l.273-.277V53.76l.273-.277h3.28l.273.277v2.495l.273.277h3.006l.274.277v2.772l-.274.277H60.94l-.273.278v6.098zm-7.65-1.663l-.274.277H44.27l-.273.277c0 .555.547 2.218 2.732 2.218c.82 0 1.64-.278 1.913-.832l.273-.277h3.28l.273.277c-.274 1.663-1.64 4.158-5.739 4.158c-4.645 0-6.831-3.326-6.831-7.206c0-3.88 2.185-7.206 6.558-7.206c4.373 0 6.558 3.326 6.558 7.206v1.109zm-4.1-2.772c0-.277-.273-2.217-2.46-2.217c-2.185 0-2.458 1.94-2.458 2.217l.273.277h4.372z\\\"/>\"\n\t\t},\n\t\t\"networkx\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff7f0e\\\" d=\\\"M112.39 6.389a6.707 6.707 0 0 0-2.585.416c-3.428 1.266-5.232 5.008-4.033 8.357c1.2 3.35 4.952 5.039 8.38 3.772v-.002c3.427-1.267 5.233-5.007 4.032-8.354c-.901-2.513-3.237-4.092-5.793-4.19zM72.6 33.059a19.327 19.327 0 0 0-6.506 1.207c-9.84 3.636-15.023 14.377-11.576 23.992c3.445 9.615 14.217 14.461 24.054 10.826c9.841-3.634 15.024-14.378 11.578-23.992c-2.69-7.512-9.853-12.113-17.55-12.033m-51.856 31.67a6.693 6.693 0 0 0-2.586.416c-3.429 1.267-5.233 5.009-4.033 8.357c1.201 3.35 4.952 5.038 8.379 3.771c3.429-1.267 5.231-5.008 4.031-8.357c-.9-2.511-3.234-4.09-5.79-4.188zm71.807 36.39a9.22 9.22 0 0 0-3.553.572c-4.71 1.74-7.191 6.882-5.543 11.483c1.65 4.603 6.806 6.923 11.514 5.183h.002c4.71-1.74 7.191-6.883 5.54-11.484c-1.237-3.452-4.446-5.62-7.96-5.754\\\"/><path fill=\\\"#2c7fb8\\\" d=\\\"M112.709.008a13.345 13.345 0 0 0-9.396 3.433c-4.613 4.16-5.611 10.839-2.715 15.94l-7.776 7.002a32.376 32.376 0 0 0-18.312-6.574a32.996 32.996 0 0 0-12.766 2.033C45.761 27.748 36.87 44.689 41.047 60.588l-9.69 3.584c-2.254-3.508-6.105-5.663-10.254-5.83a13.196 13.196 0 0 0-3.302.34l-1.979-5.58c3.314-2.07 4.918-6.184 3.586-9.944l.002-.002c-1.151-3.246-4.174-5.293-7.463-5.437a8.554 8.554 0 0 0-3.318.515c-4.386 1.604-6.742 6.412-5.207 10.743c1.33 3.753 5.161 5.898 9.013 5.359l1.965 5.543c-5.7 2.998-8.565 9.74-6.373 15.855c2.39 6.664 9.893 10.022 16.641 7.528c5.843-2.16 9.321-8.016 8.6-13.873l9.66-3.569c6.355 13.711 21.803 20.877 36.687 17.283l3.998 11.155a18.588 18.588 0 0 0-8.922 10.601L69.414 104a8.206 8.206 0 0 0-6.896-7.797c-4.576-.747-8.992 2.32-9.864 6.861c-.871 4.54 2.185 8.885 6.762 9.631c3.973.649 7.82-1.578 9.336-5.15l5.166.842c-.304 2.62-.05 5.331.892 7.96c3.334 9.304 13.808 13.984 23.231 10.503c9.421-3.481 14.453-13.842 11.117-23.147a17.286 17.286 0 0 0-5.021-7.295l10.59-18.412l-.05-.027c3.783.788 7.795-1.098 9.536-4.725c2.034-4.158.212-9.228-4.002-11.078h-.004a8.405 8.405 0 0 0-3.25-.732h-.002c-2.648-.059-5.227 1.14-6.924 3.244l-6.678-3.207c2.243-6.597 2.403-13.899-.097-20.875A30.885 30.885 0 0 0 96.95 30.14l7.393-6.659c4.856 3.372 11.67 3.015 16.299-1.162c5.34-4.816 5.85-13.017 1.056-18.226c-2.398-2.605-5.661-3.972-8.99-4.086zm-.135 3.455c2.442.08 4.823 1.086 6.569 2.982c3.49 3.793 3.156 9.705-.827 13.297c-3.981 3.593-10.012 3.37-13.504-.422c-3.49-3.793-3.158-9.705.827-13.299a9.861 9.861 0 0 1 6.935-2.556zm-38.312 23.09c10.022.362 19.097 6.525 22.611 16.332c4.687 13.076-2.338 27.727-15.857 32.722v.002h-.002c-13.522 4.995-28.092-1.607-32.778-14.681c-4.685-13.075 2.34-27.727 15.86-32.723a26.522 26.522 0 0 1 10.166-1.652M11.857 39.959c2.415.093 4.59 1.584 5.428 3.947l-.002.002c1.118 3.152-.583 6.676-3.853 7.871c-3.272 1.198-6.768-.402-7.885-3.554c-1.118-3.153.585-6.677 3.857-7.873h.002a6.4 6.4 0 0 1 2.453-.393m9.12 21.836c3.723.131 7.08 2.42 8.384 6.057c1.739 4.849-.864 10.29-5.898 12.15c-5.034 1.86-10.428-.59-12.166-5.44c-1.74-4.849.865-10.29 5.898-12.15a9.886 9.886 0 0 1 3.782-.617m95.92 1.89a6.18 6.18 0 0 1 2.393.538l.008.002c3.054 1.335 4.38 4.991 2.89 8.03l-.003.01c-1.487 3.1-5.214 4.481-8.307 3.098l-.008-.004c-3.054-1.335-4.38-4.993-2.89-8.033l.003-.008c1.116-2.325 3.49-3.682 5.912-3.633zm-14.96 1.33l6.446 2.882c-.83 3.22.386 6.662 3.035 8.622l-10.252 17.823a18.214 18.214 0 0 0-8.101-2.28a18.42 18.42 0 0 0-1.956.116L86.894 80.42a33.295 33.295 0 0 0 15.043-15.404zm-9.05 31.87c5.197.183 9.89 3.375 11.709 8.453c2.428 6.77-1.206 14.37-8.235 16.967c-7.03 2.597-14.562-.824-16.988-7.594c-2.428-6.772 1.206-14.37 8.236-16.965a13.797 13.797 0 0 1 5.278-.861M60.898 98.35c.414-.016.834.007 1.256.076h.002c3.379.553 5.55 3.646 4.909 6.984c-.642 3.341-3.908 5.615-7.288 5.063c-3.381-.552-5.552-3.646-4.91-6.985c.562-2.923 3.133-5.026 6.031-5.138\\\"/>\"\n\t\t},\n\t\t\"networkx-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#4d4d4d\\\" d=\\\"M44.934 68.767h-2.36l-6.799-12.829v12.829h-1.782v-14.34h2.957l6.202 11.71v-11.71h1.782zm12.675-5.191h-7.927q0 .992.3 1.733q.297.732.818 1.204q.5.463 1.184.694q.694.23 1.522.23q1.098 0 2.205-.433q1.118-.443 1.59-.866h.096v1.974q-.915.385-1.869.645q-.953.26-2.003.26q-2.677 0-4.18-1.444q-1.502-1.455-1.502-4.122q0-2.64 1.435-4.19q1.445-1.55 3.795-1.55q2.176 0 3.351 1.27q1.185 1.272 1.185 3.612zm-1.763-1.387q-.01-1.426-.722-2.206q-.703-.78-2.148-.78q-1.454 0-2.32.857q-.858.857-.974 2.129zM65.94 68.67q-.51.135-1.117.222q-.598.087-1.07.087q-1.647 0-2.504-.886t-.857-2.842v-5.72H59.17v-1.522h1.223v-3.092h1.81v3.092h3.738v1.522h-3.737v4.902q0 .848.038 1.329q.04.472.27.886q.212.385.578.568q.375.174 1.136.174q.443 0 .925-.125q.481-.135.693-.222h.097zm15.718-10.661l-2.803 10.758H77.18l-2.764-8.293l-2.745 8.293h-1.666l-2.832-10.758h1.888l1.975 8.33l2.687-8.33h1.492l2.755 8.33l1.868-8.33zm11.778 5.384q0 2.629-1.348 4.15q-1.348 1.522-3.61 1.522q-2.284 0-3.633-1.521q-1.338-1.522-1.338-4.151q0-2.63 1.338-4.151q1.35-1.532 3.631-1.532q2.264 0 3.612 1.532q1.35 1.521 1.35 4.15zm-1.868 0q0-2.09-.819-3.101q-.818-1.021-2.273-1.021q-1.473 0-2.292 1.02q-.809 1.012-.809 3.102q0 2.022.82 3.072q.817 1.04 2.281 1.04q1.445 0 2.264-1.03q.828-1.04.828-3.082m11.384-3.41h-.096q-.405-.096-.79-.135q-.376-.048-.896-.048q-.838 0-1.618.376q-.78.366-1.502.953v7.638h-1.81V58.009h1.81v1.589q1.078-.867 1.897-1.223q.828-.366 1.686-.366q.472 0 .683.029q.212.019.636.086zm11.47 8.784h-2.388l-4.315-4.71l-1.175 1.117v3.593h-1.81V53.781h1.81v9.612l5.23-5.384h2.283l-4.999 4.97zm12.993-14.34l-4.95 7.088l4.94 7.252H125.2l-3.91-5.904l-4.007 5.904h-2.08l4.998-7.166l-4.883-7.175h2.196l3.862 5.827l3.95-5.827zM37.88 76.737h-.832l-2.396-4.52v4.52h-.628v-5.054h1.042l2.186 4.127v-4.127h.628zm4.466-1.83h-2.793q0 .35.105.611q.105.258.29.425q.175.162.416.244q.244.081.536.081q.387 0 .777-.152q.394-.156.56-.306h.034v.696q-.322.136-.658.227q-.336.092-.706.092q-.943 0-1.473-.51q-.53-.512-.53-1.452q0-.93.506-1.476q.51-.546 1.337-.546q.768 0 1.182.448q.417.448.417 1.272zm-.62-.488q-.004-.503-.256-.777q-.247-.275-.756-.275q-.513 0-.818.302q-.302.302-.343.75zm3.556 2.284q-.18.047-.394.078q-.21.03-.377.03q-.58 0-.882-.312q-.302-.312-.302-1.001v-2.016h-.43v-.536h.43v-1.09h.638v1.09h1.317v.536h-1.317v1.727q0 .3.014.469q.013.166.095.312q.074.136.203.2q.133.061.4.061q.157 0 .326-.044q.17-.047.245-.078h.034zm5.538-3.757l-.987 3.79h-.59l-.975-2.921l-.967 2.922h-.587l-.998-3.791h.665l.696 2.935l.947-2.935h.526l.97 2.935l.66-2.935zm4.151 1.897q0 .926-.475 1.463q-.475.536-1.273.536q-.804 0-1.28-.536q-.47-.537-.47-1.463q0-.927.471-1.463q.475-.54 1.28-.54q.797 0 1.272.54q.475.536.475 1.463m-.658 0q0-.737-.289-1.093q-.288-.36-.8-.36q-.52 0-.808.36q-.285.356-.285 1.093q0 .713.288 1.083q.288.366.804.366q.51 0 .798-.363q.292-.366.292-1.086m4.011-1.201h-.034q-.142-.034-.278-.048q-.132-.017-.316-.017q-.295 0-.57.132q-.275.13-.53.336v2.692h-.637v-3.791h.638v.56q.38-.306.668-.431q.292-.13.594-.13q.166 0 .241.011q.075.007.224.03zm4.042 3.095h-.84l-1.52-1.66l-.416.394v1.266h-.638v-5.281h.638v3.387l1.843-1.897h.804l-1.76 1.751zm7.151 0h-.716l-.496-1.409h-2.184l-.496 1.409h-.682l1.84-5.054h.896zm-1.419-1.986l-.885-2.48l-.89 2.48zm5.305 1.986h-.638v-2.159q0-.261-.03-.488q-.03-.231-.113-.36q-.084-.143-.244-.21q-.16-.072-.414-.072q-.26 0-.546.13q-.285.128-.547.328v2.83h-.638v-3.79h.638v.42q.3-.247.618-.386q.32-.14.655-.14q.614 0 .937.37q.322.37.322 1.066zm4.174 0h-.634v-.404q-.085.058-.23.163q-.144.102-.279.163q-.16.078-.367.129q-.207.054-.485.054q-.513 0-.87-.34q-.355-.339-.355-.865q0-.43.183-.696q.187-.268.53-.42q.346-.153.83-.207q.486-.055 1.043-.082v-.098q0-.218-.078-.36q-.075-.143-.217-.224q-.136-.078-.326-.105q-.19-.028-.397-.028q-.25 0-.56.068q-.31.065-.638.19h-.034v-.648q.186-.05.54-.112q.352-.06.695-.06q.4 0 .696.067q.298.064.516.224q.213.156.325.404q.112.248.112.614zm-.634-.934v-1.055q-.292.017-.69.05q-.393.035-.624.1q-.275.077-.444.244q-.17.163-.17.451q0 .326.197.492q.197.163.6.163q.337 0 .615-.129q.278-.132.516-.316m2.508.934h-.638v-5.281h.638zm4.54-3.791l-2.212 5.189h-.682l.706-1.582l-1.51-3.607h.692l1.164 2.81l1.174-2.81zm3.544 2.698q0 .52-.43.852q-.429.332-1.172.332q-.42 0-.774-.098q-.35-.102-.587-.22v-.717h.034q.302.228.672.363q.37.133.71.133q.42 0 .658-.136q.237-.136.237-.428q0-.224-.129-.339q-.129-.115-.495-.197q-.136-.03-.357-.071q-.217-.04-.397-.088q-.499-.133-.709-.387q-.207-.258-.207-.631q0-.235.095-.442q.098-.207.295-.37q.19-.16.482-.25q.295-.096.66-.096q.338 0 .684.085q.35.082.58.2v.682h-.033q-.245-.18-.594-.302q-.35-.125-.686-.125q-.35 0-.59.136q-.24.132-.24.397q0 .234.145.353q.142.118.461.193q.177.04.394.082q.22.04.366.074q.445.102.686.35q.24.251.24.665zm1.598-3.333h-.72v-.662h.72zm-.04 4.426h-.638v-3.791h.638zm3.97-1.093q0 .52-.43.852q-.428.332-1.17.332q-.422 0-.775-.098q-.35-.102-.587-.22v-.717h.034q.302.228.672.363q.37.133.71.133q.42 0 .657-.136q.238-.136.238-.428q0-.224-.13-.339q-.128-.115-.495-.197q-.135-.03-.356-.071q-.217-.04-.397-.088q-.5-.133-.71-.387q-.206-.258-.206-.631q0-.235.095-.442q.098-.207.295-.37q.19-.16.482-.25q.295-.096.658-.096q.34 0 .686.085q.35.082.58.2v.682h-.034q-.244-.18-.594-.302q-.35-.125-.685-.125q-.35 0-.59.136q-.242.132-.242.397q0 .234.146.353q.143.118.462.193q.176.04.393.082q.22.04.367.074q.445.102.685.35q.241.251.241.665m4.042-3.333h-.72v-.662h.72zm-.04 4.426h-.638v-3.791h.638zm4.432 0h-.638v-2.159q0-.261-.03-.488q-.03-.231-.112-.36q-.085-.143-.245-.21q-.16-.072-.414-.072q-.26 0-.546.13q-.285.128-.547.328v2.83h-.638v-3.79h.638v.42q.3-.247.618-.386q.32-.14.655-.14q.614 0 .937.37q.322.37.322 1.066zm7.03-3.526q0 .336-.12.624q-.115.285-.326.495q-.26.262-.618.394q-.356.13-.899.13h-.672v1.883h-.67v-5.054h1.37q.455 0 .77.078q.316.075.56.238q.29.194.445.482q.16.288.16.73m-.7.017q0-.262-.092-.455q-.092-.194-.278-.316q-.163-.105-.374-.15q-.207-.047-.526-.047h-.665v2.02h.567q.407 0 .662-.072q.254-.074.414-.234q.16-.163.224-.343q.068-.18.068-.403m4.812-.282l-2.213 5.189h-.682l.706-1.581l-1.51-3.608h.692l1.164 2.81l1.174-2.81zm2.803 3.757q-.18.047-.393.078q-.21.03-.377.03q-.58 0-.882-.312q-.302-.312-.302-1.001v-2.016h-.43v-.536h.43v-1.09h.638v1.09h1.316v.536h-1.316v1.728q0 .298.013.468q.014.166.095.312q.075.136.204.2q.132.061.4.061q.156 0 .326-.044q.17-.047.244-.078h.034zm3.94.034h-.637v-2.159q0-.261-.03-.488q-.03-.231-.113-.36q-.085-.143-.244-.21q-.16-.072-.414-.072q-.262 0-.547.13q-.285.128-.546.328v2.83h-.638v-5.28h.638v1.91q.298-.247.617-.386q.32-.14.655-.14q.615 0 .937.37q.323.37.323 1.066zm4.46-1.894q0 .926-.475 1.463q-.475.536-1.273.536q-.804 0-1.28-.536q-.47-.537-.47-1.463q0-.927.471-1.463q.475-.54 1.28-.54q.797 0 1.272.54q.475.536.475 1.463m-.658 0q0-.737-.289-1.093q-.288-.36-.8-.36q-.52 0-.808.36q-.286.356-.286 1.093q0 .713.29 1.083q.287.366.803.366q.51 0 .798-.363q.292-.367.292-1.086M128 76.737h-.638v-2.159q0-.261-.03-.488q-.03-.231-.113-.36q-.085-.143-.244-.21q-.16-.072-.414-.072q-.262 0-.547.13q-.285.128-.546.328v2.83h-.638v-3.79h.638v.42q.298-.247.617-.386q.32-.14.655-.14q.615 0 .937.37q.323.37.323 1.066z\\\"/><path fill=\\\"#ff7f0e\\\" d=\\\"M23.694 51.247a1.436 1.436 0 0 0-.4.084a1.436 1.436 0 0 0-.858 1.84a1.436 1.436 0 0 0 1.84.86a1.436 1.436 0 0 0 .858-1.842a1.436 1.436 0 0 0-1.44-.942m-8.726 5.809a4.122 4.122 0 0 0-1.149.24a4.122 4.122 0 0 0-2.463 5.283a4.122 4.122 0 0 0 5.284 2.465a4.122 4.122 0 0 0 2.463-5.285a4.122 4.122 0 0 0-4.135-2.703M3.831 63.921a1.436 1.436 0 0 0-.4.084a1.436 1.436 0 0 0-.858 1.842a1.436 1.436 0 0 0 1.84.857a1.436 1.436 0 0 0 .857-1.84a1.436 1.436 0 0 0-1.439-.943m15.723 8.26a1.973 1.973 0 0 0-.55.115a1.973 1.973 0 0 0-1.179 2.53a1.973 1.973 0 0 0 2.53 1.179a1.973 1.973 0 0 0 1.18-2.53a1.973 1.973 0 0 0-1.98-1.294z\\\"/><path fill=\\\"#2c7fb8\\\" d=\\\"M23.781 49.744c-.707 0-1.414.253-1.975.764a2.949 2.949 0 0 0-.629 3.527l-1.51 1.375a7.292 7.292 0 0 0-6.88-1.037c-3.533 1.285-5.474 5.048-4.579 8.619l-1.875.681a2.956 2.956 0 0 0-2.93-1.21l-.409-1.133a1.914 1.914 0 0 0 .71-2.215a1.913 1.913 0 0 0-2.443-1.15a1.915 1.915 0 0 0-1.15 2.443a1.915 1.915 0 0 0 1.96 1.254l.41 1.133a2.948 2.948 0 0 0-1.32 3.566a2.948 2.948 0 0 0 3.77 1.758a2.95 2.95 0 0 0 1.92-3.025l1.875-.682a7.311 7.311 0 0 0 8.027 3.947l.825 2.266a4.116 4.116 0 0 0-1.787 2.224l-1-.18a1.914 1.914 0 0 0-1.57-1.715a1.913 1.913 0 0 0-2.213 1.545a1.914 1.914 0 0 0 1.547 2.213a1.912 1.912 0 0 0 2.06-1.075l.975.172a4.07 4.07 0 0 0 .23 1.748a4.115 4.115 0 0 0 5.262 2.454a4.116 4.116 0 0 0 2.455-5.262a4.077 4.077 0 0 0-1.257-1.77l2.138-3.828l-.043-.023a1.915 1.915 0 0 0 2.301-1.02a1.912 1.912 0 0 0-.93-2.533a1.915 1.915 0 0 0-2.27.51l-1.28-.594a7.243 7.243 0 0 0-.069-4.76a7.241 7.241 0 0 0-1.35-2.287l1.417-1.289a2.95 2.95 0 0 0 3.57-.299a2.948 2.948 0 0 0 .195-4.154a2.937 2.937 0 0 0-2.18-.957zm-.094.941a1.99 1.99 0 0 1 1.574.653a1.988 1.988 0 0 1-.13 2.818a1.99 1.99 0 0 1-2.82-.13a1.99 1.99 0 0 1 .13-2.821a1.989 1.989 0 0 1 1.246-.52m-8.395 5.09a5.43 5.43 0 0 1 5.102 3.586a5.43 5.43 0 0 1-3.254 6.977a5.43 5.43 0 0 1-6.976-3.254a5.43 5.43 0 0 1 3.253-6.977a5.464 5.464 0 0 1 1.875-.332m-13.377 2.69a1.291 1.291 0 0 1 1.211.857a1.291 1.291 0 0 1-.779 1.658a1.292 1.292 0 0 1-1.658-.781a1.289 1.289 0 0 1 .78-1.656a1.306 1.306 0 0 1 .446-.078m2.012 4.892a1.99 1.99 0 0 1 1.871 1.317a1.988 1.988 0 0 1-1.193 2.556a1.989 1.989 0 0 1-2.559-1.191A1.99 1.99 0 0 1 3.24 63.48a2.007 2.007 0 0 1 .687-.123m20.998.65a1.31 1.31 0 0 1 .565.123a1.29 1.29 0 0 1 .63 1.72a1.292 1.292 0 0 1-1.72.63a1.291 1.291 0 0 1-.63-1.72a1.29 1.29 0 0 1 1.155-.753m-3.095.393l1.236.574a1.92 1.92 0 0 0 .627 1.77l-.13-.072l-2.112 3.78a4.12 4.12 0 0 0-1.838-.403l-.877-2.412A7.274 7.274 0 0 0 21.83 64.4m-2.143 6.961c1.137 0 2.198.702 2.611 1.838a2.776 2.776 0 0 1-1.666 3.57a2.775 2.775 0 0 1-3.57-1.664a2.777 2.777 0 0 1 1.664-3.572a2.807 2.807 0 0 1 .96-.172zm-6.834.176a1.33 1.33 0 0 1 .262.02a1.29 1.29 0 0 1 1.05 1.501a1.29 1.29 0 0 1-1.503 1.05a1.29 1.29 0 0 1-1.05-1.503a1.29 1.29 0 0 1 1.24-1.068z\\\"/>\"\n\t\t},\n\t\t\"nextjs\": {\n\t\t\t\"body\": \"<circle cx=\\\"64\\\" cy=\\\"64\\\" r=\\\"64\\\"/><path fill=\\\"url(#deviconNextjs0)\\\" d=\\\"M106.317 112.014L49.167 38.4H38.4v51.179h8.614v-40.24l52.54 67.884a64.216 64.216 0 0 0 6.763-5.209\\\"/><path fill=\\\"url(#deviconNextjs1)\\\" d=\\\"M81.778 38.4h8.533v51.2h-8.533z\\\"/><defs><linearGradient id=\\\"deviconNextjs0\\\" x1=\\\"109\\\" x2=\\\"144.5\\\" y1=\\\"116.5\\\" y2=\\\"160.5\\\" gradientTransform=\\\"scale(.71111)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconNextjs1\\\" x1=\\\"121\\\" x2=\\\"120.799\\\" y1=\\\"54\\\" y2=\\\"106.875\\\" gradientTransform=\\\"scale(.71111)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient></defs>\"\n\t\t},\n\t\t\"nextjs-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M0 51.098V76.86h4.422V56.604L20.73 76.87h27.694v-4.113H30.553v-6.801h14.37v-4.113h-14.37v-6.621h17.87v-4.116H26.13v4.116h.002V76.68L5.527 51.098zm85.09.01v4.115h9.03v21.65h4.42v-21.65h8.847v-4.116H85.09zm-31.322.011l20.73 25.764h5.803L69.936 64.01l10.35-12.871l-5.79.01l-7.459 9.261l-7.48-9.29h-5.79zm70.158 14.598c-.761 0-1.445.128-2.051.394c-.602.263-1.078.633-1.426 1.108c-.35.476-.525 1.032-.525 1.664c0 .77.258 1.384.78 1.847c.517.464 1.227.809 2.124 1.036l1.24.312a7.02 7.02 0 0 1 1.026.334a1.91 1.91 0 0 1 .683.461a1.034 1.034 0 0 1 .248.697a1.25 1.25 0 0 1-.283.803a1.77 1.77 0 0 1-.76.535a3.11 3.11 0 0 1-1.132.192a3.24 3.24 0 0 1-1.116-.182a1.902 1.902 0 0 1-.804-.557a1.63 1.63 0 0 1-.352-.931h-1.941c.027.71.216 1.316.566 1.812s.836.873 1.46 1.13c.62.26 1.357.39 2.202.39c.875 0 1.619-.136 2.233-.4c.617-.27 1.088-.643 1.414-1.118c.327-.479.488-1.028.488-1.658c0-.466-.09-.872-.266-1.217a2.726 2.726 0 0 0-.72-.887a4.227 4.227 0 0 0-1.028-.607a7.09 7.09 0 0 0-1.19-.385l-1.02-.25a6.975 6.975 0 0 1-.667-.195a2.82 2.82 0 0 1-.597-.285a1.304 1.304 0 0 1-.43-.418a1.037 1.037 0 0 1-.158-.58a1.21 1.21 0 0 1 .238-.717c.156-.21.385-.376.678-.5a2.771 2.771 0 0 1 1.056-.184c.585 0 1.062.126 1.43.383a1.424 1.424 0 0 1 .623 1.07h1.9a2.775 2.775 0 0 0-.513-1.607c-.333-.466-.792-.833-1.377-1.096c-.584-.265-1.26-.394-2.033-.394m-7.998.144v7.55c-.003.377-.062.697-.176.954a1.25 1.25 0 0 1-.506.584c-.218.133-.488.2-.803.2c-.29 0-.546-.057-.771-.17a1.247 1.247 0 0 1-.522-.481a1.474 1.474 0 0 1-.195-.75h-1.963c0 .661.147 1.213.447 1.656a2.768 2.768 0 0 0 1.211 1.002a4.22 4.22 0 0 0 1.72.34c.697 0 1.311-.134 1.835-.4a2.97 2.97 0 0 0 1.236-1.149c.293-.499.444-1.093.448-1.787v-7.549zm-53.332.059l-8.844 10.982h5.805l5.937-7.38zm45.785 8.498c-.324 0-.6.112-.83.336a1.07 1.07 0 0 0-.344.807a1.082 1.082 0 0 0 .344.818c.23.225.506.336.83.336a1.105 1.105 0 0 0 .574-.156a1.2 1.2 0 0 0 .428-.416a1.115 1.115 0 0 0 .166-.582a1.097 1.097 0 0 0-.354-.807a1.133 1.133 0 0 0-.814-.336\\\"/>\"\n\t\t},\n\t\t\"nginx\": {\n\t\t\t\"body\": \"<path fill=\\\"#090\\\" d=\\\"M24.5 50.5c-1.5 0-2.5 1.2-2.5 2.7v14.1l-15.9-16c-.8-.8-2.2-1-3.2-.6S1 52.1 1 53.2v20.7c0 1.5 1.5 2.7 3 2.7s3-1.2 3-2.7V59.8l16.1 16c.5.5 1.2.8 1.9.8c.3 0 .4-.1.7-.2c1-.4 1.3-1.4 1.3-2.5V53.3c0-1.5-1-2.8-2.5-2.8m19.7 11.8c-1.4 0-2.7 1.4-2.7 2.8s1.3 2.8 2.7 2.8l6.6.4l-1.5 3.7h-8.5l-4.2-7.9l4.3-8.1H50l2.1 4h5.5L54 52.1l-.8-1.1H37.6l-.7 1.2L31 62.5l-.7 1.3l.7 1.3l5.8 10.3l.8 1.6h15.1l.7-1.7l4.3-9l1.9-4.3h-4.4zM65 50.5c-1.4 0-3 1.3-3 2.7V60h6v-6.7c0-1.5-1.6-2.8-3-2.8m30.4.3c-1-.4-2.4-.2-3.1.6L76 67.4V53.3c0-1.5-1-2.7-2.5-2.7S71 51.8 71 53.3V74c0 1.1.7 2.1 1.7 2.5c.3.1.7.2 1 .2c.7 0 1.6-.3 2.1-.8l16.2-16V74c0 1.5 1 2.7 2.5 2.7S97 75.5 97 74V53.3c0-1.1-.6-2.1-1.6-2.5m21.8 12.8l8.4-8.4c1.1-1.1 1.1-2.8 0-3.8c-1.1-1.1-2.8-1.1-3.8 0l-8.4 8.4l-8.4-8.4c-1.1-1.1-2.8-1.1-3.8 0c-1.1 1.1-1.1 2.8 0 3.8l8.4 8.4l-8.4 8.4c-1.1 1.1-1.1 2.8 0 3.8c.5.5 1.2.8 1.9.8s1.4-.3 1.9-.8l8.4-8.4l8.4 8.4c.5.5 1.2.8 1.9.8s1.4-.3 1.9-.8c1.1-1.1 1.1-2.8 0-3.8zM62 73.9c0 1.4 1.5 2.7 3 2.7c1.4 0 3-1.3 3-2.7V62h-6z\\\"/>\"\n\t\t},\n\t\t\"ngrx\": {\n\t\t\t\"body\": \"<path fill=\\\"#412846\\\" d=\\\"M64.1 1.4L5.6 21.7L14 99.3l50.1 27.3z\\\"/><path fill=\\\"#4b314f\\\" d=\\\"m63.9 1.4l58.5 20.3l-8.4 77.6l-50.1 27.3z\\\"/><path fill=\\\"#ba2bd2\\\" d=\\\"m93.2 44.3l-.1-.1q4 4.5 4.2 10.6q.1 6.1-4.2 12.9q3.2-2.5 7.4-10.6q1.8 16.5-13.5 25.1q4.9-.4 12.9-6.4q-8.5 20.6-31.4 21.7c-14.8 0-24.3-8.8-24.3-8.8q-9.1-7.1-12.5-17.9c-3.7-3.9-3.7-4.3-4.1-5.9c-.3-1.6.3-2.1 1.3-3.6q1.1-1.6.5-4.4q-1.3-1.9-1.5-5.9q0-2 2.6-4.1q2.6-2.2 3.1-3.3q.5-.6.4-5.4q-.1-4.7 5.2-5.1c5.2-.4 8.1-4.3 9.8-6.1c1.1-1.2 2.7-1.8 4.7-1.8c2.9-.1 5.5 1 7.8 3.3c5.6-.3 11.3 1.2 17.1 4.5Q91 40.3 92.2 48.9q-1.4 11.3-30.2-.6q-15.1 4.3-14.9 18.5q0 13.1 12.7 19c-4.1-4-5.9-7.4-5.3-10.2Q67.3 90.8 83.6 87q-7.1.2-11.4-4.7Q83.2 82 93 72q-5.6 4.5-11.9 3.4q17-13.3 12.1-31.1m-19-3.1c0-.9-.7-1.6-1.6-1.6c-.9 0-1.7.7-1.7 1.6c0 .9.8 1.7 1.7 1.7c.9 0 1.6-.8 1.6-1.7\\\"/>\"\n\t\t},\n\t\t\"nhibernate\": {\n\t\t\t\"body\": \"<path fill=\\\"#87802a\\\" d=\\\"M65.2 3.71c-17.99 0-34.2 8.067-45.24 20.778c1.638.11 3.255.395 4.83.848c.01 0 .034-.012.05 0C35.035 14.609 49.352 7.863 65.2 7.863h.175c30.71 0 55.852 25.153 55.852 56.024c0 30.875-25.141 56.015-55.852 56.015h-.176c-30.699 0-55.84-25.14-55.84-56.015c0-4.399.543-8.66 1.504-12.774c-.55-3.703-1.238-6.437-2.039-7.761A59.96 59.96 0 0 0 5.2 63.887c0 33.136 27.04 60.05 60 60.05h.176c32.96 0 60.066-26.914 60.066-60.05c0-33.137-27.105-60.176-60.066-60.176Zm0 0\\\"/><path fill=\\\"#903a36\\\" d=\\\"M112.05 44.813c-4.503-12.84-15.44-23.95-29.14-28.977c-8.496-3.121-22.035-2.262-30.707.527c-6.937 2.246-7.293 2.246-13.703 6.063c-2.426 1.387-6.938.172-8.672 2.437c-1.742 2.25 1.91 5.551 2.086 8.325c0 1.21 4.336-7.114 4.336-6.075c0 2.598-2.95 8.153-3.477 11.977c-1.035 7.273 1.563 28.61 3.301 35.558c.34 1.04 3.637-.175 4.512-.523c1.387-.176 2.602-4.688 4.68-6.074c9.023-6.414 13.87-14.739 21.332-16.13c6.777-1.222 14.93 2.778 17.875 8.329c1.566 2.95 2.777 6.238 2.777 8.324c0 1.563-.523 2.426-.875 1.563c-2.074-5.899-4.16-10.41-6.063-11.973c-4.511-3.64-6.601-4.687-13.187-3.3c-6.762 1.562-19.422 13.89-23.422 19.437c-2.43 3.3-3.289 9.023-1.566 11.625c5.39 7.8 9.726 9.886 19.265 10.574c.348 0 3.121 1.914 1.91 1.914c-12.152 0-18.222-3.3-26.374-16.14c-.864-1.387-2.774-6.587-3.301-8.149c-3.29-8.852-2.426-23.586-4.16-35.39c-.512-3.47-1.215-7.462-2.954-9.887C23.75 24.688 6.926 25.55 4.5 29.887c-1.387 1.039-1.91 1.91-.875 2.601c9.2 6.938 9.2 14.575 9.55 22.035c.352 9.715.352 16.829 3.813 25.852c6.938 18.898 22.547 31.402 40.075 33.824c21.335 3.125 36.773-5.375 48.398-20.125c10.414-13.183 12.14-33.648 6.59-49.261ZM47.863 33.7c.176-1.388.524-4.673 1.563-5.727c1.91-1.723 4.511-2.774 6.773-1.383c3.29 1.91 4.852 4.16 4.676 7.808c-.336 3.465-4.336 5.204-7.29 5.551c2.442-1.215 5.552-2.597 5.04-6.074c-.352-1.21-2.777-.688-3.648-1.738c-.688-.864.171-3.637-.688-3.809c-.527 0-1.219 0-1.738.172c-2.078.523-3.989 2.426-4.688 5.2m-3.988 21.34c.7-1.036 2.438-2.774 3.648-4.5c1.727-2.263 1.567-3.645 3.989-6.247c-2.086 3.46-1.215 5.023-3.125 7.11c-.864.863-1.739 2.253-4.512 3.636Zm0 0\\\"/>\"\n\t\t},\n\t\t\"nhibernate-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#87802a\\\" d=\\\"M116.828 76.945h8.348v1.356h-6.723v6.234h6.399v1.41h-6.399v6.774h7.156v1.41h-8.78Zm-13.61 0h11.927v1.356h-5.149v15.828h-1.625V78.3h-5.152Zm-5.91 11.004h3.797l-3.253-7.804l-.543-1.465v-1.735h1.03l7.212 17.184h-1.953l-2.059-4.77h-4.23Zm-3.792 0h3.793v1.41h-4.282l-1.953 4.77H89.34l6.832-17.184h1.137v1.735l-.051-.164h-.055l-.598 1.574ZM74.543 76.945h2.004l8.348 13.88l.761 1.57h.051l-.05-2.004V76.945h1.57V94.13h-2.004L76.98 80.47l-.921-1.844h-.11l.11 2.008V94.13h-1.516Zm-8.352 7.75a4.338 4.338 0 0 0 2.008-.812c.758-.594 1.192-1.356 1.192-2.332c0-.16-.055-.38-.055-.594c0-.219-.055-.434-.16-.652c-.164-.489-.489-.922-.977-1.356c-.433-.379-1.086-.594-2.008-.648v-1.356c1.301 0 2.278.27 2.93.703c.703.489 1.246 1.032 1.516 1.63c.218.484.379.972.433 1.355c0 .433.055.758.055.918c0 1.14-.379 2.062-1.137 2.765c-.761.707-1.629 1.141-2.601 1.246c.488.11.812.22 1.027.489c.273.219.434.433.543.761c.11.106.164.215.164.325c.055.11.106.215.16.27l2.985 6.722h-1.79l-2.82-6.395c-.054-.054-.054-.109-.11-.109c0-.055-.054-.11-.054-.164c-.215-.434-.433-.758-.703-.977c-.164-.105-.324-.16-.598-.214Zm-3.144-6.394v6.449h2.387c.27 0 .543 0 .757-.055v1.575a4.302 4.302 0 0 0-.976-.11h-2.168v7.969h-1.625V76.945h4.77v1.356Zm-13.172-1.356h8.348v1.356H51.5v6.234h6.398v1.41H51.5v6.774h7.21v1.41h-8.835Zm-7.754 7.59a3.696 3.696 0 0 0 2.168-.867c.652-.598.977-1.41.977-2.387c0-.976-.325-1.734-.977-2.222c-.539-.434-1.246-.704-2.168-.704v-1.41c1.734 0 2.93.434 3.633 1.192c.762.812 1.14 1.734 1.195 2.71c.051.055.051.11.051.22v.16c0 .164 0 .324-.05.433v.434a4.748 4.748 0 0 1-.872 1.734c-.433.543-1.082.977-2.058 1.3v.056c.921.164 1.734.597 2.44 1.355c.704.707 1.028 1.629 1.028 2.711c0 .273 0 .598-.054.867a5.9 5.9 0 0 1-.215.977c-.27.758-.813 1.465-1.625 2.058c-.762.598-1.899.922-3.473.977v-1.465h.328c.324 0 .649-.105.973-.16a3.218 3.218 0 0 0 1.574-.977c.488-.433.758-1.191.758-2.222c0-.868-.215-1.52-.649-2.004c-.378-.434-.867-.817-1.355-.977c-.488-.219-.922-.328-1.3-.328c-.11-.05-.22-.05-.329-.05Zm-3.144-6.234v6.234h3.144v1.41h-3.144v6.774h2.605c.16 0 .324 0 .54-.055v1.465h-4.77V76.945h4.77v1.41c-.106-.054-.216-.054-.325-.054Zm-6.395-1.356h1.625V94.13h-1.625Zm-15.504 0h1.625v7.59h8.945v-7.59h1.625V94.13h-1.625v-8.24h-8.945v8.238h-1.625Zm0 0\\\"/><path fill=\\\"#903a36\\\" d=\\\"M2.168 76.945h2.008l8.402 13.88l.758 1.57h.055l-.055-2.004V73.91h1.52v20.218h-2.008l-8.239-13.66l-.921-1.844h-.055l.11 2.008v13.496H2.167Zm0 0\\\"/><path fill=\\\"#903a36\\\" d=\\\"M13.336 73.258h112.652v1.355H13.336ZM1.844 98.25h124.144v-1.3H1.844Zm0 0\\\"/><path fill=\\\"#87802a\\\" d=\\\"M60.875 28.16c-5.621 0-10.688 2.52-14.137 6.492a7.18 7.18 0 0 1 1.508.266c.004 0 .012-.004.016 0c3.187-3.352 7.66-5.461 12.613-5.461h.055c9.597 0 17.453 7.86 17.453 17.508S70.527 64.469 60.93 64.469h-.055c-9.594 0-17.45-7.856-17.45-17.504c0-1.375.169-2.707.47-3.992c-.172-1.157-.387-2.012-.637-2.426a18.714 18.714 0 0 0-1.133 6.418c0 10.355 8.45 18.765 18.75 18.765h.055c10.3 0 18.77-8.41 18.77-18.765c0-10.356-8.47-18.805-18.77-18.805Zm0 0\\\"/><path fill=\\\"#903a36\\\" d=\\\"M75.516 41.004c-1.407-4.012-4.825-7.484-9.106-9.055c-2.656-.976-6.887-.707-9.597.164c-2.168.703-2.278.703-4.282 1.895c-.758.433-2.168.054-2.71.762c-.544.703.597 1.734.652 2.601c0 .379 1.355-2.223 1.355-1.898c0 .812-.922 2.547-1.086 3.742c-.324 2.273.488 8.941 1.031 11.113c.106.324 1.137-.055 1.41-.164c.434-.055.813-1.465 1.462-1.898c2.82-2.004 4.335-4.606 6.667-5.04c2.118-.382 4.665.868 5.586 2.602c.489.922.868 1.95.868 2.602c0 .488-.164.758-.274.488c-.648-1.844-1.3-3.254-1.894-3.742c-1.41-1.137-2.063-1.465-4.121-1.031c-2.114.488-6.07 4.34-7.32 6.074c-.759 1.031-1.028 2.82-.489 3.633c1.684 2.437 3.039 3.09 6.02 3.304c.109 0 .976.598.597.598c-3.797 0-5.695-1.031-8.242-5.043c-.27-.434-.867-2.059-1.031-2.547c-1.028-2.766-.758-7.371-1.301-11.059c-.16-1.085-.379-2.332-.922-3.09c-.867-1.3-6.125-1.03-6.883.325c-.433.324-.597.597-.273.812c2.875 2.168 2.875 4.555 2.984 6.887c.11 3.035.11 5.258 1.192 8.078c2.168 5.906 7.046 9.813 12.523 10.57c6.668.977 11.492-1.68 15.125-6.289c3.254-4.12 3.793-10.515 2.059-15.394m-20.059-3.473c.055-.433.164-1.46.488-1.789c.598-.539 1.41-.867 2.117-.433c1.028.597 1.516 1.3 1.461 2.441c-.105 1.082-1.355 1.625-2.277 1.734c.762-.379 1.734-.812 1.574-1.898c-.11-.379-.867-.215-1.14-.543c-.215-.27.054-1.137-.215-1.191c-.164 0-.38 0-.543.054c-.649.164-1.246.758-1.465 1.625M54.211 44.2c.219-.324.762-.867 1.14-1.406c.54-.707.489-1.14 1.247-1.953c-.653 1.082-.38 1.57-.977 2.222c-.27.27-.543.704-1.41 1.137M1.844 73.258H11.87v1.355H1.844Zm0 0\\\"/>\"\n\t\t},\n\t\t\"nim\": {\n\t\t\t\"body\": \"<path fill=\\\"#f3d400\\\" d=\\\"M64.507 20.139s-4.905 3.872-9.906 7.725a70.222 70.222 0 0 0-20.695 2.976c-5.028-3.2-9.463-6.715-9.463-6.715s-3.78 6.505-6.157 10.322a52.032 52.032 0 0 0-10.222 6.775C4.394 39.773.137 37.99 0 37.944c4.86 9.806 8.128 19.621 17.015 25.523c14.171-22.35 79.908-20.293 94.35-.128c9.32-4.883 12.978-15.337 16.635-25.029c-.402.133-5.399 1.806-8.635 3.04a52.521 52.521 0 0 0-9.08-6.903c-2.454-4.498-6.029-10.574-6.029-10.574s-4.238 3.15-9.143 6.583a97.211 97.211 0 0 0-21.399-2.34c-4.571-3.776-9.207-7.982-9.207-7.982z\\\"/><path fill=\\\"#ffe953\\\" d=\\\"m5.029 58.763l11.675 28.274c20.274 26.743 72.041 28.603 94.629.516c5.339-12.036 12.548-28.95 12.548-28.95a61.161 61.161 0 0 1-21.028 17.686a55.85 55.85 0 0 1-13.637 3.626L64.233 66.968L39.09 79.654a71.675 71.675 0 0 1-13.636-3.493A64.347 64.347 0 0 1 5.029 58.763\\\"/>\"\n\t\t},\n\t\t\"nim-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"m92.253 46.415l-4.036 2.883v1.728h4.036zm-28.829 9.8v22.487l4.035 2.883V60.252h6.343c1.73 0 2.883 1.316 2.883 2.883v15.567h4.036v-16.43c0-3.17-2.884-6.055-6.054-6.055zm24.793 0v22.487h4.036V56.217Zm11.53 0v22.487h4.036v-18.45h8.073v18.45h4.036v-18.45h5.189c1.73 0 2.883 1.154 2.883 2.883v18.45L128 78.702v-16.43c0-3.459-2.595-6.054-6.054-6.054z\\\"/><path fill=\\\"#f3d400\\\" d=\\\"M25.861 46.415s-1.966 1.553-3.97 3.097c-2.063-.065-6.108.397-8.3 1.193a49.47 49.47 0 0 1-3.792-2.69s-1.514 2.607-2.468 4.138c-1.414.75-2.833 1.597-4.098 2.716A225.686 225.686 0 0 1 0 53.549c1.949 3.93 3.259 7.866 6.821 10.23c5.674-8.96 32.034-8.133 37.824-.05c3.743-1.953 5.198-6.151 6.67-10.027c-.16.053-2.163.723-3.461 1.218c-.776-.844-2.603-2.141-3.64-2.768c-.985-1.803-2.419-4.24-2.419-4.24s-1.697 1.264-3.665 2.64c-2.658-.49-5.874-1.086-8.578-.938c-1.841-1.515-3.69-3.2-3.69-3.2z\\\"/><path fill=\\\"#ffe953\\\" d=\\\"m2.015 61.901l4.68 11.333c8.127 10.724 28.882 11.468 37.93.208c2.14-4.825 5.03-11.606 5.03-11.606c-2.323 3.439-6.1 5.812-8.427 7.091c-1.654.906-5.467 1.453-5.467 1.453l-10.016-5.19l-10.071 5.087s-3.765-.605-5.468-1.402c-3.44-1.836-5.753-4.005-8.192-6.974Z\\\"/>\"\n\t\t},\n\t\t\"nimble\": {\n\t\t\t\"body\": \"<path d=\\\"M64 51.328L2.262 30.414v61.512L64 116.316Zm0 0\\\"/><path fill=\\\"#1c1c1c\\\" d=\\\"M125.738 30.414L64 51.328v64.988l61.738-24.39zm0 0\\\"/><path fill=\\\"#353338\\\" d=\\\"M125.84 30.414L64.102 10.117L2.367 30.414l61.735 20.914Zm0 0\\\"/><path fill=\\\"#c5b514\\\" d=\\\"M91.781 58.195s1.938-2.254 2.625-2.05c1.785.535 4.285 1.59 5.239.683c1.44-1.367 3.164-2.117 3.164-2.117l-.024-16.492l-11.004 3.718zm0 0\\\"/><path fill=\\\"#eed714\\\" d=\\\"m41.055 17.703l61.742 20.516l-10.973 3.718l-61.836-20.605Zm0 0\\\"/><path fill=\\\"#f5e83f\\\" d=\\\"M42.777 74.527c-1.074-5.183-6.465-10.64-12.574-11.953c-5.894-1.27-10.39 1.645-11.258 5.856l-1.023 1.093l-1.43-4.648l-1.09-7.43l1.875 1.614c.52-.707.891-1.266 2.23-2.133l1.302-3.856l2.23 3.043c1.527-.254 3.066-.543 4.867-.097l2.297-2.832l2.348 3.695c1.91.246 3.601 1.168 5.328 2.078l2.617-2.371l1.582 4.824c1.68 1.61 2.152 2.422 2.82 3.488l2.473-.886l-1.45 7.96l-1.855 4.41zm0 0\\\"/><path fill=\\\"#f5e83f\\\" d=\\\"m44.285 75.328l-1.508-.941l-2.672 4.093l-3.558.497l-6.344-6.883l-5.992 3.39l-3.074-2.246l-2.192-4.93l-1.195.188l-1.258-3.746l2.453 11.469c1.774 6.203 7.43 10.89 11.258 12.175c3.969 1.333 10.402.426 12.574-5.171l3.145-11.391Zm0 0\\\"/>\"\n\t\t},\n\t\t\"nixos\": {\n\t\t\t\"body\": \"<path fill=\\\"#7EBAE4\\\" fill-rule=\\\"evenodd\\\" d=\\\"M50.732 43.771L20.525 96.428l-7.052-12.033l8.14-14.103l-16.167-.042L2 64.237l3.519-6.15l23.013.073l8.27-14.352zm2.318 42.094l60.409.003l-6.827 12.164l-16.205-.045l8.047 14.115l-3.45 6.01l-7.05.008l-11.445-20.097l-16.483-.034zm35.16-23.074l-30.202-52.66L71.888 10l8.063 14.148l8.12-14.072l6.897.002l3.532 6.143l-11.57 20.024l8.213 14.386z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#5277C3\\\" fill-rule=\\\"evenodd\\\" d=\\\"m39.831 65.463l30.202 52.66l-13.88.131l-8.063-14.148l-8.12 14.072l-6.897-.002l-3.532-6.143l11.57-20.024l-8.213-14.386zm35.08-23.207l-60.409-.003L21.33 30.09l16.204.045l-8.047-14.115l3.45-6.01l7.051-.01l11.444 20.097l16.484.034zm2.357 42.216l30.207-52.658l7.052 12.034l-8.141 14.102l16.168.043L126 64.006l-3.519 6.15l-23.013-.073l-8.27 14.352z\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"nixos-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#7EBAE4\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18.096 57.082L8.12 74.362l-2.33-3.95l2.69-4.627l-5.34-.014L2 63.798l1.162-2.019l7.602.024l2.731-4.71zm.766 13.813h19.953l-2.255 3.993l-5.352-.015l2.658 4.632l-1.14 1.972l-2.329.002l-3.78-6.594l-5.444-.012zm11.613-7.572L20.5 46.043L25.084 46l2.663 4.643l2.683-4.618h2.277l1.167 2.016l-3.822 6.571l2.713 4.72z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#5277C3\\\" fill-rule=\\\"evenodd\\\" d=\\\"m14.496 64.2l9.975 17.28l-4.584.043l-2.663-4.642l-2.683 4.618l-2.277-.001l-1.167-2.016l3.821-6.57l-2.712-4.722zm11.587-7.615l-19.954-.001l2.255-3.992l5.353.015l-2.658-4.632l1.14-1.972L14.546 46l3.78 6.595l5.445.011l2.31 3.979zm.778 13.853l9.977-17.28l2.33 3.95l-2.69 4.627l5.341.014l1.138 1.973l-1.162 2.018l-7.601-.024l-2.732 4.71z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M68.355 53.027H65.84v11.418c0 1.612.065 4.16.162 6.999h-.097c-1.258-2.355-2.677-4.612-3.677-6.16l-7.902-12.257h-3.452v21.868h2.516V63.477c0-1.613-.064-4.645-.161-7.45h.097c1.87 3.257 2.967 5.063 4 6.611l7.902 12.257h3.128V53.027zm4.79 21.868h2.71V59.284h-2.71zM74.5 56.994c.935 0 1.677-.742 1.677-1.677c0-.936-.742-1.678-1.677-1.678c-.936 0-1.677.742-1.677 1.678c0 .935.741 1.677 1.677 1.677m18.234 2.29h-3.096l-3.806 5.741h-.097l-3.677-5.741h-3.355l5.58 7.612v.097l-5.773 7.902h3.096l4.064-6.193h.097l4.064 6.193h3.355l-5.903-8.031v-.097zm10.48-5.868c-5.134 0-9.355 4.134-9.355 11.014c0 6.879 4.221 11.013 9.355 11.013s9.355-4.134 9.355-11.013c0-6.88-4.221-11.014-9.355-11.014m0 2.146c3.822 0 6.731 3.156 6.731 8.868c0 5.711-2.909 8.867-6.731 8.867s-6.731-3.156-6.731-8.867c0-5.712 2.91-8.868 6.731-8.868m10.417 3.443c0 3.03 1.578 4.67 5.239 6.154c2.809 1.136 3.945 2.145 3.945 4.228c0 2.525-2.052 3.787-4.766 3.787c-1.42 0-3.029-.22-4.796-.82l-.284 2.177c1.546.568 3.25.789 4.954.789c4.229 0 7.763-2.146 7.763-6.47c0-2.997-1.83-4.449-5.522-5.932c-2.462-.978-3.661-2.02-3.661-4.197c0-2.114 1.83-3.282 4.134-3.282c1.357 0 2.84.347 3.882.758l.284-2.146c-1.199-.505-2.683-.758-4.324-.758c-3.881 0-6.848 2.24-6.848 5.712\\\"/>\"\n\t\t},\n\t\t\"nodejs\": {\n\t\t\t\"body\": \"<path fill=\\\"url(#deviconNodejs0)\\\" d=\\\"M66.958.825a6.07 6.07 0 0 0-6.035 0L11.103 29.76c-1.895 1.072-2.96 3.095-2.96 5.24v57.988c0 2.143 1.183 4.167 2.958 5.24l49.82 28.934a6.07 6.07 0 0 0 6.036 0l49.82-28.935c1.894-1.072 2.958-3.096 2.958-5.24V35c0-2.144-1.183-4.167-2.958-5.24z\\\"/><path fill=\\\"url(#deviconNodejs1)\\\" d=\\\"M116.897 29.76L66.841.825A8.161 8.161 0 0 0 65.302.23L9.21 96.798a6.251 6.251 0 0 0 1.657 1.43l50.057 28.934c1.42.833 3.076 1.072 4.615.595l52.66-96.925a3.702 3.702 0 0 0-1.302-1.072\\\"/><path fill=\\\"url(#deviconNodejs2)\\\" d=\\\"M116.898 98.225c1.42-.833 2.485-2.262 2.958-3.81L65.066.108c-1.42-.238-2.959-.119-4.26.715L11.104 29.639l53.606 98.355c.71-.12 1.54-.358 2.25-.715z\\\"/><defs><linearGradient id=\\\"deviconNodejs0\\\" x1=\\\"34.513\\\" x2=\\\"27.157\\\" y1=\\\"15.535\\\" y2=\\\"30.448\\\" gradientTransform=\\\"translate(-129.242 -73.715)scale(6.18523)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#3F873F\\\"/><stop offset=\\\".33\\\" stop-color=\\\"#3F8B3D\\\"/><stop offset=\\\".637\\\" stop-color=\\\"#3E9638\\\"/><stop offset=\\\".934\\\" stop-color=\\\"#3DA92E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3DAE2B\\\"/></linearGradient><linearGradient id=\\\"deviconNodejs1\\\" x1=\\\"30.009\\\" x2=\\\"50.533\\\" y1=\\\"23.359\\\" y2=\\\"8.288\\\" gradientTransform=\\\"translate(-129.242 -73.715)scale(6.18523)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".138\\\" stop-color=\\\"#3F873F\\\"/><stop offset=\\\".402\\\" stop-color=\\\"#52A044\\\"/><stop offset=\\\".713\\\" stop-color=\\\"#64B749\\\"/><stop offset=\\\".908\\\" stop-color=\\\"#6ABF4B\\\"/></linearGradient><linearGradient id=\\\"deviconNodejs2\\\" x1=\\\"21.917\\\" x2=\\\"40.555\\\" y1=\\\"22.261\\\" y2=\\\"22.261\\\" gradientTransform=\\\"translate(-129.242 -73.715)scale(6.18523)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".092\\\" stop-color=\\\"#6ABF4B\\\"/><stop offset=\\\".287\\\" stop-color=\\\"#64B749\\\"/><stop offset=\\\".598\\\" stop-color=\\\"#52A044\\\"/><stop offset=\\\".862\\\" stop-color=\\\"#3F873F\\\"/></linearGradient></defs>\"\n\t\t},\n\t\t\"nodejs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#5fa04e\\\" d=\\\"M114.313 55.254a.26.26 0 0 0-.145.044l-2.346 1.37a.3.3 0 0 0-.142.26v2.74c0 .116.055.204.142.262l2.346 1.368a.262.262 0 0 0 .29 0l2.342-1.368a.308.308 0 0 0 .145-.263V56.93a.303.303 0 0 0-.145-.26l-2.343-1.371a.26.26 0 0 0-.144-.044zM63.22 71.638c-.427 0-.852.104-1.214.308l-11.549 6.727a2.457 2.457 0 0 0-1.214 2.124V94.22c0 .874.462 1.69 1.214 2.128l3.04 1.746c1.476.728 1.997.726 2.662.726c2.17 0 3.415-1.339 3.415-3.64V81.935a.356.356 0 0 0-.348-.351h-1.474a.356.356 0 0 0-.35.351v13.248c0 1.019-1.069 2.04-2.776 1.167l-3.155-1.835c-.116-.058-.175-.206-.175-.322V80.767c0-.116.059-.26.175-.319l11.545-6.697c.087-.058.233-.058.349 0l11.548 6.697c.115.059.172.174.172.32v13.424c0 .145-.057.264-.172.322l-11.548 6.727c-.087.058-.233.058-.349 0l-2.951-1.779c-.087-.058-.203-.087-.29-.029c-.81.466-.952.527-1.734.789c-.174.058-.463.173.115.493l3.85 2.302c.376.203.78.319 1.214.319c.434 0 .867-.115 1.214-.26l11.549-6.727a2.463 2.463 0 0 0 1.214-2.128V80.797c0-.874-.462-1.687-1.214-2.124l-11.549-6.727a2.488 2.488 0 0 0-1.214-.308m18.03 6.13a2.236 2.236 0 0 0-2.227 2.243a2.236 2.236 0 0 0 2.227 2.242c1.217 0 2.228-1.019 2.228-2.242a2.254 2.254 0 0 0-2.228-2.242zm-.03.379a1.86 1.86 0 0 1 1.883 1.864c0 1.02-.84 1.894-1.882 1.894c-1.012 0-1.852-.846-1.852-1.894s.869-1.864 1.852-1.864zm-.809.611v2.562h.494v-1.016h.434c.174 0 .231.058.26.203c0 .03.086.67.086.786h.52c-.058-.116-.087-.466-.116-.67c-.028-.32-.056-.553-.404-.582c.174-.059.463-.146.463-.612c0-.67-.58-.67-.868-.67zm.435.408h.404c.146 0 .376 0 .376.349c0 .116-.056.351-.376.351h-.405zm-14.47 2.01c-3.3 0-5.268 1.398-5.268 3.757c0 2.534 1.968 3.23 5.123 3.551c3.79.379 4.08.933 4.08 1.69c0 1.31-1.044 1.864-3.475 1.864c-3.068 0-3.733-.758-3.965-2.301c0-.175-.142-.29-.316-.29H61.05a.35.35 0 0 0-.346.349c0 1.98 1.041 4.31 6.107 4.31c3.645 0 5.758-1.458 5.758-4.02c0-2.505-1.68-3.174-5.238-3.64c-3.59-.466-3.965-.728-3.965-1.572c0-.699.318-1.63 2.98-1.63c2.373 0 3.269.525 3.617 2.126a.34.34 0 0 0 .319.26h1.533c.088 0 .175-.057.234-.115a.476.476 0 0 0 .085-.263c-.231-2.795-2.053-4.077-5.758-4.077z\\\"/><path fill=\\\"#333\\\" d=\\\"M86.072 24.664a.71.71 0 0 0-.352.089a.755.755 0 0 0-.375.638V44.32c0 .174-.09.35-.263.466a.549.549 0 0 1-.52 0l-3.066-1.775a1.486 1.486 0 0 0-1.478 0L67.75 50.146a1.48 1.48 0 0 0-.753 1.279v14.24c0 .524.29 1.02.753 1.282l12.27 7.135a1.486 1.486 0 0 0 1.477 0l12.269-7.135c.463-.262.753-.758.753-1.282V30.168c0-.553-.29-1.05-.753-1.311l-7.32-4.104a.836.836 0 0 0-.373-.089zM13.687 42.43c-.231 0-.462.084-.664.2L.753 49.739A1.493 1.493 0 0 0 0 51.047l.03 19.102c0 .263.143.525.375.642a.656.656 0 0 0 .724 0l7.294-4.193c.463-.262.75-.758.75-1.282v-8.94c0-.524.29-1.02.754-1.282l3.096-1.805c.231-.146.493-.204.753-.204s.521.058.724.204l3.096 1.805c.463.262.753.758.753 1.282v8.94c0 .524.288 1.02.75 1.282l7.236 4.193a.704.704 0 0 0 .753 0a.724.724 0 0 0 .376-.642V51.047c0-.524-.29-1.02-.754-1.283L14.47 42.63a1.763 1.763 0 0 0-.664-.201Zm100.667.21c-.253 0-.504.066-.736.198l-12.272 7.131c-.463.262-.75.758-.75 1.283v14.24c0 .524.287 1.02.75 1.282l12.184 6.987a1.43 1.43 0 0 0 1.447 0l7.38-4.133a.724.724 0 0 0 .375-.642a.724.724 0 0 0-.375-.64L110.03 61.21a.76.76 0 0 1-.375-.641v-4.456a.72.72 0 0 1 .375-.64l3.85-2.214a.705.705 0 0 1 .753 0l3.846 2.213a.762.762 0 0 1 .378.641v3.495c0 .263.144.525.375.641a.704.704 0 0 0 .754 0l7.291-4.28a1.46 1.46 0 0 0 .724-1.283v-3.465c0-.524-.29-1.017-.724-1.28l-12.184-7.104a1.499 1.499 0 0 0-.738-.198zM80.757 53.274c.065 0 .131.015.19.045l4.194 2.446c.116.058.175.202.175.319v4.892c0 .146-.059.264-.175.322l-4.195 2.446a.431.431 0 0 1-.378 0l-4.195-2.446c-.116-.058-.175-.205-.175-.322v-4.892c0-.146.06-.261.175-.32l4.195-2.445a.425.425 0 0 1 .19-.045z\\\"/><path fill=\\\"url(#deviconNodejsWordmark0)\\\" d=\\\"M47.982 42.893a1.484 1.484 0 0 0-1.476 0L34.322 49.97a1.456 1.456 0 0 0-.724 1.281v14.181c0 .525.29 1.02.724 1.282l12.184 7.076a1.484 1.484 0 0 0 1.476 0l12.183-7.076c.463-.262.724-.757.724-1.282V51.251c0-.524-.29-1.02-.724-1.281z\\\"/><path fill=\\\"url(#deviconNodejsWordmark1)\\\" d=\\\"m60.194 49.97l-12.241-7.077a1.996 1.996 0 0 0-.376-.145L33.859 66.364c.116.146.26.262.405.35l12.242 7.076c.347.204.752.262 1.128.145l12.879-23.703a.905.905 0 0 0-.319-.262\\\"/><path fill=\\\"url(#deviconNodejsWordmark2)\\\" d=\\\"M60.194 66.713c.348-.204.608-.553.724-.932l-13.4-23.063c-.346-.058-.723-.029-1.041.175L34.322 49.94l13.11 24.053c.173-.029.376-.087.55-.175z\\\"/><defs><linearGradient id=\\\"deviconNodejsWordmark0\\\" x1=\\\"34.513\\\" x2=\\\"27.157\\\" y1=\\\"15.535\\\" y2=\\\"30.448\\\" gradientTransform=\\\"translate(0 24.664)scale(1.51263)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#3F873F\\\"/><stop offset=\\\".33\\\" stop-color=\\\"#3F8B3D\\\"/><stop offset=\\\".637\\\" stop-color=\\\"#3E9638\\\"/><stop offset=\\\".934\\\" stop-color=\\\"#3DA92E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3DAE2B\\\"/></linearGradient><linearGradient id=\\\"deviconNodejsWordmark1\\\" x1=\\\"30.009\\\" x2=\\\"50.533\\\" y1=\\\"23.359\\\" y2=\\\"8.288\\\" gradientTransform=\\\"translate(0 24.664)scale(1.51263)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".138\\\" stop-color=\\\"#3F873F\\\"/><stop offset=\\\".402\\\" stop-color=\\\"#52A044\\\"/><stop offset=\\\".713\\\" stop-color=\\\"#64B749\\\"/><stop offset=\\\".908\\\" stop-color=\\\"#6ABF4B\\\"/></linearGradient><linearGradient id=\\\"deviconNodejsWordmark2\\\" x1=\\\"21.917\\\" x2=\\\"40.555\\\" y1=\\\"22.261\\\" y2=\\\"22.261\\\" gradientTransform=\\\"translate(0 24.664)scale(1.51263)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".092\\\" stop-color=\\\"#6ABF4B\\\"/><stop offset=\\\".287\\\" stop-color=\\\"#64B749\\\"/><stop offset=\\\".598\\\" stop-color=\\\"#52A044\\\"/><stop offset=\\\".862\\\" stop-color=\\\"#3F873F\\\"/></linearGradient></defs>\"\n\t\t},\n\t\t\"nodemon\": {\n\t\t\t\"body\": \"<path fill=\\\"#76d04b\\\" d=\\\"M61.061 125.21a5.863 5.863 0 0 0 5.867 0l48.606-28.048a5.867 5.867 0 0 0 2.936-5.085V35.938a5.876 5.876 0 0 0-2.933-5.084L66.932 2.783a5.876 5.876 0 0 0-5.874 0l-48.593 28.07a5.874 5.874 0 0 0-2.935 5.085V92.08a5.866 5.866 0 0 0 2.936 5.081z\\\"/><path fill=\\\"#4f4d3f\\\" d=\\\"M95.468 50.618L93.3 49.371c3.334-4.917 5.325-12.308 2.828-23.36c0 0-5.625 15.765-16.931 15.243l-13.24-7.62a3.451 3.451 0 0 0-1.624-.471h-.305a3.506 3.506 0 0 0-1.63.472l-13.24 7.619c-11.306.523-16.932-15.242-16.932-15.242c-2.499 11.05-.504 18.442 2.829 23.359l-2.168 1.247a3.572 3.572 0 0 0-1.785 3.098l.065 45.73c0 .639.33 1.23.89 1.54c.548.33 1.225.33 1.77 0l17.54-10.043c1.11-.66 1.785-1.822 1.785-3.093V66.486a3.55 3.55 0 0 1 1.78-3.086l7.467-4.3a3.523 3.523 0 0 1 1.787-.482c.608 0 1.232.157 1.773.48l7.466 4.301a3.55 3.55 0 0 1 1.783 3.086V87.85c0 1.271.683 2.443 1.786 3.093l17.534 10.043c.55.33 1.238.33 1.783 0c.543-.31.885-.902.885-1.54l.057-45.73a3.557 3.557 0 0 0-1.783-3.098z\\\"/>\"\n\t\t},\n\t\t\"nodewebkit\": {\n\t\t\t\"body\": \"<path fill=\\\"#3D3B47\\\" d=\\\"M64 125.8c-1.2 0-2.3-.3-3.1-.7L12.6 97.3c-1.7-1-3.1-3.5-3.1-5.4V36.1c0-1.9 1.5-4.4 3.1-5.4L60.9 2.9c.8-.5 1.9-.7 3.1-.7c1.2 0 2.3.3 3.1.7l48.2 27.9c1.7 1 3.1 3.5 3.1 5.4v55.7c0 1.9-1.5 4.4-3.1 5.4l-48.2 27.9c-.8.4-1.9.6-3.1.6\\\"/><path fill=\\\"#ccc\\\" d=\\\"M64 3.7c.9 0 1.8.2 2.4.5L114.6 32c1.2.7 2.4 2.7 2.4 4.1v55.7c0 1.4-1.2 3.4-2.4 4.1l-48.2 27.9c-.6.3-1.5.5-2.4.5c-.9 0-1.8-.2-2.4-.5L13.4 96c-1.2-.7-2.4-2.7-2.4-4.1V36.1c0-1.4 1.2-3.4 2.4-4.1L61.6 4.2c.6-.3 1.5-.5 2.4-.5m0-3c-1.4 0-2.8.3-3.9.9L11.9 29.4C9.8 30.7 8 33.7 8 36.1v55.7c0 2.5 1.7 5.5 3.9 6.7l48.2 27.9c1.1.6 2.5.9 3.9.9s2.8-.3 3.9-.9l48.2-27.9c2.1-1.2 3.9-4.2 3.9-6.7V36.1c0-2.5-1.7-5.5-3.9-6.7L67.9 1.6C66.8 1 65.4.7 64 .7\\\"/><path fill=\\\"#EFF3F3\\\" d=\\\"M64 59.7h.3c1.4.1 2.7.9 3.5 2.1c.4.7.6 1.6.6 2.5c-.2 2.3-2 4-4.3 4h-.3c-1.4-.1-2.7-.9-3.5-2.1c-.4-.7-.6-1.6-.6-2.5c.1-2.2 2-4 4.3-4m0-.3c-2.4 0-4.4 1.9-4.6 4.3c-.1.9.1 1.8.6 2.6c.8 1.3 2.1 2.2 3.7 2.3h.3c2.4 0 4.4-1.9 4.6-4.3c.1-.9-.2-1.8-.6-2.6c-.8-1.3-2.1-2.2-3.7-2.3z\\\"/><path fill=\\\"#EFF3F3\\\" d=\\\"M64.1 62.5c.8.1 1.5.8 1.4 1.6c-.1.8-.8 1.5-1.6 1.4c-.8-.1-1.5-.8-1.4-1.6c0-.8.8-1.5 1.6-1.4m-.1 7.6h-.4c-2-.1-3.9-1.3-4.9-3c-.6-1.1-.9-2.3-.8-3.5c.1-1.4.7-2.7 1.6-3.7v-.1L20 89.9l45.4-20c-.5.1-.9.2-1.4.2\\\"/><path fill=\\\"#0977F7\\\" d=\\\"M62.5 58.1c.6-.1 1.2-.2 1.9-.2c2 .1 3.9 1.3 4.9 3c.6 1.1.9 2.3.8 3.5c-.1 1.5-.7 2.8-1.7 3.8l39.9-29.4z\\\"/>\"\n\t\t},\n\t\t\"nodewebkit-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#3D3B47\\\" d=\\\"M64 99.6c-.9 0-1.7-.2-2.3-.5L24.3 77.4c-1.2-.7-2.3-2.5-2.3-3.9V30.2c0-1.4 1.1-3.2 2.3-3.9L61.7 4.7c.6-.3 1.4-.5 2.3-.5s1.7.2 2.3.5l37.5 21.6c1.2.7 2.3 2.5 2.3 3.9v43.3c0 1.4-1.1 3.2-2.3 3.9L66.3 99.1c-.6.3-1.4.5-2.3.5\\\"/><path fill=\\\"#ccc\\\" d=\\\"M64 5.7c.7 0 1.2.2 1.5.3L103 27.6c.7.4 1.5 1.8 1.5 2.6v43.3c0 .8-.8 2.2-1.5 2.6L65.5 97.8c-.3.2-.8.3-1.5.3s-1.2-.2-1.5-.3L25 76.1c-.7-.4-1.5-1.8-1.5-2.6V30.2c0-.8.8-2.2 1.5-2.6L62.5 6c.3-.2.8-.3 1.5-.3m0-3c-1.1 0-2.2.2-3 .7L23.5 25c-1.7 1-3 3.3-3 5.2v43.3c0 1.9 1.4 4.3 3 5.2L61 100.4c.8.5 1.9.7 3 .7s2.2-.2 3-.7l37.5-21.6c1.7-1 3-3.3 3-5.2V30.2c0-1.9-1.4-4.3-3-5.2L67 3.4c-.8-.5-1.9-.7-3-.7\\\"/><path fill=\\\"#EFF3F3\\\" d=\\\"M64 48.5h.2c1.1.1 2.1.7 2.7 1.7c.3.6.5 1.2.4 1.9c-.1 1.8-1.6 3.1-3.4 3.1h-.2c-1.1-.1-2.1-.7-2.7-1.7c-.3-.6-.5-1.2-.4-1.9c.2-1.7 1.6-3.1 3.4-3.1m0-.2c-1.9 0-3.4 1.5-3.6 3.3c0 .7.1 1.4.5 2c.6 1 1.7 1.7 2.8 1.8h.2c1.9 0 3.4-1.5 3.6-3.3c0-.7-.1-1.4-.5-2c-.6-1-1.7-1.7-2.8-1.8z\\\"/><path fill=\\\"#A1A1A4\\\" d=\\\"M64.8 56.2h.1z\\\"/><path fill=\\\"#EFF3F3\\\" d=\\\"M64.1 50.7c.6 0 1.1.6 1.1 1.3c0 .6-.6 1.1-1.3 1.1c-.6 0-1.1-.6-1.1-1.3c.1-.7.6-1.1 1.3-1.1m-.1 5.9h-.3c-1.6-.1-3-1-3.8-2.4c-.5-.8-.7-1.7-.6-2.7c.1-1.1.5-2.1 1.2-2.9L29.8 72l35.3-15.5c-.4.1-.7.1-1.1.1\\\"/><path fill=\\\"#0977F7\\\" d=\\\"M62.9 47.3c.5-.1 1-.2 1.5-.1c1.6.1 3 1 3.8 2.4c.5.8.7 1.8.6 2.7c-.1 1.1-.6 2.2-1.3 3l31-22.9z\\\"/><path fill=\\\"#3D3B47\\\" d=\\\"M12.3 109.8c.8.7 1.3 1.8 1.3 3.5v8.6h-3.4v-7.8c0-.7-.1-1.2-.3-1.6c-.3-.7-1-1-1.9-1c-1.1 0-1.9.5-2.3 1.4c-.2.5-.3 1.2-.3 2v6.9H2V109h3.2v1.9c.4-.7.8-1.1 1.2-1.4c.7-.5 1.6-.8 2.6-.8c1.4 0 2.4.4 3.3 1.1m15.1 10.5c-1.1 1.3-2.7 2-4.9 2s-3.9-.7-4.9-2c-1.1-1.3-1.6-2.9-1.6-4.8s.5-3.5 1.6-4.8c1.1-1.4 2.7-2 4.9-2s3.9.7 4.9 2c1.1 1.4 1.6 3 1.6 4.8c0 1.9-.6 3.5-1.6 4.8m-2.7-1.9c.5-.7.8-1.7.8-3s-.3-2.3-.8-3c-.5-.7-1.3-1-2.3-1s-1.7.3-2.3 1c-.5.7-.8 1.7-.8 3s.3 2.3.8 3s1.3 1 2.3 1s1.8-.3 2.3-1m13.5-9.2c.6.3 1.1.8 1.5 1.4v-6.1h3.4v17.3h-3.3V120c-.5.8-1 1.3-1.6 1.7s-1.4.5-2.3.5c-1.5 0-2.8-.6-3.8-1.8c-1-1.2-1.5-2.8-1.5-4.7c0-2.2.5-3.9 1.5-5.2c1-1.3 2.4-1.9 4-1.9c.8.1 1.5.3 2.1.6m.8 9.2c.5-.7.7-1.6.7-2.7c0-1.6-.4-2.7-1.2-3.4c-.5-.4-1.1-.6-1.7-.6c-1 0-1.7.4-2.2 1.1c-.5.7-.7 1.7-.7 2.8c0 1.2.2 2.1.7 2.8c.5.7 1.2 1.1 2.1 1.1s1.8-.4 2.3-1.1m15.5-9.1c.9.4 1.6 1 2.2 1.9c.5.8.9 1.6 1 2.7c.1.6.1 1.4.1 2.5h-9.3c.1 1.3.5 2.2 1.3 2.7c.5.3 1.1.5 1.9.5c.8 0 1.4-.2 1.9-.6c.3-.2.5-.5.7-.9h3.4c-.1.8-.5 1.5-1.2 2.3c-1.1 1.2-2.8 1.9-4.8 1.9c-1.7 0-3.2-.5-4.5-1.6c-1.3-1.1-2-2.8-2-5.1c0-2.2.6-3.9 1.8-5.1c1.2-1.2 2.7-1.8 4.6-1.8c1 0 2 .2 2.9.6m-5 2.9c-.5.5-.8 1.2-.9 2h5.8c-.1-.9-.4-1.6-.9-2c-.5-.5-1.2-.7-2-.7c-.9 0-1.6.2-2 .7m20.8 7.7l3.3-10.6H75l-4 12.6h-1.5l-2.7-10.5l-2.8 10.5h-1.7l-3.8-12.5h1.4L63 120l2.9-10.7h1.6zM78 116c0 .7.1 1.3.3 1.9c.2.6.4 1.1.8 1.6c.3.4.8.8 1.3 1.1c.5.3 1.1.4 1.8.4c.9 0 1.8-.2 2.4-.7c.7-.5 1.1-1.2 1.4-2.1h1.6c-.2.6-.4 1.1-.7 1.7s-.7.9-1.1 1.3s-.9.7-1.5.9c-.6.2-1.3.3-2.1.3c-1 0-1.9-.2-2.6-.5c-.7-.3-1.3-.8-1.8-1.4c-.5-.6-.8-1.3-1-2.1c-.2-.8-.3-1.7-.3-2.6s.1-1.8.4-2.6c.3-.8.6-1.5 1.1-2.1c.5-.6 1.1-1.1 1.8-1.4s1.5-.5 2.4-.5c1.7 0 3.1.6 4.1 1.8c1 1.2 1.5 2.9 1.4 5.1H78zm8.2-1.2c0-.6-.1-1.2-.3-1.7c-.2-.5-.4-1-.7-1.4c-.3-.4-.7-.7-1.2-.9c-.5-.2-1.1-.3-1.7-.3s-1.2.1-1.7.4c-.5.2-.9.6-1.3 1c-.3.4-.6.9-.8 1.4c-.2.5-.3 1.1-.4 1.7h8.1zm5.9 7.1h-1.4v-17.4h1.4v6.9c.5-.8 1.1-1.4 1.9-1.7c.8-.4 1.7-.6 2.5-.6c.9 0 1.8.2 2.5.5c.7.4 1.3.8 1.7 1.4c.5.6.8 1.3 1 2.1c.2.8.3 1.6.3 2.5c0 .9-.1 1.8-.3 2.6c-.2.8-.5 1.5-1 2.1c-.5.6-1 1-1.7 1.4c-.7.3-1.6.5-2.6.5c-.4 0-.8-.1-1.2-.2c-.4-.1-.8-.3-1.2-.5c-.4-.2-.8-.5-1.1-.8s-.6-.7-.8-1.1zm0-6.3c0 .8.1 1.5.3 2.1c.2.7.5 1.2.8 1.7c.4.5.8.8 1.3 1.1c.5.3 1.1.4 1.8.4c.6 0 1.2-.1 1.7-.3c.5-.2 1-.5 1.4-1c.4-.4.7-.9.9-1.5c.2-.6.3-1.3.3-2.1s0-1.5-.2-2.2c-.2-.7-.4-1.3-.8-1.8s-.8-.9-1.4-1.2s-1.2-.4-1.9-.4s-1.2.1-1.8.4c-.5.3-1 .7-1.3 1.1c-.4.5-.6 1-.8 1.7c-.2.6-.3 1.3-.3 2m13.1 6.3v-17.4h1.4v10.8l6.1-5.9h2l-4.7 4.5l5.2 8h-1.6l-4.7-7l-2.4 2.2v4.7h-1.3zm12.3-15.2v-2.1h1.6v2.1zm0 15.2v-12.5h1.4v12.5zm9.6 0c-.2 0-.4.1-.7.2c-.3.1-.6.1-1 .1c-.7 0-1.3-.2-1.7-.5c-.4-.4-.6-1-.6-1.9v-9.1h-1.8v-1.2h1.8V106h1.4v3.5h2.3v1.2h-2.3v9.4l.1.6c.1.1.2.2.4.3c.2.1.4.1.7.1h.6l.6-.1v.9z\\\"/>\"\n\t\t},\n\t\t\"nomad\": {\n\t\t\t\"body\": \"<path fill=\\\"#00ca8e\\\" d=\\\"M64 0L8.569 31.984v64.013L64 128l55.431-32.003V31.984Zm24.697 70.393L73.924 78.9L56.08 69.212v20.424l-16.776 10.615V57.605l13.308-8.146l18.467 9.734V38.4l17.628-10.584Z\\\"/>\"\n\t\t},\n\t\t\"nomad-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M24.821 101.959v-2.891h-2.65v2.903h-1.358v-6.972h1.358v2.921h2.65V95h1.358v6.97zm6.323 0h-1.076l-.096-.343a2.915 2.915 0 0 1-1.557.445c-.955 0-1.364-.601-1.364-1.497c0-1.021.463-1.412 1.526-1.412h1.256v-.529c0-.559-.162-.751-.997-.751a7.855 7.855 0 0 0-1.455.15l-.162-.955a7.134 7.134 0 0 1 1.803-.24c1.647 0 2.128.558 2.128 1.802zm-1.31-1.9h-.968c-.433 0-.547.115-.547.493c0 .38.114.505.523.505a2.08 2.08 0 0 0 .991-.258zm4.056 2.014a6.467 6.467 0 0 1-1.803-.289l.18-.961a6.01 6.01 0 0 0 1.563.216c.601 0 .667-.12.667-.505c0-.384-.066-.462-.913-.66c-1.28-.301-1.43-.602-1.43-1.581c0-.98.462-1.455 1.953-1.455a7.092 7.092 0 0 1 1.568.175l-.126 1.003a9.616 9.616 0 0 0-1.442-.144c-.571 0-.668.12-.668.433c0 .312.036.432.746.6c1.46.373 1.598.56 1.598 1.593c0 1.034-.312 1.575-1.893 1.575m6.01-.102v-3.504c0-.27-.114-.403-.415-.403a3.732 3.732 0 0 0-1.364.421v3.492H36.8V94.89l1.316.192v2.23a4.76 4.76 0 0 1 1.911-.487c.872 0 1.202.601 1.202 1.485v3.648zm2.404-5.74V95.03h1.31v1.202zm0 5.74v-5.03h1.31v5.03zm2.362-4.988c0-1.257.763-1.99 2.548-1.99a8.414 8.414 0 0 1 1.941.223l-.15 1.13a10.41 10.41 0 0 0-1.749-.18c-.937 0-1.238.312-1.238 1.045v2.644c0 .734.3 1.04 1.238 1.04a11.034 11.034 0 0 0 1.75-.174l.15 1.124a8.414 8.414 0 0 1-1.942.228c-1.803 0-2.548-.733-2.548-1.995zm7.398 5.09c-1.803 0-2.284-.95-2.284-1.983v-1.268c0-1.034.487-1.984 2.284-1.984c1.797 0 2.278.95 2.278 1.984v1.268c0 1.021-.487 1.983-2.278 1.983m0-4.159c-.703 0-.967.3-.967.866v1.352c0 .565.264.865.967.865s.968-.3.968-.865v-1.365c0-.564-.27-.865-.968-.865zm5.968.078a10.854 10.854 0 0 0-1.382.733v3.246h-1.316v-5.03h1.111l.085.558a6.01 6.01 0 0 1 1.376-.66zm5.247 2.278c0 1.118-.517 1.803-1.731 1.803a7.416 7.416 0 0 1-1.4-.144v2.055l-1.31.192v-7.212h1.04l.131.427a2.795 2.795 0 0 1 1.653-.529c1.058 0 1.617.601 1.617 1.743zm-3.131.57a6.064 6.064 0 0 0 1.16.133c.474 0 .655-.216.655-.667v-1.803c0-.409-.157-.637-.643-.637a1.917 1.917 0 0 0-1.202.45zm34.262 16.763c0-3.348 1.49-5.337 4.995-5.337a20.632 20.632 0 0 1 4.038.439V106.4l3.78-.523v21.816h-3.004l-.373-1.274a7.97 7.97 0 0 1-4.808 1.58c-3.041 0-4.652-1.802-4.652-5.24zm9.015-1.707a16.9 16.9 0 0 0-3.353-.403c-1.365 0-1.893.655-1.893 2.02v5.336c0 1.244.462 1.924 1.863 1.924a5.373 5.373 0 0 0 3.383-1.365zm-11.34 11.797h-3.108l-.276-1.027A8.252 8.252 0 0 1 84.199 128c-2.758 0-3.942-1.893-3.942-4.496c0-3.077 1.34-4.255 4.411-4.255h3.606v-1.55c0-1.677-.469-2.266-2.885-2.266a21.293 21.293 0 0 0-4.207.463l-.468-2.885a19.833 19.833 0 0 1 5.222-.721c4.748 0 6.148 1.677 6.148 5.463zm-3.787-5.71h-2.794c-1.238 0-1.581.337-1.581 1.485c0 1.148.343 1.52 1.52 1.52a5.968 5.968 0 0 0 2.855-.774zm-23.24 5.71V117.14c0-.805-.343-1.202-1.202-1.202a10.535 10.535 0 0 0-3.943 1.268v10.493h-3.786v-15.12h2.89l.373 1.273a15.127 15.127 0 0 1 6.04-1.562a2.873 2.873 0 0 1 2.855 1.617a14.796 14.796 0 0 1 6.082-1.617c2.512 0 3.414 1.773 3.414 4.471v10.956h-3.786V117.14c0-.805-.343-1.202-1.202-1.202a10.03 10.03 0 0 0-3.937 1.268v10.493zM46.962 128c-5.18 0-6.575-2.855-6.575-5.956v-3.816c0-3.107 1.394-5.962 6.575-5.962c5.18 0 6.58 2.855 6.58 5.962v3.816c0 3.101-1.394 5.956-6.58 5.956m0-12.507c-2.014 0-2.789.902-2.789 2.608v4.063c0 1.713.775 2.609 2.789 2.609c2.013 0 2.794-.896 2.794-2.609v-4.063c0-1.706-.78-2.608-2.794-2.608m-22.37-3.474v15.674h-3.816v-20.668h5.211l7.85 15.698v-15.698h3.821v20.668h-5.216z\\\"/><path fill=\\\"#00ca8e\\\" d=\\\"M63.706 0L28.457 20.338v40.705l35.249 20.35l35.248-20.35V20.338ZM79.41 44.762l-9.394 5.409l-11.347-6.16v12.987l-10.667 6.75V36.63l8.462-5.18l11.743 6.19V24.417l11.209-6.73z\\\"/>\"\n\t\t},\n\t\t\"norg\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconNorg0\\\" x1=\\\"205.272\\\" x2=\\\"800.726\\\" y1=\\\"136.063\\\" y2=\\\"855.023\\\" gradientTransform=\\\"matrix(.125 0 0 -.125 0 128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#33aae6\\\"/><stop offset=\\\".992\\\" stop-color=\\\"#4b3892\\\"/></linearGradient><linearGradient id=\\\"deviconNorg1\\\" x1=\\\"531.93\\\" x2=\\\"693.4\\\" y1=\\\"357.426\\\" y2=\\\"357.426\\\" gradientTransform=\\\"matrix(.125 0 0 -.125 0 128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3d85c9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4a4198\\\"/></linearGradient><linearGradient id=\\\"deviconNorg2\\\" x1=\\\"531.92\\\" x2=\\\"944.488\\\" y1=\\\"288.905\\\" y2=\\\"288.905\\\" gradientTransform=\\\"matrix(.125 0 0 -.125 0 128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#61c67c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#366794\\\"/></linearGradient><linearGradient id=\\\"deviconNorg3\\\" x1=\\\"843.48\\\" x2=\\\"969.756\\\" y1=\\\"404.53\\\" y2=\\\"404.53\\\" gradientTransform=\\\"matrix(.125 0 0 -.125 0 128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#2f6b7f\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#325d87\\\"/></linearGradient><linearGradient id=\\\"deviconNorg4\\\" x1=\\\"513.323\\\" x2=\\\"900.784\\\" y1=\\\"718.004\\\" y2=\\\"143.708\\\" gradientTransform=\\\"matrix(.125 0 0 -.125 0 128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3b7fc4\\\"/><stop offset=\\\".467\\\" stop-color=\\\"#90b1df\\\"/><stop offset=\\\".764\\\" stop-color=\\\"#7381c0\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5f5fab\\\"/></linearGradient></defs><path fill=\\\"url(#deviconNorg0)\\\" d=\\\"M111.113 107.7c46.95-64.388-36.812-96.177-72.226-40.263c-4.473-7.449-6.375-17.101-2.438-31.8C20.074 54.687 18 74.488 35.863 95.336c14.25-26.688 32.188-31.125 50.825-31.211l-.012 13.625c-8.438-.852-14.227 5.477-20.188 11.227c-9.875 7.347-18.375 18.023-23.937 35.261C-26.961 98.113-4.414-4.176 69.3.512c-7.602 8.113-14.114 16.625-13.727 27.687c56.664-40.097 96.301 37.574 55.95 79.102\\\"/><path fill=\\\"url(#deviconNorg1)\\\" d=\\\"M86.648 88.96c-1.375-11.147-12.312-8.136-20.16.017c5.961-5.75 11.739-12.079 20.188-11.227z\\\"/><path fill=\\\"url(#deviconNorg2)\\\" d=\\\"m86.664 88.977l-.016 14.835c15.403-7.511 22.454-31.789 21.84-47.976c13.114 17.465 11.399 34.578 3.024 51.465h.011c-11.449 12.16-27.734 20-45.023 20.636l-.012-38.96c7.848-8.153 18.785-11.165 20.176 0\\\"/><path fill=\\\"url(#deviconNorg3)\\\" d=\\\"M111.512 107.3c8.375-16.874 10.074-34-3.024-51.464c-.3-3.125-1.152-6.125-3.05-8.273c19.425 13.687 20.273 40.124 6.074 59.738\\\"/><path fill=\\\"url(#deviconNorg4)\\\" d=\\\"M111.523 107.3c14.188-19.612 13.34-46.062-6.085-59.737c-22.075-13.864-52.825-.012-66.551 19.863c35.527-55.989 119.125-24.028 72.226 40.261\\\"/>\"\n\t\t},\n\t\t\"notion\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"m76.25.25l13.059.086c.246.191.445.316.656.41c2.367 1.07 4.933 1.836 7.066 3.258c6.184 4.11 12.223 8.441 18.258 12.77c2.805 2.007 5.57 4.097 8.156 6.37c1.922 1.688 2.785 4.083 2.79 6.637l-.005 80.371c-.003 1.121-.195 2.274-.507 3.352c-1.418 4.914-4.563 8.277-9.512 9.59c-2.61.691-5.367.906-8.074 1.129c-4.223.351-8.461.523-12.692.777l-8.004.5l-12.816.754l-7.879.492l-12.941.75l-6.688.274c-.215.011-.414.312-.617.48c-5.09 0-10.176 0-15.309-.082c-.246-.195-.433-.352-.652-.414c-3.102-.899-5.703-2.613-7.703-5.102c-2.77-3.441-5.402-6.988-8.066-10.511c-3.274-4.329-6.633-8.594-9.727-13.047a15.47 15.47 0 0 1-2.79-8.875a72122.4 72122.4 0 0 1 .009-71.211c0-.684.12-1.375.238-2.055C3.742 9.645 9.152 5.746 15.586 5.023c3.34-.375 6.703-.543 10.059-.765l8.87-.512l3.813-.25l11.5-.992l6.375-.5l10.559-.75l8.87-.524c.216-.015.415-.312.618-.48M25.945 114.184c.532.691 1.125 1.347 1.59 2.082c2.254 3.527 5.485 4.808 9.59 4.535l27.809-1.656l31.296-1.891l15.582-1.004c4.618-.371 6.848-2.867 6.938-7.5v-1l.035-75.863c.004-2.285-.785-3.883-2.613-5.16l-22.024-15.52c-3.543-2.578-7.304-3.781-11.66-3.437L57.824 9.594l-25.789 1.902l-16.187 1.262c-3.27.3-5.297 2.3-5.883 5.508a13.868 13.868 0 0 0-.207 2.48l-.067 66.242c-.023 4.34 1.305 7.95 3.903 11.27zm0 0\\\"/><path d=\\\"m25.887 114.117l-12.293-15.86c-2.598-3.32-3.926-6.929-3.903-11.269l.067-66.242c0-.828.062-1.668.207-2.48c.586-3.207 2.613-5.207 5.883-5.508l16.187-1.262l25.79-1.902L82.488 7.77c4.356-.344 8.117.859 11.66 3.437c7.262 5.285 14.66 10.383 22.024 15.52c1.828 1.277 2.617 2.875 2.613 5.16l-.035 75.867v1c-.09 4.629-2.32 7.125-6.938 7.496c-5.187.418-10.386.688-15.582 1.004l-31.296 1.89l-27.809 1.657c-4.105.273-7.336-1.008-9.59-4.535c-.465-.735-1.058-1.391-1.648-2.149m6.406-45.992v33.488l.008 6.246c.054 2.801 1.426 4.196 4.226 4.356c.703.039 1.414.015 2.121-.028l23.442-1.382l44.765-2.559c2.79-.156 4.079-1.379 4.34-4.144c.051-.497.035-1 .035-1.5l.004-64.477c0-.375.012-.75-.011-1.125c-.168-2.566-1.27-3.613-3.82-3.477l-23.071 1.329a43791.29 43791.29 0 0 0-32.418 1.898l-16.207.973c-2.066.132-3 1.023-3.312 3.043a10.64 10.64 0 0 0-.098 1.617zm57.172-52.727c-1.957-1.062-4.082-1.414-6.27-1.293c-3.363.184-6.726.461-10.09.704l-47.949 3.484c-1.449.105-2.906.21-4.336.469c-.48.086-1.086.57-1.234 1.008c-.11.308.375.93.73 1.27c.657.628 1.414 1.155 2.13 1.722c1.699 1.34 3.507 2.562 5.066 4.043c2.957 2.808 6.398 3.457 10.34 3.172l31.035-1.946l33.41-2.004c.305-.015.61-.109 1.281-.234c-.613-.637-.969-1.125-1.433-1.469a233.798 233.798 0 0 0-4.957-3.562a697.555 697.555 0 0 0-7.723-5.364m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"m32.293 68l.004-25.617c0-.54.016-1.086.098-1.617c.312-2.02 1.246-2.91 3.312-3.043l16.207-.973l32.418-1.898l23.07-1.329c2.551-.136 3.653.914 3.82 3.477c.024.375.012.75.012 1.125l-.004 64.477l-.035 1.5c-.261 2.765-1.55 3.988-4.34 4.144l-44.765 2.559l-23.442 1.382l-2.12.028c-2.801-.16-4.173-1.555-4.227-4.352l-.008-6.25zm45.766.066L65.191 48.461c-.449-.684-.89-.91-1.718-.82l-5.485.37l-10.09.739c-2.48.227-3.98 2.559-3.293 4.977l5.344.457v43.293l-3.64 1.027c-1.614.476-2.305 1.836-1.762 3.574l12.308-.707l4.848-.398c2.09-.344 3.215-1.625 3.496-3.715l-6.73-1.535V63.16l.5.7l15.468 24.152a361.224 361.224 0 0 0 7.004 10.46c1.707 2.45 4.223 3.2 7.051 2.59c1.77-.378 3.469-1.097 5.203-1.656c.903-.293 1.211-.832 1.207-1.844l-.03-44.5c0-2.601 0-2.601 2.573-3.12c2.602-.524 3.254-1.563 2.66-4.344l-15.55.945c-1.692.121-2.973 1.535-3.23 3.18c-.126.793.038 1.23.987 1.285l4.708.52v30.179a7434.52 7434.52 0 0 0-8.961-13.637zM89.55 15.441a1122.8 1122.8 0 0 1 7.636 5.32a233.798 233.798 0 0 1 4.958 3.563c.464.344.82.832 1.433 1.469l-1.281.234l-33.41 2.004l-31.035 1.946c-3.942.285-7.383-.364-10.34-3.172c-1.559-1.48-3.367-2.703-5.067-4.043c-.715-.567-1.472-1.094-2.129-1.723c-.355-.34-.84-.96-.73-1.27c.148-.437.758-.921 1.234-1.007c1.43-.258 2.887-.364 4.336-.469l47.95-3.484l10.09-.704c2.187-.12 4.312.23 6.355 1.336m0 0\\\"/><path d=\\\"m78.113 68.14l8.907 13.567v-30.18l-4.707-.52c-.95-.054-1.114-.491-.989-1.284c.258-1.645 1.54-3.059 3.23-3.18l15.551-.945c.594 2.78-.058 3.82-2.66 4.343c-2.574.516-2.574.516-2.574 3.121l.031 44.5c.004 1.012-.304 1.551-1.207 1.844l-5.203 1.656c-2.828.606-5.344-.14-7.05-2.59a366.671 366.671 0 0 1-7.004-10.46l-15.47-24.153c-.109-.172-.234-.332-.5-.699v32.563l6.731 1.535c-.281 2.09-1.406 3.37-3.496 3.715c-1.594.261-3.23.3-4.848.398l-12.308.707c-.543-1.738.148-3.098 1.762-3.574l3.64-1.027V54.184l-5.344-.457c-.687-2.418.813-4.75 3.293-4.977c3.356-.313 6.727-.504 10.09-.738c1.828-.125 3.664-.172 5.485-.371c.828-.09 1.27.136 1.718.82zm0 0\\\"/>\"\n\t\t},\n\t\t\"npm-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#cb3837\\\" d=\\\"M2 38.5h124v43.71H64v7.29H36.44v-7.29H2zm6.89 36.43h13.78V53.07h6.89v21.86h6.89V45.79H8.89zm34.44-29.14v36.42h13.78v-7.28h13.78V45.79zm13.78 7.29H64v14.56h-6.89zm20.67-7.29v29.14h13.78V53.07h6.89v21.86h6.89V53.07h6.89v21.86h6.89V45.79z\\\"/>\"\n\t\t},\n\t\t\"nuget\": {\n\t\t\t\"body\": \"<path fill=\\\"#004880\\\" d=\\\"M9.313 2.508c-3.356.43-6.32 2.418-7.958 5.344C.457 9.457.043 11.07.04 12.969c0 1.789.297 3.117 1.063 4.687c1.421 2.938 4.117 5.008 7.468 5.73c.86.184 2.95.2 3.848.032c3.844-.723 6.926-3.375 8.168-7.02c.422-1.222.508-1.824.508-3.398c0-1.531-.043-1.883-.418-3.094c-1.063-3.492-3.887-6.21-7.406-7.125c-1.176-.304-2.825-.418-3.957-.273zM56.5 25.531C42.586 26.72 30.95 36.625 27.602 50.125c-.422 1.688-.579 2.617-.864 5.031c-.101.864-.152 38.29-.05 39.969c.148 2.613.523 4.844 1.218 7.25c3.106 10.77 11.625 19.27 22.367 22.313c1.829.511 3.766.882 5.82 1.105c1.009.105 2.071.113 20.72.113c20.835 0 20.07.012 22.25-.289a32.469 32.469 0 0 0 14.96-6.148c1.747-1.305 3.922-3.332 5.239-4.875c1.261-1.489 2.699-3.524 3.644-5.188c1.914-3.355 3.324-7.457 3.867-11.25c.332-2.273.309-.824.332-21.781c.02-13.656.008-19.71-.043-20.438c-.468-7.023-3.007-13.374-7.55-18.874c-.762-.926-3.082-3.243-4.012-4.012c-4.656-3.856-9.867-6.25-15.688-7.2c-2.48-.406-.769-.374-22.562-.39c-15.938-.004-19.969.008-20.75.07m-2.875 14.895c4.8.855 8.73 4.21 10.281 8.773c.977 2.883.95 5.926-.07 8.77c-.68 1.894-2 3.894-3.43 5.187c-2.554 2.332-5.601 3.532-8.968 3.532c-3.633 0-6.833-1.32-9.383-3.868c-2.149-2.152-3.438-4.78-3.805-7.789c-.102-.812-.086-2.5.031-3.343c.824-6.008 5.57-10.633 11.657-11.376c.792-.093 2.867-.03 3.687.114M96.188 73.03c4.695.602 8.8 2.582 12.18 5.875c2.53 2.469 4.257 5.227 5.35 8.563c.708 2.133.97 3.738 1.012 6.125c.043 2.43-.16 4.125-.77 6.27c-1.315 4.679-4.397 8.937-8.46 11.69c-5.25 3.563-11.648 4.571-17.836 2.813c-2.344-.66-5.14-2.097-7.102-3.64c-5.164-4.079-8.132-10.172-8.124-16.715c.007-7.282 3.773-14.051 10-17.942c2.8-1.757 5.968-2.808 9.437-3.132c.855-.083 3.395-.024 4.313.093m0 0\\\"/>\"\n\t\t},\n\t\t\"nuget-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#004880\\\" d=\\\"M.7 45.956c-.664.777-.75 1.125-.637 2.047c.203 1.473.953 2.223 2.422 2.426c.922.113 1.27.027 2.047-.637c.777-.664.922-.953.922-2.047c0-1.789-.922-2.709-2.71-2.709c-1.095-.002-1.384.142-2.044.92m11.961 5.625c-1.817.664-4.352 3.258-4.985 5.105c-.695 2.02-.722 13.56-.03 15.547c.577 1.73 2.421 3.782 4.265 4.762l1.472.777h14.414l1.442-.777c1.73-.894 2.996-2.223 3.922-3.98c.66-1.27.691-1.5.691-8.512v-7.211l-.78-1.441c-.978-1.875-2.306-3.118-4.267-4.012c-1.555-.719-1.7-.75-8.215-.719c-5.277 0-6.89.113-7.93.461zm3.402 4.355c1.644 1.528 1.586 3.75-.113 5.223c-2.598 2.277-6.489-.203-5.567-3.578c.664-2.395 3.864-3.316 5.68-1.645m11.617 8.512c3.922 2.074 3.922 7.844 0 9.922c-3.285 1.73-7.176-.059-8.098-3.691c-1.156-4.618 3.86-8.453 8.098-6.23zm94.907-11.019c-.606.23-.665.43-.665 2.422v2.164h-1.586c-1.5 0-1.586.027-1.586.718c0 .696.086.723 1.586.723h1.586v6.492c0 6.98.172 7.988 1.473 8.91c.777.52 3.168.637 4.035.176c.29-.176.547-.578.547-.894c0-.52-.117-.579-.777-.375c-1.328.375-2.422.23-3.059-.434c-.605-.605-.633-.895-.719-7.242l-.085-6.633h2.305c2.31 0 2.336 0 2.336-.723c0-.718-.027-.718-2.305-.718h-2.277l-.09-2.426c-.086-2.363-.086-2.39-.719-2.16m-69.422 4.817c-.633.288-1.583 1.007-2.102 1.612l-.922 1.07v-1.472c0-1.414-.03-1.441-.867-1.441h-.863v17.02h1.73v-5.712c0-5.02.086-5.828.574-6.84c1.125-2.394 2.54-3.316 4.961-3.316c1.442 0 1.785.117 2.65.894c.577.493 1.155 1.356 1.327 1.934c.144.578.29 3.75.29 7.04v6h1.73v-5.626c0-7.473-.434-9.262-2.684-10.933c-1.125-.836-4.239-.954-5.825-.23zm35.632-.118c-3.543 1.27-5.765 6.086-4.93 10.762c.376 2.164.868 3.316 1.993 4.5c1.21 1.355 2.824 2.02 4.785 2.046c2.277 0 3.72-.52 5.074-1.875l1.121-1.125v2.25c0 4.56-2.363 6.98-6.8 6.98c-1.415 0-4.008-.663-4.586-1.183c-.46-.46-.72-.285-.72.493c0 1.183 2.075 1.96 5.333 1.988c2.97 0 4.351-.403 5.793-1.672c2.367-2.047 2.71-3.922 2.71-14.828v-8.45h-.863c-.835 0-.867.06-.867 1.212v1.21l-.922-.98c-.52-.52-1.355-1.125-1.87-1.328c-1.126-.488-3.923-.488-5.25 0zm4.961 1.355c.922.493 2.22 1.73 2.68 2.625c.29.551.402 1.82.402 4.27c0 2.945-.086 3.664-.574 4.644c-1.586 3.118-6.055 4.098-8.535 1.907c-1.5-1.301-2.192-2.887-2.363-5.282c-.23-3.718.98-6.664 3.316-7.875c1.238-.664 4.063-.808 5.074-.289m13.922-1.324c-1.383.488-3.168 2.192-3.95 3.777c-1.929 4.012-.862 10.098 2.134 12.262c2.191 1.586 5.765 1.7 8.765.23c1.04-.492 1.24-.75 1.24-1.413v-.836l-1.642.863c-3.172 1.617-5.996 1.387-7.93-.633c-1.093-1.156-1.96-3.348-1.96-4.933v-.81h12.742l-.2-1.815c-.55-4.79-2.71-7.153-6.547-7.125c-.835.027-2.015.203-2.652.433m5.883 2.363c1.066 1.125 1.73 2.684 1.73 4.04v.664h-10.956l.176-.81c.547-2.335 1.785-4.093 3.43-4.843c.547-.262 1.555-.375 2.71-.32c1.727.086 1.903.176 2.91 1.27zM66.34 64.416c.086 5.282.203 6.638.637 7.587c1.035 2.426 2.621 3.433 5.36 3.433c2.163 0 3.23-.46 4.585-1.988l.89-1.039v1.324c0 1.243.032 1.301.868 1.301h.863v-17.02h-1.73v5.97c0 5.48-.055 6.058-.602 7.242c-1.472 3.027-5.68 3.863-7.816 1.558c-1.207-1.3-1.383-2.336-1.383-8.742v-6.027h-1.785zm0 0\\\"/>\"\n\t\t},\n\t\t\"numpy\": {\n\t\t\t\"body\": \"<path fill=\\\"#4DABCF\\\" d=\\\"m55.012 26.006l-21.38-10.789L10.154 26.93l21.969 11.027Zm9.808 4.951L87.241 42.28L63.982 53.955l-22-11.043Zm29.948-15.581l23.037 11.552L97.2 37.272L74.735 25.938ZM84.853 10.4L64.113 0L43.598 10.24L64.97 21.014ZM68.64 99.702V128l25.122-12.537l-.023-28.31ZM93.727 77.27l-.028-28.012l-25.06 12.458V89.74Zm30.158-5.246v28.41l-21.43 10.69l-.017-28.279zm0-9.935V34.25l-21.47 10.673l.016 28.068z\\\"/><path fill=\\\"#4c75cf\\\" d=\\\"m59.77 61.716l-16.918-8.512V89.97s-20.7-44.033-22.612-47.99c-.246-.513-1.263-1.07-1.522-1.209c-3.731-1.947-14.603-7.45-14.603-7.45v64.977l15.04 8.063V72.382s20.478 39.346 20.689 39.78c.214.429 2.257 4.57 4.459 6.028c2.92 1.939 15.458 9.477 15.458 9.477z\\\"/>\"\n\t\t},\n\t\t\"numpy-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#003042\\\" d=\\\"M52.186 56.453c.115.013.224.044.327.088c.104.051.2.113.28.191c.107.1.207.209.303.324l8.384 10.599a18.037 18.037 0 0 1-.1-1.888v-9.35h3.61v17.646h-2.134a1.964 1.964 0 0 1-.797-.143a1.702 1.702 0 0 1-.631-.536l-8.32-10.498c.024.303.043.603.06.898c.016.295.023.57.023.83v9.46h-3.606V56.419h2.155c.147 0 .299.012.446.035zm18.092 5.049v7.968c0 .623.14 1.102.423 1.441a1.529 1.529 0 0 0 1.25.51c.398 0 .793-.083 1.157-.254a4.351 4.351 0 0 0 1.045-.715v-8.95h3.755V74.06h-2.323a.887.887 0 0 1-.925-.63l-.228-.726a6.95 6.95 0 0 1-.75.638a4.789 4.789 0 0 1-1.792.802a4.941 4.941 0 0 1-1.11.116a4.384 4.384 0 0 1-1.817-.359a3.702 3.702 0 0 1-1.339-.998a4.307 4.307 0 0 1-.825-1.512a6.36 6.36 0 0 1-.28-1.915v-7.973ZM80.33 74.064V61.502h2.326a1.05 1.05 0 0 1 .588.155a.865.865 0 0 1 .335.475l.199.678a7.072 7.072 0 0 1 .654-.606a3.979 3.979 0 0 1 .735-.47a3.955 3.955 0 0 1 1.847-.431a2.94 2.94 0 0 1 1.884.586c.51.41.902.953 1.129 1.568c.2-.37.46-.71.77-.994a4.277 4.277 0 0 1 .981-.666a4.944 4.944 0 0 1 1.114-.375a5.755 5.755 0 0 1 1.169-.12a5.308 5.308 0 0 1 1.915.32a3.692 3.692 0 0 1 1.397.933c.39.435.683.946.854 1.505a6.424 6.424 0 0 1 .292 2.02v7.98h-3.756v-7.978c0-1.3-.558-1.947-1.672-1.947c-.47-.015-.93.168-1.264.503c-.336.332-.503.814-.503 1.445v7.98h-3.752v-7.98c0-.719-.14-1.225-.423-1.512c-.284-.292-.699-.436-1.25-.436a2.11 2.11 0 0 0-.96.228a3.528 3.528 0 0 0-.855.618v9.087zm24.465-5.899v5.898H100.7V56.418h6.225a10.243 10.243 0 0 1 3.204.439a6.14 6.14 0 0 1 2.203 1.21a4.783 4.783 0 0 1 1.28 1.831c.277.725.411 1.5.403 2.274a6.78 6.78 0 0 1-.423 2.426a4.869 4.869 0 0 1-1.297 1.888a6.02 6.02 0 0 1-2.21 1.229a9.967 9.967 0 0 1-3.16.451zm0-3.088h2.13c1.066 0 1.836-.251 2.303-.762c.467-.51.702-1.213.702-2.13a3.218 3.218 0 0 0-.179-1.102a2.25 2.25 0 0 0-.551-.854a2.527 2.527 0 0 0-.934-.555a4.14 4.14 0 0 0-1.34-.2h-2.131zm16.498 12.246a1.356 1.356 0 0 1-.404.552a1.359 1.359 0 0 1-.777.174h-2.818l2.426-5.084l-5.011-11.464h3.316a1.062 1.062 0 0 1 .678.204a1 1 0 0 1 .34.459l2.059 5.414c.19.487.347.986.47 1.496c.083-.259.171-.514.267-.762a20.7 20.7 0 0 0 .28-.762l1.867-5.39a.894.894 0 0 1 .378-.467c.181-.12.393-.188.608-.188H128Z\\\"/><path fill=\\\"#4DABCF\\\" d=\\\"m17.845 50.676l-7.498-3.783L2.116 51l7.705 3.866zm3.44 1.735l7.86 3.97l-8.156 4.094l-7.712-3.87zm10.503-5.462L39.864 51l-7.222 3.627l-7.881-3.974zm-3.48-1.744l-7.27-3.646l-7.195 3.59l7.493 3.776zm-5.682 31.312v9.925l8.806-4.398l-.008-9.928zm8.794-7.864l-.008-9.824l-8.786 4.369v9.828zM42 66.813v9.964l-7.515 3.747l-.007-9.916zm0-3.484v-9.764l-7.53 3.744l.008 9.843z\\\"/><path fill=\\\"#4c75cf\\\" d=\\\"m19.513 63.198l-5.93-2.985v12.892S6.325 57.663 5.655 56.278c-.088-.18-.443-.38-.535-.427A818.844 818.844 0 0 0 0 53.238v22.788l5.276 2.825V66.935s7.179 13.8 7.25 13.95c.076.153.795 1.604 1.564 2.115c1.026.678 5.42 3.324 5.42 3.324z\\\"/>\"\n\t\t},\n\t\t\"nuxtjs\": {\n\t\t\t\"body\": \"<path fill=\\\"#00c58e\\\" d=\\\"m39.267 108.97l-.284-.567c-.567-1.135-.567-2.27-.283-3.689H8.059L53.454 24.14l19.009 34.33l6.241-4.54L59.695 19.6c-.283-.567-2.553-3.971-6.241-3.971c-1.703 0-4.256.567-6.242 4.255L1.25 101.31c-.284.852-2.27 4.54-.568 7.66c1.135 1.703 2.838 3.405 6.81 3.405h38.585c-3.972 0-5.958-1.702-6.81-3.404z\\\"/><path fill=\\\"#108775\\\" d=\\\"M126.65 101.59L89.767 35.201c-.567-.567-2.553-4.256-6.242-4.256c-1.702 0-4.255.851-6.241 4.256l-4.823 7.944v15.321l11.065-19.009l36.599 65.254h-13.902a6.525 6.525 0 0 1-.568 3.972l-.284.284c-1.702 3.12-5.958 3.404-6.525 3.404h21.562c.851 0 4.823-.283 6.809-3.404c.851-1.419 1.419-3.972-.567-7.377\\\"/><path fill=\\\"#2f495e\\\" d=\\\"M106.51 108.97v-.284l.284-.567c.283-1.135.567-2.27.283-3.405l-1.134-3.404l-28.938-50.501l-4.256-7.66h-.284l-4.256 7.66l-28.938 50.5l-1.134 3.405a6.81 6.81 0 0 0 .567 4.256c1.135 1.702 2.837 3.405 6.809 3.405h53.906c.851 0 5.107-.284 7.093-3.405zM72.464 58.469l26.386 46.245H46.079z\\\"/>\"\n\t\t},\n\t\t\"nuxtjs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#00c58e\\\" d=\\\"m9.836 75.263l-.07-.142c-.143-.284-.143-.568-.072-.924H2.02l11.37-20.182l4.762 8.599l1.563-1.137l-4.76-8.599c-.072-.142-.64-.995-1.564-.995c-.427 0-1.066.142-1.564 1.066L.314 73.345c-.071.213-.569 1.137-.142 1.918c.284.427.71.853 1.705.853h9.665c-.995 0-1.492-.426-1.706-.853\\\"/><path fill=\\\"#108775\\\" d=\\\"m31.724 73.416l-9.238-16.63c-.142-.142-.64-1.065-1.563-1.065c-.427 0-1.066.213-1.564 1.066l-1.208 1.99v3.837l2.772-4.761l9.167 16.344h-3.482a1.634 1.634 0 0 1-.142.995l-.071.071c-.427.782-1.493.853-1.635.853h5.401c.213 0 1.208-.07 1.706-.853c.213-.355.355-.994-.143-1.847\\\"/><path fill=\\\"#2f495e\\\" d=\\\"M26.679 75.263v-.07l.07-.143c.072-.284.143-.568.072-.853l-.284-.852l-7.249-12.65l-1.066-1.919h-.071l-1.066 1.92l-7.249 12.649l-.284.852a1.706 1.706 0 0 0 .142 1.066c.285.427.711.853 1.706.853h13.502c.213 0 1.28-.07 1.777-.853m-8.528-12.65l6.61 11.584h-13.22z\\\"/><g fill-rule=\\\"evenodd\\\"><path fill=\\\"#2e495e\\\" d=\\\"M49.598 60.828a.943.943 0 0 1 .26.684V74.8c0 .277-.097.554-.293.766a1.01 1.01 0 0 1-.75.31c-.163 0-.326-.032-.489-.081a.815.815 0 0 1-.342-.229l-8.608-11.2v10.532a.93.93 0 0 1-.978.962a.887.887 0 0 1-.652-.277a.946.946 0 0 1-.278-.669v-13.32c0-.276.115-.553.326-.749a.978.978 0 0 1 .702-.293c.163 0 .342.032.489.097a.86.86 0 0 1 .39.278l8.56 11.232V61.512a.93.93 0 0 1 .978-.961c.245 0 .49.081.652.277zm17.72.032c.18.212.294.49.278.75v8.412a6.235 6.235 0 0 1-.766 3.098a5.425 5.425 0 0 1-2.12 2.168a5.784 5.784 0 0 1-3.032.8a6.35 6.35 0 0 1-3.065-.783a5.543 5.543 0 0 1-2.12-2.152a6.293 6.293 0 0 1-.765-3.114v-8.412c0-.278.097-.555.326-.75a1.092 1.092 0 0 1 1.516 0c.195.195.31.456.31.75v8.38a3.976 3.976 0 0 0 .521 2.053a3.782 3.782 0 0 0 3.277 1.908a3.913 3.913 0 0 0 3.93-3.962v-8.38c0-.277.08-.554.26-.766a.919.919 0 0 1 .734-.31c.277 0 .538.115.717.31zm16.94 13.336a1.027 1.027 0 0 1 .179.62a.952.952 0 0 1-.31.75a1.043 1.043 0 0 1-.701.277a1.017 1.017 0 0 1-.864-.44l-4.239-5.674l-4.173 5.673a1.01 1.01 0 0 1-.848.457a.923.923 0 0 1-.668-.277a.908.908 0 0 1-.278-.62c0-.26.098-.521.261-.717l4.5-6.114l-4.516-6.064a1.01 1.01 0 0 1 .081-1.37a1.027 1.027 0 0 1 1.207-.195a.978.978 0 0 1 .391.326l4.206 5.64l4.141-5.591c.18-.278.49-.457.832-.49c.26 0 .521.13.7.327c.18.163.294.407.31.652c0 .244-.081.456-.228.652l-4.565 6.064l4.565 6.114zM99.99 60.828a.95.95 0 0 1 .31.733a.93.93 0 0 1-.327.718a1.029 1.029 0 0 1-.75.26h-3.88v12.293a.974.974 0 0 1-.31.733a1.206 1.206 0 0 1-1.597 0a1.01 1.01 0 0 1-.326-.733V62.539h-3.88c-.277 0-.538-.081-.75-.277a.962.962 0 0 1-.31-.733c0-.261.098-.522.294-.701c.212-.196.489-.294.75-.277h10.01c.277 0 .554.081.766.277\\\"/><path fill=\\\"#00c48d\\\" d=\\\"M104.75 75.484a4.573 4.573 0 0 1-1.712-1.68a1.198 1.198 0 0 1-.195-.586a.93.93 0 0 1 .326-.717c.18-.196.424-.294.684-.327c.392.05.75.245.979.555A2.588 2.588 0 0 0 107.13 74a2.804 2.804 0 0 0 2.886-2.804V61.61a.978.978 0 0 1 .326-.75a1.145 1.145 0 0 1 1.549-.016a1.027 1.027 0 0 1 .293.75v9.619a4.728 4.728 0 0 1-2.445 4.238a5.086 5.086 0 0 1-4.973.033zm15.08.065a6.945 6.945 0 0 1-2.347-1.467a1.174 1.174 0 0 1-.457-.88a.978.978 0 0 1 .326-.718a.978.978 0 0 1 .701-.31c.245 0 .457.082.636.245c.522.49 1.141.897 1.793 1.19c.685.26 1.402.391 2.12.391a4.11 4.11 0 0 0 2.331-.652c.57-.326.946-.929.946-1.597a2.053 2.053 0 0 0-.946-1.761a8.477 8.477 0 0 0-2.837-1.027c-1.5-.326-2.657-.815-3.472-1.516s-1.207-1.68-1.207-2.919a3.802 3.802 0 0 1 .685-2.282a4.524 4.524 0 0 1 1.859-1.5a7.418 7.418 0 0 1 5.282-.081a5.38 5.38 0 0 1 1.956 1.157c.294.228.49.57.49.93a.978.978 0 0 1-.294.7a.93.93 0 0 1-.718.326a.786.786 0 0 1-.489-.179a5.233 5.233 0 0 0-3.488-1.337a4.052 4.052 0 0 0-2.332.587a1.94 1.94 0 0 0 0 3.228a8.151 8.151 0 0 0 2.576.978c.962.18 1.891.49 2.788.864c.685.31 1.271.783 1.679 1.402c.424.718.62 1.517.587 2.348a3.688 3.688 0 0 1-.701 2.25a4.53 4.53 0 0 1-1.956 1.532a8.119 8.119 0 0 1-5.527.098z\\\"/></g>\"\n\t\t},\n\t\t\"oauth\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M59.41.188c28.286-1.965 47.043 11.882 57.768 28.748c5.375 8.458 10.655 21.297 10.677 34.497c.027 14.34-4.62 26.753-10.677 35.865c-6.229 9.363-14.281 17.1-24.365 22.176c-16.863 8.489-40.423 8.722-55.856.55c-17.184-9.104-30.401-22.098-35.315-44.63c-1.97-9.015-2.195-20.668.545-30.664c.646-2.343 1.815-4.814 2.738-7.117C9.374 28.532 16.943 18.896 26.28 12.232c3.754-2.676 8.308-5.34 12.32-7.116C43.599 2.904 52.013.698 59.41.188m0 0\\\"/><path d=\\\"M64.6 0a77.632 77.632 0 0 0-5.19.188C52.012.698 43.6 2.904 38.6 5.117c-4.012 1.774-8.566 4.44-12.321 7.115c-9.336 6.664-16.905 16.3-21.354 27.38c-.923 2.304-2.093 4.775-2.738 7.118c-2.743 9.996-2.515 21.649-.545 30.664c4.914 22.532 18.131 35.526 35.32 44.63c15.427 8.172 38.988 7.939 55.851-.55c10.083-5.077 18.136-12.813 24.365-22.176c6.057-9.112 10.704-21.527 10.677-35.865c-.023-13.2-5.3-26.044-10.677-34.497C107.124 13.12 90.013-.031 64.6 0m.31 3.072c18.993-.022 33.828 8.963 43.235 19.292c2.656 2.92 5.31 5.816 7.116 8.762c3.346 5.45 5.486 11.89 7.121 18.07c6.115 23.117-3.076 45.042-14.514 56.946c-8.545 8.897-19.037 14.915-32.854 17.521c-15.547 2.937-30.462-.889-41.069-6.844C23.05 110.7 15.331 102.006 9.581 90.81C4.037 80.014 1.457 62.84 5.474 48.645c3.61-12.755 9.772-23.344 19.439-30.935c6.703-5.262 14.41-10.146 24.914-12.867c3.772-.98 7.258-1.388 11.227-1.643a59.322 59.322 0 0 1 3.855-.128zm-1.465 2.686a50.183 50.183 0 0 0-3.763.18C43.397 7.327 31.96 14.632 23.268 23.187C17.18 29.177 12.604 36.515 9.58 45.09c-4.44 12.584-4.167 27.438.821 40.246c4.256 10.919 11.223 19.732 21.082 26.554c9.266 6.418 22.567 11.394 37.509 10.133c18.194-1.539 31.508-10.875 40.246-21.632c2.234-2.751 4.457-5.86 5.75-9.582c1.266-2.678 1.885-4.501 2.461-5.473c2.426-5.438 3.715-11.178 4.11-17.526c1.214-19.521-6.299-34.769-16.703-45.173c-5.033-5.034-11.223-9.57-18.616-12.322c-6.708-2.493-14.18-4.642-22.796-4.558zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"m64.298 4.9l-.304.305l.585.584c.21 0 .414.009.62.013zm-4.427 4.783l-.022 5.165c-.007 2.874 1.627 4.211 4.242 4.22c2.615.011 4.317-1.283 4.33-4.256l.018-5.097l-2.59-.01l-.017 5.178c-.01 1.288-.675 1.89-1.706 1.886c-1.024-.004-1.69-.638-1.688-1.965l.022-5.112zm15.93 1.32l-.65 2.135l2.637.804l-2.031 6.664l2.44.743l2.03-6.66l2.643.805l.65-2.137l-7.72-2.355zM49.08 11.8l-2.343.753l-.897 10.017l2.554-.818l.124-1.767l3.376-1.085l1.142 1.362l2.603-.835zm-.268 3.258l1.775 2.18l-1.964.628zm41.6 1.28l-5.093 7.657l2.117 1.414l1.94-2.914l2.725 1.816l-1.94 2.91l2.124 1.411l5.094-7.657l-2.118-1.412l-1.908 2.867l-2.725-1.816l1.908-2.866zm-54.76 2.381c-.937.049-1.887.38-2.749 1.002c-2.29 1.677-2.746 4.659-1.19 6.792l.017.023c1.556 2.134 4.5 2.601 6.792.932c2.294-1.677 2.751-4.66 1.195-6.793l-.018-.022a4.659 4.659 0 0 0-4.048-1.934zm-.053 2.422c.773 0 1.524.396 2.017 1.07l.014.016c.782 1.072.694 2.536-.44 3.367c-1.126.821-2.585.453-3.367-.619l-.014-.023c-.782-1.072-.694-2.536.431-3.357a2.31 2.31 0 0 1 1.359-.454m28.013 2.317l.387.387l-4.355 4.36l-3.615-3.613l-.47.132l3.781 3.784l-4.356 4.356l-4.362-4.354l3.293-3.293l-.897.29l-2.694 2.699l-1.31-1.31c-.146.056-.281.118-.427.18l1.433 1.432l-4.355 4.356l-2.862-2.857c-.124.076-.25.15-.374.229l2.933 2.932l-4.356 4.356l-3.491-3.486c-.106.092-.203.198-.307.295l3.494 3.495l-4.36 4.355l-3.346-3.344c-.088.11-.185.219-.273.33l3.32 3.319l-4.362 4.355l-2.435-2.435c-.07.131-.135.264-.206.396l2.343 2.343l-4.36 4.36l-.7-.703c-.057.15-.11.295-.162.439l.558.562l-1.094 1.1c-.075.263-.14.537-.207.809l1.605-1.605l4.36 4.356l-4.36 4.36l-2.419-2.416c-.022.18-.03.369-.048.553l2.163 2.163l-2.422 2.426c0 .207-.013.409-.013.616l2.739-2.74l4.36 4.361l-4.36 4.356l-2.638-2.636c.013.206.009.416.027.628l2.307 2.312l-1.846 1.846c.026.176.061.338.093.514l2.057-2.062l4.36 4.36l-4.36 4.358l-.475-.47c.154.373.225.567.452 1.098l.023-.023l4.36 4.358l-1.38 1.38c.078.123.154.246.237.365l1.441-1.443l4.36 4.356l-1.95 1.953c.096.104.198.206.294.307l1.956-1.956l4.36 4.36l-1.743 1.741c.112.088.236.167.35.255l1.693-1.696l4.36 4.36l-.747.748c.132.07.264.135.395.206l.65-.655l1.887 1.886c.352.154.703.311 1.063.461l-2.645-2.647l4.36-4.36l4.356 4.36l-3.57 3.57c.15.048.3.106.45.154l3.423-3.424l4.357 4.36l-.686.687c.175.024.343.06.518.083l.47-.47l.59.593c.22.022.443.04.664.056l-.954-.949l4.36-4.36l4.355 4.36l-.877.884c.228-.023.452-.053.676-.08l.506-.5l.404.4c.176-.023.351-.049.528-.075l-.63-.629l4.357-4.36l3.288 3.288c.15-.053.3-.102.448-.154l-3.432-3.433l4.355-4.361l4.361 4.361l-2.198 2.194c.387-.177.77-.357 1.147-.546l1.35-1.35l.422.423c.128-.075.264-.141.391-.21l-.51-.512l4.361-4.36l1.328 1.332c.112-.092.22-.184.328-.272l-1.358-1.358l4.36-4.36l1.46 1.459c.097-.106.19-.212.282-.317l-1.442-1.447l4.36-4.355l.884.883c.075-.128.14-.26.216-.386l-.796-.8l2.237-2.239l.03-.07c.212-.373.388-.765.582-1.147l-3.152 3.156l-4.36-4.36l4.36-4.356l3.964 3.96c.062-.137.12-.28.18-.421l-3.84-3.843l4.354-4.355l1.68 1.679c.04-.169.071-.33.11-.497l-1.486-1.486l2.12-2.123c.03-.229.065-.462.091-.695l-2.514 2.514l-4.356-4.355l4.355-4.361l2.74 2.743c.003-.198.026-.387.026-.58l-2.462-2.461l2.185-2.19l-.07-.531l-2.418 2.417l-4.356-4.356l4.355-4.36l1.491 1.49a30.766 30.766 0 0 0-.25-.858l-.937-.937l.475-.47c-.053-.149-.11-.294-.167-.443l-.61.615l-4.357-4.36l2.22-2.22l-.21-.396l-2.313 2.316l-4.356-4.36l3.235-3.235l-.304-.304l-3.235 3.236l-4.36-4.356l3.248-3.249l-.3-.303l-3.247 3.248l-4.36-4.356l3.046-3.046c-.124-.079-.238-.157-.365-.237l-2.98 2.98l-4.361-4.355l1.564-1.566l-.421-.184l-1.446 1.446l-3.05-3.051c-.278-.083-.559-.158-.837-.233l3.588 3.586l-4.36 4.356l-4.357-4.354l3.908-3.909c-.163-.039-.33-.075-.493-.114l-3.719 3.719l-4.355-4.36l.383-.383c-.2-.005-.4 0-.603 0l-.083.083l-.084-.083c-.202-.005-.405-.005-.607-.005m.69.69l4.361 4.36l-4.36 4.356l-4.356-4.354zm-13.978 4.659l4.356 4.361l-4.356 4.356l-4.36-4.356zm9.319 0l4.356 4.361l-4.355 4.356l-4.357-4.356zm9.318 0l4.36 4.361l-4.36 4.356l-4.355-4.356zm9.324 0l4.355 4.361l-4.355 4.356l-4.36-4.356zm-32.62 4.66l4.355 4.361l-4.355 4.355l-4.361-4.355zm9.319 0l4.355 4.361l-1.42 1.42c.33-.17.676-.31 1.032-.425l.692-.692l.444.442c.185-.026.372-.034.56-.045l-.7-.7l4.354-4.36l4.362 4.36l-.701.698c.186.01.371.022.556.047l.443-.447l.698.698c.348.11.686.244 1.01.408l-1.404-1.404l4.356-4.36l4.36 4.36l-4.34 4.336c.158.31.293.632.402.969l.04.119l3.899 3.894l-1.956 1.958l.15.45l2.104-2.104l4.361 4.355l-4.293 4.293l.37 1.108l3.923 3.924l-1.967 1.962l.149.455l2.116-2.12l4.359 4.361l-4.301 4.298l.356 1.074l3.947 3.947l-1.978 1.978l.15.454l2.132-2.128l4.355 4.356l-4.355 4.36l-.143-.143c.034.293.023.58.02.869l.123-.124l4.355 4.356l-4.355 4.36l-3.07-3.069c-.12.081-.225.18-.35.252l3.117 3.117l-4.361 4.36l-4.355-4.355l2.199-2.2l-.024.002c-.182 0-.36-.028-.54-.042l-1.94 1.936l-4.355-4.36l.967-.967a6.612 6.612 0 0 1-.208-.396l-1.063 1.064l-4.356-4.36l3.21-3.212l-.148-.457l-3.365 3.37l-4.357-4.361l1.407-1.407h-.606l-1.102 1.103L63.2 78.36h-.608L64 79.768l-4.355 4.36l-2.854-2.852l-.143.459l2.693 2.693l-4.356 4.36l-.653-.653a6.766 6.766 0 0 1-.22.383l.57.568l-4.357 4.36l-1.945-1.94a6.773 6.773 0 0 1-.714-.112l2.355 2.352l-4.36 4.36l-4.355-4.36l3.432-3.432c-.118-.082-.244-.156-.355-.245l-3.38 3.378l-4.357-4.36l4.355-4.356l.867.863c-.026-.209-.024-.422-.03-.635l-.533-.531l.58-.581a6.932 6.932 0 0 1 .146-.747l-1.029 1.028l-4.356-4.36l4.355-4.356l2.596 2.591l.146-.458l-2.438-2.437l4.36-4.36l.17.168l.143-.453l-.013-.014l.026-.027l.279-.885l-.607.608l-4.36-4.355l4.36-4.361l2.407 2.408l.145-.461l-2.25-2.245l4.325-4.326l.28-.881l-.245.243l-4.36-4.36l4.36-4.356l2.217 2.217l.146-.457l-2.063-2.063l3.968-3.966c.12-.37.275-.72.45-1.058l-.059.061l-4.36-4.356zm27.96 0L87.3 37.83l-4.355 4.355l-4.361-4.355zm-41.94 4.66l4.358 4.36l-4.356 4.356l-4.361-4.355l4.36-4.362zm9.32 0l4.356 4.36l-4.356 4.356l-4.36-4.355zm27.961.004l4.355 4.356l-4.36 4.36l-4.355-4.36zm9.318 0l4.357 4.356l-4.356 4.36l-4.36-4.36l4.36-4.355zM60.996 39.78c-2.382 0-4.475 1.587-5.195 3.824L43.32 83.14c-.865 2.889.722 5.991 3.605 6.858a5.559 5.559 0 0 0 1.697.267a5.51 5.51 0 0 0 5.231-3.806l2.888-9.38H72.47l3.098 9.455c.752 2.307 2.888 3.74 5.192 3.74a5.7 5.7 0 0 0 1.736-.276c2.883-.941 4.4-4.045 3.464-6.928L72.83 43.53c-.721-2.232-2.889-3.749-5.195-3.749h-6.64zm-24.655 3.012l4.36 4.355l-4.36 4.361l-4.356-4.36zm9.323 0l4.356 4.355l-4.355 4.361l-4.361-4.36zm37.281 0l4.355 4.355l-4.355 4.361l-4.361-4.36l4.36-4.356zm9.318 0l4.356 4.355l-4.355 4.361l-4.362-4.36zM31.68 47.45l4.36 4.356l-4.36 4.36l-4.355-4.36l4.355-4.355zm9.32 0l4.36 4.356l-4.36 4.36l-4.356-4.36zm46.603 0l4.355 4.356l-4.355 4.36l-4.36-4.36l4.36-4.355zm9.319 0l4.356 4.356l-4.356 4.36l-4.361-4.36l4.36-4.355zm-60.584 4.66l4.36 4.356l-4.36 4.36l-4.354-4.359l4.355-4.356zm9.323 0l4.356 4.356l-4.354 4.36l-4.363-4.36zm37.282 0l4.355 4.356l-4.362 4.36l-4.353-4.355zm9.318 0l4.354 4.36l-4.353 4.357l-4.363-4.36l4.36-4.357zM31.68 56.77l4.36 4.357l-4.36 4.36l-4.355-4.36l4.355-4.356zm9.321 0l4.36 4.357l-4.36 4.36l-4.356-4.355zm46.603 0l4.354 4.362l-4.355 4.354l-4.36-4.354l4.361-4.361zm9.317 0l4.355 4.362l-4.355 4.354l-4.361-4.354l4.36-4.361zm-60.583 4.66l4.36 4.361l-4.36 4.356l-4.356-4.354zm55.921 0l4.357 4.361l-4.354 4.356l-4.363-4.354zm29.389.822c.004.209.007.41.007.617l.837.835l.304-.304zM6.456 62.75l-2.59 2.598l.295.298l2.297-2.29c0-.202-.006-.405 0-.606zm-2.31 3.16l-.306.305l2.834 2.824a31.08 31.08 0 0 1-.06-.658zm27.533.18l4.36 4.361l-4.36 4.355l-4.355-4.355zm9.32 0l4.361 4.361L41 74.805l-4.356-4.355zm46.604 0l4.354 4.361l-4.355 4.355l-4.36-4.355zm9.317 0l4.355 4.361l-4.355 4.355l-4.361-4.355l4.36-4.36zm26.455.907l-1.906 1.901l-.05.66l2.253-2.259l-.297-.304zm-87.035 3.75l4.36 4.36l-4.36 4.358l-4.356-4.357zm55.922.005l4.356 4.356l-4.355 4.357l-4.362-4.357zm-60.58 4.66l4.36 4.356l-4.36 4.36l-4.356-4.36zm4.66 4.658l4.36 4.358l-4.36 4.36l-4.357-4.36l4.356-4.356zm27.96 0l4.355 4.358l-4.354 4.36l-4.361-4.36l4.36-4.356zm27.96 0l4.357 4.358l-4.355 4.36l-4.362-4.36l4.36-4.356zm-32.62 4.66L64 89.086l-4.355 4.36l-4.362-4.36zm9.32 0l4.36 4.356l-4.36 4.36l-4.356-4.36zm-13.979 4.66l4.355 4.357l-4.355 4.36l-4.362-4.36zm9.317 0l4.358 4.362l-4.356 4.356l-4.361-4.36l4.36-4.357zm9.32 0l4.36 4.362l-4.36 4.356l-4.356-4.356l4.356-4.36zm-13.978 4.66l4.356 4.361l-4.355 4.355l-4.362-4.355zm9.318 0l4.36 4.361l-4.36 4.355l-4.355-4.355zm25.412 4.212a5.39 5.39 0 0 0-.586.017a5.132 5.132 0 0 0-2.701 1.108c-2.228 1.758-2.573 4.76-.937 6.835l.017.018c1.64 2.074 4.598 2.43 6.827.672c2.229-1.762 2.572-4.76.932-6.835l-.018-.023a4.661 4.661 0 0 0-3.533-1.792zm-57.06 2.237l-4.73 7.89l2.185 1.315l1.771-2.954l2.804 1.679l-1.766 2.954l2.184 1.31l4.73-7.891l-2.185-1.31l-1.798 2.998l-2.809-1.679l1.799-2.998zm56.512.21c.767-.03 1.531.338 2.048.99l.017.022c.821 1.042.792 2.505-.304 3.367c-1.103.874-2.572.558-3.393-.484l-.018-.017c-.822-1.042-.791-2.51.313-3.38a2.266 2.266 0 0 1 1.336-.498zm-9.847 3.874l-2.515.931l-.048 1.767l-3.328 1.231l-1.2-1.305l-2.563.95l6.888 7.326l2.307-.852zm-32.27 2.597l-1.815 6.726l-2.663-.72l-.581 2.157l7.79 2.102l.58-2.155l-2.664-.72l1.815-6.726zm14.181 1.688c-2.615.114-4.25 1.49-4.118 4.457l.224 5.095l2.584-.114l-.228-5.173c-.053-1.289.588-1.921 1.612-1.966c1.024-.044 1.72.554 1.78 1.881l.226 5.109l2.583-.115l-.224-5.16c-.127-2.876-1.828-4.128-4.439-4.014m15.512.536l-.066 2.814l-1.868-2.097l1.936-.717zm-21.763 12.604l1.262 1.26l.303-.298l-.905-.906c-.22-.013-.44-.04-.66-.056m9.31.017c-.215.018-.427.026-.64.04l-.872.869l.304.3z\\\"/>\"\n\t\t},\n\t\t\"ocaml\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconOcaml0\\\" x1=\\\"82.925\\\" x2=\\\"82.925\\\" y1=\\\"97.718\\\" y2=\\\"97.9\\\" gradientTransform=\\\"translate(0 8.224)scale(.77317)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F29100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EC670F\\\"/></linearGradient><linearGradient id=\\\"deviconOcaml1\\\" x1=\\\"61.276\\\" x2=\\\"61.276\\\" y1=\\\"98.981\\\" y2=\\\"144.277\\\" gradientTransform=\\\"translate(0 8.224)scale(.77317)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F29100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EC670F\\\"/></linearGradient><linearGradient id=\\\"deviconOcaml2\\\" x1=\\\"82.781\\\" x2=\\\"82.781\\\" y1=\\\"0\\\" y2=\\\"144.245\\\" gradientTransform=\\\"translate(0 8.224)scale(.77317)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F29100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EC670F\\\"/></linearGradient><linearGradient id=\\\"deviconOcaml3\\\" x1=\\\"22.871\\\" x2=\\\"22.871\\\" y1=\\\"92.114\\\" y2=\\\"143.249\\\" gradientTransform=\\\"translate(0 8.224)scale(.77317)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#F29100\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#EC670F\\\"/></linearGradient></defs><path fill=\\\"#484444\\\" d=\\\"m64.11 83.918l.019-.047c-.027-.117-.035-.148-.02.047zm0 0\\\"/><path fill=\\\"url(#deviconOcaml0)\\\" d=\\\"m64.11 83.918l.019-.047c-.027-.117-.035-.148-.02.047zm0 0\\\"/><path fill=\\\"url(#deviconOcaml1)\\\" d=\\\"M64.969 115.441c-.45-.937-1.016-2.773-1.39-3.582c-.356-.754-1.434-2.722-1.974-3.355c-1.175-1.375-1.453-1.477-1.796-3.215c-.602-3.023-2.192-8.508-4.067-12.293c-.969-1.953-2.578-3.594-4.05-5.012c-1.286-1.242-4.184-3.332-4.692-3.226c-4.734.945-6.203 5.59-8.434 9.27c-1.23 2.034-2.535 3.765-3.507 5.929c-.899 1.992-.817 4.195-2.352 5.902c-1.578 1.758-2.602 3.625-3.371 5.891c-.148.43-.563 4.953-1.016 6.027l7.04-.496c6.558.45 4.663 2.965 14.902 2.414l16.164-.5c-.504-1.48-1.196-3.195-1.461-3.754zm0 0\\\"/><path fill=\\\"url(#deviconOcaml2)\\\" d=\\\"M111.875 8.223H16.133C7.227 8.227.008 15.445.008 24.352v35.183c2.308-.836 5.625-5.742 6.664-6.937c1.82-2.086 2.148-4.75 3.055-6.426c2.066-3.82 2.421-6.445 7.109-6.445c2.187 0 3.055.503 4.535 2.488c1.027 1.379 2.809 3.93 3.637 5.633c.96 1.968 2.527 4.629 3.215 5.164c.511.402 1.015.699 1.488.875c.758.289 1.39-.235 1.898-.64c.649-.52.93-1.571 1.532-2.977c.867-2.028 1.808-4.458 2.347-5.31c.93-1.464 1.246-3.202 2.25-4.046c1.485-1.242 3.414-1.328 3.95-1.434c2.976-.59 4.328 1.434 5.792 2.743c.961.855 2.27 2.582 3.204 4.89c.726 1.809 1.652 3.48 2.039 4.524c.375 1.004 1.3 2.62 1.847 4.55c.496 1.758 1.828 3.106 2.332 3.938c0 0 .774 2.168 5.48 4.152c1.02.43 3.083 1.13 4.313 1.575c2.047.746 4.028.648 6.551.347c1.797 0 2.774-2.605 3.59-4.691c.484-1.23.945-4.766 1.262-5.766c.304-.976-.41-1.73.199-2.586c.71-1 1.133-1.054 1.543-2.355c.883-2.785 5.984-2.926 8.847-2.926c2.399 0 2.086 2.32 6.141 1.527c2.32-.457 4.559.297 7.024.95c2.074.55 4.023 1.175 5.195 2.546c.758.887 2.633 5.325.719 5.516c.183.223.32.629.664.852c-.426 1.675-2.282.48-3.309.265c-1.39-.285-2.367.043-3.726.645c-2.32 1.035-5.715.914-7.739 2.597c-1.715 1.43-1.71 4.614-2.511 6.399c0 0-2.223 5.719-7.075 9.215c-1.242.898-3.668 3.054-8.953 3.87c-2.367.368-4.586.395-7.02.274l-3.511-.133c-.695-.003-3.063-.082-2.945.145l-.266.656c.043.219.129.754.152.887c.098.527.125.95.145 1.437c.035 1-.082 2.043-.031 3.055c.105 2.094.882 4.008.98 6.121c.11 2.356 1.274 4.844 2.399 6.77c.43.73 1.078.812 1.363 1.715c.332 1.03.02 2.129.18 3.23c.632 4.266 1.855 8.73 3.785 12.582a.685.685 0 0 0 .043.094c2.375-.395 4.754-1.25 7.84-1.707c5.652-.836 13.519-.406 18.57-.88c12.781-1.198 19.719 5.243 31.203 2.602V24.352c-.004-8.907-7.223-16.13-16.129-16.13zM64.109 83.918c-.015-.195-.007-.168.02-.047zm0 0\\\"/><path fill=\\\"url(#deviconOcaml3)\\\" d=\\\"M29.516 98.727c.89-1.946 1.406-4.165 2.144-6.157c.711-1.906 1.817-4.61 3.7-5.57c-.227-.27-3.938-.39-4.93-.492l-3.2-.453l-6.164-1.27c-1.199-.289-5.187-1.703-6.054-2.101c-2.032-.938-3.383-3.48-4.969-3.22c-1.016.165-2.012.513-2.633 1.536c-.515.836-.691 2.27-1.047 3.23c-.414 1.118-1.129 2.16-1.754 3.223c-1.152 1.95-3.222 3.715-4.113 5.617c-.18.39-.34.828-.488 1.285v21.735l3.347.722c8.993 2.403 11.188 2.606 20.008 1.594l.828-.11c.672-1.405 1.196-6.187 1.633-7.667c.34-1.137.809-2.04.988-3.2c.168-1.1-.015-2.148-.113-3.152c-.242-2.504 1.828-3.398 2.82-5.55zm0 0\\\"/>\"\n\t\t},\n\t\t\"ocaml-wordmark\": {\n\t\t\t\"body\": \"<g fill-rule=\\\"evenodd\\\"><path fill=\\\"#484444\\\" d=\\\"m63.156 53.582l.844-.34c-.844-.828-1.277-1.023-.844.34m0 0\\\"/><path fill=\\\"#F29100\\\" d=\\\"M94.012.992H30.93c-5.856 0-10.614 5.074-10.614 11.336v24.727c1.516-.582 3.707-4.035 4.383-4.875c1.207-1.465 1.422-3.34 2.02-4.52c1.36-2.68 1.593-4.531 4.687-4.531c1.438 0 2.008.36 2.989 1.754c.667.965 1.843 2.762 2.39 3.957c.633 1.383 1.664 3.258 2.117 3.637c.336.277.672.484.977.613c.5.203.918-.172 1.25-.453c.43-.367.617-1.106 1.012-2.094c.574-1.426 1.191-3.133 1.543-3.73c.613-1.032.824-2.25 1.488-2.848c.976-.871 2.254-.934 2.598-1c1.964-.422 2.851 1 3.82 1.922c.633.601 1.492 1.812 2.11 3.441c.472 1.266 1.09 2.442 1.34 3.176c.245.71.862 1.84 1.214 3.203c.336 1.23 1.203 2.176 1.539 2.766c0 0 .512 1.527 3.613 2.914c.672.308 2.032.793 2.844 1.11c1.344.523 2.645.456 4.313.245c1.187 0 1.828-1.832 2.363-3.297c.32-.867.625-3.351.836-4.058c.195-.688-.274-1.211.125-1.813c.472-.707.75-.742 1.023-1.656c.582-1.957 3.942-2.059 5.824-2.059c1.586 0 1.375 1.63 4.047 1.075c1.531-.32 2.996.21 4.63.664c1.359.394 2.644.832 3.41 1.797c.511.62 1.742 3.742.484 3.87c.117.16.207.45.433.598c-.277 1.184-1.504.34-2.183.192c-.914-.203-1.559.027-2.453.453c-1.524.726-3.758.637-5.09 1.824c-1.133 1.004-1.133 3.242-1.657 4.504c0 0-1.464 4.016-4.664 6.473c-.816.632-2.418 2.144-5.898 2.718c-1.559.258-3.023.282-4.625.196l-2.313-.094c-.46-.004-2.02-.059-1.933.101l-.176.458c.027.156.082.535.098.628c.066.368.086.664.093 1.004c.028.707-.05 1.442-.015 2.153c.062 1.468.574 2.812.64 4.297c.07 1.66.844 3.41 1.586 4.761c.278.512.704.567.895 1.203c.215.73.008 1.5.121 2.27c.414 3 1.219 6.137 2.492 8.848l.024.066c1.57-.281 3.132-.879 5.16-1.2c3.734-.593 8.914-.284 12.238-.62c8.422-.84 12.996 3.687 20.559 1.832V12.328c0-6.262-4.754-11.336-10.625-11.336M62.543 54.2c-.012-.136 0-.12.016-.035zm0 0\\\"/><path fill=\\\"#F29100\\\" d=\\\"M39.82 63.672c.594-1.32.926-2.824 1.418-4.168c.473-1.297 1.2-3.129 2.446-3.781c-.153-.184-2.598-.266-3.254-.328l-2.117-.313l-4.079-.86c-.797-.195-3.43-1.152-4-1.421c-1.343-.637-2.238-2.36-3.289-2.184c-.664.113-1.328.344-1.738 1.04c-.344.57-.453 1.538-.691 2.19c-.274.758-.743 1.462-1.164 2.184c-.75 1.32-2.125 2.52-2.715 3.809a7.727 7.727 0 0 0-.32.867v14.73l2.21.493c5.946 1.62 7.399 1.765 13.223 1.078l.55-.074c.45-.954.794-4.196 1.079-5.196c.226-.773.535-1.383.652-2.168c.106-.746-.008-1.46-.074-2.132c-.164-1.704 1.207-2.31 1.863-3.766m0 0\\\"/><path fill=\\\"#484444\\\" d=\\\"M13.809 127.004c-2.055 0-3.922-.524-5.618-1.567c-1.695-1.05-3.148-2.55-4.363-4.511c-1.21-1.961-2.148-4.34-2.82-7.156C.34 110.965 0 107.78 0 104.223c0-3.563.34-6.735 1.008-9.516c.676-2.785 1.61-5.121 2.82-7.016c1.215-1.894 2.668-3.34 4.363-4.34c1.696-1.003 3.563-1.507 5.618-1.507c2.05 0 3.921.504 5.617 1.508c1.695 1 3.144 2.453 4.36 4.375c1.21 1.918 2.151 4.265 2.823 7.043c.664 2.78 1.004 5.933 1.004 9.453c0 3.558-.332 6.746-1.004 9.547c-.672 2.812-1.613 5.195-2.824 7.16c-1.215 1.96-2.668 3.457-4.363 4.507c-1.688 1.043-3.563 1.567-5.617 1.567zm0-8.48c2.082 0 3.726-1.286 4.941-3.844c1.21-2.559 1.824-6.043 1.824-10.453c0-4.364-.613-7.77-1.824-10.22c-1.215-2.445-2.86-3.675-4.945-3.675c-2.078 0-3.727 1.23-4.942 3.676c-1.21 2.449-1.816 5.855-1.816 10.219c0 4.41.605 7.894 1.816 10.453c1.215 2.558 2.864 3.84 4.946 3.84zM30.03 104.69c0-3.601.39-6.82 1.164-9.648c.785-2.828 1.832-5.223 3.149-7.18c1.304-1.945 2.883-3.468 4.625-4.476c1.754-1.024 3.61-1.535 5.57-1.535c1.898 0 3.61.566 5.148 1.707c1.543 1.14 2.825 2.453 3.848 3.972l-3.773 6.086c-.785-1.02-1.567-1.824-2.36-2.406c-.789-.574-1.71-.867-2.77-.867c-1.062 0-2.046.324-2.96.969c-.922.64-1.715 1.566-2.406 2.773c-.684 1.2-1.215 2.668-1.602 4.406c-.394 1.735-.582 3.7-.582 5.875c0 4.496.668 7.985 2 10.453c1.34 2.473 3.125 3.711 5.367 3.711c1.246 0 2.328-.351 3.262-1.07c.934-.715 1.773-1.648 2.52-2.809l3.777 5.95c-1.274 2.132-2.73 3.738-4.36 4.8c-1.628 1.063-3.402 1.606-5.293 1.606a11.35 11.35 0 0 1-5.55-1.438c-1.72-.933-3.278-2.382-4.57-4.242c-1.31-1.875-2.337-4.2-3.079-6.98c-.746-2.785-1.117-6.004-1.117-9.653zm26.254 12.293c0-3.472 1.02-6.191 3.074-8.148c2.051-1.957 5.368-3.273 9.93-3.941c-.059-1.473-.371-2.641-.934-3.508c-.558-.867-1.457-1.297-2.703-1.297c-.992 0-1.988.262-2.98.8c-.992.532-2.055 1.266-3.168 2.2l-2.426-6.473c1.492-1.3 3.055-2.344 4.688-3.144a11.6 11.6 0 0 1 5.199-1.203c2.984 0 5.262 1.218 6.828 3.64c1.574 2.426 2.355 6.203 2.355 11.324V126.2h-5.593l-.516-3.402h-.14c-.993 1.246-2.044 2.262-3.145 3.035c-1.102.781-2.309 1.176-3.61 1.176c-1.062 0-2.007-.258-2.851-.77c-.832-.515-1.55-1.222-2.137-2.133a11.178 11.178 0 0 1-1.379-3.175c-.324-1.2-.492-2.516-.492-3.938zm6.524-.738c0 1.07.242 1.867.726 2.379c.48.508 1.125.766 1.934.766c.804 0 1.492-.246 2.054-.735c.555-.496 1.145-1.176 1.766-2.074v-5.82c-2.45.496-4.148 1.207-5.078 2.14c-.938.938-1.398 2.051-1.398 3.34zM80.156 93.07h5.598l.46 4.27h.188c.97-1.375 1.989-2.574 3.082-3.574c1.086-1.004 2.391-1.5 3.914-1.5c1.649 0 2.973.472 3.989 1.437c1.004.969 1.808 2.332 2.398 4.11c1.028-1.512 2.106-2.813 3.238-3.91c1.141-1.09 2.477-1.633 4.036-1.633c2.488 0 4.316 1.195 5.48 3.574c1.164 2.386 1.746 5.644 1.746 9.789v20.566h-6.86v-19.3c0-2.407-.222-4.06-.671-4.942c-.453-.887-1.172-1.336-2.164-1.336c-1.156 0-2.473 1.067-3.965 3.203V126.2h-6.86v-19.3c0-2.407-.222-4.06-.671-4.942c-.45-.887-1.172-1.336-2.164-1.336c-1.188 0-2.496 1.067-3.922 3.203V126.2h-6.852zm38.09-13.691h6.86v36.937c0 1.024.128 1.739.398 2.133c.258.406.523.606.812.606h.399c.113 0 .262-.043.445-.133l.84 7.277c-.371.223-.848.414-1.426.57c-.57.157-1.242.235-2.027.235c-1.18 0-2.172-.27-2.98-.805c-.801-.527-1.45-1.277-1.93-2.234c-.48-.957-.832-2.117-1.051-3.473c-.219-1.36-.328-2.879-.328-4.574zm0 0\\\"/><path fill=\\\"#F29100\\\" d=\\\"M64.008 74.574c-.313-.613-.707-1.808-.965-2.336c-.246-.492-.996-1.773-1.367-2.187c-.817-.895-1.008-.961-1.246-2.094c-.418-1.973-1.52-5.547-2.82-8.012c-.672-1.273-1.786-2.343-2.805-3.265c-.895-.809-2.903-2.172-3.254-2.102c-3.281.613-4.301 3.64-5.844 6.04c-.855 1.323-1.758 2.452-2.434 3.862c-.62 1.297-.566 2.735-1.628 3.848c-1.094 1.145-1.805 2.363-2.336 3.84c-.106.277-.391 3.227-.707 3.926l4.878-.324c4.547.296 3.235 1.933 10.333 1.574l11.203-.324c-.348-.965-.829-2.082-1.012-2.446zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"ohmyzsh\": {\n\t\t\t\"body\": \"<path fill-rule=\\\"evenodd\\\" d=\\\"M125.983 75.792c-.065.344-.15.804-.311 1.08l-.696.977l-.548.992c-.373.597-.812 1.158-1.243 1.702l-.784.844l-.385.266l.118.622l.222 1.45l.059.444l-.192.74l-.281.355l.311 4.351l.266.799l.503 2.279c.194.895.183 1.85.355 2.797c.127.701.149 1.39.266 2.161v.74l-.133.562l-.178.237v1.272l-.178.725c-.512 1.235-3.271 1.764-4.351.681c-.221-.221-.304-.472-.4-.829c-.085-.316-.111-.712 0-1.036c-.303.033-.656.08-.991.133c-.295.047-.514-.109-.74-.074l-.858.192c-1.489.295-3.282.146-3.611-1.08a2.009 2.009 0 0 1-.03-.992c-.348-.154-.829-.921-.725-1.495c.064-.356.213-.815.044-1.14c-.356.206-2.011.657-2.56.474l-.118.459c-.061.239-.191.383-.252.548l.015.488c.001.298-.081.821-.192 1.036c-.135.261-.414.49-.666.636c-.344.2-.812.201-1.243.311c-.47.12-.947.252-1.495.34c-.546.088-1.157-.073-1.569-.178c-.948-.241-1.568-.319-1.82-1.258c-.081-.3-.117-.575-.015-.888l-1.036.207c-1.085.177-2.862-.198-3.315-.74c-.228-.272-.366-.627-.444-1.051c-.028-.153.094-.327.03-.414l-.281-.222c-.134-.174-.187-.336-.296-.548c-.06.476-.539.764-.903.962a63.6 63.6 0 0 1-.237.266l-.474.34c-.72.435-2.153.322-2.664-.237l-.518.326l-1.021.237c-.667.121-1.907-.501-2.161-.814c-.124-.153-.173-.341-.296-.503l-.459-.237c-.377-.221-.732-.487-.977-.844c-.22-.32-.144-.776-.296-1.184c-.138-.37-.423-.706-.548-1.066l-.296-1.288l-.059-.518c-.08-.258-.24-.508-.296-.844h-.015l-.37 2.042l-.104.918c-.16.767-.386 1.683-.799 2.22c-.114.148-.534.522-.71.592l-.607.133l-.266.385a2.319 2.319 0 0 1-.488.444c-.415.295-.934.477-1.539.592c-.237.045-.451-.057-.622-.104c-.815-.223-1.468-.712-1.495-1.702c-.398-.056-.645-.277-.917-.459l-.044.03c-.247.51-.931.557-1.509.755l-.474.296c-.984.314-1.848.164-2.708-.192c-.516-.214-.919-.487-1.332-.799l-.326-.296l-.414-.148c-.395-.239-.833-.61-1.036-1.036l-.163-.666l.015-.266c-.062-.216-.174-.504-.222-.755l.015-.651c-.093-.458-.214-.948-.311-1.436l-.266-2.087c-.052-.309-.004-.644.035-.933h-.799l-.02.119l-.044.77l-.444 2.294c-.105.559-.097 1.002-.252 1.48l-.178.311a261.4 261.4 0 0 1-.178.858c-.068.177-.274.301-.355.459l-.133.607l-.355.518c-.192.245-.495.336-.755.518c-.321.226-.624.614-.873.918c-.093.113-.244.201-.326.311l-.133.34l-.385.548c-.384.481-1.421.699-2.013.281c-.172-.121-.365-.217-.488-.385l-.37-.577l-.133-.326c-.136-.182-.373-.324-.474-.548c-.218-.486-.087-1.237-.326-1.702c-.553.303-1.002.772-1.524 1.11c-.144.093-.455.048-.562.178c-.181.396-.155.763-.474 1.006c-.797.608-1.818.561-2.797.178l-.503-.178c-.24-.142-.538-.362-.71-.577l-.207-.281l-.414-.089c-.461-.183-.864-.63-1.11-1.036c-.207-.343-.161-.804-.237-1.243l-.222-.873l-.015-.666c-.148-.72-.458-1.303-.577-2.072h-.015a18.565 18.565 0 0 1-.237 2.131v.799l-.148.607l-.118.148v.34l-.148.607c-.207.423-.722.79-1.125 1.021l-.429.133l-.192.296c-.217.28-.689.622-1.021.77c-.352.157-.951.124-1.273.311c-.056.133-.171.173-.281.252c-.868.615-1.702.174-2.619.03c-.179.164-.371.205-.592.34l-.414.34c-.659.415-1.914.525-2.708.207c-.256-.102-.458-.303-.666-.459c-.269.006-.514.03-.784.074c-.271.044-.608-.011-.799-.059l-.503-.104c-.583-.233-.853-.994-1.139-1.524c-.15.082-.197.212-.311.326l-.533.4c-.445.27-1.307.297-1.85.178c.1.287.09.683.015.962c-.084.312-.136.531-.326.725c-.551.565-2.042.765-3.182.562c-.394-.07-.805-.212-1.169-.252l-.385.074c-.534-.074-1.373-.149-1.791-.37c-.413-.219-.619-.608-.725-1.14l-.044-.888c-.069-.205-.182-.491-.237-.74l-.133-1.288l-.192-1.288l-.03.015l-.355 1.672c-.114.459-.117.889-.222 1.391l-.163.622c-.022.271.22.513.163.844l-.163.71l-.178.222l-.015.266c-.107.437-.216.776-.459 1.066c-.76.905-3.318.506-3.922-.266c-.267-.342-.329-.704-.474-1.199c-.44-.157-.61-.526-.814-.932h-.015c-.07.53-.565.738-.932.992l-.148.192c-.187.17-.453.374-.695.474c-.923.379-2.264.144-2.797-.488c-.265-.315-.57-1.105-.459-1.687c.035-.182.217-.503.148-.725c-.059-.19-.228-.439-.311-.636l-.281-1.051l-.015-.829l-.03-.681l-.133-.607c-.134-.783.231-1.422-.074-2.057l-.059.947l.178 2.383l-.015 1.362l-.118 2.753c-.022.979.073 2.009-.104 2.886c-.052.261-.157.551-.222.784l-.163.651c-.599.967-1.887 1.522-3.344 1.125c-.295-.08-.567-.114-.799-.252c-.802-.474-1.099-1.055-1.273-2.146l-1.021-.222c-1.053-.288-1.723-.532-1.998-1.598c-.083-.322-.046-.796.118-1.095c.295-.538.832-.924 1.347-1.243l.474-.266c.028-1.954-.248-3.861-.607-5.461l-.237-1.954c-.07-.265-.181-.581-.237-.873l.015-.681c-.247-1.009-.171-2.292-.355-3.404c-.066-.397.001-.906.074-1.243l.089-.414c-.057-.231-.207-.548-.257-.841l.207-.992c-1.018-.329-1.48-2.077-1.065-3.36c.062-.193.242-.352.355-.503c.252-.339.492-.639.755-.962l.252-.178l.192-.281l.296-.237l.607-.844l.873-.977l.488-.607c-.327-.86-.365-1.923-.37-3.108c-.002-.418-.061-.754.104-1.095c.074-.154.237-.273.34-.4l.311-.459c.241-.306.707-.383 1.11-.533l.133-.104c.543-.261 1.792-.275 2.338-.015a3.727 3.727 0 0 1 1.569 1.421c.119.2.14.446.252.666l.015-.03l.256-.33V26.881a1.232 1.232 0 0 1 1.123-1.332c.047-.004.095-.005.142-.004h97.451a1.45 1.45 0 0 1 1.509 1.336V65.1l.177.035l.444.311c.598.425.703.438 1.065 1.125l.059-.044c.284-.679 1.326-1.182 2.175-1.332c.312-.055.552.023.829-.03c.303-.058.76-.045 1.065.118c.252.135.382.384.592.548c.643.501 1.209 1.194 1.376 2.161c.057.329-.242 1.187-.178 1.332c.094.213.5.246.755.311c.452.114.873.248 1.213.474c.667.443.943.89 1.406 1.524c.243.332.542.632.799.962c.415.535.995.954 1.361 1.539c.207.331.708 1.046.592 1.658\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#FFF\\\" d=\\\"m111.037 64.854l-.917.222l-.681.444l-.207.044a1.31 1.31 0 0 0-.296.216V31.835H15.352v34.518a4.493 4.493 0 0 0-2.101.352l-.118.085V27.1c0-.245.199-.444.444-.444h97.135c.245 0 .444.199.444.444v37.748a.471.471 0 0 0-.119.006m-11.72-36.853a1.377 1.377 0 1 0 0 2.754a1.377 1.377 0 0 0 0-2.754m4.119 0a1.377 1.377 0 1 0 0 2.754a1.377 1.377 0 0 0 0-2.754m4.123 0a1.377 1.377 0 1 0 0 2.754a1.377 1.377 0 0 0 0-2.754\\\"/><path fill=\\\"#FFF\\\" d=\\\"M98.567 39.236h5.917v15.17h-5.917zM85.952 50.705v-9.598h1.11v4.418a3.73 3.73 0 0 1 1.146-1.202a2.46 2.46 0 0 1 1.342-.433c.364-.004.722.097 1.032.289c.283.162.51.406.651.699c.1.212.169.438.203.67c.045.485.062.971.052 1.458v3.7h-1.11v-3.848a5.29 5.29 0 0 0-.092-1.262a.972.972 0 0 0-.337-.503a.838.838 0 0 0-.54-.196a2.008 2.008 0 0 0-1.25.551c-.46.382-.838.854-1.109 1.388v3.87h-1.098zm-6.849-.351v-1.169c.431.283.908.49 1.409.611c.413.104.836.163 1.261.174c.42.035.841-.059 1.206-.27a.81.81 0 0 0 .37-.677a.672.672 0 0 0-.174-.459a2.693 2.693 0 0 0-.854-.466l-.37-.155l-.769-.303c-.821-.322-1.342-.618-1.557-.892a1.523 1.523 0 0 1-.325-.988a1.68 1.68 0 0 1 .632-1.35c.425-.37 1.11-.529 2.06-.529a6.596 6.596 0 0 1 2.016.307v1.006a6.107 6.107 0 0 0-2.082-.407a2.046 2.046 0 0 0-1.11.248a.718.718 0 0 0-.396.614c0 .239.132.458.344.57c.353.201.725.367 1.109.496l.74.274c.536.161 1.03.439 1.446.814c.28.3.429.7.414 1.11a1.766 1.766 0 0 1-.666 1.421c-.441.37-1.148.555-2.119.555a7.038 7.038 0 0 1-2.585-.535m-7.134.351v-1.017l4.068-4.703h-3.972v-.921h5.44v.921l-4.086 4.703h4.238v1.017zm-9.627-.259l-3.066-6.382h1.217l2.445 4.988l2.041-4.988h1.11l-2.567 6.175c-.545 1.297-1.061 2.161-1.55 2.59a2.798 2.798 0 0 1-1.901.64a4.139 4.139 0 0 1-.902-.089v-.973c.282.093.576.141.873.144c.329.006.655-.066.95-.211c.316-.174.579-.429.762-.74c.194-.287.358-.593.488-.914zm-10.632.259v-6.641h.969v1.521c.206-.492.495-.945.854-1.339c.209-.222.495-.354.799-.37a.937.937 0 0 1 .777.37c.215.315.319.692.296 1.073v.37c.105-.352.263-.685.47-.988a2.88 2.88 0 0 1 .573-.599a1.11 1.11 0 0 1 .684-.222c.291 0 .565.137.74.37c.203.241.303.74.303 1.447v5.01h-.969v-4.536a5.027 5.027 0 0 0-.037-.766a.55.55 0 0 0-.141-.311a.316.316 0 0 0-.233-.107c-.207 0-.425.155-.662.474a5.792 5.792 0 0 0-.721 1.565v3.682h-.925v-4.532c0-.585-.055-.932-.17-1.032a.502.502 0 0 0-.311-.155c-.203 0-.422.178-.655.529c-.27.426-.493.88-.666 1.354v3.837h-.975zm-12.083 0v-9.598h1.11v4.418a3.73 3.73 0 0 1 1.146-1.202a2.46 2.46 0 0 1 1.342-.433c.364-.004.722.097 1.032.289c.283.162.51.406.651.699c.1.212.169.438.203.67c.045.485.062.971.052 1.458v3.7h-1.11v-3.848a5.29 5.29 0 0 0-.092-1.262a.972.972 0 0 0-.337-.503a.84.84 0 0 0-.54-.196a2.008 2.008 0 0 0-1.25.551c-.46.382-.838.854-1.109 1.388v3.87zm-4.575.185a2.862 2.862 0 0 1-2.282-.995a4.12 4.12 0 0 1 0-5.025a3.113 3.113 0 0 1 4.556 0a4.12 4.12 0 0 1 0 5.025a2.845 2.845 0 0 1-2.274.995m0-.921a1.668 1.668 0 0 0 1.405-.692a3.703 3.703 0 0 0 0-3.789a1.785 1.785 0 0 0-2.818 0a3.68 3.68 0 0 0 0 3.789c.327.45.857.708 1.413.688zm-12.097 1.658v-.921c-.266 0-.544 0-.828-.041a6.264 6.264 0 0 1-.806-.13a4.564 4.564 0 0 1-.865-.307v-1.151c.252.128.51.243.773.344c.259.098.527.173.799.226c.307.06.617.099.928.118v-3.311l-.64-.344c-1.206-.647-1.812-1.428-1.812-2.346c.019-.533.234-1.04.603-1.424a2.629 2.629 0 0 1 1.849-.799v-.988h.832v.988a6.877 6.877 0 0 1 1.664.244v1.029l-.211-.059a8.994 8.994 0 0 0-1.453-.303v3.237l.666.37c.503.256.944.62 1.291 1.066c.225.327.346.713.348 1.11c0 .358-.09.711-.263 1.025a2.562 2.562 0 0 1-.762.855a3.085 3.085 0 0 1-1.28.492v1.01zm0-6.442V42.44c-.345.06-.665.216-.925.451a.988.988 0 0 0-.325.74c.004.279.102.549.277.766c.276.318.605.585.973.788m.832 1.761v2.738c.344-.095.65-.294.877-.57c.149-.218.229-.476.229-.74a1.109 1.109 0 0 0-.226-.692a3.937 3.937 0 0 0-.88-.736\\\"/><path fill=\\\"#FFF\\\" fill-rule=\\\"evenodd\\\" d=\\\"M124.333 76.491a4.878 4.878 0 0 1-.47.629a22 22 0 0 1-.37.673a11.639 11.639 0 0 1-1.868 2.468c-.096.096-.196.244-.325.244a.303.303 0 0 0-.17.07c-.144.1-.288.007-.37.1c-.196.211-.159.351-.126.61s.078.514.122.77c.096.551.207 1.106.274 1.661c.026.233.137.529-.092.666a2.092 2.092 0 0 1-.263.122c-.144.063-.081.185-.081.329c.037 1.151.137 2.294.237 3.441l.078.955c-.007.269.024.538.092.799c.184.481.331.976.44 1.48c.255 1.119.437 2.254.544 3.397c.107 1.14.414 2.324.325 3.471c-.17-.026-.333-.107-.51-.107c.355.566.133 1.362.2 1.991c.07.714-.725.818-1.287.855a1.675 1.675 0 0 1-.862-.122c-.3-.155-.2-.562-.148-.847c.07-.355.203-.692.281-1.043c.13-.302.231-.615.303-.936c-.166.022-.47.074-.599-.07a4.761 4.761 0 0 0-.067-.892c-.089-.536-.222-1.062-.318-1.598c-.211-1.247-.377-2.509-.581-3.759c.078 1.51.048 3.027.026 4.536c.047.296.003.599-.126.869c-.059.089.052.285.052.392a4.36 4.36 0 0 1 0 .485c-.004.126.07.344-.033.418a.922.922 0 0 1-.303.137a4.1 4.1 0 0 1-.788.104c-.133.007-.592.07-.595-.037c-.004-.107-.669.081-.777.104a9.238 9.238 0 0 1-2.019.163a2.655 2.655 0 0 1-.444-.055c-.17-.037-.277-.03-.277-.215c.019-.337-.048-.448.3-.596c.237-.104 1.446-.263 1.446-.585c.055 0 .081.155.104.052c.022-.104.129-.085.211-.085c-.089-.115.174-.166.196-.318a1.72 1.72 0 0 0-.407.318c.081-.263.425-.377.651-.459c.019.011-.063.196.092.107c.081-.044.104.011.163 0c.059-.011.081-.078.133-.104c-.189-.148-.366-.278-.344-.518c.022-.241.115-.474.115-.714a12.77 12.77 0 0 1-.111-1.598c-.03-1.117.052-2.298-.141-3.367c-.192-1.069-.507-2.116-.684-3.189a32.29 32.29 0 0 1-.314-3.271c-.118 0-.081.17-.17.189c-.089.019-.089-.455-.089-.544c-.033-.381-.1-.77-.159-1.14a8.26 8.26 0 0 1-.104-1.247a7.68 7.68 0 0 1-.019-1.04c.118-.781.407-1.487.525-2.261c.059-.37.107-.74.163-1.11c.03-.203.063-.411.1-.614c-.011-.044-.07-.27-.041-.303c.159-.189.041-.792.041-1.058c.01-.385.049-.768.118-1.147c.056-.187.091-.379.104-.573a1.332 1.332 0 0 1 .092-.522a3.77 3.77 0 0 1 .448-.666c.101-.125.227-.227.37-.3c.17-.111.17-.303.251-.481a.5.5 0 0 0 .019-.466c-.044-.155-.244-.063-.37-.063c-.2-.258-.36-.545-.473-.851a2.36 2.36 0 0 1-.37-.803c-.17.067-.237-.052-.329-.181c-.092-.129.085-.3.17-.4c.004-.229-.041-.466-.041-.699a.198.198 0 0 0-.074.033c-.226-.037-.092-.241-.155-.37a1.29 1.29 0 0 1 .396-.74c.124-.124.265-.231.418-.318a.964.964 0 0 1 .714-.211c.133 0 .237-.1.37-.037c.166-.033.322.052.496.052c0-.041-.03-.089 0-.115c.03-.026.067.033.067.033c.011.081.092.033.133 0c.059.048.155.107.129.181c.066.05.123.11.17.178c.277.059.362.366.547.551c.229.044.185.292.255.455c.019.055.129.078.074.148l.081.056c-.059.13.055.289-.081.37c.141.141-.148.178.026.307l-.085.033c.067.096-.011.133-.078.2l.07.122c-.141.067.015.181-.048.281c-.159.055 0 .137 0 .222a.236.236 0 0 1-.129 0a.572.572 0 0 1-.115.037c.038.179.092.353.163.522c.092.215.111.292.351.318c.166.015.444-.048.51.115c.096.259.141.259.399.259c.704.018 1.378.29 1.897.766c.215.273.415.557.599.851c.285.348.588.67.869 1.04c.233.292.529.54.766.84c.112.147.235.284.37.411c.071.163.17.312.292.44c.344.401.108.967-.148 1.319m-8.694 20.912c-.004 0-.092.081-.03.081a.137.137 0 0 1 .067-.03zm.109-.073c.023.067.062-.005.101.002c-.007-.076-.04-.077-.101-.002m5.997-21.383c.041-.403-.274-.481-.492-.74c.03.007-.055 1.125-.055 1.247c-.03.375-.094.747-.192 1.11a4.24 4.24 0 0 1 .647-1.043a.961.961 0 0 0 .281-.333c.066-.171-.067-.171-.189-.241m-6.879-1.754c-.015.651-.092 1.317-.092 1.939a1.795 1.795 0 0 1-.281.677c-.136.376-.247.76-.333 1.151a9.514 9.514 0 0 1-.784 1.591a1.673 1.673 0 0 0-.133.47a4.34 4.34 0 0 1-.229.74a8.705 8.705 0 0 1-.54.892c-.118.314.159.562.314.81a.37.37 0 0 1 0 .34c-.052.052-.096 0-.148 0c-.037.092.048.211-.078.259c-.048-.011-.1.015-.1.074c.063.548-.026 1.066.144 1.595c-.063.322.148.573.222.862c.403.548.37 1.28.74 1.85c.403.799.547 1.706.825 2.56a24.334 24.334 0 0 0 1.021 3.874c.094.42.163.845.207 1.273a.418.418 0 0 1 .033.244a.813.813 0 0 1-.64.229c-.126.118-.1.3-.144.455c-.181.574-.828.636-1.261.906c-.214.022-.362.229-.614.152c-.078-.044-.189-.067-.189-.178c-.104-.374.166-.636.266-.951c.015-.019.041-.03.041-.056c-.089-.03-.196-.015-.251-.089c.1-.211-.018-.459 0-.692c-.429-.348-.129-.999-.37-1.421c-.03-.059-.026-.126-.081-.174a3.995 3.995 0 0 1-1.061.289c-.34.067-.281.57-.677.57c-.207.192-.533.141-.799.211c-.333.081-.843.192-1.11-.07c.026-.059.026-.118.026-.174c.407-.274.991-.618 1.058-1.147c-.566-.94-.44-2.087-.466-3.23c-.203-.98-.107-2.061-.314-3.03a11.022 11.022 0 0 1-.921-2.808a3.686 3.686 0 0 0-.263-1.243c-.118.011-.2-.085-.3-.126c-.033.092.041.248-.1.281l-.1-.018a4.63 4.63 0 0 1-.533-.762a6.908 6.908 0 0 0-.1-.984c.055-.4.362-.703.496-1.073c.214-.784.166-1.683.459-2.423c.166-.37.366-.74.536-1.11c.037-.019.089-.067.037-.104a5.58 5.58 0 0 0 .496-1.85c-.144-.47-.518-1.08-.122-1.543c.403-.333.433-.818.607-1.247c.337-.388.869-.425 1.317-.607c.2-.104.222-.329.222-.518a2.616 2.616 0 0 0-.115-.588a1.425 1.425 0 0 1-.68-.966l-.089-.1l-.063-.278a.659.659 0 0 0-.166 0c-.144-.129.089-.389-.144-.499c-.07-.159.107-.355-.07-.5c.048-.137-.089-.255 0-.37c0-.104.141-.215 0-.285a.247.247 0 0 1 .037-.163c.022 0 .033-.03.07 0c.037.03-.019.041 0 .089c.018.048.081.048.129.048c.059-.078-.03-.167 0-.252c.03-.085.166-.141.126-.241c.222.096.288-.226.499-.2c.078-.155.226-.155.37-.155c.055-.037-.048-.104.026-.13l.152.026a.29.29 0 0 1 .192-.111c.07.004.159-.004.2.055a.708.708 0 0 1 .462.137l.03-.033c.015-.03.055-.019.089 0c.07.144.288.078.307.263c.1.019.141.141.233.159a.303.303 0 0 1 .259.137c-.041.1.026.141.074.248c.048.107-.063.3.1.3a.066.066 0 0 1 .107-.029c.044.037.044.096.044.152c-.059.048-.004.126-.041.2c-.037.074-.074.181-.037.252c.037.07.144.019.144.118c-.218.107-.037.363-.218.477a.6.6 0 0 1-.17.533c-.011.1.081.074.152.148c.07.074.148.196.263.148c.03-.026.055-.03.081-.074c.026-.044-.063-.137 0-.137s.081.067.122.1a.212.212 0 0 1-.026.189c.133.089.007.466.27.318c.063-.03.118.033.152.07a.171.171 0 0 1 .067.226a.463.463 0 0 0-.174.314c.089.03.192.122.281.03c.048-.033.018-.115.018-.152s-.037-.052-.037-.092c.063-.07.089.041.115.07a.31.31 0 0 1 .026.222c-.03.092-.196.133-.07.229a.338.338 0 0 1-.019.137a.637.637 0 0 0 .185 0c.588.215.64.877.773 1.395c.07.603.096 1.173.126 1.809c-.01.049-.066.06-.095.09m-2.46-7.293c-.018.019.007.059.037.044s.03-.015.03-.044zm.452 9.421c-.177.256-.326.53-.444.818c-.019.137.085.244.037.37a2.552 2.552 0 0 0-.303 0l.048.281c.185.372.293.777.318 1.191V79a5.471 5.471 0 0 0 .499-1.672c.089-.499.303-.969.411-1.48c-.026-.063.011-.189-.074-.189c-.211.192-.3.451-.492.662m.747-6.172c0-.041.026-.078 0-.122c-.126-.015-.244.048-.325-.044l.022.078a.325.325 0 0 0 .303.088m-6.043 5.387c-.264.506-.56.995-.884 1.465l-.44.622c.074.189.185.355.266.54a3.2 3.2 0 0 1 .126 1.425c-.022.437-.078.873-.122 1.31c-.015.221.022.443.107.647c.067.262.094.533.081.803c-.012.463-.048.925-.107 1.384c-.015.425.118 1.165-.118 1.506c.026.529.026 1.058.026 1.587c.036.474.146.94.325 1.38c.277.972.442 1.973.492 2.982c.052.535.067 1.073.044 1.61a1.58 1.58 0 0 0 .055.71c.075.187.126.382.152.581c.07.451-.007.899.037 1.347c.022.218.044 1.151-.407.884c.046.153.069.311.07.47c-.03.181-.04.365-.03.548a1.42 1.42 0 0 1-.041.611a1.461 1.461 0 0 1-.514.196a.893.893 0 0 1-.481 0a1.68 1.68 0 0 1-.462.226a3.333 3.333 0 0 1-1.158.133a5.52 5.52 0 0 1-1.109-.148a5.236 5.236 0 0 1-.525-.148c-.181-.063-.111-.433-.048-.603c.063-.17.311-.278.455-.389c.2-.159.392-.322.599-.462c.259-.3.669-.437.888-.781c-.04-.037-.405-.023-.151-.191a.096.096 0 0 0-.015.054l-.015.011c.055 0 .24.052.285-.085c-.069-.024-.203-.051-.251.015c-.125-.007-.285-.015-.322-.096c-.037-.081 0-.259 0-.37c-.019-.37-.063-.74-.063-1.11c0-.707-.137-1.343-.178-2.105c-.041-.762-.092-1.502-.115-2.242a5.25 5.25 0 0 0-.34-2.083c-.214.684.085 1.502.133 2.22c.055.844-.107 1.643-.133 2.479a5.36 5.36 0 0 1-.115 1.313a1.762 1.762 0 0 0-.059.555a.614.614 0 0 1-.152.433c-.207.189-.107.692-.107.988c0 .296-.599.352-.84.37a1.846 1.846 0 0 1-.514-.03c-.155-.037-.303.067-.459.115a4.73 4.73 0 0 1-1.139.192a5.45 5.45 0 0 1-1.25-.055c-.229-.044-.917-.159-.917-.444a.913.913 0 0 1 .115-.466c.078-.13.307-.148.448-.181c.24-.007.476-.063.693-.162a1.753 1.753 0 0 1-.26-.13c-.03-.07-.129-.081-.129-.17c-.2.041-.406.041-.607 0c-.174-.17-.459-.067-.629-.244c-.092-.107-.285-.104-.285-.289c-.111-.274.133-.544-.018-.814c-.067-.204.129-.385.018-.599c.007-.141-.048-.281-.048-.437c-.078-.507.015-1.114-.192-1.584a8.534 8.534 0 0 1-.122-1.325c-.133-.093-.104-.266-.104-.4c-.081-.429-.281-.818-.399-1.236a2.471 2.471 0 0 1-.277-1.48a4.55 4.55 0 0 0-.455-1.073c-.2-.548-.632-.969-.817-1.517a5.27 5.27 0 0 0-.74-1.14l-.163-.126l-.026.026c.062.703.046 1.41-.048 2.109c.084.452.113.913.085 1.373c-.03.396.011.795.122 1.177c.078.67.126 1.299.144 1.968c.126.611.163 1.262.533 1.776c.322.899.115 2.013.115 2.979a.74.74 0 0 1-.2.544a.685.685 0 0 1-.484.03c-.022.1.044.189-.022.281a1.11 1.11 0 0 1-1.073.47a1.544 1.544 0 0 1-.64-.296a.594.594 0 0 1-.037-.496c-.133-.196.059-.429.059-.647c.074-.203 0-.407.104-.599c.007-.192-.2-.296-.285-.455c-.159-.448-.429-.847-.37-1.38c-.004-.37-.041-.74-.041-1.11a3.567 3.567 0 0 1-.048-1.809a1.488 1.488 0 0 0-.129-.773c-.152-.67-.118-1.428-.292-2.068a9.946 9.946 0 0 0-.281-2.131c.003-.494-.022-.988-.074-1.48l-.026.048v.54c.024.207.024.415 0 .622c-.111.037-.189-.067-.277-.096c.03.159.148.329.104.529c-.033.055-.004.163-.104.163h-.078c-.144-.133-.118-.385-.344-.444c-.063-.13-.292-.163-.292-.337c-.178-.041-.148-.244-.285-.318c-.048-.318-.277-.581-.192-.932c.007-.333.248-.588.2-.936a1.48 1.48 0 0 1 .107-.592c-.052-.677.148-1.325.148-1.968c.074-.655.277-1.243.333-1.898c.072-.239.127-.482.167-.727a1.38 1.38 0 0 0-.455.313c-.366.192-.814.178-1.135.492c-.033.237.07.455.048.692a1.168 1.168 0 0 0-.085.858a.841.841 0 0 0 0 .585c.026.222-.03.425.122.592l-.052.74a3.73 3.73 0 0 0 .074 1.08c.041.536-.122 1.162.078 1.646c-.022.122.115.089.144.163c.1.111 0 .248 0 .37c.011.389-.074.851-.074 1.251c.049.342.074.687.074 1.032c.018.248-.185.503-.03.74c.063.178-.107.27-.107.429c.266.921.026 1.994.089 2.96c.148.459.107.955.255 1.41c.281.411.248.955.595 1.325a.39.39 0 0 1-.055.37c.056.2.066.41.03.614c.248.551.995.836.936 1.51c-.07.396-.488.4-.78.47a1.668 1.668 0 0 1-1.18-.422c-.237-.784-1.024-.821-1.516-1.288a1.093 1.093 0 0 1-.067-.862a2.162 2.162 0 0 1-.333-.481c-.056-.433-.507-.707-.444-1.173c-.237-.474-.126-1.095-.37-1.561a1.271 1.271 0 0 1-.203-.784c.031-.689.02-1.38-.033-2.068a2.725 2.725 0 0 0-.218-1.08l-.078-.692a5.719 5.719 0 0 1-.329-1.687a3.543 3.543 0 0 1-.222-.74c-.078.096-.015.307-.192.307a7.255 7.255 0 0 1-.189 1.687a9 9 0 0 0-.455 1.698c-.359.533-.329 1.243-.625 1.802c-.115.629-.214 1.269-.34 1.891c-.1.833-.34 1.602-.392 2.453c-.136.327-.231.67-.281 1.021c-.041.104-.137.181-.159.292a.903.903 0 0 0-.307.292c-.17.063-.281-.115-.444-.074c-.29.148-.528.38-.684.666a1.65 1.65 0 0 1-1.109.807a.781.781 0 0 1-.858-.329a.742.742 0 0 1 .1-.585c.266-.292.436-.666.688-.944c.144-.126-.07-.185-.1-.285c.189-.488-.096-1.125.141-1.598a4.77 4.77 0 0 0 .57-1.302c.192-.566.185-1.206.414-1.769a3.817 3.817 0 0 1 .211-1.284c-.026-.511-.096-1.006-.118-1.521c.027-.507.017-1.015-.03-1.521a7.41 7.41 0 0 1 .115-.877c.004-.07.1-.144.044-.203c-.033-.226-.074-.444-.1-.681c-.026-.237.152-.377.285-.511a7.72 7.72 0 0 0 .155-1.462c.122-.603-.037-1.291.333-1.795c-.166-.115-.041-.311-.041-.463c.071-.45.086-.908.044-1.362a.896.896 0 0 0 .055-.37a.149.149 0 0 0-.089-.137a2.902 2.902 0 0 1-1.254-.511a3.767 3.767 0 0 0-.439-.271c.01.048.02.097.032.145c.015.648-.008 1.297-.07 1.943c.052.907-.104 1.728.078 2.59c.058.418.049.843-.026 1.258c-.037.218-.263.355-.307.57c-.126.078-.037.385-.27.281a.311.311 0 0 1-.074-.229l-.019.044c.048.488.244.925.244 1.428l.218 1.828a3.82 3.82 0 0 1-.155 1.41a9.75 9.75 0 0 1-.514.962c-.307 1.158-1.021 2.146-1.257 3.33c.026.307-.055.659.263.814c.141.155.159.366.296.525c.237.263.669.244.769.633a.543.543 0 0 1 .026.326c-.3.252-.702.347-1.084.255a1.685 1.685 0 0 1-.95-.655c-.27-.092-.71.011-.74-.4a1.39 1.39 0 0 1 .018-.241c-.041-.303.137-.525.089-.825c.018-.529.263-.977.37-1.48c.059-.644.174-1.265.237-1.909c.148-.625.57-1.136.647-1.787a1.481 1.481 0 0 0-.133-1.043c-.466-.918-.754-1.913-1.269-2.812c-.178-.056-.355.037-.547.019l-.026.026c.042.714.036 1.429-.019 2.142c-.129.588.044 1.195.026 1.791c-.007.522.148.999.181 1.513c.07.792.048 1.713.089 2.494c.067.454.107.911.118 1.369l.055.078a1.937 1.937 0 0 1-.37 1.11c-.085.163-.055.4-.214.533a.906.906 0 0 1-.814.303a1.108 1.108 0 0 1-.471-.162a.718.718 0 0 1 .001.18c-.03.274-.092.344-.37.414a1.442 1.442 0 0 1-.666.033a4.227 4.227 0 0 1-1.309-.485a4.673 4.673 0 0 1-.917-.721c-.133-.133-.374-.152-.544-.241a1.298 1.298 0 0 1-.477-.418c-.133-.192-.048-.355 0-.562c.048-.207-.041-.274-.174-.396c-.133-.122-.111-.381-.085-.54a1.777 1.777 0 0 0-.111-.74c-.244-1.021-.322-2.072-.462-3.108a6.268 6.268 0 0 1 .048-1.043a3.644 3.644 0 0 0-.166-1.173a11.527 11.527 0 0 1-.503-2.139c-.03-.37-.074-.74-.104-1.11a7.33 7.33 0 0 0-.107-1.136a4.472 4.472 0 0 1-.24-.995c-.004-.37-.078-.74-.078-1.11c-.148.104-.152.311-.178.474a3.408 3.408 0 0 0-.148.721c-.152.507-.325 1.01-.481 1.517c-.151.486-.275.98-.37 1.48a8.353 8.353 0 0 1-.529 1.521c-.187.444-.345.9-.473 1.365c-.093.54-.152 1.085-.178 1.632c-.063.511-.189 1.01-.281 1.513c-.052.266-.1.533-.155.799a3.862 3.862 0 0 1-.118.855c-.085.192-.211.366-.296.562c.008.199-.011.398-.055.592c-.085.229-.433.126-.455.37c-.022.244.063.551-.074.77a.861.861 0 0 1-.37.337c-.09.039-.184.065-.281.078c-.044.07-.093.137-.148.2c-.188.219-.41.403-.657.549a.639.639 0 0 1-.061.18c-.03.107-.144.159-.196.241c-.233.325-.43.174-.587.733c-.11.232-.286.628-.567.554c-.362-.185-.422-.61-.607-.925c-.026-.13-.2-.17-.233-.285c-.089.007-.129-.093-.17-.152a3.988 3.988 0 0 0-.203-1.206c-.115-.625-.07-1.31-.196-1.924c-.092-.762-.44-1.413-.607-2.153a22.613 22.613 0 0 1-.396-1.868c-.288-.882-.456-1.8-.499-2.727a40.037 40.037 0 0 1-.74-2.908c-.022-.107-.03-.241-.118-.307a1.977 1.977 0 0 0-.052.773c.08.275.105.563.074.847c.1 1.147.063 2.227.159 3.367l.129 2.253c-.022 1.158.166 2.279.148 3.426l-.067.137c.041.37-.436.326-.581.592c-.248.185-.496.374-.74.555a9.16 9.16 0 0 1-1.209.181c-.077.01-.161.039-.247.055c.133.189.229.394.229.64c-.052.185.104.463-.155.533c-.529.292-1.128-.056-1.638-.226c-.388-.181-.599-.647-.928-.921a.976.976 0 0 1-.913-.407c-.281-.318-.144-.74-.166-1.154c-.2-.067-.159-.329-.229-.492a7.568 7.568 0 0 1 0-.825c-.248-.448-.248-1.018-.507-1.48a8.742 8.742 0 0 1-.222-2.523c-.222-.888-.288-1.861-.566-2.72c-.144-.788-.407-1.528-.566-2.312a8.662 8.662 0 0 1-.3 1.443c-.1.332-.156.675-.166 1.021c-.344.844-.448 1.795-.669 2.694c-.092.348-.007.666-.067 1.036a10.852 10.852 0 0 0-.337 2.523a4.096 4.096 0 0 0-.107 1.328c-.004.096-.126.148-.126.244c-.067.037-.155.078-.185.159c.037.245.049.493.037.74a2.094 2.094 0 0 1-.555.44c-.266.144-.621.104-.81.37c-.096.414-.503.625-.81.818a1.895 1.895 0 0 1-.906.122a.953.953 0 0 1-.599-.237c-.207-.322.022-.699.181-.984l.418-.477c.128-.321.318-.614.558-.862c.133-.229.07-.544.133-.799l-.115-.274c.071-.269.182-.526.329-.762c.085-.385.104-.755.159-1.162a3.065 3.065 0 0 0-.081-.799a7.01 7.01 0 0 1 .477-2.483a6.484 6.484 0 0 0 0-1.132c-.015-1.254-.148-2.56-.196-3.781a2.593 2.593 0 0 1-.913-.599c-.033-.792.255-1.473.3-2.242c.007-.067.017-.133.025-.2a5.09 5.09 0 0 1-.081.237c-.067.17-.218.196-.311.337c-.044 1.077.078 2.124.03 3.215c-.048 1.091-.2 2.172-.274 3.256c-.019.259-.037.518-.037.777a.438.438 0 0 1-.281.47a1.277 1.277 0 0 1-.566.159a2.643 2.643 0 0 1-.333 0c-.211-.011-.222.037-.27.229a2.691 2.691 0 0 1-.192.633a1.81 1.81 0 0 0-.03.74a13.414 13.414 0 0 1-.122 1.639c-.126.988-.425 2.016-.425 3.015c-.005.415.101.824.307 1.184c.231.322.53.588.876.781a.621.621 0 0 1 .318.455c.011.3-.207.3-.451.3a2.22 2.22 0 0 1-1.283-.37c-.192-.137-.381-.059-.603-.137a1.286 1.286 0 0 1-.288-.148a1.839 1.839 0 0 0 0-.348a1.133 1.133 0 0 1 .152-.61c.103-.233.151-.486.141-.74a11.332 11.332 0 0 0-.141-2.298c-.109.488-.191.982-.244 1.48a5.914 5.914 0 0 0-.104.762c-.015.255.074.551.078.74c.004.189-.159.289-.107.481c.052.207.074.42.067.633a5.878 5.878 0 0 1-.044.607a.907.907 0 0 1-.507.155l-.06.004a.369.369 0 0 1-.099.244a.418.418 0 0 1-.263.137c-.249.12-.517.196-.791.226c-.2.003-.398-.037-.581-.118c-.307-.107-.436-.481-.74-.551c-.244-.078-.514.044-.74-.037a3.266 3.266 0 0 1-1.11.089c-.333-.03-.314-.396-.425-.614a5.603 5.603 0 0 1-.825-1.539c-.033-.056.004-.163-.074-.189l-.148-.592c-.048-.699-.048-1.465-.07-2.179c.011-.633-.144-1.21-.144-1.85c-.004-.374-.104-.718-.104-1.088c.107-.414-.155-.766-.089-1.173c-.037-.314-.215-.577-.263-.892a44.727 44.727 0 0 0-1.043-2.416a2.903 2.903 0 0 0-.196-.455c.044.851.133 1.739.178 2.638c.108.629.162 1.267.163 1.906c.005 1.118.118 2.233.337 3.33c.092.566.078 1.14.115 1.728a4.202 4.202 0 0 1 0 1.906c-.1.252-.266-.067-.425.041c.019.123.019.247 0 .37c-.099.127-.225.23-.37.3c-.381.1-.899.189-1.195-.137a.777.777 0 0 1-.026-.71c-.026-.063-.089-.015-.111-.063c.025-.127.062-.25.111-.37c.019-.141.118-.285.052-.429c.082-.342.096-.696.041-1.043c-.215-.792-.155-1.598-.436-2.364a2.752 2.752 0 0 0-.207-.862c-.185-.388-.107-.829-.229-1.236a2.48 2.48 0 0 0-.192-.999c-.129-.777-.325-1.576-.425-2.316l-.3-1.85l-.037-.059a3.16 3.16 0 0 0 .03.999c-.022.055.007.185-.111.137c-.118-.048-.174-.185-.226-.318c-.052-.133-.007-.274-.074-.37c-.048.078-.026.174-.026.259c-.092.348.362.496.3.866c-.004.037-.026.063-.074.063l-.399-.289c-.1-.052-.144-.174-.255-.192a2.49 2.49 0 0 1-.344-.648a1.041 1.041 0 0 0-.074-.285c.044-.388.129-.766.2-1.14c.033-.588.067-1.177.155-1.739c-.052-1.543.636-2.842.481-4.388l.004-.165a.644.644 0 0 1-.5.15c-.263-.015-.496-.085-.74-.104c-.307 0-.614-.026-.917-.078c-.115 1.713.251 3.441.337 5.15c.022.433.059.866.059 1.299c.011.196.03.392.03.585c.044.215.054.436.03.655a2.417 2.417 0 0 0-.026.984c.011.474 0 .947-.026 1.421a34.01 34.01 0 0 1-.248 2.449c-.112.86-.112 1.73 0 2.59c.115.907.166 1.831.207 2.756c.014.411.071.819.17 1.217c.037.167.133.448 0 .588a1.486 1.486 0 0 1-.447.248c-.019.167.366.207.422.167c.196-.133.588.2.717.37c-.144-.078-.396-.329-.558-.329c.11.152.261.269.436.337c.133.052.444.063.503.226c.488.174 1.11.192 1.505.562c-.015.159.03.307.007.47a1.192 1.192 0 0 1-.37.155a3.459 3.459 0 0 1-.936.063a6.581 6.581 0 0 1-1.997-.27c-.178-.063-.233-.048-.34.022c-.107.07-.314-.03-.436-.03a2.841 2.841 0 0 1-.902-.178c.037-.333-.044-.655-.044-.988c.004-.155.133-.359-.037-.407c-.244-.067-.189-.281-.211-.496c-.144-1.395-.447-2.775-.533-4.177a21.573 21.573 0 0 0-.214-2.283a15.374 15.374 0 0 1-.392-2.305c-.226.659-.303 1.373-.625 2.002a2.003 2.003 0 0 1-.226.37a1.687 1.687 0 0 1-.233.536a3.862 3.862 0 0 0-.322 1.14c-.178.818-.296 1.632-.448 2.472c-.152.84-.37 1.661-.521 2.497a5.007 5.007 0 0 0-.067.533c-.022.233-.159.215-.392.203c-.233-.011-.266-.007-.233.241c.051.157.092.316.128.477c.24.085.509.132.493.477c-.011.096.033.252-.126.289c-.09.045-.183.081-.278.109c.015.117.031.234.045.354c.044.385.096.758-.37.807c-.411.044-1.683-.011-1.79-.555a2.497 2.497 0 0 1 .127-.936a1.853 1.853 0 0 1-.127-.019c-.174-.17-.466-.063-.636-.241c-.092-.111-.292-.107-.292-.292c-.096-.27.152-.54 0-.81c-.085-.207.115-.388 0-.599c.007-.141-.048-.281-.048-.437c-.074-.507.019-1.114-.192-1.58a8.651 8.651 0 0 1-.126-1.325c-.137-.092-.104-.263-.104-.396c-.085-.433-.285-.818-.407-1.236a2.448 2.448 0 0 1-.281-1.48a4.614 4.614 0 0 0-.462-1.073c-.2-.548-.64-.969-.828-1.517a5.344 5.344 0 0 0-.74-1.136l-.166-.126l-.03.03c.064.7.047 1.405-.048 2.102c.086.452.115.913.085 1.373a3.32 3.32 0 0 0 .126 1.177c.081.651.129 1.305.144 1.961c.129.614.174 1.262.544 1.776c.325.884.115 1.998.115 2.96a.741.741 0 0 1-.203.544a.686.686 0 0 1-.492.03c-.019.1.044.189-.019.281a1.108 1.108 0 0 1-1.091.47a1.554 1.554 0 0 1-.647-.296a.591.591 0 0 1-.041-.496c-.133-.192.063-.425.063-.644c.074-.203 0-.407.104-.599c.007-.192-.203-.296-.288-.455c-.159-.448-.433-.844-.37-1.38c-.004-.37-.041-.74-.041-1.11a3.48 3.48 0 0 1-.048-1.806a1.521 1.521 0 0 0-.133-.773c-.155-.67-.122-1.424-.3-2.065a10.021 10.021 0 0 0-.3-2.22a.57.57 0 0 0-.085-.2c-.111.037-.189-.067-.281-.096c.033.159.152.329.104.529c-.033.052-.004.163-.104.163h-.078c-.148-.133-.118-.385-.348-.444c-.067-.13-.3-.167-.3-.337c-.159-.036-.153-.2-.25-.289c-.146 1.091-.476 2.195-.619 3.283c-.025.498-.143 1.457-.187 2.727c-.012.347.143 1.139.178 2.457c.035 1.313-.127 3.004-.133 4.144c-.007 1.282-.042 2.116-.111 2.603c-.027.192-.071.055-.096.15c-.086.318-.023.338-.104.592c-.056.177-.292.337-.393.407c-.659.457-1.984.208-2.386-.378c.009-.311-.124-.624-.228-.958c-.079-.254-.141-.521-.112-.811c-2.546-.329-4.516-.755-.984-2.368c.302-1.664-.146-3.535-.185-5.254c-.458-1.099-.459-2.384-.629-3.519c-.404-.544.055-1.195-.321-1.71c.051-1.482-.536-3.254.137-4.895c-1.005-.276.064-1.273.163-2.005c-1.129-.842-1.586-.129-1.601-1.969c-.027-.303.206-.436.407-.595c-.074-.322.324-.333.407-.514c-.007-.137.092-.222.177-.274c.288-.07.244-.485.581-.518c.712-1.242 1.911-2.105 2.57-3.411c-.752-1.027-.448-2.788-.584-3.644c.203.067.067-.2.229-.204c-.029-.133.259-.182.203-.355c.099.015.218.084.233-.096c.141.088.219-.015.27-.107c.141.156.294-.136.407-.152c.104.203.178-.159.329-.022c.128.13.282-.188.374.081c.111.022.17-.17.288-.067c.022-.022.067 0 .107 0c.019.107.148.033.174.133c1.419.582 1.403 2.858.27 3.615c0 .263.226 0 .37.078c.189.137-.107.511.203.544c.264.602.862.623 1.246 1.077c.562.718.338 1.667.137 2.446c.152.307-.225.529-.096.844c.015.117.1.23.111.349c.03-.438.099-.865.122-1.296c.141-.503.181-1.062.51-1.48c.174-.179.394-.307.636-.37h.041c.03-.133.122-.244.03-.37c-.059-.015-.181-.044-.166-.067c.015-.022.041.026.078-.022s.07-.111.037-.159a.313.313 0 0 1-.122 0a.096.096 0 0 1-.048-.085c.096.063.078-.037.17-.037a.57.57 0 0 0 .078-.522c-.055-.092-.189-.148-.163-.274a.776.776 0 0 1 .078-.27c-.052-.004-.074.118-.137.063l.002-.002a.049.049 0 0 0-.002-.068c.011-.055.059-.096.059-.155l-.067-.037c.251-.159-.115-.296 0-.503c-.059-.111-.185-.255-.096-.407c.026-.037.126.011.081-.085c-.044-.096-.17.007-.192-.096c-.044-.007-.129.022-.129-.041a.403.403 0 0 0 .144-.463c-.055-.081 0-.2 0-.289c.229-.111 0-.566.37-.481a.117.117 0 0 0 .059-.063c0-.078-.07-.144 0-.207c.122-.185.366-.063.473-.274c.152-.089.277-.211.473-.211c.155-.207.388-.048.577-.163c.074.007.118.074.178.115c.185-.048.37-.218.581-.107c.092.048.2.067.296.115l.215.252c.144 0 .337-.055.433.089c.144.131.103.35.239.483l-.028.012c-.022.044.03.056.092.052l-.034-.038a.34.34 0 0 0 .049.031c.183.232.279.522.27.818c.157.08.265.232.288.407c.096.026.214.026.281.096c.077.184.132.377.166.574c.096-.011.266-.085.296.067c.148.141-.026.474.263.511c.122.17-.004.411.144.57c.074.063.141.126.244.126l.067-.067v.074c.085-.037.07-.196.166-.152c.03.129-.126.222-.192.318c-.092.026-.17-.048-.263-.048v.215c.107-.015.214.063.248.152c.033.089-.055.148-.096.222c-.104-.026.018-.222-.104-.222c.037.189-.174.459.067.581c.07.026.174-.052.174-.089s.026-.037.055-.037v.166a.218.218 0 0 1-.248.081a.312.312 0 0 1-.144-.104c-.052.092.074.207.104.241c.03.033.122.007.089.085c.658.407.451 1.24.614 1.887c.215.955-.037 2.079.251 3.034c.074.984.203 1.917.203 2.905c-.089.466.011.94-.089 1.399c-.004.373.035.746.118 1.11c-.081.388 0 .869-.329 1.169c.078.226.174.445.288.655c.196.644.714 1.169.858 1.85c.038.222.066.446.083.67c.093-.268.163-.544.209-.825c.033-.588.111-1.225.189-1.757c.078-.533.163-1.066.229-1.598c.033-.278.063-.551.085-.829c.026-.144.026-.285.026-.429c.007-.211-.104-.2-.266-.307c-.251-.163-.203-.333-.159-.566c.044-.233.096-.466.152-.696c.118-.514.259-1.021.37-1.535a8.27 8.27 0 0 0 .141-3.23a20.84 20.84 0 0 1-.473-3.308c0-.233-.211-.181-.37-.37s-.444-.34-.507-.577a2.119 2.119 0 0 1-.178-.699c.004-.271.076-.537.211-.773a2.023 2.023 0 0 1 1.431-1.021c.153-.012.307-.006.459.019c.263.037.129-.085.296-.196c.251.033.333-.289.599-.181c.037-.159.092-.318.144-.474c.055-.217.075-.442.059-.666c.004-.092.015-.184.033-.274a.84.84 0 0 1-.089-.351c.006-.183.023-.366.052-.548c.089-.603.374-1.276 1.065-1.343a3.011 3.011 0 0 1 1.217.078c.379.087.701.334.884.677c.083.19.122.396.115.603c.015.155-.055.477.044.607c.1.13.189.137.159.326c-.018.106-.052.241-.17.209c.07-.005.096-.028.096-.128v-.007c-.052.011-.163-.03-.2.026c.04.022.061.067.052.111h.033c-.003.084-.057.124-.125.16c-.148.078-.126.189-.148.333c-.041.252-.148.462-.189.707c-.074.459-.766 0-.858.37a.518.518 0 0 0 .37.411c.281.063.57.078.851.141c.532.191.992.543 1.317 1.006c.411.511.856.994 1.331 1.447c.237.237.473.474.717.707c.061.057.135.12.204.189c.034-.3.077-.598.128-.896h-.041a.704.704 0 0 1-.044-.692c-.033-.019-.033-.048-.033-.07a.397.397 0 0 0 .226-.13c-.044-.019-.1.004-.148-.019a.314.314 0 0 1-.181-.244c.074.041.133.174.192.185c.059.011.133.011.17-.048c.037-.059-.011-.115-.059-.148c-.107-.115-.033-.3 0-.414c.033-.115.155-.159.244-.207c-.026-.059.007-.133-.026-.185a.234.234 0 0 1-.181.074a.134.134 0 0 1-.089-.137c.022-.041.037-.122.063-.118c.026.004.011.044.026.074s0 .089.055.089c.019-.085-.018-.189.019-.281c.007-.185.237-.115.277-.274a.47.47 0 0 1-.07-.333c.067-.026.015-.122.089-.122a.686.686 0 0 0 0 .192c.022.037.044.1.096.1c.118-.052.037-.178.074-.274c-.007-.222.296-.311.296-.525c.026-.126-.1-.196-.163-.281c-.085-.178.044-.352.067-.529a.338.338 0 0 1-.129-.333c.155-.181-.015-.429.155-.603c.096-.226.118-.54.399-.596c.196-.033.104-.289.274-.37a.5.5 0 0 1 .418 0c.078-.041.118-.118.207-.118c.203-.192.459 0 .692 0a.384.384 0 0 1 .237 0c0-.044.044-.044.081-.044c.159.093.344.115.499.215a.227.227 0 0 1 .189-.052c.07.026.137.1.137.181c.152.089.078.307.274.337c.055.044.178.155.163.196c-.015.041-.1.026-.1.041c0 .015 0 .007.03.033c.03.026 0 .044 0 .078a.627.627 0 0 1 .155.525c.248.17-.033.47.133.662c.044.063-.067.041-.096.063c.037.107-.037.181-.048.292s.129.189.137.263a.395.395 0 0 1-.055.192c-.015.026 0 .07-.052.07a.086.086 0 0 1-.041-.089c.074-.092 0-.17 0-.255c-.089-.152-.026-.292-.026-.455c-.033.037-.096.078-.074.144c-.092.126.022.292 0 .37c-.022.078-.111.178-.041.237a.203.203 0 0 1 .122.255c-.026.037-.022.1-.081.1a.064.064 0 0 1 0-.07a.171.171 0 0 0-.03-.203c-.277-.019-.041-.259-.1-.388c-.059.163-.059.329-.107.488c.05.063.118.109.196.13a.04.04 0 0 1 0 .044a.368.368 0 0 1-.27-.085c-.067.041-.015.107-.067.148c-.052.041-.141-.041-.137-.026c.004.015.022.022.022.044a.297.297 0 0 1-.174.115c-.041.092-.07.196-.115.289v.536a2.676 2.676 0 0 0 1.738.688c.189.111.429.107.581.303c.063.222.237.396.27.625c.095.387.213.767.321 1.15a.642.642 0 0 1 .179-.28c.433-.377.784-.858 1.198-1.258c.387-.442.796-.863 1.228-1.262c.199-.165.448-.255.706-.255c.141-.011.329.059.436-.048c.087-.107.163-.222.226-.344c-.34.067-.625.503-.995.27c.618-.166 1.213-.425 1.213-1.165c-.085.213-.224.4-.403.544c-.102.08-.209.153-.322.218c-.152.089-.163-.022-.303-.07c.448-.093.802-.436.91-.881c.026-.458.101-.912.226-1.354a4.04 4.04 0 0 1 .632-1.058c.126-.154.289-.273.473-.348a.522.522 0 0 1 .251.026c.111.055.148-.044.248-.107c.27-.178.666.059.876.244c.281.262.486.596.592.966c.13.428.188.874.174 1.321c-.004.26-.026.52-.067.777c-.037.263.096.437.137.685c-.266.019-.288-.503-.288-.673c-.077.24-.122.488-.133.74c.004.085.17.444.078.496a.04.04 0 0 1-.022-.033c-.044.015.085.222.085.222c.117.127.255.233.407.314c.202.125.314.331.408.547c.009-.043.02-.086.033-.129c.222-1.128.385-2.275.662-3.385c.1-.411.004-.918.348-1.195c.403-.12.794-.276 1.169-.466c.477-.104.921-.277 1.409-.348a.767.767 0 0 0 .429-.496a1.543 1.543 0 0 0-.07-.548h-.03l-.244-.259c-.004-.459-.355-.77-.322-1.24c-.012-.23.022-.46.1-.677a1.72 1.72 0 0 1 .214-.888a.94.94 0 0 1 .436-.74c.152-.122.355-.111.521-.192c.178.111.133-.163.255-.163v.085l.255-.085c0-.019-.055-.048 0-.048s-.015.03.026.048c.333-.107.603.078.899.126c.178.085.362.292.547.107c.03.081-.089.137-.141.185a.81.81 0 0 0 .407.244c-.126.1.011.178.07.248c.196.269.306.592.314.925c-.122.181.052.388-.041.588c-.022.192-.074.403-.092.614a.057.057 0 0 0 0 .026c-.011.124-.001.249.03.37l-.092.037a1.164 1.164 0 0 1-.115.174a.533.533 0 0 1-.037.085a.073.073 0 0 1-.055.033a.822.822 0 0 0-.211.418a.2.2 0 0 1-.063.081a.477.477 0 0 0-.018.488l.333.307a17.01 17.01 0 0 1 2.511.74c.496.237.362.832.496 1.269c-.022.773.348 1.362.348 2.128c.092.762.152 1.439.174 2.22a3.421 3.421 0 0 1-1.11 2.657c.184.855.299 1.735.45 2.602c.091-.278.177-.558.246-.845c.307-1.191.888-2.261 1.01-3.526a3.261 3.261 0 0 0-.078-1.051c-.159-.647.096-1.188.344-1.728a.332.332 0 0 1-.192-.048c-.141-.056-.137-.229-.288-.318c-.1-.03-.189.122-.218.141c-.03.018-.063.052-.085.018l.126-.159h-.2c-.044-.019-.129-.048-.107-.107c.067.05.153.065.233.041a1 1 0 0 0 .477-.74c-.067.089-.089.192-.148.285a.56.56 0 0 1-.488.285c-.03.007-.067-.004-.067-.041c.218.03.362-.122.492-.277c.234-.432.33-.925.274-1.413a1.686 1.686 0 0 0-.325 1.243h-.022a1.76 1.76 0 0 1 .263-1.236c.026-.211-.163.052-.255-.022l.141-.07c.067-.03.018-.089.107-.089c.292-.196.259-.57.44-.832a.894.894 0 0 0 .214-.422a1.569 1.569 0 0 1 0-.74a2.28 2.28 0 0 1-.026-1.11a1.98 1.98 0 0 1 .115-.673a1.426 1.426 0 0 1 1.084-.714c.152-.063.34.037.477-.041l-.085-.044c.144-.037.292.056.436.056a.145.145 0 0 0-.055-.074c-.052-.056-.137-.089-.166-.148a.656.656 0 0 1 .403.318a1.11 1.11 0 0 1 1.091.144c.048.078.211.152.166.244c.214.24.393.509.533.799a2.775 2.775 0 0 1-.063 2.194a6.645 6.645 0 0 0 0 .936a.997.997 0 0 1 .525-.033c.729.215.828 1.036 1.143 1.595c.181.555.54 1.066.636 1.665c.026.119.057.239.092.359c.129-.314.279-.61.37-.981c.118-.481.17-.98.263-1.48c.207-1.151 1.476-2.105 2.53-2.427c.289-.091.567-.215.828-.37c.348-.2.096-.525-.022-.781a1.053 1.053 0 0 1-.063-.17c-.03-.141-.085-.122-.166-.233a1.421 1.421 0 0 1-.17-.44a1.519 1.519 0 0 1-.104-.44c-.007-.2.037-.144.17-.181c-.181-.633-.329-1.202.078-1.776c.154-.258.384-.462.658-.585c.128-.049.259-.091.392-.126c.157.02.316.02.473 0c1.032.185 1.505.962 1.435 1.976c.063.107.214-.015.251.178c.031.172.039.348.022.522a.821.821 0 0 1-.152.44a.326.326 0 0 1-.163.118c-.122.03-.063.241-.063.37c0 .238-.022.476-.067.71a2.456 2.456 0 0 1-.089.329c-.059.159.037.148.174.222c.473.252 1.021.396 1.479.681a5.72 5.72 0 0 1 1.065.792c.333.373.548.837.618 1.332c.182.804.585 1.522.906 2.278a.97.97 0 0 1 .137-.058c.296-.311.288-.729.533-1.051a.953.953 0 0 0 .055-.389l-.137.237h-.055c.045-.14.073-.286.081-.433c-.048-.022-.089.07-.144.037c.193-.198.301-.464.3-.74a1.776 1.776 0 0 1-.288.433c.142-.23.25-.479.322-.74c-.115-.033 0-.122 0-.181c.055-.2.107-.403.163-.603a1.674 1.674 0 0 1 .292-1.251c.281-.263.459-.662.865-.681c.241-.17.527-.264.821-.27a.69.69 0 0 1 .54.174v-.048c.085-.026.148.133.215.03c.067.052.107-.044.17 0c-.033.122.081.17.155.189c.074.018.115-.081.181-.022l-.026.067c.129.015.17.133.215.237c.322.263.24.666.37 1.003c.052.229-.048.403-.026.64c-.07.118 0 .241 0 .37a2.466 2.466 0 0 1-.499 1.273a2.839 2.839 0 0 0-.089.655c.377.086.761.139 1.146.159c.747.274.71 1.121.95 1.728c.073.229.137.459.198.691c.073-.252.148-.503.209-.762c.19-.39.338-.799.44-1.221c.092-.185.222-.374.318-.555a4.217 4.217 0 0 1 .814-1.639a6.205 6.205 0 0 1 1.875-.899c.388.037.662-.24.965-.437a1.94 1.94 0 0 0 0-.444a.596.596 0 0 1-.178-.111c-.048-.048-.137-.044-.137-.141c-.107-.004-.085-.133-.085-.218a1.519 1.519 0 0 1-.115-.488a3.622 3.622 0 0 1-.096-.463l-.1-.255c-.129-.255.007-.599-.104-.851a.888.888 0 0 1 .277-.895a1.424 1.424 0 0 1 1.183-.884c.059-.126.148-.004.233-.089l-.033-.137c.085-.104.141.115.229.033c.019.048.004.107.052.141l.118-.126c.092.115.148-.107.251-.033c0 .048-.03.104 0 .137c.251-.024.5.058.688.226c.355-.019.451.403.677.618c.203.248.291.571.244.888c.111.222 0 .503 0 .74a.57.57 0 0 1 .037.496a.48.48 0 0 1-.111.226a.648.648 0 0 1-.022.115a.274.274 0 0 1-.081.159c.155.081-.089.211.081.274c0 .178-.17.078-.255.178a.157.157 0 0 1-.063.133v.037c-.048.115-.211.155-.152.329c.059.174-.041.414.081.562a.179.179 0 0 0 .155.059c.166.292.518.126.706.37c.296.022.47.34.784.314c.51.281 1.124.488 1.424 1.11c.309.559.58 1.139.81 1.735c-.081.211.196.241.196.407c.041.146.086.292.132.437c.036-.065.077-.129.124-.189c.171-.18.389-.308.629-.37a2.315 2.315 0 0 0 1.52-.699a.772.772 0 0 0-.067-.37c-.277-.174-.414-.474-.647-.685a1.93 1.93 0 0 0-.255-.625c-.203-.1-.34-.348-.507-.503c-.067-.148-.037-.348-.218-.429c-.085-.107-.067-.259-.152-.37a.683.683 0 0 1 .078-.474c.074.007.074-.074.096-.126a.894.894 0 0 1 .403-.444c.041-.115.166-.089.24-.174l-.07-.059c.048-.041.174.015.218-.041c.044-.056.215-.081.129-.17c.055-.078.2.052.237-.078a.565.565 0 0 0 .322-.155c-.011-.044-.107-.037-.048-.096c.137.004.266.059.399.059c.141-.085.192.118.325.048c.296-.089.462.229.721.281c.178.148.218.366.37.518c.011.111.129.152.17.244c.2.244.163.588.318.851c0 .314-.089.596-.089.903l-.055.026a3.239 3.239 0 0 0-.067.659a.496.496 0 0 0-.059.425v.002a.03.03 0 0 1-.023.035c.035.276.1.548.192.81c.451.633 1.22.696 1.868.958c.721.381.499 1.258.666 1.924c.211.958-.037 2.083.244 3.038c.078.988.203 1.92.203 2.908c-.085.466.011.944-.085 1.402c-.005.373.033.746.115 1.11c-.081.385 0 .869-.325 1.169c.076.226.171.445.285.655c.192.647.706 1.169.847 1.85c.103.611.129 1.232.078 1.85c.048.503.133 1.021.181 1.535c.043.28.043.564 0 .844l-.033 2.002c-.004.229-.048.525.118.707c.126.488.126 1.051.496 1.421c.022.092-.129.096-.096.181c.118.126.317.159.482.224c.076-.058.132-.122.095-.206c-.078-.178.03-.448.063-.644a7.691 7.691 0 0 0 0-1.591a18.199 18.199 0 0 1 .048-3.149c.09-1.022.043-2.051-.141-3.06a20.175 20.175 0 0 1-.133-1.48c-.022-.544.055-1.103.033-1.654v-.773c0-.148 0-.248-.089-.307s-.174-.115-.255-.178a4.081 4.081 0 0 1-.932-.932a2.009 2.009 0 0 1-.473-1.154c.033-.476.033-.953 0-1.428a12.02 12.02 0 0 1-.133-1.48v-.666a2.773 2.773 0 0 1 .037-.699a2.18 2.18 0 0 1 .344-1.11a.736.736 0 0 0 .24-.529c-.03-.265-.01-.534.059-.792c.089-.413.144-.832.163-1.254a1.11 1.11 0 0 1 .163-.599c.164-.187.346-.357.544-.507c.277-.226.658-.189.932-.437a10.59 10.59 0 0 1 1.01-.651c.207-.148.033-.995 0-1.258c-.026-.185.007-.37-.218-.37c-.126-.007-.214-.318-.214-.455a6.965 6.965 0 0 0-.081-1.04a.57.57 0 0 1 0-.422c.03-.067.022-.167.07-.207c.048-.041.111-.056.111-.133c-.03.044-.163.078-.163.126c-.063-.248.277-.333.344-.525c-.022-.152-.104-.17.085-.281c.092-.056.185-.044.185-.189c0 .004.374-.155.425-.189c.253-.07.5-.157.74-.263c.033.007-.03.111.055.074c.058.014.108.05.141.1c.01.015.017.031.022.048c.022-.067.096-.037.144-.037c-.081.037.074.174.074.037c.048.007-.044.118.018.144c.178-.148.255-.163.422 0a.62.62 0 0 1 .07.444c.089-.092.207.137.296.211a.82.82 0 0 1 .314.37c-.033.048-.078-.026-.111.019c.022 0 .055.07.055 0c0 .074.081.866 0 .866a.12.12 0 0 0-.078-.033c.024.374-.014.749-.111 1.11a.743.743 0 0 1-.122.233c-.129 0-.155-.041-.178.104c-.037.266-.096.529-.096.799c-.005.108.001.216.018.322c.026.155.137.107.27.126c.24.033.477.074.71.13c.451.1.84.352 1.272.47a.677.677 0 0 1 .507.721c.018.207.074.408.163.596c.081.25.144.506.189.766c.039.245.054.492.044.74c.032.214.094.422.185.618c.137.477.141.988.244 1.48c.046.218.046.444 0 .662c-.118.171-.299.315-.402.511M28.418 94.924c-.033-.019-.026-.074-.089-.074l-.03-.03c0 .052.152.123.119.104M11.705 76.291c-.067.181-.37.203-.322.418c-.025.517.014 1.216-.492 1.495c-.227.971-.258 2.072.055 3.03c-.468-.111-.04.429-.259.437c.103.245.179.492.232.742a1.41 1.41 0 0 1 .083-.412c-.052-.677.155-1.325.155-1.968c.07-.651.281-1.24.337-1.894c.159-.527.24-1.074.24-1.624c0-.106.004-.21.01-.314a.24.24 0 0 1-.039.09m.51 7.422l-.03.048v.522c.041.308.108.613.2.91a12.06 12.06 0 0 0-.17-1.48m.74-13.201v.096a.164.164 0 0 0 .055-.07c-.022-.001-.025-.026-.055-.026m.189 5.846c-.059.059-.074.174-.115.259c-.251.558-.071 1.284-.192 1.846c.105-.065.11-.199.251-.3l.048-.233c.137-.189-.019-.474.137-.67c-.129-.281-.015-.618-.129-.902m1.908-8.496c-.03-.03-.115-.033-.085.007l.022.019c.037 0 .096.004.096-.041zm.277-.137a.209.209 0 0 0-.159-.004c.059.022.174.059.192 0zm.226.074a.509.509 0 0 0-.096.018l-.033.015c.03.059-.07.015-.052.026c.081.081.196.078.3.115c-.012-.07-.082-.122-.119-.174m.214.108l-.044.015c.006.053.05.093.104.093c.007-.038-.041-.075-.06-.108m.607.684c.004-.068-.079-.061-.103-.111c.107-.041 0-.096 0-.144a.274.274 0 0 0-.222-.1c.108.116.086.415.325.355m-.048-.44l-.033.015a.318.318 0 0 0-.303-.048a.577.577 0 0 1 .466.3a.607.607 0 0 0-.13-.267m.281.636c-.046.101.046.134.119.176a.658.658 0 0 0-.119-.176m.174.814l-.015.011c-.03-.015-.041-.015-.041.004s.055.052.055.041zm.192.008l-.007.192l.133.059a.286.286 0 0 0-.126-.251m.525.514c-.015-.107-.144-.207-.251-.137c.089.052.144.163.251.163zm.07.3l-.037-.089l.037.152zm.3.159c-.063.019-.133.011-.185.048v.011a.457.457 0 0 0 .048.274c.03-.022.052-.022.089-.022c.096-.007.089.089.144.144a.662.662 0 0 0-.096-.455m.348.684a.185.185 0 0 0-.137-.13l-.015.033c.041.056.1.159.152.181zm-.119.781v-.011c.07-.022.07-.1.085-.155c-.085-.037-.037-.126-.085-.163a.594.594 0 0 0 0 .329m-.007.696c.024.078.04.159.048.241c.022.037.055.118.104.085l-.067-.126c-.041-.06.015-.2-.085-.2m.055-1.14v-.048c-.022-.011-.037-.048-.067-.048l-.01.033zm.048.54a.187.187 0 0 0 .063-.144zm.111.289h-.022l.022.03zm.034.769c-.026-.133-.137-.004-.192-.074v.107c.067-.022.141.015.192-.022zm-.034 6.068c-.226-.588-.129-1.291-.192-1.92c-.033-.055-.019-.141-.081-.163c-.133.233-.041.492-.192.722a2.959 2.959 0 0 1-.078.636a.55.55 0 0 1 .041.263a2.264 2.264 0 0 0-.041 1.006c-.174.344.011.692-.048 1.062c.104.36.14.737.107 1.11a.174.174 0 0 1 .067.137c.157.217.29.45.396.696l.022.015c.056-.168.131-.329.222-.481c.133-.252.055-.57.104-.84c-.068-.763-.29-1.466-.327-2.243m8.314-11.666a.304.304 0 0 0-.159-.185h-.011c-.026.104.096.27-.041.326c.119-.019.252.03.211-.141m3.639 3.43c-.018-.033-.078.004-.078.052c-.037.185.203.296.059.474c-.03.022-.03.041 0 .07c.03.03.07-.015.07-.044h.015c.023-.2-.106-.363-.066-.552m.189-.137a.284.284 0 0 0-.026.115h.015a.094.094 0 0 0 .011-.115m.052 7.245a.346.346 0 0 1 .033-.118a3.24 3.24 0 0 0-.333.74a15.21 15.21 0 0 0-.2 1.728l.015-.004c.029.198.089.39.178.57a9.873 9.873 0 0 1 .074-2.09c.051-.249.142-.488.27-.707c-.008-.053.018-.089-.037-.119m.303-8.554c.021-.038.065-.1.071-.15c-.041.035-.051.093-.071.15m.033 7.359l.015-.004a2.05 2.05 0 0 0 .048-1.251c-.063.415-.029.807-.063 1.255m.189-7.77l-.067.063c.015.03.044.03.067.03zm3.502-1.11a.187.187 0 0 0 .056-.177c-.015.057-.079.111-.056.177m-.225.525a.1.1 0 0 0 .052-.122c-.041.004-.07.048-.07.078h.015a.043.043 0 0 0 .003.044m-.477-2.238c.022.063.096.022.133.033a.15.15 0 0 0-.085-.063c-.019.011-.063 0-.063.03zm2.444 12.891a5.389 5.389 0 0 1-.111-.98c-.048-.392-.155-.766-.192-1.165c-.133-.429-.096-.932-.244-1.354c-.063.292-.307.525-.226.866c.022.274-.152.544 0 .792c.069.329.167.65.292.962c.035.246.025.497-.03.74c.084.343.13.694.137 1.047c.054.295.13.586.229.869c.1-.275.167-.56.2-.851h.015a3.946 3.946 0 0 1-.07-.926m3.698-4.119c-.018-.196-.126-2.571-.285-2.538c-.255.555-.814.847-1.228 1.265c.24.652.533 1.283.876 1.887c.152.311.303.618.477.918c.081.144.166.233.107.407c-.03.096-.148.229-.148.333c.244 0 .211-.078.244-.303l-.004.011c.048-.185.076-.375.085-.566c-.005-.474-.079-.944-.124-1.414m-.268 4.543c.021-.17.205-.636-.032-.658c-.006.22.004.44.032.658m1.008 12.048a22.312 22.312 0 0 1-.37-2.96a5.804 5.804 0 0 1 .126-1.391c.092-.414.362-.844.181-1.273a7.873 7.873 0 0 1-.74-.2l-.37-.107c-.185-.048-.107-.107-.107-.277c.033-.551.059-1.106.059-1.661c.015-1.069.011-2.142.092-3.208c.022-.281.048-.562.085-.84c-.037.004-.067.096-.111.096c-.115.03-.115-.218-.115-.277a1.45 1.45 0 0 0-.122-.681a9.019 9.019 0 0 1-.407-.74c-.067-.13-.1-.307-.244-.37a.65.65 0 0 1-.333-.226c-.598-.868-.977-1.857-1.429-2.803l.005.08c-.044.866.226 1.669.325 2.523c.163 1.018.096 2.016.2 3.03c.026.292.133.57.155.844a2.92 2.92 0 0 1-.089.762c-.137.115-.078.348-.274.422c-.074.274-.403.34-.473.625a12.7 12.7 0 0 1 .311 2.272c.041.492.325.888.325 1.387c.212.429.313.905.292 1.384c.123.475.193.963.207 1.454c-.015.74.288 1.373.429 2.061c.059.274.048.574.126.836c0 .3.218.514.288.781c.229.211.47.403.703.636c.055.022.129.111.055.163c.175.166.391.282.625.337a.26.26 0 0 0 .028.017c.125-.134.274-.252.335-.317a.89.89 0 0 0 .244-.429c.044-.189-.085-.363-.026-.577c.074-.187.118-.384.129-.585c-.008-.262-.078-.525-.115-.788m1.372-5.613c-.011.229-.118.462-.118.64l-.004.011c.082-.159.289-.418.122-.651m2.341-11.899c-.351.485-.266 1.347-.018 1.85c.052-.314.148-.618.222-.929c.038-.164.066-.331.081-.499a3.251 3.251 0 0 0-.285-.422m10.256 5.861l-.061.041c.022.03.047.059.076.085h.081c.005-.068.006-.135.008-.203a.517.517 0 0 1-.104.077m1.227 2.86a14.404 14.404 0 0 0-.37-1.709a13.347 13.347 0 0 0-.37-1.295l-.022.022c.028.232-.025.467-.148.666a.646.646 0 0 1 .159.448c-.03.092-.118.226-.17.181c-.052-.044-.067-.166-.118-.137c-.052.03-.052.089-.092.126a.073.073 0 0 1-.107-.034a3.818 3.818 0 0 0-.477-.766c-.002-.018-.006-.036-.009-.053a6.193 6.193 0 0 1-.198.105c-.055.966.189 1.924.1 2.919c-.052.277-.192.511-.255.784c-.048.533-.129 1.091-.148 1.643c.338.538.522 1.159.533 1.795c0 .585.05 1.17.152 1.746c-.038.495-.007.993.092 1.48c-.222.152.055.296.055.466c.088.268.222.518.396.74c.075.297.282.536.491.772l.348-.361a.704.704 0 0 1 .092-.255c.022-.474-.022-.98.022-1.399c.044-.418.292-.766.318-1.18c-.137-1.025.063-2.076.063-3.034l-.107-1.032c.011-.511-.192-.984-.03-1.48a5.485 5.485 0 0 1-.2-1.158m.252-15.2a.259.259 0 0 0-.118.085l-.022.322c.072-.13.125-.27.159-.414zm.03-.399a.65.65 0 0 0 .137-.296zm.38-3.13c.011.085-.063.152-.022.24c.073-.471.593-.791.962-1.03a1.162 1.162 0 0 0-.94.79m3.691 2.397a1.07 1.07 0 0 0-.073.366c.066-.097.036-.24.073-.366m.193-1.069a3.522 3.522 0 0 0 0 .681a2.662 2.662 0 0 0-.055-1.48a1.752 1.752 0 0 0-.229-.492l-.019.007c.029.451.329.81.303 1.284m.78 6.101c-.207.503-.325 1.043-.529 1.561l-.018.007a5.286 5.286 0 0 0-.074 1.954c.096-.211.281-.377.37-.581c.233-.692.466-1.38.669-2.083a4.103 4.103 0 0 0-.418-.858m3.791-.503c-.215.385-.57.685-.777 1.054c.037.211.288.241.466.266c.24.144.466.311.714.444a9.055 9.055 0 0 0-.403-1.764m.455 3.478c-.111-.044-.222-.096-.333-.148c-.466-.218-.917-.47-1.391-.681a7.213 7.213 0 0 0-.692-.266a1.291 1.291 0 0 1-.176-.094c-.161.342-.368.672-.471 1.034a4.967 4.967 0 0 1-1.143 1.765a2.372 2.372 0 0 0-.396.74c.01.44-.014.881-.07 1.317c0 .281.174.522.085.818c.046 1.064.039 2.13-.022 3.193l.074.255l-.096.192a.662.662 0 0 1 .118.444c.087.163.119.35.092.533l.159.189l.651 2.261l.259 1.569c.061.784.185 1.563.37 2.327c.115.319.208.646.281.977a.583.583 0 0 1 .019-.108c.07-.481.159-.958.226-1.436c.042-.558.113-1.114.214-1.665c.118-.448.096-.943.192-1.388c.096-.444.24-.873.37-1.306c.122-.435.199-.881.229-1.332c.026-.252.048-.455.085-.758c.037-.303-.018-.585.037-.892c.203-1.129.451-2.238.699-3.348c.115-.485.237-.958.37-1.439c.063-.219.1-.445.111-.673a2.18 2.18 0 0 0-.019-.37a7.39 7.39 0 0 0 .166-1.295c.002-.138.002-.274.002-.415m6.05-3.189a1.196 1.196 0 0 1-.37-.618a6.45 6.45 0 0 0-.018 2.442c.152-.252.281-.518.418-.777c.085-.185.3-.314.37-.496c.07-.181-.27-.429-.4-.551m1.069 2.586c.015-.121.026-.243.036-.365c-.06.072-.119.143-.181.213c-.266.356-.555.695-.865 1.014c-.111.1-.174.137-.152.248c.022.111.044.218.07.326c.063.263.107.53.133.799c.026.255-.033.503 0 .77c.033.266.074.533.118.799c.092.57.2 1.143.277 1.717c.067.481.037.966.104 1.45l.023.141c.043-.299.071-.601.081-.903c-.007-.725.052-1.384.052-2.079c.118-.847.248-1.691.348-2.546a9.86 9.86 0 0 1-.044-1.584m1.579.721a1.07 1.07 0 0 0-.207-.533c-.033.581-.185 1.121-.218 1.691c.107.344-.044.67-.044 1.014c.043-.109.094-.216.152-.318a.077.077 0 0 1 .085.033c.059-.1.181-.181.181-.303a.218.218 0 0 1 .104-.163c.236-.477-.108-.936-.053-1.421m.233-7.163l.026-.063c.017-.252.066-.501.148-.74a1.305 1.305 0 0 0-.174.803m.207-.551c.078-.141.111-.3.192-.433a.857.857 0 0 0-.192.433m.418-.788c.055-.011.074-.07.111-.107c-.059.003-.081.07-.111.107m.47 25.082a11.894 11.894 0 0 0-.851-3.274c-.292-.836-.185-1.769-.233-2.686a26.24 26.24 0 0 0-.74-2.96c-.015-.104-.107-.107-.181-.137a.775.775 0 0 0 .019.318c.07.1.101.222.089.344c-.015.063-.104.063-.144.037a.585.585 0 0 1-.296-.37c-.096.311.189.496.226.77c-.026.074-.007.189-.118.189c-.27-.081-.325-.425-.573-.533a.685.685 0 0 1-.433-.4a.922.922 0 0 0-.03-.204a8.619 8.619 0 0 1-.011.227a8.33 8.33 0 0 0 .155 3.13c.292 1.021.233 2.102.292 3.152c.03.511.081 1.01.141 1.517c.039.235.06.472.063.71c0 .118.022.17 0 .352c-.022.181.096.259.215.37a7.7 7.7 0 0 1 .962.966c.119.167.257.319.41.455a.687.687 0 0 1-.01-.136c.081-.348.488-.548.488-.918c.209-.29.634-.49.56-.919m2.566-22.958c-.026.022-.067.107-.033.104c.033-.004.033-.067.033-.104m-.025.174h-.019c-.184.23-.306.504-.351.796c.186-.232.313-.505.37-.796m1.338 8.965c-.092-.61.052-1.306-.189-1.868a50.006 50.006 0 0 0-.274-2.113l-.026-.026c-.067.47-.189.884-.281 1.347c-.02.719.044 1.438.192 2.142l.07.026c.076.305.103.619.081.932l-.152.425l.078.07c.085.292.03.644.085.936c.207.215-.037.54.17.725c.188-.352.257-.756.196-1.151c.062-.478.079-.963.05-1.445m3.07-4.259a2.571 2.571 0 0 1-.24-.57c-.115.18-.184.386-.2.599c.026.07.063.137.026.218c-.092.152-.333.185-.296.418c-.03.055-.096.096-.096.155c.166.074.24.311.436.337v.007c.081.059.163.226.259.207a.736.736 0 0 1 .129-.314c-.059-.166-.126-.366-.1-.536c.027-.17.178-.329.082-.521m1.435-8.466h-.022l.07.274c-.018.041-.074 0-.074 0c.022.085.03.203.111.233h.033zm3.661.459h.019l.026-.178c-.045.026-.048.1-.045.178m2.256 8.695c-.104-.167-.118-.437-.303-.537c-.081-.13-.189-.292-.144-.433c-.004-.059-.104-.115-.122-.059c.024.398-.067.795-.263 1.143c.089.252-.111.474 0 .681c.307-.178.536-.503.906-.548c.067-.103-.122-.14-.074-.247m2.319.773a1 1 0 0 0-.111.263c-.251.555-.07 1.284-.189 1.85c.137-.059.126-.211.244-.303l.048-.233c.133-.189-.015-.477.133-.67c-.125-.281-.01-.618-.125-.907m2.626-8.535c.026.067.055.174.122.174c-.037-.075-.059-.152-.122-.174m2.515 11.41c-.222-.588-.126-1.291-.192-1.92c-.03-.056-.015-.141-.078-.167c-.129.248-.041.511-.189.74a2.838 2.838 0 0 1-.078.636a.55.55 0 0 1 .041.263a2.282 2.282 0 0 0-.041 1.01c-.17.344.011.692-.048 1.062c.103.36.139.737.107 1.11a.172.172 0 0 1 .063.137c.157.216.289.449.392.696l.022.004a2.74 2.74 0 0 1 .218-.481c.133-.252.055-.57.104-.844c-.062-.766-.284-1.465-.321-2.246m3.333 16.818a.585.585 0 0 1 .094.046c.041-.061.086-.121.134-.177a.452.452 0 0 0-.228.131m.091-19.696c-.089.548-.425.973-.37 1.558c-.229.699-.558 1.41-.558 2.179c.004.204.033.407.089.603a.966.966 0 0 1 .429.126c.227.159.384.399.44.67c-.01-.474.003-.948.041-1.421c.022-.204.022-.374.022-.614c0-.241.041-.459.041-.696c.023-.39.085-.777.185-1.154h-.015a1.713 1.713 0 0 0-.304-1.251m5.396-.489c-.429.716-.927 1.4-.692 2.278c.371-.677.426-1.485.837-2.149c-.075-.014-.093-.084-.145-.129m-79.588-6.273l-.019.001l.001-.007a.064.064 0 0 0 .018.006m78.194 27.864a.022.022 0 0 1 .004-.005h.003zM16.59 68.632l.025.028a.255.255 0 0 1-.03-.026z\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"okta\": {\n\t\t\t\"body\": \"<path fill=\\\"#bfbfc2\\\" d=\\\"M24.195 111.117c-1.848-.133-3.262-.66-4.543-1.695a10.18 10.18 0 0 1-1.746-1.797c-.898-1.215-1.531-2.875-1.801-4.719c-.16-1.102-.148-.141-.168-14.371l-.156-14.492c-.184-1.469-.551-2.516-1.355-3.867c-1.379-2.312-3.352-4.418-5.09-5.434c-.352-.207-.434-.27-.52-.414c-.066-.117-.082-.176-.082-.355s.016-.238.086-.355c.086-.148.125-.18.684-.52c.723-.441 1.316-.926 2.148-1.762c1.344-1.344 2.539-2.984 3.27-4.484c.57-1.172.801-2.09.957-3.855c.027-.312.043-3.691.059-13.586l.168-14.371c.27-1.844.898-3.496 1.801-4.719c.672-.914 1.73-1.887 2.641-2.43a7.52 7.52 0 0 1 2.621-.937c.816-.137.969-.141 3.977-.141h2.871l.125.066a.76.76 0 0 1 .352.398c.035.094.043.449.043 1.73v1.613l-.078.152a.736.736 0 0 1-.488.379c-.105.023-.852.035-2.238.035l-2.418.031c-1.602.156-2.68.645-3.418 1.547c-.73.895-1.047 1.789-1.137 3.227c-.02.316-.031 5.348-.031 14.34l-.031 14.262c-.148 1.945-.648 3.527-1.633 5.172a13.23 13.23 0 0 1-2.777 3.352c-.551.484-.609.57-.59.895c.016.277.082.379.465.707a13.593 13.593 0 0 1 2.359 2.609c1.199 1.762 1.867 3.441 2.094 5.258l.07.508c.012.066.031 6.629.039 14.582l.059 14.738c.059.426.18.988.266 1.262c.188.57.57 1.207 1.027 1.707c.613.668 1.516 1.09 2.762 1.289c.395.066.551.07 2.781.086c2.648.02 2.52.008 2.723.242s.195.164.195 1.941c0 1.277-.008 1.637-.043 1.727a.76.76 0 0 1-.352.398l-.125.07l-2.734.004c-1.504 0-2.891-.008-3.086-.023zm73.746-.012a.69.69 0 0 1-.406-.363l-.082-.164l.012-1.656l.008-1.656l.082-.141a.71.71 0 0 1 .453-.332c.09-.02.914-.031 2.227-.031l2.441-.035c.82-.074 1.621-.281 2.18-.562c.664-.336 1.094-.73 1.57-1.445c.391-.582.621-1.234.754-2.105c.051-.328.055-1.281.074-14.781l.055-14.738c.191-1.656.527-2.832 1.172-4.098c.828-1.637 1.973-3.105 3.27-4.207c.355-.301.484-.461.535-.645c.086-.309-.031-.559-.43-.895a13.31 13.31 0 0 1-2.902-3.445c-.965-1.613-1.426-3.008-1.645-4.949c-.031-.266-.043-3.57-.059-14.754l-.07-14.77c-.113-.754-.316-1.383-.594-1.859c-.328-.562-.801-1.102-1.219-1.391c-.664-.461-1.578-.754-2.672-.863c-.203-.02-1.168-.031-2.441-.035c-1.328 0-2.156-.012-2.246-.031a.71.71 0 0 1-.453-.332l-.082-.141l-.008-1.652l-.012-1.652l.078-.164a.71.71 0 0 1 .457-.387c.168-.047 5.762-.02 6.16.031c1.754.211 2.973.695 4.176 1.656c.379.297 1.137 1.043 1.449 1.414a9.37 9.37 0 0 1 1.449 2.52c.398 1.043.637 2.168.793 3.73c.027.273.043 3.734.055 13.555l.074 13.664c.207 1.859.559 2.938 1.434 4.395c1.355 2.262 3.199 4.25 4.918 5.316c.156.094.348.215.422.262c.215.133.32.305.332.555c.02.352-.094.531-.492.762c-1.809 1.035-3.734 3.07-5.18 5.473c-.875 1.453-1.227 2.535-1.434 4.395c-.051.441-.055 1.48-.074 13.664l-.055 13.555c-.199 2.012-.543 3.344-1.207 4.66c-.449.887-.949 1.563-1.734 2.328c-.543.527-.801.742-1.324 1.094c-.895.605-1.965 1.008-3.141 1.176c-.742.105-1.285.125-3.953.121c-2.094 0-2.625-.008-2.715-.043zM62.777 95.5c-3.234-.152-6.004-.668-8.922-1.652c-5.645-1.906-10.586-5.363-14.461-10.113c-3.445-4.219-5.684-9.156-6.555-14.434c-.289-1.77-.398-3.141-.398-5.035c0-1.574.063-2.543.246-4.008c.77-6.066 3.289-11.902 7.133-16.535a31.63 31.63 0 0 1 4.5-4.406c7.715-6.184 17.938-8.367 27.574-5.895c6.742 1.73 12.719 5.656 17.031 11.191a31.46 31.46 0 0 1 6.473 16.184c.121 1.203.141 1.648.141 3.176s-.02 1.973-.141 3.18a31.48 31.48 0 0 1-4.645 13.57a31.905 31.905 0 0 1-7.836 8.512a31.41 31.41 0 0 1-19.008 6.281zm2.211-15.793a15.75 15.75 0 0 0 13.984-10.773a15.764 15.764 0 0 0 .332-8.781c-.934-3.789-3.297-7.133-6.598-9.328a15.8 15.8 0 0 0-8.687-2.617a15.76 15.76 0 0 0-14.953 10.746a14.78 14.78 0 0 0-.812 5.02c0 1.457.129 2.516.473 3.883c1.117 4.445 4.18 8.223 8.309 10.258c1.938.953 3.906 1.469 6.141 1.605a20.18 20.18 0 0 0 1.813-.012zm0 0\\\"/><path fill=\\\"#0f82c2\\\" d=\\\"m62.961 95.441l-2.75-.215a31.27 31.27 0 0 1-15.824-6.633a32.876 32.876 0 0 1-4.723-4.637c-4.059-4.871-6.473-10.66-7.039-16.867a32.48 32.48 0 0 1 0-5.648c.566-6.293 3.004-12.383 6.914-17.266a31.48 31.48 0 0 1 10.508-8.434a31.571 31.571 0 0 1 16.52-3.148c8.813.715 16.855 5.066 22.313 12.066a31.15 31.15 0 0 1 5.039 9.473c.84 2.563 1.313 5.008 1.52 7.875c.051.73.051 3.199 0 3.93c-.207 2.867-.68 5.324-1.52 7.875a31.2 31.2 0 0 1-7.605 12.379c-3.508 3.512-7.656 6.09-12.312 7.645a31.698 31.698 0 0 1-7.863 1.551c-.617.043-2.695.078-3.176.055zm2.547-15.699a18.67 18.67 0 0 0 1.703-.266a15.842 15.842 0 0 0 11.734-10.25a16.08 16.08 0 0 0 .855-4.082c.039-.512.039-1.832 0-2.34c-.242-3.062-1.305-5.902-3.125-8.328a15.875 15.875 0 0 0-3.844-3.645a13.233 13.233 0 0 0-1.859-1.074a15.755 15.755 0 0 0-5.324-1.535a21.97 21.97 0 0 0-2.687-.051c-5.691.406-10.633 3.711-13.141 8.785a15.66 15.66 0 0 0-1.645 7.016c0 3.094.902 6.105 2.605 8.707a16.277 16.277 0 0 0 1.992 2.441c2.703 2.723 6.184 4.328 10.063 4.648c.434.035 2.27.016 2.672-.027zm0 0\\\"/>\"\n\t\t},\n\t\t\"okta-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#bfbfc2\\\" d=\\\"M17.723 83.5c-1.078-.133-2-.52-2.832-1.195c-1.461-1.184-2.207-2.637-2.504-4.883c-.043-.305-.055-.902-.074-3.379L12.129 70c-.148-.68-.43-1.301-.965-2.145c-.969-1.516-1.844-2.598-2.645-3.27c-.262-.215-.355-.316-.395-.414c-.117-.293-.047-.445.391-.812c.73-.613 1.457-1.484 2.316-2.773c.992-1.484 1.25-2.082 1.406-3.301c.043-.309.055-.898.074-3.383l.07-3.363c.152-1.141.363-1.902.746-2.695c.398-.828.859-1.426 1.602-2.066c.703-.609 1.41-.984 2.25-1.191c.707-.176.926-.187 3.297-.187h2.148l.129.078a.5.5 0 0 1 .195.207c.063.129.063.176.063 1.422l-.031 1.398c-.035.125-.23.324-.344.348c-.039.008-.961.02-2.051.027c-2.148.012-2.285.02-2.824.191a1.99 1.99 0 0 0-.695.34c-.426.301-.715.863-.875 1.703c-.066.344-.066.434-.086 4.141l-.059 4.055c-.137 1.027-.387 1.844-.816 2.684a8.126 8.126 0 0 1-1.582 2.176l-.543.598a.56.56 0 0 0-.039.207a.56.56 0 0 0 .039.207c.02.047.266.316.547.598a8.143 8.143 0 0 1 1.578 2.176c.43.84.68 1.656.816 2.684c.023.176.043 1.496.059 4.055l.086 4.141c.25 1.324.766 1.895 1.934 2.137c.402.086 1.016.109 2.762.109l1.816.043a.583.583 0 0 1 .293.395c.012.07.016.703.012 1.406l-.012 1.277l-.074.109a.722.722 0 0 1-.187.176c-.113.063-.148.063-2.289.059c-1.629 0-2.262-.012-2.523-.043zm87.734-.012a.554.554 0 0 1-.262-.312c-.047-.152-.043-2.602.004-2.734a.63.63 0 0 1 .297-.328c.051-.023.813-.039 2.078-.047l2.289-.059c1.305-.219 1.855-.785 2.125-2.187c.063-.328.063-.445.082-4.113l.074-4.16c.176-1.281.586-2.363 1.32-3.484a7.96 7.96 0 0 1 1.141-1.367c.434-.426.508-.531.508-.723s-.078-.305-.508-.723a8.195 8.195 0 0 1-1.141-1.363c-.734-1.125-1.145-2.207-1.32-3.488c-.047-.336-.055-.832-.074-4.16l-.082-4.113c-.234-1.215-.656-1.766-1.574-2.055c-.539-.172-.676-.18-2.824-.191l-2.051-.027c-.121-.027-.305-.219-.344-.359c-.023-.094-.031-.5-.027-1.437l.012-1.309l.074-.109a.68.68 0 0 1 .191-.176c.117-.066.125-.066 2.426-.055l2.605.066c1.258.227 2.121.672 3.082 1.582c.969.922 1.598 2.133 1.902 3.656c.176.875.18.977.203 4.176l.074 3.379c.156 1.234.414 1.84 1.41 3.328c.887 1.324 1.691 2.273 2.387 2.828c.484.391.488.695.012 1.094c-.777.641-1.52 1.52-2.402 2.844c-1 1.492-1.25 2.09-1.406 3.324c-.043.352-.055.855-.074 3.375l-.203 4.176c-.305 1.523-.93 2.727-1.902 3.656c-.828.789-1.602 1.23-2.578 1.473c-.676.168-.945.184-3.301.184c-2.027 0-2.137-.004-2.223-.059zm-29.555-8.633a9.99 9.99 0 0 1-4.895-1.785c-2.105-1.496-3.574-3.809-4.008-6.32c-.145-.836-.141-.512-.141-9.363V49.02l.066-.125a.83.83 0 0 1 .438-.375c.082-.027.652-.035 1.973-.035h1.852l.156.07a.89.89 0 0 1 .406.414c.047.105.055.328.066 2.816c.02 2.984.004 2.793.219 3.035a1.02 1.02 0 0 0 .258.195l.156.082l2.438.016l2.566.082a.95.95 0 0 1 .402.461c.055.141.059.258.059 1.961l-.066 1.949a.88.88 0 0 1-.41.414c-.137.063-.187.063-2.562.078l-2.551.082c-.172.09-.363.305-.434.488c-.055.145-.059.266-.059 2.594c0 2.695-.004 2.578.207 3.27a4.933 4.933 0 0 0 3.746 3.359c.473.09.902.109 1.449.063c.387-.031.496-.031.613 0a.9.9 0 0 1 .492.434c.035.09.113.703.242 1.906l.148 1.922c-.086.328-.348.559-.703.617a10.26 10.26 0 0 1-2.125.063zm-42.082-.047l-1.297-.184a9.885 9.885 0 0 1-7.559-7.227c-.219-.859-.293-1.504-.293-2.473a9.33 9.33 0 0 1 1.012-4.332a9.682 9.682 0 0 1 1.871-2.609c1.617-1.617 3.66-2.586 5.977-2.844a12.58 12.58 0 0 1 .996-.039a9.42 9.42 0 0 1 3.273.555c2.461.855 4.531 2.723 5.652 5.102c1.266 2.684 1.25 5.852-.051 8.504a9.69 9.69 0 0 1-2.008 2.777c-1.547 1.5-3.437 2.414-5.625 2.711a17.51 17.51 0 0 1-1.949.059zm1.598-5a5.03 5.03 0 0 0 3.184-2.09c1.227-1.828 1.113-4.184-.285-5.898c-.988-1.211-2.625-1.902-4.168-1.766a6.53 6.53 0 0 0-.617.082c-2.367.5-4.027 2.637-3.922 5.035a4.91 4.91 0 0 0 1.453 3.289a5.067 5.067 0 0 0 2.82 1.391c.316.043 1.211.016 1.535-.043m53.32 4.996c-4.234-.312-7.758-3.219-8.859-7.297c-.348-1.293-.418-2.801-.195-4.164c.559-3.406 2.895-6.289 6.121-7.562a10.014 10.014 0 0 1 2.625-.641a13.2 13.2 0 0 1 1.965.004a10.11 10.11 0 0 1 3.504 1.031c.176.094.332.168.344.168s.02-.102.02-.227a1.63 1.63 0 0 1 .051-.387a.947.947 0 0 1 .48-.527l.16-.074h1.828c1.48 0 1.848.008 1.949.043c.168.063.395.285.477.473l.07.16l.023 5.465c.023 5.438.027 5.633.137 6.27c.199 1.203.684 1.816 1.621 2.051c.359.094.75.141 1.141.141c.172 0 .363.016.43.035c.164.043.363.25.41.43c.031.102.035.609.031 2.027l-.012 1.895l-.09.133c-.168.238-.52.402-1.09.508c-.234.043-.465.055-1.137.055c-.906 0-1.246-.035-1.844-.184c-1.141-.285-2.105-.895-2.77-1.742l-.258-.328l-.062-.078l-.273.219a9.81 9.81 0 0 1-6.184 2.121a9.45 9.45 0 0 1-.613-.016zm1.641-5.012a4.96 4.96 0 0 0 2.605-1.449a4.91 4.91 0 0 0-.852-7.488c-1.664-1.102-3.781-1.09-5.469.023c-.43.285-1.035.895-1.332 1.336a5.062 5.062 0 0 0-.746 1.781c-.059.27-.07.406-.07.961s.012.688.07.965c.102.469.227.828.438 1.246a4.934 4.934 0 0 0 3.688 2.668c.414.066 1.262.043 1.668-.043m-30.074 4.953c-.238-.078-.328-.164-1.805-1.711l-5.293-5.473c-.402-.297-1.02-.145-1.266.309l-.066.125l-.031 6.172l-.066.125a.92.92 0 0 1-.465.395c-.207.07-3.723.07-3.961 0a.713.713 0 0 1-.437-.367c-.055-.117-.059-.602-.059-12.711V49.016l.098-.164a.59.59 0 0 1 .297-.27l.195-.098h3.785l.191.09a.685.685 0 0 1 .406.496c.023.105.031 1.91.031 5.84c0 6.316-.016 5.84.207 6.098a.88.88 0 0 0 1.137.164c.066-.047 1.305-1.363 2.754-2.926l2.758-2.937c.238-.18.199-.18 2.664-.18c2.227 0 2.258.004 2.395.066a.78.78 0 0 1 .418.402a.91.91 0 0 1 .02.746c-.035.082-.32.422-.699.844l-5.691 6.336c-.582.75-.457 1.184.668 2.348l3.934 4.039l3.461 3.605a.798.798 0 0 1 .059.602a.895.895 0 0 1-.297.492c-.219.16-.156.156-2.82.152c-1.359 0-2.496-.008-2.52-.016zm0 0\\\"/><path fill=\\\"#0f82c2\\\" d=\\\"M75.98 74.797c-2.441-.203-4.684-1.262-6.336-2.992a9.73 9.73 0 0 1-2.707-6.129c-.047-.645-.043-16.398.004-16.613a.562.562 0 0 1 .152-.289c.215-.234.168-.23 2.215-.23c1.301 0 1.844.012 1.934.039c.168.047.379.242.434.398c.039.113.051.531.066 2.805l.02 2.668l.074.172a.923.923 0 0 0 .484.48l.188.086l2.441.016c2.438.016 2.441.016 2.535.082a.85.85 0 0 1 .297.363l.07.152v1.797c0 1.762 0 1.801-.066 1.934a.769.769 0 0 1-.332.363c-.082.047-.336.055-2.52.066l-2.426.016l-.16.074a1.21 1.21 0 0 0-.508.52l-.066.145v2.488c0 2.457 0 2.488.066 2.801c.336 1.551 1.313 2.813 2.695 3.492c.836.406 1.738.566 2.727.477c.34-.031.465-.031.57-.004a.796.796 0 0 1 .438.391c.07.156.441 3.547.41 3.75c-.023.176-.184.402-.355.508c-.109.066-.211.094-.473.129c-.426.059-1.43.082-1.871.047zm-42.246-.062c-2.348-.211-4.402-1.152-6.066-2.777c-1.637-1.602-2.633-3.656-2.895-5.988a14.05 14.05 0 0 1 0-2.027c.383-3.352 2.301-6.152 5.273-7.695c1.512-.785 3.164-1.141 4.973-1.066c3.488.148 6.684 2.234 8.273 5.402c1.211 2.41 1.359 5.285.41 7.824a9.59 9.59 0 0 1-2.281 3.504a9.68 9.68 0 0 1-5.82 2.797c-.383.043-1.5.059-1.867.027zm1.789-4.879c2.004-.434 3.5-1.953 3.906-3.973a5.74 5.74 0 0 0 0-1.863c-.332-1.551-1.262-2.789-2.613-3.48a4.508 4.508 0 0 0-1.309-.465a4.906 4.906 0 0 0-2.184.047c-.914.23-1.629.637-2.316 1.32c-.723.719-1.164 1.531-1.383 2.559a6.36 6.36 0 0 0-.016 1.848a5.034 5.034 0 0 0 3.914 4.004c.43.086.457.09 1.098.078c.465-.004.645-.02.902-.074zm53.32 4.891c-.773-.062-1.293-.145-1.898-.301c-3.305-.852-5.957-3.418-6.93-6.703a9.97 9.97 0 0 1-.094-5.215c.758-3.008 3-5.551 5.898-6.684c.688-.27 1.41-.461 2.18-.578c.422-.066.578-.074 1.426-.074c.832 0 1.008.012 1.398.07c1.07.168 2.047.477 2.984.945c.215.109.418.199.449.199c.051 0 .059-.035.074-.32c.012-.234.031-.348.078-.441c.082-.16.309-.355.461-.402c.086-.023.633-.035 1.945-.035c2.051 0 1.957-.008 2.18.234c.227.254.207-.191.223 5.629l.047 5.621c.203 2.324.824 3.012 2.813 3.098c.57.027.648.047.793.219a.62.62 0 0 1 .109.207c.023.074.035.785.035 1.957v1.844l-.07.137c-.133.262-.484.438-1.09.543c-.379.066-1.75.074-2.172.016c-1.09-.156-1.867-.453-2.605-1a5.79 5.79 0 0 1-1.031-1.043c-.109-.152-.191-.234-.227-.234s-.18.094-.324.207a9.707 9.707 0 0 1-4.574 2a10.06 10.06 0 0 1-2.078.105zm1.566-4.891c1.992-.43 3.5-1.941 3.898-3.918a4.979 4.979 0 0 0-1.941-5.004a6.14 6.14 0 0 0-1.297-.684a4.98 4.98 0 0 0-3.824.223c-.543.266-.871.5-1.336.965c-.59.59-.945 1.152-1.211 1.906c-.203.586-.242.852-.246 1.613c0 .742.039 1 .234 1.586a5.032 5.032 0 0 0 3.738 3.309c.43.086.457.09 1.094.078c.453-.008.652-.023.891-.074m-30.172 4.801c-.129-.039-.305-.211-2.012-2l-4.648-4.832c-.387-.402-.516-.473-.859-.473a.74.74 0 0 0-.402.086a1.028 1.028 0 0 0-.469.477c-.062.141-.062.156-.078 3.215c-.02 3.379-.004 3.148-.207 3.336c-.219.203-.109.191-2.156.203c-1.609.008-1.875 0-2.02-.039c-.203-.062-.395-.227-.437-.379c-.023-.078-.031-4.27-.031-12.656v-12.54l.063-.129a.65.65 0 0 1 .168-.211c.227-.176.207-.172 2.242-.164l1.871.008l.152.078a.664.664 0 0 1 .355.488c.02.105.027 2.156.027 5.836c0 6.316-.016 5.824.215 6.086c.324.371.898.441 1.27.152c.059-.043 1.293-1.359 2.738-2.922l2.742-2.926a.764.764 0 0 1 .219-.113c.07-.02.977-.031 2.383-.031h2.273l.156.074c.355.164.527.66.359 1.031c-.039.082-.316.418-.703.844l-5.687 6.336a2.78 2.78 0 0 0-.23.359c-.09.164-.098.211-.098.461s.008.293.102.477c.055.109.18.305.273.434s1.926 2.023 4.063 4.215l3.957 4.117c.145.273.078.699-.148.93c-.223.219-.02.203-2.797.211c-2.102.004-2.523 0-2.645-.039zm0 0\\\"/>\"\n\t\t},\n\t\t\"openal\": {\n\t\t\t\"body\": \"<path fill=\\\"#e3b019\\\" fill-rule=\\\"evenodd\\\" d=\\\"M80.016 30.292c-3.945 0-7.143 3.213-7.143 7.173v18.959h-1.528v1.532h1.528v20.491c0 3.964 3.198 7.173 7.143 7.173s7.143-3.209 7.143-7.173v-20.49h1.536v-1.532h-1.536V37.466c0-3.96-3.198-7.173-7.143-7.173zm0 3.331v22.801h-4.338V37.976a4.346 4.346 0 0 1 4.338-4.353m-10.714 2.813l-9.102.191l7.478 4.906l.164-.053v.08zm-1.46 5.123l-.019.069l-.145-.095l-8.534 2.645l8.534 2.653l.145-.095l.019.065zm0 5.241v.084l-.164-.053l-7.478 4.906l9.102.187zm22.889-10.364l1.467 5.127v-.084l.164.053l7.471-4.906zm1.631 5.096l-.145.095l-.019-.065V46.8l.019-.065l.145.095l8.527-2.653zm0 5.298l-.164.053V46.8l-1.467 5.123l9.102-.187zm-14.511-5.268c-.846 0-1.536.686-1.536 1.536a1.54 1.54 0 0 0 1.536 1.54c.846 0 1.528-.69 1.528-1.54a1.53 1.53 0 0 0-1.528-1.536m4.338 0c.842 0 1.528.686 1.528 1.536s-.686 1.54-1.528 1.54a1.54 1.54 0 0 1-1.536-1.54c0-.85.69-1.536 1.536-1.536m-4.338 4.097c-.846 0-1.536.686-1.536 1.536a1.54 1.54 0 0 0 1.536 1.54c.846 0 1.528-.69 1.528-1.54a1.53 1.53 0 0 0-1.528-1.536m4.338 0c.842 0 1.528.686 1.528 1.536s-.686 1.54-1.528 1.54a1.54 1.54 0 0 1-1.536-1.54c0-.85.69-1.536 1.536-1.536m-4.338 4.101c-.846 0-1.536.686-1.536 1.532a1.75 1.75 0 0 0 .008.141a1.546 1.546 0 0 0 1.528 1.403a1.53 1.53 0 0 0 1.521-1.395v-.008a1.66 1.66 0 0 0 .008-.141a1.53 1.53 0 0 0-1.528-1.532zm4.338 0a1.53 1.53 0 0 1 1.528 1.532a1.75 1.75 0 0 1-.008.141c-.076.785-.728 1.403-1.521 1.403c-.8 0-1.46-.614-1.528-1.395v-.008a1.66 1.66 0 0 1-.008-.141c0-.846.69-1.532 1.536-1.532zm-14.164 6.663v22.279c0 6.651 5.371 12.048 11.991 12.048s11.991-5.397 11.991-12.048V56.424h-1.528v22.279c0 5.801-4.684 10.505-10.463 10.505s-10.455-4.703-10.455-10.505V56.424zm11.991 1.532h4.338v15.334h-.027l.027.038v4.353l-.057.698l-4.28-5.088h4.311l-4.311-5.111h4.319l-4.319-5.115h4.33zm4.28 20.426a4.332 4.332 0 0 1-1.517 2.66L80.016 78.4zM73.643 93.606v4.101h12.754v-4.101zm0 0\\\"/><path fill=\\\"#7d000c\\\" d=\\\"M41.919 56.424c-3.945 0-7.143 3.209-7.143 7.173v7.631c0 3.964 3.198 7.177 7.143 7.177s7.147-3.213 7.147-7.177h-4.082a3.07 3.07 0 0 1-3.065 3.076a3.07 3.07 0 0 1-3.061-3.076V69.46h6.125v-4.097h-6.125v-1.765a3.07 3.07 0 0 1 3.061-3.076a3.07 3.07 0 0 1 3.065 3.076h4.082c0-3.964-3.202-7.173-7.147-7.173zm23.56 21.978h-4.094V63.594c0-1.7-1.368-3.076-3.061-3.076a3.07 3.07 0 0 0-3.061 3.076l.011 14.808H51.18V63.594c0-3.964 3.198-7.173 7.143-7.173s7.143 3.209 7.143 7.173l.011 14.808m-49.64-14.808v7.635c0 3.964-3.198 7.173-7.143 7.173s-7.143-3.209-7.143-7.173v-7.635c0-3.964 3.198-7.173 7.143-7.173s7.143 3.209 7.143 7.173m-4.082 0c0-1.7-1.368-3.076-3.061-3.076a3.07 3.07 0 0 0-3.061 3.076v7.635a3.07 3.07 0 0 0 3.061 3.076a3.067 3.067 0 0 0 3.061-3.076zm20.811 0v7.635c0 3.964-3.198 7.173-7.143 7.173a7.11 7.11 0 0 1-3.065-.69v7.143h-4.082V57.957s1.673.13 2.725 0c1.811-.221 1.871-1.536 4.421-1.536c3.945 0 7.143 3.209 7.143 7.173zm-4.082 0a3.07 3.07 0 0 0-3.061-3.076a3.07 3.07 0 0 0-3.065 3.076v7.635a3.07 3.07 0 0 0 3.065 3.076a3.07 3.07 0 0 0 3.061-3.076zm73.476-7.17c-3.949 0-7.147 3.209-7.147 7.173v14.808h4.094a2267.91 2267.91 0 0 1-.011-8.584h6.125v8.584h4.094c-.008 0-.011-4.399-.011-8.584v-6.224c0-3.964-3.198-7.173-7.143-7.173zm0 4.097a3.07 3.07 0 0 1 3.061 3.076v2.127h-6.125v-2.127a3.07 3.07 0 0 1 3.065-3.076zm14.285 13.784h3.061a3.07 3.07 0 0 0 3.061-3.076h4.082c0 3.964-3.198 7.173-7.143 7.173h-7.143V56.421h4.082z\\\"/>\"\n\t\t},\n\t\t\"openapi\": {\n\t\t\t\"body\": \"<path fill=\\\"#91d400\\\" d=\\\"M33.826 73.558H.046l.019.491c.018.318.04.632.059.945c.006.136.012.272.024.408a62.65 62.65 0 0 0 .248 2.55c0 .041.006.076.012.118c.053.431.106.868.171 1.3c0 .005 0 .011.006.016a55.905 55.905 0 0 0 1.742 7.944c.006.012.012.018.012.03a42.296 42.296 0 0 0 .4 1.299c.006.023.019.047.025.07c.118.367.248.733.372 1.104c.036.09.064.183.1.279c.113.313.224.632.342.95c.06.141.112.283.167.431c.105.26.205.519.306.787c.082.193.167.388.248.59c.082.2.171.407.254.613c.112.248.224.496.33.744c.071.154.136.302.201.449c.136.294.278.597.42.892l.141.288c.166.344.337.68.508 1.016c.03.053.053.106.077.154a54.944 54.944 0 0 0 .62 1.17c.042.076.089.153.13.224l28.849-17.29l.106-.065a22.723 22.723 0 0 1-2.108-7.506zm0 0\\\"/><path fill=\\\"#91d400\\\" d=\\\"m2.74 88.659l-1.098.313l.012.03zm0 0\\\"/><path fill=\\\"#4c5930\\\" d=\\\"m42.123 88.988l-.076.084l-23.794 23.68c.124.112.242.225.366.337c.225.201.449.402.674.596c.118.101.23.207.348.308c.272.23.544.454.816.679c.07.065.147.124.218.181a32.759 32.759 0 0 0 1.045.84c.343.265.68.52 1.022.78c.018.011.03.017.04.03a55.324 55.324 0 0 0 4.454 2.993c.053.036.106.065.159.101l.874.514c.176.1.36.2.538.307c.17.094.335.19.508.283c.313.166.62.337.932.496a53.77 53.77 0 0 0 2.758 1.34l.845-2.037l11.97-28.925l.041-.106a23.186 23.186 0 0 1-3.738-2.48zm0 0\\\"/><path fill=\\\"#68a338\\\" d=\\\"M39.65 86.633a25.364 25.364 0 0 1-1.36-1.666a16.94 16.94 0 0 1-.66-.933a24.082 24.082 0 0 1-.62-.957l-28.886 17.32c.45.734.91 1.447 1.382 2.15c.018.025.03.054.047.078l.018.024c.012.022.03.045.04.07c.007.005.007.005.007.011c.042.053.077.106.118.167c0 .006 0 .006.006.01v.006a53.095 53.095 0 0 0 1.589 2.215c.012.018.024.03.03.047c.236.302.466.61.701.91a1.355 1.355 0 0 1 .096.118c.248.307.496.614.75.922a4.397 4.397 0 0 1 .176.218c.232.272.461.544.691.809c.102.118.207.23.307.343c.197.223.396.449.597.672c.112.124.23.242.342.366c.048.053.101.114.154.167l.443.477l.183.183c.266.278.532.55.803.817l23.822-23.711a33.531 33.531 0 0 1-.778-.833Zm0 0\\\"/><path fill=\\\"#4c5930\\\" d=\\\"M71.23 88.978c-.266.206-.525.413-.797.614l.06.1l17.371 28.7a58.264 58.264 0 0 0 2.374-1.63a57.597 57.597 0 0 0 4.878-4.01l-23.79-23.68Zm0 0\\\"/><path fill=\\\"#91d400\\\" d=\\\"m85.669 119.756l.035-.018zm.035-.018a3.36 3.36 0 0 0 .231-.13l-.006-.006c-.075.048-.148.09-.225.136m-.035.018l-.012.006zm-.059-.059l.04.071zm.059.059l.035-.018zm-.024.018l.006-.006zm.012-.013l-.006.008c.006-.007.012-.007.018-.013c-.006.006-.006.006-.012.006zm0 0\\\"/><path fill=\\\"#91d400\\\" d=\\\"M85.704 119.738c.077-.045.154-.082.231-.13c-.077.048-.154.089-.231.13m.225-.136l.006.006zm-.302.178l.007-.006zm-.287-1.153l-.592-.974l-16.216-26.792a16.22 16.22 0 0 1-.998.555c-.337.183-.68.348-1.022.514a23.135 23.135 0 0 1-9.861 2.221a23.129 23.129 0 0 1-6.568-.952c-.36-.112-.715-.253-1.074-.378c-.36-.129-.726-.236-1.081-.383l-11.958 28.9l-.468 1.135l-.4.973h-.006l.094.036c.036.019.065.025.1.041h.007c.006 0 .01.006.017.006c.284.118.566.22.85.325c.36.142.716.278 1.07.408c.182.064.36.147.544.206a57.644 57.644 0 0 0 11.562 2.758c.158.018.313.042.465.06l.484.053c.302.035.605.071.91.1l.225.018c.378.035.75.065 1.122.094c.124.006.254.012.378.024c.331.024.655.04.98.059c.2.006.402.012.603.024c.26.006.518.017.778.023c.372.012.75.012 1.128.018h.266c3.148 0 6.295-.26 9.408-.78l.159-.023c.325-.06.656-.118.987-.177c.189-.036.372-.07.56-.113c.19-.035.385-.076.58-.118a31.91 31.91 0 0 0 .955-.212l.179-.036a57.145 57.145 0 0 0 13.593-5.05c.283-.146.555-.312.838-.465c.333-.183.662-.372.993-.56c.23-.13.466-.249.691-.385l.006-.006h.006l.005-.006c.006 0 .006 0 .006-.006l-.041-.07l.04.07h.007c.006-.006.012-.006.012-.006c.012-.012.024-.018.034-.024c.078-.045.155-.088.226-.136zm-43.2-65.04c.26-.213.527-.414.791-.615l-.059-.1l-17.367-28.7a52.052 52.052 0 0 0-2.385 1.635a56.258 56.258 0 0 0-4.867 4.005l23.794 23.68zm0 0\\\"/><path fill=\\\"#4c5930\\\" d=\\\"M16.6 31.389c-.273.272-.525.548-.791.82c-.26.272-.533.545-.791.821a57.694 57.694 0 0 0-5.02 6.236c-.16.236-.326.472-.484.71a27.73 27.73 0 0 0-.49.75c-.06.087-.118.18-.177.271A56.085 56.085 0 0 0 .049 69.006a57.802 57.802 0 0 0-.03 1.14C.011 70.524 0 70.902 0 71.28h33.698c0-.378.034-.756.05-1.134c.019-.384.025-.762.066-1.14a22.68 22.68 0 0 1 5.08-12.212c.241-.29.513-.567.766-.845c.26-.284.497-.573.768-.845zm69.53-8.327a70.192 70.192 0 0 0-1.034-.608c-.177-.101-.348-.201-.526-.296c-.177-.1-.348-.194-.525-.295a40.861 40.861 0 0 0-.916-.49c-.047-.024-.094-.047-.14-.076a57.468 57.468 0 0 0-6.078-2.718c-.053-.023-.112-.04-.166-.059a56.732 56.732 0 0 0-12.714-3.178c-.153-.022-.313-.04-.472-.063l-.473-.054a48.005 48.005 0 0 0-1.174-.118a64.437 64.437 0 0 0-1.087-.094c-.141-.006-.283-.018-.424-.024c-.308-.023-.627-.041-.934-.06l-.496-.017v33.62a23.558 23.558 0 0 1 5.114 1.11l24.862-24.744a62.16 62.16 0 0 0-2.817-1.836m0 0\\\"/><path fill=\\\"#68a338\\\" d=\\\"m27.436 22.962l.59.973zm28.103-8.073c-.378.006-.762.006-1.14.023a57.624 57.624 0 0 0-7.12.725c-.054.014-.106.02-.16.03c-.331.055-.656.12-.986.179l-.56.106c-.197.04-.39.075-.58.124a55.92 55.92 0 0 0-1.134.248a57.334 57.334 0 0 0-13.6 5.043c-.278.148-.556.317-.832.472c-.331.178-.662.367-.998.556c-.242.14-.491.272-.74.419h-.004a.245.245 0 0 1-.054.03c-.065.04-.13.07-.195.112l.006.006l.585.973l16.806 27.767c.325-.2.662-.378.998-.555a22.903 22.903 0 0 1 8.569-2.615c.378-.042.755-.071 1.14-.095c.377-.017.761-.035 1.145-.035V14.865c-.384 0-.762.012-1.146.024m0 0\\\"/><path fill=\\\"#4c5930\\\" d=\\\"m113.3 68.51l-.053-.904c-.012-.154-.018-.302-.03-.454l-.088-1.064c-.012-.09-.018-.183-.024-.272a80.881 80.881 0 0 0-.13-1.187c-.005-.035-.005-.065-.01-.094c0-.017 0-.03-.007-.048c-.053-.423-.106-.85-.172-1.274c0-.018 0-.03-.005-.043a55.59 55.59 0 0 0-1.743-7.93a72.458 72.458 0 0 0-.39-1.258c-.017-.053-.035-.106-.046-.159c-.125-.366-.243-.726-.373-1.087c-.035-.095-.065-.195-.1-.295a59.416 59.416 0 0 0-.514-1.375c-.101-.26-.201-.52-.302-.774c-.082-.208-.165-.409-.247-.61c-.083-.2-.172-.394-.254-.595l-.337-.762l-.195-.431c-.136-.302-.284-.608-.425-.91c-.048-.088-.089-.182-.13-.272c-.17-.348-.343-.69-.514-1.033c-.024-.047-.047-.094-.075-.142c-.197-.378-.392-.756-.597-1.128l-.018-.034a55.872 55.872 0 0 0-3.225-5.21l-24.868 24.75a22.941 22.941 0 0 1 1.11 5.095h33.78zm0 0\\\"/><path fill=\\\"#68a338\\\" d=\\\"M79.67 71.278c0 .386-.036.763-.054 1.141c-.018.378-.024.76-.065 1.139a22.68 22.68 0 0 1-5.08 12.213c-.242.29-.506.567-.766.844c-.254.284-.496.574-.768.845l23.828 23.714c.273-.272.525-.55.791-.821c.26-.277.532-.549.786-.827a55.883 55.883 0 0 0 4.83-5.952c.06-.083.112-.166.167-.242c.177-.254.353-.514.524-.768c.154-.23.307-.453.454-.685c.072-.112.143-.231.214-.337a56.019 56.019 0 0 0 8.78-27.99c.019-.378.025-.756.037-1.134c.005-.378.017-.756.017-1.14zm0 0\\\"/><path fill=\\\"#3f3f42\\\" d=\\\"M123.376 4.902c-6.167-6.135-16.158-6.135-22.323 0c-4.92 4.89-5.9 12.208-2.97 18.082L63.694 57.212c-5.905-2.91-13.258-1.935-18.177 2.96c-6.165 6.136-6.16 16.085 0 22.223c6.17 6.135 16.164 6.129 22.329 0a15.656 15.656 0 0 0 2.97-18.09l34.387-34.226c5.905 2.917 13.25 1.936 18.172-2.959a15.654 15.654 0 0 0 0-22.217zm0 0\\\"/>\"\n\t\t},\n\t\t\"openapi-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#91d400\\\" d=\\\"M9.162 66.59H.015c0 .043 0 .09.003.135c0 .085.01.17.015.256c0 .034.005.072.005.11l.028.295c0 .024 0 .042.005.067c.01.11.024.219.034.329c0 .008.005.018.005.033c.013.114.028.233.047.352v.005a15.167 15.167 0 0 0 .476 2.158c.034.113.067.223.105.333c0 .005 0 .015.005.018l.004.02l.1.3l.03.076c.028.086.06.171.095.256l.042.115c.028.072.058.144.08.215c.025.052.05.105.068.162c.024.052.047.11.07.162c.03.07.063.138.092.205c.018.042.033.08.052.118c.037.082.076.162.114.244l.039.08c.043.09.09.18.138.277l.02.037c.052.106.109.206.16.304c.005.006.005.011.01.016c.01.019.024.037.034.061l7.815-4.685l.028-.02a6.273 6.273 0 0 1-.572-2.033Zm0 0\\\"/><path fill=\\\"#91d400\\\" d=\\\"m.443 70.768l.004.01l.295-.097zm0 0\\\"/><path fill=\\\"#4c5930\\\" d=\\\"m11.416 70.772l-.025.025l-6.447 6.413c.033.03.066.064.1.092c.061.052.123.11.185.162a7.568 7.568 0 0 0 .315.267l.057.052a12.21 12.21 0 0 0 .285.224c.09.071.18.142.276.214c.005 0 .005.005.01.005c.39.29.791.56 1.206.814c.013.01.028.015.042.025a7.208 7.208 0 0 1 .238.142a2.48 2.48 0 0 1 .147.08c.043.025.09.053.138.077c.082.048.167.09.253.138l.034.015c.233.123.472.238.714.347l.228-.552l3.243-7.84l.01-.029a6.303 6.303 0 0 1-1.01-.67zm0 0\\\"/><path fill=\\\"#68a338\\\" d=\\\"M10.744 70.135a4.899 4.899 0 0 1-.205-.24c-.057-.071-.11-.142-.166-.214a4.765 4.765 0 0 1-.177-.252a7.628 7.628 0 0 1-.167-.256l-7.83 4.69c.125.2.25.39.378.58c.004.01.004.015.009.025c.005 0 .005.005.005.005c.005.005.01.015.014.018v.005c.009.015.024.03.033.043v.005c.138.2.276.396.42.591c.005 0 .008.005.013.01c0 .003.005.008.005.013c.067.082.13.162.19.248l.03.029c.067.085.134.167.2.252c.02.02.032.038.052.058c.061.075.124.146.185.22c.025.032.053.06.082.094c.052.061.11.118.162.18c.028.034.061.068.095.1c.009.015.025.029.037.043c.044.043.081.086.124.13c.015.018.034.032.049.052c.07.076.143.146.213.22l6.459-6.426a4.657 4.657 0 0 1-.21-.224Zm0 0\\\"/><path fill=\\\"#4c5930\\\" d=\\\"M19.298 70.768a3.682 3.682 0 0 1-.215.166l.02.029l4.706 7.777c.218-.142.433-.29.643-.442c.457-.334.895-.695 1.323-1.087l-6.449-6.415Zm0 0\\\"/><path fill=\\\"#91d400\\\" d=\\\"m23.213 79.112l.01-.01l-.01.009zm.01-.01c.018-.01.043-.02.06-.034zm-.015.01h.005v-.005zm0 0l-.01-.02zm0 0\\\"/><path fill=\\\"#91d400\\\" d=\\\"m23.213 79.112l.01-.01l-.01.009zm-.009.004l.004-.004zm.004-.004s.005 0 .005-.005c0 .005 0 .005-.005.005m.015-.01c.018-.01.043-.02.06-.034c-.018.015-.042.025-.06.034m0 0\\\"/><path fill=\\\"#91d400\\\" d=\\\"m23.123 78.802l-.159-.262l-4.395-7.258a5.885 5.885 0 0 1-.27.147a6.238 6.238 0 0 1-2.949.743a6.242 6.242 0 0 1-1.776-.262c-.1-.028-.195-.066-.297-.1c-.095-.033-.195-.066-.29-.105L9.744 79.54l-.124.305l-.11.262v.005c.01 0 .015.005.024.01c.01 0 .02.005.03.008h.003c.077.034.153.058.234.092c.095.036.19.075.286.11c.052.018.1.036.147.055a15.46 15.46 0 0 0 3.134.744c.043.005.086.014.124.018l.134.015c.08.01.166.02.248.024c.018.004.037.004.06.009c.102.01.202.015.302.024c.036 0 .07.005.105.005c.09.005.175.015.265.015c.053.004.11.004.163.008c.072 0 .142.005.21.005c.104.005.204.005.309.005h.07c.854 0 1.706-.067 2.549-.21c.014 0 .029-.005.043-.005c.09-.018.176-.032.268-.052l.15-.028c.053-.01.106-.02.16-.033a2.887 2.887 0 0 0 .304-.067a15.317 15.317 0 0 0 3.686-1.367c.076-.037.152-.085.223-.129c.09-.047.182-.1.272-.146a2.537 2.537 0 0 1 .185-.106c.005 0 .005-.005.005-.005h.005l-.015-.018l.015.018l.005-.004s.005 0 .01-.005c.018-.01.036-.024.06-.034zM11.416 61.18c.072-.056.142-.114.22-.166l-.02-.03l-4.707-7.777a20.913 20.913 0 0 0-.646.444a15.503 15.503 0 0 0-1.32 1.085l6.45 6.416zm0 0\\\"/><path fill=\\\"#4c5930\\\" d=\\\"M4.495 55.165c-.07.07-.142.148-.213.22c-.073.075-.144.146-.215.223a15.49 15.49 0 0 0-1.3 1.61c-.019.028-.037.051-.058.08c-.047.062-.09.129-.133.191l-.134.205a15.211 15.211 0 0 0-2.429 7.663c-.003.105-.008.204-.008.31c-.005.1-.005.204-.005.304h9.13c0-.1.01-.205.014-.305c.005-.105.005-.204.018-.31a6.134 6.134 0 0 1 1.378-3.31c.061-.075.138-.152.204-.228c.072-.076.139-.157.21-.229zm18.841-2.258c-.008-.008-.024-.013-.036-.024l-.244-.142c-.05-.024-.09-.052-.138-.081c-.049-.025-.095-.053-.144-.076a13.631 13.631 0 0 0-.247-.134c-.014-.005-.028-.013-.043-.018a15.134 15.134 0 0 0-1.642-.74l-.05-.017c-.117-.044-.242-.092-.365-.135a15.795 15.795 0 0 0-3.077-.724c-.043-.004-.086-.013-.128-.018l-.13-.015a4.361 4.361 0 0 0-.247-.024c-.024-.004-.048-.004-.07-.009c-.097-.01-.196-.014-.292-.024c-.037 0-.08-.005-.118-.005a4.199 4.199 0 0 0-.253-.018c-.044 0-.091 0-.134-.005v9.11a6.316 6.316 0 0 1 1.386.301l6.734-6.702a11.657 11.657 0 0 0-.762-.5m0 0\\\"/><path fill=\\\"#68a338\\\" d=\\\"m7.596 53.146l-.162-.268Zm7.454-2.453c-.105 0-.205 0-.31.005a15.21 15.21 0 0 0-1.928.2c-.015 0-.03.005-.044.005c-.09.013-.18.033-.266.047a1.43 1.43 0 0 0-.152.033l-.159.03l-.26.056A15.575 15.575 0 0 0 8.2 52.45h-.005c-.071.039-.147.085-.223.124c-.09.053-.182.1-.272.153c-.066.038-.134.07-.2.114c-.005.004-.01.004-.015.009a.514.514 0 0 0-.052.03l.162.266l4.554 7.52c.085-.052.175-.1.265-.148c.097-.048.187-.095.28-.138a6.177 6.177 0 0 1 2.664-.605v-9.087c-.104 0-.204 0-.309.005zm0 0\\\"/><path fill=\\\"#4c5930\\\" d=\\\"m30.7 65.224l-.014-.248c-.005-.039-.005-.081-.01-.12a5.365 5.365 0 0 0-.024-.29c0-.024-.004-.048-.004-.076c-.01-.105-.025-.214-.034-.318c-.005-.01-.005-.02-.005-.025v-.014c-.014-.114-.033-.233-.048-.348v-.01a15.167 15.167 0 0 0-.47-2.147c-.005-.005-.005-.01-.005-.014a8.735 8.735 0 0 0-.105-.33l-.015-.042c-.028-.1-.06-.195-.095-.295l-.03-.076c-.032-.085-.06-.172-.094-.257c-.014-.04-.028-.082-.048-.12c-.024-.072-.052-.137-.08-.21a2.326 2.326 0 0 0-.067-.162c-.025-.057-.043-.11-.067-.162a3.977 3.977 0 0 1-.09-.208a1.217 1.217 0 0 1-.053-.115c-.038-.081-.076-.167-.118-.247c-.01-.025-.025-.049-.034-.077c-.048-.09-.09-.185-.138-.276c-.01-.014-.015-.029-.025-.039l-.156-.304c-.004-.004-.004-.009-.01-.014a15.787 15.787 0 0 0-.871-1.41l-6.739 6.705c.153.454.253.915.3 1.382h9.153c0-.043 0-.09-.004-.134zm0 0\\\"/><path fill=\\\"#68a338\\\" d=\\\"M21.589 65.971c0 .105-.01.21-.015.31a6.706 6.706 0 0 1-.02.31a6.17 6.17 0 0 1-1.375 3.31a9.14 9.14 0 0 1-.21.228c-.066.077-.133.158-.204.229l6.453 6.425c.076-.073.143-.148.214-.224a6.003 6.003 0 0 0 .214-.22a15.835 15.835 0 0 0 1.31-1.614l.044-.067c.052-.067.095-.137.142-.21a3.484 3.484 0 0 0 .123-.185l.058-.09a15.177 15.177 0 0 0 2.381-7.582c.005-.105.005-.205.01-.31c0-.1.005-.205.005-.31zm0 0\\\"/><path fill=\\\"#3f3f42\\\" d=\\\"M33.429 47.987a4.292 4.292 0 0 0-6.049 0a4.236 4.236 0 0 0-.804 4.902L17.26 62.16a4.294 4.294 0 0 0-4.926.8a4.245 4.245 0 0 0 0 6.025a4.287 4.287 0 0 0 6.047-.005a4.236 4.236 0 0 0 .806-4.9l9.315-9.273a4.296 4.296 0 0 0 4.926-.8a4.24 4.24 0 0 0 0-6.02zm0 0\\\"/><path fill=\\\"#68a338\\\" d=\\\"M73.25 79.955v-5.04h.89v5.038zm7.662 0l-2.643-3.602v3.6h-.89v-5.039h.914l2.585 3.49v-3.49h.891v5.04zm4.095 0v-5.04h.89v5.038zm5.34 0v-4.258h-1.533v-.78h3.953v.78h-1.534v4.258zm5.334 0v-5.04h.89v5.038zm7.682 0l-.372-.972h-2.324l-.37.972h-1.011l1.99-5.04h1.105l1.991 5.04zm-1.534-4.153l-.91 2.4h1.82zm5.968 4.153v-4.258h-1.534v-.78h3.953v.78h-1.534v4.258zm5.334 0v-5.04h.89v5.038zm5.597 0l-1.991-5.04h1.01l1.533 4.073l1.534-4.073h1.01l-1.992 5.04zm5.804 0v-5.04H128v.78h-2.581v1.296h2.529v.78h-2.53v1.406H128v.776zm0 0\\\"/><path fill=\\\"#3f3f42\\\" d=\\\"M35.415 62.68c0-4.552 3.348-7.82 7.95-7.82c4.575 0 7.924 3.268 7.924 7.82c0 4.558-3.349 7.82-7.925 7.82c-4.6 0-7.949-3.262-7.949-7.82m12.55 0c0-2.833-1.801-4.962-4.602-4.962c-2.824 0-4.624 2.129-4.624 4.962c0 2.81 1.8 4.968 4.624 4.968c2.8 0 4.602-2.158 4.602-4.967zm5.029 7.549V55.114h7.104c3.305 0 5.105 2.219 5.105 4.872c0 2.629-1.824 4.849-5.105 4.849h-3.872v5.395zm8.905-10.244c0-1.272-.975-2.039-2.252-2.039h-3.415v4.058h3.414c1.278 0 2.253-.772 2.253-2.02zm4.759 10.244V55.114h10.749v2.833H69.89v3.173h7.358v2.833H69.89v3.443h7.516v2.834zm23.184 0l-7.244-9.859v9.859h-3.233V55.114h3.323l7.04 9.497v-9.498h3.234V70.23zm16.756 0l-.959-2.562h-6.51l-.957 2.562h-3.667l5.853-15.116h4.053l5.853 15.116zm-4.216-11.896l-2.366 6.5h4.738zm8.72 11.896V55.114h7.106c3.304 0 5.102 2.219 5.102 4.872c0 2.629-1.82 4.849-5.102 4.849h-3.872v5.395zm8.907-10.244c0-1.272-.981-2.039-2.253-2.039h-3.42v4.058h3.42c1.272 0 2.252-.772 2.252-2.02zm4.758 10.244V55.114H128V70.23zm0 0\\\"/>\"\n\t\t},\n\t\t\"opencl\": {\n\t\t\t\"body\": \"<path fill=\\\"#abd038\\\" d=\\\"M54.809 43.161a3427.622 3427.622 0 0 0 4.862-7.618c-8.308.625-15.991 2.782-22.491 6.07c1.001 1.873 2.3 4.226 3.302 6.046a43.678 43.678 0 0 1 11.141-2.548a4.304 4.304 0 0 0 3.186-1.95\\\"/><path fill=\\\"#ee332d\\\" d=\\\"M85.139 55.148c1.807.858 3.562 1.118 6.019 1.118c4.497 0 12.987.013 17.654.026c-4.108-6.826-11.154-12.506-19.981-16.224c-3.133 2.093-12.103 8.099-13.533 9.047c5.667 2.769 8.059 5.187 9.84 6.033z\\\"/><path fill=\\\"#f2ba1a\\\" d=\\\"M61.387 35.439c-.246.728-2.456 7.358-3.158 9.503c3.562.156 6.994.702 10.205 1.599a7.907 7.907 0 0 0 5.733-.572l12.948-6.604c-6.695-2.561-14.313-4.018-22.412-4.018a71.487 71.487 0 0 0-3.316.092\\\"/><path fill=\\\"#3dae2b\\\" d=\\\"m19.41 58.06l4.199.013a4.042 4.042 0 0 0 2.977-1.3c2.275-2.482 5.07-4.666 8.28-6.474a3.124 3.124 0 0 0 1.574-3.211a611.324 611.324 0 0 0-.741-4.68c-7.32 3.965-13.014 9.373-16.29 15.652z\\\"/><path fill=\\\"#010101\\\" d=\\\"M121.11 61.518h-.962v2.508h-.845v-2.508h-.975v-.729h2.782zm3.991-.729v3.237h-.793V61.57h-.013l-.676 2.456h-.65l-.676-2.456h-.013v2.456h-.794V60.79h1.248l.56 2.159l.56-2.159M20.852 64.221a10.97 10.97 0 0 0-3.784-2.833c-1.482-.702-3.172-1.053-5.043-1.053c-1.873 0-3.55.35-5.044 1.053A11.58 11.58 0 0 0 3.2 64.22a12.675 12.675 0 0 0-2.366 4.174A15.432 15.432 0 0 0 0 73.439c0 1.794.273 3.497.832 5.082c.546 1.586 1.339 2.977 2.366 4.174c1.027 1.196 2.288 2.131 3.783 2.82c1.482.69 3.172 1.041 5.044 1.041c1.872 0 3.549-.35 5.043-1.04a11.185 11.185 0 0 0 3.784-2.821a12.67 12.67 0 0 0 2.366-4.174a15.546 15.546 0 0 0 .832-5.082c0-1.781-.273-3.459-.832-5.044a12.65 12.65 0 0 0-2.365-4.174zM19.214 76.95c-.299 1.144-.74 2.171-1.352 3.068a6.864 6.864 0 0 1-2.366 2.159c-.975.532-2.131.806-3.458.806c-1.339 0-2.482-.273-3.458-.806a6.625 6.625 0 0 1-2.366-2.159a9.507 9.507 0 0 1-1.352-3.068a13.805 13.805 0 0 1-.442-3.51c0-1.195.144-2.365.442-3.51c.3-1.144.741-2.171 1.352-3.068a6.988 6.988 0 0 1 2.366-2.158c.976-.533 2.132-.807 3.458-.807c1.339 0 2.483.273 3.458.807a6.625 6.625 0 0 1 2.366 2.158a9.507 9.507 0 0 1 1.352 3.068a13.8 13.8 0 0 1 .442 3.51a14.44 14.44 0 0 1-.442 3.51m23.452-6.786a7.463 7.463 0 0 0-2.652-2.066c-1.066-.507-2.314-.754-3.744-.754a7.824 7.824 0 0 0-3.263.689c-1.013.455-1.794 1.208-2.353 2.261h-.065v-2.47h-3.796v24.83h4.004v-9.048h.065c.3.495.689.923 1.144 1.274a6.43 6.43 0 0 0 1.495.897a7.45 7.45 0 0 0 1.69.507a9.982 9.982 0 0 0 1.754.156c1.34 0 2.496-.26 3.484-.793a7.094 7.094 0 0 0 2.445-2.106c.65-.871 1.131-1.885 1.443-3.029c.312-1.143.467-2.326.467-3.549a13 13 0 0 0-.532-3.757a9.014 9.014 0 0 0-1.586-3.042m-2.157 9.074c-.182.753-.468 1.443-.884 2.04a5.079 5.079 0 0 1-1.56 1.457c-.636.377-1.403.56-2.314.56c-.818 0-1.547-.17-2.158-.495a4.788 4.788 0 0 1-1.6-1.339a5.748 5.748 0 0 1-1-2.015a9.296 9.296 0 0 1-.338-2.547c0-1.937.43-3.498 1.287-4.667c.858-1.17 2.132-1.755 3.81-1.755c.818 0 1.547.182 2.183.546a4.957 4.957 0 0 1 1.586 1.443a6.19 6.19 0 0 1 .949 2.054c.208.767.311 1.573.311 2.38a10.646 10.646 0 0 1-.272 2.338m21.307-8.645a8.367 8.367 0 0 0-2.834-2.367c-1.131-.597-2.417-.896-3.848-.896c-1.365 0-2.575.26-3.653.766c-1.079.52-2.002 1.21-2.756 2.094a9.113 9.113 0 0 0-1.755 3.055c-.416 1.157-.611 2.38-.611 3.666c0 1.404.195 2.691.585 3.86c.39 1.17.962 2.171 1.716 3.017a7.827 7.827 0 0 0 2.795 1.963c1.104.468 2.366.702 3.796.702a9.77 9.77 0 0 0 2.833-.403a8.059 8.059 0 0 0 2.444-1.196a7.192 7.192 0 0 0 1.86-1.95c.52-.767.883-1.65 1.092-2.626h-3.796c-.35 1.001-.884 1.755-1.599 2.262c-.715.507-1.664.753-2.833.753c-.846 0-1.574-.143-2.185-.441a4.246 4.246 0 0 1-1.508-1.17a4.934 4.934 0 0 1-.897-1.716a7.11 7.11 0 0 1-.3-2.04h13.352c.17-1.353.079-2.666-.26-3.953a10.085 10.085 0 0 0-1.638-3.38m-11.467 4.705a5.386 5.386 0 0 1 .403-1.898a4.86 4.86 0 0 1 .988-1.52a4.408 4.408 0 0 1 1.482-1.014c.572-.247 1.209-.364 1.91-.364c.677 0 1.3.13 1.847.402a4.743 4.743 0 0 1 1.403 1.053c.39.43.689.936.91 1.52c.223.585.352 1.197.403 1.82zm29.863-6.421c-1.144-1.027-2.717-1.548-4.706-1.548c-1.197 0-2.289.287-3.263.858c-.988.572-1.781 1.365-2.392 2.366l-.065-.065v-2.665H65.99v18.136h4.004v-10.7c0-.65.105-1.273.312-1.859a4.617 4.617 0 0 1 .884-1.52a4.065 4.065 0 0 1 1.364-1.014c.533-.247 1.144-.364 1.834-.364c1.196 0 2.08.325 2.64.962c.559.637.87 1.677.91 3.107V85.97h4.004V73.517c-.001-2.068-.587-3.614-1.73-4.641zm21.762 7.28c-.195 1.56-.754 2.846-1.639 3.822c-.87.949-2.105 1.443-3.665 1.443c-1.17 0-2.159-.221-2.964-.676a5.667 5.667 0 0 1-1.975-1.78a7.809 7.809 0 0 1-1.118-2.549a12.258 12.258 0 0 1-.351-2.937c0-1.053.116-2.08.35-3.068a8.153 8.153 0 0 1 1.119-2.613a5.632 5.632 0 0 1 1.975-1.807c.806-.442 1.808-.676 2.964-.676a5.38 5.38 0 0 1 1.82.311a5.26 5.26 0 0 1 2.703 2.159a4.232 4.232 0 0 1 .586 1.599l.039.247h5.824l-.04-.326c-.169-1.456-.571-2.77-1.208-3.9a9.466 9.466 0 0 0-2.445-2.86a10.728 10.728 0 0 0-3.328-1.755c-1.234-.402-2.56-.597-3.939-.597c-1.937 0-3.705.337-5.226 1.027a11.402 11.402 0 0 0-3.9 2.833c-1.053 1.197-1.872 2.613-2.444 4.225c-.56 1.613-.846 3.354-.846 5.187c0 1.794.286 3.51.846 5.096c.56 1.586 1.378 2.991 2.444 4.16a11.39 11.39 0 0 0 3.9 2.796c1.52.676 3.289 1.027 5.226 1.027c1.548 0 2.99-.247 4.277-.728a10.099 10.099 0 0 0 3.406-2.08a10.319 10.319 0 0 0 2.34-3.263c.586-1.261.95-2.704 1.093-4.264l.026-.312h-5.812zM116 80.835V60.789h-6.007v25.169H128v-5.122z\\\"/>\"\n\t\t},\n\t\t\"opencv\": {\n\t\t\t\"body\": \"<path fill=\\\"#128dff\\\" d=\\\"M112.871 66.602c9.004 5.277 15.055 15.027 15.074 26.191c.032 16.805-13.617 30.453-30.48 30.48c-16.863.032-30.559-13.57-30.59-30.375c-.02-11.164 5.996-20.933 14.984-26.246l8.774 14.778c.219.37.094.847-.262 1.09c-3.32 2.25-5.496 6.046-5.488 10.347c.012 6.895 5.633 12.477 12.55 12.461c6.919-.012 12.516-5.61 12.504-12.504c-.007-4.3-2.195-8.09-5.523-10.328c-.355-.242-.484-.719-.266-1.09zm0 0\\\"/><path fill=\\\"#8bda67\\\" d=\\\"M45.477 66.422a30.495 30.495 0 0 0-14.907-3.867C13.703 62.555.035 76.18.035 92.985c0 16.804 13.668 30.43 30.535 30.43c16.946 0 30.95-14.337 30.524-31.212H43.906c-.453 0-.808.383-.812.832c-.043 6.723-5.672 12.434-12.524 12.434c-6.922 0-12.527-5.59-12.527-12.485c0-6.894 5.605-12.484 12.527-12.484c1.809 0 3.532.383 5.086 1.074c.383.168.836.04 1.047-.316zm0 0\\\"/><path fill=\\\"#ff2a44\\\" d=\\\"M47.945 61.648c-8.992-5.293-15.027-15.054-15.027-26.218C32.918 18.625 46.59 5 63.453 5s30.535 13.625 30.535 30.43c0 11.164-6.035 20.925-15.027 26.218L70.21 46.86c-.219-.37-.094-.847.266-1.09c3.32-2.246 5.503-6.039 5.503-10.34c0-6.894-5.609-12.484-12.527-12.484c-6.918 0-12.527 5.59-12.527 12.485c0 4.3 2.183 8.093 5.504 10.34c.36.242.484.718.265 1.09zm0 0\\\"/>\"\n\t\t},\n\t\t\"opencv-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#128dff\\\" d=\\\"M101.653 47.26c6.753 3.964 11.291 11.288 11.306 19.672c.024 12.622-10.213 22.87-22.86 22.89c-12.648.023-22.92-10.189-22.943-22.81c-.015-8.385 4.497-15.724 11.238-19.712l6.58 11.098a.616.616 0 0 1-.196.818a9.356 9.356 0 0 0-4.116 7.772c.01 5.177 4.225 9.367 9.413 9.358c5.189-.01 9.387-4.213 9.378-9.39a9.354 9.354 0 0 0-4.143-7.758a.619.619 0 0 1-.199-.817zm0 0\\\"/><path fill=\\\"#8bda67\\\" d=\\\"M51.108 47.128a22.841 22.841 0 0 0-11.18-2.903c-12.65 0-22.902 10.23-22.902 22.852c0 12.62 10.251 22.85 22.901 22.85c12.71 0 23.213-10.766 22.893-23.437H49.93a.62.62 0 0 0-.61.624c-.032 5.048-4.254 9.337-9.393 9.337c-5.191 0-9.395-4.198-9.395-9.374c0-5.18 4.204-9.375 9.395-9.375c1.357 0 2.65.286 3.815.805a.62.62 0 0 0 .785-.238zm0 0\\\"/><path fill=\\\"#ff2a44\\\" d=\\\"M52.959 43.542c-6.744-3.976-11.27-11.306-11.27-19.69C41.689 11.23 51.943 1 64.589 1s22.902 10.23 22.902 22.852c0 8.385-4.526 15.714-11.27 19.69l-6.563-11.107a.614.614 0 0 1 .2-.817a9.366 9.366 0 0 0 4.127-7.766c0-5.178-4.207-9.375-9.395-9.375c-5.189 0-9.395 4.197-9.395 9.375a9.365 9.365 0 0 0 4.128 7.766c.27.181.363.54.198.818zm0 0\\\"/><path d=\\\"M26.19 102.414c2.953 0 5.001.709 6.144 2.127c1.163 1.418 1.743 4.005 1.743 7.76c0 3.756-.58 6.343-1.743 7.761c-1.143 1.418-3.19 2.127-6.144 2.127c-2.935 0-4.983-.708-6.143-2.127c-1.146-1.417-1.717-4.005-1.717-7.76c0-3.756.571-6.343 1.717-7.76c1.16-1.418 3.208-2.128 6.143-2.128m0 2.956c-1.605 0-2.712.498-3.322 1.491c-.589.976-.885 2.79-.885 5.44c0 2.652.296 4.474.885 5.47c.61.976 1.718 1.463 3.323 1.463c1.623 0 2.73-.487 3.322-1.463c.606-.996.91-2.818.91-5.47c0-2.65-.304-4.464-.91-5.44c-.593-.993-1.7-1.491-3.323-1.491m12.847 2.927l.22 2.018c.63-.7 1.459-1.27 2.493-1.713c1.051-.443 2.075-.663 3.07-.663c3.083 0 4.624 2.412 4.624 7.237c0 2.557-.426 4.362-1.273 5.41c-.831 1.053-2.14 1.577-3.931 1.577c-1.828 0-3.395-.442-4.705-1.327c.074.94.103 1.878.083 2.818v3.563h-3.35v-18.92zm.58 4.087v6.463c1.735.387 2.945.58 3.627.58c1.035 0 1.743-.276 2.13-.826c.407-.572.61-1.723.61-3.455c0-1.693-.186-2.853-.555-3.48c-.348-.645-.966-.967-1.854-.967c-.61 0-1.207.14-1.799.416c-.571.258-1.291.68-2.159 1.269m20.733 4.09h-5.537c.13 1.177.463 1.968.996 2.373c.537.387 1.413.58 2.631.58c1.383 0 3.01-.109 4.872-.331l.305 2.156c-1.274.607-3.137.911-5.593.911c-2.452 0-4.198-.545-5.229-1.629c-1.035-1.087-1.55-2.921-1.55-5.499c0-2.63.507-4.473 1.521-5.522c1.016-1.067 2.695-1.603 5.038-1.603c2.16 0 3.727.396 4.706 1.19c.978.773 1.465 1.942 1.465 3.507c0 2.578-1.208 3.867-3.624 3.867zm-5.592-2.35h4.652c.812 0 1.216-.525 1.216-1.573c0-.736-.194-1.252-.58-1.547c-.387-.292-1.09-.443-2.103-.443c-1.181 0-2.001.25-2.464.748c-.443.477-.683 1.417-.721 2.815m13.927-5.827l.223 1.99c2.104-1.583 4.06-2.377 5.868-2.377c1.199 0 2.121.323 2.766.967c.648.645.97 1.576.97 2.79v10.165h-3.375v-9.144c0-.753-.103-1.26-.305-1.517c-.205-.279-.583-.416-1.136-.416c-.627 0-1.272.129-1.937.386c-.645.258-1.485.683-2.52 1.272v9.419h-3.375v-13.536zm25.278 10.55l.302 2.598c-1.53.477-3.487.718-5.865.718c-2.863 0-4.873-.739-6.036-2.21c-1.163-1.472-1.743-4.025-1.743-7.652s.58-6.175 1.743-7.649c1.163-1.474 3.173-2.209 6.035-2.209c2.121 0 3.947.203 5.479.606l-.331 2.625a64.492 64.492 0 0 0-5.148-.192c-1.587 0-2.677.486-3.266 1.461c-.574.958-.859 2.745-.859 5.358c0 2.617.285 4.41.859 5.388c.589.955 1.679 1.436 3.266 1.436c2.341 0 4.196-.094 5.564-.278m17.719-16.072l-5.397 18.09c-.184.642-.61.967-1.275.967h-3.262a1.38 1.38 0 0 1-.804-.25a1.343 1.343 0 0 1-.445-.717l-5.423-18.09h3.568l3.903 14.305c.056.222.14.58.252 1.078c.108.478.193.829.248 1.049h.692a22.79 22.79 0 0 1 .525-2.127l3.846-14.306zm0 0\\\"/>\"\n\t\t},\n\t\t\"opengl\": {\n\t\t\t\"body\": \"<g fill-rule=\\\"evenodd\\\"><path fill=\\\"#B3B3B3\\\" d=\\\"M27.363 76.605c-6.078 0-9.094-3.645-10.277-7.453c1.32 6.195 8.449 12.23 30.945 14.91c21.258 2.551 35.09-3.848 39.77-6.824c0 0 3.156-1.367 1.266.742c0 0-13.398 12.129-39.609 12.285c-26.262.129-47.09-12.863-46.984-26.043c-.125-13.125 20.723-26.145 46.984-26.039c26.262.125 39.609 12.281 39.609 12.281c1.895 2.105-1.266.75-1.266.75c-4.668-2.969-18.457-8.82-39.77-6.824c-20.934 1.98-27.77 8.977-30.086 13.648c-.871 1.813-1.27 3.523-1.367 5.242c.566-4.496 3.414-9.766 10.766-9.766c8.34 0 10.871 6.824 10.871 11.496c0 4.727-2.547 11.551-10.871 11.551zm84.496-4.539h11.086v3.961h-15.77v-21.89h4.66v17.902zm-17.113-7.828h9.309v11.816h-3.105l-.465-2.746c-1.18 1.344-2.891 3.324-6.941 3.324c-5.371 0-10.227-3.777-10.227-11.445c0-5.984 3.387-11.605 10.926-11.605c6.832 0 9.523 4.359 9.793 7.352h-4.66c0-.852-1.582-3.598-4.875-3.598c-3.32 0-6.406 2.258-6.406 7.875c0 5.988 3.32 7.512 6.512 7.512c1.023 0 4.441-.395 5.383-4.816h-5.187V64.22zm-67.273-8.031c-4.844 0-7.75 3.746-7.75 8.926c0 5.152 2.918 8.926 7.75 8.926c4.844 0 7.75-3.75 7.75-8.926c0-5.152-2.918-8.926-7.75-8.926m12.539 5.832h2.262v1.977h.055c.57-.805 1.66-2.387 4.25-2.387c3.789 0 6.512 3.152 6.512 7.09c0 3.348-1.965 7.719-6.836 7.719c-1.91 0-3.164-.883-3.785-1.875h-.055v7.035h-2.402zm6.082 12.387c2.617 0 4.391-2.227 4.391-5.301c0-1.797-.738-5.355-4.445-5.355c-3.461 0-3.844 3.664-3.844 5.934c0 3.715 2.375 4.711 3.898 4.711zm21.527-2.754c-.082.664-.738 2.652-2.535 3.824c-.656.43-1.582.969-3.871.969c-4.008 0-6.402-2.973-6.402-7.035c0-4.34 2.125-7.773 6.836-7.773c4.117 0 6.133 3.215 6.133 8.191H57.34c0 2.922 1.391 4.605 4.145 4.605c2.262 0 3.602-1.711 3.684-2.758h2.398zm-2.539-3.719c-.137-2.168-1.066-4.176-3.984-4.176c-2.207 0-3.949 2.008-3.949 4.176zm15.984 8.086h-2.402v-8.613c0-2.43-.711-3.664-3.051-3.664c-1.363 0-3.762.859-3.762 4.656v7.613h-2.402V62.016h2.266v1.977h.055c.52-.75 1.852-2.383 4.305-2.383c2.207 0 4.992.883 4.992 4.875v9.555\\\"/><path fill=\\\"#5586A4\\\" d=\\\"M26.289 75.031c-6.137 0-9.203-3.645-10.387-7.453c1.336 6.191 8.555 12.23 31.27 14.91c21.473 2.543 35.465-3.848 40.199-6.828c0 0 3.191-1.363 1.277.746c0 0-13.508 12.129-40.094 12.285C22.02 88.816.926 75.828 1.086 62.648C.957 49.523 22.02 36.504 48.555 36.609c26.531.125 40.094 12.281 40.094 12.281c1.914 2.105-1.277.75-1.277.75c-4.719-2.969-18.676-8.82-40.199-6.828c-21.207 1.984-28.094 8.98-30.41 13.652a13.44 13.44 0 0 0-1.383 5.242c.57-4.496 3.449-9.77 10.871-9.77c8.398 0 10.98 6.828 10.98 11.551s-2.574 11.5-10.98 11.5zm85.57-4.543h11.195v3.965h-15.93V52.555h4.707v17.91zm-17.277-7.824H104v11.813h-3.137l-.469-2.738c-1.195 1.34-2.926 3.324-7.051 3.324c-5.437 0-10.387-3.777-10.387-11.445c0-5.984 3.422-11.605 11.031-11.605c6.891 0 9.633 4.359 9.902 7.352h-4.707c0-.852-1.605-3.598-4.93-3.598c-3.359 0-6.461 2.258-6.461 7.875c0 5.988 3.359 7.512 6.566 7.512c1.035 0 4.488-.395 5.438-4.816h-5.242v-3.687zm-68.348-8.031c-4.898 0-7.855 3.746-7.855 8.926c0 5.148 2.949 8.926 7.855 8.926c4.898 0 7.859-3.75 7.859-8.926c0-5.152-2.949-8.926-7.859-8.926m12.703 5.828h2.285v1.98h.055c.582-.805 1.68-2.387 4.301-2.387c3.832 0 6.566 3.152 6.566 7.09c0 3.344-1.988 7.719-6.891 7.719c-1.93 0-3.195-.883-3.832-1.875h-.055v7.035H38.94V60.488zm6.133 12.395c2.648 0 4.441-2.23 4.441-5.305c0-1.801-.75-5.359-4.496-5.359c-3.496 0-3.883 3.668-3.883 5.938c0 3.715 2.398 4.711 3.938 4.711zm21.742-2.762c-.082.672-.742 2.652-2.562 3.828c-.66.43-1.598.969-3.91.969c-4.055 0-6.457-2.973-6.457-7.039c0-4.336 2.152-7.77 6.941-7.77c4.16 0 6.188 3.215 6.188 8.191H56.465c0 2.922 1.402 4.602 4.191 4.602c2.289 0 3.637-1.707 3.719-2.754h2.43zm-2.57-3.715c-.141-2.172-1.078-4.176-4.027-4.176c-2.234 0-4 2.004-4 4.176zm16.145 8.082h-2.426v-8.609c0-2.434-.719-3.664-3.09-3.664c-1.379 0-3.805.855-3.805 4.656v7.613h-2.43V60.441h2.289v1.977h.055c.523-.75 1.871-2.383 4.355-2.383c2.23 0 5.043.883 5.043 4.875v9.504\\\"/><path fill=\\\"#999\\\" d=\\\"M127.754 74.242A2.015 2.015 0 0 1 126.719 76c-.321.183-.664.27-1.035.27s-.711-.09-1.031-.27a2.06 2.06 0 0 1-.758-.742a1.97 1.97 0 0 1-.277-1.016a1.98 1.98 0 0 1 .277-1.012a2.07 2.07 0 0 1 1.789-1.012a2.074 2.074 0 0 1 1.793 1.012a1.98 1.98 0 0 1 .277 1.012m-.398 0c0-.449-.164-.836-.492-1.152a1.62 1.62 0 0 0-1.176-.484a1.62 1.62 0 0 0-1.18.484a1.54 1.54 0 0 0-.488 1.152a1.55 1.55 0 0 0 .488 1.156c.328.32.719.48 1.18.48a1.61 1.61 0 0 0 1.176-.48c.328-.32.492-.703.492-1.156m-2.605-1.082h.988c.277 0 .484.055.609.168s.188.258.188.441a.54.54 0 0 1-.145.379c-.094.105-.246.184-.453.23a.597.597 0 0 1 .188.098a.876.876 0 0 1 .176.227c.004.004.125.215.359.621h-.652l-.426-.738c-.07-.082-.145-.121-.215-.121c-.02 0-.039 0-.07.008v.852h-.551zm.551.918h.238c.156 0 .27-.023.336-.074s.098-.113.098-.195s-.031-.148-.094-.195s-.168-.078-.32-.078h-.258zm0 0\\\"/><path fill=\\\"#5586A4\\\" d=\\\"M127.754 73.719a1.95 1.95 0 0 1-.277 1.012a1.972 1.972 0 0 1-.758.742a2.07 2.07 0 0 1-1.035.273c-.367 0-.711-.094-1.031-.273s-.57-.426-.758-.742a1.95 1.95 0 0 1-.277-1.012c0-.359.094-.699.277-1.016a2.02 2.02 0 0 1 .758-.738c.32-.18.664-.27 1.031-.27s.719.09 1.035.27s.574.426.758.738s.277.656.277 1.016m-.398 0a1.53 1.53 0 0 0-.492-1.152c-.324-.324-.719-.484-1.176-.484s-.855.16-1.18.484a1.54 1.54 0 0 0-.488 1.152a1.55 1.55 0 0 0 .488 1.156a1.62 1.62 0 0 0 1.18.477c.461 0 .852-.156 1.176-.477s.492-.703.492-1.156m-2.605-1.086h.988c.277 0 .484.059.609.168s.188.262.188.445c0 .145-.047.27-.145.379c-.094.102-.246.18-.453.23a.597.597 0 0 1 .188.098a.92.92 0 0 1 .176.223c.004.004.125.215.359.625h-.652l-.426-.738c-.07-.082-.145-.125-.215-.125c-.02 0-.039.004-.07.008v.855h-.551zm.551.922h.238c.156 0 .27-.027.336-.078a.24.24 0 0 0 .098-.195a.23.23 0 0 0-.094-.191c-.062-.051-.168-.078-.32-.078h-.258zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"openstack\": {\n\t\t\t\"body\": \"<path fill=\\\"#ed1944\\\" d=\\\"M123.885 111.93v-.03a1.74 1.74 0 0 0-.46-1.264a2.043 2.043 0 0 0-1.48-.52h-2.037v5.44h1.124v-1.813h.689l1.003 1.813h1.294l-1.16-2.025a1.644 1.644 0 0 0 1.027-1.601m-1.137.036a.786.786 0 0 1-.888.816h-.834v-1.644h.81c.604 0 .912.272.912.816zm4.612.973a5.56 5.56 0 1 0-5.56 5.566a5.567 5.567 0 0 0 5.56-5.566m-5.56 4.194a4.195 4.195 0 1 1 4.194-4.194a4.195 4.195 0 0 1-4.195 4.194zm-34.935-65.71h25.155v25.155H86.865Zm-86.225 0h25.155v25.155H.64Zm86.225 36.33a5.603 5.603 0 0 1-5.597 5.597H31.386a5.603 5.603 0 0 1-5.597-5.597V83.77H.64v24.382a10.378 10.378 0 0 0 10.347 10.353h90.662a10.384 10.384 0 0 0 10.401-10.353V83.77H86.865Zm14.802-78.258H11.006A10.378 10.378 0 0 0 .658 19.842V44.23h25.15v-3.983a5.597 5.597 0 0 1 5.596-5.597h49.882a5.597 5.597 0 0 1 5.597 5.597v3.983h25.167V19.842a10.384 10.384 0 0 0-10.383-10.347\\\"/>\"\n\t\t},\n\t\t\"openstack-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#4e4540\\\" d=\\\"M110.31 69.842v20.455h3.202v-4.338l8.925-10.678h-3.798l-5.127 6.602V69.842h-3.201zm-35.93 1.387v4.05h-1.64l.523 2.748h1.117v8.641c0 2.919 1.671 3.855 3.883 3.855a5.443 5.443 0 0 0 2.662-.654v-2.635a3.623 3.623 0 0 1-1.727.426c-1.02 0-1.62-.483-1.62-1.644v-7.989h3.372V75.28h-3.367v-4.05H74.38ZM7.582 74.996c-3.966 0-6.941 3.287-6.941 7.707v.254c0 4.447 2.918 7.65 6.884 7.65c3.967 0 6.942-3.26 6.942-7.68v-.253c0-4.45-2.919-7.678-6.885-7.678m-.057 2.834c2.182 0 3.739 2.095 3.739 4.9v.17c0 2.806-1.444 4.9-3.682 4.9c-2.182 0-3.74-2.124-3.74-4.929v-.168c0-2.805 1.445-4.873 3.683-4.873m16.347-2.834c-2.16 0-3.457 1.247-4.393 2.7v-2.409h-3.2v19.285h3.194v-6.545c.907 1.331 2.21 2.55 4.392 2.55c3.038 0 5.84-2.549 5.84-7.593v-.394c0-5.073-2.832-7.594-5.834-7.594zm-.877 2.834c1.927 0 3.482 1.841 3.482 4.844v.254c0 3.005-1.528 4.816-3.483 4.816s-3.572-1.868-3.572-4.816v-.283c0-2.946 1.644-4.815 3.572-4.815zm30.497-2.834c-2.041 0-3.259 1.163-4.11 2.494v-2.21h-3.2v15.017h3.199v-9.098c0-2.068 1.163-3.312 2.834-3.312s2.701 1.16 2.701 3.256v9.154h3.201V80.238c-.01-3.202-1.739-5.242-4.625-5.242m49.938 0c-3.94 0-6.856 3.239-6.856 7.707v.272c0 4.476 2.833 7.62 6.75 7.62c2.279.012 3.788-.922 4.979-2.253l-1.729-2.125c-.88.877-1.756 1.527-3.06 1.527c-2.182 0-3.711-1.954-3.711-4.873v-.14c0-2.833 1.529-4.844 3.627-4.844c1.35 0 2.237.68 3.03 1.502l1.786-2.352c-1.247-1.247-2.664-2.04-4.816-2.04zm-65.573.01c-3.685 0-6.404 3.24-6.404 7.736v.227c0 4.703 3.002 7.648 6.858 7.648a6.901 6.901 0 0 0 5.267-2.332l-1.672-1.974c-.99.963-2.037 1.587-3.455 1.587c-1.955 0-3.51-1.35-3.797-3.882h9.407c.027-.454.027-.907.027-1.104c0-4.503-2.159-7.906-6.23-7.906zm0 2.682c1.869 0 2.946 1.727 3.116 4.109h-6.348c.238-2.552 1.475-4.11 3.232-4.11zm28.077-2.642c-2.803 0-4.957 1.702-4.957 4.393v.057c0 2.465 1.87 3.483 4.109 4.447c1.785.764 2.945 1.247 2.945 2.325v.027c0 .934-.764 1.644-2.097 1.644c-1.334 0-2.776-.653-4.137-1.757l-1.5 2.295a8.861 8.861 0 0 0 5.58 2.095c2.897.006 5.137-1.61 5.137-4.556v-.026c0-2.351-1.758-3.429-4.08-4.476c-1.758-.794-2.95-1.304-2.95-2.295v-.057c0-.81.711-1.475 1.891-1.475c1.18 0 2.429.566 3.568 1.33l1.352-2.351a8.589 8.589 0 0 0-4.861-1.62m22.828.063a10.684 10.684 0 0 0-4.957 1.19l.908 2.549a8.572 8.572 0 0 1 3.635-.907c2.038 0 3.238 1.048 3.238 3.059v.623a10.203 10.203 0 0 0-3.455-.596c-3.173 0-5.328 1.588-5.328 4.817v.142c0 2.916 2.1 4.59 4.592 4.59c1.954 0 3.285-.847 4.166-2.12v1.84h3.142v-9.323c-.01-1.869-.522-3.343-1.521-4.334c-.964-.991-2.465-1.53-4.42-1.53m.062 8.102a7.204 7.204 0 0 1 2.78.541l-.006 1.5c0 1.698-1.419 2.947-3.26 2.92c-1.388-.03-2.43-.882-2.43-2.383v-.057c0-1.584 1.08-2.521 2.916-2.521m29.274-.709l-2.246 2.416l3.013 5.379h3.713zm7.101 4.041a1.89 1.89 0 0 0 .27 3.762a1.89 1.89 0 0 0 1.89-1.89a1.89 1.89 0 0 0-2.16-1.872m.492.47a1.417 1.417 0 0 1 1.196 1.401a1.42 1.42 0 0 1-1.407 1.406l-.011.012a1.417 1.417 0 1 1 .222-2.818zm-.853.46v1.84h.38v-.604h.241l.336.603h.437l-.38-.693a.559.559 0 0 0 .334-.545a.586.586 0 0 0-.159-.428a.683.683 0 0 0-.498-.173zm.39.332h.27c.197 0 .309.091.309.27h-.008a.27.27 0 0 1-.301.269h-.27v-.54z\\\"/><path fill=\\\"#ed1944\\\" d=\\\"M49.127 33.426a2.924 2.924 0 0 0-2.916 2.916v6.87h7.088V42.09a1.574 1.574 0 0 1 1.576-1.576h14.053a1.574 1.574 0 0 1 1.578 1.576v1.123h7.086v-6.871a2.924 2.924 0 0 0-2.916-2.916zm-2.92 11.814v7.088h7.088V45.24Zm24.299 0v7.088h7.086V45.24Zm-24.303 9.114v6.87a2.924 2.924 0 0 0 2.916 2.917h25.549a2.924 2.924 0 0 0 2.916-2.916v-6.871h-7.082v1.123a1.577 1.577 0 0 1-1.576 1.576H54.875a1.577 1.577 0 0 1-1.576-1.576v-1.123z\\\"/>\"\n\t\t},\n\t\t\"opensuse\": {\n\t\t\t\"body\": \"<path fill=\\\"#73ba25\\\" d=\\\"M58.777 32.575c-9.624.045-21.95 1.594-37.058 10.789l-.594.368c-9.478 5.854-16.018 13.067-19.44 21.454C.613 67.82-.83 73.776.599 79.376c.617 2.449 1.767 4.911 3.315 7.113c3.496 4.978 9.372 8.28 15.694 8.838c8.929.79 15.686-3.18 18.09-10.613c1.651-5.129 0-12.654-6.336-16.493c-5.157-3.124-10.698-2.413-13.915-.31c-2.786 1.832-4.366 4.677-4.34 7.804c.062 5.543 4.886 8.488 8.356 8.497c1.008 0 2.019-.172 3.16-.541c.408-.124.79-.276 1.21-.532l.13-.076l.057-.04a2.817 2.817 0 0 0 1.265-2.33a2.749 2.749 0 0 0-.111-.771c-.408-1.403-1.811-2.25-3.262-1.988l-.195.044l-.266.08l-.386.133a7.621 7.621 0 0 1-1.522.213c-.408-.027-2.4-.616-2.4-2.782v-.027c0-.798.318-1.354.496-1.66c.62-.964 2.322-1.906 4.62-1.712c3.012.258 5.186 1.79 6.629 4.677c1.336 2.685.985 5.986-.901 8.404c-1.877 2.397-5.214 3.417-9.65 2.942c-4.479-.489-8.263-3.04-10.38-7.007c-2.076-3.882-2.187-8.484-.292-12.015c4.53-8.471 13.085-8.383 17.78-7.58c6.943 1.194 14.842 7.536 17.646 14.857c.452 1.166.683 2.094.883 2.941l.302 1.265l7.845 3.79c.168.083.227.11.293.061c.084-.062.035-.226.035-.226c-.049-.173-.164-.333-.342-2.507c-.15-1.93-.453-7.21 2.232-9.824c1.043-1.024 2.632-1.939 3.887-2.227c5.138-1.247 11.168-.386 16.87 6.145c2.95 3.373 4.389 4.912 5.112 5.6c0 0 .164.155.253.226c.093.08.155.143.297.222c.235.13 9.802 4.49 9.802 4.49s.111.053.195-.048s.004-.204.004-.204c-.062-.072-6.06-7.747-4.996-14.07c.843-5.033 4.89-4.58 10.49-3.954c1.827.212 3.908.448 6.06.497c6.017.04 12.497-1.06 16.49-2.791c2.582-1.109 4.228-1.85 5.262-2.782c.372-.301.563-.8.763-1.331l.142-.351c.168-.43.412-1.342.52-1.841c.043-.219.097-.434-.09-.573c-.164-.128-.55.102-.55.102c-1.753 1.043-6.137 3.021-10.236 3.106c-5.086.102-15.397-5.099-16.462-5.648l-2.157-5.05c7.375 4.81 13.494 7.468 18.175 7.88c5.214.458 9.278-2.356 11.04-3.527c.23-.156.46-.323.674-.488c.04-.026.129-.107.115-.178c-.293-1.81-3.012-10.583-5.076-12.69c-.568-.577-1.02-1.14-1.939-1.677c-7.454-4.3-25.14-6.895-25.966-7.01c0 0-.084-.019-.142.035c-.046.044-.054.128-.054.128l-.08 4.034c-1.805-.602-14.936-4.801-27.239-5.223c-2.61-.09-5.518-.244-8.725-.228Zm56.012 8.663c4.167.147 7.442 3.63 7.3 7.752a7.44 7.44 0 0 1-2.397 5.214a7.552 7.552 0 0 1-5.435 2.014c-4.162-.15-7.433-3.63-7.295-7.756a7.45 7.45 0 0 1 2.396-5.218a7.61 7.61 0 0 1 5.431-2.006m-.066 2.206a5.242 5.242 0 0 0-3.78 1.397a5.146 5.146 0 0 0-1.67 3.634c-.097 2.885 2.185 5.311 5.09 5.418a5.316 5.316 0 0 0 3.79-1.407a5.146 5.146 0 0 0 1.664-3.634c.102-2.884-2.18-5.306-5.094-5.408m.865 2.622c1.295 0 2.343.687 2.343 1.548c0 .848-1.051 1.545-2.343 1.545c-1.295 0-2.343-.697-2.343-1.545c0-.86 1.048-1.548 2.343-1.548m-20.11 37.09a1.647 1.647 0 0 0-1.654 1.65a1.647 1.647 0 0 0 1.655 1.66a1.655 1.655 0 0 0 .004-3.31zm0 .258h.005c.74 0 1.335.625 1.335 1.402c0 .777-.595 1.402-1.335 1.393c-.74 0-1.34-.616-1.34-1.402c0-.771.6-1.393 1.335-1.393m-.084.47c-.221 0-.369.022-.528.044v1.842h.298v-.794h.208c.24 0 .356.088.404.323c.036.244.08.414.124.47h.31c-.031-.057-.07-.168-.119-.456c-.035-.272-.147-.417-.31-.448v-.014c.2-.057.363-.21.363-.448c0-.177-.061-.302-.173-.381c-.111-.08-.293-.138-.577-.138m-.013.226c.333 0 .453.16.453.324c0 .227-.209.315-.453.315h-.217v-.625c.053-.01.12-.014.217-.014\\\"/>\"\n\t\t},\n\t\t\"opensuse-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#73ba25\\\" d=\\\"M59.927 24.34c-9.013.043-20.556 1.491-34.706 10.103l-.557.345C15.787 40.265 9.662 47.026 6.458 54.877C5.453 57.349 4.1 62.926 5.44 68.17c.577 2.293 1.654 4.6 3.104 6.661c3.275 4.659 8.777 7.755 14.699 8.274c8.362.74 14.69-2.975 16.943-9.936c1.545-4.804 0-11.85-5.935-15.447c-4.83-2.929-10.02-2.264-13.032-.29c-2.61 1.715-4.09 4.38-4.064 7.305c.057 5.192 4.575 7.95 7.825 7.958c.944 0 1.89-.162 2.959-.507a4.34 4.34 0 0 0 1.134-.498l.12-.071l.055-.033l.004-.005c.736-.503 1.18-1.31 1.18-2.181c0-.238-.032-.479-.104-.72a2.668 2.668 0 0 0-3.054-1.865l-.183.046l-.25.074l-.36.12a6.83 6.83 0 0 1-1.426.205c-.382-.025-2.248-.578-2.248-2.606v-.03c0-.744.298-1.267.465-1.55c.58-.906 2.174-1.79 4.326-1.603c2.821.241 4.858 1.674 6.209 4.38c1.25 2.514.922 5.606-.844 7.87c-1.757 2.244-4.883 3.2-9.039 2.756a12.373 12.373 0 0 1-9.72-6.566c-1.945-3.632-2.049-7.94-.274-11.254c4.244-7.929 12.255-7.847 16.652-7.094c6.503 1.113 13.9 7.056 16.527 13.914c.423 1.092.64 1.96.827 2.75l.283 1.185l7.347 3.553c.157.075.212.104.274.054c.079-.053.033-.207.033-.207c-.045-.162-.154-.312-.32-2.348c-.141-1.809-.424-6.754 2.09-9.205c.977-.957 2.466-1.812 3.641-2.086c4.812-1.164 10.46-.362 15.8 5.76c2.763 3.158 4.11 4.6 4.788 5.244c0 0 .153.145.236.212c.083.067.146.133.279.203c.22.125 9.18 4.206 9.18 4.206s.104.054.183-.042c.078-.095.004-.19.004-.19c-.059-.067-5.676-7.257-4.68-13.178c.79-4.718 4.58-4.29 9.825-3.703c1.711.199 3.66.42 5.676.465c5.634.033 11.703-.998 15.443-2.614c2.42-1.042 3.96-1.736 4.929-2.605c.348-.286.527-.748.714-1.247l.133-.328c.158-.408.387-1.26.487-1.725c.041-.204.09-.407-.084-.536c-.154-.12-.515.091-.515.091c-1.641.981-5.748 2.835-9.587 2.914c-4.763.095-14.42-4.776-15.418-5.29l-2.02-4.734c6.907 4.51 12.638 6.999 17.022 7.38c4.883.432 8.69-2.206 10.34-3.303c.216-.142.431-.3.631-.453c.038-.03.121-.1.108-.166c-.274-1.696-2.82-9.912-4.754-11.89c-.532-.536-.955-1.068-1.816-1.567c-6.98-4.026-23.544-6.457-24.319-6.57c0 0-.079-.016-.133.038a.226.226 0 0 0-.05.12l-.075 3.773c-1.691-.561-13.989-4.492-25.511-4.887c-2.445-.085-5.168-.226-8.173-.212Zm52.46 8.112c3.902.138 6.969 3.4 6.836 7.26a6.968 6.968 0 0 1-2.244 4.883a7.073 7.073 0 0 1-5.09 1.887c-3.899-.146-6.963-3.4-6.833-7.264a6.968 6.968 0 0 1 2.244-4.887a7.09 7.09 0 0 1 5.087-1.879m-.062 2.066a4.904 4.904 0 0 0-3.541 1.305c-.955.893-1.525 2.098-1.563 3.407c-.091 2.701 2.046 4.971 4.767 5.07a4.974 4.974 0 0 0 3.549-1.313a4.82 4.82 0 0 0 1.558-3.403c.096-2.7-2.04-4.972-4.77-5.066m.81 2.456c1.213 0 2.194.644 2.194 1.45c0 .794-.984 1.442-2.194 1.442c-1.213 0-2.194-.648-2.194-1.442c0-.806.981-1.45 2.194-1.45m8.336 42.804l-11.989.004c-.921 0-1.62.678-1.62 1.575v15.59c0 .894.68 1.564 1.587 1.564h12.542c.968 0 1.666-.658 1.666-1.564v-.414c0-.915-.698-1.577-1.666-1.577h-10.273v-3.968h7.53c.96 0 1.662-.672 1.662-1.577v-.412c0-.91-.701-1.57-1.662-1.57h-7.53v-4.09h9.753c.96 0 1.663-.656 1.663-1.57v-.412c0-.91-.702-1.58-1.663-1.58zm-67.887.004c-3.113 0-4.825 2.607-4.825 4.409v2.31c0 2.656 2.186 4.298 4.218 4.298h7.127c.897 0 1.085.581 1.085 1.072v1.496c0 .158-.034 1.591-1.085 1.591h-9.72c-.968 0-1.667.666-1.667 1.575v.412c0 .905.699 1.566 1.667 1.566h10.248c2.68 0 4.407-1.844 4.407-4.7v-2.497c0-2.685-1.948-3.886-3.88-3.886h-7.016c-1.056 0-1.532-.782-1.532-1.338v-1.375c0-.87.584-1.372 1.606-1.372h7.763c.952 0 1.67-.677 1.67-1.57v-.412c0-.901-.73-1.58-1.703-1.58zm16.423 0a1.649 1.649 0 0 0-1.67 1.654v12.259c0 2.86 2.269 4.929 5.394 4.929h5.797c3.12 0 5.386-2.07 5.386-4.929v-12.26c0-.923-.732-1.653-1.663-1.653h-.528c-.919 0-1.662.739-1.662 1.654V93.25c0 .947-.777 1.708-1.724 1.708h-5.415c-.947 0-1.725-.76-1.725-1.708V81.436a1.66 1.66 0 0 0-1.666-1.654zm23.09 0c-3.114 0-4.83 2.607-4.83 4.409v2.31c0 2.656 2.194 4.298 4.222 4.298h7.127c.898 0 1.09.581 1.09 1.072v1.496c0 .158-.034 1.591-1.09 1.591h-9.724c-.965 0-1.666.666-1.666 1.575v.412c0 .905.701 1.566 1.666 1.566h10.252c2.681 0 4.418-1.844 4.418-4.7v-2.497c0-2.685-1.957-3.886-3.89-3.886h-7.01c-1.06 0-1.538-.782-1.538-1.338v-1.375c0-.87.586-1.372 1.608-1.372h7.767c.952 0 1.666-.677 1.666-1.57v-.412c0-.901-.727-1.58-1.703-1.58zM18.4 87.132l-.353.001c-1.11 0-1.945.39-2.614.71c-.406.197-.76.362-1.034.362c-.125 0-.233-.053-.287-.145l-.258-.486a.787.787 0 0 0-.636-.374h-.378c-.366 0-.656.324-.656.719v14.906a.83.83 0 0 0 .843.835h.328a.84.84 0 0 0 .848-.835V97.88c0-.146.096-.304.196-.304c.274 0 .628.158 1.034.341c.67.308 1.505.682 2.614.682h.353c1.958 0 3.18-1.11 3.18-2.888v-5.69c0-1.757-1.246-2.89-3.18-2.89zm23.56.001c-1.102 0-1.936.39-2.606.707c-.42.195-.778.365-1.068.365c-.13 0-.183-.016-.283-.187l-.229-.42c-.137-.265-.361-.398-.669-.398h-.324c-.395 0-.681.304-.681.719v9.778c0 .46.37.835.843.835h.329a.845.845 0 0 0 .847-.835V90.3c0-.695.574-1.263 1.272-1.263h2.805c.702 0 1.276.568 1.276 1.263v7.397c0 .46.369.835.843.835h.329a.844.844 0 0 0 .848-.835v-7.68c0-1.753-1.243-2.884-3.18-2.884zm-11.005.063l-3.699.004c-1.571 0-2.846 1.208-2.846 2.7v5.836c0 1.512 1.238 2.796 2.7 2.796h3.961c.49 0 .848-.336.848-.793v-.258c0-.458-.357-.79-.848-.79h-3.254c-.91 0-1.392-.44-1.392-1.284V93.7h5.872c.944 0 1.5-.57 1.5-1.537V89.9c0-1.493-1.276-2.705-2.842-2.705zM2.85 87.2C1.28 87.2 0 88.413 0 89.905v5.876a2.761 2.761 0 0 0 2.755 2.756h3.84A2.761 2.761 0 0 0 9.35 95.78v-5.876c0-1.492-1.28-2.705-2.85-2.705zm12.629 1.836h2.805c.715 0 1.276.557 1.276 1.264v5.132c0 .698-.574 1.263-1.276 1.263H15.48a1.27 1.27 0 0 1-1.276-1.263V90.3a1.255 1.255 0 0 1 1.276-1.264zm12.085 0h3.083c.635 0 1.13.495 1.13 1.122v1.825h-5.354v-1.825h.002c0-.627.504-1.122 1.139-1.122m-24.382.005H6.17c.628 0 1.16.523 1.16 1.142v5.365c0 .632-.52 1.147-1.16 1.147H3.158a1.128 1.128 0 0 1-1.138-1.147v-5.365c0-.63.523-1.142 1.163-1.142zm123.275 5.701c-.856 0-1.55.689-1.55 1.55a1.543 1.543 0 0 0 1.55 1.555A1.532 1.532 0 0 0 128 96.292c0-.86-.682-1.55-1.538-1.55zm0 .241h.004c.694 0 1.25.583 1.25 1.313c0 .731-.556 1.318-1.25 1.31c-.695 0-1.255-.578-1.255-1.314c0-.723.56-1.309 1.25-1.309zm-.079.44c-.207 0-.346.021-.49.042v1.725h.278v-.74h.191c.225 0 .337.083.378.304c.034.224.074.382.117.44h.29c-.028-.058-.066-.158-.107-.428c-.038-.254-.142-.39-.296-.42v-.012c.187-.059.341-.196.341-.42c0-.166-.053-.283-.158-.357c-.103-.08-.278-.133-.544-.133zm-.012.213c.311 0 .423.154.423.303c0 .217-.195.295-.423.295h-.204v-.582a1.149 1.149 0 0 1 .204-.016\\\"/>\"\n\t\t},\n\t\t\"opentelemetry\": {\n\t\t\t\"body\": \"<path fill=\\\"#f5a800\\\" d=\\\"M67.648 69.797c-5.246 5.25-5.246 13.758 0 19.008c5.25 5.246 13.758 5.246 19.004 0c5.25-5.25 5.25-13.758 0-19.008c-5.246-5.246-13.754-5.246-19.004 0m14.207 14.219a6.649 6.649 0 0 1-9.41 0a6.65 6.65 0 0 1 0-9.407a6.649 6.649 0 0 1 9.41 0c2.598 2.586 2.598 6.809 0 9.407M86.43 3.672l-8.235 8.234a4.17 4.17 0 0 0 0 5.875l32.149 32.149a4.17 4.17 0 0 0 5.875 0l8.234-8.235c1.61-1.61 1.61-4.261 0-5.87L92.29 3.671a4.159 4.159 0 0 0-5.86 0ZM28.738 108.895a3.763 3.763 0 0 0 0-5.31l-4.183-4.187a3.768 3.768 0 0 0-5.313 0l-8.644 8.649l-.016.012l-2.371-2.375c-1.313-1.313-3.45-1.313-4.75 0c-1.313 1.312-1.313 3.449 0 4.75l14.246 14.242a3.353 3.353 0 0 0 4.746 0c1.3-1.313 1.313-3.45 0-4.746l-2.375-2.375l.016-.012Zm0 0\\\"/><path fill=\\\"#425cc7\\\" d=\\\"M72.297 27.313L54.004 45.605c-1.625 1.625-1.625 4.301 0 5.926L65.3 62.824c7.984-5.746 19.18-5.035 26.363 2.153l9.148-9.149c1.622-1.625 1.622-4.297 0-5.922L78.22 27.313a4.185 4.185 0 0 0-5.922 0ZM60.55 67.585l-6.672-6.672c-1.563-1.562-4.125-1.562-5.684 0l-23.53 23.54a4.036 4.036 0 0 0 0 5.687l13.331 13.332a4.036 4.036 0 0 0 5.688 0l15.132-15.157c-3.199-6.609-2.625-14.593 1.735-20.73m0 0\\\"/>\"\n\t\t},\n\t\t\"opentelemetry-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f5a800\\\" d=\\\"M65.559 58.262c-2.239 2.238-2.239 5.847 0 8.066a5.684 5.684 0 0 0 8.066 0a5.691 5.691 0 0 0 0-8.066a5.72 5.72 0 0 0-8.066 0m6.027 6.047a2.81 2.81 0 0 1-3.992 0a2.815 2.815 0 0 1 0-3.996a2.81 2.81 0 0 1 3.992 0a2.808 2.808 0 0 1 0 3.996m1.945-34.114l-3.5 3.5c-.68.68-.68 1.805 0 2.5L83.68 49.844c.675.676 1.8.676 2.496 0l3.5-3.5c.68-.68.68-1.805 0-2.5L76.027 30.195a1.754 1.754 0 0 0-2.496 0M49.04 74.871a1.599 1.599 0 0 0 0-2.25l-1.773-1.773a1.599 1.599 0 0 0-2.25 0l-3.684 3.656l-1.004-1.004a1.433 1.433 0 0 0-2.02 0a1.433 1.433 0 0 0 0 2.02l6.06 6.062a1.433 1.433 0 0 0 2.019 0a1.431 1.431 0 0 0 0-2.023l-1-1Zm0 0\\\"/><path fill=\\\"#425cc7\\\" d=\\\"m67.531 40.219l-7.773 7.773a1.785 1.785 0 0 0 0 2.516l4.797 4.793c3.394-2.434 8.144-2.14 11.195.91l3.887-3.887a1.773 1.773 0 0 0 0-2.511l-9.59-9.594a1.814 1.814 0 0 0-2.516 0m-4.98 17.117L59.71 54.5a1.697 1.697 0 0 0-2.402 0l-9.996 9.992a1.71 1.71 0 0 0 0 2.406l5.66 5.66a1.702 1.702 0 0 0 2.406 0l6.43-6.43a8.679 8.679 0 0 1 .742-8.792Zm0 0\\\"/><path fill=\\\"#f5a800\\\" d=\\\"M4.164 89.059c-2.238 2.238-2.238 5.847 0 8.066a5.684 5.684 0 0 0 8.066 0a5.691 5.691 0 0 0 0-8.066a5.691 5.691 0 0 0-8.066 0m6.047 6.03a2.814 2.814 0 0 1-3.996 0c-1.094-1.109-1.11-2.898 0-3.991a2.808 2.808 0 0 1 3.996 0a2.839 2.839 0 0 1 0 3.992Zm10.422-5.042c-1.246 0-2.051.586-2.637 1.371v-1.215h-2.39v10.965h2.39v-3.625c.57.68 1.36 1.266 2.637 1.266c2.008 0 3.84-1.543 3.84-4.368v-.03c0-2.821-1.864-4.364-3.84-4.364m1.449 4.394c0 1.418-.937 2.329-2.066 2.329c-1.125 0-2.051-.922-2.051-2.329v-.03c0-1.403.926-2.329 2.05-2.329c1.13 0 2.067.926 2.067 2.328Zm8.254-4.394c-2.453 0-4.148 1.973-4.148 4.379v.031c0 2.578 1.863 4.352 4.394 4.352c1.527 0 2.652-.602 3.438-1.575l-1.356-1.203c-.664.617-1.234.864-2.035.864c-1.067 0-1.82-.57-2.05-1.649h5.812c.015-.219.03-.433.03-.633c0-2.375-1.296-4.566-4.085-4.566m-1.82 3.703c.183-1.082.832-1.79 1.82-1.79c1 0 1.633.724 1.773 1.79Zm12.55-3.703c-1.23 0-1.957.664-2.511 1.371v-1.2h-2.438v8.59h2.438v-4.796c0-1.157.586-1.742 1.527-1.742c.926 0 1.48.585 1.48 1.742v4.797H44v-5.555c-.016-1.988-1.098-3.207-2.934-3.207m0 0\\\"/><path fill=\\\"#425cc7\\\" d=\\\"M45.031 89.676H48.5v9.117h2.516v-9.117H54.5v-2.313h-9.469Zm13.649.37c-2.453 0-4.149 1.974-4.149 4.38v.031c0 2.578 1.867 4.352 4.395 4.352c1.527 0 2.652-.602 3.441-1.575l-1.36-1.203c-.663.617-1.234.864-2.034.864c-1.063 0-1.82-.57-2.051-1.649h5.844c.015-.219.03-.433.03-.633c-.03-2.39-1.323-4.566-4.116-4.566Zm-1.82 3.704c.183-1.082.831-1.79 1.82-1.79c1.004 0 1.633.724 1.773 1.79Zm7.6-6.387h2.376v11.43H64.46Zm8.24 2.7c-2.454 0-4.15 1.972-4.15 4.378v.032c0 2.574 1.864 4.347 4.395 4.347c1.528 0 2.653-.597 3.438-1.57l-1.356-1.203c-.664.617-1.234.863-2.035.863c-1.066 0-1.82-.57-2.05-1.652h5.843a8.7 8.7 0 0 0 .031-.63c-.03-2.39-1.312-4.566-4.117-4.566Zm-1.821 3.687c.183-1.082.832-1.79 1.82-1.79c1 0 1.633.724 1.774 1.79Zm17.812-3.703c-1.171 0-2.066.476-2.824 1.36c-.445-.868-1.293-1.36-2.422-1.36c-1.23 0-1.972.664-2.527 1.371v-1.2H78.48v8.59h2.438v-4.796c0-1.157.555-1.742 1.48-1.742c.91 0 1.418.585 1.418 1.742v4.797h2.438v-4.797c0-1.157.555-1.742 1.48-1.742c.91 0 1.418.585 1.418 1.742v4.797h2.438v-5.602c0-2.066-1.094-3.16-2.899-3.16m8.743 0c-2.454 0-4.149 1.973-4.149 4.379v.031c0 2.578 1.867 4.352 4.395 4.352c1.527 0 2.652-.602 3.441-1.575l-1.36-1.203c-.66.617-1.234.864-2.034.864c-1.063 0-1.82-.57-2.051-1.649h5.844c.015-.219.03-.433.03-.633c-.015-2.39-1.308-4.566-4.116-4.566m-1.805 3.703c.187-1.082.832-1.79 1.82-1.79c1.004 0 1.637.724 1.774 1.79Zm10.332-5.969h-2.45V90h-1.034v2.098h1.035v4.101c0 2.008 1.015 2.61 2.527 2.61c.816 0 1.418-.204 1.945-.512v-1.973c-.355.2-.757.309-1.218.309c-.555 0-.79-.278-.79-.848v-3.703h2.036v-2.098h-2.035v-2.203Zm6.355 4.133v-1.758h-2.468v8.727h2.468V95.66c0-2.082 1.004-3.082 2.653-3.082h.125v-2.594c-1.453-.058-2.27.711-2.778 1.93m10.641-1.867l-1.941 6.062l-2.024-6.062h-2.668l3.489 8.945c-.22.445-.45.586-.88.586c-.34 0-.742-.156-1.081-.355l-.848 1.82a4.136 4.136 0 0 0 2.238.617c1.508 0 2.235-.68 2.93-2.5l3.422-9.113Zm0 0\\\"/>\"\n\t\t},\n\t\t\"opera\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconOpera0\\\" x1=\\\"53.327\\\" x2=\\\"53.327\\\" y1=\\\"2.095\\\" y2=\\\"126.143\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FF1B2D\\\"/><stop offset=\\\".614\\\" stop-color=\\\"#FF1B2D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A70014\\\"/></linearGradient><linearGradient id=\\\"deviconOpera1\\\" x1=\\\"85.463\\\" x2=\\\"85.463\\\" y1=\\\"9.408\\\" y2=\\\"119.121\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#9C0000\\\"/><stop offset=\\\".7\\\" stop-color=\\\"#FF4B4B\\\"/></linearGradient></defs><path fill=\\\"url(#deviconOpera0)\\\" d=\\\"M63.996.008C28.652.008 0 28.66 0 64.008c0 34.32 27.02 62.332 60.949 63.922c1.012.047 2.027.074 3.047.074a63.77 63.77 0 0 0 42.652-16.285c-7.5 4.973-16.273 7.836-25.645 7.836c-15.242 0-28.891-7.562-38.07-19.484c-7.078-8.352-11.66-20.699-11.973-34.559V62.5c.313-13.859 4.895-26.207 11.973-34.559C52.113 16.016 65.762 8.457 81 8.457c9.375 0 18.148 2.863 25.652 7.84C95.383 6.219 80.531.07 64.238.008zm0 0\\\"/><path fill=\\\"url(#deviconOpera1)\\\" d=\\\"M42.934 27.945c5.871-6.934 13.457-11.117 21.742-11.117c18.633 0 33.734 21.125 33.734 47.18s-15.102 47.18-33.734 47.18c-8.285 0-15.871-4.18-21.742-11.113c9.18 11.926 22.828 19.484 38.07 19.484c9.375 0 18.145-2.863 25.645-7.836c13.102-11.719 21.348-28.754 21.348-47.715s-8.246-35.988-21.344-47.707c-7.5-4.977-16.273-7.84-25.648-7.84c-15.242 0-28.891 7.562-38.07 19.484\\\"/>\"\n\t\t},\n\t\t\"opera-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconOperaWordmark0\\\" x1=\\\"0\\\" x2=\\\"1\\\" y1=\\\"0\\\" y2=\\\"0\\\" gradientTransform=\\\"matrix(0 43.04975 -45.37783 0 19.508 .808)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FF1B2D\\\"/><stop offset=\\\".614\\\" stop-color=\\\"#FF1B2D\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A70014\\\"/></linearGradient><linearGradient id=\\\"deviconOperaWordmark1\\\" x1=\\\"0\\\" x2=\\\"1\\\" y1=\\\"0\\\" y2=\\\"0\\\" gradientTransform=\\\"matrix(0 38.07518 -40.13424 0 31.263 3.346)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#9C0000\\\"/><stop offset=\\\".7\\\" stop-color=\\\"#FF4B4B\\\"/></linearGradient></defs><path fill=\\\"url(#deviconOperaWordmark0)\\\" d=\\\"M23.41.086C10.48.086 0 10.027 0 22.297c0 11.91 9.883 21.629 22.297 22.18c.371.016.742.027 1.113.027c5.996 0 11.461-2.137 15.602-5.652a17.54 17.54 0 0 1-9.379 2.723c-5.578 0-10.57-2.625-13.926-6.766c-2.59-2.898-4.266-7.184-4.383-11.988V21.77c.117-4.809 1.793-9.094 4.379-11.992c3.359-4.137 8.352-6.758 13.93-6.758c3.43 0 6.637.988 9.383 2.715C34.891 2.238 29.461.109 23.5.086zm0 0\\\" transform=\\\"translate(0 42)\\\"/><path fill=\\\"url(#deviconOperaWordmark1)\\\" d=\\\"M15.707 9.777c2.148-2.406 4.922-3.859 7.953-3.859C30.477 5.918 36 13.25 36 22.297c0 9.039-5.527 16.371-12.34 16.371c-3.031 0-5.805-1.449-7.953-3.855c3.355 4.141 8.348 6.762 13.926 6.762a17.53 17.53 0 0 0 9.379-2.723c4.793-4.066 7.813-9.973 7.813-16.555s-3.02-12.492-7.809-16.559a17.52 17.52 0 0 0-9.383-2.719c-5.574 0-10.57 2.621-13.926 6.758\\\" transform=\\\"translate(0 42)\\\"/><path d=\\\"M83.078 73.496c-2.953 0-5.355-2.508-5.355-5.586s2.402-5.586 5.355-5.586s5.352 2.512 5.352 5.586s-2.402 5.586-5.352 5.586m0-12.715a6.5 6.5 0 0 0-5.07 2.391v-2.066H76.36v17.996h1.648v-6.457a6.48 6.48 0 0 0 5.07 2.398c3.852 0 6.984-3.199 6.984-7.133s-3.133-7.129-6.984-7.129M64.691 73.926c-4.648 0-8.43-3.793-8.43-8.453s3.781-8.453 8.43-8.453s8.43 3.793 8.43 8.453s-3.781 8.453-8.43 8.453m0-18.402c-5.516 0-10.004 4.461-10.004 9.949s4.488 9.949 10.004 9.949s10.004-4.465 10.004-9.949s-4.488-9.949-10.004-9.949m48.473 5.312a3.89 3.89 0 0 0-1.609.414c-1.055.535-1.785 1.348-2.254 2.387l-.035.078l-.016-2.523h-1.652v13.48h1.656v-7.074c0-.996.164-1.805.508-2.59c.316-.73.762-1.379 1.398-1.895a3.21 3.21 0 0 1 2.594-.727l.48.094c.094-.449.32-1.02.414-1.469a5.352 5.352 0 0 0-1.484-.176m-14.637 1.509c2.918 0 4.957 1.871 5.301 4.723H93.246c.398-2.668 2.613-4.723 5.281-4.723m0-1.543c-3.852 0-6.984 3.203-6.984 7.133s3.133 7.129 6.984 7.129c2.758 0 5.145-1.633 6.281-4.004l-1.422-.789c-.852 1.918-2.707 3.246-4.859 3.246c-2.789 0-5.082-2.238-5.328-5.082h12.297l.02-.5c0-4.203-2.875-7.133-6.988-7.133m22.753 12.695c-2.953 0-5.355-2.508-5.355-5.586s2.402-5.586 5.355-5.586s5.355 2.512 5.355 5.586s-2.402 5.586-5.355 5.586m5.07-12.391v2.066a6.5 6.5 0 0 0-5.07-2.391c-3.852 0-6.984 3.199-6.984 7.129s3.133 7.133 6.984 7.133a6.485 6.485 0 0 0 5.07-2.398v2.031H128v-13.57zm0 0\\\"/>\"\n\t\t},\n\t\t\"oracle\": {\n\t\t\t\"body\": \"<path fill=\\\"#EA1B22\\\" d=\\\"M55.387 66.469h8.333l-4.407-7.09l-8.088 12.819h-3.681L57.382 56.8a2.324 2.324 0 0 1 1.931-.998c.765 0 1.478.363 1.892.972l9.876 15.424H67.4l-1.736-2.865h-8.438zm38.235 2.864V55.958h-3.123v14.685c0 .402.156.791.454 1.089c.298.298.7.466 1.141.466h14.244l1.841-2.865zm-51.677-2.397c3.033 0 5.496-2.449 5.496-5.482s-2.462-5.496-5.496-5.496H28.28v16.241h3.123V58.822h10.335c1.452 0 2.618 1.18 2.618 2.631s-1.167 2.631-2.618 2.631l-8.806-.013l9.324 8.127h4.538l-6.274-5.263h1.425zM9.059 72.198c-4.483 0-8.122-3.629-8.122-8.114s3.638-8.127 8.122-8.127h9.439c4.485 0 8.121 3.643 8.121 8.127s-3.636 8.114-8.121 8.114zm9.229-2.865a5.25 5.25 0 0 0 5.258-5.249a5.262 5.262 0 0 0-5.258-5.263H9.267a5.262 5.262 0 0 0-5.256 5.263a5.25 5.25 0 0 0 5.256 5.249zm59.314 2.865c-4.484 0-8.126-3.629-8.126-8.114s3.642-8.127 8.126-8.127h11.212l-1.829 2.864H77.81a5.267 5.267 0 0 0-5.264 5.263c0 2.903 2.36 5.249 5.264 5.249h11.263l-1.84 2.865zm38.197-2.865a5.25 5.25 0 0 1-5.055-3.824h13.35l1.84-2.864h-15.19a5.266 5.266 0 0 1 5.055-3.824h9.163l1.854-2.864h-11.225c-4.484 0-8.126 3.643-8.126 8.127s3.642 8.114 8.126 8.114h9.631l1.841-2.865z\\\"/>\"\n\t\t},\n\t\t\"ory\": {\n\t\t\t\"body\": \"<path fill=\\\"#5528ff\\\" d=\\\"M64.162.066a.581.581 0 0 0-.26.063L33.754 15.043a.257.257 0 0 0-.152.246v12.766c-.004.035.015.066.046.086c.032.02.07.023.102.007l30.234-14.984a.34.34 0 0 1 .313 0l30.148 14.938c.11.054.164.02.164-.098c.063-4.074.067-8.149.016-12.227c-.008-.359.316-.527-.246-.804c-10.016-4.961-20-9.907-29.957-14.844a.581.581 0 0 0-.26-.063m-.017 33.403C47.28 33.469 33.613 47.137 33.613 64s13.668 30.531 30.532 30.531c16.863 0 30.53-13.668 30.53-30.531s-13.667-30.531-30.53-30.531M33.742 99.855c-.027-.015-.066-.011-.094.004a.098.098 0 0 0-.046.086v12.856c-.004.035.02.07.054.09l30.426 15.09a.092.092 0 0 0 .09 0l30.41-15.051a.104.104 0 0 0 .055-.09l.011-12.875a.098.098 0 0 0-.046-.086a.097.097 0 0 0-.098-.004l-30.305 15.004a.092.092 0 0 1-.09 0z\\\"/>\"\n\t\t},\n\t\t\"ory-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#5528ff\\\" d=\\\"M15.8 31.283a.233.233 0 0 0-.105.026L.301 38.91a.28.28 0 0 0-.153.246v6.446c0 .02.012.039.032.05c.015.012.039.012.058.004c5.153-2.582 10.422-5 15.496-7.707c.02-.011.04-.011.055 0l15.477 7.684a.083.083 0 0 0 .09-.004a.09.09 0 0 0 .042-.078v-6.446c0-.066-.027-.117-.09-.144l-15.402-7.652a.233.233 0 0 0-.105-.026zm63.759 17.06c-.141 0-.207.067-.207.204v5.355c0 .086.02.164.062.239l4.547 7.398a.177.177 0 0 1 0 .176c-.047.074-4.047.039-4.512.039c-.066 0-.097.031-.097.098V79.55c0 .054.043.097.097.097H85a.297.297 0 0 0 .297-.296l.004-11.543c0-.059.027-.086.09-.086l2.27.02a.296.296 0 0 1 .245.14l7.16 11.672c.04.062.094.093.168.093h6.758c.028.004.047-.011.059-.03a.075.075 0 0 0 0-.071L94.629 67.48a.1.1 0 0 1-.008-.074a.1.1 0 0 1 .055-.05c10.855-3.547 8.344-19.024-3.164-18.997c-3.887.008-7.871.004-11.953-.015zm26.043.009c-.02 0-.04.007-.047.023c-.012.016-.012.035-.004.055l7.816 15.562a.05.05 0 0 1 0 .047l-7.8 15.531c-.008.02-.008.04.003.055c.008.016.024.023.043.023h6.555c.02 0 .039-.011.047-.027l15.597-31.191c.008-.02.008-.04-.003-.055c-.008-.016-.028-.023-.043-.023h-6.422a.045.045 0 0 0-.051.027l-4.5 8.793a.067.067 0 0 1-.05.027h-.079c-.02-.004-.039-.011-.047-.031l-4.39-8.79a.054.054 0 0 0-.047-.026zm-89.825.03c-8.625 0-15.62 6.993-15.62 15.622c0 8.625 6.995 15.617 15.62 15.617s15.618-6.992 15.618-15.617c0-8.629-6.993-15.621-15.618-15.621zm43.457 0c-8.625 0-15.617 6.993-15.617 15.622c0 8.625 6.992 15.617 15.617 15.617c8.63 0 15.621-6.992 15.621-15.617c0-8.629-6.992-15.621-15.62-15.621zm30.377 5.915c.743 0 1.487.016 2.229.047c2.5.105 4.351 1.988 3.742 4.562c-.508 2.14-2.281 2.93-4.375 2.871a.179.179 0 0 1-.156-.09l-4.465-7.261c-.047-.078-.027-.121.066-.125c.246-.008.504.05.73.043a52.98 52.98 0 0 1 2.23-.047zm-30.377.035A9.667 9.667 0 0 1 68.902 64a9.667 9.667 0 0 1-9.668 9.668c-5.336 0-9.668-4.328-9.668-9.668c0-5.34 4.332-9.668 9.668-9.668M.214 82.34a.078.078 0 0 0-.034.008a.074.074 0 0 0-.032.058v6.547c0 .027.016.05.04.063l15.523 7.718a.06.06 0 0 0 .062 0l15.586-7.691a.064.064 0 0 0 .036-.059l.011-6.558a.069.069 0 0 0-.031-.059a.08.08 0 0 0-.066-.004L15.785 90.04a.076.076 0 0 1-.058 0L.247 82.348a.058.058 0 0 0-.032-.008z\\\"/>\"\n\t\t},\n\t\t\"p5js\": {\n\t\t\t\"body\": \"<path fill=\\\"#ed225d\\\" d=\\\"m37.8 34.652l-.741 23.961c.73-.36 1.484-.672 2.257-.93a34.74 34.74 0 0 1 2.602-.773c.895-.23 1.805-.406 2.723-.527c.87-.117 1.75-.18 2.629-.184c1.199 0 2.375.133 3.53.403a8.459 8.459 0 0 1 3.13 1.421c.93.68 1.68 1.579 2.258 2.696c.578 1.113.867 2.515.867 4.207c0 1.32-.215 2.511-.649 3.562c-.433 1.051-1.023 1.93-1.765 2.63a7.605 7.605 0 0 1-2.598 1.612a8.996 8.996 0 0 1-3.16.56c-1.98 0-3.696-.528-5.137-1.583c-1.445-1.05-2.48-2.445-3.098-4.18l-.082.032l-5.379 5.039a14.4 14.4 0 0 0 4.223 4.437c2.516 1.711 5.613 2.567 9.285 2.567c2.192 0 4.254-.352 6.192-1.051c1.941-.703 3.633-1.715 5.078-3.035c1.445-1.32 2.59-2.942 3.437-4.86c.848-1.922 1.27-4.097 1.27-6.535c0-2.226-.383-4.195-1.145-5.91c-.765-1.711-1.828-3.156-3.191-4.336c-1.36-1.176-2.961-2.074-4.797-2.691c-1.836-.621-3.828-.93-5.973-.93c-.785 0-1.664.043-2.632.125c-.973.082-1.809.226-2.508.434l.433-9.477h17.895v-6.684Zm52.134 12.696v33.246c0 .867-.04 1.68-.121 2.445c-.086.762-.27 1.434-.56 2.016a3.351 3.351 0 0 1-1.237 1.36c-.54.331-1.243.495-2.106.495a9.223 9.223 0 0 1-2.043-.25l-.62 6.317c.374.082.866.168 1.483.25c.622.082 1.243.12 1.86.12c2.23 0 4.035-.347 5.418-1.05c1.383-.703 2.476-1.64 3.285-2.817c.805-1.18 1.348-2.558 1.637-4.148a28.2 28.2 0 0 0 .437-5.047V47.348Zm-71.868.554c-1.363 0-2.59.153-3.683.461c-1.02.285-2.008.68-2.942 1.18c-.867.477-1.601 1.008-2.199 1.61a10.689 10.689 0 0 0-1.453 1.765h-.187V48.77H.48v44.578h7.434V74.523h.121c.95 1.489 2.3 2.665 4.059 3.532c1.754.867 3.68 1.3 5.785 1.3c2.27 0 4.305-.425 6.101-1.27c1.797-.843 3.325-1.98 4.582-3.405c1.258-1.422 2.231-3.094 2.91-5.016c.68-1.918 1.024-3.973 1.024-6.16c0-2.188-.351-4.23-1.055-6.129c-.703-1.898-1.691-3.55-2.972-4.953a13.892 13.892 0 0 0-4.582-3.313c-1.774-.804-3.715-1.207-5.82-1.207Zm98.309 0a16.88 16.88 0 0 0-4.336.555a12.095 12.095 0 0 0-3.777 1.703a8.795 8.795 0 0 0-2.696 2.942c-.68 1.199-1.02 2.62-1.02 4.273c0 1.402.247 2.578.743 3.527a7.13 7.13 0 0 0 1.98 2.387a10.668 10.668 0 0 0 2.82 1.547a24.63 24.63 0 0 0 3.25.96c2.27.536 3.974 1.075 5.11 1.61c1.133.535 1.7 1.422 1.7 2.664c0 .66-.145 1.215-.43 1.672c-.29.45-.68.82-1.149 1.082a5.497 5.497 0 0 1-1.547.586a7.265 7.265 0 0 1-1.64.188c-1.61 0-3.074-.352-4.399-1.051c-1.32-.703-2.39-1.59-3.218-2.664l-4.891 4.582c1.445 1.57 3.262 2.777 5.45 3.62c2.148.84 4.437 1.27 6.745 1.27c1.614 0 3.172-.175 4.676-.527c1.508-.348 2.828-.918 3.965-1.7a8.683 8.683 0 0 0 2.727-3.066c.68-1.257 1.019-2.796 1.019-4.613c0-1.445-.289-2.672-.867-3.683a8.096 8.096 0 0 0-2.262-2.54a12.182 12.182 0 0 0-3.094-1.64a27.386 27.386 0 0 0-3.375-.992c-2.105-.496-3.707-.98-4.8-1.453c-1.094-.477-1.637-1.293-1.637-2.45c0-1.152.492-1.98 1.484-2.472c.992-.496 2.082-.746 3.281-.746c1.364 0 2.622.32 3.778.96c1.156.641 2.062 1.391 2.726 2.258l4.829-4.27c-1.2-1.526-2.82-2.663-4.864-3.405a18.24 18.24 0 0 0-6.281-1.114m-99.98 6.067c1.445 0 2.703.277 3.777.836a8.016 8.016 0 0 1 2.664 2.199a9.755 9.755 0 0 1 1.578 3.062a11.69 11.69 0 0 1 .523 3.438a11.99 11.99 0 0 1-.523 3.469a9.57 9.57 0 0 1-1.578 3.097c-.703.907-1.594 1.649-2.664 2.227c-1.074.578-2.332.867-3.777.867c-1.364 0-2.582-.277-3.653-.836a8.902 8.902 0 0 1-2.754-2.2a9.571 9.571 0 0 1-1.738-3.062a10.523 10.523 0 0 1-.586-3.437a10.81 10.81 0 0 1 .586-3.469a9.399 9.399 0 0 1 4.492-5.324c1.07-.578 2.29-.867 3.653-.867m59.433 13.62v4.614l-4.46-1.441l-.868 2.68l4.441 1.601l-2.738 3.746l2.238 1.707l2.805-3.71l2.883 3.808l2.308-1.672l-2.738-3.879l4.406-1.504l-.867-2.672l-4.425 1.336V67.59Zm0 0\\\"/>\"\n\t\t},\n\t\t\"packer\": {\n\t\t\t\"body\": \"<path fill=\\\"#1daeff\\\" d=\\\"M66.354 39.617V128l-41.482-23.963v-88.39Zm0 0\\\"/><path fill=\\\"#1d94dd\\\" d=\\\"M86.893 25.975L41.801 0v18.044L72.46 35.75v54.119l14.433 8.269c8.934 5.158 16.236 2.066 16.236-6.863V51.592c0-8.933-7.302-20.459-16.235-25.617zm0 0\\\"/>\"\n\t\t},\n\t\t\"packer-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M22.533 99.649v-2.37h-2.144v2.359h-1.117v-5.662h1.116v2.378h2.144v-2.378h1.116v5.673zm5.146 0h-.87l-.077-.301a2.441 2.441 0 0 1-1.274.356c-.783 0-1.116-.514-1.116-1.219c0-.702.38-1.116 1.237-1.116h1.027v-.423c0-.458-.133-.615-.815-.615a6.037 6.037 0 0 0-1.183.126l-.133-.785a5.7 5.7 0 0 1 1.496-.2c1.34 0 1.729.46 1.729 1.474zm-1.116-1.544h-.737c-.348 0-.446.09-.446.404c0 .313.098.412.423.412a1.695 1.695 0 0 0 .802-.212zm3.35 1.63a5.058 5.058 0 0 1-1.475-.235l.146-.78a4.938 4.938 0 0 0 1.27.18c.47 0 .548-.1.548-.415c0-.313 0-.38-.748-.536c-1.038-.243-1.116-.49-1.116-1.28c0-.796.379-1.184 1.597-1.184a5.571 5.571 0 0 1 1.27.144l-.098.815a7.608 7.608 0 0 0-1.116-.125c-.47 0-.549.102-.549.361c0 .254 0 .356.604.49c1.194.3 1.308.458 1.308 1.292c0 .839-.361 1.26-1.641 1.26zm4.889-.086v-2.86c0-.223-.102-.325-.35-.325a3.052 3.052 0 0 0-1.115.349v2.836h-1.118v-5.75l1.118.157v1.81a3.886 3.886 0 0 1 1.562-.391c.705 0 .96.477.96 1.205v2.97zm1.962-4.67v-1.003h1.117v1.003zm0 4.67V95.55h1.117v4.087zm1.92-4.055c0-1.026.627-1.618 2.076-1.618a6.92 6.92 0 0 1 1.586.189l-.12.917a8.928 8.928 0 0 0-1.443-.201c-.76 0-1.003.255-1.003.847v2.155c0 .591.244.85 1.003.85a9.263 9.263 0 0 0 1.43-.145l.121.912a6.737 6.737 0 0 1-1.586.192c-1.45 0-2.076-.592-2.076-1.618zm6.017 4.142c-1.461 0-1.853-.768-1.853-1.607v-1.015c0-.838.39-1.61 1.853-1.61c1.461 0 1.852.772 1.852 1.61v1.038c-.01.803-.399 1.572-1.864 1.572zm0-3.35c-.569 0-.792.246-.792.705v1.117c0 .458.224.7.792.7c.568 0 .791-.242.791-.701V97.09c-.008-.501-.23-.749-.803-.749zm4.857.07a8.003 8.003 0 0 0-1.116.592v2.633h-1.116v-4.13h.972v.447a4.657 4.657 0 0 1 1.116-.536zm4.262 1.776a1.259 1.259 0 0 1-1.406 1.437a5.939 5.939 0 0 1-1.116-.122v1.673l-1.116.157V95.55h.85l.098.345a2.322 2.322 0 0 1 1.35-.423c.863 0 1.317.49 1.317 1.418zm-2.546.453c.314.07.632.106.953.114c.376 0 .531-.18.531-.548v-1.384c0-.332-.132-.525-.524-.525a1.538 1.538 0 0 0-.948.37zm-32 5.528h9.13c5.414 0 7.412 2.233 7.412 6.331v3.189c0 4.074-2.233 6.287-7.623 6.287h-4.455v7.588h-4.465zm8.93 3.894h-4.466v7.983h4.466c2.5 0 3.236-.916 3.236-2.847v-2.355c-.043-1.93-.85-2.781-3.236-2.781m22.593 19.5h-3.518l-.31-1.115A9.365 9.365 0 0 1 41.876 128c-3.126 0-4.466-2.143-4.466-5.089c0-3.483 1.509-4.81 4.992-4.81h4.108v-1.798c0-1.901-.524-2.57-3.27-2.57c-1.595.02-3.185.192-4.744.525l-.525-3.272a22.292 22.292 0 0 1 5.86-.834c5.38 0 6.954 1.895 6.954 6.182zm-4.287-6.463h-3.173c-1.406 0-1.794.392-1.794 1.688c0 1.294.388 1.72 1.72 1.72a6.708 6.708 0 0 0 3.236-.884zm6.841.247v-4.677c0-4.6 1.998-6.574 7.381-6.574a14.692 14.692 0 0 1 4.182.635l-.523 3.518a15.464 15.464 0 0 0-3.55-.459c-2.457 0-3.193.736-3.193 2.849v4.743c0 2.108.736 2.844 3.192 2.844a14.273 14.273 0 0 0 3.55-.458l.525 3.518a14.036 14.036 0 0 1-4.184.635c-5.37 0-7.381-1.976-7.381-6.574zm14.267 6.217v-24.1l4.286-.6v24.7zm14.558-17.1l-5.027 8.474l5.238 8.638h-4.713l-5.167-8.638l4.889-8.474zm8.916 13.943a17.994 17.994 0 0 0 5.237-.803l.67 3.236A18.369 18.369 0 0 1 90.7 128c-5.378 0-7.232-2.5-7.232-6.609v-4.533c0-3.615 1.618-6.694 7.099-6.694s6.699 3.192 6.699 6.887v3.647h-9.513v.885c0 2.065.726 2.868 3.34 2.868zm-3.35-7.2h5.45v-.851c0-1.618-.494-2.742-2.602-2.742c-2.111 0-2.848 1.113-2.848 2.742zm20.986-3.17a33.576 33.576 0 0 0-4.533 2.5v11.027H99.91v-17.1h3.616l.282 1.896a19.335 19.335 0 0 1 4.462-2.233zm0 0\\\"/><path fill=\\\"#1daeff\\\" d=\\\"M65.596 26.745v59.663L37.592 70.232v-59.67Zm0 0\\\"/><path fill=\\\"#1d94dd\\\" d=\\\"M79.46 17.534L49.023 0v12.18l20.696 11.952v36.535l9.743 5.582c6.03 3.482 10.961 1.394 10.961-4.631V34.827c0-6.03-4.932-13.81-10.961-17.293zm0 0\\\"/>\"\n\t\t},\n\t\t\"pandas\": {\n\t\t\t\"body\": \"<path fill=\\\"#130754\\\" d=\\\"M46.236 7.567h13.99v29.047h-13.99Zm0 59.668h13.99V96.28h-13.99Z\\\"/><path fill=\\\"#ffca00\\\" d=\\\"M46.236 45.092h13.99v13.705h-13.99Z\\\"/><path fill=\\\"#130754\\\" d=\\\"M23.763 31.446h13.989V128h-13.99ZM68.245 91.2h13.99v29.046h-13.99Zm0-59.72h13.99v29.047h-13.99Z\\\"/><path fill=\\\"#e70488\\\" d=\\\"M68.245 69.011h13.99v13.705h-13.99Z\\\"/><path fill=\\\"#130754\\\" d=\\\"M90.248 0h13.99v96.554h-13.99Z\\\"/>\"\n\t\t},\n\t\t\"pandas-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#130754\\\" d=\\\"M11.354 115.114c-2.44 0-4.919-1.008-6.475-2.985v10.677H0V96.451h4.413l.174 2.89c1.514-2.229 4.204-3.406 6.768-3.403c4.917 0 8.544 4.12 8.544 9.587c0 5.466-3.629 9.593-8.546 9.59zM9.843 99.56c-2.849 0-5.174 2.228-5.174 5.97c0 3.742 2.311 5.97 5.171 5.97c2.86 0 5.166-2.228 5.166-5.97c0-3.742-2.307-5.97-5.164-5.97zm28.442 15.054l-.169-2.9c-1.512 2.228-4.204 3.405-6.766 3.405c-4.92 0-8.542-4.121-8.542-9.587c0-5.464 3.615-9.586 8.542-9.583c2.561 0 5.254 1.186 6.766 3.404l.17-2.899H42.7v18.162zm-5.421-15.053c-2.848 0-5.171 2.228-5.171 5.97c0 3.742 2.31 5.97 5.17 5.97s5.17-2.228 5.17-5.967c0-3.74-2.31-5.958-5.17-5.972zm26.898 15.057V104.56c0-3.531-1.22-4.709-3.447-4.709c-2.311 0-4.834 2.1-4.837 4.623v10.132h-4.874V96.454h4.469l.208 3.365c1.22-2.313 3.953-3.868 6.727-3.868c4.833 0 6.644 3.365 6.644 7.864v10.803zm22.756.002l-.17-2.901c-1.511 2.228-4.201 3.404-6.767 3.404c-4.918 0-8.542-4.12-8.542-9.585c0-5.465 3.616-9.584 8.542-9.584c2.437 0 4.919 1.01 6.474 2.986v-9.543h4.876v25.224Zm-5.42-15.043c-2.86 0-5.173 2.228-5.173 5.97c0 3.742 2.31 5.967 5.17 5.97c2.86 0 5.17-2.228 5.17-5.97c0-3.742-2.31-5.97-5.167-5.97m28.157 15.046l-.167-2.9c-1.514 2.228-4.206 3.406-6.768 3.403c-4.919 0-8.542-4.12-8.542-9.584c0-5.465 3.616-9.586 8.542-9.584c2.562 0 5.254 1.187 6.768 3.405l.169-2.9h4.425v18.16Zm-5.421-15.046c-2.859 0-5.17 2.228-5.17 5.97c0 3.742 2.311 5.97 5.17 5.97s5.17-2.228 5.17-5.97c0-3.742-2.31-5.97-5.17-5.97m20.642 15.637a14.272 14.272 0 0 1-7.274-2.06l.798-3.374c1.472.883 3.7 2.02 6.39 2.02c1.933 0 3.28-.589 3.28-2.104c0-1.301-1.387-1.765-3.869-2.353c-4.453-.968-6.052-3.321-6.05-5.886c0-2.848 2.228-5.548 7.147-5.548c2.985 0 5.59 1.305 6.169 1.64l-.79 3.215a10.564 10.564 0 0 0-5.254-1.515c-1.976 0-2.944.672-2.944 1.765c0 1.218 1.262 1.766 3.196 2.228c4.79 1.01 6.725 3.237 6.725 5.677c0 3.9-2.86 6.294-7.524 6.294zM52.438 9.875h8.661v17.988h-8.661zm0 36.948h8.661V64.81h-8.661z\\\"/><path fill=\\\"#ffca00\\\" d=\\\"M52.438 33.116H61.1v8.486h-8.662z\\\"/><path fill=\\\"#130754\\\" d=\\\"M38.522 24.665h8.662v59.79h-8.662Zm27.544 36.998h8.663V79.65h-8.663zm0-36.976h8.663v17.987h-8.663z\\\"/><path fill=\\\"#e70488\\\" d=\\\"M66.066 47.924h8.663v8.485h-8.663z\\\"/><path fill=\\\"#130754\\\" d=\\\"M79.69 5.194h8.663v59.788H79.69z\\\"/>\"\n\t\t},\n\t\t\"perl\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\"><path fill=\\\"#fff\\\" d=\\\"M121.172 62.878c0-34.048-26.473-61.648-59.135-61.648C29.379 1.23 2.9 28.83 2.9 62.878s26.478 61.651 59.136 61.651c32.662 0 59.135-27.603 59.135-61.651z\\\"/><path fill=\\\"#212178\\\" d=\\\"M53.34 127.516c-13.91-2.461-25.842-8.812-35.703-19.006C9.25 99.842 3.477 88.928.853 76.763c-1.137-5.256-1.137-20.287 0-25.54C2.629 43 6.075 34.835 10.776 27.714C13.89 23 23.004 13.888 27.716 10.773c7.123-4.7 15.293-8.15 23.514-9.921c5.253-1.137 20.286-1.137 25.543 0C89.58 3.617 100.225 9.4 109.41 18.585c9.187 9.186 14.97 19.828 17.739 32.639c1.133 5.252 1.133 20.283 0 25.54c-2.769 12.806-8.552 23.448-17.739 32.634c-9.038 9.041-19.55 14.812-32.147 17.65c-4.467 1.009-19.238 1.297-23.923.468m11.567-12.772c0-4.194-.062-4.497-.907-4.497c-.838 0-.904.288-.869 3.897c.043 4.264.343 5.572 1.211 5.284c.401-.132.565-1.491.565-4.684m-6.757 1.445c1.192-1.196 1.542-1.92 1.542-3.209c0-1.316-.16-1.635-.763-1.519c-.417.078-.919.76-1.114 1.507c-.194.748-1 1.904-1.783 2.57c-1.418 1.196-1.472 2.192-.125 2.192c.386 0 1.394-.697 2.243-1.541m14.943 1.047c.167-.269-.339-1.036-1.122-1.698c-.786-.666-1.589-1.822-1.783-2.57c-.199-.747-.701-1.429-1.118-1.507c-.6-.116-.76.203-.76 1.519c0 2.609 3.743 5.942 4.783 4.256m-20.66-8.146c0-.261-.634-.822-1.41-1.246c-5.054-2.769-10.985-7.176-14.28-10.61c-6.433-6.71-9.33-13.388-9.4-21.678c-.048-5.54.665-8.43 3.364-13.605c2.609-5.004 5.631-8.78 13.95-17.421c9.287-9.653 11.425-12.2 13.038-15.533c1.148-2.367 1.3-3.231 1.46-8.235c.199-6.215-.18-10.506-.927-10.506c-.339 0-.401 1.612-.21 5.234c.623 11.592-1.53 15.19-14.892 24.881c-9.202 6.674-13.424 10.3-16.613 14.264c-4.518 5.61-6.52 10.466-7.018 17.05c-1.207 15.868 8.848 29.629 26.59 36.385c3.914 1.487 6.348 1.881 6.348 1.02m30.7-1.285c6.098-2.543 10.736-5.615 15.11-10.007c6.667-6.701 9.439-12.967 9.856-22.242c.362-8.134-1.402-13.515-6.437-19.61c-3.45-4.173-7.162-7.16-17.174-13.81c-13.47-8.953-16.633-12.516-16.633-18.746c0-1.658.3-4.006.662-5.217c.623-2.068.608-3.493-.02-1.862c-.591 1.546-1.947.837-2.675-1.41l-.7-2.152l.264 2.04c.942 7.242 1.06 10.276.642 16.615c-.564 8.57-1.616 14.427-4.51 25.076c-2.87 10.572-3.387 14.404-3.029 22.476c.3 6.825 1.254 11.93 3.474 18.593c2.06 6.183 2.445 6.654 6.235 7.624c2.083.533 4.058 1.433 5.627 2.566c1.476 1.067 2.952 1.76 3.781 1.775c.748.012 3.237-.755 5.526-1.709zm-1.371-3.076c-.565-.565-.3-1.048 1.912-3.493c6.97-7.694 10.094-15.641 10.183-25.906c.063-6.993-1.483-11.627-6.2-18.593c-2.13-3.15-9.634-11.008-13.263-13.893c-2.66-2.114-5.398-5.72-5.885-7.76c-.494-2.068.892-1.523 2.496.98c.787 1.227 2.493 3.03 3.79 4.004c1.296.977 5.132 3.835 8.524 6.355c11.664 8.671 16.859 16.066 18.023 25.672c.678 5.556-.397 11.3-3.107 16.634c-2.812 5.525-7.937 11.545-12.326 14.477c-2.703 1.803-3.556 2.115-4.147 1.523m-22.837.584c.133-.343-1.036-2.535-2.593-4.875c-4.128-6.191-5.924-9.606-7.598-14.454c-1.414-4.085-1.492-4.641-1.504-10.883c-.015-9.431 1.005-12.422 8.49-24.85c7.057-11.718 8.015-16.258 7.22-34.286c-.288-6.46-.611-11.838-.72-11.95c-.744-.744-.904 1.172-.627 7.67c.545 12.94-.292 20.147-3.018 26.062c-1.858 4.026-3.938 7.075-9.53 14.002c-7.788 9.637-9.985 14.75-9.946 23.126c.031 5.743.806 9.275 3.127 14.185c2.512 5.32 7.135 10.689 12.93 15.011c2.667 1.994 3.391 2.231 3.77 1.242z\\\"/></g>\"\n\t\t},\n\t\t\"pfsense\": {\n\t\t\t\"body\": \"<path d=\\\"M10.734.004C4.79.004 0 4.949 0 10.894V105.7l17.34-61.601h17.508l-2.309 8.093h.328c.988-1.156 2.309-2.148 3.961-3.3c1.649-1.16 3.305-2.153 5.129-3.141c1.813-.992 3.793-1.648 5.941-2.309c2.149-.664 4.297-.832 6.446-.832c4.62 0 8.422.828 11.718 2.313c3.305 1.488 5.778 3.8 7.762 6.605c1.649 2.48 2.645 5.453 3.137 8.918l.027-.011c.032.32.137.718.137 1.007c.332 3.801-.164 8.09-1.484 12.715c-1.16 4.293-2.965 8.426-5.446 12.39a52.642 52.642 0 0 1-8.422 10.4a43.382 43.382 0 0 1-10.906 7.265c-3.965 1.82-8.09 2.648-12.55 2.648a30.202 30.202 0 0 1-10.57-1.82c-3.138-1.156-5.29-3.3-6.606-6.277h-.332l-8.258 29.234h104.543a10.883 10.883 0 0 0 7.715-3.187a10.87 10.87 0 0 0 3.191-7.711V25.105c-.5-.164-.992-.328-1.324-.496a14.91 14.91 0 0 0-2.973-.336c-2.973 0-5.453.665-7.43 1.985c-1.82 1.32-3.472 3.965-4.628 8.094l-2.805 9.738h10.734l2.64 8.426l-6.937 6.773H104.54L91.5 105.535H72.672l13.05-46.246H78.45l-.246.164h-.246v-.164l4.29-15.2h7.593l2.976-10.898c.989-3.296 2.145-6.597 3.633-9.574c1.32-2.972 3.301-5.617 5.614-7.93c2.312-2.312 5.285-4.128 8.753-5.449c3.47-1.32 7.934-1.98 13.051-1.98c1.324 0 2.473-.004 3.797.164A11.1 11.1 0 0 0 117.258.004Zm35.004 59.285c-4.785 0-8.91 1.488-12.379 4.297c-3.468 2.809-5.78 6.605-7.101 11.227c-1.32 4.624-1.153 8.421.832 11.226c1.648 2.973 4.953 4.3 9.902 4.3c4.793 0 8.918-1.491 12.387-4.3c3.469-2.805 5.941-6.602 7.266-11.227c1.32-4.62.988-8.417-.829-11.226c-1.816-2.809-5.28-4.297-10.07-4.297Zm0 0\\\"/>\"\n\t\t},\n\t\t\"pfsense-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M3.059 45.765C1.365 45.765 0 47.176 0 48.87v27.012L4.941 58.33H9.93l-.659 2.306h.095c.282-.33.658-.612 1.129-.941c.47-.33.941-.612 1.46-.894c.517-.283 1.081-.47 1.693-.658c.612-.189 1.224-.236 1.836-.236c1.317 0 2.4.235 3.34.658c.942.424 1.647 1.083 2.212 1.883c.47.706.753 1.553.894 2.541l.007-.005c.009.092.04.205.04.287c.094 1.083-.047 2.307-.424 3.624c-.33 1.224-.846 2.4-1.552 3.53a15.02 15.02 0 0 1-2.4 2.964a12.346 12.346 0 0 1-3.106 2.07c-1.13.518-2.306.753-3.577.753a8.594 8.594 0 0 1-3.012-.517c-.894-.33-1.506-.94-1.882-1.788H5.93l-2.353 8.33h29.789a3.103 3.103 0 0 0 3.106-3.106V52.917c-.142-.047-.283-.093-.377-.14a4.211 4.211 0 0 0-.847-.095c-.847 0-1.553.189-2.117.565c-.518.377-.989 1.13-1.318 2.306l-.8 2.776h3.059l.753 2.4l-1.977 1.93h-3.06l-3.716 13.176h-5.365l3.718-13.176h-2.071l-.07.047h-.072v-.047l1.224-4.33H25.6l.847-3.106c.282-.94.612-1.881 1.036-2.729c.376-.847.94-1.6 1.599-2.259c.659-.659 1.506-1.177 2.494-1.553c.989-.376 2.26-.564 3.718-.564c.377 0 .705 0 1.082.047a3.163 3.163 0 0 0-2.964-2.4zm43.718 12.093c-.894 0-1.836.095-2.683.33c-.894.236-1.694.565-2.353 1.082c-.706.47-1.224 1.083-1.647 1.836c-.424.753-.611 1.647-.611 2.683c0 1.082.234 1.976.658 2.635a4.489 4.489 0 0 0 1.694 1.552c.706.377 1.412.612 2.212.8c.8.189 1.505.33 2.211.518c.706.141 1.272.33 1.695.564c.424.236.658.566.658 1.036c0 .47-.235.8-.753.988a4.921 4.921 0 0 1-1.693.283c-.8 0-1.553-.142-2.165-.471c-.612-.33-1.176-.8-1.694-1.412l-3.294 3.624c.847.894 1.929 1.505 3.153 1.835c1.27.33 2.494.518 3.717.518c.942 0 1.883-.095 2.87-.283c.942-.188 1.836-.47 2.589-.941a5.265 5.265 0 0 0 1.882-1.788c.47-.753.753-1.647.753-2.776c0-1.083-.235-1.977-.659-2.636c-.47-.611-1.035-1.176-1.694-1.553a8.962 8.962 0 0 0-2.211-.846c-.8-.189-1.507-.33-2.213-.519a8.13 8.13 0 0 1-1.693-.517c-.424-.188-.66-.518-.66-.941c0-.518.236-.895.66-1.13A2.735 2.735 0 0 1 46.824 62c1.317 0 2.352.47 3.152 1.459l3.294-3.294c-.8-.848-1.835-1.459-3.012-1.788c-1.176-.33-2.352-.519-3.481-.519m54.775 0c-.894 0-1.835.095-2.682.33c-.894.236-1.694.565-2.353 1.082c-.705.47-1.223 1.083-1.647 1.836c-.423.753-.612 1.647-.612 2.683c0 1.082.236 1.976.66 2.635a4.486 4.486 0 0 0 1.693 1.552c.706.377 1.413.612 2.213.8c.8.189 1.505.33 2.21.518c.707.141 1.271.33 1.695.564c.423.236.659.566.659 1.036c0 .47-.235.8-.753.988a4.921 4.921 0 0 1-1.694.283c-.8 0-1.553-.142-2.164-.471c-.612-.33-1.178-.8-1.695-1.412l-3.294 3.624c.847.894 1.93 1.505 3.153 1.835c1.27.33 2.494.518 3.718.518c.941 0 1.882-.095 2.87-.283c.942-.188 1.836-.47 2.589-.941A5.265 5.265 0 0 0 108 73.247c.47-.753.753-1.647.753-2.776c0-1.083-.236-1.977-.66-2.636c-.47-.611-1.034-1.176-1.693-1.553a8.963 8.963 0 0 0-2.212-.846c-.8-.189-1.506-.33-2.212-.519a8.13 8.13 0 0 1-1.694-.517c-.423-.188-.659-.518-.659-.941c0-.518.236-.895.66-1.13A2.735 2.735 0 0 1 101.6 62c1.318 0 2.353.47 3.153 1.459l3.294-3.294c-.8-.848-1.836-1.459-3.012-1.788c-1.177-.33-2.353-.519-3.483-.519m-36.517.048c-1.365 0-2.635.235-3.812.658a9.36 9.36 0 0 0-3.105 1.836c-.894.8-1.553 1.789-2.071 2.918c-.518 1.13-.753 2.4-.753 3.765c0 1.411.235 2.635.753 3.764c.518 1.13 1.177 2.118 2.07 2.918a9.36 9.36 0 0 0 3.106 1.835a11.17 11.17 0 0 0 3.812.66a9.594 9.594 0 0 0 4.095-.895a9.257 9.257 0 0 0 3.294-2.541l-3.765-2.777a7.146 7.146 0 0 1-1.6 1.553c-.612.377-1.365.611-2.26.611a4.14 4.14 0 0 1-2.681-.94c-.706-.613-1.177-1.46-1.412-2.447h12.517V67.13c0-1.412-.188-2.636-.564-3.765c-.376-1.177-.941-2.165-1.647-2.965a6.836 6.836 0 0 0-2.588-1.836a8.875 8.875 0 0 0-3.39-.658zm20.47 0c-.658 0-1.27.094-1.787.236c-.565.188-1.036.375-1.46.658a7.266 7.266 0 0 0-1.128.894c-.33.33-.565.659-.706.988h-.142v-2.4h-5.176V75.79h5.411v-8.66c0-.564.047-1.129.094-1.646c.094-.518.236-.989.47-1.412c.236-.424.566-.753.99-.988c.423-.236.988-.377 1.694-.377s1.223.141 1.6.424c.376.282.658.659.846 1.13c.189.47.283.94.33 1.505c.047.517.047 1.082.047 1.553v8.564H92v-9.694c0-1.176-.094-2.258-.235-3.294c-.236-.988-.518-1.882-.988-2.635c-.47-.753-1.13-1.318-1.977-1.742c-.847-.423-1.93-.61-3.294-.61zm34.307 0c-1.365 0-2.636.235-3.812.658a9.361 9.361 0 0 0-3.106 1.836c-.894.8-1.553 1.789-2.07 2.918c-.518 1.13-.753 2.4-.753 3.765c0 1.411.235 2.635.753 3.764c.517 1.13 1.176 2.118 2.07 2.918c.894.8 1.93 1.412 3.106 1.835c1.176.424 2.447.66 3.812.66a9.59 9.59 0 0 0 4.093-.895a9.257 9.257 0 0 0 3.294-2.541l-3.764-2.777a7.142 7.142 0 0 1-1.6 1.553c-.611.377-1.365.611-2.259.611a4.14 4.14 0 0 1-2.682-.94c-.706-.613-1.176-1.46-1.411-2.447H128V66.8c-.047-1.271-.236-2.447-.565-3.482c-.377-1.13-.941-2.118-1.647-2.918a6.836 6.836 0 0 0-2.589-1.836a8.87 8.87 0 0 0-3.387-.658m-55.295 3.906c.989 0 1.789.329 2.4.988c.612.658.942 1.411.895 2.353h-7.153v-.047c.047-.424.14-.847.33-1.224c.187-.376.422-.752.752-1.035c.33-.282.706-.565 1.176-.753c.47-.188.989-.282 1.6-.282m54.777 0c.988 0 1.788.329 2.4.988c.612.658.941 1.411.894 2.353h-7.153v-.047c.047-.424.141-.847.33-1.224c.188-.376.423-.752.752-1.035c.33-.282.706-.565 1.177-.753c.47-.188.988-.282 1.6-.282m-106.26.847c-1.364 0-2.54.423-3.528 1.223c-.989.8-1.647 1.883-2.023 3.2c-.377 1.318-.33 2.4.235 3.2c.47.847 1.412 1.224 2.823 1.224c1.365 0 2.542-.424 3.53-1.224s1.693-1.882 2.07-3.2c.376-1.317.282-2.4-.236-3.2c-.517-.8-1.505-1.223-2.87-1.223z\\\"/>\"\n\t\t},\n\t\t\"phalcon\": {\n\t\t\t\"body\": \"<path fill=\\\"#22A882\\\" d=\\\"M36.5 56L39 45.2L30.5 62z\\\"/><path fill=\\\"#99D5B5\\\" d=\\\"M88.8 10L87 19.4L75 33.6L52.6 45.3z\\\"/><path fill=\\\"#C5E4D3\\\" d=\\\"m86.3 0l-7 19.2l-26.7 26l-15.7 19.5l-.9 1l-1.9.3l6.1-25.7z\\\"/><path d=\\\"m34.4 65.3l18.3-20.1l67.1-35.1l-16.9 23.3L58 59.6l-21.1 5.1z\\\"/><path fill=\\\"#16A880\\\" d=\\\"m58 59.6l44.8-26.2l1.6-2.2l12.9-7.6l-11.1 15.7l-4.9 3.8l-25.1 18l-15.3 5.1z\\\"/><path d=\\\"M76.2 61.1L92.4 56l4.3-2.9l14.1-12.9l-9.5 2.9z\\\"/><path fill=\\\"#76C39B\\\" d=\\\"M36.9 64.7L58 59.6l2.9 6.5l-12.4 8.1L36 78V65.7z\\\"/><path fill=\\\"#C5E4D3\\\" d=\\\"m62.5 65.3l-18.3 9.2l14.1-.9l24.2-6.9l20.2-13.9z\\\"/><path fill=\\\"#99D5B5\\\" d=\\\"m84.5 65.4l-2 1.3l-24.2 6.9l16.2-1.2l4.5-.9l14.4-7.8z\\\"/><path d=\\\"m88.8 88.1l6.3 5v3.2z\\\"/><path fill=\\\"#C5E4D3\\\" d=\\\"m41.7 79l12-1.1l17.2 12.4l7.9 19.4l-9.8 18.1l1.6-15.4l-.4-.8l-7.4-16.1l-24.3-15.9z\\\"/><path d=\\\"m70.9 90.3l10.8 26.6v8.4l4.6-15.9v-11L62.7 84.3z\\\"/><path fill=\\\"#16A880\\\" d=\\\"m62.5 118.6l-3 7.7l12.6-17.2l-7.7-16.9l-1.8 2.8v23.6z\\\"/><path fill=\\\"#76C39B\\\" d=\\\"m60.3 93.9l-.9 13.9l-6.5 6.2l.3 4.8l5.6 2.2l3.7-7.1V95.2z\\\"/><path fill=\\\"#178D6D\\\" d=\\\"m57.6 92.2l2 1.3l-.9 4.7l-3.3 7.1l-9.3-3.7l-.3-3.7l.6-.2l2.9-2l1.8-4.3z\\\"/><path d=\\\"m38.5 79.6l19.1 12.5h-6.2l-11.5-9.6l-10.6-2.9z\\\"/><path fill=\\\"#178D6D\\\" d=\\\"M54.6 77.8L73.5 76l11-3.6h-10l-27.1 1.9l-10.1.9l-3 5.2l7.4-1.4z\\\"/><path d=\\\"M45.9 111.2v1.7l4-1.7l.5.8l-3.6 2l-1.7 3.8l3.6-3.4l.8.2l-.8 9.6l4.4-5.5l-.3-4.8l.8-.6l-2-4.8zm-1.5-19l-5.7 2.7v1.7l3.9-1.8l.6.8l-3.7 2.1l-1.5 3.7l3.5-3.3l.8.1l-.8 9.5l4.8-5.8l-.4-4.4h.7z\\\"/><path fill=\\\"#C5E4D3\\\" d=\\\"m33 69.9l-7.8 3.3H33l-12.4 5l-6.8 3.8l-.5 1.4l11.1-3.8h10.3l1.3-2.3V65.5l-12.5 3.1z\\\"/><path fill=\\\"#1FA780\\\" d=\\\"m13.9 82.1l6.8-3.8l12.4-5h-7.8l7.8-3.3l-9.4-1.3l-10.8 3.2l-4.6 7.3z\\\"/><path d=\\\"m11.2 88l-2.9-2.5v-6.4l5.6 3l-1.3 3.5L14 88z\\\"/><path fill=\\\"none\\\" stroke=\\\"#000\\\" stroke-width=\\\".3\\\" d=\\\"M14.9 78.6L13 77.2l-2.8 1.5\\\"/><path fill=\\\"#76C39B\\\" d=\\\"m62.6 74.4l21 13.7L91 98.3l2.6 9.3l-7.2-9.1l-33.8-20.2z\\\"/><path fill=\\\"#99D5B5\\\" d=\\\"m78.1 78.3l-5.2-2.4l-6.8.7l.8.6z\\\"/><path fill=\\\"#178D6D\\\" d=\\\"m90 111.3l-.1 8.2l-2.4 1.6l1.3-6.6z\\\"/>\"\n\t\t},\n\t\t\"phoenix\": {\n\t\t\t\"body\": \"<path fill=\\\"#fd4f00\\\" d=\\\"m48.067 81.275l-1.006-.183c-7.145-1.329-11.66-5.65-13.797-12.447c-1.337-4.237 1.087-7.355 5.53-7.56c3.637-.17 6.129 1.922 8.33 4.355c2.839 3.135 5.44 6.486 8.228 9.67c4.014 4.583 8.744 7.534 15.215 6.623c5.801-.816 10.86-3.144 15.258-6.977c.661-.576 1.387-1.079 2.085-1.615l-.44-.518c-3.694 1.15-7.46 1.533-11.31 1.34c-5.823-.292-11.373-1.51-16.338-4.706c-4.531-2.918-7.873-6.828-9.46-12.05c-1.283-4.22 1.34-7.171 5.715-6.561c1.727.242 3.181 1.02 4.489 2.122c1.062.9 2.083 1.85 3.167 2.722c5.104 4.102 12.235 4.33 18.71-.124c-10.648-.048-17.893-5.907-24.256-13.33c-2.49-2.905-4.921-5.861-7.464-8.722c-4.919-5.533-10.375-10.407-17.844-12.072c-9.548-2.122-18.762-.732-27.606 3.316c-1.763.807-3.456 1.748-5.273 3.26c.9 0 1.39.01 1.88 0c4.46-.117 7.802 1.864 10.212 5.512c1.754 2.655 2.58 5.657 3.21 8.745c.935 4.584.45 9.255.991 13.861c1.387 11.837 7.437 20.097 18.701 24.327c4.132 1.552 8.368 2.068 13.072 1.01zm-28.471-54c-1.779.448-3.201-.27-4.666-1.753c2.51-.625 4.724-.868 7.103-.963c-.195 1.546-1.107 2.38-2.435 2.716zm58.332 69.126c-.155-1.141-1.13-1.643-1.896-2.238c-3.384-2.636-7.345-3.57-11.543-3.646c-2.506-.047-4.986-.233-7.347-1.112c-1.084-.4-2.298-.92-2.268-2.318c.027-1.422 1.263-1.823 2.388-2.159c.92-.272 1.87-.45 2.917-.695c-2.661-1.706-5.261-1.941-8.726-.547c-5.456 2.19-10.833 1.932-16.27-.03c-3.07-1.11-5.795-2.85-8.63-4.39l-.078.055a5.395 5.395 0 0 0 .072-.054c-.07-.213-.195-.219-.359-.098l.222.195c2.351 3.855 5.53 6.957 9.121 9.608c6.914 5.103 14.465 8.148 23.302 6.798a121.601 121.601 0 0 1 8.608-1.008c3.61-.292 7.047.726 10.487 1.639m-16.66-55.31c-.192-.138-.376-.484-.767-.126c3.181 4.302 7.264 7.47 12.182 9.466c7.936 3.221 15.991 3.773 24.23.93c6.397-2.206 10.995-.051 13.384 6.16c.346-7.209-3.896-12.462-10.65-13.49c-3.8-.58-7.31.68-10.867 1.713c-9.905 2.872-19.112 1.455-27.513-4.653zm49.367 28.116c1.29.107 2.582.224 3.872.337c-2.916-2.56-6.47-2.765-10.067-2.56c-5.473.31-9.417 3.47-13.014 7.24c-3.17 3.326-6.034 7.055-10.76 8.392c.08.142.1.214.122.214c.636.009 1.272.038 1.907.009c6.868-.31 13.338-1.759 18.483-6.744c1.622-1.568 3.07-3.311 4.636-4.94c1.306-1.36 2.887-2.113 4.821-1.95zm-15.954-8.512c-5.125.449-9.576 2.568-13.757 5.364c-3.22 2.15-6.66 3.168-10.529 2.497c-.68-.12-1.366-.208-2.049-.31l-.023.284c.246.128.483.275.738.378c.645.255 1.28.562 1.95.72c7.442 1.77 14.568.864 20.991-3.286c4.049-2.616 8.24-3.112 12.783-2.436c.46.07.917.151 1.378.196c.426.04.872.463 1.449.005c-3.971-2.869-8.25-3.82-12.931-3.412M76.366 43.298c2.688.093 5.364-.26 8.177-1.93c-.825.072-1.172.072-1.508.138c-3.875.772-7.351-.073-10.45-2.521c-1.135-.898-2.29-1.775-3.442-2.656c-4.563-3.488-9.797-4.656-15.52-4.556c.091.28.1.474.198.574c6.229 6.297 13.435 10.637 22.545 10.95zm45.07 32.319c-3.853-3.823-9.026-4.314-13.812-.979c3.168.141 5.546 1.152 7.474 3.15a23.695 23.695 0 0 0 2.155 2.015c2.917 2.352 7.858 2.465 10.747.282c-3.392-1.323-3.392-1.323-6.563-4.468zm-38.384 29.272c-3.386-6.306-9.079-7.728-15.657-7.305a17.62 17.62 0 0 1 5.426 2.534c1.532 1.068 2.82 2.388 4.09 3.745c2.514 2.685 6.44 4.33 9.043 3.774c-1.195-.751-2.257-1.547-2.902-2.748m31.516-35.215c0-.042.001-.081.004-.124l-.01.011l.01-.01l-.065-.008l.038.032l.022.097zM78.114 96.55a13.871 13.871 0 0 0-.132-.076a.232.232 0 0 0 .027.079c.01.015.07 0 .106-.003zm-.132-.076l-.015-.061l-.015.018l.015-.018l-.04-.01l.01.046l.043.025z\\\"/>\"\n\t\t},\n\t\t\"phoenix-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#453634\\\" d=\\\"m13.138 68.872l-2.675.377v12.926h2.713v-6.049c.584-.301 1.489-.678 1.979-.678c.47 0 .659.245.659.66v6.067h2.713V75.75c0-1.772-.546-2.94-2.11-2.94c-1.055 0-2.167.34-3.279.848zm34.955.094v2.883h2.713v-2.883ZM0 69.626v12.549h2.826v-3.806h2.148c3.053 0 4.334-1.188 4.334-3.543v-1.64c0-2.355-1.13-3.56-4.183-3.56zm2.826 2.506h2.148c1.188 0 1.508.414 1.508 1.319v1.092c0 .905-.264 1.376-1.508 1.376H2.826Zm21.21.678c-3.26 0-4.146 1.828-4.146 3.712v2.13c0 1.884.886 3.711 4.145 3.711c3.26 0 4.146-1.827 4.146-3.712v-2.129c0-1.884-.886-3.712-4.146-3.712zm9.154 0c-3.052 0-3.938 1.696-3.938 3.674v2.149c0 2.26 1.13 3.73 4.107 3.73c1.282 0 2.62-.282 3.449-.584l-.396-2.035c-.81.245-1.94.396-2.789.396c-1.243 0-1.658-.283-1.658-1.338v-.264h4.937v-1.922c0-1.997-.66-3.806-3.712-3.806m11.02 0c-1.055 0-2.525.339-3.655.885l-.283-.697h-2.016v9.177h2.713v-6.067c.584-.32 1.489-.66 1.978-.66c.472 0 .66.245.66.66v6.067h2.713V75.75c0-1.772-.546-2.94-2.11-2.94m3.883.188v9.177h2.713v-9.177zm3.796 0l2.845 4.56l-2.92 4.617h2.732l1.62-2.544l1.62 2.544h2.733l-2.92-4.617l2.845-4.56h-2.676l-1.602 2.506l-1.601-2.506zm-18.68 1.941c.942 0 1.13.528 1.13 1.169v.395h-2.374v-.395c0-.641.302-1.169 1.244-1.169m-9.174.15c.98 0 1.433.49 1.433 1.358v2.28c0 .867-.453 1.356-1.433 1.356s-1.432-.49-1.432-1.356v-2.28c0-.867.453-1.357 1.432-1.357zm50.935 8.587l-1.08.149v12.763h1.08zm-74.56.52v12.392h1.097v-5.637H7.05v-.986H1.507v-4.782H7.46v-.986zm12.728 3.145c-.856.316-1.823.93-2.79 1.563l-.056-1.377h-.968v9.061h1.08v-6.512c.874-.577 1.916-1.265 2.865-1.674zm4.633 0c-.93 0-2.065.149-2.79.353l.167.912c.837-.167 1.786-.297 2.68-.297c1.488 0 2.14.409 2.14 1.656v1.767h-2.68c-1.787 0-2.661.596-2.661 2.512c0 1.619.744 2.53 2.344 2.53c1.191 0 2.196-.353 3.07-.893l.075.707h.93v-6.623c0-1.694-.93-2.624-3.275-2.624m10.293 0c-1.098 0-2.717.54-3.684 1.005l-.074-.819h-.95v9.061h1.08v-7.2c1.135-.596 2.735-1.042 3.479-1.042c.633 0 .986.242.986.911v7.331h1.08v-7.2c1.134-.596 2.623-1.042 3.479-1.042c.632 0 .986.242.986.911v7.331h1.08v-7.2c0-1.247-.503-2.047-1.917-2.047c-1.098 0-2.754.52-3.796 1.005c-.242-.633-.782-1.005-1.75-1.005zm13.036 0c-2.55 0-3.387 1.433-3.387 3.293v2.847c0 1.972.82 3.293 3.368 3.293c1.098 0 2.289-.204 3.126-.502l-.186-.874c-.893.241-1.935.428-2.865.428c-1.805 0-2.363-.689-2.363-2.308v-1.135h5.6v-1.749c0-1.86-.744-3.293-3.293-3.293m21.396 0c-2.55 0-3.517 1.433-3.517 3.293v2.847c0 1.86.968 3.293 3.517 3.293s3.516-1.432 3.516-3.293v-2.847c0-1.86-.967-3.293-3.516-3.293m9.487 0c-.856.316-1.824.93-2.791 1.563l-.056-1.377h-.967v9.061h1.079v-6.512c.874-.577 1.916-1.265 2.865-1.674zm-26.383.186l2.065 9.061h1.619l2.381-8.28l2.382 8.28h1.619l2.065-9.06h-1.023l-1.88 8.335l-2.437-8.336h-1.452l-2.455 8.336l-1.861-8.336zm33.426 0l-3.573 4.466l3.684 4.595h1.377l-3.758-4.595l3.61-4.466zm-37.926.744c1.693 0 2.232.8 2.232 2.326v.819h-4.54v-.819c0-1.526.614-2.326 2.308-2.326m21.396.038c1.693 0 2.437.762 2.437 2.288v2.921c0 1.526-.744 2.289-2.437 2.289c-1.693 0-2.438-.763-2.438-2.289v-2.92c0-1.527.745-2.29 2.438-2.29zm-45.171 4.39h2.642v2.178c-.819.576-1.88.93-2.772.93c-1.265 0-1.489-.484-1.489-1.545c0-1.19.372-1.562 1.619-1.562z\\\"/><path fill=\\\"#fd4f00\\\" d=\\\"m101.442 83.278l-.61-.13l-.63-.245l-.631-.244l-.674-.424l-.677-.42l-1.263-1.263l-1.264-1.267l-.674-.462l-.674-.46l-.674-.338l-.677-.338l-.74-.227l-.74-.227l1.308.046l1.306.048l.825.133l.828.136l.61.181l.608.179l.61.302l.611.302l.462.357l.463.356l.462.53l.46.528l.725 1.076l.722 1.08l.514.38l.52.38h.157v.176l-.326-.009l-.33-.006zm-3.963-6.794l-.565-.22l-.958-.243l-.958-.242l-.928-.108l-.925-.11l-1.426.05l-1.42.045l-1.944.272l-1.94.266l-1.282.096l-1.282.097l-.786-.051l-.78-.055l-.749-.13l-.75-.133l-.927-.26l-.925-.26l-.807-.314l-.807-.317l-1.197-.605l-1.2-.604l-1.064-.714l-1.067-.713l-.607-.483l-.61-.49l-.778-.71l-.773-.71l-.777-.847l-.774-.85l-.695-.906l-.692-.907l.045-.042l.043-.042l.807.526l.807.525l.695.393l.698.387l.61.281l.608.278l.777.303l.776.296l.968.254l.964.25l.653.112l.652.112l1.306-.003l1.306-.003l.786-.15l.782-.152l1.566-.535l1.569-.538h1l1.004-.006l.435.124l.435.12l.453.203l.46.197v.184h-.281l-.284.003l-.566.13l-.568.133l-.347.136l-.348.136l-.293.22l-.29.224l-.124.294l-.121.293l.054.242l.058.235l.196.266l.2.27l.523.277l.526.282l.652.166l.656.166l.68.09l.68.091l1.696.091l1.698.085l.801.172l.801.172l.66.22l.661.221l.717.36l.716.357l.583.432l.583.43l.439.483l.441.477v.16l-.024-.006l-.021-.006zm16.805-8.735v-.958h-.607v-.435h1.653v.435h-.61v1.916h-.436zm1.569-.212v-1.181h.508l.28.74l.279.74h.054l.281-.74l.281-.74h.493v1.541l.054.405l.058.405h-.444l-.064-.674l-.063-.677l-.182.502l-.175.501h-.499l-.193-.459l-.19-.453l-.043.604l-.045.61l-.194.03l-.196.028zm-15.85.744l.48-.154l.566-.287l.565-.29l.568-.394l.566-.392l2.61-2.624l2.615-2.62l.699-.496l.7-.493l.738-.393l.735-.39l.677-.223l.674-.227l.846-.127l.852-.13h1.569l.867.13l.87.133l.57.182l.564.18l.565.3l.566.302l.263.224l.26.224l-.173-.06l-.175-.061l-.478-.127l-.48-.127l-.834-.052l-.835-.054l-.471.112l-.472.112l-.392.2l-.393.199l-.49.42l-.493.42l-1.172 1.309l-1.17 1.308l-.56.484l-.555.484l-.478.347l-.48.348l-.608.35l-.61.354l-.741.323l-.74.324l-1.028.296l-1.028.296l-1.018.172l-1.019.173l-.9.09l-.904.091l-.883-.006l-.882-.006zM75.31 67.71l-.62-.121l-.834-.221l-.834-.22l-.855-.318l-.853-.314l-.973-.48l-.973-.478l-.846-.563l-.85-.565l-.665-.55l-.659-.553l-.668-.698l-.667-.701l-.475-.641l-.475-.64l-.371-.605l-.375-.608l-.417-.873l-.417-.87l-.348-1.044l-.347-1.045l-.182-.801l-.175-.801l-.133-.856l-.133-.852l-.088-2.569l-.084-2.569l-.13-1.209l-.13-1.206l-.218-1.079l-.217-1.079l-.312-.928l-.311-.928l-.354-.704l-.35-.704l-.318-.478l-.314-.477l-.556-.59l-.556-.589l-.402-.296l-.402-.293l-.623-.315l-.626-.314l-.755-.178l-.756-.182l-1.036.03l-1.037.028v-.118l.414-.3l.414-.302l.846-.492l.85-.496l.677-.311l.674-.309l.87-.341l.87-.345l1.046-.302l1.046-.308l1.263-.254l1.26-.25l1.264-.152l1.264-.151h1.916l1.913-.006l1.003.154l1 .154l.871.22l.87.221l.829.306l.828.308l.937.477l.934.475l.825.553l.825.55l.85.683l.852.68l1.306 1.309l1.308 1.309l1.436 1.692l1.436 1.693l1.305 1.526l1.3 1.53l1.312 1.308l1.308 1.309l.74.592l.741.593l.913.61l.916.61l.958.466l.955.466l.75.26l.746.257l1.004.226l1.006.224l1.21.115l1.208.112l-.653.332l-.65.333l-.785.302l-.786.305l-.523.16l-.523.157l-.55.106l-.547.106l-1.106-.048l-1.107-.049l-.67-.178l-.675-.175l-.61-.257l-.608-.257l-.722-.484l-.72-.486l-1-.889l-1.003-.886l-.508-.332l-.51-.333l-.493-.193l-.49-.193l-1.003-.006l-.998-.003l-.453.157l-.45.157l-.387.338l-.387.342l-.2.46l-.2.459l-.042.72l-.039.715l.239.762l.236.765l.341.716l.339.713l.628.94l.626.937l1.003 1.004l1.007 1l.828.59l.828.589l1.21.61l1.214.611l1.2.387l1.2.384l1.115.214l1.113.215l.915.09l.913.091l1.004.055l.997.054l1.23-.094l1.23-.093l.732-.127l.731-.13l.774-.224l.77-.224l.052.052l.048.048l-.574.55l-.574.55l-.641.52l-.64.523l-.675.453l-.674.45l-.894.47l-.892.468l-.855.317l-.856.317l-.798.212l-.8.209l-1.001.142l-1.003.145l-1.219-.046l-1.218-.045l-.522-.145l-.523-.142l-.877-.423l-.876-.423l-.735-.544l-.734-.538l-1.088-1.1l-1.088-1.1l-1.91-2.337l-1.908-2.333l-.795-.81l-.795-.807l-.562-.414l-.562-.411l-.477-.242l-.481-.242l-.471-.142l-.475-.14h-1.454l-.604.137l-.608.139l-.514.344l-.516.342l-.272.408l-.266.408l-.13.432l-.127.432v1.527l.226.725l.227.723l.305.607l.303.61l.474.714l.472.713l.658.704l.662.702l.695.525l.696.523l.885.433l.886.432l.858.217l.859.218h.49l.048.079l.045.075l-.453.052l-.457.054l-1.523.042l-1.527.04zM63.568 35.246l.266-.14l.29-.287l.287-.29l.172-.38l.173-.378l-.082-.082l-.082-.082l-.994.094l-.991.094l-1.088.181l-1.088.179l-.067.039l-.063.04l.133.205l.133.202l.35.242l.348.242l.453.163l.453.16l.566-.03l.568-.036zm60.34 32.445l-.263-.042l-.478-.133l-.48-.133l-.508-.272l-.511-.272l-1.058-.991l-1.058-.998l-.347-.238l-.348-.24l-.441-.223l-.441-.224l-.517-.13l-.517-.132l-.544-.06l-.547-.061l.09-.11l.091-.108l.66-.32l.655-.32l.704-.18l.707-.177l1.05.039l1.051.04l.635.223l.631.224l.454.29l.46.287l1.217 1.185l1.218 1.184l.408.275l.408.278l.245.1l.248.097l.608.151l.61.151l-.565.263l-.568.26l-.569.142l-.574.142l-.777.036l-.78.037zm-28.729-6.785l-.686-.13l-.75-.254l-.749-.25l-.42-.191l-.423-.187l.04-.037l.035-.036l.89.133l.89.133l1.107.006h1.103l.508-.136l.505-.136l.583-.248l.58-.248l1.874-1.118l1.874-1.115l.816-.384l.82-.384l.876-.293l.882-.293l.913-.197l.916-.196h3.745l.828.23l.825.23l.74.314l.74.317l.72.45l.717.45v.146l-.152-.049l-.15-.045l-.638-.133l-.638-.133l-1.279-.097l-1.278-.096l-.828.051l-.828.051l-.523.136l-.52.133l-.644.303l-.64.302l-.926.559l-.927.56l-.786.392l-.786.399l-.577.218l-.58.217l-.856.215l-.855.214l-.913.142l-.916.14l-1.783.039l-1.786.036zm21.904-8.11l-.203-.595l-.386-.583l-.39-.586l-.523-.475l-.526-.474l-.58-.303l-.58-.305l-.524-.15l-.522-.158l-.87.006l-.871.003l-.523.109l-.523.109l-1.348.426l-1.351.429l-.837.172l-.838.17l-1.269.09l-1.263.09l-1.379-.09l-1.38-.09l-.829-.134l-.825-.133l-.916-.223l-.913-.224l-.87-.302l-.874-.308l-1.13-.544l-1.133-.55l-.913-.605l-.916-.604l-.565-.463l-.565-.462l-.554-.532l-.556-.532l-.643-.765l-.641-.765v-.157l.725.55l.729.547l.864.49l.861.487l.795.344l.792.345l.964.305l.961.302l.856.182l.855.175l.825.106l.828.105h3.05l.925-.15l.928-.149l1.076-.29l1.076-.287l1.043-.323l1.045-.324l.828-.181l.829-.182h1.348l1.35.006l.847.224l.846.22l.695.363l.696.363l.574.523l.574.526l.375.535l.378.532l.263.523l.26.523l.235.74l.233.74l.13.865l.127.864l-.024.251l-.028.251l-.202-.592zm-21.127-8.009l-.263-.03l-.653-.09l-.652-.094l-.995-.257l-.991-.257l-1.01-.399l-1.01-.399l-.906-.483l-.91-.484l-1.006-.677l-1.01-.677l-.737-.596l-.738-.592l-.807-.774l-.807-.77v-.182l1.24.055l1.239.054l1.006.172l1.004.173l.919.302l.918.3l.732.362l.734.369l.695.462l.699.46l1.29.997l1.294 1l.64.366l.641.369l.629.211l.629.212l.746.075l.75.076l.783-.07l.785-.07l.478-.054l.477-.057l-.232.136l-.233.133l-.786.263l-.786.263l-.852.13l-.855.13l-.913-.015l-.916-.012z\\\"/>\"\n\t\t},\n\t\t\"photonengine\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconPhotonengine0\\\" x1=\\\"21.31\\\" x2=\\\"83.8\\\" y1=\\\"22.93\\\" y2=\\\"66.69\\\" gradientTransform=\\\"translate(-6.586 43.537)scale(.45666)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".19\\\" stop-color=\\\"#71d7fc\\\"/><stop offset=\\\".29\\\" stop-color=\\\"#67caf1\\\"/><stop offset=\\\".47\\\" stop-color=\\\"#4ea9d5\\\"/><stop offset=\\\".7\\\" stop-color=\\\"#2574a9\\\"/><stop offset=\\\".89\\\" stop-color=\\\"#004480\\\"/></linearGradient></defs><path fill=\\\"#004480\\\" d=\\\"M115.14 71.395h3.297V59.777a12.912 12.912 0 0 1 3.239-.363c1.824 0 3.058.598 3.058 2.82v9.16H128v-9.253c0-4.196-2.305-5.844-6.266-5.844c-2.214 0-4.972.332-6.593.957ZM109.27 64c0 2.816-.633 4.617-3.567 4.617c-2.937 0-3.566-1.8-3.566-4.617c0-2.816.656-4.566 3.566-4.566c2.906 0 3.567 1.765 3.567 4.566m-3.567 7.73c4.64 0 6.848-3.054 6.848-7.73c0-4.855-2.035-7.703-6.848-7.703c-4.617 0-6.89 3.027-6.89 7.703c0 4.887 2.062 7.73 6.89 7.73M88.23 66.129c0 4.223 2.305 5.574 5.512 5.574a9.737 9.737 0 0 0 3.688-.66l-.508-3.117a7.774 7.774 0 0 1-3.2.66c-1.32 0-2.187-.598-2.187-2.426v-6.445h5.336v-3.117h-5.344v-3.895H88.23ZM82.352 64c0 2.816-.625 4.617-3.567 4.617c-2.941 0-3.566-1.8-3.566-4.617c0-2.816.664-4.566 3.566-4.566c2.906 0 3.567 1.765 3.567 4.566m-3.543 7.73c4.648 0 6.851-3.054 6.851-7.73c0-4.855-2.039-7.703-6.851-7.703c-4.614 0-6.891 3.027-6.891 7.703c0 4.887 2.07 7.73 6.89 7.73Zm-22.349-.335h3.298V59.777a12.56 12.56 0 0 1 3.238-.363c1.824 0 3.055.598 3.055 2.82v9.16h3.265v-9.16c0-4.41-2.484-5.937-6.175-5.937a11.92 11.92 0 0 0-3.383.418v-6.293H56.46Zm-15.468 6.363h3.297v-6.445c.797.289 1.64.433 2.488.417c4.528 0 7.102-2.902 7.102-7.94c0-4.852-2.281-7.493-7.43-7.493a16.687 16.687 0 0 0-5.48.914v20.547ZM50.555 64c0 3.059-.809 4.617-3.926 4.617a4.46 4.46 0 0 1-2.34-.48v-8.395a6.922 6.922 0 0 1 2.313-.328c2.964 0 3.953 1.2 3.953 4.566Zm0 0\\\"/><path fill=\\\"url(#deviconPhotonengine0)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.285 70.598c.082.093.172.183.258.27l.273.265l-4.902 5.937a16.916 16.916 0 0 1-.82-.77c-.262-.26-.52-.519-.762-.796l5.938-4.906Zm2.047 1.707L8.68 79.098a17.907 17.907 0 0 1-1.86-1.243l4.883-6.003c.207.148.414.285.629.418Zm-3.195-3.196c.129.211.27.422.422.625l-5.98 4.856a17.3 17.3 0 0 1-1.243-1.856l6.797-3.652Zm4.914 4.032l-2.262 7.347a17.169 17.169 0 0 1-2.059-.851l3.618-6.809c.23.106.464.203.699.285ZM8.3 67.367c.086.235.183.469.289.695L1.78 71.684a16.383 16.383 0 0 1-.855-2.063Zm7.59 6.227l-.77 7.672a17.52 17.52 0 0 1-2.195-.457l2.226-7.36c.243.059.489.106.739.145m-8.07-8.07c.038.25.09.496.148.742L.582 68.484a17.33 17.33 0 0 1-.434-2.187Zm-.114-1.895v.758l-7.672.746a17.768 17.768 0 0 1 0-2.235Zm10.082 10.074l.742 7.676c-.746.047-1.488.047-2.234 0l.742-7.676c.25.016.5.016.75 0m1.887-.254l2.226 7.383c-.722.2-1.453.352-2.195.457l-.77-7.672c.247-.043.497-.086.739-.144ZM7.969 61.734c-.059.246-.11.493-.149.746l-7.672-.777a17.27 17.27 0 0 1 .434-2.183l7.387 2.218ZM21.48 72.828l3.618 6.809a17.28 17.28 0 0 1-2.067.851l-2.25-7.375a9.4 9.4 0 0 0 .7-.285ZM8.602 59.902c-.106.23-.204.457-.29.7L.946 58.32c.243-.707.532-1.398.864-2.066l6.793 3.656Zm14.52 11.95L28 77.836c-.594.453-1.21.867-1.855 1.242l-3.649-6.773c.211-.13.418-.266.625-.418ZM9.558 58.289a7.3 7.3 0 0 0-.422.625l-6.79-3.656c.376-.64.79-1.262 1.243-1.852Zm20.937 17.215a18.675 18.675 0 0 1-1.582 1.578l-4.902-5.95l.273-.265l.258-.27ZM5.914 50.922l4.902 5.937l-.273.262c-.086.09-.176.18-.258.27l-5.937-4.903c.242-.273.496-.547.761-.812c.266-.266.54-.524.817-.762ZM32.492 72.73c-.375.649-.789 1.27-1.242 1.86l-5.977-4.883c.153-.203.293-.414.422-.625l6.797 3.652ZM8.684 48.926l3.656 6.789a13.38 13.38 0 0 0-.633.422l-4.879-5.969c.59-.453 1.211-.871 1.856-1.242M33.902 69.62a16.383 16.383 0 0 1-.855 2.063l-6.809-3.621c.106-.227.2-.461.29-.696ZM11.81 47.504l2.246 7.383c-.239.082-.47.18-.7.285l-3.609-6.813a17.633 17.633 0 0 1 2.063-.855m22.87 18.793a17.401 17.401 0 0 1-.456 2.187l-7.364-2.218a9.59 9.59 0 0 0 .149-.743ZM15.122 46.734l.77 7.672c-.25.04-.496.09-.739.145l-2.226-7.36a17.52 17.52 0 0 1 2.195-.457m19.672 16.153c.05.742.05 1.484 0 2.226l-7.672-.734v-.758ZM18.531 46.62l-.742 7.676h-.75l-.742-7.676a17.768 17.768 0 0 1 2.234 0m15.711 12.9c.203.718.356 1.449.457 2.187l-7.672.777a8.11 8.11 0 0 0-.144-.746ZM21.914 47.19l-2.238 7.36a11.732 11.732 0 0 0-.738-.145l.769-7.672c.742.098 1.473.239 2.195.43Zm3.195 1.196l-3.629 6.789a7.747 7.747 0 0 0-.699-.29l2.25-7.374a17.28 17.28 0 0 1 2.067.851Zm7.934 7.937c.328.668.613 1.36.855 2.063l-7.37 2.285c-.087-.234-.188-.457-.294-.7Zm-5.055-6.164l-4.89 5.973a11.34 11.34 0 0 0-.63-.422l3.653-6.793c.645.371 1.266.785 1.86 1.242Zm3.242 3.23c.454.59.868 1.208 1.243 1.852l-6.785 3.653a8.408 8.408 0 0 0-.422-.63l5.964-4.886Zm-2.316-2.468c.281.242.547.496.816.762c.27.265.52.53.766.812l-5.937 4.91a4.373 4.373 0 0 0-.262-.273l-.274-.266l4.907-5.937Zm0 0\\\"/>\"\n\t\t},\n\t\t\"photoshop\": {\n\t\t\t\"body\": \"<path fill=\\\"#001e36\\\" d=\\\"M22.667 1.6h82.666C117.867 1.6 128 11.733 128 24.267v79.466c0 12.534-10.133 22.667-22.667 22.667H22.667C10.133 126.4 0 116.267 0 103.733V24.267C0 11.733 10.133 1.6 22.667 1.6\\\"/><path fill=\\\"#31a8ff\\\" d=\\\"M45.867 33.333c-1.6 0-3.2 0-4.853.054c-1.654.053-3.201.053-4.641.107c-1.44.053-2.773.053-4.053.106c-1.227.053-2.08.053-2.987.053c-.373 0-.533.213-.533.587v54.88c0 .48.213.694.64.694h10.347c.373-.054.64-.374.586-.747v-17.12c1.013 0 1.76 0 2.294.053c.533.053 1.386.053 2.666.053c4.374 0 8.374-.48 12-1.813c3.467-1.28 6.454-3.52 8.587-6.507c2.133-2.986 3.2-6.773 3.2-11.36c0-2.4-.426-4.693-1.226-6.933A16.98 16.98 0 0 0 64 39.36a19.049 19.049 0 0 0-7.147-4.374c-2.987-1.12-6.613-1.653-10.986-1.653m1.19 10.505c1.9.036 3.75.368 5.476 1.068c1.547.587 2.827 1.654 3.734 3.04a8.779 8.779 0 0 1 1.227 4.748c0 2.346-.534 4.16-1.654 5.493c-1.174 1.333-2.667 2.347-4.373 2.827c-1.974.64-4.054.959-6.134.959h-2.827c-.64 0-1.332-.053-2.079-.106v-17.92c.373-.054 1.12-.107 2.187-.053c1.013-.054 2.239-.054 3.626-.054c.273-.007.546-.008.817-.002m44.73 2.723c-3.787 0-6.934.586-9.44 1.866c-2.293 1.067-4.267 2.773-5.6 4.906c-1.173 1.974-1.814 4.16-1.814 6.454a11.447 11.447 0 0 0 1.227 5.44a13.809 13.809 0 0 0 4.054 4.533a32.629 32.629 0 0 0 7.573 3.84c2.613 1.013 4.373 1.813 5.227 2.506c.853.694 1.28 1.387 1.28 2.134c0 .96-.587 1.867-1.44 2.24c-.96.48-2.4.747-4.427.747c-2.133 0-4.267-.267-6.294-.8a22.834 22.834 0 0 1-6.613-2.613c-.16-.107-.32-.16-.48-.053c-.16.106-.213.319-.213.479v9.28c-.053.427.213.8.587 1.013a21.49 21.49 0 0 0 5.44 1.707c2.4.48 4.799.693 7.252.693c3.84 0 7.041-.586 9.654-1.706c2.4-.96 4.48-2.613 5.973-4.747a12.41 12.41 0 0 0 2.08-7.093a11.512 11.512 0 0 0-1.226-5.493c-1.014-1.814-2.454-3.307-4.214-4.427a38.625 38.625 0 0 0-8.213-3.894a48.784 48.784 0 0 1-3.787-1.76c-.693-.373-1.333-.853-1.813-1.44c-.32-.427-.533-.906-.533-1.386c0-.48.16-1.013.426-1.44c.374-.533.96-.907 1.653-1.067c1.014-.266 2.134-.427 3.2-.374c2.027 0 4 .267 5.974.694c1.814.373 3.52.96 5.12 1.814c.213.106.48.106.96 0a.656.656 0 0 0 .267-.534v-8.693c0-.214-.054-.427-.107-.64c-.107-.213-.32-.427-.533-.48A18.762 18.762 0 0 0 98.4 47.04a45.98 45.98 0 0 0-6.613-.48z\\\"/>\"\n\t\t},\n\t\t\"php\": {\n\t\t\t\"body\": \"<path fill=\\\"url(#deviconPhp0)\\\" d=\\\"M0 64c0 18.593 28.654 33.667 64 33.667c35.346 0 64-15.074 64-33.667c0-18.593-28.655-33.667-64-33.667C28.654 30.333 0 45.407 0 64\\\"/><path fill=\\\"#777bb3\\\" d=\\\"M64 95.167c33.965 0 61.5-13.955 61.5-31.167c0-17.214-27.535-31.167-61.5-31.167S2.5 46.786 2.5 64c0 17.212 27.535 31.167 61.5 31.167\\\"/><path d=\\\"M34.772 67.864c2.793 0 4.877-.515 6.196-1.53c1.306-1.006 2.207-2.747 2.68-5.175c.44-2.27.272-3.854-.5-4.71c-.788-.874-2.493-1.317-5.067-1.317h-4.464l-2.473 12.732zM20.173 83.547a.694.694 0 0 1-.68-.828l6.557-33.738a.695.695 0 0 1 .68-.561h14.134c4.442 0 7.748 1.206 9.827 3.585c2.088 2.39 2.734 5.734 1.917 9.935c-.333 1.711-.905 3.3-1.7 4.724a15.818 15.818 0 0 1-3.128 3.92c-1.531 1.432-3.264 2.472-5.147 3.083c-1.852.604-4.232.91-7.07.91h-5.724l-1.634 8.408a.695.695 0 0 1-.682.562z\\\"/><path fill=\\\"#fff\\\" d=\\\"M34.19 55.826h3.891c3.107 0 4.186.682 4.553 1.089c.607.674.723 2.097.331 4.112c-.439 2.257-1.253 3.858-2.42 4.756c-1.194.92-3.138 1.386-5.773 1.386h-2.786zm6.674-8.1H26.731a1.39 1.39 0 0 0-1.364 1.123L18.81 82.588a1.39 1.39 0 0 0 1.363 1.653h7.35a1.39 1.39 0 0 0 1.363-1.124l1.525-7.846h5.151c2.912 0 5.364-.318 7.287-.944c1.977-.642 3.796-1.731 5.406-3.237a16.522 16.522 0 0 0 3.259-4.087c.831-1.487 1.429-3.147 1.775-4.931c.86-4.423.161-7.964-2.076-10.524c-2.216-2.537-5.698-3.823-10.349-3.823zM30.301 68.557h4.471c2.963 0 5.17-.557 6.62-1.675c1.451-1.116 2.428-2.98 2.938-5.591c.485-2.508.264-4.277-.665-5.308c-.931-1.03-2.791-1.546-5.584-1.546h-5.036l-2.743 14.12m10.563-19.445c4.252 0 7.353 1.117 9.303 3.348c1.95 2.232 2.536 5.347 1.76 9.346c-.322 1.648-.863 3.154-1.625 4.518c-.764 1.366-1.76 2.614-2.991 3.747c-1.468 1.373-3.097 2.352-4.892 2.935c-1.794.584-4.08.875-6.857.875h-6.296l-1.743 8.97h-7.35l6.558-33.739z\\\"/><path d=\\\"M69.459 74.577a.694.694 0 0 1-.682-.827l2.9-14.928c.277-1.42.209-2.438-.19-2.87c-.245-.263-.979-.704-3.15-.704h-5.256l-3.646 18.768a.695.695 0 0 1-.683.56h-7.29a.695.695 0 0 1-.683-.826l6.558-33.739a.695.695 0 0 1 .682-.561h7.29a.695.695 0 0 1 .683.826L64.41 48.42h5.653c4.307 0 7.227.758 8.928 2.321c1.733 1.593 2.275 4.14 1.608 7.573l-3.051 15.702a.695.695 0 0 1-.682.56z\\\"/><path fill=\\\"#fff\\\" d=\\\"M65.31 38.755h-7.291a1.39 1.39 0 0 0-1.364 1.124l-6.557 33.738a1.39 1.39 0 0 0 1.363 1.654h7.291a1.39 1.39 0 0 0 1.364-1.124l3.537-18.205h4.682c2.168 0 2.624.463 2.641.484c.132.14.305.795.019 2.264l-2.9 14.927a1.39 1.39 0 0 0 1.364 1.654h7.408a1.39 1.39 0 0 0 1.363-1.124l3.051-15.7c.715-3.686.103-6.45-1.82-8.217c-1.836-1.686-4.91-2.505-9.398-2.505h-4.81l1.421-7.315a1.39 1.39 0 0 0-1.364-1.655m0 1.39l-1.743 8.968h6.496c4.087 0 6.907.714 8.457 2.14c1.553 1.426 2.017 3.735 1.398 6.93l-3.052 15.699h-7.407l2.901-14.928c.33-1.698.208-2.856-.365-3.474c-.573-.617-1.793-.926-3.658-.926h-5.829l-3.756 19.327H51.46l6.558-33.739h7.292z\\\"/><path d=\\\"M92.136 67.864c2.793 0 4.878-.515 6.198-1.53c1.304-1.006 2.206-2.747 2.679-5.175c.44-2.27.273-3.854-.5-4.71c-.788-.874-2.493-1.317-5.067-1.317h-4.463l-2.475 12.732zM77.54 83.547a.694.694 0 0 1-.682-.828l6.557-33.738a.695.695 0 0 1 .682-.561H98.23c4.442 0 7.748 1.206 9.826 3.585c2.089 2.39 2.734 5.734 1.917 9.935a15.878 15.878 0 0 1-1.699 4.724a15.838 15.838 0 0 1-3.128 3.92c-1.53 1.432-3.265 2.472-5.147 3.083c-1.852.604-4.232.91-7.071.91h-5.723l-1.633 8.408a.695.695 0 0 1-.683.562z\\\"/><path fill=\\\"#fff\\\" d=\\\"M91.555 55.826h3.891c3.107 0 4.186.682 4.552 1.089c.61.674.724 2.097.333 4.112c-.44 2.257-1.254 3.858-2.421 4.756c-1.195.92-3.139 1.386-5.773 1.386h-2.786zm6.674-8.1H84.096a1.39 1.39 0 0 0-1.363 1.123l-6.558 33.739a1.39 1.39 0 0 0 1.364 1.653h7.35a1.39 1.39 0 0 0 1.363-1.124l1.525-7.846h5.15c2.911 0 5.364-.318 7.286-.944c1.978-.642 3.797-1.731 5.408-3.238a16.52 16.52 0 0 0 3.258-4.086c.832-1.487 1.428-3.147 1.775-4.931c.86-4.423.162-7.964-2.076-10.524c-2.216-2.537-5.697-3.823-10.35-3.823zM87.666 68.557h4.47c2.964 0 5.17-.557 6.622-1.675c1.45-1.116 2.428-2.98 2.936-5.591c.487-2.508.266-4.277-.665-5.308c-.93-1.03-2.791-1.546-5.583-1.546h-5.035Zm10.563-19.445c4.251 0 7.354 1.117 9.303 3.348c1.95 2.232 2.537 5.347 1.759 9.346c-.32 1.648-.862 3.154-1.624 4.518c-.763 1.366-1.76 2.614-2.992 3.747c-1.467 1.373-3.097 2.352-4.892 2.935c-1.793.584-4.078.875-6.856.875h-6.295l-1.745 8.97h-7.35l6.558-33.739h14.133\\\"/><defs><radialGradient id=\\\"deviconPhp0\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"translate(38.426 42.169)scale(84.04136)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#AEB2D5\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#AEB2D5\\\"/><stop offset=\\\".75\\\" stop-color=\\\"#484C89\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#484C89\\\"/></radialGradient></defs>\"\n\t\t},\n\t\t\"phpstorm\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconPhpstorm0\\\" x1=\\\"25.8\\\" x2=\\\"33.95\\\" y1=\\\"33.6\\\" y2=\\\"17.31\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#af1df5\\\"/><stop offset=\\\".21\\\" stop-color=\\\"#bc20e4\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#dd29b8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ff318c\\\"/></linearGradient><linearGradient id=\\\"deviconPhpstorm1\\\" x1=\\\"1.56\\\" x2=\\\"35.95\\\" y1=\\\"67.23\\\" y2=\\\"21.8\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".02\\\" stop-color=\\\"#6b57ff\\\"/><stop offset=\\\".42\\\" stop-color=\\\"#b74af7\\\"/><stop offset=\\\".75\\\" stop-color=\\\"#ff318c\\\"/></linearGradient><linearGradient id=\\\"deviconPhpstorm2\\\" x1=\\\"89.3\\\" x2=\\\"65.46\\\" y1=\\\"65.79\\\" y2=\\\"9.23\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#293896\\\"/><stop offset=\\\".08\\\" stop-color=\\\"#3b3aa2\\\"/><stop offset=\\\".29\\\" stop-color=\\\"#6740c0\\\"/><stop offset=\\\".49\\\" stop-color=\\\"#8a44d8\\\"/><stop offset=\\\".68\\\" stop-color=\\\"#a347e9\\\"/><stop offset=\\\".86\\\" stop-color=\\\"#b249f3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b74af7\\\"/></linearGradient><linearGradient id=\\\"deviconPhpstorm3\\\" x1=\\\"74.68\\\" x2=\\\"58.6\\\" y1=\\\"93.59\\\" y2=\\\"70.03\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".02\\\" stop-color=\\\"#6b57ff\\\"/><stop offset=\\\".78\\\" stop-color=\\\"#b74af7\\\"/></linearGradient></defs><path fill=\\\"url(#deviconPhpstorm0)\\\" d=\\\"m70.082 27.281l-3.898-11.8l-40.73-8.778l-19.97 22.59L27.43 40.52V27.28Zm0 0\\\"/><path fill=\\\"url(#deviconPhpstorm1)\\\" d=\\\"M27.43 34.96L5.484 29.294l11.157 67l10.75-.086Zm0 0\\\"/><path fill=\\\"url(#deviconPhpstorm2)\\\" d=\\\"M100.57 27.281H62.402l15.336-13.629l29.551 5.489l15.227 37.836l-21.934 21.785Zm0 0\\\"/><path fill=\\\"url(#deviconPhpstorm3)\\\" d=\\\"m100.598 56.477l-.028 43.949H37.742l1.621 9.558l39.45 13.75l43.703-26.16Zm0 0\\\"/><path d=\\\"M27.43 27.43h73.14v73.14H27.43Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M36.547 86.746h27.43v4.574h-27.43Zm23.918-26.683l3.57-4.278a12.625 12.625 0 0 0 8.219 3.34c2.437 0 3.973-.988 3.973-2.598v-.074c0-1.535-.95-2.328-5.547-3.496c-5.547-1.414-9.118-2.953-9.118-8.414v-.086c0-4.984 4.012-8.289 9.63-8.289a15.85 15.85 0 0 1 10.214 3.5l-3.144 4.559a12.877 12.877 0 0 0-7.157-2.707c-2.316 0-3.535 1.062-3.535 2.437v.086c0 1.805 1.22 2.437 5.938 3.66c5.586 1.461 8.73 3.461 8.73 8.25v.086c0 5.461-4.172 8.535-10.105 8.535a17.479 17.479 0 0 1-11.668-4.402M36.57 36.57h11.215c6.535 0 10.496 3.88 10.496 9.473v.074c0 6.34-4.937 9.63-11.078 9.63h-4.535v8.218H36.57Zm10.801 13.813c3.012 0 4.781-1.793 4.781-4.145v-.074c0-2.703-1.879-4.156-4.879-4.156h-4.605v8.375Zm0 0\\\"/>\"\n\t\t},\n\t\t\"playwright\": {\n\t\t\t\"body\": \"<path fill=\\\"#2D4552\\\" d=\\\"M43.662 70.898c-4.124 1.17-6.829 3.222-8.611 5.272c1.707-1.494 3.993-2.865 7.077-3.739c3.155-.894 5.846-.888 8.069-.459v-1.739c-1.897-.173-4.072-.035-6.536.664ZM34.863 56.28l-15.314 4.035s.279.394.796.92l12.984-3.421s-.184 2.371-1.782 4.492c3.022-2.287 3.316-6.025 3.316-6.025Zm12.819 35.991C26.131 98.076 14.729 73.1 11.277 60.137C9.682 54.153 8.986 49.621 8.8 46.697a4.955 4.955 0 0 1 .011-.794c-1.118.068-1.653.649-1.544 2.328c.186 2.923.882 7.454 2.477 13.44c3.45 12.961 14.854 37.937 36.405 32.132c4.691-1.264 8.215-3.565 10.86-6.504c-2.438 2.202-5.49 3.937-9.327 4.972m4.05-51.276v1.534h8.453c-.173-.543-.348-1.032-.522-1.534z\\\"/><path fill=\\\"#2D4552\\\" d=\\\"M62.074 53.627c3.802 1.08 5.812 3.745 6.875 6.104l4.239 1.204s-.578-8.255-8.045-10.376c-6.985-1.985-11.284 3.881-11.807 4.64c2.032-1.448 4.999-2.633 8.738-1.572m33.741 6.142c-6.992-1.994-11.289 3.884-11.804 4.633c2.034-1.446 4.999-2.632 8.737-1.566c3.796 1.081 5.804 3.743 6.87 6.104l4.245 1.208s-.588-8.257-8.048-10.379m-4.211 21.766l-35.261-9.858s.382 1.935 1.846 4.441l29.688 8.3c2.444-1.414 3.726-2.883 3.726-2.883Zm-24.446 21.218c-27.92-7.485-24.544-43.059-20.027-59.916c1.86-6.947 3.772-12.11 5.358-15.572c-.946-.195-1.73.304-2.504 1.878c-1.684 3.415-3.837 8.976-5.921 16.76c-4.516 16.857-7.892 52.429 20.027 59.914c13.159 3.525 23.411-1.833 31.053-10.247c-7.254 6.57-16.515 10.253-27.986 7.182Z\\\"/><path fill=\\\"#E2574C\\\" d=\\\"M51.732 83.935v-7.179l-19.945 5.656s1.474-8.563 11.876-11.514c3.155-.894 5.846-.888 8.069-.459V40.995h9.987c-1.087-3.36-2.139-5.947-3.023-7.744c-1.461-2.975-2.96-1.003-6.361 1.842c-2.396 2.001-8.45 6.271-17.561 8.726c-9.111 2.457-16.476 1.805-19.55 1.273c-4.357-.752-6.636-1.708-6.422 1.605c.186 2.923.882 7.455 2.477 13.44c3.45 12.962 14.854 37.937 36.405 32.132c5.629-1.517 9.603-4.515 12.357-8.336h-8.309zm-32.185-23.62l15.316-4.035s-.446 5.892-6.188 7.405c-5.743 1.512-9.128-3.371-9.128-3.371Z\\\"/><path fill=\\\"#2EAD33\\\" d=\\\"M109.372 41.336c-3.981.698-13.532 1.567-25.336-1.596c-11.807-3.162-19.64-8.692-22.744-11.292c-4.4-3.685-6.335-6.246-8.24-2.372c-1.684 3.417-3.837 8.977-5.921 16.762c-4.516 16.857-7.892 52.429 20.027 59.914c27.912 7.479 42.772-25.017 47.289-41.875c2.084-7.783 2.998-13.676 3.25-17.476c.287-4.305-2.67-3.055-8.324-2.064ZM53.28 55.282s4.4-6.843 11.862-4.722c7.467 2.121 8.045 10.376 8.045 10.376zm18.215 30.706c-13.125-3.845-15.15-14.311-15.15-14.311l35.259 9.858c0-.002-7.117 8.25-20.109 4.453m12.466-21.51s4.394-6.838 11.854-4.711c7.46 2.124 8.048 10.379 8.048 10.379z\\\"/><path fill=\\\"#D65348\\\" d=\\\"M44.762 78.733L31.787 82.41s1.41-8.029 10.968-11.212l-7.347-27.573l-.635.193c-9.111 2.457-16.476 1.805-19.55 1.273c-4.357-.751-6.636-1.708-6.422 1.606c.186 2.923.882 7.454 2.477 13.44c3.45 12.961 14.854 37.937 36.405 32.132l.635-.199zM19.548 60.315l15.316-4.035s-.446 5.892-6.188 7.405c-5.743 1.512-9.128-3.371-9.128-3.371Z\\\"/><path fill=\\\"#1D8D22\\\" d=\\\"m72.086 86.132l-.594-.144c-13.125-3.844-15.15-14.311-15.15-14.311l18.182 5.082L84.15 39.77l-.116-.031c-11.807-3.162-19.64-8.692-22.744-11.292c-4.4-3.685-6.335-6.246-8.24-2.372c-1.682 3.417-3.836 8.977-5.92 16.762c-4.516 16.857-7.892 52.429 20.027 59.914l.572.129zm-18.807-30.85s4.4-6.843 11.862-4.722c7.467 2.121 8.045 10.376 8.045 10.376z\\\"/><path fill=\\\"#C04B41\\\" d=\\\"m45.423 78.544l-3.48.988c.822 4.634 2.271 9.082 4.545 13.011c.396-.087.788-.163 1.192-.273a25.224 25.224 0 0 0 2.98-1.023c-2.541-3.771-4.222-8.114-5.237-12.702Zm-1.359-32.64c-1.788 6.674-3.388 16.28-2.948 25.915a20.061 20.061 0 0 1 2.546-.923l.644-.144c-.785-10.292.912-20.78 2.825-27.915a139.404 139.404 0 0 1 1.455-5.05a45.171 45.171 0 0 1-2.578 1.53a132.234 132.234 0 0 0-1.944 6.587\\\"/>\"\n\t\t},\n\t\t\"plotly\": {\n\t\t\t\"body\": \"<path fill=\\\"#3d4c73\\\" d=\\\"M117.214 128H10.782C5.16 128 .598 123.289.598 117.482V10.518C.598 4.707 5.16 0 10.786 0h106.428c5.63 0 10.188 4.707 10.188 10.518v106.964c0 5.807-4.562 10.518-10.188 10.518\\\"/><path fill=\\\"#7fcfbd\\\" d=\\\"M53.475 24.783a1.43 1.43 0 0 0-1.004.553a9.948 9.948 0 0 0-.846-.043c-.173 0-.334.011-.482.035c-.9-.353-1.859-.36-2.272.783c-.152.458-.24.93-.256 1.412a1.91 1.91 0 0 0-.441.457c-.867 1.248-.746 3.448-.4 4.84c.585 2.372 3.113 4.238 5.3 3.535c.18-.032.356-.1.508-.209c1.168.221 2.442-.172 3.461-1.408c1.513-1.846 1.668-4.341.785-6.412a1.12 1.12 0 0 0-.441-.863a6.37 6.37 0 0 0-1.903-1.998c-.662-.442-1.38-.744-2.01-.682zm44.957 0a1.436 1.436 0 0 0-1.006.553a9.943 9.943 0 0 0-.846-.043c-.172 0-.334.011-.482.035c-.895-.353-1.853-.36-2.266.783c-.156.458-.246.93-.262 1.412c-.168.129-.317.28-.437.457c-.871 1.248-.746 3.448-.4 4.84c.585 2.372 3.11 4.238 5.296 3.535c.18-.032.358-.1.51-.209c1.168.221 2.444-.172 3.46-1.408c1.516-1.846 1.67-4.341.788-6.412a1.136 1.136 0 0 0-.445-.863a6.357 6.357 0 0 0-1.899-1.998c-.664-.442-1.382-.744-2.011-.682m-69.332.862c-1.358-.05-2.681.467-3.498 1.75a3.76 3.76 0 0 0-.202.35a5.55 5.55 0 0 0-1.812 3.198a.699.699 0 0 0-.49.674c-.04 1.445.702 2.58 1.77 3.338c1.11 1 2.765 1.401 4.378 1.45c2.388.063 4.031-1.246 4.774-2.98l.029-.034c1.268-1.67 1.415-3.99-.406-5.293a6.089 6.089 0 0 0-.313-.21a5.766 5.766 0 0 0-1.225-1.195a5.573 5.573 0 0 0-3.005-1.048m46.296.003c-1.357-.048-2.682.468-3.5 1.75a3.23 3.23 0 0 0-.199.346a5.54 5.54 0 0 0-1.814 3.203a.694.694 0 0 0-.49.674c-.045 1.445.698 2.576 1.77 3.338c1.11 1 2.765 1.401 4.374 1.445c2.388.064 4.037-1.245 4.775-2.978l.028-.035c1.272-1.67 1.421-3.985-.4-5.29c-.105-.072-.207-.14-.311-.208a5.773 5.773 0 0 0-1.227-1.196a5.567 5.567 0 0 0-3.006-1.049m-44.619 2.655a6.09 6.09 0 0 1 1.494.597c.173.225.312.466.424.723a3.16 3.16 0 0 0-1.203-.674c-.092-.204-.264-.37-.469-.41l-.06-.016a4.915 4.915 0 0 0-.186-.22m46.297 0a6.14 6.14 0 0 1 1.492.597c.169.225.314.466.426.723a3.197 3.197 0 0 0-1.205-.674c-.092-.204-.264-.37-.473-.41l-.06-.016a3.083 3.083 0 0 0-.18-.22m-24.285.636c.064.029.127.062.2.102c.035.024.073.048.109.076c.092.498.063 1.172-.338 1.393a9.813 9.813 0 0 1 .03-1.57zm44.955 0c.068.029.131.062.2.102l.113.076c.092.498.06 1.172-.342 1.393c-.032-.525-.019-1.05.03-1.57zM29.59 30.141a.618.618 0 0 0 .12.076c.13.06.261.099.397.127c.016.1.022.202.022.302c-.225-.296-.635-.32-.936-.144l-.056-.225zm46.297 0a.604.604 0 0 0 .119.076c.128.06.262.099.402.127c.012.1.016.202.016.302c-.225-.296-.635-.32-.94-.144l-.056-.225zm-48.17.468c.012.093.027.185.05.278c.037.136.077.271.126.412c-.14-.153-.204-.38-.176-.69m46.295.004c.04.233.095.461.172.686c-.137-.153-.2-.377-.172-.686m-16.967.11c.028.975-.212 1.954-.75 2.789h.004c-.333.521-.733.877-1.158 1.093c.28-.433.548-.95.789-1.515c.056-.117.104-.233.152-.354c.177-.16.277-.402.213-.63a.07.07 0 0 1 .008-.028c.349-.26.595-.746.691-1.267zm44.96 0a4.913 4.913 0 0 1-.751 2.789c-.333.521-.729.877-1.154 1.093c.276-.433.548-.95.785-1.515c.056-.117.11-.233.158-.354c.177-.16.275-.402.207-.63c.004-.009.004-.02.008-.028c.349-.26.599-.746.691-1.267zm-53.124.199c.225.822.553 1.626.89 2.332c.197.522.445 1.071.766 1.473a3.267 3.267 0 0 1-.46-.354c-.747-.694-1.077-1.745-1.169-2.736a8.449 8.449 0 0 1-.027-.715m44.959 0c.22.822.55 1.626.89 2.332c.193.522.445 1.071.762 1.473a3.267 3.267 0 0 1-.46-.354c-.747-.694-1.072-1.745-1.169-2.736a7.054 7.054 0 0 1-.023-.715m-62.23.787c.084.245.087.482.035.71l-.188-.368c.06-.113.112-.222.152-.342zm46.294.004c.085.245.09.482.037.707l-.189-.365a2.95 2.95 0 0 0 .152-.342m-48.482 2.183c.06.073.125.141.19.21c-.394.112-.808.14-1.214.076l.069-.084c.325-.02.646-.085.955-.202m46.295 0c.06.073.121.141.19.21c-.394.112-.812.14-1.214.076l.065-.086c.325-.02.65-.083.959-.2M29.1 46.713c-1.358-.05-2.681.468-3.498 1.75a3.76 3.76 0 0 0-.202.35a5.555 5.555 0 0 0-1.812 3.2a.699.699 0 0 0-.49.675c-.04 1.444.702 2.577 1.77 3.335c1.11 1.004 2.765 1.404 4.378 1.448c2.388.06 4.031-1.243 4.774-2.977l.029-.037c1.268-1.673 1.415-3.989-.406-5.293c-.105-.068-.205-.135-.313-.203a5.793 5.793 0 0 0-1.225-1.201a5.588 5.588 0 0 0-3.005-1.047m46.296 0c-1.357-.05-2.682.468-3.5 1.75c-.072.112-.139.23-.199.35a5.536 5.536 0 0 0-1.814 3.2a.694.694 0 0 0-.49.675c-.045 1.444.698 2.577 1.77 3.335c1.11 1.004 2.765 1.404 4.374 1.448c2.388.06 4.037-1.243 4.775-2.977l.028-.037c1.272-1.673 1.421-3.989-.4-5.293l-.311-.203a5.899 5.899 0 0 0-1.227-1.201a5.582 5.582 0 0 0-3.006-1.047m-44.619 2.652a6.423 6.423 0 0 1 1.494.598c.173.225.312.47.424.726a3.168 3.168 0 0 0-1.203-.677c-.092-.2-.264-.37-.469-.41l-.06-.012a5.01 5.01 0 0 0-.186-.225m46.297 0a6.479 6.479 0 0 1 1.492.598c.169.225.314.47.426.726a3.206 3.206 0 0 0-1.205-.677c-.092-.2-.264-.37-.473-.41l-.06-.012a3.146 3.146 0 0 0-.18-.225M29.59 51.203a.619.619 0 0 0 .12.076c.13.06.261.105.397.133c.016.1.022.197.022.297c-.225-.297-.635-.317-.936-.145l-.056-.22zm46.297 0a.604.604 0 0 0 .119.076c.128.06.262.105.402.133c.012.1.016.197.016.297c-.225-.297-.635-.317-.94-.145l-.056-.22zm-48.17.473c.032.237.091.47.176.691c-.14-.152-.204-.382-.176-.691m46.295 0c.028.237.087.47.172.691c-.137-.152-.2-.382-.172-.691m-42.403 1.1c.085.244.088.482.036.71c-.06-.124-.124-.244-.188-.369c.06-.108.112-.221.152-.342zm46.295 0c.085.244.088.482.035.71c-.064-.124-.127-.244-.187-.369c.06-.108.112-.221.152-.342zm-48.482 2.187c.06.068.125.14.19.209a2.944 2.944 0 0 1-1.214.072l.069-.08v-.004c.325-.02.646-.085.955-.197m46.295 0c.06.068.121.14.19.209a2.952 2.952 0 0 1-1.214.072l.065-.08v-.004c.325-.02.65-.085.959-.197\\\"/><path fill=\\\"#fff\\\" d=\\\"M30.248 69.036c-3.105 0-5.622 2.56-5.622 5.722v22.873c0 3.162 2.517 5.718 5.622 5.718c3.106 0 5.622-2.556 5.622-5.718V74.758c0-3.158-2.516-5.718-5.622-5.718m44.972-.004c-3.106 0-5.618 2.56-5.618 5.722v22.873c0 3.162 2.512 5.718 5.618 5.718c3.102 0 5.622-2.556 5.622-5.718V74.758c0-3.158-2.52-5.718-5.622-5.718M52.736 46.163c-3.106 0-5.622 2.56-5.622 5.714v45.754c0 3.162 2.516 5.718 5.622 5.718s5.618-2.556 5.618-5.718V51.877c0-3.158-2.512-5.718-5.618-5.718m44.971.004c-3.105 0-5.621 2.56-5.621 5.714v45.754c0 3.162 2.516 5.718 5.621 5.718c3.102 0 5.622-2.556 5.622-5.718V51.877c0-3.158-2.52-5.718-5.622-5.718\\\"/>\"\n\t\t},\n\t\t\"plotly-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#3d4c73\\\" d=\\\"M3.516 41.924C1.574 41.924 0 43.55 0 45.554v36.891c0 2.005 1.574 3.631 3.512 3.631h36.713c1.937 0 3.511-1.626 3.511-3.63V45.554c0-2.005-1.57-3.631-3.511-3.631zm68.236 9.972c-.983 0-1.781.8-1.781 1.795v17.97c-.004.99.79 1.794 1.781 1.798a1.785 1.785 0 0 0 1.775-1.799V53.691c0-.994-.796-1.795-1.775-1.795m24.877 0a1.784 1.784 0 0 0-1.775 1.795V66.27c0 3.966 3.186 7.189 7.105 7.189a1.79 1.79 0 0 0 1.781-1.799a1.794 1.794 0 0 0-1.781-1.797c-1.957 0-3.55-1.608-3.55-3.593v-7.188h3.55a1.792 1.792 0 0 0 1.781-1.795a1.795 1.795 0 0 0-1.781-1.799h-3.55v-1.797a1.788 1.788 0 0 0-1.78-1.795m12.437 0c-.978 0-1.775.8-1.775 1.795v17.97a1.785 1.785 0 0 0 1.775 1.798a1.788 1.788 0 0 0 1.782-1.799V53.691c0-.994-.799-1.795-1.782-1.795m-55.09 3.592a1.79 1.79 0 0 0-1.775 1.8v17.966c0 .994.797 1.8 1.776 1.8a1.79 1.79 0 0 0 1.775-1.8v-2.828a6.645 6.645 0 0 0 3.557 1.033c3.926 0 7.107-3.45 7.107-7.703V63.19c0-4.254-3.18-7.703-7.107-7.703a6.697 6.697 0 0 0-3.686 1.117a1.787 1.787 0 0 0-1.646-1.117zm30.213 0c-3.926 0-7.107 3.45-7.107 7.703v2.565c0 4.254 3.18 7.703 7.107 7.703s7.108-3.45 7.108-7.703V63.19c0-4.254-3.181-7.703-7.108-7.703zm31.375.002a1.786 1.786 0 0 0-.68.145a1.806 1.806 0 0 0-.93 2.36l5.019 11.833l-.6 1.41a3.56 3.56 0 0 1-3.201 2.217a1.79 1.79 0 0 0-1.736 1.84c.02.967.804 1.748 1.775 1.752h.043a7.113 7.113 0 0 0 6.394-4.412l6.207-14.64a1.806 1.806 0 0 0-.931-2.36a1.78 1.78 0 0 0-1.365-.018c-.438.178-.79.525-.971.96l-3.686 8.694l-3.681-8.695a1.766 1.766 0 0 0-1.656-1.086zM59.31 59.082c1.965 0 3.554 1.757 3.554 3.924v2.94c0 2.162-1.59 3.917-3.554 3.917c-1.962 0-3.557-1.755-3.557-3.918v-2.94c0-2.166 1.595-3.923 3.557-3.923m24.88 0c1.962 0 3.557 1.757 3.557 3.924v2.94c0 2.162-1.595 3.917-3.557 3.917c-1.965 0-3.554-1.755-3.554-3.918v-2.94c0-2.166 1.59-3.923 3.554-3.923\\\"/><path fill=\\\"#7fcfbd\\\" d=\\\"M18.238 50.474a.492.492 0 0 0-.346.192c-.098-.008-.193-.016-.292-.016c-.059 0-.114.004-.165.012c-.312-.123-.64-.127-.782.272c-.055.154-.087.32-.09.485a.65.65 0 0 0-.154.158c-.296.43-.257 1.188-.139 1.67c.206.816 1.074 1.46 1.832 1.219a.45.45 0 0 0 .173-.071c.403.075.845-.06 1.196-.486c.52-.639.572-1.5.268-2.213a.39.39 0 0 0-.15-.296a2.192 2.192 0 0 0-.655-.691c-.23-.153-.479-.257-.696-.235m15.507 0a.5.5 0 0 0-.348.192a3.52 3.52 0 0 0-.292-.016c-.059 0-.114.004-.165.012c-.308-.123-.64-.127-.782.272c-.055.154-.083.32-.09.485a.572.572 0 0 0-.15.158c-.3.43-.257 1.188-.139 1.67c.202.816 1.07 1.46 1.827 1.219a.45.45 0 0 0 .174-.071c.407.075.845-.06 1.196-.486c.52-.639.576-1.5.272-2.213a.394.394 0 0 0-.154-.296a2.234 2.234 0 0 0-.655-.691c-.23-.153-.477-.257-.694-.235m-23.913.296c-.468-.016-.924.164-1.205.606a.724.724 0 0 0-.071.118a1.906 1.906 0 0 0-.624 1.105a.237.237 0 0 0-.17.233c-.015.497.241.888.608 1.148c.387.348.955.486 1.511.502c.825.023 1.393-.43 1.646-1.026l.012-.012c.438-.576.49-1.378-.142-1.827c-.032-.024-.071-.048-.107-.071a2.003 2.003 0 0 0-.422-.415a1.91 1.91 0 0 0-1.036-.36zm15.967.002c-.468-.017-.924.162-1.206.604l-.07.118a1.906 1.906 0 0 0-.624 1.105a.242.242 0 0 0-.17.233c-.016.497.24.888.612 1.152c.382.344.95.482 1.507.498c.825.023 1.393-.43 1.646-1.026l.012-.012c.438-.576.489-1.377-.139-1.827l-.106-.071a2 2 0 0 0-.426-.41c-.3-.218-.672-.35-1.036-.364m-15.389.916c.186.047.363.118.517.205c.055.079.107.162.146.252a1.072 1.072 0 0 0-.418-.236c-.032-.067-.09-.127-.162-.139l-.02-.007c-.02-.024-.04-.052-.063-.075m15.967 0c.185.047.363.118.517.205c.059.079.106.162.146.252a1.06 1.06 0 0 0-.415-.236c-.031-.067-.09-.127-.161-.139l-.024-.007c-.02-.024-.04-.052-.063-.075m-8.374.22a.45.45 0 0 1 .067.036a.352.352 0 0 1 .04.024c.031.173.02.406-.119.481a3.533 3.533 0 0 1 .012-.54zm15.505 0c.023.009.047.02.07.036l.036.024c.032.173.024.406-.118.481a4.129 4.129 0 0 1 .012-.54zM10 52.32c.016.012.027.02.043.028c.044.02.091.035.138.043a.973.973 0 0 1 .004.107c-.075-.103-.217-.11-.323-.052l-.016-.075zm15.97 0c.012.012.024.02.04.028a.54.54 0 0 0 .138.043c.004.036.008.071.004.107c-.075-.103-.217-.11-.324-.052l-.015-.075zm-16.617.166c.008.031.012.063.02.094c.011.048.027.095.043.143c-.048-.052-.071-.13-.063-.237m15.97 0a1.3 1.3 0 0 0 .06.237c-.048-.052-.072-.13-.06-.237m-5.852.035c.008.34-.075.675-.26.963h.003a1.068 1.068 0 0 1-.402.379c.098-.15.19-.328.272-.525c.02-.04.04-.079.055-.118a.222.222 0 0 0 .071-.221s.004-.004.004-.008c.123-.09.206-.257.237-.438zm15.505 0c.012.34-.075.675-.257.963a1.032 1.032 0 0 1-.398.379c.094-.15.19-.328.268-.525c.02-.04.04-.079.055-.118a.214.214 0 0 0 .071-.221c.004 0 .004-.004.004-.008c.123-.09.205-.257.237-.438zm-18.323.071c.08.284.19.56.308.805c.067.178.154.371.264.51a1.67 1.67 0 0 1-.157-.123c-.26-.24-.371-.604-.403-.943a2.618 2.618 0 0 1-.012-.249m15.51 0c.074.284.189.56.303.805c.067.178.154.371.264.51a1.67 1.67 0 0 1-.157-.123c-.257-.24-.371-.604-.403-.943a1.727 1.727 0 0 1-.008-.249zm-21.465.273a.471.471 0 0 1 .012.244l-.067-.126a.731.731 0 0 0 .055-.118m15.967 0a.435.435 0 0 1 .012.244l-.067-.126a.828.828 0 0 0 .055-.118m-16.72.753c.02.024.04.048.063.071a.999.999 0 0 1-.419.028l.024-.032c.11-.003.225-.027.332-.067m15.966 0c.02.024.04.048.063.071a.994.994 0 0 1-.418.028l.024-.032c.11-.003.225-.027.331-.067m-16.079 4.42c-.468-.017-.924.162-1.205.604a.76.76 0 0 0-.071.122a1.896 1.896 0 0 0-.624 1.101a.237.237 0 0 0-.17.233c-.015.501.241.892.608 1.152c.387.344.955.486 1.511.498c.825.023 1.393-.43 1.646-1.026l.012-.012c.438-.576.49-1.377-.142-1.827a.973.973 0 0 0-.107-.067a1.83 1.83 0 0 0-.422-.415a1.92 1.92 0 0 0-1.036-.363m15.967 0c-.468-.017-.924.162-1.206.604c-.024.04-.047.079-.07.122a1.896 1.896 0 0 0-.624 1.101a.242.242 0 0 0-.17.233c-.016.501.24.892.612 1.152c.382.344.95.486 1.507.498c.825.023 1.393-.43 1.646-1.026l.012-.012c.438-.576.489-1.377-.139-1.827a1.585 1.585 0 0 0-.106-.067a1.928 1.928 0 0 0-.426-.415a1.92 1.92 0 0 0-1.036-.363m-15.389.916c.186.051.363.118.517.205c.055.079.107.162.146.252a1.106 1.106 0 0 0-.418-.236c-.032-.067-.09-.127-.162-.138l-.02-.004c-.02-.028-.04-.056-.063-.08zm15.967 0c.185.051.363.118.517.205c.059.079.106.162.146.252a1.06 1.06 0 0 0-.415-.236c-.031-.067-.09-.127-.161-.138l-.024-.004c-.02-.028-.04-.056-.063-.08zM10 59.588l.043.024a.625.625 0 0 0 .138.047a.868.868 0 0 1 .004.103c-.075-.103-.217-.11-.323-.052l-.016-.075zm15.97 0a.571.571 0 0 0 .178.071a.438.438 0 0 1 .004.103c-.075-.103-.217-.11-.324-.052l-.015-.075zm-16.617.162a.953.953 0 0 0 .063.237c-.048-.052-.071-.13-.063-.237m15.97 0a.803.803 0 0 0 .06.237c-.048-.052-.072-.13-.06-.237m-14.625.379a.473.473 0 0 1 .012.244c-.024-.043-.043-.082-.067-.126a.731.731 0 0 0 .055-.118m15.967 0a.435.435 0 0 1 .012.244c-.024-.043-.044-.082-.067-.126a.828.828 0 0 0 .055-.118m-16.72.753c.02.024.04.048.063.071a.999.999 0 0 1-.419.028l.024-.028v-.003c.11-.004.225-.028.332-.068m15.966 0c.02.024.04.048.063.071a.994.994 0 0 1-.418.028l.024-.028v-.003c.11-.004.225-.028.331-.068\\\"/><path fill=\\\"#fff\\\" d=\\\"M10.229 65.736c-1.074 0-1.938.884-1.938 1.973v7.893c0 1.09.864 1.97 1.938 1.97c1.07 0 1.937-.88 1.937-1.97v-7.893c0-1.089-.868-1.973-1.937-1.973m15.509 0c-1.07 0-1.938.884-1.938 1.973v7.893c0 1.09.868 1.97 1.938 1.97c1.073 0 1.941-.88 1.941-1.97v-7.893c0-1.089-.868-1.973-1.941-1.973m-7.755-7.888c-1.07 0-1.937.884-1.937 1.973v15.781c0 1.09.868 1.97 1.937 1.97c1.07 0 1.938-.88 1.938-1.97V59.821c0-1.09-.868-1.973-1.938-1.973m15.513 0c-1.073 0-1.942.884-1.942 1.973v15.781c0 1.09.869 1.97 1.942 1.97c1.07 0 1.938-.88 1.938-1.97V59.821c0-1.09-.869-1.973-1.938-1.973\\\"/>\"\n\t\t},\n\t\t\"pnpm\": {\n\t\t\t\"body\": \"<path fill=\\\"#f8ab00\\\" d=\\\"M0 .004V40h39.996V.004Zm43.996 0V40h40V.004Zm44.008 0V40H128V.004Zm0 43.996v39.996H128V44Z\\\"/><path fill=\\\"#4c4c4c\\\" d=\\\"M43.996 44v39.996h40V44ZM0 87.996v40h39.996v-40Zm43.996 0v40h40v-40Zm44.008 0v40H128v-40Z\\\"/>\"\n\t\t},\n\t\t\"pnpm-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f9ad00\\\" d=\\\"M32.287 14.902v30.685h29.908V14.902Zm32.899 0v30.685h29.909V14.902Zm32.905 0v30.685H128V14.902Zm0 33.754v30.688H128V48.656z\\\"/><path fill=\\\"#4e4e4e\\\" d=\\\"M65.186 48.656v30.688h29.909V48.656zm-60.023 9.37c-.88 0-1.676.093-2.386.278c-.71.186-1.304.432-1.782.74a2.994 2.994 0 0 0-.74.72c-.17.262-.255.6-.255 1.017v11.114c0 .386.045.693.138.925c.092.247.232.44.417.58c.185.138.41.23.672.277c.278.046.585.07.925.07c.355 0 .703-.03 1.042-.093a5.19 5.19 0 0 0 .742-.14v-3.841a5.54 5.54 0 0 0 1.852.3c.88 0 1.674-.123 2.384-.37a4.884 4.884 0 0 0 1.852-1.112c.51-.51.904-1.134 1.182-1.874c.278-.741.415-1.606.415-2.594c0-1.035-.16-1.921-.485-2.662a5.083 5.083 0 0 0-1.344-1.877c-.571-.493-1.257-.856-2.06-1.087a8.531 8.531 0 0 0-2.569-.37Zm14.006 0c-.972 0-1.861.117-2.664.348c-.787.232-1.442.532-1.967.903a2.988 2.988 0 0 0-.74.717c-.17.262-.255.603-.255 1.02v6.945c0 .386.045.702.138.95c.108.23.255.415.44.554c.185.14.41.232.672.278c.278.046.587.07.927.07a7.18 7.18 0 0 0 1.017-.07c.34-.046.588-.092.742-.138v-8.035c.217-.154.47-.27.763-.347a3.83 3.83 0 0 1 .927-.115c.463 0 .825.116 1.087.347c.278.216.418.564.418 1.042v5.464c0 .386.047.702.14.95c.107.23.254.415.44.554c.184.14.407.232.67.278c.277.046.587.07.926.07a7.18 7.18 0 0 0 1.018-.07c.34-.046.587-.092.742-.138v-7.247c0-1.359-.47-2.415-1.412-3.172c-.942-.771-2.285-1.157-4.029-1.157zm13.036 0c-.88 0-1.677.093-2.387.278c-.71.186-1.303.432-1.782.74a2.995 2.995 0 0 0-.74.72c-.17.262-.255.6-.255 1.017v11.114c0 .386.045.693.138.925c.093.247.232.44.417.58c.185.138.41.23.672.277c.278.046.586.07.925.07c.355 0 .703-.03 1.042-.093a5.19 5.19 0 0 0 .742-.14v-3.841a5.54 5.54 0 0 0 1.852.3c.88 0 1.675-.123 2.385-.37a4.884 4.884 0 0 0 1.852-1.112a5.197 5.197 0 0 0 1.18-1.874c.277-.741.417-1.606.417-2.594c0-1.035-.161-1.921-.485-2.662c-.325-.757-.774-1.383-1.345-1.877c-.57-.493-1.257-.856-2.06-1.087a8.531 8.531 0 0 0-2.568-.37zm13.773 0c-.849 0-1.667.117-2.454.348c-.772.232-1.42.532-1.945.903a3.204 3.204 0 0 0-.74.694c-.17.248-.254.578-.254.995v6.993c0 .386.045.702.137.95c.108.23.255.415.44.554c.185.14.41.232.672.278c.278.046.588.07.927.07c.355 0 .694-.024 1.018-.07c.34-.046.587-.092.742-.138v-8.127c.139-.077.307-.156.507-.232c.2-.093.442-.138.72-.138c.401 0 .74.109 1.017.325c.293.2.44.531.44.995v5.533c0 .386.047.702.14.95c.108.23.254.415.44.554c.185.14.41.232.672.278c.278.046.585.07.925.07c.34 0 .67-.024.995-.07a6.53 6.53 0 0 0 .764-.138v-7.85a.765.765 0 0 0-.022-.185c.123-.108.308-.207.555-.3c.246-.108.478-.162.694-.162c.448 0 .803.109 1.065.325c.262.2.395.531.395.995v5.533c0 .386.045.702.137.95c.108.23.255.415.44.554c.185.14.41.232.672.278c.278.046.588.07.927.07c.355 0 .694-.024 1.018-.07c.34-.046.587-.092.742-.138V62.31c0-.787-.132-1.451-.395-1.991c-.262-.556-.617-.996-1.065-1.32a4.164 4.164 0 0 0-1.504-.742a6.364 6.364 0 0 0-1.714-.23c-.818 0-1.52.099-2.107.3a6.933 6.933 0 0 0-1.55.765a4.434 4.434 0 0 0-1.6-.788a6.261 6.261 0 0 0-1.851-.277zm-40.677 3.08c.74 0 1.304.238 1.69.717c.4.48.602 1.211.602 2.2c0 1.898-.795 2.848-2.385 2.848c-.246 0-.478-.03-.694-.092a3.515 3.515 0 0 1-.603-.232v-5.094c.17-.092.371-.17.603-.232c.231-.077.494-.115.787-.115m27.041 0c.741 0 1.304.238 1.69.717c.401.48.602 1.211.602 2.2c0 1.898-.794 2.848-2.384 2.848a2.51 2.51 0 0 1-.695-.092a3.516 3.516 0 0 1-.602-.232v-5.094c.17-.092.37-.17.602-.232c.232-.077.494-.115.787-.115m-.055 21.307v30.685h29.908V82.413Zm32.899 0v30.685h29.909V82.413Zm32.905 0v30.685H128V82.413Z\\\"/>\"\n\t\t},\n\t\t\"podman\": {\n\t\t\t\"body\": \"<path fill=\\\"#3c6eb4\\\" d=\\\"M93.188 59.803c.148.927.3 1.854.482 2.76h8.955v-2.76zm1.484 6.896c.185.634.381 1.265.598 1.893c.52.259 1.027.548 1.517.87h11.352v-2.763zm-18.431 1.282c-.426.155-.843.336-1.252.533v.004c.41-.198.825-.382 1.252-.537m-41.248 34.57v2.76H68.15v-2.76zm19.31 6.896v2.752H81.6v-2.752z\\\"/><path fill=\\\"#ccc\\\" d=\\\"M61.114 16.26c-4.91 0-9.721.567-12.586 1.707c-7.89 2.888-13.95 10.775-15.746 20.33c-2.365 11.186-2.224 19.941-4.572 28.178a13.589 13.589 0 0 1 3.529-1.94c1.834-.726 4.909-1.09 8.049-1.09c3.14 0 6.35.365 8.431 1.09c4.571 1.67 8.177 5.96 9.67 11.284h9.719c1.991-3.681 5.03-6.523 8.633-7.838c3.919-1.554 13.165-1.55 17.617 0c.483.176.952.39 1.414.619c-3.062-8.866-2.673-18.151-5.242-30.303c-1.795-9.555-7.857-17.442-15.746-20.33c-3.254-1.136-8.261-1.706-13.17-1.707\\\"/><path fill=\\\"#e7e8e9\\\" d=\\\"M45.275 49.787a3.344 3.523 0 0 0-3.34 3.523a3.344 3.523 0 0 0 3.34 3.523a3.344 3.523 0 0 0 3.341-3.523a3.344 3.523 0 0 0-3.34-3.523zm33.79 0a3.344 3.523 0 0 0-3.34 3.523a3.344 3.523 0 0 0 3.34 3.523a3.344 3.523 0 0 0 3.35-3.523a3.344 3.523 0 0 0-3.35-3.523\\\"/><path fill=\\\"#a7a9ac\\\" d=\\\"m50.905 50.705l-12.428 3.332l.356 1.332l12.43-3.332zm23.52 0l-.358 1.332l12.427 3.332l.358-1.332zm-22.276 2.008L39.65 59.932l.69 1.193l12.497-7.218zm21.039 0l-.69 1.194l12.498 7.218l.69-1.193zm-20.125 2.395l-8.607 8.619c.586.074 1.144.167 1.677.271l7.905-7.916zm19.21 0l-.974.974l10.809 10.826c.612-.04 1.237-.067 1.87-.08zm-18.792 3.138l-3.957 6.86c.411.203.814.426 1.205.672l3.947-6.844zm18.375 0l-1.195.688l5.287 9.168c.098-.039.193-.085.293-.121c.31-.123.665-.233 1.037-.336z\\\"/><path fill=\\\"#fff\\\" d=\\\"M73.261 50.84a10.736 10.217 0 0 1-10.736 10.218A10.736 10.217 0 0 1 51.788 50.84a10.736 10.217 0 0 1 10.737-10.217A10.736 10.217 0 0 1 73.26 50.84Z\\\"/><path fill=\\\"gray\\\" d=\\\"M67.107 48.998c-.36-.933-.36-2.799-1.44-2.799s-2.08-.7-3.142-.7c-1.063 0-2.06.7-3.142.7c-1.08 0-1.08 1.866-1.44 2.8c-.36.932 4.582 3.964 4.582 3.964s4.942-3.032 4.582-3.965\\\"/><path fill=\\\"#3c6eb4\\\" d=\\\"M57.399 74.29c.33.886.59 1.81.793 2.761h8.799c.443-.973.958-1.897 1.535-2.762zm44.177.001a19.673 19.673 0 0 1 1.532 2.76h11.072v-2.76z\\\"/><path fill=\\\"#ccc\\\" d=\\\"M39.789 63.445c-3.14 0-6.216.364-8.05 1.09c-5.046 1.844-8.917 6.878-10.065 12.975c-.6 2.826-.945 5.391-1.238 7.807h39.086c-.293-2.416-.63-4.98-1.23-7.807c-1.147-6.097-5.027-11.13-10.074-12.974c-2.082-.725-5.29-1.09-8.43-1.09Z\\\"/><path fill=\\\"#e7e8e9\\\" d=\\\"M29.663 84.84a2.14 2.248 0 0 0-1.255.477h2.56a2.14 2.248 0 0 0-1.305-.476zm21.62 0a2.14 2.248 0 0 0-1.256.477h2.562a2.14 2.248 0 0 0-1.307-.476z\\\"/><path fill=\\\"#a7a9ac\\\" d=\\\"m33.202 85.187l-.484.13h.52zm15.172 0l-.035.13h.52z\\\"/><path fill=\\\"#fff\\\" d=\\\"M40.698 79a6.868 6.52 0 0 0-6.846 6.317h13.682A6.868 6.52 0 0 0 40.698 79\\\"/><path fill=\\\"gray\\\" d=\\\"M40.698 82.106c-.68 0-1.317.45-2.008.45c-.691 0-.696 1.188-.926 1.783c-.08.208.268.583.735.978h4.396c.468-.395.808-.77.727-.978c-.23-.595-.226-1.783-.917-1.783c-.69 0-1.327-.45-2.007-.45\\\"/><path fill=\\\"#892ca0\\\" d=\\\"m91.736 1.467l-55.738.164a1.38 1.38 0 0 0-1.073.52L.295 45.883a1.38 1.38 0 0 0-.26 1.16l12.56 54.363a1.38 1.38 0 0 0 .753.935l50.285 24.061a1.38 1.38 0 0 0 1.195-.01l50.148-24.355a1.38 1.38 0 0 0 .744-.943l12.247-54.432a1.38 1.38 0 0 0-.268-1.16L92.82 1.977a1.38 1.38 0 0 0-1.083-.51Zm-.657 2.76l34.05 42.48l-11.954 53.142l-48.945 23.776l-49.091-23.482L2.875 47.07L36.673 4.383Z\\\"/><path fill=\\\"#ccc\\\" d=\\\"M106.644 95.737c-.606-4.124-.9-8.61-2.019-13.887c-1.228-6.518-5.373-11.9-10.768-13.87c-4.452-1.55-13.697-1.554-17.616 0c-5.395 1.97-9.54 7.352-10.768 13.87c-1.118 5.278-1.413 9.763-2.019 13.887\\\"/><path fill=\\\"#e7e8e9\\\" d=\\\"M74.02 89.688a2.287 2.404 0 0 0-2.286 2.406A2.287 2.404 0 0 0 74.02 94.5a2.287 2.404 0 0 0 2.285-2.406a2.287 2.404 0 0 0-2.285-2.406m23.11 0a2.287 2.404 0 0 0-2.286 2.406A2.287 2.404 0 0 0 97.13 94.5a2.287 2.404 0 0 0 2.285-2.406a2.287 2.404 0 0 0-2.285-2.406\\\"/><path fill=\\\"#a7a9ac\\\" d=\\\"m77.814 90.104l-8.5 2.277l.358 1.332l8.498-2.277zm16.196 0l-.358 1.332l8.5 2.277l.358-1.332zm-15.4 1.392l-8.544 4.926l.688 1.193l8.543-4.924zm14.605 0l-.69 1.195l8.543 4.924l.69-1.193z\\\"/><path fill=\\\"#fff\\\" d=\\\"M93.157 90.41a7.343 6.97 0 0 1-7.342 6.97a7.343 6.97 0 0 1-7.343-6.97a7.343 6.97 0 0 1 7.343-6.97a7.343 6.97 0 0 1 7.342 6.97\\\"/><path fill=\\\"gray\\\" d=\\\"M88.948 89.152c-.246-.636-.246-1.91-.985-1.91c-.738 0-1.42-.476-2.148-.476c-.727 0-1.41.477-2.149.477c-.738 0-.738 1.273-.985 1.91c-.246.636 3.134 2.704 3.134 2.704s3.38-2.068 3.133-2.705\\\"/><path fill=\\\"#60605b\\\" d=\\\"M62.526 39.592c-6.461 0-11.77 5.022-11.77 11.252s5.309 11.252 11.77 11.252c6.462 0 11.771-5.022 11.771-11.252s-5.311-11.252-11.771-11.252m0 2.069c5.398 0 9.703 4.128 9.703 9.183c0 5.056-4.305 9.182-9.703 9.182c-5.397 0-9.703-4.126-9.703-9.182c0-5.055 4.306-9.183 9.703-9.183m-21.828 36.3c-4.254 0-7.78 3.26-7.895 7.356h2.069c.112-2.92 2.637-5.288 5.826-5.288c3.19 0 5.712 2.368 5.824 5.288h2.068c-.113-4.095-3.64-7.356-7.892-7.356m45.119 4.447c-4.585 0-8.38 3.56-8.38 7.998c0 4.44 3.795 8.006 8.38 8.006c4.586 0 8.379-3.567 8.379-8.006c0-4.438-3.793-7.998-8.38-7.998zm0 2.069c3.525 0 6.31 2.667 6.31 5.93c0 3.26-2.785 5.937-6.31 5.937c-3.524 0-6.31-2.677-6.31-5.938c0-3.26 2.786-5.93 6.31-5.93z\\\"/><path fill=\\\"#3c6eb4\\\" d=\\\"M15.962 85.317v2.76h48.462c.12-.897.253-1.816.406-2.76zM40.516 95.66v2.752h71.664V95.66h-5.545l.01.076H63.453l.01-.076z\\\"/><path d=\\\"M61.116 15.227h-.002c-4.982 0-9.83.544-12.955 1.783c-8.283 3.043-14.528 11.225-16.385 21.076c-1.652 7.815-2.09 14.424-2.969 20.408c-.375 2.558-.838 4.995-1.496 7.377c-3.361 2.655-5.775 6.766-6.658 11.45c-.616 2.913-.957 5.54-1.254 7.996h2.078c.288-2.37.624-4.86 1.203-7.59l.008-.01v-.018c1.09-5.783 4.77-10.492 9.408-12.185l.018-.01l.008-.008c1.573-.624 4.607-1.014 7.668-1.014c3.057 0 6.211.381 8.084 1.031c4.634 1.696 8.311 6.406 9.4 12.186v.018l.008.01c.58 2.73.915 5.221 1.203 7.59h2.079c-.297-2.458-.637-5.09-1.254-8.006c-1.21-6.406-5.282-11.754-10.735-13.745h-.008l-.008-.01c-2.292-.796-5.55-1.14-8.77-1.142c-3.214 0-6.328.333-8.419 1.16c-.518.19-1.02.42-1.512.668a70.243 70.243 0 0 0 1-5.445c.895-6.102 1.315-12.633 2.934-20.287l.01-.01v-.016c1.736-9.24 7.606-16.806 15.086-19.544l.01-.008h.015c2.605-1.036 7.375-1.636 12.205-1.635c4.823 0 9.764.583 12.81 1.643c7.48 2.737 13.35 10.303 15.084 19.543l.01.02v.007c1.618 7.654 2.048 14.185 2.943 20.287c.403 2.748.926 5.41 1.68 8.035c-2.394-.724-5.604-1.05-8.795-1.05c-3.43 0-6.747.36-8.966 1.238c-5.794 2.12-10.125 7.8-11.416 14.619c-1.136 5.358-1.438 9.879-2.036 13.943l2.051.303c.615-4.183.898-8.626 2-13.823l.01-.01v-.007c1.168-6.205 5.123-11.276 10.11-13.096h.007l.018-.01c1.7-.674 4.946-1.09 8.223-1.09c3.275 0 6.648.407 8.664 1.108h.01c4.977 1.826 8.922 6.89 10.09 13.088v.017c1.101 5.196 1.392 9.64 2.007 13.822l2.053-.302c-.597-4.065-.9-8.586-2.035-13.944c-1.146-6.057-4.692-11.213-9.53-13.777c-1.004-3.013-1.62-6.093-2.101-9.367c-.877-5.98-1.312-12.584-2.961-20.39c-1.854-9.868-8.103-18.074-16.402-21.112h-.018c-3.464-1.21-8.52-1.764-13.51-1.765M45.546 27.69a6.912 6.912 0 0 0-5.506 2.684l-.633.814l1.646 1.264l.631-.823a4.92 4.92 0 0 1 3.592-1.869c1.3-.055 2.65.468 3.574 1.385l.736.736l1.463-1.472l-.736-.727a6.905 6.905 0 0 0-4.77-1.99zm33.372 0a6.905 6.905 0 0 0-4.77 1.992l-.736.727l1.455 1.472l.737-.736a4.895 4.895 0 0 1 3.574-1.385c1.375.06 2.76.777 3.6 1.87l.633.822l1.636-1.264l-.633-.814a6.895 6.895 0 0 0-5.496-2.684m-33.425 9.115a5.17 5.306 0 0 0-5.168 5.305a5.17 5.306 0 0 0 5.168 5.306a5.17 5.306 0 0 0 5.175-5.306a5.17 5.306 0 0 0-5.175-5.305m33.468 0a5.17 5.306 0 0 0-5.167 5.305a5.17 5.306 0 0 0 5.167 5.306a5.17 5.306 0 0 0 5.168-5.306a5.17 5.306 0 0 0-5.167-5.305zm-16.435 7.66c-.758 0-1.379.233-1.895.407c-.517.175-.93.294-1.248.294c-.567 0-1.124.311-1.427.676c-.302.364-.445.74-.555 1.098c-.22.713-.327 1.438-.424 1.69c-.222.574-.01 1.031.166 1.331c.175.3.389.536.63.78c.484.486 1.096.973 1.714 1.427c.633.464 1.268.886 1.74 1.194l-.025.416c-.233.19-.8.693-1.74 1.011c-.556.188-1.116.255-1.602.131c-.413-.106-.824-.47-1.246-1.021c.027-.218.037-.307.086-.666c.087-.628.213-1.387.27-1.612l-2.009-.502c-.12.48-.222 1.18-.312 1.829c-.09.648-.156 1.203-.156 1.203l-.043.37l.199.311c.729 1.146 1.701 1.841 2.701 2.096c1 .256 1.97.101 2.78-.172c1.05-.357 1.906-.93 2.378-1.29c.473.36 1.324.935 2.371 1.29c.81.274 1.77.428 2.77.172s1.973-.95 2.701-2.096l.2-.31l-.044-.371s-.066-.555-.156-1.203c-.09-.65-.194-1.349-.312-1.829l-2.008.502c.056.225.182.984.27 1.612c.048.354.06.44.085.658c-.424.556-.83.923-1.246 1.03c-.486.123-1.045.056-1.601-.132c-.94-.318-1.508-.821-1.74-1.011l-.018-.389c.479-.31 1.128-.74 1.783-1.22c.618-.455 1.23-.943 1.715-1.43c.24-.243.456-.479.63-.778c.177-.3.387-.757.165-1.332c-.097-.25-.212-.976-.432-1.69c-.11-.356-.242-.734-.545-1.099c-.303-.364-.86-.674-1.428-.674c-.317 0-.73-.12-1.246-.294c-.517-.174-1.137-.407-1.896-.407m0 2.069c.305 0 .71.118 1.23.293c.478.162 1.079.34 1.764.373c.023.035.085.15.148.355c.111.36.224.91.38 1.445c-.05.068-.11.153-.241.285c-.342.344-.9.791-1.473 1.211c-.88.647-1.43.984-1.808 1.221c-.375-.236-.936-.57-1.819-1.22c-.573-.42-1.12-.868-1.462-1.212c-.132-.132-.19-.217-.24-.285c.154-.535.268-1.084.378-1.445a1.55 1.55 0 0 1 .149-.355c.684-.032 1.277-.211 1.756-.373c.518-.175.934-.293 1.238-.293M29.584 70.369c-1.4.06-2.71.744-3.566 1.854l-.63.822l1.634 1.264l.633-.824a2.803 2.803 0 0 1 2.025-1.047a2.777 2.777 0 0 1 2.008.779l.736.727l1.453-1.471l-.736-.727a4.786 4.786 0 0 0-3.557-1.377m21.838 0a4.767 4.767 0 0 0-3.55 1.377l-.735.727l1.453 1.47l.737-.726a2.777 2.777 0 0 1 2.007-.78a2.8 2.8 0 0 1 2.026 1.048l.623.824l1.644-1.264l-.632-.822a4.79 4.79 0 0 0-3.573-1.854m45.604 3.912h-.002a5.046 5.046 0 0 0-3.487 1.456l-.736.726l1.455 1.47l.734-.726a3.029 3.029 0 0 1 2.2-.847c.84.035 1.701.477 2.214 1.142l.633.822l1.637-1.263l-.633-.822a5.022 5.022 0 0 0-3.758-1.95c-.085-.003-.17-.008-.257-.008m-22.824 0c-.087 0-.173.004-.26.009a5.04 5.04 0 0 0-3.766 1.949l-.63.822l1.644 1.264l.63-.823a3.035 3.035 0 0 1 2.208-1.142a3.048 3.048 0 0 1 2.207.847l.736.727l1.455-1.47l-.736-.727a5.045 5.045 0 0 0-3.488-1.455zM29.8 76.559a3.307 3.386 0 0 0-3.306 3.384a3.307 3.386 0 0 0 3.306 3.393a3.307 3.386 0 0 0 3.306-3.393a3.307 3.386 0 0 0-3.306-3.384m21.412 0a3.307 3.386 0 0 0-3.315 3.384a3.307 3.386 0 0 0 3.315 3.393a3.307 3.386 0 0 0 3.306-3.393a3.307 3.386 0 0 0-3.306-3.384m22.953 4.276a3.536 3.62 0 0 0-3.53 3.617a3.536 3.62 0 0 0 3.53 3.618a3.536 3.62 0 0 0 3.54-3.618a3.536 3.62 0 0 0-3.54-3.617m22.893 0a3.536 3.62 0 0 0-3.54 3.617a3.536 3.62 0 0 0 3.54 3.618a3.536 3.62 0 0 0 3.532-3.618a3.536 3.62 0 0 0-3.532-3.617m-56.361.242c-.566 0-1.004.167-1.334.278c-.33.11-.551.164-.674.164c-.47 0-.957.276-1.203.572c-.246.295-.347.58-.424.83c-.156.503-.229.965-.26 1.047c-.206.533-.01.94.13 1.178c.038.066.08.115.12.172h3.16a11.125 11.125 0 0 1-.459-.32c-.358-.264-.707-.541-.9-.735v-.01c.063-.26.137-.572.182-.719c.005-.016.004-.002.01-.015c.366-.054.733-.127.976-.21c.332-.111.562-.163.676-.163c.113 0 .334.052.666.164c.243.082.613.155.978.209c.005.013.003 0 .008.015c.046.147.128.457.19.72l-.008.009c-.193.194-.54.471-.899.734a15.49 15.49 0 0 1-.45.32h3.16c.04-.055.082-.106.119-.171c.14-.238.337-.645.13-1.178c-.03-.081-.113-.544-.27-1.047a2.198 2.198 0 0 0-.423-.83c-.246-.296-.723-.572-1.193-.572c-.123 0-.346-.053-.676-.164c-.33-.111-.766-.278-1.332-.278m45.119 4.657c-.59 0-1.05.176-1.403.295s-.597.18-.744.18c-.482 0-.976.275-1.23.58c-.252.303-.359.602-.44.866c-.164.528-.246 1.023-.285 1.125c-.209.54-.006.95.137 1.194c.144.246.31.42.486.598c.353.353.781.688 1.211 1.003c.355.26.701.496.996.694c-.195.155-.454.367-.928.527c-.34.115-.656.142-.908.078c-.184-.047-.391-.261-.597-.492c.016-.127.02-.135.043-.295c.06-.425.145-.952.173-1.064l-2.007-.502c-.092.368-.155.834-.217 1.279c-.062.447-.104.832-.104.832l-.043.363l.2.313c.533.838 1.277 1.379 2.04 1.574c.765.195 1.486.071 2.079-.129a6.1 6.1 0 0 0 1.523-.789c.358.252.887.573 1.524.79c.593.2 1.312.323 2.076.128c.765-.195 1.509-.736 2.043-1.574l.2-.313l-.044-.363s-.051-.384-.113-.83c-.061-.446-.123-.913-.215-1.281l-2.008.502c.028.112.123.64.182 1.064c.02.16.017.168.033.295c-.205.23-.405.445-.588.492c-.252.064-.57.037-.91-.078c-.46-.156-.713-.364-.908-.52c.3-.198.65-.436 1.013-.7c.43-.316.858-.65 1.211-1.004a2.89 2.89 0 0 0 .485-.598c.144-.245.338-.655.13-1.194c-.04-.102-.123-.597-.287-1.125c-.08-.264-.18-.563-.431-.867c-.254-.304-.747-.58-1.229-.58c-.146 0-.39-.06-.744-.18c-.353-.12-.812-.294-1.402-.294m0 2.068c.137 0 .381.062.736.182a6.22 6.22 0 0 0 1.082.224c.013.028 0 .01.015.06c.054.175.141.511.217.815l-.035.035a9.253 9.253 0 0 1-.969.795c-.505.37-.744.51-1.046.701c-.3-.19-.54-.329-1.047-.7a9.251 9.251 0 0 1-.971-.796c-.022-.023-.014-.024-.033-.045c.074-.298.154-.632.207-.804c.016-.053.012-.033.025-.06a6.043 6.043 0 0 0 1.074-.225c.355-.12.607-.182.744-.182z\\\"/><path fill=\\\"#892ca0\\\" d=\\\"M45.491 35.775a6.084 6.084 0 0 0-4.382 1.866a6.361 6.361 0 0 0-1.535 2.595a6.388 6.388 0 0 0-.27 2.198a6.397 6.397 0 0 0 2.721 4.923a6.211 6.211 0 0 0 1.335.701a6.056 6.056 0 0 0 4.55-.11a6.095 6.095 0 0 0 1.531-.954a6.295 6.295 0 0 0 1.36-1.607a6.396 6.396 0 0 0 .826-4.236a6.431 6.431 0 0 0-.827-2.317a6.396 6.396 0 0 0-1.837-1.973a6.211 6.211 0 0 0-1.336-.7a6.047 6.047 0 0 0-2.134-.386zm33.47 0a6.107 6.107 0 0 0-2.132.389a6.075 6.075 0 0 0-1.577.878a6.277 6.277 0 0 0-1.43 1.538a6.396 6.396 0 0 0-.932 4.8a6.401 6.401 0 0 0 1.688 3.2a6.33 6.33 0 0 0 1.428 1.096a6.141 6.141 0 0 0 1.705.64a6.01 6.01 0 0 0 1.885.097a6.06 6.06 0 0 0 3.31-1.422a6.32 6.32 0 0 0 1.506-1.872a6.383 6.383 0 0 0 .715-3.652a6.431 6.431 0 0 0-.864-2.63a6.39 6.39 0 0 0-2.086-2.138a6.18 6.18 0 0 0-1.665-.722a6.021 6.021 0 0 0-1.55-.202zm-33.47 2.06h.002a4.315 4.315 0 0 1 .63.048a4.006 4.006 0 0 1 1.343.462a4.108 4.108 0 0 1 .956.732a4.226 4.226 0 0 1 .89 1.358a4.325 4.325 0 0 1 .321 1.453a4.547 4.547 0 0 1-.182 1.504a4.325 4.325 0 0 1-.761 1.45a4.226 4.226 0 0 1-1.224 1.035a4.069 4.069 0 0 1-2.603.46a4.056 4.056 0 0 1-2.562-1.497a4.252 4.252 0 0 1-.76-1.45a4.375 4.375 0 0 1-.186-1.28a4.54 4.54 0 0 1 .187-1.28a4.33 4.33 0 0 1 .76-1.449a4.218 4.218 0 0 1 1.22-1.034a4.062 4.062 0 0 1 1.757-.506c.07-.004.141-.005.212-.005zm33.47 0a4.088 4.088 0 0 1 1.23.191a4.036 4.036 0 0 1 1.4.779a4.19 4.19 0 0 1 1.008 1.258a4.3 4.3 0 0 1 .479 1.607a4.472 4.472 0 0 1-.48 2.489a4.28 4.28 0 0 1-1.007 1.258a4.146 4.146 0 0 1-1.02.636a4.033 4.033 0 0 1-3.218 0a4.068 4.068 0 0 1-1.315-.911a4.226 4.226 0 0 1-.888-1.358a4.326 4.326 0 0 1-.32-1.452a4.54 4.54 0 0 1 .079-1.09a4.372 4.372 0 0 1 .623-1.532a4.25 4.25 0 0 1 1.118-1.15a4.105 4.105 0 0 1 1.279-.591a4.035 4.035 0 0 1 1.032-.134M29.688 75.527a1.39 1.39 0 0 0-.112.001c-2.295.12-4.111 2.074-4.111 4.414c0 2.416 1.937 4.423 4.336 4.423s4.344-2.007 4.344-4.423s-1.945-4.414-4.344-4.414zm21.413 0a1.415 1.415 0 0 0-.113.001c-2.295.12-4.12 2.074-4.12 4.414c0 2.416 1.946 4.423 4.345 4.423c2.4 0 4.336-2.007 4.336-4.423s-1.937-4.414-4.336-4.414zm-21.3 2.07c1.254 0 2.275 1.021 2.275 2.345c0 1.324-1.021 2.354-2.275 2.354s-2.269-1.03-2.269-2.354s1.015-2.345 2.269-2.345m21.412 0c1.254 0 2.268 1.021 2.268 2.345c0 1.324-1.014 2.354-2.268 2.354c-1.254 0-2.276-1.03-2.276-2.354s1.022-2.345 2.276-2.345m22.953 2.198c-2.525 0-4.57 2.111-4.57 4.656c0 2.546 2.045 4.657 4.57 4.657c2.526 0 4.57-2.11 4.57-4.657c0-2.545-2.044-4.656-4.57-4.656m22.893 0c-2.525 0-4.57 2.111-4.57 4.656c0 2.546 2.045 4.657 4.57 4.657c2.526 0 4.57-2.11 4.57-4.657c0-2.545-2.044-4.656-4.57-4.656m-22.957 2.068l.065.001c1.38 0 2.5 1.134 2.5 2.587c0 1.454-1.12 2.588-2.5 2.588s-2.502-1.134-2.502-2.588c0-1.408 1.05-2.52 2.372-2.587a.761.761 0 0 1 .065 0zm22.892 0l.066.001c1.38 0 2.5 1.134 2.5 2.587c0 1.454-1.12 2.588-2.5 2.588s-2.502-1.134-2.502-2.588c0-1.408 1.05-2.52 2.372-2.587a.757.757 0 0 1 .064 0z\\\"/><path fill=\\\"#fff\\\" d=\\\"M43.77 37.973a2.543 2.644 0 0 0-2.545 2.64a2.543 2.644 0 0 0 2.545 2.65a2.543 2.644 0 0 0 2.545-2.65a2.543 2.644 0 0 0-2.545-2.64m33.453 0a2.543 2.644 0 0 0-2.545 2.64a2.543 2.644 0 0 0 2.545 2.65a2.543 2.644 0 0 0 2.543-2.65a2.543 2.644 0 0 0-2.543-2.64M28.7 77.303a1.626 1.687 0 0 0-1.625 1.687a1.626 1.687 0 0 0 1.627 1.688a1.626 1.687 0 0 0 1.627-1.688a1.626 1.687 0 0 0-1.627-1.687zm21.62.242a1.626 1.687 0 0 0-1.626 1.688a1.626 1.687 0 0 0 1.627 1.687a1.626 1.687 0 0 0 1.629-1.687a1.626 1.687 0 0 0-1.63-1.688m22.67 4.086a1.739 1.804 0 0 0-1.74 1.799a1.739 1.804 0 0 0 1.74 1.808a1.739 1.804 0 0 0 1.74-1.808a1.739 1.804 0 0 0-1.74-1.799m23.247.232a1.739 1.804 0 0 0-1.74 1.81a1.739 1.804 0 0 0 1.74 1.8a1.739 1.804 0 0 0 1.74-1.8a1.739 1.804 0 0 0-1.74-1.81\\\"/>\"\n\t\t},\n\t\t\"podman-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#892ca0\\\" d=\\\"m20.701 49.889l-12.578.037a.311.311 0 0 0-.242.117l-7.815 9.87a.311.311 0 0 0-.058.26l2.834 12.268a.311.311 0 0 0 .17.211l11.347 5.43a.311.311 0 0 0 .27-.002l11.316-5.496a.311.311 0 0 0 .168-.213l2.764-12.283a.311.311 0 0 0-.06-.262l-7.872-9.822a.311.311 0 0 0-.244-.115m-.148.623l7.683 9.586L25.54 72.09l-11.045 5.365l-11.078-5.299L.648 60.18l7.627-9.633zm53.785 3.054v6.676c-.862-1.37-2.277-2.144-4.178-2.144c-3.316 0-5.592 2.41-5.592 5.947c0 3.58 2.255 6.035 5.637 6.035c1.88 0 3.293-.752 4.133-2.123v2.012h2.543V53.566zm-30.74 4.555c-1.835 0-3.25.75-4.112 2.121v-2.031h-2.543V74.26h2.543v-6.323c.862 1.37 2.276 2.12 4.155 2.12c3.36 0 5.57-2.407 5.57-5.922c0-3.581-2.275-6.014-5.613-6.014m13.3 0c-3.647 0-6.146 2.408-6.146 5.967c0 3.537 2.5 5.969 6.146 5.969c3.626 0 6.123-2.431 6.123-5.97c0-3.557-2.497-5.966-6.123-5.966m-13.832 2.121c2.1 0 3.582 1.615 3.582 3.803c0 2.255-1.482 3.846-3.582 3.846c-2.1 0-3.58-1.57-3.58-3.846c0-2.21 1.48-3.803 3.58-3.803m27.668.022c2.123 0 3.604 1.592 3.604 3.869c0 2.232-1.48 3.824-3.604 3.824c-2.144 0-3.603-1.592-3.625-3.824c.023-2.255 1.503-3.87 3.625-3.87zm-13.836.045c2.1 0 3.58 1.548 3.58 3.802c0 2.277-1.48 3.825-3.58 3.825c-2.122 0-3.603-1.548-3.603-3.825c0-2.254 1.481-3.802 3.603-3.802\\\"/><path fill=\\\"#60605b\\\" d=\\\"M87.527 58.121c-1.945 0-3.447.707-4.265 2.365V58.21H80.74v11.76h2.522v-5.815c0-2.055 1.238-3.601 3.271-3.668c1.724 0 2.762 1.083 2.762 2.873v6.61h2.543v-5.815c0-2.055 1.215-3.601 3.226-3.668c1.725 0 2.786 1.083 2.786 2.873v6.61h2.543v-7.317c0-2.807-1.614-4.53-4.311-4.53c-2.144 0-3.713.86-4.465 2.827c-.552-1.79-1.99-2.828-4.09-2.828zm21.043 0c-2.232 0-3.426.508-5.062 1.48l1.039 1.768c1.171-.796 2.343-1.193 3.47-1.193c1.857 0 2.81.884 2.81 2.365v.354h-3.561c-2.83.022-4.444 1.392-4.444 3.537c0 2.078 1.593 3.648 4.135 3.648c1.702 0 3.05-.51 3.89-1.549v1.438h2.499l-.024-7.715c-.022-2.586-1.723-4.133-4.752-4.133m15.053 0c-1.99 0-3.492.706-4.332 2.342v-2.254h-2.543v11.76h2.543v-6.256c.177-1.835 1.393-3.183 3.338-3.205c1.768 0 2.828 1.083 2.828 2.851v6.61H128v-7.317c0-2.807-1.636-4.53-4.377-4.53zm-15.98 6.631h3.183v1.084c-.132 1.282-1.525 2.232-3.338 2.232c-1.414 0-2.277-.687-2.277-1.748c0-1.127.774-1.568 2.432-1.568\\\"/><path fill=\\\"#a7a9ac\\\" d=\\\"m-322.522 20.426l-.703.188h.753zm22.006 0l-.05.188h.753z\\\"/><path fill=\\\"#3c6eb4\\\" d=\\\"M21.029 63.053c.033.21.068.418.109.623h2.02v-.623zm.335 1.556c.041.143.086.286.135.427c.117.059.231.124.342.197h2.562v-.624zm-13.468 8.09v.624h7.483V72.7zm4.358 1.557v.621h6.16v-.621z\\\"/><path fill=\\\"#ccc\\\" d=\\\"M13.79 53.227c-1.107 0-2.193.128-2.84.385c-1.78.652-3.147 2.432-3.553 4.588c-.533 2.524-.502 4.5-1.031 6.359a3.067 3.067 0 0 1 .796-.438c.414-.164 1.108-.246 1.816-.246c.709 0 1.433.082 1.903.246c1.031.377 1.845 1.345 2.182 2.546h2.193c.45-.83 1.135-1.472 1.949-1.768c.884-.351 2.97-.35 3.975 0c.109.04.215.088.32.14c-.692-2.001-.604-4.097-1.184-6.839c-.405-2.156-1.773-3.936-3.553-4.588c-.734-.256-1.864-.385-2.972-.385z\\\"/><path fill=\\\"#e7e8e9\\\" d=\\\"M10.217 60.793a.755.795 0 0 0-.754.795a.755.795 0 0 0 .754.795a.755.795 0 0 0 .754-.795a.755.795 0 0 0-.754-.795m7.625 0a.755.795 0 0 0-.754.795a.755.795 0 0 0 .754.795a.755.795 0 0 0 .756-.795a.755.795 0 0 0-.756-.795\\\"/><path fill=\\\"#a7a9ac\\\" d=\\\"m11.487 61l-2.804.752l.08.3l2.805-.751zm5.308 0l-.081.3l2.804.753l.081-.301zm-5.027.453l-2.82 1.63l.155.268l2.82-1.628zm4.748 0l-.156.27l2.82 1.628l.156-.269zm-4.542.54l-1.942 1.946c.132.016.258.037.378.06l1.784-1.786zm4.335 0l-.22.22l2.44 2.443a9.49 9.49 0 0 1 .421-.018zm-4.24.709l-.894 1.548c.093.046.184.096.272.151l.891-1.544zm4.146 0l-.27.155l1.193 2.069c.022-.009.044-.02.067-.027c.07-.028.15-.053.234-.076z\\\"/><path fill=\\\"#fff\\\" d=\\\"M16.532 61.03a2.423 2.306 0 0 1-2.423 2.306a2.423 2.306 0 0 1-2.423-2.306a2.423 2.306 0 0 1 2.423-2.305a2.423 2.306 0 0 1 2.423 2.305\\\"/><path fill=\\\"gray\\\" d=\\\"M15.143 60.615c-.081-.21-.081-.632-.325-.632c-.243 0-.47-.158-.709-.158c-.24 0-.465.158-.709.158c-.243 0-.243.421-.325.632c-.08.21 1.034.895 1.034.895s1.116-.685 1.034-.895\\\"/><path fill=\\\"#3c6eb4\\\" d=\\\"M12.953 66.322c.074.2.133.409.178.623h1.986c.1-.22.216-.428.346-.623zm9.969 0a4.44 4.44 0 0 1 .345.623h2.499v-.622z\\\"/><path fill=\\\"#ccc\\\" d=\\\"M8.979 63.875c-.709 0-1.403.082-1.817.246c-1.139.416-2.012 1.552-2.271 2.928a19.64 19.64 0 0 0-.28 1.762h8.82a19.609 19.609 0 0 0-.277-1.762c-.259-1.376-1.134-2.512-2.273-2.928c-.47-.163-1.194-.246-1.903-.246Z\\\"/><path fill=\\\"#e7e8e9\\\" d=\\\"M6.693 68.703a.483.507 0 0 0-.283.108h.578a.483.507 0 0 0-.295-.108m4.88 0a.483.507 0 0 0-.284.108h.578a.483.507 0 0 0-.295-.108z\\\"/><path fill=\\\"#a7a9ac\\\" d=\\\"m7.492 68.781l-.11.03H7.5zm3.424 0l-.008.03h.117z\\\"/><path fill=\\\"#fff\\\" d=\\\"M9.184 67.385a1.55 1.471 0 0 0-1.545 1.426h3.087a1.55 1.471 0 0 0-1.542-1.426\\\"/><path fill=\\\"gray\\\" d=\\\"M9.184 68.086c-.154 0-.297.102-.453.102c-.156 0-.157.268-.21.402c-.017.047.061.132.166.22h.992c.106-.088.183-.173.165-.22c-.052-.134-.051-.402-.207-.402s-.3-.102-.453-.102\\\"/><path fill=\\\"#ccc\\\" d=\\\"M24.065 71.162c-.136-.93-.203-1.943-.455-3.134c-.277-1.47-1.213-2.685-2.43-3.13c-1.005-.35-3.091-.35-3.975 0c-1.218.445-2.153 1.66-2.43 3.13c-.253 1.191-.32 2.203-.456 3.134\\\"/><path fill=\\\"#e7e8e9\\\" d=\\\"M16.703 69.797a.516.542 0 0 0-.516.543a.516.542 0 0 0 .516.543a.516.542 0 0 0 .516-.543a.516.542 0 0 0-.516-.543m5.215 0a.516.542 0 0 0-.515.543a.516.542 0 0 0 .515.543a.516.542 0 0 0 .516-.543a.516.542 0 0 0-.516-.543\\\"/><path fill=\\\"#a7a9ac\\\" d=\\\"m17.56 69.891l-1.919.514l.081.3l1.918-.513zm3.654 0l-.08.3l1.918.514l.08-.3zm-3.475.314l-1.928 1.112l.155.269l1.928-1.111zm3.296 0l-.156.27l1.928 1.11l.156-.268z\\\"/><path fill=\\\"#fff\\\" d=\\\"M21.022 69.96a1.657 1.573 0 0 1-1.657 1.573a1.657 1.573 0 0 1-1.657-1.573a1.657 1.573 0 0 1 1.657-1.573a1.657 1.573 0 0 1 1.657 1.573\\\"/><path fill=\\\"gray\\\" d=\\\"M20.072 69.676c-.055-.143-.055-.43-.222-.43s-.32-.108-.485-.108c-.164 0-.318.107-.485.107c-.166 0-.166.288-.222.431c-.056.144.707.61.707.61s.763-.466.707-.61\\\"/><path fill=\\\"#60605b\\\" d=\\\"M14.11 58.492c-1.459 0-2.657 1.133-2.657 2.54c0 1.405 1.198 2.539 2.657 2.539c1.458 0 2.656-1.134 2.656-2.54c0-1.406-1.199-2.539-2.656-2.539m0 .467c1.218 0 2.19.932 2.19 2.072c0 1.141-.972 2.072-2.19 2.072s-2.19-.93-2.19-2.072c0-1.14.972-2.072 2.19-2.072m-4.926 8.192c-.96 0-1.756.735-1.782 1.66h.467c.025-.66.595-1.194 1.315-1.194s1.289.535 1.314 1.194h.467c-.026-.924-.822-1.66-1.781-1.66m10.181 1.003c-1.034 0-1.89.804-1.89 1.805c0 1.002.856 1.807 1.89 1.807c1.035 0 1.891-.805 1.891-1.807c0-1.001-.856-1.805-1.89-1.805zm0 .467c.796 0 1.424.602 1.424 1.338c0 .736-.628 1.34-1.424 1.34c-.795 0-1.423-.604-1.423-1.34c0-.736.628-1.338 1.423-1.338\\\"/><path fill=\\\"#3c6eb4\\\" d=\\\"M3.602 68.81v.624h10.936c.027-.203.057-.41.091-.623zm5.54 2.335v.62h16.173v-.62h-1.252l.003.017h-9.747l.002-.017z\\\"/><path d=\\\"M13.791 52.994c-1.124 0-2.218.123-2.924.402c-1.869.687-3.278 2.533-3.697 4.756c-.373 1.764-.472 3.255-.67 4.606a13.8 13.8 0 0 1-.338 1.664c-.758.6-1.303 1.527-1.502 2.584a19.78 19.78 0 0 0-.283 1.805h.469c.065-.535.14-1.097.271-1.713l.002-.002v-.004c.246-1.306 1.076-2.368 2.123-2.75l.004-.003l.002-.001c.355-.141 1.04-.23 1.73-.23s1.402.087 1.825.234c1.045.382 1.875 1.445 2.12 2.75v.004l.003.002c.13.616.206 1.178.271 1.713h.47a20.106 20.106 0 0 0-.284-1.807c-.273-1.446-1.192-2.652-2.422-3.102h-.002l-.002-.002c-.517-.18-1.252-.257-1.979-.258c-.725 0-1.428.075-1.9.262c-.117.043-.23.095-.34.15a15.851 15.851 0 0 0 .225-1.228c.202-1.377.296-2.85.662-4.578l.002-.002v-.004c.392-2.085 1.716-3.792 3.404-4.41l.003-.002h.003c.588-.234 1.664-.37 2.754-.369c1.089 0 2.204.132 2.891.37c1.688.618 3.013 2.326 3.404 4.41l.002.005v.002c.365 1.727.463 3.201.665 4.578c.09.62.208 1.22.379 1.813c-.54-.163-1.265-.237-1.985-.237c-.774 0-1.523.082-2.023.28c-1.308.478-2.285 1.76-2.577 3.299c-.256 1.209-.324 2.229-.459 3.146l.463.069c.139-.944.202-1.947.451-3.12l.002-.002v-.002c.264-1.4 1.157-2.544 2.282-2.955h.001l.005-.002c.383-.152 1.116-.246 1.855-.246c.74 0 1.5.092 1.955.25h.003c1.123.412 2.013 1.555 2.277 2.953v.004c.248 1.173.314 2.175.453 3.12l.463-.069c-.135-.917-.203-1.938-.46-3.147c-.258-1.367-1.058-2.53-2.15-3.109c-.227-.68-.366-1.375-.474-2.113c-.198-1.35-.296-2.84-.668-4.602c-.419-2.227-1.829-4.078-3.702-4.764h-.004c-.782-.273-1.923-.398-3.049-.398m-3.513 2.812a1.56 1.56 0 0 0-1.243.606l-.143.184l.372.285l.142-.186a1.11 1.11 0 0 1 .81-.422c.294-.012.599.106.807.313l.166.166l.33-.332l-.166-.164a1.558 1.558 0 0 0-1.076-.45zm7.53 0a1.558 1.558 0 0 0-1.076.45l-.166.164l.328.332l.167-.166a1.105 1.105 0 0 1 .806-.313c.31.014.623.176.813.422l.143.186l.369-.285l-.143-.184a1.556 1.556 0 0 0-1.24-.606zm-7.542 2.057A1.167 1.197 0 0 0 9.1 59.06a1.167 1.197 0 0 0 1.166 1.198a1.167 1.197 0 0 0 1.168-1.198a1.167 1.197 0 0 0-1.168-1.197m7.552 0a1.167 1.197 0 0 0-1.166 1.197a1.167 1.197 0 0 0 1.166 1.198a1.167 1.197 0 0 0 1.167-1.198a1.167 1.197 0 0 0-1.166-1.197zm-3.708 1.729c-.172 0-.312.052-.428.092a.979.979 0 0 1-.282.066a.442.442 0 0 0-.322.153a.68.68 0 0 0-.125.247c-.05.161-.074.325-.096.382c-.05.13-.002.232.038.3c.04.068.088.121.142.176c.11.11.247.22.387.322c.143.105.286.2.392.27l-.005.093c-.053.043-.18.157-.393.229a.648.648 0 0 1-.361.03c-.094-.025-.186-.107-.282-.231l.02-.15a5.25 5.25 0 0 1 .06-.364l-.453-.114c-.027.109-.05.267-.07.413c-.02.146-.035.272-.035.272l-.01.083l.045.07c.165.259.384.416.61.473c.225.058.444.023.627-.038c.237-.081.43-.21.537-.292c.106.082.298.211.535.292c.182.061.399.096.625.038c.225-.057.445-.214.61-.473l.044-.07l-.01-.083s-.014-.126-.035-.272a4.59 4.59 0 0 0-.07-.413l-.453.114c.012.05.04.222.06.363l.02.149c-.096.125-.188.208-.281.232a.65.65 0 0 1-.362-.03c-.212-.071-.34-.185-.392-.228l-.004-.087c.108-.07.254-.167.402-.276a3.42 3.42 0 0 0 .387-.322a.875.875 0 0 0 .142-.176a.33.33 0 0 0 .037-.3c-.022-.057-.048-.22-.097-.382a.675.675 0 0 0-.123-.248a.442.442 0 0 0-.322-.152a.984.984 0 0 1-.282-.066c-.116-.04-.256-.092-.427-.092m0 .467c.068 0 .16.026.277.066c.108.036.244.077.398.084c.005.008.02.034.034.08c.025.081.05.206.085.326a.468.468 0 0 1-.054.065a3.088 3.088 0 0 1-.332.273c-.2.146-.323.222-.408.275c-.085-.053-.212-.128-.411-.275a3.03 3.03 0 0 1-.33-.273c-.03-.03-.043-.05-.054-.065c.035-.12.06-.244.085-.326a.35.35 0 0 1 .034-.08a1.44 1.44 0 0 0 .396-.084a.99.99 0 0 1 .28-.066m-7.434 5.378a1.078 1.078 0 0 0-.805.419l-.142.185l.369.286l.142-.186a.633.633 0 0 1 .457-.237a.627.627 0 0 1 .453.176l.167.164l.327-.332l-.166-.164a1.08 1.08 0 0 0-.802-.31zm4.928 0a1.076 1.076 0 0 0-.801.311l-.166.164l.328.332l.166-.164a.627.627 0 0 1 .453-.176a.632.632 0 0 1 .457.237l.14.186l.372-.286l-.143-.185a1.08 1.08 0 0 0-.806-.419m10.29.883a1.139 1.139 0 0 0-.786.329l-.166.164l.328.331l.165-.163a.684.684 0 0 1 .497-.192c.19.008.384.108.5.258l.142.186l.37-.285l-.143-.186a1.133 1.133 0 0 0-.848-.44zm-5.15 0l-.058.002a1.137 1.137 0 0 0-.85.44l-.142.186l.37.285l.143-.186a.685.685 0 0 1 .498-.258a.688.688 0 0 1 .498.192l.166.164l.329-.332l-.167-.164a1.138 1.138 0 0 0-.787-.329m-10.02.514a.746.764 0 0 0-.746.764a.746.764 0 0 0 .746.766a.746.764 0 0 0 .746-.766a.746.764 0 0 0-.746-.764m4.832 0a.746.764 0 0 0-.748.764a.746.764 0 0 0 .748.766a.746.764 0 0 0 .746-.766a.746.764 0 0 0-.746-.764m5.18.965a.798.817 0 0 0-.797.817a.798.817 0 0 0 .797.816a.798.817 0 0 0 .799-.816a.798.817 0 0 0-.799-.817m5.166 0a.798.817 0 0 0-.799.817a.798.817 0 0 0 .8.816a.798.817 0 0 0 .796-.816a.798.817 0 0 0-.797-.817m-12.719.055c-.127 0-.226.038-.3.063a.59.59 0 0 1-.153.037a.382.382 0 0 0-.271.129a.504.504 0 0 0-.096.187c-.035.114-.051.218-.058.236a.29.29 0 0 0 .029.266c.008.015.018.026.027.039h.713a2.51 2.51 0 0 1-.104-.072c-.08-.06-.16-.122-.203-.166v-.002c.015-.06.031-.13.041-.163l.003-.003c.082-.012.165-.029.22-.047a.6.6 0 0 1 .152-.037c.026 0 .076.011.15.037c.056.018.14.035.221.047l.002.003c.01.033.03.103.043.163l-.002.002a1.944 1.944 0 0 1-.203.165a3.496 3.496 0 0 1-.101.073h.713c.009-.013.019-.024.027-.039a.29.29 0 0 0 .03-.266c-.008-.018-.026-.123-.062-.236a.496.496 0 0 0-.095-.187a.377.377 0 0 0-.27-.13a.582.582 0 0 1-.152-.036c-.074-.025-.173-.063-.3-.063zm10.182 1.05c-.133 0-.237.04-.316.067a.626.626 0 0 1-.168.041a.388.388 0 0 0-.278.13a.528.528 0 0 0-.1.196c-.036.12-.055.231-.063.254a.293.293 0 0 0 .03.27a.71.71 0 0 0 .11.135c.08.08.176.155.273.226c.08.059.159.112.225.157c-.044.035-.102.082-.21.118a.37.37 0 0 1-.204.018c-.042-.01-.088-.059-.135-.111l.01-.067c.013-.095.033-.214.039-.24l-.453-.113c-.02.083-.035.188-.049.289c-.014.1-.023.187-.023.187l-.01.082l.045.071c.12.19.288.311.46.355a.821.821 0 0 0 .47-.029a1.377 1.377 0 0 0 .343-.178c.081.057.2.13.344.178a.819.819 0 0 0 .469.03a.794.794 0 0 0 .46-.356l.046-.07l-.01-.083l-.026-.187a2.677 2.677 0 0 0-.048-.289l-.453.113a3.8 3.8 0 0 1 .04.24l.008.067c-.046.052-.091.1-.133.111a.373.373 0 0 1-.205-.018c-.104-.035-.16-.082-.205-.117a6.15 6.15 0 0 0 .229-.158c.097-.071.193-.147.273-.226a.652.652 0 0 0 .11-.135a.294.294 0 0 0 .029-.27c-.01-.023-.028-.135-.065-.254a.523.523 0 0 0-.097-.195a.388.388 0 0 0-.278-.131a.62.62 0 0 1-.167-.04c-.08-.028-.184-.067-.317-.067zm0 .467c.031 0 .086.014.166.042a1.404 1.404 0 0 0 .244.05c.003.006 0 .002.004.014c.012.04.032.115.049.184l-.008.007a2.088 2.088 0 0 1-.219.18c-.114.083-.168.115-.236.158c-.067-.043-.122-.074-.236-.158a2.088 2.088 0 0 1-.22-.18c-.004-.005-.002-.005-.007-.01c.017-.067.035-.142.047-.181c.004-.012.003-.008.006-.014a1.364 1.364 0 0 0 .242-.05a.647.647 0 0 1 .168-.042\\\"/><path fill=\\\"#892ca0\\\" d=\\\"M10.265 57.63a1.373 1.373 0 0 0-.989.422a1.435 1.435 0 0 0-.346.586a1.442 1.442 0 0 0-.06.496a1.444 1.444 0 0 0 .613 1.11a1.402 1.402 0 0 0 .301.159a1.367 1.367 0 0 0 1.027-.025a1.375 1.375 0 0 0 .346-.215a1.42 1.42 0 0 0 .307-.363a1.443 1.443 0 0 0 .186-.956a1.451 1.451 0 0 0-.187-.523a1.443 1.443 0 0 0-.414-.445a1.402 1.402 0 0 0-.302-.158a1.365 1.365 0 0 0-.481-.087zm7.553 0a1.378 1.378 0 0 0-.48.089a1.37 1.37 0 0 0-.357.198a1.416 1.416 0 0 0-.322.347a1.443 1.443 0 0 0-.21 1.083a1.444 1.444 0 0 0 .38.722a1.428 1.428 0 0 0 .322.247a1.386 1.386 0 0 0 .385.145a1.356 1.356 0 0 0 .426.022a1.368 1.368 0 0 0 .747-.321a1.426 1.426 0 0 0 .34-.423a1.44 1.44 0 0 0 .16-.824a1.451 1.451 0 0 0-.194-.593a1.442 1.442 0 0 0-.471-.483a1.395 1.395 0 0 0-.376-.163a1.359 1.359 0 0 0-.35-.045zm-7.553.466a.974.974 0 0 1 .143.01a.904.904 0 0 1 .303.105a.927.927 0 0 1 .216.165a.954.954 0 0 1 .2.306a.976.976 0 0 1 .073.328a1.026 1.026 0 0 1-.041.34a.976.976 0 0 1-.172.327a.954.954 0 0 1-.276.233a.918.918 0 0 1-.587.104a.915.915 0 0 1-.579-.338a.96.96 0 0 1-.171-.327a.987.987 0 0 1-.042-.289a1.025 1.025 0 0 1 .042-.288a.977.977 0 0 1 .172-.327a.952.952 0 0 1 .275-.234a.917.917 0 0 1 .396-.114a.842.842 0 0 1 .048-.001m7.553 0a.923.923 0 0 1 .278.043a.91.91 0 0 1 .316.176a.946.946 0 0 1 .227.283a.97.97 0 0 1 .108.363a1.01 1.01 0 0 1-.108.562a.966.966 0 0 1-.227.284a.936.936 0 0 1-.23.143a.91.91 0 0 1-.727 0a.918.918 0 0 1-.296-.205a.954.954 0 0 1-.2-.307a.976.976 0 0 1-.073-.327a1.025 1.025 0 0 1 .018-.246a.987.987 0 0 1 .14-.346a.96.96 0 0 1 .253-.26a.926.926 0 0 1 .288-.133a.91.91 0 0 1 .233-.03M6.7 66.6a.314.314 0 0 0-.025 0a.992.992 0 0 0-.928.997c0 .545.437.998.979.998c.541 0 .98-.453.98-.998a.991.991 0 0 0-.98-.996zm4.832 0a.32.32 0 0 0-.025 0a.994.994 0 0 0-.93.997c0 .545.44.998.98.998a.992.992 0 0 0 .98-.998a.99.99 0 0 0-.98-.996zm-4.806.468c.283 0 .513.23.513.529a.52.52 0 0 1-.513.531a.518.518 0 0 1-.512-.531c0-.299.229-.53.512-.53zm4.832 0c.283 0 .511.23.511.529a.518.518 0 0 1-.511.531a.52.52 0 0 1-.514-.531c0-.299.23-.53.514-.53zm5.18.496c-.57 0-1.032.476-1.032 1.05c0 .575.461 1.051 1.031 1.051c.57 0 1.032-.476 1.032-1.05c0-.575-.462-1.051-1.032-1.051zm5.165 0c-.57 0-1.03.476-1.03 1.05c0 .575.46 1.051 1.03 1.051c.57 0 1.032-.476 1.032-1.05c0-.575-.462-1.051-1.032-1.051m-5.18.466h.014a.57.57 0 0 1 .565.584a.57.57 0 0 1-.565.584a.571.571 0 0 1-.564-.584c0-.317.237-.568.535-.584a.172.172 0 0 1 .015 0m5.166 0h.015a.57.57 0 0 1 .564.584a.57.57 0 0 1-.564.584a.571.571 0 0 1-.565-.584c0-.317.237-.568.535-.584a.17.17 0 0 1 .015 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M9.877 58.127a.574.597 0 0 0-.574.596a.574.597 0 0 0 .574.598a.574.597 0 0 0 .574-.598a.574.597 0 0 0-.574-.596m7.55 0a.574.597 0 0 0-.575.596a.574.597 0 0 0 .574.598a.574.597 0 0 0 .574-.598a.574.597 0 0 0-.574-.596zm-10.95 8.875a.367.38 0 0 0-.368.38a.367.38 0 0 0 .368.382a.367.38 0 0 0 .367-.381a.367.38 0 0 0-.367-.38zm4.878.055a.367.38 0 0 0-.367.38a.367.38 0 0 0 .367.381a.367.38 0 0 0 .368-.38a.367.38 0 0 0-.368-.381m5.116.922a.392.407 0 0 0-.393.406a.392.407 0 0 0 .393.408a.392.407 0 0 0 .393-.408a.392.407 0 0 0-.393-.406m5.246.052a.392.407 0 0 0-.393.409a.392.407 0 0 0 .393.406a.392.407 0 0 0 .393-.406a.392.407 0 0 0-.393-.409\\\"/>\"\n\t\t},\n\t\t\"poetry\": {\n\t\t\t\"body\": \"<defs><radialGradient id=\\\"deviconPoetry0\\\" cx=\\\"438.3\\\" cy=\\\"639.01\\\" r=\\\"569.94\\\" fx=\\\"438.3\\\" fy=\\\"639.01\\\" gradientTransform=\\\"translate(4.213 5.333)scale(.21333)\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6877ec\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#5362cf\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4352b9\\\"/></radialGradient><radialGradient id=\\\"deviconPoetry1\\\" cx=\\\"65.64\\\" cy=\\\"-16.21\\\" r=\\\"746.46\\\" fx=\\\"65.64\\\" fy=\\\"-16.21\\\" gradientTransform=\\\"translate(4.213 5.333)scale(.21333)\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00d5ff\\\"/><stop offset=\\\".38\\\" stop-color=\\\"#00b8eb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0080c5\\\"/></radialGradient><radialGradient id=\\\"deviconPoetry2\\\" cx=\\\"259.68\\\" cy=\\\"-34.71\\\" r=\\\"431.37\\\" fx=\\\"259.68\\\" fy=\\\"-34.71\\\" gradientTransform=\\\"translate(4.213 5.333)scale(.21333)\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\"/></radialGradient><linearGradient id=\\\"deviconPoetry3\\\" x1=\\\"74.77\\\" x2=\\\"277.23\\\" y1=\\\"67.3\\\" y2=\\\"512.72\\\" gradientTransform=\\\"translate(4.213 5.333)scale(.21333)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#294ca7\\\"/><stop offset=\\\".48\\\" stop-color=\\\"#96a7d4\\\"/><stop offset=\\\".84\\\" stop-color=\\\"#e1e6f3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\"/></linearGradient><linearGradient id=\\\"deviconPoetry4\\\" x1=\\\"-228.74\\\" x2=\\\"451\\\" y1=\\\"-144.29\\\" y2=\\\"651.89\\\" gradientTransform=\\\"translate(4.213 5.333)scale(.21333)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6877ec\\\"/><stop offset=\\\".29\\\" stop-color=\\\"#97a1f2\\\"/><stop offset=\\\".77\\\" stop-color=\\\"#e2e4fb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\"/></linearGradient><linearGradient id=\\\"deviconPoetry5\\\" x1=\\\"-151.22\\\" x2=\\\"450.08\\\" y1=\\\"-285.9\\\" y2=\\\"430.63\\\" gradientTransform=\\\"translate(4.213 5.333)scale(.21333)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8397cc\\\"/><stop offset=\\\".15\\\" stop-color=\\\"#97a8d4\\\"/><stop offset=\\\".73\\\" stop-color=\\\"#e2e6f3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\"/></linearGradient></defs><path fill=\\\"url(#deviconPoetry0)\\\" d=\\\"M40.07 124.8a121.72 121.72 0 0 0 62.242-33.366L16.216 5.332v95.61Zm0 0\\\"/><path fill=\\\"url(#deviconPoetry1)\\\" d=\\\"M16.215 100.941c52.805 0 95.61-42.804 95.61-95.609h-95.61Zm0 0\\\"/><path fill=\\\"url(#deviconPoetry3)\\\" d=\\\"m16.215 100.941l3.68 3.68c25.933-.95 49.363-11.875 66.558-29.062l-2.621-2.618a95.294 95.294 0 0 1-67.617 28m0 0\\\"/><path fill=\\\"url(#deviconPoetry4)\\\" d=\\\"M40.07 124.8a121.72 121.72 0 0 0 62.242-33.366L16.216 5.332v95.61Zm0 0\\\"/><path fill=\\\"url(#deviconPoetry5)\\\" d=\\\"M102.313 91.434L16.215 5.332l78.27 93.254a122.174 122.174 0 0 0 7.828-7.152m0 0\\\"/><path fill=\\\"url(#deviconPoetry2)\\\" d=\\\"m16.215 5.332l67.605 67.61a98.72 98.72 0 0 0 1.782-1.837Zm0 0\\\"/>\"\n\t\t},\n\t\t\"polygon\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M64 0c35.348 0 64 28.652 64 64s-28.652 64-64 64S0 99.348 0 64S28.652 0 64 0m0 0\\\"/><path fill=\\\"#7950DD\\\" d=\\\"M85.898 49.242a5.76 5.76 0 0 0-5.418 0l-12.214 7.223l-8.532 4.742l-12.214 7.227a5.76 5.76 0 0 1-5.418 0l-9.707-5.649a5.423 5.423 0 0 1-2.711-4.52V46.989a4.972 4.972 0 0 1 2.71-4.52l9.708-5.417a5.738 5.738 0 0 1 5.418 0l9.707 5.418a5.423 5.423 0 0 1 2.71 4.52v7.218l8.329-4.965v-6.996a4.963 4.963 0 0 0-2.664-4.52l-17.86-10.382a5.738 5.738 0 0 0-5.418 0L24.266 37.727a4.608 4.608 0 0 0-2.934 4.52v20.991a4.967 4.967 0 0 0 2.711 4.496l18.059 10.407a5.76 5.76 0 0 0 5.418 0l12.214-7l8.352-4.965l12.172-6.977a5.76 5.76 0 0 1 5.418 0l9.707 5.418a5.419 5.419 0 0 1 2.707 4.52v11.062a4.967 4.967 0 0 1-2.707 4.516l-9.707 5.64a5.738 5.738 0 0 1-5.418 0l-9.707-5.418a5.416 5.416 0 0 1-2.711-4.515v-7.25l-8.106 4.738v7.219a4.969 4.969 0 0 0 2.707 4.52L80.5 100.03a5.746 5.746 0 0 0 5.422 0l18.058-10.383a5.42 5.42 0 0 0 2.688-4.511v-21a4.964 4.964 0 0 0-2.711-4.516zm0 0\\\"/>\"\n\t\t},\n\t\t\"polygon-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#7950dd\\\" d=\\\"M8.28 50.545c-.326 0-.658.086-.963.256L.943 54.556c-.61.341-.943.968-.943 1.65v7.566c0 .682.333 1.31.943 1.65l6.374 3.755c.554.341 1.274.341 1.884 0l4.323-2.56l2.938-1.763l4.323-2.56c.554-.342 1.276-.342 1.886 0l3.38 1.99c.554.342.942.968.942 1.65v4.04c0 .682-.333 1.309-.942 1.65l-3.38 2.048c-.555.342-1.276.342-1.886 0l-3.38-1.992c-.554-.341-.943-.966-.943-1.649v-2.618l-2.938 1.764v2.616c0 .683.333 1.31.943 1.651L20.84 77.2c.554.341 1.274.341 1.884 0l6.376-3.755c.554-.341.94-.968.94-1.65v-7.566c0-.682-.33-1.309-.94-1.65l-6.43-3.812c-.555-.342-1.276-.342-1.886 0l-4.323 2.618l-2.938 1.706L9.2 65.707c-.554.34-1.274.34-1.884 0l-3.438-2.049a1.966 1.966 0 0 1-.94-1.649v-4.04c0-.683.33-1.308.94-1.649l3.382-1.992c.554-.342 1.274-.342 1.884 0l3.382 1.992c.554.341.943.966.943 1.65v2.617l2.936-1.764v-2.616c0-.683-.331-1.31-.94-1.65L9.2 50.8a1.752 1.752 0 0 0-.921-.256Z\\\"/><path d=\\\"M67.823 51.649v18.24h3.48v-18.24Zm-22.447 5.323c-1.628 0-2.88.606-3.63 1.59v-1.388h-3.48v17.862h3.48v-6.283c.676.858 1.902 1.337 3.329 1.337c3.63 0 6.084-2.597 6.084-6.558c0-3.96-2.253-6.56-5.783-6.56m13.684 0c-3.88 0-6.658 2.776-6.658 6.56s2.778 6.558 6.658 6.558c3.88 0 6.66-2.774 6.66-6.558s-2.78-6.56-6.66-6.56m32.578 0c-3.68 0-5.91 2.6-5.91 6.56c0 3.96 2.229 6.558 5.96 6.558c1.477 0 2.803-.554 3.455-1.488v1.666c0 1.185-.776 2.017-1.828 2.017h-5.81v2.75h6.36c2.854 0 4.757-1.74 4.757-4.39v-13.47h-3.505v1.26c-.702-.882-1.952-1.463-3.479-1.463m15.758 0c-3.88 0-6.66 2.776-6.66 6.56s2.78 6.558 6.66 6.558c3.88 0 6.658-2.774 6.658-6.558s-2.778-6.56-6.658-6.56m15.897 0c-1.727 0-3.13.732-3.83 1.968v-1.766h-3.505v12.714h3.505v-6.962c0-1.64 1.076-2.825 2.603-2.825c1.451 0 2.429 1.109 2.429 2.648v7.14H128v-7.922c0-2.927-1.853-4.995-4.707-4.995m-50.367.202l4.582 12.614l-1.852 5.248h3.329l1.777-5.197l4.582-12.665h-3.58l-2.628 8.2l-2.654-8.2zm-28.276 2.8c1.827 0 3.08 1.414 3.08 3.558c0 2.12-1.253 3.531-3.08 3.531c-1.878 0-3.105-1.412-3.105-3.531c0-2.144 1.227-3.558 3.105-3.558m14.41 0c1.878 0 3.155 1.439 3.155 3.558c0 2.094-1.277 3.531-3.155 3.531c-1.877 0-3.155-1.437-3.155-3.531c0-2.12 1.278-3.558 3.155-3.558m33.178 0c1.877 0 3.105 1.414 3.105 3.558s-1.228 3.531-3.105 3.531c-1.853 0-3.08-1.387-3.08-3.531s1.227-3.558 3.08-3.558m15.158 0c1.877 0 3.153 1.439 3.153 3.558c0 2.094-1.276 3.531-3.153 3.531c-1.878 0-3.155-1.437-3.155-3.531c0-2.12 1.277-3.558 3.155-3.558\\\"/>\"\n\t\t},\n\t\t\"portainer\": {\n\t\t\t\"body\": \"<g fill=\\\"#3BBCED\\\"><path d=\\\"M49.32 29.44h-1.88v9.75h1.88zm8.09 0h-1.88v9.75h1.88zm11.06-18.6L66.54 7.5L34.36 26.1l1.93 3.34z\\\"/><path d=\\\"m68.28 10.84l1.93-3.34l32.18 18.6l-1.93 3.34z\\\"/><path d=\\\"M108.08 29.49v-3.86H19.92v3.86z\\\"/><path d=\\\"M73.17 84.01V26.8h3.86v59.98c-1.03-1.17-2.35-2.02-3.86-2.77m-6.58-.99V2.32h3.86v81.17c-1.09-.52-3.72-.47-3.86-.47m-36.55 8.05c-4.7-3.48-7.81-9.04-7.81-15.35c0-3.34.89-6.64 2.54-9.51H57.7c1.69 2.87 2.54 6.17 2.54 9.51c0 2.92-.38 5.65-1.55 8.1c-2.49-2.4-6.16-3.44-9.88-3.44c-6.59 0-12.23 4.1-13.69 10.22c-.52-.05-.85-.09-1.36-.09c-1.28.04-2.5.23-3.72.56m16.18-47.55h-9.97v10.03h9.97zm-11.25 0H25v10.03h9.97zm0 11.16H25v10.03h9.97zm11.25 0h-9.97v10.03h9.97zm11.19 0h-9.97v10.03h9.97zm0-16.53h-9.97v10.03h9.97z\\\"/><path d=\\\"M36.76 92.58c1.36-5.79 6.59-10.12 12.8-10.12c4 0 7.57 1.79 10.02 4.62c2.12-1.46 4.66-2.31 7.43-2.31c7.24 0 13.12 5.88 13.12 13.14c0 1.51-.23 2.92-.7 4.28c1.6 2.17 2.59 4.9 2.59 7.82c0 7.25-5.88 13.14-13.13 13.14c-3.2 0-6.12-1.13-8.37-3.01c-2.4 3.34-6.3 5.56-10.73 5.56c-5.08 0-9.5-2.92-11.71-7.16c-.89.19-1.79.28-2.73.28c-7.24 0-13.17-5.89-13.17-13.14s5.88-13.14 13.17-13.14c.47-.05.94-.05 1.41.04\\\"/></g>\"\n\t\t},\n\t\t\"portainer-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#3BBCED\\\"><path d=\\\"M12.07 51.78h-.67v3.45h.67zm2.86 0h-.67v3.45h.67zm3.9-6.57l-.68-1.18L6.78 50.6l.68 1.18z\\\"/><path d=\\\"m18.77 45.21l.68-1.18l11.37 6.57l-.68 1.18z\\\"/><path d=\\\"M32.83 51.8v-1.36H1.67v1.36zm26.01 6.64h-1.76v11.58h1.76v-6.41c0-2.36 1.86-3.63 3.92-3.63v-1.73c-1.6 0-2.98.68-3.92 1.76zm11.34 1.6v-1.6h-2.61v-4.56H65.8v4.56h-1.73v1.6h1.73v9.99h1.76v-9.99zm18.25-3.94c.67 0 1.23-.55 1.23-1.27c0-.63-.58-1.21-1.23-1.21c-.72 0-1.26.58-1.26 1.21c0 .72.55 1.27 1.26 1.27m-.9 13.92h1.84V58.44h-1.84zm5.56 0h1.76v-6.16c0-2.61 1.45-3.93 3.79-3.88c1.93 0 2.98 1.13 2.98 3.43v6.61h1.76v-6.61c0-3.69-1.41-5.16-4.74-5.16c-1.58 0-2.86.58-3.79 1.58v-1.4h-1.76zm29.31-11.58h-1.76v11.58h1.76v-6.41c0-2.36 1.86-3.63 3.92-3.63v-1.73c-1.61 0-2.98.68-3.92 1.76zM10.97 56.76H7.44v3.54h3.53zm-3.98 0H3.47v3.54H7v-3.54zm0 3.95H3.47v3.54H7v-3.54zm3.98 0H7.44v3.54h3.53zm3.96 0H11.4v3.54h3.53zm0-5.85H11.4v3.54h3.53z\\\"/><path d=\\\"M20.49 71.07V50.85h1.36v21.2c-.36-.41-.82-.71-1.36-.98m-2.32-.35V42.2h1.36v28.69c-.38-.18-1.31-.17-1.36-.17M5.25 73.57c-1.66-1.23-2.76-3.19-2.76-5.42c0-1.18.31-2.35.9-3.36h11.64c.6 1.02.9 2.18.9 3.36c0 1.03-.13 2-.55 2.86c-.88-.85-2.18-1.21-3.49-1.21c-2.33 0-4.32 1.45-4.84 3.61c-.18-.02-.3-.03-.48-.03c-.46.01-.89.07-1.32.19m29.34-15.31c3.29 0 6 2.71 6 6.01c0 3.25-2.71 6.06-6 6.06c-1.76 0-3.32-.83-4.37-2.13v7.1h-1.76V58.44h1.76v1.9c1.06-1.27 2.61-2.08 4.37-2.08m.05 10.32c2.34 0 4.11-2.03 4.11-4.33c0-2.35-1.76-4.26-4.11-4.26c-2.29 0-4.32 1.91-4.32 4.26c0 2.3 2.03 4.33 4.32 4.33m13.67 1.73c-3.29 0-6-2.81-6-6.06c0-3.29 2.71-6.01 6-6.01s6 2.71 6 6.01c0 3.25-2.71 6.06-6 6.06m0-10.32c-2.34 0-4.16 1.93-4.16 4.26c0 2.3 1.81 4.33 4.16 4.33s4.16-2.03 4.16-4.33c0-2.35-1.81-4.26-4.16-4.26m29.31 10.32c-3.29 0-6-2.81-6-6.04c0-3.29 2.71-6.01 6-6.01c1.76 0 3.33.81 4.37 2.08v-1.9h1.76v11.63H82v-1.9c-1.07 1.29-2.61 2.14-4.38 2.14m-.06-1.73c2.29 0 4.32-2.03 4.32-4.33c0-2.35-2.03-4.26-4.32-4.26c-2.34 0-4.11 1.91-4.11 4.26c0 2.3 1.76 4.33 4.11 4.33m40.32-4.33v.83H107.8c.37 1.91 2.03 3.49 4.07 3.49c1.35 0 2.48-.67 3.21-1.61h2.18c-.96 2-3.04 3.34-5.39 3.34c-3.29 0-6-2.81-6-6.06c0-3.29 2.71-6.01 6-6.01s6.01 2.73 6.01 6.02m-6-4.26c-2.05 0-3.69 1.48-4.09 3.39h8.16c-.38-1.91-2.04-3.39-4.07-3.39\\\"/><path d=\\\"M7.63 74.1a4.653 4.653 0 0 1 4.52-3.58c1.41 0 2.68.63 3.54 1.63c.75-.52 1.65-.81 2.63-.81c2.56 0 4.64 2.08 4.64 4.64c0 .53-.08 1.03-.25 1.51c.56.77.91 1.73.91 2.76c0 2.56-2.08 4.64-4.64 4.64c-1.13 0-2.16-.4-2.96-1.07a4.673 4.673 0 0 1-3.79 1.96a4.67 4.67 0 0 1-4.14-2.53c-.31.07-.63.1-.96.1c-2.56 0-4.66-2.08-4.66-4.64c0-2.56 2.08-4.64 4.66-4.64c.16 0 .33 0 .5.03\\\"/></g>\"\n\t\t},\n\t\t\"postcss\": {\n\t\t\t\"body\": \"<path fill=\\\"#dd3a0a\\\" d=\\\"M19.344 60.441c-.172.305-.344.563-.516.868l-.258-.133c-.175.992-.78 1.86-1.383 2.031c.172.086.344.172.477.129c.125-.043.211-.262.3-.39l1.165-1.684l.39-.653l-.171-.172ZM4.964 79.426c.22 0 .434.043.692.043c0-.172.219-.133.219-.301h.129c0 .215.043.387.043.605H5.14c-.043-.043-.215-.304-.172-.347Zm-.343-1.989c-.129-.132-.344-.257-.344-.39c-.043-.168.086-.383.215-.602c.086.305.13.563.215.868c-.043.039-.086.082-.086.124m1.082-2.769c.172.437.344.914.516 1.348c-.043 0-.301.129-.344.171c-.172-.433-.387-.91-.563-1.34c.043-.042.305-.175.391-.175Zm96.129 41.344c.215-.082.473-.13.82-.211c-.39.3-.691.515-.949.773c-.047-.039-.09-.086-.133-.086c.086-.172.172-.3.262-.476M48.754 24.64c.254-.176.473-.305.73-.477l.086.086c-.261.344-.476.688-.777 1.121c-.043-.297-.043-.473-.09-.687c-.043 0 0 0 .047-.043Zm12.652 21.88c.387-.176.778-.344 1.25-.563c-.043.258-.043.434-.043.605a1.553 1.553 0 0 0-.433-.085c-.258.043-.735.386-.95.43c-.042 0 .172-.344.172-.387Zm32.39 36.667c.087.434.907.649.087 1.083c.133.09.258.128.387.218a.323.323 0 0 1-.086.176c-.086.04-.258.125-.344.082c-.043 0-.13-.172-.13-.258c0-.39.044-.777.087-1.297Zm0-8.648c.044 0 .087.043.087.043l-.043-.047c0-.043 0-.043-.043 0Zm6.825 42.727c-.476.343-.953.648-1.558.777c-.043-.043-.043-.086-.086-.133c.476-.3.992-.601 1.468-.906c.043.082.13.172.172.258ZM19.648 58.668c.477-.602.954-1.207 1.47-1.813c.038.043.382.13.429.172c-.477.606-1.125 1.426-1.602 2.075c-.086-.086-.215-.387-.3-.434ZM7.383 79.859c-.344-.734-.692-1.511-1.035-2.246c.043-.043.343-.175.386-.175c.477.69.692 1.511 1.04 2.25c0 0-.344.171-.391.171m11.012-20.757c-.258.39-.516.824-.778 1.214c-.043-.046-.515.172-.558.13c.257-.391.906-1.083 1.164-1.473c.043.043.086.09.172.132ZM96 119.039c.043 0 .043-.039.086-.039c.3.04.644.082.992.082c-.562.39-.91.348-1.082-.043ZM18.477 60.918c.046-.129.132-.258.218-.387c.086 0 .215-.047.215-.047c.176-.3.176-.515.348-.777c-.043-.043-.086-.043-.133-.086c-.258.176-.516.395-.773.566c.085.086.085.13.085.215c-.343-.043-.476.133-.648.606c-.043.133-.258.172-.477.344c-.042.09-.085.304-.171.52l.043.046a.675.675 0 0 1-.215.133c-.258.258-.563.476-.82.73c-.044.133-.087.262-.087.39c.305-.3.82-.862 1.211-1.21l.043.043c.172-.258.301-.516.477-.777c.039.043.039.086.086.132c-.133.344-.262.73-.39 1.078c-.09.043-.22.13-.22.086c-.171.133-.3.301-.476.434l-.777.516c-.43.39-.864.734-1.336 1.125c-.305.476-.606.906-.953 1.472c.52-.132.648.086.605.52c.605.086.648-.39.82-.738c.043-.086.09-.262.172-.305c.39-.344.824-.645 1.254-.992c.086-.086.086-.262.086-.39c0-.044-.219-.044-.348-.087c.391-.433.954-1.164 1.34-1.64c.215-.133.43-.305.43-.434c-.04-.477.262-.606.61-.781c-.176-.13-.22-.258-.22-.297Zm109.175-5.273c-.086-1.688-.129-3.375-.3-5.063c-.305-2.289-.606-4.625-1.125-6.875c-.387-1.86-1.032-3.633-1.684-5.406c-.82-2.074-1.64-4.192-2.676-6.184c-1.683-3.199-3.887-6.054-5.918-9.035c-1.34-1.906-3.066-3.46-4.363-5.406c-.734-1.125-1.813-2.074-2.895-2.938c-1.726-1.386-3.539-2.644-5.355-3.851c-1.379-.953-2.762-1.86-4.23-2.684c-1.168-.648-2.418-1.168-3.63-1.73c-1.382-.649-2.718-1.43-4.273-1.73c-.39-.083-.734-.216-1.125-.345c-.992-.347-1.941-.734-2.937-1.039c-1.512-.476-2.977-1.035-4.536-1.425c-1.503-.391-3.062-.649-4.617-.868c-1.726-.254-3.496-.343-5.226-.511C71.64.422 70.52.293 69.437.25c-1.64-.082-3.324-.082-4.964-.125c-.82-.047-1.684-.133-2.504-.09a37.01 37.01 0 0 0-3.758.348c-1.207.129-2.418.344-3.582.52c-1.422.171-2.848.257-4.274.433c-1.34.172-2.722.434-4.058.648c-.477.086-.953.258-1.426.344c-1.035.219-2.117.305-3.152.652a86.197 86.197 0 0 0-5.528 1.903c-1.683.691-3.324 1.426-4.921 2.293c-1.641.906-3.2 1.984-4.75 3.027a74.594 74.594 0 0 0-4.368 3.152c-1.379 1.086-2.675 2.293-3.93 3.504c-.687.692-1.25 1.516-1.898 2.293c-1.078 1.254-2.16 2.465-3.195 3.762c-.86 1.082-1.64 2.207-2.461 3.332c-1.465 1.984-2.719 4.106-3.883 6.227c-.476.863-.906 1.73-1.34 2.593c-.648 1.293-1.34 2.551-1.941 3.891c-.434.91-.781 1.902-1.04 2.898a401.29 401.29 0 0 0-1.769 6.399c-.52 1.906-.648 3.894-.687 5.84c-.047 1.73.129 3.418.3 5.144c.044.434-.214.953.301 1.297c-.171.477-.043.738.215.82c-.3.477.13.782-.039 1.215c-.047.086.13.258.211.387c0 .133-.039.305 0 .434c.047.39.219.777.219 1.21c0 .305.258.649.344.954c.043.129 0 .343-.086.433c-.258.301-.215.559.172.735c.218.558.132.82.09 1.082c.085.386-.048.515 0 .605c.343.692.476 1.469.515 2.246c0 .176.086.348.176.563c.043 0 0 .82 0 .82c.21-.125.386-.168.601-.258c.133.563.262 1.086.434 1.559c.215.347.215.515.129.558c.172.778.258 1.516.558 2.25c0-.82-.082-1.64-.21-2.421c.601.218 1.12.433 1.468.433c.043-.133.086-.305.13-.39c-.259-.258-.477-.645-.735-.907c.086.344 0 .477 0 .61c-.172-.09-.39-.176-.606-.266c.172-.21.348-.43.606-.687c0-.391-.215-.739-.82-.696c.257-.086.519-.21.82-.3c.476-.258-.043-.735-.043-1.34c.043-.735-.39-1.47-.52-2.246c-.215-1.211-.172-3.028-.3-4.239c-.258-.219-.477.344-.52.387a64.8 64.8 0 0 1 .344 3.113c-.258-.863-.43-1.816-.645-2.855c-.043.304-.086.433-.086.61c-.215.21-.043.476.086.776c-.3-.132-.648-.085-.648-.085v1.21c-.43-.433-.559-.777-.778-1.082c-.086-.343-.129-.691-.21-1.035c.081-.218 0-.347 0-.476c-.047-.305-.09-.649-.133-1.04c.043-.042-.043-.687-.043-.687c.343.04.562.082.777.082c-.43-.558-.129-.906.047-1.254c.086-.172.387-.215.473-.39c.347-.649.91-1.164.91-1.989c0-.39.129-.82.172-1.21c.086-.735.171-1.473.21-2.208c.09-.949 0-1.902.22-2.808a61.37 61.37 0 0 1 1.253-4.54a48.004 48.004 0 0 1 1.168-3.202c.645-1.684 1.254-3.371 2.074-4.97c1.164-2.339 2.504-4.585 3.801-6.878c.82-1.426 1.684-2.766 2.59-4.152c.863-1.34 1.723-2.723 2.719-3.977c1.386-1.773 2.894-3.418 4.578-4.887c1.73-1.558 3.371-3.156 5.226-4.586a52.59 52.59 0 0 1 7.684-4.933c2.203-1.164 4.492-2.074 6.781-2.942c1.469-.558 3.067-.82 4.578-1.296c1.727-.563 3.454-.82 5.266-.864c1.168-.043 2.293-.176 3.457-.304a81.45 81.45 0 0 0 3.195-.301c-.129.172-.172.261-.214.347c-.473.692-.993 1.383-1.47 2.075c-.386.562-.82 1.168-1.206 1.73c-.696.91-1.43 1.817-2.074 2.77c-.997 1.425-1.903 2.898-2.938 4.324c-1.035 1.383-2.16 2.68-3.238 4.02c-1.426 1.863-2.766 3.761-4.188 5.62c-1.297 1.774-2.676 3.465-3.93 5.239c-1.124 1.55-2.117 3.199-3.199 4.793c-1.593 2.383-3.191 4.715-4.789 7.093a455.561 455.561 0 0 1-3.8 5.407c-.086.133-.22.172-.344.258c-.348.562-.348.863-.477 1.125c-.344.648-.691 1.296-1.082 1.902c-.215.344-.515.648-.777.992c-.043-.52.691-.777.344-1.426c-.211.348-.43.649-.645.996l-.52 1.032c.172.132.477.218.172.476c-.129.219-.257.477-.386.696c.215-.133.343-.258.476-.434c0 .477-.262.863-.476 1.254c-.172.344-.606.605-.907.863c.043.043.344.172.387.215c.39-.129.52-.344.563-.215c.132-.172.261-.3.304-.433c.168-.43.43-.778.86-.95c.175-.086.304-.218.433-.343c1.297-1.344 2.633-2.641 3.801-4.067c1.813-2.207 3.457-4.5 5.184-6.746c.734-.953 1.597-1.902 2.375-2.812c.129.992.043 1.945 0 2.855c-.133 1.598-.22 3.2-.344 4.84c-.047.648 0 1.297-.047 1.945c0 .176-.129.305-.129.477c0 .433.129.91.129 1.34c-.129 1.601-.305 3.156-.434 4.757c-.043.344.13.692.211.996c-.21 2.333.266 4.801-.125 7.266c.301-.476.387-.777.387-1.082c.043-.258 0-.516 0-.82v-.434c.043-.777.215-1.597.129-2.379c-.086-.863-.086-1.683.086-2.508c.09-.343-.043-.777.176-1.21v.648c-.043 2.46.043 4.93-.301 7.395c-.043.214.133.605-.344.562c-.39.777.086 1.34-.344 1.773c-.09.086.082.473.125.735c-.175.52-.175.52.086.562c.043.95.13 1.813.172 2.723c.688-1.64.344-3.332.649-5.016c.043.692.086 1.383.043 2.114c0 1.129-.043 2.21-.086 3.332c0 .218-.043.433-.086.652c-.133.605-.172 1.21-.39 1.77c-.173.433-.083 1.085-.083 1.601v1.645c.172.738-.047 1.125.082 1.558c-.129.434-.172.563-.129.692l.13.648c.866-.086.476.563.82.91c-.258.348-.172.473-.172.649c0 .39-.04.738-.082 1.125c0 .996-.043 1.988-.043 2.941c0 .133.043.258.043.387c0 .09-.043 1.215-.043 1.215c.086.129 0 .257-.133.386c-.043 0-.172-5.492-.172-5.492h-.649c-.082 2.594.133 4.93-.343 7.352c-.52.043-.688.129-1.254.129c-1.34 0-2.676 0-4.016.043c-1.597 0-3.152.043-4.75.043c-.777 0-1.597.085-2.375.085c-1.035 0-2.117-.128-3.148-.128c-1.602 0-3.157.129-4.754.171c-1.164.043-2.332.043-3.496.09c-.778.04-1.559.082-2.332.168c-.348.043-.649.172-1.082.305c-.13 0-.43-.043-.688 0c-.437.086-.82.344-1.258.43c-.644.132-.82.304-.734.953v.433c-.043.082.953-.132.953-.132c-.09 0-.133.257-.262.476c.348-.133.563-.219.778-.305c.648.305 1.21.133 1.726.266c1.684.43 3.41.606 5.137.773c1.125.09 2.203.133 3.328.176c1.594.086 3.195.172 4.79.172c1.34 0 2.636-.133 3.972-.133c1.855 0 3.715.086 5.57.133c.39 0 .82-.047 1.254-.047h3.149c2.812-.086 5.617-.129 8.425-.21c1.598-.048 3.239-.133 4.836-.176l4.926-.133c1.898-.043 3.797-.043 5.656-.082c1.426 0 2.805-.047 4.235-.09c1.593-.043 3.234-.172 4.836-.258c.863-.043 1.726-.133 2.59-.215c1.038-.086 2.117-.215 3.152-.258c1.554-.09 3.152-.132 4.71-.218c1.942-.13 3.884-.301 5.872-.344c1.812-.086 3.668-.043 5.484-.086c1.598-.047 3.195-.133 4.84-.176l2.723-.129s1.812-.043 2.718-.133c1.555-.085 3.11-.257 4.665-.3c.992-.043 1.984 0 2.976-.043c1.598-.043 3.238-.133 4.84-.133c.601 0 1.25.09 2.027.133c-.344.3-.562.476-.82.691c.172.043.344.133.516.215a1.135 1.135 0 0 1-.688.215c-.09.219-.176.305-.262.738h.778c-.301 0-.563.39-.864.649c-.343-.09-.648 0-.82.476c.3.172.258.3.215.477c-.516.168-.906.343-.688.906c-.175.082-.39.172-.609.3c-.21.344-.602.43-.516.907c.172.043.344.133.477.172c-.219.086-.434.215-.648.3c-.778.477-.43.696-.258.91c-.133.087-.262.173-.39.216c.085.39.214.476.257.476c-.172.13-.39.305-.648.52c-.13.39-.305.562-.477.82c-.172.258-.258.605-.477.863c-.902.996-1.55 2.168-2.718 2.946c-.434.3-.82.691-1.207 1.082c-.778.734-1.47 1.554-2.29 2.25c-1.078.906-2.199 1.726-3.367 2.546c-1.425.997-2.847 1.993-4.273 2.942c-.777.52-1.64.906-2.461 1.383c-.824.476-1.602.91-2.422 1.383c-.516.343-.992.82-1.555 1.082c-1.425.609-2.937 1.125-4.406 1.687c-1.426.61-2.46 1.125-3.539 1.516a24.94 24.94 0 0 1-3.066.82c-.344.086-.735 0-1.125.043c-.735.133-1.47.305-2.203.39c-1.899.258-3.801.434-5.7.692c-1.125.133-2.203.344-3.324.477c-.777.043-1.598-.043-2.375-.043c-.562 0-1.168.132-1.73.043c-.907-.13-1.813-.344-2.72-.516c-.214-.043-.519-.133-.69-.043c-.344.172-.649-.086-.997 0c-.21.043-.43-.133-.644-.133c-.176-.039-.39.047-.61 0c-.472-.129-.902-.3-1.425-.258c-.516.043-1.035-.215-1.594-.343c-.777-.176-1.508-.344-2.29-.52c-.3-.086-.558-.219-.862-.39c-1.121 0-1.86-.044-2.547-.301c-.606-.215-1.168-.52-1.817-.434c-.168.043-.3-.039-.472-.039c-.133-.176-.258-.523-.387-.523c-.863.046-1.383-.688-2.117-.907c-.387-.132-.692-.562-1.078-.691c-.953-.39-1.727-1.211-2.805-1.34c-.348-.043-.691-.219-1.082-.344c.133.168.215.301.344.43c-1.25-.61-2.418-1.297-3.582-1.945c-.172-.043-.301-.215-.43-.305l-1.168-.777c-.645.132-.906-.13-1.082-.215c-1.164-.82-2.5-1.344-3.625-2.25c-.477-.39-1.035-.649-1.379-1.125c-.61-.735-1.34-1.254-2.16-1.688c-.649-.343-1.254-.734-1.856-1.12c-.304-.22-.609-.477-.609-.954c0-.305-.125-.605-.516-.433c-.171-.258-.343-.563-.562-.649c-.516-.21-.863-.605-1.25-.95c-.39-.347-.691-.823-1.164-.995c-.867-.344-1.387-1.078-1.902-1.684c-1.211-1.43-2.29-2.988-3.415-4.496c-.085-.133-.257-.219-.386-.348c.172.477.386.864.601 1.297c-.43-.172-.73-.476-.988-.777c-.047.043 2.977 5.016 2.977 5.016c.261.386.476.777.734 1.168a1.34 1.34 0 0 1-1.297-.692c-.387-.691-.82-1.125-1.684-1.035a7.734 7.734 0 0 1-.21-.953c-.176 0-.305 0-.61-.043a89.18 89.18 0 0 1 1.688 2.723c-.22-.13-.344-.215-.438-.258c.778.82 1.34 1.86 2.332 2.379c.215.992 1.34 1.468 1.598 2.421c-.211-.046-.39-.09-.606-.132c-.343-.43-.734-.864-1.12-1.34c.085.305.21.562.386.777c.52.649.996 1.297 1.598 1.86c.218.222.52.308.52.699c.343.172.476.21.605.21c.086.262-.043.653.472.567c.348.649.692.649 1.168.434c.563.562.864.605 1.254.261c0 .211.04.43.04.602c.175-.086.132-.215.132-.43c.215.172.344.258.43.344c.433.606.82 1.168 1.426 1.645c.82.691 1.554 1.425 2.328 2.074c1.515 1.254 3.203 2.293 4.883 3.246c2.074 1.168 4.062 2.422 6.175 3.543c2.547 1.344 5.27 2.25 8.075 2.898c1.039.22 2.03.434 3.07.692c.902.261 1.812.652 2.719.867c1.382.3 2.804.562 4.187.82c.3.043.61.086.953.13c.387.089.86-.087.946.046c.218.344.39.168.648.125c.3-.086.648-.086.992-.086c1.211.043 2.375.3 3.586.219c.262 0 .648-.219.867.21c.387-.171.602-.171.774-.21c.047.387 0 .387-.082.43c-.086.042-.22.085-.391.214c1.555.301 3.023.344 4.316 0c2.25.172 4.192-.086 6.051-.734c.172.215.301.52.559.086c.086-.129.305-.176.476-.219c.387-.086.864-.258 1.207-.129c.391.13.524-.215.82-.215a7.86 7.86 0 0 0 1.473-.132c.258-.04.52-.172.82-.258a2.095 2.095 0 0 0-.952-.219c.52-.258.996-.477 1.472-.687c-.09.128-.176.3-.347.3h.605c-.133 0-.305.387-.52.649c1.551-.39 2.977-.739 4.36-1.086c-.477-.906.516-.602.863-1.121c-.43.133-.863.258-1.297.343c1.469-.734 2.98-1.382 4.45-2.027c-.215.258-.477.387-.864.606c.258.039.434.039.563.082c.687.218.52-.43.734-.82c.82 0 1.164-.13 1.55-.258c.434-.133.864-.262 1.298-.434c.691-.3 1.34-.688 2.031-1.035c.129-.043.344 0 .516 0c.476-.305.648-.563.777-.52c.605.086 1.035-.133 1.207-.691c.3-.215.52-.39.734-.52c.95-.52 1.856-1.039 2.805-1.554c.348 0 .52 0 .606-.047a18.966 18.966 0 0 0 1.601-.864a3.644 3.644 0 0 1-.433-.214c.43-.09.558-.13.82-.22c1.035-1.214 2.46-2.034 3.539-2.984c.476-.043.476-.171.476-.257c.172-.22.344-.477.559-.653c.953-.863 1.984-1.597 2.852-2.507a61.005 61.005 0 0 0 3.582-3.895c1.035-1.211 2.074-2.418 2.937-3.762c1.211-1.86 2.246-3.761 3.324-5.71c.778-1.38 1.47-2.766 2.25-4.15c.082-.128.258-.3.387-.3c1.164-.133 2.332-.215 3.457-.348c.258-.043.559-.21.82-.343c-.132-.215-.218-.477-.343-.692c-.176-.261-.434-.476-.61-.738c-.172-.215-.3-.477-.43-.734c-.132-.215-.257-.387-.39-.606c-.262-.476-.52-.953-.738-1.469c-.043-.132-.13-.343-.082-.476c.777-1.684 1.078-3.5 1.812-5.188c.735-1.73.95-3.675 1.297-5.535c.3-1.773.473-3.547.688-5.316c.132-1.254.304-2.465.343-3.719c.266-1.988.176-3.852.133-5.71c-.043-1.642-.133-3.329-.215-4.974Zm-108.347 53.23c-.305-.344-.563-.734-.864-1.082l.13-.129c.472.52.949 1.04 1.421 1.602c-.258-.133-.558-.22-.687-.391m.687.39c.133-.042.262-.042.39-.085c.134.215.22.472.345.734c-.602-.047-.903-.305-.73-.648Zm44.914 17.86v-.133c.82-.086 1.598-.172 2.418-.258v.13c-.82.128-1.597.21-2.418.257ZM75.79 126c-.602.133-1.25.219-1.855.305c-.215.043-.477.261-.563-.13c-.086.044-.172.044-.258.087c.215.648.735.129 1.164.386c-.949.133-1.851.22-2.761.348v-.086c.261-.043.562-.086.82-.133v-.129c-.43-.043-.863-.085-1.297-.085c-.125 0-.3.175-.43.218a2.168 2.168 0 0 1-.562.086c-.734.043-1.465.043-2.16.086c-.043 0-.13-.043-.172-.043v-.133c2.89-.386 5.742-.773 8.637-1.164c.043.086.043.172.085.258c-.257 0-.43.09-.648.133Zm.648-.43c.997-.132 1.903-.215 2.852-.343c-1.984.558-2.633.644-2.848.343ZM38.825 38.258c1.38-1.903 2.805-3.805 4.188-5.75c.43-.567.777-1.172 1.207-1.735c.133-.171.304-.257.52-.433l-.044-.082c.172-.215.344-.39.434-.563c.219-.343.348-.734.52-1.125c.042-.082.171-.168.171-.168c.61.301.61-.343.82-.562a31.02 31.02 0 0 0 1.126-1.34c.257-.348.515-.648.734-1.04c.043-.132-.086-.343-.133-.519h-.129c.133-.086.262-.214.39-.3c.044 0 .044 0 .087-.043c.258-.391.52-.782.777-1.125c.516-.692 1.078-1.383 1.684-1.989a8.492 8.492 0 0 1-.262.606c.047 0 .047.043.086.043c.52-.692 1.082-1.34 1.602-2.035c-.047-.04-.09-.086-.133-.086c-.215.218-.387.433-.606.652c-.039-.047-.082-.09-.129-.09c.434-.562.868-1.12 1.297-1.77c.086.13.172.301.344.65c.176-.434.348-.735.477-1.04c-.13.133-.301.262-.43.39l-.133-.128l.777-1.168c.82-1.168 1.641-2.38 2.461-3.547c.305-.43.692-.777.953-1.211c.82-1.64 2.118-2.941 3.11-4.453c.215-.3.515-.563.777-.82c.211-.262.387-.176.563.043c1.164 1.468 2.328 2.98 3.492 4.453c.867 1.082 1.73 2.117 2.55 3.242c.993 1.387 1.946 2.77 2.938 4.152c1.125 1.598 2.246 3.2 3.324 4.84c1.641 2.426 3.196 4.848 4.836 7.266c1.211 1.773 2.422 3.504 3.586 5.277H80.45c-2.027-.043-4.101-.215-6.129-.129c-2.765.133-5.57.434-8.336.652c-3.496.301-7.039.344-10.535.344c-1.254 0-2.508.176-3.758.262c-1.511.086-2.98.172-4.492.215c-1.773.086-3.496.129-5.265.176c-.996.039-2.032 0-3.114 0Zm49.531 19.89v.391c-.043 0-.085.043-.171.043c-.172-.605-.344-1.254-.563-1.86c-.43-1.257-.906-2.511-1.683-3.632c-.868-1.211-1.641-2.465-2.508-3.719c-.215-.305-.52-.562-.778-.82c-.91-.996-1.816-2.035-2.98-2.77a35.706 35.706 0 0 0-5.399-2.77c-.52-.214-.996-.476-1.511-.777h1.035l7.383-.132c1.597-.04 3.156-.04 4.75-.125c.39 0 .605.128.82.472c.39.649.777 1.297 1.21 1.95c.044.081.13.21.13.343c0 .953 0 1.946.043 2.899c.043.992.133 1.945.172 2.941c0 .992-.086 2.031-.043 3.066c.043 1.473.086 2.989.086 4.497Zm-46.468-14.48c2.031-.086 3.972-.215 5.96-.305c1.551-.086 3.153-.129 4.704-.215c.648-.043 1.254-.082 1.902 0c-.691.348-1.383.696-1.988 1.125c-.778.52-1.508 1.211-2.29 1.774c-.777.562-1.468 1.254-2.116 1.988c-.82.992-1.727 1.86-2.594 2.809c-.606.695-1.293 1.34-1.813 2.078c-.734.95-1.379 1.984-2.07 3.066c.215-4.11.477-8.172.3-12.324ZM70.09 85.27c-1.383.343-2.809.734-4.235.906c-1.207.176-2.46.133-3.714.133a41.21 41.21 0 0 1-3.328-.133c-1.25-.13-2.504-.258-3.715-.82c-1.035-.477-2.114-.907-3.149-1.426c-1.039-.52-2.078-1.125-2.855-2.078c-.559-.692-1.336-1.254-2.028-1.86c.13.52.43.953.907 1.254c-.215.258-.52.133-.953-.562c-.125.086-.258.132-.344.171c.133-.3.258-.605.39-.863c-.171-.344-.39-.734-.562-1.082a37.022 37.022 0 0 1-.992-1.73c-.086-.13-.086-.258-.172-.387a9.023 9.023 0 0 1-.61-.781c-.343-.516-.644-1.078-1.078-1.598c0 .133.047.262.047.434c-.047 0-.09.043-.09.043l-.906-2.207c-.043 0-.043 0-.086.043l.774 2.855c-.04 0-.082.043-.13.043c-.124-.172-.257-.344-.343-.559c-.086-.347-.348-.347-.559-.218c-.132.086-.218.39-.175.52c.304.734.648 1.468.996 2.202c.086.262.172.477.3.739c.047.086.176.171.176.3c.172.344.301.688.516.996c.39.516.82 1.036 1.21 1.555c.388.52.731 1.082 1.079 1.598c.043.09.172.09.21.133c.22.648.954 1.12 1.474.863c.128.996 1.207 1.34 1.64 2.293c-.52-.219-.906-.39-1.254-.563c-.043.043-.043.086-.086.172c.516.258 1.035.52 1.508.82c.434.262.867.52 1.254.82c.52.477 1.125.74 1.855.911c-.039-.133-.082-.176-.082-.176c1.208.563 2.461 1.168 3.41 1.64c-4.492.09-9.285.177-14.25.263c0-.82-.042-1.602-.042-2.422c0-.344.082-.649.039-.996c-.133-1.985-.133-3.977-.387-5.922c-.258-2.074-.258-4.11-.215-6.188c.04-1.12-.043-2.289-.09-3.414c0-1.512 0-2.984.047-4.496c0-.215.086-.387.176-.605h.129c.043.086 0 .218.082.261c.133.133.348.344.434.301c.257-.172.648-.344.734-.605a4.23 4.23 0 0 0 .305-1.598c0-.39.171-.648.343-.91c.086-.13.13-.258.22-.43c-.173-.133-.349-.219-.563-.39c.175-.477.132-1.04.78-1.297c.083-.043.083-.262.13-.391c.043-.348.082-.738.129-1.082c.086.133.132.172.214.258a.628.628 0 0 1 .086-.133c0-.168-.043-.516 0-.516c.52-.086.301-.648.563-.906c.039-.047-.043-.176-.043-.262c0-.086 0-.214.039-.214c.605-.133.52-.782.906-1.082c.133-.09.172-.215.348-.434c.344.605-.262.91-.305 1.34c.735-.43.95-1.469.52-1.774c.172-.129.343-.3.472-.472c.477-.52.993-.996 1.426-1.516c.305-.387.477-.863.778-1.25c.175-.219.52-.39.777-.523c.777-.43 1.512-.903 1.988-1.641c.086-.086.215-.172.344-.258c.129-.086.39-.086.434-.215c.042-.086-.086-.304-.172-.433c.168-.086.343-.258.687-.434c-.129.262-.172.434-.258.61l.211.21c.39-.3.996-.644 1.387-.906c0-.039-.219-.21-.219-.21c-.258.128-.644.343-1.035.515c.082-.129.082-.215.133-.258c.601-.39 1.207-.777 1.855-1.082a209.636 209.636 0 0 1 4.532-2.031c.261-.13.609-.043.91-.043c.129 0 .21 0 .343-.043c.688-.215 1.383-.434 2.075-.606a3.56 3.56 0 0 1 .949-.129c1.293.043 2.59.043 3.883.13a6.576 6.576 0 0 1 1.597.343c.649.219 1.34.52 1.946.82a23.03 23.03 0 0 1 2.117 1.301c1.25.82 2.418 1.73 3.668 2.465c1.21.734 2.16 1.73 2.937 2.856c.954 1.34 2.032 2.55 2.461 4.191l.649 2.855c.129.52.433 1.04.3 1.641c-.214 1.086-.39 2.207-.562 3.29c-.082.433-.172.87-.125 1.296c.082 1.344-.437 2.512-.953 3.723c-.176.386-.434.777-.649 1.21c.043.044.301.172.344.172l.39-.777c.044 0 .044 0 .087.047c-.215.602-.39 1.254-.606 1.86c-.515 1.34-1.035 2.722-1.683 4.019c-.344.734-.953 1.34-1.383 2.035c-.43.602-.774 1.25-1.207 1.813c-.387.476-.777.953-1.297 1.296c-1.164.868-2.375 1.73-3.625 2.422c-.777.477-1.684.739-2.547.953Zm-23.02-2.297l-.043.043c-.09-.043-.218-.086-.304-.172l-1.04-1.559c-.081-.129-.128-.258-.081-.43a35.08 35.08 0 0 0 1.468 2.118m26.864 5.922c1.941-.82 3.539-1.985 5.004-3.329c.218-.214.433-.43.695-.605c1.812-1.125 3.148-2.68 4.36-4.41c1.382-1.989 2.288-4.239 3.413-6.356c.086-.175.172-.343.258-.476c-.086 4.93.477 9.773 1.121 14.66c-4.879.172-9.844.344-14.851.52Zm43.789-1.297c-.043.09-.133.175-.176.261c-.043-.086-.043-.214-.086-.39c-.258.691-.82.347-1.207.347c-2.332.043-4.707.043-7.043.043c-2.242 0-4.531 0-6.777.04c-.735 0-1.512.171-2.246.218c-1.77.082-3.54.13-5.313.172c-.129 0-.258-.215-.473-.387a3.048 3.048 0 0 1-.261.387c-.047-.086-.13-.172-.22-.3a2.5 2.5 0 0 1-.128.343h-.125c-.09-.602-.262-1.164-.262-1.77c0-1.296.133-2.593.172-3.894c.047-.602 0-1.164 0-1.73c.176.132.305.218.477.347c.086-.172.172-.3.261-.43c0 0-.09-.043-.175-.128c.082-.043.171-.133.171-.176c.043-.13.13-.258.13-.344c0-.305-.087-.562-.13-.82c.043 0 .086 0 .13-.047l.257 1.297h.133c-.176-.301.387-.559-.086-.907c-.043-.043.043-.3.043-.433c-.133-.258-.215-.516-.348-.863c.043-.043.176-.086.305-.13c-.172-.085-.305-.171-.433-.214c.433-.39.433-.606.042-1.04c.09-.038.176-.038.176-.081c0-.39 0-.778-.086-1.164c-.086-.438.13-.953-.52-1.215c.044.133.087.219.173.344c0 0-.13.046-.258.132c-.563-.52-.215-1.214-.344-1.992c.3.09.516.176.73.266c-.085-.309-.3-.653-.43-1.043h-.175V69.44c0 .047.3.047.477.09c0-.043.039-.086.039-.133c-.13-.171-.301-.343-.477-.558l.09-.09c-.344-.43-.172-1.031-.172-1.164v-3.027c.434.433-.215.996.434 1.254v-.43h-.047c-.043-.649-.043-1.297-.086-1.95h-.082c-.047.09-.047.133-.09.22h-.086l.258-10.337c.433.563.906 1.086 1.21 1.641c.993 1.82 2.29 3.379 3.497 5.02c1.039 1.43 1.988 2.984 2.937 4.453c1.165 1.773 2.29 3.547 3.457 5.316c.86 1.344 1.77 2.684 2.672 3.984c.82 1.165 1.688 2.29 2.551 3.415c.73.996 1.512 1.988 2.242 2.984c.868 1.21 1.73 2.422 2.594 3.59c.43.601.906 1.207 1.379 1.812c.262.348.648.61.91.82c-.043 0-.086 0-.172-.042c.133.175.215.304.301.39c.477.258.52.52.262.91Zm2.199-10.809v-.3c0 .085.043.21 0 .3m1.469-19.066c-.043 0-.301-.262-.344-.305c-.043.129 0 .258-.086.434c-.043-.13-.344-.086-.344-.215c-.047.605.258 1.21.211 1.816c.133-.09.649-.133.777-.262a.35.35 0 0 0 .176.086c-.863.653-.648 1.297-.258 2.035c.082.172.344.516.082.864c-.082.086.047.344.09.562h.125v.082l-.39.133c-.082-.133-.602-.387-.602-.61v2.212c.434.129.434.734.606 1.039c.09-.133.129-.219.175-.348l.043.043a5.114 5.114 0 0 1-.172.777c-.085.387-.171.735-.214 1.121c0 .043.082.133.082.176c-.473 1.082-.215 2.29-.387 3.41c-.129.82 0 1.692-.086 2.555c-.09.734-.262 1.512-.434 2.25c-.043.129-.129.172-.343.258c.086-.52.043-.863-.043-1.34c-.047 0-.61-.305-.653-.305c0 .61.344 1.43.477 2.118c-.133-.043-.649-.344-.692-.344c-.09.52-.09 1.21-.128 1.773c-.047.434-.434.82-.477 1.297c0 .262.3.434.258.867h.344c0-.863.39-1.644.39-2.55h.13c.042.085.175.171.132.214c-.09.477-.266.996-.219 1.473c0 .258.215.516.133.82c-.09.262-.133.52-.176.907c-.043-.215-.086-.301-.086-.43c-.043 0-.433-.043-.476-.043c-.043.258.304.516.258.734c-.043.043-.086.043-.172.086l-1.426-2.078a407.273 407.273 0 0 1-3.367-4.972a9.938 9.938 0 0 1-.782-1.297a60.425 60.425 0 0 0-4.445-6.618c-1.254-1.597-2.25-3.332-3.414-5.011c-1.078-1.602-2.156-3.16-3.238-4.762c-.387-.516-.864-.992-1.207-1.555c-1.121-1.773-2.117-3.59-3.239-5.36c-.949-1.472-1.984-2.901-2.98-4.327c-.344-.477-.688-.996-1.035-1.512a.608.608 0 0 1-.086-.3c-.086-.954-.176-1.903-.219-2.813c0-.863.09-1.727.09-2.637v-.777c0-.219.04-.39.04-.61c.042-.039.085-.125.128-.168c-1.254 0-2.547-.046-3.8 0c-.821.04-1.25-.304-1.813-.914c-1.64-1.855-2.852-3.976-4.278-5.965c-1.336-1.902-2.718-3.765-4.101-5.625c-1.125-1.511-2.246-2.98-3.367-4.496c-1.254-1.73-2.461-3.457-3.758-5.187c-1.559-2.074-3.156-4.152-4.75-6.227c-.742-.953-1.563-1.859-2.383-2.855c.562.09 1.086.176 1.602.219l2.074.129c1.554.128 3.11.214 4.66.43c1.297.175 2.594.433 3.933.648c2.852.476 5.657 1.254 8.38 2.164c1.597.52 3.148 1.21 4.706 1.86c3.497 1.425 6.825 3.155 10.106 4.972c1.035.562 1.64 1.469 2.414 2.293c1.125 1.168 2.25 2.332 3.328 3.543c1.25 1.425 2.414 2.898 3.625 4.367c1.078 1.297 2.2 2.594 3.285 3.894c.344.387.606.864.903 1.297c.691 1.04 1.468 2.035 2.074 3.157c.43.824.687 1.773.992 2.683c.43 1.34.863 2.637 1.297 3.977c.3.996.555 2.035.773 3.07c.172.691.133 1.426.344 2.117c.262.91 0 1.903.262 2.813c.043.086.082.218.129.304c.172.172.3.344.043.602c-.04.043-.04.215 0 .348c.09-.086.132-.172.218-.305c0 .09.04.133.04.172c0 .172-.043.347 0 .52c0 .085.085.21.128.3c.086-.09.172-.133.344-.262c.39 1.473.434 2.942.434 4.453c0 1.43.258 2.856-.344 4.243c.129-.477-.172-.914-.043-1.344Zm-97.555-4.285c.176.132.477.214.176.476c-.219.3-.477.563-.649.906c-.172.305-.304.39-.562.176a22.2 22.2 0 0 1 1.035-1.559Zm86.8 45.32c0 .129.044.215.044.344c.09-.172.09-.258.132-.344Zm0 .387v-.043Zm-8.808 16.867l-7.516-41.688c-.128-.039-.3-.125-.601-.215c.086.176.129.305.172.434c.215-.043.3-.043.387-.086c0-.043 0-.086.046-.133l7.516 41.692Zm-7.773-51.07c-.043.128-.043.257-.043.386c0-.129 0-.262.047-.39Zm.043.863c-.043 0-.043 0-.086-.047v.043c.047.043.047.043.09 0Zm-.086.343v-.304c-.125.043-.254.043-.43.09c.219.082.434.125.434.21Zm0 0\\\"/>\"\n\t\t},\n\t\t\"postcss-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#3f526b\\\" d=\\\"m111.83 115.45l.272-6.577h2.725l.7 4.164a9.556 9.556 0 0 0 3.347.623c2.231 0 3.763-.728 4.593-2.18c.285-.493.428-1.135.428-1.926a3.46 3.46 0 0 0-.72-2.14c-.48-.635-1.272-1.228-2.374-1.772a50.458 50.458 0 0 0-3.268-1.478a14.798 14.798 0 0 1-2.918-1.577a7.72 7.72 0 0 1-2.141-2.257c-.558-.895-.838-1.971-.838-3.23c0-1.258.229-2.316.682-3.173a6.65 6.65 0 0 1 1.849-2.178c1.633-1.246 3.631-1.869 5.993-1.869c2.284 0 4.475.39 6.577 1.168l.545 6.694h-2.685l-1.712-4.203c-.779-.26-1.758-.39-2.939-.39c-1.18 0-2.18.273-2.997.818c-.817.545-1.227 1.375-1.227 2.49c0 1.298.65 2.361 1.946 3.192c.572.39 1.207.733 1.908 1.032c.7.298 1.51.654 2.432 1.07c.922.414 1.784.907 2.589 1.478c.804.571 1.452 1.168 1.946 1.79c.933 1.168 1.4 2.505 1.4 4.01s-.254 2.743-.759 3.716a6.78 6.78 0 0 1-2.043 2.392c-1.608 1.193-3.736 1.79-6.383 1.79c-2.646 0-4.955-.493-6.927-1.479zm-19.732 0l.272-6.577h2.725l.7 4.164a9.556 9.556 0 0 0 3.347.623c2.231 0 3.763-.728 4.593-2.18c.285-.493.428-1.135.428-1.926a3.46 3.46 0 0 0-.72-2.14c-.48-.635-1.272-1.228-2.374-1.772a51.35 51.35 0 0 0-3.271-1.478a14.798 14.798 0 0 1-2.919-1.577a7.72 7.72 0 0 1-2.14-2.257c-.559-.895-.838-1.971-.838-3.23c0-1.258.228-2.316.682-3.173a6.663 6.663 0 0 1 1.85-2.178c1.634-1.246 3.631-1.869 5.993-1.869c2.284 0 4.475.39 6.577 1.168l.545 6.694h-2.686l-1.712-4.203c-.778-.26-1.758-.39-2.938-.39c-1.18 0-2.18.273-2.997.818c-.817.545-1.227 1.375-1.227 2.49c0 1.298.65 2.361 1.946 3.192c.572.39 1.207.733 1.908 1.032c.7.298 1.51.654 2.432 1.07c.922.414 1.784.907 2.59 1.478c.803.571 1.451 1.168 1.945 1.79c.933 1.168 1.4 2.505 1.4 4.01s-.254 2.743-.759 3.716a6.78 6.78 0 0 1-2.043 2.392c-1.607 1.193-3.736 1.79-6.382 1.79c-2.647 0-4.956-.493-6.928-1.479zm-3.114-.272c-1.634 1.167-3.93 1.75-6.888 1.75c-3.58 0-6.641-1.141-9.185-3.424c-2.775-2.517-4.164-5.812-4.164-9.885c0-4.307 1.323-7.733 3.97-10.274c2.413-2.31 5.474-3.464 9.185-3.464c1.66 0 3.58.246 5.76.74l.739 7.083h-2.647L84.237 93.5c-.494-.182-1.35-.273-2.569-.273a8.009 8.009 0 0 0-3.522.817a8.694 8.694 0 0 0-2.86 2.18c-1.635 1.92-2.453 4.255-2.453 7.005c0 2.984.897 5.449 2.686 7.395c1.817 1.97 4.23 2.957 7.239 2.957c1.117 0 2.14-.169 3.074-.506c.934-.338 1.608-.661 2.024-.973z\\\"/><path fill=\\\"#dd3a0a\\\" d=\\\"M63.99 11.08a18.99 18.99 0 0 0-1.937.178c-.623.067-1.247.179-1.848.27c-.733.088-1.468.132-2.203.222c-.69.09-1.402.224-2.092.336c-.245.045-.49.132-.736.176c-.533.111-1.09.157-1.625.336c-.956.29-1.913.627-2.848.982c-.869.357-1.716.736-2.539 1.182c-.846.467-1.648 1.022-2.45 1.558a38.321 38.321 0 0 0-2.25 1.627c-.71.559-1.378 1.183-2.025 1.807c-.355.355-.646.78-.98 1.182c-.556.647-1.112 1.27-1.646 1.939c-.444.558-.847 1.138-1.27 1.719c-.756 1.023-1.401 2.116-2.002 3.209c-.245.446-.467.893-.69 1.338c-.334.668-.69 1.314-1.001 2.005a8.477 8.477 0 0 0-.535 1.495a198.096 198.096 0 0 0-.913 3.298c-.267.982-.334 2.009-.355 3.012c-.023.892.065 1.76.154 2.653c.023.223-.11.49.156.667c-.088.246-.022.382.11.424c-.154.246.068.402-.02.625c-.023.044.067.135.11.201c0 .068-.021.156 0 .223c.023.2.113.402.113.625c0 .156.133.334.178.49c.022.066 0 .178-.045.223c-.134.156-.113.29.088.379c.112.29.069.423.047.559c.044.2-.023.265 0 .31c.177.357.244.76.265 1.16c0 .09.045.178.09.29c.022 0 0 .423 0 .423c.11-.066.2-.088.31-.133c.068.29.134.558.223.803c.112.178.113.267.069.29c.088.4.132.778.287 1.157c0-.423-.042-.846-.11-1.248c.312.112.58.223.758.223c.023-.068.044-.156.067-.201c-.134-.133-.246-.333-.38-.467c.045.178 0 .247 0 .314a3.974 3.974 0 0 0-.31-.136c.089-.11.177-.223.31-.356c0-.201-.108-.38-.421-.357c.133-.044.266-.11.422-.156c.245-.133-.022-.378-.022-.69c.022-.378-.2-.758-.267-1.16c-.112-.624-.09-1.56-.157-2.184c-.133-.111-.243.179-.265.202c.067.534.133 1.067.177 1.603c-.132-.446-.223-.935-.334-1.47c-.022.156-.044.222-.044.312c-.11.11-.022.245.044.4c-.155-.067-.334-.043-.334-.043v.623c-.221-.223-.287-.399-.4-.556c-.044-.178-.067-.356-.11-.534c.043-.112 0-.18 0-.246a13.445 13.445 0 0 1-.068-.537c.022-.022-.021-.355-.021-.355c.178.02.29.043.4.043c-.222-.288-.067-.466.024-.645c.045-.09.199-.11.244-.201c.177-.334.469-.6.469-1.025c0-.2.066-.424.087-.625c.045-.38.09-.758.112-1.137c.045-.49-.001-.981.111-1.45a31.8 31.8 0 0 1 .647-2.341c.177-.558.38-1.09.601-1.649c.334-.87.645-1.74 1.069-2.564c.6-1.205 1.29-2.364 1.959-3.545c.423-.736.869-1.427 1.337-2.14c.445-.692.89-1.404 1.403-2.051a18.135 18.135 0 0 1 2.36-2.52c.89-.802 1.736-1.627 2.692-2.363a27.068 27.068 0 0 1 3.963-2.543c1.137-.6 2.316-1.072 3.496-1.518c.758-.289 1.58-.422 2.36-.668a9.37 9.37 0 0 1 2.717-.445c.6-.023 1.178-.09 1.779-.156a46.24 46.24 0 0 0 1.648-.156c-.067.088-.089.133-.111.177c-.244.357-.51.714-.756 1.07c-.2.29-.422.604-.623.893c-.357.47-.737.937-1.07 1.428c-.512.736-.98 1.493-1.514 2.228c-.533.714-1.113 1.384-1.67 2.075c-.734.96-1.426 1.94-2.16 2.898c-.668.914-1.379 1.786-2.025 2.7c-.579.8-1.09 1.649-1.647 2.472c-.823 1.227-1.647 2.43-2.47 3.656c-.647.936-1.292 1.85-1.96 2.787c-.044.068-.111.088-.177.133c-.178.29-.179.447-.246.58c-.178.334-.356.668-.557.98c-.112.178-.267.334-.4.512c-.022-.267.355-.4.177-.736c-.11.18-.223.335-.334.514l-.267.533c.087.067.238.112.094.24c-.015-.052-.09-.088-.147-.13c-.178.245-.355.512-.533.802c.134.11.2.069.289-.088c.078-.156.19-.278.291-.41c-.035.065-.07.13-.106.19a.8.8 0 0 0 .245-.223c0 .245-.133.444-.245.644c-.088.178-.31.313-.466.446c.022.022.176.09.199.113c.2-.068.268-.18.29-.113c.069-.09.135-.156.157-.223c.088-.223.221-.4.444-.49c.09-.045.155-.112.222-.178c.669-.692 1.359-1.36 1.96-2.096c.935-1.138 1.781-2.32 2.673-3.478c.377-.49.822-.98 1.223-1.45c.066.513.022 1.004 0 1.473c-.068.824-.112 1.65-.178 2.496c-.023.335.001.667-.022 1.002c0 .09-.068.157-.068.246c0 .223.068.468.068.692c-.067.825-.157 1.626-.224 2.451c-.023.178.065.357.11.514c-.11 1.203.136 2.475-.065 3.746c.155-.246.199-.401.199-.557c.021-.134 0-.268 0-.424v-.222c.021-.402.11-.825.066-1.227c-.044-.446-.044-.869.045-1.293c.045-.178-.022-.402.09-.625v.334c-.022 1.27.024 2.542-.154 3.813c-.023.111.067.311-.178.289c-.201.4.044.691-.178.914c-.045.045.042.245.065.379c-.09.268-.089.269.045.29c.022.491.066.936.088 1.405c.355-.846.178-1.718.336-2.588c.022.357.044.714.021 1.092c0 .581-.023 1.137-.045 1.717c0 .111-.023.224-.045.336c-.067.313-.087.624-.199.914c-.089.223-.045.557-.045.824v.847c.089.38-.022.58.045.803c-.068.224-.09.29-.068.358l.068.334c.446-.045.244.29.422.468c-.134.18-.088.246-.088.336c0 .2-.022.38-.045.58c0 .513-.021 1.025-.021 1.516c0 .068.021.132.021.2c0 .045-.021.626-.021.626c.044.066-.001.133-.069.2c-.02 0-.088-2.833-.088-2.833h-.334c-.044 1.337.068 2.542-.177 3.791c-.268.022-.356.067-.647.067c-.69 0-1.38 0-2.07.021c-.824 0-1.625.022-2.45.022c-.399 0-.823.045-1.224.045c-.535 0-1.09-.067-1.623-.067c-.825 0-1.627.068-2.451.09c-.6.022-1.2.022-1.801.045c-.402.021-.804.042-1.203.088c-.178.022-.334.087-.557.154c-.067 0-.222-.022-.355 0c-.224.045-.424.18-.649.225c-.334.068-.423.155-.379.49v.223c-.022.044.49-.069.49-.069c-.045 0-.066.135-.134.246c.18-.067.29-.112.402-.156c.334.157.624.07.89.137c.869.222 1.757.311 2.647.398c.58.045 1.136.07 1.715.09c.823.045 1.648.09 2.47.09c.691 0 1.361-.068 2.05-.068c.956 0 1.914.044 2.87.068c.201 0 .425-.023.647-.023h1.623c1.449-.044 2.896-.07 4.344-.112c.825-.023 1.671-.067 2.494-.09l2.537-.068c.98-.022 1.96-.02 2.918-.04c.735 0 1.448-.027 2.184-.048c.822-.022 1.668-.089 2.492-.133c.446-.022.891-.067 1.336-.11c.535-.045 1.092-.11 1.625-.134c.802-.045 1.626-.068 2.428-.113c1.001-.066 2.003-.155 3.027-.178c.936-.044 1.893-.02 2.828-.043c.824-.023 1.648-.068 2.494-.09l.936-.044l1.65 9.15c-.098.07-.193.14-.293.21c-.733.514-1.468 1.026-2.203 1.516c-.4.267-.846.468-1.27.713c-.422.246-.824.469-1.247.713c-.268.178-.512.423-.801.559c-.735.313-1.515.579-2.272.869c-.736.313-1.27.58-1.826.781a12.56 12.56 0 0 1-1.58.422c-.178.046-.38 0-.58.024c-.379.067-.756.157-1.135.2c-.98.134-1.96.224-2.94.358c-.579.068-1.135.177-1.714.244c-.4.022-.824-.021-1.225-.021c-.289 0-.6.068-.89.023c-.467-.067-.935-.178-1.403-.267c-.11-.022-.267-.068-.355-.022c-.178.09-.335-.044-.514 0c-.11.023-.22-.068-.332-.068c-.09-.021-.203.023-.314 0c-.246-.066-.468-.155-.737-.133c-.264.022-.532-.112-.82-.178c-.402-.09-.779-.177-1.182-.267a2.013 2.013 0 0 1-.443-.201c-.58 0-.958-.022-1.314-.157c-.312-.11-.602-.267-.936-.222c-.088.022-.153-.022-.244-.022c-.068-.09-.133-.267-.2-.267c-.444.022-.712-.357-1.091-.47c-.2-.067-.356-.288-.557-.355c-.49-.2-.888-.624-1.445-.691c-.178-.023-.355-.112-.557-.178c.068.088.11.156.178.223c-.645-.313-1.246-.67-1.848-1.004c-.088-.022-.155-.11-.222-.156l-.6-.4c-.334.067-.468-.068-.558-.112c-.601-.423-1.292-.692-1.871-1.16c-.246-.202-.534-.335-.711-.58c-.313-.38-.69-.647-1.114-.87c-.333-.177-.645-.379-.957-.58c-.156-.111-.312-.244-.312-.49c0-.156-.065-.312-.266-.222c-.089-.134-.177-.29-.289-.334c-.267-.11-.446-.315-.646-.493c-.2-.177-.355-.422-.6-.511c-.446-.178-.714-.555-.98-.867c-.625-.737-1.182-1.54-1.76-2.319c-.045-.068-.135-.113-.201-.18c.088.246.201.446.312.668c-.222-.088-.378-.244-.512-.4c-.022.023 1.535 2.586 1.535 2.586c.136.2.246.401.38.602a.687.687 0 0 1-.669-.358c-.2-.355-.422-.577-.867-.531a3.91 3.91 0 0 1-.111-.492c-.09 0-.156.001-.313-.022c.313.49.58.914.87 1.405c-.113-.068-.179-.113-.225-.135c.4.423.69.958 1.201 1.226c.112.512.69.758.824 1.248c-.11-.022-.2-.043-.312-.066c-.178-.223-.379-.446-.578-.691c.044.155.11.29.199.402c.267.334.513.667.824.957c.112.113.268.159.268.36c.177.088.244.109.31.109c.046.135-.02.336.246.29c.178.335.357.336.602.225c.29.29.447.313.646.135c0 .11.022.22.022.31c.089-.044.068-.11.068-.222c.11.089.177.134.221.178c.222.313.423.602.734.847c.423.357.802.736 1.202 1.07c.78.648 1.65 1.183 2.517 1.673c1.07.602 2.093 1.249 3.184 1.828c1.313.692 2.717 1.162 4.164 1.496c.534.111 1.046.22 1.582.353c.465.136.932.337 1.4.448c.713.156 1.448.29 2.16.423c.155.023.313.045.49.067c.2.045.444-.044.489.023c.112.178.2.089.334.067c.155-.045.334-.045.512-.045c.623.022 1.224.155 1.847.111c.136 0 .336-.113.447.11c.2-.09.312-.089.4-.11c.025.2 0 .2-.042.223c-.046.022-.112.044-.201.111c.8.156 1.558.178 2.224 0c1.16.089 2.162-.045 3.12-.379c.088.112.155.268.289.045c.044-.068.156-.091.246-.113c.2-.045.445-.135.623-.069c.201.068.267-.109.422-.109c.268 0 .512-.024.757-.068c.134-.022.269-.088.424-.133a1.078 1.078 0 0 0-.49-.113c.268-.134.512-.246.758-.356c-.045.066-.09.156-.178.156h.31c-.067 0-.156.2-.267.334c.8-.2 1.535-.379 2.248-.558c-.245-.467.267-.31.445-.578a6.931 6.931 0 0 1-.67.177c.758-.378 1.537-.712 2.293-1.047c-.11.134-.244.2-.443.313c.134.021.222.022.29.043c.354.112.267-.223.378-.424c.423 0 .6-.065.8-.133c.223-.067.445-.134.669-.222c.355-.156.69-.356 1.047-.534c.067-.023.176 0 .265 0c.246-.157.334-.291.4-.27c.314.046.534-.067.624-.355l.064-.046c.09.197.267.219.557.02c-.179 0-.356-.022-.512-.044c-.016 0-.022.01-.031.016c.11-.082.213-.161.3-.215c.49-.267.955-.534 1.446-.8c.178 0 .268-.001.312-.024a9.67 9.67 0 0 0 .825-.446a1.865 1.865 0 0 1-.223-.111c.162-.033.226-.056.31-.082l.022.12l.002.001l-.022-.121c.03-.01.076-.018.112-.03c.533-.625 1.268-1.05 1.824-1.54c.245-.022.246-.09.246-.133c.088-.112.177-.244.287-.334c.49-.446 1.025-.825 1.47-1.293a31.677 31.677 0 0 0 1.849-2.008c.533-.624 1.068-1.248 1.513-1.94c.624-.958 1.158-1.94 1.715-2.945c.401-.712.756-1.425 1.158-2.138c.043-.068.133-.157.2-.157c.6-.067 1.204-.11 1.783-.177c.133-.022.288-.11.422-.178c-.068-.112-.112-.246-.178-.357c-.09-.136-.223-.244-.313-.38c-.088-.11-.155-.245-.222-.378c-.068-.11-.133-.2-.2-.313a8.123 8.123 0 0 1-.38-.758c-.022-.067-.069-.176-.045-.244c.4-.869.557-1.806.935-2.676c.378-.891.49-1.894.668-2.853c.156-.914.246-1.829.356-2.742c.067-.647.156-1.27.177-1.916c.136-1.026.09-1.986.069-2.946c-.022-.846-.07-1.714-.112-2.562l-.001-.004c-.044-.87-.065-1.738-.155-2.607c-.155-1.182-.313-2.386-.58-3.545c-.2-.959-.532-1.874-.867-2.787c-.423-1.07-.846-2.163-1.38-3.188c-.869-1.65-2.005-3.122-3.052-4.66c-.692-.981-1.581-1.784-2.25-2.787c-.378-.58-.935-1.069-1.492-1.514c-.89-.715-1.825-1.363-2.76-1.986a27.516 27.516 0 0 0-2.183-1.383c-.6-.336-1.246-.602-1.87-.893c-.712-.334-1.403-.736-2.204-.892c-.202-.042-.378-.11-.579-.178c-.511-.178-1.003-.377-1.515-.533c-.779-.245-1.536-.535-2.338-.736a21.44 21.44 0 0 0-2.379-.448c-.89-.13-1.804-.176-2.695-.263a22.674 22.674 0 0 0-1.713-.157c-.846-.044-1.715-.044-2.56-.066c-.424-.023-.869-.068-1.292-.045m1.906 2.584c.29.046.56.089.827.111l1.068.069c.801.065 1.602.109 2.402.219c.669.09 1.337.225 2.028.335c1.47.246 2.917.648 4.32 1.116c.824.267 1.624.624 2.428.959c1.802.736 3.517 1.626 5.209 2.562c.533.29.846.758 1.246 1.182c.58.602 1.159 1.204 1.715 1.828c.644.736 1.244 1.494 1.869 2.252c.556.668 1.135 1.338 1.693 2.008c.178.2.313.445.467.668c.355.535.757 1.048 1.068 1.627c.222.424.356.916.512 1.384c.222.692.445 1.36.668 2.051c.155.513.287 1.05.398 1.582c.09.358.068.735.178 1.09c.136.47.002.982.137 1.451c.021.045.04.112.064.156c.09.088.157.18.024.313c-.021.022-.021.11 0 .178c.045-.044.066-.09.111-.157c0 .045.022.07.022.09c0 .088-.023.177 0 .266c0 .044.044.11.066.156c.045-.046.089-.069.178-.137c.2.76.222 1.517.222 2.297c0 .736.133 1.473-.177 2.186c.066-.245-.09-.469-.024-.692l.01.006c-.023 0-.156-.136-.178-.158c-.023.068 0 .135-.045.225c-.022-.066-.177-.046-.177-.112c-.023.312.134.626.11.938c.069-.045.334-.069.401-.135a.177.177 0 0 0 .09.045c-.446.335-.335.668-.135 1.049c.044.088.179.267.045.445c-.044.045.023.177.045.29h.065v.042l-.2.069c-.044-.068-.31-.202-.31-.315v1.139c.222.067.222.38.31.537a.663.663 0 0 0 .09-.178l.024.02c-.023.133-.045.268-.09.402c-.044.2-.088.378-.11.578c0 .022.042.067.042.088c-.244.558-.109 1.181-.198 1.76c-.067.423 0 .873-.045 1.318c-.045.38-.136.78-.224 1.158c-.023.068-.068.088-.178.133a1.789 1.789 0 0 0-.021-.69c-.024 0-.314-.156-.336-.156c0 .314.176.737.244 1.092c-.068-.022-.335-.177-.356-.177c-.045.267-.044.622-.066.912c-.023.223-.223.424-.246.67c0 .135.157.222.135.445h.177c0-.445.201-.846.201-1.315h.065c.023.045.09.09.068.112c-.045.245-.135.514-.111.76c0 .133.11.266.068.421a2.165 2.165 0 0 0-.091.47c-.023-.113-.045-.157-.045-.223c-.022 0-.222-.024-.245-.024c-.022.134.156.27.133.38c-.022.023-.043.023-.088.046l-.734-1.072c-.58-.846-1.16-1.694-1.738-2.563a5.36 5.36 0 0 1-.403-.67a31.246 31.246 0 0 0-2.293-3.412c-.644-.824-1.159-1.717-1.76-2.584c-.554-.825-1.11-1.627-1.667-2.453c-.2-.267-.445-.513-.623-.803c-.578-.914-1.093-1.85-1.67-2.763c-.491-.76-1.023-1.496-1.535-2.23c-.178-.246-.356-.515-.536-.782a.311.311 0 0 1-.043-.154c-.044-.491-.09-.982-.113-1.45c0-.446.045-.89.045-1.36v-.4c0-.111.022-.201.022-.314c.02-.021.044-.066.066-.088c-.646 0-1.314-.023-1.959 0c-.423.021-.646-.156-.936-.469c-.846-.958-1.468-2.05-2.203-3.076c-.69-.981-1.403-1.942-2.115-2.9c-.58-.78-1.16-1.538-1.738-2.318c-.647-.892-1.27-1.783-1.938-2.674a323.274 323.274 0 0 0-2.449-3.211c-.38-.49-.803-.957-1.227-1.47zm-2.064 1.17c.048.008.092.048.137.104c.6.758 1.202 1.538 1.802 2.296c.447.559.892 1.092 1.315 1.672c.512.714 1 1.428 1.514 2.14c.578.826 1.158 1.649 1.714 2.495c.847 1.25 1.649 2.5 2.495 3.748c.623.914 1.247 1.805 1.847 2.719H73.52c-1.046-.021-2.117-.11-3.163-.067c-1.424.068-2.87.225-4.294.336c-1.804.157-3.63.178-5.432.178c-.647 0-1.293.09-1.938.135c-.78.044-1.537.09-2.316.111c-.914.046-1.803.067-2.717.09c-.513.022-1.047 0-1.603 0l.002-.004c.71-.981 1.445-1.964 2.158-2.967c.222-.292.4-.603.623-.892c.068-.09.157-.133.267-.223l-.023-.043c.089-.112.178-.203.223-.29c.113-.179.18-.38.27-.581a.314.314 0 0 1 .089-.086c.313.156.312-.178.422-.29c.2-.224.4-.469.578-.692c.134-.178.27-.335.38-.535c.023-.068-.045-.178-.067-.268h-.067c.068-.044.134-.11.201-.156c.022 0 .021 0 .043-.022c.134-.201.269-.401.403-.58c.266-.355.555-.712.867-1.023a4.15 4.15 0 0 1-.135.31c.023 0 .023.024.045.024c.267-.357.557-.691.824-1.05c-.023-.02-.045-.044-.068-.044c-.11.112-.2.224-.31.336c-.023-.023-.045-.045-.07-.045c.225-.29.45-.58.67-.914c.046.068.089.155.177.334c.09-.223.18-.379.246-.535c-.066.067-.154.133-.221.2l-.068-.066l.4-.601c.423-.602.846-1.226 1.27-1.828c.156-.223.354-.402.49-.625c.423-.846 1.092-1.517 1.603-2.297c.112-.156.267-.288.4-.422c.056-.068.106-.09.153-.082m-6.277 8.684c-.133.088-.246.156-.38.246h-.001c-.023.022-.044.023-.022.023c.023.11.021.199.043.354c.157-.225.267-.4.403-.578zM76.344 32.7c.2 0 .312.069.424.246c.2.334.4.67.623 1.004c.022.044.066.11.066.178c0 .49 0 1.003.022 1.494c.02.513.069 1.003.09 1.516c0 .512-.047 1.047-.024 1.582c.023.759.045 1.54.045 2.318l.004.002v.201c-.022 0-.045.024-.09.024c-.089-.313-.177-.65-.29-.961c-.222-.648-.467-1.295-.868-1.873c-.447-.624-.845-1.27-1.291-1.916c-.11-.157-.269-.291-.403-.424c-.468-.514-.934-1.05-1.535-1.428a18.187 18.187 0 0 0-2.785-1.428a6.22 6.22 0 0 1-.777-.4h.533l3.807-.068c.824-.022 1.626-.022 2.449-.067m-16.719.582c.161-.002.322.002.488.024c-.355.179-.712.357-1.023.58c-.401.267-.778.624-1.18.914a6.73 6.73 0 0 0-1.092 1.025c-.423.512-.89.959-1.336 1.45c-.313.356-.669.69-.935 1.07c-.378.49-.712 1.023-1.068 1.582c.111-2.119.245-4.213.156-6.354h.002c1.046-.045 2.047-.111 3.072-.156c.8-.045 1.625-.067 2.426-.111c.167-.01.329-.021.49-.024m5.586 1.139c.666.021 1.334.021 2.002.066a3.4 3.4 0 0 1 .824.178a8.4 8.4 0 0 1 1 .424c.378.203.735.424 1.092.67c.645.423 1.247.89 1.892 1.27c.624.378 1.113.892 1.514 1.472c.49.69 1.047 1.315 1.27 2.162l.334 1.473c.067.267.223.534.156.845c-.113.559-.202 1.138-.291 1.696c-.044.224-.09.448-.067.668c.043.693-.223 1.293-.49 1.918c-.09.2-.223.402-.334.625c.022.022.156.09.178.09l.201-.4c.023 0 .023-.002.045.02c-.112.312-.202.647-.314.96c-.266.69-.533 1.405-.868 2.074c-.177.379-.489.69-.71 1.049c-.222.311-.401.645-.624.935c-.2.246-.4.49-.667.668c-.601.446-1.226.891-1.872 1.248c-.4.246-.867.38-1.312.492l.006-.004c-.713.178-1.448.38-2.184.47c-.623.089-1.268.068-1.914.068c-.58 0-1.136-.023-1.715-.069c-.645-.066-1.292-.133-1.916-.424c-.535-.245-1.09-.468-1.623-.736c-.536-.267-1.07-.578-1.472-1.068c-.288-.358-.69-.647-1.045-.96c.067.268.221.492.466.647c-.111.134-.266.067-.49-.29c-.066.044-.133.067-.178.089c.068-.156.135-.312.202-.445c-.09-.178-.203-.38-.291-.559c-.178-.29-.356-.6-.512-.89c-.045-.068-.044-.135-.088-.202a4.982 4.982 0 0 1-.312-.402c-.178-.267-.335-.556-.557-.824c0 .067.023.135.023.224c-.023 0-.045.022-.045.022l-.468-1.137c-.022 0-.023 0-.045.022l.4 1.472c-.022 0-.045.022-.068.022a1.37 1.37 0 0 1-.178-.29c-.044-.179-.177-.177-.287-.11c-.068.044-.113.2-.09.267c.157.379.335.758.514 1.137c.044.133.087.245.154.379c.023.044.09.089.09.156c.09.178.157.354.267.512c.201.267.423.535.623.802c.2.268.379.558.557.825c.022.044.088.045.11.068c.112.334.49.579.757.445c.068.513.624.691.846 1.182a10.009 10.009 0 0 1-.645-.291c-.022.022-.024.045-.046.09c.267.133.535.266.779.422c.224.135.446.269.646.423c.268.246.58.381.957.47a.24.24 0 0 0-.043-.093c.623.29 1.27.604 1.758.848c-2.315.046-4.786.09-7.347.135c0-.423-.022-.826-.022-1.25c0-.178.044-.333.022-.512c-.068-1.024-.069-2.051-.202-3.055c-.132-1.07-.132-2.117-.109-3.19c.021-.577-.024-1.178-.047-1.759c0-.78 0-1.54.024-2.318c0-.112.045-.2.09-.313h.068c.021.046 0 .112.043.135c.067.068.178.178.222.156c.133-.09.335-.177.38-.312c.11-.267.156-.557.156-.824c0-.2.09-.335.177-.47c.046-.067.067-.133.112-.222c-.09-.068-.178-.11-.29-.2c.09-.244.069-.536.403-.669c.044-.023.045-.135.068-.201c.021-.18.041-.381.065-.559c.044.068.069.09.111.133c.024-.044.045-.066.045-.066c0-.088-.022-.268 0-.268c.267-.045.155-.333.29-.467c.02-.023-.022-.092-.022-.136c0-.044 0-.11.021-.11c.31-.068.266-.402.467-.558c.068-.045.089-.11.178-.223c.177.311-.135.469-.157.691c.378-.222.49-.757.268-.914c.089-.067.176-.156.244-.246c.245-.267.511-.512.734-.78c.157-.199.247-.445.403-.646c.09-.111.267-.2.4-.267c.401-.222.778-.467 1.024-.846c.044-.045.111-.09.177-.135c.068-.044.201-.044.223-.111c.023-.044-.043-.156-.088-.223c.088-.044.178-.133.356-.222c-.068.133-.09.223-.135.312l.111.112c.202-.156.513-.334.713-.467c0-.021-.111-.112-.111-.112c-.133.068-.334.178-.533.268c.042-.068.04-.11.066-.133c.31-.2.623-.401.957-.558c.778-.356 1.559-.713 2.338-1.047c.134-.068.312-.022.467-.022a.5.5 0 0 0 .177-.023c.356-.112.713-.223 1.069-.313c.155-.044.334-.066.492-.066m-.867.332c-.245.112-.444.2-.645.289h-.002c0 .023-.11.201-.09.201c.112-.022.359-.2.493-.223c.066 0 .155.023.222.045c0-.09 0-.178.022-.312m16.097 3.795c.223.29.468.56.623.847c.513.938 1.18 1.74 1.803 2.586c.535.736 1.025 1.54 1.516 2.297c.6.914 1.18 1.827 1.781 2.74a68 68 0 0 0 1.379 2.053c.423.601.87 1.182 1.314 1.762c.378.513.779 1.026 1.157 1.539c.446.624.89 1.247 1.336 1.85c.221.311.467.623.71.935c.136.178.336.314.47.424a.173.173 0 0 1-.089-.023c.068.088.111.156.157.2c.243.133.264.266.134.464c-.022.044-.066.09-.087.136c-.023-.045-.023-.112-.045-.203c-.134.358-.425.18-.625.18c-1.202.023-2.426.021-3.63.021c-1.157 0-2.336.002-3.493.022c-.38 0-.78.088-1.159.111c-.577.028-1.154.04-1.732.055l-1.293-7.166l-.002.004l1.291 7.164c-.334.009-.668.023-1.002.031c-.068 0-.134-.11-.246-.2a1.498 1.498 0 0 1-.133.202c-.024-.044-.068-.087-.113-.154a1.277 1.277 0 0 1-.067.176h-.064c-.045-.312-.135-.6-.135-.913c0-.668.069-1.337.09-2.007c.023-.312 0-.6 0-.891c.09.068.155.113.244.178c.044-.087.09-.155.135-.221c0 0-.045-.024-.09-.068c.042-.023.088-.068.088-.09c.022-.068.068-.134.068-.178c0-.156-.046-.289-.068-.422c.022 0 .045 0 .068-.023l.133.668h.067c-.09-.155.2-.29-.045-.467c-.022-.023.023-.158.023-.225c-.068-.132-.11-.264-.178-.443a.531.531 0 0 1 .155-.068c-.09-.044-.156-.088-.223-.11c.223-.201.224-.314.023-.537c.046-.021.088-.02.088-.04c0-.202.001-.404-.043-.602c-.044-.225.068-.49-.267-.625a.651.651 0 0 0 .09.177s-.07.022-.135.067c-.29-.268-.11-.625-.178-1.026c.156.045.268.09.38.135c-.046-.157-.157-.337-.224-.537h-.09v-1.47c0 .022.155.021.245.044c0-.023.021-.045.021-.068c-.067-.089-.157-.178-.246-.29l.045-.044c-.178-.222-.088-.532-.088-.6v-1.56c.224.223-.11.513.223.646v-.222h-.024c-.022-.335-.02-.67-.043-1.004h-.045c-.022.045-.022.068-.044.113h-.043zm.225 10.834v-.004c-.066-.022-.154-.065-.31-.11c.044.089.067.154.09.221c.11-.022.155-.02.199-.043c0-.021.002-.043.021-.064m-37.738-9.01c-.266.312-.51.625-.756.936h-.004c.044.022.11.177.156.222c.245-.334.58-.755.824-1.068c-.022-.021-.2-.068-.22-.09m-1.492 1.094c-.134.2-.466.557-.6.758c.022.022.267-.09.289-.067c.133-.2.267-.424.4-.625a.355.355 0 0 1-.09-.066zm.466.332c-.132.091-.266.204-.4.293c.045.044.045.067.045.111c-.178-.023-.245.069-.334.313c-.022.067-.133.087-.244.175c-.022.046-.045.16-.09.27l.023.023c-.044.045-.111.069-.111.069c-.134.133-.29.244-.424.377c-.022.067-.045.134-.045.2c.157-.155.425-.446.625-.624l.022.023c.089-.133.156-.266.246-.4c.021.022.022.043.045.066c-.068.178-.135.378-.201.557c-.047.022-.114.068-.114.045c-.089.068-.156.156-.246.223l-.4.267c-.223.2-.444.377-.69.578c-.155.246-.31.468-.49.758c.268-.068.335.046.313.27c.311.044.333-.2.422-.38c.022-.045.045-.136.09-.158c.2-.177.421-.333.644-.511c.045-.045.045-.135.045-.201c0-.022-.111-.023-.178-.045c.2-.224.49-.6.69-.846c.111-.068.222-.158.222-.225c-.018-.2.092-.276.227-.347c-.106.477-.397.884-.692.968c.09.045.179.089.246.067c.066-.023.11-.135.155-.201l.6-.87l.202-.335l-.09-.088v.002c-.088.155-.178.288-.267.445l-.074-.037l.006-.004c-.09-.068-.112-.134-.112-.156v-.002a.927.927 0 0 1 .114-.201c.044 0 .109-.022.109-.022c.09-.156.09-.269.18-.402c-.022-.022-.046-.022-.069-.045m38.633 2.738l-.002.004c-.022.066-.021.132-.021.2c0-.068 0-.136.023-.204m-.023.426v.023c.023.022.023.022.045 0c-.022 0-.023 0-.045-.023m0 .045c-.065.022-.131.022-.221.045c.11.041.217.064.22.107zm0 .152v.004l.002-.002zm-3.276 3.908c-.045 2.542.245 5.038.578 7.557l-7.656.268c1.001-.423 1.825-1.025 2.58-1.717a2.55 2.55 0 0 1 .358-.313c.935-.578 1.623-1.381 2.248-2.273c.712-1.026 1.18-2.185 1.76-3.278c.044-.09.087-.176.132-.244m3.162.42l.002.002c.022 0 .043.024.043.024l-.021-.026c0-.02-.002-.02-.024 0m-45.418.07a.557.557 0 0 0-.199.09c.09.223.2.468.29.692a.694.694 0 0 1 .177-.088c-.09-.223-.177-.469-.266-.693h-.002zm-.623.917c-.066.111-.134.222-.11.31c0 .067.11.132.177.2c0-.022.022-.044.045-.065c-.044-.157-.066-.29-.112-.445m1.157.511a.768.768 0 0 0-.2.09c.178.378.356.78.534 1.158c.022 0 .2-.09.2-.09c-.179-.38-.289-.802-.534-1.158m-.444.891c0 .088-.113.065-.113.154c-.131 0-.242-.021-.353-.021c-.022.022.067.157.09.18h.466c0-.113-.023-.201-.023-.313zm20.479.87c.245.378.491.736.758 1.09l-.022.024c-.046-.022-.112-.045-.156-.09l-.535-.802c-.044-.066-.069-.134-.045-.223zM80.4 53.948l-.002.002c-.022.268-.044.468-.044.668c0 .045.045.133.068.133c.044.024.133-.022.178-.043a.17.17 0 0 0 .045-.09c-.067-.046-.134-.067-.202-.113c.423-.223.001-.334-.043-.557m10.159 3.903c.31 0 .644.044 1.045.066c-.178.156-.289.246-.422.357c.088.022.178.068.267.112a.604.604 0 0 1-.355.111c-.046.113-.092.158-.137.38h.402c-.155 0-.29.201-.445.335c-.178-.046-.335-.001-.424.244c.156.088.134.156.112.246c-.268.088-.468.178-.356.467c-.09.044-.2.09-.312.156c-.11.178-.312.222-.268.467c.09.021.178.068.246.088c-.112.045-.222.112-.334.156c-.4.245-.222.357-.133.469a.938.938 0 0 1-.2.111c.043.2.11.246.132.246c-.062.046-.149.118-.232.186a.477.477 0 0 1 .027-.072h-.09c0 .04.01.075.016.11c-.02.018-.033.026-.055.044c-.068.2-.157.288-.246.422c-.089.133-.133.314-.244.447c-.467.514-.802 1.115-1.403 1.516c-.223.156-.422.357-.623.558c-.4.378-.756.803-1.18 1.16c-.463.39-.945.748-1.44 1.102l-1.651-9.148l.467-.024s.934-.023 1.402-.068c.801-.044 1.602-.133 2.404-.155c.511-.022 1.024 0 1.535-.023c.824-.022 1.67-.066 2.495-.066m-48.942 8.716c.243.269.488.536.733.827c.067-.023.135-.023.2-.045c.068.111.113.245.179.379c-.312-.023-.468-.157-.38-.334c-.133-.068-.289-.112-.355-.202c-.156-.177-.29-.379-.445-.556zm43.348 4.194c-.18.042-.314.067-.424.111c-.046.09-.09.155-.135.244c.023 0 .046.023.069.045c.133-.134.288-.245.49-.4m-1.139.623c-.245.156-.512.31-.758.467c.022.022.024.046.047.068c.312-.067.558-.223.803-.4l-.002-.002c-.022-.045-.067-.09-.09-.133M72.92 75.623c-1.024.29-1.357.333-1.469.178c.512-.068.98-.112 1.469-.178m-1.516.2c.023.043.023.088.045.132c-.133 0-.222.047-.334.068v-.002c-.31.068-.645.114-.957.159c-.111.022-.245.133-.289-.069c-.045.023-.089.024-.133.047c.11.334.377.066.6.2c-.49.067-.955.111-1.424.177v-.045c.135-.022.29-.043.422-.066v-.067a6.512 6.512 0 0 0-.668-.044c-.065 0-.154.089-.22.11c-.09.023-.18.046-.292.046c-.378.022-.756.023-1.113.045c-.023 0-.068-.024-.09-.024v-.066c1.492-.2 2.962-.401 4.453-.602zm-4.652.577v.067a12.25 12.25 0 0 1-1.246.133v-.065c.423-.044.823-.09 1.246-.135M.096 89.873v2.959l2.45.193v20.471l-2.49.545l.39 2.725h11.519l.117-2.608c-3.113-.389-4.994-.648-5.643-.777v-6.111h1.79c3.295 0 5.851-.662 7.667-1.985c2.051-1.506 3.075-3.775 3.075-6.81c0-2.596-.832-4.645-2.492-6.15c-1.842-1.635-4.566-2.452-8.172-2.452zm61.683.74l-3.113.739v6.5h-3.463l-.273.388l.545 2.53h3.19v11.832c0 1.53.382 2.634 1.15 3.308c.765.674 1.705 1.012 2.822 1.012s2.024-.168 2.724-.506c.7-.338 1.232-.673 1.596-1.012c-.493-1.53-.768-2.388-.818-2.57l-.002.002c-.285.233-.675.455-1.168.662c-.234.13-.48.233-.739.31c-.26.078-.578.118-.955.118a1.26 1.26 0 0 1-.931-.37c-.246-.246-.37-.785-.37-1.615V100.77h4.243v-2.684c0-.156-.066-.234-.196-.234h-4.046v-6.655zM6.44 93.221h1.362c4.722 0 7.084 1.737 7.084 5.215c0 1.608-.508 2.893-1.52 3.853c-1.141 1.09-2.905 1.635-5.29 1.635H6.438V93.22zm40.627 4.627c-1.66 0-3.088.441-4.28 1.324c-1.273.96-1.907 2.232-1.907 3.814c0 1.608.584 2.905 1.752 3.89c.57.468 1.277.91 2.121 1.325a64.24 64.24 0 0 0 3.035 1.38c1.18.507 1.77 1.239 1.77 2.198c0 .752-.298 1.324-.895 1.713a3.13 3.13 0 0 1-.855.352c-.312.078-.72.117-1.225.117c-.506 0-1.058-.131-1.654-.39l-.934-2.257l-4.01 1.518c.39 1.141 1.219 2.103 2.49 2.88c1.375.806 2.79 1.208 4.243 1.208c1.738 0 3.219-.419 4.437-1.248A5.214 5.214 0 0 0 52.672 114c.39-.674.584-1.538.584-2.59a4.625 4.625 0 0 0-.973-2.86c-.336-.467-.81-.907-1.42-1.321c-.61-.416-1.484-.858-2.627-1.325c-1.141-.467-2.036-.913-2.685-1.34c-.65-.427-.973-.98-.973-1.654c0-.675.247-1.186.74-1.537a2.765 2.765 0 0 1 1.635-.525c.597 0 1.155.129 1.674.388l.894 1.985l3.97-1.518a6.95 6.95 0 0 0-2.296-2.607a7.232 7.232 0 0 0-4.127-1.244l-.002-.004zm-17.627.004c-2.335 0-4.253.804-5.76 2.412c-.778.804-1.39 1.79-1.83 2.957c-.441 1.167-.662 2.503-.662 4.01c0 2.957.78 5.304 2.336 7.042c1.53 1.764 3.504 2.647 5.916 2.647c2.308 0 4.229-.83 5.76-2.49c1.662-1.739 2.49-4.112 2.49-7.121c0-2.88-.777-5.177-2.334-6.89c-1.556-1.711-3.53-2.567-5.916-2.567m0 2.918c1.402 0 2.51.606 3.327 1.812c.818 1.207 1.226 2.885 1.226 5.04c0 2.153-.429 3.755-1.285 4.804c-.856 1.051-1.957 1.576-3.307 1.576c-1.348 0-2.44-.537-3.27-1.615c-.83-1.076-1.245-2.659-1.245-4.748c0-2.09.376-3.743 1.129-4.961c.804-1.272 1.947-1.908 3.425-1.908\\\"/>\"\n\t\t},\n\t\t\"postgresql\": {\n\t\t\t\"body\": \"<path d=\\\"M93.809 92.112c.785-6.533.55-7.492 5.416-6.433l1.235.108c3.742.17 8.637-.602 11.513-1.938c6.191-2.873 9.861-7.668 3.758-6.409c-13.924 2.873-14.881-1.842-14.881-1.842c14.703-21.815 20.849-49.508 15.543-56.287c-14.47-18.489-39.517-9.746-39.936-9.52l-.134.025c-2.751-.571-5.83-.912-9.289-.968c-6.301-.104-11.082 1.652-14.709 4.402c0 0-44.683-18.409-42.604 23.151c.442 8.841 12.672 66.898 27.26 49.362c5.332-6.412 10.484-11.834 10.484-11.834c2.558 1.699 5.622 2.567 8.834 2.255l.249-.212c-.078.796-.044 1.575.099 2.497c-3.757 4.199-2.653 4.936-10.166 6.482c-7.602 1.566-3.136 4.355-.221 5.084c3.535.884 11.712 2.136 17.238-5.598l-.22.882c1.474 1.18 1.375 8.477 1.583 13.69c.209 5.214.558 10.079 1.621 12.948c1.063 2.868 2.317 10.256 12.191 8.14c8.252-1.764 14.561-4.309 15.136-27.985\\\"/><path d=\\\"M75.458 125.256c-4.367 0-7.211-1.689-8.938-3.32c-2.607-2.46-3.641-5.629-4.259-7.522l-.267-.79c-1.244-3.358-1.666-8.193-1.916-14.419c-.038-.935-.064-1.898-.093-2.919c-.021-.747-.047-1.684-.085-2.664a18.8 18.8 0 0 1-4.962 1.568c-3.079.526-6.389.356-9.84-.507c-2.435-.609-4.965-1.871-6.407-3.82c-4.203 3.681-8.212 3.182-10.396 2.453c-3.853-1.285-7.301-4.896-10.542-11.037c-2.309-4.375-4.542-10.075-6.638-16.943c-3.65-11.96-5.969-24.557-6.175-28.693C4.292 23.698 7.777 14.44 15.296 9.129C27.157.751 45.128 5.678 51.68 7.915c4.402-2.653 9.581-3.944 15.433-3.851c3.143.051 6.136.327 8.916.823c2.9-.912 8.628-2.221 15.185-2.139c12.081.144 22.092 4.852 28.949 13.615c4.894 6.252 2.474 19.381.597 26.651c-2.642 10.226-7.271 21.102-12.957 30.57c1.544.011 3.781-.174 6.961-.831c6.274-1.295 8.109 2.069 8.607 3.575c1.995 6.042-6.677 10.608-9.382 11.864c-3.466 1.609-9.117 2.589-13.745 2.377l-.202-.013l-1.216-.107l-.12 1.014l-.116.991c-.311 11.999-2.025 19.598-5.552 24.619c-3.697 5.264-8.835 6.739-13.361 7.709c-1.544.33-2.947.474-4.219.474m-9.19-43.671c2.819 2.256 3.066 6.501 3.287 14.434c.028.99.054 1.927.089 2.802c.106 2.65.355 8.855 1.327 11.477c.137.371.26.747.39 1.146c1.083 3.316 1.626 4.979 6.309 3.978c3.931-.843 5.952-1.599 7.534-3.851c2.299-3.274 3.585-9.86 3.821-19.575l4.783.116l-4.75-.57l.14-1.186c.455-3.91.783-6.734 3.396-8.602c2.097-1.498 4.486-1.353 6.389-1.01c-2.091-1.58-2.669-3.433-2.823-4.193l-.399-1.965l1.121-1.663c6.457-9.58 11.781-21.354 14.609-32.304c2.906-11.251 2.02-17.226 1.134-18.356c-11.729-14.987-32.068-8.799-34.192-8.097l-.359.194l-1.8.335l-.922-.191c-2.542-.528-5.366-.82-8.393-.869c-4.756-.08-8.593 1.044-11.739 3.431l-2.183 1.655l-2.533-1.043c-5.412-2.213-21.308-6.662-29.696-.721c-4.656 3.298-6.777 9.76-6.305 19.207c.156 3.119 2.275 14.926 5.771 26.377c4.831 15.825 9.221 21.082 11.054 21.693c.32.108 1.15-.537 1.976-1.529a270.708 270.708 0 0 1 10.694-12.07l2.77-2.915l3.349 2.225c1.35.897 2.839 1.406 4.368 1.502l7.987-6.812l-1.157 11.808c-.026.265-.039.626.065 1.296l.348 2.238l-1.51 1.688l-.174.196l4.388 2.025z\\\"/><path fill=\\\"#336791\\\" d=\\\"M115.731 77.44c-13.925 2.873-14.882-1.842-14.882-1.842c14.703-21.816 20.849-49.51 15.545-56.287C101.924.823 76.875 9.566 76.457 9.793l-.135.024c-2.751-.571-5.83-.911-9.291-.967c-6.301-.103-11.08 1.652-14.707 4.402c0 0-44.684-18.408-42.606 23.151c.442 8.842 12.672 66.899 27.26 49.363c5.332-6.412 10.483-11.834 10.483-11.834c2.559 1.699 5.622 2.567 8.833 2.255l.25-.212c-.078.796-.042 1.575.1 2.497c-3.758 4.199-2.654 4.936-10.167 6.482c-7.602 1.566-3.136 4.355-.22 5.084c3.534.884 11.712 2.136 17.237-5.598l-.221.882c1.473 1.18 2.507 7.672 2.334 13.557c-.174 5.885-.29 9.926.871 13.082c1.16 3.156 2.316 10.256 12.192 8.14c8.252-1.768 12.528-6.351 13.124-13.995c.422-5.435 1.377-4.631 1.438-9.49l.767-2.3c.884-7.367.14-9.743 5.225-8.638l1.235.108c3.742.17 8.639-.602 11.514-1.938c6.19-2.871 9.861-7.667 3.758-6.408\\\"/><path fill=\\\"#fff\\\" d=\\\"M75.957 122.307c-8.232 0-10.84-6.519-11.907-9.185c-1.562-3.907-1.899-19.069-1.551-31.503a1.59 1.59 0 0 1 1.64-1.55a1.594 1.594 0 0 1 1.55 1.639c-.401 14.341.168 27.337 1.324 30.229c1.804 4.509 4.54 8.453 12.275 6.796c7.343-1.575 10.093-4.359 11.318-11.46c.94-5.449 2.799-20.951 3.028-24.01a1.593 1.593 0 0 1 1.71-1.472a1.597 1.597 0 0 1 1.472 1.71c-.239 3.185-2.089 18.657-3.065 24.315c-1.446 8.387-5.185 12.191-13.794 14.037c-1.463.313-2.792.453-4 .454M31.321 90.466a6.71 6.71 0 0 1-2.116-.35c-5.347-1.784-10.44-10.492-15.138-25.885c-3.576-11.717-5.842-23.947-6.041-27.922c-.589-11.784 2.445-20.121 9.02-24.778c13.007-9.216 34.888-.44 35.813-.062a1.596 1.596 0 0 1-1.207 2.955c-.211-.086-21.193-8.492-32.768-.285c-5.622 3.986-8.203 11.392-7.672 22.011c.167 3.349 2.284 15.285 5.906 27.149c4.194 13.742 8.967 22.413 13.096 23.79c.648.216 2.62.873 5.439-2.517A245.272 245.272 0 0 1 45.88 73.046a1.596 1.596 0 0 1 2.304 2.208c-.048.05-4.847 5.067-10.077 11.359c-2.477 2.979-4.851 3.853-6.786 3.853m69.429-13.445a1.596 1.596 0 0 1-1.322-2.487c14.863-22.055 20.08-48.704 15.612-54.414c-5.624-7.186-13.565-10.939-23.604-11.156c-7.433-.16-13.341 1.738-14.307 2.069l-.243.099c-.971.305-1.716-.227-1.997-.849a1.6 1.6 0 0 1 .631-2.025c.046-.027.192-.089.429-.176l-.021.006l.021-.007c1.641-.601 7.639-2.4 15.068-2.315c11.108.118 20.284 4.401 26.534 12.388c2.957 3.779 2.964 12.485.019 23.887c-3.002 11.625-8.651 24.118-15.497 34.277c-.306.457-.81.703-1.323.703m.76 10.21c-2.538 0-4.813-.358-6.175-1.174c-1.4-.839-1.667-1.979-1.702-2.584c-.382-6.71 3.32-7.878 5.208-8.411c-.263-.398-.637-.866-1.024-1.349c-1.101-1.376-2.609-3.26-3.771-6.078c-.182-.44-.752-1.463-1.412-2.648c-3.579-6.418-11.026-19.773-6.242-26.612c2.214-3.165 6.623-4.411 13.119-3.716C97.6 28.837 88.5 10.625 66.907 10.271c-6.494-.108-11.82 1.889-15.822 5.93c-8.96 9.049-8.636 25.422-8.631 25.586a1.595 1.595 0 1 1-3.19.084c-.02-.727-.354-17.909 9.554-27.916C53.455 9.272 59.559 6.96 66.96 7.081c13.814.227 22.706 7.25 27.732 13.101c5.479 6.377 8.165 13.411 8.386 15.759c.165 1.746-1.088 2.095-1.341 2.147l-.576.013c-6.375-1.021-10.465-.312-12.156 2.104c-3.639 5.201 3.406 17.834 6.414 23.229c.768 1.376 1.322 2.371 1.576 2.985c.988 2.396 2.277 4.006 3.312 5.3c.911 1.138 1.7 2.125 1.982 3.283c.131.23 1.99 2.98 13.021.703c2.765-.57 4.423-.083 4.93 1.45c.997 3.015-4.597 6.532-7.694 7.97c-2.775 1.29-7.204 2.106-11.036 2.106m-4.696-4.021c.35.353 2.101.962 5.727.806c3.224-.138 6.624-.839 8.664-1.786c2.609-1.212 4.351-2.567 5.253-3.492l-.5.092c-7.053 1.456-12.042 1.262-14.828-.577a6.162 6.162 0 0 1-.54-.401c-.302.119-.581.197-.78.253c-1.58.443-3.214.902-2.996 5.105m-45.562 8.915c-1.752 0-3.596-.239-5.479-.71c-1.951-.488-5.24-1.957-5.19-4.37c.057-2.707 3.994-3.519 5.476-3.824c5.354-1.103 5.703-1.545 7.376-3.67c.488-.619 1.095-1.39 1.923-2.314c1.229-1.376 2.572-2.073 3.992-2.073c.989 0 1.8.335 2.336.558c1.708.708 3.133 2.42 3.719 4.467c.529 1.847.276 3.625-.71 5.006c-3.237 4.533-7.886 6.93-13.443 6.93m-7.222-4.943c.481.372 1.445.869 2.518 1.137c1.631.408 3.213.615 4.705.615c4.546 0 8.196-1.882 10.847-5.594c.553-.774.387-1.757.239-2.274c-.31-1.083-1.08-2.068-1.873-2.397c-.43-.178-.787-.314-1.115-.314c-.176 0-.712 0-1.614 1.009a41.146 41.146 0 0 0-1.794 2.162c-2.084 2.646-3.039 3.544-9.239 4.821c-1.513.31-2.289.626-2.674.835m12.269-7.36a1.596 1.596 0 0 1-1.575-1.354a8.218 8.218 0 0 1-.08-.799c-4.064-.076-7.985-1.82-10.962-4.926c-3.764-3.927-5.477-9.368-4.699-14.927c.845-6.037.529-11.366.359-14.229c-.047-.796-.081-1.371-.079-1.769c.003-.505.013-1.844 4.489-4.113c1.592-.807 4.784-2.215 8.271-2.576c5.777-.597 9.585 1.976 10.725 7.246c3.077 14.228.244 20.521-1.825 25.117c-.385.856-.749 1.664-1.04 2.447l-.257.69c-1.093 2.931-2.038 5.463-1.748 7.354a1.595 1.595 0 0 1-1.335 1.819zM42.464 42.26l.062 1.139c.176 2.974.504 8.508-.384 14.86c-.641 4.585.759 9.06 3.843 12.276c2.437 2.542 5.644 3.945 8.94 3.945h.068c.369-1.555.982-3.197 1.642-4.966l.255-.686c.329-.884.714-1.74 1.122-2.646c1.991-4.424 4.47-9.931 1.615-23.132c-.565-2.615-1.936-4.128-4.189-4.627c-4.628-1.022-11.525 2.459-12.974 3.837m9.63-.677c-.08.564 1.033 2.07 2.485 2.271c1.449.203 2.689-.975 2.768-1.539c.079-.564-1.033-1.186-2.485-1.388c-1.451-.202-2.691.092-2.768.656m2.818 2.826l-.407-.028c-.9-.125-1.81-.692-2.433-1.518c-.219-.29-.576-.852-.505-1.354c.101-.736.999-1.177 2.4-1.177c.313 0 .639.023.967.069c.766.106 1.477.327 2.002.62c.91.508.977 1.075.936 1.368c-.112.813-1.405 2.02-2.96 2.02m-2.289-2.732c.045.348.907 1.496 2.029 1.651l.261.018c1.036 0 1.81-.815 1.901-1.082c-.096-.182-.762-.634-2.025-.81a5.823 5.823 0 0 0-.821-.059c-.812 0-1.243.183-1.345.282m43.605-1.245c.079.564-1.033 2.07-2.484 2.272c-1.45.202-2.691-.975-2.771-1.539c-.076-.564 1.036-1.187 2.486-1.388c1.45-.203 2.689.092 2.769.655m-2.819 2.56c-1.396 0-2.601-1.086-2.7-1.791c-.115-.846 1.278-1.489 2.712-1.688c.316-.044.629-.066.93-.066c1.238 0 2.058.363 2.14.949c.053.379-.238.964-.739 1.492c-.331.347-1.026.948-1.973 1.079zm.943-3.013c-.276 0-.564.021-.856.061c-1.441.201-2.301.779-2.259 1.089c.048.341.968 1.332 2.173 1.332l.297-.021c.787-.109 1.378-.623 1.66-.919c.443-.465.619-.903.598-1.052c-.028-.198-.56-.49-1.613-.49m3.965 32.843a1.594 1.594 0 0 1-1.324-2.483c3.398-5.075 2.776-10.25 2.175-15.255c-.257-2.132-.521-4.337-.453-6.453c.07-2.177.347-3.973.614-5.71c.317-2.058.617-4.002.493-6.31a1.595 1.595 0 1 1 3.186-.172c.142 2.638-.197 4.838-.525 6.967c-.253 1.643-.515 3.342-.578 5.327c-.061 1.874.178 3.864.431 5.97c.64 5.322 1.365 11.354-2.691 17.411a1.596 1.596 0 0 1-1.328.708\\\"/>\"\n\t\t},\n\t\t\"postgresql-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M85.988 76.075c.632-5.262.443-6.034 4.362-5.182l.995.088c3.014.137 6.957-.485 9.272-1.561c4.986-2.313 7.942-6.177 3.026-5.162c-11.215 2.313-11.986-1.483-11.986-1.483C103.5 45.204 108.451 22.9 104.178 17.44C92.524 2.548 72.35 9.59 72.012 9.773l-.108.021c-2.216-.461-4.695-.735-7.481-.78c-5.075-.083-8.926 1.331-11.847 3.546c0 0-35.989-14.827-34.315 18.646c.356 7.121 10.207 53.882 21.956 39.758c4.294-5.164 8.444-9.531 8.444-9.531c2.061 1.369 4.528 2.067 7.116 1.816l.2-.17c-.062.641-.035 1.268.081 2.01c-3.027 3.383-2.137 3.977-8.189 5.222c-6.122 1.262-2.525 3.508-.178 4.095c2.848.713 9.433 1.722 13.884-4.509l-.177.711c1.188.95 1.107 6.827 1.275 11.026c.168 4.199.45 8.117 1.306 10.429c.856 2.31 1.866 8.261 9.819 6.557c6.646-1.426 11.727-3.476 12.19-22.545\\\"/><path d=\\\"M71.208 102.77c-3.518 0-5.808-1.36-7.2-2.674c-2.1-1.981-2.933-4.534-3.43-6.059l-.215-.637c-1.002-2.705-1.341-6.599-1.542-11.613a199.25 199.25 0 0 1-.075-2.352c-.017-.601-.038-1.355-.068-2.146a15.157 15.157 0 0 1-3.997 1.264c-2.48.424-5.146.286-7.926-.409c-1.961-.49-3.999-1.506-5.16-3.076c-3.385 2.965-6.614 2.562-8.373 1.976c-3.103-1.035-5.88-3.942-8.491-8.89c-1.859-3.523-3.658-8.115-5.347-13.646c-2.94-9.633-4.808-19.779-4.974-23.109c-.522-10.427 2.284-17.883 8.34-22.16c9.555-6.749 24.03-2.781 29.307-.979c3.545-2.137 7.716-3.178 12.43-3.102c2.532.041 4.942.264 7.181.662c2.335-.734 6.949-1.788 12.23-1.723c9.73.116 17.793 3.908 23.316 10.966c3.941 5.036 1.993 15.61.48 21.466c-2.127 8.235-5.856 16.996-10.436 24.622c1.244.009 3.045-.141 5.607-.669c5.054-1.044 6.531 1.666 6.932 2.879c1.607 4.867-5.378 8.544-7.557 9.555c-2.792 1.297-7.343 2.086-11.071 1.915l-.163-.011l-.979-.086l-.097.816l-.093.799c-.25 9.664-1.631 15.784-4.472 19.829c-2.977 4.239-7.116 5.428-10.761 6.209a16.146 16.146 0 0 1-3.396.383m-7.402-35.174c2.271 1.817 2.47 5.236 2.647 11.626c.022.797.043 1.552.071 2.257c.086 2.134.287 7.132 1.069 9.244c.111.298.21.602.314.922c.872 2.672 1.31 4.011 5.081 3.203c3.167-.678 4.794-1.287 6.068-3.101c1.852-2.638 2.888-7.941 3.078-15.767l3.852.094l-3.826-.459l.112-.955c.367-3.148.631-5.424 2.736-6.928c1.688-1.207 3.613-1.09 5.146-.814c-1.684-1.271-2.15-2.765-2.274-3.377l-.321-1.582l.902-1.34c5.2-7.716 9.489-17.199 11.767-26.018c2.34-9.062 1.626-13.875.913-14.785c-9.446-12.071-25.829-7.088-27.539-6.521l-.29.156l-1.45.271l-.743-.154c-2.047-.425-4.321-.66-6.76-.7c-3.831-.064-6.921.841-9.455 2.764l-1.758 1.333l-2.041-.841c-4.358-1.782-17.162-5.365-23.918-.58c-3.75 2.656-5.458 7.861-5.078 15.47c.125 2.512 1.833 12.021 4.647 21.245c3.891 12.746 7.427 16.979 8.903 17.472c.257.087.926-.433 1.591-1.231c4.326-5.203 8.44-9.54 8.613-9.723l2.231-2.347l2.697 1.792c1.087.723 2.286 1.132 3.518 1.209l6.433-5.486l-.932 9.51c-.021.214-.031.504.053 1.044l.28 1.803l-1.213 1.358l-.14.157l3.534 1.632z\\\"/><path fill=\\\"#336791\\\" d=\\\"M103.646 64.258c-11.216 2.313-11.987-1.484-11.987-1.484c11.842-17.571 16.792-39.876 12.52-45.335C92.524 2.547 72.35 9.59 72.013 9.773l-.109.019c-2.216-.459-4.695-.733-7.482-.778c-5.075-.083-8.925 1.33-11.846 3.545c0 0-35.99-14.826-34.316 18.647c.356 7.121 10.207 53.882 21.956 39.758c4.294-5.164 8.443-9.531 8.443-9.531c2.061 1.369 4.528 2.067 7.115 1.816l.201-.17c-.062.641-.034 1.268.08 2.01c-3.026 3.383-2.138 3.977-8.188 5.222c-6.123 1.262-2.526 3.508-.177 4.095c2.847.713 9.433 1.722 13.883-4.509l-.178.711c1.186.95 2.019 6.179 1.879 10.919s-.233 7.994.702 10.536c.935 2.541 1.866 8.261 9.82 6.557c6.646-1.425 10.09-5.116 10.57-11.272c.34-4.377 1.109-3.73 1.158-7.644l.618-1.853c.711-5.934.113-7.848 4.208-6.957l.995.087c3.014.138 6.958-.485 9.273-1.561c4.986-2.314 7.943-6.177 3.028-5.162\\\"/><path fill=\\\"#fff\\\" d=\\\"M71.61 100.394c-6.631.001-8.731-5.25-9.591-7.397c-1.257-3.146-1.529-15.358-1.249-25.373a1.286 1.286 0 0 1 2.57.072c-.323 11.551.136 22.018 1.066 24.346c1.453 3.632 3.656 6.809 9.887 5.475c5.915-1.269 8.13-3.512 9.116-9.23c.758-4.389 2.254-16.874 2.438-19.338a1.285 1.285 0 0 1 2.563.191c-.192 2.564-1.682 15.026-2.469 19.584c-1.165 6.755-4.176 9.819-11.11 11.306a15.462 15.462 0 0 1-3.221.364M35.659 74.749a5.343 5.343 0 0 1-1.704-.281c-4.307-1.437-8.409-8.451-12.193-20.849c-2.88-9.438-4.705-19.288-4.865-22.489c-.475-9.49 1.97-16.205 7.265-19.957c10.476-7.423 28.1-.354 28.845-.05a1.285 1.285 0 0 1-.972 2.379v.001c-.17-.07-17.07-6.84-26.392-.229c-4.528 3.211-6.607 9.175-6.18 17.729c.135 2.696 1.84 12.311 4.757 21.867c3.378 11.067 7.223 18.052 10.548 19.16c.521.175 2.109.704 4.381-2.026c4.272-5.14 8.197-9.242 8.236-9.283a1.286 1.286 0 0 1 1.856 1.778c-.039.04-3.904 4.081-8.116 9.148c-1.995 2.398-3.908 3.102-5.466 3.102m55.92-10.829a1.284 1.284 0 0 1-1.065-2.004c11.971-17.764 16.173-39.227 12.574-43.825c-4.53-5.788-10.927-8.812-19.012-8.985c-5.987-.13-10.746 1.399-11.523 1.666l-.195.079c-.782.246-1.382-.183-1.608-.684a1.29 1.29 0 0 1 .508-1.631l.346-.142l-.017.005l.018-.006c1.321-.483 6.152-1.933 12.137-1.864c8.947.094 16.337 3.545 21.371 9.977c2.382 3.044 2.387 10.057.015 19.24c-2.418 9.362-6.968 19.425-12.482 27.607a1.282 1.282 0 0 1-1.067.567m.611 8.223c-2.044 0-3.876-.287-4.973-.945c-1.128-.675-1.343-1.594-1.371-2.081c-.308-5.404 2.674-6.345 4.195-6.774c-.212-.32-.514-.697-.825-1.086c-.887-1.108-2.101-2.626-3.037-4.896c-.146-.354-.606-1.179-1.138-2.133c-2.883-5.169-8.881-15.926-5.028-21.435c1.784-2.549 5.334-3.552 10.566-2.992c-1.539-4.689-8.869-19.358-26.259-19.643c-5.231-.088-9.521 1.521-12.744 4.775c-7.217 7.289-6.955 20.477-6.952 20.608a1.284 1.284 0 1 1-2.569.067c-.016-.585-.286-14.424 7.695-22.484c3.735-3.772 8.651-5.634 14.612-5.537C75.49 7.77 82.651 13.426 86.7 18.14c4.412 5.136 6.576 10.802 6.754 12.692c.133 1.406-.876 1.688-1.08 1.729l-.463.011c-5.135-.822-8.429-.252-9.791 1.695c-2.931 4.188 2.743 14.363 5.166 18.709c.619 1.108 1.065 1.909 1.269 2.404c.796 1.93 1.834 3.227 2.668 4.269c.733.917 1.369 1.711 1.597 2.645c.105.185 1.603 2.399 10.488.565c2.227-.459 3.562-.066 3.97 1.168c.803 2.429-3.702 5.261-6.196 6.42c-2.238 1.039-5.805 1.696-8.892 1.696m-3.781-3.238c.281.285 1.691.775 4.612.65c2.596-.112 5.335-.677 6.979-1.439c2.102-.976 3.504-2.067 4.231-2.812l-.404.074c-5.681 1.173-9.699 1.017-11.942-.465a4.821 4.821 0 0 1-.435-.323c-.243.096-.468.159-.628.204c-1.273.357-2.589.726-2.413 4.111m-36.697 7.179c-1.411 0-2.896-.191-4.413-.572c-1.571-.393-4.221-1.576-4.18-3.519c.045-2.181 3.216-2.835 4.411-3.081c4.312-.888 4.593-1.244 5.941-2.955c.393-.499.882-1.12 1.548-1.865c.99-1.107 2.072-1.669 3.216-1.669c.796 0 1.45.271 1.881.449c1.376.57 2.524 1.948 2.996 3.598c.426 1.488.223 2.92-.572 4.032c-2.608 3.653-6.352 5.582-10.828 5.582m-5.817-3.98c.388.299 1.164.699 2.027.916c1.314.328 2.588.495 3.79.495c3.662 0 6.601-1.517 8.737-4.506c.445-.624.312-1.415.193-1.832c-.25-.872-.87-1.665-1.509-1.931c-.347-.144-.634-.254-.898-.254c-.142 0-.573 0-1.3.813c-.614.686-1.055 1.246-1.446 1.741c-1.678 2.131-2.447 2.854-7.441 3.883c-1.218.252-1.843.506-2.153.675m9.882-5.928a1.286 1.286 0 0 1-1.269-1.09a6.026 6.026 0 0 1-.064-.644c-3.274-.062-6.432-1.466-8.829-3.968c-3.031-3.163-4.411-7.545-3.785-12.022c.68-4.862.426-9.154.289-11.46a25.514 25.514 0 0 1-.063-1.425c.002-.406.01-1.485 3.615-3.312c1.282-.65 3.853-1.784 6.661-2.075c4.654-.48 7.721 1.592 8.639 5.836c2.478 11.46.196 16.529-1.47 20.23c-.311.688-.604 1.34-.838 1.97l-.207.557c-.88 2.36-1.641 4.399-1.407 5.923a1.287 1.287 0 0 1-1.075 1.466zM44.634 35.922l.051.918c.142 2.395.406 6.853-.31 11.969c-.516 3.692.612 7.297 3.095 9.888c1.962 2.048 4.546 3.178 7.201 3.178h.055c.298-1.253.791-2.575 1.322-4l.206-.553c.265-.712.575-1.401.903-2.13c1.604-3.564 3.6-8 1.301-18.633c-.456-2.105-1.56-3.324-3.375-3.726c-3.728-.824-9.283 1.98-10.449 3.089m7.756-.545c-.064.454.833 1.667 2.001 1.829c1.167.163 2.166-.785 2.229-1.239c.063-.455-.833-.955-2.002-1.118c-1.167-.163-2.166.073-2.228.528m2.27 2.277l-.328-.023c-.725-.101-1.458-.558-1.959-1.223c-.176-.233-.464-.687-.407-1.091c.082-.593.804-.947 1.933-.947c.253 0 .515.019.78.055c.616.086 1.189.264 1.612.5c.733.41.787.866.754 1.103c-.091.653-1.133 1.626-2.385 1.626m-1.844-2.201c.037.28.73 1.205 1.634 1.33l.209.015c.834 0 1.458-.657 1.531-.872c-.077-.146-.613-.511-1.631-.651a4.72 4.72 0 0 0-.661-.048c-.652-.001-1.001.146-1.082.226m35.121-1.003c.063.455-.832 1.668-2.001 1.83c-1.168.162-2.167-.785-2.231-1.24c-.062-.454.834-.955 2.002-1.117c1.168-.164 2.166.074 2.23.527m-2.27 2.062c-1.125 0-2.094-.875-2.174-1.442c-.092-.681 1.029-1.199 2.185-1.359c.254-.036.506-.054.749-.054c.997 0 1.657.293 1.723.764c.043.306-.191.777-.595 1.201c-.266.28-.826.765-1.588.87zm.759-2.427c-.223 0-.455.017-.69.049c-1.162.161-1.853.628-1.82.878c.039.274.78 1.072 1.75 1.072l.239-.017c.634-.089 1.11-.502 1.337-.741c.356-.375.498-.727.481-.848c-.021-.157-.449-.393-1.297-.393m3.194 26.453a1.285 1.285 0 0 1-1.067-2c2.736-4.087 2.235-8.256 1.751-12.286c-.207-1.718-.42-3.493-.364-5.198c.056-1.753.278-3.199.494-4.599c.255-1.657.496-3.224.396-5.082a1.286 1.286 0 0 1 2.567-.138c.114 2.124-.159 3.896-.423 5.611c-.204 1.323-.415 2.691-.466 4.29c-.049 1.509.144 3.112.348 4.808c.516 4.287 1.099 9.146-2.167 14.023c-.248.37-.655.571-1.069.571\\\"/><path d=\\\"M2.835 103.184a26.23 26.23 0 0 1 4.343-.338c2.235 0 3.874.52 4.914 1.456c.962.832 1.534 2.106 1.534 3.667c0 1.586-.469 2.834-1.353 3.744c-1.196 1.274-3.146 1.924-5.356 1.924c-.676 0-1.3-.026-1.819-.156v7.021H2.835zm2.263 8.45c.494.13 1.118.182 1.872.182c2.729 0 4.394-1.326 4.394-3.744c0-2.314-1.638-3.432-4.134-3.432c-.988 0-1.742.078-2.132.182zm22.23 2.47c0 4.654-3.225 6.683-6.267 6.683c-3.406 0-6.032-2.496-6.032-6.475c0-4.212 2.756-6.682 6.24-6.682c3.615-.001 6.059 2.626 6.059 6.474m-9.984.13c0 2.756 1.586 4.836 3.822 4.836c2.184 0 3.821-2.054 3.821-4.888c0-2.132-1.065-4.836-3.77-4.836s-3.873 2.496-3.873 4.888m12.557 3.926c.676.442 1.872.91 3.016.91c1.664 0 2.444-.832 2.444-1.872c0-1.092-.649-1.69-2.34-2.314c-2.262-.806-3.328-2.054-3.328-3.562c0-2.028 1.638-3.692 4.342-3.692c1.274 0 2.393.364 3.095.78l-.572 1.664a4.897 4.897 0 0 0-2.574-.728c-1.352 0-2.106.78-2.106 1.716c0 1.04.755 1.508 2.393 2.132c2.184.832 3.302 1.924 3.302 3.796c0 2.21-1.716 3.77-4.706 3.77c-1.378 0-2.652-.338-3.536-.858zm13.365-13.859v3.614h3.275v1.742h-3.275v6.786c0 1.56.441 2.444 1.716 2.444a5.09 5.09 0 0 0 1.326-.156l.104 1.716c-.441.182-1.144.312-2.027.312c-1.066 0-1.925-.338-2.471-.962c-.649-.676-.884-1.794-.884-3.276v-6.864h-1.95v-1.742h1.95v-3.016zm16.536 3.615c-.053.91-.104 1.924-.104 3.458v7.306c0 2.886-.572 4.654-1.794 5.747c-1.222 1.144-2.99 1.508-4.576 1.508c-1.508 0-3.172-.364-4.187-1.04l.572-1.742c.832.52 2.132.988 3.692.988c2.34 0 4.056-1.222 4.056-4.394v-1.404h-.052c-.702 1.17-2.054 2.106-4.004 2.106c-3.12 0-5.356-2.652-5.356-6.137c0-4.264 2.782-6.682 5.668-6.682c2.185 0 3.381 1.144 3.927 2.184h.052l.104-1.898zm-2.366 4.966c0-.39-.026-.728-.13-1.04c-.416-1.326-1.534-2.418-3.198-2.418c-2.185 0-3.744 1.846-3.744 4.758c0 2.47 1.248 4.524 3.718 4.524c1.404 0 2.678-.884 3.172-2.34c.13-.39.183-.832.183-1.222v-2.262zm5.901-1.04c0-1.482-.026-2.756-.104-3.926h2.003l.077 2.47h.104c.572-1.69 1.95-2.756 3.484-2.756c.26 0 .441.026.649.078v2.158a3.428 3.428 0 0 0-.779-.078c-1.612 0-2.757 1.222-3.068 2.938a6.44 6.44 0 0 0-.104 1.066v6.708h-2.262zm9.517 2.782c.052 3.094 2.027 4.368 4.315 4.368c1.639 0 2.626-.286 3.484-.65l.39 1.638c-.806.364-2.184.78-4.186.78c-3.874 0-6.188-2.548-6.188-6.344c0-3.796 2.236-6.787 5.902-6.787c4.108 0 5.2 3.614 5.2 5.928c0 .468-.052.832-.078 1.066h-8.839zm6.708-1.638c.025-1.456-.599-3.718-3.172-3.718c-2.314 0-3.328 2.132-3.511 3.718z\\\"/><path fill=\\\"#336791\\\" d=\\\"M84.371 117.744a8.016 8.016 0 0 0 4.056 1.144c2.314 0 3.666-1.222 3.666-2.99c0-1.638-.936-2.574-3.302-3.484c-2.86-1.014-4.628-2.496-4.628-4.966c0-2.73 2.262-4.758 5.668-4.758c1.794 0 3.094.416 3.874.858l-.624 1.846a6.98 6.98 0 0 0-3.328-.832c-2.392 0-3.302 1.43-3.302 2.626c0 1.638 1.065 2.444 3.484 3.38c2.964 1.145 4.472 2.574 4.472 5.148c0 2.704-2.002 5.044-6.136 5.044c-1.69 0-3.536-.494-4.473-1.118zm27.586 5.33a94.846 94.846 0 0 1-6.708-2.028c-.364-.13-.728-.26-1.066-.26c-4.16-.156-7.722-3.224-7.722-8.866c0-5.616 3.432-9.23 8.164-9.23c4.758 0 7.853 3.692 7.853 8.866c0 4.498-2.08 7.384-4.992 8.398v.104c1.742.442 3.64.858 5.122 1.118zm-1.872-11.414c0-3.51-1.819-7.125-5.538-7.125c-3.822 0-5.694 3.536-5.668 7.333c-.026 3.718 2.028 7.072 5.564 7.072c3.615 0 5.642-3.276 5.642-7.28m5.329-8.684h2.263v15.626h7.488v1.898h-9.751z\\\"/>\"\n\t\t},\n\t\t\"postman\": {\n\t\t\t\"body\": \"<path fill=\\\"#f37036\\\" d=\\\"M113.117 26.066C92.168-1.062 53.191-6.07 26.062 14.883c-27.125 20.953-32.128 59.93-11.175 87.055c20.957 27.124 59.937 32.124 87.058 11.167c27.114-20.953 32.118-59.918 11.172-87.039m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M91.078 24.164a10.038 10.038 0 0 0-5.781 2.426a10.028 10.028 0 0 0-1.54 13.465a10.028 10.028 0 0 0 13.276 2.715h.002v.001l.156.155a10.63 10.63 0 0 0 1.965-1.45A10.341 10.341 0 0 0 99 27.107v-.002l-8.844 8.789l-.156-.155l8.844-8.793a10.038 10.038 0 0 0-7.766-2.78zM79.434 38.551c-4.24-.007-11.163 4.799-28.067 21.703l.084.086c-.092-.032-.185-.035-.185-.035l-6.364 6.308a1.035 1.035 0 0 0 .93 1.762l10.914-2.328a.307.307 0 0 0 .092-.17l.242.25l-3.72 3.69h-.18l-22.086 22.26l7.086 6.824a1.254 1.254 0 0 0 1.476.149a1.327 1.327 0 0 0 .645-1.356l-1.035-4.5a.534.534 0 0 1 0-.62a117.285 117.285 0 0 0 26.738-17.583l-4.535-4.537l.086-.014l-2.69-2.689l.172-.174l.182.186l-.094.091l7.137 7.293v-.003c13.68-12.954 23.39-23.367 20.865-30.375a3.83 3.83 0 0 0-1.107-2.208v.004a3.778 3.778 0 0 0-.483-.306c-.083-.088-.156-.178-.244-.264l-.066.066a3.778 3.778 0 0 0-.582-.29l.289-.292c-1.796-1.6-3.28-2.924-5.5-2.93zM30.94 92.21l-5.171 5.172v.004a1.03 1.03 0 0 0-.457 1.125a1.035 1.035 0 0 0 .921.789l12.672.875z\\\"/><path fill=\\\"#f37036\\\" d=\\\"M91.95 23.31a11.047 11.047 0 0 0-7.759 3.17a10.988 10.988 0 0 0-2.39 11.641c-4.741-2.03-11.155 1.51-31.106 21.457a.932.932 0 0 0-.037.094a1.242 1.242 0 0 0-.119.062l-6.309 6.364a1.97 1.97 0 0 0-.363 2.324a2.012 2.012 0 0 0 1.707.984l.313-.203l8.424-1.797l-4.03 4.067a.873.873 0 0 0-.054.166l-19.75 19.799a.798.798 0 0 0-.192.238l-5.086 5.09a1.967 1.967 0 0 0-.414 2.043a1.995 1.995 0 0 0 1.656 1.265l12.618.88a1.01 1.01 0 0 0 .52-.415a.886.886 0 0 0 0-1.035l-.026-.025a2.243 2.243 0 0 0 .705-.58a2.237 2.237 0 0 0 .406-1.876l-.984-4.187a126.725 126.725 0 0 0 26.334-16.861a1.091 1.091 0 0 0 .248.103c.254-.019.492-.128.672-.308c13.55-12.83 21.515-21.622 21.515-28.602a8.03 8.03 0 0 0-.431-2.85a10.957 10.957 0 0 0 3.845.83l-.015.004a11.219 11.219 0 0 0 5.183-1.45a.775.775 0 0 0 .004.001a.835.835 0 0 0 .617-.055a9.398 9.398 0 0 0 2.07-1.652a10.873 10.873 0 0 0 3.258-7.758a10.873 10.873 0 0 0-3.257-7.758a.93.93 0 0 0-.118-.091a11.045 11.045 0 0 0-7.656-3.078zm-.087 1.772a9.27 9.27 0 0 1 5.586 1.914l-8.068 8.117a.84.84 0 0 0-.076.098a.83.83 0 0 0-.239.55a.832.832 0 0 0 .313.65h.002l6.1 6.1a9.044 9.044 0 0 1-10.028-1.913c-2.586-2.6-3.336-6.504-1.953-9.891c1.383-3.39 4.68-5.605 8.363-5.625m7.12 3.432a8.87 8.87 0 0 1 2.033 5.674a9.15 9.15 0 0 1-2.688 6.464a9.989 9.989 0 0 1-1.098.895L92.307 36.7l-.963-.963l.265-.265l7.373-6.96zm-.366 4.193a.777.777 0 0 0-.55.031a.731.731 0 0 0-.36.426a.73.73 0 0 0 .05.559a2.226 2.226 0 0 1-.257 2.328a.64.64 0 0 0-.195.488c.004.184.07.36.195.492a.58.58 0 0 0 .414 0a.68.68 0 0 0 .672-.207a3.573 3.573 0 0 0 .465-3.777v.004a.777.777 0 0 0-.434-.344M79.34 39.43a5.584 5.584 0 0 1 3.31 1.226a4.756 4.756 0 0 0-2.681 1.34L57.162 64.701l-4.476-4.476c11.828-11.772 19.06-17.921 23.556-19.936a5.584 5.584 0 0 1 3.098-.86zm3.965 2.96a2.895 2.895 0 0 1 2.043.844a2.786 2.786 0 0 1 .879 2.121a2.869 2.869 0 0 1-.985 2.07l-24.25 21.106l-2.617-2.617l22.887-22.68a2.895 2.895 0 0 1 2.043-.843zm2.994 6.698c-1.69 6.702-10.647 15.783-19.987 24.607l-3.777-3.773zM51.367 61.547l.274.27l3.513 3.513l-9.63 2.06zm5.793 5.84l.004.004l1.168 1.195a1.086 1.086 0 0 0 .018.084l.078.012l.248.254l.82.84l-5.385.66zm3.867 4.076l3.578 3.576A126.992 126.992 0 0 1 38.75 91.695a1.44 1.44 0 0 0-.777 1.653l1.035 4.5a.31.31 0 0 1 0 .363a.31.31 0 0 1-.414 0l-6.102-6.152L51.3 72.975zm-29.933 21.94l.869.814l4.492 4.492l-10.016-.648l4.655-4.659z\\\"/>\"\n\t\t},\n\t\t\"postman-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff6c37\\\" d=\\\"M34.582 53.867a16.584 16.584 0 0 0-17.465-5.87A16.577 16.577 0 0 0 5.02 61.89a16.579 16.579 0 0 0 8.199 16.496a16.58 16.58 0 0 0 18.379-1.27c7.254-5.597 8.566-16.004 2.984-23.25Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M28.855 53.355a2.71 2.71 0 0 0-1.714.657a2.669 2.669 0 0 0-.41 3.593a2.673 2.673 0 0 0 3.542.727l-1.875-1.879l2.372-2.351a2.675 2.675 0 0 0-1.915-.747m1.97.786l-.012.004l-2.352 2.347l1.879 1.88a2.97 2.97 0 0 0 .523-.388a2.767 2.767 0 0 0-.039-3.843zm-5.24 3.06c-1.135-.002-2.982 1.282-7.5 5.799l.015.016l-.026-.004l-1.699 1.687a.268.268 0 0 0-.05.324a.273.273 0 0 0 .296.145l2.902-.621a.092.092 0 0 0 .024-.045l.058.06l-1.011 1.004h-.02l-5.898 5.942l1.89 1.812a.349.349 0 0 0 .395.04a.35.35 0 0 0 .172-.36l-.278-1.2a.135.135 0 0 1 0-.167v.012a31.352 31.352 0 0 0 7.145-4.7l-1.22-1.218l.029-.004l-.715-.723l.04-.041l.057.057l-.03.03l1.905 1.93v.004c3.561-3.36 6.114-6.086 5.618-7.957a1.02 1.02 0 0 0 0-.002a1.02 1.02 0 0 0 0-.001a1.02 1.02 0 0 0 0-.002a1.02 1.02 0 0 0 0-.002c0-.282-.122-.55-.329-.743h-.011a1.013 1.013 0 0 0-.365-.212l.076-.077h.01c-.485-.427-.884-.782-1.48-.783M12.63 71.535l-1.383 1.383a.283.283 0 0 0-.121.3a.283.283 0 0 0 .246.212l3.387.234z\\\"/><path fill=\\\"#f37036\\\" d=\\\"M28.723 53.139a2.96 2.96 0 0 0-1.864.838a2.93 2.93 0 0 0-.646 3.11a1.621 1.621 0 0 0-.676-.13c-1.256.025-3.188 1.42-7.63 5.863c-.01.01-.013.02-.02.03a.33.33 0 0 0-.02.013l-1.687 1.7a.52.52 0 0 0-.094.62a.535.535 0 0 0 .453.262l.098-.054l2.232-.479l-1.072 1.084a.24.24 0 0 0-.04.11l-5.23 5.23a.316.316 0 0 0-.05.035l-1.38 1.383a.514.514 0 0 0-.113.547a.518.518 0 0 0 .446.336l3.37.234v.004a.299.299 0 0 0 .137-.113a.24.24 0 0 0 .012-.262a.597.597 0 0 0 .32-.668l-.277-1.105a33.835 33.835 0 0 0 7.037-4.508a.27.27 0 0 0 .037.008h.012a.296.296 0 0 0 .18-.082c3.622-3.426 5.75-5.777 5.75-7.641a2.124 2.124 0 0 0-.112-.742a2.93 2.93 0 0 0 1.006.203v-.016a2.98 2.98 0 0 0 1.37-.373a.197.197 0 0 0 .013.002a.227.227 0 0 0 .168-.012a2.51 2.51 0 0 0 .55-.441a2.896 2.896 0 0 0 .038-4.107a.236.236 0 0 0-.012-.014a.236.236 0 0 0-.025-.027a2.96 2.96 0 0 0-.022-.018a.246.246 0 0 0-.068-.059a2.96 2.96 0 0 0-2.191-.761m.18.466a2.48 2.48 0 0 1 1.492.512l-2.153 2.168a.209.209 0 0 0-.076.123v.004a.233.233 0 0 0-.006.045a.217.217 0 0 0 0 .002v.002a.227.227 0 0 0 .006.027a.217.217 0 0 0 .076.145l1.63 1.629a2.414 2.414 0 0 1-2.536-.38l-.008-.005c-.004-.004-.007-.01-.012-.014a.257.257 0 0 0-.007-.004a2.45 2.45 0 0 1-.118-.109a2.426 2.426 0 0 1-.52-2.64a2.424 2.424 0 0 1 2.231-1.505zm1.902.918c.35.425.543.96.543 1.516a2.43 2.43 0 0 1-.72 1.727a2.46 2.46 0 0 1-.278.23l-1.584-1.543zm-.159 1.106a.207.207 0 0 0-.084.02a.247.247 0 0 0-.105.113c-.027.05-.012.105.012.152a.59.59 0 0 1-.07.621a.184.184 0 0 0 0 .262a.143.143 0 0 0 .113 0a.183.183 0 0 0 .18-.055a.956.956 0 0 0 .124-1.008l.008-.004a.207.207 0 0 0-.178-.101m-5.234 1.826a1.494 1.494 0 0 1 1.045.326a1.266 1.266 0 0 0-.73.356l-6.092 6.05L18.445 63c3.157-3.14 5.087-4.767 6.285-5.32a1.494 1.494 0 0 1 .682-.225m1.084.768a.769.769 0 0 1 .668.218a.733.733 0 0 1 .065.069a1.567 1.567 0 0 1 .12.21a.733.733 0 0 1 .006.014a.733.733 0 0 1 .043.27a.77.77 0 0 1-.261.555L20.64 65.21l-.692-.691l6.121-6.079a.769.769 0 0 1 .426-.218zm.008.478a.458.458 0 0 0-.09.082zm.9 1.342c-.484 1.785-2.84 4.182-5.326 6.535l-1-1zm-9.318 3.3l.027.026l.985.985l-2.575.552l1.563-1.562zm1.547 1.548l.328.336a.302.302 0 0 0 .004.021l.017.002l.3.305l-1.534.232l-.004-.008zm1.012 1.103l.98.97a34.022 34.022 0 0 1-6.91 4.45a.387.387 0 0 0-.207.441l.277 1.204a.071.071 0 0 1 0 .093a.083.083 0 0 1-.11 0l-1.628-1.656l5.045-5.117zm-7.965 5.861l.117.11l1.307 1.306l-2.674-.173zm58.855-13.466a2.644 2.644 0 0 0-.547.05c-1.735.347-2.527 1.325-2.379 3.118c.098 1.34.844 1.978 1.832 2.423c.692.36 1.395.596 1.93 1.19a2.125 2.125 0 0 1 .445 2.226c-.3.843-.843 1.188-1.582 1.239c-.793.039-1.437-.145-2.03-.79c-.212-.25-.493-.45-.743-.154c-.297.348-.047.694.148.944c.65.788 1.484.986 2.524.986v-.012c.347-.1.89-.048 1.387-.396c1.089-.641 1.386-1.633 1.386-2.918c0-1.387-.593-2.336-1.683-2.871c-.692-.344-1.434-.555-2.078-1.086c-.496-.45-.595-1.04-.497-1.734c.101-.692.606-1.04 1.141-1.137c.645-.098 1.337-.098 1.98.25c.298.144.64.343.79-.154c.148-.43-.149-.727-.493-.829c-.483-.184-.994-.34-1.53-.345zm36.342.02c-.527.033-.577.626-.717 1.04l-2.426 8.961c-.097.395-.246.891.25 1.086c.493.137.543-.344.645-.691c.593-1.798.593-1.797 2.273-1.797h.438c1.352 0 1.353 0 1.793 1.52c.052.202.149.449.199.644c.09.297.285.347.531.297c.297-.051.348-.297.348-.645l-.008.028a5.705 5.705 0 0 0-.195-.891l-2.278-8.512c-.097-.442-.207-.989-.742-1.039a.81.81 0 0 0-.111-.002zm-48.373.032c-1.484 0-2.472.692-2.672 2.13c-.297 2.22-.246 4.49 0 6.718c.199 1.538 1.141 2.23 2.773 2.23c1.536 0 2.375-.757 2.622-2.277c.15-1.087.052-2.124.101-3.207c-.05-1.14.098-2.278-.152-3.465c-.246-1.387-1.188-2.129-2.672-2.129m20.441.004c-.245 0-.445.2-.445.496c0 .383.203.538.496.538s.642.046.938 0c.743-.102 1.089.197 1.039 1.134v7.969c0 .383 0 .828.496.828c.446 0 .496-.433.496-.828v-8.115c0-.742.2-1.09.89-1.04c.348.05.743 0 1.086 0c.301 0 .496-.187.496-.534c0-.293-.195-.448-.445-.448zm-34.207.008c-.582 0-.828.246-.828.988v4.586l-.023.018v4.65c0 .395 0 .793.445.793s.492-.394.492-.742c0-.828.051-1.733 0-2.623c-.047-.743.203-1.088.895-1.041c.453.05.836 0 1.281 0c1.547-.098 2.438-1.12 2.488-2.918c.051-2.625-.793-3.66-3.07-3.71h-1.68zm76.961.106c-.285 0-.481.152-.531.496c-.051.246-.05.441-.05.691v5.8c0 .2.05.497-.196.599c-.301.097-.3-.199-.399-.399c-.148-.398-.347-.742-.496-1.137l-2.422-5.398c-.203-.395-.45-.744-.89-.594c-.398.1-.348.547-.348.89v9.122c0 .394 0 .938.535.89c.496 0 .395-.546.395-.89v-5.89c0-.349-.098-.743.2-1.04l.01-.02c.336.146.388.493.536.79l2.77 6.136c.2.446.406.988.94.793c.493-.153.345-.691.345-1.09v-9.156c0-.297-.102-.543-.399-.593m-30.531.029a.722.722 0 0 0-.176.033c-.445.15-.344.691-.344 1.086v9.305c.047.246.149.445.446.496c.285 0 .481-.2.531-.496c.05-.297.05-.595.05-.89v-5.99c0-.186-.05-.484.2-.53c.195-.051.195.246.297.394l1.332 2.922c.152.344.199.738.598.738c.28 0 .382-.394.53-.691l1.634-3.512l.007-.016c.395.399.294.793.344 1.188v5.691c0 .5-.156 1.192.535 1.192c.645 0 .493-.696.493-1.14v-8.61c0-.448.136-.988-.395-1.14c-.543-.098-.793.347-.988.792l-1.52 3.266c-.152.297-.2.89-.644.89c-.4-.062-.446-.593-.594-.89l-1.524-3.364c-.17-.389-.42-.744-.812-.724m-44.531.867c.476.006.933.12 1.328.516c.746.789.742 1.78.496 2.818c-.247 1.043-.789 1.389-2.227 1.389c-1.386 0-1.386 0-1.386-1.586v-2.227c0-.348 0-.79.347-.79c.471-.026.966-.126 1.442-.12m11.824.068c1.138-.05 1.829.696 1.879 1.98v2.54c0 .891.05 1.742 0 2.574c-.047 1.34-.742 2.028-1.88 2.028c-1.105-.051-1.746-.747-1.796-2.028v-5.113c.066-1.29.712-1.98 1.797-1.98zm48.484 1.141c.297 0 .247.344.297.594l.942 3.512c.343 1.234.293 1.285-.793 1.285h-.496l.003.02c-1.585 0-1.636 0-1.14-1.798l.793-2.968c.05-.301.097-.645.394-.645\\\"/>\"\n\t\t},\n\t\t\"powershell\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconPowershell0\\\" x1=\\\"96.306\\\" x2=\\\"25.454\\\" y1=\\\"35.144\\\" y2=\\\"98.431\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#a9c8ff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#c7e6ff\\\"/></linearGradient><path fill=\\\"url(#deviconPowershell0)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.2 110.5c-1.7 0-3.1-.7-4.1-1.9c-1-1.2-1.3-2.9-.9-4.6l18.6-80.5c.8-3.4 4-6 7.4-6h92.6c1.7 0 3.1.7 4.1 1.9c1 1.2 1.3 2.9.9 4.6l-18.6 80.5c-.8 3.4-4 6-7.4 6z\\\" clip-rule=\\\"evenodd\\\" opacity=\\\".8\\\"/><linearGradient id=\\\"deviconPowershell1\\\" x1=\\\"25.336\\\" x2=\\\"94.569\\\" y1=\\\"98.33\\\" y2=\\\"36.847\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 128)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#2d4664\\\"/><stop offset=\\\".169\\\" stop-color=\\\"#29405b\\\"/><stop offset=\\\".445\\\" stop-color=\\\"#1e2f43\\\"/><stop offset=\\\".79\\\" stop-color=\\\"#0c131b\\\"/><stop offset=\\\"1\\\"/></linearGradient><path fill=\\\"url(#deviconPowershell1)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M120.3 18.5H28.5c-2.9 0-5.7 2.3-6.4 5.2L3.7 104.3c-.7 2.9 1.1 5.2 4 5.2h91.8c2.9 0 5.7-2.3 6.4-5.2l18.4-80.5c.7-2.9-1.1-5.3-4-5.3\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#2C5591\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64.2 88.3h22.3c2.6 0 4.7 2.2 4.7 4.9s-2.1 4.9-4.7 4.9H64.2c-2.6 0-4.7-2.2-4.7-4.9s2.1-4.9 4.7-4.9m14.5-21.8c-.4.8-1.2 1.6-2.6 2.6L34.6 98.9c-2.3 1.6-5.5 1-7.3-1.4c-1.7-2.4-1.3-5.7.9-7.3l37.4-27.1v-.6l-23.5-25c-1.9-2-1.7-5.3.4-7.4c2.2-2 5.5-2 7.4 0l28.2 30c1.7 1.9 1.8 4.5.6 6.4\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#FFF\\\" fill-rule=\\\"evenodd\\\" d=\\\"M77.6 65.5c-.4.8-1.2 1.6-2.6 2.6L33.6 97.9c-2.3 1.6-5.5 1-7.3-1.4c-1.7-2.4-1.3-5.7.9-7.3l37.4-27.1v-.6l-23.5-25c-1.9-2-1.7-5.3.4-7.4c2.2-2 5.5-2 7.4 0l28.2 30c1.7 1.8 1.8 4.4.5 6.4M63.5 87.8h22.3c2.6 0 4.7 2.1 4.7 4.6c0 2.6-2.1 4.6-4.7 4.6H63.5c-2.6 0-4.7-2.1-4.7-4.6c0-2.6 2.1-4.6 4.7-4.6\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"premierepro\": {\n\t\t\t\"body\": \"<path fill=\\\"#2A0634\\\" d=\\\"M0 0h128v128H0z\\\"/><path fill=\\\"#E976B9\\\" d=\\\"M0 0v128h128V0zm123 123H5V5h118z\\\"/><path fill=\\\"#E976B9\\\" d=\\\"M69 47.1c-.1-9.4-7.8-16.9-17.2-16.8H33.3v58.5h9.6V67.5h8.3C61 67.4 69 59.3 69 49.4zm-9.6 3c0 5-4.1 9.1-9.1 9.1h-7.4V38.5h7.4c5 0 9.1 4.1 9.1 9.1zm17.7 38.7V48.9s10.2-5.1 20.2-3.8v8.3s-7 0-10.1 1.3v34.2H77.1z\\\"/>\"\n\t\t},\n\t\t\"prisma\": {\n\t\t\t\"body\": \"<path fill=\\\"#2d3748\\\" d=\\\"M66.457.014a6.308 6.308 0 0 0-5.812 3.028l-47.87 78.072a6.379 6.379 0 0 0 .048 6.748l23.568 37.186a6.387 6.387 0 0 0 7.22 2.683l68.012-20.407a6.37 6.37 0 0 0 3.96-8.765l-43.72-94.85A6.298 6.298 0 0 0 66.46.014Zm1.795 23.95a2.348 2.348 0 0 1 2.448 1.433l30.16 69.784a2.39 2.39 0 0 1-1.512 3.241l-46.996 14.024a2.39 2.39 0 0 1-3.024-2.76l16.83-83.812a2.353 2.353 0 0 1 2.099-1.91z\\\"/>\"\n\t\t},\n\t\t\"prisma-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#2d3748\\\" d=\\\"M.3 71.2c-.4-.7-.4-1.5 0-2.1l14.4-23.6c.8-1.3 2.7-1.2 3.4.2l13.1 28.7c.5 1.1 0 2.3-1.2 2.6L9.6 83.2c-.9.3-1.7-.1-2.2-.8zm11 6.6c-.1.5.4 1 .9.8l14.1-4.2c.4-.1.7-.6.5-1l-9.1-21.1c-.3-.6-1.2-.5-1.4.2zM69 59.4h4.1v14.8H69zm-.1-3.8q0-2 2.1-2q2.2 0 2.2 2q0 .9-.5 1.4q-.6.6-1.7.6q-2.1 0-2.1-2m56.3 18.6l-.8-2h-.1q-1 1.3-2 1.8q-1.1.5-2.9.5q-2.1 0-3.3-1.2q-1.2-1.3-1.2-3.5q0-2.4 1.6-3.5q1.7-1.1 5-1.2l2.5-.1v-.7q0-2.2-2.3-2.2q-1.7 0-4.1 1.1l-1.3-2.8q2.5-1.3 5.6-1.3q3 0 4.6 1.3q1.5 1.3 1.5 3.9v9.9zm-1.2-6.9l-1.5.1q-1.8 0-2.6.6q-.9.6-.9 1.8q0 1.7 2 1.7q1.4 0 2.2-.8q.8-.8.8-2.1zm-20.8 6.8h-4.1v-8.6q0-1.6-.5-2.4q-.5-.8-1.7-.8q-1.5 0-2.2 1.1q-.7 1.1-.7 3.8v6.9h-4V59.3h3l.6 1.9h.2q.6-1 1.7-1.6q1.1-.6 2.6-.6q3.3 0 4.5 2.2h.3q.6-1 1.8-1.6q1.1-.6 2.6-.6q2.5 0 3.8 1.3q1.2 1.3 1.2 4.2v9.6h-4v-8.6q0-1.6-.5-2.4q-.6-.8-1.7-.8q-1.5 0-2.2 1q-.7 1.1-.7 3.4zm-22.3.3q-1.6 0-2.7-.3q-1.1-.2-2.1-.6v-3.3q1.1.5 2.5.8q1.4.4 2.5.4q2.2 0 2.2-1.3q0-.4-.3-.7q-.3-.3-1-.7q-.8-.4-1.9-.9q-1.7-.7-2.5-1.3q-.8-.6-1.2-1.4q-.4-.8-.4-2q0-1.9 1.6-3q1.5-1.1 4.3-1.1q2.6 0 5.2 1.2l-1.3 2.9q-1.1-.5-2-.8q-1-.3-2-.3q-1.8 0-1.8 1q0 .5.6.9t2.5 1.2q1.7.7 2.6 1.3q.8.6 1.1 1.4q.4.8.4 1.9q0 2.3-1.6 3.5q-1.5 1.2-4.7 1.2M66.6 62.9q-.5-.1-1.2-.1q-1.9 0-3 1t-1.1 2.8v7.5h-4V59.3h3.1l.6 2.5h.2q.6-1.3 1.8-2q1.2-.8 2.5-.8q.9 0 1.4.1zm-11.9-2.1q0 3.1-1.9 4.8q-2 1.6-5.6 1.6h-1.7v6.9h-4.1V54.7h6.2q3.5 0 5.3 1.6q1.8 1.5 1.8 4.5m-9.2 3.1h1.3q1.9 0 2.9-.8q.9-.7.9-2.2q0-1.4-.8-2.1q-.8-.7-2.5-.7h-1.8z\\\"/>\"\n\t\t},\n\t\t\"processing\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconProcessing0\\\" x1=\\\"64\\\" x2=\\\"64\\\" y1=\\\"169\\\" y2=\\\"297\\\" gradientTransform=\\\"translate(-.555 -2.02)scale(1.0087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".918\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".559\\\"/></linearGradient></defs><g transform=\\\"translate(0 -169)\\\"><circle cx=\\\"64\\\" cy=\\\"233\\\" r=\\\"64\\\"/><path fill=\\\"#6e8375\\\" stroke=\\\"#123859\\\" d=\\\"m55.017 180.15l23.042 11.422\\\"/><path fill=\\\"#6e8375\\\" stroke=\\\"#fff\\\" stroke-width=\\\".5\\\" d=\\\"m67.823 186.63l9.13 4.585\\\"/><path fill=\\\"none\\\" stroke=\\\"#152e44\\\" stroke-width=\\\".65\\\" d=\\\"m7.21 220.26l31.684 20.902\\\"/><path fill=\\\"none\\\" stroke=\\\"#e5b828\\\" stroke-width=\\\".5\\\" d=\\\"M4.1 211.87c2.005 2.786 8.338 10.643 10.64 12.985\\\"/><path fill=\\\"#0f212e\\\" stroke=\\\"#1b344c\\\" stroke-width=\\\".3\\\" d=\\\"m126.79 222.99l-19.683 5.138\\\"/><path fill=\\\"none\\\" stroke=\\\"#326a9c\\\" d=\\\"m124.68 212.54l-20.638 28.575l-12.435-29.633\\\"/><path fill=\\\"none\\\" stroke=\\\"#e5b828\\\" stroke-width=\\\".514\\\" d=\\\"m89.88 208.57l12.521 30.631\\\"/><path fill=\\\"#1b344b\\\" stroke=\\\"#326a9c\\\" stroke-width=\\\".6\\\" d=\\\"m73.966 274.73l29.334-33.297\\\"/><path fill=\\\"#326a9c\\\" stroke=\\\"#326a9c\\\" stroke-width=\\\".8\\\" d=\\\"m83.873 249.96l15.214 25.532\\\"/><path fill=\\\"none\\\" stroke=\\\"#19344e\\\" stroke-width=\\\".6\\\" d=\\\"m85.53 293.66l-11.383-18.655\\\"/><g fill=\\\"#0a2035\\\"><g stroke=\\\"#0a2035\\\"><path stroke-width=\\\".8\\\" d=\\\"m99.086 275.49l-24.672 10.385\\\"/><path stroke-width=\\\".4\\\" d=\\\"m62.045 291.24l12.369-5.358\\\"/><path stroke-width=\\\".8\\\" d=\\\"m106.89 280.52l-7.938-4.366\\\"/></g><path stroke=\\\"#10273c\\\" stroke-width=\\\".8\\\" d=\\\"m99.219 275.63l22.357-51.197\\\"/></g><g fill=\\\"none\\\"><path stroke=\\\"#152e44\\\" stroke-width=\\\".64\\\" d=\\\"m38.633 242.29l-19.785 27.853\\\"/><path stroke=\\\"#152e44\\\" stroke-width=\\\".8\\\" d=\\\"m18.785 236.27l19.645 4.763\\\"/><g stroke-width=\\\".5\\\"><path stroke=\\\"#6e8475\\\" d=\\\"m21.799 235.57l13.135 37.394\\\"/><path stroke=\\\"#d0d0d0\\\" d=\\\"m11.462 269.19l10.355-34.267\\\"/><path stroke=\\\"#33526d\\\" d=\\\"m35.438 273.13l-3.745-36.947\\\"/></g><path stroke=\\\"#152e44\\\" stroke-width=\\\".65\\\" d=\\\"m18.19 214.77l20.968 26.26\\\"/><path stroke=\\\"#0c2135\\\" stroke-width=\\\".61\\\" d=\\\"m6.548 224.36l12.568 11.245\\\"/><path stroke=\\\"#e5b828\\\" stroke-width=\\\".5\\\" d=\\\"m.356 230.58l25.335-8.695\\\"/><path stroke=\\\"#d0d0d0\\\" stroke-width=\\\".5\\\" d=\\\"m.277 230.18l29.065-10.038\\\"/><path stroke=\\\"#e5b828\\\" stroke-width=\\\".6\\\" d=\\\"m22.414 234.23l6.608-13.51l-6.608 13.51\\\"/><path stroke=\\\"#d0d0d0\\\" stroke-width=\\\".5\\\" d=\\\"M3.857 212.07L21.8 234.45\\\"/><path stroke=\\\"#d9d9d9\\\" stroke-width=\\\".5\\\" d=\\\"m29.292 220.23l6.034 50.333\\\"/></g><path fill=\\\"#6e8375\\\" stroke=\\\"#3c5b75\\\" stroke-width=\\\".5\\\" d=\\\"M35.885 273.97v.447L22.973 237.47\\\"/><g fill=\\\"none\\\"><g stroke=\\\"#152e44\\\"><path stroke-width=\\\".65\\\" d=\\\"m38.894 241.5l3.44 15.081\\\"/><path stroke-width=\\\".55\\\" d=\\\"m42.598 256.84l2.249 9.459l5.564 29.052m-11.12-53.461l32.676-8.07\\\"/></g><path stroke=\\\"#19344e\\\" stroke-width=\\\".748\\\" d=\\\"m43.903 236.08l29.998 38.439\\\"/></g><path fill=\\\"#fff\\\" d=\\\"M41.894 272.75v-5.345c2.99-.41 5.751-1.094 9.02-1.17v-41.26c-3.68-.062-7.144-.87-8.886-1.47v-5.13l18.472-.155v48.074c2.559-.185 6.013.705 9.142 1.205v5.268z\\\"/><path fill=\\\"none\\\" stroke=\\\"#081a26\\\" stroke-width=\\\".714\\\" d=\\\"m61.78 183.95l7.938 33.734\\\"/><path fill=\\\"#6e8375\\\" stroke=\\\"#0f2c48\\\" stroke-width=\\\".5\\\" d=\\\"m114.95 204.66l-28.507-9.307\\\"/><path fill=\\\"#fff\\\" d=\\\"m61.752 205.58l.4-11.877c5.627-3.227 25.472-5.534 27.589 7.959c.713 4.546 1.198 12.097-9.96 17.833c8.64 2.334 11.528 7.893 11.628 13.363c.236 12.844-12.233 20.698-23.456 19.444l.084-6.482c9.937 1.14 14.763-5.336 14.978-11.42c.22-6.236-5.241-10.537-14.978-10.346l-.15-6.096c12.189-.904 15.623-9.344 14.105-14.031c-2.078-6.419-8.71-7.604-14.573-5.346l-1.003 7.15z\\\"/><g fill=\\\"none\\\"><path stroke=\\\"#19344e\\\" stroke-width=\\\".95\\\" d=\\\"m93.511 289.92l-17.575-13.9\\\"/><g stroke=\\\"#0b1620\\\"><path stroke-width=\\\".5\\\" d=\\\"m61.453 233.83l8.824-.189\\\"/><path stroke-width=\\\".748\\\" d=\\\"m61.946 229.52l8.235 2.712\\\"/><path stroke-width=\\\".713\\\" d=\\\"m71.206 224.74l1.178 6.098\\\"/><path stroke-width=\\\".348\\\" d=\\\"m77.314 227.18l-2.9 3.835\\\"/><path stroke-width=\\\".248\\\" d=\\\"m74.04 232.84l4.022-4.911\\\"/><path stroke-width=\\\".348\\\" d=\\\"m75.911 232.42l5.66-1.216\\\"/></g><path stroke=\\\"#0c2135\\\" stroke-width=\\\".825\\\" d=\\\"m9.027 252.87l9.76-16.54\\\"/><path stroke=\\\"#0c2135\\\" stroke-width=\\\".41\\\" d=\\\"m18.661 237.78l-2.926 16.75\\\"/><path stroke=\\\"#e5b828\\\" stroke-width=\\\".4\\\" d=\\\"m-.01 236.01l21.698-1.44\\\"/><path stroke=\\\"#78a657\\\" stroke-width=\\\".5\\\" d=\\\"m.299 236.4l19.18-1.231\\\"/><path stroke=\\\"#0c2135\\\" stroke-width=\\\".31\\\" d=\\\"m4.53 210.06l10.42 3.121\\\"/><path stroke=\\\"#081725\\\" stroke-width=\\\".31\\\" d=\\\"m17.132 215.1l1.323 11.642\\\"/><path stroke=\\\"#0f2c48\\\" stroke-width=\\\".714\\\" d=\\\"m84.961 218.08l19.899-26.271\\\"/><g stroke=\\\"#123859\\\"><path stroke-width=\\\".814\\\" d=\\\"m84.205 193.41l7.604-11.64\\\"/><path stroke-dasharray=\\\"6.512 .814\\\" stroke-width=\\\".814\\\" d=\\\"m65.484 181.96l29.567 1.852\\\"/><path stroke-dasharray=\\\"2.088 2.088\\\" stroke-width=\\\".348\\\" d=\\\"m62.437 182.2l4.716.268\\\"/><path stroke-width=\\\".714\\\" d=\\\"m61.383 181.7l-33.999 23.945\\\"/></g><path stroke=\\\"#e5b828\\\" stroke-width=\\\".714\\\" d=\\\"m53.715 179.4l14.086 7.21\\\"/><path stroke=\\\"#e5b828\\\" stroke-width=\\\".314\\\" d=\\\"m53.38 179.17l-22.246 37.729\\\"/><path stroke=\\\"#d0d0d0\\\" stroke-width=\\\".514\\\" d=\\\"m29.289 220.57l19.03-31.926\\\"/><path stroke=\\\"#081a26\\\" stroke-width=\\\".714\\\" d=\\\"m55.959 175.48l6.218 6.085\\\"/><path stroke=\\\"#173149\\\" stroke-width=\\\".714\\\" d=\\\"m68.6 174.94l-6.692 7.201\\\"/></g><path fill=\\\"#6e8375\\\" stroke=\\\"#fff\\\" stroke-width=\\\".7\\\" d=\\\"m115.06 204.05l-28.479-9.139\\\"/><path fill=\\\"#6e8375\\\" stroke=\\\"#11385e\\\" stroke-width=\\\".6\\\" d=\\\"m27.153 278.09l9.21-3.439\\\"/><g fill=\\\"none\\\"><g stroke-width=\\\".714\\\"><path stroke=\\\"#d9d9d9\\\" d=\\\"m36.332 274.98l7.56-38.65m-7.779 38.86l36.551-.329\\\"/><path stroke=\\\"#e5b828\\\" d=\\\"m46.754 171.64l7.087 7.607\\\"/></g><path stroke=\\\"#123859\\\" stroke-width=\\\".514\\\" d=\\\"m52.455 181.45l-4.248 7.378\\\"/></g><path fill=\\\"#06111b\\\" stroke=\\\"#e5b828\\\" stroke-width=\\\".514\\\" d=\\\"m54.386 179.56l29.857-6.666\\\"/><g fill=\\\"none\\\"><path stroke=\\\"#e5b828\\\" stroke-width=\\\".4\\\" d=\\\"m6.627 205l19.38 13.084\\\"/><path stroke=\\\"#d0d0d0\\\" stroke-width=\\\".4\\\" d=\\\"m6.65 204.61l22.598 15.217\\\"/><g stroke-width=\\\".5\\\"><path stroke=\\\"#79a6cc\\\" d=\\\"m11.857 269.27l8.853-29.445\\\"/><path stroke=\\\"#fff\\\" d=\\\"m21.778 234.65l21.857 1.265\\\"/><path stroke=\\\"#32556e\\\" d=\\\"m21.975 235.09l20.296 1.255\\\"/><path stroke=\\\"#e5b828\\\" d=\\\"m15.162 225.42l6.581 8.589\\\"/><path stroke=\\\"#fff\\\" d=\\\"m14.7 225.62l7.21 8.943\\\"/></g></g><g fill=\\\"#6e8375\\\"><path stroke=\\\"#405c74\\\" stroke-width=\\\".5\\\" d=\\\"m29.609 220.46l14.03 14.756\\\"/><path stroke=\\\"#fff\\\" stroke-width=\\\".6\\\" d=\\\"m43.518 235.97l-14.174-15.013\\\"/><path stroke=\\\"#c4c32d\\\" stroke-width=\\\".6\\\" d=\\\"m21.274 280.9l13.309-4.953\\\"/></g><path fill=\\\"#0f212e\\\" stroke=\\\"#11385e\\\" stroke-width=\\\".3\\\" d=\\\"m78.811 241.49l-4.11-6.561\\\"/><circle cx=\\\"64\\\" cy=\\\"233\\\" r=\\\"61.336\\\" fill=\\\"none\\\" stroke=\\\"url(#deviconProcessing0)\\\" stroke-width=\\\"5.328\\\"/></g>\"\n\t\t},\n\t\t\"processing-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconProcessingWordmark0\\\" x1=\\\"64\\\" x2=\\\"64\\\" y1=\\\"169\\\" y2=\\\"297\\\" gradientTransform=\\\"translate(-.555 -2.02)scale(1.0087)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".918\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".559\\\"/></linearGradient></defs><g transform=\\\"translate(13.105 -134.42)scale(.79538)\\\"><circle cx=\\\"64\\\" cy=\\\"233\\\" r=\\\"64\\\"/><path fill=\\\"#6e8375\\\" stroke=\\\"#123859\\\" d=\\\"m55.017 180.15l23.042 11.422\\\"/><path fill=\\\"#6e8375\\\" stroke=\\\"#fff\\\" stroke-width=\\\".5\\\" d=\\\"m67.823 186.63l9.13 4.585\\\"/><path fill=\\\"none\\\" stroke=\\\"#152e44\\\" stroke-width=\\\".65\\\" d=\\\"m7.21 220.26l31.684 20.902\\\"/><path fill=\\\"none\\\" stroke=\\\"#e5b828\\\" stroke-width=\\\".5\\\" d=\\\"M4.1 211.87c2.005 2.786 8.338 10.643 10.64 12.985\\\"/><path fill=\\\"#0f212e\\\" stroke=\\\"#1b344c\\\" stroke-width=\\\".3\\\" d=\\\"m126.79 222.99l-19.683 5.138\\\"/><path fill=\\\"none\\\" stroke=\\\"#326a9c\\\" d=\\\"m124.68 212.54l-20.638 28.575l-12.435-29.633\\\"/><path fill=\\\"none\\\" stroke=\\\"#e5b828\\\" stroke-width=\\\".514\\\" d=\\\"m89.88 208.57l12.521 30.631\\\"/><path fill=\\\"#1b344b\\\" stroke=\\\"#326a9c\\\" stroke-width=\\\".6\\\" d=\\\"m73.966 274.73l29.334-33.297\\\"/><path fill=\\\"#326a9c\\\" stroke=\\\"#326a9c\\\" stroke-width=\\\".8\\\" d=\\\"m83.873 249.96l15.214 25.532\\\"/><path fill=\\\"none\\\" stroke=\\\"#19344e\\\" stroke-width=\\\".6\\\" d=\\\"m85.53 293.66l-11.383-18.655\\\"/><g fill=\\\"#0a2035\\\"><g stroke=\\\"#0a2035\\\"><path stroke-width=\\\".8\\\" d=\\\"m99.086 275.49l-24.672 10.385\\\"/><path stroke-width=\\\".4\\\" d=\\\"m62.045 291.24l12.369-5.358\\\"/><path stroke-width=\\\".8\\\" d=\\\"m106.89 280.52l-7.938-4.366\\\"/></g><path stroke=\\\"#10273c\\\" stroke-width=\\\".8\\\" d=\\\"m99.219 275.63l22.357-51.197\\\"/></g><g fill=\\\"none\\\"><path stroke=\\\"#152e44\\\" stroke-width=\\\".64\\\" d=\\\"m38.633 242.29l-19.785 27.853\\\"/><path stroke=\\\"#152e44\\\" stroke-width=\\\".8\\\" d=\\\"m18.785 236.27l19.645 4.763\\\"/><g stroke-width=\\\".5\\\"><path stroke=\\\"#6e8475\\\" d=\\\"m21.799 235.57l13.135 37.394\\\"/><path stroke=\\\"#d0d0d0\\\" d=\\\"m11.462 269.19l10.355-34.267\\\"/><path stroke=\\\"#33526d\\\" d=\\\"m35.438 273.13l-3.745-36.947\\\"/></g><path stroke=\\\"#152e44\\\" stroke-width=\\\".65\\\" d=\\\"m18.19 214.77l20.968 26.26\\\"/><path stroke=\\\"#0c2135\\\" stroke-width=\\\".61\\\" d=\\\"m6.548 224.36l12.568 11.245\\\"/><path stroke=\\\"#e5b828\\\" stroke-width=\\\".5\\\" d=\\\"m.356 230.58l25.335-8.695\\\"/><path stroke=\\\"#d0d0d0\\\" stroke-width=\\\".5\\\" d=\\\"m.277 230.18l29.065-10.038\\\"/><path stroke=\\\"#e5b828\\\" stroke-width=\\\".6\\\" d=\\\"m22.414 234.23l6.608-13.51l-6.608 13.51\\\"/><path stroke=\\\"#d0d0d0\\\" stroke-width=\\\".5\\\" d=\\\"M3.857 212.07L21.8 234.45\\\"/><path stroke=\\\"#d9d9d9\\\" stroke-width=\\\".5\\\" d=\\\"m29.292 220.23l6.034 50.333\\\"/></g><path fill=\\\"#6e8375\\\" stroke=\\\"#3c5b75\\\" stroke-width=\\\".5\\\" d=\\\"M35.885 273.97v.447L22.973 237.47\\\"/><g fill=\\\"none\\\"><g stroke=\\\"#152e44\\\"><path stroke-width=\\\".65\\\" d=\\\"m38.894 241.5l3.44 15.081\\\"/><path stroke-width=\\\".55\\\" d=\\\"m42.598 256.84l2.249 9.459l5.564 29.052m-11.12-53.461l32.676-8.07\\\"/></g><path stroke=\\\"#19344e\\\" stroke-width=\\\".748\\\" d=\\\"m43.903 236.08l29.998 38.439\\\"/></g><path fill=\\\"#fff\\\" d=\\\"M41.894 272.75v-5.345c2.99-.41 5.751-1.094 9.02-1.17v-41.26c-3.68-.062-7.144-.87-8.886-1.47v-5.13l18.472-.155v48.074c2.559-.185 6.013.705 9.142 1.205v5.268z\\\"/><path fill=\\\"none\\\" stroke=\\\"#081a26\\\" stroke-width=\\\".714\\\" d=\\\"m61.78 183.95l7.938 33.734\\\"/><path fill=\\\"#6e8375\\\" stroke=\\\"#0f2c48\\\" stroke-width=\\\".5\\\" d=\\\"m114.95 204.66l-28.507-9.307\\\"/><path fill=\\\"#fff\\\" d=\\\"m61.752 205.58l.4-11.877c5.627-3.227 25.472-5.534 27.589 7.959c.713 4.546 1.198 12.097-9.96 17.833c8.64 2.334 11.528 7.893 11.628 13.363c.236 12.844-12.233 20.698-23.456 19.444l.084-6.482c9.937 1.14 14.763-5.336 14.978-11.42c.22-6.236-5.241-10.537-14.978-10.346l-.15-6.096c12.189-.904 15.623-9.344 14.105-14.031c-2.078-6.419-8.71-7.604-14.573-5.346l-1.003 7.15z\\\"/><g fill=\\\"none\\\"><path stroke=\\\"#19344e\\\" stroke-width=\\\".95\\\" d=\\\"m93.511 289.92l-17.575-13.9\\\"/><g stroke=\\\"#0b1620\\\"><path stroke-width=\\\".5\\\" d=\\\"m61.453 233.83l8.824-.189\\\"/><path stroke-width=\\\".748\\\" d=\\\"m61.946 229.52l8.235 2.712\\\"/><path stroke-width=\\\".713\\\" d=\\\"m71.206 224.74l1.178 6.098\\\"/><path stroke-width=\\\".348\\\" d=\\\"m77.314 227.18l-2.9 3.835\\\"/><path stroke-width=\\\".248\\\" d=\\\"m74.04 232.84l4.022-4.911\\\"/><path stroke-width=\\\".348\\\" d=\\\"m75.911 232.42l5.66-1.216\\\"/></g><path stroke=\\\"#0c2135\\\" stroke-width=\\\".825\\\" d=\\\"m9.027 252.87l9.76-16.54\\\"/><path stroke=\\\"#0c2135\\\" stroke-width=\\\".41\\\" d=\\\"m18.661 237.78l-2.926 16.75\\\"/><path stroke=\\\"#e5b828\\\" stroke-width=\\\".4\\\" d=\\\"m-.01 236.01l21.698-1.44\\\"/><path stroke=\\\"#78a657\\\" stroke-width=\\\".5\\\" d=\\\"m.299 236.4l19.18-1.231\\\"/><path stroke=\\\"#0c2135\\\" stroke-width=\\\".31\\\" d=\\\"m4.53 210.06l10.42 3.121\\\"/><path stroke=\\\"#081725\\\" stroke-width=\\\".31\\\" d=\\\"m17.132 215.1l1.323 11.642\\\"/><path stroke=\\\"#0f2c48\\\" stroke-width=\\\".714\\\" d=\\\"m84.961 218.08l19.899-26.271\\\"/><g stroke=\\\"#123859\\\"><path stroke-width=\\\".814\\\" d=\\\"m84.205 193.41l7.604-11.64\\\"/><path stroke-dasharray=\\\"6.512 .814\\\" stroke-width=\\\".814\\\" d=\\\"m65.484 181.96l29.567 1.852\\\"/><path stroke-dasharray=\\\"2.088 2.088\\\" stroke-width=\\\".348\\\" d=\\\"m62.437 182.2l4.716.268\\\"/><path stroke-width=\\\".714\\\" d=\\\"m61.383 181.7l-33.999 23.945\\\"/></g><path stroke=\\\"#e5b828\\\" stroke-width=\\\".714\\\" d=\\\"m53.715 179.4l14.086 7.21\\\"/><path stroke=\\\"#e5b828\\\" stroke-width=\\\".314\\\" d=\\\"m53.38 179.17l-22.246 37.729\\\"/><path stroke=\\\"#d0d0d0\\\" stroke-width=\\\".514\\\" d=\\\"m29.289 220.57l19.03-31.926\\\"/><path stroke=\\\"#081a26\\\" stroke-width=\\\".714\\\" d=\\\"m55.959 175.48l6.218 6.085\\\"/><path stroke=\\\"#173149\\\" stroke-width=\\\".714\\\" d=\\\"m68.6 174.94l-6.692 7.201\\\"/></g><path fill=\\\"#6e8375\\\" stroke=\\\"#fff\\\" stroke-width=\\\".7\\\" d=\\\"m115.06 204.05l-28.479-9.139\\\"/><path fill=\\\"#6e8375\\\" stroke=\\\"#11385e\\\" stroke-width=\\\".6\\\" d=\\\"m27.153 278.09l9.21-3.439\\\"/><g fill=\\\"none\\\"><g stroke-width=\\\".714\\\"><path stroke=\\\"#d9d9d9\\\" d=\\\"m36.332 274.98l7.56-38.65m-7.779 38.86l36.551-.329\\\"/><path stroke=\\\"#e5b828\\\" d=\\\"m46.754 171.64l7.087 7.607\\\"/></g><path stroke=\\\"#123859\\\" stroke-width=\\\".514\\\" d=\\\"m52.455 181.45l-4.248 7.378\\\"/></g><path fill=\\\"#06111b\\\" stroke=\\\"#e5b828\\\" stroke-width=\\\".514\\\" d=\\\"m54.386 179.56l29.857-6.666\\\"/><g fill=\\\"none\\\"><path stroke=\\\"#e5b828\\\" stroke-width=\\\".4\\\" d=\\\"m6.627 205l19.38 13.084\\\"/><path stroke=\\\"#d0d0d0\\\" stroke-width=\\\".4\\\" d=\\\"m6.65 204.61l22.598 15.217\\\"/><g stroke-width=\\\".5\\\"><path stroke=\\\"#79a6cc\\\" d=\\\"m11.857 269.27l8.853-29.445\\\"/><path stroke=\\\"#fff\\\" d=\\\"m21.778 234.65l21.857 1.265\\\"/><path stroke=\\\"#32556e\\\" d=\\\"m21.975 235.09l20.296 1.255\\\"/><path stroke=\\\"#e5b828\\\" d=\\\"m15.162 225.42l6.581 8.589\\\"/><path stroke=\\\"#fff\\\" d=\\\"m14.7 225.62l7.21 8.943\\\"/></g></g><g fill=\\\"#6e8375\\\"><path stroke=\\\"#405c74\\\" stroke-width=\\\".5\\\" d=\\\"m29.609 220.46l14.03 14.756\\\"/><path stroke=\\\"#fff\\\" stroke-width=\\\".6\\\" d=\\\"m43.518 235.97l-14.174-15.013\\\"/><path stroke=\\\"#c4c32d\\\" stroke-width=\\\".6\\\" d=\\\"m21.274 280.9l13.309-4.953\\\"/></g><path fill=\\\"#0f212e\\\" stroke=\\\"#11385e\\\" stroke-width=\\\".3\\\" d=\\\"m78.811 241.49l-4.11-6.561\\\"/><circle cx=\\\"64\\\" cy=\\\"233\\\" r=\\\"61.336\\\" fill=\\\"none\\\" stroke=\\\"url(#deviconProcessingWordmark0)\\\" stroke-width=\\\"5.328\\\"/></g><path d=\\\"M12.038 116.274c-.287 0-.647 0-1.031-.048v3.478c.72.048 1.463.168 2.087.288v1.944H5.802v-1.944c.624-.12 1.368-.24 2.087-.288v-11.73a17.675 17.675 0 0 1-2.087-.287v-1.943h1.872c.767 0 2.878-.096 4.557-.096c3.958 0 6.14 1.846 6.14 5.013c0 3.142-2.398 5.613-6.333 5.613m.05-8.084c-.385 0-.72 0-1.08.024v5.397c.311.048.623.072.911.072c1.895-.024 3.214-1.08 3.214-2.83c0-1.632-.911-2.663-3.046-2.663zm15.976 4.581c-2.447-.455-3.55.984-3.55 4.294v2.638c.719.048 1.463.168 2.086.288v1.943h-7.22v-1.943c.624-.12 1.368-.24 2.087-.288v-7.339a23.931 23.931 0 0 0-2.087-.24v-1.919c1.511-.192 3.358-.264 4.965-.216c0 .624-.072 1.583-.216 2.423h.048c.576-1.511 1.728-2.83 4.03-2.663zm6.885 9.404c-3.382 0-5.565-1.75-5.565-5.997c0-3.718 2.47-6.404 6.093-6.404c3.382 0 5.565 1.871 5.565 5.973c0 3.742-2.519 6.428-6.093 6.428m.312-9.81c-1.368 0-2.71 1.055-2.71 3.501s.887 3.694 2.662 3.694c1.511 0 2.663-1.224 2.663-3.646c0-2.302-.816-3.55-2.615-3.55zm13.122 9.786c-3.478 0-5.71-1.727-5.71-5.781c0-3.718 1.92-6.573 6.285-6.573c.912 0 1.919.144 2.783.408v3.838h-1.968c-.095-.576-.191-1.104-.24-1.584c-.287-.095-.647-.12-.983-.12c-1.655 0-2.687 1.367-2.687 3.622c0 2.183.816 3.527 3.214 3.527c.84 0 1.8-.193 2.519-.529l.216 2.639c-.982.312-2.062.553-3.43.553zm15.521-5.685h-7.388c-.024 2.23 1.08 3.31 3.286 3.31c1.175 0 2.447-.264 3.479-.744l.287 2.374c-1.271.504-2.782.767-4.27.767c-3.789 0-5.9-1.895-5.9-6.092c0-3.647 2.015-6.333 5.589-6.333c3.478 0 5.013 2.374 5.013 5.325c0 .41-.024.889-.096 1.393m-5.013-4.462c-1.271 0-2.16.936-2.327 2.375h4.39c.047-1.487-.768-2.375-2.063-2.375m10.292 10.171c-.912 0-2.135-.12-3.118-.336v-3.574h1.943c.12.48.192 1.032.24 1.56c.336.071.815.12 1.2.12c1.223 0 2.062-.528 2.062-1.415c0-2.088-5.757-.984-5.757-4.942c0-2.159 1.752-3.813 5.134-3.813c.887 0 2.014.12 3.094.36v3.43h-1.943c-.12-.48-.192-1.032-.24-1.536a5.72 5.72 0 0 0-1.08-.12c-1.295 0-1.894.528-1.894 1.319c0 2.11 5.757 1.127 5.757 4.87c-.001 2.325-2.088 4.077-5.398 4.077m10.529 0c-.912 0-2.135-.12-3.119-.336v-3.574h1.943c.12.48.193 1.032.24 1.56c.337.071.816.12 1.2.12c1.223 0 2.063-.528 2.063-1.415c0-2.088-5.757-.984-5.757-4.942c0-2.159 1.752-3.813 5.133-3.813c.888 0 2.014.12 3.095.36v3.43h-1.943c-.12-.48-.192-1.032-.24-1.536a5.714 5.714 0 0 0-1.08-.12c-1.294 0-1.894.528-1.894 1.319c0 2.11 5.756 1.127 5.756 4.87c0 2.325-2.087 4.077-5.397 4.077m6.89-.24v-1.943a17.75 17.75 0 0 1 2.087-.289v-7.339a23.9 23.9 0 0 0-2.087-.24v-1.919c1.512-.192 3.358-.264 5.133-.216v9.715a15.12 15.12 0 0 1 1.944.288v1.944h-7.077zm3.599-13.457a1.88 1.88 0 0 1-1.896-1.87c0-1.008.84-1.848 1.896-1.848c1.054 0 1.918.816 1.918 1.847s-.863 1.871-1.918 1.871m13.934 5.829c0-1.248-.336-1.99-1.464-1.99c-1.56 0-2.783 1.774-2.783 3.86v3.527c.576.048 1.223.12 1.752.264v1.967h-6.885v-1.943c.624-.12 1.368-.24 2.087-.288v-7.34a23.918 23.918 0 0 0-2.087-.24v-1.919c1.512-.192 3.358-.264 4.965-.216c0 .552-.047 1.512-.168 2.135l.025.024c.719-1.415 2.11-2.399 4.053-2.399c2.686 0 3.55 1.728 3.55 3.814v6.14c.695.049 1.391.169 1.967.29v1.943h-5.013v-7.63zm11.369 13.697c-3.167 0-5.11-1.2-5.11-3.527c0-1.247.84-2.399 1.824-2.877c-.72-.36-1.176-.985-1.176-1.824c0-.911.575-1.75 1.39-2.11c-1.079-.6-1.75-1.775-1.75-3.334c0-2.495 1.799-4.581 5.397-4.581c.767 0 1.44.096 2.087.263h4.03v2.4h-1.608c.36.36.6.911.6 1.582c0 2.591-1.8 4.366-5.253 4.366c-.36 0-.768-.024-1.104-.097c-.384.168-.552.48-.552.768c0 .552.456.743 1.847.743h1.846c2.591 0 4.102 1.2 4.102 3.455c.001 2.59-2.588 4.773-6.57 4.773m1.63-5.805h-2.66c-.673.384-1.055 1.031-1.055 1.703c0 1.104 1.007 1.75 2.541 1.75c1.991 0 3.07-.839 3.07-2.013c.001-.816-.575-1.44-1.894-1.44zm-1.174-10.219c-1.464 0-2.352.888-2.352 2.159c0 1.343.84 2.135 2.352 2.135c1.391 0 2.302-.768 2.302-2.11s-.815-2.184-2.302-2.184\\\"/>\"\n\t\t},\n\t\t\"prolog\": {\n\t\t\t\"body\": \"<path fill=\\\"url(#deviconProlog0)\\\" d=\\\"M107.044 111.363c26.157-23.773 28.09-64.249 4.318-90.406C87.59-5.201 47.114-7.135 20.957 16.637c-26.158 23.773-28.092 64.249-4.32 90.407c23.772 26.157 64.249 28.09 90.407 4.319\\\"/><path fill=\\\"url(#deviconProlog1)\\\" d=\\\"M81.797 20.16C73.671 13.137 63.298 9.354 52.62 9.52c-21.878 0-43.38 16.968-45.036 49.997c-1.795 35.481 21.323 58.507 53.866 58.507c48.178 0 74.836-44.489 45.008-92.742c20.967 48.218-2.365 78.6-32.48 78.6c-24.424 0-43.137-16.608-43.137-47.058c-.018-43.942 32.485-46.99 50.956-36.664\\\"/><path fill=\\\"url(#deviconProlog2)\\\" d=\\\"M93.818 38.484c-1.311-4.274-2.886-12.675 2.837-17.55a16.437 16.437 0 0 0-9.64.84a16.735 16.735 0 0 0-7.56 6.134a40.455 40.455 0 0 0-16.761-3.612a40.457 40.457 0 0 0-16.752 3.663a16.738 16.738 0 0 0-7.558-6.168a16.437 16.437 0 0 0-9.659-.856c5.858 5.001 4.071 13.662 2.747 17.835c-7.732 8.816-11.981 20.226-11.929 32.035c0 9.884 6.265 21.119 7.495 36.167l7.91-6.965a51.857 51.857 0 0 0 27.796 6.515a51.857 51.857 0 0 0 27.794-6.515l7.915 6.965c1.253-15.048 7.495-26.283 7.495-36.167c.07-11.934-4.257-23.464-12.13-32.322z\\\"/><path fill=\\\"url(#deviconProlog3)\\\" d=\\\"M40.783 118.232a6.835 6.835 0 0 1 .503-2.836a7.17 7.17 0 0 1 1.64-2.426a7.68 7.68 0 0 1 2.516-1.63a8.056 8.056 0 0 1 2.992-.573c1.028 0 2.044.195 2.99.574a7.682 7.682 0 0 1 2.517 1.63a7.168 7.168 0 0 1 1.64 2.425a6.84 6.84 0 0 1 .502 2.836v.236a9.691 9.691 0 0 0 2.54-5.191a9.427 9.427 0 0 0-.915-5.65c-.886-1.759-2.3-3.234-4.067-4.242a11.055 11.055 0 0 0-5.875-1.428c-2.064.075-4.06.72-5.738 1.855c-1.678 1.135-2.967 2.71-3.705 4.528a9.397 9.397 0 0 0-.445 5.7c.447 1.9 1.477 3.636 2.962 4.989a4.983 4.983 0 0 1-.056-.797z\\\"/><path fill=\\\"url(#deviconProlog4)\\\" d=\\\"M84.709 118.232a6.835 6.835 0 0 0-.504-2.836a7.166 7.166 0 0 0-1.64-2.426a7.68 7.68 0 0 0-2.515-1.63a8.056 8.056 0 0 0-2.992-.573a8.055 8.055 0 0 0-2.991.574a7.682 7.682 0 0 0-2.516 1.63a7.168 7.168 0 0 0-1.64 2.425a6.827 6.827 0 0 0-.502 2.836v.236a9.691 9.691 0 0 1-2.54-5.191a9.427 9.427 0 0 1 .915-5.65c.886-1.759 2.3-3.234 4.067-4.242a11.055 11.055 0 0 1 5.875-1.428c2.064.075 4.06.72 5.738 1.855c1.678 1.135 2.967 2.71 3.704 4.528a9.397 9.397 0 0 1 .446 5.7a9.803 9.803 0 0 1-2.962 4.989a6.84 6.84 0 0 0 .056-.797z\\\"/><path fill=\\\"#231f20\\\" d=\\\"M29.454 74.684c-.6 3.033-4.415 3.988-4.415 3.988a6.179 6.179 0 0 1-2.574-5.353a13.317 13.317 0 0 0 2.014 8.154a13.308 13.308 0 0 0 4.974-6.79zm7.557 1.532c-.6 3.033-4.419 3.989-4.419 3.989a6.183 6.183 0 0 1-2.574-5.375a13.318 13.318 0 0 0 2.02 8.152a13.305 13.305 0 0 0 4.973-6.766m-5.344 6.875c-.6 3.032-4.415 3.988-4.415 3.988a6.179 6.179 0 0 1-2.555-5.375a13.318 13.318 0 0 0 2.015 8.153a13.3 13.3 0 0 0 4.955-6.766m7.58 1.518c-.6 3.034-4.414 3.99-4.414 3.99a6.183 6.183 0 0 1-2.573-5.376a13.317 13.317 0 0 0 1.986 8.158a13.308 13.308 0 0 0 5.002-6.772zm-5.327 6.993c-.6 3.034-4.42 3.989-4.42 3.989a6.184 6.184 0 0 1-2.57-5.375a13.317 13.317 0 0 0 2.015 8.153a13.304 13.304 0 0 0 4.975-6.766zM44.54 77.73c-.6 3.033-4.42 3.989-4.42 3.989a6.18 6.18 0 0 1-2.568-5.375a13.322 13.322 0 0 0 2.013 8.152a13.308 13.308 0 0 0 4.974-6.766zm52.258-3.046c.6 3.033 4.414 3.988 4.414 3.988a6.183 6.183 0 0 0 1.978-2.357a6.173 6.173 0 0 0 .595-3.018a13.326 13.326 0 0 1-2.013 8.153a13.307 13.307 0 0 1-4.974-6.766m-7.556 1.532c.599 3.033 4.419 3.989 4.419 3.989a6.184 6.184 0 0 0 2.569-5.375a13.328 13.328 0 0 1-2.02 8.152a13.304 13.304 0 0 1-4.969-6.766zm5.337 6.875c.6 3.032 4.415 3.988 4.415 3.988a6.186 6.186 0 0 0 1.977-2.357a6.183 6.183 0 0 0 .596-3.017a13.316 13.316 0 0 1-2.013 8.152a13.304 13.304 0 0 1-4.975-6.766m-7.553 1.518c.6 3.034 4.415 3.99 4.415 3.99a6.179 6.179 0 0 0 2.569-5.376a13.312 13.312 0 0 1-2.015 8.153a13.31 13.31 0 0 1-4.97-6.767zm5.306 6.993c.6 3.034 4.42 3.989 4.42 3.989a6.183 6.183 0 0 0 2.568-5.375a13.312 13.312 0 0 1-2.019 8.153a13.308 13.308 0 0 1-4.97-6.766zm-10.626-13.87c.6 3.032 4.42 3.988 4.42 3.988a6.179 6.179 0 0 0 2.569-5.375a13.312 13.312 0 0 1-2.015 8.152a13.312 13.312 0 0 1-4.973-6.766z\\\" opacity=\\\".53\\\"/><path fill=\\\"#fff\\\" d=\\\"M43.154 71.807c9.71 0 17.582-7.647 17.582-17.08c0-9.433-7.871-17.08-17.582-17.08c-9.71 0-17.583 7.647-17.583 17.08c0 9.433 7.872 17.08 17.583 17.08\\\"/><path fill=\\\"#bdbfc1\\\" d=\\\"M47.675 64.774c4.994 0 9.043-3.599 9.043-8.037c0-4.44-4.05-8.038-9.043-8.038c-4.993 0-9.042 3.599-9.042 8.038c0 4.438 4.049 8.037 9.042 8.037\\\"/><path fill=\\\"#231f20\\\" d=\\\"M47.675 62.765c2.774 0 5.024-2.474 5.024-5.526c0-3.052-2.25-5.526-5.024-5.526s-5.023 2.474-5.023 5.526c0 3.052 2.25 5.526 5.023 5.526\\\"/><path fill=\\\"#fff\\\" d=\\\"M45.163 56.737c.832 0 1.507-.9 1.507-2.01c0-1.11-.675-2.01-1.507-2.01c-.831 0-1.507.9-1.507 2.01c0 1.11.676 2.01 1.507 2.01m37.175 15.07c9.71 0 17.582-7.647 17.582-17.08c0-9.433-7.872-17.08-17.582-17.08s-17.583 7.647-17.583 17.08c0 9.433 7.872 17.08 17.583 17.08\\\"/><path fill=\\\"#bdbfc1\\\" d=\\\"M86.357 64.774c4.716 0 8.54-3.599 8.54-8.037c0-4.44-3.824-8.038-8.54-8.038c-4.716 0-8.54 3.599-8.54 8.038c0 4.438 3.824 8.037 8.54 8.037\\\"/><path fill=\\\"#231f20\\\" d=\\\"M86.859 62.765c3.33 0 6.028-2.474 6.028-5.526c0-3.052-2.698-5.526-6.028-5.526c-3.33 0-6.028 2.474-6.028 5.526c0 3.052 2.698 5.526 6.028 5.526\\\"/><path fill=\\\"#fff\\\" d=\\\"M83.343 56.737c.831 0 1.507-.9 1.507-2.01c0-1.11-.676-2.01-1.507-2.01c-.832 0-1.508.9-1.508 2.01c0 1.11.676 2.01 1.508 2.01\\\"/><path fill=\\\"url(#deviconProlog5)\\\" d=\\\"M63.246 88.887c0-6.284 9.547-15.19 9.547-21.752a9.626 9.626 0 0 0-2.867-6.654a9.512 9.512 0 0 0-6.678-2.74a9.518 9.518 0 0 0-6.677 2.74a9.626 9.626 0 0 0-2.868 6.654c0 6.561 9.543 15.468 9.543 21.752\\\"/><defs><radialGradient id=\\\"deviconProlog0\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"rotate(-42.27 77.964 -24.175)scale(83.65183)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#fff\\\"/><stop offset=\\\".181\\\" stop-color=\\\"#FBFBFB\\\"/><stop offset=\\\".365\\\" stop-color=\\\"#EFEFF0\\\"/><stop offset=\\\".552\\\" stop-color=\\\"#DADBDC\\\"/><stop offset=\\\".738\\\" stop-color=\\\"#BEBFC2\\\"/><stop offset=\\\".824\\\" stop-color=\\\"#AEB0B3\\\"/></radialGradient><radialGradient id=\\\"deviconProlog1\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(74.84512 0 0 82.49782 15.977 49.017)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#FAFDFF\\\"/><stop offset=\\\".079\\\" stop-color=\\\"#EEF5FA\\\"/><stop offset=\\\".22\\\" stop-color=\\\"#CFDFEC\\\"/><stop offset=\\\".407\\\" stop-color=\\\"#9DBBD5\\\"/><stop offset=\\\".631\\\" stop-color=\\\"#588AB5\\\"/><stop offset=\\\".745\\\" stop-color=\\\"#326FA4\\\"/><stop offset=\\\".799\\\" stop-color=\\\"#2B6698\\\"/><stop offset=\\\".897\\\" stop-color=\\\"#174E78\\\"/><stop offset=\\\".994\\\" stop-color=\\\"#003152\\\"/></radialGradient><radialGradient id=\\\"deviconProlog2\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(74.24721 0 0 80.12208 42.546 46.237)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#FFD540\\\"/><stop offset=\\\".667\\\" stop-color=\\\"#EC1C24\\\"/><stop offset=\\\".994\\\" stop-color=\\\"#760000\\\"/></radialGradient><radialGradient id=\\\"deviconProlog3\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(9.83645 0 0 9.26717 48.17 110.492)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#DDDFE0\\\"/><stop offset=\\\".174\\\" stop-color=\\\"#D9DBDC\\\"/><stop offset=\\\".351\\\" stop-color=\\\"#CDCFD0\\\"/><stop offset=\\\".531\\\" stop-color=\\\"#B8BABB\\\"/><stop offset=\\\".711\\\" stop-color=\\\"#9C9E9F\\\"/><stop offset=\\\".891\\\" stop-color=\\\"#78797B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5E5F61\\\"/></radialGradient><radialGradient id=\\\"deviconProlog4\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(9.83645 0 0 9.26717 77.318 110.492)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#DDDFE0\\\"/><stop offset=\\\".174\\\" stop-color=\\\"#D9DBDC\\\"/><stop offset=\\\".351\\\" stop-color=\\\"#CDCFD0\\\"/><stop offset=\\\".531\\\" stop-color=\\\"#B8BABB\\\"/><stop offset=\\\".711\\\" stop-color=\\\"#9C9E9F\\\"/><stop offset=\\\".891\\\" stop-color=\\\"#78797B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5E5F61\\\"/></radialGradient><radialGradient id=\\\"deviconProlog5\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(11.8928 0 0 11.9598 62.043 67.22)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#DDDFE0\\\"/><stop offset=\\\".174\\\" stop-color=\\\"#D9DBDC\\\"/><stop offset=\\\".351\\\" stop-color=\\\"#CDCFD0\\\"/><stop offset=\\\".531\\\" stop-color=\\\"#B8BABB\\\"/><stop offset=\\\".711\\\" stop-color=\\\"#9C9E9F\\\"/><stop offset=\\\".891\\\" stop-color=\\\"#78797B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5E5F61\\\"/></radialGradient></defs>\"\n\t\t},\n\t\t\"prolog-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#231f20\\\" d=\\\"M106.758 107.39c3.63 0 4.38-3.747 4.38-5.763c0-2.018-.75-5.764-4.38-5.764c-3.632 0-4.38 3.746-4.38 5.764c0 2.016.748 5.764 4.38 5.764zm0-13.718c4.812 0 7.004 4.064 7.004 7.955c0 3.89-2.192 7.954-7.004 7.954c-4.813 0-7.004-4.064-7.004-7.954c0-3.891 2.19-7.955 7.004-7.955m14.7 13.748c1.613 0 4.12-1.066 4.12-5.072c0-2.45-.403-6.398-4.064-6.398c-3.919 0-4.12 3.717-4.12 5.649c0 3.314 1.296 5.82 4.063 5.82zm6.542.518c0 2.163-.03 7.58-7.005 7.58c-1.786 0-5.273-.49-5.764-4.495h2.537c.46 2.392 2.795 2.392 3.4 2.392c4.382 0 4.295-3.517 4.295-5.303v-.634c-.72 1.21-2.046 2.132-4.064 2.132c-5.13 0-6.628-4.812-6.628-8.415c0-4.238 2.277-7.523 6.283-7.523c2.737 0 3.919 1.73 4.553 2.652v-2.22H128zM96.007 88.484h2.537v20.694h-2.537V88.485zm-8.214 18.907c3.632 0 4.38-3.748 4.38-5.764c0-2.018-.749-5.764-4.38-5.764c-3.632 0-4.381 3.746-4.381 5.764c0 2.016.75 5.764 4.381 5.764m0-13.719c4.813 0 7.003 4.064 7.003 7.955c0 3.89-2.19 7.954-7.003 7.954c-4.814 0-7.005-4.064-7.005-7.954c0-3.891 2.19-7.955 7.005-7.955m-11.702 15.506h-2.536V94.104h2.392v2.51h.058c1.009-1.76 2.334-2.942 4.237-2.942c.317 0 .46.03.662.087v2.622h-.951c-2.363 0-3.862 1.845-3.862 4.036zm-16.4-11.125h5.563c2.507 0 4.207-.922 4.207-3.718c0-2.623-1.787-3.459-4.092-3.459H59.69v7.178zm0 11.125h-2.796V88.485h9.31c3.832 0 6.138 2.477 6.138 5.821c0 2.882-1.642 6.14-6.138 6.14h-6.514zM44.27 88.485h4.322v20.693H44.27zm-27.44 0h4.611c2.652 11.325 2.912 12.766 3.286 15.13h.058c.374-2.161.692-4.265 2.882-15.13h4.582c2.422 11.354 2.624 12.45 3.084 15.13h.058c.345-1.96.691-3.747 3.372-15.13h4.38l-5.821 20.693h-4.15c-2.133-10.144-2.508-12.163-3.2-16.14h-.057c-.635 3.977-.98 5.476-3.199 16.14h-4.035zM4.15 102.808c.028 1.153.604 3.343 4.38 3.343c2.047 0 4.323-.49 4.323-2.68c0-1.613-1.556-2.046-3.747-2.565l-2.22-.519c-3.341-.778-6.57-1.527-6.57-6.08c0-2.306 1.24-6.369 7.956-6.369c6.34 0 8.04 4.149 8.07 6.685H12.19c-.115-.922-.46-3.112-4.237-3.112c-1.642 0-3.602.605-3.602 2.477c0 1.615 1.326 1.962 2.19 2.163l5.044 1.24c2.824.69 5.418 1.844 5.418 5.561c0 6.226-6.34 6.773-8.157 6.773c-7.55 0-8.847-4.351-8.847-6.917h4.15z\\\"/><path fill=\\\"url(#deviconPrologWordmark0)\\\" d=\\\"M86.723 70.694c13.673-12.426 14.684-33.584 2.258-47.258C76.554 9.763 55.396 8.752 41.722 21.18C28.05 33.605 27.04 54.763 39.466 68.437C51.892 82.109 73.05 83.12 86.723 70.693z\\\"/><path fill=\\\"url(#deviconPrologWordmark1)\\\" d=\\\"M73.635 22.779a23.382 23.382 0 0 0-15.533-5.589c-11.647 0-23.093 8.914-23.975 26.265c-.956 18.639 11.35 30.735 28.675 30.735c25.647 0 39.84-23.37 23.96-48.72c11.162 25.33-1.26 41.29-17.29 41.29c-13.003 0-22.964-8.724-22.964-24.72c-.01-23.083 17.293-24.685 27.126-19.26z\\\"/><path fill=\\\"url(#deviconPrologWordmark2)\\\" d=\\\"M80.235 32.591c-.7-2.246-1.542-6.662 1.514-9.224a8.911 8.911 0 0 0-9.185 3.666a21.9 21.9 0 0 0-17.898.026a8.911 8.911 0 0 0-9.196-3.692c3.13 2.63 2.175 7.181 1.468 9.374a25.132 25.132 0 0 0-6.371 16.838c0 5.195 3.346 11.1 4.002 19.009l4.225-3.66a28.06 28.06 0 0 0 14.845 3.424a28.058 28.058 0 0 0 14.844-3.425l4.227 3.66c.67-7.909 4.003-13.813 4.003-19.008a25.12 25.12 0 0 0-6.478-16.988\\\"/><path fill=\\\"url(#deviconPrologWordmark3)\\\" d=\\\"M51.612 74.295a3.873 3.873 0 0 1 1.084-2.827a3.874 3.874 0 0 1 6.658 2.827v.126a5.338 5.338 0 0 0 .822-5.823a5.338 5.338 0 0 0-5.031-3.045a5.338 5.338 0 0 0-4.779 3.428a5.338 5.338 0 0 0 1.274 5.742a2.825 2.825 0 0 1-.029-.428z\\\"/><path fill=\\\"url(#deviconPrologWordmark4)\\\" d=\\\"M75.285 74.295a3.875 3.875 0 0 0-1.083-2.827a3.874 3.874 0 0 0-6.658 2.827v.126a5.338 5.338 0 0 1-.823-5.823a5.338 5.338 0 0 1 5.031-3.045a5.338 5.338 0 0 1 3.505 9.17a3.999 3.999 0 0 0 .028-.428\\\"/><path fill=\\\"#231f20\\\" d=\\\"M45.934 51.672c-.315 1.594-2.32 2.095-2.32 2.095a3.249 3.249 0 0 1-1.353-2.812a7 7 0 0 0 1.06 4.285a6.995 6.995 0 0 0 2.614-3.568zm3.972.806c-.315 1.593-2.323 2.095-2.323 2.095a3.25 3.25 0 0 1-1.352-2.825a6.999 6.999 0 0 0 1.06 4.285a6.992 6.992 0 0 0 2.615-3.555m-2.807 3.613c-.316 1.593-2.32 2.095-2.32 2.095a3.247 3.247 0 0 1-1.344-2.824a6.999 6.999 0 0 0 1.06 4.285a6.99 6.99 0 0 0 2.604-3.556m3.983.797c-.316 1.595-2.32 2.097-2.32 2.097a3.25 3.25 0 0 1-1.353-2.825a7 7 0 0 0 1.044 4.286a6.994 6.994 0 0 0 2.63-3.558zm-2.8 3.676c-.316 1.594-2.323 2.096-2.323 2.096a3.25 3.25 0 0 1-1.35-2.825a7 7 0 0 0 1.058 4.284a6.992 6.992 0 0 0 2.614-3.555zm5.581-7.29c-.316 1.593-2.322 2.095-2.322 2.095a3.247 3.247 0 0 1-1.35-2.825a7.002 7.002 0 0 0 1.058 4.284a6.995 6.995 0 0 0 2.614-3.554m27.462-1.602c.316 1.594 2.322 2.095 2.322 2.095a3.247 3.247 0 0 0 1.352-2.824a7.002 7.002 0 0 1-1.06 4.285a6.995 6.995 0 0 1-2.613-3.556zm-3.97.806c.315 1.593 2.322 2.095 2.322 2.095a3.25 3.25 0 0 0 1.35-2.824a7.004 7.004 0 0 1-1.06 4.284a6.992 6.992 0 0 1-2.612-3.555m2.805 3.613c.316 1.593 2.32 2.095 2.32 2.095a3.249 3.249 0 0 0 1.353-2.824a7 7 0 0 1-1.06 4.285a6.992 6.992 0 0 1-2.612-3.556zm-3.969.797c.315 1.595 2.32 2.097 2.32 2.097a3.248 3.248 0 0 0 1.35-2.825a6.997 6.997 0 0 1-1.059 4.284a6.995 6.995 0 0 1-2.611-3.556m2.788 3.676c.315 1.594 2.322 2.096 2.322 2.096a3.249 3.249 0 0 0 1.35-2.825a6.997 6.997 0 0 1-1.06 4.284a6.994 6.994 0 0 1-2.612-3.555m-5.584-7.29c.316 1.593 2.322 2.095 2.322 2.095a3.248 3.248 0 0 0 1.35-2.825a6.997 6.997 0 0 1-1.058 4.284a6.998 6.998 0 0 1-2.614-3.554\\\" opacity=\\\".53\\\"/><path fill=\\\"#fff\\\" d=\\\"M53.086 50.454a9.119 9.119 0 1 0 0-18.237a9.119 9.119 0 0 0 0 18.237\\\"/><path fill=\\\"#bdbfc1\\\" d=\\\"M54.976 46.67a4.447 4.447 0 1 0 0-8.893a4.447 4.447 0 0 0 0 8.894z\\\"/><path fill=\\\"#231f20\\\" d=\\\"M54.976 45.07a2.846 2.846 0 1 0 0-5.692a2.846 2.846 0 0 0 0 5.691z\\\"/><path fill=\\\"#fff\\\" d=\\\"M53.716 42.075a.853.853 0 1 0 0-1.706a.853.853 0 0 0 0 1.706m20.334 8.378a9.119 9.119 0 1 0 0-18.236a9.119 9.119 0 0 0 0 18.237z\\\"/><path fill=\\\"#bdbfc1\\\" d=\\\"M75.94 46.67a4.447 4.447 0 1 0 0-8.893a4.447 4.447 0 0 0 0 8.894z\\\"/><path fill=\\\"#231f20\\\" d=\\\"M75.94 45.07a2.846 2.846 0 1 0 0-5.692a2.846 2.846 0 0 0 0 5.691z\\\"/><path fill=\\\"#fff\\\" d=\\\"M74.678 42.075a.853.853 0 0 0 .853-.852a.853.853 0 1 0-1.705 0c0 .47.382.852.852.852\\\"/><path fill=\\\"url(#deviconPrologWordmark5)\\\" d=\\\"M63.521 59.128c0-3.374 5.154-8.156 5.154-11.678a5.154 5.154 0 0 0-8.757-3.573a5.154 5.154 0 0 0-1.55 3.573c0 3.522 5.153 8.304 5.153 11.678\\\"/><defs><radialGradient id=\\\"deviconPrologWordmark0\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"rotate(-42.27 72.293 -46.182)scale(43.72725)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#fff\\\"/><stop offset=\\\".181\\\" stop-color=\\\"#FBFBFB\\\"/><stop offset=\\\".365\\\" stop-color=\\\"#EFEFF0\\\"/><stop offset=\\\".552\\\" stop-color=\\\"#DADBDC\\\"/><stop offset=\\\".738\\\" stop-color=\\\"#BEBFC2\\\"/><stop offset=\\\".824\\\" stop-color=\\\"#AEB0B3\\\"/></radialGradient><radialGradient id=\\\"deviconPrologWordmark1\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(39.84393 0 0 43.33768 38.595 37.939)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#FAFDFF\\\"/><stop offset=\\\".079\\\" stop-color=\\\"#EEF5FA\\\"/><stop offset=\\\".22\\\" stop-color=\\\"#CFDFEC\\\"/><stop offset=\\\".407\\\" stop-color=\\\"#9DBBD5\\\"/><stop offset=\\\".631\\\" stop-color=\\\"#588AB5\\\"/><stop offset=\\\".745\\\" stop-color=\\\"#326FA4\\\"/><stop offset=\\\".799\\\" stop-color=\\\"#2B6698\\\"/><stop offset=\\\".897\\\" stop-color=\\\"#174E78\\\"/><stop offset=\\\".994\\\" stop-color=\\\"#003152\\\"/></radialGradient><radialGradient id=\\\"deviconPrologWordmark2\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"matrix(39.65299 0 0 42.11148 52.852 36.666)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#FFD540\\\"/><stop offset=\\\".667\\\" stop-color=\\\"#EC1C24\\\"/><stop offset=\\\".994\\\" stop-color=\\\"#760000\\\"/></radialGradient><radialGradient id=\\\"deviconPrologWordmark3\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"translate(55.349 70.137)scale(4.97757)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#DDDFE0\\\"/><stop offset=\\\".174\\\" stop-color=\\\"#D9DBDC\\\"/><stop offset=\\\".351\\\" stop-color=\\\"#CDCFD0\\\"/><stop offset=\\\".531\\\" stop-color=\\\"#B8BABB\\\"/><stop offset=\\\".711\\\" stop-color=\\\"#9C9E9F\\\"/><stop offset=\\\".891\\\" stop-color=\\\"#78797B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5E5F61\\\"/></radialGradient><radialGradient id=\\\"deviconPrologWordmark4\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"translate(71.546 70.137)scale(4.97757)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#DDDFE0\\\"/><stop offset=\\\".174\\\" stop-color=\\\"#D9DBDC\\\"/><stop offset=\\\".351\\\" stop-color=\\\"#CDCFD0\\\"/><stop offset=\\\".531\\\" stop-color=\\\"#B8BABB\\\"/><stop offset=\\\".711\\\" stop-color=\\\"#9C9E9F\\\"/><stop offset=\\\".891\\\" stop-color=\\\"#78797B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5E5F61\\\"/></radialGradient><radialGradient id=\\\"deviconPrologWordmark5\\\" cx=\\\"0\\\" cy=\\\"0\\\" r=\\\"1\\\" gradientTransform=\\\"translate(62.871 47.496)scale(6.4209)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#DDDFE0\\\"/><stop offset=\\\".174\\\" stop-color=\\\"#D9DBDC\\\"/><stop offset=\\\".351\\\" stop-color=\\\"#CDCFD0\\\"/><stop offset=\\\".531\\\" stop-color=\\\"#B8BABB\\\"/><stop offset=\\\".711\\\" stop-color=\\\"#9C9E9F\\\"/><stop offset=\\\".891\\\" stop-color=\\\"#78797B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5E5F61\\\"/></radialGradient></defs>\"\n\t\t},\n\t\t\"prometheus\": {\n\t\t\t\"body\": \"<path fill=\\\"#e75225\\\" d=\\\"M64.125.51C99.229.517 128.045 29.133 128 63.951c-.045 35.342-28.742 63.564-64.608 63.539C28.325 127.466-.025 98.818 0 63.434C.023 28.834 28.898.503 64.125.51M44.72 22.793c.803 3.96.025 7.655-1.167 11.289c-.823 2.515-1.962 4.94-2.642 7.492c-1.122 4.203-2.391 8.43-2.859 12.726c-.671 6.181 1.758 11.625 5.914 17.04L24.86 67.318c.033.602 0 .83.065 1.024c1.811 5.32 4.998 9.802 8.57 14.03c.377.446 1.237.674 1.877.674c19.05.038 38.101.034 57.152.009c.59 0 1.381-.11 1.741-.49c4.084-4.294 7.205-9.185 9.16-15.342l-20.228 3.962c1.336-2.618 2.855-4.916 3.733-7.443c2.994-8.643 1.752-16.998-2.545-24.88c-3.449-6.324-6.631-12.62-4.91-20.243c-3.642 3.6-5.043 8.179-5.932 12.898c-.872 4.65-1.389 9.364-2.065 14.083c-.098-.143-.22-.25-.242-.373a13.964 13.964 0 0 1-.176-1.49c-.413-7.726-1.92-15.17-5.106-22.28c-1.873-4.182-3.941-8.462-2.008-13.456c-1.307.693-2.49 1.377-3.338 2.356c-2.527 2.92-3.573 6.428-3.842 10.269c-.231 3.282-.546 6.579-1.156 9.806c-.64 3.392-1.65 6.714-3.932 9.831c-.918-6.656-1.02-13.244-6.956-17.47ZM93.842 88.88H34.088v10.38h59.754Zm-47.904 15.746c-.049 8.642 8.753 15.081 19.633 14.614c9.02-.389 16.999-7.484 16.315-14.614zm0 0\\\"/>\"\n\t\t},\n\t\t\"prometheus-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#9c9c9d\\\" d=\\\"M1.206 112.033v6.808H0v-16.907h4.355c2.003 0 3.475.43 4.477 1.308c1.002.88 1.513 2.106 1.513 3.721c0 .716-.143 1.41-.43 2.045a4.588 4.588 0 0 1-1.185 1.594c-.512.45-1.145.777-1.881 1.063c-.716.246-1.574.368-2.515.368zm0-.96h3.149c.756 0 1.41-.083 2.003-.307a5.16 5.16 0 0 0 1.513-.839c.43-.368.715-.776.94-1.308c.205-.49.327-1.022.327-1.635c0-1.309-.388-2.29-1.206-2.985c-.777-.695-2.003-1.063-3.557-1.063H1.227c-.02 0-.02 8.136-.02 8.136zm13.166 7.788v-11.878h.613c.123 0 .246.02.307.082s.082.143.082.266l.082 2.515c.388-.961.879-1.718 1.533-2.27c.634-.551 1.41-.817 2.351-.817c.368 0 .695.02 1.002.122c.306.082.572.184.838.327l-.143.777c-.02.123-.082.184-.245.184a.457.457 0 0 1-.205-.061a1.678 1.678 0 0 1-.327-.123a3.397 3.397 0 0 1-.49-.122c-.185-.02-.43-.062-.675-.062c-.9 0-1.636.266-2.208.839c-.573.552-1.063 1.37-1.39 2.412v7.728c.04.04-1.125.082-1.125.082zm15.272-12.082c.838 0 1.595.143 2.29.43c.674.306 1.247.694 1.696 1.246s.818 1.186 1.063 1.943c.246.756.369 1.594.369 2.535c0 .94-.123 1.778-.368 2.514a5.937 5.937 0 0 1-1.064 1.943c-.45.552-1.022.94-1.697 1.247a6.105 6.105 0 0 1-2.29.429c-.837 0-1.594-.143-2.289-.43a4.131 4.131 0 0 1-1.697-1.246a5.937 5.937 0 0 1-1.063-1.943c-.245-.756-.368-1.594-.368-2.514c0-.94.123-1.779.368-2.535a5.937 5.937 0 0 1 1.063-1.942c.45-.553 1.022-.94 1.697-1.248c.654-.286 1.431-.429 2.29-.429m0 11.326c.695 0 1.329-.123 1.84-.368c.552-.245.96-.613 1.329-1.063c.368-.45.613-1.002.777-1.636a8.69 8.69 0 0 0 .265-2.146c0-.777-.081-1.513-.265-2.147c-.185-.634-.45-1.206-.777-1.656c-.368-.45-.777-.818-1.33-1.063c-.551-.245-1.144-.368-1.84-.368c-.694 0-1.328.123-1.84.368c-.551.245-.96.613-1.328 1.063a3.89 3.89 0 0 0-.777 1.656c-.184.634-.266 1.37-.266 2.147c0 .777.082 1.513.266 2.146c.184.634.45 1.186.777 1.636c.368.45.777.818 1.329 1.063c.51.245 1.104.368 1.84.368m9.322.756v-11.878h.634c.204 0 .327.082.368.307l.123 1.717c.245-.327.49-.633.756-.899s.552-.511.838-.695c.307-.184.614-.327.961-.45c.327-.123.695-.143 1.063-.143c.88 0 1.574.245 2.086.756c.51.511.879 1.207 1.063 2.106c.143-.49.327-.9.613-1.267c.266-.368.552-.675.88-.88a2.78 2.78 0 0 1 1.083-.51c.388-.082.777-.185 1.206-.185c.572 0 1.124.082 1.574.307c.49.184.88.49 1.206.88c.327.388.573.837.757 1.41c.184.552.265 1.186.265 1.901v7.585h-1.144v-7.585c0-1.145-.246-2.044-.757-2.658c-.51-.613-1.206-.9-2.147-.9c-.429 0-.817.062-1.185.246c-.368.184-.716.368-1.002.675c-.307.307-.511.675-.695 1.124c-.184.45-.245.961-.245 1.534v7.584h-1.145v-7.605c0-1.145-.246-2.024-.695-2.658c-.45-.613-1.145-.9-2.024-.9c-.634 0-1.247.185-1.779.573c-.552.389-1.022.9-1.472 1.595v8.975zm24.41-12.082c.675 0 1.309.123 1.84.327a4.374 4.374 0 0 1 1.472 1.002c.43.45.757 1.002.961 1.635c.246.634.368 1.39.368 2.209c0 .183-.02.306-.082.367c-.06.062-.122.082-.245.082h-8.586v.205c0 .879.081 1.656.306 2.35c.205.675.511 1.248.88 1.698c.388.45.838.817 1.39 1.022c.552.245 1.144.327 1.82.327c.612 0 1.123-.061 1.532-.205c.43-.122.818-.265 1.084-.45c.307-.142.552-.306.716-.45c.184-.122.306-.204.388-.204c.082 0 .184.02.245.123l.307.389c-.184.245-.45.45-.756.674a6.467 6.467 0 0 1-1.064.552a9.035 9.035 0 0 1-1.247.368c-.45.082-.879.123-1.329.123a5.525 5.525 0 0 1-2.207-.43a4.335 4.335 0 0 1-1.718-1.247c-.49-.552-.838-1.206-1.124-2.003c-.266-.777-.389-1.697-.389-2.699c0-.838.123-1.635.368-2.35a6.071 6.071 0 0 1 1.063-1.882a4.437 4.437 0 0 1 1.697-1.206c.716-.184 1.472-.327 2.31-.327m0 .838c-.613 0-1.145.082-1.635.266s-.9.45-1.268.818a3.601 3.601 0 0 0-.838 1.308a6.072 6.072 0 0 0-.43 1.697h7.83c0-.634-.08-1.206-.265-1.717a3.992 3.992 0 0 0-.715-1.268a3.638 3.638 0 0 0-1.145-.817a4.176 4.176 0 0 0-1.533-.287zm11.408 11.428c-.818 0-1.41-.204-1.88-.674c-.45-.45-.675-1.145-.675-2.044v-8.137h-1.697a.346.346 0 0 1-.204-.061a.263.263 0 0 1-.082-.205v-.45l2.024-.143l.266-4.252a.25.25 0 0 1 .081-.184a.262.262 0 0 1 .205-.082h.552v4.539h3.74v.838h-3.72v8.075c0 .327.02.614.123.838c.082.246.204.43.327.573s.327.266.51.327c.205.061.43.123.635.123c.265 0 .552-.02.756-.123c.204-.082.388-.184.552-.266c.143-.082.266-.184.368-.266a.396.396 0 0 1 .245-.122c.062 0 .123.02.184.122l.307.511a3.635 3.635 0 0 1-1.145.818c-.49.123-.96.246-1.472.246zm6.236-.183v-17.378h1.145v7.524a7.47 7.47 0 0 1 1.88-1.636a4.736 4.736 0 0 1 2.351-.613c.675 0 1.247.082 1.718.306c.47.225.9.511 1.247.9c.327.388.572.838.715 1.41c.184.553.246 1.186.246 1.881v7.585h-1.145v-7.585c0-1.124-.246-2.003-.757-2.637c-.51-.634-1.308-.94-2.33-.94a4.04 4.04 0 0 0-2.167.613a6.462 6.462 0 0 0-1.779 1.656v8.914zm18.358-12.083c.675 0 1.309.123 1.84.327a4.375 4.375 0 0 1 1.472 1.002c.43.45.757 1.002.961 1.635c.246.634.368 1.39.368 2.209c0 .183-.02.306-.082.367c-.06.062-.122.082-.245.082h-8.546v.205c0 .879.082 1.656.307 2.35a4.93 4.93 0 0 0 .88 1.698c.388.45.837.817 1.39 1.022c.551.245 1.144.327 1.819.327c.613 0 1.124-.061 1.533-.205c.43-.122.818-.265 1.084-.45c.306-.142.552-.306.715-.45c.184-.122.307-.204.389-.204c.081 0 .184.02.245.123l.307.389c-.184.245-.45.45-.757.674a6.467 6.467 0 0 1-1.063.552a9.037 9.037 0 0 1-1.247.368c-.45.082-.879.123-1.329.123a5.525 5.525 0 0 1-2.208-.43a4.335 4.335 0 0 1-1.717-1.247c-.47-.552-.838-1.206-1.124-2.003c-.266-.777-.389-1.697-.389-2.699c0-.838.123-1.635.368-2.35a6.069 6.069 0 0 1 1.063-1.882a4.437 4.437 0 0 1 1.697-1.206a8.305 8.305 0 0 1 2.27-.327zm0 .838c-.613 0-1.145.082-1.635.266s-.9.45-1.268.818a3.603 3.603 0 0 0-.838 1.308a6.072 6.072 0 0 0-.43 1.697h7.79c0-.634-.082-1.206-.266-1.717a3.992 3.992 0 0 0-.715-1.268a3.638 3.638 0 0 0-1.145-.817a4.04 4.04 0 0 0-1.493-.287m9.016-.633v7.584c0 1.125.245 2.004.757 2.638c.51.633 1.308.94 2.33.94c.777 0 1.513-.205 2.167-.613c.675-.389 1.268-.94 1.82-1.636v-8.913h1.145v11.878h-.634c-.204 0-.327-.082-.327-.307l-.123-1.758a6.617 6.617 0 0 1-1.901 1.656c-.716.429-1.513.633-2.412.633c-.675 0-1.248-.081-1.718-.306c-.47-.225-.9-.511-1.247-.9c-.347-.388-.572-.838-.756-1.41c-.184-.552-.246-1.186-.246-1.881v-7.585zm19.074 1.492c-.06.123-.143.184-.265.184c-.082 0-.205-.061-.327-.143c-.143-.082-.327-.205-.552-.327a3.257 3.257 0 0 0-.839-.327a4.87 4.87 0 0 0-1.206-.143c-.43 0-.818.06-1.186.184a2.867 2.867 0 0 0-.9.49a2.11 2.11 0 0 0-.571.716a1.855 1.855 0 0 0-.205.879c0 .368.082.695.266.94c.184.246.45.45.756.634c.307.184.675.327 1.063.45c.389.122.777.245 1.207.388c.429.123.817.266 1.206.43c.388.143.756.367 1.063.572c.307.245.572.511.756.838c.184.327.266.757.266 1.206c0 .511-.082 1.002-.266 1.452s-.45.838-.817 1.145a4.527 4.527 0 0 1-1.309.777c-.531.204-1.124.265-1.758.265c-.838 0-1.533-.122-2.147-.388a5.778 5.778 0 0 1-1.635-1.063l.266-.389a.288.288 0 0 1 .122-.143c.062-.02.123-.061.205-.061s.245.061.388.184c.143.123.327.266.613.43c.246.142.552.265.9.429c.368.122.818.184 1.329.184c.51 0 .94-.062 1.329-.205a2.79 2.79 0 0 0 .96-.572c.246-.246.45-.511.573-.838c.123-.328.204-.675.204-1.023c0-.388-.081-.715-.265-1.001a2.427 2.427 0 0 0-.757-.675c-.306-.184-.674-.327-1.063-.45a75.994 75.994 0 0 1-1.206-.388c-.43-.123-.818-.266-1.206-.43c-.389-.163-.757-.327-1.063-.572c-.307-.245-.573-.511-.757-.838c-.184-.327-.266-.757-.266-1.247c0-.43.082-.818.266-1.207c.184-.388.45-.715.777-1.022a3.092 3.092 0 0 1 1.247-.695c.49-.184 1.022-.266 1.636-.266c.715 0 1.37.082 1.942.307c.572.205 1.083.552 1.533.961c.02-.061-.306.368-.306.368z\\\"/><path fill=\\\"#e75225\\\" d=\\\"M64.072 8.914c22.468 0 40.908 18.215 40.867 40.356c-.02 22.509-18.4 40.459-41.358 40.459c-22.427-.02-40.582-18.257-40.582-40.766c.062-22.018 18.543-40.05 41.073-40.05ZM51.662 23.08c.511 2.515 0 4.866-.756 7.197c-.511 1.594-1.268 3.148-1.697 4.763c-.716 2.699-1.534 5.377-1.84 8.096c-.43 3.925 1.124 7.4 3.782 10.856c-4.314-.9-8.24-1.718-12.246-2.576c.02.388 0 .552.02.674c1.145 3.394 3.21 6.215 5.5 8.934c.245.266.777.43 1.206.43c12.205.02 24.39.02 36.595 0c.388 0 .879-.062 1.124-.307c2.637-2.719 4.62-5.827 5.868-9.752c-4.478.88-8.73 1.697-12.962 2.515c.838-1.656 1.84-3.149 2.392-4.743c1.901-5.5 1.125-10.815-1.635-15.824c-2.208-4.027-4.253-8.034-3.149-12.88c-2.33 2.29-3.23 5.193-3.802 8.219c-.573 2.964-.88 5.95-1.33 8.975c-.06-.082-.142-.143-.142-.245c-.062-.307-.082-.634-.123-.94c-.266-4.928-1.247-9.67-3.271-14.169c-1.206-2.657-2.535-5.376-1.308-8.545c-.839.45-1.595.879-2.147 1.513c-1.636 1.88-2.29 4.088-2.453 6.521a64.384 64.384 0 0 1-.716 6.256c-.43 2.147-1.063 4.252-2.515 6.256c-.531-4.334-.592-8.525-4.395-11.224m31.443 42.094h-38.23V71.8h38.25v-6.624zm-30.666 9.998c-.02 5.5 5.622 9.608 12.573 9.302c5.765-.246 10.876-4.764 10.447-9.302z\\\"/>\"\n\t\t},\n\t\t\"protractor\": {\n\t\t\t\"body\": \"<path fill=\\\"#ed163a\\\" d=\\\"M127.995 63.995c0 35.349-28.649 64.002-63.998 64.002C28.65 127.998 0 99.35 0 64C0 28.651 28.649.002 63.998.002c35.348 0 63.997 28.65 63.997 63.998\\\"/><path fill=\\\"#d51c2f\\\" d=\\\"m97.036 33.131l-21.769-.2l-12.724-12.73l-14.94 9.925l2.58 2.575l-6.05-.05l-20.549 34.564h-8.05l5.05 5.06l-5.09 8.57l47.144 47.137l1.364.015c35.314 0 63.948-28.609 63.998-63.907L97.04 33.126\\\"/><path fill=\\\"#f5f5f5\\\" d=\\\"M32.464 68.675a31.531 31.531 0 1 1 63.062 0zm70.882 1.45v-2.91h9.12A48.303 48.303 0 0 0 99.3 35.426l-6.815 6.815l-2.055-2.06l6.81-6.815a48.288 48.288 0 0 0-31.789-13.164v9.12h-2.91v-9.12a48.298 48.298 0 0 0-31.788 13.164l6.815 6.815l-2.06 2.06l-6.815-6.815a48.313 48.313 0 0 0-13.165 31.789h9.12v2.91h-9.165v10.674H112.5V70.13h-9.155\\\"/>\"\n\t\t},\n\t\t\"protractor-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#100f0d\\\" d=\\\"M97.231 72.752c-.63 0-.946.36-.946 1.083v.163l-.525.161v.201h.525v2.594h.445V74.36h.748v-.345h-.748v-.19c0-.248.04-.427.12-.538c.081-.112.206-.168.373-.168c.122 0 .268.028.44.083l.115-.357a1.944 1.944 0 0 0-.547-.093m-39.662.029v1.196l.01.207l.019.211h-.035c-.213-.29-.518-.435-.917-.435c-.382 0-.681.135-.896.403c-.214.268-.321.645-.321 1.13c0 .483.107.857.32 1.12c.214.263.513.394.897.394c.41 0 .717-.149.923-.448h.024l.058.395h.363v-4.173zm17.543 0v1.196l.01.207l.02.211h-.036c-.212-.29-.518-.435-.917-.435c-.383 0-.681.135-.895.403c-.215.268-.323.645-.323 1.13c0 .483.108.857.321 1.12c.214.263.513.394.897.394c.41 0 .717-.149.923-.448h.024l.059.395h.362v-4.173zm42.676 0v4.173h.445v-4.173zm-30.385.142a.266.266 0 0 0-.189.071c-.05.048-.075.122-.075.224c0 .1.025.175.075.224c.05.05.114.073.19.073a.257.257 0 0 0 .184-.073c.052-.05.077-.124.077-.224s-.025-.174-.077-.223a.261.261 0 0 0-.185-.072m39.423.054c-.374 0-.675.089-.902.268a.873.873 0 0 0-.34.722c0 .287.079.52.235.7c.156.178.416.333.781.463c.26.093.456.177.584.25a.767.767 0 0 1 .273.24a.615.615 0 0 1 .082.334a.568.568 0 0 1-.23.48c-.154.116-.383.174-.687.174a2.75 2.75 0 0 1-.564-.06a2.823 2.823 0 0 1-.525-.16v.44c.25.12.607.18 1.073.18c.428 0 .768-.097 1.019-.29c.25-.193.375-.463.375-.808c0-.268-.077-.485-.231-.653c-.155-.169-.438-.326-.85-.472a3.186 3.186 0 0 1-.545-.24a.708.708 0 0 1-.254-.24a.662.662 0 0 1-.075-.333c0-.184.068-.329.204-.432c.136-.104.324-.156.566-.156c.306 0 .62.068.944.204l.142-.397a2.653 2.653 0 0 0-1.075-.214m-20.967.04l-1.55 3.937h.46l.484-1.247h1.572l.487 1.247h.472l-1.542-3.937zm18.487.016v3.921c0 .202-.046.356-.138.463c-.092.108-.226.16-.403.16c-.138 0-.27-.016-.398-.052v.39c.097.047.23.071.398.071c.322 0 .568-.094.74-.28c.171-.187.257-.45.257-.79v-3.883Zm-63.852.3l-.187.627l-.421.185v.215h.421v1.75c0 .598.284.897.852.897c.076 0 .16-.007.254-.022a.814.814 0 0 0 .214-.058v-.34a1.526 1.526 0 0 1-.175.035a1.38 1.38 0 0 1-.228.018a.44.44 0 0 1-.346-.142c-.084-.095-.126-.23-.126-.408v-1.73h.853v-.345h-.853v-.682Zm17.543 0l-.187.627l-.42.185v.215h.42v1.75c0 .598.284.897.853.897c.075 0 .16-.007.253-.022a.799.799 0 0 0 .213-.058v-.34a1.536 1.536 0 0 1-.402.053a.441.441 0 0 1-.346-.142c-.084-.095-.125-.23-.125-.408v-1.73h.852v-.345h-.852v-.682Zm7.476 0l-.187.627l-.422.185v.215h.422v1.75c0 .598.284.897.853.897c.074 0 .16-.007.252-.022a.809.809 0 0 0 .214-.058v-.34a1.511 1.511 0 0 1-.174.035c-.073.012-.15.018-.228.018a.441.441 0 0 1-.346-.142c-.084-.095-.127-.23-.127-.408v-1.73h.854v-.345h-.854v-.682Zm20.531.182c.063.224.123.413.183.567l.455 1.215h-1.268l.461-1.215c.074-.206.13-.395.17-.567zm-55.668.445c-.393 0-.707.14-.94.42c-.233.278-.35.654-.35 1.128c0 .47.126.837.377 1.102c.25.265.594.397 1.028.397c.199 0 .368-.015.508-.044c.14-.03.29-.078.447-.146v-.397c-.309.132-.622.2-.938.2c-.3 0-.534-.091-.7-.27c-.164-.179-.251-.44-.26-.785h2.024v-.282c0-.397-.107-.717-.322-.959c-.214-.242-.506-.364-.874-.364m3.29 0c-.203 0-.386.04-.55.12a.913.913 0 0 0-.384.337h-.021l-.073-.402h-.362v2.94h.445v-1.543c0-.383.072-.657.215-.824c.143-.166.368-.249.675-.249c.233 0 .404.06.514.178c.108.117.162.296.162.535v1.902h.445v-1.918c0-.376-.089-.649-.267-.819c-.18-.17-.446-.257-.8-.257zm9.686 0c-.426 0-.758.135-.997.402c-.24.267-.36.64-.36 1.12c0 .309.055.579.166.809c.11.231.268.408.472.531c.204.124.437.185.7.185c.426 0 .759-.134 1-.403c.242-.269.362-.643.362-1.122c0-.467-.12-.837-.363-1.111c-.242-.273-.569-.41-.98-.41zm4.568 0c-.394 0-.708.14-.94.42c-.234.278-.35.654-.35 1.128c0 .47.125.837.376 1.102c.251.265.594.397 1.029.397c.198 0 .367-.015.508-.044c.14-.03.289-.078.446-.146v-.397c-.309.132-.622.2-.939.2c-.3 0-.533-.091-.698-.27c-.165-.179-.253-.44-.262-.785h2.025v-.282c0-.397-.107-.717-.321-.959c-.215-.242-.506-.364-.874-.364m3.289 0c-.202 0-.387.04-.55.12a.911.911 0 0 0-.384.337h-.021l-.073-.402h-.361v2.94h.445v-1.543c0-.383.071-.657.214-.824c.143-.166.369-.249.676-.249c.233 0 .403.06.512.178c.109.117.163.296.163.535v1.902h.446v-1.918c0-.376-.09-.649-.268-.819c-.18-.17-.445-.257-.8-.257zm9.62 0c-.394 0-.708.14-.941.42c-.233.278-.35.654-.35 1.128c0 .47.126.837.378 1.102c.25.265.593.397 1.028.397c.198 0 .367-.015.507-.044c.141-.03.29-.078.447-.146v-.397c-.31.132-.622.2-.939.2c-.3 0-.533-.091-.698-.27c-.165-.179-.252-.44-.262-.785h2.025v-.282c0-.397-.107-.717-.322-.959c-.214-.242-.506-.364-.874-.364zm2.806 0c-.34 0-.607.07-.802.21a.658.658 0 0 0-.292.565c0 .135.028.25.084.347a.794.794 0 0 0 .257.258c.116.076.31.166.584.267c.288.111.481.207.58.288c.1.082.15.18.15.295a.368.368 0 0 1-.189.34c-.125.073-.303.11-.536.11a2.188 2.188 0 0 1-.922-.231v.413c.218.124.521.185.911.185c.369 0 .655-.074.858-.222c.204-.149.306-.36.306-.633a.677.677 0 0 0-.184-.485c-.122-.129-.357-.257-.706-.384a4.173 4.173 0 0 1-.515-.218a.593.593 0 0 1-.195-.158a.332.332 0 0 1-.06-.2c0-.116.053-.208.161-.274c.107-.066.267-.099.477-.099c.24 0 .507.061.802.183l.158-.363a2.345 2.345 0 0 0-.927-.194m6.266 0c-.202 0-.386.04-.55.12a.914.914 0 0 0-.383.337h-.022l-.072-.402h-.363v2.94h.445v-1.543c0-.383.072-.657.215-.824c.143-.166.368-.249.676-.249c.232 0 .403.06.512.178c.109.117.164.296.164.535v1.902h.445v-1.918c0-.376-.09-.649-.268-.819c-.18-.17-.445-.257-.8-.257zm2.9 0c-.354 0-.627.088-.82.262c-.194.174-.29.423-.29.745a.94.94 0 0 0 .143.515c.096.15.22.256.372.318a.897.897 0 0 0-.27.234a.47.47 0 0 0-.087.281a.42.42 0 0 0 .076.25a.467.467 0 0 0 .19.158a.877.877 0 0 0-.483.265a.684.684 0 0 0-.172.464c0 .262.105.464.313.607c.208.142.504.214.888.214c.501 0 .882-.086 1.144-.256a.835.835 0 0 0 .39-.744c0-.256-.085-.45-.255-.585c-.171-.134-.415-.2-.734-.2h-.52c-.16 0-.275-.02-.34-.059a.19.19 0 0 1-.1-.178c0-.152.095-.278.285-.378c.077.015.159.021.246.021c.343 0 .613-.086.81-.257c.197-.171.295-.401.295-.69a.95.95 0 0 0-.193-.587l.544-.065v-.28h-1.016a1.493 1.493 0 0 0-.416-.055m6.352 0c-.425 0-.758.135-.997.402c-.24.267-.36.64-.36 1.12c0 .309.056.579.167.809c.11.231.268.408.472.531c.204.124.437.185.699.185c.426 0 .76-.134 1.001-.403c.241-.269.361-.643.361-1.122c0-.467-.12-.837-.363-1.111c-.242-.273-.569-.41-.98-.41zm3.41 0a.892.892 0 0 0-.507.157a1.292 1.292 0 0 0-.394.442h-.021l-.05-.544h-.369v2.94h.445v-1.578c0-.288.085-.528.254-.722a.783.783 0 0 1 .61-.289c.093 0 .2.013.322.04l.061-.413a1.715 1.715 0 0 0-.35-.033zm7.027 0c-.201 0-.385.04-.549.12a.913.913 0 0 0-.384.337h-.022l-.072-.402h-.361v2.94h.445v-1.543c0-.383.072-.657.215-.824c.142-.166.368-.249.675-.249c.233 0 .403.06.512.178c.11.117.164.296.164.535v1.902h.445v-1.918c0-.376-.089-.649-.268-.819c-.179-.17-.446-.257-.8-.257m2.9 0c-.353 0-.626.088-.819.262c-.194.174-.29.423-.29.745a.94.94 0 0 0 .143.515c.096.15.22.256.372.318a.906.906 0 0 0-.271.234a.47.47 0 0 0-.086.281c0 .095.026.178.076.25a.465.465 0 0 0 .19.158a.882.882 0 0 0-.483.265a.686.686 0 0 0-.172.464c0 .262.105.464.313.607c.208.142.505.214.889.214c.5 0 .882-.086 1.142-.256a.835.835 0 0 0 .391-.744c0-.256-.085-.45-.256-.585c-.17-.134-.414-.2-.732-.2h-.52c-.162 0-.275-.02-.342-.059a.192.192 0 0 1-.099-.178c0-.152.094-.278.284-.378c.077.015.16.021.247.021c.344 0 .613-.086.81-.257c.197-.171.295-.401.295-.69a.942.942 0 0 0-.193-.587l.545-.065v-.28h-1.017a1.488 1.488 0 0 0-.417-.055m10.972 0a.89.89 0 0 0-.506.157a1.298 1.298 0 0 0-.395.442h-.022l-.05-.544h-.368v2.94h.446v-1.578c0-.288.084-.528.253-.722a.785.785 0 0 1 .61-.289c.093 0 .2.013.322.04l.062-.413a1.743 1.743 0 0 0-.352-.033m-3.235.007a2.099 2.099 0 0 0-.995.251l.137.341c.309-.15.586-.225.83-.225c.22 0 .378.055.477.164c.1.11.15.28.15.512v.182l-.5.016c-.95.029-1.424.34-1.424.933c0 .277.083.49.248.641c.165.15.393.225.685.225c.218 0 .4-.032.546-.097c.146-.066.291-.191.438-.375h.022l.088.42h.33v-2.007c0-.343-.084-.592-.253-.748c-.17-.156-.428-.233-.78-.233zm-33.05.048v2.94h.445v-2.94zm27.263 0v1.922c0 .374.088.646.267.815c.177.17.445.255.802.255c.208 0 .392-.038.555-.115a.883.883 0 0 0 .378-.333h.025l.064.395h.368v-2.94h-.445v1.545c0 .38-.071.656-.214.824c-.142.168-.367.252-.674.252c-.232 0-.403-.06-.512-.177c-.11-.118-.164-.297-.164-.536v-1.907zm-21.658.27c.44 0 .66.221.66.663c0 .421-.217.632-.652.632c-.207 0-.369-.052-.485-.158c-.116-.105-.174-.26-.174-.466c0-.222.056-.389.168-.502c.113-.113.274-.169.483-.169m19.69 0c.44 0 .66.221.66.663c0 .421-.217.632-.652.632c-.207 0-.369-.052-.485-.158c-.116-.105-.174-.26-.174-.466c0-.222.056-.389.169-.502c.112-.113.273-.169.483-.169zm-62.101.05c.233 0 .411.073.536.222c.125.15.188.365.188.646h-1.537c.025-.272.107-.485.248-.639a.73.73 0 0 1 .565-.23zm6.326 0c.304 0 .525.087.664.265c.139.178.208.476.208.892v.094c0 .368-.068.635-.206.8c-.137.166-.357.249-.66.249c-.266 0-.469-.096-.607-.287c-.137-.191-.206-.475-.206-.85c0-.37.07-.658.208-.86a.681.681 0 0 1 .6-.304zm11.217 0c.232 0 .411.073.536.222c.125.15.188.365.188.646h-1.536c.024-.272.107-.485.248-.639a.727.727 0 0 1 .564-.23zm6.326 0c.305 0 .526.087.664.265c.139.178.208.476.208.892v.094c0 .368-.068.635-.205.8c-.137.166-.357.249-.66.249c-.268 0-.47-.096-.608-.287c-.137-.191-.207-.475-.207-.85c0-.37.07-.658.208-.86a.683.683 0 0 1 .6-.304zm6.583 0c.233 0 .411.073.537.222c.125.15.187.365.187.646H80.01c.025-.272.107-.485.249-.639a.727.727 0 0 1 .564-.23zm-17.485.004c.296 0 .519.098.67.291c.151.194.226.478.226.852c0 .377-.075.663-.226.859c-.151.195-.372.294-.664.294c-.292 0-.512-.099-.662-.295c-.15-.197-.225-.483-.225-.858c0-.38.074-.665.221-.856c.149-.191.37-.287.66-.287m35.802 0c.294 0 .517.098.669.291c.151.194.226.478.226.852c0 .377-.075.663-.226.859c-.152.195-.373.294-.664.294c-.291 0-.512-.099-.662-.295c-.15-.197-.226-.483-.226-.858c0-.38.075-.665.223-.856c.148-.191.368-.287.66-.287m21.674 1.169v.266c0 .273-.079.486-.237.638c-.159.152-.376.228-.653.228c-.176 0-.312-.042-.41-.126c-.097-.084-.145-.206-.145-.367c0-.206.078-.358.234-.455c.157-.097.412-.153.766-.165zm-28.283 1.38h.533c.272 0 .457.03.555.092c.099.06.147.172.147.33c0 .192-.09.343-.269.455c-.18.111-.456.167-.83.167c-.25 0-.442-.04-.576-.122a.4.4 0 0 1-.202-.363c0-.18.056-.319.17-.415c.111-.097.27-.145.472-.145zm19.69 0h.533c.272 0 .457.03.555.092c.099.06.147.172.147.33c0 .192-.09.343-.27.455c-.179.111-.455.167-.829.167c-.25 0-.442-.04-.577-.122a.4.4 0 0 1-.2-.363c0-.18.056-.319.168-.415c.113-.097.27-.145.472-.145zM29.236 55.06v14.734h2.408v-5.513h1.532c1.861 0 3.295-.41 4.303-1.23c1.008-.82 1.512-1.998 1.512-3.536c0-1.465-.458-2.574-1.375-3.326c-.918-.753-2.297-1.13-4.137-1.13zm34.23 1.108l-.806 2.358l-1.632.867v1.048h1.522v6.007c0 2.365 1.122 3.547 3.366 3.547c.443 0 .872-.039 1.285-.115a4.786 4.786 0 0 0 1.012-.288v-1.784a5.753 5.753 0 0 1-1.733.272c-.463 0-.838-.135-1.123-.408c-.286-.272-.429-.693-.429-1.264V60.44h3.174v-1.793h-3.174v-2.48zm38.12 0l-.806 2.358l-1.632.867v1.048h1.521v6.007c0 2.365 1.123 3.547 3.367 3.547a7.1 7.1 0 0 0 1.285-.115a4.8 4.8 0 0 0 1.012-.288v-1.784a5.757 5.757 0 0 1-1.733.272c-.464 0-.838-.135-1.123-.408c-.286-.272-.429-.693-.429-1.264V60.44h3.174v-1.793h-3.174v-2.48Zm-69.942.908h1.673c1.095 0 1.901.208 2.42.624c.516.417.775 1.048.775 1.895c0 .914-.29 1.586-.867 2.016c-.578.43-1.485.645-2.72.645h-1.28zm15.259 1.37c-.686 0-1.326.195-1.92.585a4.416 4.416 0 0 0-1.447 1.582h-.121l-.312-1.965H41.25v11.146h2.368v-5.825c0-.988.294-1.791.882-2.409c.588-.618 1.355-.927 2.302-.927c.363 0 .712.04 1.048.12l.232-2.206a5.674 5.674 0 0 0-1.178-.101zm7.463 0c-1.686 0-2.993.508-3.92 1.522s-1.39 2.425-1.39 4.233c0 1.162.215 2.183.645 3.063c.43.88 1.044 1.556 1.844 2.026c.8.47 1.72.705 2.76.705c1.667 0 2.967-.51 3.9-1.532c.934-1.021 1.401-2.441 1.401-4.262c0-1.76-.47-3.16-1.41-4.198c-.941-1.038-2.217-1.557-3.83-1.557m21.728 0c-.685 0-1.326.195-1.92.585a4.412 4.412 0 0 0-1.446 1.582h-.12l-.313-1.965H70.44v11.146h2.37v-5.825c0-.988.293-1.791.88-2.409c.588-.618 1.356-.927 2.304-.927c.362 0 .71.04 1.047.12l.232-2.206a5.674 5.674 0 0 0-1.179-.101m6.97 0a9.12 9.12 0 0 0-2.037.247a8.23 8.23 0 0 0-1.985.72l.766 1.693c.484-.227.988-.426 1.512-.594a5.342 5.342 0 0 1 1.642-.251c.699 0 1.215.175 1.547.528c.333.353.498.885.498 1.597v.595l-1.923.06c-1.748.055-3.047.374-3.9.958c-.854.584-1.28 1.45-1.28 2.6c0 1.082.307 1.918.922 2.509s1.47.887 2.565.887c.853 0 1.552-.123 2.096-.368s1.085-.706 1.623-1.385h.08l.474 1.552h1.692v-7.508c0-1.324-.36-2.294-1.083-2.913c-.721-.618-1.793-.927-3.21-.927zm11.85 0c-1.733 0-3.058.503-3.975 1.511c-.917 1.008-1.375 2.45-1.375 4.324c0 1.84.438 3.254 1.315 4.238c.877.984 2.158 1.476 3.844 1.476c.685 0 1.269-.053 1.749-.161a4.65 4.65 0 0 0 1.355-.534v-2.066a6.056 6.056 0 0 1-2.993.786c-.927 0-1.631-.315-2.111-.942c-.48-.629-.721-1.567-.721-2.817c0-2.56.964-3.84 2.893-3.84c.651 0 1.477.195 2.478.585l.717-1.905c-.942-.437-2-.655-3.175-.655Zm18.293 0c-1.687 0-2.993.508-3.921 1.522c-.927 1.014-1.39 2.425-1.39 4.233c0 1.162.215 2.183.644 3.063c.43.88 1.045 1.556 1.845 2.026c.8.47 1.72.705 2.761.705c1.666 0 2.965-.51 3.9-1.532c.933-1.021 1.4-2.441 1.4-4.262c0-1.76-.47-3.16-1.41-4.198c-.94-1.038-2.217-1.557-3.83-1.557zm13.614 0c-.685 0-1.325.195-1.92.585a4.42 4.42 0 0 0-1.446 1.582h-.12l-.313-1.965h-1.855v11.146h2.37v-5.825c0-.988.293-1.791.881-2.409c.588-.618 1.355-.927 2.302-.927c.364 0 .713.04 1.049.12l.231-2.206a5.674 5.674 0 0 0-1.179-.101M54.326 60.38c1.895 0 2.842 1.273 2.842 3.82c0 2.573-.94 3.86-2.822 3.86c-1.901 0-2.851-1.287-2.851-3.86c0-1.23.222-2.174.669-2.832c.447-.659 1.168-.988 2.162-.988m58.84 0c1.894 0 2.843 1.273 2.843 3.82c0 2.573-.942 3.86-2.823 3.86c-1.901 0-2.852-1.287-2.852-3.86c0-1.23.223-2.174.67-2.832c.447-.659 1.167-.988 2.162-.988m-28.178 4.092v.967c0 .866-.26 1.54-.781 2.02c-.52.481-1.21.722-2.07.722c-.592 0-1.036-.137-1.33-.41c-.297-.272-.444-.655-.444-1.153c0-.685.253-1.194.76-1.527c.507-.332 1.319-.52 2.434-.56z\\\"/><path fill=\\\"#ed163a\\\" d=\\\"M25.6 62.527c0 7.07-5.73 12.801-12.8 12.801S0 69.598 0 62.528s5.73-12.8 12.8-12.8s12.8 5.73 12.8 12.8\\\"/><path fill=\\\"#d51c2f\\\" d=\\\"m19.408 56.354l-4.354-.04l-2.545-2.546l-2.988 1.985l.516.515l-1.21-.01l-4.11 6.913h-1.61l1.01 1.012l-1.018 1.714l9.429 9.428l.273.003c7.063 0 12.79-5.722 12.8-12.782l-6.192-6.193\\\"/><path fill=\\\"#f5f5f5\\\" d=\\\"M6.493 63.463a6.306 6.306 0 1 1 12.613 0zm14.177.29v-.582h1.824a9.661 9.661 0 0 0-2.633-6.358l-1.363 1.363l-.411-.412l1.362-1.363a9.658 9.658 0 0 0-6.358-2.633v1.824h-.582v-1.824a9.66 9.66 0 0 0-6.358 2.633l1.363 1.363l-.412.412l-1.363-1.363a9.663 9.663 0 0 0-2.633 6.358H4.93v.582H3.097v2.135h19.404v-2.134H20.67\\\"/>\"\n\t\t},\n\t\t\"pulsar\": {\n\t\t\t\"body\": \"<path fill=\\\"#2c3e50\\\" d=\\\"M127.199 0L86.133 34.398l-3.199 8.27c-.535-.203-1.066-.336-1.535-.336a3.97 3.97 0 0 0-2.863 1.203a4.1 4.1 0 0 0 0 5.797a4.126 4.126 0 0 0 2.932 1.203a4.13 4.13 0 0 0 2.934-1.203c1.203-1.199 1.535-3 .867-4.465l8.27-3.199L127.934.734zM87.025 5.486c-3.619.073-7.419.551-11.355 1.447c-3.934.867-7.869 2.133-11.803 3.801C44.8 2.933 26.133 3.801 15 14.934C6.398 23.535 3.535 36.801 7 52.199c.867 3.934 2.199 7.867 3.801 11.734c-6.668 16.398-7 32.531.066 43.801l3.531-4.199c-4.797-8.734-4.797-20.535-.598-33c3.333 6.464 7.597 12.797 12.664 18.664l3.402-4c-5.668-6.734-10.199-13.934-13.469-21.266c4.27-9.602 10.867-19.266 19.602-28c8.535-8.535 18.133-15.201 27.934-19.604c7.199 3.204 14.464 7.67 21.332 13.471l4-3.402A98.183 98.183 0 0 0 70.535 13.8a59.025 59.025 0 0 1 6.268-1.801c10.531-2.398 19.734-1.535 26.801 2.332l4.199-3.531c-5.731-3.668-12.816-5.475-20.777-5.314zM40.602 10.67c5.273.075 10.931 1.115 16.73 3.064c-8.797 4.531-17.398 10.801-25.066 18.531c-7.801 7.801-14 16.402-18.465 25.066c-.668-2.066-1.336-4.133-1.801-6.266c-3-13.668-.668-25.199 6.602-32.465c5.498-5.501 13.212-8.057 22-7.932zm76.332 9.332l-3.469 4.264c2.934 5.402 4.07 12.133 3.402 19.668A80.612 80.612 0 0 1 121 51.2c2.535-12.199 1.133-22.998-4.066-31.197zm-53 11.666c-17.734 0-32.199 14.465-32.199 32.199c0 6.199 1.801 12 4.867 16.934l1.729-.668c.27-1.734 1.068-3.332 2.338-4.668c.266-.266.529-.465.865-.73a24.79 24.79 0 0 1-2.535-10.867c0-13.734 11.201-24.934 24.936-24.934a24.62 24.62 0 0 1 10.867 2.531c.199-.266.398-.598.664-.863c1.27-1.27 2.867-2.066 4.668-2.336l.734-1.73c-4.934-3.07-10.734-4.867-16.934-4.867zm37.602 6.934l-3.469 4c5.734 6.863 10.266 14.133 13.469 21.266l-.07.199c-4.399 9.8-11.133 19.398-19.465 27.734c-12.266 12.266-26.734 20.734-40.801 23.934c-10.531 2.398-19.734 1.531-26.801-2.336l-4.199 3.535c5.535 3.531 12.266 5.332 19.801 5.332c3.934 0 8.066-.465 12.332-1.465c15-3.402 30.402-12.336 43.336-25.266c7.598-7.602 13.934-16.203 18.531-25.07c5.199 15.469 3.934 29.934-4.867 38.734c-6.664 6.668-17.133 9.133-29.199 7.199a76.312 76.312 0 0 1-6.867 3.801c5.133 1.336 10.066 2.066 14.668 2.066c10.133 0 18.867-3.199 25.066-9.398c16.133-16.133 10.734-48.199-11.465-74.266zm-10.203 8.332l-1.73.668c-.27 1.73-1.066 3.332-2.336 4.664c-.266.27-.531.467-.867.732c1.602 3.266 2.535 7 2.535 10.867c-.066 13.801-11.266 24.936-25 24.936c-3.934 0-7.602-.934-10.867-2.535c-.199.27-.398.602-.668.867a8.207 8.207 0 0 1-4.664 2.332l-.668 1.734c4.933 3.067 10.735 4.867 16.934 4.867c17.734 0 32.199-14.465 32.199-32.199c0-6.199-1.801-12-4.867-16.934zm-27.398 1.465c-8.535 0-15.469 6.934-15.469 15.469a15.48 15.48 0 0 0 15.469 15.465A15.48 15.48 0 0 0 79.4 63.868c0-8.535-6.934-15.469-15.465-15.469m-17.47 28.867a4.128 4.128 0 0 0-2.93 1.199c-1.203 1.203-1.535 3-.867 4.469l-8.27 3.199L0 127.066l.734.734l40.934-34.402l3.266-8.266c.531.199 1.066.332 1.602.332a3.968 3.968 0 0 0 2.863-1.199a4.102 4.102 0 0 0 0-5.801a4.137 4.137 0 0 0-2.934-1.199zm-3.73 20.668l-4.066 3.465c3.598 3.066 7.266 5.801 11.133 8.27c1.398-.535 4.465-1.734 5.801-2.535c-4.734-2.734-8.535-5.531-12.867-9.199z\\\"/>\"\n\t\t},\n\t\t\"pulsar-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#2c3e50\\\" d=\\\"M42.797 48L28.98 59.555l-1.078 2.777a1.557 1.557 0 0 0-.516-.109a1.34 1.34 0 0 0-.965.402a1.377 1.377 0 0 0 0 1.949a1.41 1.41 0 0 0 .986.402c.359 0 .719-.137.984-.402c.406-.406.52-1.008.293-1.5l2.781-1.078l11.576-13.75l-.246-.246zm-12.795 1.846c-1.431-.036-2.954.122-4.543.482a23.013 23.013 0 0 0-3.969 1.277c-6.416-2.622-12.697-2.329-16.443 1.41c-2.895 2.891-3.859 7.348-2.691 12.52c.293 1.32.738 2.645 1.277 3.941c-2.242 5.512-2.355 10.93.023 14.715l1.188-1.41c-1.613-2.934-1.613-6.898-.199-11.086a32.11 32.11 0 0 0 4.262 6.271l1.143-1.346c-1.906-2.262-3.43-4.68-4.527-7.145c1.434-3.223 3.656-6.473 6.594-9.406c2.871-2.867 6.102-5.105 9.398-6.582c2.422 1.074 4.867 2.574 7.176 4.523l1.348-1.145a33.1 33.1 0 0 0-6.305-4.23a20.094 20.094 0 0 1 2.109-.605c3.543-.805 6.641-.516 9.016.785l1.414-1.186c-1.753-1.121-3.884-1.725-6.27-1.785zM13.66 51.584c1.774.025 3.678.375 5.629 1.029c-2.961 1.523-5.855 3.629-8.434 6.227c-2.625 2.621-4.711 5.508-6.211 8.422c-.227-.695-.449-1.391-.605-2.105c-1.012-4.594-.227-8.463 2.219-10.904v-.002c1.851-1.848 4.446-2.708 7.402-2.666zm25.686 3.135l-1.17 1.434c.988 1.813 1.367 4.074 1.145 6.605a28.54 28.54 0 0 1 1.393 2.439c.852-4.098.379-7.726-1.367-10.479zm-17.834 3.918a10.85 10.85 0 0 0-10.836 10.818c0 2.082.605 4.032 1.637 5.689l.586-.227a2.91 2.91 0 0 1 .785-1.566c.09-.09.18-.156.289-.246a8.31 8.31 0 0 1-.852-3.648c0-4.617 3.77-8.379 8.391-8.379a8.32 8.32 0 0 1 3.656.852c.066-.09.133-.199.223-.289a2.77 2.77 0 0 1 1.57-.785l.246-.582a10.763 10.763 0 0 0-5.695-1.637m12.646 2.334l-1.162 1.342c1.926 2.305 3.453 4.746 4.527 7.145l-.02.066c-1.48 3.293-3.748 6.516-6.553 9.316c-4.129 4.121-8.996 6.965-13.727 8.039c-3.543.805-6.641.516-9.016-.785l-1.414 1.188c1.859 1.188 4.125 1.793 6.66 1.793c1.324 0 2.715-.156 4.152-.492c5.043-1.145 10.227-4.143 14.578-8.486c2.555-2.555 4.688-5.441 6.234-8.422c1.75 5.195 1.322 10.055-1.639 13.012c-2.242 2.242-5.766 3.07-9.824 2.418a25.38 25.38 0 0 1-2.309 1.277c1.727.449 3.387.693 4.934.693c3.41 0 6.35-1.072 8.436-3.154c5.426-5.422 3.609-16.195-3.859-24.949zm-3.428 2.795l-.586.227a2.91 2.91 0 0 1-.785 1.566c-.09.09-.18.156-.289.246a8.32 8.32 0 0 1 .852 3.652c-.023 4.633-3.793 8.375-8.41 8.375a8.24 8.24 0 0 1-3.656-.852c-.07.09-.137.203-.227.289a2.77 2.77 0 0 1-1.57.785l-.223.582a10.763 10.763 0 0 0 5.695 1.637c5.969 0 10.836-4.859 10.836-10.816a10.74 10.74 0 0 0-1.637-5.691m46.43.023v12.742h10.363v-2.195h-8.168V63.789zm13.793 0a2.38 2.38 0 0 0-1.703.695a2.28 2.28 0 0 0-.695 1.699v2.668a2.28 2.28 0 0 0 .695 1.699c.469.473 1.031.693 1.703.693h6.93c.09 0 .203.068.203.229v2.664c0 .156-.113.223-.203.223h-6.93a.21.21 0 0 1-.223-.223v-.898h-2.176v.898c0 .672.221 1.23.693 1.703a2.3 2.3 0 0 0 1.703.689h6.932a2.35 2.35 0 0 0 1.684-.689c.473-.473.719-1.031.719-1.703v-2.664a2.31 2.31 0 0 0-.719-1.703a2.28 2.28 0 0 0-1.684-.695H90.95a.21.21 0 0 1-.223-.223v-2.668a.21.21 0 0 1 .223-.223h6.932c.09 0 .203.066.203.223v.896h2.197v-.896a2.3 2.3 0 0 0-.719-1.699a2.332 2.332 0 0 0-1.682-.695h-6.93zm13.906 0a2.38 2.38 0 0 0-1.703.695a2.28 2.28 0 0 0-.693 1.699v10.328h2.176v-4.35h7.354v4.35h2.199V66.184a2.3 2.3 0 0 0-.719-1.699a2.43 2.43 0 0 0-1.703-.695h-6.91zm-54.996.023v12.699h2.176v-4.414h.156l6.977-.023c.672 0 1.23-.246 1.703-.715s.719-1.031.719-1.68v-3.473c0-.648-.246-1.23-.719-1.68a2.277 2.277 0 0 0-1.684-.715h-9.328zm13.391 0v10.324c0 .672.221 1.23.693 1.703a2.3 2.3 0 0 0 1.703.691h6.93a2.35 2.35 0 0 0 1.686-.691c.473-.473.719-1.031.719-1.703V63.813h-2.199v10.324c0 .156-.113.223-.203.223h-6.93a.21.21 0 0 1-.223-.223V63.813h-2.176zm52.957.018v12.699h2.176v-4.434h3.363l.023.047l3.699 4.387h2.445v-.469l-3.32-3.941h.896a2.46 2.46 0 0 0 1.729-.736a2.3 2.3 0 0 0 .719-1.68V66.23c0-.648-.246-1.23-.719-1.68a2.37 2.37 0 0 0-1.703-.721zm-94.699.428a5.21 5.21 0 0 0-5.207 5.199a5.21 5.21 0 0 0 5.207 5.195a5.205 5.205 0 0 0 5.203-5.195a5.21 5.21 0 0 0-5.203-5.199m83.328 1.727a.21.21 0 0 1 .021 0h6.91a.21.21 0 0 1 .223.223l-.002 3.809h-7.354v-3.809a.21.21 0 0 1 .201-.223zm13.75.021a.21.21 0 0 1 .02.002h6.91a.21.21 0 0 1 .223.223v3.473a.21.21 0 0 1-.223.223h-6.91a.21.21 0 0 1-.223-.223V66.23a.21.21 0 0 1 .203-.225zm-66.305.002h6.906c.137 0 .227.09.227.223v3.473c0 .133-.09.225-.227.225h-6.906c-.137 0-.227-.092-.227-.225V66.23c0-.133.09-.223.227-.223zm-36.652 7.949c-.359 0-.719.133-.984.402c-.406.402-.52 1.008-.293 1.5l-2.781 1.074L0 90.688l.246.246L14.02 79.375l1.098-2.777a1.49 1.49 0 0 0 .539.113a1.34 1.34 0 0 0 .965-.402a1.377 1.377 0 0 0 0-1.949a1.39 1.39 0 0 0-.988-.402zm-1.254 6.941l-1.371 1.164a33.49 33.49 0 0 0 3.746 2.777l1.953-.852c-1.594-.918-2.871-1.855-4.328-3.09z\\\"/>\"\n\t\t},\n\t\t\"pulumi\": {\n\t\t\t\"body\": \"<path fill=\\\"#f26e7e\\\" d=\\\"M24.156 108.54c4.734-2.734 4.742-11.582.02-19.766c-4.727-8.18-12.395-12.598-17.13-9.867c-4.73 2.734-4.742 11.582-.015 19.766c4.723 8.183 12.39 12.602 17.125 9.867\\\"/><path fill=\\\"#893390\\\" d=\\\"M120.98 98.684c4.723-8.18 4.715-17.031-.02-19.762c-4.73-2.734-12.398 1.684-17.125 9.863c-4.722 8.184-4.714 17.031.02 19.766s12.402-1.683 17.125-9.867\\\"/><path fill=\\\"#f26e7e\\\" d=\\\"M56.418 127.19c4.734-2.734 4.742-11.582.016-19.766c-4.723-8.184-12.391-12.598-17.125-9.867c-4.735 2.734-4.743 11.582-.016 19.766c4.723 8.183 12.391 12.602 17.125 9.867\\\"/><path fill=\\\"#893390\\\" d=\\\"M88.727 117.3c4.723-8.184 4.715-17.031-.02-19.766c-4.734-2.73-12.398 1.687-17.125 9.867c-4.722 8.184-4.714 17.031.02 19.766c4.73 2.735 12.398-1.683 17.125-9.867\\\"/><path fill=\\\"#f6bf29\\\" d=\\\"M63.984 19.797c9.45 0 17.109-4.434 17.109-9.898c0-5.47-7.66-9.899-17.109-9.899S46.875 4.43 46.875 9.9c0 5.464 7.66 9.898 17.109 9.898\\\"/><path fill=\\\"#f26e7e\\\" d=\\\"M24.145 71.254c4.734-2.734 4.742-11.582.02-19.766c-4.727-8.18-12.395-12.598-17.125-9.867c-4.735 2.734-4.743 11.582-.02 19.766c4.723 8.183 12.391 12.602 17.125 9.867\\\"/><path fill=\\\"#f6bf29\\\" d=\\\"M31.73 38.398c9.45 0 17.109-4.434 17.109-9.898s-7.66-9.9-17.109-9.9s-17.109 4.435-17.109 9.9s7.66 9.898 17.109 9.898\\\"/><path fill=\\\"#893390\\\" d=\\\"M120.96 61.406c4.723-8.18 4.719-17.031-.016-19.762c-4.734-2.734-12.402 1.684-17.129 9.863c-4.722 8.184-4.714 17.035.02 19.766c4.734 2.735 12.402-1.683 17.125-9.867\\\"/><path fill=\\\"#f6bf29\\\" d=\\\"M96.281 38.398c9.45 0 17.109-4.434 17.109-9.898s-7.66-9.9-17.109-9.9s-17.109 4.435-17.109 9.9s7.66 9.898 17.109 9.898\\\"/><path fill=\\\"#f26e7e\\\" d=\\\"M56.406 89.906c4.734-2.734 4.742-11.582.02-19.766c-4.727-8.184-12.395-12.598-17.125-9.867c-4.735 2.734-4.743 11.582-.02 19.766c4.723 8.183 12.391 12.602 17.125 9.867\\\"/><path fill=\\\"#893390\\\" d=\\\"M88.707 80.027c4.727-8.18 4.715-17.031-.016-19.762c-4.734-2.734-12.402 1.684-17.129 9.863c-4.722 8.184-4.714 17.031.02 19.766s12.402-1.683 17.125-9.867\\\"/><path fill=\\\"#f6bf29\\\" d=\\\"M63.984 57.043c9.45 0 17.109-4.434 17.109-9.898c0-5.47-7.66-9.899-17.109-9.899s-17.109 4.43-17.109 9.899c0 5.464 7.66 9.898 17.109 9.898\\\"/>\"\n\t\t},\n\t\t\"pulumi-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f26e7e\\\" d=\\\"M5.14 65.805c1.18-.68 1.18-2.883.005-4.918c-1.176-2.035-3.082-3.137-4.262-2.453c-1.176.68-1.18 2.879-.004 4.918c1.176 2.035 3.086 3.133 4.262 2.453m.008 4.36c1.176 2.035 1.176 4.238-.003 4.917c-1.18.68-3.086-.418-4.262-2.453c-1.176-2.039-1.172-4.238.004-4.918c1.18-.68 3.086.418 4.261 2.453m8.028 4.64c1.176 2.04 1.176 4.238-.004 4.918c-1.18.68-3.086-.418-4.262-2.453c-1.176-2.035-1.172-4.238.004-4.918c1.18-.68 3.086.418 4.262 2.453m-.004-9.277c1.176 2.035 1.176 4.238-.004 4.918c-1.176.68-3.086-.418-4.262-2.453c-1.176-2.04-1.172-4.239.008-4.918c1.176-.68 3.086.418 4.258 2.453\\\"/><path fill=\\\"#893390\\\" d=\\\"M29.234 63.355c1.172-2.035 1.172-4.238-.008-4.918c-1.176-.68-3.086.418-4.262 2.453c-1.171 2.04-1.171 4.238.008 4.918c1.176.684 3.086-.418 4.262-2.453m0 4.356c1.176.683 1.18 2.882.004 4.917c-1.176 2.04-3.086 3.137-4.262 2.458c-1.18-.68-1.18-2.883-.004-4.919c1.176-2.035 3.082-3.136 4.262-2.457m-8.027 4.636c1.18.68 1.18 2.88.004 4.918c-1.176 2.035-3.082 3.133-4.262 2.453c-1.176-.68-1.18-2.882-.004-4.918c1.176-2.035 3.082-3.136 4.262-2.453m-.004-9.277c1.176.68 1.18 2.883.004 4.918s-3.082 3.137-4.262 2.457c-1.18-.684-1.18-2.883-.004-4.918c1.176-2.04 3.082-3.137 4.262-2.457\\\"/><path fill=\\\"#f6bf29\\\" d=\\\"M19.312 50.539c0 1.36-1.906 2.46-4.258 2.46c-2.351 0-4.258-1.1-4.258-2.46c0-1.363 1.907-2.465 4.258-2.465c2.352 0 4.258 1.102 4.258 2.465m-8.027 4.629c0 1.36-1.906 2.46-4.258 2.46c-2.348 0-4.254-1.1-4.254-2.46c0-1.363 1.906-2.465 4.254-2.465c2.352 0 4.258 1.102 4.258 2.465m11.805 2.46c2.351 0 4.258-1.1 4.258-2.46c0-1.363-1.907-2.465-4.258-2.465c-2.348 0-4.254 1.102-4.254 2.465c0 1.36 1.906 2.46 4.254 2.46m-3.778 2.177c0 1.359-1.906 2.464-4.257 2.464c-2.352 0-4.258-1.105-4.258-2.464c0-1.36 1.906-2.461 4.258-2.461c2.351 0 4.257 1.101 4.257 2.46\\\"/><path d=\\\"M76.566 53.797h1.582c.488 0 .762.273.762.766v18.375c0 .492-.274.765-.762.765h-1.582c-.492 0-.766-.273-.766-.765V54.563c0-.493.274-.766.766-.766M46.125 73.703c.492 0 .766-.273.766-.766v-6.152h3.207c4.066 0 6.617-2.43 6.617-6.086c0-3.64-2.551-6.082-6.617-6.082h-5.664c-.489 0-.762.27-.762.762v17.559c0 .492.273.766.762.766zm.766-16.371h3c2.293 0 3.59 1.32 3.59 3.367c0 2.063-1.297 3.387-3.59 3.387h-3zm12.117 3.016v7.937c0 3.48 2.25 5.73 5.648 5.73c1.8 0 3.34-.886 4.297-2.183v1.106c0 .492.273.765.762.765h1.597c.493 0 .766-.273.766-.765v-12.59c0-.493-.273-.766-.766-.766h-1.597c-.489 0-.762.273-.762.766v6.93c0 2.347-1.691 3.995-3.656 3.995c-1.883 0-3.18-1.336-3.18-3.246v-7.68c0-.492-.273-.765-.766-.765H59.77c-.492 0-.761.273-.761.766m23.367 0v7.937c0 3.48 2.254 5.73 5.648 5.73a5.321 5.321 0 0 0 4.3-2.183v1.106c0 .492.274.765.763.765h1.597c.492 0 .766-.273.766-.765v-12.59c0-.493-.274-.766-.766-.766h-1.597c-.489 0-.762.273-.762.766v6.93c0 2.347-1.692 3.995-3.656 3.995c-1.883 0-3.18-1.336-3.18-3.246v-7.68c0-.492-.274-.765-.766-.765H83.14c-.492 0-.765.273-.765.766M121.043 65v7.953c0 .492-.274.762-.766.762h-1.594c-.492 0-.765-.27-.765-.762v-7.684c0-1.91-1.188-3.246-2.934-3.246c-1.762 0-3.426 1.774-3.426 3.918v7.012c0 .492-.27.762-.762.762H109.2c-.492 0-.762-.27-.762-.762v-7.684c0-1.91-1.187-3.246-2.934-3.246c-1.68 0-3.425 1.61-3.425 3.918v7.012c0 .492-.274.762-.766.762h-1.594c-.492 0-.765-.27-.765-.762V60.348c0-.492.273-.766.765-.766h1.594c.492 0 .766.274.766.766v1.074c.996-1.308 2.43-2.168 4.078-2.168c2.129 0 3.918 1.106 4.804 2.934c.926-1.774 2.645-2.934 4.665-2.934c3.07 0 5.418 2.266 5.418 5.746zM128 55.734c0-1.078-.848-1.91-1.938-1.91s-1.922.832-1.922 1.91c0 1.063.832 1.899 1.922 1.899S128 56.797 128 55.734m-.383 4.614c0-.493-.274-.766-.762-.766h-1.586c-.488 0-.762.273-.762.766v12.59c0 .492.274.765.762.765h1.586c.488 0 .762-.273.762-.765z\\\"/>\"\n\t\t},\n\t\t\"puppeteer\": {\n\t\t\t\"body\": \"<path fill=\\\"#dfdedf\\\" d=\\\"M106.01 71.762H21.86v-4.745a5.773 5.773 0 0 1 5.773-5.773h72.602a5.773 5.773 0 0 1 5.774 5.773z\\\"/><path fill=\\\"#fff\\\" d=\\\"M100.147 126.796H27.722a5.863 5.863 0 0 1-5.862-5.862V71.762h84.15v49.172a5.862 5.862 0 0 1-5.863 5.862\\\"/><path fill=\\\"#00d8a2\\\" d=\\\"m91.832 44.428l10.297-4.971v-4.971l-23.79-11.36l23.79-12.25V6.081l-9.942-4.615L64.02 15.49L35.377 1.466l-9.23 4.971v4.26l22.368 12.25l-22.369 11.362v5.148l9.587 4.97L64.137 29.87z\\\"/><path d=\\\"M35.671.07a.66.66 0 0 0-.593.001L24.905 5.243a.66.66 0 0 0-.36.587v5.31c0 .251.142.48.366.592l7.202 3.559L30.7 30.739l-5.687 2.823a.66.66 0 0 0-.366.58l-.094 5.22a.66.66 0 0 0 .36.6l4.722 2.389l-.28 3.063l-6.436 16.688a6.422 6.422 0 0 0-1.792 4.45v54.99A6.464 6.464 0 0 0 27.583 128h72.834a6.464 6.464 0 0 0 6.456-6.458V66.553a6.424 6.424 0 0 0-1.608-4.25l-6.586-20.12l4.05-1.96a.66.66 0 0 0 .371-.595v-5.455a.657.657 0 0 0-.368-.592l-5.163-2.537l-1.294-16.066l6.463-3.246a.66.66 0 0 0 .362-.59V5.917a.658.658 0 0 0-.358-.585L92.483.075a.66.66 0 0 0-.6-.002l-27.568 13.99a.657.657 0 0 1-.591.002zm-.287 2.345L64.02 17.26L92.178 2.42l7.17 3.673l-26.073 13.12c-1.043.525-1.04 2.013.003 2.535l25.804 12.916l-6.689 3.467L64.02 23.59L35.147 38.425l-6.595-3.786L55.21 21.388c1.056-.524 1.049-2.033-.014-2.546v.002L28.458 5.934zm65.49 5.404v2.359l-22.64 11.367v-.002c-.033-.02-2.387-1.132-2.387-1.132zm-73.77.14L52.04 20.397l-2.521 1.008l-22.415-11.099zm66.103 8.56l1.04 12.895l-13.507-6.636zm-58.04.281L47 22.647l-12.956 6.432zm29.966 10.345l25.765 12.73v2.56l-25.765-13.2v-2.088zm-2.227.004v2.087L36.488 42.603v-2.356zm.816 4.273a.658.658 0 0 1 .595.002L91.626 45.31a.66.66 0 0 0 .585.006l3.193-1.547l1.315 16.327H31.205l1.278-13.947l.76-1.97l2.233 1.129a.66.66 0 0 0 .595 0zm-36.951 4.765l7.49 4.298v1.713l-7.49-3.79zm74.104.055v2.405L93.123 42.4v-2.14zM99.489 54.88l1.724 5.27a6.33 6.33 0 0 0-.796-.056h-.51zM28.294 57l-.282 3.094h-.429a6.64 6.64 0 0 0-.491.024zm-.71 5h72.833a4.55 4.55 0 0 1 4.547 4.55v4.258H23.036v-4.256a4.55 4.55 0 0 1 4.547-4.551zm.63 3.113a1.441 1.441 0 0 0 0 2.882a1.441 1.441 0 1 0 0-2.882m4.925 0a1.441 1.441 0 0 0 0 2.882a1.441 1.441 0 1 0 0-2.882m4.772 0a1.441 1.441 0 0 0 0 2.882a1.441 1.441 0 1 0 0-2.882m-14.875 7.603h81.928v48.825a4.55 4.55 0 0 1-4.547 4.55H27.583a4.55 4.55 0 0 1-4.547-4.55zM28.03 91.86v10.954h1.775v-4.157h2.292c.25 0 .487-.02.71-.06c.224-.039.436-.1.633-.177a2.836 2.836 0 0 0 1.028-.7a2.992 2.992 0 0 0 .646-1.076c.071-.205.124-.423.16-.656c.036-.232.055-.478.055-.737c0-.257-.019-.501-.055-.733a3.677 3.677 0 0 0-.162-.655a2.94 2.94 0 0 0-1.133-1.488a2.796 2.796 0 0 0-.55-.288a3.22 3.22 0 0 0-.627-.17a4.19 4.19 0 0 0-.705-.057zm45.23 1.34v2.182h-1.546v1.562h1.547v2.993c0 .242.016.467.047.677c.03.21.076.404.139.583c.062.18.14.343.235.492c.094.148.204.282.33.4c.127.12.265.226.415.316c.15.09.312.167.486.227c.173.06.359.107.556.137c.197.03.406.045.626.045c.148 0 .298-.011.45-.033c.152-.022.306-.054.462-.098c.157-.044.315-.101.476-.168c.161-.067.325-.145.491-.235l-.55-1.592a3.23 3.23 0 0 1-.626.26a2.195 2.195 0 0 1-.574.087a1.5 1.5 0 0 1-.248-.02a1.074 1.074 0 0 1-.216-.058a.839.839 0 0 1-.444-.41a1.175 1.175 0 0 1-.08-.213a1.678 1.678 0 0 1-.05-.252a2.418 2.418 0 0 1-.017-.29v-2.848h2.357v-1.562H75.17V93.2zm-43.455.514h2.292c.03 0 .058 0 .086.002a1.886 1.886 0 0 1 .397.055c.025.006.05.014.073.021c.024.008.048.015.07.024a1.17 1.17 0 0 1 .253.133a1.22 1.22 0 0 1 .164.135l.051.05a1.693 1.693 0 0 1 .165.23c.012.02.022.041.033.062c.01.021.022.042.031.063a1.61 1.61 0 0 1 .053.135l.022.07c.007.025.015.048.021.073l.016.076a1.827 1.827 0 0 1 .035.321l.002.087c0 .029 0 .057-.002.086c0 .028-.002.056-.004.084l-.008.082a1.747 1.747 0 0 1-.023.159l-.016.076c-.006.025-.014.048-.021.072a1.662 1.662 0 0 1-.139.339a1.346 1.346 0 0 1-.12.176c-.014.019-.03.037-.045.055v.002a1.222 1.222 0 0 1-.468.317c-.022.009-.046.016-.07.024l-.072.021a1.728 1.728 0 0 1-.314.051a2.003 2.003 0 0 1-.17.008h-2.292zm20.078 1.45c-.239 0-.467.018-.685.051a3.774 3.774 0 0 0-.627.147a3.288 3.288 0 0 0-1.072.6v-.58H45.59v10.656h1.909v-4.005c.162.13.334.245.514.343a3.786 3.786 0 0 0 1.192.389c.217.033.443.05.678.05c.238 0 .47-.024.693-.07a3.213 3.213 0 0 0 1.243-.542a4.024 4.024 0 0 0 1.016-1.05a3.507 3.507 0 0 0 .33-.649c.088-.228.153-.467.196-.718c.044-.251.065-.514.065-.789s-.021-.537-.065-.789a3.611 3.611 0 0 0-.527-1.372a3.829 3.829 0 0 0-1.017-1.061a3.422 3.422 0 0 0-.603-.339a3.22 3.22 0 0 0-.644-.201a3.448 3.448 0 0 0-.687-.069zm9.282 0c-.238 0-.466.018-.685.051a3.739 3.739 0 0 0-.626.147a3.288 3.288 0 0 0-1.073.6v-.58h-1.909v10.656h1.909v-4.005a3.354 3.354 0 0 0 1.085.585c.198.065.405.115.622.147c.217.033.442.05.677.05a3.395 3.395 0 0 0 1.335-.273c.207-.09.407-.203.599-.339a4.05 4.05 0 0 0 .803-.753a3.6 3.6 0 0 0 .395-.613a3.81 3.81 0 0 0 .346-1.051c.044-.251.065-.514.065-.789s-.02-.537-.065-.789a3.844 3.844 0 0 0-.346-1.055a3.57 3.57 0 0 0-.18-.317a3.841 3.841 0 0 0-.464-.587a3.999 3.999 0 0 0-.556-.474a3.238 3.238 0 0 0-1.247-.54a3.428 3.428 0 0 0-.685-.069zm8.14 0c-.264 0-.516.024-.758.069a3.453 3.453 0 0 0-1.323.536a3.78 3.78 0 0 0-1.04 1.046a3.533 3.533 0 0 0-.339.655a3.69 3.69 0 0 0-.203.728c-.045.255-.069.52-.069.8a4.577 4.577 0 0 0 .153 1.172a3.676 3.676 0 0 0 .268.687a3.48 3.48 0 0 0 .65.886c.177.178.365.333.564.466a3.452 3.452 0 0 0 1.317.537c.24.045.491.068.752.068c.202 0 .397-.012.587-.035c.19-.023.373-.059.55-.106a3.73 3.73 0 0 0 .989-.423a3.3 3.3 0 0 0 .798-.696c.115-.139.222-.288.317-.449c.096-.16.18-.334.257-.518l-1.707-.36a2.024 2.024 0 0 1-.323.416c-.121.12-.256.218-.405.298c-.15.08-.312.14-.49.18c-.177.04-.367.059-.573.059c-.112 0-.222-.01-.325-.03a1.56 1.56 0 0 1-.576-.233a1.971 1.971 0 0 1-.67-.73a2.256 2.256 0 0 1-.14-.323a2.67 2.67 0 0 1-.096-.36h5.493v-.652a4.735 4.735 0 0 0-.092-.775a3.858 3.858 0 0 0-.216-.7a3.517 3.517 0 0 0-.804-1.185a3.91 3.91 0 0 0-.56-.446a3.498 3.498 0 0 0-1.274-.515a3.838 3.838 0 0 0-.713-.067zm14.702 0c-.263 0-.516.024-.758.069a3.449 3.449 0 0 0-1.323.536a3.76 3.76 0 0 0-.818.748a3.528 3.528 0 0 0-.56.953a3.685 3.685 0 0 0-.204.728c-.045.255-.068.52-.068.8a4.577 4.577 0 0 0 .153 1.172a3.675 3.675 0 0 0 .268.687a3.48 3.48 0 0 0 .65.886c.177.178.365.333.563.466a3.473 3.473 0 0 0 1.318.537c.24.045.491.068.751.068c.203 0 .398-.012.588-.035a4.14 4.14 0 0 0 .552-.106a3.698 3.698 0 0 0 .986-.423a3.3 3.3 0 0 0 .799-.696a3.574 3.574 0 0 0 .573-.967l-1.705-.36a1.99 1.99 0 0 1-.323.416c-.12.12-.256.218-.405.298a1.94 1.94 0 0 1-.491.18c-.177.04-.368.059-.574.059a1.654 1.654 0 0 1-.624-.118a1.654 1.654 0 0 1-.532-.344a1.971 1.971 0 0 1-.414-.53a2.256 2.256 0 0 1-.14-.324a2.67 2.67 0 0 1-.096-.36h5.492v-.652a4.743 4.743 0 0 0-.092-.775a3.856 3.856 0 0 0-.215-.7a3.51 3.51 0 0 0-.805-1.185a3.914 3.914 0 0 0-.56-.446a3.498 3.498 0 0 0-1.272-.515a3.858 3.858 0 0 0-.712-.067zm8.574 0c-.264 0-.518.024-.76.069a3.566 3.566 0 0 0-1.323.536a3.746 3.746 0 0 0-.817.748a3.529 3.529 0 0 0-.56.953a3.685 3.685 0 0 0-.203.728c-.045.255-.068.52-.068.8a4.577 4.577 0 0 0 .152 1.172a3.676 3.676 0 0 0 .268.687a3.48 3.48 0 0 0 .65.886c.177.178.365.333.564.466a3.456 3.456 0 0 0 1.317.537c.24.045.49.068.75.068c.203 0 .4-.012.59-.035a4.11 4.11 0 0 0 .55-.106a3.724 3.724 0 0 0 .986-.423a3.307 3.307 0 0 0 1.116-1.145c.095-.16.182-.334.258-.518l-1.707-.36a1.99 1.99 0 0 1-.323.416c-.121.12-.256.218-.405.298c-.15.08-.312.14-.49.18a2.61 2.61 0 0 1-.575.059a1.654 1.654 0 0 1-.622-.118a1.654 1.654 0 0 1-.533-.344a1.971 1.971 0 0 1-.413-.53a2.256 2.256 0 0 1-.14-.324a2.672 2.672 0 0 1-.099-.36h5.495v-.652a4.742 4.742 0 0 0-.094-.775a3.853 3.853 0 0 0-.213-.7a3.51 3.51 0 0 0-.807-1.185a3.9 3.9 0 0 0-.558-.446a3.498 3.498 0 0 0-1.274-.515a3.836 3.836 0 0 0-.713-.067zm9.599.118a3.03 3.03 0 0 0-1.116.2a2.82 2.82 0 0 0-.943.598a3.512 3.512 0 0 0-.274.286a4.098 4.098 0 0 0-.255.331v-1.313h-1.908v7.213h1.908v-2.328c0-.258.015-.5.041-.726c.027-.226.066-.437.12-.63c.053-.194.12-.37.2-.53a2.21 2.21 0 0 1 .281-.435a1.96 1.96 0 0 1 .805-.58c.16-.064.334-.112.522-.144a3.6 3.6 0 0 1 .605-.047h.42l.1-1.838a.894.894 0 0 0-.214-.045a2.874 2.874 0 0 0-.292-.012m-63.684.1v4.396c0 .224.016.438.049.64c.032.203.082.394.148.576a2.783 2.783 0 0 0 1.03 1.339c.154.106.319.195.493.266c.175.071.359.125.554.16c.196.036.402.055.619.055c.234 0 .458-.019.67-.055c.21-.036.411-.09.6-.162a2.828 2.828 0 0 0 .998-.65v.65h1.909v-7.215h-1.909v3.196c0 .208-.008.402-.027.584a3.897 3.897 0 0 1-.082.507a2.6 2.6 0 0 1-.141.426c-.056.13-.121.245-.196.349a1.396 1.396 0 0 1-.56.466a1.61 1.61 0 0 1-.364.115a2.17 2.17 0 0 1-.423.04a1.61 1.61 0 0 1-.317-.03a1.309 1.309 0 0 1-.526-.233a1.356 1.356 0 0 1-.212-.2a1.384 1.384 0 0 1-.178-.248a1.585 1.585 0 0 1-.127-.29a1.98 1.98 0 0 1-.074-.329a2.557 2.557 0 0 1-.024-.362v-3.991zm13.054 1.446a2.487 2.487 0 0 1 .425.037a1.959 1.959 0 0 1 .56.196c.057.03.113.065.168.102c.027.018.054.039.08.059c.027.02.053.039.078.06l.077.069l.074.07a1.87 1.87 0 0 1 .343.498a2.028 2.028 0 0 1 .14.395a2.542 2.542 0 0 1 .073.444a3.164 3.164 0 0 1-.027.703a2.368 2.368 0 0 1-.184.603a1.96 1.96 0 0 1-.211.343a1.863 1.863 0 0 1-.443.409a1.945 1.945 0 0 1-.936.327a2.209 2.209 0 0 1-.415 0a2.133 2.133 0 0 1-.378-.077a1.932 1.932 0 0 1-.528-.256a2.37 2.37 0 0 1-.474-.419a1.85 1.85 0 0 1-.387-.728a2.206 2.206 0 0 1-.077-.433a2.895 2.895 0 0 1 .028-.689a2.186 2.186 0 0 1 .201-.6a1.893 1.893 0 0 1 .235-.35a2.109 2.109 0 0 1 .307-.299a2.374 2.374 0 0 1 .337-.227a1.954 1.954 0 0 1 .358-.152a1.879 1.879 0 0 1 .576-.085m9.282 0a2.479 2.479 0 0 1 .423.037a1.964 1.964 0 0 1 .56.196c.057.03.114.065.168.102c.027.018.054.039.08.059l.079.06c.026.022.051.046.076.069l.075.07a1.838 1.838 0 0 1 .342.498a2.044 2.044 0 0 1 .143.395a2.758 2.758 0 0 1 .078.683a2.707 2.707 0 0 1-.078.677a2.167 2.167 0 0 1-.239.566a1.995 1.995 0 0 1-.246.32a2.123 2.123 0 0 1-.478.357a1.83 1.83 0 0 1-.558.196a2.3 2.3 0 0 1-.622.03a2.133 2.133 0 0 1-.378-.077a1.93 1.93 0 0 1-.53-.256a2.231 2.231 0 0 1-.326-.266a1.975 1.975 0 0 1-.381-.494a1.882 1.882 0 0 1-.153-.387a2.206 2.206 0 0 1-.076-.433a2.895 2.895 0 0 1 .027-.689a2.186 2.186 0 0 1 .202-.6a1.893 1.893 0 0 1 .235-.35a2.109 2.109 0 0 1 .307-.299a2.235 2.235 0 0 1 .335-.227a1.954 1.954 0 0 1 .358-.152a1.952 1.952 0 0 1 .577-.085m8.472 0a1.809 1.809 0 0 1 .245.016a1.809 1.809 0 0 1 .072.01a1.809 1.809 0 0 1 .245.054a1.809 1.809 0 0 1 .227.092a1.809 1.809 0 0 1 .07.034a1.809 1.809 0 0 1 .212.127a1.484 1.484 0 0 1 .303.292a1.615 1.615 0 0 1 .16.25a1.4 1.4 0 0 1 .067.141l.03.075a2.228 2.228 0 0 1 .053.156l.023.082h-3.484a1.599 1.599 0 0 1 .088-.266a1.599 1.599 0 0 1 .021-.049a1.599 1.599 0 0 1 .136-.243a1.599 1.599 0 0 1 .178-.21a1.599 1.599 0 0 1 .043-.042a1.599 1.599 0 0 1 .213-.172a1.904 1.904 0 0 1 .223-.133a1.904 1.904 0 0 1 .06-.03a1.904 1.904 0 0 1 .24-.096a1.904 1.904 0 0 1 .246-.058a1.904 1.904 0 0 1 .077-.01a1.904 1.904 0 0 1 .252-.02m14.703 0a1.809 1.809 0 0 1 .244.016a1.809 1.809 0 0 1 .073.01a1.809 1.809 0 0 1 .245.054a1.809 1.809 0 0 1 .227.092a1.809 1.809 0 0 1 .07.034a1.809 1.809 0 0 1 .212.127a1.44 1.44 0 0 1 .21.184c.017.017.032.035.048.053l.047.055l.043.058a1.488 1.488 0 0 1 .115.192a2.065 2.065 0 0 1 .15.374l.023.082h-3.485v-.002a1.599 1.599 0 0 1 .088-.266a1.599 1.599 0 0 1 .022-.049a1.599 1.599 0 0 1 .135-.243a1.599 1.599 0 0 1 .178-.211a1.599 1.599 0 0 1 .043-.041a1.599 1.599 0 0 1 .214-.172a1.904 1.904 0 0 1 .223-.133a1.904 1.904 0 0 1 .06-.03a1.904 1.904 0 0 1 .24-.096a1.904 1.904 0 0 1 .246-.058a1.904 1.904 0 0 1 .076-.01a1.904 1.904 0 0 1 .253-.02m8.574 0a1.809 1.809 0 0 1 .244.016a1.809 1.809 0 0 1 .073.01a1.809 1.809 0 0 1 .244.054a1.809 1.809 0 0 1 .227.092a1.809 1.809 0 0 1 .07.034a1.809 1.809 0 0 1 .212.127a1.482 1.482 0 0 1 .464.542c.024.046.046.092.067.141l.03.075a2.271 2.271 0 0 1 .052.156l.023.082h-3.486a1.599 1.599 0 0 1 .088-.266a1.599 1.599 0 0 1 .022-.049a1.599 1.599 0 0 1 .135-.243a1.599 1.599 0 0 1 .176-.207a1.599 1.599 0 0 1 .053-.05a1.599 1.599 0 0 1 .207-.167a1.904 1.904 0 0 1 .225-.135a1.904 1.904 0 0 1 .053-.026a1.904 1.904 0 0 1 .243-.098a1.904 1.904 0 0 1 .249-.058a1.904 1.904 0 0 1 .074-.01a1.904 1.904 0 0 1 .255-.02\\\"/>\"\n\t\t},\n\t\t\"purescript\": {\n\t\t\t\"body\": \"<path fill=\\\"#111419\\\" d=\\\"M47.397 90.262h43.211l-9.84-9.14h-43.21Zm43.211-32.035h-43.21l-9.84 9.136h43.21zM47.397 44.465h43.207l-9.836-9.14H37.561ZM33.01 53.512l-6.5-6.465L2.409 71.012a4.535 4.535 0 0 0-1.34 3.23c0 1.223.477 2.371 1.34 3.23l24.101 23.97l6.5-6.462l-20.847-20.738zm92.747-5.395l-24.094-23.972l-6.496 6.46l20.84 20.739l-20.84 20.738l6.496 6.461l24.094-23.961a4.558 4.558 0 0 0 1.347-3.238a4.56 4.56 0 0 0-1.347-3.227\\\"/>\"\n\t\t},\n\t\t\"purescript-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#111419\\\" d=\\\"M22.543 65.129H10.797l2.676 2.484h11.746ZM10.797 61.39h11.746l2.676-2.484H13.473Zm11.746-8.71H10.797l2.676 2.484h11.746Zm-12.98 4.941l-1.77-1.758l-6.55 6.516a1.239 1.239 0 0 0 0 1.758l6.55 6.515l1.77-1.757l-5.672-5.637Zm25.21-1.465l-6.55-6.52l-1.766 1.759l5.668 5.64l-5.668 5.637l1.766 1.758l6.55-6.516a1.232 1.232 0 0 0 0-1.758m14.27.582c.543.45.816 1.149.816 2.086c0 .942-.28 1.633-.836 2.07c-.554.438-1.406.653-2.55.653h-1.387v2.281h-1.32v-7.77h2.683c1.184 0 2.047.227 2.594.68m-.934 3.203c.262-.277.395-.683.395-1.222c0-.535-.168-.914-.5-1.137c-.336-.223-.863-.336-1.578-.336h-1.34v3.113h1.531c.73 0 1.227-.14 1.492-.418m6.399 2.109c.355.415.84.622 1.453.622c.61 0 1.094-.207 1.453-.621c.356-.418.535-.98.535-1.692v-4.3h1.317v4.355c0 1.121-.309 1.98-.926 2.586c-.617.602-1.41.906-2.38.906c-.968 0-1.765-.304-2.382-.906c-.617-.605-.926-1.465-.926-2.586V56.06h1.317v4.3c0 .711.18 1.274.539 1.692m14.402-3.47c0 1.281-.562 2.09-1.687 2.422l2.047 2.824h-1.676l-1.867-2.613h-1.735v2.613h-1.316v-7.77h2.906c1.191 0 2.043.2 2.559.602c.515.399.77 1.04.77 1.922m-1.755 1.102c.27-.23.403-.602.403-1.11c0-.504-.137-.855-.414-1.043c-.274-.187-.766-.285-1.473-.285h-1.676v2.781h1.64c.747 0 1.25-.117 1.52-.343m10.617 4.144h-5.62v-7.77h5.488v1.235h-4.168v2.055h3.742v1.168h-3.742v2.078h4.3zm5.391-6.746c-.383 0-.695.078-.941.23c-.246.157-.371.391-.371.708a.82.82 0 0 0 .37.722c.247.168.766.348 1.571.54c.8.19 1.402.464 1.809.812c.406.347.609.86.609 1.539c0 .676-.258 1.226-.77 1.648c-.515.426-1.191.633-2.023.633c-1.223 0-2.309-.418-3.254-1.254l.828-.988c.79.68 1.61 1.023 2.457 1.023c.426 0 .762-.093 1.012-.273a.853.853 0 0 0 .375-.723c0-.3-.117-.535-.352-.699c-.234-.168-.64-.32-1.214-.457c-.57-.137-1.008-.262-1.305-.379a2.906 2.906 0 0 1-.793-.45c-.465-.347-.695-.882-.695-1.6c0-.72.265-1.27.789-1.66c.527-.391 1.175-.583 1.949-.583c.5 0 .996.078 1.488.242c.492.164.914.395 1.274.692l-.704.988c-.234-.207-.546-.379-.941-.512a3.634 3.634 0 0 0-1.168-.199m9.586 5.555c.453 0 .844-.075 1.172-.227c.328-.152.672-.394 1.027-.726l.852.867c-.828.91-1.832 1.363-3.012 1.363c-1.184 0-2.16-.375-2.941-1.133c-.778-.754-1.168-1.71-1.168-2.867c0-1.156.398-2.117 1.191-2.89c.793-.77 1.797-1.157 3.008-1.157c1.21 0 2.223.445 3.031 1.336l-.836.91c-.375-.355-.726-.605-1.058-.746c-.329-.14-.72-.21-1.168-.21c-.79 0-1.453.253-1.989.761c-.535.508-.804 1.156-.804 1.945c0 .79.27 1.45.8 1.98a2.586 2.586 0 0 0 1.895.794m12.234-4.055c0 1.281-.562 2.09-1.687 2.422l2.047 2.824h-1.676l-1.867-2.613h-1.735v2.613H98.75v-7.77h2.902c1.196 0 2.047.2 2.563.602c.512.399.77 1.04.77 1.922m-1.755 1.102c.27-.23.403-.602.403-1.11c0-.504-.137-.855-.414-1.043c-.274-.187-.766-.285-1.473-.285h-1.68v2.781h1.645c.746 0 1.254-.117 1.52-.343m4.996-3.625h1.32v7.77h-1.32zm10.101.679c.543.45.817 1.149.817 2.086c0 .942-.278 1.633-.832 2.07c-.555.438-1.407.653-2.555.653h-1.387v2.281h-1.316v-7.77h2.68c1.187 0 2.05.227 2.593.68m-.933 3.203c.265-.277.398-.683.398-1.222c0-.535-.168-.914-.504-1.137c-.336-.223-.86-.336-1.574-.336h-1.344v3.113h1.531c.73 0 1.23-.14 1.493-.418m3.905-3.882h6.06v1.199h-2.372v6.57h-1.32v-6.57h-2.367zm0 0\\\"/>\"\n\t\t},\n\t\t\"putty\": {\n\t\t\t\"body\": \"<path fill=\\\"#0403ff\\\" d=\\\"M69.531 19.84h31.281v20.25H69.531zm0 0\\\"/><path fill=\\\"#0808bd\\\" d=\\\"M69.531 18.918v22.094h-1.895l.051-22.094zm0 0\\\"/><path fill=\\\"#000373\\\" d=\\\"M69.531 19.84h31.281v-1.844H67.688v1.844zm0 0\\\"/><path fill=\\\"#000473\\\" d=\\\"M66.766 17.074h34.969v23.91H78.746v-.922h22.094V17.996H67.688v22.988l-.922.922zm0 0\\\"/><path fill=\\\"#0403ff\\\" d=\\\"M23.527 77.797h31.281v20.25H23.527zm0 0\\\"/><path fill=\\\"#0808bd\\\" d=\\\"M23.527 76.875v22.094h-1.895l.051-22.094zm0 0\\\"/><path fill=\\\"#000373\\\" d=\\\"M23.527 77.797h31.281v-1.84H21.684v1.84zm0 0\\\"/><path fill=\\\"#000473\\\" d=\\\"M54.809 98.047v-22.09H21.684v22.988h-.922v-23.91H55.73v23.91h-.922\\\"/><path fill=\\\"#0001DF\\\" d=\\\"M23.527 98.047h31.281v.922H23.527zm0 0\\\"/><path fill=\\\"#fffffd\\\" d=\\\"M6.965 117.352v-9.191h56.113l7.375-7.371h4.605L64 111.848H10.648v5.527H6.965zm0 0\\\"/><path fill=\\\"#bfbfc0\\\" d=\\\"m6.965 108.16l8.266-8.27v8.27zm0 0\\\"/><path fill=\\\"#bcbfb1\\\" d=\\\"M6.965 117.352h3.684v3.684H6.965zm0 0\\\"/><path fill=\\\"#c2c2c2\\\" d=\\\"m63.078 108.16l7.375-7.371h-2.766l-7.375 7.371zm0 0\\\"/><path fill=\\\"#7e7e7e\\\" d=\\\"M75.035 100.813v12.879l-7.375 7.371H10.648v-3.687H64v-5.527zm0 0\\\"/><path fill=\\\"silver\\\" d=\\\"M41.934 114.609v2.766H10.648v-5.527H64v5.527h-3.687v-2.766zm0 0\\\"/><path fill=\\\"#010101\\\" d=\\\"M41.934 114.609H60.34v2.766H41.934zm0 0\\\"/><path fill=\\\"#fffffd\\\" d=\\\"M52.965 59.391v-9.187h56.117l7.371-7.375h4.609l-11.035 11.035H56.652v5.527zm0 0\\\"/><path fill=\\\"#bfbfc0\\\" d=\\\"m52.965 50.203l8.27-8.27v8.27zm0 0\\\"/><path fill=\\\"#bcbfb1\\\" d=\\\"M52.965 59.391h3.688v3.688h-3.687zm0 0\\\"/><path fill=\\\"#c2c2c2\\\" d=\\\"m109.082 50.203l7.371-7.375h-2.762l-7.375 7.375zm0 0\\\"/><path fill=\\\"#7e7e7e\\\" d=\\\"M121.035 42.828v12.879l-7.371 7.371H56.652v-3.687h53.352v-5.527zm0 0\\\"/><path fill=\\\"silver\\\" d=\\\"M87.91 56.652v2.738H56.652v-5.527h53.352v5.527h-3.687v-2.762H87.91zm0 0\\\"/><path fill=\\\"#010101\\\" d=\\\"M87.91 56.652h18.406v2.738H87.91zm0 0\\\"/><path fill=\\\"gray\\\" d=\\\"M66.766 46.516h36.813V15.23l9.191-8.266v34.969l-6.453 6.449H64.922\\\"/><path fill=\\\"#bfc1bb\\\" d=\\\"m63.078 13.391l40.473 1.84l-1.844 1.844l4.609-3.684l6.453-6.453H69.531zm0 0\\\"/><path fill=\\\"#c6bcbf\\\" d=\\\"M66.766 42.828h36.813v3.688H66.766zm0 0\\\"/><path fill=\\\"#817f87\\\" d=\\\"M64.922 41.934h.922l.922-.922V17.074h34.969l1.844-1.844H64.922zm0 0\\\"/><path fill=\\\"#fefffa\\\" d=\\\"m65.844 41.934l.922-.922h34.969V17.074l1.844-1.844v27.598H65.844zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.078 13.391h41.395l-.922 1.84H64.922v28.52l-1.844.922zm0 0\\\"/><path fill=\\\"#bebebe\\\" d=\\\"M64.922 41.934h.922v.922l-.922.922zm0 0\\\"/><path fill=\\\"gray\\\" d=\\\"M18.918 104.473h38.629V73.191l9.191-8.27V99.89l-6.449 6.453H17.074\\\"/><path fill=\\\"#bfc1bb\\\" d=\\\"m17.074 71.371l40.473 1.844l-1.84 1.844l4.605-3.687l6.453-6.449H23.527zm0 0\\\"/><path fill=\\\"#c6bcbf\\\" d=\\\"M57.547 100.813v3.688H18.918v-4.609h.922v.922zm0 0\\\"/><path fill=\\\"#817f87\\\" d=\\\"M18.918 99.891h.922l.922-.922v-23.91H55.73l1.844-1.844H18.918zm0 0\\\"/><path fill=\\\"#fefffa\\\" d=\\\"m19.84 99.891l.922-.922H55.73v-23.91l1.844-1.844v27.598H19.84zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M17.074 71.371h41.395l-.922 1.844H18.918V104.5l-1.844 1.844zm0 0\\\"/><path fill=\\\"#bebebe\\\" d=\\\"M18.918 99.891h.922v.922h-.922zm0 0\\\"/><path d=\\\"m5.121 108.16l9.188-9.191h.922v1.844h-.922l-7.371 7.375v12.875H67.66l7.375-7.371v-12.879h-8.27l1.844-1.844h8.266v14.723l-9.187 9.188H5.121zm0 0\\\"/><path d=\\\"M17.074 71.371v34.973l-1.844 1.844V71.371l8.27-8.266h45.109v36.813l-8.27 8.27H15.23l1.844-1.844h43.238l6.453-6.453V64.922H23.527zm0 0\\\"/><path d=\\\"m51.125 50.203l9.188-9.191h.922v1.844h-.922l-7.371 7.371v12.879h60.723l7.371-7.375V42.855h-8.266l1.84-1.844h8.27V55.73l-9.187 9.191H51.125zm0 0\\\"/><path d=\\\"M63.078 13.391V48.36l-1.844 1.844V13.391l8.297-8.27h45.078v36.813l-8.266 8.27H61.234l1.844-1.844h43.238l6.453-6.453V6.965H69.531zm0 0\\\"/><path fill=\\\"#FFFF01\\\" d=\\\"M46.516 60.313h15.641L37.324 85.145v1.844h2.766l40.473-32.203v-1.844H65.844l23.91-24.832v-1.844H87.91L46.516 58.469zm0 0\\\"/><path d=\\\"M40.398 87.91h-3.996v-3.148l23.555-23.551H45.621v-3.203l41.98-32.637h3.074v3.121L67.992 52.043h13.469v3.203zm-2.152-1.816h1.512l39.883-31.719v-.488H63.668L88.832 27.75v-.562h-.613L47.438 58.93v.461h16.945l-26.137 26.14zm0 0\\\"/>\"\n\t\t},\n\t\t\"pycharm\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconPycharm0\\\" x1=\\\"38.78\\\" x2=\\\"95.91\\\" y1=\\\"41.59\\\" y2=\\\"41.59\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#07c3f2\\\"/></linearGradient><linearGradient id=\\\"deviconPycharm1\\\" x1=\\\"-29.18\\\" x2=\\\"88.46\\\" y1=\\\"85.52\\\" y2=\\\"-1.32\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".01\\\" stop-color=\\\"#fcf84a\\\"/><stop offset=\\\".11\\\" stop-color=\\\"#a7eb62\\\"/><stop offset=\\\".21\\\" stop-color=\\\"#5fe077\\\"/><stop offset=\\\".27\\\" stop-color=\\\"#32da84\\\"/><stop offset=\\\".31\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".58\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".69\\\" stop-color=\\\"#20d68c\\\"/><stop offset=\\\".76\\\" stop-color=\\\"#1ed497\\\"/><stop offset=\\\".83\\\" stop-color=\\\"#19d1a9\\\"/><stop offset=\\\".9\\\" stop-color=\\\"#13ccc2\\\"/><stop offset=\\\".97\\\" stop-color=\\\"#0bc6e1\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#07c3f2\\\"/></linearGradient><linearGradient id=\\\"deviconPycharm2\\\" x1=\\\"17.3\\\" x2=\\\"36.92\\\" y1=\\\"110.99\\\" y2=\\\"49.42\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".16\\\" stop-color=\\\"#24d888\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#2fd985\\\"/><stop offset=\\\".43\\\" stop-color=\\\"#41dc80\\\"/><stop offset=\\\".55\\\" stop-color=\\\"#5ae079\\\"/><stop offset=\\\".67\\\" stop-color=\\\"#7ae46f\\\"/><stop offset=\\\".79\\\" stop-color=\\\"#a1ea64\\\"/><stop offset=\\\".9\\\" stop-color=\\\"#cff157\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fcf84a\\\"/></linearGradient><linearGradient id=\\\"deviconPycharm3\\\" x1=\\\"43.28\\\" x2=\\\"85.97\\\" y1=\\\"57.46\\\" y2=\\\".06\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#21d789\\\"/><stop offset=\\\".09\\\" stop-color=\\\"#23d986\\\"/><stop offset=\\\".17\\\" stop-color=\\\"#2ade7b\\\"/><stop offset=\\\".25\\\" stop-color=\\\"#36e669\\\"/><stop offset=\\\".27\\\" stop-color=\\\"#3bea62\\\"/><stop offset=\\\".35\\\" stop-color=\\\"#47eb61\\\"/><stop offset=\\\".49\\\" stop-color=\\\"#67ed5d\\\"/><stop offset=\\\".69\\\" stop-color=\\\"#9af156\\\"/><stop offset=\\\".92\\\" stop-color=\\\"#e0f64d\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fcf84a\\\"/></linearGradient><linearGradient id=\\\"deviconPycharm4\\\" x1=\\\"108.58\\\" x2=\\\"22.55\\\" y1=\\\"64.77\\\" y2=\\\"63.97\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".39\\\" stop-color=\\\"#fcf84a\\\"/><stop offset=\\\".46\\\" stop-color=\\\"#ecf74c\\\"/><stop offset=\\\".61\\\" stop-color=\\\"#c1f451\\\"/><stop offset=\\\".82\\\" stop-color=\\\"#7eef5a\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3bea62\\\"/></linearGradient><path fill=\\\"url(#deviconPycharm0)\\\" d=\\\"m87.54 23.954l34.194 28.44l-12.312 25.051l-20.614-5.717H70.973z\\\"/><path fill=\\\"url(#deviconPycharm1)\\\" d=\\\"m53.09 42.423l-6.619 35.023l-.634 11.898l-16.689 7.229l-23.662 2.548l7.18-75.666L55.54 5.486l26.417 17.323z\\\"/><path fill=\\\"url(#deviconPycharm2)\\\" d=\\\"m53.09 42.423l3.218 67.486l-10.691 12.605L5.486 99.121l32.951-49.103z\\\"/><path fill=\\\"url(#deviconPycharm3)\\\" d=\\\"M97.243 37.498H56.698L92.526 5.486z\\\"/><path fill=\\\"url(#deviconPycharm4)\\\" d=\\\"M122.514 110.178L86.82 122.295L39.289 108.91L53.09 42.423l5.51-4.925l28.94-2.718l-2.621 29.062l23.016-8.923z\\\"/><path d=\\\"M27.429 27.429h73.143v73.143H27.429z\\\"/><path fill=\\\"#fff\\\" d=\\\"M36.547 86.747h27.429v4.571H36.547zm.024-50.176h11.215c6.534 0 10.496 3.877 10.496 9.472v.073c0 6.339-4.937 9.63-11.081 9.63h-4.534v8.216h-6.095zm10.801 13.812c3.011 0 4.779-1.792 4.779-4.145v-.073c0-2.706-1.877-4.157-4.876-4.157h-4.608v8.375zm14.178-.024v-.073A13.909 13.909 0 0 1 75.825 36.12a14.129 14.129 0 0 1 10.801 4.218l-3.828 4.425a10.155 10.155 0 0 0-7.01-3.096c-4.62 0-7.948 3.84-7.948 8.533v.085c0 4.693 3.255 8.606 7.948 8.606c3.133 0 5.047-1.219 7.205-3.206l3.828 3.864a13.97 13.97 0 0 1-11.227 4.876a13.836 13.836 0 0 1-14.043-14.068\\\"/>\"\n\t\t},\n\t\t\"pycharm-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M27.598 50.117H34c3.738 0 6.004 2.219 6.004 5.418v.047c0 3.629-2.824 5.508-6.34 5.508h-2.621v4.703h-3.445Zm6.18 7.906c1.722 0 2.73-1.03 2.73-2.363v-.043c0-1.547-1.074-2.36-2.797-2.36h-2.664v4.766Zm15.831-4.23h3.54l-4.626 12.293c-.918 2.437-1.902 3.355-3.933 3.355a5.616 5.616 0 0 1-3.024-.828l1.141-2.46c.438.273.938.437 1.457.468c.582 0 .895-.18 1.188-.789l-4.696-12.039h3.606l2.73 8.172ZM53.258 58v-.047c0-4.457 3.36-8.105 8.176-8.105c2.953 0 4.718.988 6.18 2.418l-2.196 2.53c-1.207-1.097-2.441-1.769-4.008-1.769c-2.644 0-4.547 2.196-4.547 4.883v.043c0 2.692 1.86 4.93 4.547 4.93c1.793 0 2.887-.715 4.117-1.836l2.196 2.215c-1.61 1.722-3.407 2.8-6.426 2.8c-4.613 0-8.04-3.558-8.04-8.062Zm15.605-8.55h3.41v6.03c.786-1.007 1.79-1.925 3.516-1.925c2.574 0 4.074 1.703 4.074 4.46v7.778h-3.41v-6.695c0-1.614-.762-2.442-2.058-2.442c-1.297 0-2.13.828-2.13 2.442v6.695H68.86ZM81.29 62.343V62.3c0-2.625 1.992-3.828 4.836-3.828c1-.012 1.992.156 2.934.492v-.203c0-1.41-.875-2.196-2.579-2.196a8.753 8.753 0 0 0-3.312.653l-.852-2.602a10.63 10.63 0 0 1 4.657-.972c1.863 0 3.203.492 4.054 1.343c.899.895 1.313 2.219 1.313 3.828v6.977h-3.305v-1.309c-.828.918-1.972 1.524-3.625 1.524c-2.262.008-4.12-1.29-4.12-3.664Zm7.813-.785v-.606a5.263 5.263 0 0 0-2.172-.445c-1.457 0-2.36.582-2.36 1.656v.043c0 .918.758 1.457 1.856 1.457c1.601.004 2.676-.871 2.676-2.102Zm5.074-7.766h3.41v2.418c.695-1.66 1.816-2.734 3.832-2.645v3.563h-.172c-2.266 0-3.652 1.363-3.652 4.23v4.434h-3.41Zm8.781 0h3.41v1.687c.785-1.007 1.813-1.925 3.535-1.925c1.575 0 2.758.695 3.383 1.906c1.05-1.234 2.305-1.906 3.934-1.906c2.531 0 4.054 1.523 4.054 4.414v7.816h-3.41v-6.687c0-1.614-.718-2.442-1.996-2.442c-1.277 0-2.058.828-2.058 2.442v6.695h-3.383v-6.695c0-1.614-.715-2.442-1.992-2.442c-1.278 0-2.059.828-2.059 2.442v6.695h-3.41ZM5.902 50.105h15.739V65.84H5.902Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M7.863 62.867h5.903v.985H7.863Zm.004-10.797h2.414c1.406 0 2.258.836 2.258 2.04v.015c0 1.363-1.05 2.07-2.383 2.07H9.18v1.77H7.867Zm2.324 2.973c.649 0 1.032-.387 1.032-.89v-.016c0-.582-.407-.895-1.051-.895H9.18v1.801Zm3.051-.004v-.016a2.999 2.999 0 0 1 3.074-3.05a3.049 3.049 0 0 1 2.325.91l-.825.949a2.183 2.183 0 0 0-1.507-.664c-.997 0-1.711.824-1.711 1.84v.015c0 1.012.699 1.852 1.71 1.852c.672 0 1.087-.262 1.547-.688l.825.833a3.01 3.01 0 0 1-2.414 1.05a2.988 2.988 0 0 1-2.157-.875a2.994 2.994 0 0 1-.867-2.156m0 0\\\"/><path d=\\\"M28.207 76.918v.805h-.625v-5.934h.625v2.578c.336-.574.945-.93 1.61-.933c1.007 0 2.007.785 2.007 2.18v.015c0 1.375-.992 2.187-2.008 2.187a1.89 1.89 0 0 1-1.609-.898m2.977-1.285v-.016c0-.992-.684-1.625-1.48-1.625a1.574 1.574 0 0 0-1.524 1.617v.016c-.012.418.14.824.425 1.129c.286.305.68.484 1.098.496c.813 0 1.48-.598 1.48-1.617Zm4.632-2.113h.668l-1.765 4.343c-.36.867-.766 1.184-1.399 1.184a1.917 1.917 0 0 1-.894-.207l.21-.496c.204.105.43.16.66.152c.376 0 .61-.195.864-.785l-1.914-4.2h.691l1.528 3.509Zm3.653 3.277l.46-.399c.352.524.708.813 1.313.813c.64 0 1.11-.465 1.11-1.367V72.03h.652v3.805c.031.55-.156 1.09-.524 1.496c-.34.316-.789.488-1.253.473a1.944 1.944 0 0 1-1.02-.258a1.92 1.92 0 0 1-.738-.75Zm4.687-1.164v-.016c0-1.21.856-2.187 2.02-2.187c1.242 0 1.957.992 1.957 2.218c.004.067.004.137 0 .204h-3.34c.023.8.68 1.43 1.477 1.421a1.74 1.74 0 0 0 1.328-.59l.39.348a2.167 2.167 0 0 1-1.734.785a2.07 2.07 0 0 1-1.512-.644a2.088 2.088 0 0 1-.586-1.54Zm3.344-.242c-.066-.766-.504-1.434-1.34-1.434c-.734 0-1.285.61-1.367 1.434Zm1.797 1.218V74.07h-.586v-.55h.586v-1.27h.625v1.27h1.332v.55h-1.332v2.457a.62.62 0 0 0 .707.7c.215 0 .422-.051.61-.145v.535a1.583 1.583 0 0 1-.755.18c-.675 0-1.187-.332-1.187-1.188m2.988-4.578h2.422a2.09 2.09 0 0 1 1.488.504c.242.242.371.57.367.91v.016a1.381 1.381 0 0 1-.902 1.312c.672.2 1.219.594 1.219 1.375v.016c0 .973-.82 1.55-2.066 1.55h-2.528Zm3.625 1.504c0-.562-.445-.926-1.258-.926h-1.734v1.957h1.684c.773 0 1.312-.347 1.312-1.015Zm-1.195 1.602h-1.797v2.008h1.902c.86 0 1.399-.383 1.399-1.016v-.016c.008-.62-.512-.976-1.504-.976m3.351-1.617h.63v1.109a1.8 1.8 0 0 1 1.714-1.172v.672h-.05c-.919 0-1.665.66-1.665 1.93v1.675h-.629Zm2.844 2.984v-.016c0-.886.73-1.36 1.797-1.36c.438-.003.871.06 1.293.18v-.156c0-.754-.465-1.144-1.254-1.144c-.441.004-.879.11-1.273.308l-.192-.523c.477-.234 1-.356 1.532-.352a1.83 1.83 0 0 1 1.359.461c.305.336.457.778.43 1.23v2.571H64v-.637a1.84 1.84 0 0 1-1.52.727c-.785.02-1.57-.426-1.57-1.29ZM64 76.18v-.407a4.271 4.271 0 0 0-1.234-.18c-.79 0-1.23.34-1.23.868v.02c0 .523.487.835 1.046.835c.793 0 1.418-.472 1.418-1.136m1.863-4.274h.719v.696h-.719Zm.043 1.614h.625v4.195h-.625Zm1.977 0h.629v.73a1.59 1.59 0 0 1 1.441-.82c1.016 0 1.61.683 1.61 1.683v2.625h-.63v-2.457c0-.785-.421-1.27-1.16-1.27a1.226 1.226 0 0 0-.918.38c-.238.25-.363.586-.343.933v2.406h-.63Zm4.586 3.668l.316-.45c.414.328.926.512 1.453.528c.508 0 .871-.262.871-.668v-.016c0-.422-.496-.586-1.046-.738c-.66-.188-1.391-.414-1.391-1.188v-.015c0-.727.601-1.207 1.433-1.207a2.877 2.877 0 0 1 1.508.464l-.281.473c-.371-.25-.8-.39-1.246-.406c-.496 0-.813.262-.813.61v.015c0 .398.528.55 1.082.722c.653.196 1.352.45 1.352 1.204v.015c0 .79-.66 1.262-1.5 1.262a2.897 2.897 0 0 1-1.738-.606Zm0 0\\\"/>\"\n\t\t},\n\t\t\"pypi\": {\n\t\t\t\"body\": \"<path fill=\\\"#f7f7f4\\\" d=\\\"m55.03 29.47l-18.396 6.668l18.127 6.575l18.402-6.677zM36.818 44.295l-18.393 6.677l18.127 6.566l18.4-6.668z\\\"/><path fill=\\\"#efeeea\\\" d=\\\"m36.634 36.138l-.006 21.212l18.133 6.575V42.713zM18.425 50.972v21.212l18.127 6.577V57.538Z\\\"/><path fill=\\\"#f7f7f4\\\" d=\\\"m36.818 57.48l-18.393 6.674l18.127 6.575l18.4-6.673zm-18.21 14.841L.213 78.988l18.127 6.575l18.39-6.665Z\\\"/><path fill=\\\"#efeeea\\\" d=\\\"M18.425 64.154v21.218l18.127 6.575V70.729ZM.214 78.988l-.006 21.218l18.133 6.575V85.563Zm18.211 6.599v21.218l18.127 6.563V92.156Zm18.21 6.593l-.007 21.212l18.133 6.577V98.75Z\\\"/><path fill=\\\"#2f6491\\\" d=\\\"m91.45 8.031l-18.203 6.6l-.008-.001l-18.396 6.667l-.004 21.212l18.134 6.575V27.872l18.193-6.604l.016.006l18.401-6.668zm-36.42 34.61l-18.396 6.672l18.127 6.575l18.402-6.673Zm-18.396 6.678l-.006 21.218l18.133 6.575V55.894Zm0 21.428l-.006 21.223l18.133 6.565V77.324Z\\\"/><path fill=\\\"#ffc91d\\\" d=\\\"m91.26 29.539l18.132 6.575l18.4-6.672l-18.132-6.575zm0 0\\\"/><path fill=\\\"#ffd242\\\" d=\\\"m127.793 29.449l-18.402 6.665v21.218l18.402-6.671zm0 21.421l-18.402 6.662v.002l-18.025 6.53v-.008l-18.393 6.673v21.218l18.209-6.607v.014l18.21-6.597v.004l18.4-6.667zm-18.21 28.028l-18.217 6.599v-.006l-18.393 6.665v21.212l18.209-6.599v.012l18.401-6.671z\\\"/><path fill=\\\"#3775a9\\\" d=\\\"m109.583 14.612l-18.217 6.6v-.01l-18.393 6.67V49.09l18.209-6.604v.011l18.401-6.673zm0 21.424L91.366 42.64v-.012L72.973 49.29L54.76 55.894v21.218l18.212-6.599v.004l18.209-6.598v.006l18.401-6.667Zm-36.42 34.62L54.76 77.324v21.211l18.402-6.667z\\\"/><path fill=\\\"#fff\\\" d=\\\"M80.89 32.009a3.41 3.41 0 0 0-1.05.213c-1.95.71-3.534 2.958-3.534 5.026c0 2.069 1.583 3.17 3.534 2.464c1.951-.709 3.533-2.958 3.533-5.026c0-1.68-1.045-2.725-2.484-2.677zm46.903 40.289L109.39 78.97v21.218l18.402-6.672zm-24.03 15.763a3.41 3.41 0 0 0-1.05.213c-1.951.705-3.534 2.953-3.534 5.022c0 2.068 1.583 3.173 3.533 2.464c1.95-.705 3.534-2.957 3.534-5.026c0-1.677-1.046-2.721-2.484-2.673zm-30.6 4.023L54.76 98.75v21.218l18.402-6.673z\\\"/><path fill=\\\"#ccc\\\" d=\\\"M91.38 7.836L54.773 21.1a.208.208 0 0 0-.137.196l-.002 8.097l-18.07 6.548a.208.208 0 0 0-.137.196l-.002 8.079l-18.07 6.56a.208.208 0 0 0-.138.195V72.04L.141 78.794a.208.208 0 0 0-.135.194L0 100.206c0 .088.055.166.137.196l54.554 19.763a.208.208 0 0 0 .14 0l73.032-26.452a.208.208 0 0 0 .137-.196V29.443a.208.208 0 0 0-.137-.196l-17.998-6.528l-.074-8.107v-.006a.208.208 0 0 0-.137-.195L91.52 7.835a.208.208 0 0 0-.141 0zm.07.417l17.524 6.353l-17.59 6.374l-17.53-6.346zm17.924 6.655V35.68l-17.986 6.523V21.426Zm-36.327.014l17.512 6.346l-17.586 6.383l-17.518-6.354Zm17.927 6.636v20.94l.051.035l-17.845 6.461V28.019Zm-35.92.035l17.711 6.424V48.79l-17.718-6.426Zm54.555 1.477l17.576 6.373l-17.396 6.309c.122-4.369-.027-8.513-.18-12.682m17.976 6.675v20.77l-17.796 6.455V36.192Zm-72.949.09l-.004 12.61l-17.387-6.307zm54.548 6.565v20.783l-17.61 6.381V42.787Zm-72.342.033l17.346 6.293l-17.35 6.292l.002-4.648v-.006zm18.188 6.429l17.525 6.353l-17.794 6.452l-17.52-6.354zm35.944.129v20.783l-17.606 6.381V49.368Zm-54.55 1.67l-.003 12.608l-17.389-6.297zm36.34 4.926v20.785l-17.795 6.446V56.041Zm-35.922.028l17.712 6.424v20.78l-17.718-6.427Zm90.743 1.551V71.95l-17.796 6.45V57.61Zm-108.952.102l17.369 6.291l-17.37 6.299Zm90.55 6.56v20.784l-17.61 6.382V64.21zm-72.839.046v12.56l-17.31-6.28zm54.63 6.546v20.777l-17.796 6.454V70.876Zm-72.341.031l17.711 6.425V91.65l-17.711-6.424V72.184Zm54.13 6.36v21.136l.059.04l-17.853 6.47V77.324l-.037-.053zm-35.921.231l17.714 6.426v20.774l-17.72-6.415zm90.743 1.551v20.78l-17.796 6.445V79.05Zm-109.368.09V85.3L.823 78.99Zm90.967 6.58v20.77c-7.48 2.713-4.114 1.493.515-.183l-18.125 6.565V85.644ZM.42 79.286l17.712 6.424v20.77L.415 100.06Zm90.553 6.567v20.771l-17.606 6.382V92.235Zm-72.341.03l17.711 6.42v20.767l.492.179l.006-20.774l17.712 6.42v20.778l-35.92-13.013Zm0 20.777l17.711 6.414v-.004c22.528 8.173-8.968-3.247-17.711-6.41m54.13-14.21v20.771l-15.888 5.76l-1.906.692V98.898Z\\\"/>\"\n\t\t},\n\t\t\"pypi-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f7f7f4\\\" d=\\\"m28.687 69.503l-9.528 3.47l9.485 3.45l.158-.06l-.115-.04zm9.485 3.38v.074l.1-.036zM9.735 76.129L.108 79.634l9.485 3.454l3.21-1.17l6.318 2.298l.038-.015v-4.303l3.673-1.336l-3.573-1.301l-3.206 1.167z\\\"/><path fill=\\\"#efeeea\\\" d=\\\"M19.16 72.972v6.926l9.484-3.45v-.026z\\\"/><path fill=\\\"#f7f7f4\\\" d=\\\"m19.16 84.227l-9.524 3.465l9.485 3.454l.155-.056l-.117-.043zm9.484 3.377v.073l.1-.037zM9.636 92.022L.108 95.487l9.485 3.454l.157-.059l-.114-.04zm9.485 3.376v.073l.099-.036z\\\"/><path fill=\\\"#efeeea\\\" d=\\\"M.108 79.634v11.15l9.485 3.449V83.088Zm9.528 8.058v11.15l9.485 3.453V91.146ZM.108 95.487v11.149l9.485 3.45V98.94Zm9.528 3.462v11.15l9.485 3.453v-11.149Zm9.523 3.467v11.145l9.485 3.454v-11.149z\\\"/><path fill=\\\"#fff\\\" d=\\\"m19.22 79.582l-9.627 3.506l.043 4.604l9.523-3.465z\\\"/><path fill=\\\"#ffd242\\\" d=\\\"m66.85 69.453l-9.627 3.506v11.15l9.628-3.507zm0 11.262l-9.527 3.465v-.002l-9.524 3.464v-.002l-9.627 3.506v11.15l9.528-3.47v.002l9.523-3.465v.002l9.628-3.505zm-9.527 14.72l-9.524 3.469v-.002l-9.627 3.501v11.15l9.528-3.47v.002l9.623-3.502z\\\"/><path fill=\\\"#ffc91d\\\" d=\\\"m57.366 66.004l-.043.015v6.79l-.257.092l.157.058l9.628-3.506z\\\"/><path fill=\\\"#3775a9\\\" d=\\\"m57.323 61.66l-9.524 3.468v-.002l-9.627 3.502v11.149l9.528-3.47v.007l9.623-3.506zm0 11.26l-9.524 3.465v-.004l-9.528 3.467v-.002l-9.627 3.506V94.5l9.528-3.47v.003l9.528-3.465v.002l9.623-3.506zM38.27 91.108l-9.627 3.502v11.149l9.627-3.506z\\\"/><path fill=\\\"#2f6491\\\" d=\\\"m47.838 58.21l-9.521 3.464l-.007-.002l-9.623 3.506v11.145l9.485 3.454v-11.15l9.524-3.464l.004.002l9.623-3.506zM28.787 76.395l-9.628 3.502v11.149l9.485 3.454V83.35l9.627-3.505zM19.159 91.16v11.145l9.485 3.454v-11.15Z\\\"/><path fill=\\\"#fff\\\" d=\\\"M42.313 70.802a1.78 1.78 0 0 0-.549.113c-1.02.372-1.85 1.55-1.85 2.641c0 1.085.83 1.664 1.85 1.293c1.02-.373 1.85-1.553 1.85-2.642c0-.881-.548-1.43-1.3-1.405zm24.538 21.17l-9.628 3.502v11.149l9.628-3.502zm-12.572 8.278a1.786 1.786 0 0 0-.549.113c-1.02.373-1.85 1.557-1.85 2.641c0 1.086.83 1.665 1.85 1.293c1.02-.372 1.848-1.548 1.85-2.637v-.004c-.001-.883-.549-1.43-1.3-1.405zm-16.008 2.114l-9.627 3.502v11.149l9.627-3.502z\\\"/><path fill=\\\"#ccc\\\" d=\\\"m47.801 58.108l-19.15 6.968a.108.108 0 0 0-.072.102v4.25l-9.45 3.44l-.006.003l-.002.004a.108.108 0 0 0-.07.097v4.25l-3 1.091l-6.279-2.286a.11.11 0 0 0-.073 0L.07 79.533a.099.099 0 0 0-.006.01a.108.108 0 0 0-.065.091v11.15c0 .045.029.085.071.1l6.187 2.25l-6.187 2.25a.099.099 0 0 0-.006.012a.108.108 0 0 0-.065.09v11.15l.071.101l28.534 10.38c.024.009.05.009.074 0h.002l38.209-13.894l.07-.102V69.453l-.01-.015a.109.109 0 0 0-.063-.086l-.004-.002h-.002l-9.45-3.437v-4.254a.109.109 0 0 0-.041-.078a.106.106 0 0 0-.015-.013a.118.118 0 0 0-.015-.01l-9.485-3.45a.11.11 0 0 0-.074 0zm.037.218l9.17 3.333l-9.209 3.353l-9.167-3.338zm9.377 3.487v10.919l-.186.067l-.002.003l-9.12 3.322v-10.92l.398-.145zm-18.998.013l9.163 3.337l-9.208 3.35l-9.17-3.335zm9.375 3.49v10.916l-9.312 3.391v-10.92l.244-.088zm-18.797.016l9.269 3.371v10.92l-9.269-3.376v-6.772zm28.636.84l9.102 3.281l-9.102 3.316zm9.312 3.437v10.918l-9.312 3.391v-10.92Zm-38.164.048v6.627l-9.104-3.312Zm28.536 3.454v10.913l-9.208 3.355V76.46Zm-37.847.015l9.095 3.31l-9.095 3.308zm-9.533 3.117l6.282 2.287l2.887 1.052l-9.311 3.392l-9.17-3.34zm19.052.268l9.169 3.335l-9.312 3.39l-9.026-3.286l-.143-.052l9.206-3.348zm18.805.06v10.922l-9.213 3.35v-10.92Zm-28.54.88v1.956l-2.683-.979zm0 2.308v4.393L9.7 87.554v-4.39zm-18.836.029l9.269 3.376v10.915l-2.873-1.046H6.61L.216 90.707Zm37.848.248v10.92l-9.312 3.391v-10.92Zm-18.796.015l9.266 3.377v10.917l-9.221-3.357l-.045-.017v-6.744zm47.475.82v10.913l-9.312 3.391v-10.92Zm-9.628 3.497v10.92l-9.208 3.35v-10.92Zm-38.064.013v6.625l-9.1-3.314zm28.54 3.45v10.92l-9.212 3.354v-10.92Zm-37.847.015l8.873 3.231l.395.145v10.919l-9.225-3.36l-.043-.015v-6.744zm28.32 3.452v10.915l-9.312 3.39V94.684Zm-18.796.015l9.266 3.372v10.917l-9.266-3.374v-6.703a.108.108 0 0 0 0-.181zm47.475.815v10.917l-9.312 3.387v-10.92Zm-60.17 1.121h.002l2.953 1.075v4.478L.424 95.487Zm50.542 2.376v10.92l-9.208 3.35V98.979ZM.216 95.64l9.269 3.376v10.916L.216 106.56Zm47.376 3.454v10.913l-9.213 3.355v-10.92zm-37.848.009l9.268 3.376v10.92l-9.268-3.376zm28.32 3.452v10.92l-9.312 3.386v-10.92zm-18.796.015l9.266 3.372v10.917l-9.266-3.374z\\\" color=\\\"#000\\\"/><path fill=\\\"#646464\\\" d=\\\"m70.365 10.877l-3.596 1.137v33.192h3.596V28.565c2.477-1.744 4.54-2.614 6.19-2.614c1.353 0 2.408.576 3.17 1.727c.656 1.016.985 2.23.985 3.645v13.883h3.597V30.188c0-1.906-.588-3.502-1.773-4.781c-1.18-1.28-2.724-1.92-4.63-1.92c-2.727 0-5.24.839-7.539 2.512zm-11.884 5.469l-3.592 1.28v6.008h-2.466V25.9h2.466v14.17c0 1.712.566 3.055 1.695 4.03c1.132.97 2.719 1.456 4.755 1.456c.363 0 .756-.018 1.184-.052l-.002-1.874c-1.344-.065-2.334-.328-2.957-.791c-.721-.558-1.083-1.515-1.083-2.868V25.899h4.04v-2.265h-4.04zm-40.636 6.748c-3.06.03-5.662.674-7.803 1.92c-.925.527-1.682 1.15-2.274 1.875v28.316l1.66.592v1.777a1.304 1.304 0 0 0-.983 1.297l-.002 1.988a1.304 1.304 0 0 0 .985 1.22v2.33a1.304 1.304 0 0 0-.985 1.296v1.993a1.304 1.304 0 0 0 .985 1.22V70.2a1.696 1.696 0 0 0-1.379 1.665c0 .108.013.217.035.324L.921 80.96l4.664 5.711l-2.36-5.71l6.087-7.458c.142.039.29.06.436.06c.146 0 .294-.021.437-.06l3.238 3.969l3.277 1.193l-5.287-6.476a1.694 1.694 0 0 0-1.35-1.986v-1.287a1.304 1.304 0 0 0 .987-1.219v-1.993a1.304 1.304 0 0 0-.986-1.296v-2.33a1.304 1.304 0 0 0 .986-1.22V58.87a1.304 1.304 0 0 0-.986-1.297v-1.55l1.305.465V43.732c2.223 1.379 4.383 2.035 6.48 1.967c2.785-.061 4.963-1.21 6.533-3.446c1.41-1.972 2.11-4.448 2.11-7.435c0-3.351-.71-6.091-2.123-8.227c-1.514-2.334-3.67-3.484-6.472-3.445zm16.147 0l-3.597 1.232V39.3c0 1.867.756 3.411 2.27 4.63c1.343 1.115 2.91 1.673 4.677 1.673a18.587 18.587 0 0 0 7.738-1.673v.933c0 2.793-.259 4.677-.787 5.668c-.66 1.21-1.854 2.113-3.6 2.706c-.888.293-2.412.592-4.583.886l.596 2.265c2.132-.065 4.12-.458 5.958-1.184c2.27-.916 3.804-2.15 4.612-3.692c.804-1.543 1.202-4.319 1.202-8.326V23.634h-3.597V41.22c-1.876 1.25-3.644 1.886-5.295 1.92c-1.648.035-2.992-.385-4.034-1.254c-1.037-.87-1.56-2.11-1.56-3.722zm86.667 0c-1.25 0-2.697.211-4.34.64c-1.738.462-3.646 1.444-5.715 2.952v18.52h3.596V27.13c1.543-1.08 3.169-1.643 4.881-1.673c1.608-.034 2.9.402 3.87 1.302c.967.907 1.452 2.161 1.452 3.774v14.672h3.596V28.709c0-1.379-.493-2.563-1.478-3.545c-.887-.89-2.037-1.495-3.45-1.824a11.308 11.308 0 0 0-2.412-.246m-23.19.002c-2.992 0-5.407 1.102-7.244 3.298c-1.739 2.071-2.611 4.614-2.611 7.635c0 3.216.804 5.896 2.417 8.032c1.771 2.395 4.23 3.592 7.385 3.592c3.188 0 5.687-1.197 7.494-3.592c1.638-2.136 2.462-4.816 2.462-8.032h.002c0-3.021-.876-5.565-2.613-7.635c-1.876-2.196-4.305-3.298-7.293-3.298zm-80.147 2.41c3.356.164 5.032 3.187 5.032 9.065c0 5.486-1.76 8.34-5.274 8.568c-1.66.1-3.566-.527-5.71-1.871V27.23c.355-.363 1.037-.722 2.049-1.085a9.478 9.478 0 0 1 3.903-.64zm80.099.054c2.131.1 3.71 1.046 4.727 2.845c.855 1.478 1.284 3.341 1.284 5.602c0 6.224-1.98 9.351-5.94 9.381c-2.11.034-3.692-1.012-4.747-3.134c-.825-1.665-1.238-3.74-1.238-6.225c0-5.413 1.967-8.24 5.914-8.469m.166 24.673v11.089h1.777v-1.963l1.21-1.383l1.976 3.346h1.967l-2.91-4.57l2.642-3.142h-1.98l-2.858 3.549h-.047v-6.926Zm-24.049.818v10.27h1.825v-3.769h1.634c2.213 0 3.908-1.05 3.908-3.328c0-2.386-1.665-3.173-3.908-3.173zm1.825 1.46h1.491c1.492 0 2.261.424 2.261 1.713c0 1.258-.74 1.867-2.26 1.867h-1.492zm18.316.909c-2.057 0-3.865 1.478-3.865 4.054c0 2.56 1.616 4.038 3.722 4.038c.881 0 1.807-.346 2.53-.99l-.753-1.145c-.424.346-.959.657-1.586.657c-1.21 0-2.058-1.02-2.058-2.56c0-1.556.865-2.576 2.105-2.576c.485 0 .895.203 1.301.566l.865-1.145a3.167 3.167 0 0 0-2.26-.9zm22.95 0c-1.62 0-3.047.994-3.047 2.766c0 .913.484 1.652 1.003 2.04v.066c-.436.315-.847.834-.847 1.43c0 .627.299 1.033.691 1.289v.06c-.708.442-1.098 1.006-1.098 1.652c0 1.348 1.367 2.01 3.204 2.01c2.512 0 4.115-1.193 4.115-2.72c0-1.335-.973-1.902-2.827-1.902h-1.366c-.942 0-1.258-.264-1.258-.704c0-.347.143-.537.376-.74c.336.133.692.204 1.055.204c1.633 0 2.918-.908 2.918-2.62c0-.536-.187-1.007-.437-1.305h1.414V53.61h-2.767a3.454 3.454 0 0 0-1.128-.19zm-31.393.004c-1.224 0-2.308.47-3.155 1.003l.657 1.21c.678-.41 1.4-.752 2.17-.752c1.038 0 1.383.688 1.396 1.504c-3.155.347-4.539 1.211-4.539 2.862c0 1.35.942 2.261 2.295 2.261c.908 0 1.695-.453 2.387-1.037h.047l.139.847h1.478v-4.57c0-2.152-.942-3.328-2.875-3.328m23.53 0c-1.223 0-2.309.47-3.155 1.003l.657 1.21c.68-.41 1.4-.752 2.17-.752c1.038 0 1.383.688 1.396 1.504c-3.155.347-4.539 1.211-4.539 2.862c0 1.35.942 2.261 2.296 2.261c.911 0 1.694-.453 2.386-1.037h.047l.143.847h1.474v-4.57c0-2.152-.942-3.328-2.875-3.328m16.043 0c-1.803 0-3.55 1.538-3.55 4.05c0 2.547 1.665 4.038 3.805 4.038c.973 0 1.898-.346 2.637-.834l-.614-1.129c-.566.36-1.129.562-1.79.562c-1.24 0-2.122-.783-2.278-2.178h4.903a3.907 3.907 0 0 0 .077-.852c0-2.152-1.097-3.657-3.19-3.657m-8.18 1.24c.753 0 1.332.563 1.332 1.522c0 .99-.597 1.556-1.331 1.556c-.756 0-1.353-.565-1.353-1.556c0-.973.597-1.521 1.353-1.521zm8.228.156c1.054 0 1.573.74 1.573 1.963h-3.424c.156-1.288.943-1.963 1.85-1.963zm-38.553 2.702v1.73c-.565.53-1.05.847-1.682.847c-.643 0-1.098-.299-1.098-.99c0-.77.693-1.318 2.78-1.587m23.53 0v1.73c-.562.53-1.05.847-1.677.847c-.644 0-1.103-.299-1.103-.99c0-.77.692-1.318 2.78-1.587m-99.77.72c.23.115.389.35.389.624v1.993a.705.705 0 0 1-.39.571v-.125a.319.319 0 1 0-.635 0v.123a.705.705 0 0 1-.384-.569v-1.993c0-.273.157-.506.384-.622v.16a.319.319 0 1 0 .636 0zm105.373 3.192c.299.078.626.108 1.05.108h1.05c.883 0 1.371.173 1.371.77c0 .66-.853 1.24-2.092 1.24c-1.224 0-1.98-.406-1.98-1.097c0-.363.189-.71.6-1.02zm-105.373 3.7a.705.705 0 0 1 .389.571v1.993a.704.704 0 0 1-.39.62v-.179a.319.319 0 0 0-.635 0v.178a.704.704 0 0 1-.384-.619v-1.993a.705.705 0 0 1 .384-.568v.128a.315.315 0 0 0 .32.315a.316.316 0 0 0 .316-.315zm81.304 1.12v2.797l.059 1.241c-.597-.518-1.146-.845-2.028-.845c-1.676 0-3.263 1.536-3.263 4.048c0 2.546 1.24 4.038 3.173 4.038c.83 0 1.618-.452 2.185-1.018h.06l.126.83h1.489v-11.09Zm-17.83.818v10.273h1.827V67.072Zm8.476 2.373c-1.056 0-1.839.547-2.532 1.221h-.062l-.128-1.035h-1.489v7.714h1.807v-5.39c.644-.627 1.08-.96 1.76-.96c.846 0 1.206.471 1.206 1.746v4.602h1.804v-4.837c0-1.946-.72-3.061-2.366-3.061m16.507.002c-1.806 0-3.551 1.536-3.551 4.049c0 2.545 1.663 4.037 3.804 4.037c.973 0 1.898-.344 2.637-.832l-.616-1.13c-.562.358-1.127.568-1.788.568c-1.24 0-2.12-.789-2.28-2.185h4.902a3.9 3.9 0 0 0 .078-.852c0-2.152-1.098-3.655-3.186-3.655m8.89.184l-.735 1.46c-.19.425-.41.885-.6 1.309h-.061a42.42 42.42 0 0 1-.71-1.308l-.86-1.46h-1.951l2.29 3.693l-2.444 4.02h1.885l.815-1.522c.216-.471.455-.93.677-1.368h.062c.264.437.531.914.783 1.368l.944 1.522h1.948l-2.451-3.82l2.28-3.894zm-8.847 1.212c1.056 0 1.574.738 1.574 1.96h-3.422c.155-1.287.94-1.96 1.848-1.96m-8.77.095c.519 0 1.038.173 1.574.645v3.596c-.52.597-1.024.863-1.62.863c-1.116 0-1.743-.895-1.743-2.564c0-1.616.8-2.54 1.79-2.54z\\\"/>\"\n\t\t},\n\t\t\"pyscript-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#2c2e34\\\" d=\\\"M0 0v128h128V0z\\\"/><path fill=\\\"#fda703\\\" d=\\\"M52.146 48.63c-5.137.299-8.478 3.168-10.952 7.094v-6.285h-4.73v39.327h4.73V77.752l3.236.311c5.176.573 8.37-1.185 10.08-2.302c1.71-1.118 5.134-4.67 6.224-10.58c2.086-13.14-4.906-16.385-8.588-16.551m37.336.871l-8.639 21.057l-10.38-21.055h-5.14L78.376 76.65c-3.95 9.63-8.006 9.515-13.535 8.322v4.17c10.126 1.64 13.234-2.9 15.681-7.406a49.886 49.886 0 0 0 2.552-5.165l11.3-27.069zm-58.369.747L3.609 63.938L31.113 77.69v-4.234L12.32 63.938l18.792-9.41zm65.773.062v4.281L115.678 64l-18.792 9.518v4.234L124.39 64zm-46.359 2.925c4.531 0 5.82 5.165 5.414 10.33c-1.128 8.857-6.797 12.07-14.748 9.956V61.387c2.237-4.217 6.483-8.152 9.334-8.152\\\"/>\"\n\t\t},\n\t\t\"pytest\": {\n\t\t\t\"body\": \"<path fill=\\\"#696969\\\" d=\\\"M31.512 30.398h61.304a3.006 3.006 0 0 1 0 6.012H31.512a3.007 3.007 0 0 1-3.004-3.004a3.008 3.008 0 0 1 3.004-3.008m0 0\\\"/><path fill=\\\"#009fe3\\\" d=\\\"M32.047 24.32H44.37v2.844H32.047zm0 0\\\"/><path fill=\\\"#c7d302\\\" d=\\\"M48.168 24.32h12.324v2.844H48.168zm0 0\\\"/><path fill=\\\"#f07e16\\\" d=\\\"M64.07 24.32h12.328v2.844H64.07zm0 0\\\"/><path fill=\\\"#df2815\\\" d=\\\"M79.91 24.32h12.324v2.844H79.91zm0 15.22h12.324v20.835H79.91zm0 0\\\"/><path fill=\\\"#f07e16\\\" d=\\\"M64.07 39.54h12.352v33.847H64.07zm0 0\\\"/><path fill=\\\"#c7d302\\\" d=\\\"M48.168 39.54h12.324v50.698H48.168zm0 0\\\"/><path fill=\\\"#009fe3\\\" d=\\\"M32.047 39.54H44.37v61.792H32.047zm0 0\\\"/>\"\n\t\t},\n\t\t\"pytest-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#696969\\\" d=\\\"M44.508 18.238h36.781a1.802 1.802 0 1 1 0 3.605H44.508a1.802 1.802 0 0 1 0-3.605m0 0\\\"/><path fill=\\\"#009fe3\\\" d=\\\"M44.828 14.594h7.395v1.703h-7.395zm0 0\\\"/><path fill=\\\"#c7d302\\\" d=\\\"M54.5 14.594h7.395v1.703H54.5zm0 0\\\"/><path fill=\\\"#f07e16\\\" d=\\\"M64.043 14.594h7.394v1.703h-7.394zm0 0\\\"/><path fill=\\\"#df2815\\\" d=\\\"M73.547 14.594h7.394v1.703h-7.394zm0 9.129h7.394v12.5h-7.394zm0 0\\\"/><path fill=\\\"#f07e16\\\" d=\\\"M64.043 23.723h7.41V44.03h-7.41zm0 0\\\"/><path fill=\\\"#c7d302\\\" d=\\\"M54.5 23.723h7.395v30.422H54.5zm0 0\\\"/><path fill=\\\"#009fe3\\\" d=\\\"M44.828 23.723h7.395V60.8h-7.395zm0 0\\\"/><path fill=\\\"#696969\\\" d=\\\"M21.586 100.164c-.73 0-1.39-.082-1.984-.242A6.956 6.956 0 0 1 18 99.285a5.792 5.792 0 0 1-1.262-.937a8.213 8.213 0 0 1-.972-1.133h-.223c.035.422.074.824.11 1.207c.023.32.05.652.074.992c.023.34.039.61.039.805v8.699H12.39V79.434h2.742l.484 2.746h.149c.28-.434.605-.836.96-1.215a5.88 5.88 0 0 1 1.254-.985a6.724 6.724 0 0 1 1.602-.664a7.359 7.359 0 0 1 2.004-.254c1.16 0 2.219.223 3.172.668c.949.446 1.762 1.11 2.437 1.997c.672.882 1.196 1.98 1.567 3.289c.37 1.312.554 2.832.554 4.562c0 1.742-.183 3.274-.554 4.59c-.371 1.316-.895 2.418-1.567 3.309a6.6 6.6 0 0 1-2.437 2.011c-.953.45-2.012.676-3.172.676zm-.648-18.3c-.942 0-1.735.14-2.383.425a3.688 3.688 0 0 0-1.578 1.3c-.399.579-.696 1.302-.887 2.169c-.192.863-.3 1.883-.324 3.058v.762c0 1.246.082 2.356.25 3.328c.164.969.449 1.785.851 2.446a3.935 3.935 0 0 0 1.606 1.503c.664.34 1.5.508 2.5.508c1.672 0 2.898-.672 3.683-2.02c.785-1.347 1.176-3.28 1.176-5.804c0-2.57-.39-4.492-1.176-5.766c-.785-1.273-2.027-1.91-3.718-1.91zm10.66-2.427h3.504l3.988 11.368c.172.496.347 1.015.527 1.558c.18.543.348 1.086.5 1.63c.156.546.29 1.07.399 1.577c.113.508.191.977.242 1.41h.11c.062-.308.163-.73.296-1.261c.137-.531.29-1.098.457-1.696c.164-.601.34-1.191.52-1.773c.175-.578.336-1.074.472-1.48l3.688-11.332h3.488l-8.047 23.011c-.347 1-.722 1.899-1.125 2.7a8.226 8.226 0 0 1-1.398 2.027a5.497 5.497 0 0 1-1.871 1.289c-.72.305-1.57.457-2.559.457a11.5 11.5 0 0 1-1.672-.106a15.786 15.786 0 0 1-1.203-.21v-2.688c.258.059.586.113.98.156c.399.043.813.067 1.243.067c.593 0 1.11-.075 1.539-.215c.433-.14.812-.348 1.133-.621c.32-.274.597-.606.824-1c.23-.399.437-.848.62-1.356l1.06-2.965zm0 0\\\"/><path fill=\\\"#009fe3\\\" d=\\\"M59.355 97.406c.223 0 .473-.011.75-.035a12.579 12.579 0 0 0 1.52-.223c.219-.05.383-.093.492-.128v2.558c-.16.074-.363.149-.61.223a8.99 8.99 0 0 1-1.745.324c-.32.031-.637.047-.946.047a7.446 7.446 0 0 1-2.132-.297a3.996 3.996 0 0 1-1.696-1.02c-.476-.484-.847-1.136-1.12-1.957c-.274-.824-.407-1.859-.407-3.105V81.98h-2.875v-1.5l2.875-1.445l1.445-4.265h1.946v4.671h5.117v2.54h-5.117v11.812c0 1.2.195 2.102.586 2.707c.386.605 1.027.906 1.917.906m14.758 2.758c-1.36 0-2.601-.227-3.726-.687a8.039 8.039 0 0 1-2.903-2c-.808-.88-1.433-1.965-1.879-3.266c-.445-1.297-.668-2.781-.668-4.45c0-1.679.204-3.183.61-4.503c.41-1.324.984-2.445 1.726-3.367a7.44 7.44 0 0 1 2.66-2.106c1.032-.48 2.172-.722 3.422-.722c1.223 0 2.325.222 3.301.66a6.926 6.926 0 0 1 2.485 1.855c.68.797 1.199 1.754 1.566 2.871c.363 1.121.547 2.36.547 3.719v2.094H68.422c.062 2.386.566 4.14 1.512 5.265c.945 1.125 2.351 1.688 4.218 1.688c.63 0 1.215-.031 1.75-.09c.54-.063 1.059-.152 1.559-.27c.5-.117.984-.265 1.457-.445c.469-.18.945-.379 1.426-.601v3.004c-.492.234-.98.437-1.453.609c-.477.172-.965.316-1.465.426a12.36 12.36 0 0 1-1.559.242c-.539.05-1.12.074-1.754.074m-.832-18.3c-1.41 0-2.527.484-3.347 1.445c-.82.964-1.301 2.367-1.438 4.21h9.121c0-.84-.082-1.609-.25-2.308c-.164-.7-.426-1.297-.777-1.79a3.567 3.567 0 0 0-1.344-1.148c-.543-.273-1.2-.41-1.965-.41zm25.29 12.35c0 .993-.18 1.856-.54 2.599a5.021 5.021 0 0 1-1.547 1.863c-.675.5-1.488.875-2.441 1.12c-.95.247-2.02.372-3.207.372c-1.348 0-2.504-.11-3.465-.324c-.965-.215-1.812-.535-2.543-.953v-3.079c.383.196.813.391 1.281.583a14.38 14.38 0 0 0 3.086.87a9.74 9.74 0 0 0 1.64.141c.806 0 1.49-.07 2.052-.203c.562-.137 1.02-.332 1.37-.586c.352-.254.61-.562.77-.926a3 3 0 0 0 .243-1.214c0-.383-.063-.73-.188-1.04c-.121-.308-.348-.613-.676-.917c-.328-.301-.777-.61-1.344-.918a27.51 27.51 0 0 0-2.187-1.04a35.616 35.616 0 0 1-2.402-1.128a8.357 8.357 0 0 1-1.809-1.243a4.831 4.831 0 0 1-1.14-1.586c-.266-.601-.399-1.312-.399-2.14c0-.867.172-1.637.512-2.309a4.705 4.705 0 0 1 1.437-1.699c.617-.457 1.36-.8 2.223-1.035c.867-.238 1.832-.356 2.894-.356c1.2 0 2.293.133 3.29.391c.996.262 1.937.602 2.828 1.02l-1.168 2.726a22.737 22.737 0 0 0-2.477-.937a8.569 8.569 0 0 0-2.586-.399c-1.262 0-2.191.207-2.8.621c-.606.414-.907 1.004-.907 1.77c0 .433.07.812.211 1.133c.145.32.387.625.734.91c.348.281.809.57 1.391.86c.582.292 1.305.616 2.168.976c.89.367 1.684.738 2.383 1.11c.699.37 1.297.788 1.789 1.253c.496.46.871.992 1.133 1.586c.257.59.39 1.3.39 2.129zm11.109 3.192c.222 0 .472-.011.75-.035c.277-.023.547-.055.808-.094c.258-.035.496-.078.711-.129c.219-.05.383-.093.492-.128v2.558a4.59 4.59 0 0 1-.613.223a8.592 8.592 0 0 1-.812.195a10.889 10.889 0 0 1-1.875.176a7.446 7.446 0 0 1-2.133-.297a3.996 3.996 0 0 1-1.695-1.02c-.477-.484-.852-1.136-1.122-1.957c-.273-.824-.41-1.859-.41-3.105V81.98h-2.87v-1.5l2.87-1.445l1.45-4.265h1.945v4.671h5.117v2.54h-5.117v11.812c0 1.2.195 2.102.586 2.707c.386.605 1.027.906 1.918.906m0 0\\\"/>\"\n\t\t},\n\t\t\"python\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconPython0\\\" x1=\\\"70.252\\\" x2=\\\"170.659\\\" y1=\\\"1237.476\\\" y2=\\\"1151.089\\\" gradientTransform=\\\"matrix(.563 0 0 -.568 -29.215 707.817)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#5A9FD4\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#306998\\\"/></linearGradient><linearGradient id=\\\"deviconPython1\\\" x1=\\\"209.474\\\" x2=\\\"173.62\\\" y1=\\\"1098.811\\\" y2=\\\"1149.537\\\" gradientTransform=\\\"matrix(.563 0 0 -.568 -29.215 707.817)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FFD43B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#FFE873\\\"/></linearGradient><path fill=\\\"url(#deviconPython0)\\\" d=\\\"M63.391 1.988c-4.222.02-8.252.379-11.8 1.007c-10.45 1.846-12.346 5.71-12.346 12.837v9.411h24.693v3.137H29.977c-7.176 0-13.46 4.313-15.426 12.521c-2.268 9.405-2.368 15.275 0 25.096c1.755 7.311 5.947 12.519 13.124 12.519h8.491V67.234c0-8.151 7.051-15.34 15.426-15.34h24.665c6.866 0 12.346-5.654 12.346-12.548V15.833c0-6.693-5.646-11.72-12.346-12.837c-4.244-.706-8.645-1.027-12.866-1.008M50.037 9.557c2.55 0 4.634 2.117 4.634 4.721c0 2.593-2.083 4.69-4.634 4.69c-2.56 0-4.633-2.097-4.633-4.69c-.001-2.604 2.073-4.721 4.633-4.721\\\" transform=\\\"translate(0 10.26)\\\"/><path fill=\\\"url(#deviconPython1)\\\" d=\\\"M91.682 28.38v10.966c0 8.5-7.208 15.655-15.426 15.655H51.591c-6.756 0-12.346 5.783-12.346 12.549v23.515c0 6.691 5.818 10.628 12.346 12.547c7.816 2.297 15.312 2.713 24.665 0c6.216-1.801 12.346-5.423 12.346-12.547v-9.412H63.938v-3.138h37.012c7.176 0 9.852-5.005 12.348-12.519c2.578-7.735 2.467-15.174 0-25.096c-1.774-7.145-5.161-12.521-12.348-12.521h-9.268zM77.809 87.927c2.561 0 4.634 2.097 4.634 4.692c0 2.602-2.074 4.719-4.634 4.719c-2.55 0-4.633-2.117-4.633-4.719c0-2.595 2.083-4.692 4.633-4.692\\\" transform=\\\"translate(0 10.26)\\\"/><radialGradient id=\\\"deviconPython2\\\" cx=\\\"1825.678\\\" cy=\\\"444.45\\\" r=\\\"26.743\\\" gradientTransform=\\\"matrix(0 -.24 -1.055 0 532.979 557.576)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B8B8B8\\\" stop-opacity=\\\".498\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7F7F7F\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconPython2)\\\" d=\\\"M97.309 119.597c0 3.543-14.816 6.416-33.091 6.416c-18.276 0-33.092-2.873-33.092-6.416c0-3.544 14.815-6.417 33.092-6.417c18.275 0 33.091 2.872 33.091 6.417\\\" opacity=\\\".444\\\"/>\"\n\t\t},\n\t\t\"python-wordmark\": {\n\t\t\t\"body\": \"<g fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path fill=\\\"#386f9f\\\" d=\\\"M51.834 23.017c3.756 0 7.512.058 11.263-.04c.995-.026 2.78.797 2.7-1.271c-.061-1.683-1.622-1.074-2.568-1.089c-4.237-.067-8.488-.228-12.708.037c-3.003.187-3.888-.953-3.511-3.707c.13-.95.005-1.934.025-2.902c.132-6.446 1.69-8.64 7.942-10.23c6.888-1.75 13.937-1.692 20.806-.184c6.175 1.356 8.74 6.16 8.428 10.604c-.38 5.423-.086 10.893-.091 16.343c-.009 6.853-3.55 10.49-10.459 10.585c-5.69.078-11.387.14-17.074-.018c-6.778-.19-11.75 5.44-11.784 11.82c0 .484.083.984-.013 1.451c-.488 2.343 1.462 6.13-1.022 6.826c-3.78 1.062-8.206 1.062-11.54-2.311c-1.13-1.14-2.082-2.417-2.584-3.893c-2.679-7.865-3.102-15.83-.58-23.818c1.572-4.986 5.848-8.087 11.145-8.176c3.874-.065 7.749-.013 11.623-.013zm6.902-11.12c-.162-1.903-1.185-3.292-3.296-3.35c-2.309-.06-3.502 1.336-3.505 3.608c-.002 2.106 1.145 3.455 3.241 3.516c2.303.067 3.418-1.36 3.56-3.774\\\"/><path fill=\\\"#ffcf46\\\" d=\\\"M80.824 61.572c-4.24 0-8.482-.037-12.722.03c-.955.012-2.557-.592-2.607 1.041c-.056 1.852 1.663 1.37 2.755 1.381c4.24.053 8.484.098 12.723-.02c2.178-.06 3.067.357 3.23 2.925c.737 11.625-4.308 12.63-13.613 14.745c-5.338 1.213-11.061.57-16.325-1.788c-4.353-1.947-7.024-4.753-6.687-10.007c.334-5.186.39-10.439-.009-15.62c-.48-6.253 3.41-10.852 10.975-10.854c5.09-.001 10.214-.389 15.26.075c7.215.662 12.872-5.592 13.12-12.864c.01-.241-.052-.5.01-.724c.636-2.235-1.626-5.557 1.4-6.686c4.573-1.705 9.73.087 12.066 3.557c2.945 4.369 3.343 9.51 3.819 14.53c.515 5.411-1.003 10.505-3.276 15.386c-1.544 3.31-4.14 4.91-7.757 4.915c-4.12.003-8.239 0-12.36 0c-.002-.008-.002-.015-.002-.022m-1.104 10.8c-.453-2.066-1.385-3.476-3.785-3.535c-2.496-.06-3.14 1.807-3.127 3.474c.014 1.772.508 3.952 3.21 3.748c2.246-.172 3.341-1.563 3.702-3.687\\\"/><path fill=\\\"#386f9f\\\" d=\\\"M14.129 114.849c0 2.582.117 5-.055 7.397c-.074 1.034 1.066 2.98-1.103 2.978c-1.912 0-2.403-1.522-2.342-3.361c.117-3.51.034-7.027.034-10.54v-7.998c0-4.82 1.293-6.452 5.903-7.45c4.286-.932 7.654.511 9.386 4.263c1.732 3.753 1.866 7.62.133 11.438c-1.708 3.762-4.854 5.166-8.884 4.051c-.918-.25-1.845-.467-3.072-.778m0-9.448c0 1.33.18 2.686-.037 3.98c-.502 2.991 1.408 3.728 3.66 4.26c2.227.526 3.754-.421 4.647-2.383c1.501-3.29 1.753-6.683.613-10.162c-1.012-3.092-3.349-3.454-6.077-3.07c-2.694.383-3.059 2.215-2.824 4.48c.1.955.018 1.93.018 2.895m28.987 9.288c-1.845.48-3.447.992-5.087 1.3c-3.59.671-6.248-1.3-7.183-4.894c-1.16-4.448-.178-8.879-.148-13.317c.013-2.023 1.885-1.234 3.18-2.318c0 4.75.018 8.85-.006 12.947c-.013 2.058.519 3.75 2.465 4.835c2.148 1.198 3.91.057 5.78-.712c1.34-.551 1.173-1.676 1.175-2.746c.01-3.872-.001-7.74.012-11.612c.002-.955-.097-2.122 1.313-2.075c1.257.041 1.804.788 1.783 2.158c-.091 6.407.09 12.823-.17 19.221c-.197 4.838-3.61 7.793-8.52 8.01c-.735.031-1.505.099-1.78-.813c-.419-1.404.718-1.139 1.465-1.378c5.401-1.718 6.107-2.744 5.721-8.606M65.94 98.064c1.429-.675 2.25-1.293 3.153-1.46c5.067-.937 8.95-.58 8.94 6.245c-.007 3.515.002 7.031-.007 10.545c-.002.984.061 1.942-1.406 2.027c-1.547.092-1.887-.793-1.88-2.006c.018-3.387.11-6.774.107-10.16c-.002-2.63-.539-4.958-3.884-4.95c-2.934.005-5.012 2.195-5.027 5.217a899.58 899.58 0 0 0 .003 9.814c.003 1.162.028 2.181-1.652 2.085c-1.513-.09-1.327-1.11-1.327-2.049c-.01-8.6.032-17.209-.041-25.815c-.013-1.508.582-2.444 1.92-2.508c1.888-.087 1.023 1.564 1.051 2.392c.123 3.371.05 6.75.05 10.623m15.99 7.711c-.191-6.715 2.994-10.3 8.76-10.092c2.894.106 5.065 1.39 6.466 3.89c2.475 4.422 2.14 8.846-.538 12.987c-1.84 2.844-4.67 4.185-8.12 3.453c-3.402-.72-6.066-3.783-6.548-7.353c-.128-.945-.02-1.924-.02-2.885m13.32.157c-.152-1.172-.125-2.806-.613-4.264c-.667-2-1.883-3.61-4.364-3.72c-2.503-.108-3.752 1.355-4.587 3.38c-1.311 3.179-1.226 6.371.194 9.493c.912 2.011 2.32 3.483 4.76 3.075c2.403-.401 3.821-1.976 4.312-4.313c.223-1.059.187-2.168.298-3.65zm7.007.895c0-1.212-.023-2.422.004-3.628c.056-2.325-.685-4.901 2.45-6.089c3.59-1.356 7.148-2.372 10.762-.273c1.352.786 1.85 2.214 1.864 3.73c.037 4.231-.019 8.464.038 12.695c.02 1.476-.368 2.214-2.027 2.174c-1.818-.043-1.435-1.283-1.423-2.273c.043-3.38.278-6.757.214-10.132c-.084-4.25-2.416-5.983-6.389-4.94c-1.648.434-2.678 1.234-2.597 3.274c.161 3.982.037 7.978.052 11.967c.004 1.156.021 2.18-1.647 2.083c-1.528-.088-1.278-1.145-1.29-2.062c-.028-2.176-.008-4.353-.011-6.526m-43.568-9.424c-.25.296-.46.76-.68.764c-3.964.055-2.864 3.014-2.966 5.209c-.097 2.045 0 4.1-.029 6.151c-.03 2.038.147 3.932 2.627 4.473c.711.154 1.035.564.887 1.274c-.163.784-.788.753-1.407.745c-2.85-.05-4.963-2.065-5.047-5.015c-.086-3.014.031-6.035-.04-9.046c-.037-1.43.706-3.255-1.6-3.822c-.253-.061-.343-.778-.508-1.187c3.076-.965 1.8-3.618 2.222-5.631c.2-.953 1.105-1.214 1.96-1.295c.865-.082.872.618.9 1.203c.114 2.32-1.087 5.425 3.184 5.256c.143-.005.31.562.497.92z\\\"/></g>\"\n\t\t},\n\t\t\"pytorch\": {\n\t\t\t\"body\": \"<path fill=\\\"#EE4C2C\\\" d=\\\"m100.1 38.3l-9.2 9.2c15.1 15.1 15.1 39.4 0 54.3c-15.1 15.1-39.4 15.1-54.3 0c-15.1-15.1-15.1-39.4 0-54.3l24-24l3.4-3.4V2L27.8 38.2C7.7 58.3 7.7 90.8 27.8 111s52.6 20.1 72.4 0c20.1-20.2 20.1-52.5-.1-72.7\\\"/><circle cx=\\\"82.1\\\" cy=\\\"29.4\\\" r=\\\"6.7\\\" fill=\\\"#EE4C2C\\\" transform=\\\"rotate(-88.939 82.069 29.398)scale(.99997)\\\"/>\"\n\t\t},\n\t\t\"pytorch-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#EE4C2C\\\" d=\\\"m17.9 55.7l-1.7 1.7c2.7 2.7 2.7 7.2 0 9.9S9 70 6.4 67.2c-2.7-2.7-2.7-7.2 0-9.9l4.4-4.4l.6-.6V49l-6.6 6.6c-3.7 3.7-3.7 9.6 0 13.2s9.6 3.7 13.2 0c3.6-3.6 3.6-9.4-.1-13.1\\\"/><circle cx=\\\"14.6\\\" cy=\\\"54.1\\\" r=\\\"1.2\\\" fill=\\\"#EE4C2C\\\"/><path d=\\\"M34.9 64.1h-2.8v7.3H30V50.7h5.2c5.4 0 8 2.7 8 6.4c0 4.6-3.2 7-8.3 7m.2-11.3h-3v9.5l2.9-.1c3.9-.1 6-1.6 6-4.8c.1-3-2.1-4.6-5.9-4.6m17.6 18.5l-1.2 3.3c-1.4 3.7-2.8 4.7-4.9 4.7c-1.1 0-2-.3-2.9-.7l.6-1.9c.7.4 1.5.7 2.3.7c1.1 0 2-.6 3.1-3.5l1-2.7l-5.9-14.9H47l4.7 12.5l4.7-12.5h2.1z\\\"/><path d=\\\"M65.5 52.8v18.7h-2.1V52.8h-7.3v-2h16.6v2zm13.3 19c-4.2 0-7.3-3.1-7.3-7.9s3.2-8 7.5-8s7.3 3.1 7.3 7.9c-.1 4.8-3.3 8-7.5 8m0-14c-3.2 0-5.3 2.5-5.3 6.1c0 3.7 2.1 6.2 5.3 6.2s5.3-2.5 5.3-6.1c.1-3.8-2-6.2-5.3-6.2m12.6 13.6h-2.1V56.3l2.1-.5V59c1-1.9 2.4-3.2 4.4-3.2c1 0 1.9.3 2.7.7l-.5 1.9c-.7-.4-1.5-.7-2.3-.7c-1.6 0-3.1 1.2-4.3 3.9zm15.1.4c-4.6 0-7.4-3.3-7.4-7.9c0-4.7 3.1-8 7.4-8c1.8 0 3.4.5 4.7 1.3l-.5 1.8c-1.1-.8-2.6-1.2-4.2-1.2c-3.3 0-5.3 2.4-5.3 6c0 3.7 2.1 6.1 5.3 6.1c1.5 0 3.1-.5 4.2-1.2l.5 1.9c-1.3.7-2.9 1.2-4.7 1.2m17.4-.4v-9.8c0-2.7-1.1-3.8-3.2-3.8c-1.8 0-3.4.9-4.7 2.1v11.5h-2.1V49.2l2.1-.5v9.6c1.6-1.6 3.6-2.4 5.3-2.4c2.9 0 4.7 1.9 4.7 5.2v10.3z\\\"/>\"\n\t\t},\n\t\t\"qodana\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconQodana0\\\" x1=\\\"-2.61\\\" x2=\\\"101.85\\\" y1=\\\"100.51\\\" y2=\\\"85.49\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".18\\\" stop-color=\\\"#fc801d\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#ff318c\\\"/></linearGradient><linearGradient id=\\\"deviconQodana1\\\" x1=\\\"-17.85\\\" x2=\\\"130.71\\\" y1=\\\"-1.57\\\" y2=\\\"108.84\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff318c\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#b74af7\\\"/><stop offset=\\\".87\\\" stop-color=\\\"#ff318c\\\"/></linearGradient><linearGradient id=\\\"deviconQodana2\\\" x1=\\\"-35.11\\\" x2=\\\"129.64\\\" y1=\\\"47.35\\\" y2=\\\"8.71\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff318c\\\"/><stop offset=\\\".2\\\" stop-color=\\\"#d73bab\\\"/><stop offset=\\\".51\\\" stop-color=\\\"#9d4ad8\\\"/><stop offset=\\\".75\\\" stop-color=\\\"#7953f4\\\"/><stop offset=\\\".87\\\" stop-color=\\\"#6b57ff\\\"/></linearGradient><path fill=\\\"url(#deviconQodana0)\\\" d=\\\"M86 55.73L24.27 68.67a37.28 37.28 0 0 0-4.77 1.06A24.23 24.23 0 0 0 7.16 78.2c-18.43 23.94 1.34 55.23 29.6 49l67.72-9.81a28.28 28.28 0 0 0 17.43-12c17.46-26.07-5.15-58.68-35.91-49.66\\\"/><path fill=\\\"url(#deviconQodana1)\\\" d=\\\"M52.07 8.15c-7.61-7-18.79-10.25-31.34-6.58a25.79 25.79 0 0 0-13.12 9C-5 27-.78 46.62 11.87 56.75L79.24 113a32.32 32.32 0 0 0 25.24 4.35a28.28 28.28 0 0 0 17.43-12c10.4-15.47 6.59-33.35-4.7-43.35z\\\"/><path fill=\\\"url(#deviconQodana2)\\\" d=\\\"M29.34.15a43.46 43.46 0 0 0-8.61 1.42a25.79 25.79 0 0 0-13.12 9C-12 36 9 69.3 39.08 62.67l80.73-30.45a9.28 9.28 0 0 0 5.72-3.92c5-7.54-.11-16.73-8.32-16.78L32.69 0c-1.2 0-2.32.07-3.35.15\\\"/><path d=\\\"M24 24h80v80H24z\\\"/><path fill=\\\"#fff\\\" d=\\\"M34 89h30v5H34zm26-24.19l-3.3-3a16.32 16.32 0 0 1-8.89 2.56C38.58 64.42 32 57.54 32 49c0-8.51 6.71-15.48 16-15.48s15.86 6.88 15.86 15.39V49a15.41 15.41 0 0 1-2.65 8.59l3.08 2.61zm-8.17-7.27L47 53.39l4.19-4.7l4.91 4.45a10.39 10.39 0 0 0 .78-4.14a9.1 9.1 0 0 0-9.07-9.41c-5.3 0-9 4.19-9 9.32V49a9.09 9.09 0 0 0 9.06 9.4a8.92 8.92 0 0 0 3.96-.86M68.87 34h11.28c9.4 0 15.9 6.46 15.9 14.88V49c0 8.42-6.5 15-15.9 15H68.87zm6.58 6v18h4.7c5.38 0 9-3.64 9-8.94V49a8.6 8.6 0 0 0-9-9z\\\"/>\"\n\t\t},\n\t\t\"qt\": {\n\t\t\t\"body\": \"<path fill=\\\"#41cd52\\\" d=\\\"M17.576 17L-.242 34.688v76.226H110.39l17.816-17.687V17H115.86zm29.99 16.426c8.36 0 14.228 2.347 17.555 7.086c3.37 4.69 5.033 11.95 5.033 21.773c0 6.473-.7 11.688-2.054 15.645c-1.403 3.996-3.634 7.039-6.787 9.125l6.83 10.91l-8.364 3.867l-7.222-11.777c-1.05.347-2.715.476-4.99.476c-8.45 0-14.36-2.258-17.686-6.777c-3.327-4.52-4.99-11.69-4.99-21.426c0-9.777 1.706-17.035 5.076-21.773c3.37-4.74 9.28-7.13 17.6-7.13zm33.926 3.172h8.805v11.691h11.207v7.477H90.297v17.773c0 3.305.258 5.477.74 6.563c.482 1.086 1.75 1.609 3.723 1.609l6.652-.262l.397 7.04c-3.634.694-6.393 1.042-8.317 1.042c-4.599 0-7.753-1.043-9.459-3.129c-1.707-2.086-2.584-6.039-2.584-11.863V55.811h-6.17v-7.522h6.213zm-33.88 4.695c-5.08 0-8.581 1.652-10.51 4.996c-1.88 3.348-2.844 8.65-2.844 15.996c0 7.3.92 12.559 2.758 15.688c1.837 3.129 5.384 4.738 10.595 4.738c5.207 0 8.711-1.566 10.55-4.652c1.796-3.086 2.712-8.344 2.712-15.688c0-7.387-.917-12.734-2.8-16.082c-1.88-3.344-5.342-4.996-10.462-4.996z\\\"/>\"\n\t\t},\n\t\t\"quarkus\": {\n\t\t\t\"body\": \"<path fill=\\\"#4695eb\\\" d=\\\"M81.98 26.121L64 36.504l17.98 10.379Zm0 0\\\"/><path fill=\\\"#ff004a\\\" d=\\\"M46.02 26.121v20.766L64 36.504Zm0 0\\\"/><path fill=\\\"#091313\\\" d=\\\"M81.98 46.887L64 36.504L46.02 46.883L64 57.27Zm0 0\\\"/><path fill=\\\"#4695eb\\\" d=\\\"m27.059 58.965l17.98 10.379V48.582Zm0 0\\\"/><path fill=\\\"#ff004a\\\" d=\\\"m45.04 90.11l17.983-10.383L45.04 69.344Zm0 0\\\"/><path fill=\\\"#091313\\\" d=\\\"M45.04 48.582v20.762l17.983 10.383V58.965Zm0 0\\\"/><path fill=\\\"#4695eb\\\" d=\\\"M82.96 90.11V69.343L64.978 79.727Zm0 0\\\"/><path fill=\\\"#ff004a\\\" d=\\\"m100.941 58.965l-17.98-10.383v20.762Zm0 0\\\"/><path fill=\\\"#091313\\\" d=\\\"M64.977 79.727L82.96 69.344V48.582L64.977 58.965Zm0 0\\\"/><path fill=\\\"#4695eb\\\" d=\\\"M103.023 5.602H24.977c-10.66 0-19.375 8.714-19.375 19.375v78.046c0 10.66 8.714 19.375 19.375 19.375h53.449L64 87.355l-10.469 22.13H24.977c-3.5 0-6.461-2.962-6.461-6.462V24.977c0-3.5 2.96-6.461 6.46-6.461h78.051c3.5 0 6.461 2.96 6.461 6.46v78.047c0 3.5-2.96 6.461-6.46 6.461H86.09l5.316 12.914h11.617c10.66 0 19.375-8.714 19.375-19.375V24.977c0-10.66-8.714-19.375-19.375-19.375m0 0\\\"/>\"\n\t\t},\n\t\t\"quarkus-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#091313\\\" d=\\\"M20.168 89.742c0 2.02-.41 3.7-1.227 5.035a6.104 6.104 0 0 1-3.46 2.715l3.773 3.903h-2.676l-3.094-3.56l-.593.024c-2.336 0-4.141-.71-5.41-2.129c-1.27-1.418-1.903-3.421-1.903-6.007c0-2.567.637-4.555 1.906-5.965c1.274-1.414 3.082-2.121 5.426-2.121c2.277 0 4.059.718 5.336 2.156c1.281 1.437 1.922 3.422 1.922 5.95Zm-12.637 0c0 2.133.457 3.754 1.371 4.856c.914 1.105 2.243 1.656 3.989 1.656c1.757 0 3.086-.55 3.98-1.645c.899-1.097 1.348-2.718 1.348-4.863c0-2.117-.45-3.726-1.34-4.824c-.895-1.094-2.215-1.645-3.965-1.645c-1.758 0-3.094.551-4.008 1.657c-.918 1.101-1.375 2.703-1.375 4.808m30.813-7.855v10.195c0 1.797-.543 3.207-1.637 4.234c-1.09 1.028-2.59 1.543-4.5 1.543c-1.91 0-3.387-.52-4.434-1.554c-1.043-1.035-1.566-2.461-1.566-4.27V81.887h1.844v10.281c0 1.316.363 2.324 1.086 3.027c.722.703 1.785 1.059 3.187 1.059c1.34 0 2.371-.356 3.094-1.063c.719-.707 1.082-1.722 1.082-3.046V81.887ZM55.18 97.645l-1.977-5.012h-6.355l-1.957 5.012h-1.864l6.27-15.825h1.555l6.234 15.825Zm-2.551-6.66l-1.844-4.883a26.27 26.27 0 0 1-.738-2.274c-.184.77-.41 1.531-.684 2.274L47.5 90.984Zm11.148.105v6.555h-1.843V81.887h4.351c1.945 0 3.383.367 4.313 1.11c.93.737 1.394 1.85 1.394 3.339c0 2.086-1.062 3.492-3.191 4.227l4.304 7.082h-2.18l-3.84-6.551Zm0-1.574h2.528c1.3 0 2.257-.254 2.863-.77c.61-.516.914-1.285.914-2.312c0-1.04-.309-1.793-.926-2.254c-.617-.461-1.61-.688-2.976-.688h-2.403Zm26.012 8.129h-2.172l-5.781-7.641l-1.66 1.465v6.176h-1.844V81.887h1.844v7.812l7.195-7.812h2.18l-6.38 6.843Zm16.816-15.758v10.195c0 1.797-.546 3.207-1.636 4.234c-1.094 1.028-2.594 1.543-4.504 1.543c-1.906 0-3.387-.52-4.43-1.554c-1.047-1.035-1.566-2.461-1.566-4.27V81.887h1.844v10.281c0 1.316.359 2.324 1.082 3.027c.722.703 1.789 1.059 3.19 1.059c1.34 0 2.372-.356 3.09-1.063c.723-.707 1.083-1.722 1.087-3.046V81.887Zm15.817 11.562c0 1.387-.504 2.469-1.52 3.246c-1.011.778-2.382 1.164-4.12 1.164c-1.88 0-3.325-.242-4.337-.722V95.37c.684.281 1.395.5 2.125.645c.75.156 1.512.234 2.278.238c1.23 0 2.152-.234 2.777-.695c.621-.465.934-1.11.934-1.938c0-.547-.114-.996-.332-1.34c-.22-.347-.59-.668-1.106-.965c-.52-.293-1.305-.629-2.36-1.007c-1.476-.524-2.53-1.145-3.163-1.864c-.633-.718-.95-1.656-.95-2.812c0-1.215.461-2.18 1.38-2.899c.917-.722 2.132-1.078 3.64-1.074c1.578 0 3.027.285 4.352.863l-.575 1.59c-1.308-.547-2.582-.82-3.816-.82c-.977 0-1.738.207-2.285.625c-.551.414-.824.996-.824 1.734c0 .551.101.996.304 1.344c.203.348.54.668 1.016.961c.48.293 1.219.613 2.207.965c1.664.59 2.808 1.223 3.433 1.898c.625.676.942 1.551.942 2.63m0 0\\\"/><path fill=\\\"#4695eb\\\" d=\\\"M69.828 37.832L64 41.195l5.828 3.367Zm0 0\\\"/><path fill=\\\"#ff004a\\\" d=\\\"M58.168 37.832v6.73L64 41.196Zm0 0\\\"/><path fill=\\\"#091313\\\" d=\\\"M69.828 44.563L64 41.194l-5.832 3.367L64 47.93Zm0 0\\\"/><path fill=\\\"#4695eb\\\" d=\\\"m52.023 48.477l5.829 3.367v-6.73Zm0 0\\\"/><path fill=\\\"#ff004a\\\" d=\\\"m57.852 58.574l5.828-3.363l-5.828-3.367Zm0 0\\\"/><path fill=\\\"#091313\\\" d=\\\"M57.852 45.113v6.73l5.828 3.368v-6.734Zm0 0\\\"/><path fill=\\\"#4695eb\\\" d=\\\"M70.145 58.574v-6.73l-5.829 3.367Zm0 0\\\"/><path fill=\\\"#ff004a\\\" d=\\\"m75.977 48.477l-5.832-3.364v6.73Zm0 0\\\"/><path fill=\\\"#091313\\\" d=\\\"m64.316 55.21l5.829-3.366v-6.73l-5.829 3.363Zm0 0\\\"/><path fill=\\\"#4695eb\\\" d=\\\"M76.652 31.176H51.348a6.305 6.305 0 0 0-6.285 6.281v25.309a6.305 6.305 0 0 0 6.285 6.28h17.328L64 57.685l-3.395 7.175h-9.257a2.122 2.122 0 0 1-2.094-2.093v-25.31a2.122 2.122 0 0 1 2.094-2.094h25.304a2.125 2.125 0 0 1 2.094 2.094v25.309a2.125 2.125 0 0 1-2.094 2.093H71.16l1.723 4.188h3.77a6.302 6.302 0 0 0 6.28-6.281V37.457a6.302 6.302 0 0 0-6.28-6.281Zm0 0\\\"/>\"\n\t\t},\n\t\t\"quasar\": {\n\t\t\t\"body\": \"<path d=\\\"M73.273 64a9.274 9.274 0 1 1-18.548-.001A9.274 9.274 0 0 1 73.273 64m31.891-23.773a46.986 46.986 0 0 0-7.289-9.528l-10.727 6.188a35.917 35.917 0 0 0-11.187-6.489a43.994 43.994 0 0 0-8.66 12.364C79.238 41.949 91.562 46.273 103 55.21l6.75-3.898a47.262 47.262 0 0 0-4.586-11.086ZM64 111.523a47.644 47.644 0 0 0 11.887-1.546V97.602a35.648 35.648 0 0 0 11.215-6.454a44.205 44.205 0 0 0-6.375-13.687c-5.266 10.738-15.165 19.25-28.625 24.687v7.79A46.172 46.172 0 0 0 64 111.522ZM22.836 40.238a47.212 47.212 0 0 0-4.598 11.075L28.961 57.5c-.793 4.273-.8 8.66-.023 12.938a44.053 44.053 0 0 0 15.039 1.324C37.3 61.836 34.887 49 36.898 34.625l-6.75-3.898a47.141 47.141 0 0 0-7.312 9.511m0 0\\\"/><path fill=\\\"#00b4ff\\\" d=\\\"M64 .125C28.723.125.125 28.723.125 64S28.723 127.875 64 127.875S127.875 99.277 127.875 64S99.277.125 64 .125m0 8.176c30.71 0 55.7 24.988 55.7 55.699c0 30.71-24.99 55.7-55.7 55.7c-30.71 0-55.7-24.99-55.7-55.7C8.3 33.29 33.29 8.3 64 8.3Zm0 8.16a47.83 47.83 0 0 0-11.887 1.55v12.376a35.638 35.638 0 0 0-11.215 6.449a44.122 44.122 0 0 0 6.375 13.687c5.266-10.734 15.164-19.25 28.625-24.687V18.05A47.24 47.24 0 0 0 64 16.46ZM89.09 56.1a44.487 44.487 0 0 0-5.05.137c6.67 9.926 9.085 22.762 7.073 37.137l6.75 3.898a47.849 47.849 0 0 0 7.301-9.511c2-3.473 3.535-7.2 4.598-11.075L99.05 70.5c.8-4.324.8-8.7.023-12.938a43.998 43.998 0 0 0-9.984-1.46ZM25 72.774l-6.75 3.903a48.179 48.179 0 0 0 4.586 11.086a47.094 47.094 0 0 0 7.289 9.527l10.727-6.187a35.83 35.83 0 0 0 11.187 6.484a43.975 43.975 0 0 0 8.66-12.36C48.762 86.04 36.438 81.712 25 72.774m0 0\\\"/>\"\n\t\t},\n\t\t\"quasar-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M68.055 12.09a17.53 17.53 0 0 0-3.45 4.941a20.99 20.99 0 0 1 14.258 4.977l2.7-1.563A20.126 20.126 0 0 0 79.715 16a17.712 17.712 0 0 0-2.914-3.805l-4.266 2.489a13.823 13.823 0 0 0-4.48-2.594m-18.278.14c-1.136 1.137-2.132 2.383-2.914 3.77a18.651 18.651 0 0 0-1.851 4.445l4.27 2.489a14.104 14.104 0 0 0 0 5.12c2.027.532 4.015.712 6.007.532a20.975 20.975 0 0 1-2.844-14.824Zm13.512 9.567a3.696 3.696 0 0 0-3.7 3.695a3.7 3.7 0 0 0 7.4 0a3.696 3.696 0 0 0-3.7-3.695m6.684 9.101a20.972 20.972 0 0 1-11.45 9.848v3.094c1.567.426 3.164.64 4.766.64a19.7 19.7 0 0 0 4.766-.605v-4.977a14.226 14.226 0 0 0 4.441-2.562a16.93 16.93 0 0 0-2.523-5.438M14.648 63.785c-4.3 0-7.359 1.672-7.359 6.188v.78c0 4.556 3.059 6.259 7.36 6.259c.535 0 1.066-.035 1.566-.106l4.195 2.203l.711-1.171l-2.918-1.422l-2.273-1.102c-.426.047-.852.07-1.282.07c-3.484 0-5.687-1.386-5.687-4.73v-.781c0-3.305 2.203-4.657 5.687-4.657c3.52 0 5.797 1.352 5.797 4.657v.78c0 1.888-.746 3.095-1.992 3.84l1.707.856c1.207-.996 1.957-2.488 1.957-4.695v-.781c0-4.516-3.129-6.188-7.469-6.188m58.774 0c-.711 0-1.422.035-2.027.11l.675 1.421l1.246-.07c2.809 0 4.727.637 6.434 2.024l.64-1.387a10.694 10.694 0 0 0-6.968-2.098m-19.66.11l6.027 12.761h1.758l-6.082-12.761Zm6.027 12.761h-.055l.07.035ZM92.375 63.93l6.027 12.761h1.828L94.078 63.93Zm6.027 12.761h-.02l.036.04ZM28.872 64v6.578c0 4.266 2.202 6.043 5.476 6.328v-1.562c-2.418-.32-3.84-1.742-3.84-4.801V64Zm11.163.035v6.543c0 3.164-1.527 4.55-3.875 4.8v1.563c3.27-.25 5.512-1.992 5.512-6.398v-6.508Zm66.703.035v12.621h1.637V65.562h5.867c1.778 0 3.02.5 3.02 2.383c0 1.852-1.242 2.739-3.02 2.739h-4.055v1.457h3.805l3.305 4.55h1.957L115.734 72c2.133-.426 3.2-1.922 3.2-4.055c0-2.843-1.602-3.875-4.586-3.875Zm-37.015.145c-1.668.496-2.664 1.492-2.664 3.164c0 1.848 1.207 3.094 4.62 3.414l4.02.426c2.274.21 3.164.71 3.164 1.918c0 .96-.746 1.672-2.133 2.062l.637 1.387c1.887-.566 3.168-1.672 3.168-3.555c0-2.277-1.672-3.058-4.91-3.344l-3.59-.355c-2.383-.246-3.305-.781-3.305-1.988c0-.89.497-1.422 1.633-1.781ZM52.62 65.527l-5.367 11.164h1.812l1.172-2.488h6.508l-.64-1.312h-5.262l2.633-5.582Zm38.649 0l-5.368 11.164h1.813l1.176-2.488h6.504l-.602-1.312h-5.3l2.632-5.582Zm-23.891 7.754l-.785 1.352c1.816 1.777 3.914 2.379 7.469 2.379c.57 0 1.101-.035 1.636-.106l-.676-1.422h-1.066l.035.036c-3.449 0-5.226-.887-6.613-2.239m-20.586 28.871c-2.668 0-4.516.996-4.516 3.805v.496c0 2.774 1.848 3.84 4.516 3.84c2.664 0 4.621-1.031 4.621-3.84v-.496c0-2.809-1.957-3.805-4.621-3.805m-39.219.141v7.824h5.332c1.707 0 2.524-.89 2.524-2.242c0-1.066-.746-1.813-1.742-1.953c.675-.215 1.21-.856 1.21-1.781c0-1.067-.675-1.848-2.207-1.848Zm12.336 0v7.824h7.399v-.96H20.94v-2.669h5.192v-.816H20.94v-2.418h6.293v-.961Zm36.02 0v7.824h.996v-6.367l5.617 6.367h1.031v-7.824h-1.031v6.398l-5.547-6.398Zm12.691 0v7.824h4.02c2.558 0 4.41-.926 4.41-3.699v-.461h-.04c0-2.668-1.847-3.664-4.406-3.664Zm42.703 0v7.824h7.36v-.96h-6.329v-2.669h5.157v-.816h-5.157v-2.418h6.293v-.961Zm-80.746.035l3.91 4.766v3.023h.996v-3.023h-.035l3.84-4.766h-1.21l-3.13 3.91l-3.164-3.91Zm55.5 0v.926h3.45v6.863h1.066v-6.863h3.449v-.926Zm12.16 0v7.75h.996v-3.555h5.973v3.594h1.07v-7.789h-1.03v3.274h-6.013v-3.274Zm-51.445.781c2.168 0 3.555.82 3.555 2.848v.496c0 2.063-1.422 2.879-3.555 2.879c-2.137 0-3.484-.816-3.484-2.879v-.496c0-2.027 1.347-2.848 3.484-2.848m-38.223.145h3.98c.856 0 1.317.32 1.317 1.101c0 .891-.676 1.352-1.422 1.352H8.57Zm61.082 0h2.989c2.168 0 3.34.816 3.34 2.703h.039v.461c0 2.027-1.247 2.738-3.38 2.738h-2.988Zm-61.047 3.164h4.372c.785 0 1.421.496 1.421 1.316c0 .782-.425 1.422-1.632 1.422h-4.16Zm81.563 13.441c-2.664 0-4.516 1.032-4.516 3.805v.496c0 2.774 1.852 3.84 4.516 3.84c2.703 0 4.625-1.031 4.625-3.84v-.496c0-2.773-1.922-3.805-4.625-3.805m-56.566.07l-3.805 7.891h1.137l.71-1.527H36.8l.71 1.527h1.137l-3.804-7.89ZM7.465 120v7.82h1.031v-3.41h4.98v-.855h-4.94v-2.594h6.042V120Zm11.379 0v7.82h.96v-2.808h3.485l.035-.035l2.063 2.843h1.172l-2.133-2.914c1.281-.25 1.992-1.172 1.992-2.488c0-1.742-1.031-2.418-2.844-2.418Zm33.031 0l-4.016 6.043l-3.914-6.008H42.88v7.75h.996v-6.043l3.629 5.547h.746l3.66-5.582v6.113h1.031V120Zm6.152 0v7.82h7.36v-.922h-6.364v-2.703h5.157v-.816h-5.157v-2.418h6.329V120Zm16.922 0l-2.414 6.578l-2.277-6.543h-1.172L72 127.86h1.066l2.489-6.613l2.523 6.613h1.07l2.95-7.824V120h-1.172l-2.348 6.578L76.16 120Zm24.395 0v7.82h.992v-2.808h3.477l2.035 2.808h1.175l-2.132-2.914c1.277-.25 1.988-1.172 1.988-2.488c0-1.742-.996-2.418-2.844-2.418Zm11.875 0v7.82h1.031v-2.273l2.418-1.992l3.164 4.265h1.277l-3.66-4.906l3.52-2.879h-1.317l-5.402 4.34V120Zm-21.016.816c2.133 0 3.559.82 3.559 2.848v.496h-.04c0 2.063-1.386 2.914-3.554 2.914c-2.133 0-3.484-.851-3.484-2.914v-.496c0-2.027 1.386-2.848 3.52-2.848Zm-55.965.036l2.242 4.625h-4.375Zm-14.433.109h3.66c1.105 0 1.887.285 1.887 1.457c0 1.137-.782 1.672-1.887 1.672h-3.66Zm80.53 0h3.63c1.101 0 1.847.285 1.847 1.457c0 1.137-.78 1.672-1.847 1.672h-3.63Zm0 0\\\"/><path fill=\\\"#00b4ff\\\" d=\\\"M63.29 0C49.2 0 37.776 11.422 37.776 25.512S49.2 51.023 63.29 51.023s25.512-11.421 25.512-25.511S77.379 0 63.289 0Zm0 3.27c12.292.011 22.25 9.984 22.237 22.277c-.007 12.293-9.98 22.25-22.273 22.238c-12.293-.008-22.25-9.98-22.242-22.273c.011-12.293 9.984-22.25 22.277-22.242Zm0 3.203v.07c-1.602 0-3.2.176-4.767.605v4.942a14.234 14.234 0 0 0-4.445 2.558c.535 2.028 1.426 3.84 2.527 5.477a20.972 20.972 0 0 1 11.45-9.848V7.11a18.875 18.875 0 0 0-4.766-.636Zm9.491 15.859c-.496 0-.996.023-1.492.066a20.982 20.982 0 0 1 2.844 14.829l2.668 1.566a17.809 17.809 0 0 0 2.914-3.805a17.73 17.73 0 0 0 1.847-4.41l-4.265-2.488a14.123 14.123 0 0 0 0-5.156a17.724 17.724 0 0 0-4.516-.602m-25.031 6.68l-2.738 1.566a20.025 20.025 0 0 0 1.851 4.41c.782 1.422 1.778 2.664 2.914 3.805l4.266-2.492a14.313 14.313 0 0 0 4.48 2.597a18.544 18.544 0 0 0 3.45-4.906a20.982 20.982 0 0 1-14.223-4.98m15.54 60.09l-31.54.105c-10.523.074-21.047.18-31.57.356c10.523.18 21.047.296 31.57.359l31.54.105l31.538-.105l15.785-.145l15.785-.215l-15.785-.21l-15.785-.145Zm0 0\\\"/>\"\n\t\t},\n\t\t\"qwik\": {\n\t\t\t\"body\": \"<path fill=\\\"#18B6F6\\\" d=\\\"m95.672 112.555l-17.43-17.34l-.246.043v-.184L40.93 58.418l9.152-8.82l-5.383-30.84L19.23 50.355c-4.324 4.368-5.156 11.508-2.023 16.75l15.918 26.422c2.434 4.051 6.258 6.657 11.598 6.465c11.304-.402 16.273-.402 16.273-.402l34.668 12.957l.008.012Zm0 0\\\"/><path fill=\\\"#AC7EF4\\\" d=\\\"M104.285 63.96c2.508-5.175 3.406-9.702.93-14.253l-3.524-6.484l-1.828-3.328l-.71-1.297l-.067.074L89.5 22.043a13.397 13.397 0 0 0-11.766-6.723l-8.406.239l-25.094.066a13.46 13.46 0 0 0-11.511 6.633L17.477 52.539l27.285-33.945l35.793 39.36l-6.407 6.491l3.825 30.793l.054-.07v.09h-.054l.074.074l2.984 2.906L95.47 112.34c.605.586 1.59-.117 1.187-.84L87.73 93.938\\\"/><path fill=\\\"#FFF\\\" d=\\\"m80.64 57.855l-35.886-39.16l5.098 30.664l-9.133 8.864L77.906 95.18L74.555 64.5l6.086-6.633Zm0 0\\\"/>\"\n\t\t},\n\t\t\"qwik-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#18B6F6\\\" d=\\\"m30.234 80.969l-5.789-5.758l-.082.012v-.059L12.055 62.988l3.039-2.93l-1.785-10.242L4.848 60.31c-1.438 1.453-1.711 3.824-.672 5.566l5.289 8.773c.808 1.344 2.078 2.207 3.851 2.145c3.75-.133 5.403-.133 5.403-.133l11.511 4.305Zm0 0\\\"/><path fill=\\\"#AC7EF4\\\" d=\\\"M33.094 64.832c.836-1.719 1.133-3.223.308-4.734l-1.168-2.153l-.605-1.105l-.238-.434l-.02.028l-3.183-5.524a4.49 4.49 0 0 0-1.653-1.648a4.478 4.478 0 0 0-2.258-.586l-2.793.078l-8.332.023a4.46 4.46 0 0 0-3.82 2.207L4.27 61.04l9.058-11.273l11.887 13.07l-2.13 2.156l1.274 10.223l.016-.02v.028h-.02l.028.027l.992.965l4.79 4.683c.202.192.53-.039.394-.28l-2.961-5.833\\\"/><path fill=\\\"#FFF\\\" d=\\\"M25.242 62.805L13.324 49.8l1.696 10.183l-3.036 2.942l12.352 12.273l-1.113-10.187l2.02-2.203Zm0 0\\\"/><path stroke=\\\"#FFF\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\".592\\\" d=\\\"M62.93 81.279a.297.297 0 0 0 .298-.297V56.364a.312.312 0 0 0-.055-.176a.335.335 0 0 0-.148-.105c-2.481-.805-5.176-1.203-8.118-1.203c-3.133 0-5.46.73-6.941 2.289l-.004.004c-1.446 1.559-2.13 4.246-2.13 7.828c0 3.574.571 6.153 1.79 7.64c1.23 1.497 3.164 2.192 5.7 2.192a8.973 8.973 0 0 0 4.742-1.297v7.446a.3.3 0 0 0 .296.297ZM58.06 59.57v9.067c0 .36-.27.746-.868 1.062c-.586.31-1.425.512-2.398.512c-1.504 0-2.434-.387-2.965-1.074c-.27-.344-.48-.86-.625-1.578c-.145-.715-.215-1.614-.215-2.703c0-1.157.082-2.114.235-2.883c.152-.766.375-1.324.644-1.692c.531-.715 1.527-1.097 3.04-1.097c1.148 0 2.198.12 3.156.386Zm11.418-4.183H64.84a.306.306 0 0 0-.137.031a.305.305 0 0 0-.156.227a.29.29 0 0 0 .016.14c2.082 5.567 4.023 11.676 5.82 18.36a.31.31 0 0 0 .106.156c.054.04.117.063.18.063h5.359a.295.295 0 0 0 .28-.2a108.58 108.58 0 0 0 3.235-10.836c1.145 4.215 2.008 7.797 2.563 10.793c.016.07.05.13.105.176a.29.29 0 0 0 .188.067h5.363a.28.28 0 0 0 .164-.051a.305.305 0 0 0 .11-.133a204.67 204.67 0 0 0 6.379-18.414a.325.325 0 0 0 .004-.137a.242.242 0 0 0-.055-.125a.306.306 0 0 0-.102-.086a.266.266 0 0 0-.132-.031h-4.497a.303.303 0 0 0-.183.058a.308.308 0 0 0-.106.164c-.972 3.829-2.261 8-3.894 12.551a135.078 135.078 0 0 0-3.563-12.574a.3.3 0 0 0-.281-.2H77.61a.285.285 0 0 0-.285.227a148.14 148.14 0 0 1-3.641 12.575a156.327 156.327 0 0 0-3.914-12.563a.27.27 0 0 0-.102-.172a.283.283 0 0 0-.187-.066Zm27.164.297v18.39c0 .16.133.294.297.294h4.57a.296.296 0 0 0 .297-.293v-18.39a.293.293 0 0 0-.296-.293h-4.524a.272.272 0 0 0-.125.004a.323.323 0 0 0-.113.062a.274.274 0 0 0-.074.102a.262.262 0 0 0-.028.12v.005Zm-.32-5.114c0 1.031.137 1.785.629 2.262c.492.473 1.25.59 2.258.59c1.004 0 1.765-.117 2.258-.59c.492-.477.629-1.23.629-2.262c0-.926-.141-1.617-.645-2.047c-.488-.414-1.242-.52-2.242-.52c-1.004 0-1.754.106-2.242.52c-.504.43-.645 1.121-.645 2.047Zm26.747 4.817h-5.29a.295.295 0 0 0-.242.125a135.534 135.534 0 0 1-4.308 5.898c-.829 1.047-1.477 1.797-1.957 2.262V47.731a.293.293 0 0 0-.293-.297h-4.575a.293.293 0 0 0-.293.297v26.345c0 .16.13.293.293.293h4.575a.293.293 0 0 0 .293-.293v-9.208c.132.114.285.258.46.442c.387.414.868 1 1.45 1.781c1.168 1.563 2.75 3.887 4.886 7.14a.295.295 0 0 0 .25.138h5.255a.29.29 0 0 0 .148-.043a.268.268 0 0 0 .11-.11a.291.291 0 0 0-.005-.297c-1.73-2.867-3.293-5.199-4.554-6.902a30.935 30.935 0 0 0-1.657-2.07a9.201 9.201 0 0 0-.843-.856c.625-.563 1.425-1.453 2.402-2.664c1.426-1.805 2.8-3.656 4.113-5.543a.28.28 0 0 0 .075-.153a.273.273 0 0 0-.02-.168a.271.271 0 0 0-.11-.128a.26.26 0 0 0-.16-.051h-.003Zm0 0\\\"/>\"\n\t\t},\n\t\t\"r\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconR0\\\" x1=\\\".741\\\" x2=\\\"590.86\\\" y1=\\\"3.666\\\" y2=\\\"593.79\\\" gradientTransform=\\\"matrix(.2169 0 0 .14527 -.16 14.112)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#cbced0\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#84838b\\\"/></linearGradient><linearGradient id=\\\"deviconR1\\\" x1=\\\"301.03\\\" x2=\\\"703.07\\\" y1=\\\"151.4\\\" y2=\\\"553.44\\\" gradientTransform=\\\"matrix(.17572 0 0 .17931 -.16 14.112)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#276dc3\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#165caa\\\"/></linearGradient></defs><path fill=\\\"url(#deviconR0)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M64 100.38c-35.346 0-64-19.19-64-42.863c0-23.672 28.654-42.863 64-42.863s64 19.19 64 42.863c0 23.672-28.654 42.863-64 42.863m9.796-68.967c-26.866 0-48.646 13.119-48.646 29.303c0 16.183 21.78 29.303 48.646 29.303s46.693-8.97 46.693-29.303c0-20.327-19.827-29.303-46.693-29.303\\\"/><path fill=\\\"url(#deviconR1)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M97.469 81.033s3.874 1.169 6.124 2.308c.78.395 2.132 1.183 3.106 2.219a8.388 8.388 0 0 1 1.42 2.04l15.266 25.74l-24.674.01l-11.537-21.666s-2.363-4.06-3.817-5.237c-1.213-.982-1.73-1.331-2.929-1.331h-5.862l.004 28.219l-21.833.009V41.26h43.844s19.97.36 19.97 19.359c0 18.999-19.082 20.413-19.082 20.413zm-9.497-24.137l-13.218-.009l-.006 12.258l13.224-.005s6.124-.019 6.124-6.235c0-6.34-6.124-6.009-6.124-6.009\\\"/>\"\n\t\t},\n\t\t\"rabbitmq\": {\n\t\t\t\"body\": \"<path fill=\\\"#f60\\\" d=\\\"M119.517 51.188H79.291a3.641 3.641 0 0 1-3.64-3.642V5.62A5.605 5.605 0 0 0 70.028 0H55.66a5.606 5.606 0 0 0-5.627 5.62v41.646a3.913 3.913 0 0 1-3.92 3.925l-13.188.047c-2.176 0-3.972-1.75-3.926-3.926l.094-41.687A5.606 5.606 0 0 0 23.467 0H9.1a5.61 5.61 0 0 0-5.626 5.625V122.99c0 2.737 2.22 5.01 5.01 5.01h111.033a5.014 5.014 0 0 0 5.008-5.011V56.195a4.975 4.975 0 0 0-5.008-5.007M100.66 95.242a6.545 6.545 0 0 1-6.525 6.524H82.791a6.545 6.545 0 0 1-6.523-6.524V83.9a6.545 6.545 0 0 1 6.523-6.524h11.343a6.545 6.545 0 0 1 6.525 6.523zm0 0\\\"/>\"\n\t\t},\n\t\t\"rabbitmq-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f60\\\" d=\\\"M19.05 61.96h-6.347a.797.797 0 0 1-.8-.8v-6.363a.79.79 0 0 0-.794-.796h-2.38a.81.81 0 0 0-.563.23a.804.804 0 0 0-.231.565v6.364a.82.82 0 0 1-.23.57a.81.81 0 0 1-.565.23H4.764a.804.804 0 0 1-.564-.23a.803.803 0 0 1-.23-.57v-6.363a.824.824 0 0 0-.235-.57a.797.797 0 0 0-.566-.23H.794a.79.79 0 0 0-.794.799v18.31c0 .215.082.418.234.566a.768.768 0 0 0 .565.233h18.252a.797.797 0 0 0 .795-.8v-10.33a.794.794 0 0 0-.795-.815zm-3.192 6.76a1.185 1.185 0 0 1-1.189 1.198h-1.593a1.2 1.2 0 0 1-.843-.346a1.223 1.223 0 0 1-.346-.85v-1.587c0-.323.128-.624.346-.851a1.2 1.2 0 0 1 .843-.35h1.593a1.193 1.193 0 0 1 1.19 1.2zm67.624 5.37c-.477.065-.962.109-1.45.124a4.216 4.216 0 0 1-2.708-.783c-.596-.5-.894-1.375-.894-2.575V61.62h-2.174v-1.363h2.174v-3.153l1.415-.955v4.1h3.637v1.366h-3.63v8.778c0 .393-.094 2.428 2.06 2.428a5.4 5.4 0 0 0 1.57-.246zm-9.616-19.966v2.318h-2.11v-2.317zm-.33 6.134V73.9h-1.427V60.258zM59.68 54.12v14.195c0 .768.023 5.9 4.742 5.9c1.133 0 5.267-.402 5.267-6.98c0-6.587-3.63-7.28-4.722-7.28a3.928 3.928 0 0 0-3.8 2.882h-.061V54.12h-1.442zm8.288 13.075c0 5.52-3.073 5.632-3.546 5.632c-.482 0-3.252 0-3.252-5.41c0-4.488 2.155-6.11 3.633-6.11c1.487 0 3.16 1.53 3.16 5.89zM47.452 54.12v14.195c0 .768.025 5.9 4.738 5.9c1.137 0 5.276-.402 5.276-6.98c0-6.587-3.634-7.28-4.728-7.28a3.928 3.928 0 0 0-3.799 2.882h-.047V54.12h-1.449zm8.292 13.075c0 5.52-3.076 5.632-3.553 5.632c-.477 0-3.248 0-3.248-5.41c0-4.488 2.155-6.11 3.637-6.11c1.479 0 3.164 1.53 3.164 5.89zm-19.605-3.67h1.75c.158-.795.5-2.214 2.834-2.214c3.053 0 2.95 2.657 2.95 3.68v1.198s-.994 0-1.61.06c-2.334.182-6.142.79-6.142 4.313c0 3.529 2.917 3.648 3.482 3.648a4.973 4.973 0 0 0 2.404-.576a5.05 5.05 0 0 0 1.821-1.666h.06V73.9h1.419v-9.313c0-1.395.127-4.643-4.253-4.643s-4.715 2.934-4.715 3.58zm7.53 4.03c0 .526-.037 1.055-.1 1.58a3.94 3.94 0 0 1-3.908 3.35a1.808 1.808 0 0 1-1.419-.477a1.843 1.843 0 0 1-.6-1.37c0-.725.278-2.415 3.049-2.947c.585-.111 2.978-.134 2.978-.134zM23.217 54.122v19.78h1.709v-8.944h2.369a5.111 5.111 0 0 1 1.84.303c1.746.662 1.94 2.69 2.258 3.985l.99 4.68h1.72l-1.116-5.335c-.326-1.61-.549-2.298-.993-2.993c-.593-.922-2.283-1.424-2.283-1.424c2.772-.54 3.976-2.408 3.976-4.95c0-2.336-1.126-5.062-6.308-5.062h-4.162zm1.709 1.574h2.258c4.51 0 4.777 2.404 4.777 3.494c0 .899-.171 4.194-5.473 4.194h-1.562zm0 0\\\"/><path fill=\\\"#a6b3ae\\\" d=\\\"M116.432 72.557c1.824-1.566 2.802-4.488 2.802-8.701c0-6.138-2.313-10.077-6.63-10.077c-4.047 0-6.87 3.299-6.87 10.077c0 6.777 2.398 10.056 6.75 10.056h8.142V72.25zm-8.822-8.697c0-5.637 1.607-8.372 4.974-8.372c3.363 0 4.754 3.272 4.754 8.372c0 5.104-1.224 8.39-4.839 8.39c-3.616 0-4.889-2.754-4.889-8.39M95.913 73.9h-1.797l-5.919-18.193V73.9H86.62V54.125h2.835l5.508 17.31h.06l5.529-17.31h2.762V73.9h-1.557V55.707zm29.198-3.032h-2.763v.242h1.255v2.835h.243V71.11h1.265zm2.626.242l-.901 2.835h-.279l-.91-2.835v2.835h-.243v-3.077h.442l.863 2.699l.858-2.7H128v3.078h-.246V71.11zm0 0\\\"/>\"\n\t\t},\n\t\t\"rails-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#A62C39\\\" d=\\\"M17.444 125.054s.188-29.538.188-59.564c0-58.159-4.901-62.491 21.194-62.491h72.635v83.889c0 27.615 5.162 38.433-23.859 38.433c-29.021.001-70.158-.267-70.158-.267\\\"/><g transform=\\\"translate(-273.273 -435.955)\\\"><linearGradient id=\\\"deviconRailsWordmark0\\\" x1=\\\"681.437\\\" x2=\\\"703.949\\\" y1=\\\"2170.426\\\" y2=\\\"2182.218\\\" gradientTransform=\\\"matrix(1 0 0 -1 -320.773 2656.956)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#C0815E\\\"/></linearGradient><path fill=\\\"url(#deviconRailsWordmark0)\\\" d=\\\"M350.603 449.926s4.655.932 8.688 7.757c4.034 6.826 25.444 59.886 25.444 59.886v-43.131l-19.858-32.27l5.585 6.827l10.55-8.689l-13.653-.93z\\\"/></g><g transform=\\\"translate(-273.273 -435.955)\\\"><radialGradient id=\\\"deviconRailsWordmark1\\\" cx=\\\"668.118\\\" cy=\\\"1679.3\\\" r=\\\"38.406\\\" gradientTransform=\\\"matrix(1 0 0 -1.582 -320.773 3155.877)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A94436\\\"/></radialGradient><path fill=\\\"url(#deviconRailsWordmark1)\\\" d=\\\"M309.335 439.686s30.719 20.479 45.613 24.513a4339.783 4339.783 0 0 1 30.408 8.378l-35.373 86.88l15.204.621l19.86-49.026l-.622-71.676z\\\" opacity=\\\".668\\\"/><path fill=\\\"#fff\\\" fill-opacity=\\\".44\\\" d=\\\"m337.881 531.221l31.956 30.733l-59.571-1.256s-1.861-18.927-1.241-28.856l3.723-9.929z\\\"/></g><path fill-opacity=\\\".362\\\" d=\\\"M94.085 125.365L65.229 95.577l-26.375-9.929l-20.479-45.612L40.096 3.732l-14.584-.621l-5.896 5.586l-2.172 4.344l-1.552 112.945z\\\"/><path fill=\\\"#83222D\\\" d=\\\"M111.773 77.89S82.606 87.199 65.23 95.887c-17.376 8.688-26.685 29.787-26.685 29.787s37.234-1.861 51.197-1.241c13.963.621 20.479.621 21.72-18.927c1.241-19.548.311-27.616.311-27.616\\\" opacity=\\\".5\\\"/><path fill=\\\"#fff\\\" d=\\\"M26.435 96.422v18.326h4.674v-4.773l4.254 4.254h7.172l-5.688-5.688s4.093-.067 4.402-5.984c0-5.43-4.097-6.134-8.83-6.134h-5.984zm4.897 4.971h4.031v3.265h-4.031zm20.23-4.897c-2.559-.015-6.108.223-6.108 5.045v12.737h4.797v-3.116h4.65v3.042h4.822V100.85c0-4.189-4.654-4.353-7.147-4.353zm-1.237 4.6h4.501v5.021h-4.501zm14.206-4.589h4.964v17.531h-4.964zm10.161.234v17.531h11.947v-4.654H79.58V96.663zm27.771-.156v4.732h-7.99v1.707h3.413c1.785 0 5.508-.077 5.508 5.508s-2.561 5.896-7.758 5.896h-6.283v-4.267h7.214c2.172 0 2.292-.708 2.292-1.324c0-.615-1.11-.902-3.369-.902s-6.447-1.11-6.447-5.454s2.172-5.973 6.516-5.973c4.345-.001 6.904.077 6.904.077\\\"/><g fill=\\\"#fff\\\"><path d=\\\"M30.787 91.233h41.269S62.902 70.444 65.23 51.36c2.326-19.082 17.376-27.771 25.909-28.702c8.533-.931 13.187 4.344 13.187 4.344l1.861-2.792S93.931 11.798 78.416 13.195C62.902 14.59 52.197 24.83 45.526 37.241c-6.671 12.412-10.55 21.101-13.188 34.132c-2.637 13.033-1.551 19.86-1.551 19.86m-8.222-20.789l8.066.62l-1.396 8.068l-7.602-.931zm12.721-17.067l2.172-6.05l-7.137-2.793l-2.327 6.516zM45.37 32.588l4.189-4.965l-5.43-3.568l-4.343 4.81zm11.015-19.237l3.724 4.499l5.12-2.947l-3.724-4.189zm18.153-5.12l.93 4.499l6.361-.155l-.62-4.034z\\\"/><path d=\\\"m96.102 13.04l-.155 2.792l4.343 2.328l.931-1.396zm-.93 11.946v2.327l4.189.465v-1.861zm-13.343 2.016l2.017 3.724l2.948-2.327l-.621-2.482zm-6.361 4.81l3.103 4.655l-1.862 3.257l-4.499-4.965zM69.262 44.69l-2.017 4.033l5.275 4.5l1.241-5.121zM67.09 58.807l-.31 5.43l6.516 2.792l-.311-5.119zm1.862 19.238l1.552 5.586l8.223.465l-2.949-6.051z\\\"/></g><path fill=\\\"none\\\" stroke=\\\"#5E000E\\\" stroke-width=\\\"3\\\" d=\\\"M17.444 125.054s.188-29.538.188-59.564c0-58.159-4.901-62.491 21.194-62.491h72.635v83.889c0 27.615 3.921 38.433-23.859 38.433c-27.78.001-70.158-.267-70.158-.267z\\\"/>\"\n\t\t},\n\t\t\"railway\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M63.932 0C39.994 0 19.164 13.145 8.164 32.576c8.596-.018 25.338-.027 25.338-.027h.004v-.008c19.788 0 20.523.089 24.388.25l2.395.088c8.338.278 18.585 1.175 26.648 7.275c4.377 3.31 10.696 10.612 14.463 15.815c3.483 4.812 4.485 10.344 2.118 15.644c-2.18 4.872-6.868 7.778-12.547 7.778H2.086s.529 2.243 1.322 4.718h121.33A63.798 63.798 0 0 0 128 64.027C128.001 28.67 99.316 0 63.932 0M33.486 38.967c-9.084 0-18.96.023-28.578.049c-1.245 3.36-2.444 6.618-3.03 9.267H51.7v6.488H.594A65.09 65.09 0 0 0 0 61.218h97.225c-.34-.663-.796-1.26-1.256-1.846c-16.621-21.474-25.562-19.613-38.352-20.158c-4.264-.176-7.157-.246-24.13-.246M.051 67.713a65.52 65.52 0 0 0 .496 5.123H90.97c4.03 0 6.286-2.285 7.02-5.123zm5.576 22.826S20.617 127.346 63.932 128c25.889 0 48.133-15.375 58.238-37.461z\\\"/>\"\n\t\t},\n\t\t\"railway-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M14.732 49.252c-5.516 0-10.316 3.03-12.851 7.508c1.98-.004 5.84-.008 5.84-.008v-.002c4.56 0 4.73.021 5.62.059l.552.02c1.92.063 4.282.271 6.14 1.677c1.009.762 2.466 2.443 3.334 3.642c.803 1.11 1.032 2.384.486 3.606c-.502 1.122-1.582 1.793-2.89 1.793H.48s.121.517.304 1.088h27.96a14.71 14.71 0 0 0 .751-4.63c0-8.147-6.61-14.753-14.764-14.753m59.227 3.514c-1.012 0-1.848.778-1.848 1.726c0 .956.836 1.735 1.848 1.735c1.02 0 1.856-.779 1.856-1.735c0-.948-.835-1.726-1.856-1.726m-29.627.94v16.452h3.48v-5.832h2.538l3.119 5.832h3.84l-3.496-6.394c1.872-.804 2.91-2.434 2.91-4.684c0-3.27-2.163-5.375-5.899-5.375zm34.072 0v16.452h3.422V53.705zm-30.591 2.843h2.345c2.009 0 2.98.892 2.98 2.531c0 1.631-.971 2.45-2.964 2.45h-2.361zm16.533 1.11c-2.957 0-4.901 1.412-5.375 3.661l3.166.258c.233-.82.964-1.422 2.193-1.422c1.165 0 1.832.588 1.832 1.6v.047c0 .795-.843.9-2.988 1.11c-2.442.224-4.637 1.044-4.637 3.8c0 2.442 1.744 3.68 4.098 3.68c1.824 0 3.004-.797 3.607-1.946h.098v1.711h3.244v-8.322c0-2.94-2.49-4.178-5.238-4.178m44.697 0c-2.957 0-4.901 1.412-5.375 3.661l3.166.258c.233-.82.964-1.422 2.193-1.422c1.165 0 1.832.588 1.832 1.6v.047c0 .795-.845.9-2.99 1.11c-2.443.224-4.635 1.044-4.635 3.8c0 2.442 1.744 3.68 4.098 3.68c1.824 0 3.005-.797 3.608-1.946h.095v1.711h3.246v-8.322c0-2.94-2.49-4.178-5.238-4.178m-36.803.16v12.34h3.422v-12.34zm11.405 0l3.359 12.34h3.615l2.121-7.76h.153l2.12 7.76h3.624l3.35-12.34h-3.454l-1.88 8.242h-.106l-2.024-8.243h-3.398l-1.992 8.291h-.113l-1.912-8.29zm31.869 0l4.427 12.693l-.2.523c-.45 1.157-1.31 1.214-2.514.844l-.772 2.555c.49.209 1.285.353 2.152.353c2.547 0 3.897-1.302 4.596-3.295L128 57.834l-3.623-.016l-2.58 9.063h-.13l-2.554-9.063zM7.716 58.23c-2.094 0-4.37.004-6.586.01c-.287.775-.563 1.526-.697 2.137h11.48v1.494H.137A14.996 14.996 0 0 0 0 63.359h22.404a2.674 2.674 0 0 0-.289-.425c-3.83-4.949-5.89-4.52-8.838-4.645c-.982-.04-1.649-.057-5.56-.057m58.469 6.207v1.309c0 1.294-1.068 2.281-2.57 2.281c-1.053 0-1.81-.49-1.81-1.43c0-.963.798-1.438 2.003-1.607c.747-.104 1.967-.28 2.377-.552zm44.697 0v1.309c0 1.294-1.068 2.281-2.57 2.281c-1.053 0-1.81-.49-1.81-1.43c0-.963.796-1.438 2-1.607c.748-.104 1.97-.28 2.38-.552zM.012 64.855c.023.4.061.794.115 1.182h20.836c.929 0 1.448-.528 1.617-1.181zm1.285 5.26s3.454 8.482 13.435 8.633c5.966 0 11.092-3.543 13.42-8.633z\\\"/>\"\n\t\t},\n\t\t\"rancher\": {\n\t\t\t\"body\": \"<path fill=\\\"#2453FF\\\" d=\\\"M79.156 33.926c-.811 0-1.826 2.23-2.334 4.868l-1.42 8.319c-.406 2.637 1.422 4.867 4.16 4.867h8.216c.811 0 1.621-.1 2.331-.303c-.304 1.42-1.418 2.433-2.94 2.433H75.607c-1.826 0-3.246-1.725-2.942-3.55l1.217-6.998c.304-1.825-1.115-3.55-2.94-3.55H13.633c-1.218 0-2.233.71-2.74 1.825L.142 58.37c-.203.304-.204.609.1.913l2.03 2.433a.78.78 0 0 0 1.014.103l7.304-5.783V91.03c0 1.724 1.318 3.042 3.043 3.042H29.86c1.725 0 3.043-1.318 3.043-3.042V78.858c0-1.724 1.319-3.043 3.043-3.043h40.47c1.724 0 3.042 1.319 3.042 3.043V91.03c0 1.724 1.319 3.043 3.043 3.043H98.73c1.724 0 3.043-1.319 3.043-3.043V77.946h-8.622c-2.637 0-4.968-2.23-4.968-4.969v-8.42c0-1.622.81-3.043 1.925-3.955v10.042c0 2.637 2.232 4.97 4.97 4.97h13.288c2.637 0 4.97-2.232 4.97-4.97v-25.46c-.101-2.84-2.333-5.07-5.071-5.07H81.084c-.203 0-.305-.001-.406.1v-1.319c0-2.637-.71-4.968-1.522-4.968zm45.036.101c-.812 0-1.522 2.232-1.522 4.971v2.23c0 2.638-2.232 4.971-4.97 4.971h-2.637v5.985h8.621c2.84-.203 4.665-2.333 4.26-4.97l-1.42-8.319c-.406-2.637-1.52-4.867-2.332-4.867z\\\"/>\"\n\t\t},\n\t\t\"rancher-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M0 75.734h9.049c4.27 0 7.116 2.033 7.116 6.1c0 3.253-2.237 5.287-4.372 5.897c.61.508 1.119 1.321 1.525 2.033c.915 1.83 1.525 3.863 3.457 3.863c.509 0 .915-.203.915-.203l-.508 3.965s-1.118.305-2.135.305c-2.542 0-4.067-1.017-5.592-4.473c-.712-1.525-1.627-4.27-2.745-4.27H5.388v8.642H0Zm5.388 3.965v5.388H7.32c1.525 0 3.355-.508 3.355-2.846c0-1.932-1.22-2.542-2.745-2.542zm18.097-3.965h5.49l7.422 21.858h-5.49l-1.322-4.168h-7.32l-1.321 4.168h-4.779zm0 13.725h4.677l-1.423-4.575c-.509-1.525-.712-3.762-.712-3.762h-.102s-.305 2.237-.813 3.762zM36.6 97.592h4.474V87.121c0-1.22-.203-2.644-.305-3.864h.102c.406 1.119 1.016 2.542 1.626 3.559l5.999 10.777h5.693v-21.86h-4.473v10.472c0 1.22.203 3.05.203 4.27h-.102c-.508-1.322-1.118-2.949-1.626-3.864l-5.795-10.878H36.6zm18.707-11.081c0 7.93 3.864 11.488 9.76 11.488c5.796 0 9.049-3.253 8.642-7.727l-4.778-.508c.407 2.847-1.424 4.27-3.66 4.27c-2.339 0-4.372-1.525-4.372-7.422c0-5.591 1.932-7.421 4.27-7.421c2.44 0 3.864 1.423 3.254 4.88l5.083-.407c.712-4.778-1.83-8.235-8.235-8.235c-6.1-.102-9.964 3.253-9.964 11.082m19.52 11.081h5.389v-9.251h6.609v9.251h5.388V75.734h-5.388v8.235h-6.609v-8.235h-5.388zm19.623 0h14.843v-4.066H99.94v-5.084h7.625v-4.066H99.94V79.8h9.048v-4.067H94.45Zm15.86-21.858h9.048c4.27 0 7.117 2.033 7.117 6.1c0 3.253-2.237 5.287-4.372 5.897c.61.508 1.119 1.321 1.525 2.033c.915 1.83 1.525 3.863 3.457 3.863c.508 0 .915-.203.915-.203l-.407 3.863s-1.118.305-2.135.305c-2.541 0-4.066-1.016-5.591-4.473c-.61-1.525-1.525-4.27-2.745-4.27h-1.22v8.642h-5.389zm5.388 3.965v5.388h1.932c1.525 0 3.355-.508 3.355-2.846c0-1.932-1.22-2.542-2.745-2.542z\\\"/><path fill=\\\"#2453FF\\\" d=\\\"m103.193 39.235l-.813-5.083c-.305-1.627-.915-2.949-1.424-2.949c-.508 0-.915 1.322-.915 3.05v1.322c0 1.627-1.321 3.05-3.05 3.05h-1.626v3.559h5.286c1.627 0 2.745-1.322 2.542-2.949m-12.098-4.372h-16.98v-.813c0-1.627-.407-3.05-.915-3.05s-1.118 1.322-1.423 2.948l-.814 5.084c-.305 1.627.915 2.948 2.542 2.948h4.982c.508 0 1.016-.101 1.423-.203c-.203.915-.915 1.525-1.83 1.525h-7.015c-1.118 0-2.033-1.017-1.83-2.135l.712-4.27c.203-1.119-.712-2.135-1.83-2.135H33.042c-.712 0-1.423.406-1.728 1.118l-6.609 10.065c-.101.203-.101.407 0 .508l1.322 1.525c.203.204.407.204.61.102l4.473-3.558v21.452c0 1.016.814 1.83 1.83 1.83h9.964c1.017 0 1.83-.814 1.83-1.83V58.45c0-1.016.813-1.83 1.83-1.83H71.37c1.017 0 1.83.814 1.83 1.83v7.524c0 1.016.813 1.83 1.83 1.83h9.963c1.017 0 1.83-.814 1.83-1.83v-8.032h-5.286c-1.627 0-3.05-1.322-3.05-3.05v-5.185c0-1.017.508-1.83 1.22-2.44v6.202c0 1.626 1.321 3.05 3.05 3.05h8.133c1.627 0 3.05-1.322 3.05-3.05V37.913c.203-1.626-1.22-3.05-2.847-3.05\\\"/>\"\n\t\t},\n\t\t\"raspberrypi\": {\n\t\t\t\"body\": \"<path fill=\\\"#050606\\\" d=\\\"M40.666.002c-.657.02-1.364.26-2.167.883C36.532.138 34.626-.12 32.92 1.4c-2.633-.337-3.488.358-4.137 1.168c-.577-.012-4.324-.586-6.042 1.94c-4.317-.504-5.683 2.5-4.137 5.303c-.881 1.345-1.796 2.673.266 5.236c-.728 1.428-.276 2.976 1.443 4.852c-.454 2.007.437 3.422 2.036 4.526c-.3 2.746 2.557 4.344 3.41 4.912c.327 1.6 1.01 3.111 4.273 3.945c.537 2.387 2.499 2.798 4.397 3.298c-6.275 3.594-11.657 8.32-11.62 19.92l-.92 1.615c-7.195 4.31-13.669 18.162-3.546 29.422c.662 3.525 1.77 6.056 2.758 8.858c1.477 11.291 11.115 16.577 13.657 17.203c3.726 2.794 7.693 5.445 13.062 7.303c5.06 5.142 10.544 7.101 16.058 7.099h.243c5.513.003 10.997-1.957 16.057-7.099c5.37-1.857 9.336-4.509 13.061-7.303c2.543-.626 12.18-5.912 13.657-17.204c.987-2.801 2.097-5.332 2.759-8.857c10.123-11.26 3.649-25.114-3.547-29.425l-.92-1.614c.037-11.598-5.345-16.325-11.62-19.92c1.898-.5 3.86-.911 4.398-3.297c3.261-.835 3.944-2.345 4.271-3.945c.854-.57 3.71-2.166 3.41-4.914c1.6-1.102 2.491-2.519 2.038-4.525c1.718-1.875 2.17-3.424 1.44-4.851c2.064-2.562 1.148-3.891.267-5.236c1.546-2.802.183-5.807-4.137-5.304c-1.718-2.524-5.464-1.95-6.042-1.94c-.649-.81-1.504-1.504-4.137-1.167c-1.704-1.52-3.611-1.26-5.578-.514c-2.334-1.814-3.88-.36-5.645.19c-2.827-.91-3.473.337-4.862.844c-3.083-.642-4.02.755-5.498 2.23l-1.72-.033c-4.649 2.699-6.96 8.195-7.777 11.02c-.82-2.826-3.124-8.322-7.773-11.02l-1.72.032c-1.48-1.475-2.417-2.871-5.5-2.229c-1.388-.507-2.033-1.754-4.862-.844c-1.159-.36-2.224-1.112-3.478-1.074l.002.001\\\"/><path fill=\\\"#63c54d\\\" d=\\\"M31.501 11.878c12.337 6.264 19.508 11.333 23.437 15.649c-2.011 7.943-12.508 8.306-16.347 8.082c.786-.36 1.443-.792 1.675-1.453c-.963-.675-4.378-.072-6.762-1.392c.915-.187 1.344-.369 1.772-1.034c-2.253-.708-4.678-1.318-6.106-2.49c.77.01 1.49.17 2.495-.518c-2.018-1.07-4.17-1.919-5.843-3.556c1.042-.025 2.168-.01 2.495-.388c-1.847-1.126-3.406-2.38-4.694-3.75c1.46.174 2.076.024 2.43-.228c-1.398-1.407-3.164-2.596-4.006-4.331c1.084.369 2.076.51 2.79-.033c-.475-1.054-2.506-1.676-3.677-4.138c1.141.109 2.352.245 2.594 0c-.53-2.126-1.438-3.32-2.33-4.558c2.442-.036 6.142.009 5.975-.195l-1.51-1.519c2.385-.632 4.826.102 6.598.647c.795-.619-.014-1.4-.985-2.2c2.028.268 3.859.728 5.514 1.359c.885-.787-.574-1.573-1.28-2.36c3.133.585 4.46 1.407 5.777 2.23c.958-.903.055-1.67-.59-2.456c2.362.861 3.578 1.974 4.859 3.07c.434-.576 1.102-1 .295-2.392c1.676.952 2.94 2.074 3.872 3.33c1.038-.65.619-1.54.625-2.36c1.742 1.397 2.849 2.882 4.202 4.333c.272-.195.51-.859.722-1.908c4.157 3.972 10.03 13.978 1.51 17.945c-7.252-5.89-15.913-10.173-25.51-13.386h.002m65.344 0C84.507 18.143 77.336 23.21 73.407 27.527c2.012 7.943 12.51 8.306 16.347 8.082c-.786-.36-1.442-.792-1.674-1.453c.964-.675 4.378-.072 6.763-1.392c-.916-.187-1.346-.369-1.773-1.034c2.252-.708 4.679-1.318 6.105-2.49c-.77.01-1.49.17-2.495-.518c2.018-1.07 4.17-1.919 5.844-3.556c-1.044-.025-2.168-.01-2.495-.388c1.847-1.126 3.405-2.38 4.694-3.75c-1.46.174-2.076.024-2.43-.228c1.397-1.407 3.164-2.596 4.006-4.331c-1.084.369-2.076.51-2.79-.033c.474-1.054 2.505-1.676 3.677-4.138c-1.142.109-2.352.245-2.595 0c.532-2.126 1.44-3.321 2.331-4.56c-2.442-.035-6.142.01-5.975-.193l1.512-1.519c-2.387-.633-4.828.1-6.599.645c-.796-.618.014-1.399.984-2.198c-2.026.267-3.859.726-5.514 1.358c-.885-.787.574-1.573 1.28-2.36c-3.132.585-4.458 1.407-5.777 2.23c-.957-.903-.054-1.67.59-2.456c-2.362.861-3.578 1.974-4.858 3.07c-.433-.576-1.103-1-.296-2.392c-1.676.952-2.94 2.074-3.872 3.33c-1.038-.651-.619-1.54-.625-2.36c-1.742 1.397-2.849 2.883-4.201 4.333c-.273-.195-.511-.86-.723-1.908c-4.156 3.972-10.03 13.978-1.51 17.945c7.249-5.892 15.908-10.174 25.507-13.386h-.001\\\"/><path fill=\\\"#c51850\\\" d=\\\"M79.092 92.768c.043 7.412-6.539 13.453-14.7 13.492c-8.16.039-14.811-5.938-14.855-13.351v-.141c-.043-7.414 6.538-13.455 14.7-13.494c8.161-.039 14.812 5.938 14.855 13.351v.141m-23.041-38.34c6.123 3.95 7.227 12.908 2.466 20.004c-4.762 7.097-13.586 9.648-19.709 5.696c-6.122-3.95-7.227-12.909-2.466-20.005c4.762-7.097 13.586-9.648 19.709-5.696m16.527-.716c-6.123 3.952-7.227 12.909-2.465 20.006c4.762 7.096 13.585 9.648 19.707 5.695c6.124-3.95 7.228-12.907 2.466-20.005c-4.762-7.096-13.584-9.646-19.708-5.695m-46.751 7.216c6.61-1.745 2.231 26.94-3.147 24.586c-5.917-4.687-7.823-18.416 3.146-24.586m76.398-.357c-6.611-1.745-2.232 26.94 3.147 24.587c5.917-4.688 7.822-18.417-3.147-24.587M80.052 39.167c11.408-1.898 20.9 4.778 20.518 16.964c-.375 4.671-24.721-16.269-20.518-16.965m-31.521-.357c-11.41-1.898-20.903 4.78-20.52 16.966c.376 4.67 24.722-16.27 20.52-16.966m15.716-2.842c-6.809-.173-13.343 4.98-13.36 7.966c-.018 3.632 5.384 7.35 13.408 7.444c8.192.057 13.42-2.975 13.447-6.723c.029-4.246-7.453-8.752-13.495-8.687m.526 74.462c5.937-.256 13.904 1.883 13.919 4.72c.099 2.755-7.225 8.98-14.312 8.86c-7.34.312-14.538-5.922-14.444-8.083c-.11-3.169 8.939-5.642 14.837-5.497m-21.97-16.815c4.226 5.017 6.153 13.828 2.626 16.425c-3.336 1.984-11.44 1.167-17.202-6.984c-3.883-6.838-3.383-13.798-.655-15.842c4.079-2.448 10.381.858 15.23 6.4m42.557-1.589c-4.575 5.277-7.122 14.9-3.785 17.999c3.19 2.408 11.752 2.071 18.078-6.574c4.593-5.806 3.054-15.501.43-18.076c-3.897-2.97-9.49.83-14.724 6.65v.002\\\"/>\"\n\t\t},\n\t\t\"raspberrypi-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#050606\\\" d=\\\"M7.384 46.845c-.176.005-.366.07-.582.238c-.527-.201-1.038-.272-1.495.137c-.705-.09-.935.096-1.108.313c-.155-.004-1.16-.157-1.62.52c-1.157-.135-1.524.67-1.11 1.421c-.235.36-.48.716.072 1.404c-.195.383-.074.798.388 1.3c-.123.539.117.918.545 1.213c-.08.738.686 1.165.915 1.317c.086.43.27.836 1.144 1.058c.144.64.67.75 1.18.884c-1.682.963-3.125 2.23-3.116 5.34l-.247.433c-1.928 1.155-3.663 4.868-.95 7.886c.177.945.474 1.624.739 2.376c.396 3.026 2.98 4.443 3.661 4.61c.999.748 2.062 1.46 3.502 1.958c1.355 1.377 2.826 1.903 4.304 1.902h.065c1.478 0 2.948-.524 4.304-1.902c1.44-.498 2.503-1.209 3.502-1.958c.68-.167 3.265-1.584 3.66-4.61c.265-.752.563-1.431.74-2.376c2.713-3.018.978-6.732-.95-7.886l-.247-.434c.01-3.109-1.433-4.376-3.115-5.339c.51-.135 1.034-.245 1.179-.884c.874-.224 1.057-.63 1.144-1.058c.229-.152.995-.58.914-1.317c.429-.296.668-.675.546-1.213c.461-.503.583-.917.387-1.3c.554-.688.307-1.043.072-1.404c.413-.75.048-1.556-1.11-1.42c-.46-.678-1.464-.525-1.62-.521c-.173-.217-.403-.404-1.108-.314c-.458-.407-.969-.337-1.496-.138c-.626-.486-1.039-.096-1.513.051c-.757-.244-.93.09-1.303.227c-.826-.172-1.077.203-1.474.598l-.46-.009c-1.247.724-1.867 2.197-2.086 2.954c-.219-.757-.837-2.23-2.082-2.954l-.462.009c-.397-.395-.648-.77-1.475-.598c-.372-.137-.544-.47-1.303-.227c-.31-.096-.596-.297-.932-.287\\\"/><path fill=\\\"#63c54d\\\" d=\\\"M4.927 50.029c3.307 1.679 5.23 3.037 6.283 4.194c-.54 2.13-3.353 2.226-4.383 2.167c.212-.097.387-.212.45-.39c-.259-.181-1.174-.02-1.813-.373c.245-.05.36-.098.475-.277c-.604-.19-1.254-.353-1.637-.668c.206.004.4.046.67-.139c-.542-.286-1.118-.514-1.567-.952c.28-.008.58-.003.668-.104a6.014 6.014 0 0 1-1.258-1.006c.391.047.556.007.65-.06c-.373-.378-.846-.697-1.072-1.161c.29.098.556.135.748-.01c-.128-.282-.672-.449-.987-1.109c.307.03.631.066.697 0c-.143-.57-.387-.889-.625-1.222c.655-.01 1.646.003 1.6-.052l-.404-.407c.64-.17 1.294.027 1.768.174c.214-.166-.003-.376-.263-.59a6.508 6.508 0 0 1 1.478.364c.238-.211-.154-.422-.343-.632c.84.156 1.196.376 1.55.596c.255-.24.014-.447-.16-.657c.634.231.96.528 1.303.823c.116-.155.296-.268.079-.642c.45.256.788.557 1.038.893c.279-.174.166-.412.167-.633c.467.375.764.773 1.127 1.161c.073-.05.137-.229.193-.51c1.114 1.064 2.69 3.746.405 4.81c-1.944-1.58-4.265-2.727-6.838-3.588m17.517 0c-3.308 1.679-5.23 3.037-6.283 4.194c.54 2.13 3.352 2.226 4.383 2.167c-.212-.097-.388-.212-.45-.39c.259-.181 1.174-.02 1.812-.373c-.245-.05-.36-.098-.474-.277c.603-.19 1.254-.353 1.636-.668c-.206.004-.4.046-.668-.139c.54-.286 1.117-.514 1.566-.952c-.28-.008-.581-.003-.67-.104a6.007 6.007 0 0 0 1.26-1.006c-.391.047-.557.007-.652-.06c.374-.378.848-.697 1.074-1.161c-.29.097-.556.135-.748-.01c.127-.282.672-.449.986-1.109c-.306.03-.63.066-.696 0c.142-.57.387-.89.625-1.222c-.655-.01-1.646.002-1.602-.052l.406-.407c-.64-.17-1.294.027-1.768.174c-.214-.166.003-.377.262-.59a6.531 6.531 0 0 0-1.477.364c-.238-.211.154-.423.342-.633c-.84.157-1.195.377-1.549.598c-.256-.243-.014-.448.159-.658c-.633.23-.96.528-1.302.822c-.116-.154-.296-.268-.08-.64a3.288 3.288 0 0 0-1.037.892c-.279-.174-.166-.412-.168-.633c-.467.375-.763.773-1.126 1.161c-.073-.052-.137-.23-.193-.51c-1.115 1.063-2.69 3.746-.405 4.81c1.942-1.58 4.263-2.728 6.837-3.588\\\"/><path fill=\\\"#c51850\\\" d=\\\"M17.684 71.712c.011 1.986-1.753 3.605-3.94 3.616c-2.188.011-3.97-1.592-3.981-3.58v-.036c-.012-1.988 1.751-3.607 3.94-3.617c2.186-.01 3.97 1.591 3.98 3.579v.038m-6.175-10.278c1.641 1.058 1.937 3.46.662 5.362c-1.278 1.902-3.643 2.586-5.284 1.527s-1.938-3.46-.662-5.363c1.277-1.902 3.643-2.586 5.283-1.526m4.431-.192c-1.641 1.058-1.937 3.46-.662 5.363c1.277 1.901 3.643 2.586 5.283 1.526c1.642-1.059 1.938-3.46.662-5.362c-1.277-1.903-3.642-2.586-5.283-1.527M3.406 63.176c1.772-.467.598 7.22-.844 6.59c-1.586-1.257-2.097-4.935.844-6.59m20.479-.096c-1.773-.467-.599 7.221.844 6.591c1.586-1.257 2.097-4.936-.844-6.59m-5.944-5.738c3.058-.509 5.603 1.281 5.5 4.547c-.1 1.253-6.627-4.36-5.5-4.547m-8.45-.095c-3.059-.51-5.602 1.28-5.5 4.547c.102 1.253 6.627-4.36 5.5-4.547m4.213-.762c-1.824-.046-3.576 1.334-3.58 2.135c-.006.974 1.442 1.97 3.593 1.996c2.196.015 3.598-.799 3.605-1.803c.008-1.138-1.998-2.345-3.618-2.328m.141 19.96c1.592-.069 3.728.505 3.732 1.265c.026.738-1.937 2.407-3.837 2.375c-1.967.083-3.896-1.588-3.872-2.167c-.028-.849 2.397-1.513 3.977-1.474m-5.889-4.507c1.133 1.345 1.65 3.707.706 4.403c-.896.532-3.068.313-4.613-1.872c-1.041-1.833-.907-3.699-.176-4.247c1.094-.656 2.783.23 4.083 1.716m11.406-.426c-1.225 1.415-1.908 3.994-1.013 4.825c.855.645 3.15.555 4.846-1.763c1.231-1.555.819-4.154.116-4.845c-1.046-.795-2.545.223-3.949 1.783\\\"/><path fill=\\\"#231f20\\\" d=\\\"M32.919 62.04h2.01c.655 0 1.143-.138 1.464-.414c.322-.277.484-.687.484-1.23c0-.532-.162-.955-.483-1.27c-.322-.313-.797-.47-1.425-.47h-2.052zm0 1.796v4.646h-2.332V56.86h4.383c1.325 0 2.361.303 3.109.907c.748.604 1.121 1.446 1.121 2.527c0 .6-.156 1.117-.47 1.547c-.315.432-.775.781-1.381 1.046c.686.203 1.18.54 1.48 1.014c.3.474.452 1.06.452 1.757v.853c0 .326.043.664.13 1.019c.089.353.24.616.452.786v.167H37.46c-.212-.17-.351-.455-.415-.853a7.185 7.185 0 0 1-.096-1.134v-.822c0-.58-.158-1.03-.475-1.354c-.316-.321-.762-.483-1.336-.483h-2.22m11.224 3.09c.41 0 .774-.101 1.094-.304c.319-.202.535-.436.646-.702V64.7h-1.301c-.495 0-.87.123-1.125.37a1.204 1.204 0 0 0-.384.899a.9.9 0 0 0 .287.694c.192.176.453.264.783.264m2.13 1.556a4.888 4.888 0 0 1-.218-.622a4.33 4.33 0 0 1-.132-.67a3.216 3.216 0 0 1-.945 1.045c-.392.277-.86.415-1.402.415c-.905 0-1.602-.233-2.091-.698c-.49-.467-.735-1.101-.735-1.904c0-.846.326-1.502.978-1.968c.652-.466 1.603-.698 2.854-.698h1.301v-.687c0-.415-.108-.737-.327-.965c-.218-.23-.54-.344-.966-.344c-.378 0-.669.092-.874.275c-.206.185-.308.438-.308.763l-2.25-.009l-.009-.047c-.036-.73.28-1.358.95-1.888c.671-.53 1.552-.794 2.642-.794c1.033 0 1.871.262 2.516.785c.643.525.965 1.272.965 2.24v3.567c0 .405.03.785.092 1.141c.06.358.157.71.29 1.063h-2.33m8.382-2.377c0-.256-.124-.478-.371-.664c-.248-.186-.707-.35-1.378-.495c-1.02-.207-1.79-.515-2.31-.922c-.519-.407-.778-.962-.778-1.664c0-.745.312-1.378.937-1.896c.626-.519 1.462-.778 2.511-.778c1.101 0 1.979.258 2.63.774c.651.516.965 1.168.938 1.955l-.015.048h-2.252c0-.345-.11-.627-.331-.846c-.221-.217-.545-.327-.97-.327c-.378 0-.675.092-.89.276a.87.87 0 0 0-.324.69c0 .266.113.485.34.655c.227.17.685.321 1.377.455c1.063.212 1.854.525 2.37.938c.517.412.775.98.775 1.703c0 .778-.333 1.412-.998 1.905c-.665.492-1.543.737-2.634.737c-1.15 0-2.058-.29-2.727-.873c-.667-.582-.985-1.247-.953-1.991l.016-.048h2.132c.015.462.167.797.455 1.005c.287.208.662.312 1.125.312c.43 0 .76-.086.985-.256a.823.823 0 0 0 .34-.695m9.22-1.88c0-.815-.136-1.475-.408-1.982c-.271-.506-.686-.76-1.245-.76c-.35 0-.651.073-.898.217a1.545 1.545 0 0 0-.586.615v3.79c.143.245.34.431.586.56c.248.127.553.191.914.191c.564 0 .978-.221 1.242-.664c.263-.442.395-1.041.395-1.798zm2.331.18c0 1.277-.296 2.305-.886 3.081c-.591.778-1.416 1.166-2.476 1.166a2.77 2.77 0 0 1-1.204-.251a2.479 2.479 0 0 1-.902-.738v4.142h-2.325V59.846h2.1l.136 1.021c.255-.378.563-.669.922-.874c.358-.205.778-.307 1.257-.307c1.07 0 1.9.418 2.49 1.253c.59.835.887 1.934.887 3.298zm6.906-.168c0-.847-.124-1.516-.372-2.012c-.247-.494-.669-.743-1.264-.743c-.363 0-.669.076-.92.23a1.584 1.584 0 0 0-.59.654v3.678c.144.262.342.463.595.602c.253.14.563.21.93.21c.602 0 1.022-.213 1.261-.64c.24-.425.36-1.03.36-1.811zm2.322.168c0 1.287-.287 2.317-.861 3.089c-.575.77-1.405 1.157-2.491 1.157c-.5 0-.938-.105-1.313-.315a2.716 2.716 0 0 1-.954-.922l-.176 1.07h-1.996V56.028h2.324v4.734a2.64 2.64 0 0 1 .898-.798a2.503 2.503 0 0 1 1.2-.279c1.096 0 1.932.413 2.508 1.241c.574.828.862 1.93.862 3.309v.168m5.053-2.923c-.432 0-.772.165-1.022.495c-.25.33-.405.765-.463 1.302l.023.04h2.859v-.207c0-.496-.116-.89-.347-1.186c-.232-.296-.582-.444-1.05-.444m.207 7.17c-1.245 0-2.24-.4-2.985-1.198c-.746-.798-1.118-1.812-1.118-3.042v-.319c0-1.283.353-2.34 1.058-3.17c.705-.83 1.65-1.241 2.838-1.236c1.165 0 2.07.35 2.714 1.052c.643.703.965 1.653.965 2.851v1.27H79.01l-.016.047c.043.567.232 1.034.57 1.4c.338.365.798.548 1.378.548c.515 0 .944-.052 1.285-.156a5.91 5.91 0 0 0 1.117-.49l.631 1.44c-.351.289-.811.527-1.382.717a5.988 5.988 0 0 1-1.898.285m9.371-6.8l-.855-.025c-.346 0-.63.072-.853.215a1.367 1.367 0 0 0-.511.607v5.836h-2.324v-8.637h2.164l.103 1.276c.202-.452.464-.805.787-1.057c.322-.253.694-.38 1.114-.38c.117 0 .224.01.323.028c.098.019.198.041.3.069zm5.723 0l-.854-.024c-.347 0-.63.072-.854.215a1.365 1.365 0 0 0-.51.607v5.835h-2.324v-8.636h2.163l.104 1.276c.202-.452.465-.805.786-1.057c.322-.253.694-.38 1.114-.38c.117 0 .224.01.323.028a4.3 4.3 0 0 1 .3.069zm4.518 3.01l.095.479h.05l1.651-5.492h2.506l-3.504 9.93a4.578 4.578 0 0 1-.998 1.56c-.42.423-1.05.635-1.891.635c-.197 0-.379-.016-.547-.048a13.39 13.39 0 0 1-.61-.135l.27-1.701l.225.032c.08.011.152.015.215.015c.384 0 .679-.094.886-.282c.208-.19.367-.425.48-.707l.27-.67l-3.065-8.63h2.506zm11.83-2.387h2.299c.648 0 1.14-.176 1.477-.53c.335-.354.502-.806.502-1.353c0-.56-.166-1.02-.499-1.386c-.331-.364-.825-.546-1.48-.546h-2.299zm0 1.797v4.214h-2.332V56.86h4.63c1.337 0 2.387.342 3.154 1.022c.767.682 1.15 1.578 1.15 2.69c0 1.113-.383 2.007-1.15 2.683c-.767.676-1.817 1.014-3.153 1.014zm10.578 4.214h-2.333v-8.636h2.333zm0-10.704h-2.333V56.03h2.333z\\\"/><path fill=\\\"#181818\\\" d=\\\"M126.185 58.331a1.513 1.513 0 1 1 0-3.026a1.513 1.513 0 0 1 0 3.026m0-3.328a1.815 1.815 0 1 0 0 3.631a1.815 1.815 0 0 0 0-3.63\\\"/><path fill=\\\"#181818\\\" d=\\\"M125.847 56.703h.467c.192 0 .295-.082.295-.278c0-.187-.103-.269-.294-.269h-.467zm-.426-.879h1.047c.348 0 .568.242.568.535c0 .23-.093.4-.308.488v.005c.21.054.27.258.284.454c.007.122.004.35.08.459h-.426c-.052-.123-.046-.31-.067-.465c-.03-.204-.11-.293-.324-.293h-.428v.76h-.426z\\\"/>\"\n\t\t},\n\t\t\"reach\": {\n\t\t\t\"body\": \"<path fill=\\\"#6AC6E7\\\" d=\\\"m65.73 21.566l26.743 27.059c-.407.43-.746.8-1.098 1.152c-9.516 9.551-19.04 19.09-28.543 28.649a8856.765 8856.765 0 0 0-29.543 29.808c-.922.938-1.406.914-2.312-.007c-5.489-5.61-11.055-11.145-16.579-16.72c-3.664-3.695-7.3-7.413-10.945-11.128c-.262-.266-.496-.563-.765-.871C22.945 59.44 43.145 39.434 63.628 19.14c.442.507 1.24 1.433 2.102 2.425m0 0\\\"/><path fill=\\\"#F45848\\\" d=\\\"M117.637 73.336c2.867 2.809 5.668 5.555 8.16 8c-9.309 9.668-18.469 19.18-27.578 28.637c-16.762-12.336-17.43-44.176-1.11-56.934c6.829 6.75 13.645 13.492 20.528 20.297m0 0\\\"/>\"\n\t\t},\n\t\t\"react\": {\n\t\t\t\"body\": \"<g fill=\\\"#61DAFB\\\"><circle cx=\\\"64\\\" cy=\\\"64\\\" r=\\\"11.4\\\"/><path d=\\\"M107.3 45.2c-2.2-.8-4.5-1.6-6.9-2.3c.6-2.4 1.1-4.8 1.5-7.1c2.1-13.2-.2-22.5-6.6-26.1c-1.9-1.1-4-1.6-6.4-1.6c-7 0-15.9 5.2-24.9 13.9c-9-8.7-17.9-13.9-24.9-13.9c-2.4 0-4.5.5-6.4 1.6c-6.4 3.7-8.7 13-6.6 26.1c.4 2.3.9 4.7 1.5 7.1c-2.4.7-4.7 1.4-6.9 2.3C8.2 50 1.4 56.6 1.4 64s6.9 14 19.3 18.8c2.2.8 4.5 1.6 6.9 2.3c-.6 2.4-1.1 4.8-1.5 7.1c-2.1 13.2.2 22.5 6.6 26.1c1.9 1.1 4 1.6 6.4 1.6c7.1 0 16-5.2 24.9-13.9c9 8.7 17.9 13.9 24.9 13.9c2.4 0 4.5-.5 6.4-1.6c6.4-3.7 8.7-13 6.6-26.1c-.4-2.3-.9-4.7-1.5-7.1c2.4-.7 4.7-1.4 6.9-2.3c12.5-4.8 19.3-11.4 19.3-18.8s-6.8-14-19.3-18.8M92.5 14.7c4.1 2.4 5.5 9.8 3.8 20.3c-.3 2.1-.8 4.3-1.4 6.6c-5.2-1.2-10.7-2-16.5-2.5c-3.4-4.8-6.9-9.1-10.4-13c7.4-7.3 14.9-12.3 21-12.3c1.3 0 2.5.3 3.5.9M81.3 74c-1.8 3.2-3.9 6.4-6.1 9.6c-3.7.3-7.4.4-11.2.4c-3.9 0-7.6-.1-11.2-.4c-2.2-3.2-4.2-6.4-6-9.6c-1.9-3.3-3.7-6.7-5.3-10c1.6-3.3 3.4-6.7 5.3-10c1.8-3.2 3.9-6.4 6.1-9.6c3.7-.3 7.4-.4 11.2-.4c3.9 0 7.6.1 11.2.4c2.2 3.2 4.2 6.4 6 9.6c1.9 3.3 3.7 6.7 5.3 10c-1.7 3.3-3.4 6.6-5.3 10m8.3-3.3c1.5 3.5 2.7 6.9 3.8 10.3c-3.4.8-7 1.4-10.8 1.9c1.2-1.9 2.5-3.9 3.6-6c1.2-2.1 2.3-4.2 3.4-6.2M64 97.8c-2.4-2.6-4.7-5.4-6.9-8.3c2.3.1 4.6.2 6.9.2c2.3 0 4.6-.1 6.9-.2c-2.2 2.9-4.5 5.7-6.9 8.3m-18.6-15c-3.8-.5-7.4-1.1-10.8-1.9c1.1-3.3 2.3-6.8 3.8-10.3c1.1 2 2.2 4.1 3.4 6.1c1.2 2.2 2.4 4.1 3.6 6.1m-7-25.5c-1.5-3.5-2.7-6.9-3.8-10.3c3.4-.8 7-1.4 10.8-1.9c-1.2 1.9-2.5 3.9-3.6 6c-1.2 2.1-2.3 4.2-3.4 6.2M64 30.2c2.4 2.6 4.7 5.4 6.9 8.3c-2.3-.1-4.6-.2-6.9-.2c-2.3 0-4.6.1-6.9.2c2.2-2.9 4.5-5.7 6.9-8.3m22.2 21l-3.6-6c3.8.5 7.4 1.1 10.8 1.9c-1.1 3.3-2.3 6.8-3.8 10.3c-1.1-2.1-2.2-4.2-3.4-6.2M31.7 35c-1.7-10.5-.3-17.9 3.8-20.3c1-.6 2.2-.9 3.5-.9c6 0 13.5 4.9 21 12.3c-3.5 3.8-7 8.2-10.4 13c-5.8.5-11.3 1.4-16.5 2.5c-.6-2.3-1-4.5-1.4-6.6M7 64c0-4.7 5.7-9.7 15.7-13.4c2-.8 4.2-1.5 6.4-2.1c1.6 5 3.6 10.3 6 15.6c-2.4 5.3-4.5 10.5-6 15.5C15.3 75.6 7 69.6 7 64m28.5 49.3c-4.1-2.4-5.5-9.8-3.8-20.3c.3-2.1.8-4.3 1.4-6.6c5.2 1.2 10.7 2 16.5 2.5c3.4 4.8 6.9 9.1 10.4 13c-7.4 7.3-14.9 12.3-21 12.3c-1.3 0-2.5-.3-3.5-.9M96.3 93c1.7 10.5.3 17.9-3.8 20.3c-1 .6-2.2.9-3.5.9c-6 0-13.5-4.9-21-12.3c3.5-3.8 7-8.2 10.4-13c5.8-.5 11.3-1.4 16.5-2.5c.6 2.3 1 4.5 1.4 6.6m9-15.6c-2 .8-4.2 1.5-6.4 2.1c-1.6-5-3.6-10.3-6-15.6c2.4-5.3 4.5-10.5 6-15.5c13.8 4 22.1 10 22.1 15.6c0 4.7-5.8 9.7-15.7 13.4\\\"/></g>\"\n\t\t},\n\t\t\"react-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#61DAFB\\\"><circle cx=\\\"64\\\" cy=\\\"47.5\\\" r=\\\"9.3\\\"/><path d=\\\"M64 81.7C71.3 88.8 78.5 93 84.3 93c1.9 0 3.7-.4 5.2-1.3c5.2-3 7.1-10.5 5.3-21.2c-.3-1.9-.7-3.8-1.2-5.8c2-.6 3.8-1.2 5.6-1.8c10.1-3.9 15.7-9.3 15.7-15.2c0-6-5.6-11.4-15.7-15.2c-1.8-.7-3.6-1.3-5.6-1.8c.5-2 .9-3.9 1.2-5.8c1.7-10.9-.2-18.5-5.4-21.5c-1.5-.9-3.3-1.3-5.2-1.3c-5.7 0-13 4.2-20.3 11.3C56.7 6.3 49.5 2.1 43.7 2.1c-1.9 0-3.7.4-5.2 1.3c-5.2 3-7.1 10.5-5.3 21.2c.3 1.9.7 3.8 1.2 5.8c-2 .6-3.8 1.2-5.6 1.8c-10.1 3.9-15.7 9.3-15.7 15.2c0 6 5.6 11.4 15.7 15.2c1.8.7 3.6 1.3 5.6 1.8c-.5 2-.9 3.9-1.2 5.8c-1.7 10.7.2 18.3 5.3 21.2c1.5.9 3.3 1.3 5.2 1.3c5.8.2 13-4 20.3-11m-5.6-13.5c1.8.1 3.7.1 5.6.1c1.9 0 3.8 0 5.6-.1c-1.8 2.4-3.7 4.6-5.6 6.7c-1.9-2.1-3.8-4.3-5.6-6.7M46 57.9c1 1.7 1.9 3.3 3 4.9c-3.1-.4-6-.9-8.8-1.5c.9-2.7 1.9-5.5 3.1-8.3c.8 1.6 1.7 3.3 2.7 4.9m-5.8-24.1c2.8-.6 5.7-1.1 8.8-1.5c-1 1.6-2 3.2-3 4.9c-1 1.7-1.9 3.3-2.7 5c-1.3-2.9-2.3-5.7-3.1-8.4m5.5 13.7c1.3-2.7 2.7-5.4 4.3-8.1c1.5-2.6 3.2-5.2 4.9-7.8c3-.2 6-.3 9.1-.3c3.2 0 6.2.1 9.1.3c1.8 2.6 3.4 5.2 4.9 7.8c1.6 2.7 3 5.4 4.3 8.1c-1.3 2.7-2.7 5.4-4.3 8.1c-1.5 2.6-3.2 5.2-4.9 7.8c-3 .2-6 .3-9.1.3c-3.2 0-6.2-.1-9.1-.3c-1.8-2.6-3.4-5.2-4.9-7.8c-1.6-2.7-3-5.4-4.3-8.1m39.1-5.4l-2.7-5c-1-1.7-1.9-3.3-3-4.9c3.1.4 6 .9 8.8 1.5c-.9 2.8-1.9 5.6-3.1 8.4m0 10.8c1.2 2.8 2.2 5.6 3.1 8.3c-2.8.6-5.7 1.1-8.8 1.5c1-1.6 2-3.2 3-4.9c.9-1.5 1.8-3.2 2.7-4.9m2.3 34.7c-.8.5-1.8.7-2.9.7c-4.9 0-11-4-17-10c2.9-3.1 5.7-6.6 8.5-10.5c4.7-.4 9.2-1.1 13.4-2.1c.5 1.8.8 3.6 1.1 5.4c1.4 8.5.3 14.6-3.1 16.5m5.2-52.7c11.2 3.2 17.9 8.1 17.9 12.6c0 3.9-4.6 7.8-12.7 10.9c-1.6.6-3.4 1.2-5.2 1.7c-1.3-4.1-2.9-8.3-4.9-12.6c2-4.3 3.7-8.5 4.9-12.6m-8-28.2c1.1 0 2 .2 2.9.7c3.3 1.9 4.5 7.9 3.1 16.5c-.3 1.7-.7 3.5-1.1 5.4c-4.2-.9-8.7-1.6-13.4-2.1c-2.7-3.9-5.6-7.4-8.5-10.5c6-5.9 12.1-10 17-10M69.6 26.8c-1.8-.1-3.7-.1-5.6-.1s-3.8 0-5.6.1c1.8-2.4 3.7-4.6 5.6-6.7c1.9 2.1 3.8 4.4 5.6 6.7M40.9 7.4c.8-.5 1.8-.7 2.9-.7c4.9 0 11 4 17 10c-2.9 3.1-5.7 6.6-8.5 10.5c-4.7.4-9.2 1.1-13.4 2.1c-.5-1.8-.8-3.6-1.1-5.4c-1.4-8.5-.3-14.5 3.1-16.5m-5.2 52.7C24.5 56.9 17.8 52 17.8 47.5c0-3.9 4.6-7.8 12.7-10.9c1.6-.6 3.4-1.2 5.2-1.7c1.3 4.1 2.9 8.3 4.9 12.6c-2 4.3-3.7 8.6-4.9 12.6m2.1 11c.3-1.7.7-3.5 1.1-5.4c4.2.9 8.7 1.6 13.4 2.1c2.7 3.9 5.6 7.4 8.5 10.5c-6 5.9-12.1 10-17 10c-1.1 0-2-.2-2.9-.7c-3.4-1.9-4.5-8-3.1-16.5m-4.2 41.2c2.2-2.7 2.3-5.7 1.1-8.7c-1.2-3-3.7-4.4-6.8-4.5c-3.7-.1-7.5 0-11.2 0H16V125h3v-9.8h4.7c.6 0 1.1.2 1.4.7l6 9.3c.1.2.4.5.6.5h3.9c-2.4-3.7-4.7-7.2-7.1-10.8c2.1-.3 3.9-1 5.1-2.6m-14.6-.2v-9.9h1.1c2.3 0 4.7-.1 7 .1c2.7.1 4.6 2.2 4.6 4.9s-2.2 4.8-4.9 4.9c-2.4.1-4.8 0-7.8 0m38.7 1.3c-1.6-7-8-8.8-12.9-6.6c-3.8 1.7-5.5 5-5.6 9.1c-.1 3.1.8 5.9 3.2 8c2.7 2.4 6 2.7 9.4 2.1c1.9-.4 3.6-1.3 4.9-2.7c-.5-.7-1-1.4-1.5-2c-2.8 2.4-5.9 3.2-9.3 1.6c-2.2-1.1-3.3-3.8-3.5-5.8h15.5v-1.3c.1-.9 0-1.7-.2-2.4M42.6 115c-.3-3 2.7-6.2 6-6.2c3.8-.1 6.2 2.2 6.3 6.2zm30.7-8.7c-1.5-.3-3.1-.4-4.6-.3c-2.4.2-4.5 1.3-6.2 3.1c.5.7.9 1.4 1.5 2.2c.2-.2.4-.4.6-.5c1.6-1.5 3.5-2.3 5.8-2.1c1.8.1 3.5.7 4 2.5c.4 1.4.3 2.9.4 4.4c-.3 0-.4-.1-.5-.2c-2.4-2-5.1-2.4-8-1.7c-2.7.7-4.4 2.8-4.6 5.5c-.2 3.1 1.2 5.4 3.9 6.5c1.7.7 3.6.7 5.4.3c1.4-.3 2-1.1 4-2.2v1.3h2.8c0-4 .1-8.9 0-13.5c0-2.9-1.7-4.7-4.5-5.3m1.4 12.6c-.1.3 0 .6 0 .9c0 2.1-.5 2.8-2.5 3.6c-1.4.5-2.9.7-4.4.2c-1.7-.5-2.9-2-2.9-3.7c-.1-1.7 1-3.4 2.7-3.9c2.3-.8 4.4-.3 6.3 1.1c.6.5 1 1 .8 1.8m15.6-9.9c2.6-.8 5-.3 6.8 1.9l.3.2c.7-.6 1.3-1.2 2.1-1.9c-.3-.3-.4-.5-.6-.8c-2.9-3.1-8.6-3.5-12.1-1c-4.9 3.6-4.8 10.6-2.4 14.3c2.3 3.5 5.6 4.7 9.5 4.2c2.3-.3 4.2-1.4 5.7-3.3c-.7-.6-1.4-1.2-2.1-1.9c-.2.2-.3.3-.4.5c-2.7 3-7.2 2.7-9.6-.5c-1.4-1.9-1.7-4.1-1.3-6.3c.2-2.5 1.5-4.5 4.1-5.4m20.8 13.6c-.2.1-.3.2-.3.2c-.8.6-1.6.7-2.5.4c-.9-.4-1-1.2-1.1-2v-11.4c0-.2 0 .2.1-.8h3.8v-3h-4v-5h-3v5.4h-2.6c-.2 0-.5.2-.5.4c-.1.7 0 1.2 0 2.2h3.2v12.8c0 1.6.4 3 1.8 3.8c1.5.9 4.4.7 5.7-.4c.2-.1.3-.5.3-.6c-.3-.6-.6-1.3-.9-2\\\"/></g>\"\n\t\t},\n\t\t\"reactbootstrap\": {\n\t\t\t\"body\": \"<path fill=\\\"#41e0ff\\\" d=\\\"M41.135 3.815c-2.65 0-5.017.593-7.037 1.762c-1.943 1.124-3.575 2.8-4.853 4.98c-1.197 2.043-2.079 4.529-2.623 7.389c-1.046 5.513-.82 12.414.657 19.954c.186.949.391 1.91.612 2.865a89.572 89.572 0 0 0-3.41 1.105c-7.118 2.482-13.07 5.725-17.213 9.379c-2.148 1.892-3.81 3.893-4.947 5.945c-1.208 2.183-1.82 4.421-1.82 6.654c0 4.476 2.479 9.012 7.17 13.126c4.416 3.875 10.662 7.259 18.057 9.788c.687.233 1.386.46 2.089.677a87.838 87.838 0 0 0-.678 3.222c-1.406 7.406-1.57 14.182-.478 19.596c.568 2.805 1.469 5.246 2.68 7.256c1.286 2.136 2.92 3.786 4.854 4.901c2.038 1.175 4.436 1.771 7.129 1.771c3.665 0 7.764-1.087 12.18-3.23c4.331-2.102 8.752-5.112 13.139-8.946a70.286 70.286 0 0 0 2.068-1.882h1.04v-.002h31.485c4.592 0 8.554-.67 11.883-2.01c3.337-1.338 6.052-3.145 8.189-5.412s3.695-4.974 4.694-8.117c1-3.117 1.498-6.493 1.498-10.1c.002-6.289-1.138-11.493-3.395-15.668c-2.238-4.116-5.531-6.786-9.88-8.01a.17.17 0 0 1-.106-.171a.179.179 0 0 1 .081-.16c3.238-1.8 5.726-4.363 7.47-7.633c1.756-3.298 2.635-7.267 2.635-11.906c0-7.654-1.937-13.348-5.793-17.135c-3.856-3.788-8.989-5.67-15.38-5.67h-34.46a84.339 84.339 0 0 0-1.63-1.491c-4.556-4.042-9.098-7.213-13.505-9.417c-4.518-2.263-8.691-3.41-12.402-3.41m.038 8.992c2.295 0 5.266.901 8.588 2.607c3.601 1.85 7.506 4.602 11.293 7.964c.235.209.475.425.72.65c-3.33 3.683-6.613 7.775-9.768 12.181c-5.376.525-10.544 1.31-15.383 2.334a80.628 80.628 0 0 1-.49-2.298l-.014-.078c-1.153-5.895-1.434-11.28-.813-15.567c.538-3.685 1.74-6.319 3.305-7.225c.65-.377 1.512-.567 2.562-.567zM68.48 29.82v68.336l-4.052-5.002l-2.647-3.268c-1.336-1.65-3.476-4.702-6.028-8.594a153.112 153.112 0 0 1-4.207-6.781l-.077-.132c-1.223-2.109-2.13-3.807-2.86-5.171a206.913 206.913 0 0 1-2.68-5.192l.158-.309l.01-.017c.955-1.947 1.96-3.901 2.994-5.81l.01-.016l1.097-2.13l1.62-2.685l.011-.018c.605-1.03 1.233-2.07 1.866-3.09l1.116-1.842c1.485-2.458 2.678-4.251 4.561-6.85c1.015-1.397 1.977-2.625 3.501-4.53l.004-.004l.075-.095l.03-.038c.618-.789 1.243-1.566 1.856-2.311l.02-.025l.012-.015a440.252 440.252 0 0 1 3.61-4.411m12.65 1.344h20.26c3.398 0 5.998.955 7.797 2.838c1.799 1.882 2.697 5.156 2.697 9.798c0 4.129-.999 7.276-2.999 9.494s-4.498 3.302-7.497 3.302h-20.26c-.074 0-.135-.079-.135-.175l.001-25.082c0-.097.06-.175.136-.175M45.47 46.096a166.455 166.455 0 0 0-4.197 7.276a121.237 121.237 0 0 1-2.208-6.136a123.69 123.69 0 0 1 6.405-1.14m-15.16 3.351c1.523 4.723 3.43 9.608 5.67 14.54c-2.273 5.014-4.206 9.977-5.75 14.77a63.664 63.664 0 0 1-1.591-.52c-6.148-2.1-11.267-4.813-14.806-7.843c-2.708-2.319-4.324-4.765-4.324-6.543c0-1.826 1.616-4.178 4.436-6.458c3.283-2.654 7.954-5.08 13.5-7.012c.942-.327 1.901-.64 2.864-.934zm50.82 18.747h21.952c3.799 0 6.718 1.187 8.836 3.662c2.12 2.474 3.16 5.957 3.16 10.522c0 4.641-1.06 8.252-3.158 10.779c-2.08 2.552-5.038 3.82-8.837 3.82H81.13c-.075 0-.136-.079-.136-.176V68.37c0-.096.06-.174.136-.174zM41.28 74.59a165.919 165.919 0 0 0 4.328 7.467a116.576 116.576 0 0 1-6.62-1.105a122.611 122.611 0 0 1 2.292-6.362m-4.73 15.052c4.775.977 10.002 1.714 15.562 2.191c3.186 4.437 6.496 8.557 9.85 12.261c-.413.381-.831.757-1.247 1.121c-4.856 4.246-9.733 7.314-14.1 8.876l-.091.032c-1.958.691-3.706 1.041-5.193 1.041c-1.096 0-1.982-.19-2.632-.564c-1.582-.913-2.813-3.49-3.378-7.07c-.66-4.172-.429-9.427.667-15.197c.171-.895.358-1.796.563-2.69z\\\"/>\"\n\t\t},\n\t\t\"reactnavigation\": {\n\t\t\t\"body\": \"<path fill=\\\"#7b61c1\\\" d=\\\"M62.987.01C51.963.149 41.123 3.84 32.055 10.05C13.9 18.677 1.56 37.985 1.154 58.06c.244 6.244-.427 12.516.603 18.727c2.664 17.792 14.557 33.896 30.889 41.498c16.57 11.683 39.682 12.93 57.45 3.194c4.201-2.634 8.652-4.813 12.794-7.546c16.033-10.878 25.507-30.631 23.747-49.95c1.83-20.218-8.687-40.908-26.077-51.378c-3.468-1.966-6.933-3.901-10.331-5.991C81.905 2.139 72.437-.169 62.987.01m.102 3.854a52.796 52.796 0 0 1 9.595.726c-4.104-.218-8.141 1.231-12.197.272c-1.58-.235-3.983-.202-5.057-.305a54.47 54.47 0 0 1 7.659-.693M53.07 8.528c-5.668 2.419-10.88 5.917-15.173 10.345c-5.955 1.46-11.725 4.365-16.508 7.927c3.659-5.566 8.32-10.688 14.058-14.119c5.566-2.413 11.554-3.917 17.623-4.153m21.819 0c6.63.363 13.401 1.845 19.223 5.09a48.776 48.776 0 0 1 12.484 13.223c-4.938-3.815-10.753-6.399-16.678-8.114c-4.267-4.364-9.422-7.803-15.029-10.199m-10.91.748c6.899 1.22 13.486 4.162 19.03 8.44c-6.467-.538-13.113.468-19.035 3.154c-5.919-2.693-12.561-3.688-19.024-3.153c5.54-4.278 12.136-7.221 19.03-8.44zm-16.367 12.14c4.014-.013 8.065.496 11.863 1.829c-4.71 2.733-8.01 7.116-11.837 10.847c-3.011 1.978-6.876 1.755-10.384 3.049c-2.187.673-4.318 1.524-6.339 2.594c1.344-6.49 4.532-12.834 9.25-17.424c2.439-.572 4.949-.8 7.447-.895m31.819 0c2.936.15 6.233.031 8.862 1.254C92.62 27.405 95.868 33.52 97 39.71c-4.398-2.418-9.353-3.406-14.2-4.433c-2.152-.452-4.165-2.66-5.673-4.508c-2.516-2.872-5.468-5.505-8.617-7.532c3.493-1.23 7.229-1.747 10.92-1.82zM33.38 24.4c-3.772 5.335-6.026 11.728-6.884 18.12c-5.234 3.774-9.37 9.004-12.136 14.825c-.903-6.992-.23-14.292 2.328-20.86c4.516-5.26 10.266-9.47 16.691-12.085zm61.198 0c6.49 2.678 12.435 6.922 16.857 12.37a44.03 44.03 0 0 1 2.163 20.575c-2.727-5.956-7.183-11.112-12.254-15.064c-.69-6.403-3.112-12.592-6.766-17.88zm-30.617.721c5.44 2.528 9.34 7.265 13.347 11.495c2.832 2.545 5.78 2.572 9.439 3.495c3.865.815 7.621 2.305 10.927 4.481c.504 6.057-1.689 11.751-3.338 17.434c-.929 5.273 2.62 9.985 3.012 15.177c.144 2.066.79 4.548.068 6.407c-4.937 3.404-10.908 4.288-16.58 5.726c-4.972 1.828-7.285 7.178-11.527 10.138c-1.739 1.2-3.618 2.97-5.623 3.279c-5.346-2.543-9.093-7.218-13.078-11.376c-3.91-3.42-9.633-2.763-14.197-4.858c-2.11-.85-4.45-1.762-6.128-3.212c-.505-6.087 1.8-11.788 3.381-17.51c.734-5.195-2.599-9.817-3.072-14.923c-.295-2.085-.4-4.19-.307-6.292c4.839-3.376 10.911-4.506 16.373-5.704c2.313-.6 5.002-2.91 6.737-5.178c2.986-3.458 6.472-6.496 10.566-8.579m-47.074 1.65c-2.294 3.56-3.134 7.877-6.095 10.995c-.804.912-2.47 3.971-2.518 3.813a51.232 51.232 0 0 1 8.613-14.807zm94.183 0c3.75 4.471 6.743 9.72 8.731 15.123c-1.852-3.715-5.153-6.5-6.371-10.524c-.713-1.57-1.474-3.118-2.36-4.598zM10.466 45.713c-.766 6.146-.253 12.445 1.36 18.399c-1.707 5.884-2.07 12.116-1.366 18.185c-2.983-5.923-5.098-12.521-5.19-19.18c.66-6.043 2.371-12.014 5.196-17.404m107.028 0c2.984 5.86 4.978 12.373 5.233 18.96c-.66 6.123-2.36 12.164-5.227 17.624c.7-6.092.344-12.35-1.387-18.254c1.693-5.935 2.114-12.207 1.38-18.33zm-91.062 1.764c-.07 5.319 2.203 10.83 3.425 15.527c.323 3.974-2.168 7.536-2.661 11.443a36.535 36.535 0 0 0-.775 6.102c-4.95-4.39-8.554-10.204-10.545-16.498c1.938-6.341 5.603-12.165 10.556-16.574m75.095 0c4.925 4.46 8.871 10.362 10.49 16.787c-2.01 6.215-5.588 11.955-10.49 16.295c-.001-5.407-2.07-10.429-3.424-15.537c-.398-3.358 1.773-6.718 2.398-10.24c.587-2.386.973-4.843 1.026-7.305M14.365 70.703c2.78 5.872 6.989 11.102 12.249 14.924c.559 6.445 3.268 12.836 6.712 18.006c-6.527-2.77-12.642-7-16.938-12.646c-2.173-6.506-2.967-13.475-2.023-20.284m99.23 0c.88 7.025.285 14.465-2.446 20.994c-4.51 5.202-10.208 9.349-16.582 11.96c3.67-5.349 6.158-11.566 6.78-18.044c5.276-3.807 9.463-9.047 12.248-14.91M8.153 86.148c1.775 3.63 5.066 6.305 6.247 10.216c.69 1.66 1.56 3.233 2.416 4.81c-3.734-4.456-6.633-9.584-8.663-15.026m111.653 0c-2.03 5.443-4.928 10.57-8.663 15.026c1.822-2.757 2.577-6.119 4.434-8.788c1.534-1.992 3.018-4.031 4.23-6.238zm-88.904 2.124c4.676 2.723 10.071 3.4 15.183 4.807c3.568 1.675 5.616 5.905 8.888 8.327a31.143 31.143 0 0 0 4.526 3.387c-6.288 2.095-13.256 2.41-19.647.793c-4.432-4.832-7.672-10.869-8.95-17.314m66.156 0c-1.293 6.499-4.556 12.553-9.04 17.414c-6.416 1.42-13.392 1.243-19.53-.912c4.658-2.67 7.926-6.992 11.663-10.705c3.063-2.166 7.573-1.916 11.158-3.379a33.684 33.684 0 0 0 5.749-2.418m-75.743 12.865c4.905 3.785 10.628 6.513 16.63 8.043c4.252 4.465 9.51 7.9 15.154 10.345c-6.728-.452-13.654-1.845-19.508-5.28c-4.827-3.6-9.045-8.017-12.276-13.108m85.33 0c-3.689 5.6-8.37 10.797-14.168 14.224a50.077 50.077 0 0 1-17.617 4.164c5.67-2.437 10.913-5.933 15.205-10.356c5.978-1.535 11.694-4.256 16.58-8.032m-42.677 6.057c5.934 2.622 12.544 3.65 19.008 3.143c-5.633 4.27-12.362 7.48-19.38 8.364c-6.739-1.286-13.197-4.165-18.609-8.364c6.46.498 13.047-.503 18.98-3.143zm.012 15.511c2.824.494 5.69.684 8.553.739a50.224 50.224 0 0 1-17.107 0c2.866-.052 5.726-.249 8.554-.739\\\"/>\"\n\t\t},\n\t\t\"reactrouter\": {\n\t\t\t\"body\": \"<path fill=\\\"#F44250\\\" d=\\\"M99.04 50.315c-3.646-1.148-5.528-.761-9.351-1.18c-5.91-.645-8.265-2.959-9.264-8.913c-.559-3.324.101-8.191-1.326-11.204c-2.729-5.746-9.115-8.323-15.53-6.852c-5.417 1.244-9.924 6.666-10.174 12.232c-.285 6.355 3.33 11.778 9.537 13.65c2.95.89 6.083 1.338 9.163 1.565c5.649.413 6.083 3.558 7.61 6.147c.964 1.632 1.897 3.24 1.897 8.107s-.939 6.474-1.896 8.106c-1.528 2.583-3.413 4.275-9.062 4.693c-3.08.228-6.22.676-9.162 1.567c-6.208 1.877-9.823 7.293-9.538 13.649c.25 5.566 4.757 10.988 10.174 12.232c6.415 1.476 12.801-1.106 15.53-6.852c1.433-3.013 2.218-6.427 2.777-9.75c1.005-5.955 3.36-8.269 9.264-8.915c3.823-.418 7.78 0 11.363-2.038c3.785-2.77 7.168-6.93 7.168-12.692c0-5.764-3.645-11.806-9.18-13.552\\\"/><path fill=\\\"#121212\\\" d=\\\"M38.4 77.373c-7.45 0-13.528-6.098-13.528-13.575c0-7.476 6.077-13.574 13.527-13.574c7.45 0 13.528 6.098 13.528 13.574c0 7.47-6.083 13.575-13.528 13.575zM13.48 104.96C6.04 104.942-.018 98.82 0 91.337c.018-7.47 6.119-13.55 13.575-13.526c7.444.018 13.503 6.14 13.48 13.622c-.018 7.464-6.12 13.545-13.575 13.527m100.512 0c-7.462.041-13.586-6.015-13.629-13.473c-.041-7.488 5.994-13.634 13.426-13.676c7.462-.042 13.587 6.014 13.629 13.472c.041 7.482-5.994 13.635-13.426 13.677\\\"/>\"\n\t\t},\n\t\t\"reactrouter-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#F44250\\\" d=\\\"M80.522 44.186c-1.833-.593-2.78-.393-4.702-.609c-2.972-.333-4.156-1.528-4.658-4.603c-.281-1.717.05-4.23-.667-5.786c-1.372-2.967-4.584-4.298-7.81-3.538c-2.724.642-4.99 3.442-5.116 6.317c-.143 3.281 1.675 6.082 4.796 7.048c1.483.46 3.059.692 4.608.809c2.84.213 3.059 1.837 3.827 3.174c.484.843.954 1.673.954 4.186s-.473 3.344-.954 4.187c-.768 1.333-1.716 2.207-4.557 2.423c-1.548.118-3.127.35-4.607.81c-3.122.969-4.94 3.766-4.796 7.048c.125 2.874 2.392 5.674 5.116 6.316c3.226.763 6.437-.57 7.81-3.538c.72-1.556 1.115-3.319 1.396-5.035c.505-3.075 1.689-4.27 4.658-4.604c1.923-.216 3.912 0 5.714-1.052c1.903-1.431 3.604-3.579 3.604-6.555c0-2.976-1.833-6.096-4.616-6.998\\\"/><path fill=\\\"#121212\\\" d=\\\"M50.03 58.159c-3.747 0-6.802-3.15-6.802-7.01c0-3.861 3.055-7.01 6.802-7.01s6.802 3.149 6.802 7.01c0 3.858-3.059 7.01-6.802 7.01M37.498 72.405c-3.74-.009-6.787-3.17-6.778-7.035c.009-3.857 3.077-6.997 6.826-6.985c3.743.01 6.79 3.171 6.778 7.035c-.009 3.855-3.077 6.995-6.826 6.985m50.544 0c-3.752.022-6.832-3.106-6.853-6.957c-.021-3.867 3.014-7.041 6.75-7.063c3.753-.021 6.833 3.106 6.854 6.958c.02 3.863-3.014 7.04-6.751 7.062M12.958 97.012c-.476-.513-.544-1.137-.748-3.234c-.16-1.629-1.022-2.454-2.497-2.744c1.748-.223 3.041-1.562 3.041-3.614c0-2.744-1.838-4.462-5.537-4.462H0v14.054h3.79V92.35h2.564c1.294 0 1.998.357 2.111 1.963c.114 1.45.295 2.32.59 2.7zM3.79 89.428v-3.436h2.746c1.634 0 2.451.602 2.451 1.74c0 1.294-.817 1.696-2.451 1.696zm17.585 4.037c-.34.781-.976 1.116-1.975 1.116c-1.112 0-2.02-.58-2.11-1.807h7.103V91.77c0-2.7-1.793-4.975-5.174-4.975c-3.155 0-5.515 2.253-5.515 5.399c0 3.167 2.315 5.086 5.56 5.086c2.678 0 4.54-1.272 5.061-3.547zm-4.04-2.431c.136-.937.658-1.651 1.838-1.651c1.09 0 1.68.758 1.725 1.65zm14.404 1.829c0 1.294-.84 2.052-1.884 2.052c-.612 0-1.02-.334-1.02-.847c0-.647.521-.915 1.406-1.093l1.498-.268zm3.609-2.164c0-2.766-1.975-3.904-4.653-3.904c-3.04 0-4.698 1.517-5.015 3.703l3.404.224c.159-.737.567-1.25 1.384-1.25c.885 0 1.271.491 1.271 1.316v.157l-2.837.468c-2.2.38-3.608 1.205-3.608 3.123c0 1.696 1.294 2.7 3.268 2.7c1.611 0 2.769-.603 3.359-1.763c.34 1.138 1.316 1.762 2.564 1.762c1.044 0 1.77-.29 2.292-.646v-1.92a2.124 2.124 0 0 1-.817.157c-.386 0-.612-.223-.612-.736V90.7zm1.848 1.339c0 3.167 2.338 5.242 5.538 5.242c3.04 0 4.743-1.919 4.993-4.328l-3.019-.223c-.25 1.227-.862 1.83-1.929 1.83c-1.112 0-1.884-.737-1.884-2.521s.772-2.521 1.884-2.521c1.067 0 1.68.58 1.93 1.807l3.018-.201c-.25-2.387-1.952-4.328-4.993-4.328c-3.2 0-5.538 2.097-5.538 5.243m12.3 2.208c0 2.343 1.61 3.034 3.313 3.034c1.384 0 2.27-.335 3.041-.892v-2.343c-.613.246-1.112.335-1.566.335c-.749 0-1.157-.335-1.157-1.182V89.56h2.632v-2.498h-2.632v-2.744h-2.315l-.34 1.294c-.25.915-.568 1.45-1.59 1.606l-.748.112v2.23h1.361v4.685zm24.897 2.766c-.476-.513-.545-1.137-.749-3.234c-.159-1.629-1.021-2.454-2.496-2.744c1.747-.223 3.04-1.562 3.04-3.614c0-2.744-1.837-4.462-5.537-4.462h-7.216v14.054h3.79V92.35h2.564c1.294 0 1.997.357 2.11 1.963c.114 1.45.296 2.32.59 2.7zm-9.168-7.584v-3.436h2.746c1.634 0 2.45.602 2.45 1.74c0 1.294-.816 1.696-2.45 1.696h-2.747zm13.613 2.61c0-1.495.545-2.521 1.838-2.521c1.271 0 1.838 1.026 1.838 2.52s-.567 2.521-1.838 2.521c-1.293 0-1.838-1.026-1.838-2.52m7.376 0c0-3.079-2.247-5.243-5.538-5.243c-3.313 0-5.537 2.164-5.537 5.243c0 3.1 2.224 5.242 5.537 5.242c3.29 0 5.538-2.142 5.538-5.242m8.13-.09c0 1.517-.453 2.499-1.61 2.499c-1.113 0-1.5-.736-1.5-2.075v-5.309H87.56v6.269c0 2.074.84 3.948 3.608 3.948c1.52 0 2.632-.647 3.177-1.762v1.494h3.676v-9.949h-3.676v4.885zm6.037 2.298c0 2.343 1.611 3.034 3.313 3.034c1.384 0 2.27-.335 3.041-.892v-2.343c-.613.246-1.112.335-1.566.335c-.748 0-1.158-.335-1.158-1.182V89.56h2.633v-2.498h-2.633v-2.744h-2.314l-.34 1.294c-.25.915-.568 1.45-1.59 1.606l-.748.112v2.23h1.362v4.685zm14.896-.78c-.34.78-.975 1.115-1.974 1.115c-1.112 0-2.019-.58-2.111-1.807h7.104V91.77c0-2.7-1.793-4.975-5.175-4.975c-3.154 0-5.515 2.253-5.515 5.399c0 3.167 2.315 5.086 5.561 5.086c2.678 0 4.539-1.272 5.061-3.547zm-4.039-2.432c.136-.937.658-1.651 1.838-1.651c1.09 0 1.68.758 1.724 1.65h-3.562zm16.4-3.86c-.25-.2-.794-.379-1.407-.379c-1.339 0-2.405.915-2.769 2.03v-1.762h-3.676v9.95h3.676v-4.551c0-1.674.84-2.298 2.201-2.298c.704 0 1.249.134 1.749.424z\\\"/>\"\n\t\t},\n\t\t\"readthedocs\": {\n\t\t\t\"body\": \"<path fill=\\\"#32322a\\\" d=\\\"M57.62 61.68c-1.7.24-2.87 1.78-2.62 3.43a3.07 3.07 0 0 0 2.22 2.54s7.47 2.46 20.18 3.51c10.21.85 21.8-.73 21.8-.73c1.7-.04 3.03-1.45 2.99-3.15a3.065 3.065 0 0 0-3.15-2.99c-.2 0-.4.04-.61.08c0 0-11.34 1.41-20.55.65c-12.15-.97-18.77-3.19-18.77-3.19c-.48-.16-1.01-.24-1.49-.16Zm0-15.22c-1.7.24-2.87 1.78-2.62 3.43a3.07 3.07 0 0 0 2.22 2.54s7.47 2.46 20.18 3.51c10.21.85 21.8-.73 21.8-.73c1.7-.04 3.03-1.45 2.99-3.15a3.065 3.065 0 0 0-3.15-2.99c-.2 0-.4.04-.61.08c0 0-11.34 1.41-20.55.65c-12.15-.97-18.77-3.19-18.77-3.19c-.48-.16-1.01-.24-1.49-.16Zm0-15.22c-1.7.24-2.87 1.78-2.62 3.43a3.07 3.07 0 0 0 2.22 2.54s7.47 2.46 20.18 3.51c10.21.85 21.8-.73 21.8-.73c1.7-.04 3.03-1.45 2.99-3.15a3.065 3.065 0 0 0-3.15-2.99c-.2 0-.4.04-.61.08c0 0-11.34 1.41-20.55.65c-12.15-.97-18.77-3.19-18.77-3.19c-.48-.16-1.01-.2-1.49-.16Zm0-15.18c-1.7.24-2.87 1.78-2.62 3.43a3.07 3.07 0 0 0 2.22 2.54s7.47 2.46 20.18 3.51c10.21.85 21.8-.73 21.8-.73c1.7-.04 3.03-1.45 2.99-3.15a3.065 3.065 0 0 0-3.15-2.99c-.2 0-.4.04-.61.08c0 0-11.34 1.41-20.55.65c-12.15-.97-18.77-3.19-18.77-3.19a2.74 2.74 0 0 0-1.49-.16ZM36.31 0C20.32.12 14.39 5.05 14.39 5.05v119.37s5.81-5.01 24.54-4.24s22.57 7.35 45.58 7.79c23.01.44 28.78-3.55 28.78-3.55l.32-121.67S103.28 5.7 83.09 5.86C62.95 6.01 58.11.73 39.62.12C38.49.04 37.4 0 36.31 0m13.36 7.79s9.69 3.19 27.57 4.08c15.14.77 30.28-1.49 30.28-1.49v108.15s-7.67 4.04-26.84 2.66c-14.86-1.05-31.2-6.7-31.2-6.7l.2-106.69Zm-9.32 2.83c1.7 0 3.11 1.37 3.11 3.11s-1.37 3.11-3.11 3.11c0 0-5.01.04-8.07.32c-5.13.52-8.64 2.38-8.64 2.38c-1.49.81-3.39.2-4.16-1.29c-.81-1.49-.2-3.39 1.29-4.16s4.56-2.42 10.9-3.03c3.67-.4 8.68-.44 8.68-.44m-2.99 15.26c1.7-.04 2.99 0 2.99 0c1.7.2 2.91 1.74 2.7 3.43a3.08 3.08 0 0 1-2.7 2.7s-5.01.04-8.07.32c-5.13.52-8.64 2.38-8.64 2.38c-1.49.81-3.39.2-4.16-1.29c-.81-1.49-.2-3.39 1.29-4.16c0 0 4.56-2.42 10.9-3.03c1.86-.24 4-.32 5.69-.36Zm2.99 15.18c1.7 0 3.11 1.37 3.11 3.11s-1.37 3.11-3.11 3.11c0 0-5.01-.04-8.07.28c-5.13.52-8.64 2.38-8.64 2.38c-1.49.81-3.39.2-4.16-1.29c-.81-1.49-.2-3.39 1.29-4.16c0 0 4.56-2.42 10.9-3.03c3.67-.44 8.68-.4 8.68-.4\\\"/>\"\n\t\t},\n\t\t\"readthedocs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#32322a\\\" d=\\\"M7.29 63.61a.517.517 0 0 0-.06 1.01s1.26.42 3.4.59c1.72.14 3.68-.12 3.68-.12a.515.515 0 1 0-.03-1.03c-.03 0-.07 0-.1.01c0 0-1.91.24-3.46.11c-2.05-.17-3.16-.54-3.16-.54c-.08-.03-.17-.04-.25-.03Zm0-2.57a.517.517 0 0 0-.06 1.01s1.26.42 3.4.59c1.72.14 3.68-.12 3.68-.12a.515.515 0 1 0-.03-1.03c-.03 0-.07 0-.1.01c0 0-1.91.24-3.46.11c-2.05-.17-3.16-.54-3.16-.54c-.08-.03-.17-.04-.25-.03Zm0-2.57a.517.517 0 0 0-.06 1.01s1.26.42 3.4.59c1.72.14 3.68-.12 3.68-.12a.515.515 0 1 0-.03-1.03c-.03 0-.07 0-.1.01c0 0-1.91.24-3.46.11c-2.05-.17-3.16-.54-3.16-.54c-.08-.03-.17-.04-.25-.03Zm0-2.56a.517.517 0 0 0-.06 1.01s1.26.42 3.4.59c1.72.14 3.68-.12 3.68-.12a.515.515 0 1 0-.03-1.03c-.03 0-.07 0-.1.01c0 0-1.91.24-3.46.11c-2.05-.17-3.16-.54-3.16-.54c-.08-.03-.17-.04-.25-.03ZM3.7 53.2c-2.69.02-3.7.85-3.7.85v20.12s.98-.85 4.14-.72c3.16.13 3.81 1.24 7.68 1.31c3.88.08 4.85-.6 4.85-.6l.06-20.51s-1.75.49-5.14.52c-3.4.03-4.21-.87-7.33-.97zm2.25 1.31s1.63.54 4.65.69c2.55.13 5.1-.25 5.1-.25v18.23s-1.29.68-4.53.45c-2.5-.18-5.26-1.13-5.26-1.13zm-1.57.47c.29 0 .52.24.52.52s-.24.52-.52.52c0 0-.85 0-1.36.06c-.87.09-1.45.4-1.45.4c-.25.13-.57.04-.7-.22s-.04-.57.22-.7s.77-.41 1.84-.51c.62-.06 1.46-.07 1.46-.07Zm-.5 2.57h.5c.28.03.49.3.46.58a.54.54 0 0 1-.46.46s-.85 0-1.36.06c-.87.09-1.45.4-1.45.4c-.25.13-.57.03-.7-.22a.525.525 0 0 1 .22-.7s.77-.41 1.84-.51c.3-.03.66-.05.95-.06Zm.5 2.56c.29 0 .52.24.52.52s-.24.52-.52.52c0 0-.85 0-1.36.05c-.87.09-1.45.4-1.45.4c-.25.13-.57.03-.7-.22a.525.525 0 0 1 .22-.7s.77-.41 1.84-.51c.61-.06 1.46-.05 1.46-.05Zm21.64 10.35v-1.49l.61-.05c.35-.03.53-.21.53-.52v-8.55l-1.05-.05v-1.57h5.02c1.42 0 2.51.27 3.27.79s1.14 1.4 1.14 2.59c0 .84-.22 1.52-.66 2.06c-.43.54-.95.93-1.54 1.18c.44.16.79.53 1.05 1.12l1.33 2.89l1.05.03v1.57h-4.55v-1.49l.53-.05c.28-.03.42-.15.42-.33a.78.78 0 0 0-.07-.26l-.86-1.84c-.14-.31-.29-.52-.46-.65c-.16-.14-.39-.2-.7-.2h-1.67v3.2l1.2.05v1.57h-4.57m3.38-6.56h1.6c1.51 0 2.26-.67 2.26-2.02c0-.78-.2-1.27-.61-1.51c-.39-.23-1.03-.35-1.91-.35h-1.34zm12.09-2.96c.92 0 1.65.22 2.19.68c.54.44.81 1.07.81 1.88c0 .54-.12 1.02-.35 1.44c-.23.4-.52.72-.86.96c-.34.23-.76.42-1.25.57c-.82.25-1.75.37-2.78.37c.03.65.24 1.18.61 1.58c.37.39.93.59 1.69.59s1.52-.27 2.28-.81l.7 1.49c-.25.22-.66.45-1.25.68c-.58.23-1.24.35-1.99.35c-1.5 0-2.59-.41-3.29-1.23c-.7-.84-1.05-1.97-1.05-3.42s.4-2.66 1.2-3.64c.79-.98 1.91-1.47 3.34-1.47m-.84 4.21c.46-.09.87-.27 1.25-.53c.38-.28.57-.61.57-.99c0-.75-.37-1.12-1.1-1.12c-.69 0-1.21.28-1.58.83c-.37.54-.57 1.19-.61 1.95c.53-.01 1.02-.05 1.46-.13m12.66-3.57v6.84c0 .2.03.33.1.4s.2.12.37.13l.59.03v1.47h-2.93v-1.07l-.05-.02c-.61.88-1.46 1.33-2.52 1.33c-1.25 0-2.18-.4-2.78-1.2s-.9-1.89-.9-3.27c0-1.67.4-2.97 1.21-3.9c.81-.93 2.02-1.4 3.64-1.4c1.04 0 2.14.22 3.27.65m-2.13 5.95v-4.76c-.34-.16-.82-.24-1.42-.24c-.82 0-1.42.33-1.78.99c-.37.66-.55 1.54-.55 2.63c0 1.99.64 2.98 1.91 2.98c.54 0 .98-.16 1.33-.48c.33-.33.51-.71.51-1.13m8.03-6.6c.52 0 1.03.07 1.51.22V59.3c0-.27-.16-.42-.48-.44l-.79-.05v-1.46h3.42v11.18c.01.28.16.42.46.42l.65.03v1.47h-2.98v-1.07l-.05-.02c-.55.9-1.39 1.34-2.5 1.34c-1.4 0-2.38-.46-2.94-1.4c-.52-.84-.78-1.89-.78-3.11c0-1.59.39-2.87 1.18-3.82c.78-.96 1.89-1.44 3.3-1.44m1.5 6.66v-4.76c-.44-.2-.91-.29-1.4-.29c-.81 0-1.4.33-1.78.97c-.37.65-.55 1.48-.55 2.48c0 2.06.66 3.09 1.99 3.09c.5 0 .92-.14 1.25-.42c.33-.3.49-.65.49-1.07m10.43 1.42s-.85.32-1.31.32s-.63-.22-.63-.8c0-.26.03-.6.1-1.01l.69-4.29h2.22l.19-1.2h-2.22l.39-2.35l-1.59.32l-.32 2.03l-1.61.16l-.18 1.05h1.59l-.71 4.45c-.06.37-.1.72-.1 1.03c0 1.27.53 1.91 1.63 1.91c.9 0 2.11-.74 2.11-.74l-.26-.86m4.99-10.94l-2.95.08l-.14.88l1.35.32l-1.77 11.11h1.53l.53-2.9s1.27-4.42 3.36-4.42c.65 0 .84.47.84 1.06c0 .22-.03.47-.06.71l-.92 5.55l2.95-.16l.14-.88l-1.35-.24l.72-4.51c.05-.34.08-.66.08-.95c0-1.16-.47-1.95-1.76-1.95c-2.44 0-3.74 3.1-3.8 3.28l1.24-6.98m11.57 10.54s-1.46.72-2.64.72s-1.77-.53-1.77-1.67c0-.21.01-.45.05-.69c3.33 0 5.65-1.25 5.65-3.1c0-1.27-1.03-2.09-2.65-2.09c-2.56 0-4.65 2.62-4.65 5.95c0 1.77 1.13 2.9 2.9 2.9c1.9 0 3.61-1.19 3.61-1.19l-.49-.82m-4.22-2.77c.42-1.69 1.59-2.87 2.77-2.87c.82 0 1.2.34 1.2 1.05c0 1.06-1.69 1.82-3.97 1.82m8.21 4.62V69l.61-.05c.35-.03.53-.21.53-.52v-8.55l-1.05-.05v-1.57h5.04c1.8 0 3.21.48 4.21 1.44c1.02.96 1.52 2.38 1.52 4.25c0 1.16-.16 2.18-.46 3.06c-.31.86-.72 1.53-1.25 2.02c-1.05.98-2.37 1.47-3.93 1.47h-5.22m3.38-10.45v8.68h1.88c1.05 0 1.88-.38 2.46-1.14c.59-.76.88-1.86.88-3.31c0-2.82-1.2-4.23-3.59-4.23h-1.64m12.7 9.11c1.33 0 2.01-1.08 2.01-3.24c0-1.09-.16-1.92-.46-2.48c-.29-.56-.8-.84-1.51-.84s-1.21.27-1.54.81s-.5 1.27-.5 2.21c0 1.73.32 2.82.96 3.25c.29.2.63.3 1.05.3m-4.23-3.29c0-.91.14-1.69.4-2.35c.27-.67.63-1.19 1.08-1.54c.87-.66 1.83-.99 2.89-.99c.74 0 1.35.12 1.86.37c.52.23.91.51 1.2.83c.29.31.54.76.74 1.36c.21.59.31 1.29.31 2.1c0 1.69-.41 2.97-1.23 3.85s-1.88 1.31-3.16 1.31s-2.27-.41-3-1.23c-.71-.84-1.08-2.06-1.08-3.68m11.59-.09c0 1.04.2 1.85.59 2.43c.39.58.96.86 1.69.86s1.48-.27 2.21-.79l.79 1.42c-.87.71-1.96 1.07-3.27 1.07s-2.35-.41-3.11-1.23c-.75-.84-1.12-2.06-1.12-3.68s.43-2.83 1.29-3.64c.87-.82 1.84-1.23 2.93-1.23s2.1.25 3.04.76v2.39l-1.69.13v-.88c0-.33-.12-.53-.37-.61c-.23-.09-.48-.13-.74-.13c-1.48 0-2.22 1.04-2.22 3.14m10.53-3.13c-.29-.11-.65-.16-1.07-.16s-.76.1-1.01.29c-.25.18-.37.42-.37.7s.04.48.13.65c.1.15.25.28.44.39c.31.16.67.3 1.1.42c.43.11.75.2.96.28c.21.06.46.17.78.33s.56.33.71.52c.43.46.65 1.03.65 1.75c0 .92-.34 1.64-1.01 2.17c-.66.52-1.51.78-2.54.78c-1.5 0-2.63-.19-3.38-.57v-2.56l1.65-.13v.88c0 .54.52.81 1.54.81s1.54-.37 1.54-1.12c0-.27-.1-.49-.28-.66c-.17-.17-.34-.29-.52-.35c-.17-.06-.38-.12-.63-.18c-.23-.06-.46-.12-.7-.18c-.22-.06-.46-.14-.74-.24c-.26-.11-.54-.27-.86-.46c-.63-.4-.94-1.08-.94-2.02s.34-1.69 1.01-2.21c.67-.52 1.52-.78 2.54-.78s2.05.25 3.06.74V64l-1.65.13v-.78c0-.32-.14-.53-.42-.64\\\"/>\"\n\t\t},\n\t\t\"realm\": {\n\t\t\t\"body\": \"<path fill=\\\"#fcc397\\\" d=\\\"M90.312 6.608C79.079 1.111 66.501-.735 54.233 1.31C41.965 3.356 30.585 9.2 21.593 18.07c-11.73 11.712 89.468-1.256 68.719-11.463z\\\"/><path fill=\\\"#fc9f95\\\" d=\\\"M111.79 24.345s-4.853 7.112-20.223 9.12c-30.821 4.183-83.684 4.434-83.603 4.183c3.298-7.363 7.924-14.008 13.631-19.578a42.413 42.413 0 0 0 20.709 1.38c11.325-2.217 21.356-8.91 32.56-11.671a49.127 49.127 0 0 1 15.451-1.172c8.355 4.172 15.695 10.234 21.477 17.737z\\\"/><path fill=\\\"#f77c88\\\" d=\\\"M124.6 54.047c0 .251-69.447 7.028-103.3 5.062c-6.608-.172-12.884-3.028-17.473-7.948a63.085 63.085 0 0 1 4.247-13.43c9.91-5.651 21.04-8.616 32.357-8.617c13.995 0 27.706 4.978 41.74 4.602c10.495-.38 20.706-3.612 29.608-9.371c6.724 8.563 11.146 18.808 12.822 29.702z\\\"/><path fill=\\\"#f25192\\\" d=\\\"M125.38 64.003v1.046a183.452 183.452 0 0 1-44.168 4.727a753.142 753.142 0 0 1-78.628-6.317c.044-4.131.464-8.25 1.254-12.299c8.456 5.431 18.407 7.828 28.313 6.819a78.245 78.245 0 0 0 22.286-6.986a135.18 135.18 0 0 1 21.882-8.367a55.111 55.111 0 0 1 25.538-.065c8.408 1.979 16.27 5.906 22.998 11.485c.44 3.298.616 6.629.526 9.957z\\\"/><path fill=\\\"#d34ca3\\\" d=\\\"M55.728 84.627c-18.403 3.723-50.033-.46-50.113-.795a65.499 65.499 0 0 1-3.033-19.829v-.544a49.56 49.56 0 0 1 9.262-5.94c7.947-3.948 16.785-5.582 25.562-4.727a83.634 83.634 0 0 1 24.794 7.78a202.13 202.13 0 0 0 20.224 8.367c1.051.293-6.391 11.797-26.695 15.688z\\\"/><path fill=\\\"#9a50a5\\\" d=\\\"M123.15 80.945c-1.294 2.26-13.509 9.831-30.092 11.128c-21.963 1.715-47.889-5.146-39.274-8.618c13.509-5.522 25.279-15.395 39.274-19.536a52.375 52.375 0 0 1 32.357 1.13a64.056 64.056 0 0 1-2.265 15.896\\\"/><path fill=\\\"#59569e\\\" d=\\\"M117.21 95.671c-10.597 19.034-87.486 23.803-98.73 11.002c-5.766-6.614-10.145-14.39-12.862-22.841c9.417-5.624 20.36-7.888 31.144-6.442c13.752 1.924 26.047 9.873 39.638 12.968a57.979 57.979 0 0 0 33.086-2.008a60.599 60.599 0 0 0 13.671-7.195a63.925 63.925 0 0 1-5.945 14.516z\\\"/><path fill=\\\"#39477f\\\" d=\\\"M117.29 95.504c-4.81 8.708-11.547 16.113-19.658 21.609c-8.11 5.497-17.365 8.928-27.004 10.014a59.52 59.52 0 0 1-28.455-3.768c-9.064-3.563-17.184-9.295-23.694-16.728c1.86.753 4.045 1.38 5.865 1.967a58.738 58.738 0 0 0 32.802-.293c6.836-2.092 13.226-5.397 19.9-7.865a87.914 87.914 0 0 1 40.446-4.936z\\\"/>\"\n\t\t},\n\t\t\"realm-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fcc397\\\" d=\\\"M30.108 44.805a20.132 20.132 0 0 0-12.176-1.787c-4.14.69-7.98 2.662-11.015 5.655c-3.958 3.953 30.194-.423 23.191-3.868\\\"/><path fill=\\\"#fc9f95\\\" d=\\\"M37.357 50.791s-1.638 2.4-6.825 3.078C20.131 55.28 2.29 55.365 2.317 55.28a21.525 21.525 0 0 1 4.6-6.607c2.26.732 4.657.892 6.989.466c3.822-.748 7.207-3.007 10.988-3.939a16.579 16.579 0 0 1 5.214-.395a21.01 21.01 0 0 1 7.248 5.986z\\\"/><path fill=\\\"#f77c88\\\" d=\\\"M41.681 60.815c0 .085-23.437 2.372-34.862 1.708c-2.23-.058-4.348-1.021-5.897-2.682a21.285 21.285 0 0 1 1.433-4.532a22.031 22.031 0 0 1 10.92-2.908c4.723 0 9.35 1.68 14.087 1.553a19.7 19.7 0 0 0 9.992-3.163a21.532 21.532 0 0 1 4.327 10.024\\\"/><path fill=\\\"#f25192\\\" d=\\\"M41.942 64.175v.353a61.912 61.912 0 0 1-14.906 1.595A254.188 254.188 0 0 1 .5 63.991c.015-1.394.157-2.784.423-4.15a14.871 14.871 0 0 0 9.555 2.3A26.41 26.41 0 0 0 18 59.785a45.528 45.528 0 0 1 7.385-2.823a18.598 18.598 0 0 1 8.619-.022a18.96 18.96 0 0 1 7.761 3.876c.149 1.113.208 2.237.178 3.36z\\\"/><path fill=\\\"#d34ca3\\\" d=\\\"M18.436 71.135c-6.21 1.257-16.885-.155-16.912-.268A22.107 22.107 0 0 1 .5 64.175v-.184a16.724 16.724 0 0 1 3.126-2.005a15.909 15.909 0 0 1 8.627-1.595a28.223 28.223 0 0 1 8.367 2.626a68.196 68.196 0 0 0 6.825 2.824c.355.098-2.156 3.98-9.009 5.294\\\"/><path fill=\\\"#9a50a5\\\" d=\\\"M41.191 69.892c-.437.762-4.559 3.318-10.156 3.756c-7.412.578-16.162-1.737-13.254-2.909c4.56-1.864 8.531-5.195 13.254-6.593a17.676 17.676 0 0 1 10.92.381a21.616 21.616 0 0 1-.765 5.365z\\\"/><path fill=\\\"#59569e\\\" d=\\\"M39.184 74.862c-3.576 6.424-29.525 8.033-33.32 3.713a21.95 21.95 0 0 1-4.34-7.708a16.26 16.26 0 0 1 10.51-2.175c4.641.65 8.79 3.332 13.377 4.377c3.71.866 7.58.63 11.166-.678a20.446 20.446 0 0 0 4.614-2.428a21.578 21.578 0 0 1-2.007 4.9z\\\"/><path fill=\\\"#39477f\\\" d=\\\"M39.211 74.806a21.153 21.153 0 0 1-6.634 7.293a20.289 20.289 0 0 1-9.114 3.38a20.087 20.087 0 0 1-9.603-1.272a20.713 20.713 0 0 1-7.996-5.646c.628.255 1.365.466 1.98.664a19.822 19.822 0 0 0 11.07-.099c2.306-.706 4.463-1.821 6.715-2.654a29.67 29.67 0 0 1 13.65-1.666z\\\"/><path fill=\\\"#fff\\\" d=\\\"M95.777 41.949v24.623h5.065V41.949zm-10.471 5.592a12.38 12.38 0 0 0-7.002 2.4l1.502 4.502a7.107 7.107 0 0 1 4.777-2.144c1.72 0 3.344.733 3.344 2.681c-7.972 0-9.937 3.868-9.937 6.805a5.815 5.815 0 0 0 1.875 3.945a5.444 5.444 0 0 0 4.023 1.42a6.054 6.054 0 0 0 2.91-.693a6.288 6.288 0 0 0 2.262-2.018l1.064 2.133h2.73V56.336c0-5.435-2.183-8.795-7.548-8.795m35.766.156a4.684 4.684 0 0 0-2.09.643a4.913 4.913 0 0 0-1.967 2.193a5.445 5.445 0 0 0-1.998-2.088a5.217 5.217 0 0 0-2.752-.736c-1.01 0-2 .291-2.86.84a5.584 5.584 0 0 0-2.013 2.267l-.982-2.527h-2.73v18.324h4.982l.014-10.207c0-1.68.955-3.67 2.607-3.67s1.789 2.386 1.789 3.516v10.307h4.996V56.477c0-2.302 1.2-3.713 2.565-3.713c1.624 0 1.884 1.878 1.884 3.642v10.137h4.983V54.77c0-2.343-.778-7.06-5.692-7.06a4.656 4.656 0 0 0-.736-.012zm-51.723.041c-5.05 0-8.025 4.49-8.025 9.53c0 5.294 2.58 9.712 8.996 9.712a12.955 12.955 0 0 0 5.855-1.41l-1.42-4.066a7.981 7.981 0 0 1-3.863 1.058c-2.362 0-4.436-.96-4.668-3.445h10.715c.9-7.059-2.54-11.379-7.59-11.379m-11.355.1a4.134 4.134 0 0 0-2.455.79a4.366 4.366 0 0 0-1.559 2.118l-.982-2.4h-2.73v18.267h4.995V56.406c0-1.68.396-3.755 2.047-3.755a2.919 2.919 0 0 1 2.022.734s1.814-4.234 1.8-4.234a4.505 4.505 0 0 0-3.138-1.313m11.262 3.966c1.365 0 2.77.876 2.906 3.332h-5.869a3.342 3.342 0 0 1 .834-2.28a3.13 3.13 0 0 1 2.129-1.052m18.658 6.622v.41c.014 1.708.163 2.88-1.447 3.77c-1.611.889-3.535-.297-3.535-1.54c0-1.525 2.006-2.64 4.982-2.64M50.393 73.082v9.753h1.063v-.841c.247.327.563.59.925.77c.362.179.76.27 1.16.265c1.961 0 2.922-1.531 2.922-3.451c.05-.428.011-.862-.11-1.274a3.121 3.121 0 0 0-.6-1.119a2.994 2.994 0 0 0-.987-.77a2.9 2.9 0 0 0-1.203-.29a2.5 2.5 0 0 0-1.172.289a2.59 2.59 0 0 0-.914.81v-4.142zm18.002 0v9.775h1.23c0-.302-.124-8.049-.124-8.049l2.92 8.027h.958l2.985-8.177s-.168 7.897-.168 8.177h1.336v-9.753h-1.627l-2.922 7.984l-2.88-7.984zm41.533 0v9.753h3.379c3.4 0 4.36-2.438 4.36-4.877c0-3.236-1.73-4.877-4.005-4.877zm10.055 0v9.796h4.549c.37.05.746.016 1.103-.097s.687-.304.967-.559c.28-.255.504-.57.658-.922c.154-.352.233-.733.233-1.119a2.365 2.365 0 0 0-.426-1.552a2.226 2.226 0 0 0-1.305-.885a2.096 2.096 0 0 0 1.073-.828c.26-.39.39-.857.367-1.33a2.682 2.682 0 0 0-.233-1.012a2.578 2.578 0 0 0-.595-.834a2.488 2.488 0 0 0-.868-.526a2.426 2.426 0 0 0-.996-.132zm1.19 1.144h3.107c1.168 0 1.607.626 1.607 1.424c0 1.36-1.086 1.531-1.941 1.531h-2.774zm-9.868.022h2.086c2.128 0 3.004 1.423 3.004 3.732s-.98 3.732-2.941 3.732h-2.233zm-28.934 1.877a3.019 3.019 0 0 0-1.271.238a3.11 3.11 0 0 0-1.069.754a3.235 3.235 0 0 0-.68 1.136a3.317 3.317 0 0 0-.173 1.325a3.198 3.198 0 0 0 .781 2.455c.293.327.65.586 1.049.758c.398.171.827.253 1.258.238a2.96 2.96 0 0 0 1.267-.256c.4-.178.759-.442 1.051-.775s.512-.728.645-1.157a3.26 3.26 0 0 0 .125-1.33a3.18 3.18 0 0 0-.137-1.273a3.108 3.108 0 0 0-.627-1.106a2.988 2.988 0 0 0-1.006-.748a2.897 2.897 0 0 0-1.213-.26zm7.842 0a2.19 2.19 0 0 0-1.2.265a2.293 2.293 0 0 0-.886.88v-.952h-1.062v6.475h1.062v-3.864a1.752 1.752 0 0 1 .451-1.283c.157-.17.347-.305.557-.396a1.6 1.6 0 0 1 .662-.133a1.285 1.285 0 0 1 1.035.355a1.347 1.347 0 0 1 .405 1.047v4.316h1.146v-4.12a2.884 2.884 0 0 0-.375-1.706a2.288 2.288 0 0 0-.799-.656a2.21 2.21 0 0 0-.996-.229m6.762 0c-.42.005-.836.102-1.217.285a3 3 0 0 0-.996.775a3.12 3.12 0 0 0-.604 1.129a3.19 3.19 0 0 0-.105 1.285c-.05.427-.011.859.111 1.27c.123.41.326.79.6 1.113c.273.324.61.583.986.764c.377.18.788.277 1.203.283a2.35 2.35 0 0 0 1.19-.3c.365-.205.674-.501.896-.864v1.271c0 1.23-.417 1.944-1.752 1.944c-1.001 0-1.732-.498-1.732-1.512h-1.19c.032.354.132.698.293 1.012c.161.314.38.591.647.816c.266.225.573.393.902.494c.33.101.676.135 1.018.096c.396.05.797.005 1.174-.13a2.6 2.6 0 0 0 .998-.655c.28-.294.49-.65.617-1.041c.126-.392.163-.808.11-1.217l.042-6.625h-1.105v.885a2.665 2.665 0 0 0-.922-.79a2.577 2.577 0 0 0-1.164-.288m8.074 0a3.02 3.02 0 0 0-1.271.238a3.09 3.09 0 0 0-1.067.754c-.3.325-.533.713-.68 1.136a3.316 3.316 0 0 0-.173 1.325a3.19 3.19 0 0 0 .13 1.314c.135.424.356.813.649 1.14a3 3 0 0 0 1.049.759c.398.171.828.253 1.26.238c.435.009.865-.078 1.265-.256a3.05 3.05 0 0 0 1.05-.775a3.17 3.17 0 0 0 .647-1.157a3.25 3.25 0 0 0 .125-1.33a3.189 3.189 0 0 0-.138-1.273a3.106 3.106 0 0 0-.625-1.106a2.996 2.996 0 0 0-1.008-.748a2.897 2.897 0 0 0-1.213-.26m-41.996.195l-1.062.064l-1.67 5.178l-1.586-5.178H57.61l2.086 6.473l-.272.82c-.355 1.079-.585 1.336-1.21 1.336a1.817 1.817 0 0 1-.71-.107v.992c.304.098.621.15.94.152c1.105 0 1.46-.562 1.96-2.029zm19.297.69c1.419 0 1.856 1.293 1.856 2.415c0 1.683-.668 2.72-1.961 2.72c-1.71 0-1.897-1.726-1.98-2.503c0-.475.103-2.633 2.085-2.633m22.783 0c1.419 0 1.856 1.293 1.856 2.415c0 1.683-.667 2.72-1.94 2.72h-.103c-1.69 0-1.92-1.726-1.899-2.503c0-.475 0-2.633 2.086-2.633m-51.717.107c.29-.002.578.061.844.181s.507.296.703.518a2.227 2.227 0 0 1 .54 1.652c-.001 2.093-1.106 2.633-1.94 2.633h-.147c-1.481 0-1.96-1.38-2.086-2.502c0-1.92 1.23-2.482 2.086-2.482m43.684 0c1.147 0 2.065.97 2.065 2.373c0 1.402-.48 2.547-1.94 2.547s-2.086-.841-2.086-2.46c0-1.617.876-2.46 1.961-2.46m24.072 1.166h3.191c1.127 0 1.94.259 1.94 1.748c0 1.489-1.168 1.638-2.086 1.638h-3.045z\\\"/>\"\n\t\t},\n\t\t\"rect\": {\n\t\t\t\"body\": \"<path fill=\\\"#292929\\\" d=\\\"M0 0h128v128H0z\\\"/><path stroke=\\\"#fff\\\" stroke-width=\\\"4.853\\\" d=\\\"M5.762 5.762h116.476v116.476H5.762zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M75.07 95.09H56.113v18.957H75.07v-3.79H59.906v-3.792h7.43v-3.793h-7.43v-3.79H75.07zm22.598 0H78.863v18.957h18.805v-3.79H82.504V98.884h15.164zm22.14 0h-18.195v3.793h7.582v15.164h3.79V98.883h6.824zm-86.593 0v18.957h3.789V98.883h11.375v7.582h3.793V95.09zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M48.379 102.672H37.004v3.793h7.582v3.793h3.793zm3.793 7.586h-3.793v3.789h3.793zm0 0\\\"/>\"\n\t\t},\n\t\t\"redhat\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M116.4 97.9c-2.4-.5-5-.9-7.5-.9c-4.4 0-8.4.8-11.4 2c-.3.2-.6.5-.6.9c0 .1 0 .3.1.4c.3 1-.2 2.1-3.1 2.7c-4.3.9-6.9 5.3-8.5 6.8c-1.8 1.7-6.9 2.8-6.1 1.7c.6-.8 2.9-3.3 4.3-6c1.3-2.4 2.4-3.1 3.9-5.4c.5-.7 2.2-3 2.7-4.9c.6-1.8.4-4.1.6-5.1c.3-1.4 1.6-4.3 1.7-6c.1-.9-3.9 1.4-5.8 1.4s-3.7-1.1-5.4-1.2c-2.1-.1-3.4 1.6-5.3 1.3c-1.1-.2-2-1.1-3.9-1.2c-2.7-.1-6 1.5-12.2 1.3c-6.1-.2-11.7-7.7-12.5-8.9c-.9-1.4-2-1.4-3.2-.3c-1.2 1.1-2.7.2-3.1-.5c-.8-1.4-2.9-5.5-6.2-6.3c-4.6-1.2-6.9 2.5-6.6 5.5c.3 3 2.2 3.8 3.1 5.4c.9 1.6 1.4 2.6 3 3.3c1.2.5 1.6 1.2 1.3 2.2c-.3.9-1.6 1.1-2.4 1.1c-1.7.1-3-.4-3.8-1c-1-.7-1.9-1.6-2.8-3.1c-1-1.7-2.7-2.5-4.6-2.5c-.9 0-1.8.2-2.5.6c-3 1.6-6.6 2.5-10.4 2.5H4.9c8.3 24.7 31.7 42.4 59.2 42.4c21.9.3 41.2-11 52.3-28.2\\\"/><path d=\\\"M116.4 97.9c-2.4-.6-5-.9-7.5-.9c-4.4 0-8.4.8-11.4 2c-.3.2-.6.5-.6.9c0 .1 0 .3.1.4c.3 1-.2 2.1-3.1 2.8c-4.3.9-6.9 5.3-8.5 6.8c-1.8 1.7-6.9 2.8-6.1 1.7c.6-.8 2.9-3.3 4.3-6c1.3-2.4 2.4-3.1 3.9-5.4c.5-.7 2.2-3 2.7-4.9c.6-1.8.4-4.1.6-5.1c.3-1.4 1.6-4.3 1.7-6c.1-.9-3.9 1.3-5.8 1.3s-3.7-1.1-5.4-1.2c-2.1-.1-3.4 1.6-5.3 1.3c-1.1-.2-2-1.1-3.9-1.2c-2.7-.1-6 1.5-12.2 1.3c-6.1-.2-11.7-7.7-12.5-8.9c-.9-1.4-2-1.4-3.2-.3c-1.2 1.1-2.7.2-3.1-.5c-.8-1.4-2.9-5.5-6.2-6.3c-4.6-1.2-6.9 2.5-6.6 5.5c.3 3 2.2 3.8 3.1 5.4c.9 1.6 1.4 2.6 3 3.3c1.2.5 1.6 1.2 1.3 2.2c-.3.9-1.6 1.1-2.4 1.1c-1.7.1-3-.4-3.8-1c-1-.7-1.9-1.6-2.8-3.1c-1-1.7-2.7-2.5-4.6-2.5c-.9 0-1.8.2-2.5.6c-3 1.6-6.6 2.5-10.4 2.5H4.8C2.7 77.7 1.6 71 1.6 64C1.6 29.5 29.5 1.6 64 1.6s62.4 27.9 62.4 62.4c0 12.5-3.7 24.1-10 33.9m-38.7-5.7c.3.3.9 1.4.2 2.7c-.4.7-.8 1.2-1.5 1.8c-.9.7-2.6 1.5-4.9 0c-1.3-.8-1.3-1.1-3.1-.8c-1.2.2-1.7-1.1-1.3-2.1c.5-1 2.3-1.9 4.6-.5c1 .6 2.6 1.9 4 .7c.6-.5.9-.8 1.7-1.7l.1-.1c.2-.1.2 0 .2 0\\\"/><path fill=\\\"#E93442\\\" d=\\\"M59.1 31.3c-7.2.5-8 1.3-9.3 2.7c-1.9 2-4.4-2.6-4.4-2.6c-1.5-.3-3.3-2.7-2.3-5c1-2.2 2.8-1.6 3.3-.9c.7.8 2.1 2.2 4 2.2c1.9-.1 4.1-.4 7.1-.4c3.1 0 5.2 1.1 5.3 2.1c.1.9-.2 1.7-3.7 1.9m7.6-11.9c-.1 0-.2-.1-.2-.2s0-.1.1-.2c1.4-.7 3.5-1.3 5.9-1.6c.7-.1 1.4-.1 2.1-.1h.4c4 .1 7.2 1.7 7.2 3.6c-.1 1.9-3.3 3.3-7.3 3.2c-1.3 0-2.5-.2-3.6-.5c-.1 0-.2-.1-.2-.3c0-.1.1-.2.2-.3c2.5-.6 4.2-1.5 4.1-2.4c-.2-1.2-3.4-1.8-7.3-1.4c-.6.1-1 .2-1.4.2m32.5 28c-.6 2.1-1.5 4.7-5.4 6.7c-.6.3-.8-.2-.5-.6c1.5-2.5 1.7-3.1 2.2-4.1c.6-1.4.9-3.5-.3-7.8c-2.3-8.4-7.2-19.7-10.8-23.4c-3.4-3.5-9.7-4.5-15.3-3.1c-2.1.5-6.1 2.6-13.6.9c-13-2.9-14.9 3.6-15.7 6.4c-.8 2.8-2.5 10.9-2.5 10.9c-.6 3.3-1.4 9 18.8 12.8c9.4 1.8 9.9 4.2 10.3 6c.7 3.1 1.9 4.9 3.3 5.8c1.3.9 0 1.6-1.5 1.8c-4 .4-18.8-3.8-27.6-8.8c-7.2-4.4-7.3-8.3-5.6-11.7c-10.8-1.2-19 1-20.4 6.1c-2.6 9 19.2 24 44.1 31.5c26.1 7.9 53 2.4 56-14c1.4-7.5-4.9-13-15.5-15.4\\\"/>\"\n\t\t},\n\t\t\"redhat-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M101.2 69.8c-1.7-.4-3.5-.6-5.3-.6c-3.1 0-6 .5-8.1 1.4c-.2.1-.4.4-.4.6c0 .1 0 .2.1.3c.2.7-.2 1.5-2.2 1.9c-3 .7-4.9 3.8-6 4.8c-1.3 1.2-4.9 2-4.3 1.2c.4-.6 2.1-2.3 3-4.2c.9-1.7 1.7-2.2 2.8-3.8c.3-.5 1.6-2.2 1.9-3.5c.4-1.3.3-2.9.4-3.6c.2-1 1.1-3.1 1.2-4.2c0-.7-2.8 1-4.1 1c-1.3 0-2.7-.8-3.9-.9c-1.5-.1-2.4 1.1-3.8.9c-.8-.1-1.4-.8-2.8-.8c-1.9-.1-4.2 1.1-8.6.9c-4.3-.1-8.3-5.5-8.8-6.3c-.6-1-1.4-1-2.3-.2c-.8.8-1.9.2-2.2-.4c-.6-1-2.1-3.9-4.4-4.5c-3.2-.8-4.9 1.8-4.7 3.9c.2 2.1 1.6 2.7 2.2 3.9c.6 1.1 1 1.9 2.2 2.4c.9.4 1.2.9.9 1.6c-.2.6-1.1.7-1.7.8c-1.2.1-2.1-.3-2.7-.7c-.7-.5-1.3-1.1-2-2.2c-.7-1.2-1.9-1.7-3.3-1.7c-.6 0-1.3.2-1.8.4c-2.1 1.1-4.7 1.8-7.4 1.8H22c5.9 17.4 22.5 30 42 30c15.6 0 29.3-8.1 37.2-20.2\\\"/><path d=\\\"M101.2 69.8c-1.7-.4-3.5-.6-5.3-.6c-3.1 0-6 .5-8.1 1.4c-.2.1-.4.4-.4.6c0 .1 0 .2.1.3c.2.7-.2 1.5-2.2 2c-3 .7-4.9 3.8-6 4.8c-1.3 1.2-4.9 2-4.3 1.2c.4-.6 2.1-2.3 3-4.2c.9-1.7 1.7-2.2 2.8-3.8c.3-.5 1.6-2.2 1.9-3.5c.4-1.3.3-2.9.4-3.6c.2-1 1.1-3.1 1.2-4.2c0-.7-2.8 1-4.1 1c-1.3 0-2.7-.8-3.9-.9c-1.5-.1-2.4 1.1-3.8.9c-.8-.1-1.4-.8-2.8-.8c-1.9-.1-4.2 1.1-8.6.9c-4.3-.1-8.3-5.4-8.8-6.3c-.6-1-1.4-1-2.3-.2c-.8.8-1.9.2-2.2-.4c-.6-1-2.1-3.9-4.4-4.5c-3.2-.8-4.9 1.8-4.7 3.9c.2 2.1 1.6 2.7 2.2 3.9c.6 1.1 1 1.9 2.2 2.4c.9.4 1.2.9.9 1.6c-.2.6-1.1.7-1.7.8c-1.2.1-2.1-.3-2.7-.7c-.7-.5-1.3-1.1-2-2.2c-.7-1.2-1.9-1.7-3.3-1.7c-.6 0-1.3.2-1.8.4c-2.1 1.1-4.7 1.8-7.4 1.8H22c-1.5-4.4-2.3-9.2-2.3-14.1C19.7 21.3 39.5 1.5 64 1.5c24.5 0 44.3 19.8 44.3 44.3c0 8.8-2.6 17-7.1 24m-27.4-4.1c.2.2.6 1 .1 1.9c-.3.5-.6.9-1.1 1.3c-.6.5-1.8 1.1-3.5 0c-.9-.6-1-.8-2.2-.6c-.9.1-1.2-.8-.9-1.5c.3-.7 1.6-1.3 3.3-.4c.7.4 1.9 1.3 2.9.5c.4-.3.7-.5 1.2-1.2z\\\"/><path fill=\\\"#E93442\\\" d=\\\"M60.6 22.5c-5.1.4-5.6.9-6.6 1.9c-1.3 1.4-3.1-1.9-3.1-1.9c-1.1-.2-2.4-1.9-1.7-3.6c.7-1.6 2-1.1 2.4-.6c.4.7 1.4 1.7 2.8 1.7c1.3 0 2.9-.3 5.1-.3c2.2 0 3.7.8 3.7 1.5c0 .6-.2 1.2-2.6 1.3m5.3-8.4c-.1 0-.2-.1-.2-.1c0-.1 0-.1.1-.1c1-.5 2.5-.9 4.2-1.1c.5-.1 1-.1 1.5-.1h.3c2.8.1 5.1 1.2 5.1 2.5s-2.4 2.3-5.2 2.3c-.9 0-1.8-.2-2.5-.4c-.1 0-.2-.1-.2-.2s.1-.2.2-.2c1.8-.4 3-1.1 2.9-1.7c-.1-.8-2.4-1.3-5.2-1c-.4 0-.7 0-1 .1M89 33.9c-.4 1.5-1.1 3.3-3.8 4.8c-.4.2-.6-.1-.4-.4c1-1.8 1.2-2.2 1.5-2.9c.4-1 .7-2.5-.2-5.5c-1.7-6-5.1-14-7.7-16.6C76 10.7 71.6 10 67.6 11c-1.5.4-4.3 1.9-9.7.7c-9.2-2.1-10.6 2.5-11.1 4.6c-.5 2-1.8 7.7-1.8 7.7c-.4 2.3-1 6.4 13.4 9.1c6.7 1.3 7 3 7.3 4.2c.5 2.2 1.4 3.5 2.3 4.1c1 .6 0 1.2-1.1 1.3c-2.8.3-13.3-2.7-19.5-6.2c-5.1-3.1-5.2-5.9-4-8.3c-7.7-.8-13.5.7-14.5 4.4c-1.8 6.2 13.7 16.9 31.4 22.2c18.5 5.6 37.6 1.7 39.7-10c1-5.2-3.5-9.2-11-10.9\\\"/><path d=\\\"M1.9 109.8c0-3.2-.1-5.5-.2-7.7H7l.2 4.5h.2c1.2-3.4 4-5.1 6.5-5.1c.6 0 .9 0 1.4.1v5.7c-.6-.1-1.1-.2-1.8-.2c-2.9 0-4.9 1.8-5.4 4.6c-.1.5-.2 1.2-.2 1.8V126h-6zm20.7 5.9c.2 4.3 3.5 6.2 7.4 6.2c2.8 0 4.8-.4 6.6-1.1l.9 4.1c-2 .9-4.9 1.5-8.3 1.5c-7.7 0-12.3-4.8-12.3-12.1c0-6.6 4-12.8 11.7-12.8c7.7 0 10.3 6.4 10.3 11.6c0 1.1-.1 2-.2 2.6zm10.4-4.2c0-2.2-.9-5.8-5-5.8c-3.7 0-5.3 3.4-5.5 5.8zm25.7 4.2c0 .6 0 1.2-.2 1.8c-.6 2.6-2.7 4.3-5.2 4.3c-3.8 0-6-3.2-6-7.6c0-4.4 2.2-7.8 6-7.8c2.7 0 4.7 1.9 5.2 4.2c.1.5.1 1.1.1 1.6c.1-.1.1 3.5.1 3.5m6-22.7l-6-1.7v13.4h-.1c-1.1-1.8-3.4-3.1-6.7-3.1c-5.7 0-10.7 4.7-10.7 12.7c0 7.3 4.5 12.2 10.2 12.2c3.4 0 6.3-1.6 7.7-4.3h.1l.3 3.8h5.4c-.1-1.6-.2-4.2-.2-6.7zm15.9 8.6c-1.8 0-3.4.5-4.8 1.4c-1.4.8-2.6 2.1-3.3 3.4h-.1V95.3l-2.4-.7V126h2.4v-14.6c0-1 .1-1.6.3-2.3c1-3 3.8-5.4 7.2-5.4c4.9 0 6.6 3.9 6.6 8.2V126h2.4v-14.4c0-8.9-6-10-8.3-10m29.5 18.7c0 1.9.1 3.8.3 5.7h-2.2l-.3-3.4h-.1c-1.2 1.8-3.8 4-7.6 4c-4.8 0-7-3.4-7-6.6c0-5.5 4.9-8.8 14.6-8.7v-.6c0-2.4-.5-7.1-6.1-7c-2.1 0-4.3.6-6 1.8l-.7-1.7c2.2-1.5 4.8-2.1 7-2.1c6.9 0 8.2 5.2 8.2 9.4c-.1-.1-.1 9.2-.1 9.2m-2.4-7c-5.2-.1-12.1.6-12.1 6.4c0 3.4 2.3 5 4.7 5c4 0 6.2-2.5 7.1-4.8c.2-.5.2-1 .2-1.4c.1-.1.1-5.2.1-5.2m11.8-16.4v5.3h6.8v1.9h-6.8v15.5c0 3 .9 4.9 3.5 4.9c1.2 0 2.1-.2 2.7-.4l.3 1.8c-.8.3-1.9.6-3.3.6c-1.7 0-3.2-.5-4.1-1.7c-1.1-1.3-1.4-3.3-1.4-5.7V104h-4v-1.9h4v-4.4z\\\"/>\"\n\t\t},\n\t\t\"redis\": {\n\t\t\t\"body\": \"<path fill=\\\"#A41E11\\\" d=\\\"M121.8 93.1c-6.7 3.5-41.4 17.7-48.8 21.6c-7.4 3.9-11.5 3.8-17.3 1S13 98.1 6.3 94.9c-3.3-1.6-5-2.9-5-4.2V78s48-10.5 55.8-13.2c7.8-2.8 10.4-2.9 17-.5s46.1 9.5 52.6 11.9v12.5c0 1.3-1.5 2.7-4.9 4.4\\\"/><path fill=\\\"#D82C20\\\" d=\\\"M121.8 80.5C115.1 84 80.4 98.2 73 102.1c-7.4 3.9-11.5 3.8-17.3 1c-5.8-2.8-42.7-17.7-49.4-20.9C-.3 79-.5 76.8 6 74.3c6.5-2.6 43.2-17 51-19.7c7.8-2.8 10.4-2.9 17-.5s41.1 16.1 47.6 18.5c6.7 2.4 6.9 4.4.2 7.9\\\"/><path fill=\\\"#A41E11\\\" d=\\\"M121.8 72.5C115.1 76 80.4 90.2 73 94.1c-7.4 3.8-11.5 3.8-17.3 1C49.9 92.3 13 77.4 6.3 74.2c-3.3-1.6-5-2.9-5-4.2V57.3s48-10.5 55.8-13.2c7.8-2.8 10.4-2.9 17-.5s46.1 9.5 52.6 11.9V68c0 1.3-1.5 2.7-4.9 4.5\\\"/><path fill=\\\"#D82C20\\\" d=\\\"M121.8 59.8c-6.7 3.5-41.4 17.7-48.8 21.6c-7.4 3.8-11.5 3.8-17.3 1C49.9 79.6 13 64.7 6.3 61.5s-6.8-5.4-.3-7.9c6.5-2.6 43.2-17 51-19.7c7.8-2.8 10.4-2.9 17-.5s41.1 16.1 47.6 18.5c6.7 2.4 6.9 4.4.2 7.9\\\"/><path fill=\\\"#A41E11\\\" d=\\\"M121.8 51c-6.7 3.5-41.4 17.7-48.8 21.6c-7.4 3.8-11.5 3.8-17.3 1C49.9 70.9 13 56 6.3 52.8c-3.3-1.6-5.1-2.9-5.1-4.2V35.9s48-10.5 55.8-13.2c7.8-2.8 10.4-2.9 17-.5s46.1 9.5 52.6 11.9v12.5c.1 1.3-1.4 2.6-4.8 4.4\\\"/><path fill=\\\"#D82C20\\\" d=\\\"M121.8 38.3C115.1 41.8 80.4 56 73 59.9c-7.4 3.8-11.5 3.8-17.3 1S13 43.3 6.3 40.1s-6.8-5.4-.3-7.9c6.5-2.6 43.2-17 51-19.7c7.8-2.8 10.4-2.9 17-.5s41.1 16.1 47.6 18.5c6.7 2.4 6.9 4.4.2 7.8\\\"/><path fill=\\\"#fff\\\" d=\\\"m80.4 26.1l-10.8 1.2l-2.5 5.8l-3.9-6.5l-12.5-1.1l9.3-3.4l-2.8-5.2l8.8 3.4l8.2-2.7L72 23zM66.5 54.5l-20.3-8.4l29.1-4.4z\\\"/><ellipse cx=\\\"38.4\\\" cy=\\\"35.4\\\" fill=\\\"#fff\\\" rx=\\\"15.5\\\" ry=\\\"6\\\"/><path fill=\\\"#7A0C00\\\" d=\\\"m93.3 27.7l17.2 6.8l-17.2 6.8z\\\"/><path fill=\\\"#AD2115\\\" d=\\\"m74.3 35.3l19-7.6v13.6l-1.9.8z\\\"/>\"\n\t\t},\n\t\t\"redis-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#636466\\\" d=\\\"M21.4 97.6c0 1.8-1.5 3.5-3.5 3.5c-1.5 0-2.8.4-4 1.3c-1.3.8-2.2 1.9-3 3.2c-1.6 2.1-2.4 4.6-2.7 5.5v12.5c0 1.9-1.6 3.5-3.6 3.5c-1.9 0-3.5-1.6-3.5-3.5v-26c0-1.9 1.6-3.4 3.5-3.4c2 0 3.6 1.5 3.6 3.4v.5c.4-.5.9-1 1.4-1.3c2.2-1.4 5-2.6 8.3-2.6c2 0 3.5 1.5 3.5 3.4m-1.9 13c.1-9 7-16.5 16.1-16.5c8.6 0 15.3 6.4 15.9 15.3v.3c0 .1 0 .5-.1.6c-.2 1.6-1.6 2.6-3.4 2.6H27c.3 1.5 1.1 3.2 2.2 4.3c1.4 1.6 4 2.8 6.3 3c2.4.2 5.2-.4 6.8-1.6c1.4-1.4 4.1-1.3 4.9-.2c.9.9 1.5 2.9 0 4.3c-3.2 3-7.1 4.3-11.8 4.3c-8.9 0-15.9-7.5-15.9-16.4m7.1-3.2h18.6c-.7-2.6-4-6.5-9.7-7c-5.6.2-8.3 4.3-8.9 7m58.3 16.1c0 1.9-1.6 3.6-3.6 3.6c-1.8 0-3.2-1.3-3.5-2.8c-2.5 1.7-5.7 2.8-9 2.8c-8.9 0-16-7.5-16-16.4c0-9 7.1-16.5 16-16.5c3.2 0 6.4 1.1 8.8 2.8V84.5c0-1.9 1.6-3.6 3.6-3.6s3.6 1.6 3.6 3.6v26.2zm-16-22.2c-2.4 0-4.5 1-6.2 2.7c-1.6 1.6-2.6 4-2.6 6.6c0 2.5 1 4.9 2.6 6.5c1.6 1.7 3.8 2.7 6.2 2.7c2.4 0 4.5-1 6.2-2.7c1.6-1.6 2.6-4 2.6-6.5c0-2.6-1-5-2.6-6.6c-1.6-1.7-3.7-2.7-6.2-2.7m28.6-15.4c0 2-1.5 3.6-3.6 3.6c-2 0-3.6-1.6-3.6-3.6v-1.4c0-2 1.6-3.6 3.6-3.6s3.6 1.6 3.6 3.6zm0 11.9v25.7c0 2-1.5 3.6-3.6 3.6c-2 0-3.6-1.6-3.6-3.6V97.8c0-2.1 1.6-3.6 3.6-3.6c2.1 0 3.6 1.5 3.6 3.6m4.5 19.8c1.2-1.6 3.5-1.8 4.9-.5c1.7 1.4 4.7 3 7.2 2.9c1.8 0 3.4-.6 4.5-1.3c.9-.8 1.2-1.4 1.2-2c0-.3-.1-.5-.2-.7c-.1-.2-.3-.5-.9-.8c-.9-.7-2.9-1.4-5.3-1.8h-.1c-2-.4-4-.9-5.7-1.7c-1.8-.9-3.4-2-4.5-3.8c-.7-1.2-1.1-2.6-1.1-4.1c0-3 1.7-5.6 3.9-7.2c2.3-1.6 5.1-2.4 8.1-2.4c4.5 0 7.8 2.2 9.9 3.6c1.6 1.1 2 3.2 1.1 4.9c-1.1 1.6-3.2 2-4.9.9c-2.1-1.4-4-2.4-6.1-2.4c-1.6 0-3.1.5-4 1.2c-.9.6-1.1 1.2-1.1 1.5c0 .3 0 .3.1.5c.1.1.3.4.7.7c.9.6 2.6 1.2 4.8 1.6l.1.1h.1c2.2.4 4.2 1 6.1 1.9c1.8.8 3.6 2 4.7 3.9c.8 1.3 1.3 2.8 1.3 4.3c0 3.2-1.8 5.9-4.1 7.6c-2.4 1.6-5.3 2.6-8.6 2.6c-5.1-.1-9.1-2.4-11.7-4.5c-1.4-1.3-1.6-3.5-.4-5\\\"/><path fill=\\\"#A41E11\\\" d=\\\"M106.9 62.7c-5 2.6-30.7 13.2-36.2 16c-5.5 2.9-8.5 2.8-12.8.8c-4.4-2.1-31.7-13.1-36.7-15.5c-2.5-1.2-3.8-2.2-3.8-3.1v-9.4s35.6-7.8 41.4-9.8c5.8-2.1 7.8-2.1 12.6-.3c4.9 1.8 34.2 7.1 39 8.8v9.3c.1.9-1 1.9-3.5 3.2\\\"/><path fill=\\\"#D82C20\\\" d=\\\"M106.9 53.3c-5 2.6-30.7 13.2-36.2 16c-5.5 2.9-8.5 2.8-12.8.8C53.5 68 26.2 57 21.2 54.6c-4.9-2.4-5-4-.2-5.9c4.8-1.9 32.1-12.6 37.8-14.6c5.8-2.1 7.8-2.1 12.6-.3c4.9 1.8 30.5 12 35.3 13.7c5 1.8 5.2 3.2.2 5.8\\\"/><path fill=\\\"#A41E11\\\" d=\\\"M106.9 47.4c-5 2.6-30.7 13.2-36.2 16c-5.5 2.9-8.5 2.8-12.8.8c-4.4-2.1-31.7-13.2-36.7-15.5c-2.5-1.2-3.8-2.2-3.8-3.1v-9.4s35.6-7.8 41.4-9.8c5.8-2.1 7.8-2.1 12.6-.3c4.9 1.8 34.2 7.1 39 8.8v9.3c.1.9-1 1.9-3.5 3.2\\\"/><path fill=\\\"#D82C20\\\" d=\\\"M106.9 38c-5 2.6-30.7 13.2-36.2 16c-5.5 2.9-8.5 2.8-12.8.8c-4.3-2.1-31.7-13.1-36.6-15.5c-4.9-2.4-5-4-.2-5.9c4.8-1.9 32.1-12.6 37.8-14.6c5.8-2.1 7.8-2.1 12.6-.3c4.9 1.8 30.5 12 35.3 13.7c4.9 1.7 5.1 3.2.1 5.8\\\"/><path fill=\\\"#A41E11\\\" d=\\\"M106.9 31.5c-5 2.6-30.7 13.2-36.2 16c-5.5 2.9-8.5 2.8-12.8.8c-4.3-2.1-31.7-13.1-36.6-15.5c-2.5-1.2-3.8-2.2-3.8-3.1v-9.4s35.6-7.8 41.4-9.8c5.8-2.1 7.8-2.1 12.6-.3c4.9 1.8 34.2 7.1 39 8.8v9.3c0 .8-1.1 1.9-3.6 3.2\\\"/><path fill=\\\"#D82C20\\\" d=\\\"M106.9 22.1c-5 2.6-30.7 13.2-36.2 16c-5.5 2.9-8.5 2.8-12.8.8c-4.3-2.1-31.7-13.1-36.6-15.5s-5-4-.2-5.9c4.8-1.9 32.1-12.6 37.8-14.6C64.7.8 66.7.8 71.5 2.6c4.9 1.8 30.5 12 35.3 13.7c4.9 1.7 5.1 3.2.1 5.8\\\"/><path fill=\\\"#fff\\\" d=\\\"m76.2 13l-8.1.8l-1.8 4.4l-2.9-4.9l-9.3-.8L61 10l-2-3.8l6.5 2.5l6.1-2l-1.7 4zM65.8 34.1l-15-6.3l21.6-3.3z\\\"/><ellipse cx=\\\"45\\\" cy=\\\"19.9\\\" fill=\\\"#fff\\\" rx=\\\"11.5\\\" ry=\\\"4.5\\\"/><path fill=\\\"#7A0C00\\\" d=\\\"m85.7 14.2l12.8 5l-12.8 5.1z\\\"/><path fill=\\\"#AD2115\\\" d=\\\"m71.6 19.8l14.1-5.6v10.1l-1.3.5z\\\"/>\"\n\t\t},\n\t\t\"redux\": {\n\t\t\t\"body\": \"<path fill=\\\"#764abc\\\" d=\\\"M88.69 88.11c-9 18.4-24.76 30.78-45.61 34.85a39.73 39.73 0 0 1-9.77 1.14c-12 0-23-5-28.34-13.19C-2.2 100-4.64 76.87 19 59.76c.48 2.61 1.46 6.19 2.11 8.31A38.24 38.24 0 0 0 10 81.1c-4.4 8.64-3.91 17.27 1.3 25.25c3.6 5.38 9.3 8.65 16.63 9.65a44 44 0 0 0 26.55-5c12.71-6.68 21.18-14.66 26.72-25.57a9.32 9.32 0 0 1-2.61-6A9.12 9.12 0 0 1 87.37 70h.34a9.15 9.15 0 0 1 1 18.25zm28.67-20.2c12.21 13.84 12.54 30.13 7.82 39.58c-4.4 8.63-16 17.27-31.6 17.27a50.48 50.48 0 0 1-21-5.05c2.29-1.63 5.54-4.24 7.33-5.87a41.54 41.54 0 0 0 16 3.42c10.1 0 17.75-4.72 22.31-13.35c2.93-5.7 3.1-12.38.33-19.22a43.61 43.61 0 0 0-17.27-20.85a62 62 0 0 0-34.74-10.59h-2.93a9.21 9.21 0 0 1-8 5.54h-.31a9.13 9.13 0 0 1-.3-18.25h.33a9 9 0 0 1 8 4.89h2.61c20.8 0 39.06 7.98 51.42 22.48m-82.75 23a7.31 7.31 0 0 1 1.14-4.73c-9.12-15.8-14-35.83-6.51-56.68C34.61 13.83 48.13 3.24 62.79 3.24c15.64 0 31.93 13.69 33.88 40.07c-2.44-.81-6-2-8.14-2.44c-.53-8.63-7.82-30.13-25.09-29.81c-6.19.17-15.31 3.1-20 9.12a43.69 43.69 0 0 0-9.64 25.25a59.61 59.61 0 0 0 8.47 36.16a2.75 2.75 0 0 1 1.14-.16h.32a9.121 9.121 0 0 1 .33 18.24h-.33a9.16 9.16 0 0 1-9.12-8.79z\\\"/>\"\n\t\t},\n\t\t\"renpy\": {\n\t\t\t\"body\": \"<defs><filter id=\\\"deviconRenpy0\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".23\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpy1\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".31\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpy2\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".21\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpy3\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".11\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpy4\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".11\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpy5\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".11\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpy6\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".11\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpy7\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".1\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpy8\\\" width=\\\"1.03\\\" height=\\\"1.117\\\" x=\\\"-.015\\\" y=\\\"-.059\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur stdDeviation=\\\".186\\\"/></filter><filter id=\\\"deviconRenpy9\\\" width=\\\"1.015\\\" height=\\\"1.056\\\" x=\\\"-.008\\\" y=\\\"-.028\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur stdDeviation=\\\".098\\\"/></filter><filter id=\\\"deviconRenpya\\\" width=\\\"1.028\\\" height=\\\"1.191\\\" x=\\\"-.014\\\" y=\\\"-.095\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur stdDeviation=\\\".163\\\"/></filter><filter id=\\\"deviconRenpyb\\\" width=\\\"1.119\\\" height=\\\"1.099\\\" x=\\\"-.059\\\" y=\\\"-.05\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\"1.084\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpyc\\\" width=\\\"1.053\\\" height=\\\"1.044\\\" x=\\\"-.026\\\" y=\\\"-.022\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"fbSourceGraphic\\\" stdDeviation=\\\".424\\\"/><feColorMatrix in=\\\"fbSourceGraphic\\\" result=\\\"fbSourceGraphicAlpha\\\" values=\\\"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0\\\"/><feGaussianBlur in=\\\"fbSourceGraphic\\\" result=\\\"blur\\\" stdDeviation=\\\".81\\\"/><feComposite in=\\\"fbSourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><filter id=\\\"deviconRenpyd\\\" color-interpolation-filters=\\\"sRGB\\\"><feGaussianBlur result=\\\"blur\\\" stdDeviation=\\\".21\\\"/><feComposite in=\\\"SourceGraphic\\\" in2=\\\"blur\\\" operator=\\\"atop\\\" result=\\\"composite1\\\"/><feComposite in2=\\\"composite1\\\" operator=\\\"in\\\" result=\\\"composite2\\\"/><feComposite in2=\\\"composite2\\\" operator=\\\"in\\\" result=\\\"composite3\\\"/></filter><linearGradient id=\\\"deviconRenpye\\\" x1=\\\"97.988\\\" x2=\\\"84.177\\\" y1=\\\"119.56\\\" y2=\\\"116.33\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fde859\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fde859\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyf\\\" x1=\\\"48.706\\\" x2=\\\"59.061\\\" y1=\\\"81.451\\\" y2=\\\"78.814\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d9b862\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#d9b862\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyg\\\" x1=\\\"49.354\\\" x2=\\\"49.426\\\" y1=\\\"75.243\\\" y2=\\\"76.417\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#e8ca63\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e8ca63\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyh\\\" x1=\\\"38.639\\\" x2=\\\"37.754\\\" y1=\\\"75.171\\\" y2=\\\"69.842\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#d3aa6d\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#d3aa6d\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyi\\\" x1=\\\"63.864\\\" x2=\\\"64.746\\\" y1=\\\"67.797\\\" y2=\\\"69.831\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ecb8a9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ecb8a9\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyj\\\" x1=\\\"48.407\\\" x2=\\\"49.492\\\" y1=\\\"59.797\\\" y2=\\\"58.712\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#e9ac9c\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e9ac9c\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyk\\\" x1=\\\"48.136\\\" x2=\\\"47.988\\\" y1=\\\"70.034\\\" y2=\\\"68.899\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#e3c959\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#e3c959\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyl\\\" x1=\\\"48.983\\\" x2=\\\"49.186\\\" y1=\\\"97.661\\\" y2=\\\"97.22\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#dcb668\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dcb668\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpym\\\" x1=\\\"66.313\\\" x2=\\\"66.397\\\" y1=\\\"59.868\\\" y2=\\\"62.354\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fffdfd\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fffdfd\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyn\\\" x1=\\\"47.186\\\" x2=\\\"50.305\\\" y1=\\\"37.017\\\" y2=\\\"38.508\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#eec1b2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#eec1b2\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconRenpyo\\\" x1=\\\"45.831\\\" x2=\\\"48.407\\\" y1=\\\"83.119\\\" y2=\\\"89.22\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#9f9f9f\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#9f9f9f\\\" stop-opacity=\\\"0\\\"/></linearGradient><radialGradient id=\\\"deviconRenpyp\\\" cx=\\\"55.64\\\" cy=\\\"50.886\\\" r=\\\"5.056\\\" gradientTransform=\\\"matrix(1.0136 -.1997 .16353 .83005 -8.919 19.595)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#212848\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2c3665\\\"/></radialGradient><radialGradient id=\\\"deviconRenpyq\\\" cx=\\\"76.881\\\" cy=\\\"50.965\\\" r=\\\"3.778\\\" gradientTransform=\\\"matrix(1.2128 .28116 -.26736 1.1532 -2.732 -29.137)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#212848\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2c3665\\\"/></radialGradient><radialGradient id=\\\"deviconRenpyr\\\" cx=\\\"46.738\\\" cy=\\\"46.196\\\" r=\\\"24.536\\\" gradientTransform=\\\"matrix(-.03564 .52836 -1.2339 -.08324 126.37 13.065)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#eec0b2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#eec0b2\\\" stop-opacity=\\\"0\\\"/></radialGradient><radialGradient id=\\\"deviconRenpys\\\" cx=\\\"94.478\\\" cy=\\\"30.526\\\" r=\\\"32.374\\\" gradientTransform=\\\"matrix(.10003 -.24267 .32605 .1344 52.096 48.694)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff7f7f\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#a66067\\\"/></radialGradient><radialGradient id=\\\"deviconRenpyt\\\" cx=\\\"80.344\\\" cy=\\\"98.345\\\" r=\\\"23.782\\\" gradientTransform=\\\"matrix(1.3342 .45378 -.51484 1.5137 21.296 -85.17)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fde859\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#d3aa6d\\\"/></radialGradient><radialGradient id=\\\"deviconRenpyu\\\" cx=\\\"79.278\\\" cy=\\\"95.485\\\" r=\\\"26.347\\\" gradientTransform=\\\"matrix(.88807 .43199 -.53935 1.1088 60.345 -43.368)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fde859\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#eacd61\\\"/></radialGradient></defs><path fill=\\\"#eadbcc\\\" d=\\\"M99.964 22.789c-6.517-5.069-10.209-4.706-14.98-6.418C73.531 3.827 63.902 2.683 54.189 1.013C41.487 7.336 35.805 15.999 33.826 25.896c-3.805 3.16-7.691 6.278-10.63 9.87c2.723 1.344 6.644 2.088 10.846 2.692l59.73-10.232c2.53-1.48 4.388-3.44 6.193-5.437z\\\"/><path fill=\\\"#faeee3\\\" d=\\\"M89.703 97.754c.007-.397.161-.527.352-.591c1.339-.508 3.853-1.011 4.883-.717c.538.208 2.64 1.235 2.771 3.503l-1.94 2.553z\\\"/><path fill=\\\"#c8c6c0\\\" d=\\\"m87.816 96.008l2.561 1.288l-.154.895l-3.597-.028z\\\"/><path fill=\\\"#ddb1a3\\\" d=\\\"M91.959 96.61c-.255.143-.394.295-.453.481c-.06.186.012.281.366.409c1.077.393 2.118 1.314 3.143 2.453c.515.39.686.456.778-.278l-1.33-2.24c1.062.9 1.953 2.312 3.246 2.514l-.852 2.469l-7.144-4.199c-.073-.676.043-.958.329-1.07z\\\" filter=\\\"url(#deviconRenpy6)\\\"/><path fill=\\\"#fbefe3\\\" d=\\\"m42.166 34.404l3.807 29.444l14.548 2.06l.09 4.433l6.186 2.324l1.176-3.868l.02-2.464c1.86-.307 4.147-1.214 6.363-2.019l11.26-3.77l5.621-32.22l-23.987-3.958z\\\"/><path fill=\\\"url(#deviconRenpyr)\\\" d=\\\"m42.166 34.404l3.807 29.444l14.548 2.06l.09 4.433l6.186 2.324l1.176-3.868l.02-2.464c1.86-.307 4.147-1.214 6.363-2.019l11.26-3.77l5.621-32.22l-23.987-3.958z\\\"/><path fill=\\\"#fff\\\" d=\\\"m54.593 86.576l-2.855 12.035l-8.534-.443l-6.432 3.879c-3.45-.853-6.186-2.848-8.906-4.869l-.04-6.313l3.147-4.493l2.177-10.43l-1.01-1.405c.23-1.735 1.182-3.125 4.671-3.305z\\\"/><path fill=\\\"#b5a396\\\" d=\\\"M59.453 73.884c-7.134 3.337-6.249 7.424-7.055 14.745l-.603 2.272c.139 1.865-.924 2.426-2.1 4.437c-.437.717.328.909.683 1.03c-.272.784-.198 1.154-.123 1.957c.742 1.742.694 3.748.945 5.38c-1.532.846-.454 1.985.882 2.198l14.378 10.81c1.738.396 3.342-.326 5.056-.742l10.535-3.225c2.473-1.237 5.395-2.044 4.79-4.882l3.526-2.393l-10.135-22.366c1.325-7.562-.012-8.668-5.579-13.179z\\\"/><path fill=\\\"#fff\\\" d=\\\"m59.453 73.884l9.223 9.757l4.027-9.744l.587.448l1.358-2.45l-6.284-4.072l-2.043 4.03l-.392.225l-4.604-3.051l-2.673 4.002z\\\"/><path fill=\\\"#c8c8c8\\\" d=\\\"M41.819 78.258c-.516.1-.84.523-1.217.86c-1.446 1.574-1.905 3.756-1.544 5.404c1.11 2.561 3.031 3.072 5.67 3.216c.973-.287 1.708-.544 2.702-.544c.113-.802.256-1.173.95-1.514c1.939-.255 2.687.106 4.987-.723c.675-.128 1.204-.311 1.88-.247c.312.096.412.286.584.544c1.983.556 3.712.811 5.057 0c2.208-2.353 2.772-4.43.99-7.085a9.248 9.248 0 0 0-1.317-1.237l-2.307-1.306l-.26.38c-1.49 2.366-3.143 3.207-5.577 4.34c-3.616.855-6.128.806-9.163-.505c-.728-.542-1.003-.845-1.435-1.583\\\"/><path fill=\\\"url(#deviconRenpyo)\\\" d=\\\"M40.012 83.793c.045-.039.094-.07.208 0c.477.293 1.074.768 1.665 1.163c1.45 1.07 3.358.634 4.765.25c3.066-.85 6.713-2.91 8.41-6.057c-2.552 1.458-4.68 1.721-7.522 1.781c-2.505-.319-4.26-.472-5.66-2.494l-.194-.172c-3.29 2.208-3.655 6.47-.588 8.762c2.242.9 3.855.948 5.982.068c-1.888.248-7.259.852-7.066-3.301\\\"/><path fill=\\\"url(#deviconRenpyn)\\\" d=\\\"m45.512 48.757l-1.331-14.129l8.956-5.262c-2.224 6.615-6.02 13.44-7.625 19.391\\\"/><path fill=\\\"url(#deviconRenpyj)\\\" d=\\\"M46.865 56.586c1.2 1.499 2.468 2.761 3.88 3.523l-3.167 1.662z\\\"/><path fill=\\\"#ff7f7f\\\" d=\\\"m33.703 32.178l-.125.93c-1.123 9.11-1.623 18.358-3.836 27.226c.512-.618.908-1.7 1.29-2.837c-.12 1.67.008 3.488-.594 4.869l4.236.04c.396-.764.791-2.33 1.187-3.563c.391 1.098.477 2.064.594 3.72c.342-.279.634-.762.87-1.464c.074.58.107 1.161.278 1.742l1.236.283c.867-1.615 1.878-2.111 2.291-2.298c2.064-.457 3.766.366 5.615.269c.384-.034.755-.174 1.126-.366c-2.407-11.294-2.286-17.487-1.407-21.851c1.327-2.16 3.155-4.084 4.658-5.649c-1.641 3.623-2.721 7.054-3.127 10.676c.447-.571.715-1.322 1.028-2.027c.157 1.416.115 3.102.756 3.862c1.899-6.107 5.991-10.963 8.662-14.54c-1.708 4.205-3.98 9.015-3.675 12.105c2.15-4.796 5.324-8.448 8.727-11.956c-2.13 3.43-3.853 9.486-3.615 10.552c1.322-3.963 3.986-8.713 6.05-11.835c-1.204 3.906-3.665 7.996-3.507 11.717c.226-.904.62-1.525 1.069-2.058c.01 2.07-.32 4.476.277 6.808c.938-3.064 2.21-5.347 3.443-7.6c.197-.375.378-.76.65-1.086c-.122 1.456-.346 3.134-.252 4.227c.594-2.233 1.228-4.505 2.178-6.382c-.665 4.845-1.526 9.609 1.04 13.603c.965-.43 3.034-3.714 3.272-6.265c.38.588.55 1.016.475 2.455c1.812-2.307 2.852-8.683 2.296-13.874c1.278 4.371 2.103 8.518 2.703 13.146c.613.128 1.176.43 1.657.916c1.531-4.266 1.63-8.923 1.538-13.587c1.393 5.28 1.502 11.04 1.243 16.188c.675-.505 1.368-1.856 1.693-3.233c.03 1.325.142 2.055.504 3.242c-1.509 3.836-3.113 7.666-4.632 11.498c-.096.215-.328.55-.487.672c-2.238 1.504-4.278 2.823-6.55 3.832l1.34.208c2.864-1.15 5.343-1.312 8.15-.823l.002-.003c-.005-.002-.005-.003 0 0c1.866-1.64 2.782-3.455 3.833-5.901c-.272 2.361-.38 4.04-.807 6.452c.688-.653 1.288-1.155 2.048-2.383c-.207.755-.41 1.511-.252 2.267c.976-.778 2.55-3.687 2.504-6.564c.424 1.44.65 4.685.475 6.966c2.351-3.41 2.508-5.831 3.59-10.314c.133 3.154-.025 1.816.434 4.199c.723-9.843 1.064-26.727-5.259-36.675c-18.146-2.093-38.932 2.707-56.893 10.465zm24.556-.709v-.003c-.4.43-.405.436 0 .003\\\"/><path fill=\\\"#887c74\\\" d=\\\"m73.906 70.118l-.304.836l1.046.941l-1.358 2.45l-.588-.449l-.447 1.036c3.336 1.643 6.182 4.021 6.857 9.656c-1.014 1.098-1.997 8.313-2.58 4.456l-3.536 1.058c-.15-.772.04-1.446-.573-2.35c-.407-1.151-.668-.968-1.038-.608c-.257 2.909-.47 6.012-.586 8.78a15.364 15.364 0 0 1-2.127 1.819c-.145-4.124-.534-8.247-.812-12.371c-.055 4.496-.057 9.283-.252 13.015c-2.95 1.976-6.386 3.673-13.447 5.144c-.955.348-1.712.292-.473-.27c.541-.316.52-.16.375-.732c-.415-1.75-.638-3.579-.8-5.43c-.067-.753-.08-.842-.885-.58c-.5.094-.823-.038-.5-.607c.336-.803.862-1.542 1.393-2.28c.611-.85.455-.704-.358-.04c-.893.718-1.771 1.418-2.45 1.89c-.644.446-.42.033-.404-.678l-.587 1.092l.906.472l-.22 1.347l.265.658l.406 2.155l.37 3.177l-.692.49l-.14.825l1.714.882c27.058 3.17 35.072-28.105 21.824-35.784zM55.769 88.675l-1.026 2.4c-.485 1.133-.343 1.28.593 2.204l.208 6.256c.025.772-.118 1.012.727.826l6.309-.748l.91-.198l-7.243-.08c.319-1.914.158-3.84.014-5.78c-.041-.552-.292-.775.39-.808c3.071-.401 6.143-.599 9.214-.794c.032-.402.162-.682.606-1.04c-2.474-.035-7.303.307-10.344.209c-.503-.018-.775.07-.6-.585z\\\" filter=\\\"url(#deviconRenpy3)\\\"/><path fill=\\\"#887c74\\\" d=\\\"m82.49 103.59l-.297.257c.951.38 2.326.964 2.434 1.683c.154-.39.146-.826-2.137-1.94m-.752.732l-.792.91l.673 4.157zm.53.413c-.13.002-.141.156-.12.592l-.095 6.158c-.003.68.082.614-.51.95c-.67.366-1.392.483-2.125.543c-.44.036-.961.13-.255-.256l.595-.406c.778-.532.595-.41-.128-.109c-1.435.597-2.911 1.1-4.501 1.348c-.603.093-1.118.263-.798-.544c.458-1.696 1.5-3.218 2.43-4.772l-11.028 8.033l1.875.671l14.442-4.198l3.387-1.637l1.287-1.4l.112-1.091c-.385 1.14-1.719 2.039-3.108 2.754c-.487.25-1.26.69-.423-.076l.92-1c.766-.831-.162-.19-.733-.041c.063-1.308.335-1.642.545-2.267l.15.865c.15.567.307.467.854.127c.558-.36 1.064-.859 1.571-1.356l-.098-.259l-2.085 1.323l-.206-3.146l-1.398-.595c-.285-.122-.458-.213-.559-.211z\\\" filter=\\\"url(#deviconRenpy4)\\\"/><path fill=\\\"#e7c763\\\" d=\\\"M47.796 97.099c.305-.259 1.272-1.358 1.702-1.346c.356.344.428.474.88.615l-.247 1.78l-2.569 1.633z\\\"/><path fill=\\\"#fde759\\\" d=\\\"M51.615 59.238c-1.687.332-2.94 1.204-4.434 1.94c-1.802.043-3.48-.075-5.283-.317c-1.883.434-2.914 2.34-3.623 4.295l-.553 3.879c-.643 1.304-1.262 2.512-1.535 3.98l.086.075c-.155.446-.343.879-.07 1.302c.477.7 1.396 1.258 2.096 1.705c.008-.028 2.905 1.716 3.5 1.903v.002c.228.793.68 1.404 1.683 1.978c2.876 1.284 8.13 1.222 9.4.178c.003-.019-.002-.033-.001-.05c.128-.043.274-.08.377-.128c1.526-.763 2.545-1.244 3.76-2.513l.693-1.05l1.78-2.77c.76-1.246 1.477-2.277 1.86-3.702c-1.214-2.478-4.91-5.276-6.193-7.7c-1.086-1.243-1.927-2.458-3.543-3.007m3.518 25.428c-.872.047-1.64.294-2.504.51c-1.037.41-1.723.335-2.814.355c-.346.007-.56.026-.739.069c.01-.014.015-.025.026-.04c-1.35.27-1.536.448-1.588 1.739c.643 1.708 2.549 1.743 4.101 1.469l1.407-.358c.002-.011-.013-.018-.014-.03c.484-.16.948-.366 1.412-.577c.722-.42 1.065-.945 1.426-1.649c.15-.809-.034-1.192-.713-1.488\\\"/><path fill=\\\"url(#deviconRenpyh)\\\" d=\\\"M38.36 70.734c-.659.477-1.706 1.447-2.013 2.124c-.152.532-.465 1.036-.145 1.534c.477.7 1.399 1.258 2.098 1.706c.008-.028 2.905 1.716 3.5 1.902c-.24-1.339-.067-2.318.27-3.388c-1.279-1.107-1.607-2.304-2.213-3.587c-.132.83.786 2.919 1.157 3.473c-1.743-.312-2.419-2.086-2.662-3.697c-.004-.01.019-.068.008-.067\\\"/><path fill=\\\"url(#deviconRenpyk)\\\" d=\\\"M47.701 70.887c-.054-.258-.117-1.825.312-1.872c.43-.047.827 1.179.957 1.672a12.46 12.46 0 0 0-1.269.2\\\"/><path fill=\\\"url(#deviconRenpyg)\\\" d=\\\"M52.439 74.461a1.12 1.12 0 0 0-.293.053c-.804.256-.762 1.162-.762 1.162c.794-.54 1.234-.654 2.205-.69c0 0-.49-.557-1.15-.525m-6.012 1.033c-.094.005-.19.023-.29.055c-.804.256-.764 1.162-.764 1.162c.793-.54 1.234-.654 2.205-.69c0 0-.49-.559-1.15-.527\\\"/><path fill=\\\"url(#deviconRenpyf)\\\" d=\\\"M41.799 78.001c-.177-.14-.215-2.156.004-2.323c.779 7.124 11.324 2.553 11.08 4.48c-1.272 1.044-6.526 1.106-9.402-.178c-1.003-.574-1.454-1.186-1.682-1.979\\\" filter=\\\"url(#deviconRenpy0)\\\"/><path fill=\\\"#e3c265\\\" d=\\\"M49.102 85.561c-2.396 3.193 4.052 2.158 3.919 2.85l-1.406.356c-1.552.275-3.46.239-4.102-1.469c.052-1.29.24-1.467 1.589-1.737\\\" filter=\\\"url(#deviconRenpy7)\\\"/><path fill=\\\"url(#deviconRenpyl)\\\" d=\\\"M48.172 96.733c.421.405 1.122.956 2.058.742c.12.73.19.936.396 1.583c.073.722.278 1.216.307 2.138c-1.95-.103-4.222-1.588-5.106-3.058c1.151.013 1.619-.7 2.345-1.405\\\"/><path fill=\\\"#fff\\\" d=\\\"M51.643 61.535c-2.663.193-2.555 3.175-2.521 5.68l.556 3.382c1.844-.075 3.184-.073 5.315.635c.412-3.182.817-8.024-2.032-9.6a5.106 5.106 0 0 0-1.318-.097m-8.973 1.068c-2.33.815-2.566 2.414-2.672 4.69c.312 2.647 1.257 4.832 2.45 6.705c1.4-1.837 3.325-2.565 4.255-2.86c.039-1.95-.375-4.035-.744-5.708c-1.06-2.557-2.075-2.762-3.289-2.827m13.883 15.414l-1.21.862c.51.048 1.006.646 1.105 1.65l.14-.418c.144-.877.003-1.31-.035-2.094m-11.95 2.352c.21.506.597 2.002 1.314 2.428c-.194-.543-.623-1.516.097-2.016z\\\"/><path fill=\\\"url(#deviconRenpym)\\\" d=\\\"M63.985 61c.463.892 4.315.748 4.75-.06c.582-1.304.553-1.568.633-2.018c-2.257-.652-4.455-.245-5.917 0c-.163.624.18 1.35.534 2.078\\\"/><path fill=\\\"url(#deviconRenpyi)\\\" d=\\\"M68.042 67.076c-1.66 2.87-4.704 3.807-7.593 1.135l-.096-2.243a79.13 79.13 0 0 0 7.788.376z\\\"/><path fill=\\\"#dfd9c9\\\" d=\\\"m68.398 69.767l-2.037 2.28c2.607-.06 4.117.63 6.15 2.032zm-7.164 1.21l-1.425 1.838l6.12-.738zm4.845 2.055a20.921 20.921 0 0 0-2.55.14c1.894.564 2.88 1.034 4.671-.04a25.68 25.68 0 0 0-2.121-.1m4.892 4.928c-2.641 4.583-2.46 3.706-5.858 1.86c1.456 1.797 2.948 3.118 3.469 3.547z\\\"/><path fill=\\\"#bcad9d\\\" d=\\\"m54.799.762l-.611.25c-8.275 4.686-16.938 8.52-19.69 25.275c-4.66 2.904-8.103 6.156-11.302 9.478c1.26 1.175 4.942 1.534 9.697 2.297l.803-5.96l3.472-2.036c.485-1.488.896-2.976 1.668-4.465c.424-.813.886-1.353 1.84-1.681c8.238-4.013 14.334-4.933 21.111-6.836c-5.17.638-10.364 1.477-19.248 4.56c-1.274.443-1.584.82-1.098-.906c.8-4.135 2.654-7.943 4.858-11.184c-1.27 2.516-1.896 5.105-2.285 7.72c2.658-5.356 5.475-10.61 9.937-14.806c.492-.607.89-.566 1.549-.414c4.445 1.031 10.417 4.893 15.016 10.85c-1.83-2.907-4.619-7.88-12.061-10.688L54.799.76zm15.717 12.143c.462.734.865 1.338 1.264 1.74a35.586 35.586 0 0 0-1.264-1.74m20.146 8.814c1.652 2.302 2.352 4.258 3.223 6.276c2.443-1.41 4.297-3.28 6.078-5.205c-3.942-.723-7.075-1.094-9.301-1.07\\\" filter=\\\"url(#deviconRenpy5)\\\"/><path fill=\\\"#e5dfd1\\\" d=\\\"M51.82 61.51c-4.016.018-2.63 5.748-2.138 9.087c.353-3.99.158-6.626 3.28-8.963a5.645 5.645 0 0 0-1.142-.124m-9.14 1.266c-4.097.061-2.877 7.595-.233 11.222c-1.168-5.017-1.71-7.988 1.678-10.99c-.542-.165-1.022-.239-1.446-.232z\\\" filter=\\\"url(#deviconRenpy1)\\\"/><path fill=\\\"#e6c764\\\" d=\\\"M88.971 97.781c-.559.014-1.104.05-1.658.096l-.28.412l-1.925 2.299c1.069.186 2.227.581 2.877 1.144c.108.37.196.766.275 1.168c.047.326.102.67.168 1.069c.003.004.008.006.012.01c.085.624.142 1.236.168 1.763c-.688.558-1.471 1.141-2.094 1.623c.084.435.21.627.576.62c1.117-.076 2.23-.035 3.346.019c2.347.323 4.148 1.787 5.373 3.246l.008-.025c.061.083.131.161.191.246c-1.893 4.965-7.43 4.485-11.678 2.968c-4.82-1.746-9.176-1.05-12.814 1.534c-.912 1.06-1.47 1.804-1.977 2.964c-.02.02-.11.102-.11.102a38.3 38.3 0 0 0-.136.488c-.021.057-.043.098-.064.157l.023-.004c-.512 1.93-1.208 5.615 2.22 6.552c-3.64-4.876.702-6.844 5.3-6.666a55.04 55.04 0 0 1 2.727.41c4.23 1.425 9.95 3.801 14.516 2.948l.033.006l.062-.024c.844-.166 1.65-.433 2.393-.853c-.093.005-.195-.006-.29-.004c3.853-1.722 7.173-4.316 8.483-8.975c-.003-3.882-.12-6.045-4.773-11.004l-2.317-1.896c-.918-.099-1.687-.819-2.162-1.301c.295.561.54 1.271.51 1.965c-.242.17-.44.077-.719-.047c-.892-.614-1.655-1.468-2.367-2.158c-.848-.688-1.368-.718-2.162-.819a19.857 19.857 0 0 0-1.734-.033z\\\"/><path fill=\\\"url(#deviconRenpye)\\\" d=\\\"M88.971 97.781c-.559.014-1.104.05-1.658.096l-.28.412l-1.925 2.299c1.069.186 2.227.581 2.877 1.144c.108.37.196.766.275 1.168c.047.326.102.67.168 1.069c.003.004.008.006.012.01c.085.624.142 1.236.168 1.763c-.688.558-1.471 1.141-2.094 1.623c.084.435.21.627.576.62c1.117-.076 2.23-.035 3.346.019c2.347.323 4.148 1.787 5.373 3.246l.008-.025c.061.083.131.161.191.246c-1.893 4.965-7.43 4.485-11.678 2.968c-4.82-1.746-9.176-1.05-12.814 1.534c-.912 1.06-1.47 1.804-1.977 2.964c-.02.02-.11.102-.11.102a38.3 38.3 0 0 0-.136.488c-.021.057-.043.098-.064.157l.023-.004c-.512 1.93-1.208 5.615 2.22 6.552c-3.64-4.876.702-6.844 5.3-6.666a55.04 55.04 0 0 1 2.727.41c4.23 1.425 9.95 3.801 14.516 2.948l.033.006l.062-.024c.844-.166 1.65-.433 2.393-.853c-.093.005-.195-.006-.29-.004c3.853-1.722 7.173-4.316 8.483-8.975c-.003-3.882-.12-6.045-4.773-11.004l-2.317-1.896c-.918-.099-1.687-.819-2.162-1.301c.295.561.49 1.15.46 1.843c-.242.17-.534.083-.669.075c-.892-.614-1.655-1.468-2.367-2.158c-.848-.688-1.368-.718-2.162-.819a19.857 19.857 0 0 0-1.734-.033z\\\"/><path fill=\\\"#fde859\\\" d=\\\"M95.443 98.873c.295.561.49 1.15.46 1.844c-1.657.943-2.56-.354-3.929-1.44c-.598-.431-1.025-.101-1.025-.101c-1.494 1.122-2.598 2.658-2.451 3.886c.078.628.178.462.797.604c1.618.346 5.678 1.333 6.613 2.715c1.16 1.714-.062 4.77-.092 4.844c.062.083.131.161.191.246c-1.893 4.965-7.43 4.485-11.678 2.968c-4.82-1.746-9.175-1.05-12.814 1.534c-.912 1.06-1.468 1.804-1.976 2.964c.283-.281 2.413-2.305 5.709-2.584c3.486-.294 14.198 5.843 20.967 5.696c3.852-1.722 7.17-4.316 8.48-8.975c-.003-3.882-.119-6.045-4.773-11.004l-2.316-1.896c-.918-.099-1.687-.819-2.163-1.301m-7.184 4.027c.047.326.102.67.168 1.069c.004.004.009.006.012.01a18.51 18.51 0 0 0-.18-1.078zm-18.967 16.627c-.02.057-.043.098-.064.157l.023-.004zm24.816 3.38c-.031.005-.063.01-.095.017l.033.006z\\\" filter=\\\"url(#deviconRenpyd)\\\"/><path fill=\\\"url(#deviconRenpys)\\\" d=\\\"M80.696 21.103c-17.484-.039-33.147 5.325-47.001 10.999a364.111 364.111 0 0 0-.752 6.666a226.2 226.2 0 0 0 1.876-1.25c-1.092 7.17-2.401 13.69-3.787 19.979l-.118-3.669l-1.465 7.191l1.267-1.78l-.574 3.443l4.63-.08l1.09-2.968l.415 2.573l.119.594l.772-.871l.277 1.069l1.484.475c1.209-2.243 2.259-2.85 4.75-2.554c.844.011 3.832.813 4.271-.113c-2.615-6.94-3.05-15.167-3.489-23.269c-.845 6.543-1.466 13.22-1.567 20.208c-1.15-4.797-1.91-9.926-2.016-15.618c-.452 2.868-.912 5.651-1.511 7.054c-.254-4.161-.636-9.09-1.024-14.053C50.814 26.675 64 18.457 90.218 24.408c.719.161 1.469.342 2.083.495c.271-.405-1.122-2.262-1.705-3.19a83.212 83.212 0 0 0-9.9-.61m4.91 4.289c1.244 2.98 2.726 6.039 3.286 9.494c.017-.221.03-.44.05-.664c.087.204.179.42.272.654c1.061 2.82 1.05 5.88.995 8.846c.64.208.957-1.017 1.004-1.443c1.049-6.933-.9-12.527-5.607-16.888zM56.72 26.86c-1.54 1.902-3.032 3.828-4.156 5.937c.033-.497.195-.544.04-1.702a20.109 20.109 0 0 0-4.354 3.563c.59-1.39.731-2.782.8-4.172c-.955 3.075-2.067 5.707-2.425 8.293a42.634 42.634 0 0 1 4.497-5.55c-.095.563-.46 1.042-.7 1.511c-1.114 2.974-1.931 5.534-2.31 8.223c-.043.302-.082.615-.118.942c.468-.625.74-1.373 1.028-2.028c.106 1.911-.069 2.88.756 3.863c.067-.313.138-.58.216-.856c.177-6.593 4.217-12.54 6.727-18.024zm34.146.659c.93 2.264 1.416 3.856 1.681 5.113l-.001-.02c.864 2.172.964 4.039 1.343 6.107c.318-1.741.452-3.876.088-4.971c-.688-2.038-1.425-4.08-3.11-6.23m-23.679.392c-2.779 4.28-5.392 7.361-6.516 11.897c1.621-3.658 3.293-6.774 5.257-9.742c-1.441 4.28-3.322 7.72-3.508 11.717c.326-.504.44-1.234.784-1.69c.633-3.752 2.474-8.04 3.984-12.182zm-6.558.704c-.784.722-1.516 1.619-2.194 2.6c-.058.085-.119.165-.176.25l-.112.49l-.799 1.929c-1.22 2.983-2.835 6.289-2.583 9.42c.464-.703.894-1.626 1.143-2.269c.726-4.569 2.457-8.34 4.721-12.42M71.5 29.87c-5.626 7.786-5.992 10.569-6.58 13.564c-.072.368-.147.738-.236 1.122c.923-2.27 1.776-4.32 2.824-6.185c.107-.189.224-.369.353-.524c-.252 1.475-.366 2.876-.252 4.226c.194-.328 1.293-4.663 2.178-6.381c-.101.636-.193 1.24-.275 1.814c-.95 5.317-.43 9.018 1.316 11.789c1.145-.038 3.55-5.434 3.217-5.864c-.753 1.42-2 3.49-2.822 3.835c-1.166-5.778-.585-11.472.276-17.396zm10.971.224l.31 3.347c0-.425-.005-.951-.013-1.356c.25 2.037.864 4.088 1.08 5.956l.133.42a1.27 1.27 0 0 0-.089-.008c.034 1.29.206 2.559.237 3.796c.053 2.08-.228 4.208-.118 6.024c.887-.497 1.514-2.208 1.693-3.233c.015.395.019.78.07 1.148c.11.649.212 1.38.437 1.611c.78-1.613 1.452-3.275 1.637-4.713c-.465 1.42-.933 2.814-1.458 3.69c.361-1.815.72-3.632.644-5.738c-.539.802-.795 1.033-1.008 1.763c-.035-.53-.032-.986-.156-1.695c-.02-.064-.042-.127-.063-.19l.02-.06c-.59-3.94-1.798-7.467-3.356-10.762m-6.101.448c.444.948.487 3.065.62 5.308c.309-1.254.185-2.859-.12-4.24c1.103 4.149 2.267 8.827 2.703 13.146c.643.135 1.114.57 1.657.916c.99-2.396 1.093-4.394 1.292-6.496c-.425 2.4-.89 4.517-1.506 5.584c-.406-4.815-1.069-10.923-4.646-14.218M37.637 35.61c-.724 7.911-2.234 14.25-3.699 20.682c.593-5.773 1.172-11.57.899-18.785c.934-.628 1.866-1.263 2.8-1.897m50.514 6.632c-.314 1.41-.765 2.785-1.173 4.17l-2.687 6.577c-.939 2.323-1.934 4.622-2.928 6.922c-1.91 2.045-4.895 3.32-7.006 4.404l.88.317l.763.089c2.582-1.373 5.395-1.569 8.114-.89c1.43-1.46 2.521-3.362 3.368-4.866c.098 1.984-.232 3.734-.63 5.653c.67-.457 1.17-1.082 1.708-1.679a7.225 7.225 0 0 0 .14 1.568c1.573-1.961 2.381-3.663 2.77-5.836c.268 1.529.29 2.717.265 4.223c3.003-7.273-.069-12.396-1.09-16.639c.53 3.347 1.047 8.272.475 9.975c-.469-4.68-1.924-9.756-2.97-13.988z\\\"/><path fill=\\\"#dfd9c9\\\" d=\\\"m49.191 95.924l-.386.205l-2.021 1.964l-3.373.028l-6.465 3.779c-3.597-.41-6.95-3.113-8.915-4.493c-.155-2.569-.389-5.05.168-7.557a188.418 188.418 0 0 1 2.967-3.946l2.071-9.46c-2.358-2.824-.077-4.936 2.1-5.094l2.113-2.59l.294.49l-1.176 2.463s-2.35.616-2.351 1.456c-.002.84 1.931 1.203 1.931 1.203c.532.935 1.543 1.35 2.435 1.931l-2.716.835c-1.095.196-.783.568-.61 1.544l1.14 6.41c.48 1.808.372 1.886-1.172 2.716l-4.06 2.181c-1.235.635-1.298.575.04.944l1.812.499c2.177.26 2.034 1.67 2.601 3.587l1.38 4.66c.169.622.444.624.928.28l4.436-2.748l2.211-3.33l.532-1.372l.252-3.135l-.139-1.59c.896 2.162 2.135 4.468 2.182 6.74c1.481-.409 3.003-1.465 4.52-2.449l-2.423 3.678z\\\" filter=\\\"url(#deviconRenpy2)\\\"/><path fill=\\\"#fff\\\" d=\\\"m80.018 45.02l-3.434 8.89c1.53-.077 3.367-.553 4.88-1.593c2.183-3.022 1.19-5.67-1.446-7.297m-29.393 2.154c-.658 1.317-.677 2.825.133 4.678c1.512 1.568 3.032 2.01 3.869 2.201z\\\"/><path fill=\\\"url(#deviconRenpyq)\\\" d=\\\"M78.336 44.928c-3.507.148-4.206 2.7-4.54 4.565c-.365 3.316.762 4.365 2.849 4.372c2.79-.042 4.142-3.13 4.47-5.019c.251-2.442.437-2.92-1.097-3.826a9.408 9.408 0 0 0-1.682-.092\\\"/><path fill=\\\"url(#deviconRenpyp)\\\" d=\\\"M56.205 44.242c-1.34-.014-2.477.36-3.223.639c-1.204.705-3.602 2.547-1.795 6.28c1.16 2.566 4.126 3.518 6.541 2.331c3.445-1.809 2.742-5.47 2.92-7.565c-1.559-1.27-3.103-1.671-4.443-1.685\\\"/><path fill=\\\"#a6aed6\\\" d=\\\"M59.625 49.496c-.076.04-.213.211-.44.545c-2.517 3.176-4.498 2.861-6.61 1.412c-.552-.403-.975-.803-.64.166c.524 1.373 2.297 2.153 4.24 1.947c1.845-.194 3.1-1.86 3.468-3.316c.069-.518.11-.82-.018-.754m20.725.416c-.032-.004-.132.147-.3.393c-2.58 3.586-4.705 2.541-5.51.78c-.199-.581-.33-1.075-.471-.12c-.074.896.344 2.231 2.203 2.426c2.08.217 3.467-1.584 3.974-2.942c.101-.374.136-.533.104-.537\\\" filter=\\\"url(#deviconRenpya)\\\"/><path fill=\\\"#212848\\\" d=\\\"M55.424 44.055c-3.182.069-6.37 2.651-4.236 7.107c-.212-3.289.414-6.44 7.218-6.314c-.862-.56-1.921-.816-2.982-.793m23.01.729c-4.099-.11-5.345 4.713-4.39 7.736c.208-4.763 1.614-5.98 4.786-6.742c.807-.055.889.277 1.247.6c.528.642.834 1.543 1.039 2.468c.139-.956.175-1.985.19-2.727c-.45-.771-1.26-.963-2.015-1.246a5.777 5.777 0 0 0-.857-.09\\\" filter=\\\"url(#deviconRenpy9)\\\"/><path fill=\\\"#fff\\\" d=\\\"M58.656 45.178a.533.533 0 0 0-.283.145c-.332.322-.15 1.261.22 1.558s1.021.245 1.272-.101s-.003-.97-.307-1.254c-.228-.213-.593-.403-.902-.348m21.803.418c-.258-.04-.516.015-.713.201c-.393.373-.263 1.404.12 1.813s1.121.603 1.525.205s.167-1.46-.221-1.848a1.323 1.323 0 0 0-.711-.371m-27.725 5.627a.664.664 0 0 0-.6.234c-.168.22-.14.621.069.832c.21.212.72.336.949.084c.228-.252.06-.888-.203-1.068a.512.512 0 0 0-.215-.082m22.037.144a.481.481 0 0 0-.416.126c-.223.222-.12.827.102 1.05s.608.307.832.084c.223-.222.118-.827-.104-1.05a.74.74 0 0 0-.414-.21\\\" filter=\\\"url(#deviconRenpy8)\\\"/><path fill=\\\"#475f66\\\" d=\\\"M58.232 76.947c-.262 0-.518.026-.766.074c-.124.219-.569.687-.906 1.055c.061.504.137 1.108.096 1.644l1.619-1.445a.873.873 0 0 1 1.234.068a.874.874 0 0 1-.07 1.237l-2.43 2.17a.872.872 0 0 1-1.234-.07a.871.871 0 0 1 .068-1.235l.483-.432c-.086-.476-.306-.858-.82-1.107c-.216.162-.814.522-1.055.674a4.032 4.032 0 0 0 3.781 5.43a4.03 4.03 0 0 0 4.03-4.032a4.03 4.03 0 0 0-4.03-4.031m1.92 1.184h.135l.109.162l.11-.162h.134l-.166.246l.172.256h-.133l-.117-.172l-.117.172h-.135l.174-.256zm1.23 1.814h.155l.185.5h-.13l-.032-.09h-.201l-.031.09h-.131zm.079.117l-.07.2h.138zm-1.303.242a.875.875 0 0 1 .576 1.53l-2.43 2.17a.874.874 0 0 1-1.236-.07a.874.874 0 0 1 .07-1.237l2.43-2.17a.87.87 0 0 1 .59-.223m-5.276 1.35h.141l.113.178l.114-.178h.142l-.191.29v.21h-.13v-.21zm1.448 1.973h.193c.07 0 .121.01.152.031c.032.021.047.055.047.102a.104.104 0 0 1-.066.1a.111.111 0 0 1 .062.044a.13.13 0 0 1 .024.078c0 .049-.016.086-.049.11a.259.259 0 0 1-.148.035h-.215zm.129.088v.105h.072c.02 0 .036-.005.047-.014c.01-.008.015-.021.015-.039c0-.017-.005-.03-.015-.039c-.01-.009-.027-.013-.047-.013zm0 .193v.13h.076c.026 0 .045-.004.058-.015c.014-.01.02-.028.02-.05c0-.022-.007-.039-.02-.05c-.012-.01-.032-.015-.058-.015z\\\"/><path fill=\\\"#b42320\\\" d=\\\"M58.874 78.146a.757.757 0 0 0-.54.226a.752.752 0 0 0-.22.648c.051.348.33.617.678.656a.776.776 0 0 0 .56-.164a.773.773 0 0 0 .265-.794a.771.771 0 0 0-.743-.572m-2.482 2.2l-.042.002a.773.773 0 0 0-.664.516a.608.608 0 0 0-.037.247c0 .113.004.144.033.235c.09.286.343.492.647.53a.767.767 0 0 0 .208-1.519c-.003 0-.036.066-.074.148c-.009.02-.016.03-.017.024a1.206 1.206 0 0 1-.018-.068a1.099 1.099 0 0 0-.025-.088zm3.775.053a.765.765 0 0 0-.09 1.528a.76.76 0 0 0 .634-.22a.76.76 0 0 0 .098-.963a.752.752 0 0 0-.303-.266a.72.72 0 0 0-.339-.078zm-2.438 2.2a.768.768 0 0 0-.636 1.228a.786.786 0 0 0 .552.305a.77.77 0 0 0 .699-1.192a.77.77 0 0 0-.615-.341\\\"/><path fill=\\\"#2f2f2f\\\" d=\\\"M44.232 80.676c-.03-.015-.082-.009-.596.064c-.366.053-.572.085-.592.096c-.035.021-.066.07-.066.106c0 .014.042.326.094.693c.052.367.094.668.092.67c-.002.002-.305.047-.672.1a11.72 11.72 0 0 0-.705.113c-.044.02-.069.063-.069.12c0 .024.035.282.076.575c.054.37.084.541.096.56c.01.016.035.037.057.048c.038.018.054.016.719-.079c.374-.053.685-.092.689-.087s.048.295.098.644c.05.35.095.658.101.688c.016.069.064.107.133.107c.027 0 .285-.034.576-.076c.573-.083.57-.082.608-.156c.018-.038.017-.052-.078-.721c-.064-.45-.094-.685-.086-.688c.006-.002.297-.044.646-.093s.654-.095.678-.1c.05-.01.104-.057.113-.1a17.46 17.46 0 0 0-.164-1.158a.137.137 0 0 0-.11-.072c-.07.004-.127.01-.199.016a7.9 7.9 0 0 0 .178.773c-.22-.123-.478-.481-.613-.711l-.727.102c-.003-.004-.05-.312-.103-.684c-.106-.727-.103-.715-.174-.75m8.336 1.492a.277.277 0 0 0-.133.03a.286.286 0 0 0-.137.136c-.025.052-.368.988-.375 1.024a.307.307 0 0 0 .244.348a.304.304 0 0 0 .313-.143a.94.94 0 0 0 .047-.11c.252-.683.327-.889.334-.912a.34.34 0 0 0 0-.148a.305.305 0 0 0-.293-.225m-2.52.625a.296.296 0 0 0-.261.153c-.014.024-.354.943-.371 1.003a.298.298 0 0 0 .08.3c.05.048.107.073.185.083a.329.329 0 0 0 .184-.045a.337.337 0 0 0 .113-.129c.017-.037.358-.968.365-.998a.307.307 0 0 0-.084-.287a.296.296 0 0 0-.21-.08\\\"/><path fill=\\\"url(#deviconRenpyt)\\\" d=\\\"m72.297 70.287l1.022.74c1.296.256 1.871.338 2.898 1.274c2.04 2.48 3.166 4.715 3.463 8.213c-.403 3.103-1.486 5.526-3.147 8.53c-2.829 4.415-5.189 7.43-9.322 11.302c-2.373 2.268-5.534 3.948-9.162 4.75c-2.117.333-5.589.553-6.393.83c-3.544 1.652-6.39 4.013-5.74 8.332c2.377 6.712 12.698 5.749 20.266 2.178c3.517-2.06 6.322-3.636 9.461-6.215c4.413-3.932 7.601-7.358 10.914-11.297c4.222-5.047 6.8-11.525 6.83-17.326c-1.187-6.81-3.432-15.311-9.937-17.885c-4.817-.975-10.84 1.485-11.152 6.574z\\\"/><path fill=\\\"url(#deviconRenpyu)\\\" d=\\\"M80.625 69.875c1.502 3.388 2.638 13.047-.625 18.25s-9.955 15.274-15.985 17.539c-5.037 1.892-11.582 1.317-13.515 3.336s-.872 5.485 4.75 6.75s13.422-1.819 25.696-10.517C91.654 93.48 101.25 81.037 84.273 63.77c-2.469-.33-4.862-.33-7.123.238c0 0 1.972 2.48 3.475 5.867\\\" filter=\\\"url(#deviconRenpyb)\\\"/><path fill=\\\"#fde759\\\" d=\\\"M59.003 111.46c5.162.084 12.811-1.57 23.19-7.613c10.416-10.411 14.631-29.585 3.884-36.96c-5.347-3.34-3.239-.858-2.115 2.624c2.463 7.714 3.425 20.516-8.462 30.613c-7.182 6.1-15.374 8.013-17.464 8.538c-8.319 1.987-3.057 2.706.967 2.798\\\" filter=\\\"url(#deviconRenpyc)\\\"/><path d=\\\"M54.797.762c-.505-.002-.96.115-1.457.363c-13.129 6.54-18.129 16.323-19.514 24.771c-3.95 2.8-7.186 5.686-10.395 9.088c-.557.643-.606 1.115-.197 1.414c1.037.75 6.112 1.551 9.42 1.822c-.646 8.368-2.118 16.46-3.8 24.383l1.466-1.861l-.475 2.217l4.986-.078c.454-.87.812-1.72.95-2.694c.274 1.002.438 1.949.515 2.852l.752-.555l.356.713l1.171.461c-.497 1.113-.915 2.659-1.093 4.813l-2.303 2.755c-1.084.053-2.187.485-3.375 2.61c-.11.22.074.866.18 1.037c.397.482.788.957.75 1.307c-.305 3.084-1.3 6.688-1.979 10.055c-1.323 1.401-2.667 2.787-3.168 4.908v5.426c-.122.804.235 1.054.8 1.464c2.625 1.9 6.089 3.884 8.067 4.272c.871.041 3.882-1.94 6.928-3.84l2.375.04c1.39 1.673 3.104 2.76 4.992 2.845c.117 1.148.187 2.225.291 2.398l.006.004c-.375.168-.748.453-.838.889c-.1.482.424.859.848 1.09c-1.157.457-2.324 1.233-3.305 2.22c-1.24 1.249-2.185 2.841-2.37 4.573v.004c-.129 1.355.462 2.886 1.251 3.922l.002.002c1.91 2.47 5.347 3.321 9.059 3.16c3.48-.152 7.231-1.194 10.312-2.71c.804.421 2.44.163 4.66-.474c-.827 1.05-1.811 2.615-2.031 5.549c-.217 2.56 1.498 4.443 2.89 5.186c.882.305.788-.363.045-1.233c-.893-1.03-1.358-1.945-1.369-2.828c-.021-1.8 2.038-3.21 5.664-3.387c4.45-.256 11.154 4.221 16.863 3.762c.75-.062 1.46-.261 2.207-.578c5.554-2.106 9.717-5.302 10.094-11.188c.158-4.882-3.528-8.53-7.213-12.18c0-.07-.007-.147-.021-.234c-.5-1.568-1.504-2.383-2.633-3.008c-.695-.211-1.047-.246-1.584-.18c-1.283.166-3.008.625-3.75.72c-.298-.28-.59-.538-.9-.695c2.596-3.889 4.395-8.018 4.664-12.369c.285-3.015-.661-8.348-2.846-12.867c-1.093-2.26-2.497-4.314-4.238-5.748c-.756-.568-1.48-1.051-2.235-1.38c1.09-.981 1.88-2.13 3.18-4.426c-.139 2.016-.375 3.855-.807 5.578c.59-.417 1.26-.835 1.704-1.52c-.028.646.082 1.108.279 1.455c2-2.322 2.737-4.258 2.855-5.728c.17 2.473.161 4.693-.168 6.205c2.066-2.023 2.542-3.869 3.918-9.855l.278 6.966c.37-1.34.496-2.081.732-3.642c1.034-14.777-.234-24.338-2.217-30.38c2.215-1.624 3.733-2.827 6.075-5.302c.217-.214.26-.459.107-.658c-2.425-2.031-7.355-4.496-14.633-6.031C78.451 9.466 72.397 3.004 55.784.89a4.49 4.49 0 0 0-.986-.13zm.268.756c.244.002.492.02.746.046c8.785.95 18.602 3.665 29.225 15.295c5.138 1.487 10.682 2.193 14.576 5.891c-17.272-3.813-37.86-2.793-65.863 9.025c.006-.041.01-.083.015-.125l-.017.125a212.696 212.696 0 0 0-8.598 3.86c2.848-1.15 5.686-2.314 8.543-3.453l-.799 5.88c-3.26-.581-9.09-1.616-8.945-2.454c-.013-.913 4.012-4.723 10.549-9.32c1.77-12.788 11.07-21.399 19.33-24.61c.428-.122.83-.164 1.238-.16m2.021.812c6.844 2.053 11.74 8.911 15.152 12.854C68.57 10.042 65.621 4.712 57.086 2.33m-3.69.346c-8.388 6.264-8.981 12.522-10.528 18.129c2.185-7.073 4.845-13.438 10.529-18.13m19.366 13.436c-11.754.02-23.81 2.773-36.305 9.449c11.68-5.684 24.734-10.416 47.02-8.734a80.19 80.19 0 0 0-10.714-.715zm8.92 5.24h.001c2.138-.001 4.33.062 6.579.197c5.229 7.195 6.373 11.438 5.628 17.17c-.158-1.862-.32-4.436-1.343-6.105c.183 1.67-.032 3.12-.123 4.656c.122-.924.301-2.639.357-3.563c.9 2.104.845 5.343.438 9.877c1.587-7.577 2.56-12.76-4.948-22.035c.768.047 1.543.101 2.324.165c6.324 9.947 5.983 26.83 5.26 36.674c-.142-2.502-.426-4.544-.185-8.291c-.832 5.264-1.489 10.996-3.84 14.406c.175-2.282-.05-5.524-.475-6.965c.045 2.877-1.527 5.787-2.504 6.564c-.157-.755.045-1.512.252-2.267c-.76 1.228-1.36 1.73-2.048 2.382c.624-2.332.773-3.973.808-6.453c-1.05 2.446-2.323 4.382-3.832 5.903l-.004.002c-1.243-.22-2.555-.397-3.72-.274c-1.234.106-2.276.32-3.157.613l-.023-1.002a41.625 41.625 0 0 0 3.96-2.474c.16-.123.472-.537.567-.752l4.2-10.596l-4.508 10.436c-.13.29-.424.776-.707.955c-3.561 2.528-7.14 4.32-12.03 5.63c-2.686.345-9.16-.396-10.997-.874c-.685-.656-1.146-1.608-1.62-2.35c-1.562-2.144-2.3-3.137-3.728-3.644c-.348-.103-.646-.237-.963-.227c-1.257.15-2.236.947-3.185 1.487c-2.282-11.11-2.423-16.645-1.536-21.387c1.319-2.253 2.72-3.973 4.18-5.31c-.144.41-.225.565-.336.84c.267-.524.7-1.154.7-1.51c-1.518 1.582-3.062 3.073-4.399 5.257c.432-2.039 1.048-3.975 1.758-6.201c-1.84 5.358-4.465 10.369-.612 28.443c-.37.191-.74.331-1.125.365c-1.85.097-3.551-.725-5.615-.268c-.413.187-1.424.683-2.29 2.297l-1.237-.283c-.17-.58-.204-1.16-.277-1.74c-.237.702-.53 1.183-.872 1.463c-.117-1.658-.202-2.623-.593-3.721c-.396 1.234-.792 2.8-1.188 3.563l-4.234-.04c.601-1.38.474-3.199.594-4.869c-.383 1.137-.78 2.22-1.291 2.838c2.288-9.168 2.745-18.744 3.953-28.152c14.295-5.702 29.07-10.815 47.986-10.83M92.422 37.27c-.449 2.821-.686 4.85-2.214 6.453c.449-5.396-.574-7.873-1.268-9.5c-.348 4.066-.177 7.707-2.73 13.576c-.07-.022-.115-.34-.159-.672c-.046.49-.106.985 0 1.424c1.794-3.024 2.516-7.216 3.127-13.457c1.21 3.337 1.057 6.946.594 10.172c1.54-1.956 2.42-4.529 2.65-7.996m-1.761-15.551c2.882.235 5.86.585 8.943 1.066c-1.584 2.21-3.958 3.891-5.72 5.21c-.976-2.843-2.11-4.871-3.223-6.276m-24.734 8.348c-1.762 4.829-4.496 9.657-3.705 14.486c.208-1.247.038-2.272 1.07-3.998c-.178 4.199.148 5.103.514 7.007c.695-3.015 1.888-5.837 3.404-8.628c-1.233 2.253-2.505 4.536-3.443 7.6c-.596-2.333-.268-4.74-.278-6.81c-.448.534-.842 1.155-1.068 2.06c.167-3.906 2.3-7.812 3.506-11.718zm0 0c-1.88 2.84-2.932 4.418-4.248 7.351c-.202-.21-.405-.407-.612-.593c.723-2.044 1.602-3.647 2.426-5.475c-1.067 1.786-1.94 3.566-2.58 5.34a8.072 8.072 0 0 0-1.314-.938c1.188-1.5 2.477-2.923 3.894-4.402c-1.449 1.492-2.762 2.87-3.98 4.353c-.82-.445-1.69-.691-2.627-.681c.15-.376.305-.753.463-1.137c-.163.36-.338.74-.516 1.139c-.45.009-.913.077-1.395.209l.33-.457l-.34.459c-1.95.537-4.186 2.131-6.83 5.168c.491-2.016 1.141-3.597 1.823-5.662c-.96 2.273-1.528 4.116-1.914 5.767c-.254.294-.51.598-.772.918c.254-.284.503-.555.748-.816c-.334 1.45-.53 2.757-.73 4.082c.43-.774.889-1.508 1.213-2.422c-.034 1.533.139 2.962.7 4.197c1.046-4.137 3.13-7.538 5.442-10.777a6.02 6.02 0 0 1 1.557-.283c-.953 2.18-1.968 4.934-2.137 8.412c-2.309.313-4.532 1.994-5.347 6.582l1.576 1.451c-.03-.105-.043-.203-.069-.306c-.668-6.502 3.932-7.889 8.223-6.409a13.31 13.31 0 0 1 1.486.907c-.031 1.776.109 3.159-.875 5.33c-.611 1.51-2.38 2.294-3.81 2.4c-2.143.135-4.067-1.448-4.526-2.611c.699 1.774 2.589 3.049 4.553 2.89c1.973-.159 5.087-.896 4.926-7.082l-.018-1.043l.334.157c-.638-.947-3.51-2.583-6.3-2.278c1.415-3.083 2.956-5.54 4.718-7.8c.487.234.967.53 1.446.88c-.78 2.217-1.198 4.421-1.186 6.614c.459-2.024 1.202-4.013 2.074-5.906c.176.15.353.306.53.468c-.163-.19-.327-.373-.493-.548c1.28-2.76 2.826-5.308 4.157-7.448m-8.578 3.818c.323-.714.607-1.357.799-1.93c-.27.651-.538 1.295-.8 1.93m.799-1.93l.292-.755l-.544.658l.363-.393zm9.062 6.979c.139-.17.272-.371.436-.416c-.21 1.94-.345 4.277-.178 6.355c.364-1.883.486-4.906 2.07-8.117c-.45 3.131-.963 6.186-.203 9.238c.284 1.142.748 2.6 1.459 3.745c1.962-1.767 2.969-4.226 3.371-6.123c.3.55.24 1.611.356 2.377c1.656-2.667 2.652-6.736 2.742-12.162c.485 1.454.904 3.094 1.246 4.728c-.35.233-.697.472-1.047.691c.352-.215.703-.442 1.055-.66a52.17 52.17 0 0 1 .89 5.899c-2.412-.555-4.223.85-6.086 3.545c.388-.318.708-.567 1.077-.866c-.741 1.569-.974 3.928-.58 5.047c.569 1.24 1.84 1.819 3.05 1.703c2.2-.197 3.866-2.219 4.246-5.072c-.522 2.01-1.753 4.914-4.941 4.844a2.777 2.777 0 0 1-1.203-.385c-1.678-1.177-1.266-3.727-.697-5.502c.136-.352.281-.645.464-.908c.48-.387.997-.812 1.428-1.15c3.481-1.88 6.633.704 6.082 4.81c-.09.674-.494.993-.785 1.762l1.584-1.381c.159-2.796-.611-4.531-1.57-5.483c.664-2.246 1.038-4.93 1.326-7.74c.29.133.585.318.885.565c.394 3.226.526 7.713-.041 11.018c.86-.87 1.51-2.084 1.959-3.625c.056.263.112.348.168.517c-.051-.355-.058-.753-.07-1.146c-.326 1.377-1.02 2.728-1.694 3.232c.163-3.162.237-6.354-.12-9.82c.848.77 1.735 2.037 2.677 4.002c-.947-2.244-1.848-3.626-2.72-4.414a44.694 44.694 0 0 0-1.081-5.957c.035 1.62.01 3.427-.098 5.224c-1.392-.491-2.72.297-4.04 1.176c-.451-2.254-1.043-4.678-1.759-6.873c.557 5.192-.485 11.57-2.297 13.875c.075-1.438-.093-1.868-.474-2.455c-.239 2.551-2.307 5.836-3.272 6.266c-.518-.779-.952-2.198-1.236-3.051c-.813-2.447-.616-5.467.197-10.555c-.95 1.876-1.585 4.15-2.18 6.383c-.093-1.093.131-2.771.253-4.227c-.272.325-.453.71-.649 1.086m15.854-3.94c.21.652.408 1.656.57 2.866a3.449 3.449 0 0 0-.797-.487c.08-.787.154-1.583.227-2.379m-26.137.409c.828.005 1.612.202 2.377.556c-1.652 2.047-3.132 4.311-4.54 7.346c-.151-2.102.758-4.856 1.968-7.9c.065-.002.13-.002.195-.002m-1.84.294c-2.334 3.167-4.514 6.382-5.308 10.043c-.641-.76-.6-2.446-.756-3.863c-.313.706-.582 1.456-1.03 2.027c.144-1.307.343-2.4.579-3.388c2.573-2.731 4.673-4.232 6.515-4.819m5.918 1.307c.21.16.422.33.633.508a87.169 87.169 0 0 0-1.76 4.31c.267-1.923.662-3.469 1.127-4.818m20.506.43v.002h.096c.34.006.687.07 1.039.209c-.19 2.875-.596 5.693-1.299 7.685c-.528-.473-1.153-.72-1.804-.818c-.139-1.517-.44-3.642-.909-5.994c.943-.576 1.89-1.07 2.877-1.084M66.426 58.397c-.925.005-1.852.104-2.806.271c-.24.056-.333.078-.356.324c-.05.695.454 1.46.723 2.008l-.059-.138c-.254-.659-.463-1.173-.457-1.56c.013-.313.132-.307.322-.339c1.446-.216 2.885-.509 5.198-.035c.104.032.172.094.18.24c.031.653-.197 1.19-.434 1.774c.287-.57.619-1.207.719-1.854h.002c.022-.077.173-.27.271-.342c-1.208-.272-2.192-.31-3.303-.35zM51.35 59.412c.512-.006 1.01.243 1.397.518c1.183.859 2.574 2.617 3.97 4.793c.357.636.778 1.294 1.229 1.736c1.07 1.044 2.595 2.055 3.027 3.17c.36.943-1.668 4.395-2.959 6.32c.324-.992.167-2.057-.754-3.127c-.535-.691-1.322-1.218-2.265-1.59c-1.169-.44-2.597-.644-3.684-.679c-.535-.015-1.08.001-1.627.045c-1.411-7.973.44-9.059 2.46-9.05c1.138.134 2.218 1.038 2.733 2.9c.519 1.873.31 3.172.118 6.785c.309-2.16.786-4.503.006-7.115c-.816-2.324-1.992-2.786-3.096-2.786c-.31 0-.612.037-.9.078c-1.806.344-2.8 2.948-1.325 9.188c-.57.046-1.141.121-1.705.228c-.441.084-.865.19-1.267.313c.074-6.238-1.866-8.755-3.7-8.615c-1.322.16-2.858.506-3.144 3.984c-.072 2.73 1.427 5.787 2.492 7.361c-1.929-3.285-2.263-5.304-2.252-7.25c.011-1.931.778-3.238 1.842-3.666c1.948-.535 4.397-.28 4.76 8.186c-.413.127-.803.273-1.172.437c.289-.26.323-.844.197-1.28a.573.573 0 1 1-.525-.805c-.232-.221-.497-.254-.72-.16c-.488.226-.478 1.044-.302 1.515c.168.449.595.935 1.07.86c-.947.458-1.737 1.04-2.341 1.702c-.634.696-1.066 1.482-1.268 2.317c-.254.847-.262 1.573-.084 2.191c-1.999-1.293-5.082-2.586-5.27-3.879c-.174-1.18.792-2.765 1.464-4.195c.226-.38.211-.628.222-1.023c.112-3.887 1.606-6.854 3.213-7.63c.785-.288 2.85-.03 4.234.16c2.546.458 3.561-1.121 5.413-1.837a1.43 1.43 0 0 1 .513-.1m25.432 3.782l-.062.97c-.297.124-.557.241-.84.328l-1.338-.207a34.39 34.39 0 0 0 2.24-1.091m3.758.36c1.175-.008 2.446.292 3.492.75c.74.33 1.443.764 2.1 1.306c1.646 1.356 3.015 3.34 4.082 5.547c2.134 4.414 3.057 9.736 2.789 12.559v.01c-.26 4.211-2.023 8.251-4.584 12.083a70.148 70.148 0 0 1-1.037 1.86c-3.159 4.27-7.193 8.25-11.076 11.9c-2.43 2.122-5.215 3.99-7.774 5.46c-.901.475-1.914.911-2.748 1.323c-3.013 1.487-6.72 2.518-10.113 2.666c-3.604.157-6.823-.683-8.562-2.93c-.7-.919-1.24-2.37-1.133-3.504c.168-1.555 1.034-3.04 2.201-4.214c1.048-1.056 2.338-1.855 3.532-2.24c.897-.247 2.47-.484 3.582-.585c2.062-.189 4.21-.417 8.61-2.634h.003c1.43-.765 4.208-3.114 6.496-5.61c2.288-2.496 4.55-5.373 5.867-7.664c1.71-2.975 3.104-5.684 3.416-8.814c.126-.876-.134-2.547-.81-4.323c-.614-1.612-1.573-3.305-2.913-4.533a2.403 2.403 0 0 0-.714-.506c-.554-.25-1.11-.382-1.64-.506l-1.09-.691c.418-1.538.856-2.998 1.679-3.963a6.23 6.23 0 0 1 1.695-1.342c.742-.352 1.566-.921 3.857-1.348c.257-.036.522-.054.793-.056zm-6.037.96l.629.209a6.61 6.61 0 0 0-1.385 1.185c-1.144 1.3-1.535 2.814-1.77 4.014l-3.412-2.166c-.119-.07-.186-.099-.23-.096c-.045.004-.067.04-.102.102l-.052.113a4.943 4.943 0 0 1 .14-1.295c2.195-.433 4.152-1.192 6.176-2.056zm-16.277 1.375l2.05.236c.16.562.088 1.039.057 1.53c-.869-.55-1.596-1.154-2.107-1.766m2.422.139c2.713.273 5.136.421 7.209.375c-.093.764.018 1.393.039 2.082l-1.572 3.369l1.894-3.6c.067-.177.12-.09.256-.006l5.71 3.522c.163.08.127.1.052.248l-.998 1.959c-.054.115-.047.12-.137.035l-4.53-4.266c-.18-.152-.21-.184-.298-.074l-1.908 2.375c-.077.07-.069.126-.069.225v.644l.045-.601c-.006-.1.02-.136.084-.205l1.77-1.946c.176-.21.135-.167.32.014l4 3.902l-3.93 9.287l-9.129-9.484l9.024 9.734l-.518 1.221c-.167.322-.151.603-.146.953l.187 13.748c-1.455 1.407-3.257 2.74-4.176 3.23c-4.385 2.21-6.501 2.43-8.552 2.618c-1.146.021-2.297.276-3.264.328c-.623-.169-1.323-.491-1.461-.938c-.148-.475.344-1.018 1.107-1.207a2.46 2.46 0 0 0-.242.053c-.46-.559-.219-3.955-.959-5.38a1.726 1.726 0 0 1-.146-.368c-.099-.627.021-1.035.146-1.44c.027-.1-.048-.203-.16-.25c-.165-.046-.313-.08-.44-.214c-.05-.058-.228-.15-.091-.373c.877-1.286 1.544-2.633 2.681-3.844l-.464.055c-.385-.413.279-2.206.42-3.18a14.498 14.498 0 0 0 1.583-.574c.83-.364 1.558-.914 1.913-1.998c.063-.248.063-.47.017-.664c.061.007 1.013.115 1.615.328c1.034.35 1.906.325 2.866-.106c1.511-.682 2.337-2.471 2.648-3.863c.216-1.66-.524-3.432-2.48-4.82c2.097 1.712 2.517 3.443 2.22 4.879c-.286 1.327-1.102 2.944-2.642 3.597c-.647.282-1.386.406-2.05.186c-.788-.23-2.224-.55-2.349-.578a.949.949 0 0 0-.89-.377c-1.61.237-2.767.671-3.518.832c-.656.086-2.284-.075-3.28.285a.848.848 0 0 0-.599.588c-.047.206-.065.41-.059.607c-.35-.006-.864.218-1.402.375a6.36 6.36 0 0 1-2.988.172c-.513-.106-1.144-.318-1.647-.627c-1.396-.86-2.192-2.077-2.242-3.738c-.152-2.133 1.494-4.27 2.59-4.82c.49 1.084 1.6 1.793 2.926 2.23c.189.501.331 1.002.603 1.465c.136.23.394.588.614.71c0 0-.144-.51-.178-.773a1.873 1.873 0 0 1-.024-.39c.02-.287.116-.51.276-.68c1.739.337 3.609.308 4.863.094c1.047-.179 2.402-.673 3.664-1.387v-.002h.002c.243-.152.838-.512 1.053-.674c.681.33.771.863.941 1.625c.038-.068.07-.143.096-.22c.071-.173.095-.33.113-.59c.042-.537-.034-1.141-.095-1.645c.337-.367.781-.836.906-1.054l.002-.002c.226-.327.405-.666.525-1.014l.22-.32c.013.005.948.45 1.759.9c-.75-.43-1.69-.946-1.717-.961a90.022 90.022 0 0 0 2.98-4.648l4.696 1.101l-4.582-1.299c.197-.41.23-1.039.129-1.476l4.453 2.775c-1.59-1.362-3.776-2.341-5.281-3.887c.015-.81.038-1.544-.004-2.164zm-9.39 2.01c-.703.08-.785 1.003-.74 1.415c.067.5.401 1.104.925 1.08c.492-.022.737-.723.709-1.269a.574.574 0 1 1-.332-.9c-.12-.146-.328-.32-.563-.327m-13.813 1.011c-.267.772-.697 1.552-.967 2.211c-.326-.014-.858-.038-.943-.04zm13.438 1.52c.141-.001.285 0 .432.003c1.872.104 3.822.447 5.232 1.555c4.39 4.212-2.48 7.954-5.875 8.526c-3.353.564-10.966.239-8.535-6.053c.18-.475.486-.841.795-1.18c1.473-1.464 3.113-2.194 5.049-2.574c1.045-.157 1.913-.27 2.902-.277m23.14.648c.363.092.73.203 1.095.361c.304.109.548.33.764.53c1.3 1.203 2.24 2.864 2.843 4.449c.67 1.757.921 3.427.803 4.242v.004c-.129 1.297-.446 2.522-.896 3.727l-.102-.225c-.029-.088-.076-.055-.135-.033l-6.957 2.521c-.227.056-.203.103-.2.32l.095 8.909c-.347.397-.696.789-1.047 1.172a55.498 55.498 0 0 1-2.12 2.191l-.036-13.521c-.007-.285-.024-.602.074-.84l4.451-10.81l.51.497c.131.147.125.116.209-.045l1.389-2.648c.123-.242.09-.272-.028-.348zm-37.558.084c-.26.647-.48 1.313-.603 2.021c-.092.608-.195.874.17 1.344c.938 1.2 3.55 2.201 5.54 3.276c.034.11.073.218.118.322c-.682.17-2.623 2.025-2.932 4.842c-.055 1.68.735 2.997 2.264 3.994c.937.61 2.01.662 3.25.777c.358-.003.655-.029.951-.092c.014 1.367.092 3.447-.309 4.95c-.181.765-1.69 2.983-2.546 4.476c.956-1.474 2.278-2.948 2.771-4.422c.193-.573.277-1.346.29-2.154c.001-.163.053-.588.116-.78l.137.173c.209.291.347.635.443.937c.53 1.662.933 3.216.694 3.186c-.17-.02-.354-.28-.56-.522c.18.421.473.839.644.897c.863.123-1.334-5.54-1.678-6.74c.301-.065.6-.167.959-.32c.3-.086.68-.205 1.256-.167c.107.53.418.978.904 1.234c.493.27 1.043.402 1.594.444c.79.046 1.643-.108 2.451-.344c-.327 1.2-.9 2.436-.756 3.568c-.966 1.215-1.683 2.472-2.435 3.723c.255.163.53.35.898.467c.074.022.109.123.09.225a5.717 5.717 0 0 0-.107 1.5c.023.276.15.455.232.666c.196.513.322 1.415.418 2.312c-1.846-.155-4.13-1.677-4.59-2.889l.813-.017l1.86-2.059l-2.06 1.703l-3.443.078c-2.036 1.355-5.578 3.744-6.926 3.682c-2.74-.562-5.601-2.748-7.56-4.03c-.59-.292-.676-.526-.684-1.105a2594.13 2594.13 0 0 1-.068-5.275c.528-1.826 1.85-3.354 3.205-4.87c.73-3.357 2.038-7.482 2.178-10.052c.02-.432-.209-.816-.906-1.59c-.29-.31-.165-.754-.165-.754c.918-2.204 1.983-2.409 4.082-2.615m29.99 1.861a.463.463 0 0 0-.222.053c-.382.186-.197 1.096.068 1.59c.264.493.896 1.23 1.055 2.36c.159 1.129-.012 1.884.136 2.077c.223.31.48.747.85 1.905c.04-.669-.47-1.52-.709-1.993c-.17-.278.05-.742-.086-1.916c-.136-1.173-1.312-2.627-1.322-3.263c-.01-.637.578-.582.578-.582s-.116-.222-.348-.23M52.516 74.42c-.595.014-1.181.408-1.125 1.256c-.05-1.118 1.341-1.694 2.205-.69c-.193-.377-.639-.576-1.08-.566m-6.011 1.035c-.595.014-1.182.409-1.125 1.256c-.05-1.117 1.34-1.694 2.205-.69c-.194-.377-.64-.576-1.08-.566m27.035 1.823c-.348-.02-.613.684-.288.86l4.04 2.02l-3.94-2.197c-.212-.112.023-.54.258-.435l4.275 2.394l-4.236-2.611a.274.274 0 0 0-.11-.031m-17.023.828c.187 1.16.146 1.849-.057 2.351c-.063-.46-.174-.813-.328-1.07a1.1 1.1 0 0 0-.584-.498c.344-.246.67-.507.969-.783m-.122 2.236l-.003.002h.003zm-11.719.217c.388.125.794.227 1.207.308c-.156.175-.253.4-.273.686c-.02.299.044.665.197 1.103c-.413-.358-.767-.96-1.13-2.097m33.664 3.994c.04 0 .064.03.082.078l.09.205c-.522 1.326-1.2 2.634-1.963 3.988l-3.394 1.229c-.168-1.67-.466-2.495-.83-2.488a.313.313 0 0 0-.16.054c.471.237.747 1.306.687 2.524c-.006.138.028.202.194.14l3.25-1.011l-.165.287c-.671 1.169-1.595 2.497-2.644 3.85a10.602 10.602 0 0 0-.332-2.247c.078.922.219 1.914.072 2.578a60.777 60.777 0 0 1-1.89 2.278l.132-8.715c-.016-.17.026-.167.174-.223l6.655-2.517a.11.11 0 0 1 .042-.01m-23.332.156c.569-.008.997.588.827 1.25a2.782 2.782 0 0 1-.584 1.113c-.508.59-1.318 1.047-2.508 1.319c-1.153.298-2.252.47-3.14.375c-1.211-.246-2.16-.936-2.005-2.156c.053-.375.267-.68.71-.84c.834-.316 2.267-.025 3.302-.281c.875-.217 1.743-.531 2.654-.69c.264-.039.503-.086.744-.09m4.932 3.313c-1.828.008-3.38.084-4.217.336c-.102.015-.133.068-.174.148c-.486.954-.636 1.738-.502 2.861c.015.183.016.183.182.18c4.393-.083 7.513-.216 11.266-.478c.177-.008.196.008.215-.159c.096-.837.01-1.723-.576-2.742a.17.17 0 0 0-.13-.074c-1.742-.014-3.63-.066-5.341-.072c-.244-.001-.486-.002-.723 0m2.063.19c2.087 0 3.916.068 4.027.14c.276.625.634 1.133.51 2.338c-.004.117-.018.135-.123.14c-3.643.169-5.903.539-10.957.424c-.198.01-.199-.017-.229-.193c-.165-.977.31-1.826.545-2.385c.432-.355 3.542-.466 6.227-.465m3.869 3.345c-.195 1.5-.33 4.279.117 5.703c.13.418.201.81.119 1.244c-.303.732-5.931.795-9.78.639c-.107-.003-.12.023-.158-.069c-.255-.734.187-4.382-.195-6.033c.187 2.204-.287 5.87-.033 6.41c.031.07.086.065.148.069c3.272.203 6.552.383 10.215-.54c.102-.039.168-.111.174-.208c.035-.827-.366-1.672-.433-2.286c-.227-2.073-.085-3.222-.174-4.93zm-6.15 1.428a140.67 140.67 0 0 0-.14 5.29c.195-1.566.383-3.14.14-5.29m2.378.224c-.136 1.7-.222 3.415.084 5.262c.194-1.754.092-3.508-.084-5.262m31.717 3.194c.373-.004.684.036.89.136c1.185.728 2.35 1.483 2.907 2.889c.074.216-.015.609-.246.62a1.048 1.048 0 0 1-.533-.128c-1.043-.528-1.308-1.497-2.366-2.484c.778 1.214 1.314 1.642 1.395 3.241c0 .066-.056.096-.125.102c-1.207.007-2.478-2.492-4.094-2.843c-.423-.107-.969-.159-1.562-.176c-.123-.003-.248-.004-.373-.006c.04-.356.114-.429.267-.506c1.046-.42 2.72-.834 3.84-.846m-5.308.314h.058c.438.007.897.152 1.377.434l-.066.027c-.126.08-.193.367-.172.576h-.319a31.37 31.37 0 0 0-1.931.088c.24-.324.477-.65.707-.977c.1-.121.214-.146.346-.148m.937 1.076a21.675 21.675 0 0 1 .635.006c.842.024 1.59.121 2.011.338l.018.008c.02.01.037.02.055.031c1.059.616 2.009 1.997 3.08 2.66c.524.233.77.07.73-.346c-.077-.795-.142-1.047-.449-1.539c.551.527.966 1.034 1.688 1.182c4.278 3.58 7.327 7.445 7.197 11.686c-.322 5.787-5.833 9.734-10.932 10.949c-6.343 1.03-13.774-4.523-18.2-3.44c-1.4.276-5.113 1.084-5.43 3.56c-.115.905.402 1.895.638 2.306c.236.41.938 1.036.238.634c-.962-.505-1.502-1.333-1.765-2.386c-.33-2.72 1.21-6.611 3.838-8.194c.951-.517 4.25-2.147 8.076-1.545c2.97.705 6.082 1.882 8.906 2.098c1.955.234 6.151-1.661 6.332-4.115c.081-1.497-3.345-3.85-6.61-3.879c-.991.043-2.27.032-2.656.057a3.595 3.595 0 0 0-.205-.428l1.94-1.502c.15-.11.212-.196.168-.473c-.24-1.515-.399-3.542-.815-3.912c-.72-.642-1.663-.754-2.607-1.027a55.77 55.77 0 0 0 2.098-2.639a31.176 31.176 0 0 1 2.021-.09m-4.223 2.854c.368.075 1.745.449 2.096.668c.677.356.625.582.707.822c.185.739.392 2.36.541 3.234c.024.173-.02.246-.105.317l-3.706 2.898c-.222.155-.233.119-.24-.012c-.047-1.054-.08-2.208-.224-2.863a.412.412 0 0 0-.063-.17c-.237-.317-1.22-.584-1.724-.771l.056.138c.493.239 1.412.442 1.54.84c.208.702.198 1.783.202 2.81c.005.355.156.427.336.298l1.825-1.407c.252.85.46 1.796-.088 2.555c-1.024 1.13-3.7 2.412-6.149 3.207c-2.806-.053-5.829.599-8.142 2.307c-2.049.635-3.873 1.176-4.91 1.078c-.919-.173.294-.787.55-.928c2.8-1.54 5.962-3.6 8.688-5.98l.002-.002h.002c2.999-2.819 6.093-5.839 8.806-9.04zm-2.826 5.656c-.168 1.6-.08 2.976-.08 4.431c.04-1.453.158-2.765.08-4.431m6.85 1.7c2.155-.025 6.625 2.188 6.47 3.84c-.182 1.38-2.88 3.497-5.859 3.563c-1.671.075-5.912-1.3-8.805-2.095c2.052-.737 4.17-1.587 5.6-2.99c.49-.425.565-1.352.271-2.243c.8-.045 1.6-.062 2.323-.076\\\"/>\"\n\t\t},\n\t\t\"replit\": {\n\t\t\t\"body\": \"<path fill=\\\"#F26207\\\" d=\\\"M11 8c0-2.122.845-4.157 2.35-5.657A8.037 8.037 0 0 1 19.026 0h37.45a8.04 8.04 0 0 1 5.675 2.343A7.987 7.987 0 0 1 64.5 8v34.667H19.025a8.037 8.037 0 0 1-5.674-2.343A7.987 7.987 0 0 1 11 34.666zm53.5 34.667h45.475a8.04 8.04 0 0 1 5.675 2.343a7.987 7.987 0 0 1 2.35 5.657v26.666a7.987 7.987 0 0 1-2.35 5.657a8.04 8.04 0 0 1-5.675 2.343H64.5zM11 93.333c0-2.121.845-4.156 2.35-5.656a8.037 8.037 0 0 1 5.675-2.344H64.5V120a7.987 7.987 0 0 1-2.35 5.657A8.039 8.039 0 0 1 56.475 128h-37.45a8.039 8.039 0 0 1-5.674-2.343A7.987 7.987 0 0 1 11 120z\\\"/>\"\n\t\t},\n\t\t\"replit-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#F5F9FC\\\" d=\\\"M128 59.617V57.77c0-.315-.255-.558-.583-.558h-6.313v-3.578a.568.568 0 0 0-.173-.403a.561.561 0 0 0-.409-.157h-2.401a.575.575 0 0 0-.583.56v3.577h-3.729a.576.576 0 0 0-.583.56v1.845c0 .318.255.56.583.56h3.729v5.48c0 4.193 1.928 6.132 6.078 6.132h3.383a.574.574 0 0 0 .582-.56v-1.844c0-.318-.254-.56-.582-.56h-2.838c-2.256 0-3.057-.913-3.057-3.187v-5.442h6.313c.328-.02.583-.28.583-.578m-18.977-8.034h-3.275a.575.575 0 0 0-.583.56v2.366c0 .318.256.56.583.56h3.275a.574.574 0 0 0 .582-.56v-2.366a.6.6 0 0 0-.182-.399a.574.574 0 0 0-.4-.161m.437 17.242V57.77c0-.316-.255-.559-.583-.559h-7.332a.575.575 0 0 0-.582.56v1.844c0 .318.254.56.582.56h4.349v8.648h-4.35a.561.561 0 0 0-.402.158a.585.585 0 0 0-.178.401v1.845c0 .316.253.56.58.56h12.373a.578.578 0 0 0 .583-.56v-1.845c0-.317-.255-.559-.583-.559zm-11.245 0h-3.71V52.142a.562.562 0 0 0-.582-.56h-7.278a.574.574 0 0 0-.582.56v1.844c0 .318.254.56.582.56h4.293v14.278h-4.821a.574.574 0 0 0-.583.559v1.844c0 .317.256.56.583.56h12.1a.574.574 0 0 0 .582-.56v-1.844c0-.318-.256-.56-.584-.56zm-19.76-11.893c-1.236 0-2.128.28-2.819.95l-.856.84h-.782l-.291-1.08a.604.604 0 0 0-.213-.31a.58.58 0 0 0-.35-.12h-1.639a.574.574 0 0 0-.582.56v19.085c0 .317.255.56.582.56h2.403a.574.574 0 0 0 .582-.56V72.72l-.31-2.219l.8-.186l.855.84c.674.633 1.493.949 2.711.949c3.53 0 5.66-2.497 5.66-7.586c-.018-5.088-2.131-7.586-5.751-7.586m-1.182 12.116c-1.8 0-2.802-.95-2.802-2.76v-3.577c0-1.808.984-2.759 2.802-2.759c2.201 0 3.203 1.417 3.203 4.53c-.018 3.149-1.002 4.566-3.203 4.566m-16.52-12.116c-4.586 0-7.043 2.498-7.043 7.568c0 5.09 2.439 7.586 6.952 7.586c3.492 0 5.75-1.49 6.35-4.044c.09-.354-.2-.69-.565-.69h-2.183a.586.586 0 0 0-.327.102a.607.607 0 0 0-.219.27c-.382 1.1-1.474 1.622-2.948 1.622c-2.292 0-3.384-1.286-3.53-4.288h9.953c.546-5.608-1.727-8.126-6.44-8.126m-3.404 5.853c.347-2.199 1.42-3.224 3.385-3.224c2.093 0 3.076 1.136 3.13 3.224zm-10.734-4.92l-.82.84h-.818l-.254-1.064c-.054-.26-.29-.429-.564-.429h-5.24a.574.574 0 0 0-.583.56v1.844c0 .318.255.56.583.56h3.093v8.648h-3.603a.574.574 0 0 0-.582.56v1.844c0 .317.255.56.582.56h11.336a.573.573 0 0 0 .581-.56v-1.844a.56.56 0 0 0-.581-.56h-4.167v-6.113c0-1.715.983-2.61 2.911-2.61h3.13a.575.575 0 0 0 .582-.558V57.51c0-.318-.255-.56-.582-.56h-1.856c-1.365-.019-2.439.242-3.148.914z\\\"/><path fill=\\\"#F26207\\\" d=\\\"M0 50.938c0-.514.2-1.007.554-1.37A1.869 1.869 0 0 1 1.891 49h8.827c.501 0 .982.204 1.337.568c.355.363.554.856.554 1.37v8.395H1.891a1.87 1.87 0 0 1-1.337-.567A1.962 1.962 0 0 1 0 57.396zm12.609 8.395h10.718c.501 0 .982.205 1.337.568s.554.856.554 1.37v6.458c0 .514-.2 1.007-.554 1.37a1.869 1.869 0 0 1-1.337.568H12.609zM0 71.604c0-.514.2-1.007.554-1.37a1.87 1.87 0 0 1 1.337-.567h10.718l.001 8.395c0 .514-.2 1.007-.554 1.37a1.868 1.868 0 0 1-1.337.568H1.89a1.87 1.87 0 0 1-1.337-.567A1.962 1.962 0 0 1 0 78.063z\\\"/>\"\n\t\t},\n\t\t\"rider\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconRider0\\\" x1=\\\"94.33\\\" x2=\\\"20.33\\\" y1=\\\"59.37\\\" y2=\\\"16.91\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#dd1265\\\"/><stop offset=\\\".48\\\" stop-color=\\\"#dd1265\\\"/><stop offset=\\\".94\\\" stop-color=\\\"#fdb60d\\\"/></linearGradient><linearGradient id=\\\"deviconRider1\\\" x1=\\\"50.33\\\" x2=\\\"79.66\\\" y1=\\\"12.76\\\" y2=\\\"93.76\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".14\\\" stop-color=\\\"#087cfa\\\"/><stop offset=\\\".48\\\" stop-color=\\\"#dd1265\\\"/><stop offset=\\\".96\\\" stop-color=\\\"#087cfa\\\"/></linearGradient><linearGradient id=\\\"deviconRider2\\\" x1=\\\"28.36\\\" x2=\\\"50.02\\\" y1=\\\"15.26\\\" y2=\\\"92.26\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".28\\\" stop-color=\\\"#dd1265\\\"/><stop offset=\\\".97\\\" stop-color=\\\"#fdb60d\\\"/></linearGradient><path fill=\\\"url(#deviconRider0)\\\" d=\\\"M122.514 50.871L40.472 5.339l54.93 81.615l11.288-7.4z\\\"/><path fill=\\\"url(#deviconRider1)\\\" d=\\\"M89.783 32.305L79.506 7.18L56.771 29.562l9.301 81.213L88.1 122.368l34.414-20.102z\\\"/><path fill=\\\"url(#deviconRider2)\\\" d=\\\"M40.472 5.339L5.486 28.904l13.007 80.372l33.548 12.898l43.362-35.218z\\\"/><path d=\\\"M27.429 27.429h73.143v73.143H27.429z\\\"/><path fill=\\\"#fff\\\" d=\\\"M36.547 86.747h27.429v4.571H36.547zm.024-50.273h12.556a10.971 10.971 0 0 1 8.009 2.792a8.631 8.631 0 0 1 2.365 6.29v.073a8.533 8.533 0 0 1-5.9 8.533l6.729 9.826h-7.083l-5.888-8.802h-4.692v8.802h-6.095zm12.19 13.41c2.95 0 4.645-1.573 4.645-3.889v-.073c0-2.597-1.804-3.938-4.754-3.938h-5.985v7.899zm15.762-13.41h10.728c8.643 0 14.629 5.937 14.629 13.678v.085c0 7.741-5.973 13.751-14.629 13.751H64.523zm6.095 5.461v16.579h4.681a7.838 7.838 0 0 0 8.29-8.216v-.073a7.912 7.912 0 0 0-8.29-8.302z\\\"/>\"\n\t\t},\n\t\t\"rider-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M8.52 43.938h22.722V66.66H8.52Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M11.352 62.363h8.523v1.422h-8.523Zm.007-15.617h3.899a3.395 3.395 0 0 1 2.492.867c.5.528.762 1.23.734 1.953v.024a2.655 2.655 0 0 1-1.832 2.652l2.086 3.051h-2.195l-1.836-2.734H13.23v2.734h-1.87Zm3.79 4.168c.914 0 1.44-.492 1.44-1.21v-.024c0-.805-.562-1.223-1.48-1.223H13.23v2.457Zm4.89-4.168h3.34c2.683 0 4.543 1.844 4.543 4.25v.024c0 2.406-1.856 4.273-4.543 4.273h-3.34Zm1.895 1.695v5.153h1.453a2.442 2.442 0 0 0 2.578-2.555v-.02a2.444 2.444 0 0 0-.719-1.859a2.444 2.444 0 0 0-1.86-.719Zm0 0\\\"/><path d=\\\"M39.836 43.895h10.383c2.89 0 5.129.812 6.62 2.304c1.266 1.262 1.946 3.051 1.946 5.192v.062c0 3.672-1.976 5.973-4.867 7.043l5.539 8.113h-5.828l-4.867-7.265h-3.926v7.265h-5Zm10.062 11.03c2.43 0 3.829-1.296 3.829-3.21v-.063c0-2.144-1.493-3.246-3.93-3.246h-4.961v6.52Zm11.184-12.003h5.191v4.383h-5.191Zm.129 6.293h4.922v17.394H61.21Zm7.187 8.73v-.066c0-5.809 3.786-8.988 7.918-8.988a6.676 6.676 0 0 1 5.418 2.597v-8.566h4.922v23.687h-4.922v-2.5c-1.199 1.625-2.855 2.825-5.418 2.825c-4.058 0-7.918-3.18-7.918-8.989m13.399 0v-.066c0-2.887-1.91-4.8-4.215-4.8c-2.309 0-4.25 1.894-4.25 4.8v.066c0 2.89 1.945 4.801 4.25 4.801c2.3 0 4.215-1.91 4.215-4.8Zm6.98.063v-.063c0-4.965 3.54-9.054 8.602-9.054c5.808 0 8.473 4.507 8.473 9.445c0 .379-.036.844-.07 1.297H93.663c.488 2.238 2.043 3.41 4.254 3.41c1.652 0 2.855-.52 4.219-1.785l2.82 2.5c-1.621 2.012-3.957 3.246-7.105 3.246c-5.211-.004-9.075-3.676-9.075-8.996Zm12.266-1.457c-.29-2.2-1.586-3.715-3.664-3.715c-2.078 0-3.375 1.457-3.766 3.7Zm6.969-7.336h4.922v3.508c1.007-2.407 2.629-3.961 5.554-3.832v5.16h-.261c-3.278 0-5.301 1.98-5.301 6.133v6.437H108ZM40.715 82.598v1.164h-.906V75.18h.906v3.722a2.719 2.719 0 0 1 2.324-1.347c1.453 0 2.898 1.136 2.898 3.144v.024c0 1.984-1.433 3.16-2.898 3.16a2.738 2.738 0 0 1-2.324-1.285m4.297-1.856v-.023c0-1.434-.989-2.348-2.14-2.348a2.273 2.273 0 0 0-2.196 2.336v.023c-.02.602.199 1.192.613 1.63c.41.44.98.699 1.582.718c1.176 0 2.14-.867 2.14-2.336Zm6.687-3.05h.961l-2.543 6.269c-.52 1.254-1.105 1.71-2.023 1.71a2.78 2.78 0 0 1-1.29-.3l.305-.719c.293.157.621.235.953.223c.54 0 .876-.281 1.243-1.137l-2.758-6.058h.996l2.207 5.074Zm5.274 4.726l.664-.574c.508.758 1.023 1.18 1.894 1.18c.93 0 1.606-.672 1.606-1.973v-5.492h.941v5.496a2.966 2.966 0 0 1-.758 2.16c-.492.46-1.14.703-1.812.683a2.805 2.805 0 0 1-2.535-1.48m6.77-1.676v-.023c0-1.75 1.23-3.156 2.913-3.156c1.793 0 2.828 1.43 2.828 3.203c.004.097.004.195 0 .293H64.66a2.117 2.117 0 0 0 2.133 2.054a2.503 2.503 0 0 0 1.914-.855l.563.504a3.14 3.14 0 0 1-2.497 1.136a3.019 3.019 0 0 1-2.187-.933a3.014 3.014 0 0 1-.844-2.223Zm4.823-.351c-.093-1.106-.726-2.067-1.933-2.067c-1.063 0-1.856.88-1.973 2.067Zm2.594 1.761v-3.664h-.844v-.797h.844v-1.836h.906v1.836h1.922v.797h-1.922v3.547a.895.895 0 0 0 1.024 1.008c.305.004.605-.07.879-.211v.758a2.315 2.315 0 0 1-1.094.262c-.977.015-1.715-.465-1.715-1.7m4.313-6.593h3.5a3.01 3.01 0 0 1 2.152.73c.344.348.535.824.527 1.313v.023a1.988 1.988 0 0 1-1.304 1.895c.972.293 1.761.859 1.761 1.984v.027c0 1.406-1.183 2.242-2.984 2.242h-3.652Zm5.238 2.171c0-.808-.645-1.335-1.82-1.335h-2.5v2.828h2.43c1.117 0 1.894-.508 1.894-1.47Zm-1.727 2.317h-2.593v2.898h2.757c1.243 0 2.02-.55 2.02-1.468v-.024c.004-.91-.746-1.426-2.184-1.426Zm4.84-2.356h.906v1.582a2.599 2.599 0 0 1 2.477-1.691v.977h-.074c-1.324 0-2.403.949-2.403 2.78v2.423h-.906Zm4.106 4.305c0-1.281 1.058-1.96 2.593-1.96a6.415 6.415 0 0 1 1.868.257v-.215c0-1.09-.668-1.652-1.809-1.652c-.64.008-1.27.16-1.84.445l-.273-.758a5.072 5.072 0 0 1 2.207-.504a2.653 2.653 0 0 1 1.96.672c.442.48.665 1.121.622 1.774v3.71h-.856v-.917a2.655 2.655 0 0 1-2.195 1.047c-1.14-.004-2.277-.653-2.277-1.899m4.472-.465v-.59a6.264 6.264 0 0 0-1.785-.257c-1.133 0-1.773.496-1.773 1.254v.023c0 .758.703 1.21 1.511 1.21c1.13 0 2.047-.679 2.047-1.64m2.68-6.168h1.035v.996h-1.035Zm.063 2.328h.902v6.059h-.902Zm2.855 0h.906v1.055a2.289 2.289 0 0 1 2.078-1.183c1.47 0 2.325.984 2.325 2.43v3.788h-.907v-3.55c0-1.137-.609-1.829-1.675-1.829a1.79 1.79 0 0 0-1.715 1.168c-.086.23-.121.48-.106.727v3.476H98Zm6.617 5.293l.457-.644a3.542 3.542 0 0 0 2.102.758c.73 0 1.258-.38 1.258-.961v-.024c0-.61-.715-.843-1.516-1.066c-.95-.274-2.008-.602-2.008-1.719v-.02c0-1.046.867-1.738 2.067-1.738a4.123 4.123 0 0 1 2.183.668l-.41.684a3.432 3.432 0 0 0-1.793-.594c-.723 0-1.18.379-1.18.883v.023c0 .579.758.801 1.567 1.047c.937.281 1.949.649 1.949 1.739v.023c0 1.133-.953 1.82-2.164 1.82a4.182 4.182 0 0 1-2.512-.879m0 0\\\"/>\"\n\t\t},\n\t\t\"rocksdb\": {\n\t\t\t\"body\": \"<path fill=\\\"#ffbe00\\\" d=\\\"m85.658 85.266l-17.346.422l-6.55 15.01l-17.02 4.443l-10.667 9.726h85.82c4.441 0 8.073-3.631 8.073-8.073V64.16l-30.444 7.587Zm-62.541 1.265L8.689 98.916c-.13-.876-.486-1.783-1.102-2.53L0 102.775c1.621 1.913 4.312 2.27 6.387 1.005l14.103-6.387Zm83.809-43.542l1.75 4.604c2.692-.681 6.874-3.664 9.792-5.966c-.097.81-.065 1.621.227 2.4L128 40.588a4.983 4.983 0 0 0-6.387-2.917c-.065.032-.162.064-.227.13l.032-.033zm16.049 7.78h-.065l-17.054-1.458l-3.89-10.213V28.27c.778.422 1.62.681 2.56.681c2.822 0 5.123-2.172 5.383-4.895l4.085-2.691l-.195-5.48c-.032-.55-.454-1.005-1.005-1.005l-5.09-.065c-1.07-1.491-3.047-2.14-4.798-1.329L91.72 18.737c.033.033.033.065.033.098a4.33 4.33 0 0 0 1.62 1.783c-13.649 7.035-19.42 16.567-19.42 16.567L21.82 65.262c-3.048 1.621-6.874.487-8.527-2.561c-1.621-3.048-.487-6.873 2.561-8.527l14.784-7.943c3.761-2.01 5.933-5.771 6.225-9.694l-8.85 4.766l-14.785 7.943C7.457 52.358 5.285 59.588 8.365 65.36c2.14 3.987 6.257 6.257 10.504 6.257c1.913 0 3.826-.454 5.61-1.427l6.678-3.598a14.88 14.88 0 0 0 .778 8.105c.357.908.584 1.459.584 1.459c2.367 5.122-.746 9.143-4.831 9.143H26.39l-4.701 20.425a4.813 4.813 0 0 0-2.367-1.361l-2.334 9.629c2.367.55 4.701-.649 5.641-2.789L33.264 92.14c13.455-1.297 20.523-10.408 20.199-23.247c13.941.843 32.486-7.91 40.754-19.874c6.257 7.943 18.123 6.841 23.376 4.83l1.005-.356c-.39.681-.584 1.492-.584 2.367l9.921-.097c-.032-2.853-2.237-5.026-4.96-4.993zM30.573 32.712c.487.908.714 1.88.746 2.853l5.22-2.82a10.975 10.975 0 0 0-1.037-2.691l-.26-.52l-4.928 2.66zm-1.912-3.534l4.928-2.658l-.649-1.168c-.713-1.361-2.431-1.88-3.793-1.167c-1.362.714-1.88 2.432-1.167 3.794z\\\"/><path fill=\\\"#0f2647\\\" d=\\\"M104.267 16.111c-.875 0-1.588.714-1.588 1.621c0 .876.713 1.621 1.588 1.621c.876 0 1.622-.713 1.622-1.62c0-.908-.746-1.622-1.622-1.622M94.93 28.075c-.389.227-.616.519-.616.519s.68.778 1.491.778s1.492-.778 1.492-.778s-.227-.292-.616-.52a3.546 3.546 0 0 0 1.005-.615s-.39-.39-1.005-.616c.389-.227.616-.519.616-.519s-.681-.778-1.492-.778c-.81 0-1.49.778-1.49.778s.226.292.615.519c-.583.227-1.005.616-1.005.616s.422.421 1.005.616m-5.414 1.978s-.681-.779-1.492-.779c-.843 0-1.491.779-1.491.779s.227.291.616.518c-.584.227-1.005.616-1.005.616s.389.39 1.005.616c-.39.227-.616.519-.616.519s.68.778 1.491.778c.843 0 1.492-.778 1.492-.778s-.227-.292-.616-.519c.583-.227 1.005-.616 1.005-.616s-.39-.389-1.005-.616c.389-.26.616-.518.616-.518m7.132 7.586s-.227-.292-.616-.519a3.546 3.546 0 0 0 1.005-.616s-.389-.389-1.005-.616c.39-.227.616-.518.616-.518s-.68-.778-1.491-.778c-.81 0-1.491.778-1.491.778s.227.291.616.518c-.584.227-1.005.616-1.005.616s.389.39 1.005.616c-.39.227-.616.52-.616.52s.68.777 1.491.777c.81 0 1.491-.778 1.491-.778m-8.105 2.691c.39-.227.616-.519.616-.519s-.68-.778-1.491-.778c-.81 0-1.492.778-1.492.778s.227.292.616.52a3.546 3.546 0 0 0-1.005.615s.39.39 1.005.616c-.389.227-.616.519-.616.519s.681.778 1.492.778c.81 0 1.491-.778 1.491-.778s-.227-.292-.616-.519c.584-.227 1.005-.616 1.005-.616s-.389-.356-1.005-.616m-7.684-2.334c.39-.227.616-.519.616-.519s-.68-.778-1.491-.778c-.843 0-1.492.778-1.492.778s.227.292.616.519c-.583.227-1.005.616-1.005.616s.39.389 1.005.616c-.389.227-.616.519-.616.519s.681.778 1.492.778c.843 0 1.491-.778 1.491-.778s-.227-.292-.616-.52c.584-.226 1.005-.615 1.005-.615s-.389-.357-1.005-.616m-2.95 9.11s-.227-.292-.616-.519c.583-.226 1.005-.616 1.005-.616s-.39-.389-1.005-.616c.389-.226.616-.518.616-.518s-.681-.778-1.492-.778c-.843 0-1.491.778-1.491.778s.227.292.616.518c-.584.227-1.005.616-1.005.616s.389.39 1.005.616c-.389.227-.616.52-.616.52s.68.777 1.491.777s1.492-.778 1.492-.778m-13.163 1.33s.68.778 1.491.778c.81 0 1.491-.779 1.491-.779s-.226-.291-.616-.518c.584-.227 1.006-.616 1.006-.616s-.39-.39-1.006-.616c.39-.227.616-.519.616-.519s-.68-.778-1.49-.778c-.811 0-1.492.778-1.492.778s.227.292.616.519c-.584.227-1.005.616-1.005.616s.389.389 1.005.616a3.38 3.38 0 0 0-.616.518zm7.23 4.636c.389-.227.616-.519.616-.519s-.681-.778-1.492-.778c-.843 0-1.491.778-1.491.778s.227.292.616.519a3.546 3.546 0 0 0-1.005.616s.389.389 1.005.616c-.39.227-.616.519-.616.519s.68.778 1.491.778c.843 0 1.492-.778 1.492-.778s-.227-.292-.616-.52a3.546 3.546 0 0 0 1.005-.615s-.422-.422-1.005-.616m7.943 1.718c.389-.227.616-.519.616-.519s-.68-.778-1.491-.778c-.843 0-1.492.778-1.492.778s.227.292.616.52a3.545 3.545 0 0 0-1.005.615s.39.39 1.005.616c-.389.227-.616.519-.616.519s.681.778 1.492.778c.843 0 1.491-.778 1.491-.778s-.227-.292-.616-.519c.584-.227 1.005-.616 1.005-.616s-.421-.357-1.005-.616m6.484-6.257c.39-.227.616-.519.616-.519s-.68-.778-1.491-.778c-.843 0-1.492.778-1.492.778s.227.292.616.519c-.583.227-1.005.616-1.005.616s.39.389 1.005.616c-.389.227-.616.519-.616.519s.681.778 1.492.778c.843 0 1.491-.778 1.491-.778s-.227-.292-.616-.52c.584-.226 1.005-.615 1.005-.615s-.421-.39-1.005-.616m11.607-5.22c.39-.227.616-.519.616-.519s-.68-.778-1.491-.778c-.81 0-1.492.778-1.492.778s.227.292.616.519c-.583.227-1.005.616-1.005.616s.39.389 1.005.616c-.389.227-.616.519-.616.519s.681.778 1.492.778c.81 0 1.491-.778 1.491-.778s-.227-.292-.616-.52c.584-.226 1.005-.615 1.005-.615s-.421-.422-1.005-.616m-38.128 9.856c.39-.227.616-.519.616-.519s-.68-.778-1.49-.778c-.811 0-1.492.778-1.492.778s.227.292.616.519c-.584.227-1.005.616-1.005.616s.389.39 1.005.616c-.39.227-.616.519-.616.519s.68.778 1.491.778c.81 0 1.491-.778 1.491-.778s-.226-.292-.616-.519c.584-.227 1.006-.616 1.006-.616s-.422-.389-1.006-.616m7.717 7.62c.389-.228.616-.52.616-.52s-.681-.778-1.492-.778c-.81 0-1.491.778-1.491.778s.227.292.616.52a3.546 3.546 0 0 0-1.005.615s.389.39 1.005.616c-.389.227-.616.519-.616.519s.68.778 1.491.778c.81 0 1.492-.778 1.492-.778s-.227-.292-.616-.519c.583-.227 1.005-.616 1.005-.616s-.39-.389-1.005-.616zm-9.856 1.393c.389-.227.616-.519.616-.519s-.681-.778-1.492-.778c-.843 0-1.491.778-1.491.778s.227.292.616.52c-.584.226-1.005.615-1.005.615s.389.39 1.005.616c-.39.227-.616.519-.616.519s.68.778 1.491.778c.843 0 1.492-.778 1.492-.778s-.227-.292-.616-.519c.583-.227 1.005-.616 1.005-.616s-.39-.389-1.005-.616m-8.04-5.674c.388-.227.615-.518.615-.518s-.68-.778-1.491-.778c-.843 0-1.492.778-1.492.778s.227.291.616.518a3.546 3.546 0 0 0-1.005.616s.39.39 1.005.616c-.389.227-.616.52-.616.52s.681.777 1.492.777c.843 0 1.491-.778 1.491-.778s-.227-.292-.616-.519c.584-.226 1.005-.616 1.005-.616s-.389-.389-1.005-.616zm-11.413 7.36c-.39.227-.616.519-.616.519s.68.778 1.491.778c.81 0 1.492-.778 1.492-.778s-.227-.292-.616-.519c.583-.227 1.005-.616 1.005-.616s-.39-.389-1.005-.616c.389-.227.616-.519.616-.519s-.681-.778-1.492-.778c-.81 0-1.491.778-1.491.778s.227.292.616.52c-.584.226-1.005.615-1.005.615s.421.357 1.005.616m10.277 2.724c.39-.227.616-.52.616-.52s-.68-.777-1.491-.777c-.843 0-1.491.778-1.491.778s.227.292.616.519c-.584.226-1.005.616-1.005.616s.389.389 1.005.616c-.39.226-.616.518-.616.518s.68.778 1.491.778c.843 0 1.491-.778 1.491-.778s-.227-.292-.616-.518c.584-.227 1.005-.616 1.005-.616s-.421-.422-1.005-.616m-1.686 8.364c.39-.227.616-.518.616-.518s-.68-.779-1.49-.779c-.844 0-1.492.779-1.492.779s.227.291.616.518c-.584.227-1.005.616-1.005.616s.389.39 1.005.616c-.39.227-.616.519-.616.519s.68.778 1.491.778c.843 0 1.491-.778 1.491-.778s-.226-.292-.616-.519a3.546 3.546 0 0 0 1.006-.616s-.422-.389-1.006-.616m-7.813-1.232s-.227-.292-.616-.518c.583-.227 1.005-.616 1.005-.616s-.39-.39-1.005-.617c.389-.226.616-.518.616-.518s-.681-.778-1.492-.778c-.842 0-1.49.778-1.49.778s.226.292.615.518c-.583.227-1.005.617-1.005.617s.39.389 1.005.616c-.389.226-.616.518-.616.518s.681.778 1.491.778c.779.033 1.492-.778 1.492-.778m2.01 7.911c.39-.227.616-.519.616-.519s-.68-.778-1.491-.778c-.843 0-1.492.778-1.492.778s.227.292.616.52c-.583.226-1.005.615-1.005.615s.39.39 1.005.616c-.389.227-.616.519-.616.519s.681.778 1.492.778c.843 0 1.491-.778 1.491-.778s-.227-.292-.616-.519c.584-.227 1.005-.616 1.005-.616s-.389-.389-1.005-.616\\\"/>\"\n\t\t},\n\t\t\"rockylinux\": {\n\t\t\t\"body\": \"<path fill=\\\"#10b982\\\" d=\\\"M124.438 85.105A63.882 63.882 0 0 0 128 64c0-35.348-28.652-64-64-64S0 28.652 0 64c0 17.488 7.016 33.34 18.387 44.89l64.918-64.917Zm-11.692 20.364L83.305 76.027l-46.106 46.106C45.352 125.898 54.43 128 64 128c19.523 0 37.008-8.742 48.746-22.531m0 0\\\"/>\"\n\t\t},\n\t\t\"rockylinux-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#10b982\\\" d=\\\"M21.77 67.695c.402-1.152.62-2.402.62-3.695c0-6.18-5.011-11.195-11.195-11.195C5.015 52.805 0 57.82 0 64a11.12 11.12 0 0 0 3.219 7.848l11.36-11.36l7.194 7.196Zm-2.043 3.559l-5.153-5.156l-8.07 8.07a11.093 11.093 0 0 0 4.687 1.027c3.418 0 6.473-1.527 8.524-3.941Zm0 0\\\"/><path d=\\\"M29.234 69.797V58.016h5.739c.593 0 1.132.09 1.632.27c.504.179.934.433 1.293.757c.36.312.637.691.84 1.14c.203.446.301.938.301 1.481a3.28 3.28 0 0 1-.637 1.984a3.676 3.676 0 0 1-1.668 1.293l2.602 4.84h-2.719l-2.297-4.5h-2.66v4.5h-2.437Zm5.528-9.656h-3.09v3.16h3.09c.547 0 .984-.145 1.304-.438c.336-.289.504-.672.504-1.14c0-.47-.168-.852-.504-1.141c-.324-.293-.761-.437-1.304-.437Zm4.804 5.293c0-.637.118-1.235.352-1.786a4.6 4.6 0 0 1 .992-1.445a4.652 4.652 0 0 1 1.492-.973a4.767 4.767 0 0 1 1.832-.351a4.75 4.75 0 0 1 1.828.351a4.493 4.493 0 0 1 1.485.973c.426.406.754.887.988 1.445c.246.551.371 1.145.371 1.786a4.39 4.39 0 0 1-.37 1.796a4.177 4.177 0 0 1-.99 1.422c-.413.407-.91.723-1.483.957a4.679 4.679 0 0 1-1.829.356a4.77 4.77 0 0 1-1.832-.356a4.7 4.7 0 0 1-1.492-.957a4.633 4.633 0 0 1-.992-1.422a4.606 4.606 0 0 1-.352-1.796m4.664 2.53c.672 0 1.25-.245 1.715-.737a2.533 2.533 0 0 0 .707-1.797c0-.715-.238-1.317-.707-1.82a2.255 2.255 0 0 0-1.715-.739c-.671 0-1.246.246-1.714.738c-.465.496-.703 1.098-.703 1.82c0 .708.234 1.305.703 1.798c.472.488 1.043.738 1.714.738m10.426-.015c.395 0 .758-.078 1.094-.238c.348-.156.676-.402.988-.738l1.38 1.422c-.45.492-.99.882-1.61 1.16a4.884 4.884 0 0 1-1.95.406a4.783 4.783 0 0 1-1.82-.356a4.54 4.54 0 0 1-1.457-.957a4.535 4.535 0 0 1-.957-1.421a4.606 4.606 0 0 1-.351-1.797c0-.637.117-1.235.351-1.785a4.51 4.51 0 0 1 .957-1.446a4.539 4.539 0 0 1 1.457-.972a4.766 4.766 0 0 1 1.82-.352c.696 0 1.364.14 1.997.418a4.71 4.71 0 0 1 1.633 1.145l-1.415 1.492a3.414 3.414 0 0 0-1.007-.79a2.53 2.53 0 0 0-1.157-.269c-.66 0-1.226.246-1.68.738c-.449.493-.671 1.098-.671 1.82c0 .723.23 1.317.687 1.798a2.31 2.31 0 0 0 1.715.722Zm4.653 1.844V58.012l2.3-.504v7.207l3.778-3.695h2.601l-4.093 4.011l4.347 4.735h-2.937l-3.696-4v4h-2.3Zm12.132.402l.133-.32l-3.406-8.828h2.531l2.168 5.96l2.485-5.96h2.484L73.8 70.48c-.45 1.055-.969 1.81-1.563 2.25c-.593.446-1.363.672-2.32.672c-.203 0-.398-.007-.59-.03a2.12 2.12 0 0 1-.433-.067V71.32c.109.024.23.04.351.051c.121.012.274.016.453.016c.414 0 .762-.098 1.043-.301c.29-.203.52-.5.688-.89Zm10.973-.402V58.012h1.293v10.601h7v1.16h-8.293Zm10.52-10.031a.814.814 0 0 1-.59-.254a.802.802 0 0 1-.25-.586c0-.234.082-.434.25-.59a.81.81 0 0 1 .59-.25c.234 0 .43.082.586.25a.777.777 0 0 1 .253.59a.806.806 0 0 1-.253.586a.769.769 0 0 1-.586.254m.62 1.61v8.41H92.31v-8.41Zm2.122 8.41v-8.41h1.25v.991a3.02 3.02 0 0 1 1.16-.855a3.563 3.563 0 0 1 1.492-.305c.95 0 1.727.305 2.332.91c.606.602.906 1.387.906 2.356v5.316h-1.222v-5.074c0-.738-.215-1.328-.64-1.762c-.427-.43-.997-.652-1.712-.652c-.504 0-.96.11-1.367.336c-.39.222-.71.543-.957.957v6.191h-1.246Zm10.336-8.41v5.073c0 .739.21 1.328.636 1.758c.426.434.997.656 1.715.656c.504 0 .95-.109 1.34-.336a2.68 2.68 0 0 0 .977-.972v-6.18h1.246v8.406h-1.246v-.972a3.15 3.15 0 0 1-1.16.855c-.438.192-.93.285-1.48.285c-.966 0-1.75-.3-2.36-.906c-.606-.605-.907-1.387-.907-2.355v-5.32H106Zm7.054 8.41l3.313-4.34l-3.137-4.083h1.48l2.38 3.16l2.378-3.16h1.422l-3.101 4.059l3.324 4.352h-1.48l-2.567-3.43l-2.601 3.43h-1.41Zm9.118-8.849v-1.82h-.606v-.352h.606v-.711l.406-.106v.817h.847v.351h-.847v1.715c0 .149.035.258.101.324c.067.063.18.094.332.094a1.116 1.116 0 0 0 .407-.07v.363c-.07.023-.149.043-.239.055a1.885 1.885 0 0 1-.254.015c-.242 0-.43-.054-.558-.172c-.129-.117-.195-.285-.195-.503m1.703.625v-2.797h.414v.308a.942.942 0 0 1 .363-.27c.137-.062.29-.093.457-.093c.195 0 .371.047.524.137c.156.09.277.215.363.37a1.09 1.09 0 0 1 .414-.378c.164-.086.348-.129.547-.129c.304 0 .55.102.738.3c.195.204.293.466.293.786v1.773h-.41v-1.691c0-.246-.067-.441-.195-.59c-.13-.144-.31-.215-.532-.215a.799.799 0 0 0-.422.117a1.006 1.006 0 0 0-.324.34c.008.043.016.086.02.13a.7.7 0 0 1 .011.132v1.773h-.41v-1.69c0-.247-.066-.442-.195-.587a.67.67 0 0 0-.527-.219a.822.822 0 0 0-.41.106a.861.861 0 0 0-.305.3v2.09h-.414Zm0 0\\\"/>\"\n\t\t},\n\t\t\"rollup\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconRollup0\\\" x1=\\\"51.359\\\" x2=\\\"84.819\\\" y1=\\\"61.956\\\" y2=\\\"54.135\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff6533\\\"/><stop offset=\\\".157\\\" stop-color=\\\"#ff5633\\\"/><stop offset=\\\".434\\\" stop-color=\\\"#ff4333\\\"/><stop offset=\\\".714\\\" stop-color=\\\"#ff3733\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f33\\\"/></linearGradient><path fill=\\\"url(#deviconRollup0)\\\" d=\\\"M111.442 42.825c0-7.3-1.912-14.144-5.28-20.076c-8.93-9.191-28.354-11.32-33.177-.043c-4.954 11.559 8.321 24.421 14.123 23.4c7.387-1.304-1.304-18.251-1.304-18.251c11.298 21.292 8.691 14.774-11.733 34.329s-41.281 60.814-44.323 62.552c-.13.087-.261.152-.413.217h80.107c1.412 0 2.325-1.499 1.695-2.759L90.193 80.739a1.898 1.898 0 0 1 .739-2.499c12.254-7.04 20.51-20.25 20.51-35.415\\\"/><linearGradient id=\\\"deviconRollup1\\\" x1=\\\"46.123\\\" x2=\\\"106.089\\\" y1=\\\"73.047\\\" y2=\\\"26.551\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#bf3338\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f33\\\"/></linearGradient><path fill=\\\"url(#deviconRollup1)\\\" d=\\\"M111.442 42.825c0-7.3-1.912-14.144-5.28-20.076c-8.93-9.191-28.354-11.32-33.177-.043c-4.954 11.559 8.321 24.421 14.123 23.4c7.387-1.304-1.304-18.251-1.304-18.251c11.298 21.292 8.691 14.774-11.733 34.329s-41.281 60.814-44.323 62.552c-.13.087-.261.152-.413.217h80.107c1.412 0 2.325-1.499 1.695-2.759L90.193 80.739a1.898 1.898 0 0 1 .739-2.499c12.254-7.04 20.51-20.25 20.51-35.415\\\"/><linearGradient id=\\\"deviconRollup2\\\" x1=\\\"48.083\\\" x2=\\\"56.774\\\" y1=\\\"63.893\\\" y2=\\\"54.768\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff6533\\\"/><stop offset=\\\".157\\\" stop-color=\\\"#ff5633\\\"/><stop offset=\\\".434\\\" stop-color=\\\"#ff4333\\\"/><stop offset=\\\".714\\\" stop-color=\\\"#ff3733\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f33\\\"/></linearGradient><path fill=\\\"url(#deviconRollup2)\\\" d=\\\"M29.748 124.736c3.042-1.738 23.9-43.019 44.323-62.574s23.031-13.036 11.733-34.329c0 0-43.237 60.618-58.88 90.602\\\"/><linearGradient id=\\\"deviconRollup3\\\" x1=\\\"63.885\\\" x2=\\\"61.278\\\" y1=\\\"48.184\\\" y2=\\\"85.555\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff6533\\\"/><stop offset=\\\".157\\\" stop-color=\\\"#ff5633\\\"/><stop offset=\\\".434\\\" stop-color=\\\"#ff4333\\\"/><stop offset=\\\".714\\\" stop-color=\\\"#ff3733\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f33\\\"/></linearGradient><path fill=\\\"url(#deviconRollup3)\\\" d=\\\"M35.832 70.418c29.201-53.687 33.025-59.097 48.234-59.097c7.996 0 16.056 3.607 21.271 10.016C98.232 9.887 85.652 2.217 71.247 2H21.644c-1.043 0-1.89.847-1.89 1.89v99.988c2.955-7.626 7.974-18.533 16.078-33.46\\\"/><linearGradient id=\\\"deviconRollup4\\\" x1=\\\"52.589\\\" x2=\\\"64.934\\\" y1=\\\"64.534\\\" y2=\\\"56.139\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fbb040\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fb8840\\\"/></linearGradient><path fill=\\\"url(#deviconRollup4)\\\" d=\\\"M74.071 62.162c-20.423 19.554-41.281 60.836-44.323 62.574s-8.148 1.955-10.863-1.086c-2.89-3.237-7.387-8.474 16.947-53.231c29.201-53.687 33.025-59.097 48.234-59.097c7.996 0 16.056 3.607 21.271 10.016c.282.456.565.934.847 1.412c-8.93-9.191-28.354-11.32-33.177-.043c-4.954 11.559 8.321 24.421 14.123 23.4c7.387-1.304-1.304-18.251-1.304-18.251c11.276 21.27 8.669 14.752-11.755 34.306\\\"/><linearGradient id=\\\"deviconRollup5\\\" x1=\\\"65.237\\\" x2=\\\"52.636\\\" y1=\\\"111.996\\\" y2=\\\"-26.622\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconRollup5)\\\" d=\\\"M38.222 72.808c29.201-53.687 33.025-59.097 48.234-59.097c6.583 0 13.21 2.455 18.251 6.887c-5.214-5.953-12.949-9.277-20.641-9.277c-15.209 0-19.033 5.41-48.234 59.097c-24.334 44.758-19.837 49.994-16.947 53.231c.413.456.891.847 1.391 1.173c-2.543-3.693-3.672-12.275 17.946-52.014\\\" opacity=\\\".3\\\"/>\"\n\t\t},\n\t\t\"rollup-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M47.883 59.542a5.675 5.675 0 0 0-1.018-.088c-.938 0-1.732.262-2.38.785c-.649.523-1.112 1.283-1.388 2.28v9.334h-1.495V58.261h1.47l.025 2.161c.796-1.608 2.073-2.412 3.832-2.412c.419 0 .749.055.992.163zm1.294 5.314c0-1.307.253-2.483.76-3.53c.507-1.047 1.223-1.861 2.149-2.443c.925-.582 1.974-.873 3.147-.873c1.809 0 3.275.634 4.397 1.904c1.122 1.268 1.683 2.95 1.683 5.044v.314c0 1.315-.253 2.498-.76 3.549c-.507 1.051-1.221 1.862-2.142 2.431s-1.972.854-3.153.854c-1.801 0-3.264-.634-4.391-1.904c-1.126-1.268-1.69-2.95-1.69-5.044zm1.507.415c0 1.625.421 2.959 1.262 4.001c.842 1.043 1.946 1.564 3.311 1.564c1.357 0 2.456-.521 3.298-1.564c.842-1.042 1.263-2.418 1.263-4.127v-.289c0-1.038-.193-1.989-.578-2.852c-.385-.863-.925-1.531-1.621-2.004c-.695-.473-1.491-.71-2.387-.71c-1.34 0-2.433.525-3.279 1.577c-.846 1.051-1.269 2.426-1.269 4.127zm15.415 6.583h-1.508V52.557h1.508zm5.767 0h-1.508V52.557h1.508zm12.827-1.721c-.905 1.315-2.349 1.972-4.334 1.972c-1.449 0-2.55-.421-3.304-1.262c-.754-.842-1.139-2.088-1.156-3.738v-8.844h1.495v8.656c0 2.588 1.047 3.882 3.141 3.882c2.178 0 3.555-.9 4.133-2.701v-9.837h1.508v13.593h-1.457zm16.319-4.937c0 2.119-.469 3.8-1.407 5.044c-.938 1.243-2.194 1.865-3.769 1.865c-1.859 0-3.283-.653-4.271-1.96v6.935H90.07V58.261h1.395l.075 1.922c.98-1.449 2.4-2.173 4.259-2.173c1.625 0 2.9.616 3.826 1.847c.925 1.231 1.388 2.94 1.388 5.126zm-1.508-.264c0-1.734-.356-3.103-1.068-4.108c-.712-1.005-1.704-1.508-2.977-1.508c-.921 0-1.713.222-2.374.666c-.662.444-1.168 1.089-1.52 1.935v6.52c.36.779.875 1.374 1.545 1.784c.67.41 1.462.616 2.374.616c1.265 0 2.251-.505 2.959-1.514c.708-1.009 1.061-2.473 1.061-4.391m4.699 6.018c0-.293.094-.542.283-.748c.188-.205.45-.308.785-.308s.599.103.791.308c.193.205.289.454.289.748s-.096.534-.289.723c-.193.188-.457.282-.791.282s-.597-.094-.785-.282a.98.98 0 0 1-.283-.723m7.902-12.689v15.214c0 1.256-.302 2.215-.905 2.877s-1.491.992-2.663.992c-.452 0-.892-.079-1.319-.237l.025-1.233c.369.109.746.163 1.131.163c1.491 0 2.236-.859 2.236-2.577v-15.2zm-.741-4.937c.327 0 .582.098.766.293c.184.196.276.435.276.718s-.092.52-.276.711c-.184.191-.44.287-.766.287c-.318 0-.568-.096-.748-.287a.997.997 0 0 1-.27-.711c0-.283.09-.522.27-.718c.181-.196.43-.293.748-.293m13.128 15.075c0-.746-.299-1.344-.898-1.797c-.599-.452-1.501-.806-2.707-1.061c-1.206-.256-2.142-.549-2.808-.879c-.666-.331-1.16-.735-1.482-1.213c-.323-.477-.484-1.055-.484-1.734c0-1.072.448-1.958 1.344-2.657c.896-.7 2.043-1.049 3.442-1.049c1.516 0 2.733.375 3.649 1.125c.918.749 1.376 1.727 1.376 2.933h-1.508c0-.796-.333-1.457-.999-1.985c-.665-.528-1.505-.791-2.519-.791c-.988 0-1.782.22-2.381.659c-.599.44-.898 1.012-.898 1.715c0 .678.249 1.204.747 1.576c.499.373 1.407.714 2.727 1.024c1.319.31 2.307.641 2.965.992c.657.352 1.145.775 1.463 1.269c.318.494.477 1.093.477 1.797c0 1.148-.463 2.065-1.388 2.751c-.926.687-2.134 1.03-3.625 1.03c-1.583 0-2.867-.383-3.851-1.15c-.984-.766-1.476-1.735-1.476-2.908h1.508c.058.879.429 1.564 1.112 2.054c.682.49 1.585.735 2.707.735c1.047 0 1.893-.23 2.538-.691c.647-.459.969-1.041.969-1.745\\\"/><linearGradient id=\\\"deviconRollupWordmark0\\\" x1=\\\"11.303\\\" x2=\\\"20.247\\\" y1=\\\"64.919\\\" y2=\\\"62.828\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff6533\\\"/><stop offset=\\\".157\\\" stop-color=\\\"#ff5633\\\"/><stop offset=\\\".434\\\" stop-color=\\\"#ff4333\\\"/><stop offset=\\\".714\\\" stop-color=\\\"#ff3733\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f33\\\"/></linearGradient><path fill=\\\"url(#deviconRollupWordmark0)\\\" d=\\\"M27.364 58.34c0-1.951-.511-3.781-1.411-5.367c-2.387-2.457-7.579-3.026-8.869-.012c-1.324 3.09 2.224 6.528 3.775 6.255c1.975-.348-.348-4.879-.348-4.879c3.02 5.692 2.323 3.949-3.136 9.176S6.339 79.771 5.526 80.235a.676.676 0 0 1-.11.058H26.83a.51.51 0 0 0 .453-.738l-5.599-11.081a.507.507 0 0 1 .197-.668a10.9 10.9 0 0 0 5.483-9.466\\\"/><linearGradient id=\\\"deviconRollupWordmark1\\\" x1=\\\"9.903\\\" x2=\\\"25.933\\\" y1=\\\"67.884\\\" y2=\\\"55.455\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#bf3338\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f33\\\"/></linearGradient><path fill=\\\"url(#deviconRollupWordmark1)\\\" d=\\\"M27.364 58.34c0-1.951-.511-3.781-1.411-5.367c-2.387-2.457-7.579-3.026-8.869-.012c-1.324 3.09 2.224 6.528 3.775 6.255c1.975-.348-.348-4.879-.348-4.879c3.02 5.692 2.323 3.949-3.136 9.176S6.339 79.771 5.526 80.235a.676.676 0 0 1-.11.058H26.83a.51.51 0 0 0 .453-.738l-5.599-11.081a.507.507 0 0 1 .197-.668a10.9 10.9 0 0 0 5.483-9.466\\\"/><linearGradient id=\\\"deviconRollupWordmark2\\\" x1=\\\"10.427\\\" x2=\\\"12.75\\\" y1=\\\"65.437\\\" y2=\\\"62.998\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff6533\\\"/><stop offset=\\\".157\\\" stop-color=\\\"#ff5633\\\"/><stop offset=\\\".434\\\" stop-color=\\\"#ff4333\\\"/><stop offset=\\\".714\\\" stop-color=\\\"#ff3733\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f33\\\"/></linearGradient><path fill=\\\"url(#deviconRollupWordmark2)\\\" d=\\\"M5.526 80.235c.813-.465 6.389-11.5 11.848-16.727s6.156-3.485 3.136-9.176c0 0-11.558 16.204-15.739 24.219\\\"/><linearGradient id=\\\"deviconRollupWordmark3\\\" x1=\\\"14.651\\\" x2=\\\"13.954\\\" y1=\\\"61.238\\\" y2=\\\"71.227\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ff6533\\\"/><stop offset=\\\".157\\\" stop-color=\\\"#ff5633\\\"/><stop offset=\\\".434\\\" stop-color=\\\"#ff4333\\\"/><stop offset=\\\".714\\\" stop-color=\\\"#ff3733\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#f33\\\"/></linearGradient><path fill=\\\"url(#deviconRollupWordmark3)\\\" d=\\\"M7.152 65.716c7.806-14.351 8.828-15.797 12.894-15.797c2.137 0 4.292.964 5.686 2.677a10.902 10.902 0 0 0-9.113-5.169H3.36a.506.506 0 0 0-.505.505V74.66c.789-2.039 2.131-4.954 4.297-8.944\\\"/><linearGradient id=\\\"deviconRollupWordmark4\\\" x1=\\\"11.631\\\" x2=\\\"14.931\\\" y1=\\\"65.608\\\" y2=\\\"63.364\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fbb040\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fb8840\\\"/></linearGradient><path fill=\\\"url(#deviconRollupWordmark4)\\\" d=\\\"M17.374 63.509C11.915 68.736 6.339 79.771 5.526 80.235s-2.178.523-2.904-.29C1.85 79.08.647 77.68 7.152 65.716c7.806-14.351 8.828-15.797 12.894-15.797c2.137 0 4.292.964 5.686 2.677c.076.122.151.25.227.378c-2.387-2.457-7.579-3.026-8.869-.012c-1.324 3.09 2.224 6.528 3.775 6.255c1.975-.348-.348-4.879-.348-4.879c3.013 5.686 2.316 3.944-3.143 9.171\\\"/><linearGradient id=\\\"deviconRollupWordmark5\\\" x1=\\\"15.012\\\" x2=\\\"11.644\\\" y1=\\\"78.295\\\" y2=\\\"41.241\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 130)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconRollupWordmark5)\\\" d=\\\"M7.791 66.355c7.806-14.351 8.828-15.797 12.894-15.797c1.76 0 3.531.656 4.879 1.841c-1.394-1.591-3.462-2.48-5.518-2.48c-4.066 0-5.088 1.446-12.894 15.797C.647 77.68 1.849 79.08 2.622 79.945c.11.122.238.227.372.314c-.68-.988-.982-3.282 4.797-13.904\\\" opacity=\\\".3\\\"/>\"\n\t\t},\n\t\t\"ros\": {\n\t\t\t\"body\": \"<path fill=\\\"#22314e\\\" d=\\\"M33.875 22.45c0 6.898-5.418 12.488-12.102 12.488c-6.683 0-12.101-5.59-12.101-12.489c0-6.894 5.418-12.484 12.101-12.484c6.684 0 12.102 5.59 12.102 12.484Zm0 42.55c0 6.895-5.418 12.484-12.102 12.484c-6.683 0-12.101-5.59-12.101-12.484c0-6.895 5.418-12.484 12.101-12.484c6.684 0 12.102 5.59 12.102 12.484m0 42.55c0 6.895-5.418 12.485-12.102 12.485c-6.683 0-12.101-5.59-12.101-12.484c0-6.895 5.418-12.489 12.101-12.489c6.684 0 12.102 5.594 12.102 12.489ZM76.102 65c0 6.895-5.418 12.484-12.102 12.484S51.898 71.894 51.898 65c0-6.895 5.418-12.484 12.102-12.484S76.102 58.106 76.102 65m0-42.55c0 6.898-5.418 12.488-12.102 12.488s-12.102-5.59-12.102-12.489c0-6.894 5.418-12.484 12.102-12.484s12.102 5.59 12.102 12.484ZM118.328 65c0 6.895-5.418 12.484-12.101 12.484c-6.684 0-12.102-5.59-12.102-12.484c0-6.895 5.422-12.484 12.102-12.484c6.683 0 12.101 5.59 12.101 12.484m0-42.55c0 6.898-5.418 12.488-12.101 12.488c-6.684 0-12.102-5.59-12.102-12.489c0-6.894 5.422-12.484 12.102-12.484c6.683 0 12.101 5.59 12.101 12.484Zm0 85.1c0 6.895-5.418 12.485-12.101 12.485c-6.684 0-12.102-5.59-12.102-12.484c0-6.895 5.422-12.489 12.102-12.489c6.683 0 12.101 5.594 12.101 12.489Zm-42.226 0c0 6.895-5.418 12.485-12.102 12.485s-12.102-5.59-12.102-12.484c0-6.895 5.418-12.489 12.102-12.489s12.102 5.594 12.102 12.489Zm0 0\\\"/>\"\n\t\t},\n\t\t\"ros-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#21304c\\\" d=\\\"M8.691 53.254c0 1.8-1.449 3.258-3.238 3.258a3.25 3.25 0 0 1-3.242-3.258A3.25 3.25 0 0 1 5.453 50a3.246 3.246 0 0 1 3.238 3.254m0 11.094c0 1.8-1.449 3.257-3.238 3.257a3.25 3.25 0 0 1-3.242-3.257a3.25 3.25 0 0 1 3.242-3.254a3.246 3.246 0 0 1 3.238 3.254m0 11.093a3.247 3.247 0 0 1-3.238 3.258a3.25 3.25 0 0 1-3.242-3.258a3.25 3.25 0 0 1 3.242-3.253a3.246 3.246 0 0 1 3.238 3.253m11.305-11.093a3.25 3.25 0 0 1-3.242 3.257a3.247 3.247 0 0 1-3.238-3.257a3.248 3.248 0 0 1 3.238-3.254a3.25 3.25 0 0 1 3.242 3.254m0-11.094a3.25 3.25 0 0 1-3.242 3.258a3.247 3.247 0 0 1-3.238-3.258A3.248 3.248 0 0 1 16.754 50a3.25 3.25 0 0 1 3.242 3.254M31.3 64.348a3.25 3.25 0 0 1-3.241 3.257a3.247 3.247 0 0 1-3.239-3.257a3.246 3.246 0 0 1 3.239-3.254a3.25 3.25 0 0 1 3.242 3.254zm0-11.094a3.25 3.25 0 0 1-3.241 3.258a3.247 3.247 0 0 1-3.239-3.258A3.246 3.246 0 0 1 28.06 50a3.25 3.25 0 0 1 3.24 3.254m0 22.187a3.25 3.25 0 0 1-3.24 3.259a3.247 3.247 0 0 1-3.239-3.258a3.246 3.246 0 0 1 3.239-3.253a3.25 3.25 0 0 1 3.24 3.251zm-11.304 0a3.25 3.25 0 0 1-3.242 3.258a3.247 3.247 0 0 1-3.238-3.258a3.248 3.248 0 0 1 3.238-3.253a3.25 3.25 0 0 1 3.242 3.253M56 66.96l5.805 11.665h-4.91l-5.641-11.297H44.84v11.297h-4.184V50.07h12.465c4.95 0 9.133 2.653 9.133 8.528c0 4.566-2.395 7.382-6.254 8.363zm-2.879-12.85H44.84v9.18h8.281c2.84 0 4.828-1.47 4.828-4.571c0-2.977-1.949-4.61-4.828-4.61zm26.383 24.964c-7.344 0-12.016-6.078-12.016-14.726c0-8.649 4.672-14.727 12.016-14.727c7.39 0 12.058 6.078 12.058 14.727c0 8.648-4.667 14.726-12.058 14.726m0-25.168c-4.95 0-7.672 4.04-7.672 10.442c0 6.406 2.723 10.445 7.672 10.445c4.996 0 7.715-4.04 7.715-10.445c0-6.403-2.719-10.442-7.715-10.442m26.711 25.168c-4.14 0-7.711-1.793-10.106-4.61l3.043-2.976c1.91 2.082 4.711 3.387 7.391 3.387c3.977 0 5.883-1.387 5.883-4.164c0-2.2-1.664-3.3-6.414-4.73c-6.008-1.794-8.887-3.305-8.887-8.403c0-4.937 4.14-7.957 9.375-7.957c3.855 0 6.777 1.43 9.297 3.875l-3.004 3.063c-1.785-1.836-3.816-2.735-6.617-2.735c-3.328 0-4.75 1.633-4.75 3.547c0 2 1.3 2.98 6.21 4.45c5.602 1.71 9.094 3.507 9.094 8.605c0 5.14-3.246 8.648-10.515 8.648m15.91-28.597h-.934v2.66h-.48v-2.66h-.938v-.461h2.352zm3.5 2.66h-.469v-1.649c0-.187.004-.46.008-.55c-.035.09-.129.312-.207.492l-.777 1.754l-.77-1.754c-.078-.18-.172-.403-.207-.492c.004.09.008.363.008.55v1.649h-.453v-3.121h.496l.719 1.664c.078.175.18.402.219.535c.047-.133.14-.356.218-.535l.703-1.664h.512zm0 0\\\"/>\"\n\t\t},\n\t\t\"rspec\": {\n\t\t\t\"body\": \"<path fill=\\\"#6de1fa\\\" d=\\\"M47.296 125.996c-16.11-4.224-28.684-13.647-38.037-28.509c-3.439-5.46-3.498-7.388-.34-11.242c2.381-2.908 2.518-2.938 7.987-1.674c4.391 1.01 6 1.991 7.643 4.65c3.193 5.164 12.893 13.857 18.733 16.785c18.035 9.04 40.008 5.316 54.158-9.178c3.08-3.15 6.223-7.233 6.985-9.076c.76-1.839 1.733-3.345 2.158-3.345c.426 0 1.667 1.975 2.756 4.387l1.975 4.387l5.212-.615c6.085-.723 6.09-.55.105 8.466c-7.717 11.625-22.504 21.763-37.154 25.472c-8.6 2.178-22.794 1.951-32.181-.508m0 0\\\"/><path fill=\\\"#fe405f\\\" d=\\\"M48.013 81.089C39.746 71.053 32.001 60.916 30.8 58.554l-2.19-4.287l8.868-8.911l8.866-8.916H80.55l8.924 8.974l8.927 8.974l-2.405 4.084c-2.9 4.922-31.173 40.73-32.22 40.807c-.405.028-7.499-8.158-15.763-18.19m0 0\\\"/><path fill=\\\"#97f0ff\\\" d=\\\"M111.103 84.934c-2.092-4.31-2.228-5.418-1.163-9.638c.66-2.624.995-9.021.75-14.22c-.38-7.882-1.008-10.575-3.798-16.244c-6.516-13.237-17.298-22.402-30.57-25.998l-6.901-1.866l2.78-3.645c2.74-3.592 2.75-3.7.963-7.452c-1-2.093-1.557-4.06-1.241-4.377C73.075.341 84.985 3.696 92.64 7.336c10.95 5.206 22.84 17.018 28.223 28.039c7.082 14.502 8.74 29.383 4.938 44.248c-1.171 4.59-2.252 8.443-2.396 8.56c-.145.12-2.44.53-5.103.917l-4.833.703zm0 0\\\"/><path fill=\\\"#40daf4\\\" d=\\\"M3.349 85.278c-4.119-10.833-4.193-29.5-.16-41.375C11.433 19.62 33.773 2.147 58.65.523L66.645 0l2.444 4.391l2.448 4.392l-2.932 4.08c-2.728 3.794-3.47 4.16-10.759 5.293c-10.828 1.686-18.737 5.69-26.454 13.413c-13.05 13.049-16.789 28.835-11.477 48.466c.63 2.33.442 2.495-2.138 1.866l-5.283-1.284c-1.947-.473-3.033.222-5.281 3.384L4.38 87.987zm0 0\\\"/>\"\n\t\t},\n\t\t\"rspec-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#6de1fa\\\" d=\\\"M17.207 86.656c-5.888-1.544-10.483-4.987-13.9-10.418c-1.256-1.996-1.276-2.7-.126-4.107c.871-1.065.923-1.076 2.922-.614c1.603.37 2.194.727 2.792 1.7c1.166 1.886 4.713 5.065 6.845 6.134c6.594 3.304 14.623 1.943 19.794-3.353c1.126-1.153 2.272-2.647 2.55-3.32c.28-.669.633-1.22.79-1.22c.156 0 .61.72 1.005 1.604l.724 1.603l1.904-.227c2.226-.262 2.226-.2.04 3.094c-2.82 4.252-8.226 7.955-13.58 9.308c-3.14.798-8.33.716-11.76-.183zm0 0\\\"/><path fill=\\\"#fe405f\\\" d=\\\"M17.468 70.245c-3.019-3.668-5.85-7.372-6.288-8.236l-.803-1.565l6.485-6.516h12.496l3.266 3.278l3.262 3.281l-.881 1.494c-1.059 1.796-11.392 14.883-11.775 14.908c-.15.014-2.738-2.98-5.762-6.644m0 0\\\"/><path fill=\\\"#97f0ff\\\" d=\\\"M40.525 71.65c-.763-1.577-.814-1.98-.423-3.524c.238-.959.363-3.297.273-5.195c-.14-2.881-.367-3.864-1.387-5.937c-2.383-4.837-6.321-8.185-11.171-9.499l-2.523-.685l1.013-1.33c1.001-1.314 1.01-1.353.352-2.722c-.363-.767-.566-1.486-.453-1.6c.422-.422 4.776.806 7.571 2.136c4.001 1.901 8.346 6.219 10.314 10.243c2.59 5.3 3.196 10.74 1.807 16.173c-.43 1.674-.825 3.081-.876 3.129c-.055.043-.891.19-1.865.332l-1.768.258zm0 0\\\"/><path fill=\\\"#40daf4\\\" d=\\\"M1.148 71.775c-1.506-3.959-1.534-10.78-.06-15.12C4.1 47.78 12.266 41.392 21.356 40.802l2.921-.192l.896 1.603l.896 1.608l-1.072 1.49c-.997 1.389-1.271 1.522-3.935 1.936c-3.958.614-6.844 2.077-9.668 4.9c-4.768 4.769-6.132 10.537-4.193 17.71c.23.853.16.91-.78.685a270.572 270.572 0 0 0-1.93-.47c-.711-.175-1.11.078-1.933 1.237l-1.035 1.454zm0 0\\\"/><path d=\\\"M76.867 54.252c-1.995 0-3.559.465-4.693 1.393c-1.127.919-1.69 2.185-1.69 3.8c0 1.389.408 2.472 1.221 3.254c.822.774 2.15 1.342 3.988 1.705l1.502.3c1.252.25 2.148.624 2.692 1.124c.551.5.828 1.2.828 2.096c0 1.025-.382 1.812-1.14 2.363c-.764.556-1.847.83-3.255.83a10.002 10.002 0 0 1-2.832-.424a14.54 14.54 0 0 1-2.926-1.265v2.533a20.913 20.913 0 0 0 3.004.861a14 14 0 0 0 2.754.297c2.283 0 4.01-.454 5.192-1.361c1.177-.915 1.77-2.257 1.77-4.022c0-1.47-.44-2.643-1.315-3.52c-.867-.883-2.219-1.504-4.053-1.86l-1.484-.297c-1.347-.25-2.267-.58-2.754-.987c-.482-.414-.72-1.024-.72-1.83c0-.958.358-1.693 1.077-2.207c.728-.52 1.77-.78 3.115-.78a9.319 9.319 0 0 1 2.393.329a15.514 15.514 0 0 1 2.644.984v-2.392a20.39 20.39 0 0 0-2.722-.69a14.786 14.786 0 0 0-2.596-.234m-22.908.328v18.18h2.47v-7.682h2.676c.97 0 1.738.198 2.301.594c.563.398 1.147 1.205 1.752 2.426l2.332 4.662h2.643l-2.504-4.975c-.5-1.02-1.001-1.823-1.502-2.41c-.5-.583-1.017-.963-1.549-1.143c1.02-.289 1.8-.813 2.332-1.564c.532-.76.797-1.707.797-2.846c0-1.752-.51-3.06-1.531-3.928c-1.026-.876-2.58-1.314-4.664-1.314zm2.473 2.018h3.08c1.19 0 2.084.273 2.691.814c.602.544.908 1.347.908 2.41c0 1.064-.306 1.873-.908 2.424c-.607.544-1.502.813-2.691.813h-3.08zm37.103 2.191c-.993 0-1.845.198-2.566.594c-.72.398-1.313 1.001-1.781 1.814v-2.08h-2.255v18.836h2.254V70.71c.47.814 1.064 1.42 1.784 1.816c.72.395 1.57.595 2.564.594c1.66 0 3.004-.657 4.037-1.97c1.04-1.323 1.565-3.056 1.565-5.196c0-2.146-.524-3.88-1.565-5.193c-1.033-1.315-2.378-1.97-4.037-1.97zm15.014 0c-2.046 0-3.673.658-4.881 1.973c-1.2 1.314-1.799 3.09-1.799 5.32c0 2.158.634 3.873 1.908 5.145c1.27 1.261 2.99 1.893 5.16 1.892c.865 0 1.722-.093 2.567-.281a13.597 13.597 0 0 0 2.473-.766v-2.129a10.473 10.473 0 0 1-2.409.955a9.768 9.768 0 0 1-2.488.313c-1.494 0-2.656-.4-3.49-1.205c-.824-.814-1.289-1.99-1.39-3.535h10.308v-1.096c0-2.022-.54-3.62-1.61-4.8c-1.064-1.19-2.515-1.786-4.35-1.786zm15.51 0c-2.129 0-3.803.641-5.024 1.924c-1.22 1.276-1.83 3.018-1.83 5.24c0 2.19.604 3.935 1.817 5.227c1.208 1.294 2.836 1.94 4.894 1.94a10.032 10.032 0 0 0 2.129-.22a9.061 9.061 0 0 0 1.955-.658v-2.08a8.697 8.697 0 0 1-1.908.799a7.563 7.563 0 0 1-1.94.25c-1.451 0-2.578-.458-3.379-1.377c-.806-.926-1.205-2.223-1.205-3.88c0-1.667.4-2.96 1.205-3.88c.801-.915 1.927-1.377 3.377-1.377a7.252 7.252 0 0 1 1.942.266a8.438 8.438 0 0 1 1.908.783v-2.098a10.068 10.068 0 0 0-1.924-.64a9.316 9.316 0 0 0-2.017-.219m-31.07 1.877c1.188 0 2.117.47 2.798 1.408c.677.94 1.018 2.233 1.018 3.88c0 1.65-.341 2.942-1.018 3.88c-.68.94-1.61 1.408-2.799 1.408c-1.181 0-2.108-.469-2.785-1.408c-.68-.938-1.016-2.23-1.016-3.88c0-1.648.335-2.94 1.016-3.88c.677-.938 1.604-1.408 2.785-1.408zm15.59.031c1.102 0 1.99.368 2.66 1.096c.664.73 1.008 1.705 1.032 2.926l-7.994.015c.114-1.282.546-2.272 1.297-2.972c.751-.708 1.753-1.065 3.004-1.065z\\\"/>\"\n\t\t},\n\t\t\"rstudio\": {\n\t\t\t\"body\": \"<path fill=\\\"#75aadb\\\" d=\\\"M71.4 38.8c-1.5-.6-3.9-1-6.9-1.1c-4.2-.1-9 .4-9.2.5v20c13.3.6 15.5-1.7 15.5-1.7c11.6-5.9 4.3-16.2.6-17.7\\\"/><path fill=\\\"#75aadb\\\" d=\\\"M64 0C28.6 0 0 28.6 0 64s28.6 64 64 64s64-28.6 64-64S99.3 0 64 0m28.6 89.8H82L64.4 63.5h-9V84h9v5.8H41.5v-5.7l7.6-.1l-.1-45.9c-.8-.2-7.5-.8-7.5-.8V32c1 1 7.9 1.2 7.9 1.2c1.6.1 3.9.2 5.2-.1c9.3-1.7 16.4-.4 16.4-.4c14 3.2 14.2 15.8 10.3 22.6c-3.5 5.8-10.3 7.2-10.3 7.2l14.4 21.8l7.2-.1z\\\"/><path fill=\\\"#fff\\\" stroke=\\\"#fff\\\" stroke-width=\\\".788\\\" d=\\\"M41.595 87.073v-2.726l1.82-.141a59.125 59.125 0 0 1 3.752-.144h1.931V37.996l-.938-.127a151.34 151.34 0 0 0-3.752-.397l-2.813-.27v-2.51c0-2.332.027-2.495.39-2.3c1.583.847 10.7 1.07 15.83.388c4.202-.558 11.495-.425 14.035.257c5.483 1.472 9.11 4.646 10.824 9.473c.717 2.018.817 5.847.216 8.224c-.903 3.572-2.39 6.048-4.865 8.101c-1.482 1.23-4.847 3.03-6.145 3.29c-.397.079-.772.224-.832.321c-.06.098 3.123 5.072 7.075 11.054l7.184 10.876l3.633-.068l3.634-.068v5.56l-5.242-.008l-5.24-.007l-8.82-13.234l-8.817-13.234h-9.178v20.744h9.049V89.8H41.595zm25.158-29.162c3.476-.55 7.265-2.774 8.973-5.263c2.511-3.663 1.537-8.99-2.294-12.547c-1.357-1.26-2.205-1.63-4.794-2.1c-2.124-.386-8.66-.454-11.706-.122l-1.544.168l-.058 10.083l-.057 10.082l.72.106c1.366.2 8.67-.075 10.76-.407z\\\"/>\"\n\t\t},\n\t\t\"ruby\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconRuby0\\\" x1=\\\"157.08\\\" x2=\\\"131.682\\\" y1=\\\"2382.05\\\" y2=\\\"2426.892\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FB7655\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#FB7655\\\"/><stop offset=\\\".41\\\" stop-color=\\\"#E42B1E\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#900\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#900\\\"/></linearGradient><path fill=\\\"url(#deviconRuby0)\\\" d=\\\"M97.078 83.214L28.34 124.031l89.003-6.04l6.855-89.745z\\\"/><linearGradient id=\\\"deviconRuby1\\\" x1=\\\"169.731\\\" x2=\\\"136.998\\\" y1=\\\"2419.72\\\" y2=\\\"2441.685\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#871101\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#871101\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#911209\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#911209\\\"/></linearGradient><path fill=\\\"url(#deviconRuby1)\\\" d=\\\"m117.488 117.93l-7.649-52.799l-20.837 27.514z\\\"/><linearGradient id=\\\"deviconRuby2\\\" x1=\\\"143.542\\\" x2=\\\"110.81\\\" y1=\\\"2380.69\\\" y2=\\\"2402.655\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#871101\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#871101\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#911209\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#911209\\\"/></linearGradient><path fill=\\\"url(#deviconRuby2)\\\" d=\\\"m117.592 117.93l-56.044-4.399l-32.91 10.385z\\\"/><linearGradient id=\\\"deviconRuby3\\\" x1=\\\"74.817\\\" x2=\\\"79.891\\\" y1=\\\"2435.622\\\" y2=\\\"2402.644\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#E57252\\\"/><stop offset=\\\".46\\\" stop-color=\\\"#DE3B20\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#A60003\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A60003\\\"/></linearGradient><path fill=\\\"url(#deviconRuby3)\\\" d=\\\"m28.717 123.928l14.001-45.867l-30.81 6.588z\\\"/><linearGradient id=\\\"deviconRuby4\\\" x1=\\\"109.719\\\" x2=\\\"111.589\\\" y1=\\\"2466.413\\\" y2=\\\"2432.757\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#E4714E\\\"/><stop offset=\\\".56\\\" stop-color=\\\"#BE1A0D\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#A80D00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A80D00\\\"/></linearGradient><path fill=\\\"url(#deviconRuby4)\\\" d=\\\"m88.996 92.797l-12.882-50.46l-36.866 34.558z\\\"/><linearGradient id=\\\"deviconRuby5\\\" x1=\\\"140.691\\\" x2=\\\"146.289\\\" y1=\\\"2497.523\\\" y2=\\\"2473.401\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".18\\\" stop-color=\\\"#E46342\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#C82410\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#A80D00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A80D00\\\"/></linearGradient><path fill=\\\"url(#deviconRuby5)\\\" d=\\\"M121.275 43.047L86.426 14.585l-9.704 31.373z\\\"/><linearGradient id=\\\"deviconRuby6\\\" x1=\\\"123.6\\\" x2=\\\"147.719\\\" y1=\\\"2506.018\\\" y2=\\\"2518.077\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".54\\\" stop-color=\\\"#C81F11\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#BF0905\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#BF0905\\\"/></linearGradient><path fill=\\\"url(#deviconRuby6)\\\" d=\\\"M104.978 4.437L84.481 15.764L71.551 4.285z\\\"/><linearGradient id=\\\"deviconRuby7\\\" x1=\\\"53.674\\\" x2=\\\"55.66\\\" y1=\\\"2444.028\\\" y2=\\\"2424.153\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".31\\\" stop-color=\\\"#DE4024\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#BF190B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#BF190B\\\"/></linearGradient><path fill=\\\"url(#deviconRuby7)\\\" d=\\\"m3.802 100.034l8.586-15.659L5.442 65.72z\\\"/><path fill=\\\"#fff\\\" d=\\\"m4.981 65.131l6.987 19.821l30.365-6.812L77 45.922l9.783-31.075L71.38 3.969l-26.19 9.802c-8.252 7.675-24.263 22.86-24.84 23.146c-.573.291-10.575 19.195-15.369 28.214\\\"/><linearGradient id=\\\"deviconRuby8\\\" x1=\\\"40.026\\\" x2=\\\"133.345\\\" y1=\\\"2418.781\\\" y2=\\\"2514.739\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#BD0012\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#BD0012\\\"/><stop offset=\\\".07\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".17\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".27\\\" stop-color=\\\"#C82F1C\\\"/><stop offset=\\\".33\\\" stop-color=\\\"#820C01\\\"/><stop offset=\\\".46\\\" stop-color=\\\"#A31601\\\"/><stop offset=\\\".72\\\" stop-color=\\\"#B31301\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#E82609\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E82609\\\"/></linearGradient><path fill=\\\"url(#deviconRuby8)\\\" d=\\\"M29.519 29.521c17.882-17.73 40.937-28.207 49.785-19.28c8.843 8.926-.534 30.62-18.418 48.345c-17.884 17.725-40.653 28.779-49.493 19.852c-8.849-8.92.242-31.191 18.126-48.917\\\"/><linearGradient id=\\\"deviconRuby9\\\" x1=\\\"111.507\\\" x2=\\\"83.398\\\" y1=\\\"2409.102\\\" y2=\\\"2416.039\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8C0C01\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#8C0C01\\\"/><stop offset=\\\".54\\\" stop-color=\\\"#990C00\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#A80D0E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A80D0E\\\"/></linearGradient><path fill=\\\"url(#deviconRuby9)\\\" d=\\\"m28.717 123.909l13.89-46.012l46.135 14.82c-16.68 15.642-35.233 28.865-60.025 31.192\\\"/><linearGradient id=\\\"deviconRubya\\\" x1=\\\"159.785\\\" x2=\\\"134.814\\\" y1=\\\"2442.837\\\" y2=\\\"2465.217\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7E110B\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#7E110B\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#9E0C00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#9E0C00\\\"/></linearGradient><path fill=\\\"url(#deviconRubya)\\\" d=\\\"m77.062 45.831l11.844 46.911c13.934-14.65 26.439-30.401 32.563-49.883z\\\"/><linearGradient id=\\\"deviconRubyb\\\" x1=\\\"168.959\\\" x2=\\\"156.521\\\" y1=\\\"2483.901\\\" y2=\\\"2497.199\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#79130D\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#79130D\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#9E120B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#9E120B\\\"/></linearGradient><path fill=\\\"url(#deviconRubyb)\\\" d=\\\"M121.348 43.097c4.74-14.305 5.833-34.825-16.517-38.635l-18.339 10.13z\\\"/><path fill=\\\"#9E1209\\\" d=\\\"M3.802 99.828c.656 23.608 17.689 23.959 24.945 24.167l-16.759-39.14z\\\"/><radialGradient id=\\\"deviconRubyc\\\" cx=\\\"138.703\\\" cy=\\\"2464.789\\\" r=\\\"30.601\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#A80D00\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#A80D00\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#7E0E08\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7E0E08\\\"/></radialGradient><path fill=\\\"url(#deviconRubyc)\\\" d=\\\"M77.128 45.904c10.708 6.581 32.286 19.798 32.723 20.041c.68.383 9.304-14.542 11.261-22.976z\\\"/><radialGradient id=\\\"deviconRubyd\\\" cx=\\\"96.325\\\" cy=\\\"2424.465\\\" r=\\\"40.679\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#A30C00\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#A30C00\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#800E08\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#800E08\\\"/></radialGradient><path fill=\\\"url(#deviconRubyd)\\\" d=\\\"m42.589 77.897l18.57 35.828c10.98-5.955 19.579-13.211 27.454-20.983z\\\"/><linearGradient id=\\\"deviconRubye\\\" x1=\\\"67.509\\\" x2=\\\"57.373\\\" y1=\\\"2393.115\\\" y2=\\\"2427.506\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8B2114\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#8B2114\\\"/><stop offset=\\\".43\\\" stop-color=\\\"#9E100A\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#B3100C\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#B3100C\\\"/></linearGradient><path fill=\\\"url(#deviconRubye)\\\" d=\\\"m11.914 84.904l-2.631 31.331c4.964 6.781 11.794 7.371 18.96 6.842c-5.184-12.9-15.538-38.696-16.329-38.173\\\"/><linearGradient id=\\\"deviconRubyf\\\" x1=\\\"145.272\\\" x2=\\\"167.996\\\" y1=\\\"2507.076\\\" y2=\\\"2497.045\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2517)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B31000\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#B31000\\\"/><stop offset=\\\".44\\\" stop-color=\\\"#910F08\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#791C12\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#791C12\\\"/></linearGradient><path fill=\\\"url(#deviconRubyf)\\\" d=\\\"m86.384 14.67l36.891 5.177c-1.969-8.343-8.015-13.727-18.32-15.41z\\\"/>\"\n\t\t},\n\t\t\"ruby-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M30.217 109.422v8.547h-4.724V95.692h6.491c3.026 0 5.266.551 6.719 1.653c1.453 1.103 2.179 2.776 2.179 5.02c0 1.311-.361 2.477-1.083 3.497c-.721 1.021-1.742 1.822-3.063 2.401l6.552 9.705h-5.242l-5.317-8.547h-2.512zm0-3.84h1.524c1.492 0 2.595-.25 3.306-.747c.71-.498 1.066-1.28 1.066-2.346c0-1.057-.363-1.808-1.089-2.255c-.726-.447-1.851-.671-3.375-.671h-1.432zm27.578 12.387l-.625-2.179h-.244c-.498.793-1.205 1.404-2.118 1.836c-.915.432-1.957.647-3.124.647c-2.002 0-3.509-.535-4.526-1.607c-1.016-1.072-1.524-2.613-1.524-4.624v-11.108h4.648v9.95c0 1.229.218 2.151.656 2.766c.436.615 1.131.921 2.086.921c1.301 0 2.24-.435 2.819-1.302c.579-.869.869-2.308.869-4.319v-8.015h4.647v17.035h-3.564zm17.918-17.356c2.011 0 3.586.786 4.725 2.355c1.137 1.569 1.706 3.72 1.706 6.453c0 2.813-.587 4.992-1.759 6.535c-1.173 1.545-2.771 2.316-4.793 2.316c-2 0-3.57-.727-4.708-2.18h-.32l-.776 1.875h-3.551V94.26h4.647v5.516c0 .701-.062 1.823-.184 3.368h.184c1.086-1.686 2.697-2.531 4.829-2.531m-1.493 3.719c-1.147 0-1.985.353-2.513 1.059c-.528.707-.803 1.872-.823 3.498v.502c0 1.829.271 3.139.814 3.932c.544.792 1.405 1.188 2.583 1.188c.955 0 1.713-.44 2.278-1.318c.564-.878.846-2.156.846-3.832c0-1.676-.286-2.934-.854-3.772c-.568-.838-1.345-1.257-2.331-1.257m9.021-3.398h5.088l3.215 9.584c.275.833.463 1.818.564 2.956h.092c.111-1.046.329-2.032.654-2.956l3.154-9.584h4.983l-7.207 19.214c-.661 1.777-1.602 3.108-2.826 3.992c-1.225.884-2.654 1.325-4.29 1.325c-.803 0-1.59-.086-2.361-.259v-3.687a7.992 7.992 0 0 0 1.828.197c.822 0 1.541-.251 2.156-.754c.615-.502 1.095-1.261 1.44-2.277l.274-.839z\\\"/><linearGradient id=\\\"deviconRubyWordmark0\\\" x1=\\\"143.917\\\" x2=\\\"125.854\\\" y1=\\\"2125.439\\\" y2=\\\"2157.331\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#FB7655\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#FB7655\\\"/><stop offset=\\\".41\\\" stop-color=\\\"#E42B1E\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#900\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#900\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark0)\\\" d=\\\"M87.524 58.767L38.638 87.795l63.3-4.294l4.875-63.828z\\\"/><linearGradient id=\\\"deviconRubyWordmark1\\\" x1=\\\"152.913\\\" x2=\\\"129.634\\\" y1=\\\"2152.229\\\" y2=\\\"2167.85\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#871101\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#871101\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#911209\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#911209\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark1)\\\" d=\\\"M102.041 83.457L96.6 45.905l-14.818 19.57z\\\"/><linearGradient id=\\\"deviconRubyWordmark2\\\" x1=\\\"134.287\\\" x2=\\\"111.008\\\" y1=\\\"2124.472\\\" y2=\\\"2140.093\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#871101\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#871101\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#911209\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#911209\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark2)\\\" d=\\\"m102.114 83.457l-39.858-3.129l-23.405 7.385z\\\"/><linearGradient id=\\\"deviconRubyWordmark3\\\" x1=\\\"85.411\\\" x2=\\\"89.02\\\" y1=\\\"2163.54\\\" y2=\\\"2140.086\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#E57252\\\"/><stop offset=\\\".46\\\" stop-color=\\\"#DE3B20\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#A60003\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A60003\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark3)\\\" d=\\\"m38.906 87.722l9.957-32.62l-21.91 4.686z\\\"/><linearGradient id=\\\"deviconRubyWordmark4\\\" x1=\\\"110.233\\\" x2=\\\"111.563\\\" y1=\\\"2185.439\\\" y2=\\\"2161.502\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#E4714E\\\"/><stop offset=\\\".56\\\" stop-color=\\\"#BE1A0D\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#A80D00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A80D00\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark4)\\\" d=\\\"m81.777 65.582l-9.162-35.887l-26.219 24.577z\\\"/><linearGradient id=\\\"deviconRubyWordmark5\\\" x1=\\\"132.261\\\" x2=\\\"136.242\\\" y1=\\\"2207.563\\\" y2=\\\"2190.407\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".18\\\" stop-color=\\\"#E46342\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#C82410\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#A80D00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A80D00\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark5)\\\" d=\\\"M104.734 30.201L79.949 9.958l-6.901 22.313z\\\"/><linearGradient id=\\\"deviconRubyWordmark6\\\" x1=\\\"120.105\\\" x2=\\\"137.258\\\" y1=\\\"2213.604\\\" y2=\\\"2222.18\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".54\\\" stop-color=\\\"#C81F11\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#BF0905\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#BF0905\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark6)\\\" d=\\\"m93.142 2.741l-14.576 8.056l-9.197-8.164z\\\"/><linearGradient id=\\\"deviconRubyWordmark7\\\" x1=\\\"70.375\\\" x2=\\\"71.787\\\" y1=\\\"2169.518\\\" y2=\\\"2155.382\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".31\\\" stop-color=\\\"#DE4024\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#BF190B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#BF190B\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark7)\\\" d=\\\"m21.188 70.73l6.107-11.137l-4.941-13.267z\\\"/><path fill=\\\"#fff\\\" d=\\\"m22.026 45.905l4.97 14.098l21.595-4.845l24.655-22.913l6.958-22.1l-10.955-7.737l-18.627 6.971c-5.868 5.458-17.256 16.258-17.667 16.461c-.406.208-7.519 13.653-10.929 20.065\\\"/><linearGradient id=\\\"deviconRubyWordmark8\\\" x1=\\\"60.669\\\" x2=\\\"127.036\\\" y1=\\\"2151.563\\\" y2=\\\"2219.806\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#BD0012\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#BD0012\\\"/><stop offset=\\\".07\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".17\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\".27\\\" stop-color=\\\"#C82F1C\\\"/><stop offset=\\\".33\\\" stop-color=\\\"#820C01\\\"/><stop offset=\\\".46\\\" stop-color=\\\"#A31601\\\"/><stop offset=\\\".72\\\" stop-color=\\\"#B31301\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#E82609\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#E82609\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark8)\\\" d=\\\"M39.477 20.581C52.196 7.97 68.592.52 74.884 6.869c6.289 6.348-.38 21.776-13.099 34.382C49.067 53.858 32.873 61.719 26.586 55.37c-6.294-6.344.173-22.183 12.891-34.789\\\"/><linearGradient id=\\\"deviconRubyWordmark9\\\" x1=\\\"111.505\\\" x2=\\\"91.514\\\" y1=\\\"2144.677\\\" y2=\\\"2149.611\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8C0C01\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#8C0C01\\\"/><stop offset=\\\".54\\\" stop-color=\\\"#990C00\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#A80D0E\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#A80D0E\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmark9)\\\" d=\\\"m38.906 87.709l9.879-32.724l32.811 10.541c-11.864 11.125-25.058 20.528-42.69 22.183\\\"/><linearGradient id=\\\"deviconRubyWordmarka\\\" x1=\\\"145.839\\\" x2=\\\"128.08\\\" y1=\\\"2168.67\\\" y2=\\\"2184.586\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7E110B\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#7E110B\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#9E0C00\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#9E0C00\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmarka)\\\" d=\\\"m73.289 32.181l8.423 33.363c9.91-10.419 18.804-21.621 23.159-35.476z\\\"/><linearGradient id=\\\"deviconRubyWordmarkb\\\" x1=\\\"152.364\\\" x2=\\\"143.518\\\" y1=\\\"2197.874\\\" y2=\\\"2207.331\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#79130D\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#79130D\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#9E120B\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#9E120B\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmarkb)\\\" d=\\\"M104.785 30.236c3.371-10.174 4.148-24.768-11.746-27.477L79.996 9.963z\\\"/><path fill=\\\"#9E1209\\\" d=\\\"M21.188 70.583c.467 16.789 12.581 17.04 17.741 17.188l-11.92-27.837z\\\"/><radialGradient id=\\\"deviconRubyWordmarkc\\\" cx=\\\"130.847\\\" cy=\\\"2184.281\\\" r=\\\"21.762\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#A80D00\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#A80D00\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#7E0E08\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7E0E08\\\"/></radialGradient><path fill=\\\"url(#deviconRubyWordmarkc)\\\" d=\\\"M73.337 32.232c7.615 4.68 22.96 14.08 23.271 14.253c.484.272 6.617-10.342 8.008-16.34z\\\"/><radialGradient id=\\\"deviconRubyWordmarkd\\\" cx=\\\"100.707\\\" cy=\\\"2155.602\\\" r=\\\"28.932\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#A30C00\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#A30C00\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#800E08\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#800E08\\\"/></radialGradient><path fill=\\\"url(#deviconRubyWordmarkd)\\\" d=\\\"m48.772 54.986l13.207 25.48c7.81-4.235 13.924-9.395 19.526-14.922z\\\"/><linearGradient id=\\\"deviconRubyWordmarke\\\" x1=\\\"80.214\\\" x2=\\\"73.005\\\" y1=\\\"2133.309\\\" y2=\\\"2157.766\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8B2114\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#8B2114\\\"/><stop offset=\\\".43\\\" stop-color=\\\"#9E100A\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#B3100C\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#B3100C\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmarke)\\\" d=\\\"m26.957 59.969l-1.872 22.282c3.532 4.823 8.389 5.241 13.485 4.866c-3.687-9.175-11.051-27.521-11.613-27.148\\\"/><linearGradient id=\\\"deviconRubyWordmarkf\\\" x1=\\\"135.518\\\" x2=\\\"151.68\\\" y1=\\\"2214.356\\\" y2=\\\"2207.222\\\" gradientTransform=\\\"matrix(1 0 0 -1 -47.5 2221)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#B31000\\\"/><stop offset=\\\"0\\\" stop-color=\\\"#B31000\\\"/><stop offset=\\\".44\\\" stop-color=\\\"#910F08\\\"/><stop offset=\\\".99\\\" stop-color=\\\"#791C12\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#791C12\\\"/></linearGradient><path fill=\\\"url(#deviconRubyWordmarkf)\\\" d=\\\"m79.919 10.02l26.237 3.683c-1.401-5.935-5.701-9.763-13.03-10.961z\\\"/>\"\n\t\t},\n\t\t\"rubymine\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconRubymine0\\\" x1=\\\"65.05\\\" x2=\\\"52.91\\\" y1=\\\"60.03\\\" y2=\\\"28.18\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\".06\\\" stop-color=\\\"#fe3052\\\"/><stop offset=\\\".33\\\" stop-color=\\\"#fd533b\\\"/><stop offset=\\\".58\\\" stop-color=\\\"#fc6c2a\\\"/><stop offset=\\\".81\\\" stop-color=\\\"#fc7b20\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fc801d\\\"/></linearGradient><linearGradient id=\\\"deviconRubymine1\\\" x1=\\\"41.93\\\" x2=\\\"60.67\\\" y1=\\\"14.45\\\" y2=\\\"31.63\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6b57ff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fe2857\\\"/></linearGradient><linearGradient id=\\\"deviconRubymine2\\\" x1=\\\"3.92\\\" x2=\\\"65.63\\\" y1=\\\"19.88\\\" y2=\\\"98.32\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6b57ff\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\".63\\\" stop-color=\\\"#fe2857\\\"/><stop offset=\\\".64\\\" stop-color=\\\"#fe3052\\\"/><stop offset=\\\".7\\\" stop-color=\\\"#fd533b\\\"/><stop offset=\\\".76\\\" stop-color=\\\"#fc6c2a\\\"/><stop offset=\\\".81\\\" stop-color=\\\"#fc7b20\\\"/><stop offset=\\\".85\\\" stop-color=\\\"#fc801d\\\"/></linearGradient><path fill=\\\"url(#deviconRubymine0)\\\" d=\\\"M101.595 5.486L68.108 17.481L41.716 5.486L33.024 27.38h-5.62v64.634l81.274.707l12.617-64.366z\\\"/><path fill=\\\"url(#deviconRubymine1)\\\" d=\\\"m100.596 47.482l-53.48-31.695l53.48 62.683z\\\"/><path fill=\\\"url(#deviconRubymine2)\\\" d=\\\"m52.98 119.467l43.739-5.827l-6.79-13.056h10.667V78.47L47.104 15.689L4.267 26.21l.049 61.44l24.625 34.865l23.906-3.035l.11-.012z\\\"/><path d=\\\"M27.429 27.429h73.143v73.143H27.429z\\\"/><path fill=\\\"#fff\\\" d=\\\"M36.547 86.747h27.429v4.571H36.547zm27.099-50.213h6.522l7.229 11.63l7.229-11.63h6.522v27.49h-6.01V46.08l-7.741 11.739h-.158l-7.656-11.618v17.822h-5.937zm-27.075.037h12.556q5.218 0 7.997 2.779a8.533 8.533 0 0 1 2.353 6.278v.085a8.533 8.533 0 0 1-1.634 5.425a9.435 9.435 0 0 1-4.254 3.084l6.717 9.752h-7.07l-5.693-8.422h-4.986v8.436h-5.986zm12.19 13.3a5.022 5.022 0 0 0 3.377-1.109a3.657 3.657 0 0 0 1.219-2.828v-.073a3.474 3.474 0 0 0-1.219-2.938a5.522 5.522 0 0 0-3.486-.987h-6.071v7.887z\\\"/>\"\n\t\t},\n\t\t\"rubymine-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M5.648 50.703h15.059v15.059H5.648Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M7.523 62.918h5.649v.941H7.523Zm5.582-10.34h1.34l1.489 2.395l1.488-2.395h1.344v5.66h-1.239v-3.695l-1.593 2.418h-.032l-1.578-2.395v3.672h-1.219Zm-5.574.008h2.582c.719 0 1.266.191 1.649.574c.332.344.508.813.484 1.29v.019c.016.398-.101.793-.336 1.117a1.923 1.923 0 0 1-.879.633l1.383 2.008h-1.453l-1.172-1.73H8.762v1.737h-1.23Zm2.508 2.738c.254.012.5-.07.695-.23a.741.741 0 0 0 .25-.578v-.02a.707.707 0 0 0-.25-.601a1.122 1.122 0 0 0-.718-.204h-1.25v1.621Zm0 0\\\"/><path d=\\\"M26.402 50.738h6.871c1.91 0 3.391.535 4.38 1.528c.84.836 1.288 2.007 1.288 3.433v.043c0 2.426-1.312 3.95-3.222 4.66l3.683 5.364H35.54l-3.234-4.809h-2.598v4.809h-3.305Zm6.653 7.301c1.613 0 2.535-.86 2.535-2.125v-.043c0-1.418-.988-2.148-2.598-2.148h-3.285v4.316Zm7.183 3.668v-7.45H43.5v6.423c0 1.547.727 2.34 1.977 2.34c1.246 0 2.035-.793 2.035-2.34v-6.422h3.265v11.508h-3.265v-1.637c-.75.969-1.715 1.848-3.371 1.848c-2.465.007-3.903-1.625-3.903-4.27m15.586 2.555v1.508h-3.261V50.094h3.261v5.82c.797-1.074 1.89-1.867 3.586-1.867c2.684 0 5.238 2.101 5.238 5.945v.043c0 3.844-2.507 5.95-5.238 5.95a4.424 4.424 0 0 1-3.586-1.723m5.563-4.227v-.043c0-1.91-1.285-3.18-2.813-3.18c-1.527 0-2.793 1.258-2.793 3.18v.043c0 1.91 1.27 3.176 2.793 3.176c1.524 0 2.813-1.242 2.813-3.176m0 0\\\"/><path d=\\\"M72.898 54.258h3.399l-4.422 11.797c-.879 2.343-1.824 3.222-3.777 3.222a5.466 5.466 0 0 1-2.903-.793l1.098-2.363c.422.266.902.422 1.394.453c.56 0 .86-.176 1.141-.754l-4.52-11.547h3.458l2.617 7.836Zm4.418-3.52h3.563l3.953 6.364l3.95-6.352h3.566v15.016h-3.29v-9.809l-4.226 6.418h-.086l-4.18-6.355v9.746h-3.25Zm16.672-.644h3.434v2.902h-3.434Zm.086 4.164h3.262v11.508h-3.262Zm4.969 0h3.266v1.633c.75-.965 1.714-1.844 3.37-1.844c2.466 0 3.903 1.629 3.903 4.266v7.453h-3.262v-6.403c0-1.547-.73-2.343-1.976-2.343c-1.242 0-2.035.796-2.035 2.343v6.403h-3.266Zm11.727 5.82v-.043c0-3.285 2.34-5.988 5.687-5.988c3.844 0 5.606 2.984 5.606 6.246c0 .25-.024.559-.043.86h-8.008c.324 1.48 1.351 2.257 2.812 2.257c1.094 0 1.89-.344 2.79-1.18l1.859 1.649c-1.075 1.332-2.618 2.148-4.7 2.148c-3.449 0-6.003-2.43-6.003-5.949m8.113-.969c-.192-1.457-1.051-2.445-2.426-2.445c-1.375 0-2.23.965-2.488 2.445Zm-91.89 17.18v.77h-.602v-5.68h.601v2.469a1.8 1.8 0 0 1 1.54-.899c.964 0 1.921.754 1.921 2.086v.016c0 1.316-.95 2.094-1.922 2.094c-.625 0-1.21-.325-1.539-.856Zm2.847-1.23v-.016c0-.95-.656-1.555-1.418-1.555a1.507 1.507 0 0 0-1.457 1.547v.016a1.506 1.506 0 0 0 1.457 1.554c.777 0 1.418-.574 1.418-1.546m4.43-2.024h.64l-1.687 4.145c-.344.836-.735 1.136-1.34 1.136a1.805 1.805 0 0 1-.856-.203l.203-.472c.192.105.41.156.63.148c.359 0 .581-.187.824-.754l-1.829-4.015h.66l1.465 3.355Zm3.496 3.14l.441-.378c.336.5.676.777 1.254.777c.617 0 1.066-.445 1.066-1.308v-3.653h.621v3.64a1.95 1.95 0 0 1-.503 1.43c-.32.305-.754.47-1.2.454a1.86 1.86 0 0 1-1.68-.961Zm4.488-1.116v-.016c0-1.16.812-2.094 1.93-2.094c1.187 0 1.875.95 1.875 2.125c.004.063.004.13 0 .196h-3.2a1.41 1.41 0 0 0 1.418 1.363a1.66 1.66 0 0 0 1.266-.57l.375.335a2.09 2.09 0 0 1-1.656.754a2.007 2.007 0 0 1-1.453-.617a2.014 2.014 0 0 1-.555-1.476m3.195-.235c-.062-.73-.48-1.367-1.281-1.367c-.703 0-1.23.582-1.309 1.367Zm1.719 1.168v-2.426h-.559v-.53h.559V71.82h.602v1.215h1.273v.531H47.77v2.36a.59.59 0 0 0 .171.504a.587.587 0 0 0 .504.168c.203 0 .403-.047.582-.141v.5a1.494 1.494 0 0 1-.722.172c-.645 0-1.137-.32-1.137-1.137m2.86-4.379h2.32a2 2 0 0 1 1.425.48c.227.231.356.548.348.872v.015a1.317 1.317 0 0 1-.863 1.254c.644.196 1.168.567 1.168 1.317v.015c0 .934-.785 1.485-1.977 1.485h-2.422Zm3.472 1.438c0-.54-.426-.887-1.207-.887h-1.656v1.875h1.61c.737 0 1.253-.332 1.253-.973Zm-1.145 1.531h-1.718v1.926h1.816c.824 0 1.34-.367 1.34-.977v-.015c.008-.594-.488-.934-1.438-.934m3.208-1.547h.597v1.05a1.734 1.734 0 0 1 1.645-1.12v.648h-.051c-.875 0-1.594.63-1.594 1.84v1.606h-.597Zm2.718 2.856v-.016c0-.848.703-1.297 1.719-1.297c.422-.004.836.05 1.238.168v-.14c0-.723-.441-1.098-1.199-1.098c-.422.008-.84.11-1.219.297l-.18-.5c.454-.223.954-.34 1.462-.336c.476-.035.945.125 1.3.441c.29.32.438.746.41 1.176v2.46h-.574v-.609a1.762 1.762 0 0 1-1.453.696c-.75.012-1.504-.414-1.504-1.242m2.957-.309v-.39a4.164 4.164 0 0 0-1.18-.172c-.753 0-1.18.328-1.18.835v.012c0 .504.47.801 1.005.801c.758.012 1.355-.45 1.355-1.086m1.785-4.086h.684v.664h-.684Zm.04 1.54h.597v4.015h-.597Zm1.894 0h.598v.698c.277-.496.808-.8 1.379-.785c.972 0 1.543.653 1.543 1.614v2.507h-.602v-2.347c0-.754-.402-1.215-1.113-1.215a1.174 1.174 0 0 0-.875.363c-.23.238-.352.563-.332.89v2.305h-.598Zm4.383 3.507l.305-.426c.398.313.886.488 1.394.504c.484 0 .832-.254.832-.64v-.016c0-.406-.476-.559-1.004-.707c-.629-.18-1.332-.399-1.332-1.137v-.016c0-.695.578-1.152 1.371-1.152a2.714 2.714 0 0 1 1.446.445l-.27.45a2.272 2.272 0 0 0-1.191-.387c-.477 0-.778.25-.778.582v.016c0 .379.5.527 1.035.691c.622.188 1.293.43 1.293 1.152v.024c0 .754-.632 1.207-1.433 1.207a2.754 2.754 0 0 1-1.668-.59m0 0\\\"/>\"\n\t\t},\n\t\t\"rust\": {\n\t\t\t\"body\": \"<path d=\\\"M62.96.242c-.232.135-1.203 1.528-2.16 3.097c-2.4 3.94-2.426 3.942-5.65.55c-2.098-2.208-2.605-2.612-3.28-2.607c-.44.002-.995.152-1.235.332c-.24.18-.916 1.612-1.504 3.183c-1.346 3.6-1.41 3.715-2.156 3.86c-.46.086-1.343-.407-3.463-1.929c-1.565-1.125-3.1-2.045-3.411-2.045c-1.291 0-1.655.706-2.27 4.4c-.78 4.697-.754 4.681-4.988 2.758c-1.71-.776-3.33-1.41-3.603-1.41c-.274 0-.792.293-1.15.652c-.652.652-.653.655-.475 4.246l.178 3.595l-.68.364c-.602.322-1.017.283-3.684-.348c-3.48-.822-4.216-.8-4.92.15l-.516.693l.692 2.964c.38 1.63.745 3.2.814 3.487c.067.287-.05.746-.26 1.02c-.348.448-.717.49-3.94.44c-5.452-.086-5.761.382-3.51 5.3c.718 1.56 1.305 2.98 1.305 3.15c0 .898-.717 1.224-3.794 1.727c-1.722.28-3.218.51-3.326.51c-.107 0-.43.235-.717.522c-.937.936-.671 1.816 1.453 4.814c2.646 3.735 2.642 3.75-1.73 5.421c-4.971 1.902-5.072 2.37-1.287 5.96c3.525 3.344 3.53 3.295-.461 5.804C.208 62.8.162 62.846.085 63.876c-.093 1.253-.071 1.275 3.538 3.48c3.57 2.18 3.57 2.246.067 5.56C-.078 76.48.038 77 5.013 78.877c4.347 1.64 4.353 1.66 1.702 5.394c-1.502 2.117-1.981 3-1.981 3.653c0 1.223.637 1.535 4.44 2.174c3.206.54 3.92.857 3.92 1.741c0 .182-.588 1.612-1.307 3.177c-2.236 4.87-1.981 5.275 3.31 5.275c4.93 0 4.799-.15 3.737 4.294c-.8 3.35-.813 3.992-.088 4.715c.554.556 1.6.494 4.87-.289c2.499-.596 2.937-.637 3.516-.328l.66.354l-.177 3.594c-.178 3.593-.177 3.595.475 4.248c.358.36.884.652 1.165.652c.282 0 1.903-.63 3.604-1.404c4.22-1.916 4.194-1.932 4.973 2.75c.617 3.711.977 4.4 2.294 4.4c.327 0 1.83-.88 3.34-1.958c2.654-1.893 3.342-2.19 4.049-1.74c.182.115.89 1.67 1.572 3.455c1.003 2.625 1.37 3.31 1.929 3.576c1.062.51 1.72.1 4.218-2.62c3.016-3.286 3.14-3.27 5.602.72c2.72 4.406 3.424 4.396 6.212-.089c2.402-3.864 2.374-3.862 5.621-.47c2.157 2.25 2.616 2.61 3.343 2.61c.464 0 1.019-.175 1.23-.388c.214-.213.92-1.786 1.568-3.496c.649-1.71 1.321-3.2 1.495-3.31c.687-.436 1.398-.13 4.048 1.752c1.56 1.108 3.028 1.96 3.377 1.96c1.296 0 1.764-.92 2.302-4.535c.46-3.082.554-3.378 1.16-3.685c.596-.302.954-.2 3.75 1.07c1.701.77 3.323 1.402 3.604 1.402c.282 0 .816-.302 1.184-.672l.672-.67l-.184-3.448c-.177-3.29-.16-3.468.364-3.943c.54-.488.596-.486 3.615.204c3.656.835 4.338.857 5.025.17c.671-.67.664-.818-.254-4.69c-1.03-4.346-1.168-4.19 3.78-4.19c3.374 0 3.75-.049 4.18-.523c.718-.793.547-1.702-.896-4.779c-.729-1.55-1.32-2.96-1.315-3.135c.024-.914.743-1.227 4.065-1.767c2.033-.329 3.553-.71 3.829-.96c.923-.833.584-1.918-1.523-4.873c-2.642-3.703-2.63-3.738 1.599-5.297c5.064-1.866 5.209-2.488 1.419-6.09c-3.51-3.335-3.512-3.317.333-5.677c4.648-2.853 4.655-3.496.082-6.335c-3.933-2.44-3.93-2.406-.405-5.753c3.78-3.593 3.678-4.063-1.295-5.965c-4.388-1.679-4.402-1.72-1.735-5.38c1.588-2.18 1.982-2.903 1.982-3.65c0-1.306-.586-1.598-4.436-2.22c-3.216-.52-3.924-.835-3.924-1.75c0-.174.588-1.574 1.307-3.113c1.406-3.013 1.604-4.22.808-4.94c-.428-.387-1-.443-4.067-.392c-3.208.054-3.618.008-4.063-.439c-.486-.488-.48-.557.278-3.725c.931-3.88.935-3.975.17-4.694c-.777-.73-1.262-.718-4.826.121c-2.597.612-3.027.653-3.617.337l-.67-.36l.185-3.582l.186-3.58l-.67-.67c-.369-.37-.891-.67-1.163-.67c-.27 0-1.884.64-3.583 1.421c-2.838 1.306-3.143 1.393-3.757 1.072c-.612-.32-.714-.637-1.237-3.829c-.603-3.693-.977-4.412-2.288-4.412c-.311 0-1.853.925-3.426 2.055c-2.584 1.856-2.93 2.032-3.574 1.807c-.533-.186-.843-.59-1.221-1.599c-.28-.742-.817-2.172-1.194-3.177c-.762-2.028-1.187-2.482-2.328-2.482c-.637 0-1.213.458-3.28 2.604c-3.25 3.375-3.261 3.374-5.65-.545C66.073 1.78 65.075.382 64.81.24c-.597-.32-1.3-.32-1.85.002m2.96 11.798c2.83 2.014 1.326 6.75-2.144 6.75c-3.368 0-5.064-4.057-2.66-6.36c1.358-1.3 3.304-1.459 4.805-.39m-3.558 12.507c1.855.705 2.616.282 6.852-3.8l3.182-3.07l1.347.18c4.225.56 12.627 4.25 17.455 7.666c4.436 3.14 10.332 9.534 12.845 13.93l.537.942l-2.38 5.364c-1.31 2.95-2.382 5.673-2.382 6.053c0 .878.576 2.267 1.13 2.726c.234.195 2.457 1.265 4.939 2.378l4.51 2.025l.178 1.148c.23 1.495.26 5.167.052 6.21l-.163.816h-2.575c-2.987 0-2.756-.267-2.918 3.396c-.118 2.656-.76 4.124-2.22 5.075c-2.377 1.551-6.304 1.27-7.97-.57c-.255-.284-.752-1.705-1.105-3.16c-1.03-4.254-2.413-6.64-5.193-8.965c-.878-.733-1.595-1.418-1.595-1.522c0-.102.965-.915 2.145-1.803c4.298-3.24 6.77-7.012 7.04-10.747c.519-7.126-5.158-13.767-13.602-15.92c-2.002-.51-2.857-.526-27.624-.526c-14.057 0-25.56-.092-25.56-.204c0-.263 3.125-3.295 4.965-4.816c5.054-4.178 11.618-7.465 18.417-9.22l2.35-.61l3.34 3.387c1.839 1.863 3.64 3.5 4.003 3.637M20.3 46.34c1.539 1.008 2.17 3.54 1.26 5.062c-1.405 2.356-4.966 2.455-6.373.178c-2.046-3.309 1.895-7.349 5.113-5.24m90.672.13c4.026 2.454.906 8.493-3.404 6.586c-2.877-1.273-2.97-5.206-.155-6.64c1.174-.6 2.523-.579 3.56.053M32.163 61.5v15.02h-13.28l-.526-2.285c-1.036-4.5-1.472-9.156-1.211-12.969l.182-2.679l4.565-2.047c2.864-1.283 4.706-2.262 4.943-2.625c1.038-1.584.94-2.715-.518-5.933l-.68-1.502h6.523V61.5M70.39 47.132c2.843.74 4.345 2.245 4.349 4.355c.002 1.55-.765 2.52-2.67 3.38c-1.348.61-1.562.625-10.063.708l-8.686.084v-8.92h7.782c6.078 0 8.112.086 9.288.393m-2.934 21.554c1.41.392 3.076 1.616 3.93 2.888c.898 1.337 1.423 3.076 2.667 8.836c1.05 4.87 1.727 6.46 3.62 8.532c2.345 2.566 1.8 2.466 13.514 2.466c5.61 0 10.198.09 10.198.2c0 .197-3.863 4.764-4.03 4.764c-.048 0-2.066-.422-4.484-.939c-6.829-1.458-7.075-1.287-8.642 6.032l-1.008 4.702l-.91.448c-1.518.75-6.453 2.292-9.01 2.82c-4.228.87-8.828 1.162-12.871.821c-6.893-.585-16.02-3.259-16.377-4.8c-.075-.327-.535-2.443-1.018-4.704c-.485-2.26-1.074-4.404-1.31-4.764c-1.13-1.724-2.318-1.83-7.547-.674c-1.98.44-3.708.796-3.84.796c-.248 0-3.923-4.249-3.923-4.535c0-.09 8.728-.194 19.396-.23l19.395-.066l.07-6.89c.05-4.865-.018-6.997-.23-7.25c-.234-.284-1.485-.358-6.011-.358H53.32v-8.36l6.597.001c3.626.002 7.02.12 7.539.264M37.57 100.02c3.084 1.88 1.605 6.804-2.043 6.8c-3.74 0-5.127-4.88-1.94-6.826c1.055-.643 2.908-.63 3.983.026m56.48.206c1.512 1.108 2.015 3.413 1.079 4.95c-2.46 4.034-8.612.827-6.557-3.419c1.01-2.085 3.695-2.837 5.478-1.53\\\"/>\"\n\t\t},\n\t\t\"rxjs\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconRxjs0\\\" x1=\\\"53.496\\\" x2=\\\"177.93\\\" y1=\\\"247.7\\\" y2=\\\"115.32\\\" gradientTransform=\\\"translate(-7.564 -7.544)scale(.50472)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#df1c84\\\"/><stop offset=\\\".401\\\" stop-color=\\\"#de1c85\\\"/><stop offset=\\\".77\\\" stop-color=\\\"#932c86\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5c2f87\\\"/></linearGradient><linearGradient id=\\\"deviconRxjs1\\\" x1=\\\"83.212\\\" x2=\\\"137.37\\\" y1=\\\"62.336\\\" y2=\\\"62.336\\\" gradientTransform=\\\"translate(-7.564 -7.544)scale(.50472)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#df1c84\\\"/><stop offset=\\\".238\\\" stop-color=\\\"#d91e85\\\"/><stop offset=\\\".658\\\" stop-color=\\\"#c72085\\\"/><stop offset=\\\".999\\\" stop-color=\\\"#b42184\\\"/></linearGradient><radialGradient id=\\\"deviconRxjs2\\\" cx=\\\"190.46\\\" cy=\\\"80.2\\\" r=\\\"121.58\\\" gradientTransform=\\\"matrix(.50472 .0012 -.001 .42204 -7.483 -1.141)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#df1c84\\\"/><stop offset=\\\".139\\\" stop-color=\\\"#de1e85\\\"/><stop offset=\\\".285\\\" stop-color=\\\"#d62085\\\"/><stop offset=\\\".434\\\" stop-color=\\\"#c82286\\\"/><stop offset=\\\".586\\\" stop-color=\\\"#b72786\\\"/><stop offset=\\\".739\\\" stop-color=\\\"#9c2a86\\\"/><stop offset=\\\".891\\\" stop-color=\\\"#7c2e87\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#5c2f87\\\"/></radialGradient></defs><path fill=\\\"#e32186\\\" d=\\\"M7.375 80.934C4.75 72.758 3.996 64.125 5.508 55.243c.656-3.684 1.668-7.219 2.777-10.801c0 0 6.965-22.863 30.535-33.312c0 0 8.125-4.29 20.34-4.59c0 0-1.664-1.617-2.726-2.324C50.68.38 42.102-.882 36.903 4.521c-1.567 1.613-2.88 3.382-4.34 4.996c-1.668 1.816-3.688 3.332-6.008 4.187c-2.02.758-4.04.606-6.106.961c-2.12.352-4.293 1.11-6.007 2.473c-1.868 1.516-2.625 3.531-2.825 5.855c-.203 1.817-.152 3.684-.254 5.5c-.253 5.352-1.968 6.864-5.804 9.844c-1.614 1.211-2.977 2.824-3.989 4.543c-3.027 5.348 1.82 10.898 2.07 16.301c.052 1.11-.05 2.219-.452 3.281c-.407 1.16-1.211 1.918-1.868 2.875C.41 66.6-.195 68.115.06 69.677c.25 1.567 1.058 3.031 1.816 4.395c1.465 2.422 3.281 4.59 5.2 6.66c.1 0 .199.101.3.203\\\"/><path fill=\\\"url(#deviconRxjs0)\\\" d=\\\"M103.68 100.31c11.609-5.047 16.555-13.777 16.555-13.777c10.852-14.789 7.168-30.383 7.168-30.383c-6.914 15.039-13.227 19.18-13.227 19.18c17.012-25.895.102-41.539.102-41.539c6.914 14.738-2.27 32.703-2.27 32.703c-7.723 16.254-18.676 22.059-18.676 22.059c12.215 2.27 21.2-5.957 21.2-5.957c-17.517 18.926-36.493 18.02-36.493 18.02c7.977 8.934 19.938 8.176 19.938 8.176c-15.645 3.683-30.332-1.516-42.395-11.56a66.556 66.556 0 0 1-6.46-6.054s-1.817-1.918-2.173-2.422l-.05-.05c-.25 9.335 9.488 18.015 9.488 18.015c-12.215-5.046-17.816-16-17.816-16s-8.227-14.03-2.27-30.027c5.953-16 23.973-19.434 23.973-19.434c14.891 7.22 27.508 9.489 27.508 9.489c26.598 4.441 25.086-8.578 25.086-8.578c.25-11.207-16.656-23.117-16.656-23.117c-30.133-22.36-57.387-7.926-57.387-7.926C15.255 21.577 8.29 44.44 8.29 44.44c-1.11 3.582-2.12 7.117-2.777 10.8c-2.574 14.993 1.312 29.173 9.742 41.794c13.121 19.582 34.422 26.344 34.422 26.344c31.543 10.699 53.094-5.047 53.094-5.047c19.836-13.63 23.824-29.375 23.824-29.375c-16 12.52-22.914 11.355-22.914 11.355zM79.051 26.673a2.713 2.713 0 0 1 2.723 2.727a2.712 2.712 0 0 1-2.723 2.722a2.713 2.713 0 0 1-2.727-2.722a2.714 2.714 0 0 1 2.727-2.727\\\"/><path fill=\\\"url(#deviconRxjs2)\\\" d=\\\"M112.81 42.121c.25-11.207-16.656-23.117-16.656-23.117c-30.133-22.309-57.387-7.875-57.387-7.875C15.197 21.578 8.232 44.441 8.232 44.441c-1.363 3.887-2.574 9.844-2.574 9.844c-1.465 7.469-.809 14.383-.809 14.383c.606 6.613 2.07 11.055 2.07 11.055c1.516 4.742 2.22 6.207 2.22 6.207c-.048-.153-.301-1.262-.301-1.262S6.716 74.473 8.685 64.68c0 0 1.715-10.195 8.684-18.066c0 0 11.305-16.102 32.352-9.793c0 0 4.543 1.617 6.105 2.422c1.567.758 4.29 1.918 4.29 1.918c14.89 7.219 27.507 9.488 27.507 9.488c26.7 4.492 25.188-8.527 25.188-8.527zm-33.766-9.945a2.713 2.713 0 0 1-2.727-2.723a2.714 2.714 0 0 1 2.727-2.727a2.713 2.713 0 0 1 2.723 2.727a2.712 2.712 0 0 1-2.723 2.723\\\"/><path fill=\\\"url(#deviconRxjs1)\\\" d=\\\"M61.785 21.832L44.574 16.48c-.102 0-.605-.254-1.516 0c0 0-10.145 2.575-8.378 8.125c0 0 1.062 3.485 3.937 6.864l18.926-.907z\\\"/>\"\n\t\t},\n\t\t\"safari\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconSafari0\\\" x1=\\\"295.835\\\" x2=\\\"295.835\\\" y1=\\\"274.049\\\" y2=\\\"272.933\\\" gradientTransform=\\\"matrix(112 0 0 -112 -33069.5 30695)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#19D7FF\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1E64F0\\\"/></linearGradient><circle cx=\\\"64\\\" cy=\\\"64\\\" r=\\\"62.5\\\" fill=\\\"url(#deviconSafari0)\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.5 7.6v9.2h1V7.6Zm-3.902.26l-.996.08l.4 5l.996-.08zm8.804 0l-.4 5l.996.08l.4-5zm-13.709.554l-.986.172l1.6 9.101l.986-.173zm18.614 0l-1.6 9.1l.986.174l1.6-9.102zM49.883 9.47l-.965.261l1.299 4.801l.965-.261Zm28.234 0l-1.299 4.8l.965.262l1.299-4.8zm-32.846 1.363l-.943.336l3.102 8.7l.941-.337zm37.458 0l-3.1 8.7l.941.335l3.102-8.699zm4.62 1.852l-2.2 4.601l.902.43l2.201-4.6zm-46.695.007l-.908.416l2.1 4.6l.908-.414zm-4.32 2.26l-.867.498l4.6 8l.867-.498zm55.332 0l-4.6 8l.868.498l4.6-8zm-59.559 2.56l-.816.577l2.9 4.101l.817-.578zm63.786 0l-2.9 4.1l.816.578l2.9-4.101zm-67.61 2.968l-.765.644l5.9 7l.764-.644zm71.434 0l-5.899 7l.764.644l5.9-7zm-75.168 3.263l-.697.717l3.6 3.5l.696-.717zm-3.33 3.574l-.639.768l7.1 5.9l.64-.77zm85.562 0l-7.101 5.899l.64.77l7.1-5.901zM18.184 31.19l-.569.823l4.201 2.9l.569-.824zm91.632 0l-4.2 2.899l.568.824l4.2-2.9zM15.55 35.367l-.498.867l8 4.6l.498-.867zm96.902 0l-8 4.6l.498.867l8-4.6zm-99.14 4.28l-.422.906l4.5 2.1l.422-.907zm101.378 0l-4.5 2.1l.422.905l4.5-2.1zM11.375 44.13l-.35.937l8.6 3.202l.35-.938zm105.25 0l-8.6 3.201l.35.938l8.6-3.202zM9.828 48.816l-.256.967l4.9 1.301l.257-.967zm108.344 0l-4.9 1.301l.255.967l4.9-1.3zM8.688 53.607l-.174.985l9.1 1.601l.173-.986zm110.624 0l-9.1 1.6l.175.986l9.1-1.601zM8.05 58.402l-.098.996l5 .5l.098-.996zm111.902 0l-5 .5l.098.996l5-.5zM7.801 63.4v1H17v-1zM111 63.4v1h9.2v-1zm-98.049 4.403l-5 .5l.098.994l5-.5zm102.098 0l-.098.994l5 .5l.098-.994zm-97.436 3.705l-9.1 1.6l.175.984l9.1-1.6zm92.774 0l-.174.984l9.1 1.6l.173-.985zm-95.914 5.11l-4.9 1.298l.255.967l4.9-1.299zm99.054 0l-.256.966l4.9 1.299l.257-.967zm-93.902 2.814l-8.6 3.199l.35.937l8.6-3.199zm88.75 0l-.35.937l8.6 3.2l.35-.938zm-90.986 5.615l-4.5 2.1l.422.906l4.5-2.1zm93.222 0l-.422.906l4.5 2.1l.422-.907zm-87.56 1.92l-8 4.6l.498.867l8-4.6zm81.898 0l-.498.867l8 4.6l.498-.868zm-83.133 5.822l-4.2 2.9l.568.823l4.2-2.9zm84.368 0l-.569.822l4.201 2.9l.569-.822zm-78.504.926l-7.1 5.9l.639.77l7.101-5.9zm72.64 0l-.64.77l7.101 5.9l.639-.77zm-66.902 5.863l-5.9 7l.765.645l5.899-7zm61.164 0l-.764.645l5.899 7l.765-.645zm5.967.164l-.697.717l3.6 3.5l.696-.717zm-60.48 4.606l-4.6 7.9l.863.504l4.6-7.9zm47.863 0l-.864.504l4.6 7.9l.863-.504zm-53.74 1.164l-2.901 4.1l.816.577l2.9-4.101zm59.617 0l-.817.576l2.9 4.101l.817-.578zm-46.38 2.32l-3.1 8.7l.942.335l3.1-8.699zm33.141 0l-.941.336l3.1 8.7l.943-.337zm-25.263 2.182l-1.6 9.1l.986.173l1.6-9.1zm17.386 0l-.986.174l1.6 9.1l.986-.175zm-30.742.066l-2.201 4.5l.898.44l2.202-4.5zm44.098 0l-.899.44l2.202 4.5l.898-.44Zm-22.549.82v9.2h1v-9.2zm-13.283 2.272l-1.301 4.9l.967.256l1.3-4.9zm27.566 0l-.967.256l1.301 4.9l.967-.256zm-18.781 1.687l-.4 5l.996.08l.4-5zm9.996 0l-.996.08l.4 5l.996-.08z\\\" color=\\\"#000\\\"/><path fill=\\\"red\\\" d=\\\"m106.7 21l-48 37.7l5.2 5.2z\\\"/><path fill=\\\"#D01414\\\" d=\\\"m63.9 63.9l6 6L106.7 21z\\\"/><path fill=\\\"#fff\\\" d=\\\"m58.7 58.7l-37.7 48l42.9-42.8z\\\"/><path fill=\\\"#ACACAC\\\" d=\\\"m21 106.7l48.9-36.8l-6-6z\\\"/>\"\n\t\t},\n\t\t\"safari-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#333\\\" d=\\\"M23.807 124.812c1.296.864 3.852 1.548 6.192 1.548c5.724 0 8.496-3.24 8.496-6.984c0-3.564-2.088-5.544-6.192-7.128c-3.348-1.296-4.824-2.412-4.824-4.68c0-1.656 1.26-3.636 4.572-3.636c2.196 0 3.816.72 4.608 1.152l.864-2.556c-1.08-.612-2.88-1.188-5.364-1.188c-4.716 0-7.848 2.808-7.848 6.588c0 3.42 2.448 5.472 6.408 6.876c3.276 1.26 4.572 2.556 4.572 4.824c0 2.448-1.872 4.14-5.076 4.14c-2.16 0-4.212-.72-5.616-1.584zm31.5 1.188c-.216-1.188-.288-2.664-.288-4.176v-6.516c0-3.492-1.296-7.128-6.624-7.128c-2.196 0-4.284.612-5.724 1.548l.72 2.088c1.224-.792 2.916-1.296 4.536-1.296c3.564 0 3.96 2.592 3.96 4.032v.36c-6.732-.036-10.476 2.268-10.476 6.48c0 2.52 1.8 5.004 5.328 5.004c2.484 0 4.356-1.224 5.328-2.592h.108l.252 2.196Zm-3.348-5.868c0 .324-.072.684-.18 1.008c-.504 1.476-1.944 2.916-4.212 2.916c-1.62 0-2.988-.972-2.988-3.024c0-3.384 3.924-3.996 7.38-3.924zM63.587 126v-15.012h4.212v-2.412h-4.212v-.936c0-2.664.684-5.04 3.384-5.04c.9 0 1.548.18 2.016.396l.432-2.448c-.612-.252-1.584-.504-2.7-.504c-1.476 0-3.06.468-4.248 1.62c-1.476 1.404-2.016 3.636-2.016 6.084v.828h-2.448v2.412h2.448V126Zm19.584 0c-.216-1.188-.288-2.664-.288-4.176v-6.516c0-3.492-1.296-7.128-6.624-7.128c-2.196 0-4.284.612-5.724 1.548l.72 2.088c1.224-.792 2.916-1.296 4.536-1.296c3.564 0 3.96 2.592 3.96 4.032v.36c-6.732-.036-10.476 2.268-10.476 6.48c0 2.52 1.8 5.004 5.328 5.004c2.484 0 4.356-1.224 5.328-2.592h.108l.252 2.196zm-3.348-5.868c0 .324-.072.684-.18 1.008c-.504 1.476-1.944 2.916-4.212 2.916c-1.62 0-2.988-.972-2.988-3.024c0-3.384 3.924-3.996 7.38-3.924zM87.995 126h3.132v-9.288c0-.54.072-1.044.144-1.476c.432-2.376 2.016-4.068 4.248-4.068c.432 0 .756.036 1.08.108v-2.988a3.427 3.427 0 0 0-.9-.108c-2.124 0-4.032 1.476-4.824 3.816h-.144l-.108-3.42h-2.772c.108 1.62.144 3.384.144 5.436zm15.084 0v-17.424h-3.168V126Zm-1.584-24.3c-1.152 0-1.98.864-1.98 1.98c0 1.08.792 1.944 1.908 1.944c1.26 0 2.052-.864 2.016-1.944c0-1.116-.756-1.98-1.944-1.98\\\"/><linearGradient id=\\\"deviconSafariWordmark0\\\" x1=\\\"295.835\\\" x2=\\\"295.835\\\" y1=\\\"124.728\\\" y2=\\\"123.889\\\" gradientTransform=\\\"matrix(112 0 0 -112 -33069.5 13971)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#19D7FF\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1E64F0\\\"/></linearGradient><circle cx=\\\"64\\\" cy=\\\"48.5\\\" r=\\\"47\\\" fill=\\\"url(#deviconSafariWordmark0)\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.5 6.1V13h1V6.1Zm-2.701.16l-.998.08l.3 3.701l.997-.082zm6.402 0l-.299 3.699l.996.082l.301-3.701zm-10.008.453l-.986.174l1.201 6.8l.985-.173zm13.614 0l-1.2 6.8l.985.174l1.201-6.8zm-17.221.766l-.97.242l.9 3.6l.968-.243zm20.828 0l-.898 3.6l.968.241l.9-3.6zM49.97 8.527l-.938.346l2.4 6.5l.938-.346zm28.062 0l-2.4 6.5l.937.346l2.4-6.5zm-31.478 1.36l-.905.426l1.6 3.4l.904-.426zm34.894 0l-1.6 3.4l.905.426l1.6-3.4zm-38.111 1.666l-.871.494l3.4 6l.87-.494zm41.328 0l-3.398 6l.869.494l3.4-6zM40.22 13.426l-.836.549l2.1 3.199l.835-.549zm47.562 0l-2.1 3.199l.837.549l2.1-3.2zm-50.6 2.25l-.763.648l4.5 5.299l.764-.646zm53.637 0l-4.5 5.3l.764.647l4.5-5.299zm-56.365 2.47l-.707.708l2.701 2.699l.707-.707zm-2.53 2.672l-.646.764l5.3 4.5l.646-.764zm64.153 0l-5.299 4.5l.647.764l5.299-4.5zM29.69 23.691l-.578.817l3.1 2.199l.578-.814zm68.622 0l-3.1 2.202l.578.814l3.1-2.2zm-70.665 3.174l-.492.87l6 3.4l.492-.87zm72.708 0l-6 3.4l.492.87l6-3.4zm-74.442 3.182l-.426.906l3.4 1.6l.427-.905zm76.176 0l-3.4 1.601l.425.905l3.4-1.6zm-77.615 3.385l-.346.937l6.5 2.4l.346-.939zm79.054 0l-6.5 2.398l.346.94l6.5-2.4zm-80.193 3.486l-.268.963l3.6 1l.268-.963zm81.332 0l-3.6 1l.268.963l3.6-1zm-82.18 3.59l-.174.984l6.801 1.201l.174-.986zm83.028 0l-6.801 1.199l.174.986l6.8-1.2zM21.939 44.2l-.078.998l3.8.299l.08-.996zm84.122 0l-3.801.301l.08.996l3.799-.299zm-84.362 3.7v1h7v-1zm77.602 0v1h7v-1zm-73.653 3.302l-3.8.4l.105.995l3.799-.4zm76.704 0l-.104.994l3.799.4l.105-.993zm-73.239 2.805l-6.8 1.199l.173.986l6.801-1.2zm69.774 0l-.174.984l6.8 1.201l.174-.986zm-72.221 3.81l-3.6 1l.268.963l3.6-1zm74.668 0l-.268.963l3.6 1l.268-.963zM30.633 60.03l-6.5 2.3l.334.942l6.5-2.3zm66.734 0l-.334.942l6.5 2.3l.334-.943zm-68.48 4.12l-3.4 1.599l.425.904l3.4-1.6zm70.226 0l-.425.904l3.4 1.6l.426-.905zm-65.959 1.515l-6 3.4l.492.872l6-3.4zm61.692 0l-.492.871l6 3.4l.492-.87zm-62.627 4.422l-3.1 2.1l.56.828l3.102-2.1zm63.562 0l-.562.828l3.101 2.1l.56-.828zm-59.2.629l-5.3 4.4l.639.77l5.299-4.4zm54.839 0l-.639.77l5.3 4.4l.638-.77zM40.916 75.08l-4.5 5.4l.768.64l4.5-5.4zm46.168 0l-.768.64l4.5 5.4l.768-.64zm4.469.166l-.707.707l2.7 2.701l.708-.707zm-45.688 3.508l-3.4 6l.87.492l3.4-6zm36.27 0l-.87.492l3.4 6l.87-.492zm-40.649.865l-2.1 3.1l.829.562l2.1-3.101zm45.028 0l-.828.56l2.1 3.102l.827-.562zm-35.082 1.809l-2.4 6.5l.937.345l2.4-6.5zm25.136 0l-.937.345l2.4 6.5l.938-.345zm-29.32 1.66l-1.6 3.398l.905.426l1.6-3.398zm33.504 0l-.904.426l1.6 3.398l.904-.426zm-23.344.025l-1.201 6.801l.986.172l1.2-6.799zm13.184 0l-.985.174l1.2 6.799l.986-.172zM63.5 83.7v6.9h1v-6.9zm-9.986 1.682l-.9 3.701l.972.236l.9-3.699zm20.972 0l-.972.238l.9 3.7l.973-.237zm-14.384 1.28l-.301 3.8l.998.078l.299-3.799zm7.796 0l-.996.08l.3 3.798l.997-.078z\\\"/><path fill=\\\"red\\\" d=\\\"M96.1 16.2L60 44.5l3.9 3.9z\\\"/><path fill=\\\"#D01414\\\" d=\\\"m63.9 48.4l4.5 4.5l27.7-36.7z\\\"/><path fill=\\\"#fff\\\" d=\\\"M60 44.5L31.7 80.6l32.2-32.2z\\\"/><path fill=\\\"#ACACAC\\\" d=\\\"m31.7 80.6l36.7-27.7l-4.5-4.5z\\\"/>\"\n\t\t},\n\t\t\"salesforce\": {\n\t\t\t\"body\": \"<path fill=\\\"#00A1E0\\\" d=\\\"M53.01 31.44c3.98-4.14 9.51-6.71 15.64-6.71c8.14 0 15.24 4.54 19.02 11.28a26.26 26.26 0 0 1 10.75-2.29c14.68 0 26.58 12.01 26.58 26.81c0 14.81-11.9 26.82-26.58 26.82c-1.79 0-3.54-.18-5.24-.52c-3.33 5.94-9.68 9.95-16.96 9.95c-3.05 0-5.93-.7-8.5-1.96c-3.38 7.94-11.24 13.51-20.41 13.51c-9.55 0-17.68-6.04-20.8-14.51c-1.36.29-2.78.44-4.23.44c-11.37 0-20.58-9.31-20.58-20.79c0-7.7 4.14-14.42 10.29-18.01a23.727 23.727 0 0 1-1.97-9.51c0-13.21 10.72-23.92 23.95-23.92c7.76-.01 14.67 3.69 19.04 9.41\\\"/><path fill=\\\"#FFF\\\" d=\\\"M19.56 66.78c-.08.2.03.24.05.28c.23.17.47.29.7.43c1.26.67 2.44.86 3.69.86c2.53 0 4.1-1.35 4.1-3.51v-.04c0-2-1.77-2.73-3.44-3.25l-.22-.07c-1.25-.41-2.34-.76-2.34-1.58v-.04c0-.71.63-1.23 1.61-1.23c1.09 0 2.38.36 3.21.82c0 0 .24.16.33-.08c.05-.13.47-1.26.51-1.38c.05-.13-.04-.23-.12-.28c-.95-.58-2.26-.97-3.62-.97h-.25c-2.31 0-3.93 1.4-3.93 3.4v.04c0 2.11 1.78 2.8 3.45 3.28l.27.08c1.22.37 2.27.7 2.27 1.55v.04c0 .78-.68 1.37-1.78 1.37c-.43 0-1.79-.01-3.26-.94c-.18-.1-.28-.18-.42-.26c-.07-.05-.25-.12-.33.11zm37.03 0c-.08.2.03.24.05.28c.23.17.47.29.7.43c1.26.67 2.44.86 3.69.86c2.53 0 4.1-1.35 4.1-3.51v-.04c0-2-1.77-2.73-3.44-3.25l-.22-.07c-1.25-.41-2.34-.76-2.34-1.58v-.04c0-.71.63-1.23 1.61-1.23c1.09 0 2.38.36 3.21.82c0 0 .24.16.33-.08c.05-.13.47-1.26.51-1.38c.05-.13-.04-.23-.12-.28c-.95-.58-2.26-.97-3.62-.97h-.25c-2.31 0-3.93 1.4-3.93 3.4v.04c0 2.11 1.78 2.8 3.45 3.28l.27.08c1.22.37 2.27.7 2.27 1.55v.04c0 .78-.68 1.37-1.78 1.37c-.43 0-1.79-.01-3.26-.94c-.18-.1-.28-.18-.42-.26c-.05-.03-.26-.11-.33.11zm25.27-4.24c0 1.22-.23 2.19-.68 2.87c-.44.67-1.12 1-2.05 1c-.94 0-1.61-.33-2.05-1c-.44-.68-.67-1.65-.67-2.87c0-1.22.22-2.18.67-2.86c.44-.67 1.11-.99 2.05-.99c.94 0 1.61.32 2.06.99c.44.67.67 1.63.67 2.86m2.11-2.27c-.21-.7-.53-1.32-.96-1.83a4.53 4.53 0 0 0-1.62-1.23c-.64-.3-1.41-.45-2.26-.45c-.86 0-1.62.15-2.26.45c-.65.3-1.19.72-1.62 1.23c-.43.52-.75 1.13-.96 1.83c-.21.7-.31 1.46-.31 2.27s.1 1.57.31 2.27s.53 1.32.96 1.83c.43.52.98.93 1.62 1.22c.65.29 1.41.44 2.26.44c.86 0 1.62-.15 2.26-.44c.64-.29 1.19-.71 1.62-1.22c.43-.51.75-1.13.96-1.83c.21-.7.31-1.46.31-2.27s-.1-1.58-.31-2.27m17.34 5.81c-.07-.21-.27-.13-.27-.13c-.31.12-.63.23-.98.28c-.35.05-.74.08-1.16.08c-1.02 0-1.83-.3-2.42-.9c-.58-.6-.91-1.57-.91-2.89c0-1.2.29-2.1.81-2.78c.51-.68 1.3-1.03 2.34-1.03c.87 0 1.54.1 2.23.32c0 0 .17.07.25-.15c.18-.51.32-.88.52-1.44c.06-.16-.08-.23-.13-.25c-.27-.11-.92-.28-1.41-.35c-.46-.07-.99-.11-1.58-.11c-.89 0-1.68.15-2.35.45c-.67.3-1.25.71-1.7 1.23a5.3 5.3 0 0 0-1.03 1.83c-.23.7-.34 1.46-.34 2.27c0 1.75.47 3.17 1.41 4.2c.93 1.04 2.34 1.57 4.17 1.57c1.08 0 2.19-.22 2.99-.53c0 0 .15-.07.09-.25zm3.7-4.72c.1-.68.29-1.25.58-1.69c.44-.67 1.1-1.04 2.04-1.04s1.56.37 2 1.04c.3.44.42 1.03.47 1.69zm7.1-1.49c-.18-.68-.62-1.36-.92-1.67c-.46-.5-.91-.84-1.36-1.03a5.2 5.2 0 0 0-2.05-.41c-.89 0-1.7.15-2.36.46c-.66.31-1.21.73-1.65 1.26c-.43.52-.76 1.15-.97 1.85c-.21.7-.31 1.47-.31 2.28c0 .82.11 1.59.32 2.28c.22.7.57 1.31 1.04 1.82c.47.51 1.07.91 1.8 1.19c.72.28 1.59.42 2.59.42c2.06-.01 3.15-.47 3.6-.71c.08-.04.15-.12.06-.34l-.47-1.31c-.07-.19-.27-.12-.27-.12c-.51.19-1.24.53-2.93.53c-1.11 0-1.93-.33-2.44-.84c-.53-.52-.79-1.29-.83-2.38l7.15.01s.19 0 .21-.19c.01-.1.25-1.49-.21-3.1m-64.34 1.49c.1-.68.29-1.25.58-1.69c.44-.67 1.1-1.04 2.04-1.04s1.56.37 2 1.04c.29.44.42 1.03.47 1.69zm7.11-1.49c-.18-.68-.62-1.36-.91-1.67c-.46-.5-.91-.84-1.36-1.03a5.2 5.2 0 0 0-2.05-.41c-.89 0-1.7.15-2.36.46c-.66.31-1.21.73-1.65 1.26c-.43.52-.76 1.15-.97 1.85c-.21.7-.31 1.47-.31 2.28c0 .82.11 1.59.32 2.28c.22.7.57 1.31 1.04 1.82c.47.51 1.07.91 1.8 1.19c.72.28 1.59.42 2.59.42c2.06-.01 3.15-.47 3.6-.71c.08-.04.15-.12.06-.34l-.47-1.31c-.07-.19-.27-.12-.27-.12c-.51.19-1.24.53-2.93.53c-1.11 0-1.93-.33-2.44-.84c-.53-.52-.79-1.29-.83-2.38l7.15.01s.19 0 .21-.19c0-.1.24-1.49-.22-3.1m-22.56 6.17c-.28-.22-.32-.28-.41-.42c-.14-.22-.21-.53-.21-.93c0-.63.21-1.08.64-1.38c-.01 0 .61-.54 2.07-.52c1.02.01 1.94.17 1.94.17v3.25s-.91.19-1.93.26c-1.46.08-2.1-.43-2.1-.43m2.85-5.02c-.29-.02-.67-.03-1.12-.03c-.61 0-1.2.08-1.76.23c-.56.15-1.06.38-1.49.69c-.43.31-.78.71-1.04 1.18c-.25.47-.38 1.03-.38 1.65c0 .63.11 1.18.33 1.63c.22.45.53.83.93 1.12c.4.29.89.5 1.46.63c.56.13 1.2.19 1.89.19c.73 0 1.46-.06 2.17-.18c.7-.12 1.56-.29 1.8-.35s.5-.13.5-.13c.18-.04.16-.23.16-.23v-6.54c0-1.43-.38-2.5-1.14-3.15c-.75-.66-1.85-.99-3.28-.99c-.54 0-1.4.07-1.91.18c0 0-1.56.3-2.2.8c0 0-.14.09-.06.28l.51 1.36c.06.18.23.12.23.12s.05-.02.12-.06c1.38-.75 3.11-.73 3.11-.73c.77 0 1.37.15 1.77.46c.39.3.59.75.59 1.7v.3c-.63-.08-1.19-.13-1.19-.13m57.64-3.68a.201.201 0 0 0-.11-.26c-.12-.05-.73-.18-1.2-.21c-.9-.05-1.4.1-1.84.3c-.44.2-.93.52-1.21.89v-.87c0-.12-.09-.22-.21-.22h-1.83c-.12 0-.21.1-.21.22v10.66c0 .12.1.22.22.22h1.88c.12 0 .22-.1.22-.22v-5.33c0-.71.08-1.43.24-1.88c.15-.44.37-.8.63-1.05s.56-.43.88-.53c.33-.1.7-.14.96-.14c.37 0 .79.1.79.1c.14.02.21-.07.26-.19c.11-.32.46-1.3.53-1.49\\\"/><path fill=\\\"#FFF\\\" d=\\\"M75.18 52.4c-.23-.07-.44-.12-.71-.17c-.27-.05-.6-.07-.97-.07c-1.29 0-2.31.37-3.03 1.09c-.71.72-1.19 1.81-1.44 3.24l-.09.48h-1.62s-.2-.01-.24.21l-.27 1.49c-.02.14.04.23.23.23h1.58l-1.6 8.94c-.12.72-.27 1.31-.43 1.76c-.16.44-.31.77-.5 1.02c-.18.23-.35.4-.65.5c-.25.08-.53.12-.84.12c-.17 0-.4-.03-.57-.06c-.17-.03-.26-.07-.39-.12c0 0-.18-.07-.26.11c-.06.15-.48 1.31-.53 1.45c-.05.14.02.25.11.29c.21.07.37.12.65.19c.4.09.73.1 1.05.1c.66 0 1.26-.09 1.75-.27c.5-.18.93-.5 1.32-.92c.42-.46.68-.94.93-1.6c.25-.65.46-1.46.63-2.4l1.61-9.11h2.35s.2.01.24-.21l.27-1.49c.02-.14-.04-.23-.23-.23h-2.29c.01-.05.12-.86.38-1.61c.11-.32.32-.58.5-.76c.18-.18.38-.3.6-.37c.23-.07.48-.11.77-.11c.21 0 .43.02.59.06c.22.05.31.07.37.09c.23.07.27 0 .31-.11l.55-1.5c.06-.17-.08-.24-.13-.26M43.26 67.85c0 .12-.09.22-.21.22h-1.9c-.12 0-.2-.1-.2-.22V52.6c0-.12.08-.22.2-.22h1.9c.12 0 .21.1.21.22z\\\"/>\"\n\t\t},\n\t\t\"sanity\": {\n\t\t\t\"body\": \"<path fill=\\\"#F03E2F\\\" d=\\\"M0 0h128v128H0z\\\"/><path fill=\\\"#FFF\\\" d=\\\"M39.423 33.163c0 10.998 6.913 17.543 20.754 20.993l14.666 3.341c13.099 2.956 21.075 10.298 21.075 22.258a22.465 22.465 0 0 1-4.884 14.408c0-11.933-6.283-18.38-21.439-22.258l-14.4-3.217c-11.532-2.585-20.432-8.62-20.432-21.612a22.353 22.353 0 0 1 4.66-13.913\\\"/><path fill=\\\"#F9B1AB\\\" d=\\\"M82.022 76.827c6.256 3.932 8.998 9.431 8.998 17.323c-5.177 6.516-14.274 10.173-24.965 10.173c-17.997 0-30.592-8.702-33.391-23.825h17.283c2.225 6.943 8.117 10.16 15.981 10.16c9.6 0 15.982-5.032 16.108-13.859M48.407 49.468a18.225 18.225 0 0 1-6.781-6.935a17.82 17.82 0 0 1-2.203-9.37c4.996-6.462 13.686-10.407 24.28-10.407c18.333 0 28.94 9.513 31.558 22.904H78.635c-1.833-5.28-6.423-9.39-14.792-9.39c-8.942 0-15.044 5.114-15.394 13.198\\\"/>\"\n\t\t},\n\t\t\"sass\": {\n\t\t\t\"body\": \"<path fill=\\\"#CB6699\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.219 56.156c0 .703.207 1.167.323 1.618c.756 2.933 2.381 5.45 4.309 7.746c2.746 3.272 6.109 5.906 9.554 8.383c2.988 2.148 6.037 4.248 9.037 6.38c.515.366 1.002.787 1.561 1.236c-.481.26-.881.489-1.297.7c-3.959 2.008-7.768 4.259-11.279 6.986c-2.116 1.644-4.162 3.391-5.607 5.674c-2.325 3.672-3.148 7.584-1.415 11.761c.506 1.22 1.278 2.274 2.367 3.053c.353.252.749.502 1.162.6c1.058.249 2.136.412 3.207.609l3.033-.002c3.354-.299 6.407-1.448 9.166-3.352c4.312-2.976 7.217-6.966 8.466-12.087c.908-3.722.945-7.448-.125-11.153a11.696 11.696 0 0 0-.354-1.014c-.13-.333-.283-.657-.463-1.072l6.876-3.954l.103.088c-.125.409-.258.817-.371 1.23c-.817 2.984-1.36 6.02-1.165 9.117c.208 3.3 1.129 6.389 3.061 9.146c1.562 2.23 5.284 2.313 6.944.075c.589-.795 1.16-1.626 1.589-2.513c1.121-2.315 2.159-4.671 3.23-7.011l.187-.428c-.077 1.108-.167 2.081-.208 3.055c-.064 1.521.025 3.033.545 4.48c.445 1.238 1.202 2.163 2.62 2.326c.97.111 1.743-.333 2.456-.896a10.384 10.384 0 0 0 2.691-3.199c1.901-3.491 3.853-6.961 5.576-10.54c1.864-3.871 3.494-7.855 5.225-11.792l.286-.698c.409 1.607.694 3.181 1.219 4.671c.61 1.729 1.365 3.417 2.187 5.058c.389.775.344 1.278-.195 1.928c-2.256 2.72-4.473 5.473-6.692 8.223c-.491.607-.98 1.225-1.389 1.888a3.701 3.701 0 0 0-.48 1.364a1.737 1.737 0 0 0 1.383 1.971a9.661 9.661 0 0 0 2.708.193c3.097-.228 5.909-1.315 8.395-3.157c3.221-2.386 4.255-5.642 3.475-9.501c-.211-1.047-.584-2.065-.947-3.074c-.163-.455-.174-.774.123-1.198c2.575-3.677 4.775-7.578 6.821-11.569c.081-.157.164-.314.306-.482c.663 3.45 1.661 6.775 3.449 9.792c-.912.879-1.815 1.676-2.632 2.554c-1.799 1.934-3.359 4.034-4.173 6.595c-.35 1.104-.619 2.226-.463 3.405c.242 1.831 1.742 3.021 3.543 2.604c3.854-.892 7.181-2.708 9.612-5.925c1.636-2.166 1.785-4.582 1.1-7.113c-.188-.688-.411-1.365-.651-2.154c.951-.295 1.878-.649 2.837-.868c4.979-1.136 9.904-.938 14.702.86c2.801 1.05 5.064 2.807 6.406 5.571c1.639 3.379.733 6.585-2.452 8.721c-.297.199-.637.356-.883.605a.869.869 0 0 0-.205.67c.021.123.346.277.533.275c1.047-.008 1.896-.557 2.711-1.121c2.042-1.413 3.532-3.314 3.853-5.817l.063-.188l-.077-1.63c-.031-.094.023-.187.016-.258c-.434-3.645-2.381-6.472-5.213-8.688c-3.28-2.565-7.153-3.621-11.249-3.788a25.401 25.401 0 0 0-9.765 1.503c-.897.325-1.786.71-2.688 1.073c-.121-.219-.251-.429-.358-.646c-.926-1.896-2.048-3.708-2.296-5.882c-.176-1.544-.392-3.086-.025-4.613c.353-1.469.813-2.913 1.246-4.362c.223-.746.066-1.164-.646-1.5a2.854 2.854 0 0 0-.786-.258c-1.75-.254-3.476-.109-5.171.384c-.6.175-1.036.511-1.169 1.175c-.076.381-.231.746-.339 1.122c-.443 1.563-.757 3.156-1.473 4.645c-1.794 3.735-3.842 7.329-5.938 10.897c-.227.385-.466.763-.752 1.23c-.736-1.54-1.521-2.922-1.759-4.542c-.269-1.832-.481-3.661-.025-5.479c.339-1.356.782-2.687 1.19-4.025c.193-.636.104-.97-.472-1.305c-.291-.169-.62-.319-.948-.368a11.643 11.643 0 0 0-5.354.438c-.543.176-.828.527-.994 1.087c-.488 1.652-.904 3.344-1.589 4.915c-2.774 6.36-5.628 12.687-8.479 19.013c-.595 1.321-1.292 2.596-1.963 3.882c-.17.326-.418.613-.63.919c-.17-.201-.236-.339-.235-.477c.005-.813-.092-1.65.063-2.436a172.189 172.189 0 0 1 1.578-7.099c.47-1.946 1.017-3.874 1.538-5.807c.175-.647.178-1.252-.287-1.796c-.781-.911-2.413-1.111-3.381-.409l-.428.242l.083-.69c.204-1.479.245-2.953-.161-4.41c-.506-1.816-1.802-2.861-3.686-2.803c-.878.027-1.8.177-2.613.497c-3.419 1.34-6.048 3.713-8.286 6.568a2.592 2.592 0 0 1-.757.654c-2.893 1.604-5.795 3.188-8.696 4.778l-3.229 1.769c-.866-.826-1.653-1.683-2.546-2.41c-2.727-2.224-5.498-4.393-8.244-6.592c-2.434-1.949-4.792-3.979-6.596-6.56c-1.342-1.92-2.207-4.021-2.29-6.395c-.105-3.025.753-5.789 2.293-8.362c1.97-3.292 4.657-5.934 7.611-8.327c3.125-2.53 6.505-4.678 10.008-6.639c4.901-2.743 9.942-5.171 15.347-6.774c5.542-1.644 11.165-2.585 16.965-1.929c2.28.258 4.494.78 6.527 1.895c1.557.853 2.834 1.97 3.428 3.716c.586 1.718.568 3.459.162 5.204c-.825 3.534-2.76 6.447-5.195 9.05c-3.994 4.267-8.866 7.172-14.351 9.091a39.478 39.478 0 0 1-9.765 2.083c-2.729.229-5.401-.013-7.985-.962c-1.711-.629-3.201-1.591-4.399-2.987c-.214-.25-.488-.521-.887-.287c-.391.23-.46.602-.329.979c.219.626.421 1.278.762 1.838c.857 1.405 2.107 2.424 3.483 3.298c2.643 1.681 5.597 2.246 8.66 2.377c4.648.201 9.183-.493 13.654-1.74c6.383-1.78 11.933-4.924 16.384-9.884c3.706-4.13 6.353-8.791 6.92-14.419c.277-2.747-.018-5.438-1.304-7.944c-1.395-2.715-3.613-4.734-6.265-6.125C68.756 18.179 64.588 17 60.286 17h-4.31c-5.21 0-10.247 1.493-15.143 3.274c-3.706 1.349-7.34 2.941-10.868 4.703c-7.683 3.839-14.838 8.468-20.715 14.833c-2.928 3.171-5.407 6.67-6.833 10.79a40.494 40.494 0 0 0-1.111 3.746m27.839 36.013c-.333 4.459-2.354 8.074-5.657 11.002c-1.858 1.646-3.989 2.818-6.471 3.23c-.9.149-1.821.185-2.694-.188c-1.245-.532-1.524-1.637-1.548-2.814c-.037-1.876.62-3.572 1.521-5.186c1.176-2.104 2.9-3.708 4.741-5.206c2.9-2.361 6.046-4.359 9.268-6.245l.243-.1c.498 1.84.735 3.657.597 5.507M54.303 70.98c-.235 1.424-.529 2.849-.945 4.229c-1.438 4.777-3.285 9.406-5.282 13.973c-.369.845-.906 1.616-1.373 2.417a1.689 1.689 0 0 1-.283.334c-.578.571-1.126.541-1.418-.206c-.34-.868-.549-1.797-.729-2.716c-.121-.617-.092-1.265-.13-1.897c.039-4.494 1.41-8.578 3.736-12.38c.959-1.568 2.003-3.062 3.598-4.054a6.27 6.27 0 0 1 1.595-.706c.85-.239 1.372.154 1.231 1.006m17.164 21.868l6.169-7.203c.257 2.675-4.29 8.015-6.169 7.203m19.703-4.847c-.436.25-.911.43-1.358.661c-.409.212-.544-.002-.556-.354a2.385 2.385 0 0 1 .093-.721c.833-2.938 2.366-5.446 4.647-7.486l.16-.082c1.085 3.035-.169 6.368-2.986 7.982\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"scala\": {\n\t\t\t\"body\": \"<path fill=\\\"#390d09\\\" d=\\\"M25 110.437V94.874h5.616c3.113 0 8.052-.203 11.03-.474l5.278-.406l-7.038-1.894c-3.924-1.015-8.864-2.504-10.961-3.316L25 87.364V55.627h6.293c3.383 0 8.323-.203 10.894-.473l4.737-.406l-8.323-2.233C34 51.366 29.128 49.809 27.639 49.2L25 47.982v-30.72l2.098-.473c1.15-.203 3.992-.406 6.293-.406c11.367 0 38.366-3.722 51.628-7.105c9.27-2.436 15.698-4.872 17.931-6.902c1.15-1.015 1.218-.406 1.218 14.548v15.63l-1.624 1.219l-1.624 1.285l3.248 2.842v33.9l-1.624 1.218l-1.624 1.286l3.248 2.842v33.9l-1.76 1.353c-1.894 1.489-9.202 3.993-17.524 6.09C71.892 121.737 40.157 126 29.33 126H25z\\\"/><path fill=\\\"#de3423\\\" d=\\\"M25 110.572V95.077l11.842-.474c12.315-.473 21.45-1.488 34.847-3.789c15.225-2.639 30.246-7.375 31.803-10.082c.406-.677.676 4.534.676 14.616v15.698l-1.76 1.353c-1.894 1.489-9.202 3.993-17.524 6.09C71.892 121.737 40.157 126 29.33 126H25zm0-39.245V55.83l11.842-.406c13.127-.541 23.344-1.691 36.877-4.195c15.157-2.842 28.96-7.443 29.976-9.947c.203-.473.406 6.09.406 14.616c.067 13.533-.068 15.698-1.083 16.78c-2.368 2.64-20.638 7.376-39.449 10.286c-11.435 1.76-30.381 3.79-35.66 3.79H25zm0-38.975V17.195l2.098-.406c1.15-.203 3.992-.406 6.293-.406c11.367 0 38.366-3.722 51.628-7.105c9.27-2.436 15.698-4.872 17.931-6.902c1.15-1.015 1.218-.406 1.218 14.48c0 14.548-.067 15.63-1.285 16.714c-1.827 1.691-14.345 5.548-24.09 7.51c-15.765 3.113-41.951 6.429-50.883 6.429H25z\\\"/>\"\n\t\t},\n\t\t\"scala-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#390d09\\\" d=\\\"M3 82.037v-5.963h2.152c1.193 0 3.085-.078 4.226-.182l2.023-.155l-2.697-.726c-1.504-.39-3.396-.96-4.2-1.27L3 73.195v-12.16h2.411c1.297 0 3.19-.078 4.175-.182l1.815-.156l-3.19-.855c-1.763-.441-3.63-1.037-4.2-1.27L3 58.104v-11.77l.804-.182c.44-.078 1.53-.156 2.411-.156c4.356 0 14.701-1.426 19.783-2.722c3.552-.934 6.015-1.867 6.871-2.645c.44-.389.467-.156.467 5.575v5.989l-.623.467l-.622.492l1.245 1.09v12.99l-.623.466l-.622.492l1.245 1.09v12.99l-.674.518c-.726.57-3.527 1.53-6.716 2.333C20.968 86.367 8.808 88 4.66 88H3zm63.264-5.263c-3.163-.726-6.17-3.215-7.285-6.093c-.441-1.115-.597-2.023-.597-3.838c-.026-2.204.026-2.463.96-4.304c1.114-2.256 2.54-3.682 4.822-4.796c1.322-.675 1.711-.726 4.434-.726c2.826 0 3.085.051 4.667.83c.933.466 1.996 1.166 2.385 1.555l.674.726l-1.348 1.53l-1.374 1.53l-1.063-.804c-3.086-2.23-7.26-1.4-8.842 1.737c-2.152 4.2.96 8.97 5.523 8.504c1.452-.155 2.774-.674 3.656-1.504c.544-.466.57-.466 2.048 1.037l1.478 1.504l-1.193 1.063c-2.152 1.893-5.86 2.749-8.945 2.049m15.298-.052c-1.997-.57-3.241-1.504-4.019-3.06c-1.14-2.333-.752-4.848 1.037-6.56c1.348-1.296 2.697-1.789 6.404-2.307c1.504-.208 3.06-.519 3.449-.7c1.296-.596 1.14-2.36-.285-2.956c-1.841-.778-4.512-.155-6.12 1.374l-.7.674l-.959-.752c-2.204-1.737-2.022-1.503-1.53-2.255c.519-.804 1.686-1.712 3.241-2.515c.908-.493 1.712-.648 3.63-.726c2.826-.13 4.045.13 5.782 1.244c.934.597 1.4 1.115 1.867 2.152c.622 1.297.648 1.582.648 6.56c0 5.47.026 5.652 1.167 5.86c.44.078.519.311.596 1.633c.078 2.152-.103 2.334-2.152 2.334c-1.633 0-1.763-.052-2.489-.856l-.778-.881l-.959.622c-1.348.907-2.385 1.193-4.537 1.374c-1.27.078-2.334 0-3.293-.26zm5.237-4.07c.545-.156 1.349-.701 1.763-1.168c.675-.752.778-1.089.778-2.411v-1.53l-.907.39c-.493.18-1.141.362-1.452.362c-1.582 0-3.941.622-4.667 1.219c-1.219 1.037-.804 2.67.804 3.267c.7.259 2.644.181 3.681-.13zm13.612 4.096c-.725-.208-1.607-.7-2.126-1.193c-1.633-1.582-1.685-1.945-1.685-14.312V50.146h4.641l.156 21.572l.622.492c.389.311 1.011.493 1.737.493h1.141V76.8l-.804.155c-1.166.234-2.255.156-3.682-.207m10.527.103c-3.163-.648-5.108-2.826-5.108-5.73c.026-2.048.882-3.707 2.412-4.667c1.452-.933 2.307-1.192 5.626-1.66c3.215-.466 3.915-.7 4.304-1.529c.234-.518.208-.778-.155-1.322c-1.115-1.685-4.356-1.556-6.794.285l-1.192.908l-1.426-1.22l-1.452-1.244l1.452-1.348c1.944-1.815 3.63-2.437 6.637-2.437c2.645 0 4.175.44 5.575 1.607c1.763 1.452 1.97 2.23 1.97 7.908c0 5.471.156 6.301 1.167 6.301c.622 0 .648.052.648 1.815c0 2.048-.233 2.333-2.074 2.333c-1.219 0-2.385-.518-2.93-1.296c-.363-.544-.389-.544-1.633.233c-1.815 1.115-4.59 1.53-7.027 1.063m5.575-4.511c1.167-.596 1.633-1.452 1.789-3.293c.155-1.53.13-1.581-.39-1.296c-.284.155-1.633.44-2.98.648s-2.827.57-3.268.804c-1.685.855-1.66 2.618.052 3.396c1.037.467 3.63.337 4.797-.259m-71.691 4.252c-1.167-.26-3.423-1.426-4.278-2.178c-.908-.804-2.541-2.956-2.541-3.345c0-.181.544-.648 1.244-1.063a56.23 56.23 0 0 1 1.763-1.114c.467-.312.597-.234 1.323.803c1.244 1.79 2.826 2.567 5.367 2.697c2.515.104 3.656-.363 4.408-1.867c1.115-2.256-.234-3.837-4.797-5.6c-3.293-1.27-5.704-2.775-6.586-4.123c-1.27-1.919-1.426-4.978-.389-7.026c.623-1.22 2.36-2.775 3.864-3.449c.933-.44 1.71-.544 3.655-.544c2.152 0 2.671.077 4.071.726c1.504.674 3.967 2.852 3.967 3.474c0 .13-.752.752-1.711 1.348l-1.685 1.115l-.39-.57c-1.425-2.023-6.326-2.23-7.363-.311c-.44.855-.285 2.022.363 2.8c.622.752 1.037.96 5.6 2.93c4.356 1.866 6.016 3.526 6.483 6.404c.648 4.019-1.297 7.363-5.005 8.608c-1.659.57-5.574.726-7.363.285\\\"/><path fill=\\\"#de3423\\\" d=\\\"M3 82.089V76.15l4.537-.181c4.72-.182 8.22-.57 13.353-1.452c5.834-1.011 11.59-2.826 12.186-3.863c.156-.26.26 1.737.26 5.6v6.015l-.674.519c-.726.57-3.527 1.53-6.716 2.333C20.968 86.367 8.808 88 4.66 88H3zM3 67.05v-5.937l4.537-.155c5.03-.208 8.946-.649 14.131-1.608c5.808-1.089 11.097-2.852 11.486-3.811c.078-.182.156 2.333.156 5.6c.026 5.186-.026 6.015-.415 6.43c-.907 1.011-7.908 2.826-15.116 3.941c-4.382.674-11.642 1.452-13.664 1.452H3zm0-14.934v-5.808l.804-.155c.44-.078 1.53-.156 2.411-.156c4.356 0 14.701-1.426 19.783-2.722c3.552-.934 6.015-1.867 6.871-2.645c.44-.389.467-.156.467 5.549c0 5.574-.026 5.989-.493 6.404c-.7.648-5.497 2.126-9.23 2.878c-6.041 1.193-16.076 2.463-19.498 2.463H3z\\\"/>\"\n\t\t},\n\t\t\"scalingo\": {\n\t\t\t\"body\": \"<path fill=\\\"#21cfee\\\" d=\\\"M53.903 7.868c4.239-7.28 13.737-9.995 21.214-6.07c7.478 3.928 10.105 13.012 5.869 20.289L52.294 71.362c-4.239 7.277-13.737 9.996-21.214 6.067c-7.478-3.925-10.105-13.01-5.87-20.288Zm0 0\\\"/><path fill=\\\"#173aee\\\" d=\\\"M75.706 56.639c4.239-7.28 13.736-9.996 21.214-6.07c7.478 3.928 10.105 13.012 5.869 20.288l-28.692 49.277c-4.239 7.277-13.737 9.995-21.214 6.067c-7.478-3.926-10.108-13.01-5.869-20.29zm0 0\\\"/>\"\n\t\t},\n\t\t\"scalingo-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#1e2833\\\" d=\\\"M39.258 67.037h-3.691c.098 2.05.76 3.593 2.028 4.619c1.272 1.025 3.08 1.514 5.47 1.514c1.125 0 2.126-.12 2.983-.391c.83-.27 1.538-.634 2.098-1.123a4.97 4.97 0 0 0 1.273-1.687c.292-.635.438-1.343.438-2.125c0-1.566-.44-2.787-1.32-3.62c-.88-.83-2.27-1.441-4.152-1.832l-2.392-.466c-.88-.168-1.515-.415-1.882-.755c-.364-.318-.536-.807-.536-1.468c0-.243.047-.462.145-.709c.097-.22.27-.414.512-.587c.246-.172.564-.316.955-.415a6.362 6.362 0 0 1 1.539-.172c1.025 0 1.807.224 2.32.638c.513.438.854 1.123 1.05 2.074l3.443-.438a9.208 9.208 0 0 0-.512-1.98c-.247-.635-.634-1.175-1.147-1.66c-.54-.49-1.222-.881-2.054-1.174c-.854-.293-1.904-.443-3.175-.443a10.62 10.62 0 0 0-2.736.345c-.83.22-1.562.536-2.149.952a4.877 4.877 0 0 0-1.393 1.588c-.34.638-.486 1.37-.486 2.2c0 .834.122 1.565.365 2.152c.247.612.587 1.123 1.05 1.538a5.21 5.21 0 0 0 1.737 1.002c.68.27 1.462.49 2.367.638l2.27.415c.904.196 1.539.49 1.883.88c.34.392.512.83.512 1.27a2.605 2.605 0 0 1-.171.907c-.098.29-.27.536-.513.732a2.853 2.853 0 0 1-.952.49c-.39.12-.88.168-1.443.168c-1.194 0-2.098-.244-2.71-.732c-.61-.49-.954-1.272-1.024-2.344zm23.361 1.073h-3.467c-.075.735-.294 1.295-.662 1.686c-.39.391-.904.587-1.585.587c-.54 0-.955-.098-1.295-.316a2.21 2.21 0 0 1-.807-.905a4.064 4.064 0 0 1-.415-1.296c-.097-.489-.12-1.002-.12-1.538c0-.516.023-1.006.12-1.49c.074-.49.22-.904.415-1.296c.196-.368.49-.661.83-.88c.34-.22.76-.345 1.295-.345c.709 0 1.223.223 1.515.61c.294.392.462.933.56 1.566l3.444-.466c-.097-.633-.243-1.244-.49-1.78a4.158 4.158 0 0 0-1.024-1.421c-.439-.39-1.002-.682-1.636-.904c-.634-.22-1.393-.34-2.248-.34c-1.025 0-1.905.172-2.685.488a5.751 5.751 0 0 0-1.98 1.393c-.536.588-.95 1.32-1.244 2.15c-.294.833-.415 1.76-.415 2.763c0 1.026.121 1.93.364 2.763c.246.83.611 1.538 1.1 2.125c.489.587 1.146 1.052 1.93 1.37c.782.34 1.71.489 2.786.489c1.832 0 3.197-.441 4.125-1.346c.928-.905 1.44-2.125 1.59-3.667zm9.045 3.009v1.613h3.226v-8.066c0-.783-.098-1.469-.295-2.103c-.195-.637-.489-1.173-.903-1.612c-.415-.442-.955-.76-1.637-1.002c-.685-.246-1.515-.368-2.492-.368c-1.613 0-2.881.317-3.809.904c-.955.587-1.543 1.566-1.761 2.886l3.127.292c.196-1.025.952-1.542 2.321-1.542a2.63 2.63 0 0 1 1.514.442c.44.294.659.83.659 1.613v.635l-1.637.074c-.83.05-1.636.12-2.418.246a8.916 8.916 0 0 0-2.121.657a4.202 4.202 0 0 0-1.543 1.296c-.387.564-.583 1.272-.583 2.153c0 .684.098 1.244.34 1.733c.22.49.513.881.905 1.175c.39.316.83.536 1.343.685a5.946 5.946 0 0 0 1.635.218c.979 0 1.785-.172 2.418-.54a6.132 6.132 0 0 0 1.71-1.39zm-.074-4.082v.658c0 .54-.098.978-.294 1.319a2.783 2.783 0 0 1-.756.856c-.563.415-1.272.611-2.148.611c-.54 0-.931-.12-1.221-.367c-.294-.244-.442-.56-.442-1.002c0-.267.027-.513.12-.756c.075-.22.224-.414.467-.587c.243-.172.587-.317 1.025-.439c.44-.097 1.002-.172 1.734-.222zm5.24-11.757v17.452h3.421V55.28Zm5.511 4.692v12.76h3.42v-12.76Zm-.05-4.692v3.08h3.518v-3.08zm5.537 4.692v12.76h3.416v-7.675c0-.369.076-.708.221-1.03a2.956 2.956 0 0 1 .586-.83a3.387 3.387 0 0 1 .88-.559a3.15 3.15 0 0 1 1.148-.196c.563 0 1.025.168 1.37.486c.34.344.512.955.512 1.836v7.968h3.416v-8.434c0-1.613-.363-2.81-1.048-3.57c-.708-.756-1.785-1.146-3.225-1.146a4.84 4.84 0 0 0-2.172.513c-.686.34-1.296.903-1.785 1.635v-1.758zm17.04 13.566h-3.466a5.83 5.83 0 0 0 .488 1.855a3.19 3.19 0 0 0 1.1 1.323c.462.34 1.05.61 1.78.78c.732.171 1.614.246 2.639.246c1.1 0 2.028-.15 2.81-.443a4.405 4.405 0 0 0 1.879-1.343c.489-.586.83-1.294 1.052-2.124c.22-.835.34-1.808.34-2.886V59.972h-3.322v1.441c-.536-.685-1.146-1.17-1.78-1.44a5.459 5.459 0 0 0-1.981-.391c-.877 0-1.66.172-2.345.488a4.87 4.87 0 0 0-1.733 1.32a5.53 5.53 0 0 0-1.1 2.004a8.642 8.642 0 0 0-.364 2.567c0 1.954.438 3.519 1.319 4.669c.876 1.17 2.224 1.733 4.027 1.733c.834 0 1.565-.144 2.224-.465a4.089 4.089 0 0 0 1.635-1.416v.39c0 .537-.023 1.077-.07 1.566c-.05.513-.148.952-.32 1.343a2.3 2.3 0 0 1-.78.955c-.368.242-.857.34-1.491.34c-.415 0-.756 0-1.05-.047c-.293-.05-.54-.125-.73-.246a1.257 1.257 0 0 1-.49-.462a2.008 2.008 0 0 1-.27-.783zm5.23-7.628v.344c0 .635-.074 1.148-.223 1.59a2.836 2.836 0 0 1-.612 1.048a2.334 2.334 0 0 1-.95.588a3.706 3.706 0 0 1-1.174.172c-.78 0-1.412-.27-1.93-.834c-.512-.56-.755-1.515-.755-2.88c0-.638.074-1.174.22-1.64c.148-.44.344-.83.587-1.124a2.214 2.214 0 0 1 .88-.634a3.027 3.027 0 0 1 1.072-.195c.345 0 .685.047 1.025.12c.345.098.639.27.928.513c.27.243.49.611.662 1.077c.172.49.27 1.1.27 1.855m11.452 7.213c.978 0 1.859-.149 2.665-.465a5.498 5.498 0 0 0 2.027-1.347a5.819 5.819 0 0 0 1.293-2.125a8.537 8.537 0 0 0 .465-2.858c0-1.029-.146-1.98-.44-2.813a5.904 5.904 0 0 0-1.294-2.125c-.564-.587-1.245-1.026-2.028-1.343a7.842 7.842 0 0 0-2.688-.466c-.975 0-1.879.173-2.662.466c-.802.317-1.487.756-2.051 1.343a5.911 5.911 0 0 0-1.296 2.124c-.289.835-.437 1.785-.437 2.815c0 2.2.563 3.858 1.687 5.033c1.122 1.175 2.708 1.76 4.76 1.76zm0-2.74c-.999 0-1.73-.34-2.196-1.025c-.49-.685-.708-1.71-.708-3.03c0-1.295.219-2.3.708-2.981c.489-.686 1.221-1.03 2.196-1.03c.978 0 1.686.344 2.175 1.03c.49.681.732 1.686.732 2.981c0 1.32-.242 2.322-.732 3.006c-.489.709-1.197 1.05-2.175 1.05zm0 0\\\"/><path fill=\\\"#21cfee\\\" d=\\\"M7.638 50.09c1.057-1.803 3.416-2.477 5.276-1.503c1.859.971 2.513 3.221 1.46 5.026l-7.135 12.21c-1.053 1.805-3.417 2.478-5.276 1.504c-1.859-.97-2.513-3.222-1.46-5.025Zm0 0\\\"/><path fill=\\\"#173aee\\\" d=\\\"M13.062 62.176c1.052-1.804 3.413-2.477 5.277-1.503c1.858.97 2.512 3.222 1.455 5.025L12.66 77.91c-1.053 1.803-3.412 2.477-5.276 1.503c-1.858-.971-2.513-3.221-1.456-5.026Zm0 0\\\"/>\"\n\t\t},\n\t\t\"scikitlearn\": {\n\t\t\t\"body\": \"<path fill=\\\"#f89939\\\" d=\\\"M98.18 88.13c15.63-15.62 18.23-38.36 5.8-50.78c-12.43-12.42-35.17-9.82-50.8 5.8c-15.63 15.62-11.11 45.48-5.8 50.78c4.29 4.29 35.17 9.82 50.8-5.8\\\"/><path fill=\\\"#3499cd\\\" d=\\\"M34.04 65.56c-9.07-9.06-22.27-10.57-29.48-3.37c-7.21 7.21-5.7 20.4 3.37 29.46c9.07 9.07 26.4 6.44 29.48 3.37c2.49-2.49 5.71-20.4-3.37-29.46\\\"/><path fill=\\\"#010101\\\" d=\\\"M123.82 85.68c-.58 0-.87-.35-.87-1.06c0-.53.35-1.69 1.04-3.46c1.01-2.59 1.52-4.45 1.52-5.58c0-.68-.2-1.25-.6-1.7c-.4-.45-.9-.68-1.5-.68c-.88 0-1.89.41-3.03 1.24c-1.14.83-2.67 2.32-4.6 4.48c.28-1.4.88-3.32 1.78-5.76l-4.31.83c-.98 2.12-1.69 4.03-2.13 5.73c-.22.83-.38 1.69-.49 2.56c-1.35 1.31-2.23 2.1-2.61 2.39c-.39.29-.8.43-1.22.43c-.39 0-.7-.15-.93-.44c-.23-.29-.34-.69-.34-1.18c0-.53.1-1.14.3-1.83s.64-1.99 1.33-3.9l1.64-4.52l-1.61.07c-1.46 2.78-3.17 4.28-5.13 4.49c.53-1.38.8-2.44.8-3.18c0-.94-.46-1.41-1.38-1.41c-1.09 0-1.94.51-2.55 1.54c-.62 1.03-.93 2-.93 2.91s.51 1.55 1.52 2c-.66.97-1.4 1.88-2.2 2.74c-.95.94-1.69 1.66-2.23 2.13c-.55.49-1.06.73-1.52.73c-.72 0-1.08-.51-1.08-1.52s.4-2.75 1.2-5.35l1.56-5.18h-.99l-3.61 2c-.59-1.35-1.62-2.03-3.09-2.03c-1.17 0-2.51.5-4.03 1.49c-1.52.99-2.77 2.28-3.74 3.89c-.75 1.24-1.21 2.54-1.38 3.88c-1.36 1.36-2.38 2.24-3.06 2.65c-.71.42-1.45.63-2.23.63c-1.99 0-3.22-1.15-3.69-3.45c5.19-1.52 7.78-3.5 7.78-5.94c0-.92-.33-1.66-.99-2.23c-.66-.57-1.54-.85-2.63-.85c-2.11 0-4.03 1.01-5.76 3.03c-1.57 1.83-2.42 3.86-2.57 6.09c-1.43 1.41-2.51 2.34-3.21 2.79c-.72.46-1.4.69-2.03.69s-1.13-.3-1.5-.9c-.38-.6-.57-1.41-.57-2.44c0-.46.05-1.3.14-2.53c2.36-2.56 4.09-4.96 5.2-7.21c1.11-2.25 1.66-4.58 1.66-6.98c0-.85-.11-1.52-.33-2.02c-.22-.5-.5-.75-.84-.75c-.07 0-.18.02-.32.07l-4.49 1.66c-1.53 2.92-2.84 6.11-3.91 9.58c-1.07 3.46-1.61 6.43-1.61 8.9c0 1.65.38 2.96 1.16 3.94c.77.98 1.79 1.47 3.05 1.47c1.1 0 2.25-.35 3.46-1.05c1.21-.7 2.61-1.79 4.22-3.26s0-.02 0-.02c.19 1.11.65 2.04 1.37 2.8c.99 1.02 2.28 1.54 3.88 1.54c1.44 0 2.75-.35 3.94-1.05c1.15-.67 2.44-1.72 3.88-3.11c.12 1.04.46 1.94 1.03 2.71c.73.97 1.61 1.46 2.64 1.46s2.09-.4 3.09-1.2c1-.8 2.08-2.05 3.26-3.73c-.11 3.29.77 4.93 2.63 4.93c.74 0 1.52-.27 2.33-.81s2.16-1.71 4.05-3.5c1.64-1.62 2.84-3.14 3.61-4.56c1.04-.18 1.99-.49 2.86-.94c-1.78 2.79-2.67 5.02-2.67 6.68c0 .9.25 1.65.74 2.25c.49.6 1.1.91 1.82.91c1.57 0 3.8-1.41 6.68-4.2c0 .22-.02.43-.02.65c0 .78.07 1.96.19 3.55l3.91-.92c0-1.06.02-1.9.05-2.53c.06-.84.18-1.76.35-2.76c.11-.59.38-1.15.81-1.68l.99-1.15c.36-.42.71-.8 1.02-1.13c.37-.39.7-.72.99-.99c.33-.29.62-.53.87-.69c.27-.16.49-.25.65-.25c.29 0 .44.19.44.57s-.28 1.26-.83 2.65c-1.04 2.59-1.56 4.52-1.56 5.78c0 .93.24 1.67.73 2.23c.48.55 1.12.83 1.91.83c1.94 0 4.28-1.44 7-4.31V82.3c-1.93 2.27-3.32 3.41-4.18 3.41Zm-65.26-8.29c.8-3.91 1.62-6.94 2.45-9.11c.83-2.17 1.47-3.26 1.9-3.26c.2 0 .37.13.5.4c.13.26.19.62.19 1.05c0 1.49-.46 3.26-1.4 5.33c-.93 2.06-2.15 3.93-3.64 5.59m11.79-.98c.71-1.19 1.45-1.78 2.23-1.78c.82 0 1.24.57 1.24 1.7c0 2.29-1.51 3.85-4.53 4.7c0-1.9.35-3.44 1.06-4.62m17.48 5.85c-1.04 2.01-2.16 3.01-3.33 3.01c-.48 0-.88-.2-1.19-.59c-.31-.39-.47-.91-.47-1.55c0-1.68.53-3.53 1.58-5.53c1.05-2 2.17-3 3.35-3c.49 0 .89.18 1.18.56c.29.37.44.89.44 1.55c0 1.7-.52 3.55-1.56 5.56Z\\\"/><path fill=\\\"#fff\\\" d=\\\"M75.46 64.88c.15.21.22.48.22.8s-.09.61-.27.88s-.44.49-.79.64c-.34.15-.73.23-1.16.23c-.72 0-1.26-.15-1.64-.45s-.62-.74-.72-1.33l.93-.15c.05.37.2.66.43.85c.24.2.57.3 1 .3s.75-.09.96-.26c.21-.17.31-.38.31-.62c0-.21-.09-.38-.28-.5c-.13-.08-.45-.19-.96-.32c-.69-.17-1.16-.32-1.43-.45s-.47-.3-.6-.53s-.21-.47-.21-.74c0-.25.06-.47.17-.68c.11-.21.27-.38.46-.52c.15-.11.34-.2.59-.27c.25-.07.52-.11.81-.11c.43 0 .81.06 1.14.19c.33.12.57.29.73.51c.16.21.26.5.32.86l-.92.12c-.04-.28-.16-.51-.36-.67c-.2-.16-.48-.24-.85-.24c-.43 0-.74.07-.92.21c-.18.14-.28.31-.28.5c0 .12.04.23.11.33c.08.1.2.18.36.25c.09.03.37.11.83.24c.66.18 1.12.32 1.39.43c.26.11.47.28.62.49Zm4.47 1.44c-.25.23-.55.34-.92.34c-.46 0-.83-.17-1.11-.5s-.43-.88-.43-1.62s.15-1.27.44-1.6s.68-.51 1.15-.51c.31 0 .58.09.8.28c.22.19.37.47.46.84l.91-.14c-.11-.56-.35-.99-.73-1.29c-.38-.3-.87-.45-1.47-.45c-.48 0-.91.11-1.32.34c-.4.22-.71.56-.9 1.01c-.2.45-.3.97-.3 1.57c0 .92.23 1.63.69 2.12c.46.49 1.07.74 1.82.74c.6 0 1.11-.18 1.53-.54c.41-.36.67-.86.77-1.49l-.92-.12c-.07.47-.22.81-.47 1.04Zm2.19.98h.94v-5.52h-.94zm0-6.55h.94v-1.08h-.94zm6.73 1.02h-1.21l-2.22 2.25v-4.35h-.94v7.62h.94V65.1l.66-.63l1.83 2.82h1.16l-2.33-3.47zm.96-1.02h.94v-1.08h-.94zm0 6.55h.94v-5.52h-.94zm4.41-.84c-.17.02-.31.04-.41.04c-.14 0-.25-.02-.32-.07s-.13-.11-.16-.18c-.03-.08-.05-.25-.05-.51v-3.23h.94v-.73h-.94v-1.93l-.93.56v1.37h-.69v.73h.69v3.18c0 .56.04.93.11 1.1c.08.18.21.32.39.42c.19.11.45.16.79.16c.21 0 .44-.03.71-.08l-.14-.83Z\\\"/>\"\n\t\t},\n\t\t\"sdl\": {\n\t\t\t\"body\": \"<defs><radialGradient id=\\\"deviconSdl0\\\" cx=\\\"204.9\\\" cy=\\\"-244\\\" r=\\\"25.72\\\" fx=\\\"204.9\\\" fy=\\\"-244\\\" gradientTransform=\\\"matrix(-.72758 -1.42335 2.41093 -1.2386 853.636 31.827)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#656F71\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#D3D4CF\\\"/></radialGradient></defs><path fill=\\\"url(#deviconSdl0)\\\" d=\\\"M59.113 63.93c-14.59-.5-28.465-3.809-39.254-9.355c-1.016-.52-3.234-1.758-3.234-1.801c0-.016.352.148.781.371c5.281 2.703 11.918 5.012 18.621 6.477c10.629 2.328 22.27 2.949 33.676 1.789c10.766-1.09 20.824-3.742 29.41-7.746c7.723-3.605 13.902-8.215 18.02-13.43c6.32-8.02 7.168-17.316 2.328-25.562c-3.133-5.344-8.363-10.055-15.543-13.992c-.687-.375-1.227-.684-1.199-.684c.094 0 3.133 1.465 4.082 1.973c4.637 2.461 8.324 5.086 11.543 8.207c4.043 3.922 6.582 7.961 7.824 12.449c1.148 4.148.934 8.75-.598 12.828c-2.062 5.488-6.277 10.539-12.441 14.914c-10.016 7.102-24.352 11.805-40.254 13.203a119.56 119.56 0 0 1-13.766.363zm0 0\\\" transform=\\\"translate(2.065 32.748)scale(.9768)\\\"/><g fill=\\\"#173354\\\"><path d=\\\"M95.441 76.83h-.076a.467.467 0 0 0-.153-.027l-.217-.008a1.26 1.26 0 0 0-.305.038l-.305.095v1.873h-.916V76h.916v.404a2.5 2.5 0 0 1 .176-.141a2.03 2.03 0 0 1 .202-.134a1.06 1.06 0 0 1 .229-.095a.764.764 0 0 1 .252-.042h.099c.038.004.069.004.099.011zm-3.331 2.049c-.557 0-.981-.126-1.278-.382s-.443-.611-.443-1.08c0-.454.137-.82.412-1.091s.66-.412 1.156-.412c.45 0 .79.118 1.019.347s.34.561.34.992v.317h-2.011c.011.13.038.237.088.324a.56.56 0 0 0 .195.206a.764.764 0 0 0 .275.114a1.65 1.65 0 0 0 .343.031a1.42 1.42 0 0 0 .313-.031a1.44 1.44 0 0 0 .282-.092c.076-.031.145-.065.21-.099l.156-.099h.095v.721l-.206.076a1.54 1.54 0 0 1-.256.076l-.305.057a2.81 2.81 0 0 1-.389.023zm.301-1.835c-.004-.187-.05-.324-.134-.424s-.214-.145-.389-.145s-.317.053-.42.153s-.153.24-.164.416zm-1.832-1.042l-1.484 3.827h-.984l.443-1.095l-1.076-2.732h.962l.618 1.755l.58-1.755zm-4.014 2.072v-.584l-.374.038a1.234 1.234 0 0 0-.286.065c-.08.027-.141.065-.187.118s-.065.126-.065.217c0 .13.038.221.111.271s.183.072.328.072a.66.66 0 0 0 .248-.053a.73.73 0 0 0 .225-.145zm0 .431l-.168.137a1.01 1.01 0 0 1-.198.118a1.444 1.444 0 0 1-.24.088a1.42 1.42 0 0 1-.328.031a.9.9 0 0 1-.649-.252a.82.82 0 0 1-.256-.626c0-.21.042-.378.13-.504s.214-.229.378-.305s.362-.13.595-.16l.744-.069v-.015c0-.156-.061-.259-.179-.321s-.301-.088-.538-.088c-.111 0-.237.019-.382.057a2.76 2.76 0 0 0-.424.141h-.08v-.675a4.77 4.77 0 0 1 .443-.088a3.63 3.63 0 0 1 .611-.053c.507 0 .878.08 1.107.244s.347.404.347.733v1.904h-.912zm-1.709.298h-2.602V75.09h.981v3.007h1.622zm-5.174-.729v-.584l-.378.038a1.21 1.21 0 0 0-.282.065c-.08.027-.141.065-.187.118s-.069.126-.069.217c0 .13.038.221.114.271s.183.072.328.072a.64.64 0 0 0 .244-.053a.8.8 0 0 0 .229-.145zm0 .431l-.168.137a1.05 1.05 0 0 1-.202.118a1.22 1.22 0 0 1-.24.088a1.382 1.382 0 0 1-.324.031a.894.894 0 0 1-.649-.252a.83.83 0 0 1-.259-.626c0-.21.046-.378.134-.504s.214-.229.378-.305a2.05 2.05 0 0 1 .591-.16l.744-.069v-.015c0-.156-.057-.259-.179-.321s-.298-.088-.538-.088a1.52 1.52 0 0 0-.378.057a2.95 2.95 0 0 0-.427.141h-.076v-.675a4.69 4.69 0 0 1 .439-.088a3.6 3.6 0 0 1 .614-.053c.504 0 .874.08 1.107.244s.347.404.347.733v1.904h-.912zm-2.003.298h-.916v-2.801h.916zm.027-3.198h-.969v-.679h.969zm-1.32 3.198h-.916v-.29l-.202.149a1.32 1.32 0 0 1-.202.118a1.026 1.026 0 0 1-.473.099a.93.93 0 0 1-.797-.397c-.195-.263-.294-.614-.294-1.057c0-.244.034-.458.099-.637s.16-.336.275-.469a1.12 1.12 0 0 1 .389-.286c.153-.072.313-.107.481-.107a1.32 1.32 0 0 1 .382.046c.095.031.21.08.343.145v-1.194h.916zm-.916-.771v-1.377a1.03 1.03 0 0 0-.179-.053a1.29 1.29 0 0 0-.187-.019c-.221 0-.385.072-.496.217s-.168.351-.168.614c0 .275.046.477.134.599s.229.183.427.183a.8.8 0 0 0 .244-.042a.99.99 0 0 0 .225-.122m-3.114.847c-.553 0-.981-.126-1.274-.382s-.446-.611-.446-1.08c0-.454.141-.82.416-1.091s.66-.412 1.156-.412c.45 0 .79.118 1.019.347s.34.561.34.992v.317h-2.011c.011.13.038.237.088.324a.56.56 0 0 0 .195.206c.076.053.168.092.275.114s.217.031.343.031a1.42 1.42 0 0 0 .313-.031a1.44 1.44 0 0 0 .282-.092c.076-.031.145-.065.21-.099l.156-.099h.095v.721l-.206.076a1.67 1.67 0 0 1-.256.076l-.305.057a2.81 2.81 0 0 1-.389.023zm.305-1.835c-.008-.187-.05-.324-.134-.424s-.217-.145-.389-.145c-.179 0-.317.053-.42.153s-.156.24-.164.416zm-3.091 1.759v-1.397l-.008-.351a.744.744 0 0 0-.046-.233a.27.27 0 0 0-.122-.13a.548.548 0 0 0-.233-.042a.496.496 0 0 0-.206.046a1.21 1.21 0 0 0-.225.122v1.984h-.92v-1.397l-.008-.347a.71.71 0 0 0-.05-.233a.285.285 0 0 0-.122-.134a.52.52 0 0 0-.229-.042a.556.556 0 0 0-.221.05l-.21.118v1.984h-.916V76h.916v.309c.153-.118.294-.214.427-.282a.94.94 0 0 1 .446-.103a.92.92 0 0 1 .473.122a.78.78 0 0 1 .313.366c.176-.156.343-.279.5-.362a1 1 0 0 1 .473-.126c.137 0 .259.023.366.065a.63.63 0 0 1 .275.187a.85.85 0 0 1 .187.317a1.7 1.7 0 0 1 .061.488v1.82zm-4.296.057c-.374 0-.645-.076-.817-.221s-.252-.385-.252-.717v-1.309h-.351v-.611h.351v-.797h.916v.797h.881v.611h-.881v1.248a.54.54 0 0 0 .042.198a.3.3 0 0 0 .13.137a.572.572 0 0 0 .271.053a.86.86 0 0 0 .195-.031a.61.61 0 0 0 .164-.057h.08v.618l-.317.057a3.173 3.173 0 0 1-.412.023zm-2.186.019a2.44 2.44 0 0 1-.668-.088a1.514 1.514 0 0 1-.523-.267a1.21 1.21 0 0 1-.343-.458a1.55 1.55 0 0 1-.122-.649c0-.271.042-.496.134-.683a1.29 1.29 0 0 1 .359-.466a1.48 1.48 0 0 1 .519-.259a2.37 2.37 0 0 1 .618-.084a2.207 2.207 0 0 1 .976.225v.748h-.118a1.39 1.39 0 0 0-.134-.107c-.054-.038-.111-.076-.176-.111s-.141-.065-.225-.088a.91.91 0 0 0-.279-.038c-.233 0-.416.076-.542.233s-.195.366-.195.63c0 .279.069.488.206.626s.321.206.546.206a1.22 1.22 0 0 0 .305-.034c.088-.023.16-.057.225-.092s.111-.072.156-.107l.111-.103h.118v.748l-.179.076a1.91 1.91 0 0 1-.214.069l-.248.053a2.14 2.14 0 0 1-.309.019zm-2.797 0c-.557 0-.981-.126-1.278-.378s-.443-.614-.443-1.08c0-.458.137-.824.416-1.095s.66-.408 1.156-.408c.45 0 .79.114 1.015.347s.34.561.34.992v.313H59.49c.008.13.038.237.088.324a.56.56 0 0 0 .191.21c.08.05.172.088.275.111a1.6 1.6 0 0 0 .343.034a1.46 1.46 0 0 0 .317-.034c.103-.023.195-.053.282-.088l.206-.103l.156-.095h.099v.717l-.206.08a2.03 2.03 0 0 1-.256.072a2.484 2.484 0 0 1-.309.061a2.86 2.86 0 0 1-.385.019zm.305-1.835c-.004-.183-.053-.324-.137-.42s-.214-.145-.389-.145s-.317.05-.416.153a.63.63 0 0 0-.168.412zm-1.843-.214h-.076a.883.883 0 0 0-.149-.027l-.221-.008a1.21 1.21 0 0 0-.301.038c-.107.027-.21.061-.309.095v1.877h-.916v-2.801h.916v.401a1.69 1.69 0 0 1 .176-.137a1.22 1.22 0 0 1 .202-.134c.065-.038.141-.072.233-.099a.86.86 0 0 1 .248-.042l.099.004a.71.71 0 0 1 .099.008zM56.4 78.806h-.916v-2.801h.916zm.027-3.201h-.969v-.679h.969zm-1.145 1.347a1.81 1.81 0 0 1-.24.931a1.74 1.74 0 0 1-.603.63c-.202.122-.42.202-.66.24a5.31 5.31 0 0 1-.759.053h-1.221v-3.713h1.21a5.36 5.36 0 0 1 .771.05a1.8 1.8 0 0 1 .672.24a1.69 1.69 0 0 1 .607.633c.145.263.225.576.225.935zm-1.007-.008c0-.244-.042-.454-.134-.626a.93.93 0 0 0-.404-.408a1 1 0 0 0-.42-.114l-.523-.011h-.019v2.324h.019l.557-.011a.89.89 0 0 0 .431-.134a.94.94 0 0 0 .366-.397a1.39 1.39 0 0 0 .126-.622zm-5.136 1.935c-.553 0-.981-.126-1.274-.378s-.446-.611-.446-1.08c0-.458.141-.82.416-1.095s.66-.408 1.156-.408c.45 0 .79.114 1.015.347s.343.561.343.992v.313h-2.011c.008.13.038.24.088.328a.56.56 0 0 0 .195.206a.75.75 0 0 0 .275.111a1.6 1.6 0 0 0 .343.034a1.43 1.43 0 0 0 .313-.034c.103-.023.198-.05.282-.088a1.64 1.64 0 0 0 .21-.103l.153-.095h.099v.721l-.206.076a1.67 1.67 0 0 1-.256.076l-.309.057a2.825 2.825 0 0 1-.385.019zm.305-1.832c-.004-.187-.05-.328-.134-.424s-.217-.145-.389-.145c-.179 0-.317.05-.42.153s-.156.24-.164.416zm-2.19 1.759h-.916v-3.881h.916zm-1.084-1.438c0 .446-.122.809-.359 1.084s-.534.408-.881.408c-.145 0-.275-.015-.382-.046a1.56 1.56 0 0 1-.347-.149v1.168h-.916v-3.827h.916v.294a2.05 2.05 0 0 1 .412-.267a1.09 1.09 0 0 1 .485-.103c.34 0 .603.13.79.385s.282.611.282 1.053m-.939.015c0-.271-.046-.469-.134-.591s-.225-.187-.412-.187a.9.9 0 0 0-.244.038c-.08.023-.16.065-.24.114v1.408c.05.019.103.034.16.042s.13.011.21.011c.221 0 .389-.069.496-.206s.164-.347.164-.63zm-3.228 1.423v-1.4l-.008-.347c-.004-.095-.019-.172-.046-.233s-.069-.103-.122-.13a.54.54 0 0 0-.233-.042a.57.57 0 0 0-.206.042a1.48 1.48 0 0 0-.221.126v1.984h-.923v-1.4l-.008-.347a.73.73 0 0 0-.05-.233a.258.258 0 0 0-.122-.13a.52.52 0 0 0-.229-.042a.537.537 0 0 0-.217.05a1.54 1.54 0 0 0-.21.118v1.984h-.916v-2.801h.916v.309c.149-.122.29-.214.424-.282a.96.96 0 0 1 .446-.103c.179 0 .34.042.477.122s.237.202.309.362a2.66 2.66 0 0 1 .5-.359a.99.99 0 0 1 .477-.126a1.02 1.02 0 0 1 .366.061a.72.72 0 0 1 .275.187a.95.95 0 0 1 .183.321c.042.126.061.286.061.485v1.824zm-3.892 0h-.916v-2.801h.916zm.027-3.198h-.969v-.683h.969zm-2.759 3.266c-.301 0-.561-.031-.79-.084s-.435-.122-.63-.202v-.885h.092c.195.16.408.279.645.366a2.05 2.05 0 0 0 .687.126c.057 0 .13-.008.221-.015a.88.88 0 0 0 .221-.057a.46.46 0 0 0 .172-.118a.269.269 0 0 0 .072-.198a.273.273 0 0 0-.114-.229a.8.8 0 0 0-.275-.126l-.427-.095a4.144 4.144 0 0 1-.424-.111c-.301-.099-.519-.237-.649-.408s-.195-.385-.195-.645c0-.347.153-.626.462-.843s.694-.321 1.156-.321a3.51 3.51 0 0 1 .694.065c.228.046.435.107.614.183v.847h-.084a1.945 1.945 0 0 0-.53-.298a1.77 1.77 0 0 0-.645-.122a1.41 1.41 0 0 0-.229.015a.783.783 0 0 0-.214.069a.44.44 0 0 0-.16.118a.252.252 0 0 0-.065.176c0 .095.034.168.103.225s.21.107.412.153l.378.08a3.85 3.85 0 0 1 .389.111c.271.092.473.217.603.374s.198.366.198.622c0 .37-.153.668-.458.889s-.714.34-1.232.34zm59.727-6.31h-25.18V36.659H79.4v29.064h15.705zM67.454 54.638c0 3.342-.767 6.338-2.305 8.982s-3.48 4.674-5.826 6.09a16.79 16.79 0 0 1-6.395 2.328c-2.305.347-4.758.519-7.36.519H33.766v-35.91h11.703c2.652 0 5.132.16 7.444.485a16.87 16.87 0 0 1 6.513 2.339a16.43 16.43 0 0 1 5.876 6.113c1.435 2.564 2.152 5.586 2.152 9.058zm-9.726-.072c0-2.366-.427-4.388-1.282-6.067s-2.163-2.995-3.938-3.945a9.514 9.514 0 0 0-4.041-1.107l-5.052-.099h-.179V65.83h.179l5.384-.111c1.458-.072 2.846-.504 4.167-1.29c1.553-.931 2.736-2.221 3.545-3.858s1.217-3.644 1.217-6.006zM15.687 73.201c-2.888 0-5.426-.267-7.612-.797s-4.216-1.19-6.094-1.976v-8.539h.862c1.893 1.53 3.976 2.701 6.258 3.522s4.491 1.232 6.635 1.232c.542 0 1.255-.057 2.141-.172s1.599-.29 2.141-.53a4.69 4.69 0 0 0 1.671-1.145c.458-.493.683-1.137.683-1.942c0-.9-.37-1.629-1.114-2.194s-1.629-.973-2.659-1.232l-4.117-.916a34.13 34.13 0 0 1-4.09-1.061c-2.923-.981-5.018-2.301-6.281-3.953s-1.9-3.732-1.9-6.223c0-3.362 1.492-6.082 4.483-8.165s6.719-3.125 11.195-3.125a34.76 34.76 0 0 1 6.7.652c2.22.435 4.209 1.023 5.968 1.763v8.2h-.836c-1.404-1.141-3.114-2.106-5.132-2.896s-4.09-1.183-6.219-1.183a13 13 0 0 0-2.228.172a9.062 9.062 0 0 0-2.08.649a4.19 4.19 0 0 0-1.53 1.149c-.431.508-.649 1.072-.649 1.698c0 .916.343 1.645 1.026 2.183s2.007 1.026 3.964 1.461l3.663.794c1.171.259 2.427.611 3.762 1.061c2.614.9 4.564 2.11 5.838 3.632s1.912 3.522 1.912 6.017c0 3.568-1.473 6.437-4.419 8.608S20.7 73.2 15.686 73.2zm0 0\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M31.163 89.112c-.233 0-.424.164-.424.366s.191.37.424.37s.42-.168.42-.37s-.187-.366-.42-.366m18.101 3.293c-.362 0-.66.256-.66.572s.298.576.66.576s.66-.256.66-.576s-.294-.572-.66-.572m-9.394-1.244c-.29 0-.527.206-.527.462s.237.458.527.458s.53-.206.53-.458s-.237-.462-.53-.462m19.685 1.614c-.454 0-.824.321-.824.717s.37.717.824.717s.824-.321.824-.717s-.37-.717-.824-.717m10.627-.553c-.572 0-1.034.401-1.034.897s.462.897 1.034.897s1.03-.404 1.03-.897s-.462-.897-1.03-.897m10.646-1.824c-.71 0-1.286.5-1.286 1.122s.576 1.118 1.286 1.118s1.29-.5 1.29-1.118s-.576-1.122-1.29-1.122m10.657-3.339c-.889 0-1.61.63-1.61 1.404s.721 1.4 1.61 1.4s1.614-.63 1.614-1.4s-.725-1.404-1.614-1.404m10.203-4.438c-.988 0-1.79.694-1.79 1.557s.801 1.557 1.79 1.557s1.79-.698 1.79-1.557s-.801-1.557-1.79-1.557m9.303-6.384c-1.099 0-1.992.775-1.992 1.728s.893 1.732 1.992 1.732s1.988-.775 1.988-1.732s-.889-1.728-1.988-1.728m7.669-8.982c-1.431 0-2.587 1.007-2.587 2.251s1.156 2.247 2.587 2.247s2.587-1.007 2.587-2.247s-1.16-2.251-2.587-2.251m3.293-9.318c-1.099 0-1.988.775-1.988 1.732s.889 1.728 1.988 1.728s1.992-.775 1.992-1.728s-.889-1.732-1.992-1.732m-1.11-5.815c.786 0 1.423-.553 1.423-1.232s-.637-1.236-1.423-1.236s-1.419.553-1.419 1.236s.637 1.232 1.419 1.232m-3.468-6.719c.561 0 1.015-.393 1.015-.881s-.458-.881-1.015-.881s-1.019.393-1.019.881s.458.881 1.019.881m-3.819-5.636c-.37 0-.675.267-.675.591s.305.588.675.588s.679-.263.679-.588s-.305-.591-.679-.591m-4.06-2.308c.248 0 .45-.176.45-.389s-.202-.393-.45-.393s-.45.176-.45.393s.202.389.45.389\\\"/></g>\"\n\t\t},\n\t\t\"selenium\": {\n\t\t\t\"body\": \"<path fill=\\\"#CF0A2C\\\" d=\\\"M83.1 80.5c-4.7-.1-8.8 3.4-9.3 8.1c0 .2.1.3.3.3h18c.2 0 .3-.1.3-.3c-.4-4.8-4.5-8.4-9.3-8.1\\\"/><path fill=\\\"#CF0A2C\\\" d=\\\"m121.7 19.9l-38.4 43c-.4.5-1.2.5-1.7.1l-.1-.1l-19.4-20.1c-.4-.4-.4-1-.1-1.5l6.5-8.3c.4-.5 1.1-.7 1.6-.3c.1.1.2.1.2.2l11 12.1c.4.5 1.2.5 1.7.1l.1-.1l30.7-41.7c.3-.4.2-.9-.2-1.2c-.1-.1-.3-.1-.5-.2H5.7c-.5.1-.9.5-.9 1v122.2c0 .5.4.9.9.9h116.6c.5 0 .9-.4.9-.9V20.5c0-.5-.4-.8-.8-.8c-.3-.1-.5 0-.7.2m-83.8 92.5c-7.7.3-15.2-2.3-20.9-7.4c-.4-.4-.5-1-.1-1.5l4.5-6.4c.4-.5 1.1-.6 1.6-.3l.1.1c4.2 3.9 9.6 6 15.3 6c6 0 8.9-2.8 8.9-5.7c0-9.1-29.5-2.8-29.5-22.1c0-8.5 7.4-15.6 19.4-15.6c6.9-.2 13.7 2.1 19.1 6.5c.4.4.5 1.1.1 1.5l-4.7 6.2c-.4.5-1.1.6-1.6.2c-4-3.2-8.9-4.9-14-4.8c-4.7 0-7.3 2.1-7.3 5.1c0 8.1 29.4 2.7 29.4 21.8c.1 9.3-6.6 16.4-20.3 16.4m64.3-17.8c0 .6-.5 1-1 1H74.3c-.2 0-.3.1-.3.3c.9 5.2 5.6 8.8 10.9 8.5c3.4-.1 6.6-1.1 9.3-3.1c.4-.3 1.1-.3 1.4.2l.1.1l3.3 4.8c.3.4.2 1-.2 1.4c-4.3 3.2-9.6 4.8-14.9 4.6c-11.6 0-20.3-7.8-20.3-20c-.3-10.7 8.1-19.6 18.8-19.9h.9c11.3 0 19.1 8.5 19.1 20.9z\\\"/>\"\n\t\t},\n\t\t\"sema\": {\n\t\t\t\"body\": \"<path d=\\\"M63.93 0C28.633 0 0 28.664 0 64s28.633 64 63.93 64c35.293 0 63.93-28.664 63.93-64S99.222 0 63.93 0M32.469 101.656l22.035-81.922h12.25l-22.031 81.922Zm70.355-30.094l-6.691 5.418l-10.645-12.085L74.395 76.98l-6.957-5.12l8.8-13.368L61.73 52.81l2.586-9.258l15.313 3.988l1.277-15.21h8.684l1.277 15.21l14.512-3.691l2.973 8.96l-14.36 5.684Zm0 0\\\"/>\"\n\t\t},\n\t\t\"sema-wordmark\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconSemaWordmark0\\\"><path d=\\\"M24 0h79.645v79.121H24Zm0 0\\\"/></clipPath></defs><g clip-path=\\\"url(#deviconSemaWordmark0)\\\"><path d=\\\"M63.688 0C41.82 0 24.086 17.719 24.086 39.563c0 21.84 17.734 39.558 39.602 39.558c21.859 0 39.601-17.719 39.601-39.558C103.29 17.718 85.547 0 63.687 0Zm-19.49 62.84l13.65-50.64h7.586L51.789 62.84Zm43.578-18.606l-4.144 3.352l-6.594-7.473l-6.871 7.473l-4.309-3.168l5.45-8.262l-8.985-3.511l1.602-5.723l9.484 2.465l.793-9.403h5.379l.79 9.403l8.991-2.282l1.84 5.54l-8.894 3.511Zm0 0\\\"/></g><path d=\\\"M20.773 104.86c-.546-1.942-2.246-3.708-5.464-3.708c-2.922 0-5.137 1.383-5.118 3.395c-.02 1.715 1.172 2.754 4.192 3.43l5.07 1.085c5.594 1.22 8.32 3.81 8.352 8.024c-.016 5.621-5.25 9.46-12.68 9.46c-7.281 0-11.867-3.214-12.727-8.667l6.817-.66c.594 2.672 2.691 4.054 5.894 4.054c3.32 0 5.532-1.515 5.532-3.543c0-1.68-1.274-2.785-3.996-3.378l-5.067-1.055c-5.695-1.168-8.371-4.035-8.355-8.356c-.016-5.468 4.855-8.98 12.004-8.98c6.949 0 10.976 3.2 11.933 8.223Zm7.891 6.46c0-9.144 5.547-15.375 14.047-15.375c7.297 0 13.57 4.567 13.57 14.965v2.14H35.598c.066 5.075 3.054 8.044 7.578 8.044c3.02 0 5.332-1.32 6.273-3.824l6.535.726c-1.238 5.156-5.992 8.52-12.91 8.52c-8.945.015-14.41-5.903-14.41-15.196m20.918-2.965c-.035-4.039-2.742-6.972-6.77-6.972c-4.175 0-6.984 3.18-7.183 6.972Zm8.254-11.667h6.684v5.027h.347c1.238-3.38 4.211-5.422 8.188-5.422c3.996 0 6.886 2.059 8.023 5.422h.317c1.32-3.297 4.605-5.422 8.914-5.422c5.445 0 9.277 3.508 9.277 10.117v19.89H92.57v-18.784c0-3.66-2.246-5.325-5.07-5.325c-3.383 0-5.363 2.309-5.363 5.653v18.472h-6.871V107.22c0-3.051-2.028-5.028-4.985-5.028c-3.02 0-5.445 2.473-5.445 6.114v18.011h-7Zm43.464 21.687c0-6.676 5.516-8.39 11.263-9.016c5.23-.558 7.343-.66 7.343-2.668v-.117c0-2.918-1.781-4.562-5.015-4.562c-3.418 0-5.399 1.726-6.094 3.754l-6.54-.922c1.555-5.406 6.34-8.172 12.583-8.172c5.664 0 12.05 2.355 12.05 10.183v19.825h-6.718v-4.07h-.23c-1.274 2.488-4.063 4.663-8.72 4.663c-5.644 0-9.921-3.082-9.921-8.898Zm18.626-2.324v-3.496c-.91.726-4.574 1.203-6.422 1.453c-3.137.445-5.465 1.562-5.465 4.25c0 2.57 2.078 3.89 5 3.89c4.227 0 6.887-2.804 6.887-6.097m0 0\\\"/>\"\n\t\t},\n\t\t\"sentry\": {\n\t\t\t\"body\": \"<path fill=\\\"#362d59\\\" d=\\\"M74.012 13.328a11.939 11.939 0 0 0-20.45 0L36.734 42.145a82.34 82.34 0 0 1 45.383 68.164H70.309a70.78 70.78 0 0 0-39.527-58.09l-15.57 26.926a40.717 40.717 0 0 1 23.598 31.113H11.68a1.94 1.94 0 0 1-1.582-2.836l7.516-12.781a27.362 27.362 0 0 0-8.59-4.859l-7.445 12.781c-1.562 2.684-1.988 5.887-1.172 8.883s2.789 5.547 5.492 7.07a11.9 11.9 0 0 0 5.781 1.535h37.152a49.63 49.63 0 0 0-20.453-44.258l5.902-10.227a61.04 61.04 0 0 1 26.336 54.484H92.09a91.74 91.74 0 0 0-41.953-81.305l11.938-20.453a1.97 1.97 0 0 1 2.684-.691c1.355.742 51.879 88.898 52.828 89.922a1.95 1.95 0 0 1-.035 1.949a1.96 1.96 0 0 1-1.707.941h-12.168a103.89 103.89 0 0 1 0 9.742h12.219a11.73 11.73 0 0 0 11.813-11.789a11.47 11.47 0 0 0-1.582-5.832zm0 0\\\"/>\"\n\t\t},\n\t\t\"sentry-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#362d59\\\" d=\\\"M18.578 51.477a2.99 2.99 0 0 0-2.566-1.449a3 3 0 0 0-2.57 1.449l-4.223 7.234a20.668 20.668 0 0 1 11.395 17.105h-2.969a17.76 17.76 0 0 0-9.922-14.582l-3.906 6.762a10.22 10.22 0 0 1 5.926 7.809H2.934a.484.484 0 0 1-.391-.25a.48.48 0 0 1-.008-.465l1.883-3.207a6.76 6.76 0 0 0-2.152-1.219L.398 73.875a2.9 2.9 0 0 0-.297 2.227a2.93 2.93 0 0 0 1.379 1.777a2.97 2.97 0 0 0 1.453.383h9.32A12.452 12.452 0 0 0 7.12 67.157l1.48-2.566a15.31 15.31 0 0 1 6.613 13.672h7.902a23.04 23.04 0 0 0-10.531-20.406l2.996-5.133a.486.486 0 0 1 .672-.172c.34.188 13.02 22.313 13.258 22.57c.086.152.082.336-.012.488s-.25.238-.426.234H26.02c.039.816.039 1.629 0 2.445h3.07a2.961 2.961 0 0 0 2.102-.859a2.96 2.96 0 0 0 .863-2.098c0-.52-.137-1.023-.398-1.465zM79.75 68.176l-9.473-12.23h-2.359V72.34h2.391V59.773l9.742 12.566h2.094V55.945H79.75zm-23.855-3.043h8.492V63h-8.496v-4.934h9.582v-2.129h-12.02V72.34h12.141v-2.129h-9.703zm-9.984-2.078c-3.309-.797-4.23-1.426-4.23-2.953c0-1.371 1.215-2.305 3.023-2.305a7.764 7.764 0 0 1 4.539 1.641l1.281-1.816a9.02 9.02 0 0 0-5.777-1.926c-3.242 0-5.508 1.926-5.508 4.664c0 2.953 1.922 3.973 5.426 4.824c3.121.719 4.078 1.387 4.078 2.883s-1.285 2.418-3.27 2.418a7.906 7.906 0 0 1-5.324-2.09l-1.445 1.727a10.2 10.2 0 0 0 6.688 2.469c3.52 0 5.773-1.891 5.773-4.816c-.016-2.48-1.48-3.805-5.25-4.719zm79.648-7.109l-4.934 7.699l-4.902-7.699h-2.863l6.473 9.914v6.484h2.469v-6.562l6.516-9.836zM84.082 58.16h5.367v14.184h2.469V58.16h5.371v-2.215H84.09zm24.602 7.781c2.48-.687 3.855-2.418 3.855-4.898c0-3.148-2.305-5.133-6.023-5.133h-7.289v16.422h2.438v-5.891h4.141l4.16 5.902h2.848l-4.492-6.297zm-7.023-1.605v-6.223h4.602c2.398 0 3.773 1.137 3.773 3.105s-1.469 3.117-3.75 3.117zm0 0\\\"/>\"\n\t\t},\n\t\t\"sequelize\": {\n\t\t\t\"body\": \"<path fill=\\\"#2f406a\\\" d=\\\"M101.84 41.72V86l-37.66 22.32l-.34.31v16.57l.34.32l53-30.64V33.12l-.5-.12l-15 8.36l.08.36\\\"/><path fill=\\\"#2379bd\\\" d=\\\"m26.4 86.4l37.78 21.92v17.2l-53.4-30.76V33.24l.55-.08l14.91 8.67l.16.5z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m26.4 42.32l-15.62-9.08L64.06 2.48l53.16 30.64l-15.38 8.6l-37.78-21.56z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m63.53 81.33l-.41-.42V64.27l.41-.21l.1-.41l14.27-8.32l.44.1v17.15l-14.8 8.76\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M48.48 73.11V55.3h.41l14.51 8.45l.12.33v17.25z\\\"/><path fill=\\\"#03afef\\\" d=\\\"M63.29 46.54L48.48 55.3l15.05 8.76l14.8-8.64z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m45.11 92.19l-.41-.42V75.13l.41-.21l.1-.41l14.27-8.32l.44.1v17.14l-14.8 8.76\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M30.06 84V66.16h.41L45 74.59l.12.33v17.27z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m44.86 57.4l-14.8 8.76l15.05 8.76l14.8-8.64z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m83.27 92.6l-.41-.42V75.54l.41-.21l.1-.41l14.27-8.32l.44.1v17.14z\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M68.22 84.38V66.57h.41L83.15 75l.12.33V92.6z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m83 57.81l-14.8 8.76l15.05 8.76l14.8-8.64z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m64.85 103.46l-.41-.42V86.4l.41-.21l.1-.41l14.27-8.32l.44.1V94.7l-14.8 8.76\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M49.8 95.23v-17.8h.41l14.51 8.45l.12.33v17.27z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m64.6 68.67l-14.8 8.76l15.05 8.76l14.8-8.64z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m63.53 57.73l-.41-.42V40.67l.41-.21l.1-.41l14.27-8.33l.44.1V49l-14.8 8.76\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M48.48 49.5V31.7h.41l14.51 8.45l.12.33v17.25z\\\"/><path fill=\\\"#03afef\\\" d=\\\"M63.29 22.94L48.48 31.7l15.05 8.76l14.8-8.64z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m45.11 68.59l-.41-.42V51.53l.41-.21l.1-.41l14.27-8.32l.44.1v17.14l-14.8 8.76\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M30.06 60.36V42.55h.41L45 51l.12.33v17.26z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m44.86 33.8l-14.8 8.76l15.05 8.76l14.8-8.64z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m83.27 69l-.41-.42V51.94l.41-.21l.1-.41L97.64 43l.44.1v17.14z\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M68.22 60.77V43h.41l14.51 8.45l.12.33V69z\\\"/><path fill=\\\"#03afef\\\" d=\\\"M83 34.21L68.22 43l15.05 8.76l14.8-8.64z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m64.85 79.85l-.41-.42V62.79l.41-.21l.1-.41l14.27-8.32l.44.1v17.14l-14.8 8.76\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M49.8 71.63V53.82h.41l14.51 8.45l.12.33v17.25z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m64.6 45.06l-14.8 8.76l15.05 8.76l14.8-8.64z\\\"/>\"\n\t\t},\n\t\t\"sequelize-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#2f406a\\\" d=\\\"M32.51 56.94V71l-11.94 7l-.11.1v5.3l.11.1l16.81-9.71V54.21h-.16l-4.74 2.65v.11\\\"/><path fill=\\\"#2379bd\\\" d=\\\"m8.59 71.1l12 6.95v5.45L3.64 73.75v-19.5h.17L8.54 57l.05.16v14\\\"/><path fill=\\\"#03afef\\\" d=\\\"m8.59 57.13l-5-2.88l16.94-9.75l16.85 9.71l-4.87 2.73l-12-6.83l-11.94 7\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m20.36 69.49l-.13-.13v-5.27l.13-.07v-.13l4.52-2.64h.14v5.44l-4.69 2.78\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M15.59 66.89v-5.65h.13l4.6 2.68v5.58l-4.77-2.61\\\"/><path fill=\\\"#03afef\\\" d=\\\"m20.28 58.47l-4.69 2.78L20.36 64l4.69-2.74l-4.77-2.82\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m14.52 72.94l-.13-.13v-5.28l.13-.07v-.13l4.52-2.64h.14v5.44l-4.69 2.78\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M9.75 70.33v-5.65h.13l4.6 2.68v5.58z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m14.45 61.91l-4.7 2.77l4.77 2.78l4.69-2.74l-4.77-2.82\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m26.62 73.07l-.13-.13v-5.28l.13-.07v-.13l4.52-2.64h.14v5.44l-4.69 2.78\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M21.85 70.46v-5.65H22l4.6 2.68v5.58l-4.77-2.61\\\"/><path fill=\\\"#03afef\\\" d=\\\"m26.54 62l-4.69 2.78l4.77 2.78l4.69-2.74z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m20.78 76.51l-.13-.13V71.1l.13-.07v-.13l4.52-2.64h.14v5.44l-4.69 2.78\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M16 73.9v-5.64h.13l4.6 2.68v5.58z\\\"/><path fill=\\\"#03afef\\\" d=\\\"M20.7 65.48L16 68.26L20.78 71l4.69-2.74z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m20.36 62l-.13-.13v-5.26l.13-.07v-.13l4.52-2.64h.14v5.44z\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M15.59 59.41v-5.65h.13l4.6 2.68V62l-4.77-2.61\\\"/><path fill=\\\"#03afef\\\" d=\\\"m20.28 51l-4.69 2.78l4.77 2.78l4.69-2.74z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m14.52 65.45l-.13-.13V60l.13-.07v-.13l4.52-2.64h.14v5.44l-4.69 2.78\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M9.75 62.85V57.2h.13l4.6 2.68v5.58z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m14.45 54.43l-4.7 2.77l4.77 2.8l4.69-2.74l-4.77-2.82\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m26.62 65.58l-.13-.13v-5.27l.13-.07v-.13l4.52-2.64h.14v5.44l-4.69 2.78\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M21.85 63v-5.67H22L26.58 60v5.58z\\\"/><path fill=\\\"#03afef\\\" d=\\\"m26.54 54.56l-4.69 2.78l4.77 2.78l4.69-2.74z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"m20.78 69l-.13-.13v-5.25l.13-.07v-.13l4.52-2.64h.14v5.44z\\\"/><path fill=\\\"#2379bd\\\" d=\\\"M16 66.42v-5.65h.13l4.6 2.68V69z\\\"/><path fill=\\\"#03afef\\\" d=\\\"M20.7 58L16 60.77l4.77 2.78l4.69-2.74z\\\"/><path fill=\\\"#2f406a\\\" d=\\\"M45.82 56.56q-3.15 0-3.15 2.37a2 2 0 0 0 .72 1.82a9.66 9.66 0 0 0 2.94 1A7.47 7.47 0 0 1 49.47 63a3.24 3.24 0 0 1 .92 2.59q0 4.47-4.64 4.47a26 26 0 0 1-3.84-.36l-.76-.1l.17-1.34a36 36 0 0 0 4.35.38q3.11 0 3.11-2.92A2 2 0 0 0 48.1 64a6.64 6.64 0 0 0-2.55-.87a8.59 8.59 0 0 1-3.49-1.35A3.38 3.38 0 0 1 41 59q0-3.91 4.68-3.91a25.83 25.83 0 0 1 3.68.31l.71.11l-.07 1.4a39.48 39.48 0 0 0-4.18-.35m14.24 12.03l.61-.06v1.24a30.21 30.21 0 0 1-4.1.34a3.69 3.69 0 0 1-3.21-1.31a7 7 0 0 1-.95-4.08q0-5.52 4.39-5.52a4 4 0 0 1 3.2 1.17a5.53 5.53 0 0 1 1.05 3.73L61 65.29h-6.95a4.31 4.31 0 0 0 .63 2.58a2.58 2.58 0 0 0 2.19.84q1.57 0 3.19-.12M59.49 64a4.56 4.56 0 0 0-.62-2.73a2.39 2.39 0 0 0-2-.8a2.58 2.58 0 0 0-2.1.84A4.24 4.24 0 0 0 54 64zM67 70.1a3.52 3.52 0 0 1-3-1.24a7.29 7.29 0 0 1-.91-4.2a6.44 6.44 0 0 1 1.09-4.22q1.09-1.26 3.86-1.26l3.51.21v15.16H70v-5.14a6.89 6.89 0 0 1-3 .69m1-9.56a3.09 3.09 0 0 0-2.68 1a5.49 5.49 0 0 0-.7 3.14a6.14 6.14 0 0 0 .58 3.09a2.1 2.1 0 0 0 1.94.93a6.66 6.66 0 0 0 2.42-.46l.38-.15v-7.42q-1.27-.12-1.94-.12zm13.12-1.15h1.58v10.5h-1.58v-.73a6 6 0 0 1-3.12.94q-2.14 0-2.85-1.11a8.38 8.38 0 0 1-.7-4.12v-5.48H76v5.46a7.72 7.72 0 0 0 .4 3.07q.4.78 1.81.78a5.21 5.21 0 0 0 1.41-.2a6.42 6.42 0 0 0 1.09-.39l.38-.19zm11.74 9.2l.61-.06v1.24a30.21 30.21 0 0 1-4.1.34a3.69 3.69 0 0 1-3.21-1.31a7 7 0 0 1-.95-4.08q0-5.52 4.39-5.52a4 4 0 0 1 3.17 1.19a5.53 5.53 0 0 1 1.05 3.73l-.08 1.2h-6.89a4.31 4.31 0 0 0 .63 2.58a2.58 2.58 0 0 0 2.19.84q1.57-.03 3.19-.15M92.29 64a4.56 4.56 0 0 0-.62-2.73a2.39 2.39 0 0 0-2-.8a2.58 2.58 0 0 0-2.1.84a4.24 4.24 0 0 0-.74 2.69zm4.16 5.89V54.81H98v15.08zM101.17 57v-1.81h1.57V57zm0 12.87V59.39h1.57v10.5zm3.97-9.07v-1.41h7.79v1.41l-5.88 7.69h5.88v1.41h-7.79v-1.42L111 60.8zm17.27 7.79l.61-.06v1.24a30.21 30.21 0 0 1-4.1.34a3.69 3.69 0 0 1-3.21-1.31a7 7 0 0 1-.95-4.08q0-5.52 4.39-5.52a4 4 0 0 1 3.17 1.19a5.53 5.53 0 0 1 1.05 3.73l-.08 1.2h-6.89a4.31 4.31 0 0 0 .63 2.58a2.58 2.58 0 0 0 2.19.84q1.57-.03 3.19-.15m-.57-4.59a4.56 4.56 0 0 0-.62-2.73a2.39 2.39 0 0 0-2-.8a2.58 2.58 0 0 0-2.1.84a4.24 4.24 0 0 0-.72 2.69z\\\"/>\"\n\t\t},\n\t\t\"shopware\": {\n\t\t\t\"body\": \"<g fill=\\\"#179EFF\\\"><path d=\\\"M99.85 115.41c-9.96 6.89-21.99 10.97-34.98 11.11c-34.14.37-62.64-27.08-63.49-61.22C.5 29.87 28.95.88 64.18.88c15.81 0 30.25 5.84 41.28 15.47c1 .87.27 2.5-1.04 2.35c-22.07-2.59-43.67-.18-57.34 10.43C31.3 41.38 29.8 59.97 38.9 76.34c12.84 23.1 41.28 23.33 60.95 36.82c.79.54.79 1.71 0 2.25\\\"/><path d=\\\"M127 63.7c0 8.54-1.7 16.68-4.79 24.1c-15.81-8.45-32.64-14.21-40.19-17.03c-8.92-3.35-16.73-12.65-11.52-20.82s18.21-9.66 34.2-5.58c6.82 1.75 13.13 6.22 18.88 11.55c2.15 2 3.42 4.79 3.43 7.73c-.01.02-.01.03-.01.05\\\"/></g>\"\n\t\t},\n\t\t\"shopware-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#189EFF\\\" d=\\\"M38.91 63.74c-1.13-.48-2.05-.94-2.05-1.66c0-.5.58-1.01 1.57-1.01c.84.01 1.67.2 2.43.56c.26.14.59.04.74-.22l.37-.79c.13-.3.03-.66-.24-.84a6.306 6.306 0 0 0-3.31-.84c-2.74 0-3.88 1.66-3.88 3.08c0 1.84 1.45 2.79 3.18 3.59c1.57.69 2.43 1.2 2.43 1.95c0 .65-.53 1.1-1.47 1.1c-1 0-1.98-.29-2.82-.84a.542.542 0 0 0-.74.14l-.5 1.06c-.09.21-.01.46.19.58c1.1.75 2.4 1.16 3.73 1.16c2.53 0 4.05-1.54 4.05-3.31c-.04-2.05-1.61-2.82-3.68-3.71\\\"/><g fill=\\\"#189EFF\\\"><path d=\\\"M23.9 73.97c-1.16-.87-2.84-1.52-4.65-2.21c-2.14-.82-4.58-1.76-6.38-3.23a7.625 7.625 0 0 1-3.06-6.33a7.07 7.07 0 0 1 2.82-5.8c2.07-1.64 5.2-2.48 9.05-2.48c1.01 0 2.03.06 3.03.19c.09.01.17-.04.19-.12c.05-.07.02-.17-.05-.22c-5.44-4.9-13.81-4.46-18.7.98s-4.45 13.82.99 18.71c2.43 2.19 5.58 3.4 8.85 3.4c2.84.01 5.6-.9 7.87-2.6c.04-.04.07-.09.07-.15c.03-.04.01-.09-.03-.14\\\"/><path d=\\\"M29.19 62.42c0-.05-.03-.1-.07-.12c-2.77-2.29-5.01-3.23-7.73-3.23c-1.44 0-2.55.29-3.31.87c-.63.47-1 1.21-.99 2c0 2.26 2.8 3.31 6 4.53c1.7.59 3.36 1.31 4.96 2.14c.03.02.06.02.1.02c.03 0 .05 0 .07-.02c.06-.02.1-.07.12-.12c.6-1.54.91-3.18.91-4.84c0-.41-.02-.82-.06-1.23\\\"/></g><path fill=\\\"#189EFF\\\" d=\\\"M105.34 70.67c.32-.02.57-.28.58-.6v-5.75c0-2.94-.37-5.22-4.14-5.22c-1.38-.01-2.76.22-4.07.67c-.29.07-.47.36-.4.64c0 .02.01.04.02.05l.24.96c.03.3.3.52.6.49c.02 0 .04-.01.06-.01c1.07-.33 2.19-.51 3.31-.55c1.49 0 1.95.84 1.9 2.72c-.78-.23-1.58-.35-2.38-.37c-3.03 0-4.72 1.64-4.72 3.8c0 2.46 1.57 3.31 3.78 3.31c1.81 0 3.68-.03 4.46-.07zm-1.95-2.09c-.37.58-1.64.43-2.74.41c-1.23-.02-1.84-.46-1.84-1.52c0-1.23 1.06-1.95 2.43-1.95c.73-.01 1.46.13 2.14.41v2.65zm21.26-9.61c.75 0 1.35-.6 1.35-1.35c0-.75-.6-1.35-1.35-1.35c-.75 0-1.35.6-1.35 1.35c0 .75.6 1.35 1.35 1.35c-.01 0 0 0 0 0m0-2.48c.64-.01 1.16.5 1.18 1.13c.01.64-.5 1.17-1.13 1.18c-.64.01-1.16-.49-1.18-1.13v-.02c-.01-.63.49-1.14 1.11-1.16z\\\"/><path fill=\\\"#189EFF\\\" d=\\\"M124.19 58.32h.12c.03 0 .05-.02.05-.05v-.48h.29l.24.51c0 .02.03.02.05.02h.14c.03 0 .05-.02.03-.05l-.26-.48c.16-.06.27-.2.29-.37a.414.414 0 0 0-.4-.43h-.55c-.03 0-.05.02-.05.05v1.28c.03-.02.03 0 .05 0m.17-1.17h.35c.13 0 .24.11.24.24s-.11.24-.24.24h-.34zm-74.28 1.82c-1.19.02-2.34.44-3.27 1.18V55.1a.578.578 0 0 0-.53-.53h-1.37c-.29.01-.52.24-.53.53v15.17c0 .29.24.53.53.53h1.35c.28.02.53-.18.55-.46v-7.39a3.374 3.374 0 0 1 2.96-1.64c1.47 0 2.26 1.1 2.26 2.94v5.99c0 .29.24.53.53.53h1.37c.29-.01.52-.24.53-.53v-5.93c0-3.07-1.18-5.34-4.38-5.34m28.7 5.47c-.15-3.86-1.76-5.47-5.47-5.47c-1.43.03-2.85.25-4.21.67c-.39.17-.67.37-.67.63v14.42c0 .29.24.53.53.53h1.13c.28.03.54-.17.57-.46v-4.15c1.18.18 2.37.24 3.57.19c2.62-.07 4.38-1.98 4.53-5.2c.03-.48.03-.96 0-1.44v.27zm-2.36 1.18c-.05 2.21-.67 3.15-2.53 3.25a26.2 26.2 0 0 1-3.06-.2c-.1-.02-.14-.07-.14-.14v-6.96c0-.06.04-.12.11-.12h.02c.82-.19 1.66-.3 2.5-.31c2.24 0 3.01.34 3.11 3.15zm18.59-6.41h-1.04c-.29 0-.74 0-.86.34l-1.81 6.53h-.05l-3.04-6.84a.486.486 0 0 0-.48-.27h-.17c-.19 0-.37.1-.46.27l-3.06 6.81h-.05l-1.84-6.5a.495.495 0 0 0-.5-.34h-1.51c-.39 0-.56.29-.39.65l3.31 10.67c.07.19.26.31.46.29h.14c.19.02.37-.09.43-.27l3.49-7.7h.05l3.47 7.68c.1.17.28.27.48.27h.1c.21.02.41-.09.51-.29l3.23-10.67c.19-.34-.03-.63-.41-.63m18.06-.09h-.46c-.58 0-1.16.03-1.69.05c-1.01.05-1.61.12-2.05.17l-.6.07c-.18.01-.34.1-.46.24a.37.37 0 0 0-.1.26v10.35c0 .29.24.53.53.53h1.13c.46 0 .79-.05.79-.53v-8.62c0-.07.1-.14.17-.19c.26-.17.94-.29 2.29-.29h.3c.32.02.64.09.94.22c.25.12.56.02.68-.23c.01-.01.01-.02.01-.03l.58-.96c.38-.75-.98-1.04-2.06-1.04m7.77-.15c-3.4 0-5.64 2.72-5.64 5.89c0 3.17 2.24 5.92 5.66 5.92c1.52.05 3.01-.44 4.21-1.38c.33-.29.24-.51.05-.77l-.67-1.03c-.19-.29-.41-.22-.68-.05c-.79.63-1.76.96-2.77.96a3.31 3.31 0 0 1-3.37-3.08h7.81c.27-.01.49-.22.51-.48c.02-.19.05-.58.05-.79c.08-2.78-2.1-5.09-4.88-5.18c-.09-.01-.18-.01-.28-.01m-3.11 4.65c.17-1.42 1.25-2.58 3.03-2.58a2.674 2.674 0 0 1 2.79 2.56v.02zm-51.28-1.15c-.24-.69-.6-1.33-1.08-1.88a4.81 4.81 0 0 0-1.66-1.2c-.73-.29-1.5-.44-2.28-.43c-.78-.01-1.56.14-2.28.43c-.63.28-1.2.69-1.66 1.2a5.98 5.98 0 0 0-1.08 1.88a7.847 7.847 0 0 0 0 4.84c.24.68.61 1.3 1.08 1.84c.46.52 1.02.93 1.66 1.2c.72.3 1.5.45 2.28.45c.78.01 1.56-.14 2.29-.43c.63-.28 1.2-.69 1.66-1.2c.47-.54.84-1.17 1.08-1.84c.52-1.57.52-3.27 0-4.84zm-5.08 6.4c-2.05 0-3.08-1.74-3.08-3.88c0-2.14 1.03-3.88 3.08-3.88s3.08 1.74 3.08 3.88c.01 2.14-1.03 3.88-3.08 3.88\\\"/>\"\n\t\t},\n\t\t\"shotgrid\": {\n\t\t\t\"body\": \"<circle cx=\\\"64\\\" cy=\\\"64\\\" r=\\\"62\\\"/><path fill=\\\"#FFF\\\" d=\\\"m36 70.7l-15.4 1.5c.9 3.9 2.9 7 6.1 9.2c3.1 2.1 8.4 3.2 15.9 3.2c5.2 0 9.4-.7 12.5-2c3-1.3 5.3-3.1 6.7-5.4c1.4-2.3 2.1-4.6 2.1-7c0-2.4-.7-4.5-2-6.5s-3.3-3.5-5.8-4.6c-2.5-1.1-6.4-1.9-11.6-2.5c-3.4-.4-5.6-.9-6.7-1.4c-1-.5-1.5-1.3-1.5-2.3c0-.9.4-1.7 1.2-2.3c.8-.6 2.1-.9 3.9-.9c1.7 0 3.2.4 4.4 1.2c.9.6 1.5 1.6 1.9 2.9l14.8-1.5c-1-2.7-2.3-4.8-3.9-6.4c-1.5-1.6-3.5-2.8-5.8-3.5c-2.3-.8-5.9-1.1-10.8-1.1c-4.6 0-8.3.5-11 1.5c-2.7 1-4.9 2.4-6.4 4.4c-1.6 2-2.3 4.3-2.3 7c0 2.5.7 4.7 2.2 6.7c1.4 2 3.2 3.3 5.3 4.1c2.1.8 5.9 1.7 11.3 2.7c3.6.6 5.9 1.2 6.7 1.6c1.2.6 1.7 1.5 1.7 2.7c0 1-.4 1.9-1.3 2.5c-1.2.9-2.8 1.4-4.9 1.4c-1.9 0-3.4-.4-4.6-1.2c-1.2-.8-2.1-2.1-2.7-4m31.1-8.2c0-12.3 9.7-22.2 23.2-22.2c6.3 0 11 1.5 13.9 2.8l.2.1v10.6l-.6-.3c-2.7-1.2-6.8-2.8-12.6-2.8c-4 0-7.1 1.4-9.2 3.5c-2.1 2.1-3.2 5-3.2 8.1c0 6.3 4.4 11.7 11.8 11.7c1.4 0 2.9-.2 4-.4V62.8h11.2v18.5l-.2.1c-4.1 2-9.7 3.2-15 3.2c-13.9.1-23.5-9.6-23.5-22.1\\\"/>\"\n\t\t},\n\t\t\"shotgrid-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#FFF\\\" d=\\\"m8.1 67.1l-6.1.6c.4 1.6 1.2 2.8 2.4 3.6c1.2.9 3.3 1.3 6.3 1.3c2.1 0 3.7-.3 4.9-.8c1.2-.5 2.1-1.2 2.7-2.1c.6-.9.8-1.8.8-2.8c0-.9-.3-1.8-.8-2.6S17 62.9 16 62.5c-1-.4-2.5-.8-4.6-1c-1.4-.2-2.2-.4-2.6-.6c-.4-.2-.6-.5-.6-.9s.2-.7.5-.9c.3-.3.8-.4 1.5-.4s1.3.2 1.8.5c.4.2.6.6.8 1.2l5.9-.6c-.4-1.1-.9-1.9-1.5-2.6c-.6-.6-1.4-1.1-2.3-1.4c-.9-.3-2.3-.4-4.3-.4c-1.8 0-3.3.2-4.4.6c-1.1.4-1.9 1-2.6 1.8c-.6.8-.9 1.7-.9 2.8c0 1 .3 1.9.9 2.6c.6.8 1.3 1.3 2.1 1.6c.8.3 2.3.7 4.5 1.1c1.4.3 2.3.5 2.7.6c.5.2.7.6.7 1.1c0 .4-.2.7-.5 1c-.5.4-1.1.5-1.9.5c-.8 0-1.4-.2-1.8-.5c-.7-.3-1-.8-1.3-1.5M37.7 64c0-4.7 3.8-8.6 9.1-8.6s9.1 3.8 9.1 8.6s-3.8 8.6-9.1 8.6c-5.2 0-9.1-3.8-9.1-8.6m32.5 0c0-4.8 3.9-8.6 9.2-8.6c2.5 0 4.4.6 5.5 1.1h.1v4.1l-.2-.1c-1.1-.5-2.7-1.1-5-1.1c-1.6 0-2.8.5-3.6 1.3c-.8.8-1.3 1.9-1.3 3.1c0 2.4 1.7 4.5 4.7 4.5c.5 0 1.1-.1 1.6-.2v-4.2h4.5v7.2h-.1c-1.6.8-3.9 1.2-6 1.2c-5.6.3-9.4-3.5-9.4-8.3m-49.4-8.2h4.6V62h5.9v-6.2H36v16.5h-4.7v-6.5h-5.9v6.5h-4.6zm35.5 0H70v3.8h-4.5v12.7h-4.7V59.6h-4.5zm31.4 0H94c2 0 3.8.5 5 1.4c1.3 1 2 2.4 2 4.2c0 2.3-1.2 3.9-3 4.7l3.5 6.1h-4.9L93.9 67h-1.6v5.3h-4.6zm15.3 0h4.6v16.5H103zm7.4 0h5.8c3 0 5.4.9 7.1 2.3c1.7 1.5 2.6 3.5 2.6 5.9c0 2.4-.9 4.5-2.6 5.9c-1.7 1.5-4.1 2.3-7.1 2.3h-5.9V55.8zm-63.5 3.8c-2.7 0-4.5 2.1-4.5 4.5s1.8 4.5 4.5 4.5s4.4-2 4.4-4.5s-1.8-4.5-4.4-4.5m45.3 0v3.8h2c.6 0 1.2-.1 1.5-.4c.4-.3.6-.8.6-1.5s-.2-1.1-.6-1.4c-.4-.3-.9-.5-1.5-.5zm22.8 8.9h1.2c1.7 0 3-.5 3.8-1.3c.9-.8 1.3-1.9 1.3-3.1c0-1.2-.4-2.3-1.3-3.1c-.9-.8-2.1-1.3-3.8-1.3H115z\\\"/>\"\n\t\t},\n\t\t\"sketch\": {\n\t\t\t\"body\": \"<path fill=\\\"#fdb300\\\" d=\\\"M27.93 10.334L64 6.547l36.07 3.788L128 47.517l-64 73.936L0 47.517Z\\\"/><path fill=\\\"#ea6c00\\\" d=\\\"M25.925 47.517L64 121.453L0 47.517Zm76.15 0L64 121.453l64-73.936Z\\\"/><path fill=\\\"#fdad00\\\" d=\\\"M25.925 47.517h76.15L64 121.453Z\\\"/><path fill=\\\"#fdd231\\\" d=\\\"m64 6.547l-36.07 3.787l-2.005 37.183Zm0 0l36.07 3.787l2.005 37.183z\\\"/><path fill=\\\"#fdad00\\\" d=\\\"m128 47.517l-27.93-37.183l2.005 37.183z\\\"/><path fill=\\\"#feeeb7\\\" d=\\\"m64 6.547l-38.075 40.97h76.15z\\\"/><path fill=\\\"#fdad00\\\" d=\\\"m0 47.517l27.93-37.183l-2.005 37.183Z\\\"/>\"\n\t\t},\n\t\t\"sketch-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M43.408 68.698v-.325h-2.773v.366c.173 4.125 2.946 6.857 7.893 6.857c4.714 0 7.924-2.448 7.924-6.156a5.08 5.08 0 0 0-2.032-4.399a10.707 10.707 0 0 0-4.256-1.605l-.386-.091l-.437-.092c-3.667-.772-4.836-1.442-4.836-3.433c0-1.991 1.687-3.373 4.51-3.373a4.216 4.216 0 0 1 4.562 4.317v.346h2.702v-.356c-.101-4.124-2.864-6.908-7.334-6.908s-7.294 2.652-7.294 6.096a4.876 4.876 0 0 0 2.031 4.327a10.697 10.697 0 0 0 4.267 1.463l.315.061l.315.061a11.175 11.175 0 0 1 3.606 1.087a2.773 2.773 0 0 1 1.463 2.641c0 2.184-1.839 3.424-5.08 3.424c-3.24 0-4.946-1.544-5.16-4.308M62.222 53.46v-.355H59.5V75.18h2.732v-4.145l2.875-2.804l5.13 6.817l.112.142h3.393l-.437-.569l-6.257-8.249l5.78-5.75l.61-.61h-3.719l-.101.102l-7.386 7.437zm25.519 15.035h.335v-1.128c0-4.46-2.956-7.75-7.324-7.75s-7.467 3.504-7.467 7.923c0 4.42 2.966 7.954 7.497 7.954a7.111 7.111 0 0 0 7.03-5.079l.142-.457h-2.793l-.082.234a4.328 4.328 0 0 1-4.216 2.804a4.704 4.704 0 0 1-4.754-4.47zm-11.55-2.316a4.602 4.602 0 0 1 4.622-3.982a4.389 4.389 0 0 1 4.52 3.982zm20.906-3.759h.356v-2.417H94.12v-4.125h-2.692v4.125h-2.804v2.417h2.804v8.524c0 2.793 1.452 4.307 4.063 4.307a8.808 8.808 0 0 0 1.209-.071l.427-.082l.264-.07v-2.53l-.427.091h-.386a5.994 5.994 0 0 1-.752.071h-.07c-1.17 0-1.636-.548-1.636-1.92v-8.32zm8.493 13.115a6.969 6.969 0 0 0 7.111-5.78l.081-.427h-2.753l-.07.264a4.267 4.267 0 0 1-4.38 3.404c-2.803 0-4.733-2.215-4.733-5.395c0-3.18 1.93-5.414 4.734-5.414a4.267 4.267 0 0 1 4.378 3.403l.071.264h2.733l-.081-.427a6.969 6.969 0 0 0-7.111-5.78c-4.389 0-7.498 3.525-7.498 7.954c0 4.43 3.13 7.934 7.508 7.934zm12.19-22.034v-.356h-2.732V75.18h2.793v-8.9a3.779 3.779 0 0 1 3.993-4.134c2.296 0 3.454 1.33 3.454 3.85v9.184H128V65.6c0-3.566-2.204-5.933-5.841-5.933a5.984 5.984 0 0 0-4.318 1.666z\\\"/><path fill=\\\"#fdb300\\\" d=\\\"m7.111 50.403l9.143-.955l9.143.955l7.11 9.427l-16.253 18.733L0 59.83Z\\\"/><path fill=\\\"#ea6c00\\\" d=\\\"m6.573 59.83l9.65 18.733L0 59.83Zm19.301 0l-9.65 18.733L32.447 59.83z\\\"/><path fill=\\\"#fdad00\\\" d=\\\"M6.573 59.83h19.301l-9.65 18.733z\\\"/><path fill=\\\"#fdd231\\\" d=\\\"m16.224 49.438l-9.143.964l-.508 9.428Zm0 0l9.142.964l.508 9.428z\\\"/><path fill=\\\"#fdad00\\\" d=\\\"m32.447 59.83l-7.08-9.428l.507 9.428zM0 59.83l7.08-9.428l-.507 9.428z\\\"/><path fill=\\\"#feeeb7\\\" d=\\\"M16.224 49.438L6.573 59.83h19.301Z\\\"/>\"\n\t\t},\n\t\t\"slack\": {\n\t\t\t\"body\": \"<path fill=\\\"#de1c59\\\" d=\\\"M27.255 80.719c0 7.33-5.978 13.317-13.309 13.317C6.616 94.036.63 88.049.63 80.719s5.987-13.317 13.317-13.317h13.309zm6.709 0c0-7.33 5.987-13.317 13.317-13.317s13.317 5.986 13.317 13.317v33.335c0 7.33-5.986 13.317-13.317 13.317c-7.33 0-13.317-5.987-13.317-13.317zm0 0\\\"/><path fill=\\\"#35c5f0\\\" d=\\\"M47.281 27.255c-7.33 0-13.317-5.978-13.317-13.309C33.964 6.616 39.951.63 47.281.63s13.317 5.987 13.317 13.317v13.309zm0 6.709c7.33 0 13.317 5.987 13.317 13.317s-5.986 13.317-13.317 13.317H13.946C6.616 60.598.63 54.612.63 47.281c0-7.33 5.987-13.317 13.317-13.317zm0 0\\\"/><path fill=\\\"#2eb57d\\\" d=\\\"M100.745 47.281c0-7.33 5.978-13.317 13.309-13.317c7.33 0 13.317 5.987 13.317 13.317s-5.987 13.317-13.317 13.317h-13.309zm-6.709 0c0 7.33-5.987 13.317-13.317 13.317s-13.317-5.986-13.317-13.317V13.946C67.402 6.616 73.388.63 80.719.63c7.33 0 13.317 5.987 13.317 13.317zm0 0\\\"/><path fill=\\\"#ebb02e\\\" d=\\\"M80.719 100.745c7.33 0 13.317 5.978 13.317 13.309c0 7.33-5.987 13.317-13.317 13.317s-13.317-5.987-13.317-13.317v-13.309zm0-6.709c-7.33 0-13.317-5.987-13.317-13.317s5.986-13.317 13.317-13.317h33.335c7.33 0 13.317 5.986 13.317 13.317c0 7.33-5.987 13.317-13.317 13.317zm0 0\\\"/>\"\n\t\t},\n\t\t\"slack-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"m45.773 71.379l1.266-2.945c1.367 1.023 3.18 1.554 4.973 1.554c1.328 0 2.16-.511 2.16-1.289c-.02-2.164-7.93-.469-7.988-5.906c-.02-2.758 2.425-4.887 5.89-4.887c2.059 0 4.117.512 5.586 1.68l-1.183 3.004c-1.344-.86-3.016-1.473-4.606-1.473c-1.082 0-1.793.512-1.793 1.164c.02 2.125 7.988.961 8.07 6.153c0 2.82-2.382 4.804-5.808 4.804c-2.508 0-4.813-.593-6.567-1.86m48.5-4.007a3.647 3.647 0 0 1-6.828-1.797a3.65 3.65 0 0 1 3.649-3.66c1.363 0 2.547.758 3.18 1.86l3.484-1.942c-1.305-2.328-3.813-3.926-6.664-3.926c-4.223 0-7.645 3.438-7.645 7.668s3.422 7.664 7.645 7.664a7.591 7.591 0 0 0 6.664-3.926l-3.485-1.94zM59.902 51.55h4.364v21.403h-4.364V51.551zm39.571 0v21.403h4.359v-6.418l5.18 6.418h5.586l-6.586-7.625l6.097-7.113h-5.343l-4.934 5.906v-12.57h-4.36zM77.23 67.414c-.632 1.043-1.937 1.816-3.406 1.816a3.65 3.65 0 0 1-3.648-3.656a3.653 3.653 0 0 1 3.648-3.66c1.469 0 2.774.816 3.406 1.879zm0-9.2v1.74c-.714-1.208-2.488-2.048-4.343-2.048c-3.832 0-6.848 3.395-6.848 7.645c0 4.254 3.016 7.687 6.848 7.687c1.855 0 3.629-.84 4.343-2.043v1.739h4.364v-14.72zm0 0\\\"/><path fill=\\\"#E01E5A\\\" d=\\\"M18.805 67.39c0 1.493-1.203 2.7-2.692 2.7a2.693 2.693 0 0 1-2.691-2.7a2.69 2.69 0 0 1 2.691-2.695h2.692v2.696zm1.343 0a2.69 2.69 0 0 1 2.692-2.695a2.69 2.69 0 0 1 2.691 2.696v6.746a2.693 2.693 0 0 1-2.691 2.699a2.693 2.693 0 0 1-2.692-2.7zm0 0\\\"/><path fill=\\\"#36C5F0\\\" d=\\\"M22.84 56.559a2.693 2.693 0 0 1-2.692-2.7a2.69 2.69 0 0 1 2.692-2.695a2.69 2.69 0 0 1 2.691 2.695v2.7zm0 1.371a2.69 2.69 0 0 1 2.691 2.695c0 1.492-1.203 2.7-2.691 2.7h-6.746a2.693 2.693 0 0 1-2.692-2.7a2.69 2.69 0 0 1 2.692-2.695zm0 0\\\"/><path fill=\\\"#2EB67D\\\" d=\\\"M33.625 60.625a2.69 2.69 0 0 1 2.691-2.695a2.69 2.69 0 0 1 2.692 2.695c0 1.492-1.203 2.7-2.692 2.7h-2.691zm-1.344 0c0 1.492-1.203 2.7-2.691 2.7a2.693 2.693 0 0 1-2.692-2.7v-6.766a2.69 2.69 0 0 1 2.692-2.695a2.69 2.69 0 0 1 2.691 2.695zm0 0\\\"/><path fill=\\\"#ECB22E\\\" d=\\\"M29.59 71.441a2.69 2.69 0 0 1 2.691 2.696a2.693 2.693 0 0 1-2.691 2.699a2.693 2.693 0 0 1-2.692-2.7v-2.695zm0-1.351a2.693 2.693 0 0 1-2.692-2.7a2.69 2.69 0 0 1 2.692-2.695h6.746a2.69 2.69 0 0 1 2.691 2.696a2.693 2.693 0 0 1-2.691 2.699zm0 0\\\"/>\"\n\t\t},\n\t\t\"socketio\": {\n\t\t\t\"body\": \"<g fill=\\\"#010101\\\" fill-rule=\\\"evenodd\\\"><path fill-rule=\\\"nonzero\\\" d=\\\"M63.951.001C28.696.001.001 28.696.001 63.951s28.695 63.95 63.95 63.95s63.95-28.695 63.95-63.95S99.206.001 63.95.001zm0 10.679c29.484 0 53.272 23.787 53.272 53.271c0 29.485-23.788 53.272-53.272 53.272c-29.484 0-53.272-23.787-53.272-53.272c0-29.484 23.788-53.271 53.272-53.271\\\" color=\\\"#000\\\"/><path d=\\\"M48.39 60.716c14.004-11.44 27.702-23.278 42.011-34.384c-7.505 11.533-15.224 22.913-22.729 34.445c-6.437.03-12.875.03-19.282-.061m11.838 6.376c6.468 0 12.905 0 19.342.092c-14.095 11.38-27.732 23.309-42.071 34.384c7.505-11.533 15.224-22.943 22.729-34.476\\\"/></g>\"\n\t\t},\n\t\t\"socketio-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\" fill-rule=\\\"evenodd\\\"><path fill=\\\"#010101\\\" fill-rule=\\\"nonzero\\\" d=\\\"M20.095 84.095C9.017 84.095 0 75.078 0 64s9.017-20.095 20.095-20.095S40.19 52.922 40.19 64s-9.017 20.095-20.095 20.095m0-3.356c9.265 0 16.74-7.474 16.74-16.739s-7.475-16.74-16.74-16.74A16.714 16.714 0 0 0 3.355 64c0 9.265 7.475 16.74 16.74 16.74z\\\" color=\\\"#000\\\"/><path fill=\\\"#010101\\\" d=\\\"M14.723 63.103c4.4-3.595 8.705-7.314 13.201-10.804c-2.358 3.624-4.784 7.2-7.142 10.823c-2.023.01-4.046.01-6.059-.019m3.72 2.004c2.032 0 4.055 0 6.078.029c-4.43 3.576-8.714 7.324-13.22 10.804c2.358-3.624 4.784-7.21 7.142-10.833\\\"/><path fill=\\\"#000\\\" d=\\\"M49.019 70.548c.825.459 2.04.78 3.393.78c2.958 0 4.54-1.468 4.54-3.485c-.023-1.651-.963-2.683-2.98-3.417c-1.422-.504-1.95-.848-1.95-1.559c0-.687.55-1.169 1.56-1.169c.985 0 1.88.367 2.361.642l.55-1.995c-.642-.344-1.72-.665-2.958-.665c-2.59 0-4.218 1.536-4.218 3.508c-.023 1.307.894 2.5 3.072 3.256c1.376.482 1.834.871 1.834 1.628c0 .734-.55 1.238-1.788 1.238c-1.009 0-2.224-.413-2.866-.802zm14.36-10.868c-3.37 0-5.777 2.247-5.777 5.915c0 3.577 2.43 5.755 5.594 5.755c2.843 0 5.732-1.834 5.732-5.938c0-3.393-2.224-5.732-5.549-5.732m-.068 2.063c1.926 0 2.705 1.995 2.705 3.738c0 2.247-1.123 3.829-2.728 3.829c-1.72 0-2.774-1.628-2.774-3.783c0-1.858.802-3.784 2.797-3.784m14.796 6.925c-.55.23-1.238.435-2.224.435c-1.926 0-3.416-1.306-3.416-3.6c-.023-2.04 1.26-3.622 3.416-3.622c1.009 0 1.674.23 2.132.436l.505-2.11c-.642-.298-1.697-.527-2.729-.527c-3.92 0-6.213 2.614-6.213 5.961c0 3.462 2.27 5.686 5.755 5.686c1.398 0 2.568-.298 3.164-.573zm4.341-13.85h-2.82v16.28h2.82v-3.806l.963-1.124l3.21 4.93h3.462l-4.723-6.603l4.127-4.563h-3.393l-2.706 3.6c-.298.39-.619.87-.894 1.307h-.046zm17.204 11.488a6.93 6.93 0 0 0 .092-1.193c0-2.453-1.192-5.434-4.815-5.434c-3.577 0-5.457 2.912-5.457 6.008c0 3.416 2.133 5.64 5.755 5.64c1.605 0 2.935-.298 3.898-.688l-.413-1.949c-.848.321-1.788.505-3.095.505c-1.788 0-3.37-.872-3.44-2.89zm-7.474-1.972c.114-1.147.848-2.729 2.59-2.729c1.88 0 2.34 1.697 2.316 2.729zm9.362-6.925v2.523h-1.605v2.109h1.605v5.25c0 1.468.275 2.477.871 3.119c.528.573 1.399.917 2.43.917c.895 0 1.629-.115 2.041-.275l-.045-2.155c-.253.068-.62.137-1.1.137c-1.079 0-1.445-.71-1.445-2.063v-4.93h2.682v-2.11h-2.682v-3.186zm7.872 13.94c1.055 0 1.743-.78 1.743-1.81c0-1.079-.71-1.812-1.743-1.812c-1.009 0-1.742.756-1.742 1.811c0 1.032.71 1.811 1.742 1.811m5.9-.252V59.931h-2.843v11.166zm-1.421-15.82c-.94 0-1.582.664-1.582 1.535c0 .849.619 1.514 1.56 1.514c.985 0 1.604-.665 1.604-1.514c-.023-.87-.619-1.536-1.582-1.536zm8.56 4.401c-3.37 0-5.778 2.248-5.778 5.916c0 3.577 2.43 5.755 5.595 5.755c2.843 0 5.732-1.834 5.732-5.938c0-3.394-2.224-5.733-5.549-5.733m-.069 2.064c1.926 0 2.706 1.995 2.706 3.737c0 2.247-1.124 3.83-2.729 3.83c-1.72 0-2.774-1.628-2.774-3.784c0-1.857.802-3.783 2.797-3.783\\\"/></g>\"\n\t\t},\n\t\t\"solidity\": {\n\t\t\t\"body\": \"<path d=\\\"M84.466 0L63.887 36.578H22.756L43.321 0z\\\" opacity=\\\".45\\\"/><path d=\\\"M63.887 36.576h41.145L84.468 0H43.323z\\\" opacity=\\\".6\\\"/><path d=\\\"m43.323 73.138l20.565-36.562L43.323 0L22.759 36.576z\\\" opacity=\\\".8\\\"/><path d=\\\"M43.521 128L64.1 91.424h41.145L84.666 128z\\\" opacity=\\\".45\\\"/><path d=\\\"M64.1 91.426H22.955l20.564 36.575h41.145z\\\" opacity=\\\".6\\\"/><path d=\\\"M84.666 54.864L64.102 91.426l20.564 36.575l20.579-36.575z\\\" opacity=\\\".8\\\"/>\"\n\t\t},\n\t\t\"solidjs\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconSolidjs0\\\" x1=\\\"27.5\\\" x2=\\\"152\\\" y1=\\\"3\\\" y2=\\\"63.5\\\" gradientTransform=\\\"translate(-3.22 1.507)scale(.80503)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".1\\\" stop-color=\\\"#76b3e1\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#dcf2fd\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#76b3e1\\\"/></linearGradient><linearGradient id=\\\"deviconSolidjs1\\\" x1=\\\"95.8\\\" x2=\\\"74\\\" y1=\\\"32.6\\\" y2=\\\"105.2\\\" gradientTransform=\\\"translate(-3.22 1.507)scale(.80503)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#76b3e1\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#4377bb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1f3b77\\\"/></linearGradient><linearGradient id=\\\"deviconSolidjs2\\\" x1=\\\"18.4\\\" x2=\\\"144.3\\\" y1=\\\"64.2\\\" y2=\\\"149.8\\\" gradientTransform=\\\"translate(-3.22 1.507)scale(.80503)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#315aa9\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#518ac8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#315aa9\\\"/></linearGradient><linearGradient id=\\\"deviconSolidjs3\\\" x1=\\\"75.2\\\" x2=\\\"24.4\\\" y1=\\\"74.5\\\" y2=\\\"260.8\\\" gradientTransform=\\\"translate(-3.22 1.507)scale(.80503)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#4377bb\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#1a336b\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1a336b\\\"/></linearGradient></defs><path fill=\\\"#76b3e1\\\" d=\\\"M128 29.683S85.333-1.713 52.327 5.532l-2.415.805c-4.83 1.61-8.855 4.025-11.27 7.245l-1.61 2.415l-12.076 20.931l20.93 4.025c8.856 5.636 20.127 8.05 30.592 5.636l37.031 7.245z\\\"/><path fill=\\\"url(#deviconSolidjs0)\\\" d=\\\"M128 29.683S85.333-1.713 52.327 5.532l-2.415.805c-4.83 1.61-8.855 4.025-11.27 7.245l-1.61 2.415l-12.076 20.931l20.93 4.025c8.856 5.636 20.127 8.05 30.592 5.636l37.031 7.245z\\\" opacity=\\\".3\\\"/><path fill=\\\"#518ac8\\\" d=\\\"m38.642 29.683l-3.22.805C21.735 34.513 17.71 47.394 24.955 58.664c8.05 10.465 24.956 16.1 38.641 12.076l49.912-16.906S70.843 22.438 38.642 29.683\\\"/><path fill=\\\"url(#deviconSolidjs1)\\\" d=\\\"m38.642 29.683l-3.22.805C21.735 34.513 17.71 47.394 24.955 58.664c8.05 10.465 24.956 16.1 38.641 12.076l49.912-16.906S70.843 22.438 38.642 29.683\\\" opacity=\\\".3\\\"/><path fill=\\\"url(#deviconSolidjs2)\\\" d=\\\"M104.654 65.91a36.226 36.226 0 0 0-38.641-12.076L16.1 69.934L0 98.111l90.164 15.295l16.1-28.981c3.22-5.635 2.415-12.075-1.61-18.516z\\\"/><path fill=\\\"url(#deviconSolidjs3)\\\" d=\\\"M88.553 94.085A36.226 36.226 0 0 0 49.912 82.01L0 98.11s42.667 32.202 75.673 24.152l2.415-.806c13.686-4.025 18.516-16.905 10.465-27.37z\\\"/>\"\n\t\t},\n\t\t\"solidjs-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconSolidjsWordmark0\\\" x1=\\\"11.67\\\" x2=\\\"70.61\\\" y1=\\\"73.36\\\" y2=\\\"44.72\\\" gradientTransform=\\\"matrix(.36627 0 0 -.36627 -.198 77.937)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".1\\\" stop-color=\\\"#76b3e1\\\"/><stop offset=\\\".3\\\" stop-color=\\\"#dcf2fd\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#76b3e1\\\"/></linearGradient><linearGradient id=\\\"deviconSolidjsWordmark1\\\" x1=\\\"44\\\" x2=\\\"33.68\\\" y1=\\\"59.33\\\" y2=\\\"24.96\\\" gradientTransform=\\\"matrix(.36627 0 0 -.36627 -.198 77.937)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#76b3e1\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#4377bb\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1f3b77\\\"/></linearGradient><linearGradient id=\\\"deviconSolidjsWordmark2\\\" x1=\\\"7.34\\\" x2=\\\"66.94\\\" y1=\\\"44.34\\\" y2=\\\"3.82\\\" gradientTransform=\\\"matrix(.36627 0 0 -.36627 -.198 77.937)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#315aa9\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#518ac8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#315aa9\\\"/></linearGradient><linearGradient id=\\\"deviconSolidjsWordmark3\\\" x1=\\\"34.25\\\" x2=\\\"10.2\\\" y1=\\\"39.49\\\" y2=\\\"-48.7\\\" gradientTransform=\\\"matrix(.36627 0 0 -.36627 -.198 77.937)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#4377bb\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#1a336b\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#1a336b\\\"/></linearGradient></defs><path fill=\\\"#76b3e1\\\" d=\\\"M27.57 56.675s-9.14-6.901-16.23-5.29l-.623.173a4.523 4.523 0 0 0-2.41 1.692a4.095 4.095 0 0 0-.26.432l-2.619 4.45l4.524.883a8.058 8.058 0 0 0 6.45 1.267l8.058 1.575z\\\"/><path fill=\\\"url(#deviconSolidjsWordmark0)\\\" d=\\\"M27.57 56.675s-9.14-6.901-16.23-5.29l-.623.173a4.523 4.523 0 0 0-2.41 1.692a4.095 4.095 0 0 0-.26.432l-2.619 4.45l4.524.883a8.058 8.058 0 0 0 6.45 1.267l8.058 1.575z\\\" opacity=\\\".3\\\"/><path fill=\\\"#518ac8\\\" d=\\\"m8.226 56.587l-.626.175c-2.893.934-3.882 3.641-2.22 6.015a7.736 7.736 0 0 0 8.256 2.6l10.813-3.52s-9.12-6.882-16.223-5.27\\\"/><path fill=\\\"url(#deviconSolidjsWordmark1)\\\" d=\\\"m8.226 56.587l-.626.175c-2.893.934-3.882 3.641-2.22 6.015a7.736 7.736 0 0 0 8.256 2.6l10.813-3.52s-9.12-6.882-16.223-5.27\\\" opacity=\\\".3\\\"/><path fill=\\\"url(#deviconSolidjsWordmark2)\\\" d=\\\"M22.47 64.392a7.732 7.732 0 0 0-8.27-2.619L3.4 65.275L0 71.325l19.35 3.297l3.469-6.172c.692-1.183.622-2.674-.348-4.058z\\\"/><path fill=\\\"url(#deviconSolidjsWordmark3)\\\" d=\\\"M19.072 70.443a7.743 7.743 0 0 0-8.252-2.62L0 71.326s9.157 6.901 16.23 5.29l.622-.173c2.897-.919 3.886-3.626 2.22-6\\\"/><path fill=\\\"#58595b\\\" d=\\\"M43.1 58.086c-2.087 0-3.553 1.391-3.553 3.039c0 3.516 5.676 2.82 5.676 5.678c0 1.245-1.025 1.976-2.27 1.976a4.395 4.395 0 0 1-2.967-1.244l-.664.842a4.893 4.893 0 0 0 3.59 1.465c2.123 0 3.443-1.391 3.443-3.076c0-3.736-5.677-2.968-5.677-5.678c.037-.99.953-1.942 2.418-1.942a3.802 3.802 0 0 1 2.49.99l.553-.952a4.395 4.395 0 0 0-3.04-1.098zm14.87.072a5.761 5.761 0 0 0-5.824 5.787v.037a5.86 5.86 0 0 0 5.788 5.932h.037a5.86 5.86 0 0 0 5.787-5.932a5.761 5.761 0 0 0-5.787-5.824zm12.38.22l-.073 11.354h6.41v-.99h-5.275l.037-10.363h-1.1zm53.568 0a4.07 4.07 0 0 0-2.729.952a2.97 2.97 0 0 0-1.132 2.4a2.747 2.747 0 0 0 .85 2.053c.507.514 1.408.964 2.7 1.352a6.047 6.047 0 0 1 1.655.668a.853.853 0 0 1 .435.765a1.004 1.004 0 0 1-.472.846a2.066 2.066 0 0 1-1.21.332a2.564 2.564 0 0 1-2.415-1.549l-1.979 1.024a3.974 3.974 0 0 0 1.645 1.914a5.033 5.033 0 0 0 2.68.695h.001c1.27 0 2.267-.313 2.98-.947a3.154 3.154 0 0 0 1.071-2.488a2.597 2.597 0 0 0-.916-2.077c-.615-.528-1.599-.98-2.955-1.369a4.307 4.307 0 0 1-1.379-.576a.941.941 0 0 1-.402-.787a.989.989 0 0 1 .402-.824a1.685 1.685 0 0 1 1.066-.31a2.077 2.077 0 0 1 2.092 1.36l1.895-1.035a3.681 3.681 0 0 0-1.49-1.773a4.458 4.458 0 0 0-2.393-.625zm-41.15.036l-.038 11.39h1.098l.037-11.39zm8.496 0v11.39h3.664c3.406 0 5.713-2.05 5.713-5.675c0-3.626-2.307-5.715-5.713-5.715zm20.306.137v7.562a1.538 1.538 0 0 1-.367 1.1a1.322 1.322 0 0 1-1.014.39c-.718 0-1.242-.42-1.572-1.263l-1.935 1.082c.632 1.59 1.813 2.383 3.545 2.383a3.762 3.762 0 0 0 2.585-.922a3.296 3.296 0 0 0 1.047-2.602v-7.73zm-53.6.633c2.565 0 4.616 2.088 4.616 4.798v.04a4.762 4.762 0 0 1-4.652 4.869c-2.564-.037-4.616-2.162-4.616-4.946a4.659 4.659 0 0 1 4.653-4.761zm34.393.255h2.453c2.784 0 4.689 1.65 4.653 4.69c-.037 3.04-1.906 4.687-4.69 4.687h-2.453z\\\"/>\"\n\t\t},\n\t\t\"sonarqube\": {\n\t\t\t\"body\": \"<path fill=\\\"#549dd0\\\" d=\\\"M113.19 125.938h-7.16C106.03 68.293 58.464 21.396 0 21.396v-7.161c62.416 0 113.19 50.106 113.19 111.703m4.952-38.441c-8.598-36.151-37.898-66.362-74.623-76.903l1.647-5.735c38.763 11.133 69.702 43.027 78.778 81.257Zm5.504-33.942c-8.854-19.309-23.944-36.146-42.48-47.411l2.482-4.082C102.992 13.819 118.74 31.399 128 51.556Zm0 0\\\"/>\"\n\t\t},\n\t\t\"sonarqube-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M.681 72.24c.71.434 2.176.944 3.321.944c1.167 0 1.649-.407 1.649-1.038c0-.625-.379-.933-1.827-1.419C1.261 69.863.28 68.471.308 67.001c0-2.308 1.975-4.053 5.033-4.053c1.444 0 2.733.326 3.498.704l-.686 2.662c-.556-.308-1.615-.705-2.68-.705c-.934 0-1.47.378-1.47 1.013c0 .584.485.883 2.002 1.42c2.355.813 3.348 1.999 3.371 3.829c0 2.303-1.82 4.003-5.373 4.003c-1.622 0-3.06-.356-4.003-.865zm22.243-2.96c0 4.529-3.218 6.616-6.538 6.616c-3.623 0-6.407-2.386-6.407-6.388c0-4.006 2.634-6.561 6.618-6.561c3.801-.01 6.327 2.601 6.327 6.332zm-8.96.121c0 2.124.881 3.726 2.53 3.726c1.5 0 2.457-1.499 2.457-3.726c0-1.85-.706-3.732-2.457-3.732c-1.845 0-2.53 1.91-2.53 3.732m10.338-2.233c0-1.541-.052-2.857-.098-3.95h3.343l.177 1.695h.08c.505-.785 1.77-1.976 3.825-1.976c2.53 0 4.435 1.673 4.435 5.32v7.355h-3.852v-6.874c0-1.602-.556-2.685-1.947-2.685c-1.064 0-1.695.733-1.948 1.438c-.098.228-.158.607-.158.966v7.145h-3.844v-8.434zm20.87 8.444l-.23-1.244h-.07c-.808.991-2.077 1.519-3.538 1.519c-2.513 0-4.004-1.826-4.004-3.802c0-3.222 2.89-4.772 7.272-4.744v-.178c0-.657-.36-1.602-2.256-1.602c-1.26 0-2.606.43-3.419.94l-.714-2.484c.864-.487 2.564-1.093 4.815-1.093c4.132 0 5.445 2.433 5.445 5.346v4.316c0 1.19.051 2.325.182 3.012H45.17zm-.45-5.857c-2.025-.028-3.595.458-3.595 1.949c0 .993.654 1.47 1.518 1.47a2.096 2.096 0 0 0 1.999-1.42c.051-.215.074-.434.079-.654zm5.777-2.456a78.184 78.184 0 0 0-.098-4.076h3.317l.13 2.278h.098c.635-1.802 2.158-2.554 3.347-2.554a4.316 4.316 0 0 1 .813.048v3.627a5.91 5.91 0 0 0-1.036-.103c-1.42 0-2.382.766-2.639 1.957a5.347 5.347 0 0 0-.069.864v6.286h-3.854zm33.008 4.964c0 1.261.032 2.386.101 3.347h-1.98l-.125-2.007h-.051c-.585.985-1.874 2.284-4.053 2.284c-1.925 0-4.232-1.06-4.232-5.375v-7.168h2.227v6.79c0 2.33.705 3.903 2.732 3.903c1.494 0 2.537-1.04 2.942-2.026c.136-.365.2-.752.2-1.14v-7.527h2.224v8.92zm2.59 3.347c.052-.834.098-2.076.098-3.169V57.608H88.4v7.714h.051c.784-1.372 2.205-2.26 4.184-2.26c3.037 0 5.193 2.535 5.165 6.263c0 4.385-2.764 6.57-5.496 6.57c-1.774 0-3.19-.686-4.1-2.307h-.08l-.097 2.027zm2.303-4.92c.01.27.048.546.103.816c.43 1.543 1.719 2.607 3.339 2.607c2.334 0 3.721-1.901 3.721-4.712c0-2.462-1.26-4.563-3.641-4.563c-1.523 0-2.942 1.032-3.4 2.732c-.048.257-.127.556-.127.915v2.205zm12.436-.804c.052 3.013 1.98 4.254 4.208 4.254c1.596 0 2.559-.28 3.394-.633l.378 1.595c-.784.36-2.128.757-4.081.757c-3.773 0-6.029-2.484-6.029-6.183s2.176-6.617 5.749-6.617c4.002 0 5.066 3.527 5.066 5.786c0 .346-.027.686-.069 1.032zm6.537-1.601c.029-1.42-.578-3.629-3.087-3.629c-2.254 0-3.24 2.078-3.427 3.629zm-36.845-2.738a6.617 6.617 0 0 0-9.199-1.75a6.625 6.625 0 0 0-1.751 9.199a6.61 6.61 0 0 0 8.111 2.35l2.565 4.165l2.03-1.386l-2.564-4.162a6.625 6.625 0 0 0 .808-8.416m-2.866 7.566a4.633 4.633 0 0 1-3.48.72a4.642 4.642 0 0 1 1.738-9.12a4.633 4.633 0 0 1 2.965 1.95a4.656 4.656 0 0 1-1.223 6.45\\\"/><path fill=\\\"#4e9bcd\\\" d=\\\"M124.764 75.658h-1.573c0-12.65-10.429-22.939-23.252-22.939v-1.567c13.683 0 24.825 10.993 24.825 24.507zm0 0\\\"/><path fill=\\\"#4e9bcd\\\" d=\\\"M125.847 67.229c-1.887-7.938-8.312-14.565-16.366-16.877l.354-1.26c8.508 2.442 15.293 9.442 17.283 17.838zm1.205-7.448c-1.937-4.235-5.248-7.93-9.316-10.4l.541-.892c4.245 2.573 7.697 6.435 9.723 10.867zm0 0\\\"/>\"\n\t\t},\n\t\t\"sourcetree\": {\n\t\t\t\"body\": \"<path fill=\\\"#205081\\\" d=\\\"M64 .73C29.114.73.73 29.113.73 64S29.114 127.27 64 127.27c34.888 0 63.27-28.384 63.27-63.27S98.887.73 64 .73m3.335 120.17v-10.988l27.44-13.9a1.955 1.955 0 0 0 1.073-1.747v-6.29a5.98 5.98 0 0 0 3.99-6.258a5.978 5.978 0 1 0-11.892 1.225a5.97 5.97 0 0 0 3.99 5.03v5.09l-24.6 12.46v-10.22l10.843-5.017a1.957 1.957 0 0 0 1.135-1.773l.02-17.026l20.07-11.276c.617-.346 1-1 1-1.706V53.76a5.974 5.974 0 0 0-2.57-11.59a5.975 5.975 0 0 0-1.344 11.59v3.606l-20.07 11.27c-.617.35-1 1-1 1.706l-.02 16.92l-8.068 3.73V54.2l16.884-8.257a1.95 1.95 0 0 0 1.097-1.755v-6.29a5.978 5.978 0 0 0 3.99-6.26a5.976 5.976 0 0 0-6.56-5.33a5.975 5.975 0 0 0-5.332 6.56a5.964 5.964 0 0 0 3.99 5.027v5.07l-14.068 6.877V28.598a5.977 5.977 0 1 0-7.902-5.03a5.97 5.97 0 0 0 3.988 5.028V63.24l-9.943-5.224V42.28a1.95 1.95 0 0 0-.767-1.552l-6.802-5.21a5.978 5.978 0 1 0-2.61 2.928l6.265 4.802V59.2c0 .728.404 1.395 1.048 1.733l12.81 6.73v12.724l-21.37-9.884l.292-7.742a1.956 1.956 0 0 0-1.063-1.815l-9.797-5.025c.147-.63.2-1.292.13-1.97a5.978 5.978 0 0 0-11.892 1.227a5.977 5.977 0 0 0 6.56 5.33a5.91 5.91 0 0 0 3.1-1.268l9.004 4.616l-.295 7.8c-.03.79.417 1.52 1.133 1.85L63.42 84.7v9.084a1.98 1.98 0 0 0 0 .516v26.693a57.53 57.53 0 0 1-6.093-.387V97.66c0-.766-.445-1.46-1.14-1.778l-15.182-6.987a5.974 5.974 0 0 0-6.563-6.527a5.976 5.976 0 1 0 4.924 10.08l14.047 6.463v21.092C27.022 115.028 6.992 91.815 6.992 64c0-31.434 25.574-57.01 57.01-57.01c31.433 0 57.006 25.576 57.006 57.01c0 30.315-23.787 55.17-53.674 56.902z\\\"/>\"\n\t\t},\n\t\t\"sourcetree-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#205081\\\"><path d=\\\"M8.153 114.608c-3.36-.818-3.36-.818-3.36-2.98c0-1.63.348-2.07 2.794-2.07c1.53 0 3.358.193 5.014.532a.523.523 0 0 0 .624-.443l.344-2.608a.522.522 0 0 0-.408-.58a28.066 28.066 0 0 0-5.632-.61c-4.96 0-6.984 1.648-6.984 5.687c0 2.1.163 3.504.993 4.473c.75.876 2.026 1.424 4.706 2.023c3.505.76 3.505.843 3.505 2.98c0 1.822-.35 2.28-2.975 2.28c-1.71 0-3.347-.256-5.304-.833a.524.524 0 0 0-.66.388l-.54 2.437a.523.523 0 0 0 .305.594c1.27.538 3.73 1.12 6.137 1.12c6.125 0 7.286-2.104 7.286-5.988c0-2.002-.042-3.28-.866-4.257c-.845-1.002-2.402-1.528-4.98-2.147zm14.27-3.358c-4.332 0-6.622 2.082-6.622 6.02v3.712c0 3.937 2.29 6.018 6.623 6.018c4.332 0 6.622-2.08 6.622-6.018v-3.712c0-3.938-2.29-6.02-6.622-6.02zm-2.493 5.9c0-1.62.746-2.312 2.492-2.312c1.747 0 2.492.69 2.492 2.31v3.954c0 1.62-.745 2.31-2.492 2.31c-1.747 0-2.492-.69-2.492-2.31v-3.953zm23.39-5.597h-3.084a.522.522 0 0 0-.522.522v9.766c-1.11.566-2.673 1.15-3.608 1.15c-.695 0-.953-.257-.953-.952v-9.962a.522.522 0 0 0-.522-.522h-3.084a.522.522 0 0 0-.522.522v10.355c0 3.033 1.192 4.57 3.544 4.57c1.635 0 3.862-.563 5.744-1.446l.225.77c.065.222.27.375.5.375h2.285c.29 0 .522-.235.522-.523v-14.1a.524.524 0 0 0-.523-.524zm10.79.26a.522.522 0 0 0-.688-.438c-1.135.39-2.473 1.153-3.264 1.655l-.153-1.03a.523.523 0 0 0-.517-.447h-2.553a.522.522 0 0 0-.522.522v14.1c0 .29.234.522.522.522h3.085c.29 0 .522-.234.522-.522v-9.055c1.172-.743 2.237-1.366 3.566-1.973a.522.522 0 0 0 .302-.53zm11.375 11.691a.524.524 0 0 0-.633-.43a12.2 12.2 0 0 1-2.684.31c-1.957 0-2.523-.5-2.523-2.22v-4.075c0-1.724.566-2.222 2.523-2.222c.464 0 1.622.064 2.685.308a.52.52 0 0 0 .633-.43l.366-2.44a.523.523 0 0 0-.37-.58c-1.187-.35-2.576-.474-3.405-.474c-4.66 0-6.562 1.7-6.562 5.868v4.014c0 4.167 1.9 5.867 6.562 5.867c1.134 0 2.44-.18 3.41-.472a.524.524 0 0 0 .365-.578zm7.982-12.254c-4.135 0-6.32 2.06-6.32 5.96v3.892c0 4.024 2.047 5.898 6.44 5.898c1.792 0 3.7-.313 5.234-.86a.522.522 0 0 0 .337-.597l-.456-2.208a.522.522 0 0 0-.653-.397c-1.415.4-2.765.595-4.128.595c-2.25 0-2.644-.726-2.644-2.25v-.53h7.656c.29 0 .522-.235.522-.523v-2.84c0-4.188-1.9-6.14-5.987-6.14zm-2.19 6.097v-.5c0-1.453.706-2.13 2.22-2.13c1.674 0 2.01.815 2.01 2.13v.5zm22.093-7.921v-2.753a.522.522 0 0 0-.522-.522H78.415a.522.522 0 0 0-.522.523v2.753c0 .29.234.522.522.522h5.09v16.227c0 .29.235.522.523.522h3.206c.29 0 .522-.234.522-.522v-16.227h5.09a.52.52 0 0 0 .524-.522z\\\"/><path d=\\\"M99.715 111.813a.522.522 0 0 0-.69-.438c-1.134.39-2.472 1.153-3.263 1.655L95.61 112a.523.523 0 0 0-.518-.447H92.54a.522.522 0 0 0-.523.522v14.1c0 .29.234.522.522.522h3.084c.29 0 .522-.234.522-.522v-9.055c1.172-.743 2.237-1.366 3.566-1.973a.522.522 0 0 0 .302-.53l-.3-2.804zm7.802-.563c-4.135 0-6.32 2.06-6.32 5.96v3.892c0 4.024 2.047 5.898 6.44 5.898c1.792 0 3.7-.313 5.234-.86a.522.522 0 0 0 .337-.597l-.456-2.208a.524.524 0 0 0-.653-.397c-1.415.4-2.765.595-4.128.595c-2.25 0-2.644-.726-2.644-2.25v-.53h7.656c.29 0 .522-.235.522-.523v-2.84c0-4.188-1.9-6.14-5.987-6.14zm-2.19 6.097v-.5c0-1.453.706-2.13 2.22-2.13c1.674 0 2.01.815 2.01 2.13v.5zm16.429-6.097c-4.135 0-6.32 2.06-6.32 5.96v3.892c0 4.024 2.047 5.898 6.44 5.898c1.792 0 3.7-.313 5.234-.86a.522.522 0 0 0 .336-.597l-.456-2.208a.522.522 0 0 0-.654-.397c-1.415.4-2.765.595-4.128.595c-2.248 0-2.643-.726-2.643-2.25v-.53h7.656c.29 0 .523-.235.523-.523v-2.84c0-4.188-1.902-6.14-5.987-6.14zm-2.19 6.097v-.5c0-1.453.705-2.13 2.22-2.13c1.673 0 2.01.815 2.01 2.13v.5zM64 5C37.77 5 16.428 26.342 16.428 52.574S37.767 100.146 64 100.147c26.232 0 47.572-21.342 47.572-47.573S90.232 5 64.002 5zm2.507 90.36v-8.263l20.633-10.45a1.47 1.47 0 0 0 .806-1.314v-4.73a4.495 4.495 0 0 0 3-4.705a4.495 4.495 0 1 0-8.94.922a4.488 4.488 0 0 0 3 3.783v3.826l-18.498 9.368v-7.685l8.154-3.772c.52-.238.852-.76.854-1.332l.016-12.802l15.09-8.477c.464-.26.75-.752.75-1.284v-3.57a4.493 4.493 0 0 0-1.932-8.715a4.494 4.494 0 0 0-4.01 4.933a4.49 4.49 0 0 0 3 3.782v2.71l-15.09 8.476a1.47 1.47 0 0 0-.75 1.283l-.017 12.722l-6.066 2.804V45.204l12.695-6.208c.504-.244.825-.758.825-1.32v-4.73a4.493 4.493 0 0 0-1.932-8.714a4.494 4.494 0 0 0-4.01 4.934a4.486 4.486 0 0 0 3 3.78v3.813l-10.578 5.17V25.954a4.495 4.495 0 1 0-5.94-3.783a4.487 4.487 0 0 0 3 3.78v26.05l-7.478-3.93v-11.83c0-.458-.214-.89-.577-1.168L50.4 31.16a4.496 4.496 0 1 0-1.962 2.2l4.71 3.61v11.994c0 .547.304 1.05.788 1.303l9.632 5.06v9.568l-16.07-7.432l.22-5.822a1.47 1.47 0 0 0-.8-1.364l-7.365-3.778c.11-.474.15-.972.097-1.482a4.496 4.496 0 0 0-8.942.923a4.495 4.495 0 0 0 4.932 4.01a4.452 4.452 0 0 0 2.33-.955l6.77 3.472l-.22 5.866a1.472 1.472 0 0 0 .852 1.39l18.195 8.416v6.83a1.482 1.482 0 0 0 0 .388v20.07a43.294 43.294 0 0 1-4.582-.29V77.88a1.47 1.47 0 0 0-.857-1.336L46.71 71.293a4.49 4.49 0 0 0-4.935-4.908a4.494 4.494 0 1 0 3.702 7.58l10.562 4.86v15.86c-19.844-3.743-34.905-21.197-34.905-42.11c0-23.636 19.23-42.867 42.865-42.867c23.636 0 42.864 19.23 42.864 42.866c0 22.794-17.885 41.483-40.357 42.785z\\\"/></g>\"\n\t\t},\n\t\t\"spack\": {\n\t\t\t\"body\": \"<path fill=\\\"#0f3a80\\\" d=\\\"m73.192 4.603l50.205 50.205a12.972 12.972 0 0 1 0 18.384l-50.205 50.205a12.972 12.972 0 0 1-18.384 0L4.603 73.192a12.972 12.972 0 0 1 0-18.384L54.808 4.603a12.972 12.972 0 0 1 18.384 0\\\"/><path fill=\\\"#ffa600\\\" d=\\\"m48.59 32.389l-8.336 9.261l-2.602-2.343l-5.466 13.918l13.27-6.891l-2.602-2.344l8.332-9.254a13.126 13.126 0 0 1-2.596-2.347m8.16 4.478v.172l.135-.15c-.046-.006-.09-.016-.135-.022m3.5 4.102l-3.5 3.886v32.97h-3.5l5.25 14l5.25-14h-3.5zM58.5 14c-5.54 0-10 4.46-10 10s4.46 10 10 10c.356 0 .704-.03 1.049-.068l.719-.8c.164.167.335.325.507.481c-2.62-2.38-4.275-5.807-4.275-9.613c0-3.853 1.692-7.321 4.37-9.705A9.949 9.949 0 0 0 58.5 14M24 54c-5.54 0-10 4.46-10 10s4.46 10 10 10s10-4.46 10-10s-4.46-10-10-10m10.33 17.855a13.113 13.113 0 0 1-2.475 2.475l10.936 10.936l-2.475 2.474l13.612 6.188l-6.188-13.612l-2.474 2.475zM64 94c-5.54 0-10 4.46-10 10s4.46 10 10 10s10-4.46 10-10s-4.46-10-10-10\\\"/><path fill=\\\"#fff\\\" d=\\\"M104 54c-5.54 0-10 4.46-10 10s4.46 10 10 10s10-4.46 10-10s-4.46-10-10-10M67.75 36.867v40.957h-3.5l5.25 14l5.25-14h-3.5V36.867A12.96 12.96 0 0 1 69.5 37a12.95 12.95 0 0 1-1.75-.133m25.92 34.988L82.734 82.791l-2.474-2.475l-6.188 13.612l13.612-6.188l-2.475-2.474L96.145 74.33a13.113 13.113 0 0 1-2.475-2.475M79.41 32.389a13.127 13.127 0 0 1-2.597 2.35l8.333 9.253l-2.601 2.342l13.27 6.89l-5.467-13.917l-2.602 2.343zm-19.142.744l-16.3 18.103l-2.6-2.341L35.9 62.81l13.27-6.891l-2.602-2.342L63.055 35.27a13.09 13.09 0 0 1-2.787-2.138ZM69.5 14c-5.54 0-10 4.46-10 10s4.46 10 10 10s10-4.46 10-10s-4.46-10-10-10\\\"/>\"\n\t\t},\n\t\t\"splunk-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0C1724\\\" d=\\\"M41.172 47.891v25.477h4.594V47.891zm47.063 0v25.477h4.621V64.18c.703.813 1.285 1.766 1.914 2.633l3.156 4.379l1.324 1.84c.121.164.32.594.527.648c.109.027.266-.055.367-.09l.824-.293l3.063-1.062l-1.457-1.836l-2.934-3.645l-1.695-2.113l-.895-1.07v-.031c.547-.418 1.016-1.051 1.477-1.562l2.629-2.816l1.262-1.348c.176-.199.402-.367.512-.613c-.852-.242-1.695-.715-2.512-1.066c-.203-.086-.727-.43-.945-.359c-.152.051-.297.297-.398.418l-.926 1.07l-3.488 4.043l-.949 1.102c-.117.133-.258.371-.43.441c-.121.047-.293.016-.426.016V47.891zm20.879 3.813a1.56 1.56 0 0 0-.641.242c-1.309.883-.531 3.105 1.07 2.852a1.56 1.56 0 0 0 .676-.254c1.301-.898.492-3.09-1.105-2.84m.031.238c1.641-.234 1.988 2.406.367 2.617c-1.605.211-1.953-2.387-.367-2.617m-.367 2.195h.277v-.734c.168 0 .352-.012.469.129c.227.277.016.605.48.605c-.059-.273-.059-.719-.367-.824c.094-.062.188-.121.254-.215c.391-.578-.687-.973-1.062-.672c-.094.074-.051.32-.051.426zm.277-.949c0-.137-.059-.445.031-.559c.258-.316.965.422.305.551c-.109.02-.227.008-.336.008M6.699 71.805c.996.66 1.918 1.328 3.09 1.648c2.969.813 7.176.34 8.703-2.719a4.38 4.38 0 0 0 .418-1.227c.105-.59.105-1.184.027-1.773c-.336-2.473-3.035-3.949-4.832-5.34c-.605-.469-1.332-.977-1.73-1.645c-.68-1.141.266-2.285 1.426-2.488c.809-.145 1.711.051 2.449.387c.34.156.645.383.98.543c.301-.547.66-1.062.984-1.594c.082-.129.336-.418.305-.574c-.035-.168-.445-.312-.586-.383a9.54 9.54 0 0 0-1.957-.754c-2.594-.652-6.059-.328-7.625 2.141a4.35 4.35 0 0 0-.555 1.316a4.85 4.85 0 0 0-.121 1.164c.031 2.602 2.473 4.039 4.32 5.422c1.148.863 2.578 1.797 2.348 3.426c-.035.25-.129.492-.262.703c-.961 1.547-3.148 1.102-4.445.336a9.534 9.534 0 0 1-1.039-.727c-.09-.07-.27-.27-.395-.254c-.152.023-.332.461-.41.586c-.359.594-.801 1.176-1.094 1.805m18.859-13.289l-.031-2.508H21.09v26.055h4.438V71.07c.98.98 1.891 1.977 3.246 2.43c.871.289 1.816.332 2.727.266a7.84 7.84 0 0 0 2.172-.461c4.152-1.523 5.895-6.207 5.457-10.316c-.289-2.668-1.629-5.316-4.109-6.562c-.684-.34-1.387-.594-2.145-.719a8.46 8.46 0 0 0-3.43.133c-1.66.43-2.727 1.492-3.887 2.676m47.578-.184h-.027V56.68l-.031-.625l-.309-.047h-4.285v17.359h4.625v-7.992c0-1.477-.184-3.105.398-4.5c.891-2.156 4.363-3.012 6.027-1.227c1.07 1.152.953 2.895.953 4.348v9.371h4.59v-9.461c0-1.922.117-4.031-.867-5.758c-1.77-3.09-6.582-3.215-9.297-1.406c-.586.391-1.445.953-1.777 1.59m-24.371-2.355v9.063c0 1.691-.187 3.617.402 5.234c.266.738.648 1.473 1.223 2.02c1.832 1.75 5.047 1.898 7.316 1c1.203-.48 2.129-1.32 3.031-2.223v2.297h4.594V56.281l-.051-.273l-.348-.031h-4.195v7.961c0 1.5.168 3.152-.453 4.563c-.293.656-.77 1.238-1.383 1.617c-1.391.859-3.684.809-4.746-.547c-.832-1.062-.797-2.457-.797-3.734v-8.941c0-.172.094-.773-.051-.887c-.078-.062-.25-.031-.348-.031h-4.195m59.215.215v2.266l.031.836l.828.426l2.172 1.059l4.289 2.094l3.43 1.676l-3.094 1.523l-4.777 2.359l-2.051 1.012l-.797.414l-.031.848v2.172c.375-.066.766-.34 1.105-.512l2.141-1.07l6.922-3.43l2.57-1.285c.313-.156.883-.316 1.113-.578c.121-.137.051-.516.051-.687v-1.437c0-.203.047-.473-.012-.668c-.062-.211-.656-.395-.848-.488l-2.539-1.27l-7.133-3.582l-2.238-1.133c-.363-.184-.742-.434-1.133-.543m-78.227 2.152c1.758-.211 3.199.953 3.91 2.469c1.027 2.188.914 5.23.02 7.441c-.547 1.352-1.594 2.656-3.133 2.813c-2.203.223-3.891-1.066-4.605-3.121c-.27-.773-.383-1.602-.418-2.418c-.105-2.43.301-5.695 2.816-6.848c.453-.207.922-.281 1.41-.336m0 0\\\"/>\"\n\t\t},\n\t\t\"spring\": {\n\t\t\t\"body\": \"<path fill=\\\"#77bc1f\\\" d=\\\"M116.452 6.643a59.104 59.104 0 0 1-6.837 12.136A64.249 64.249 0 0 0 64.205-.026C28.984-.026 0 28.982 0 64.242a64.316 64.316 0 0 0 19.945 46.562l2.368 2.1a64.22 64.22 0 0 0 41.358 15.122c33.487 0 61.637-26.24 64.021-59.683c1.751-16.371-3.051-37.077-11.24-61.7M29.067 111.17a5.5 5.5 0 0 1-4.269 2.034c-3.018 0-5.487-2.484-5.487-5.502c0-3.017 2.485-5.501 5.487-5.501c1.25 0 2.485.433 3.452 1.234c2.351 1.9 2.718 5.384.817 7.735m87.119-19.238c-15.843 21.122-49.68 14.003-71.376 15.02c0 0-3.852.234-7.721.867c0 0 1.45-.617 3.335-1.334c15.226-5.301 22.43-6.335 31.685-11.086c17.427-8.869 34.654-28.274 38.24-48.463c-6.637 19.422-26.75 36.11-45.077 42.895c-12.557 4.635-35.238 9.136-35.238 9.136l-.917-.484c-15.442-7.518-15.91-40.977 12.157-51.78c12.291-4.735 24.048-2.134 37.323-5.302c14.175-3.367 30.568-14.004 37.238-27.874c7.471 22.19 16.46 56.932.35 78.405z\\\"/>\"\n\t\t},\n\t\t\"spring-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#5fb832\\\" d=\\\"M1.008 98.82C.402 98.52 0 97.813 0 97.008c0-1.211.906-2.117 2.117-2.117c.403 0 .805.101 1.11.304c2.214 1.512 4.636 2.215 6.75 2.215c2.32 0 3.628-1.008 3.628-2.52v-.1c0-1.813-2.52-2.419-5.238-3.224c-3.43-1.007-7.258-2.421-7.258-6.855v-.102c0-4.433 3.63-7.054 8.266-7.054c2.52 0 5.04.707 7.355 1.918c.707.402 1.31 1.105 1.31 2.015c0 1.207-1.009 2.114-2.216 2.114c-.402 0-.707-.098-1.11-.301c-1.913-1.008-3.827-1.614-5.44-1.614c-2.118 0-3.227 1.008-3.227 2.32v.098c0 1.715 2.52 2.422 5.242 3.329c3.426 1.007 7.254 2.62 7.254 6.754v.097c0 4.942-3.828 7.36-8.664 7.36c-2.926 0-6.149-.907-8.871-2.825m38.398-9.168c0-4.539-3.023-7.46-6.648-7.46c-3.63 0-6.754 3.023-6.754 7.46v.098c0 4.438 3.125 7.46 6.754 7.46c3.625-.202 6.648-3.022 6.648-7.558m-18.543-9.375c0-1.511 1.11-2.722 2.621-2.722a2.71 2.71 0 0 1 2.72 2.722v1.614c1.714-2.418 4.132-4.336 7.862-4.336c5.442 0 10.786 4.336 10.786 11.996v.101c0 7.657-5.243 11.993-10.786 11.993c-3.832 0-6.25-1.915-7.863-4.032v8.164c0 1.512-1.207 2.621-2.719 2.621a2.604 2.604 0 0 1-2.62-2.62v-25.5m26.202-.102c0-1.512 1.11-2.719 2.621-2.719a2.71 2.71 0 0 1 2.723 2.719v1.312c.3-2.015 3.528-3.933 5.844-3.933c1.715 0 2.621 1.11 2.621 2.62c0 1.41-.906 2.321-2.117 2.52c-3.828.707-6.45 3.93-6.45 8.567v7.66c0 1.41-1.21 2.621-2.722 2.621a2.6 2.6 0 0 1-2.617-2.621V80.176m16.324 0a2.71 2.71 0 0 1 2.723-2.719a2.71 2.71 0 0 1 2.722 2.719v18.746c0 1.512-1.21 2.621-2.722 2.621s-2.723-1.11-2.723-2.621zm7.762.101a2.712 2.712 0 0 1 2.722-2.722c1.512 0 2.82 1.21 2.82 2.722v1.11c1.512-2.117 3.833-3.832 7.56-3.832c5.445 0 8.566 3.527 8.566 8.87v12.497c0 1.512-1.207 2.621-2.72 2.621c-1.51 0-2.823-1.11-2.823-2.621V88.039c0-3.629-1.914-5.644-5.14-5.644c-3.224 0-5.442 2.117-5.442 5.742v10.785c0 1.512-1.207 2.621-2.82 2.621c-1.512 0-2.723-1.11-2.723-2.621zm35.578 16.832c-3.73 0-6.852-2.824-6.852-7.457v-.101c0-4.535 3.121-7.461 6.852-7.461c3.73 0 6.953 3.023 6.953 7.46v.102c0 4.434-3.223 7.457-6.953 7.457m9.574-19.453a2.71 2.71 0 0 0-2.719 2.723v1.613c-1.816-2.422-4.234-4.336-8.164-4.336c-5.644 0-11.09 4.336-11.09 12.094v.102c0 7.66 5.446 12.093 11.09 12.093c3.93 0 6.45-1.914 8.164-4.03c-.304 4.233-2.925 6.35-7.562 6.35c-2.719 0-5.137-.706-7.356-1.816c-.3-.101-.605-.199-1.007-.199c-1.31 0-2.32 1.008-2.32 2.215c0 1.008.605 1.715 1.515 2.117c2.922 1.41 5.844 2.117 9.27 2.117c4.335 0 7.66-1.008 9.878-3.125c2.016-1.914 3.125-4.836 3.125-8.77V80.278c-.101-1.511-1.312-2.62-2.824-2.62m-47.469-6.552c0 1.41-1.21 2.622-2.722 2.622s-2.723-1.211-2.723-2.622c0-1.41 1.21-2.62 2.723-2.62c1.511 0 2.722 1.21 2.722 2.62m14.11-17.437c-5.946 7.863-18.746 5.242-27.012 5.543c0 0-1.41.102-2.922.305c0 0 .606-.203 1.207-.504c5.746-1.914 8.469-2.32 11.996-4.133c6.551-3.324 13.102-10.48 14.41-17.941c-2.52 7.156-10.078 13.304-17.03 15.824c-4.74 1.715-13.306 3.328-13.306 3.328l-.3-.203c-5.848-2.723-6.047-15.117 4.636-19.051c4.637-1.711 9.07-.805 14.11-1.914c5.34-1.207 11.59-5.14 14.11-10.281c2.823 8.367 6.25 21.168.1 29.027Zm.101-31.445a21.565 21.565 0 0 1-2.62 4.437c-4.434-4.437-10.583-7.156-17.438-7.156c-13.403 0-24.29 10.683-24.29 23.683c0 6.852 3.024 13 7.762 17.336l.504.504c-.906-.707-1.008-2.015-.304-2.824c.707-.906 2.015-1.008 2.925-.3c.907.706 1.008 2.015.301 2.82c-.707.91-2.016 1.007-2.922.304l.403.301a24.776 24.776 0 0 0 15.62 5.543c12.801 0 23.282-9.773 24.192-21.969c.805-5.949-1.008-13.609-4.133-22.68m42.43 57.048h-.906v1.21h.906c.305 0 .605-.203.605-.605c0-.402-.3-.605-.605-.605m.504 3.023l-.906-1.41h-.606v1.41h-.504v-3.426h1.41c.606 0 1.11.403 1.11 1.008a.975.975 0 0 1-.907 1.008l.907 1.41Zm-.805-4.332c-1.41 0-2.621 1.105-2.621 2.52c0 1.41 1.211 2.519 2.621 2.519s2.621-1.11 2.621-2.52c0-1.312-1.21-2.52-2.62-2.52Zm0 5.64c-1.715 0-3.125-1.308-3.125-3.023c0-1.71 1.41-3.023 3.125-3.023c1.711 0 3.125 1.312 3.125 3.023c0 1.613-1.414 3.024-3.125 3.024\\\"/>\"\n\t\t},\n\t\t\"spss\": {\n\t\t\t\"body\": \"<path fill=\\\"#CC1E4C\\\" d=\\\"M125 80c-1.7 0-3.1 1.3-3.1 3s1.3 3 3.1 3c1.7 0 3-1.3 3-3s-1.3-3-3-3m-.1.5c1.4 0 2.4 1.1 2.4 2.5s-1 2.5-2.3 2.5c-1.4 0-2.4-1.1-2.4-2.5s.9-2.4 2.3-2.5m-1 .8v3.4h.6v-1.5h.6l.9 1.5h.6l-.9-1.6c.6 0 .8-.4.8-.9c0-.6-.4-.9-1.2-.9zm.5 1.5v-1.1h.7c.5 0 .7.2.7.6s-.3.6-.6.6zm-93 10.4c-1.6-1.2-3.5-2.2-6.1-3c-3.3-1.1-8.1-2.2-10-2.9c-1.2-.5-1.7-1.2-1.7-2.2c0-1.4 1.7-2.2 3.7-2.3c3.3.1 4.3 2 4.5 3.3h9.6zm12 8.9h7.1c6.2-.1 11.2-3.2 13.7-7.7c.2-.4.4-.7.6-1.1c.4.5.7.7 1.1 1.1c1.7 1.5 3.9 2.6 6.2 3.3c3.7 1.3 6.6 2.2 7.6 2.6c1.9.8 3.1 1.4 3.1 3.1c0 2-2.2 2.8-4.5 2.9c-3.1-.1-6.2-1.6-6.1-4.7H60c.6 8.1 8.6 14.4 18 14.5c5.7-.1 11-1.7 14.4-5.8c3.4 3.5 7.4 5.7 13 5.8c8.9-.1 18.1-4.5 18.2-13.9c0-3-.8-5.6-2.7-7.8c-1.7-2-4.1-3.3-7.4-4.2c-3.3-1.1-8.1-2.2-10-2.9c-1.2-.5-1.7-1.2-1.7-2.2c0-1.4 1.7-2.2 3.7-2.3c3.3.1 4.3 2 4.5 3.3h11.6c.1-8-6.6-13.3-16.1-13.3c-7.1 0-11.9 2.7-14.3 6.6c-2.6-4.1-7.8-6.6-14.3-6.6c-6.8 0-11.5 2.6-14 6.3c-2.8-3.6-7.4-5.9-13-5.9H31.4v6.1c-2.6-4.1-7.8-6.5-14.2-6.5c-9.9 0-15.3 5.5-15.8 11.8c0 3.9 1.9 7.4 4.8 9.9c1.7 1.5 3.7 2.6 6 3.3c3.7 1.3 6.6 2.2 7.6 2.6c1.9.8 3.1 1.4 3.1 3.1c0 2-2.3 2.8-4.5 2.9c-3.1-.1-6.2-1.6-6.1-4.7H0c.6 8.1 8.6 14.4 18 14.5c5.2-.1 10-1.5 13.2-4.5v3.8h12zm0-18.9h6.5c2.4 0 4.5 2 4.5 4.5s-2 4.5-4.5 4.5h-6.5zm49.1 11.3c-1.7-2-4.1-3.3-7.4-4.2c-3.3-1.1-8.1-2.2-9.9-2.9c-1.3-.5-1.9-1.2-1.9-2.2c0-1.4 1.7-2.2 3.7-2.3c3.4.1 4.3 2 4.5 3.3h8.2c.5 3.2 2.1 6.1 4.7 8.3c1.7 1.5 3.8 2.6 6.1 3.3c3.7 1.3 6.6 2.2 7.5 2.6c2 .8 3.1 1.4 3.1 3.1c0 2-2.3 2.8-4.5 2.9c-3.1-.1-6.2-1.6-6.1-4.7H95c0-2.9-.9-5.3-2.5-7.2\\\"/><path fill=\\\"#1F70C1\\\" d=\\\"M0 10.7v3.5h24.9v-3.5zm28.4 0v3.5H64s-3.6-3.5-8.4-3.5zm42.5 0v3.5h21.5l-1.3-3.5zm36.9 0l-1.3 3.5h21.3v-3.5zM0 17.5V21h24.9v-3.5zm28.4 0V21H68s-.5-2.7-1.3-3.5zm42.5 0V21h23.8l-1.2-3.5zm34.3 0L104 21h23.7v-3.5zm-98 6.8v3.5H18v-3.5zm28.4 0v3.5h10.8v-3.5zm21.3 0v3.5h10.8s.7-1.9.7-3.5zm21.2 0v3.5h19.1l-1.3-3.5zm24.8 0l-1.3 3.5h19.2v-3.5zM7.2 31.2v3.5H18v-3.5zm28.4 0v3.5h27.6s2.3-1.8 3-3.5zm42.5 0v3.5h10.8v-1.9l.7 1.9h19.8l.7-1.9v1.9h10.8v-3.5h-20.3l-1.1 3l-1.1-3zM7.2 38v3.5H18V38zm28.4 0v3.5h30.6c-.7-1.7-3-3.5-3-3.5zm42.5 0v3.5h10.8V38zm12.7 0l1.3 3.5h14.8l1.2-3.5zm19.3 0v3.5h10.8V38zM7.2 44.8v3.5H18v-3.5zm28.4 0v3.5h10.8v-3.5zm21.3 0v3.5h11.5c0-1.7-.7-3.5-.7-3.5zm21.2 0v3.5h10.8v-3.5zm15.2 0l1.3 3.5h9.9l1.3-3.5zm16.8 0v3.5h10.8v-3.5zM.2 51.6v3.5h24.9v-3.5zm28.2 0v3.5h38.4c.8-.8 1.3-3.5 1.3-3.5zm42.7 0v3.5h17.8v-3.5zm24.6 0l1.3 3.5h5.1l1.2-3.5zm14.4 0v3.5H128v-3.5zM.2 58.4v3.5h24.9v-3.5zm28.2 0v3.5h27.1c4.8 0 8.4-3.5 8.4-3.5zm42.7 0v3.5h17.8v-3.5zm27.1 0l1.3 3.5h.2l1.3-3.5zm11.9 0v3.5H128v-3.5z\\\"/>\"\n\t\t},\n\t\t\"spyder\": {\n\t\t\t\"body\": \"<path fill=\\\"#303030\\\" d=\\\"M123.425 54.883a1.934 1.934 0 0 1 1.831 2.094v5.626a1.737 1.737 0 0 1-1.962 1.962H98.959c-6.02 0-9.552 2.087-9.552 6.801v1.7c0 3.649 1.7 6.8 8.107 9.158l17.403 6.939C126.957 93.738 128 100.414 128 107.609v1.46c0 14.651-8.756 17.512-26.429 17.512c-11.383 0-21.715-.92-23.94-1.182c-1.57-.125-1.963-.913-1.963-1.956v-5.757a1.73 1.73 0 0 1 1.963-1.963h24.203c10.463 0 13.74-1.182 13.74-6.808v-1.569c0-3.794-1.57-6.282-7.589-8.756l-18.578-7.107C79.331 87.558 76.842 79.97 76.842 72.774v-2.743c0-14.397 12.565-16.36 26.56-16.36a164.907 164.907 0 0 1 20.023 1.212\\\"/><path fill=\\\"#8c0000\\\" d=\\\"M117.5 6.111a21.518 21.518 0 0 0-13.608-4.845H21.628A21.613 21.613 0 0 0 11.55 3.754a21.89 21.89 0 0 0-8.756 8.465c-.394.73-.73 1.415-1.065 2.138c-.19.496-.402.985-.57 1.459a18.972 18.972 0 0 0-.78 3.028a20.526 20.526 0 0 0-.38 4.05v82.234a21.307 21.307 0 0 0 2.138 9.37a21.62 21.62 0 0 0 19.49 12.236H65.54a1.167 1.167 0 0 0 1.167-1.168v-5.246a1.167 1.167 0 0 0-1.167-1.167h-5.7L42.832 84.705l38.804-51.428a4.378 4.378 0 0 0 .73-1.51l35.557 5.443v8.026a1.167 1.167 0 0 0 1.168 1.16h5.275a1.175 1.175 0 0 0 1.168-1.16V22.894A21.518 21.518 0 0 0 117.5 6.11Zm-44.751 2.73l1.839 14.651l-28.75-4.378L44.54 8.899Zm-51.077 0h15.797l1.131 9.157l-21-3.211l-6.625-1.022A13.944 13.944 0 0 1 21.628 8.84ZM37.63 24.936L22.97 44.419L11.37 20.91Zm-30.034 4.16l9.398 19.03l-9.398 1.153zm0 27.253l12.66-1.598L33.39 81.304L7.596 84.551Zm44.43 62.804h-29.23a15.236 15.236 0 0 1-15.2-15.192V91.607L36.63 87.96ZM39.374 77.685L26.422 51.417l19.044-25.24v-.044l29.377 4.495zm78.542-47.567l-36.17-5.531l-1.97-15.747h22.948a15.228 15.228 0 0 1 15.192 15.185z\\\"/>\"\n\t\t},\n\t\t\"spyder-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#8c0000\\\" d=\\\"M31.493 44.885a5.767 5.767 0 0 0-3.647-1.297H5.796a5.746 5.746 0 0 0-2.7.67a5.847 5.847 0 0 0-2.343 2.27a5.143 5.143 0 0 0-.286.571c-.049.133-.108.262-.153.39a5.342 5.342 0 0 0-.21.813A5.579 5.579 0 0 0 0 49.386v22.05a5.708 5.708 0 0 0 .572 2.511a5.795 5.795 0 0 0 5.23 3.278h11.761a.31.31 0 0 0 .314-.31V75.52a.314.314 0 0 0-.314-.314h-1.527l-4.557-9.247l10.408-13.783a1.165 1.165 0 0 0 .191-.405l9.53 1.458v2.144a.317.317 0 0 0 .314.314h1.415a.314.314 0 0 0 .31-.314v-5.99a5.764 5.764 0 0 0-2.154-4.498m-12.002.74l.492 3.925l-7.702-1.178l-.35-2.748zm-13.696 0h4.237l.303 2.44l-5.617-.844l-1.779-.275a3.738 3.738 0 0 1 2.856-1.322zm4.289 4.316l-3.93 5.23l-3.096-6.311zm-8.048 1.112l2.518 5.101l-2.518.31zm0 7.322l3.393-.429l3.515 7.117l-6.908.868zm11.908 16.831H6.109a4.083 4.083 0 0 1-4.073-4.1v-3.31l7.78-.976ZM10.55 64.09l-3.487-7.036l5.108-6.765l7.874 1.207zM31.6 51.342l-9.693-1.506l-.527-4.222h6.15a4.083 4.083 0 0 1 4.07 4.083z\\\"/><path fill=\\\"#303030\\\" d=\\\"M33.184 58.382a.516.516 0 0 1 .488.558v1.5a.464.464 0 0 1-.523.523H26.66c-1.607 0-2.549.557-2.549 1.813v.456c0 .977.454 1.814 2.166 2.441l4.637 1.848c3.211 1.22 3.487 3.002 3.487 4.92v.384c0 3.908-2.34 4.675-7.047 4.675c-3.037 0-5.792-.244-6.384-.313c-.419-.035-.523-.244-.523-.523v-1.538a.464.464 0 0 1 .523-.523h6.454c2.79 0 3.66-.314 3.66-1.813v-.419c0-1.01-.418-1.673-2.021-2.336l-4.955-1.886c-2.685-1.046-3.348-3.069-3.348-4.986v-.736c0-3.835 3.348-4.358 7.082-4.358a44.192 44.192 0 0 1 5.342.313m20.963 9.383c0 7.78-1.395 9.735-7.989 9.735a38.271 38.271 0 0 1-4.606-.209v6.42a.464.464 0 0 1-.523.522h-2.301a.464.464 0 0 1-.523-.523V59.25c0-.383.21-.522.558-.592a38.92 38.92 0 0 1 7.22-.593c6.769.004 8.164 1.991 8.164 9.7m-12.595-6.771v13.292a37.741 37.741 0 0 0 4.397.279c4.327 0 4.85-1.325 4.85-6.768s-.488-6.803-4.78-6.803zm32.061-2.751a.464.464 0 0 1 .523.523v16.813c-.035 6.841-1.36 8.829-8.058 8.829a35.063 35.063 0 0 1-5.268-.314a.516.516 0 0 1-.488-.558v-1.503a.464.464 0 0 1 .523-.523h5.164c3.905 0 4.78-.941 4.78-4.08v-.209a27.504 27.504 0 0 1-4.606.28c-6.594 0-7.988-1.992-7.988-9.527v-9.208a.464.464 0 0 1 .523-.523h2.266a.464.464 0 0 1 .523.523v9c0 5.442.558 6.802 4.882 6.802a37.623 37.623 0 0 0 4.397-.244V58.766a.464.464 0 0 1 .523-.523zm20.199-7.291a.464.464 0 0 1 .523.523v24.86c0 .384-.209.524-.557.559a39.3 39.3 0 0 1-7.257.592c-6.77 0-8.13-1.92-8.13-9.665c0-7.744 1.36-9.763 7.953-9.763a37.277 37.277 0 0 1 4.64.244v-6.827a.464.464 0 0 1 .524-.523zm-7.26 10.042c-4.323 0-4.81 1.325-4.81 6.803c0 5.373.452 6.768 4.78 6.768a38.822 38.822 0 0 0 4.463-.28v-13.29Zm27.735 6.276v1.011c0 .698-.174.98-1.255.98h-11.095c.104 4.254.91 5.3 4.64 5.3h5.722a.464.464 0 0 1 .523.523v1.538a.516.516 0 0 1-.488.558a43.174 43.174 0 0 1-5.826.313c-6.559 0-7.954-1.92-7.954-9.7c0-7.779 1.395-9.731 7.954-9.731c6.245.007 7.71 1.855 7.779 9.208m-12.385-.732h9.038c-.07-4.432-.802-5.548-4.432-5.548c-3.766.004-4.537 1.123-4.606 5.555zm25.572-8.086c.349.105.523.244.523.593v1.464a.45.45 0 0 1-.558.488h-3.04c-2.406 0-3.034.384-3.034 1.957v13.85a.464.464 0 0 1-.523.522h-2.266a.464.464 0 0 1-.527-.523V62.16c0-3.94 3.487-4.08 5.513-4.08c.837-.01 3.215.125 3.912.373z\\\" class=\\\"b\\\"/>\"\n\t\t},\n\t\t\"sqlalchemy\": {\n\t\t\t\"body\": \"<path fill=\\\"#333\\\" d=\\\"M9.394 72.999c-.759-.121-2.701-.607-4.31-1.047l-2.93-.82l1.503-2.762l1.502-2.762l-1.214-1.503C2.23 61.98.015 57.322 0 55.82c-.016-3.507 4.536-8.59 10.121-11.321c3.84-1.882 6.89-1.927 10.714-.136l2.883 1.35l.835-1.199c.454-.653.834-1.517.834-1.897c0-.38.38-.713.835-.713c.455 0 .834.12.834.257c0 .335-3.353 8.802-3.565 9.014c-.092.09-1.003-.333-2.035-.94c-2.913-1.716-6.57-2.854-9.408-2.93c-6.6-.167-8.893 6.284-4.233 11.928l1.638 1.989l4.477-3.628c5.023-4.051 5.6-4.143 9.515-1.44c4.4 3.034 4.476 7.647.226 12.472c-3.763 4.295-7.631 5.48-14.279 4.37zm11.26-4.628c2.184-1.714 2.033-4.887-.335-7.406c-2.974-3.156-3.898-3.02-9.134 1.35c-5.206 4.34-5.236 4.174.986 6.162c4.112 1.335 6.692 1.29 8.483-.106m42.277 16.722c-1.488-.546-5.494-2.2-8.923-3.687c-9.257-4.037-10.562-4.113-13.324-.759c-.637.774-1.335 1.26-1.532 1.063c-.593-.593 1.168-3.43 3.293-5.296c1.729-1.518 2.305-1.73 4.219-1.518c1.213.136 5.25 1.548 8.967 3.126c8.392 3.566 10.85 4.325 14.053 4.325c3.899 0 5.903-2.731 4.673-6.358c-.303-.91-.213-1.215.395-1.215c1.137 0 1.715 4.25.896 6.693c-.35 1.046-1.367 2.533-2.262 3.277c-1.336 1.123-2.185 1.366-4.69 1.35c-1.684-.014-4.278-.454-5.766-1zM41.307 72.12c-3.445-1.61-6.556-4.675-8.347-8.256c-2.867-5.736-1.988-9.408 3.445-14.37c4.567-4.174 8.301-5.798 13.325-5.798c3.625 0 4.4.198 6.75 1.639c5.57 3.445 6.951 10.016 3.598 17.177c-3.93 8.408-12.231 12.642-18.771 9.606zm11.533-3.992c2.579-1.275 4.355-7.163 3.626-12.05c-.91-6.023-9.059-10.136-15.038-7.586c-6.146 2.625-6.237 9.62-.197 15.918c4.218 4.416 7.845 5.57 11.609 3.718m11.7 5.099c0-.259.955-.713 2.139-1.002l2.14-.532l.455-7.707c.5-8.529.135-16.921-.79-18.043c-.334-.396-1.35-.882-2.275-1.093c-3.763-.835-1.26-1.412 6.04-1.412c7.299 0 9.62.532 6.145 1.412c-2.99.744-3.005.789-3.005 12.959c0 6.752.243 11.837.592 12.489c.486.91 1.214 1.107 4.006 1.107c5.766 0 7.754-1.365 9.318-6.419c.47-1.516 1.684-1.243 1.259.29c-.198.712-.515 2.881-.713 4.855l-.364 3.566H77.013c-6.86 0-12.473-.212-12.473-.47\\\"/><path fill=\\\"#ca2727\\\" d=\\\"M92.87 72.862c0-.454.441-.91 1.169-1.259c.972-.455 1.608-1.411 3.915-5.918c3.657-7.131 9.424-19.378 9.97-21.215c.424-1.396.516-1.471 2.094-1.653c.91-.106 1.669-.167 1.684-.137c.015.03 1.275 2.791 2.808 6.146c1.518 3.353 4.568 9.727 6.783 14.158c3.703 7.45 4.113 8.118 5.357 8.724c.759.365 1.35.927 1.35 1.26c0 .531-.652.592-6.266.592c-5.63 0-6.268-.06-6.268-.606c0-.364.486-.759 1.259-1.018c.714-.227 1.26-.652 1.26-.97c0-.304-.744-2.307-1.655-4.446l-1.653-3.9h-12.535l-1.198 2.64c-2.247 4.947-2.292 6.116-.198 6.676c1.048.289 1.336.517 1.214.987c-.136.547-.683.622-4.628.622c-4.234.031-4.462 0-4.462-.683m20.547-12.276c.212-.379-4.507-10.683-4.946-10.79c-.32-.09-5.206 9.986-5.206 10.744c0 .38 9.925.425 10.152.046\\\"/>\"\n\t\t},\n\t\t\"sqlalchemy-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#333\\\" d=\\\"M4.426 68.426a22.846 22.846 0 0 1-2.023-.499l-1.377-.382l.703-1.288l.704-1.29l-.572-.704C1.055 63.267.014 61.07 0 60.365c0-1.642 2.14-4.045 4.763-5.335c1.802-.879 3.238-.908 5.041-.073l1.364.63l.395-.556c.22-.31.396-.72.396-.895c0-.175.175-.336.395-.336c.22 0 .396.057.396.116c0 .162-1.582 4.134-1.685 4.235c-.044.044-.47-.16-.953-.439c-1.363-.806-3.092-1.349-4.426-1.377c-3.107-.074-4.177 2.96-1.993 5.612l.776.939l2.111-1.7c2.36-1.906 2.638-1.95 4.485-.675c2.066 1.422 2.11 3.59.103 5.877c-1.788 1.993-3.62 2.55-6.742 2.037zm5.29-2.184c1.026-.807.953-2.302-.16-3.488c-1.393-1.48-1.833-1.422-4.295.63c-2.447 2.037-2.463 1.964.469 2.902c1.934.63 3.151.615 3.986-.044m19.902 7.87c-.703-.25-2.594-1.04-4.19-1.745c-4.353-1.904-4.969-1.934-6.273-.351c-.308.366-.631.586-.718.498c-.279-.278.542-1.612 1.553-2.491c.82-.718 1.085-.807 1.978-.718c.572.058 2.478.718 4.221 1.465c3.942 1.67 5.1 2.037 6.61 2.037c1.831 0 2.784-1.289 2.198-2.99c-.146-.425-.103-.571.19-.571c.543 0 .806 1.993.427 3.15c-.163.5-.647 1.188-1.071 1.54c-.631.528-1.026.645-2.214.63c-.79.015-2.008-.205-2.71-.455zM19.448 68c-1.627-.747-3.079-2.198-3.928-3.883c-1.349-2.697-.938-4.427 1.626-6.771c2.155-1.965 3.9-2.727 6.273-2.727c1.7 0 2.067.089 3.18.777c2.624 1.627 3.268 4.72 1.686 8.076c-1.861 3.972-5.76 5.965-8.838 4.528zm5.423-1.876c1.215-.6 2.051-3.37 1.699-5.671c-.426-2.829-4.264-4.778-7.078-3.577c-2.888 1.231-2.932 4.53-.087 7.49c1.992 2.095 3.692 2.638 5.466 1.758m5.51 2.403c0-.116.454-.336 1.01-.469l1.012-.249l.22-3.619c.235-4.016.059-7.958-.367-8.486c-.161-.19-.63-.41-1.07-.513c-1.773-.395-.585-.674 2.844-.674c3.43 0 4.53.25 2.887.66c-1.407.351-1.407.366-1.407 6.097c0 3.18.118 5.568.278 5.876c.235.426.572.513 1.89.513c2.713 0 3.65-.644 4.383-3.019c.22-.718.791-.586.586.131c-.088.338-.25 1.364-.336 2.288l-.162 1.685h-5.863c-3.269 0-5.907-.103-5.907-.22z\\\"/><path fill=\\\"#ca2727\\\" d=\\\"M81.834 52.218c-.337-.012-1.162.298-2.4.936c-2.067 1.07-2.332 1.275-2.17 1.759c.248.777.469 10.098.263 11.475c-.116.805-.308 1.188-.673 1.305c-1.642 1.055 1.333 1.524 2.065 1.142c2.199 0 2.596-.072 2.742-.454c.102-.249.072-.483-.06-.526c-1.041-.338-1.231-.793-1.172-2.787c.059-2.227.559-3.37 1.716-4.029c.645-.351.731-.352 1.23.145c1.099 1.1.996 5.424-.162 6.494c-1.084 1.01-.82 1.172 1.95 1.172c2.154 0 2.609-.072 2.74-.424c.19-.483.221-.44-.6-.866c-.615-.322-.616-.351-.44-3.268c.145-2.389.103-3.078-.22-3.709c-.469-.908-1.86-2.138-2.403-2.138c-.615 0-1.863.733-3.02 1.774l-1.068.965l.174-.878c.103-.483.175-2.11.175-3.605c0-2.71.017-2.727.808-3.474c.71-.66.861-.996.525-1.009m-15.372.122c-.355.04-1.113.359-2.3.974c-2.066 1.07-2.332 1.277-2.17 1.76c.248.777.47 10.097.264 11.476c-.118.805-.307 1.187-.674 1.305c-.278.087-.513.38-.513.658c0 .47.205.497 2.624.497c2.08 0 2.637-.072 2.754-.394c.088-.235-.116-.602-.542-.938l-.688-.542l.072-6.623l.075-6.625l.746-.602c.426-.338.676-.733.573-.895c-.029-.047-.103-.065-.221-.051m-13.908 1.825c0-.014-.366.016-.79.06c-.734.087-.793.115-.983.775c-.264.865-2.961 6.625-4.69 9.981c-1.085 2.125-1.392 2.579-1.846 2.784c-.337.16-.544.367-.544.586c0 .323.119.337 2.083.337c1.861 0 2.11-.029 2.183-.292c.058-.22-.088-.338-.571-.469c-.981-.264-.968-.805.087-3.136l.571-1.247h5.892l.779 1.834c.424 1.01.775 1.948.775 2.095c0 .146-.247.336-.586.454c-.351.132-.586.308-.586.484c0 .249.294.277 2.946.277c2.638 0 2.944-.028 2.944-.277c0-.146-.277-.41-.629-.586c-.586-.279-.778-.6-2.522-4.104a263.608 263.608 0 0 1-3.193-6.67c-.718-1.567-1.305-2.871-1.32-2.886m-1.509 3.327c.205.06 2.433 4.91 2.33 5.087c-.117.175-4.777.16-4.777-.03c0-.353 2.3-5.1 2.447-5.057m69.92.631c-.161 0-1.275.469-2.492 1.04l-2.21 1.04l2.123 4.045c1.158 2.227 2.082 4.147 2.038 4.263c-.044.118-1.041.984-2.198 1.923c-1.76 1.407-2.184 1.903-2.534 2.929c-.236.674-.427 1.379-.427 1.569c0 .542.718.397.908-.175c.088-.278.368-.616.601-.748c1.276-.689 9.145-1.144 9.145-.544c0 .148-.176.692-.396 1.205c-.22.513-.394.995-.394 1.053v.002c0 .058.19.07.439.043c.469-.103 2.432-3.21 2.432-3.84c0-1.07-.38-1.186-3.428-1.172c-1.613.015-3.401.1-3.973.205l-1.04.174l1.304-1.098c2.667-2.257 5.393-5.04 5.877-5.979c1.026-2.007.425-4.279-1.392-5.261l-.938-.499l-1.055.704c-.572.38-1.055.865-1.055 1.07c0 .205.5.702 1.1 1.112c.953.646 1.127.88 1.185 1.774c.059.776-.101 1.305-.644 2.14c-.396.602-.806 1.1-.923 1.1c-.249 0-3.063-5.599-3.063-6.096c0-.22.292-.617.644-.896c.674-.527.865-1.083.366-1.083m-26.365.132c-4.895.733-7.635 6.99-3.282 10.228c.483.322 1.172.587 1.539.572c1.596 0 4.94-2.491 4.265-3.166c-.235-.233-.542-.16-1.362.294c-.924.527-1.158.556-1.833.277c-.893-.366-1.877-1.61-1.759-2.212c.044-.234 1.186-.909 2.55-1.524c3.018-1.364 3.254-1.846 1.583-3.356c-.57-.527-1.35-1.025-1.7-1.113zm-21.858.028a.942.942 0 0 0-.241.03c-.939.235-3.019 1.76-3.914 2.859c-.66.82-.805 1.231-.878 2.711c-.089 1.45 0 1.934.526 2.916c.351.645 1.025 1.434 1.495 1.757h.002c1.51 1.025 3.18.66 5.127-1.128c.836-.762 1.055-1.1.865-1.392c-.22-.323-.395-.292-1.29.207c-1.274.703-2.11.57-3.018-.514a4.55 4.55 0 0 1-.938-3.869c.13-.601.366-1.218.514-1.364c.365-.367 1.48.397 1.978 1.364l.394.761l1.173-.439c.645-.235 1.23-.645 1.32-.908c.329-1.004-1.84-2.999-3.115-2.99zm33.048.241c-.22.013-.462.126-.872.345c-.499.265-1.318.866-1.831 1.335l-.923.848V59.91c0-1.407-.381-1.612-1.73-.894c-1.757.94-1.7.806-1.231 2.652c.572 2.243.368 5.379-.41 6.01c-.293.248-.528.617-.528.85c0 .353.395.41 2.462.367c2.814 0 3.209-.279 2.095-1.392c-.557-.557-.673-.926-.673-2.053c0-1.848.366-3.004 1.215-3.899c.88-.908 1.203-.91 1.893-.045c.454.572.541 1.057.541 3.006c0 2.14-.044 2.376-.646 2.976c-1.2 1.202-.937 1.407 1.921 1.407c2.359 0 2.594-.045 2.712-.514c.087-.322-.001-.514-.222-.514c-1.567 0-1.51-4.616.087-6.301c.808-.85 1.19-.878 1.878-.19c.439.439.514.865.514 2.8c0 2.726-.149 3.384-.808 3.589c-.278.088-.499.383-.499.66c0 .456.208.5 2.48.5c1.978 0 2.519-.089 2.636-.397c.103-.234-.103-.6-.513-.923c-.675-.528-.673-.53-.512-3.504c.146-2.873.132-3.003-.499-3.957c-.776-1.186-1.757-1.757-2.622-1.539c-.352.088-1.217.676-1.935 1.322l-1.29 1.155l-.616-.953c-.352-.527-.937-1.128-1.332-1.347c-.323-.183-.523-.27-.742-.258m-12.938 1.774c.17-.019.387.087.798.3c1.026.543.952.882-.382 1.644c-.558.322-1.115.584-1.217.584c-.381.014-.177-1.509.277-2.08c.227-.287.354-.43.524-.448\\\"/>\"\n\t\t},\n\t\t\"sqldeveloper\": {\n\t\t\t\"body\": \"<path fill=\\\"#d1d1d1\\\" d=\\\"M51.395 24.879c-27.422 0-49.649-3.832-49.649-8.535v92.261c0 4.727 22.227 8.536 49.649 8.536c27.421 0 49.648-3.832 49.648-8.536V16.29c0 4.758-22.227 8.59-49.648 8.59Zm0 0\\\"/><path fill=\\\"#adadad\\\" d=\\\"M1.746 16.29v92.315c0 4.727 22.227 8.536 49.649 8.536V24.879c-27.422 0-49.649-3.832-49.649-8.59Zm92.317 4.405v92.262c4.425-1.277 6.98-2.777 6.98-4.375V16.289c0 1.633-2.547 3.106-6.98 4.406m0 0\\\"/><path fill=\\\"#939699\\\" d=\\\"M101.043 16.313c0-4.723-22.23-8.555-49.648-8.555c-27.422 0-49.649 3.832-49.649 8.555c0 4.726 22.227 8.558 49.649 8.558c27.417 0 49.648-3.832 49.648-8.558M1.746 74.332c0 4.727 22.227 8.535 49.649 8.535c27.421 0 49.648-3.832 49.648-8.535v6.984c0 4.723-22.227 8.532-49.648 8.532c-27.422 0-49.649-3.832-49.649-8.532Zm0-30.75c0 4.723 22.227 8.535 49.649 8.535c27.421 0 49.648-3.836 49.648-8.535v6.98c0 4.727-22.227 8.536-49.648 8.536c-27.422 0-49.649-3.832-49.649-8.535Zm0 0\\\"/><path fill=\\\"#ecedf0\\\" d=\\\"M126.64 93.09c0 16.281-13.195 29.48-29.476 29.48s-29.48-13.199-29.48-29.48s13.199-29.477 29.48-29.477s29.477 13.196 29.477 29.477Zm0 0\\\"/><path fill=\\\"#3faa00\\\" d=\\\"M123.004 93.09c0 14.273-11.57 25.84-25.84 25.84c-14.273 0-25.84-11.567-25.84-25.84c0-14.27 11.567-25.84 25.84-25.84c14.27 0 25.84 11.57 25.84 25.84m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"m88.063 105.906l24.027-13.87l-24.028-13.872Zm0 0\\\"/>\"\n\t\t},\n\t\t\"sqlite\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconSqlite0\\\" x1=\\\"-15.615\\\" x2=\\\"-6.741\\\" y1=\\\"-9.108\\\" y2=\\\"-9.108\\\" gradientTransform=\\\"rotate(90 -90.486 64.634)scale(9.2712)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#95d7f4\\\"/><stop offset=\\\".92\\\" stop-color=\\\"#0f7fcc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0f7fcc\\\"/></linearGradient></defs><path fill=\\\"#0b7fcc\\\" d=\\\"M69.5 99.176c-.059-.73-.094-1.2-.094-1.2S67.2 83.087 64.57 78.642c-.414-.707.043-3.594 1.207-7.88c.68 1.169 3.54 6.192 4.118 7.81c.648 1.824.78 2.347.78 2.347s-1.57-8.082-4.144-12.797a162.286 162.286 0 0 1 2.004-6.265c.973 1.71 3.313 5.859 3.828 7.3c.102.293.192.543.27.774c.023-.137.05-.274.074-.414c-.59-2.504-1.75-6.86-3.336-10.082c3.52-18.328 15.531-42.824 27.84-53.754H16.9c-5.387 0-9.789 4.406-9.789 9.789v88.57c0 5.383 4.406 9.789 9.79 9.789h52.897a118.657 118.657 0 0 1-.297-14.652\\\"/><path fill=\\\"url(#deviconSqlite0)\\\" d=\\\"M65.777 70.762c.68 1.168 3.54 6.188 4.117 7.809c.649 1.824.781 2.347.781 2.347s-1.57-8.082-4.144-12.797a164.535 164.535 0 0 1 2.004-6.27c.887 1.567 2.922 5.169 3.652 6.872l.082-.961c-.648-2.496-1.633-5.766-2.898-8.328c3.242-16.871 13.68-38.97 24.926-50.898H16.899a6.94 6.94 0 0 0-6.934 6.933v82.11c17.527-6.731 38.664-12.88 56.855-12.614c-.672-2.605-1.441-4.96-2.25-6.324c-.414-.707.043-3.597 1.207-7.879\\\"/><path fill=\\\"#003956\\\" d=\\\"M115.95 2.781c-5.5-4.906-12.164-2.933-18.734 2.899a44.347 44.347 0 0 0-2.914 2.859c-11.25 11.926-21.684 34.023-24.926 50.895c1.262 2.563 2.25 5.832 2.894 8.328c.168.64.32 1.242.442 1.754c.285 1.207.437 1.996.437 1.996s-.101-.383-.515-1.582c-.078-.23-.168-.484-.27-.773a7.683 7.683 0 0 0-.172-.434c-.734-1.703-2.765-5.305-3.656-6.867c-.762 2.25-1.437 4.36-2.004 6.265c2.578 4.715 4.149 12.797 4.149 12.797s-.137-.523-.782-2.347c-.578-1.621-3.441-6.64-4.117-7.809c-1.164 4.281-1.625 7.172-1.207 7.88c.809 1.362 1.574 3.722 2.25 6.323c1.524 5.867 2.586 13.012 2.586 13.012s.031.469.094 1.2a118.653 118.653 0 0 0 .297 14.651c.504 6.11 1.453 11.363 2.664 14.172l.828-.449c-1.781-5.535-2.504-12.793-2.188-21.156c.48-12.793 3.422-28.215 8.856-44.289c9.191-24.27 21.938-43.738 33.602-53.035c-10.633 9.602-25.023 40.684-29.332 52.195c-4.82 12.891-8.238 24.984-10.301 36.574c3.55-10.863 15.047-15.53 15.047-15.53s5.637-6.958 12.227-16.888c-3.95.903-10.43 2.442-12.598 3.352c-3.2 1.344-4.067 1.8-4.067 1.8s10.371-6.312 19.27-9.171c12.234-19.27 25.562-46.648 12.141-58.621\\\"/>\"\n\t\t},\n\t\t\"sqlite-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconSqliteWordmark0\\\" x1=\\\"-15.615\\\" x2=\\\"-6.741\\\" y1=\\\"-9.108\\\" y2=\\\"-9.108\\\" gradientTransform=\\\"matrix(0 4.0868 -4.0632 0 -14.448 103.81)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#95d7f4\\\"/><stop offset=\\\".92\\\" stop-color=\\\"#0f7fcc\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0f7fcc\\\"/></linearGradient></defs><path fill=\\\"#003956\\\" d=\\\"M48.648 63.613c-1.703 0-3.09.512-4.156 1.527c-1.063 1.016-1.598 2.348-1.598 3.98c0 .845.129 1.618.395 2.325a5.894 5.894 0 0 0 1.23 1.957c.55.594 1.656 1.395 3.3 2.422c2.024 1.242 3.345 2.25 3.981 3.035s.954 1.61.954 2.469c0 1.148-.375 2.07-1.153 2.758c-.773.687-1.808 1.035-3.097 1.035c-1.352 0-2.532-.484-3.543-1.438c-1.016-.953-1.528-2.214-1.54-3.8h-.628v5.75h.628c.192-.547.461-.825.809-.825c.168 0 .559.114 1.172.332c1.488.532 2.707.793 3.668.793c1.652 0 3.07-.586 4.242-1.77c1.176-1.183 1.77-2.612 1.77-4.28c0-1.293-.391-2.446-1.157-3.446c-.773-1.004-2.265-2.175-4.5-3.515c-1.921-1.164-3.171-2.106-3.75-2.844s-.875-1.55-.875-2.445c0-.973.356-1.746 1.055-2.328c.695-.579 1.606-.868 2.754-.868c1.281 0 2.356.387 3.203 1.157c.848.777 1.336 1.847 1.48 3.226h.633v-4.984h-.585c-.075.258-.141.418-.2.492c-.062.074-.172.11-.347.11c-.2 0-.563-.087-1.078-.255c-1.106-.375-2.125-.57-3.067-.57m20.598 0c-2.078 0-3.965.496-5.672 1.48c-1.707.989-3.058 2.352-4.058 4.094c-.993 1.739-1.493 3.59-1.493 5.559c0 2.644.864 5.004 2.598 7.07c1.742 2.067 3.82 3.356 6.234 3.848c.555.289 1.348 1.035 2.383 2.25c1.16 1.36 2.149 2.344 2.961 2.93a8.746 8.746 0 0 0 2.61 1.304c.921.282 1.921.418 3.003.418c1.309 0 2.485-.226 3.516-.699l-.23-.578a5.566 5.566 0 0 1-1.915.324c-.91 0-1.835-.305-2.761-.914s-2.086-1.773-3.461-3.488c-.649-.824-1.098-1.344-1.348-1.547c2.64-.52 4.817-1.805 6.512-3.867s2.539-4.414 2.539-7.051c0-3.133-1.106-5.762-3.305-7.906c-2.199-2.145-4.906-3.227-8.113-3.227m12.855 0l.035.684c1.383 0 2.156.406 2.328 1.23c.067.297.098.844.106 1.625l-.012 15c-.016 1.121-.172 1.836-.477 2.145c-.304.308-.824.503-1.57.578l-.031.68h13.793l.355-3.403h-.632c-.176.926-.59 1.59-1.25 1.965c-.657.379-1.82.57-3.5.57h-1.309c-1.512 0-2.387-.55-2.617-1.656a3.677 3.677 0 0 1-.067-.715l.055-15.164c0-1.117.14-1.867.434-2.234c.289-.367.824-.57 1.59-.621l-.032-.684zm-12.633.824c2.34 0 4.258.93 5.734 2.801c1.48 1.879 2.211 4.445 2.211 7.695c0 3.082-.742 5.551-2.23 7.407c-1.489 1.855-3.473 2.78-5.938 2.78c-2.367 0-4.285-.952-5.758-2.87c-1.472-1.914-2.203-4.399-2.203-7.461c0-3.14.739-5.656 2.223-7.54c1.485-1.874 3.473-2.812 5.961-2.812m31.723 3.227c-.332 0-.594.117-.781.344c-.2.23-.258.507-.192.843c.067.332.254.614.547.86c.285.238.602.367.938.367a.884.884 0 0 0 .75-.367c.18-.246.234-.528.168-.86a1.497 1.497 0 0 0-.52-.843a1.415 1.415 0 0 0-.91-.344m9.098 2.3c-.567 2.212-1.809 3.41-3.711 3.602l.02.633h2.222l-.043 7.496c.004 1.281.04 2.133.133 2.567c.219 1.039.894 1.57 2.023 1.57c1.633 0 3.348-1 5.137-3.004l-.54-.465c-1.292 1.316-2.437 1.977-3.437 1.977c-.617 0-.996-.352-1.14-1.055a3.007 3.007 0 0 1-.051-.602l.02-8.484h3.394l-.035-1.008h-3.348v-3.226zm13.125 2.825c-1.899 0-3.442.93-4.645 2.77c-1.191 1.843-1.562 3.886-1.094 6.136c.278 1.316.829 2.336 1.672 3.059c.84.718 1.91 1.074 3.184 1.074c1.187 0 2.84-.301 3.539-.91c.695-.606 1.34-1.594 1.934-2.946l-.477-.5c-.95 1.75-2.86 2.633-4.3 2.633c-1.985 0-3.196-1.094-3.65-3.265a7.612 7.612 0 0 1-.132-.891c2.36-.375 4.145-1.04 5.348-2c1.21-.961 2.418-1.984 2.191-3.059a2.469 2.469 0 0 0-.973-1.523c-.515-.379-1.851-.578-2.597-.578m-20.75.078l-4.09.945v.735l1.414-.176c.688 0 1.09.308 1.219.93c.039.21.07.5.078.867l-.047 6.73c-.012.926-.113 1.469-.32 1.633c-.207.16-.754.242-1.645.242l-.027.637h6.492l-.012-.637c-.898 0-1.484-.07-1.746-.21c-.254-.141-.433-.391-.511-.778c-.055-.277-.082-.758-.086-1.422l.02-9.496zm19.71 1.246c.395 0 .778.152 1.16.453c.384.3.614.64.688 1.004c.371 1.785-1.207 3.023-4.757 3.711c-.098-1.305.125-2.488.699-3.555c.57-1.07 1.312-1.613 2.21-1.613\\\"/><path fill=\\\"#0b7fcc\\\" d=\\\"M39.492 37.938H4.289c-2.36 0-4.29 1.941-4.29 4.313v39.043c0 2.37 1.93 4.312 4.29 4.312h23.184c-.262-11.602 3.676-34.117 12.02-47.672z\\\"/><path fill=\\\"url(#deviconSqliteWordmark0)\\\" d=\\\"M38.207 39.195H4.289a3.048 3.048 0 0 0-3.04 3.055v36.195c7.685-2.965 19.212-5.528 27.185-5.406c1.605-8.43 6.312-24.942 9.773-33.849z\\\"/><path fill=\\\"#003956\\\" d=\\\"M47.699 36.656c-2.41-2.16-5.332-1.293-8.207 1.277c-.43.383-.86.805-1.285 1.258c-4.926 5.262-9.5 15-10.918 22.441c.55 1.125.984 2.566 1.27 3.668a40.633 40.633 0 0 1 .382 1.656s-.047-.172-.226-.699l-.122-.348a1.81 1.81 0 0 0-.074-.183c-.32-.754-1.21-2.34-1.601-3.031a70.465 70.465 0 0 0-.875 2.761c1.125 2.078 1.812 5.645 1.812 5.645s-.055-.234-.34-1.035c-.254-.715-1.507-2.926-1.808-3.446c-.508 1.891-.707 3.164-.528 3.477c.356.602.696 1.637.993 2.79c.668 2.585 1.128 5.73 1.128 5.73l.04.53a53.477 53.477 0 0 0 .132 6.462c.22 2.691.64 5.004 1.168 6.246l.364-.2c-.782-2.44-1.098-5.64-.961-9.327c.21-5.637 1.5-12.438 3.882-19.52c4.032-10.7 9.614-19.281 14.727-23.38c-4.66 4.235-10.965 17.935-12.855 23.013c-2.113 5.675-3.609 11.008-4.515 16.12c1.562-4.789 6.598-6.847 6.598-6.847s2.468-3.063 5.355-7.445c-1.727.398-4.57 1.078-5.52 1.476c-1.406.594-1.78.797-1.78.797s4.546-2.781 8.44-4.047c5.364-8.492 11.208-20.559 5.325-25.84\\\"/>\"\n\t\t},\n\t\t\"ssh\": {\n\t\t\t\"body\": \"<path fill=\\\"#231F20\\\" d=\\\"M34.27 109.182c-3.572 0-8.55 3.725-8.55 7.884c0 2.055 1.28 3.04 3.135 3.04c3.434 0 8.834-3.6 8.834-7.98c-.002-2.156-1.512-2.944-3.42-2.944zm11.872-80.265c0-3.662-2.594-6.46-6.46-6.46c-3.625 0-6.553 2.798-6.553 6.46c0 3.433 2.786 6.554 6.458 6.554c3.47 0 6.554-2.733 6.554-6.553zm17.763-15.293c0-2.79-1.825-6.364-5.7-6.364c-3.524 0-5.318 3.098-5.318 5.89c0 2.698 1.908 6.648 5.7 6.648c3.524 0 5.318-3.474 5.318-6.174M48.38 117.066c-3.23 0-7.673 4.224-7.673 7.41c0 1.618.67 2.47 2.432 2.47c2.303 0 5.63-1.953 7.064-4.845c.284-.568.795-1.527.795-1.71v-1.614c-1-1.347-1.673-1.71-2.62-1.71zM28.475 97.213c0-2.79-2.066-3.894-4.37-3.894c-3.368 0-9.213 3.236-9.213 7.883c0 2.624 1.787 3.8 4.274 3.8c3.185 0 9.31-2.888 9.31-7.79zm-4.085-39.04c3.38 0 8.074-2.332 8.074-7.124c0-3.618-2.983-5.89-6.27-5.89c-3.57 0-8.168 2.48-8.168 7.124c0 3.572 2.885 5.89 6.364 5.89m1.805 17.383c0-3.325-2.713-4.844-5.604-4.844c-.182 0-.32-.056-1.044 0c-4.177.35-8.074 3.946-8.074 7.6c0 3.414 3.104 4.843 5.794 4.843c3.48 0 8.93-2.67 8.93-7.6zm79.979-66.111c-2.543 0-3.42 3.948-3.42 5.224c0 1.266.438 4.083 2.66 4.083c2.607 0 3.42-3.948 3.42-5.224c0-1.074-.576-4.085-2.66-4.085zM93.73 2.32c-2.955 0-3.893 3.7-3.893 5.415c0 1.13.696 5.156 3.515 5.13c2.82-.03 3.894-3.693 3.894-5.51c0-1.413-.68-5.034-3.515-5.034zm20.708 17.573c-2.35 0-3.23 3.86-3.23 5.034c0 .982.376 3.325 2.185 3.325c2.285 0 3.135-3.765 3.135-4.94c0-.78-.345-3.42-2.09-3.42zm-24.696 86.724c-2.68 0-4.56 4.094-4.56 5.7c0 .836.214 1.71 1.426 1.71c2.652 0 4.56-4.03 4.56-5.7c-.002-.782-.288-1.71-1.426-1.71M63.145 118.3c-3.03 0-6.554 4.048-6.554 6.84c0 .41.008 1.213.76 1.71c.788.515 2.196.563 3.895-.57c2.28-1.522 3.8-4.213 3.8-5.985c0-.973-.623-1.994-1.9-1.995zM77.203.8c-3.23 0-4.464 3.834-4.464 5.89c0 2.157 1.59 5.89 4.748 5.89c3.205 0 4.43-3.83 4.37-5.795C81.782 4.27 80.727.8 77.202.8zm0 113.51c-2.937 0-5.414 4.21-5.414 6.365c0 1.085.494 1.71 1.614 1.71c2.653 0 5.414-4.064 5.414-6.174c0-.927-.19-1.9-1.615-1.9z\\\"/>\"\n\t\t},\n\t\t\"ssh-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#231F20\\\" d=\\\"M99.438 45.906c-1.593 7.332-6.957 31.736-6.957 31.736h10.766c.645-3.008 1.146-5.777 1.88-8.835c1.297-5.42 2.752-7.566 6.6-7.566c1.697 0 3.453.577 3.453 2.895c0 1.054-2.42 11.405-2.845 13.507h10.714s3.322-16.116 3.35-16.3c.112-.542.355-2.133.355-2.133c0-3.85-5.01-5.665-7.617-5.74c-1.886-.053-.465-.032-2.387 0c-3.085.053-7.185 1.767-8.987 3.606l-.203.152l.102-.254l2.437-10.866a.344.344 0 0 0-.103-.203h-10.56zm-50.98 7.26c-1.056-.016-2.795-.015-5.586.052c-5.58.133-13.913 1.852-13.913 9.85c0 4.524 4.2 4.918 7.92 5.282c2.91.287 5.792.627 8.632.914c.818.076 1.625.26 1.625 1.168c0 1.54-1.27 2.027-3.047 2.183c-1.776.157-2.183 0-2.183 0c-1.12 0-3.036-.677-2.793-2.285H26.47v1.88c.005 6.05 9.77 6.073 11.578 6.295h3.148l4.824-.152c6.44-.425 13.41-2.355 13.71-10.054c.208-5.312-6.58-5.16-9.546-5.485h-.812c-.152 0-4.763-.468-7.058-.71c-.35-.04-1.93-.273-1.93-1.22c0-1.88 3.457-1.828 4.215-1.828c1.218 0 3.854-.052 3.757 2.03H60.29c.024-.443.203-.842.203-1.32c0-5.354-6.87-6.37-10.612-6.55c0 0-.366-.033-1.422-.05zm32.09 0c-.472-.017-1.118-.004-3.91.052c-5.59.112-13.963 1.902-13.963 9.902c0 4.523 4.202 4.917 7.92 5.28c2.91.288 5.792.628 8.633.915c.818.076 1.625.26 1.625 1.168c0 1.54-1.584 2.09-3.047 2.183c-1.464.093-2.183 0-2.183 0c-1.122 0-3.036-.627-2.793-2.234H60.187v1.88c-.01 5.72 9.73 6.095 11.577 6.194l3.148.102l4.824-.152c6.44-.423 13.385-2.357 13.71-10.054c.214-5.076-6.34-5.007-9.445-5.433l-.913-.103c-.152 0-4.763-.418-7.058-.66c-.35-.038-1.88-.323-1.88-1.27c0-1.878 3.407-1.827 4.164-1.827c1.22 0 3.855-.052 3.758 2.03h11.933c.024-.443.203-.842.203-1.32c0-5.355-6.904-6.39-10.612-6.498c-2.27-.07-2.574-.137-3.047-.155zm-60.771-7.92c0-1.958-1.387-3.453-3.453-3.453c-1.938 0-3.504 1.495-3.504 3.453c0 1.835 1.49 3.504 3.453 3.504c1.856 0 3.504-1.462 3.504-3.504m9.496-8.176c0-1.49-.975-3.4-3.047-3.4c-1.885 0-2.844 1.655-2.844 3.147c0 1.443 1.02 3.554 3.047 3.554c1.884 0 2.843-1.856 2.843-3.3zm-8.486 55.297c-1.728 0-4.008 2.258-4.008 3.96c0 .866.404 1.32 1.346 1.32c1.232 0 2.847-1.043 3.613-2.59c.15-.303.26-.816.26-.913v-.863c0-.72-.707-.913-1.213-.913zm-7.357-4.214c-1.91 0-4.57 1.992-4.57 4.215c0 1.1.684 1.625 1.676 1.625c1.836 0 4.722-1.925 4.722-4.265c0-1.154-.807-1.575-1.828-1.575M8.15 60.885c1.805 0 4.315-1.247 4.315-3.808c0-1.934-1.594-3.148-3.35-3.148c-1.91 0-4.368 1.325-4.368 3.807c0 1.91 1.543 3.148 3.402 3.148zm2.183 20.87c0-1.492-1.104-2.082-2.336-2.082c-1.8 0-4.925 1.73-4.925 4.215c0 1.402.955 2.03 2.285 2.03c1.703 0 4.976-1.543 4.976-4.163M9.114 70.177c0-1.777-1.45-2.59-2.996-2.59c-.098 0-.17-.03-.56 0c-2.232.187-4.315 2.11-4.315 4.062c0 1.825 1.66 2.59 3.097 2.59c1.86 0 4.774-1.427 4.774-4.063zm19.753 22.85c-1.62 0-3.504 2.164-3.504 3.656c0 .22.004.65.406.914c.42.276 1.172.3 2.08-.305c1.22-.813 2.032-2.252 2.032-3.2c0-.52-.333-1.065-1.015-1.065zM51.87 34.836c-1.36 0-1.83 2.11-1.83 2.793c0 .676.235 2.182 1.423 2.182c1.394 0 1.828-2.11 1.828-2.793c0-.574-.307-2.183-1.42-2.184zm4.416 5.586c-1.256 0-1.726 2.063-1.726 2.69c0 .526.2 1.778 1.168 1.778c1.222 0 1.676-2.012 1.676-2.64c0-.417-.185-1.828-1.118-1.828m-11.069-9.394c-1.58 0-2.082 1.977-2.082 2.894c0 .604.372 2.756 1.88 2.742c1.506-.015 2.08-1.973 2.08-2.945c0-.756-.362-2.692-1.878-2.692zm-2.133 55.754c-1.433 0-2.437 2.19-2.437 3.047c0 .447.114.913.762.913c1.417 0 2.436-2.153 2.436-3.047c0-.418-.153-.914-.762-.914zm-6.702-56.566c-1.727 0-2.387 2.05-2.387 3.148c0 1.153.85 3.148 2.54 3.148c1.712 0 2.366-2.047 2.335-3.097c-.04-1.344-.604-3.2-2.488-3.2zm0 60.679c-1.57 0-2.894 2.25-2.894 3.402c0 .58.264.914.863.914c1.42 0 2.895-2.17 2.895-3.3c0-.496-.102-1.015-.863-1.015z\\\"/>\"\n\t\t},\n\t\t\"stackoverflow\": {\n\t\t\t\"body\": \"<path fill=\\\"#bbb\\\" d=\\\"M101.072 82.51h11.378V128H10.05V82.51h11.377v34.117h79.644zm0 0\\\"/><path fill=\\\"#f58025\\\" d=\\\"m33.826 79.13l55.88 11.738l2.348-11.166l-55.876-11.745Zm7.394-26.748l51.765 24.1l4.824-10.349l-51.768-24.1Zm14.324-25.384L99.428 63.53l7.309-8.775l-43.885-36.527ZM83.874 0l-9.167 6.81l34.08 45.802l9.163-6.81Zm-51.07 105.254h56.89V93.881h-56.89Zm0 0\\\"/>\"\n\t\t},\n\t\t\"stackoverflow-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#1e1b1d\\\" d=\\\"m5.944 121.145l-1.824-.161c-1.437-.116-1.992-.696-1.992-1.672c0-1.16.878-1.88 2.544-1.88c1.181 0 2.225.28 3.034.905l1.087-1.09c-1.02-.834-2.477-1.229-4.096-1.229c-2.43 0-4.186 1.253-4.186 3.342c0 1.88 1.18 2.875 3.4 3.06l1.876.166c1.314.116 1.896.673 1.896 1.672c0 1.347-1.158 2.018-3.034 2.018c-1.41 0-2.635-.371-3.539-1.324L0 126.067c1.249 1.208 2.753 1.647 4.672 1.647c2.754 0 4.626-1.276 4.626-3.48c0-2.137-1.363-2.902-3.354-3.089m14.247-5.126c-1.829 0-2.977.359-3.984 1.638c-.017.02 1.09 1.098 1.09 1.098c.67-.951 1.413-1.3 2.871-1.3c2.081 0 2.914.834 2.914 2.505v1.094H19.66c-2.544 0-3.934 1.3-3.934 3.295a3.306 3.306 0 0 0 .857 2.322c.718.743 1.643 1.042 3.215 1.042c1.528 0 2.361-.3 3.286-1.228v1.09h1.667v-7.753c0-2.48-1.505-3.804-4.559-3.804zm2.892 7.52c0 .951-.186 1.6-.576 1.972c-.72.697-1.577.765-2.548.765c-1.806 0-2.615-.624-2.615-1.947s.833-2.019 2.548-2.019h3.19zm8.192-6.036c1.085 0 1.757.324 2.61 1.276c0 0 1.118-1.086 1.11-1.098c-1.17-1.251-2.16-1.663-3.72-1.663c-2.872 0-5.044 1.952-5.044 5.85c0 3.898 2.172 5.85 5.044 5.85c1.572 0 2.567-.419 3.748-1.695l-1.134-1.094c-.857.952-1.529 1.3-2.614 1.3a3.076 3.076 0 0 1-2.64-1.3c-.532-.742-.738-1.624-.738-3.06c0-1.442.206-2.323.738-3.066a3.076 3.076 0 0 1 2.64-1.3m14.267-1.363h-2.078l-5.163 5.04l.008-10.13h-1.666v16.525h1.666l-.008-4.167l2.022-2.034l3.816 6.201h2.062l-4.724-7.358zm7.693-.28c-1.706 0-2.86.668-3.567 1.422c-1.041 1.091-1.311 2.401-1.311 4.495c0 2.114.269 3.424 1.311 4.515c.708.755 1.86 1.422 3.567 1.422c1.71 0 2.883-.667 3.594-1.422c1.044-1.09 1.307-2.401 1.307-4.515c0-2.093-.263-3.405-1.307-4.495c-.71-.754-1.884-1.422-3.594-1.422m1.355 8.742c-.364.35-.853.532-1.355.51a1.754 1.754 0 0 1-1.327-.51c-.6-.601-.668-1.624-.668-2.825c0-1.2.067-2.204.668-2.804a1.77 1.77 0 0 1 1.327-.51c.502-.023.991.159 1.355.51c.597.6.664 1.603.664 2.804c0 1.2-.068 2.224-.664 2.825m11.22-8.611l-2.325 7.165l-2.35-7.165h-3.038l4.258 11.588h2.26l4.233-11.588zm7.944-.13c-2.994 0-5.032 2.133-5.032 5.916c0 4.692 2.615 5.936 5.344 5.936c2.082 0 3.215-.643 4.388-1.824l-1.749-1.71c-.735.734-1.355 1.09-2.619 1.09c-1.62 0-2.528-1.09-2.528-2.584h7.228v-1.287c0-3.18-1.817-5.538-5.032-5.538zm-2.196 4.846a3.145 3.145 0 0 1 .268-1.244a2.152 2.152 0 0 1 1.928-1.201c.817 0 1.565.466 1.928 1.201c.174.39.265.817.269 1.244zm11.482-3.602v-1.114h-2.816v11.588h2.883v-6.983c0-1.469.976-2.137 1.861-2.137a1.892 1.892 0 0 1 1.52.683l2.184-2.192c-.797-.802-1.596-1.09-2.73-1.09a3.895 3.895 0 0 0-2.901 1.244zm6.525-2.323v12.785h2.883v-9.135h2.129v-2.2h-2.129v-1.269c0-.667.332-1.046 1.02-1.046h1.109v-2.45h-1.643c-2.35 0-3.37 1.672-3.37 3.315zm16.878 1.074c-1.707 0-2.86.668-3.57 1.426c-1.04 1.091-1.308 2.401-1.308 4.491c0 2.114.268 3.424 1.307 4.52c.711.753 1.864 1.42 3.57 1.42c1.706 0 2.883-.666 3.594-1.42c1.04-1.092 1.308-2.407 1.308-4.52c0-2.09-.268-3.4-1.308-4.49c-.71-.758-1.888-1.426-3.593-1.426zm1.354 8.746a1.843 1.843 0 0 1-1.354.51a1.784 1.784 0 0 1-1.332-.51c-.597-.605-.663-1.628-.663-2.829c0-1.2.067-2.2.663-2.8a1.772 1.772 0 0 1 1.332-.514c.501-.023.99.162 1.354.514c.597.6.664 1.6.664 2.8c0 1.2-.068 2.224-.664 2.829m17.166-8.611l-1.865 7.165l-2.373-7.165h-2.105l-2.35 7.165l-1.86-7.165h-3.062l3.547 11.588h2.374l2.416-7.27l2.418 7.27h2.37L128 115.991Zm-26.135 8.097v-12.62h-2.88v12.798c0 1.647.995 3.313 3.369 3.313h1.64v-2.445H99.85c-.73 0-1.02-.355-1.02-1.046zm-84.909-6.135l1.54-1.544h-3.151v-3.76H10.64v11.86c0 1.696.97 3.066 2.915 3.066h1.181v-1.438h-.881c-1.062 0-1.547-.626-1.547-1.67v-6.514zm0 0\\\"/><path fill=\\\"#bbb\\\" d=\\\"M89.376 62.392h8.507v34.245h-76.59V62.392h8.512v25.686h59.57zm0 0\\\"/><path fill=\\\"#f58025\\\" d=\\\"m39.08 59.85l41.796 8.835l1.757-8.406l-41.796-8.84Zm5.528-20.132l38.72 18.136l3.607-7.788l-38.72-18.138Zm10.716-19.11l32.824 27.494l5.466-6.6l-32.821-27.498zM76.511.282L69.654 5.41l25.491 34.477L102 34.76ZM38.317 79.515h42.547v-8.56H38.317Zm0 0\\\"/>\"\n\t\t},\n\t\t\"stata-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#195f92\\\" d=\\\"M124.9 47.192c-1.71 0-3.1 1.39-3.1 3.1s1.39 3.1 3.1 3.1c1.71 0 3.1-1.39 3.1-3.1s-1.39-3.1-3.1-3.1m0 .266a2.831 2.831 0 0 1 2.833 2.834a2.831 2.831 0 0 1-2.833 2.833a2.831 2.831 0 0 1-2.833-2.834a2.831 2.831 0 0 1 2.833-2.833m-1.688 1.072v.188h.274c.05 0 .104.023.126.056a.64.64 0 0 1 .113.335v2.327s0 .177-.113.335c-.022.033-.076.056-.126.056h-.274v.188h1.576v-.188h-.274c-.05 0-.104-.023-.126-.056c-.113-.158-.113-.335-.113-.335v-1.085h.357c.119 0 .345.119.4.164c.212.157.327.456.355 1.075a.464.464 0 0 0 .183.35c.254.173.707.196.995-.039c.143-.13.192-.352.194-.56l-.185-.034s-.029.483-.287.483c-.08 0-.194-.103-.2-.264c-.013-.297-.172-1-.975-1.215c.25 0 .665-.107.8-.204c.2-.148.394-.38.412-.634l.002-.001v-.143h-.001c-.03-.432-.572-.8-.779-.8h-1.82zm1.063.27h.843c.17 0 .56.199.585.53l.002.035v.07l-.002.035c-.025.331-.414.53-.585.531h-.843zm-95.428 3.558l-2.35 6.336h7.88v22.114h6.348V58.694h6.333l2.352-6.336zm48.62 0l-2.352 6.336h7.882v22.114h6.347V58.694h6.333l2.352-6.336zm-49.565.017H10.545v.002l-2.536.006c-2.174 0-4.042 1.16-5.55 2.68c-1.509 1.52-2.462 3.202-2.462 5.393v1.21c.001 2.19.953 3.872 2.461 5.391c1.509 1.52 3.377 2.68 5.551 2.68l2.392.006v.002h8.94a2.429 2.429 0 0 1 2.424 2.355a2.429 2.429 0 0 1-2.423 2.355H2.448l-2.35 6.33h17.32v-.001l2.614-.006c2.174 0 4.042-1.16 5.55-2.68c1.509-1.52 2.461-3.201 2.462-5.392v-1.21c0-2.19-.953-3.873-2.461-5.393c-1.509-1.52-3.377-2.68-5.551-2.68l-2.352-.006v-.002H8.7a2.429 2.429 0 0 1-2.425-2.355A2.429 2.429 0 0 1 8.7 58.705h16.853zm22.362.008l-2.349 6.33h18.476a2.427 2.427 0 0 1 2.42 2.28h.018h-.024v2.43l-15.31.007c-2.175 0-4.042 1.16-5.55 2.68c-3.19 3.573-3.341 8.564 0 11.994c1.508 1.52 3.375 2.68 5.55 2.68l21.633.013l-.037-20.333c0-2.191-.952-3.873-2.46-5.393c-1.51-1.52-3.377-2.68-5.551-2.68zm48.62 0l-2.35 6.33h18.476a2.427 2.427 0 0 1 2.42 2.28h.017h-.024v2.43l-15.31.007c-2.174 0-4.042 1.16-5.55 2.68c-3.189 3.573-3.34 8.564 0 11.994c1.508 1.52 3.376 2.68 5.55 2.68l21.633.013l-.036-20.333c0-2.191-.953-3.873-2.461-5.393c-1.509-1.52-3.376-2.68-5.55-2.68zm-44.701 17.37h14.621v4.686l-14.622.024a2.429 2.429 0 0 1-2.423-2.355a2.429 2.429 0 0 1 2.423-2.355m48.619 0h14.621v4.686l-14.621.024a2.429 2.429 0 0 1-2.424-2.355a2.428 2.428 0 0 1 2.424-2.355\\\"/>\"\n\t\t},\n\t\t\"storybook\": {\n\t\t\t\"body\": \"<path fill=\\\"#FF4785\\\" d=\\\"m107.346 2.012l-6.914.431l.539 14.377c.028.795-.889 1.259-1.514.766l-4.63-3.65l-5.485 4.162a.934.934 0 0 1-1.498-.784l.617-14.123L19.873 7.48a6.264 6.264 0 0 0-5.87 6.488l3.86 102.838a6.264 6.264 0 0 0 5.98 6.023l83.612 3.754a6.273 6.273 0 0 0 4.609-1.73a6.255 6.255 0 0 0 1.936-4.526V8.264a6.258 6.258 0 0 0-1.975-4.566a6.257 6.257 0 0 0-4.679-1.686m-41.46 21.187c16.308 0 25.214 8.723 25.214 25.319c-2.204 1.713-18.62 2.88-18.62.443c.346-9.3-3.817-9.707-6.13-9.707c-2.198 0-5.899.662-5.899 5.644c0 12.288 31.69 11.625 31.69 36.424c0 13.95-11.335 21.655-25.791 21.655c-14.92 0-27.957-6.036-26.485-26.963c.578-2.457 19.545-1.873 19.545 0c-.23 8.635 1.735 11.175 6.707 11.175c3.817 0 5.553-2.103 5.553-5.646c0-12.621-31.227-13.063-31.227-36.201c0-13.285 9.138-22.143 25.444-22.143z\\\"/>\"\n\t\t},\n\t\t\"storybook-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"none\\\"><path fill=\\\"#333\\\" fill-rule=\\\"evenodd\\\" d=\\\"M34.1 71.264c-1.093 0-2.144-.146-3.155-.44c-1.01-.294-1.85-.7-2.519-1.219l1.024-2.273c1.393.97 2.956 1.454 4.69 1.454c.901 0 1.594-.147 2.079-.44c.485-.294.727-.7.727-1.219c0-.464-.222-.826-.666-1.085c-.443-.26-1.232-.512-2.365-.758c-1.27-.26-2.284-.573-3.041-.942c-.758-.369-1.311-.822-1.66-1.362c-.348-.54-.521-1.205-.521-1.997c0-.873.242-1.652.726-2.334c.485-.683 1.164-1.219 2.038-1.608c.874-.39 1.884-.584 3.031-.584c1.024 0 2.01.15 2.96.45c.949.301 1.703.704 2.263 1.21l-1.024 2.272c-1.325-.969-2.717-1.454-4.178-1.454c-.833 0-1.488.16-1.966.482c-.478.32-.717.76-.717 1.32c0 .328.092.598.276.81c.185.211.492.399.922.563c.43.164 1.041.334 1.833.512c1.857.41 3.191.935 4.004 1.577c.812.641 1.218 1.529 1.218 2.662c0 1.365-.525 2.44-1.577 3.226c-1.05.785-2.519 1.177-4.403 1.177zm13.393-2.293c.314 0 .642-.02.983-.062l-.164 2.253a8.685 8.685 0 0 1-1.188.082c-1.529 0-2.645-.335-3.348-1.004c-.703-.669-1.055-1.686-1.055-3.051v-3.85h-1.904v-2.315h1.904v-2.949h3.093v2.95h2.519v2.314h-2.52v3.83c0 1.2.56 1.802 1.68 1.802m7.189 2.273c-1.065 0-2-.215-2.806-.645a4.525 4.525 0 0 1-1.864-1.823c-.437-.785-.655-1.71-.655-2.775s.218-1.99.655-2.775a4.46 4.46 0 0 1 1.864-1.813c.805-.423 1.74-.634 2.806-.634c1.065 0 2 .211 2.805.634a4.46 4.46 0 0 1 1.864 1.813c.437.785.655 1.71.655 2.775s-.218 1.99-.655 2.775a4.524 4.524 0 0 1-1.864 1.823c-.805.43-1.74.645-2.805.645m0-2.355c1.502 0 2.252-.963 2.252-2.888c0-.97-.194-1.693-.583-2.17c-.39-.479-.946-.718-1.67-.718c-1.501 0-2.252.963-2.252 2.888c0 1.925.75 2.888 2.253 2.888m13.885-5.57l-1.74.183c-.86.082-1.468.325-1.823.727c-.356.403-.533.94-.533 1.608v5.243h-3.093V61.024h2.97v1.7c.505-1.16 1.55-1.795 3.134-1.904l.9-.062zm8.986-2.274h3.03l-6.061 13.721h-3.134l1.925-4.239l-4.137-9.482h3.216l2.54 6.39zm10.199-.267c.874 0 1.645.212 2.314.635c.669.424 1.191 1.028 1.567 1.813c.375.785.563 1.696.563 2.734s-.188 1.956-.563 2.755c-.376.798-.901 1.42-1.577 1.863c-.676.444-1.444.666-2.304.666c-.697 0-1.325-.147-1.884-.44c-.56-.294-.99-.7-1.29-1.22v1.496h-3.052V56.642h3.092v5.734c.3-.505.727-.898 1.28-1.178a4.045 4.045 0 0 1 1.854-.42m-.901 8.11c.723 0 1.283-.255 1.679-.767c.396-.512.594-1.233.594-2.161c0-.915-.198-1.614-.594-2.1c-.396-.484-.956-.726-1.68-.726c-.723 0-1.283.249-1.679.747c-.396.499-.594 1.205-.594 2.12c0 .928.198 1.642.594 2.14c.396.498.956.748 1.68.748zm12.062 2.356c-1.065 0-2-.215-2.805-.645a4.525 4.525 0 0 1-1.864-1.823c-.437-.785-.656-1.71-.656-2.775s.219-1.99.656-2.775a4.46 4.46 0 0 1 1.864-1.813c.805-.423 1.74-.634 2.805-.634c1.065 0 2 .211 2.806.634a4.458 4.458 0 0 1 1.864 1.813c.437.785.655 1.71.655 2.775s-.218 1.99-.655 2.775a4.523 4.523 0 0 1-1.864 1.823c-.806.43-1.74.645-2.806.645m0-2.355c1.502 0 2.253-.963 2.253-2.888c0-.97-.194-1.693-.584-2.17c-.389-.479-.945-.718-1.669-.718c-1.502 0-2.252.963-2.252 2.888c0 1.925.75 2.888 2.252 2.888m11.531 2.355c-1.065 0-2.001-.215-2.806-.645a4.523 4.523 0 0 1-1.864-1.823c-.437-.785-.655-1.71-.655-2.775s.218-1.99.655-2.775a4.458 4.458 0 0 1 1.864-1.813c.805-.423 1.741-.634 2.806-.634c1.064 0 2 .211 2.805.634a4.458 4.458 0 0 1 1.864 1.813c.437.785.655 1.71.655 2.775s-.218 1.99-.655 2.775a4.523 4.523 0 0 1-1.864 1.823c-.805.43-1.741.645-2.805.645m0-2.355c1.501 0 2.252-.963 2.252-2.888c0-.97-.194-1.693-.583-2.17c-.389-.479-.946-.718-1.669-.718c-1.502 0-2.253.963-2.253 2.888c0 1.925.751 2.888 2.253 2.888M128 71.08h-3.789l-3.85-4.485v4.485h-3.093V56.642h3.093v8.683l3.707-4.28h3.686l-4.219 4.792z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#FF4785\\\" d=\\\"m19.183 51.002l-1.421.09l.11 2.954a.192.192 0 0 1-.31.157l-.952-.75l-1.127.855a.192.192 0 0 1-.308-.16l.127-2.903l-14.095.88A1.288 1.288 0 0 0 .001 53.46l.793 21.133a1.287 1.287 0 0 0 1.229 1.238l17.182.772a1.289 1.289 0 0 0 1.345-1.286v-23.03a1.287 1.287 0 0 0-1.367-1.285m-8.52 4.354c3.35 0 5.181 1.793 5.181 5.203c-.453.352-3.826.592-3.826.092c.07-1.911-.785-1.995-1.26-1.995c-.452 0-1.212.136-1.212 1.16c0 2.525 6.512 2.389 6.512 7.485c0 2.866-2.33 4.45-5.3 4.45c-3.066 0-5.745-1.24-5.443-5.541c.12-.505 4.017-.385 4.017 0c-.048 1.774.356 2.296 1.378 2.296c.784 0 1.141-.432 1.141-1.16c0-2.594-6.417-2.684-6.417-7.44c0-2.73 1.878-4.55 5.229-4.55\\\"/></g>\"\n\t\t},\n\t\t\"streamlit\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff4b4b\\\" d=\\\"m63.993 72.521l-22.44-11.86l-38.95-20.587c-.035-.035-.106-.035-.142-.035c-1.422-.676-2.88.746-2.346 2.168l19.846 50.62l.004.01l.06.15c.814 1.888 2.592 3.054 4.526 3.513c.164.036.28.067.477.107c.196.043.47.103.704.12c.039.004.074.004.114.007h.028c.028.004.057.004.085.008H26c.024.003.053.003.078.003h.046a.555.555 0 0 0 .085.004a348.89 348.89 0 0 0 75.629 0a8.967 8.967 0 0 0 1.152-.074c.01-.005.025-.005.035-.008c.06-.008.121-.018.182-.028a3.5 3.5 0 0 0 .266-.047c.178-.039.259-.067.5-.15a9.57 9.57 0 0 0 .893-.349c.25-.12.424-.237.634-.368c.26-.164.506-.331.757-.519c.108-.083.182-.135.26-.21l-.043-.025z\\\"/><path fill=\\\"#7d353b\\\" d=\\\"M125.446 40.075h-.035L86.446 60.66l21.66 32.259l19.797-50.712v-.071c.498-1.494-1.031-2.845-2.457-2.062\\\"/><path fill=\\\"#bd4043\\\" d=\\\"M66.07 30.286c-.997-1.454-3.165-1.454-4.125 0L41.554 60.661l22.439 11.86l42.523 22.474c.267-.261.481-.516.708-.785c.32-.395.618-.817.881-1.29l-21.66-32.26Z\\\"/>\"\n\t\t},\n\t\t\"streamlit-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff4b4b\\\" d=\\\"m63.716 49.361l-7.892-4.18l-13.698-7.258c-.013-.012-.037-.012-.05-.012c-.5-.238-1.013.263-.825.764l6.98 17.844v.004l.022.053c.286.665.912 1.076 1.592 1.238c.057.012.098.024.167.038c.07.015.165.036.248.042l.04.003h.01c.01 0 .02 0 .03.002h.014a.213.213 0 0 0 .027.001h.016a122.414 122.414 0 0 0 26.627.001a3.109 3.109 0 0 0 .406-.026l.013-.002l.063-.01c.031-.004.063-.01.094-.016c.063-.014.091-.024.176-.054a3.43 3.43 0 0 0 .314-.122c.088-.043.149-.084.223-.13c.091-.058.178-.117.266-.183c.038-.03.064-.048.091-.074l-.015-.009z\\\"/><path fill=\\\"#7d353b\\\" d=\\\"M85.328 37.923h-.013L71.612 45.18l7.618 11.372l6.962-17.877v-.025a.602.602 0 0 0-.864-.727\\\"/><path fill=\\\"#bd4043\\\" d=\\\"M64.446 34.473c-.35-.513-1.113-.513-1.45 0L55.823 45.18l7.892 4.181l14.954 7.923a3.69 3.69 0 0 0 .25-.277c.112-.14.217-.289.31-.455L71.611 45.18z\\\"/><path fill=\\\"#262730\\\" d=\\\"M13.896 75.793h2.76c-.127-3.56-3.404-6.223-7.958-6.223c-4.507 0-8.049 2.628-8.049 6.592c0 3.181 2.3 5.072 5.98 6.132l2.897.83c2.484.691 4.692 1.567 4.692 3.918c0 2.582-2.484 4.288-5.75 4.288c-2.805 0-5.289-1.245-5.519-3.919H.005c.276 3.873 3.404 6.5 8.463 6.5c5.428 0 8.51-2.996 8.51-6.822c0-4.426-4.186-5.855-6.624-6.5l-2.392-.646c-1.747-.461-4.553-1.383-4.553-3.919c0-2.259 2.07-3.919 5.197-3.919c2.852 0 5.014 1.36 5.29 3.688m14.435 0H24.56v-4.24h-2.714v4.24h-2.668V78.1h2.668v11.064c0 3.089 2.484 4.564 4.783 4.564c1.012 0 1.656-.184 2.024-.323l-.552-2.443c-.23.046-.598.138-1.196.138c-1.195 0-2.345-.369-2.345-2.674V78.1h3.771zm3.435 17.704h2.713V82.294c0-2.397 1.886-4.15 4.462-4.15c.724 0 1.471.14 1.655.185v-2.766a25.91 25.91 0 0 0-1.425-.046c-2.116 0-3.956 1.199-4.6 2.95h-.184v-2.674h-2.621zm18.267.368c3.588 0 6.21-1.797 7.037-4.471l-2.622-.738c-.69 1.844-2.288 2.766-4.415 2.766c-3.185 0-5.381-2.063-5.508-5.855h12.821v-1.152c0-6.593-3.91-8.852-7.589-8.852c-4.783 0-7.957 3.78-7.957 9.22c0 5.44 3.128 9.082 8.233 9.082m-5.508-10.65c.184-2.754 2.128-5.209 5.232-5.209c2.944 0 4.83 2.213 4.83 5.21zm21.499 10.697c3.081 0 4.691-1.66 5.243-2.813h.138v2.398h2.714V81.833c0-5.625-4.278-6.27-6.531-6.27c-2.668 0-5.704.922-7.083 4.15l2.575.921c.598-1.29 2.012-2.674 4.6-2.674c2.495 0 3.725 1.326 3.725 3.596v.092c0 1.314-1.334 1.2-4.553 1.614c-3.277.426-6.853 1.153-6.853 5.21c0 3.457 2.667 5.44 6.025 5.44m.414-2.444c-2.162 0-3.726-.968-3.726-2.858c0-2.075 1.886-2.72 4.002-2.997c1.15-.138 4.231-.46 4.691-1.014v2.49c0 2.212-1.748 4.38-4.967 4.38m11.986 2.029h2.714V82.432c0-2.593 1.886-4.426 4.001-4.426c2.059 0 3.496 1.349 3.496 3.366v12.125h2.76V81.97c0-2.282 1.425-3.965 3.909-3.965c1.932 0 3.587 1.026 3.587 3.642v11.849h2.714V81.648c0-4.16-2.23-6.085-5.381-6.085c-2.53 0-4.381 1.164-5.29 2.997h-.183c-.874-1.89-2.415-2.997-4.738-2.997c-2.3 0-4.001 1.106-4.737 2.997h-.23v-2.767h-2.622Zm30.209-23.604h-2.714v23.604h2.714zm4.322 23.604h2.714V75.793h-2.714zm1.38-20.654c1.058 0 1.932-.83 1.932-1.844c0-1.014-.874-1.844-1.932-1.844c-1.058 0-1.932.83-1.932 1.844c0 1.014.874 1.844 1.932 1.844m13.338 2.95H123.9v-4.24h-2.713v4.24h-2.668V78.1h2.668v11.064c0 3.089 2.483 4.564 4.783 4.564c1.012 0 1.656-.184 2.024-.323l-.552-2.443c-.23.046-.598.138-1.196.138c-1.196 0-2.346-.369-2.346-2.674V78.1h3.772z\\\"/>\"\n\t\t},\n\t\t\"stylus\": {\n\t\t\t\"body\": \"<g fill=\\\"#333\\\"><path d=\\\"M20.62 85.39c3.25-3.89 3.64-7.91 1.12-15.37c-1.59-4.72-4.24-8.36-2.3-11.29c2.07-3.13 6.47-.1 2.81 4.08l.73.51c4.4.51 6.57-5.52 3.28-7.24c-8.67-4.53-16.26 4.18-12.91 14.26c1.44 4.27 3.44 8.8 1.82 12.41c-1.4 3.09-4.11 4.91-5.93 5C5.44 87.91 8 79.2 12.33 77c.38-.19.92-.45.41-1.08c-5.39-.61-8.55 1.88-10.36 5.36c-5.29 10.14 10.05 13.87 18.24 4.11m94.72-29.72c1.24 3.06 3.13 6.09 2 8.77c-.92 2.3-2.14 3.25-3.48 3.48c-1.88.32-1.37-5.58 1.85-7.33c.29-.16.7-.92.32-1.37c-4.08-.22-6.38 1.72-7.62 4.31c-3.6 7.56 8.16 9.63 13.94 2.2c2.3-3 2.39-5.9.19-11.23c-1.4-3.38-3.54-5.9-2.2-8.13s4.88-.32 2.3 2.84l.57.32c3.35.19 4.72-4.27 2.17-5.39c-6.73-2.89-13.01 4.35-10.04 11.53\\\"/><path d=\\\"M72.73 47.6c-2.33-1.85-8.86 1.24-10.73 5.84c-2.33 5.84-5.77 14.35-9.15 18.08c-3.57 3.92-3.92.89-3.57-1.37c.83-5.33 6-17.67 8.87-21.14c-1.05-1.56-7.94-1.34-12.72 6.09c-1.78 2.8-5.86 12.14-10.43 19.51c-1 1.59-2.23.48-1.28-3.25c1.08-4.31 4.27-16.14 8.39-25.45c10.78-2.14 22.23-3.64 31-3.67c1.18-.32 2-1.37 0-1.44c-7.56-.26-18.91.64-29.53 2c2-4.08 4.24-7.33 6.47-8.71c-2.42-1.53-7.33-.92-10.14 3.22a55 55 0 0 0-3.67 6.51c-7.74 1.18-14.4 2.57-17.78 3.84s-3.13 5.58-1 4.78a141.67 141.67 0 0 1 17.09-4.91C30.32 57.1 27 68.39 26.2 73c-2 11.16 4.94 11.1 8.32 6.7C38.2 74.87 45.85 57.93 47 56.15c.35-.61.83-.29.57.26c-8.55 17.06-7.81 23.66-.89 22.2c3.13-.67 8.51-6 9.92-8.8c.29-.67.89-.61.77-.32C52 83.54 45.08 94.92 40.46 98.5c-4.21 3.22-7.33-3.76 7.56-13.78c2.2-1.5 1.18-3.54-1.31-2.84C39 83.09 17 90.08 7.36 96.77c-.73.51-1.4.92-1.37 2c0 .61 1.08.38 1.59.06c12.5-7.49 22.74-10.43 34.47-12.88a.71.71 0 0 0 .51 0c.54-.13.51.16.16.38c-.8.45-1.59.86-1.79.92c-7.91 3.09-12.69 9.92-11 13.39c1.44 3 9.18 1.91 12.85-.06c9-4.88 15.53-14.45 20-27.65c3.89-11.68 8.8-24.93 9.95-25.33M125 74.61c-14.64-1.91-46.21.64-60.15 4.34c-4.15 1.08-3 3.28-.89 2.87l1-.22c11.45-2.23 39.23-4.18 55.43-1.08c1.9.34 7.74-5.52 4.61-5.91m-48.19-1.72C80.9 70.85 87 58.22 90.94 51.3c.29-.51.8-.1.51.26c-10.08 17.35-5.8 19.36-1.82 19.1C95 70.34 99.87 62.68 101 61c.45-.67.7-.13.45.35c-.26.8-1.18 2.2-2 4.11c-1.21 2.71.06 3.76 1.12 4.24c1.66.8 6.19.29 6.89-2.49c-4.53-.1 6.31-21.46 7.43-22.77c-3-1.75-7.72.16-9.85 4.37c-4.56 9-8.39 16.3-10.78 16.42c-4.66.26 5.36-20.12 7-20.76c-1-1.44-7.33-.83-10.87 4.66c-1.28 2-9.06 15.75-11 18c-3.38 4-3.64.57-2.68-3.44a47.34 47.34 0 0 1 1.56-5.07c2.23-5 4.62-6.63 6.09-8.26c9.85-10.94 15.5-19.8 13.27-23.28c-2-3.09-8.58-1.72-12.82 4.66c-7.81 11.7-15 27.74-15.95 35.08s4.35 7.85 7.95 6.07M81 51.43c.35-.8.57-1 1.18-2.36c3.47-7.72 7.82-15.85 10.9-19.65c1.88-2 4.53.7-.26 8a73.73 73.73 0 0 1-9.47 11.83c-.89 1-1.69 1.82-2 2.3c-.29.39-.58.32-.35-.12\\\"/></g>\"\n\t\t},\n\t\t\"subversion\": {\n\t\t\t\"body\": \"<path fill=\\\"#809CC8\\\" d=\\\"M0 17v33.574c17.301-7.203 40.414-14.441 69.504-21.75C88.145 24.152 106.16 20.223 123.559 17zm128 7.16c-16.867 2.504-31.996 5.457-45.309 8.789c-15.242 3.828-27.512 7.699-36.793 11.645c-9.293 3.875-13.609 7.008-13.004 9.426c.547 2.129 4.438 3.098 11.691 2.898c3.73-.07 9.777-.48 18.168-1.223l32.488-3.219c13.145-1.355 24.031-2.273 32.758-2.809zM90.527 66.75c-3.73.047-8.871.332-15.449.816c-6.602.492-14.77 1.207-24.559 2.219L12.641 73.5c-4.816.406-8.996.66-12.641.863v27.23c19.938-2.914 37.973-6.391 54.055-10.422c15.797-3.957 27.941-7.82 36.473-11.555c8.547-3.734 12.535-6.902 11.871-9.469c-.555-2.215-4.559-3.34-11.871-3.398zM128 76.309c-17.52 6.863-39.266 13.598-65.246 20.121C38.566 102.492 17.672 106.832 0 109.523v.227h128zM5.348 82.02c.063-.008.113 0 .18 0c.332.012.684.113.906.363a1.25 1.25 0 0 1-1.133 2.082c-.617-.09-1.094-.695-1.043-1.312c.02-.582.512-1.062 1.09-1.133m4.531 0c.289.012.555.07.77.273a1.25 1.25 0 0 1 .363 1.402c-.187.496-.691.863-1.227.816c-.457-.02-.906-.305-1.086-.727c-.25-.547-.047-1.285.5-1.586c.203-.121.441-.184.68-.18zm-4.352 8.02c.539-.016 1.023.363 1.18.859c.164.555-.098 1.254-.637 1.496c-.539.27-1.246.102-1.586-.406c-.344-.496-.297-1.242.184-1.633c.234-.207.547-.324.859-.316m4.352 0c.43-.023.809.25 1.039.59a1.23 1.23 0 0 1-.316 1.629c-.512.391-1.312.324-1.723-.18c-.422-.504-.391-1.359.137-1.766c.23-.191.563-.281.863-.273m0 0\\\"/>\"\n\t\t},\n\t\t\"subversion-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M0 55.795h128v16.41H0Zm0 0\\\"/><path fill=\\\"#809cc8\\\" d=\\\"M29.924 60.72c-.505 0-.946.063-1.321.2c-.363.147-.647.344-.848.596a1.494 1.494 0 0 0-.292.891c0 .356.095.643.284.883c.189.24.438.422.749.557c.319.134.713.252 1.187.358l.835.209c.201.063.375.161.509.287a.629.629 0 0 1 .197.489c0 .256-.118.461-.367.63c-.248.17-.556.261-.95.261c-.291 0-.52-.04-.693-.126c-.181-.087-.315-.186-.405-.323a2.25 2.25 0 0 1-.28-.481c-.063-.166-.142-.292-.244-.367a.482.482 0 0 0-.351-.13a.584.584 0 0 0-.422.166a.505.505 0 0 0-.17.378c0 .256.095.513.28.792a2.08 2.08 0 0 0 .733.658c.41.217.935.327 1.581.327c.536 0 1.001-.074 1.384-.244a1.988 1.988 0 0 0 .906-.69l.023-.056l.044-.051l.086-.174l.028-.066l.02-.056l.016-.055l.04-.13l.008-.06l.02-.07l.008-.067v-.06l.004-.067v-.078c0-.3-.06-.556-.17-.77a1.504 1.504 0 0 0-.496-.524a3.436 3.436 0 0 0-.753-.347a10.33 10.33 0 0 0-1.006-.269l-.622-.15a3.533 3.533 0 0 1-.375-.149a.848.848 0 0 1-.304-.236a.451.451 0 0 1-.11-.304c0-.196.11-.37.32-.508c.208-.147.484-.205.82-.205c.374 0 .643.055.816.193c.166.126.3.3.43.527c.091.166.17.273.245.344c.074.07.19.103.347.103c.157 0 .3-.06.418-.174a.532.532 0 0 0 .165-.387a1.01 1.01 0 0 0-.138-.488a1.497 1.497 0 0 0-.426-.485a2.268 2.268 0 0 0-.722-.374c-.291-.095-.638-.13-1.036-.13zm8.5 0c-.189 0-.355.051-.473.181s-.186.308-.186.56v2.914c0 .454.06.848.17 1.175c.103.323.268.6.496.809c.228.209.525.374.892.47a4.855 4.855 0 0 0 1.281.148c.43 0 .797-.043 1.116-.13a2.41 2.41 0 0 0 .812-.445a1.786 1.786 0 0 0 .571-.836c.103-.319.143-.713.143-1.182v-2.922c0-.253-.056-.441-.182-.56c-.118-.13-.284-.182-.484-.182c-.201 0-.356.051-.474.181c-.118.119-.177.308-.177.56v3.012c0 .517-.1.907-.32 1.159c-.208.252-.579.379-1.1.379c-.362 0-.654-.06-.863-.19a.949.949 0 0 1-.425-.527a2.425 2.425 0 0 1-.13-.848v-2.984c0-.253-.06-.434-.17-.56c-.126-.13-.296-.182-.497-.182m11.154.099c-.292 0-.492.06-.619.177c-.126.118-.185.308-.185.576v4.55c0 .26.06.449.185.575c.118.122.327.177.619.177h1.983c.348 0 .662-.016.915-.047a2.543 2.543 0 0 0 .682-.165a1.635 1.635 0 0 0 .757-.6c.193-.268.28-.575.28-.91c0-.737-.426-1.235-1.285-1.483c.658-.292.982-.73.982-1.332a1.292 1.292 0 0 0-.1-.505a1.403 1.403 0 0 0-.268-.43a1.453 1.453 0 0 0-.41-.323a1.683 1.683 0 0 0-.61-.2a4.517 4.517 0 0 0-.817-.06zm.517.914h1.08c.473 0 .835.052 1.073.15c.225.102.347.307.347.61a.656.656 0 0 1-.11.383a.676.676 0 0 1-.406.339c-.186.063-.441.087-.769.087h-1.214zm0 2.445h1.375c.466 0 .813.066 1.041.209c.23.134.347.366.347.666c0 .603-.445.91-1.34.91h-1.423zm0 0\\\"/><path fill=\\\"#999\\\" d=\\\"M59.644 60.72a.629.629 0 0 0-.457.165a.525.525 0 0 0-.182.387a.888.888 0 0 0 .027.2c.016.08.048.154.07.222l.084.217l1.549 3.927l.17.426a2.029 2.029 0 0 0 .196.366c.083.103.182.186.3.253a.946.946 0 0 0 .453.094a.947.947 0 0 0 .45-.094c.117-.067.216-.15.3-.253c.07-.103.133-.232.189-.366l.17-.426l1.577-3.959l.079-.217a.949.949 0 0 0 .063-.2c.016-.075.04-.139.04-.193a.501.501 0 0 0-.095-.269a.652.652 0 0 0-.217-.209a.727.727 0 0 0-.32-.07a.6.6 0 0 0-.366.099a.767.767 0 0 0-.188.225c-.04.078-.091.229-.17.449l-1.483 4.093l-1.474-4.069a2.967 2.967 0 0 0-.284-.615c-.09-.13-.256-.181-.481-.181zm33.366 0c-.504 0-.942.063-1.305.2c-.374.147-.654.344-.855.596a1.494 1.494 0 0 0-.292.891c0 .356.103.643.283.883c.181.24.434.422.753.557c.312.134.702.252 1.175.358l.844.209c.209.063.383.161.509.287a.664.664 0 0 1 .205.489c0 .256-.13.461-.367.63c-.248.17-.567.261-.958.261c-.291 0-.52-.04-.693-.126a1.118 1.118 0 0 1-.414-.323a2.08 2.08 0 0 1-.256-.481a1.017 1.017 0 0 0-.253-.367a.525.525 0 0 0-.355-.13a.595.595 0 0 0-.426.166a.5.5 0 0 0-.165.378c0 .256.09.513.272.792c.186.273.43.489.722.658c.418.217.95.327 1.597.327c.536 0 .997-.074 1.391-.244c.391-.161.69-.394.892-.69l.039-.056l.027-.051l.04-.063l.055-.11l.027-.066l.013-.056l.027-.055l.02-.067l.008-.063l.02-.06l.008-.07l.012-.066v-.06l.009-.067v-.078c0-.3-.06-.556-.17-.77a1.541 1.541 0 0 0-.497-.524a3.109 3.109 0 0 0-.753-.347c-.3-.1-.634-.186-.997-.269l-.639-.15l-.374-.149a.868.868 0 0 1-.3-.236a.51.51 0 0 1-.099-.304c0-.196.103-.37.312-.508c.209-.147.482-.205.828-.205c.362 0 .639.055.8.193c.166.126.312.3.43.527c.09.166.174.273.256.344c.075.07.193.103.34.103a.545.545 0 0 0 .41-.174a.51.51 0 0 0 .173-.387a1.02 1.02 0 0 0-.142-.488a1.413 1.413 0 0 0-.414-.485a2.37 2.37 0 0 0-.734-.374c-.293-.095-.639-.13-1.037-.13Zm8.548 0c-.189 0-.347.051-.465.181c-.13.127-.186.308-.186.56v4.772c0 .248.064.43.186.556c.122.126.275.19.465.19s.363-.056.489-.178c.118-.126.177-.312.177-.567v-4.771c0-.253-.06-.441-.177-.56c-.126-.13-.296-.182-.489-.182zm9.115 0c-.492 0-.938.063-1.332.22a2.665 2.665 0 0 0-.997.615a2.765 2.765 0 0 0-.623.994c-.138.394-.213.82-.213 1.281c0 .462.064.88.197 1.27s.347.726.61 1.005a2.856 2.856 0 0 0 1.014.647c.402.15.86.225 1.372.225a3.835 3.835 0 0 0 1.364-.225a2.621 2.621 0 0 0 1.005-.639c.276-.287.474-.614.611-.997c.137-.382.205-.816.205-1.277c0-.635-.126-1.183-.375-1.66a2.554 2.554 0 0 0-1.1-1.08l-.087-.044l-.094-.04l-.103-.047l-.095-.043l-.103-.032l-.103-.023l-.11-.04l-.1-.022l-.11-.017l-.113-.02l-.118-.02l-.114-.008l-.114-.02h-.122l-.13-.004zm9.245 0a.737.737 0 0 0-.421.11a.672.672 0 0 0-.288.308c-.056.11-.067.268-.067.469v4.668c0 .23.052.406.17.525c.11.122.268.177.45.177c.18 0 .33-.055.448-.177s.17-.288.17-.525v-3.556l2.492 3.537l.209.28c.074.094.149.177.232.244a.892.892 0 0 0 .264.149a1.11 1.11 0 0 0 .32.047c.473 0 .713-.26.713-.796v-4.759c0-.24-.056-.422-.166-.536c-.11-.114-.256-.165-.445-.165c-.182 0-.327.051-.434.165c-.107.114-.165.296-.165.536v3.6l-2.547-3.573l-.209-.303l-.197-.24a.757.757 0 0 0-.225-.135a.777.777 0 0 0-.303-.051zm-49.424.099a1.15 1.15 0 0 0-.323.074a.534.534 0 0 0-.269.245c-.062.11-.086.256-.086.434v4.55c0 .26.063.457.19.575c.126.118.343.177.626.177h3.6c.2 0 .35-.051.46-.138c.11-.087.154-.2.154-.343a.43.43 0 0 0-.153-.355c-.11-.083-.26-.126-.462-.126h-3.083v-1.735h2.736c.209 0 .362-.044.453-.122a.434.434 0 0 0 .143-.34c0-.142-.04-.252-.143-.339c-.103-.087-.252-.126-.453-.126h-2.736v-1.49h2.972c.221 0 .359-.044.47-.127a.45.45 0 0 0 0-.686c-.11-.091-.249-.13-.47-.13h-3.489c-.047 0-.095-.004-.138 0zm10.31 0c-.292 0-.497.06-.623.177c-.126.118-.193.308-.193.576v4.66c0 .248.06.43.178.556c.118.126.28.19.489.19a.643.643 0 0 0 .477-.178c.126-.126.182-.312.182-.567v-1.948h.46c.23 0 .43.027.588.09c.158.064.3.162.453.32a5.016 5.016 0 0 1 .517.682l.525.823l.292.438a1.16 1.16 0 0 0 .256.245a.692.692 0 0 0 .383.094a.767.767 0 0 0 .33-.066a.525.525 0 0 0 .218-.186a.394.394 0 0 0 .082-.236c0-.083-.047-.221-.138-.426a5.32 5.32 0 0 0-.394-.686a5.012 5.012 0 0 0-.568-.726a2.558 2.558 0 0 0-.666-.517c.556-.11.962-.295 1.235-.571c.283-.264.413-.63.413-1.076c0-.221-.039-.434-.122-.627a1.352 1.352 0 0 0-.351-.516a1.51 1.51 0 0 0-.552-.348a2.22 2.22 0 0 0-.564-.146l-.753-.031zm29.87.863c.374 0 .7.086.985.256c.292.157.505.402.651.734l.028.055l.027.075l.027.064l.027.06l.02.07l.02.06l.017.086l.012.064l.012.07l.016.08l.008.078l.004.079l.016.07v.087l.008.07v.091c0 .482-.086.888-.26 1.219a1.706 1.706 0 0 1-.666.725a1.928 1.928 0 0 1-.935.237a1.847 1.847 0 0 1-.73-.139a1.761 1.761 0 0 1-.583-.41a1.857 1.857 0 0 1-.395-.693a3.02 3.02 0 0 1-.142-.939c0-.335.052-.65.142-.934c.091-.269.226-.493.387-.67a1.75 1.75 0 0 1 .571-.414c.23-.091.47-.13.734-.13zm-29.361.051h1.222c.449 0 .757.031.91.087a.838.838 0 0 1 .383.292c.09.126.142.275.142.445c0 .22-.06.394-.178.508c-.11.135-.283.21-.5.265a3.714 3.714 0 0 1-.796.083h-1.183Zm0 0\\\"/><path fill=\\\"#809cc8\\\" d=\\\"M25.599 57.594v1.017h100.753v-1.017zm0 12.04v1.022h100.753v-1.021ZM0 55.796v5.942c3.264-1.278 7.625-2.554 13.109-3.847a180.366 180.366 0 0 1 10.199-2.094Zm24.145 1.27c-3.182.442-6.036.966-8.548 1.553c-2.875.679-5.19 1.365-6.94 2.062c-1.753.683-2.566 1.239-2.452 1.66c.103.38.836.553 2.205.513c.705-.004 1.845-.078 3.426-.208l6.13-.572a153.606 153.606 0 0 1 6.179-.492zm-7.07 7.53c-.701.009-1.671.06-2.913.147l-4.633.39l-7.144.663L0 65.944v4.814c3.762-.512 7.164-1.131 10.196-1.84c2.98-.702 5.272-1.384 6.88-2.047c1.607-.662 2.365-1.218 2.24-1.675c-.104-.39-.86-.587-2.24-.6zm7.07 1.692c-3.304 1.214-7.405 2.405-12.309 3.556C7.274 70.916 3.332 71.688 0 72.16v.04h24.145Zm-23.136 1.01c.012-.005.02 0 .032 0c.063 0 .13.02.173.066c.064.06.079.161.044.24A.245.245 0 0 1 1 67.73c-.118-.016-.209-.122-.197-.232c.004-.103.095-.189.205-.2Zm.856 0c.052 0 .103.011.143.05a.206.206 0 0 1 .07.245a.234.234 0 0 1-.232.146a.246.246 0 0 1-.205-.126a.219.219 0 0 1 .095-.283a.283.283 0 0 1 .13-.032zm-.823 1.418a.232.232 0 0 1 .225.154a.218.218 0 0 1-.122.26a.238.238 0 0 1-.296-.07c-.064-.091-.06-.217.031-.288a.238.238 0 0 1 .162-.056m.823 0a.222.222 0 0 1 .193.103a.204.204 0 0 1-.06.288c-.094.07-.248.06-.323-.031a.222.222 0 0 1 .024-.315a.29.29 0 0 1 .165-.044zm0 0\\\"/>\"\n\t\t},\n\t\t\"supabase\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconSupabase0\\\" x1=\\\"53.974\\\" x2=\\\"94.163\\\" y1=\\\"54.974\\\" y2=\\\"71.829\\\" gradientTransform=\\\"translate(29.387 60.096)scale(1.1436)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#249361\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3ecf8e\\\"/></linearGradient><linearGradient id=\\\"deviconSupabase1\\\" x1=\\\"36.156\\\" x2=\\\"54.484\\\" y1=\\\"30.578\\\" y2=\\\"65.081\\\" gradientTransform=\\\"translate(29.387 60.096)scale(1.1436)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient></defs><path fill=\\\"url(#deviconSupabase0)\\\" d=\\\"M102.24 186.21c-3.267 4.117-9.904 1.862-9.977-3.397l-1.156-76.906h51.715c9.365 0 14.587 10.817 8.763 18.149z\\\" transform=\\\"translate(-27.722 -60.338)\\\"/><path fill=\\\"url(#deviconSupabase1)\\\" fill-opacity=\\\".2\\\" d=\\\"M102.24 186.21c-3.267 4.117-9.904 1.862-9.977-3.397l-1.156-76.906h51.715c9.365 0 14.587 10.817 8.763 18.149z\\\" transform=\\\"translate(-27.722 -60.338)\\\"/><path fill=\\\"#3ecf8e\\\" d=\\\"M53.484 2.128c3.267-4.117 9.905-1.862 9.977 3.396l.508 76.907H12.902c-9.365 0-14.587-10.817-8.764-18.149z\\\"/>\"\n\t\t},\n\t\t\"supabase-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#1f1f1f\\\" d=\\\"M33.406 66.334c.132 1.235 1.256 3.353 4.516 3.353c2.842 0 4.208-1.809 4.208-3.573c0-1.589-1.08-2.89-3.216-3.331l-1.543-.331c-.594-.11-.99-.441-.99-.97c0-.618.616-1.081 1.387-1.081c1.234 0 1.697.816 1.785 1.455l2.445-.551c-.132-1.17-1.168-3.132-4.252-3.132c-2.335 0-4.054 1.61-4.054 3.55c0 1.523.948 2.78 3.04 3.243l1.433.331c.837.177 1.167.574 1.167 1.059c0 .574-.462 1.08-1.432 1.08c-1.277 0-1.916-.793-1.982-1.654zm18.089 3.022h2.798a17.853 17.853 0 0 1-.11-1.963v-8.89h-2.93v6.31c0 1.256-.75 2.139-2.05 2.139c-1.365 0-1.982-.97-1.982-2.184v-6.264h-2.93v6.86c0 2.36 1.498 4.279 4.12 4.279c1.145 0 2.401-.441 2.996-1.456c0 .441.044.948.088 1.17zm8.745 4.191v-5.25c.529.728 1.63 1.324 3.129 1.324c3.062 0 5.11-2.427 5.11-5.713c0-3.22-1.828-5.647-5-5.647c-1.63 0-2.842.728-3.327 1.566v-1.323H57.31v15.043zm5.354-9.617c0 1.941-1.19 3.066-2.688 3.066c-1.498 0-2.71-1.147-2.71-3.066c0-1.92 1.212-3.044 2.71-3.044s2.688 1.125 2.688 3.044m4.545 2.47c0 1.698 1.41 3.265 3.723 3.265c1.608 0 2.644-.75 3.194-1.61c0 .419.045 1.014.11 1.3h2.689a12.162 12.162 0 0 1-.132-1.72v-5.338c0-2.183-1.278-4.124-4.715-4.124c-2.908 0-4.473 1.875-4.649 3.573l2.6.551c.088-.948.793-1.764 2.07-1.764c1.235 0 1.83.64 1.83 1.411c0 .375-.199.684-.816.772l-2.665.397c-1.807.265-3.239 1.346-3.239 3.287m4.34 1.08c-.947 0-1.41-.617-1.41-1.257c0-.838.595-1.257 1.344-1.367l2.445-.375v.485c0 1.92-1.145 2.515-2.38 2.515zm11.039 1.876v-1.323c.572.926 1.718 1.588 3.216 1.588c3.085 0 5.112-2.449 5.112-5.735c0-3.22-1.829-5.67-5.001-5.67c-1.609 0-2.798.707-3.283 1.479v-6.309h-2.886v15.97zm5.397-5.448c0 1.985-1.19 3.088-2.687 3.088c-1.476 0-2.71-1.125-2.71-3.088c0-1.986 1.234-3.066 2.71-3.066c1.498 0 2.687 1.08 2.687 3.066m4.59 2.492c0 1.698 1.41 3.265 3.723 3.265c1.608 0 2.644-.75 3.195-1.61c0 .419.044 1.014.11 1.3h2.688a12.23 12.23 0 0 1-.132-1.72v-5.338c0-2.183-1.278-4.124-4.715-4.124c-2.908 0-4.473 1.875-4.649 3.573l2.6.551c.088-.948.793-1.764 2.07-1.764c1.235 0 1.83.64 1.83 1.411c0 .375-.199.684-.816.772l-2.665.397c-1.807.265-3.239 1.346-3.239 3.287m4.34 1.08c-.947 0-1.41-.617-1.41-1.257c0-.838.595-1.257 1.344-1.367l2.445-.375v.485c0 1.92-1.145 2.515-2.379 2.515zm7.275-1.146c.132 1.235 1.256 3.353 4.516 3.353c2.842 0 4.208-1.809 4.208-3.573c0-1.589-1.08-2.89-3.216-3.331l-1.543-.331c-.594-.11-.99-.441-.99-.97c0-.618.616-1.081 1.387-1.081c1.234 0 1.697.816 1.785 1.455l2.445-.551c-.132-1.17-1.167-3.132-4.252-3.132c-2.335 0-4.053 1.61-4.053 3.55c0 1.523.946 2.78 3.04 3.243l1.432.331c.837.177 1.168.574 1.168 1.059c0 .574-.463 1.08-1.433 1.08c-1.278 0-1.916-.793-1.982-1.654zm13.17-3.64c.066-.993.903-2.14 2.424-2.14c1.674 0 2.38 1.06 2.423 2.14zm5.134 2.823c-.353.97-1.102 1.655-2.468 1.655c-1.454 0-2.666-1.037-2.732-2.47h7.755c0-.045.044-.486.044-.905c0-3.485-2.005-5.625-5.353-5.625c-2.776 0-5.332 2.25-5.332 5.713c0 3.662 2.621 5.801 5.596 5.801c2.666 0 4.384-1.566 4.935-3.44z\\\"/><path fill=\\\"url(#deviconSupabaseWordmark0)\\\" d=\\\"M14.069 75.932c-.63.794-1.91.359-1.924-.655l-.223-14.831h9.973c1.806 0 2.813 2.086 1.69 3.5z\\\"/><path fill=\\\"url(#deviconSupabaseWordmark1)\\\" fill-opacity=\\\".2\\\" d=\\\"M14.069 75.932c-.63.794-1.91.359-1.924-.655l-.223-14.831h9.973c1.806 0 2.813 2.086 1.69 3.5z\\\"/><path fill=\\\"#3ecf8e\\\" d=\\\"M10.013 52.068c.63-.794 1.91-.359 1.924.655l.098 14.831H2.187c-1.806 0-2.813-2.086-1.69-3.5z\\\"/><defs><linearGradient id=\\\"deviconSupabaseWordmark0\\\" x1=\\\"53.974\\\" x2=\\\"94.163\\\" y1=\\\"54.974\\\" y2=\\\"71.829\\\" gradientTransform=\\\"translate(.02 51.611)scale(.22053)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#249361\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3ecf8e\\\"/></linearGradient><linearGradient id=\\\"deviconSupabaseWordmark1\\\" x1=\\\"36.156\\\" x2=\\\"54.484\\\" y1=\\\"30.578\\\" y2=\\\"65.081\\\" gradientTransform=\\\"translate(.02 51.611)scale(.22053)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient></defs>\"\n\t\t},\n\t\t\"svelte\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff3e00\\\" d=\\\"M110.43 16.936C98.553-.076 75.09-5.118 58.13 5.696l-29.792 19a34.198 34.198 0 0 0-15.48 22.897a25.478 30.64 0 0 0-.572 6.396a36.15 36.15 0 0 0 4.163 16.73A34.396 34.396 0 0 0 11.34 83.5a25.348 30.483 0 0 0 .345 14.412a36.48 36.48 0 0 0 5.9 13.152c11.878 17.01 35.394 22.053 52.3 11.24l29.762-19.001a34.128 34.128 0 0 0 15.438-22.918a35.52 35.52 0 0 0 .572-6.386a36.183 36.183 0 0 0-4.112-16.71a34.396 34.396 0 0 0 5.112-12.77c.369-2.11.557-4.245.562-6.386a36.41 36.41 0 0 0-6.787-21.178z\\\"/><path fill=\\\"#fff\\\" d=\\\"M55.219 112.662a28.463 34.23 0 0 1-5.954.76a23.638 23.638 0 0 1-19.435-10.187a21.89 21.89 0 0 1-4.08-12.74a15.658 18.83 0 0 1 .333-3.833a15.425 18.55 0 0 1 .72-2.782l.561-1.708l1.52 1.156a38.646 38.646 0 0 0 11.658 5.834l1.104.333l-.104 1.104v.573a6.625 6.625 0 0 0 1.228 3.854a7.092 7.092 0 0 0 2.538 2.288a8.262 9.936 0 0 0 3.312.837a8.251 9.923 0 0 0 1.79-.229a7.272 8.745 0 0 0 1.833-.802l29.76-19.094a6.258 6.258 0 0 0 2.904-5.302a6.62 6.62 0 0 0-1.26-3.844a7.137 7.137 0 0 0-2.553-2.252a8.313 9.997 0 0 0-3.307-.81a8.246 9.917 0 0 0-1.79.23a6.938 8.344 0 0 0-1.822.801l-11.346 7.25a24.376 29.314 0 0 1-6.048 2.656a23.643 23.643 0 0 1-25.39-9.416a21.944 21.944 0 0 1-4.08-12.74c.002-1.285.114-2.567.333-3.833a20.653 20.653 0 0 1 9.286-13.781l29.792-18.99a21.863 21.863 0 0 1 6.048-2.667a23.963 23.963 0 0 1 5.954-.75A23.675 23.675 0 0 1 98.22 24.745a21.937 21.937 0 0 1 4.029 12.75a15.748 18.939 0 0 1-.334 3.844a15.407 18.529 0 0 1-.718 2.781l-.562 1.708l-1.52-1.114a38.414 38.414 0 0 0-11.658-5.834l-1.104-.343l.104-1.105v-.572a6.7 6.7 0 0 0-1.228-3.865a7.128 7.128 0 0 0-2.55-2.25a8.309 9.992 0 0 0-3.3-.813a8.221 9.887 0 0 0-1.77.271a6.819 8.2 0 0 0-1.831.802l-29.793 18.99a5.88 7.071 0 0 0-1.836 1.79a4.75 5.713 0 0 0-.963 2.377a5.037 6.057 0 0 0-.136 1.104a6.62 6.62 0 0 0 1.228 3.844a7.116 7.116 0 0 0 2.549 2.25a8.299 9.98 0 0 0 3.301.812a8.247 9.918 0 0 0 1.79-.23a6.943 8.35 0 0 0 1.833-.801l11.367-7.292a24.218 29.125 0 0 1 6.048-2.656a28.526 34.305 0 0 1 5.954-.76A23.662 23.662 0 0 1 96.566 60.61a21.94 21.94 0 0 1 3.737 16.614a20.603 20.603 0 0 1-9.286 13.781l-29.74 18.99a24.308 29.233 0 0 1-6.057 2.667z\\\"/>\"\n\t\t},\n\t\t\"svelte-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff3e00\\\" d=\\\"M85.105 37.781c-6.156-7.5-18.21-9.668-27.496-4.945L41.906 41.21c-4.297 2.262-7.246 5.937-8.11 10.121c-.769 3.473-.1 7.066 1.876 10.191c-1.352 1.704-2.258 3.622-2.664 5.645c-.899 4.246.273 8.621 3.254 12.144c6.168 7.481 18.191 9.66 27.496 4.989l15.715-8.383c4.273-2.262 7.21-5.938 8.078-10.117c.758-3.469.09-7.051-1.883-10.16c4.172-5.496 3.953-12.567-.563-17.86zM56.043 80.04c-5.05 1.102-10.39-.562-13.36-4.164c-1.82-2.113-2.488-4.727-1.96-7.316l.308-1.25l.282-.774l.843.469c1.852 1.176 3.926 2.023 6.137 2.594l.57.164l-.062.468c-.055.657.176 1.391.625 1.95c.922 1.113 2.52 1.644 4.062 1.297c.34-.094.672-.184.953-.332l15.653-8.375c.789-.422 1.293-1.06 1.488-1.81c.176-.784-.055-1.581-.559-2.214c-.933-1.086-2.52-1.574-4.066-1.25c-.336.098-.7.211-.984.356l-5.918 3.152c-5.602 2.797-12.836 1.48-16.551-3.012c-1.809-2.117-2.52-4.754-1.973-7.32c.547-2.535 2.356-4.762 4.977-6.121l15.617-8.375c.984-.516 2.047-.89 3.2-1.176c5.05-1.105 10.374.563 13.359 4.145c2.101 2.48 2.695 5.652 1.597 8.558l-.285.781l-.808-.468a22.627 22.627 0 0 0-6.168-2.594l-.563-.137l.055-.469a2.83 2.83 0 0 0-.625-1.976c-.918-1.113-2.52-1.582-4.063-1.25c-.34.09-.672.183-.953.332l-15.683 8.445c-.79.442-1.293 1.059-1.458 1.828c-.164.754.055 1.582.56 2.192c.898 1.11 2.53 1.578 4.042 1.246c.363-.09.703-.184.977-.328l5.984-3.203c.977-.54 2.07-.938 3.191-1.196c5.086-1.11 10.391.563 13.36 4.164c1.82 2.117 2.52 4.727 2.015 7.29c-.527 2.538-2.312 4.761-4.91 6.124L59.301 78.84c-1.02.512-2.117.918-3.258 1.191zm0 0\\\"/><path fill=\\\"#797878\\\" d=\\\"M37.691 102.574c-1.437 0-2.511-.32-3.222-.965c-.711-.644-1.082-1.472-1.117-2.48h1.296c.07.758.383 1.32.946 1.687c.562.364 1.246.543 2.039.543c.758 0 1.363-.156 1.82-.464c.465-.313.695-.735.695-1.266c0-.559-.238-.969-.714-1.223c-.477-.254-1.301-.504-2.465-.75c-1.164-.25-2-.594-2.508-1.035c-.504-.437-.758-1.023-.758-1.758c0-.82.328-1.5.988-2.027c.66-.527 1.54-.79 2.63-.79c1.148 0 2.074.266 2.78.798c.704.531 1.075 1.285 1.118 2.258h-1.313c-.136-1.23-.976-1.848-2.527-1.848c-.75 0-1.332.14-1.746.426c-.41.28-.617.656-.617 1.125c0 .425.164.742.492.957c.336.21.953.418 1.855.617c.907.2 1.63.394 2.16.59c.532.195.989.5 1.368.91c.379.406.57.957.57 1.644c0 .875-.348 1.602-1.047 2.184c-.695.578-1.602.867-2.723.867M51.586 92.22l-3.957 10.18h-1.39l-3.958-10.18h1.438l3.215 8.73l3.214-8.73zm8.828 10.18h-7.59V92.22h7.352v1.207h-6.008v3.113h5.621v1.207h-5.621v3.445h6.246zm8.191 0H62.31V92.22h1.347v8.972h4.95zm8.856-8.973h-3.367v8.972h-1.356v-8.972h-3.34V92.22h8.063zm9.047 8.972h-7.59v-10.18h7.355v1.208h-6.007v3.113h5.617v1.207h-5.617v3.445h6.242zm0 0\\\"/>\"\n\t\t},\n\t\t\"swagger\": {\n\t\t\t\"body\": \"<path fill=\\\"#85ea2d\\\" d=\\\"M63.999 124.945c-33.607 0-60.95-27.34-60.95-60.949C3.05 30.388 30.392 3.048 64 3.048s60.95 27.342 60.95 60.95c0 33.607-27.343 60.946-60.95 60.946z\\\"/><path fill=\\\"#173647\\\" d=\\\"M40.3 43.311c-.198 2.19.072 4.454-.073 6.668c-.173 2.217-.444 4.407-.888 6.596c-.615 3.126-2.56 5.489-5.24 7.458c5.218 3.396 5.807 8.662 6.152 14.003c.172 2.88.098 5.785.394 8.638c.221 2.215 1.082 2.782 3.372 2.854c.935.025 1.894 0 2.978 0v6.842c-6.768 1.156-12.354-.762-13.734-6.496a39.329 39.329 0 0 1-.836-6.4c-.148-2.287.097-4.577-.074-6.864c-.492-6.277-1.305-8.393-7.308-8.689v-7.8c.441-.1.86-.174 1.302-.223c3.298-.172 4.701-1.182 5.414-4.43a37.512 37.512 0 0 0 .616-5.536c.247-3.569.148-7.21.763-10.754c.86-5.094 4.01-7.556 9.254-7.852c1.476-.074 2.978 0 4.676 0v6.99c-.714.05-1.33.147-1.969.147c-4.258-.148-4.48 1.304-4.8 4.848zm8.195 16.193h-.099c-2.462-.123-4.578 1.796-4.702 4.258c-.122 2.485 1.797 4.603 4.259 4.724h.295c2.436.148 4.527-1.724 4.676-4.16v-.245c.05-2.486-1.944-4.527-4.43-4.577zm15.43 0c-2.386-.074-4.38 1.796-4.454 4.159c0 .149 0 .271.024.418c0 2.684 1.821 4.406 4.578 4.406c2.707 0 4.406-1.772 4.406-4.553c-.025-2.682-1.823-4.455-4.554-4.43m15.801 0a4.596 4.596 0 0 0-4.676 4.454a4.515 4.515 0 0 0 4.528 4.528h.05c2.264.394 4.553-1.796 4.701-4.429c.122-2.437-2.092-4.553-4.604-4.553Zm21.682.369c-2.855-.123-4.284-1.083-4.996-3.79a27.444 27.444 0 0 1-.811-5.292c-.198-3.298-.174-6.62-.395-9.918c-.516-7.826-6.177-10.557-14.397-9.205v6.792c1.304 0 2.313 0 3.322.025c1.748.024 3.077.69 3.249 2.634c.172 1.772.172 3.568.344 5.365c.346 3.57.542 7.187 1.157 10.706c.542 2.904 2.536 5.07 5.02 6.841c-4.355 2.929-5.636 7.113-5.857 11.814c-.122 3.223-.196 6.472-.368 9.721c-.148 2.953-1.181 3.913-4.16 3.987c-.835.024-1.648.098-2.583.148v6.964c1.748 0 3.347.1 4.946 0c4.971-.295 7.974-2.706 8.96-7.531c.417-2.658.662-5.34.737-8.023c.171-2.46.148-4.946.394-7.382c.369-3.815 2.116-5.389 5.93-5.636a5.161 5.161 0 0 0 1.06-.245v-7.801c-.64-.074-1.084-.148-1.552-.173zM64 6.1c31.977 0 57.9 25.92 57.9 57.898c0 31.977-25.923 57.899-57.9 57.899c-31.976 0-57.898-25.922-57.898-57.9C6.102 32.023 32.024 6.101 64 6.101m0-6.1C28.71 0 0 28.71 0 64c0 35.288 28.71 63.998 64 63.998c35.289 0 64-28.71 64-64S99.289.002 64 .002Z\\\"/>\"\n\t\t},\n\t\t\"swagger-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#85ea2d\\\" d=\\\"M15.766 76.647C7.487 76.647.75 69.912.75 61.633s6.736-15.014 15.016-15.014c8.278 0 15.015 6.735 15.015 15.015c0 8.28-6.736 15.014-15.015 15.014z\\\"/><path fill=\\\"#173647\\\" d=\\\"M71.053 77.914h.473l.637 1.66c.14.378.227.652.26.82h.02a8.98 8.98 0 0 1 .146-.464c.074-.217.314-.89.722-2.016h.472l-1.25 3.314c-.124.327-.269.56-.434.698a.922.922 0 0 1-.61.205a1.78 1.78 0 0 1-.398-.045v-.353c.097.02.206.03.326.03c.302 0 .519-.168.648-.508l.162-.414zm-1.59-.048c.383 0 .68.13.892.392c.211.26.316.63.316 1.108c0 .479-.106.85-.32 1.115c-.213.264-.51.396-.887.396c-.19 0-.364-.035-.52-.104a.967.967 0 0 1-.394-.323h-.032l-.093.375h-.316V76.69h.441v1.005c0 .225-.007.426-.02.606h.02c.205-.291.51-.436.913-.436zm-.064.369c-.3 0-.517.086-.65.259c-.133.172-.2.464-.2.872c0 .41.068.702.205.877c.137.177.355.266.656.266c.272 0 .473-.1.606-.297c.132-.197.2-.48.2-.85c0-.38-.068-.662-.2-.848c-.133-.185-.339-.278-.617-.278zm-4.274 2.198h-.023c-.204.297-.507.444-.913.444c-.382 0-.677-.13-.889-.39c-.211-.26-.317-.63-.317-1.11c0-.48.106-.852.318-1.119c.213-.265.508-.398.888-.398c.394 0 .697.144.908.43h.033l-.018-.21l-.01-.204v-1.185h.44v4.134h-.358Zm-.88.076c.3 0 .519-.083.654-.246c.135-.164.203-.428.203-.793v-.093c0-.413-.069-.707-.206-.883c-.137-.176-.356-.265-.657-.265a.674.674 0 0 0-.593.302c-.137.201-.207.485-.207.851c0 .372.069.653.206.842c.136.19.335.285.599.285zm-3.031.368c-.43 0-.77-.13-1.018-.392c-.249-.263-.373-.627-.373-1.092c0-.47.115-.843.346-1.118c.232-.277.542-.415.931-.415c.365 0 .654.12.866.361c.213.24.32.556.32.949v.279H60.28c.008.341.095.6.259.778c.164.177.394.266.691.266c.314 0 .624-.066.93-.196v.392a2.289 2.289 0 0 1-.442.145a2.513 2.513 0 0 1-.504.043m-.119-2.648a.72.72 0 0 0-.56.23c-.139.151-.22.36-.245.631h1.522c0-.278-.062-.491-.186-.639c-.124-.147-.3-.222-.53-.222zm-2.142 2.285a1.459 1.459 0 0 0 .398-.054v.338a.798.798 0 0 1-.21.056a1.536 1.536 0 0 1-.252.023c-.563 0-.844-.296-.844-.89v-1.73h-.417v-.213l.417-.184l.186-.622h.255v.676h.844v.342h-.844v1.714c0 .175.041.31.124.402a.434.434 0 0 0 .342.142zm-2.155-2.653c.129 0 .246.01.348.03l-.061.41a1.507 1.507 0 0 0-.32-.04a.776.776 0 0 0-.603.287a1.045 1.045 0 0 0-.25.715v1.562h-.442v-2.911h.365l.05.538h.02a1.28 1.28 0 0 1 .392-.437a.877.877 0 0 1 .5-.155zm-2.178 1.505c0 .475-.12.845-.36 1.112c-.238.266-.568.4-.99.4c-.26 0-.49-.063-.693-.185a1.21 1.21 0 0 1-.468-.525a1.83 1.83 0 0 1-.165-.802c0-.475.12-.844.356-1.109c.238-.265.568-.397.99-.397c.406 0 .73.135.97.407c.24.27.36.637.36 1.099m-2.218 0c0 .372.074.654.223.85c.148.195.367.292.656.292c.29 0 .508-.097.658-.291c.15-.193.224-.477.224-.851c0-.37-.076-.65-.224-.843c-.15-.192-.372-.288-.663-.288c-.29 0-.506.095-.654.283c-.147.19-.22.472-.22.848m-2.375 1.511c-.19 0-.363-.035-.519-.105a.981.981 0 0 1-.394-.322h-.032c.02.17.03.33.03.483v1.197h-.439v-4.216h.358l.062.398h.02a1.024 1.024 0 0 1 .396-.346c.15-.07.323-.106.518-.106c.386 0 .684.132.893.396c.21.264.315.634.315 1.11c0 .478-.106.85-.32 1.115c-.214.264-.51.396-.888.396m-.064-2.642c-.297 0-.513.082-.645.247c-.134.164-.201.427-.205.785v.099c0 .409.068.702.205.877c.136.176.354.265.656.265a.681.681 0 0 0 .591-.306c.143-.203.214-.484.214-.841c0-.364-.072-.641-.214-.836a.703.703 0 0 0-.602-.29m-3.35 2.642a1.26 1.26 0 0 1-.52-.105a.978.978 0 0 1-.394-.322h-.03c.02.17.03.33.03.483v1.197h-.44v-4.216h.358l.061.398h.021a1.024 1.024 0 0 1 .395-.346c.151-.07.324-.106.519-.106c.386 0 .684.132.894.396c.21.264.314.634.314 1.11c0 .478-.106.85-.32 1.115c-.213.264-.51.396-.888.396m-.064-2.642c-.298 0-.512.082-.646.247c-.133.164-.2.427-.204.785v.099c0 .409.068.702.204.877c.137.176.356.265.657.265a.681.681 0 0 0 .59-.306c.143-.203.214-.484.214-.841c0-.364-.072-.641-.214-.836a.703.703 0 0 0-.601-.29m-4.273-.321v1.888c0 .237.054.414.162.531c.108.117.277.176.507.176c.305 0 .528-.084.668-.25c.141-.166.212-.439.212-.816v-1.53h.44v2.912h-.363l-.064-.392h-.024a.88.88 0 0 1-.376.33a1.279 1.279 0 0 1-.548.114c-.355 0-.619-.083-.796-.253c-.175-.167-.264-.436-.264-.807v-1.903zm-1.21 1.877c0 .34-.125.61-.372.8c-.248.19-.585.286-1.009.286c-.461 0-.815-.059-1.063-.177v-.436a2.85 2.85 0 0 0 1.079.218c.301 0 .527-.057.68-.172a.562.562 0 0 0 .228-.476a.614.614 0 0 0-.08-.33a.754.754 0 0 0-.27-.238a3.837 3.837 0 0 0-.579-.248c-.361-.129-.62-.283-.774-.46c-.155-.177-.232-.407-.232-.693c0-.3.112-.537.336-.714c.225-.177.522-.266.893-.266c.386 0 .741.072 1.065.213l-.141.392a2.405 2.405 0 0 0-.934-.2c-.24 0-.427.05-.56.153a.507.507 0 0 0-.203.427c0 .134.026.245.074.33c.05.087.134.166.251.238c.118.072.298.15.54.237c.408.145.688.3.841.468c.153.166.23.382.23.648m56.02-.534v1.567h-.857v-5.289h2.007c1.166 0 1.79.668 1.79 1.842c0 .748-.3 1.424-.864 1.687l.872 1.76h-.941l-.764-1.568h-1.245zm1.15-2.98h-1.152v2.24h1.166c.649 0 .895-.584.895-1.132c0-.603-.293-1.109-.91-1.109zm-6.934-.742h1.707l1.312 5.289h-.864l-.39-1.552h-1.822l-.39 1.552h-.857zm.114 2.98H92.9l-.547-2.261h-.387zm33.635.742v1.567h-.857v-5.289h2.007c1.166 0 1.79.668 1.79 1.842c0 .748-.3 1.424-.863 1.687l.872 1.76h-.942l-.764-1.568h-1.243zm1.15-2.98h-1.15v2.24h1.166c.649 0 .895-.584.895-1.132c0-.603-.293-1.109-.911-1.109zm-6.933-.742h1.705l1.312 5.289h-.864l-.39-1.552h-1.82l-.39 1.552h-.858zm.114 2.98h1.483l-.547-2.261h-.387zm-6.522-2.98h3.334v.75h-2.477v1.496h2.015v.734h-2.015v1.552h2.477v.757h-3.334zm-3.869 0c1.05 0 1.613.394 1.613 1.374c0 .64-.2.957-.625 1.19c.455.177.756.501.756 1.227c0 1.08-.656 1.498-1.682 1.498h-2.07v-5.289Zm-1.151.741v1.514h1.135c.525 0 .756-.262.756-.78c0-.51-.262-.733-.786-.733zm0 2.24v1.566h1.166c.533 0 .849-.169.849-.803c0-.602-.447-.764-.864-.764zm-6.438-2.98h3.86v.763h-1.49v4.526h-.865V76.3h-1.505zm-18.622 0h1.49l1.181 4.13l1.181-4.13h1.497v5.288h-.864v-4.57h-.045l-1.32 4.354h-.897l-1.32-4.354h-.046v4.57h-.857Zm-2.24.787s-1.082-.124-1.529-.124c-.65 0-.98.232-.98.687c0 .495.277.61 1.18.857c1.112.31 1.514.603 1.514 1.506c0 1.159-.726 1.66-1.769 1.66c-.686 0-1.729-.21-1.729-.21l.085-.686s1.043.14 1.59.14c.657 0 .958-.295.958-.85c0-.448-.239-.603-1.05-.795c-1.143-.293-1.636-.64-1.636-1.56c0-1.065.702-1.506 1.76-1.506c.67 0 1.675.186 1.675.186zm29.95-19.312c.48 0 .912.04 1.294.118l-.227 1.52a5.582 5.582 0 0 0-1.184-.148c-.875 0-1.623.355-2.245 1.066c-.621.71-.932 1.595-.932 2.653v5.802h-1.638V57.21h1.352l.188 2.002h.078c.4-.703.885-1.246 1.45-1.628a3.263 3.263 0 0 1 1.865-.572zm-10.752 11.21c-1.598 0-2.86-.488-3.784-1.461c-.924-.973-1.387-2.325-1.387-4.056c0-1.742.43-3.127 1.288-4.154c.86-1.026 2.011-1.538 3.459-1.538c1.355 0 2.427.445 3.217 1.337c.789.891 1.184 2.067 1.184 3.527v1.036h-7.45c.032 1.27.353 2.234.962 2.89c.61.659 1.465.988 2.57.988a8.708 8.708 0 0 0 3.454-.73v1.46a8.667 8.667 0 0 1-1.643.538c-.516.108-1.14.163-1.87.163m-.444-9.838c-.867 0-1.56.283-2.077.849c-.516.565-.82 1.348-.912 2.348h5.653c0-1.032-.23-1.824-.69-2.374c-.46-.547-1.118-.823-1.974-.823m-5.116-1.173v1.035l-2.003.237c.184.23.35.53.494.903c.144.371.217.79.217 1.258c0 1.059-.362 1.903-1.085 2.535c-.724.632-1.718.948-2.98.948c-.323 0-.626-.026-.909-.079c-.697.369-1.045.832-1.045 1.39c0 .297.121.517.365.657c.244.142.66.212 1.253.212H90.4c1.17 0 2.07.248 2.7.74c.627.493.94 1.21.94 2.151c0 1.198-.48 2.11-1.44 2.738c-.96.628-2.361.942-4.203.942c-1.414 0-2.504-.263-3.27-.788c-.767-.527-1.15-1.27-1.15-2.23c0-.659.21-1.229.632-1.707c.42-.48 1.012-.806 1.775-.978a1.714 1.714 0 0 1-.695-.582a1.54 1.54 0 0 1-.281-.918c0-.394.105-.74.316-1.036c.21-.296.542-.582.996-.858c-.56-.23-1.015-.623-1.367-1.175c-.35-.552-.527-1.184-.527-1.894c0-1.184.355-2.098 1.065-2.739c.71-.64 1.717-.962 3.02-.962c.565 0 1.075.066 1.53.198h3.738zm-8.623 12.63c0 .584.247 1.028.74 1.33c.493.303 1.2.455 2.121.455c1.375 0 2.393-.206 3.053-.617c.661-.411.991-.968.991-1.672c0-.586-.18-.991-.542-1.219c-.36-.227-1.042-.34-2.042-.34h-1.964c-.743 0-1.321.177-1.736.532c-.414.356-.621.865-.621 1.53zm.887-9.167c0 .755.214 1.328.641 1.716c.428.389 1.023.583 1.786.583c1.6 0 2.398-.777 2.398-2.33c0-1.624-.808-2.436-2.427-2.436c-.77 0-1.362.206-1.775.621c-.415.414-.623 1.03-.623 1.845zm-3.148-3.463v1.035l-2.004.237c.184.23.35.53.494.903c.144.371.217.79.217 1.258c0 1.059-.362 1.903-1.085 2.535c-.724.632-1.718.948-2.98.948a4.93 4.93 0 0 1-.909-.079c-.697.369-1.046.832-1.046 1.39c0 .297.122.517.366.657c.243.142.66.212 1.253.212h1.914c1.171 0 2.07.248 2.7.74c.627.493.942 1.21.942 2.151c0 1.198-.481 2.11-1.441 2.738c-.96.628-2.362.942-4.204.942c-1.414 0-2.504-.263-3.27-.788c-.767-.527-1.15-1.27-1.15-2.23c0-.659.21-1.229.632-1.707c.421-.48 1.011-.806 1.775-.978a1.714 1.714 0 0 1-.694-.582a1.54 1.54 0 0 1-.282-.918c0-.394.105-.74.316-1.036c.21-.296.543-.582.996-.858c-.559-.23-1.015-.623-1.367-1.175c-.35-.552-.527-1.184-.527-1.894c0-1.184.355-2.098 1.065-2.739c.71-.64 1.717-.962 3.02-.962c.565 0 1.075.066 1.53.198h3.739zm-8.625 12.63c0 .584.248 1.028.74 1.33c.494.303 1.201.455 2.122.455c1.375 0 2.393-.206 3.053-.617c.662-.411.992-.968.992-1.672c0-.586-.181-.991-.543-1.219c-.361-.227-1.042-.34-2.042-.34h-1.964c-.743 0-1.322.177-1.737.532c-.414.356-.622.865-.622 1.53zm.888-9.167c0 .755.214 1.328.642 1.716c.428.389 1.022.583 1.786.583c1.598 0 2.397-.777 2.397-2.33c0-1.624-.808-2.436-2.427-2.436c-.77 0-1.361.206-1.775.621c-.415.414-.623 1.03-.623 1.845zm-4.707 7.35l-.325-1.539h-.079c-.54.678-1.077 1.136-1.613 1.376c-.537.24-1.206.362-2.008.362c-1.072 0-1.912-.277-2.52-.83c-.61-.552-.914-1.338-.914-2.358c0-2.184 1.747-3.329 5.24-3.434l1.835-.06v-.67c0-.849-.183-1.476-.547-1.879c-.365-.405-.95-.608-1.752-.608c-.9 0-1.92.277-3.06.83l-.502-1.254a7.748 7.748 0 0 1 1.752-.681a7.595 7.595 0 0 1 1.91-.246c1.288 0 2.243.286 2.865.858c.621.573.932 1.49.932 2.753v7.38h-1.213zm-3.7-1.155c1.02 0 1.821-.278 2.404-.838c.58-.56.873-1.342.873-2.348v-.978l-1.638.07c-1.303.046-2.242.247-2.818.606c-.575.359-.863.917-.863 1.673c0 .592.18 1.042.537 1.352c.359.31.86.464 1.505.464zm-8.85 1.157l-1.983-6.346c-.125-.388-.36-1.27-.702-2.643h-.077c-.264 1.15-.494 2.038-.692 2.663l-2.042 6.325h-1.895l-2.95-10.815h1.717l1.593 6.207c.366 1.42.574 2.377.627 2.87h.08c.071-.374.188-.86.35-1.455c.16-.596.3-1.068.418-1.417l1.984-6.205h1.776l1.934 6.205c.368 1.132.618 2.083.75 2.853h.078c.027-.238.097-.602.213-1.096c.114-.493.8-3.148 2.057-7.962h1.697l-2.99 10.813H58.3Zm-10.405-3.84c0 1.27-.46 2.261-1.381 2.971s-2.171 1.066-3.75 1.066c-1.71 0-3.026-.221-3.947-.66v-1.62c.593.25 1.237.447 1.934.592a10.178 10.178 0 0 0 2.072.217c1.118 0 1.961-.212 2.526-.636c.566-.424.849-1.015.849-1.771c0-.5-.1-.91-.3-1.229c-.202-.32-.538-.613-1.008-.883s-1.185-.575-2.146-.918c-1.342-.48-2.3-1.049-2.876-1.708c-.576-.657-.863-1.515-.863-2.574c0-1.112.417-1.996 1.253-2.655c.835-.657 1.94-.986 3.315-.986c1.434 0 2.753.263 3.956.789l-.522 1.46c-1.191-.5-2.348-.749-3.474-.749c-.887 0-1.582.191-2.082.572c-.5.382-.75.911-.75 1.59c0 .498.093.908.277 1.228c.184.318.495.611.933.877c.436.267 1.106.561 2.007.883c1.514.54 2.554 1.119 3.123 1.737c.569.62.854 1.422.854 2.408zM9.927 56.539c-.048.54.018 1.097-.018 1.643a13.436 13.436 0 0 1-.218 1.625c-.152.77-.63 1.352-1.29 1.837c1.284.836 1.43 2.134 1.514 3.449c.043.71.025 1.424.097 2.128c.055.545.267.685.83.702c.231.008.467 0 .734 0v1.687c-1.666.285-3.042-.188-3.383-1.6a9.694 9.694 0 0 1-.206-1.577c-.037-.564.024-1.127-.018-1.691c-.12-1.546-.321-2.068-1.8-2.141V60.68c.11-.025.211-.043.32-.055c.813-.042 1.159-.29 1.334-1.09c.085-.45.135-.904.152-1.365c.061-.879.036-1.776.188-2.65c.212-1.254.988-1.86 2.28-1.934c.364-.018.733 0 1.151 0v1.722c-.175.013-.327.036-.485.036c-1.049-.036-1.103.322-1.182 1.195m2.02 3.99h-.025a1.109 1.109 0 0 0-1.159 1.048a1.11 1.11 0 0 0 1.05 1.163h.071a1.091 1.091 0 0 0 1.153-1.024v-.06a1.11 1.11 0 0 0-1.09-1.128Zm3.8 0a1.063 1.063 0 0 0-1.097 1.023c0 .037 0 .067.006.103c0 .661.449 1.086 1.128 1.086c.667 0 1.085-.436 1.085-1.122c-.006-.66-.449-1.097-1.122-1.09m3.893 0a1.132 1.132 0 0 0-1.152 1.097c0 .618.497 1.114 1.115 1.114h.013c.557.097 1.121-.441 1.158-1.09c.03-.6-.516-1.122-1.134-1.122zm5.34.09c-.702-.03-1.054-.267-1.23-.934a6.783 6.783 0 0 1-.2-1.304c-.049-.812-.041-1.63-.097-2.443c-.127-1.927-1.522-2.6-3.547-2.267v1.672c.321 0 .57 0 .819.007c.43.007.757.17.8.649c.043.436.043.88.085 1.321c.085.88.133 1.771.285 2.638c.134.716.625 1.25 1.237 1.685c-1.074.723-1.389 1.753-1.443 2.911c-.031.794-.049 1.594-.091 2.395c-.036.727-.291.963-1.024.98c-.207.008-.407.025-.637.038v1.715c.43 0 .825.025 1.218 0c1.225-.072 1.964-.667 2.207-1.855c.103-.654.164-1.315.182-1.976c.042-.606.037-1.219.097-1.818c.09-.94.521-1.329 1.461-1.389c.091-.012.176-.03.262-.06V60.66c-.158-.018-.269-.036-.382-.042Zm-9.214-13.246c7.877 0 14.262 6.386 14.262 14.263c0 7.876-6.385 14.263-14.262 14.263c-7.877 0-14.263-6.388-14.263-14.264c0-7.877 6.386-14.263 14.263-14.263m0-1.503C7.072 45.868 0 52.94 0 61.634S7.073 77.4 15.766 77.4s15.766-7.074 15.766-15.766c0-8.693-7.073-15.766-15.766-15.766zm98.538 22.273l-.392-1.127h-.006c.01.167.015.324.015.47v.657h-.2v-1.35h.31l.375 1.074h.006l.386-1.074h.312v1.35h-.211v-.668a6.795 6.795 0 0 1 .013-.458h-.007l-.406 1.125zm-1.282 0h-.221V66.98h-.396v-.189h1.014v.189h-.397z\\\"/>\"\n\t\t},\n\t\t\"swift\": {\n\t\t\t\"body\": \"<path fill=\\\"#f05138\\\" d=\\\"M126.33 34.06a39.32 39.32 0 0 0-.79-7.83a28.78 28.78 0 0 0-2.65-7.58a28.84 28.84 0 0 0-4.76-6.32a23.42 23.42 0 0 0-6.62-4.55a27.27 27.27 0 0 0-7.68-2.53c-2.65-.51-5.56-.51-8.21-.76H30.25a45.46 45.46 0 0 0-6.09.51a21.82 21.82 0 0 0-5.82 1.52c-.53.25-1.32.51-1.85.76a33.82 33.82 0 0 0-5 3.28c-.53.51-1.06.76-1.59 1.26a22.41 22.41 0 0 0-4.76 6.32a23.61 23.61 0 0 0-2.65 7.58a78.5 78.5 0 0 0-.79 7.83v60.39a39.32 39.32 0 0 0 .79 7.83a28.78 28.78 0 0 0 2.65 7.58a28.84 28.84 0 0 0 4.76 6.32a23.42 23.42 0 0 0 6.62 4.55a27.27 27.27 0 0 0 7.68 2.53c2.65.51 5.56.51 8.21.76h63.22a45.08 45.08 0 0 0 8.21-.76a27.27 27.27 0 0 0 7.68-2.53a30.13 30.13 0 0 0 6.62-4.55a22.41 22.41 0 0 0 4.76-6.32a23.61 23.61 0 0 0 2.65-7.58a78.49 78.49 0 0 0 .79-7.83V34.06z\\\"/><path fill=\\\"#fefefe\\\" d=\\\"M85 96.5c-11.11 6.13-26.38 6.76-41.75.47A64.53 64.53 0 0 1 13.84 73a50 50 0 0 0 10.85 6.32c15.87 7.1 31.73 6.61 42.9 0c-15.9-11.66-29.4-26.82-39.46-39.2a43.47 43.47 0 0 1-5.29-6.82c12.16 10.61 31.5 24 38.38 27.79a271.77 271.77 0 0 1-27-32.34a266.8 266.8 0 0 0 44.47 34.87c.71.38 1.26.7 1.7 1a32.7 32.7 0 0 0 1.21-3.51c3.71-12.89-.53-27.54-9.79-39.67C93.25 33.81 106 57.05 100.66 76.51c-.14.53-.29 1-.45 1.55l.19.22c10.59 12.63 7.68 26 6.35 23.5C101 91 90.37 94.33 85 96.5\\\"/>\"\n\t\t},\n\t\t\"swift-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f05138\\\" d=\\\"M37.35 54a11.24 11.24 0 0 0-.23-2.26a7.42 7.42 0 0 0-2.16-4A6.83 6.83 0 0 0 33 46.39a8 8 0 0 0-2.24-.73c-.77-.15-1.62-.15-2.39-.22H9.35a13.37 13.37 0 0 0-1.77.15a6.41 6.41 0 0 0-1.7.44c-.15.07-.39.15-.54.22a9.86 9.86 0 0 0-1.47.95c-.15.15-.31.22-.46.36A6.47 6.47 0 0 0 2 49.38a6.77 6.77 0 0 0-.77 2.19A22.44 22.44 0 0 0 1 53.82v17.43a11.24 11.24 0 0 0 .23 2.26a7.42 7.42 0 0 0 2.16 4a6.83 6.83 0 0 0 1.93 1.31a8 8 0 0 0 2.24.73c.77.15 1.62.15 2.39.22h18.46a13.26 13.26 0 0 0 2.39-.22a8 8 0 0 0 2.2-.72a8.78 8.78 0 0 0 2-1.31a6.47 6.47 0 0 0 1.39-1.82a6.77 6.77 0 0 0 .77-2.19a22.44 22.44 0 0 0 .23-2.26V54z\\\"/><path fill=\\\"#fefefe\\\" d=\\\"M25.3 72c-3.24 1.77-7.69 1.95-12.16.14a18.77 18.77 0 0 1-8.57-6.94A14.61 14.61 0 0 0 7.74 67c4.62 2 9.25 1.91 12.5 0a64.45 64.45 0 0 1-11.5-11.28a12.56 12.56 0 0 1-1.54-2a88.68 88.68 0 0 0 11.18 8a78.59 78.59 0 0 1-7.87-9.33a77.67 77.67 0 0 0 13 10.06l.5.28a9.38 9.38 0 0 0 .35-1c1.08-3.72-.15-7.95-2.85-11.45c6.25 3.57 9.95 10.28 8.41 15.9c0 .15-.08.3-.13.45l.05.06c3.09 3.65 2.24 7.51 1.85 6.78C30 70.42 26.87 71.36 25.3 72\\\"/><path fill=\\\"#221f20\\\" d=\\\"M119.34 60.31h-8.95v-1.09c0-.87.08-1.75.15-2.62a5.73 5.73 0 0 1 .62-2.19a4.09 4.09 0 0 1 1.31-1.46a4.49 4.49 0 0 1 2.31-.58a7.49 7.49 0 0 1 1.47.15c.39.15.69.22 1 .36l.62-1.46a7.29 7.29 0 0 0-1.23-.44a6 6 0 0 0-1.7-.22a6.59 6.59 0 0 0-3.09.66a6.12 6.12 0 0 0-2.08 1.82a8.75 8.75 0 0 0-1.08 2.7a15.55 15.55 0 0 0-.31 3.35v1.09h-2.93v1.46h2.93v17.65h2V61.77h8.95v12.1a11.64 11.64 0 0 0 .23 2.41a4.69 4.69 0 0 0 .69 1.9a3.2 3.2 0 0 0 1.39 1.24a5.41 5.41 0 0 0 2.31.44a6.87 6.87 0 0 0 2.7-.44l-.21-1.42a8.39 8.39 0 0 1-.93.22a7 7 0 0 1-1.31.07a2.51 2.51 0 0 1-2.24-1a6 6 0 0 1-.62-2.92V61.84H127v-1.45h-5.63v-4.23l-2 .58zM49.5 76.57a9.51 9.51 0 0 0 2.78 1.24a12.09 12.09 0 0 0 3.32.51a7.31 7.31 0 0 0 4.94-1.53a5.2 5.2 0 0 0 1.77-4A5.39 5.39 0 0 0 61 69.06a11.66 11.66 0 0 0-4.32-2.62a15.12 15.12 0 0 1-5.24-2.84a5.78 5.78 0 0 1-1.93-4.52a6.33 6.33 0 0 1 .62-2.7a6.56 6.56 0 0 1 1.7-2.11a7 7 0 0 1 2.55-1.39a9.4 9.4 0 0 1 3.24-.51a15 15 0 0 1 3.39.36a9.8 9.8 0 0 1 2.08.8l-.77 1.6a7.23 7.23 0 0 0-1.85-.8a9.27 9.27 0 0 0-3-.44a8 8 0 0 0-2.85.44a5.58 5.58 0 0 0-1.92 1.17a5.12 5.12 0 0 0-1 1.6a4.3 4.3 0 0 0-.31 1.68a4.75 4.75 0 0 0 1.39 3.57a14.15 14.15 0 0 0 4.4 2.48a18.59 18.59 0 0 1 3 1.46A13.23 13.23 0 0 1 62.42 68a5.86 5.86 0 0 1 1.31 2a7.25 7.25 0 0 1 .46 2.62a7.44 7.44 0 0 1-.54 2.84A6.38 6.38 0 0 1 62 77.81a8.49 8.49 0 0 1-2.78 1.6a12.16 12.16 0 0 1-3.86.58a15.82 15.82 0 0 1-1.85-.15a16.6 16.6 0 0 1-1.85-.36a11.43 11.43 0 0 1-1.7-.58a6.86 6.86 0 0 1-1.31-.66zM68 60.39l3.32 10.86c.31 1.09.62 2.19.93 3.14s.54 2 .77 2.84h.15c.23-.87.54-1.82.85-2.84s.69-2 1.08-3.14L79 60.39h1.85l3.78 10.71c.39 1.17.77 2.26 1.08 3.28s.62 2 .85 2.84h.15c.23-.95.46-1.9.77-2.84s.62-2 1-3.21L92 60.39h2l-6.63 19.1h-1.58L82 68.84q-.58-1.75-1.16-3.28c-.31-1-.62-2.11-.85-3.21h-.08a33.72 33.72 0 0 1-1 3.28q-.58 1.53-1.16 3.28l-3.92 10.58h-1.7L66 60.39zm30.31 0h2v19.1h-2zm-.77-5.83a1.66 1.66 0 0 1 1.7-1.68a1.8 1.8 0 0 1 1.76 1.67a1.51 1.51 0 0 1-.54 1.17a1.81 1.81 0 0 1-1.23.44a2 2 0 0 1-1.23-.44a1.73 1.73 0 0 1-.49-1.17z\\\"/>\"\n\t\t},\n\t\t\"swiper\": {\n\t\t\t\"body\": \"<path d=\\\"M97.922 10.346c18.251 11.274 30.413 31.461 30.413 54.489c0 35.346-28.654 64-64 64a63.823 63.823 0 0 1-21.94-3.862l-.73-.272l1.19-.383l1.53-.501l.755-.253l.748-.252l1.476-.509l1.449-.512l1.421-.515l1.395-.518l.688-.261l1.354-.524c1.43-.56 2.815-1.127 4.153-1.699l.995-.431l1.22-.541a119.19 119.19 0 0 0 1.583-.728l.774-.366l1.139-.553l.559-.277l.552-.279l1.085-.56c9.106-4.776 15.292-9.965 18.577-15.654c6.96-12.054.881-24.935-16.567-38.067l-1.42-1.064l-.862-.662l-.837-.656l-.813-.652l-.787-.646l-.384-.321l-.379-.32l-.738-.637l-.537-.474l-.523-.472l-.676-.624l-.652-.62l-.628-.614l-.304-.305l-.299-.305l-.579-.605c-6.897-7.332-8.437-13.608-5.306-19.032c1.594-2.76 4.357-5.474 8.284-8.117l.477-.317l.751-.483c.34-.214.687-.428 1.042-.642l.538-.32l.83-.478l.855-.476l.659-.356l.673-.355l.921-.472a87.46 87.46 0 0 1 2.167-1.055l.752-.35l1.025-.464l.522-.232l1.064-.46l.542-.23l1.104-.459l.56-.228l1.143-.455l.581-.227l1.182-.452l1.207-.45l.613-.223l1.247-.447l1.272-.444l1.299-.441l.659-.22l1.337-.438l1.364-.436l1.389-.433l1.415-.431l1.442-.428l1.838-.532l1.879-.528l2.308-.628zM64.335.835c7.783 0 15.242 1.39 22.141 3.933l.737.277l-.467.142l-2.28.703l-.746.236l-1.473.474l-1.446.479l-1.419.482l-1.392.486l-1.365.49l-.673.246l-1.652.62l-1.61.627l-1.259.505l-.619.254l-1.218.512C57.147 16.605 48.99 22.553 45.09 29.309c-6.809 11.793-.633 24.506 16.816 37.634l1.42 1.065l.862.662l.837.657l.41.327l.799.65l.582.484l.57.482l.736.639l.36.317l.699.631c.381.35.751.698 1.11 1.043l.53.516l.763.77l.725.761c6.867 7.383 8.335 13.785 5.072 19.438c-2.112 3.658-6.144 7.258-12.086 10.753l-.546.318l-.884.501l-.91.499a86.31 86.31 0 0 1-1.576.829l-.815.412l-1.003.494l-1.029.492l-1.055.491l-.537.245l-1.095.487l-1.12.487l-1.147.484l-.584.242l-1.186.481l-.603.24l-.61.24l-1.239.478l-1.265.476l-1.291.474l-1.318.472l-1.343.47l-.682.234l-1.383.467l-.702.232l-1.422.464l-1.449.461l-1.847.574l-1.889.571l-1.54.453l-2.15.619C12.643 108.29.336 88 .336 64.835c0-35.346 28.654-64 64-64Z\\\"/>\"\n\t\t},\n\t\t\"symfony\": {\n\t\t\t\"body\": \"<path fill=\\\"#1A171B\\\" d=\\\"M64 2.3C29.9 2.3 2.3 29.9 2.3 64s27.6 61.7 61.7 61.7s61.7-27.6 61.7-61.7S98.1 2.3 64 2.3M97.3 38c-2.9.1-4.8-1.6-4.9-4.2c0-1 .2-1.8.9-2.8c.6-1.2.8-1.4.8-1.9c-.1-1.6-2.5-1.7-3.2-1.7c-9.3.3-11.7 12.8-13.7 23l-1 5.4c5.3.8 9.1-.2 11.2-1.5c3-1.9-.8-3.9-.4-6.1c.5-2.2 2.5-3.3 4.1-3.4c2.3-.1 3.9 2.3 3.8 4.7c-.1 3.9-5.3 9.4-15.8 9.1c-1.3 0-2.4-.1-3.5-.2l-2 10.9c-1.8 8.2-4.1 19.5-12.5 29.3c-7.2 8.6-14.5 9.9-17.8 10c-6.1.2-10.2-3.1-10.3-7.4c-.1-4.2 3.6-6.5 6-6.6c3.3-.1 5.5 2.3 5.6 5c.1 2.3-1.1 3-1.9 3.5c-.5.4-1.3.9-1.3 1.8c0 .4.5 1.3 1.8 1.3c2.6-.1 4.3-1.4 5.5-2.2c6-5 8.3-13.7 11.3-29.4l.6-3.8c1-5.1 2.2-10.9 3.9-16.6c-4.2-3.2-6.7-7.1-12.4-8.6c-3.9-1.1-6.2-.2-7.9 1.9c-2 2.5-1.3 5.7.6 7.6l3.1 3.5c3.9 4.5 6 7.9 5.2 12.6c-1.1 7.3-10 13-20.5 9.8c-9-2.8-10.6-9.1-9.5-12.6c.9-3.1 3.4-3.7 5.8-2.9c2.6.8 3.6 3.9 2.8 6.3c-.1.3-.2.7-.5 1.2c-.3.7-.8 1.2-1.1 2c-.6 1.9 2 3.2 3.8 3.8c4 1.2 7.9-.9 8.9-4.1c.9-3-1-5.1-1.7-5.9l-3.8-4.1c-1.7-1.9-5.6-7.3-3.7-13.4c.7-2.3 2.2-4.8 4.4-6.4c4.6-3.5 9.7-4 14.5-2.6c6.2 1.8 9.2 5.9 13.1 9.1c2.2-6.3 5.2-12.6 9.7-17.8c4.1-4.8 9.5-8.2 15.8-8.5c6.3-.2 11 2.6 11.2 7.1c-.1 2-1.2 5.7-5 5.8\\\"/>\"\n\t\t},\n\t\t\"symfony-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#1A171B\\\" d=\\\"M81.1 102.1c-5 0-8.4 3.6-8.4 8.6c0 4.7 3.4 8.6 8.4 8.6c4.9 0 8.3-3.9 8.3-8.6c0-5-3.3-8.6-8.3-8.6m0 14.7c-3.6 0-5.1-3.2-5.1-6.1c0-3.1 1.9-6.1 5.1-6.1c3.2 0 5.1 3 5.1 6.1c0 2.9-1.6 6.1-5.1 6.1M65 101.2v.8h-4v1.7c0 .7.7 1.2 1.4 1.2H65v14h1.6c.7 0 1.4-.7 1.4-1.3V105h3c.7 0 1-.7 1-1.4V102h-4v-1.1c0-2.2.3-3.9 2.9-3.9h.1c.7.1 1.3-.5 1.4-1.3l.1-1c-.6-.1-1.2-.2-2-.2c-4.5.1-5.5 2.7-5.5 6.7m-32.9 1v.1c-.6 0-1.3.5-1.5 1.1L26.4 116h-.1l-4.1-12.5c-.3-.6-.9-1.3-1.5-1.3v-.2h-2.1l5.6 15.5c.2.5.6 1.5.6 1.9c0 .3-.9 4.1-3.6 4.1H21c-.7 0-1.2.5-1.3 1.2l-.1 1.1c.5.1 1.1.2 2.1.2c4 0 5.2-3.9 6.3-7l6-17h-1.9zm-19.2 3.6c-2.5-1.3-5.2-2.1-5.3-4.7c0-2.7 2.5-3.4 4.4-3.4c.8 0 1.5.1 2.2.2c.7.1 1.3-.5 1.4-1.2l.1-1c-1.3-.3-2.6-.5-3.7-.5c-4.2 0-7.3 2.1-7.3 6.2c0 3.5 2.4 4.9 4.9 6.1c2.5 1.2 5.3 2.2 5.3 5.1c0 3-2.9 4.2-5 4.2c-1.2 0-2.5-.3-3.5-.6c-.7-.1-1.2.5-1.3 1.3l-.1.8c1.5.5 3 .8 4.5.8c4.7 0 8.4-1.8 8.4-6.7c-.1-3.8-2.5-5.3-5-6.6m41.4-3.7c-1.5 0-4 .8-5.1 3.2c-.9-2.2-2.8-3.1-4.7-3.1c-2.4 0-4.1.8-5.2 2.8H39v-1.2c0-.7-.5-1.6-1.3-1.6l.1-.2H36v17h2c.8 0 1.2-.7 1.2-1.4l-.2-.1v-6.8c0-3.1 1.6-6.1 4.7-6.1c2.4 0 3.3 2.5 3.3 4.6v9.9h1.3c.7 0 1.7-.7 1.7-1.4v-7c0-3.1 1.1-6.1 4.2-6.1c2.4 0 2.8 2.5 2.8 4.6v9.9h1.6c.7 0 1.4-.6 1.4-1.2v-9.4c0-3.7-1.5-6.4-5.7-6.4m46.4-.1c-2.3 0-4.6 1-5.5 3H95v-1.2c0-.8-.6-1.6-1.4-1.6v-.2H92v17h1.8c.7 0 1.2-.7 1.2-1.4v-6.3c0-4 1.8-6.8 5.3-6.8c2.6.2 3.7 2 3.7 5.8v8.6h1.3c.7 0 1.7-.7 1.7-1.4v-8.4c0-4.4-2.1-7.1-6.3-7.1m20.9 0v.3c-.6 0-1.3.5-1.5 1.1l-4.2 12.6h-.1l-4.1-12.5c-.3-.6-.9-1.3-1.5-1.3v-.2h-2.1l5.6 15.5c.2.5.6 1.5.6 1.9c0 .3-.9 4.1-3.6 4.1h-.2c-.7 0-1.2.5-1.3 1.2l-.1 1.1c.5.1 1.1.2 2.1.2c4 0 5.2-3.9 6.3-7l6-17zM64 90.2c24.6 0 44.6-20 44.6-44.6S88.6 1 64 1S19.4 21 19.4 45.6s20 44.6 44.6 44.6M34.4 48.8c.7-2.2 2.4-2.6 4.2-2.1c1.8.6 2.6 2.8 2 4.5c-.1.2-.2.5-.3.9l-.8 1.4c-.4 1.4 1.4 2.3 2.7 2.7c2.9.9 5.7-.6 6.4-3c.7-2.2-.7-3.7-1.3-4.2l-2.7-2.9c-1.3-1.4-4-5.3-2.7-9.7c.5-1.7 1.6-3.5 3.2-4.7c3.3-2.5 7-2.9 10.4-1.9c4.5 1.3 6.6 4.3 9.4 6.5c1.6-4.6 3.7-9.1 7-12.9c2.9-3.5 6.9-5.9 11.4-6.1c4.5-.1 7.9 1.9 8.1 5.1c0 1.4-.7 4.1-3.5 4.2c-2.1.1-3.5-1.2-3.6-3c0-.7.2-1.3.6-2c.5-.9.6-1 .5-1.4c0-1.2-1.8-1.2-2.3-1.2c-6.7.2-8.5 9.3-9.9 16.6l-.7 3.9c3.9.6 6.6-.1 8.1-1.1c2.1-1.4-.6-2.8-.3-4.4c.4-1.6 1.8-2.4 3-2.4c1.6 0 2.8 1.7 2.8 3.4c-.1 2.8-3.8 6.8-11.4 6.6c-.9 0-1.8-.1-2.6-.2L71 49.3c-1.3 6-3 14.1-9 21.2c-5.2 6.2-10.5 7.2-12.9 7.2c-4.4.1-7.4-2.2-7.5-5.4c-.1-3.1 2.6-4.7 4.4-4.8c2.4-.1 4 1.6 4.1 3.6c.1 1.7-.8 2.2-1.4 2.5c-.4.3-1 .6-.9 1.3c0 .3.3 1 1.3.9c1.9-.1 3.1-1 4-1.6c4.3-3.6 6-9.9 8.2-21.3l.5-2.8c.7-3.7 1.6-7.8 2.8-12c-3-2.3-4.9-5.1-9-6.2c-2.8-.8-4.5-.1-5.7 1.4c-1.4 1.8-1 4.1.4 5.5l2.3 2.5c2.8 3.2 4.3 5.7 3.7 9.1c-.9 5.4-7.3 9.5-14.9 7.2c-6.6-1.7-7.8-6.3-7-8.8\\\"/>\"\n\t\t},\n\t\t\"tailwindcss\": {\n\t\t\t\"body\": \"<path fill=\\\"#38bdf8\\\" d=\\\"M64.004 25.602c-17.067 0-27.73 8.53-32 25.597c6.398-8.531 13.867-11.73 22.398-9.597c4.871 1.214 8.352 4.746 12.207 8.66C72.883 56.629 80.145 64 96.004 64c17.066 0 27.73-8.531 32-25.602c-6.399 8.536-13.867 11.735-22.399 9.602c-4.87-1.215-8.347-4.746-12.207-8.66c-6.27-6.367-13.53-13.738-29.394-13.738M32.004 64c-17.066 0-27.73 8.531-32 25.602C6.402 81.066 13.87 77.867 22.402 80c4.871 1.215 8.352 4.746 12.207 8.66c6.274 6.367 13.536 13.738 29.395 13.738c17.066 0 27.73-8.53 32-25.597c-6.399 8.531-13.867 11.73-22.399 9.597c-4.87-1.214-8.347-4.746-12.207-8.66C55.128 71.371 47.868 64 32.004 64m0 0\\\"/>\"\n\t\t},\n\t\t\"tailwindcss-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#38bdf8\\\" d=\\\"M13.227 56.074c-3.528 0-5.727 1.778-6.602 5.301c1.324-1.773 2.875-2.426 4.625-1.977c1 .25 1.727.977 2.523 1.801c1.301 1.324 2.801 2.852 6.079 2.852c3.523 0 5.722-1.778 6.597-5.301c-1.324 1.773-2.875 2.426-4.625 1.977c-1-.25-1.722-.977-2.523-1.801c-1.301-1.324-2.801-2.852-6.074-2.852M6.602 64C3.074 64 .875 65.773 0 69.3c1.324-1.777 2.875-2.425 4.625-1.976c1 .25 1.727.977 2.523 1.801c1.301 1.324 2.801 2.852 6.079 2.852c3.523 0 5.722-1.778 6.597-5.301c-1.324 1.773-2.875 2.426-4.625 1.972c-1-.25-1.722-.972-2.523-1.796C11.398 65.523 9.898 64 6.602 64m0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M39.676 62.75h-2.301v4.477c0 1.199.773 1.171 2.3 1.097v1.801c-3.1.375-4.323-.477-4.323-2.898V62.75h-1.704v-1.926h1.704v-2.5l2-.597v3.097h2.296v1.926zm8.8-1.926h2v9.301h-2v-1.352c-.703.977-1.8 1.579-3.25 1.579c-2.527 0-4.624-2.153-4.624-4.903c0-2.773 2.097-4.898 4.625-4.898c1.449 0 2.546.597 3.25 1.574zm-2.953 7.625c1.676 0 2.954-1.25 2.954-2.972c0-1.727-1.278-2.977-2.954-2.977c-1.671 0-2.949 1.25-2.949 2.977c.028 1.722 1.278 2.972 2.95 2.972zm8.301-9.023c-.699 0-1.273-.602-1.273-1.278c0-.699.574-1.273 1.273-1.273c.7 0 1.278.574 1.278 1.273c.023.676-.579 1.278-1.278 1.278m-1 10.699v-9.3h2v9.3zm4.324 0V56.551h2v13.574zm15.079-9.3h2.125l-2.926 9.3h-1.977l-1.926-6.273l-1.949 6.273h-1.972l-2.926-9.3H62.8l1.8 6.425l1.95-6.426h1.926l1.921 6.426zm4.597-1.4c-.699 0-1.273-.6-1.273-1.277c0-.699.574-1.273 1.273-1.273c.7 0 1.278.574 1.278 1.273c.023.676-.551 1.278-1.278 1.278zm-1 10.7v-9.3h2v9.3zm9.227-9.55c2.074 0 3.574 1.425 3.574 3.823v5.727h-2v-5.5c0-1.426-.824-2.148-2.074-2.148c-1.324 0-2.375.773-2.375 2.671v5h-2v-9.296h2v1.199c.625-1 1.625-1.477 2.875-1.477zm13.125-3.473h2v13.023h-2v-1.352c-.7.977-1.801 1.579-3.25 1.579c-2.528 0-4.625-2.153-4.625-4.903c0-2.773 2.097-4.898 4.625-4.898c1.449 0 2.55.597 3.25 1.574zm-2.95 11.347c1.672 0 2.95-1.25 2.95-2.972c0-1.727-1.278-2.977-2.95-2.977c-1.675 0-2.953 1.25-2.953 2.977c0 1.722 1.278 2.972 2.954 2.972zm11.672 1.926c-2.796 0-4.921-2.148-4.921-4.898c0-2.778 2.097-4.903 4.921-4.903c1.829 0 3.403.95 4.153 2.403l-1.727 1c-.398-.875-1.324-1.426-2.449-1.426c-1.648 0-2.875 1.25-2.875 2.926c0 1.671 1.25 2.921 2.875 2.921c1.125 0 2.023-.574 2.477-1.421l1.722.972c-.75 1.477-2.347 2.426-4.176 2.426m7.528-7c0 1.7 5 .676 5 4.125c0 1.852-1.625 2.875-3.625 2.875c-1.852 0-3.2-.852-3.801-2.176l1.727-1c.296.852 1.046 1.352 2.074 1.352c.898 0 1.574-.301 1.574-1.051c0-1.648-5-.727-5-4.05c0-1.75 1.5-2.848 3.398-2.848c1.528 0 2.801.699 3.454 1.921l-1.704.954c-.324-.727-.972-1.051-1.75-1.051c-.722-.028-1.347.3-1.347.949m8.574 0c0 1.7 5 .676 5 4.125c0 1.852-1.625 2.875-3.625 2.875c-1.852 0-3.2-.852-3.8-2.176l1.726-1c.3.852 1.05 1.352 2.074 1.352c.898 0 1.574-.301 1.574-1.051c0-1.648-5-.727-5-4.05c0-1.75 1.5-2.848 3.403-2.848c1.523 0 2.796.699 3.449 1.921l-1.7.954c-.328-.727-.976-1.051-1.75-1.051c-.726-.028-1.351.3-1.351.949m0 0\\\"/>\"\n\t\t},\n\t\t\"tauri\": {\n\t\t\t\"body\": \"<path fill=\\\"#ffc131\\\" d=\\\"M86.242 46.547a12.19 12.19 0 0 1-24.379 0c0-6.734 5.457-12.191 12.191-12.191a12.19 12.19 0 0 1 12.188 12.191m0 0\\\"/><path fill=\\\"#24c8db\\\" d=\\\"M41.359 81.453a12.19 12.19 0 1 1 24.383 0c0 6.734-5.457 12.191-12.191 12.191S41.36 88.187 41.36 81.453zm0 0\\\"/><path fill=\\\"#ffc131\\\" d=\\\"M99.316 85.637a46.5 46.5 0 0 1-16.059 6.535a32.675 32.675 0 0 0 1.797-10.719a33.3 33.3 0 0 0-.242-4.02a32.69 32.69 0 0 0 6.996-3.418a32.7 32.7 0 0 0 12.066-14.035a32.71 32.71 0 0 0-21.011-44.934a32.72 32.72 0 0 0-33.91 10.527a32.85 32.85 0 0 0-1.48 1.91a54.32 54.32 0 0 0-17.848 5.184A46.536 46.536 0 0 1 60.25 2.094a46.53 46.53 0 0 1 26.34-.375c8.633 2.418 16.387 7.273 22.324 13.984s9.813 15 11.16 23.863a46.537 46.537 0 0 1-20.758 46.071M30.18 41.156l11.41 1.402a32.44 32.44 0 0 1 1.473-6.469a46.44 46.44 0 0 0-12.883 5.066zm0 0\\\"/><path fill=\\\"#24c8db\\\" d=\\\"M28.207 42.363a46.49 46.49 0 0 1 16.188-6.559a32.603 32.603 0 0 0-2.004 11.297a32.56 32.56 0 0 0 .188 3.512a32.738 32.738 0 0 0-6.859 3.371A32.7 32.7 0 0 0 23.652 68.02c-2.59 5.742-3.461 12.113-2.52 18.34s3.668 12.051 7.844 16.77s9.617 8.129 15.684 9.824s12.496 1.605 18.512-.262a32.72 32.72 0 0 0 15.402-10.266a34.9 34.9 0 0 0 1.484-1.918a54.283 54.283 0 0 0 17.855-5.223a46.528 46.528 0 0 1-8.723 16.012a46.511 46.511 0 0 1-21.918 14.609a46.53 46.53 0 0 1-26.34.375a46.6 46.6 0 0 1-22.324-13.984A46.56 46.56 0 0 1 7.453 88.434a46.53 46.53 0 0 1 3.582-26.098a46.533 46.533 0 0 1 17.172-19.973m69.074 44.473c-.059.035-.121.066-.18.102c.059-.035.121-.066.18-.102m0 0\\\"/>\"\n\t\t},\n\t\t\"tauri-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#F7F7F7\\\" d=\\\"M52.668 75.285a.737.737 0 0 1-.504-.199a.73.73 0 0 1-.195-.504V60.035h-5a.75.75 0 0 1-.504-.195a.74.74 0 0 1-.199-.504v-3.008c0-.203.066-.375.199-.504a.73.73 0 0 1 .504-.195h15.109a.68.68 0 0 1 .504.195a.674.674 0 0 1 .195.504v3.008a.68.68 0 0 1-.195.504a.696.696 0 0 1-.504.195h-5v14.547a.75.75 0 0 1-.195.504a.686.686 0 0 1-.508.199zm9.539 0a.646.646 0 0 1-.422-.168a.64.64 0 0 1-.168-.422a.85.85 0 0 1 .027-.254l6.598-18.027c.059-.227.18-.414.367-.562s.43-.223.73-.223h4.152c.301 0 .543.074.73.223s.309.336.367.563l6.57 18.027l.055.254a.589.589 0 0 1-.195.422a.59.59 0 0 1-.422.168h-3.453c-.449 0-.75-.199-.898-.59l-1.094-2.867h-7.5l-1.066 2.867c-.148.391-.457.59-.926.59zm11.82-7.5l-2.613-7.41l-2.609 7.41zm17.219 7.781c-2.641 0-4.707-.648-6.207-1.937c-1.477-1.293-2.219-3.242-2.219-5.844V56.328c0-.203.066-.375.199-.504a.73.73 0 0 1 .504-.195h3.625a.68.68 0 0 1 .504.195a.64.64 0 0 1 .223.504v11.43c0 1.219.281 2.133.844 2.754c.582.598 1.414.898 2.5.898c1.066 0 1.891-.309 2.473-.93s.867-1.523.867-2.723v-11.43c0-.203.066-.375.199-.504a.73.73 0 0 1 .504-.195h3.652a.68.68 0 0 1 .504.195a.674.674 0 0 1 .195.504v11.457c0 2.602-.746 4.551-2.246 5.844c-1.477 1.289-3.52 1.938-6.121 1.938m12.793-.281a.737.737 0 0 1-.504-.199a.73.73 0 0 1-.195-.504V56.328c0-.203.063-.375.195-.504a.73.73 0 0 1 .504-.195h7.641c2.449 0 4.359.559 5.727 1.684c1.387 1.105 2.078 2.676 2.078 4.719c0 1.309-.309 2.422-.926 3.34s-1.469 1.621-2.555 2.105l3.848 6.91a.697.697 0 0 1 .082.309c0 .148-.066.289-.195.422a.558.558 0 0 1-.395.168h-3.734c-.543 0-.926-.254-1.152-.758l-3.199-6.18h-2.863v6.234a.64.64 0 0 1-.227.504a.677.677 0 0 1-.504.199zm7.582-10.926c.863 0 1.516-.203 1.965-.617c.449-.43.676-1.02.676-1.77s-.227-1.336-.676-1.77c-.43-.449-1.082-.672-1.965-.672h-3.227v4.828zm11.836 10.926a.753.753 0 0 1-.508-.199a.75.75 0 0 1-.195-.504V56.328a.69.69 0 0 1 .195-.504a.746.746 0 0 1 .508-.195h3.762a.67.67 0 0 1 .504.195a.634.634 0 0 1 .227.504v18.254a.626.626 0 0 1-.227.504a.67.67 0 0 1-.504.199zm0 0\\\"/><path fill=\\\"#ffc131\\\" d=\\\"M24.66 58.574a3.79 3.79 0 1 1-7.582 0a3.79 3.79 0 1 1 7.582 0m0 0\\\"/><path fill=\\\"#24c8db\\\" d=\\\"M10.707 69.426a3.79 3.79 0 0 1 3.789-3.789a3.79 3.79 0 0 1 3.789 3.789a3.79 3.79 0 0 1-3.789 3.789a3.79 3.79 0 0 1-3.789-3.789m0 0\\\"/><path fill=\\\"#ffc131\\\" d=\\\"M28.727 70.727a14.47 14.47 0 0 1-4.996 2.031a10.11 10.11 0 0 0 .559-3.332a10.18 10.18 0 0 0-.074-1.25a10.2 10.2 0 0 0 2.176-1.062a10.162 10.162 0 0 0 3.75-4.363a10.14 10.14 0 0 0 .781-5.703a10.139 10.139 0 0 0-2.437-5.211a10.14 10.14 0 0 0-4.875-3.055a10.16 10.16 0 0 0-5.754.082a10.13 10.13 0 0 0-4.789 3.191l-.461.594a16.86 16.86 0 0 0-5.547 1.609a14.38 14.38 0 0 1 2.707-4.961a14.428 14.428 0 0 1 6.813-4.543a14.47 14.47 0 0 1 8.191-.117a14.456 14.456 0 0 1 6.938 4.348a14.46 14.46 0 0 1 3.469 7.418a14.473 14.473 0 0 1-6.449 14.324zM7.23 56.898l3.547.434a10.08 10.08 0 0 1 .457-2.012a14.46 14.46 0 0 0-4.004 1.578m0 0\\\"/><path fill=\\\"#24c8db\\\" d=\\\"M6.617 57.273a14.469 14.469 0 0 1 5.031-2.039a10.162 10.162 0 0 0-.621 3.512c0 .367.02.734.055 1.094a10.07 10.07 0 0 0-2.129 1.047a10.177 10.177 0 0 0-3.754 4.363a10.172 10.172 0 0 0 6.532 13.969c1.883.528 3.887.5 5.754-.082a10.13 10.13 0 0 0 4.789-3.191l.465-.594a16.905 16.905 0 0 0 5.551-1.625a14.46 14.46 0 0 1-9.527 9.52c-2.66.824-5.504.867-8.187.117s-5.094-2.262-6.941-4.348a14.46 14.46 0 0 1-3.469-7.418a14.468 14.468 0 0 1 1.113-8.113a14.46 14.46 0 0 1 5.34-6.211zM28.09 71.098c-.016.012-.035.023-.055.035zm0 0\\\"/>\"\n\t\t},\n\t\t\"tensorflow\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff6f00\\\" d=\\\"m61.55 128l-21.84-12.68V40.55L6.81 59.56l.08-28.32L61.55 0zM66.46 0v128l21.84-12.68V79.31l16.49 9.53l-.1-24.63l-16.39-9.36v-14.3l32.89 19.01l-.08-28.32z\\\"/>\"\n\t\t},\n\t\t\"tensorflow-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff6f00\\\" d=\\\"M6.532 74.19V59.342L0 63.114l.011-5.623l10.86-6.203v25.424zm5.316 2.522l4.34-2.522v-7.146l3.272 1.886l-.023-4.885l-3.249-1.863v-2.84l6.532 3.772l-.011-5.623l-10.86-6.203z\\\"/><path fill=\\\"#425066\\\" d=\\\"M35.186 59.147h-4.113v12.301h-2.377v-12.3h-4.103V57.13h10.593zm8.507 7.818h-6.97c.027.946.317 1.675.87 2.187c.558.513 1.324.77 2.295.77c1.092 0 2.094-.327 3.006-.98v1.868c-.932.586-2.163.878-3.694.878c-1.504 0-2.686-.463-3.545-1.387c-.852-.932-1.278-2.24-1.278-3.924c0-1.59.47-2.885 1.409-3.885c.944-1.004 2.115-1.508 3.514-1.508c1.397 0 2.478.45 3.244 1.349c.766.898 1.149 2.147 1.149 3.744zm-2.237-1.635c-.007-.833-.202-1.478-.589-1.937c-.386-.466-.919-.7-1.598-.7c-.665 0-1.231.243-1.697.73c-.46.485-.742 1.12-.849 1.907zm13.549 6.118h-2.318v-5.76c0-1.911-.674-2.866-2.025-2.866c-.706 0-1.288.266-1.747.799c-.46.526-.69 1.192-.69 1.997v5.83H45.9V61.224h2.326v1.698h.04c.766-1.291 1.871-1.938 3.315-1.938c1.112 0 1.96.364 2.547 1.089c.585.719.878 1.76.878 3.125zm2.187-.32v-2.146c.865.659 1.82.988 2.865.988c1.397 0 2.097-.412 2.097-1.238a.954.954 0 0 0-.18-.589a1.66 1.66 0 0 0-.488-.438a3.62 3.62 0 0 0-.72-.34a114.395 114.395 0 0 1-.918-.34a10.138 10.138 0 0 1-1.139-.529a3.634 3.634 0 0 1-.84-.63a2.489 2.489 0 0 1-.498-.808a2.939 2.939 0 0 1-.17-1.047c0-.493.117-.926.35-1.299c.232-.38.545-.695.938-.948a4.336 4.336 0 0 1 1.338-.58c.5-.133 1.016-.2 1.547-.2c.946 0 1.792.143 2.537.43v2.028c-.719-.493-1.545-.739-2.476-.739a3.294 3.294 0 0 0-.799.089a2.06 2.06 0 0 0-.599.25a1.204 1.204 0 0 0-.39.39a.893.893 0 0 0-.14.488a1.056 1.056 0 0 0 .14.56c.094.152.23.29.41.409c.186.113.406.219.658.319c.26.093.557.197.89.31c.438.18.832.364 1.178.549c.352.186.652.4.897.64c.247.232.437.505.57.817c.134.307.2.673.2 1.099c0 .519-.12.972-.36 1.357a2.973 2.973 0 0 1-.958.96a4.397 4.397 0 0 1-1.387.558a6.941 6.941 0 0 1-1.648.19c-1.118 0-2.086-.187-2.905-.56m13.987.56c-1.577 0-2.839-.476-3.783-1.427c-.94-.959-1.408-2.227-1.408-3.806c0-1.715.488-3.057 1.467-4.022c.985-.966 2.31-1.449 3.974-1.449c1.597 0 2.842.47 3.734 1.409c.892.938 1.338 2.24 1.338 3.903c0 1.632-.482 2.94-1.448 3.924c-.958.98-2.25 1.468-3.874 1.468m.11-8.857c-.905 0-1.62.317-2.147.95c-.526.632-.788 1.504-.788 2.615c0 1.073.266 1.918.799 2.537c.532.612 1.245.918 2.136.918c.913 0 1.611-.302 2.097-.909c.492-.605.739-1.468.739-2.585c0-1.125-.247-1.994-.739-2.606c-.486-.613-1.184-.92-2.097-.92m13.5.6c-.28-.22-.682-.33-1.21-.33c-.684 0-1.257.31-1.716.929c-.46.62-.69 1.46-.69 2.526v4.892h-2.316V61.224h2.318v2.107h.038c.228-.719.573-1.278 1.039-1.678c.472-.405 1-.608 1.578-.608c.42 0 .738.063.958.19zm9.624-4.284h-5.35v4.304h4.93v2.007h-4.932v5.99h-2.375V57.131h7.727zm4.613 12.301h-2.327V56.312h2.327zm7.548.24c-1.577 0-2.84-.476-3.783-1.427c-.94-.959-1.409-2.227-1.409-3.806c0-1.715.488-3.057 1.468-4.022c.985-.966 2.31-1.449 3.973-1.449c1.598 0 2.843.47 3.734 1.409c.893.938 1.339 2.24 1.339 3.903c0 1.632-.483 2.94-1.448 3.924c-.958.98-2.249 1.468-3.873 1.468zm.11-8.857c-.906 0-1.621.317-2.147.95c-.525.632-.789 1.504-.789 2.615c0 1.073.267 1.918.799 2.537c.534.612 1.245.918 2.137.918c.912 0 1.61-.302 2.097-.909c.492-.605.738-1.468.738-2.585c0-1.125-.246-1.994-.738-2.606c-.486-.613-1.185-.92-2.097-.92M128 61.224l-3.015 10.224h-2.427l-1.857-6.93a4.385 4.385 0 0 1-.14-.897h-.04a4.161 4.161 0 0 1-.179.878l-2.018 6.95h-2.376l-3.005-10.225h2.397l1.856 7.37c.06.219.1.51.12.877h.07c.02-.279.073-.579.16-.897l2.067-7.35h2.176l1.837 7.399c.06.233.104.526.13.88h.07a4.71 4.71 0 0 1 .15-.88l1.818-7.399z\\\"/>\"\n\t\t},\n\t\t\"terraform\": {\n\t\t\t\"body\": \"<g fill-rule=\\\"evenodd\\\"><path fill=\\\"#5c4ee5\\\" d=\\\"M77.941 44.5v36.836L46.324 62.918V26.082zm0 0\\\"/><path fill=\\\"#4040b2\\\" d=\\\"m81.41 81.336l31.633-18.418V26.082L81.41 44.5zm0 0\\\"/><path fill=\\\"#5c4ee5\\\" d=\\\"M11.242 42.36L42.86 60.776V23.941L11.242 5.523zm66.699 43.015L46.324 66.957v36.82l31.617 18.418zm0 0\\\"/></g>\"\n\t\t},\n\t\t\"terraform-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M3.219 99.523v-2.355H1.102v2.348H0v-5.641h1.102v2.371h2.117v-2.371H4.32v5.648zm5.082 0h-.86l-.078-.296a2.383 2.383 0 0 1-1.258.355c-.77 0-1.101-.512-1.101-1.215c0-.699.375-1.11 1.223-1.11h1.015v-.421c0-.457-.133-.613-.804-.613a6.263 6.263 0 0 0-1.168.12l-.133-.777c.48-.132.976-.199 1.476-.199c1.324 0 1.711.457 1.711 1.469zm-1.102-1.53h-.73c-.34 0-.438.085-.438.398c0 .312.098.41.418.41a1.66 1.66 0 0 0 .793-.211zm3.305 1.62a5.092 5.092 0 0 1-1.453-.234l.14-.777c.41.113.832.175 1.258.18c.465 0 .54-.102.54-.415c0-.308 0-.375-.739-.531c-1.023-.246-1.102-.492-1.102-1.281c0-.79.375-1.176 1.579-1.176c.421 0 .843.047 1.253.144l-.097.809a8.232 8.232 0 0 0-1.156-.121c-.465 0-.543.102-.543.355c0 .258 0 .356.597.489c1.18.3 1.29.457 1.29 1.293c0 .832-.286 1.254-1.555 1.254zm4.828-.09V96.68c0-.223-.098-.325-.34-.325c-.387.043-.762.16-1.101.344v2.824h-1.106v-5.726l1.106.156v1.8a3.846 3.846 0 0 1 1.543-.386c.691 0 .945.477.945 1.2v2.956zm1.941-4.644v-1.004h1.102v1.004zm0 4.644v-4.078h1.102v4.078zm1.895-4.035c0-1.023.617-1.613 2.05-1.613a6.822 6.822 0 0 1 1.567.191l-.12.91a8.633 8.633 0 0 0-1.411-.199c-.75 0-.992.254-.992.844v2.149c0 .59.242.843.992.843a8.99 8.99 0 0 0 1.41-.144l.121.91a6.822 6.822 0 0 1-1.566.191c-1.434 0-2.051-.59-2.051-1.613zm5.941 4.125c-1.441 0-1.828-.765-1.828-1.601V97c0-.832.387-1.602 1.828-1.602c1.446 0 1.832.77 1.832 1.602v1.035c0 .8-.386 1.567-1.832 1.567zm0-3.336c-.562 0-.78.246-.78.703v1.11c0 .457.218.703.78.703c.563 0 .786-.246.786-.703v-1.11c0-.503-.223-.746-.786-.746zm4.797.067a8.19 8.19 0 0 0-1.101.59v2.625h-1.106v-4.114h.961v.446a4.71 4.71 0 0 1 1.102-.536zm4.266 1.77a1.26 1.26 0 0 1-.34 1.066a1.24 1.24 0 0 1-1.05.367a6.174 6.174 0 0 1-1.102-.121v1.668l-1.102.156v-5.805h.836l.102.344c.39-.277.855-.426 1.332-.422c.851 0 1.3.488 1.3 1.41zm-2.512.456c.305.067.621.102.934.11c.375 0 .531-.176.531-.543v-1.38c0-.335-.133-.523-.52-.523a1.513 1.513 0 0 0-.937.368zm-25.234 9.473H0v-3.871h17.207v3.871h-6.426v19.348H6.426zm0 0\\\"/><path d=\\\"M21.176 124.242a17.45 17.45 0 0 0 5.148-.8l.66 3.203a17.97 17.97 0 0 1-6.183 1.113c-5.293 0-7.121-2.48-7.121-6.551v-4.45c0-3.589 1.586-6.667 6.976-6.667s6.614 3.168 6.614 6.824v3.625h-9.368v.867c0 2.035.715 2.836 3.274 2.836m-3.309-7.148h5.36v-.836c0-1.602-.485-2.711-2.559-2.711c-2.07 0-2.8 1.11-2.8 2.71zm20.66-3.125a32.367 32.367 0 0 0-4.41 2.48v10.942h-4.265v-16.98h3.558l.278 1.878a18.697 18.697 0 0 1 4.41-2.223zm10.293 0a32.603 32.603 0 0 0-4.41 2.48v10.942h-4.265v-16.98h3.562l.273 1.878a18.772 18.772 0 0 1 4.41-2.223zm14.09 13.41h-3.453l-.309-1.113a9.123 9.123 0 0 1-5.003 1.5c-3.075 0-4.41-2.121-4.41-5.047c0-3.446 1.488-4.77 4.906-4.77h4.047v-1.777c0-1.883-.52-2.547-3.208-2.547c-1.57.016-3.132.191-4.664.52l-.52-3.235a21.801 21.801 0 0 1 5.767-.8c5.292 0 6.847 1.878 6.847 6.136zm-4.21-6.418h-3.11c-1.38 0-1.766.379-1.766 1.668c0 1.293.375 1.715 1.7 1.715a6.62 6.62 0 0 0 3.175-.867zm17.171-14.418a12.234 12.234 0 0 0-2.414-.281c-1.652 0-1.894.734-1.894 2.023v2.125h4.277l-.242 3.336H71.55v13.586h-4.21v-13.543h-2.7v-3.336h2.688v-2.41c0-3.527 1.621-5.262 5.36-5.262c1.222-.004 2.445.16 3.624.492zm8.223 21.191c-5.766 0-7.317-3.203-7.317-6.671v-4.293c0-3.48 1.551-6.672 7.317-6.672c5.765 0 7.332 3.203 7.332 6.672v4.293c-.012 3.457-1.567 6.671-7.332 6.671m0-14.043c-2.203 0-3.106 1.012-3.106 2.922v4.57c0 1.915.86 2.926 3.106 2.926c2.25 0 3.11-1.011 3.11-2.925v-4.57c0-1.923-.872-2.934-3.11-2.934zm18.168.278a32.603 32.603 0 0 0-4.41 2.48v10.942h-4.254v-16.98h3.558l.278 1.878a18.697 18.697 0 0 1 4.41-2.223zm11.574 13.41v-11.844c0-.898-.375-1.355-1.344-1.355a11.61 11.61 0 0 0-4.41 1.433v11.778h-4.191v-16.98h3.21l.419 1.433a16.737 16.737 0 0 1 6.734-1.778a3.19 3.19 0 0 1 3.176 1.813a16.396 16.396 0 0 1 6.765-1.813c2.801 0 3.805 1.989 3.805 5.016v12.297h-4.21v-11.844c0-.898-.376-1.355-1.345-1.355a11.05 11.05 0 0 0-4.41 1.433v11.778zm0 0\\\"/><path fill=\\\"#5c4ee5\\\" fill-rule=\\\"evenodd\\\" d=\\\"M52.336 15.434L75.664 29.02v27.175l-23.328-13.59zm0 0\\\"/><path fill=\\\"#4040b2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M78.219 29.02v27.175l23.336-13.59V15.434zm0 0\\\"/><path fill=\\\"#5c4ee5\\\" fill-rule=\\\"evenodd\\\" d=\\\"M26.457.266V27.44l23.324 13.586V13.855zM52.336 72.75l23.328 13.59V59.176l-23.328-13.59zm0 0\\\"/>\"\n\t\t},\n\t\t\"tex\": {\n\t\t\t\"body\": \"<path d=\\\"M78.157 29.987v1.827c4.153 0 5.512.156 7.182 2.503L99.925 55.74L86.77 74.957c-3.246 4.7-8.159 4.782-9.604 4.782v1.827c1.19-.1 2.916-.128 4.474-.138c-1.504 9.598-3.29 14.783-15.554 14.783H55.592c-3.02 0-3.163-.381-3.163-2.983V72.091h7.133c7.134 0 7.814 2.614 7.814 8.996h1.215v-19.67h-1.215c0 6.274-.682 8.839-7.814 8.839h-7.134v-18.74c0-2.552.144-2.933 3.163-2.933h10.338c11.7 0 13.063 4.65 14.123 14.648h1.362L79.6 46.507H46.657l-1.219-16.412H1.775L.498 46.818h1.36C2.834 34.293 3.907 32.1 15.633 32.1h4.175c1.444.226 1.444 1.145 1.444 2.885v41.162c0 2.733-.23 3.567-6.599 3.567h-2.146v1.826c3.628-.07 7.408-.143 11.117-.143c3.698 0 7.49.073 11.115.143v-1.826h-2.11c-6.275 0-6.5-.834-6.5-3.567v-41.16c0-1.67 0-2.576 1.36-2.885h4.15c11.47 0 12.682 2.149 13.654 14.405h-3.98v2.076c5.355 0 6.213 0 6.213 3.4v40.805c0 3.4-.847 3.4-6.214 3.4v1.826h39.35l2.359-16.592h.562c2.04 0 5.594-.001 7.478.143v-1.827c-2.339-.226-3.016-1.74-3.016-2.959c0-.977.37-1.514.751-2.051l12.095-17.652l13.154 19.334c.595.836.595 1.062.595 1.289c0 .595-.677 1.896-3.325 2.051v1.827c2.421-.144 6.119-.144 8.61-.144c1.958 0 5.737 0 7.572.144V79.75c-4.843 0-5.605-.37-7.108-2.504l-16.625-24.322l11.187-16.174c1.12-1.588 3.4-4.855 9.604-4.938v-1.825c-1.732.144-4.604.144-6.418.144c-2.492 0-5.595 0-7.479-.144v1.826c2.422.227 3.017 1.74 3.017 2.96c0 .903-.37 1.513-.906 2.264l-9.983 14.48L91.6 35.14c-.525-.823-.598-1.062-.598-1.289c0-.68.823-1.968 3.327-2.04v-1.825c-2.421.144-6.119.144-8.61.144c-1.958 0-5.737 0-7.564-.144z\\\"/>\"\n\t\t},\n\t\t\"thealgorithms\": {\n\t\t\t\"body\": \"<path fill=\\\"#00BCB4\\\" d=\\\"M43.9 105.9H7.2l9.5-22.5h25.7L71 17.1H40.3L17.8 69.5h13.8c1 1.6 2.7 2.7 4.7 2.7c3 0 5.5-2.5 5.5-5.5s-2.5-5.5-5.5-5.5c-2.2 0-4.1 1.3-5 3.2h-6.6l18.7-42.3h20.1L39.4 78.3l-25.4.2l-14 32.4h47.2l6.2-13.5h20.5l6.8 13.5H128L85.3 17.1zM56 92.1L63.4 76l8 16.1zm27.8 14.4l-4.7-9.4h14.6c1 1.8 2.8 3 4.9 3c3 0 5.5-2.5 5.5-5.5s-2.5-5.5-5.5-5.5c-2.2 0-4.2 1.4-5.1 3.3H76.9L65.8 70.6l8.2-18l9.2 18.8h4.3c.9 1.8 2.8 3.2 5 3.2c3 0 5.5-2.5 5.5-5.5s-2.5-5.5-5.5-5.5c-2.3 0-4.3 1.4-5.1 3.5h-1.6l-9.5-19.4l9.1-19.9l35.6 78.7z\\\"/>\"\n\t\t},\n\t\t\"thealgorithms-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#00BCB4\\\" d=\\\"M49.5 79.1H23l6.9-16.3h18.5L69 15.1H46.9L30.7 52.9h10c.7 1.2 2 2 3.4 2c2.2 0 4-1.8 4-4s-1.8-3.9-4-3.9c-1.6 0-3 .9-3.6 2.3h-4.7l13.5-30.6h14.5L46.2 59.2l-18.3.1l-10.1 23.4h34l4.5-9.7h14.8l4.9 9.7h34.2L79.3 15.1zm8.7-9.9l5.3-11.6l5.8 11.6zm20.1 10.3l-3.4-6.8h10.5c.7 1.3 2 2.1 3.5 2.1c2.2 0 4-1.8 4-4s-1.8-4-4-4c-1.6 0-3 1-3.6 2.4h-12l-8-15.6l5.9-13l6.7 13.5H81c.6 1.3 2 2.3 3.6 2.3c2.2 0 4-1.8 4-4s-1.8-4-4-4c-1.7 0-3.1 1-3.7 2.5h-1.2l-6.9-14l6.5-14.4l25.7 57z\\\"/><path fill=\\\"#595959\\\" d=\\\"M19.2 99.7H17v7.8h-2.6v-7.8h-2.1v-2.2h6.9zm8.1 7.9h-2.4v-3.4c0-.6-.1-1-.2-1.2c-.2-.3-.5-.4-.9-.4s-.7.1-.9.4c-.2.2-.3.6-.3 1.1v3.6h-2.4v-11h2.4v5.1c.3-.3.5-.5.8-.7c.4-.2.9-.3 1.4-.3c.7 0 1.3.2 1.8.6c.5.4.8 1.1.8 2v4.2zm8.8-3h-5c0 1 .5 1.5 1.5 1.5c.5 0 .9-.2 1.2-.6H36c-.2.6-.5 1.1-.8 1.4c-.7.6-1.5.9-2.6.9c-1.4 0-2.4-.4-3.1-1.3c-.5-.6-.8-1.4-.8-2.3c0-1.1.3-2 1-2.6s1.6-1 2.8-1c1.5 0 2.5.5 3.2 1.6c.4.6.5 1.3.5 2.1v.3zm-2.2-1.4c-.2-.8-.6-1.1-1.4-1.1c-.4 0-.7.1-1 .4c-.2.2-.3.5-.4.8h2.8zm17.5 4.4h-2.8l-.6-1.7h-3.6l-.7 1.7H41l3.8-10h2.8zm-4.2-3.8l-1.1-3.2l-1.1 3.2zm7.5 3.8h-2.4v-11h2.4zm9.2-.5c0 .6 0 1.1-.1 1.4c-.1.6-.5 1.1-1 1.6c-.7.6-1.6.9-2.8.9c-1.2 0-2.2-.3-2.9-1c-.5-.4-.8-.9-.9-1.3c0 0 0-.2-.1-.3h2.7c.1.2.2.4.3.5c.2.2.5.2.8.2c.6 0 1-.2 1.3-.6c.2-.2.3-.6.3-1.1v-.6c-.3.3-.5.4-.7.6c-.4.2-.9.3-1.4.3c-.7 0-1.3-.2-1.9-.5c-.6-.4-1-.9-1.2-1.5c-.2-.4-.2-.9-.2-1.4c0-1.1.4-2 1.1-2.7c.7-.6 1.5-1 2.4-1c.5 0 .9.1 1.3.3c.2.1.5.3.7.6v-.7H64v6.3zm-2.3-3c0-.4-.1-.8-.4-1.1s-.7-.5-1.1-.5c-.5 0-.9.2-1.2.6c-.2.3-.4.6-.4 1s.1.8.4 1.1c.3.3.7.5 1.1.5c.4 0 .8-.2 1.1-.5c.4-.3.5-.6.5-1.1m11.9.1c0 .9-.3 1.8-.9 2.4c-.8.8-1.8 1.2-3.2 1.2c-1.4 0-2.4-.4-3.2-1.2c-.6-.7-.9-1.5-.9-2.5c0-.9.3-1.7.9-2.4c.8-.8 1.8-1.2 3.2-1.2c1.3 0 2.3.4 3.1 1.2c.7.7 1 1.5 1 2.5m-2.5 0c0-.4-.2-.8-.5-1.1s-.7-.5-1.1-.5c-.5 0-.9.2-1.2.6c-.3.3-.4.6-.4 1s.1.7.4 1c.3.4.7.6 1.2.6c.4 0 .8-.2 1.1-.5c.3-.3.5-.7.5-1.1m8.9-1.2c-.3-.2-.7-.2-1-.2c-.8 0-1.3.3-1.5 1c-.1.2-.1.5-.1.9v2.9h-2.4v-6.8h2.4v1.1c.3-.4.5-.7.8-.9c.4-.2.9-.4 1.4-.4h.5v2.4zm3.7-4.8c0 .4-.1.7-.4 1c-.3.3-.6.4-1 .4s-.7-.1-1-.4s-.4-.6-.4-1s.1-.7.4-1s.6-.4 1-.4s.7.1 1 .4s.4.6.4 1m-.2 9.4H81v-6.8h2.4zm5.7-4.9h-1.4v4.8h-2.4v-4.8h-.8v-2h.8v-2h2.4v2h1.4zm8.1 4.9h-2.4v-3.4c0-.6-.1-1-.2-1.2c-.2-.3-.5-.4-.9-.4s-.7.1-.9.4c-.2.2-.3.6-.3 1.1v3.6H90v-11h2.4v5.1c.3-.3.5-.5.8-.7c.4-.2.9-.3 1.4-.3c.7 0 1.3.2 1.8.6c.5.4.8 1.1.8 2zm13.1 0h-2.4v-3.4c0-.6-.1-1-.2-1.2c-.2-.3-.5-.5-.8-.5c-.4 0-.7.2-.9.5c-.2.2-.2.6-.2 1.2v3.4h-2.4v-3.4c0-.6 0-1-.1-1.1c-.2-.4-.5-.5-.9-.5s-.7.2-.9.5c-.1.1-.1.3-.2.4c0 .2-.1.4-.1.8v3.4h-2.4v-6.8h2.4v.8c.3-.3.5-.5.8-.6c.4-.2.9-.3 1.4-.3c.7 0 1.2.2 1.7.5c.2.2.4.4.6.7c.2-.3.4-.5.6-.7c.5-.4 1-.6 1.7-.6c.5 0 1 .1 1.4.4c.4.3.7.6.8 1.1c.1.3.1.6.1 1zm7.2-2.3c0 .7-.3 1.3-.8 1.8c-.6.5-1.4.8-2.5.8c-.9 0-1.8-.3-2.7-.8l.9-1.7c.7.4 1.3.7 1.9.7c.5 0 .8-.2.8-.5c0-.2-.1-.3-.3-.4c-.1-.1-.4-.1-.8-.2s-.7-.2-.9-.2c-.5-.2-.8-.5-1-.9c-.1-.2-.1-.5-.1-.8c0-.6.2-1.1.6-1.6c.5-.6 1.3-.9 2.4-.9c.8 0 1.5.1 2.2.4l-.8 1.6c-.4-.2-.9-.4-1.3-.4c-.5 0-.7.2-.7.5c0 .2.1.3.3.4c.1 0 .3.1.8.2c.6.1 1.1.3 1.4.6c.4.3.6.8.6 1.4\\\"/>\"\n\t\t},\n\t\t\"threedsmax\": {\n\t\t\t\"body\": \"<path fill=\\\"#36697f\\\" d=\\\"M23.188.019L114.438 20h9.874v108h-103.5a6.5 6.5 0 0 1-6.5-6.5V94.287L22.996.3Z\\\"/><path fill=\\\"#37a5cc\\\" d=\\\"M23.188 0h85.75a6.5 6.5 0 0 1 6.5 6.5V90h-92.25z\\\"/><path fill=\\\"#7dc6dd\\\" d=\\\"M23.188 90V0l-19.5 11.75v90z\\\"/><path fill=\\\"#fff\\\" d=\\\"M68.53 19c-11.828 0-18.455 6.84-18.81 14.464h11.684c.285-3.135 2.21-5.771 6.413-5.771c3.634 0 5.842 1.639 5.842 4.916v1.71c0 4.133-3.633 5.273-7.196 5.273h-3.848v8.336h3.848c3.563 0 8.978.927 8.978 6.342v1.496c0 4.488-2.85 6.555-7.197 6.555c-4.987 0-7.054-2.85-7.41-5.843H49.15c.784 7.34 5.772 14.678 19.737 14.678c10.901 0 18.952-5.914 18.952-13.965v-3.349c0-6.484-5.913-9.833-10.83-10.688c4.917-1.14 8.907-4.773 8.907-8.977v-2.708C85.915 24.13 78.647 19 68.53 19M41.3 98.865v18.9h4.05v-12.69l3.347 12.69h4.455v-.026l3.16-12.177v12.204h4.481v-18.9h-5.778l.027.053l-3.996 15.12l-3.807-15.174zm27.318 0l-5.4 18.9h4.698l1.053-4.13h5.67l1.16 4.13h4.807l-5.697-18.9Zm13.94 0l5.345 8.91l-5.967 9.99h5.184l3.7-7.127l3.644 7.128h5.32l-5.968-10.395l5.373-8.505h-4.995l-3.267 6.02H90.9l-3.186-6.02zm-10.808 3.106l1.97 8.154h-3.887Z\\\"/>\"\n\t\t},\n\t\t\"threejs\": {\n\t\t\t\"body\": \"<g color=\\\"#000\\\"><path d=\\\"M16.219 15.762a1.129 1.129 0 0 0-1.076 1.399l24.394 98.742a1.129 1.129 0 0 0 1.879.544l73.386-70.59a1.129 1.129 0 0 0-.47-1.899L16.55 15.806a1.129 1.129 0 0 0-.331-.044m1.584 2.754l94.024 27.07l-70.566 67.877z\\\"/><path d=\\\"M65.137 29.84a1.129 1.129 0 0 0-.807.315L27.654 65.46a1.129 1.129 0 0 0 .471 1.898L76.984 81.44a1.129 1.129 0 0 0 1.409-1.355L66.21 30.698a1.129 1.129 0 0 0-1.073-.858m-.651 3.3l11.248 45.59l-45.104-13z\\\"/><path d=\\\"M46.914 47.313a1.129 1.129 0 0 0-1.076 1.399l6.054 24.531a1.129 1.129 0 0 0 1.88.543l18.222-17.563a1.129 1.129 0 0 0-.472-1.898l-24.277-6.968a1.129 1.129 0 0 0-.331-.044m1.583 2.751l20.522 5.89L53.614 70.8z\\\"/><path d=\\\"M40.902 22.809a1.129 1.129 0 0 0-.807.316L21.873 40.687a1.129 1.129 0 0 0 .472 1.898l24.273 6.969a1.129 1.129 0 0 0 1.408-1.356l-6.051-24.53a1.129 1.129 0 0 0-1.073-.86zm-.65 3.3l5.114 20.736l-20.517-5.89l15.403-14.847zm49.201 10.684a1.129 1.129 0 0 0-.806.316L70.423 54.67a1.129 1.129 0 0 0 .472 1.899l24.274 6.968a1.129 1.129 0 0 0 1.408-1.356l-6.05-24.53a1.129 1.129 0 0 0-1.074-.859zm-.65 3.3l5.114 20.737L73.4 54.94zM52.944 71.864a1.129 1.129 0 0 0-.74.315L33.982 89.742a1.129 1.129 0 0 0 .472 1.898l24.278 6.968a1.129 1.129 0 0 0 1.407-1.355l-6.055-24.531a1.129 1.129 0 0 0-1.14-.858m-.582 3.3l5.118 20.737l-20.522-5.89z\\\"/></g>\"\n\t\t},\n\t\t\"threejs-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M23.064 6.845a.966.966 0 0 0-.902 1.198l20.872 84.48a.966.966 0 0 0 1.606.464l62.783-60.399a.966.966 0 0 0-.401-1.624L23.366 6.882a.966.966 0 0 0-.302-.037M24.438 9.2l80.44 23.157l-60.37 58.077z\\\" color=\\\"#000\\\"/><path d=\\\"M64.9 18.886a.966.966 0 0 0-.654.27L32.869 49.361a.966.966 0 0 0 .402 1.624l41.803 12.048a.966.966 0 0 0 1.205-1.16L65.853 19.62a.966.966 0 0 0-.954-.734zm-.52 2.822l9.623 39.007l-38.589-11.123z\\\" color=\\\"#000\\\"/><path d=\\\"M49.327 33.835a.966.966 0 0 0-.9 1.196l5.176 20.988a.966.966 0 0 0 1.608.465l15.587-15.021a.966.966 0 0 0-.403-1.624L49.63 33.872a.966.966 0 0 0-.303-.037m1.374 2.354l17.552 5.043L55.077 53.93z\\\" color=\\\"#000\\\"/><path d=\\\"M44.164 12.869a.966.966 0 0 0-.655.27L27.922 28.168a.966.966 0 0 0 .402 1.624l20.766 5.967a.966.966 0 0 0 1.205-1.16l-5.177-20.994a.966.966 0 0 0-.954-.735zm-.522 2.825l4.377 17.747l-17.554-5.044zM85.7 24.838a.966.966 0 0 0-.653.27L69.457 40.13a.966.966 0 0 0 .405 1.622l20.764 5.967a.966.966 0 0 0 1.205-1.16l-5.177-20.987a.966.966 0 0 0-.954-.734m-.52 2.824l4.377 17.74l-17.553-5.044zM54.524 54.844a.966.966 0 0 0-.653.27l-15.59 15.02a.966.966 0 0 0 .405 1.624l20.772 5.967a.966.966 0 0 0 1.204-1.16l-5.184-20.987a.966.966 0 0 0-.954-.734m-.52 2.823l4.382 17.74l-17.558-5.042z\\\" color=\\\"#000\\\"/><path d=\\\"M25.956 114.7c-.452 1.041-1.306 1.494-2.118 1.494c-1.027 0-1.989-.747-1.989-2.248v-5.32h4.316v-1.371h-4.316v-3.741l-1.522-.108v3.849h-1.644v1.371h1.644v5.32c0 2.377 1.73 3.748 3.533 3.748c1.32 0 2.692-.71 3.46-2.376zm12.76 1.537v-4.107c0-2.542-1.063-5.155-3.698-5.155c-1.264 0-2.585.581-3.08 1.479v-4.94l-1.516-.108v14.008h1.515v-7.338c.453-.897 1.092-1.58 2.334-1.58c1.795 0 2.822 1.451 2.822 3.246v5.672h1.73c-.108-.366-.108-.79-.108-1.177zm11.717-7.317l.94-1.472c-1.148-.452-1.536-.473-1.923-.473c-.79 0-2.391.129-3.102 1.479c0-.237.15-1.006.28-1.2h-3.741v1.135l2.075.108v7.675h-3.145v1.242h7.74c-.107-.366-.107-.79-.107-1.177v-.065h-3.016v-5.837c.345-1.522 2.269-2.355 4-1.415zm7.697-1.945c-2.908 0-4.43 1.902-4.509 5.176v.92c0 2.692 1.924 4.623 4.595 4.623a5.25 5.25 0 0 0 3.87-1.716l-.897-1.112c-1.156 1.112-2.118 1.436-3.016 1.436c-1.795 0-3.058-1.329-3.058-3.232l7.252-.043l.021-.876c.13-3.295-1.371-5.176-4.258-5.176m2.657 4.724h-5.65c.085-2.09.875-3.396 2.842-3.396c1.968 0 2.908 1.22 2.808 3.396m9.104-4.724c-2.908 0-4.43 1.902-4.516 5.176v.92c0 2.692 1.924 4.623 4.602 4.623a5.265 5.265 0 0 0 3.87-1.716l-.897-1.112c-1.156 1.112-2.118 1.436-3.016 1.436c-1.795 0-3.058-1.329-3.058-3.232l7.252-.043l.021-.876c.13-3.295-1.371-5.176-4.258-5.176m2.65 4.724h-5.644c.086-2.09.876-3.396 2.843-3.396c1.968 0 2.908 1.22 2.8 3.396zm7.912 4.861c0 .725.41 1.134 1.135 1.134c.703 0 1.113-.409 1.113-1.134c0-.71-.41-1.113-1.113-1.113c-.704 0-1.135.402-1.135 1.113m14.69-11.1c.704 0 1.114-.388 1.114-1.135c0-.71-.41-1.091-1.113-1.091c-.704 0-1.113.38-1.113 1.091c0 .747.387 1.135 1.113 1.135zm-2.713 1.795v1.134l2.096.108v8.917c0 1.515-.962 2.248-1.989 2.248c-.84 0-1.694-.453-2.14-1.48l-1.35.597c.769 1.694 2.14 2.376 3.469 2.376c1.795 0 3.525-1.35 3.525-3.74l.022-10.16zm13.276 4.344c-1.946-.367-2.844-.84-2.844-1.652c0-.919 1.113-1.58 2.671-1.58c1.113 0 1.86.338 2.693 1.221l.962-.962c-.747-1.07-2.111-1.651-3.827-1.651c-2.348 0-3.935 1.199-3.935 3.015c0 1.587 1.22 2.506 4.15 3.102c1.774.345 2.312.66 2.312 1.35c0 1.005-1.22 1.881-2.613 1.881c-1.192 0-2.262-.66-3.246-1.816l-1.026 1.048c1.048 1.386 2.434 2.14 4.25 2.14c2.463 0 4.064-1.372 4.064-3.275c0-1.543-1.048-2.333-3.611-2.821m0 0\\\"/>\"\n\t\t},\n\t\t\"titaniumsdk\": {\n\t\t\t\"body\": \"<path fill=\\\"#bd222b\\\" d=\\\"M94.933 127.92a36.619 36.519 0 0 1-5.032-.853c-3.283-.822-5.967-1.877-10.213-4.016c-3.486-1.754-6.492-3.525-13.277-7.812l-2.337-1.478l-3.786 2.496c-9.127 6.026-15.39 9.05-22.464 10.88c-1.759.447-4.38.767-5.4.66c-2.476-.266-3.257-.405-3.995-.682c-3.871-1.45-6.085-4.405-6.556-8.757c-.363-3.397.631-8.276 2.46-12.02c.588-1.216.78-1.472 1.545-2.101c1.097-.901 4.535-2.901 12.935-7.535c1.423-.784 2.6-1.44 2.62-1.456c.022-.016-1.283-1.488-2.908-3.27l-4.01-4.425l-1.065-1.174l-.465.635c-1.01 1.376-3.07 4.56-4.546 7.013c-3.572 5.951-6.197 12.042-7.646 17.758c-1.059 4.16-1.048 7.172.037 10.399c.177.522.268.944.203.944c-.16 0-18.288-18.121-18.849-18.852a13.171 13.135 0 0 1-1.84-3.792c-.416-1.52-.41-4.64.006-6.869a51.57 51.43 0 0 1 3.733-11.668c1.54-3.386 5.561-10.59 8.812-15.79l1.792-2.87l-.396-.507c-.786-.997-3.439-5.3-5.4-8.767a99.867 99.597 0 0 1-4.22-8.57c-1.53-3.786-2.78-8.132-3.075-10.644a40.394 40.285 0 0 1 .145-7.124c.417-2.848 2.716-4.981 6.192-5.728c1.358-.293 4.898-.15 7.31.293c2.78.518 7.71 2.203 8.77 3.003c.288.218.876 1.13 1.759 2.736c.727 1.322 2.342 4.24 3.593 6.479c1.246 2.24 2.599 4.693 3 5.46c.406.764.765 1.387.802 1.387c.096.006 8.577-8.441 8.529-8.49a215.73 215.14 0 0 0-3.096-1.786l-5.32-3.05c-8.428-4.848-13.765-6.87-19.973-7.573c-1.497-.17-5.946-.085-7.037.133c-.556.107-.374-.096 5.535-6.08c9.438-9.545 12.582-12.58 13.823-13.331A9.858 9.858 0 0 1 27.457.32C28.35.038 28.74 0 30.654 0c1.979.006 2.326.043 3.877.432c4.732 1.195 11.16 3.637 16.347 6.224c2.62 1.307 4.941 2.677 8.342 4.922c1.652 1.088 3.289 2.085 3.647 2.219c1.39.533 2.208.277 4.647-1.43C76.284 6.22 85.604 1.84 92.63.555c4.834-.885 7.235-.714 10 .71c1.219.629 1.23.64 9.935 9.386c4.79 4.815 9 9.066 9.352 9.45l.642.693l-1.193-.25c-3.657-.774-7.972-.518-11.93.708c-4.32 1.334-8.4 3.275-17.352 8.229c-3.032 1.68-5.566 3.104-5.63 3.162c-.07.064 1.7 1.974 4.064 4.395l4.197 4.282l.428-.779c.24-.426 1.99-3.68 3.882-7.226c1.893-3.546 3.615-6.698 3.824-7.007c.743-1.083 1.502-1.61 3.219-2.219c4.4-1.557 9.411-2.474 12.272-2.24c4.524.374 7.304 3.243 7.893 8.144c.187 1.525.117 2.72-.295 5.22c-1.213 7.414-4.486 14.98-11.122 25.71a136.06 136.06 0 0 0-1.385 2.262c-.096.176.252.81 1.487 2.72c6.021 9.3 8.962 14.932 11.048 21.124c1.503 4.469 2.085 7.29 2.07 10.122c-.006 2.34-.38 3.962-1.316 5.711c-.84 1.584-1.615 2.539-3.3 4.085c-3.684 3.381-5.058 4.73-8.769 8.592c-4.027 4.191-7.192 7.37-7.272 7.295a4.957 4.944 0 0 1 .15-.917c1.085-5.2.267-10.687-2.62-17.476c-1.193-2.816-4.375-9.14-5.712-11.36c-1.674-2.767-4.133-6.441-4.304-6.425c-.22.016-7.979 8.319-7.979 8.543c0 .117 2.209 1.413 6.668 3.92c9.588 5.386 9.22 5.109 10.304 7.759c1.738 4.24 2.62 8.32 2.62 12.18c0 1.584-.176 2.629-.641 3.808a8.05 8.05 0 0 1-5.92 4.948c-.962.192-3.267.246-5.005.118zm-59.57-3.381c3.962-.827 7.454-2.08 11.882-4.256c4.385-2.16 8.588-4.72 14.326-8.719l1.941-1.354l1.936 1.162c2.62 1.579 3.813 2.31 6.738 4.117c4.224 2.613 9.828 5.653 12.421 6.736c3.861 1.616 7.733 2.511 11.765 2.73c3.106.17 4.844-.501 6.015-2.341c.674-1.056.877-2.027.861-4.037c-.032-3.525-.722-6.714-2.331-10.72c-.524-1.3-.642-1.439-1.77-2.1a1114.4 1111.4 0 0 0-11.09-6.202a293 293 0 0 1-3.77-2.107l-2.406-1.365l1.593-1.707c.872-.938 2.968-3.146 4.652-4.906c1.68-1.754 3.503-3.685 4.048-4.287l.984-1.099l-1.583-2.085a314.16 313.31 0 0 0-6.427-8.192c-4.519-5.599-6.406-7.818-6.583-7.71c-.272.16-4.021 3.727-9.935 9.438l-5.577 5.397l-1.578-1.653c-4.214-4.426-12.235-12.527-12.406-12.527c-.348 0-7.78 9.093-11.989 14.665l-2.262 2.997l1.76 1.957c3.85 4.288 8.823 9.93 8.823 10.015c0 .118-2.573 1.579-9.385 5.312c-7.898 4.33-8.61 4.73-8.887 5.002c-.546.528-1.915 4.293-2.407 6.592c-.363 1.733-.502 4.8-.278 6.132c.396 2.347 1.93 4.187 4.251 5.093c1.47.576 3.957.587 6.663.022zM72.72 67.424c2.112-2.08 3.829-3.834 3.807-3.893c-.101-.283-4.128-4.64-6.411-6.933c-2.364-2.373-5.963-5.652-6.198-5.652c-.16 0-8.582 8.521-10.588 10.719l-1.925 2.1l.973 1.014c.535.565 3.294 3.392 6.134 6.293l5.16 5.269l2.599-2.56l6.443-6.346zm-55.345-8.037c3.139-4.383 7.465-9.444 12.203-14.308l1.68-1.722l-.343-.448a15.807 15.764 0 0 1-.93-1.547a1088.27 1088.27 0 0 0-4.252-7.615l-3.668-6.527l-2.46-.81c-2.31-.769-4.812-1.403-6.192-1.574c-.337-.043-1.55-.139-2.695-.213c-1.941-.128-2.139-.118-2.925.144c-1.123.373-2.209 1.12-2.62 1.823c-.524.891-.781 3.115-.706 6.107c.053 2.325.085 2.543.615 4.548c1.55 5.883 3.764 10.783 8.262 18.25c1.716 2.853 3.101 5.082 3.154 5.087c.011 0 .407-.533.872-1.19zm95.771-1.583c5.315-8.922 7.775-14.185 9.187-19.678c1.027-4 1.273-6.928.748-8.96c-.454-1.77-1.556-3.338-2.764-3.925c-1.128-.549-3.059-.8-4.775-.613a37.806 37.703 0 0 0-8.674 2.107c-1.08.41-1.048.367-3.107 4.266a897.956 897.956 0 0 1-4.031 7.487c-1.444 2.667-2.631 4.885-2.631 4.938c0 .054.871.992 1.935 2.08c2.059 2.101 7.658 8.831 10.604 12.746c.974 1.29 1.818 2.299 1.872 2.24c.059-.064.797-1.27 1.636-2.682z\\\"/>\"\n\t\t},\n\t\t\"tomcat\": {\n\t\t\t\"body\": \"<path fill=\\\"#d1a41a\\\" d=\\\"M22.148 78.306a80.73 80.73 0 0 0 4.857 5.446c-5.186 1.56-8.586 4.458-10.706 7.017c-3.356 4.05-5.132 9.398-4.723 13.988h-8.93c1.79-3.887 8.94-15.115 19.503-26.45zm103.449 28.886H114.74C89.83 94.193 67.96 85.027 44.728 83.025c.049-3.233.624-6.893 1.731-10.972l-2.14-.576c-1.136 4.192-1.732 7.985-1.8 11.38c-2.421-.162-4.857-.24-7.317-.24c-2.081 0-3.98.191-5.712.526c-2.258-2.254-4.182-4.408-5.815-6.45C34.389 65.534 52.038 55.438 67.398 51.64c4.325 14.376 13.609 24.226 24.876 30.853a47.543 47.543 0 0 0 2.435-1.485l19.656 21.16l.86-.073c5.368-.462 8.419 2.45 9.226 3.356c.595.659.95 1.264 1.146 1.741\\\"/><path fill=\\\"#ffdc76\\\" d=\\\"M116.008 36.412c.399 19.528-9.564 35.07-23.513 43.04C68.82 67.66 64.362 37.776 68.397 21.747c1.122 6.13 3.164 9.973 7.572 11.857c9.614-2.75 22.844-2.967 32.59-.28c4.06-2.952 5.634-7.464 6.495-11.405c1.072 4.585.95 14.494.954 14.494z\\\"/><path d=\\\"m49.096 58.246l7.36-3.345l3.611 10.702zm-7.492 3.88l4.284-2.542l3.877 6.688zm-8.295 5.484l3.746-2.81l1.873 6.692zm66.227 17.663l-2.677-2.543l-3.478 5.353zm4.954 5.885l-2.145-2.274l-5.618 4.28zm-8.964-60.474l-6.824.134l4.148 9.098zM68.362 47.943l-.669-3.88l6.559 3.479zm1.604 5.753l-.669-2.541l4.015 1.605zm45.225-4.146l.94-2.944l-5.353 2.274zm-2.007 6.02l.802-2.408l-4.148 1.204z\\\"/><path d=\\\"M65.538 63.203h12.913v1.594H65.538zm0-3.826h12.913v1.594H65.538zm39.43 3.826h12.912v1.594h-12.912zm0-3.826h12.912v1.594h-12.912zm-4.551-9.451H79.374V48.49h6.548c.807-3.453.966-6.753-.006-8.426c-.416-.71-.99-1.043-1.808-1.043c-3.744 0-5.29 3.959-5.355 4.127l.001-.001l-1.343-.504c.077-.207 1.95-5.057 6.697-5.057c1.325 0 2.378.608 3.046 1.757c1.186 2.037 1.047 5.562.243 9.147h11.49c1.527-4.485 4.714-6.6 10.04-6.6v1.435c-5.772 0-7.39 2.447-8.544 5.165h6.27l-.015 1.428l-6.222.007zm.944 7.085l.01-.001m-.01.001l.01-.001\\\"/><path d=\\\"m101.361 57.011l.01-.001c-1.702-2.51-2.242-4.652-1.53-7.091l-1.462.007c-.509 1.624-.305 4.07.95 6.17h-14.6c.888-1.78 1.711-3.949 2.313-6.17h-1.486c-.664 2.355-1.595 4.686-2.644 6.532l-.339.597l8.193 5.157l-4.612 3.04l.79 1.198l5.155-3.399l5.566 3.632l.764-1.214l-5.16-3.192s7.716-5.012 8.099-5.257c-.003-.003-.004-.006-.006-.01zm-9.279 4.334l-6.06-3.815l11.843.003z\\\"/><path d=\\\"M118.414 34.682c-.009-2.495-.786-13.038-2.214-15.941c-3.872 1.471-10.917 6.239-12.512 11.113c-7.642-1.14-16.257-1.006-23.804.3c-1.26-5.245-7.588-9.258-12.362-11.52c-2.014 3.398-2.906 11.277-2.68 16.866l-.026.018c.886 23.468 12.399 38.08 27.453 46.936c15.49-8.85 26.555-26.104 26.126-47.783l.02.01zm-12.888-4.525l.169.031l-.17-.03zm-.964-.166c.136.022.273.046.409.07zm11.443 6.384c.398 19.528-9.565 35.07-23.513 43.04C68.818 67.62 64.358 37.739 68.395 21.71c1.123 6.127 3.16 9.971 7.574 11.856c9.61-2.75 22.84-2.967 32.586-.28c4.061-2.953 5.636-7.463 6.496-11.404c1.075 4.586.95 14.492.954 14.494zm10.1 67.56\\\"/><path d=\\\"M126.104 103.935c-2.431-2.72-7.194-4.007-11.172-3.912c-2.823-3.36-19.19-20.596-19.19-20.596l-1.134 1.429l19.76 21.273l.857-.074c5.369-.46 8.42 2.452 9.229 3.355c.592.663.95 1.267 1.144 1.742h-10.86c-24.911-13-46.78-22.165-70.013-24.163c.05-3.233.626-6.893 1.73-10.97l-2.136-.58c-1.135 4.192-1.734 7.988-1.801 11.382c-2.42-.16-4.857-.244-7.315-.244c-2.085 0-3.983.194-5.714.53c-2.259-2.257-4.182-4.408-5.817-6.45c10.79-11.241 28.61-21.402 44.048-25.138l-.501-2.163c-16.625 4.01-34.823 14.923-44.963 25.467c-4.706-6.352-6.573-11.564-7.128-15.514c-.7-4.989.49-9.565 3.444-13.235c4.623-5.743 11.192-6.148 17.946-5.012c-.131 1.067.009 2.087.436 2.717c1.786 2.639 11.387 3.566 17.117 1.009c-4.229-5.926-12.795-8.82-15.168-7.66c-.786.384-1.38 1.09-1.786 1.912c-2.335-.418-4.654-.729-6.348-.716c-5.957.044-10.511 2.125-13.922 6.363c-3.347 4.157-4.7 9.32-3.912 14.93c.746 5.314 3.377 10.966 7.786 16.826c-.732.786-1.44 1.562-2.122 2.324C7.853 90.792-.003 103.687-.003 105.824v1.107h14.177l-.248-1.313c-.8-4.232.798-9.52 4.073-13.474c2.057-2.481 5.462-5.314 10.809-6.62c4.754 4.64 10.812 9.567 17.554 14.321h10.536v-1.107c0-1.249-.62-2.342-1.744-3.078c-1.665-1.088-4.234-1.238-6.594-.433c-2.25-2.506-3.512-5.853-3.784-10.011c22.865 2.024 44.736 11.258 69.412 24.15h13.578l.178-.89c.254-1.267-.437-2.965-1.846-4.541zM16.3 90.729c-3.354 4.048-5.132 9.395-4.724 13.985H2.643c1.795-3.883 8.943-15.11 19.505-26.45a80.408 80.408 0 0 0 4.858 5.448c-5.186 1.559-8.586 4.457-10.707 7.017z\\\"/>\"\n\t\t},\n\t\t\"tomcat-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#d1a41a\\\" d=\\\"M22.148 62.305a80.73 80.73 0 0 0 4.857 5.446c-5.186 1.56-8.586 4.458-10.706 7.016c-3.356 4.05-5.132 9.398-4.723 13.988h-8.93c1.79-3.887 8.94-15.114 19.503-26.45zM125.597 91.19H114.74C89.83 78.192 67.96 69.026 44.728 67.023c.049-3.232.624-6.893 1.731-10.971l-2.14-.576c-1.136 4.192-1.732 7.985-1.8 11.38a109.502 109.502 0 0 0-7.317-.241a30.1 30.1 0 0 0-5.712.526c-2.258-2.253-4.182-4.408-5.815-6.45C34.39 49.533 52.039 39.437 67.399 35.638c4.325 14.377 13.609 24.227 24.876 30.854a47.543 47.543 0 0 0 2.435-1.486l19.656 21.161l.86-.074c5.368-.462 8.419 2.45 9.226 3.356c.595.66.95 1.265 1.146 1.742z\\\"/><path fill=\\\"#ffdc76\\\" d=\\\"M116.008 20.41c.399 19.528-9.564 35.07-23.513 43.041C68.82 51.658 64.362 21.774 68.397 5.744c1.122 6.13 3.164 9.974 7.572 11.858c9.614-2.75 22.844-2.967 32.59-.28c4.06-2.953 5.634-7.464 6.495-11.405c1.072 4.585.95 14.494.954 14.494z\\\"/><path d=\\\"m60.067 49.601l-10.971-7.357l7.36-3.345zm-10.302.669l-8.161-4.146l4.284-2.542zm-10.837 5.22l-5.62-3.881l3.747-2.81zM93.38 72.081l6.156-2.81l-2.677-2.543zm3.347 5.082l7.763-2.007l-2.145-2.273zM92.85 23.914l2.676-9.232l-6.824.134zM74.252 31.54l-5.89.402l-.669-3.88zm-.94 5.219l-3.346.936l-.669-2.542zm37.466-3.88l4.413.669l.94-2.944zm-.94 5.485l3.346 1.204l.802-2.408z\\\"/><path d=\\\"M65.538 47.202h12.913v1.593H65.538zm0-3.827h12.913v1.594H65.538zm39.43 3.827h12.912v1.593h-12.912zm0-3.827h12.912v1.594h-12.912zm-4.551-9.451H79.374V32.49h6.548c.807-3.452.966-6.752-.006-8.425c-.416-.711-.99-1.044-1.808-1.044c-3.744 0-5.29 3.96-5.355 4.128l.001-.001l-1.343-.504c.077-.207 1.95-5.057 6.697-5.057c1.325 0 2.378.608 3.046 1.756c1.186 2.038 1.047 5.562.243 9.148h11.49c1.527-4.485 4.714-6.6 10.04-6.6v1.435c-5.772 0-7.39 2.447-8.544 5.165h6.27l-.015 1.427l-6.222.007zm.944 7.086l.01-.001m-.01.001l.01-.001\\\"/><path d=\\\"m101.361 41.01l.01-.001c-1.702-2.51-2.242-4.652-1.53-7.092l-1.462.008c-.509 1.624-.305 4.07.95 6.17h-14.6c.888-1.78 1.711-3.95 2.313-6.17h-1.486c-.664 2.355-1.595 4.686-2.644 6.532l-.339.597l8.193 5.157l-4.612 3.04l.79 1.198l5.155-3.4l5.566 3.633l.764-1.215l-5.16-3.192s7.716-5.012 8.099-5.256l-.006-.01zm-9.279 4.334l-6.06-3.816l11.843.003z\\\"/><path d=\\\"M118.414 18.68c-.009-2.494-.786-13.038-2.214-15.94c-3.872 1.47-10.917 6.238-12.512 11.113c-7.642-1.141-16.257-1.006-23.804.3c-1.26-5.245-7.588-9.259-12.362-11.52c-2.014 3.398-2.906 11.277-2.68 16.865l-.026.018c.886 23.469 12.399 38.08 27.453 46.937c15.49-8.85 26.555-26.105 26.126-47.783l.02.01zm-12.888-4.524l.169.031l-.17-.031zm-.964-.167c.136.022.273.047.409.07zm11.443 6.385c.398 19.527-9.565 35.07-23.513 43.04C68.818 51.618 64.358 21.736 68.395 5.707c1.123 6.128 3.16 9.972 7.574 11.857c9.61-2.75 22.84-2.968 32.586-.28c4.061-2.953 5.636-7.464 6.496-11.405c1.075 4.586.95 14.492.954 14.494zm10.1 67.56\\\"/><path d=\\\"M126.104 87.933c-2.431-2.72-7.194-4.007-11.172-3.912c-2.823-3.36-19.19-20.595-19.19-20.595l-1.134 1.428l19.76 21.273l.857-.073c5.369-.46 8.42 2.452 9.229 3.355c.592.663.95 1.267 1.144 1.741h-10.86c-24.911-12.999-46.78-22.165-70.013-24.162c.05-3.233.626-6.893 1.73-10.971l-2.136-.58c-1.135 4.193-1.734 7.989-1.801 11.382c-2.42-.16-4.857-.243-7.315-.243c-2.085 0-3.983.193-5.714.53c-2.259-2.257-4.182-4.408-5.817-6.45c10.79-11.242 28.61-21.402 44.048-25.138l-.502-2.163C50.594 37.364 32.396 48.278 22.256 58.82c-4.706-6.352-6.573-11.563-7.128-15.513c-.7-4.99.49-9.566 3.444-13.235c4.623-5.744 11.192-6.148 17.946-5.012c-.131 1.067.009 2.086.436 2.717c1.786 2.638 11.387 3.565 17.117 1.008c-4.229-5.926-12.795-8.82-15.168-7.66c-.786.384-1.38 1.09-1.786 1.912c-2.335-.417-4.654-.728-6.348-.716c-5.957.044-10.511 2.125-13.922 6.363c-3.347 4.158-4.7 9.32-3.912 14.931c.746 5.314 3.377 10.965 7.786 16.826c-.732.785-1.44 1.561-2.122 2.323C7.853 74.79-.003 87.685-.003 89.822v1.107h14.177l-.248-1.312c-.8-4.232.798-9.521 4.073-13.474c2.057-2.482 5.462-5.314 10.809-6.62c4.754 4.64 10.812 9.567 17.554 14.32h10.536v-1.106c0-1.25-.62-2.343-1.744-3.079c-1.665-1.088-4.234-1.238-6.594-.433c-2.25-2.506-3.512-5.853-3.784-10.01c22.865 2.024 44.736 11.258 69.412 24.15h13.578l.178-.89c.254-1.268-.437-2.965-1.846-4.541zM16.3 74.728c-3.354 4.048-5.132 9.394-4.724 13.985H2.643c1.795-3.884 8.943-15.11 19.505-26.45a80.408 80.408 0 0 0 4.858 5.448c-5.186 1.558-8.586 4.457-10.707 7.017zm-4.178 24.09v2.695h6.783v19.204h2.973v-19.204h6.783v-2.695zm97.155 1.64l-1.046 3.493l-2.342 1.03v1.571h2.3v9.31c0 1.674.4 2.97 1.231 3.847s2.073 1.301 3.669 1.301c.425 0 .897-.045 1.413-.134h.005c.528-.08.935-.184 1.235-.33l.137-.065v-2.334l-.31.09c-.218.064-.527.13-.918.198h-.002c-.388.056-.79.085-1.208.085c-.75 0-1.297-.23-1.71-.695c-.409-.462-.627-1.137-.627-2.066v-9.207h4.658v-2.373h-4.658v-3.72zM37.78 103.89c-2.375 0-4.274.76-5.63 2.278c-1.356 1.51-2.024 3.613-2.024 6.27c0 1.718.309 3.23.933 4.528c.623 1.297 1.516 2.304 2.67 3.002c1.152.698 2.475 1.046 3.948 1.046c2.375 0 4.278-.76 5.644-2.277c1.366-1.528 2.04-3.641 2.04-6.299c0-2.59-.68-4.68-2.054-6.225c-1.363-1.545-3.227-2.323-5.527-2.323m18.823 0c-1.069 0-2.048.229-2.924.687h-.001c-.74.391-1.313.945-1.774 1.6l-.358-1.994h-2.421v16.539h2.915v-8.665c0-2.052.355-3.496 1.003-4.334l.001-.001c.662-.851 1.689-1.283 3.163-1.283c1.117 0 1.887.302 2.38.882h.001c.495.575.762 1.47.762 2.714v10.686h2.914v-9.206c0-1.775.359-3.053 1.029-3.86c.67-.805 1.7-1.216 3.168-1.216c1.107 0 1.872.3 2.365.882h.001c.494.575.762 1.469.762 2.714v10.686h2.915v-10.716c0-2.085-.46-3.643-1.43-4.634v-.001c-.956-.996-2.39-1.48-4.247-1.48c-1.196 0-2.273.253-3.219.761a5.384 5.384 0 0 0-2.01 1.873c-.857-1.728-2.549-2.634-4.995-2.634m27.232 0c-2.442 0-4.371.759-5.719 2.278v.001c-1.338 1.52-1.994 3.662-1.994 6.386c0 2.656.647 4.75 1.965 6.24h.001c1.328 1.48 3.212 2.219 5.585 2.219c1.659 0 3.05-.282 4.17-.862l.13-.068v-2.66l-.334.137c-1.381.566-2.72.846-4.024.846c-1.508 0-2.598-.493-3.353-1.487c-.747-.997-1.137-2.455-1.137-4.394c0-2.049.404-3.553 1.172-4.531s1.899-1.468 3.478-1.468c.465 0 1.01.07 1.631.213h.002l.001.001a10.69 10.69 0 0 1 1.72.516l.232.092l.904-2.5l-.19-.097c-.469-.24-1.09-.438-1.875-.607a11.216 11.216 0 0 0-2.365-.255m13.754.03c-.968 0-1.936.124-2.902.373a11.7 11.7 0 0 0-2.648 1.033l-.189.103l.924 2.3l.233-.113c1.667-.81 3.147-1.207 4.436-1.207c1.15 0 1.934.289 2.412.828h.001l.001.003c.49.533.757 1.395.757 2.62v.761l-2.49.081c-2.618.08-4.603.543-5.959 1.431c-1.355.888-2.054 2.223-2.054 3.908c0 1.562.474 2.809 1.427 3.68c.961.867 2.28 1.293 3.913 1.293c1.215 0 2.24-.178 3.072-.548c.77-.347 1.517-1 2.258-1.875l.45 2.13h2.24v-11.198c0-1.915-.477-3.355-1.47-4.264c-.979-.907-2.462-1.34-4.412-1.34zm-59.884 2.52c1.558 0 2.682.498 3.456 1.502h.001l.001.002c.783.995 1.193 2.486 1.193 4.494c0 2.028-.41 3.539-1.195 4.554c-.774 1.005-1.889 1.503-3.427 1.503c-1.537 0-2.651-.502-3.426-1.517c-.775-1.015-1.18-2.521-1.18-4.54c0-2.039.401-3.542 1.164-4.525c.764-.985 1.874-1.474 3.413-1.474zm62.851 6.396v1.198c0 1.447-.412 2.531-1.229 3.311v.001c-.81.781-1.923 1.178-3.393 1.178c-.917 0-1.6-.217-2.082-.63h-.001c-.47-.41-.707-.994-.707-1.824c0-1.062.376-1.784 1.16-2.27c.795-.497 2.158-.805 4.07-.872h.002z\\\"/>\"\n\t\t},\n\t\t\"tortoisegit\": {\n\t\t\t\"body\": \"<path fill=\\\"#4b8eb4\\\" d=\\\"M30.87 44.532c4.903-5.005 11.512-8.007 21.519-9.108c9.508.1 13.911-.4 24.82 5.904c2.903 2.202 9.41 4.804 7.509 9.31c-3.003 5.904-3.104 5.504-4.606 10.906c-1.501 5.406-.3 4.903-2.1 7.406c-3.204 3.402-.9 3.203-5.006 5.005c-6.304-2.602-5.104-2.101-8.605-2.602c-6.004-.5-6.004-.702-13.512 2.901c-5.005.801-1.101 1.202-6.205.6c-12.225-6.006-9.024-7.91-15.233-9.411c-6.205-1.501-7.405-.198-8.007-3.002c.202-5.604 5.207-13.511 9.409-17.915z\\\"/><path fill=\\\"#424242\\\" fill-opacity=\\\".807\\\" d=\\\"M38.88 80.26c-1.553 2.054-1.4 2.321-1 5.104c1.101 2.608.706 3.654 5.203 4.202c5.198-1.578 5.255-4.705 5.303-7.006c-5.77-.2-8.51-2.783-9.508-2.302z\\\"/><path fill=\\\"#fff\\\" d=\\\"M106.814 33.434c-.353.009-.776.162-1.289.49c-2.808 2.73-2.82 2.835-4.304 11.709l-.002.002c-1.636 4.613-4.874 8.258-11.108 7.607c-.034.024-.065.05-.1.074c1.522-1.49 2.163-3.282-1.298-4.681c-4.407-.9-6.273 4.137-8.606 11.709c-1.386 6.679-4.083 14.802-8.806 12.012c-8.314-2.798-4.941-1.903-8.907-2.102c-7.424.5-13.444 6.23-23.119 1c-7.168-5.252-9.578-6.579-18.132-8.707c-.026-.007-.064-.01-.092-.016l.113-.787l-15.111-5.303s-8.807-3.501-3.604 2.202c0 0 7.207 5.903 15.813 11.007l-.498-1.35a22.26 22.26 0 0 0 2.086 1.98c-.211.017-.424.04-.643.07l.006.002c-.59.589-4.063 3.718-5.957 7.207c-1.922 3.542-2.345 7.222-.1 12.109c1.76 4.621 6.793 5.15 12.713 6.906c2.517-.42 4.356 1.15 6.606-1.4c1.833-2.034 3.178-1.425 1.5-5.205c-3.524-5.623-4.31-9.26-1.12-12.412c-.068-.177-.142-.336-.214-.5c.68.563 1.374 1.05 2.134 1.4c4.922 1.22 8.051 3.802 13.71 4.004a17 17 0 0 1 .92-.4c-2.556 2.624-2.885 6.54-2.335 9.316h.002c.36 3.744 5.3 5.739 13.01 7.006c5.818-.396 10.812 2.292 14.613-3.402c.686-4.244-.291-10.507-3.505-13.112c-.047-.04-.1-.08-.149-.119c.522.129 1.043.266 1.56.41c3.35.073 5.402-1.667 7.868-6.084c-.994 2.315-2.021 4.534-3.672 4.979l.103.004c-.62 5.03 1.558 12.587 7.405 12.609c.314.032.618.058.916.08c3.241.795 5.103.403 6.99-.687c1.638-.607 2.759-1.523 3.662-2.561c.159-.116.295-.219.461-.338a4.788 4.788 0 0 0 1.12-1.805c.02-.03.04-.062.062-.093c.05-.187.094-.377.13-.565c.728-3.2-.945-7.593-3.95-10.443c-1.65-2-3.548-3.814-5.19-5.307c-.71-.632-1.172-.998-1.62-1.217c7.221 1.46 9.483-1.698 11.632-3.378c2.22-2.084 2.967-5.373 8.007-5.807c7.77-.118 10.056-.75 11.008-3.504c4.554-1.555 5.905 1.038 9.307-4.703c.902-1.347.38-2.69-3.002-5.703c-1.338-1.58-5.44-1.084-6.104-2.203c-12.487 7.918-6.754-12.107-10.92-12M84.84 65.008c-.294 1.57-.652 3.195-1.233 4.846c.665.218 1.292.4 1.893.556c-.332-.025-.712-.04-1.195-.062c-.617.222-1.145.696-1.618 1.328c.24-.509.467-.974.721-1.526c.573-1.768 1.022-3.494 1.432-5.142\\\"/><path fill=\\\"#0079bb\\\" d=\\\"M119.75 29.32a5.405 8.605 0 0 0-3.62 2.24a5.405 8.605 0 0 0-2.685-1.138a5.405 8.605 0 0 0-5.404 8.605a5.405 8.605 0 0 0 5.404 8.606a5.405 8.605 0 0 0 3.631-2.233a5.405 8.605 0 0 0 2.674 1.131a5.405 8.605 0 0 0 5.406-8.605a5.405 8.605 0 0 0-5.406-8.606\\\"/><path d=\\\"M119.75 28.521c-1.457 0-2.755.746-3.768 1.909l-.002-.002c-.76-.51-1.616-.807-2.535-.807c-1.837 0-3.424 1.184-4.5 2.897a9.615 9.615 0 0 0-.517.943a2.093 2.093 0 0 0-.659-.592a1.935 1.935 0 0 0-.974-.234a2.141 2.141 0 0 0-.342.033c-.452.08-.89.28-1.36.58l-.068.045l-.058.057c-1.408 1.368-2.254 2.239-2.842 3.85c-.58 1.587-.949 3.869-1.67 8.183c-.784 2.205-1.932 4.123-3.56 5.4c-1.346 1.055-3.03 1.7-5.23 1.725c.183-.35.316-.722.36-1.131c.073-.673-.158-1.404-.674-1.99c-.515-.586-1.276-1.065-2.337-1.494l-.069-.028l-.072-.015a5.662 5.662 0 0 0-.926-.114a5.072 5.072 0 0 0-.887.045a4.594 4.594 0 0 0-1.296.399a4.522 4.522 0 0 0-.274-.9c-.461-1.085-1.277-1.98-2.207-2.77c-1.86-1.58-4.248-2.8-5.59-3.819l-.039-.03l-.043-.026c-11.006-6.36-15.737-5.913-25.215-6.012h-.046l-.05.006c-9.88 1.087-16.593 4.08-21.599 9.004l-.08-.026l-.348.366c-3.934 4.123-8.51 11.027-9.45 16.802l-14.505-5.09c-.084-.034-2.2-.896-3.935-1.078a4.963 4.963 0 0 0-.653-.033a2.635 2.635 0 0 0-.644.094c-.432.12-.945.516-1.055 1.068c-.11.553.079 1.038.383 1.57c.304.533.769 1.136 1.443 1.876l.04.043l.044.037S9.06 65.069 17.598 70.17l.172.465a42.998 42.998 0 0 0-1.637 1.693c-1.204 1.32-2.583 3.012-3.58 4.848c-2.004 3.694-2.44 7.748-.135 12.79c.969 2.529 2.903 3.995 5.225 4.968c2.326.974 5.076 1.54 7.998 2.408l.177.053l.182-.032c.215-.036.429-.05.64-.056c.912.124 1.743.177 2.495.158c.041.001.079.007.12.008c.432.008.888-.039 1.354-.166c.758-.153 1.406-.411 1.932-.8c.957-.675 1.64-1.4 2.084-2.155c.217-.198.419-.415.598-.704c.28-.45.376-1.052.275-1.683c-.099-.618-.35-1.32-.766-2.264c-.01-.026-.018-.052-.029-.078c-.718-1.719-1.838-3.304-2.41-4.607c-.314-.826-.518-1.583-.6-2.274c-.198-1.672.212-2.979 1.446-4.316a9.02 9.02 0 0 0 1.3.76l.069.03l.074.018c.97.24 1.868.551 2.748.881l-.018.008l.545.389c-.437.651-.9 1.275-1 1.902c-.137.87.032 1.684.23 3.064l.015.102l.04.096c.523 1.237.677 2.232 1.475 3.103c.799.872 2.057 1.3 4.37 1.582l.167.02l.162-.049c1.094-.332 1.994-.744 2.733-1.21c.01.82.091 1.61.23 2.335l-.004-.004c.001.007.005.013.006.02c.003.018 0 .04.004.058l.094.475l.045.013c.418 1.918 1.88 3.422 4.039 4.504c2.028 1.017 4.68 1.76 7.836 2.354c.067.032.13.071.201.098c.603.225 1.187.237 2.055.296l.047.004l.046-.002c1.316-.065 2.676-.005 4.032.05c1.18.094 2.345.187 3.494.146a9.634 9.634 0 0 0 2.752-.48a8.64 8.64 0 0 0 1.422-.487l.056-.027l.053-.034a6.672 6.672 0 0 0 1.395-1.218a10.233 10.233 0 0 0 1.507-1.797l.098-.147l.027-.172c.363-2.242.287-4.945-.298-7.476c-.396-1.711-1.023-3.35-1.95-4.69c.996-.053 1.917-.273 2.77-.681c-.082 2.386.368 5.055 1.447 7.326c1.277 2.686 3.57 4.855 6.824 4.879c.277.028.548.052.813.072c2.495.6 4.316.547 5.928-.027a9.796 9.796 0 0 0 1.566-.735a9.645 9.645 0 0 0 1.275-.591a9.685 9.685 0 0 0 2.563-2.092c.13-.096.243-.182.379-.28l.053-.037l.046-.047a5.573 5.573 0 0 0 1.282-2.021l.072-.107l.033-.125c.046-.167.083-.334.117-.5c.339-1.398.257-2.968-.138-4.512c-.623-2.433-2.022-4.877-3.975-6.742c-1.492-1.807-3.16-3.442-4.666-4.832c1.812.084 3.28-.16 4.498-.6c2.386-.864 3.76-2.424 4.887-3.305l.03-.023l.024-.024c1.232-1.154 1.976-2.51 2.977-3.55s2.201-1.839 4.553-2.041c3.867-.06 6.413-.232 8.23-.797c1.62-.504 2.591-1.506 3.182-2.79c1.982-.623 3.287-.419 4.767-.712a4.982 4.982 0 0 0 2.344-1.166c.767-.668 1.526-1.65 2.393-3.108c.553-.834.684-1.956.152-3.02c-.524-1.048-1.569-2.157-3.234-3.648c-.431-.5-.98-.805-1.567-1.021a7.361 7.361 0 0 0 1.389-1.647c1.076-1.712 1.707-4 1.707-6.511c0-2.513-.631-4.797-1.707-6.51s-2.663-2.895-4.5-2.895m0 1.6c1.148 0 2.264.745 3.145 2.147c.88 1.402 1.46 3.417 1.46 5.658c0 2.24-.58 4.258-1.46 5.66c-.881 1.402-1.997 2.144-3.145 2.144c-.554 0-1.098-.175-1.613-.511c.958-1.673 1.515-3.832 1.515-6.192c0-2.512-.631-4.797-1.707-6.51a7.893 7.893 0 0 0-.765-1.027c.769-.897 1.658-1.369 2.57-1.369m-6.305 1.102c1.148 0 2.264.744 3.145 2.146c.88 1.402 1.46 3.418 1.46 5.658s-.58 4.259-1.46 5.66c-.88 1.402-1.997 2.145-3.145 2.145s-2.262-.743-3.142-2.145c-.88-1.401-1.461-3.42-1.461-5.66s.58-4.256 1.46-5.658c.881-1.402 1.995-2.146 3.143-2.146m-6.545 3.01a.211.211 0 0 1 .084.03c.105.06.359.404.534 1.094c.033.134.062.284.091.436c-.24 1.01-.369 2.1-.369 3.234c0 2.513.63 4.8 1.705 6.512c1.076 1.713 2.663 2.895 4.5 2.895c1.4 0 2.653-.687 3.647-1.77l.18-.103c.746.488 1.581.771 2.478.771c.334 0 .66-.04.977-.115c1.13.212 2.152.526 2.5.937l.035.043l.043.037c1.662 1.482 2.577 2.543 2.924 3.237c.347.693.288.911-.055 1.424l-.012.017l-.011.02c-.826 1.392-1.507 2.237-2.086 2.742c-.58.504-1.04.691-1.602.803c-.947.187-2.263.051-4.105.498l.004-.135c-5.399-.192-7.523-2.073-9.338-5.295l-1.395.785c1.763 3.13 4.284 5.383 8.94 5.97c-.397.86-.96 1.327-2.221 1.72c-1.496.465-3.972.667-7.836.726l-.027.002l-.03.002c-2.689.232-4.38 1.294-5.568 2.527c-1.184 1.23-1.923 2.555-2.908 3.483c-1.3 1.026-2.435 2.312-4.4 3.023c-1.608.582-3.923.71-7.292-.088c-.005 0-.01 0-.015-.002a30.424 30.424 0 0 1-1.686-.45c.328-1.062.572-2.097.791-3.114c.47-1.841.877-3.59 1.319-5.166c.768-2.744 1.664-4.958 3.162-6.438c.2-.163.394-.337.586-.513c3.07.225 5.577-.508 7.439-1.969c1.879-1.473 3.112-3.586 3.963-5.879l.111-.082l.055-.316c.742-4.438 1.127-6.675 1.617-8.018c.48-1.312 1.051-1.88 2.383-3.176c.315-.192.574-.301.723-.328a.563.563 0 0 1 .166-.012zm15.059 1.04a2.103 3.402 0 0 0-2.104 3.403a2.103 3.402 0 0 0 2.104 3.4a2.103 3.402 0 0 0 2.102-3.4a2.103 3.402 0 0 0-2.102-3.403m-69.51.952c9.481.095 13.575-.435 24.354 5.793l.006.003c1.558 1.166 3.817 2.33 5.437 3.708c.822.698 1.457 1.438 1.772 2.177c.185.435.26.872.224 1.348a8.98 8.98 0 0 0-1.289 1.635c-1.398 2.236-2.442 5.425-3.611 9.22l-.012.036l-.006.037c-.685 3.301-1.713 6.957-3.064 9.322c-.676 1.182-1.43 2.013-2.147 2.375c-.717.362-1.4.381-2.406-.213l-.072-.043l-.08-.027c-4.15-1.397-5.328-1.866-6.168-2.05c-.42-.09-.75-.086-1.123-.073c-.373.012-.863.029-1.83-.02l-.047-.002l-.047.004c-3.903.263-7.306 1.851-10.842 2.668c-3.529.815-7.159.946-11.812-1.56c-2.224-1.628-3.997-2.861-5.665-3.89c-.687-.558-1.469-1.046-2.6-1.468c-2.522-1.272-5.209-2.176-9.122-3.182c.423-5.103 5.055-12.599 9.008-16.795l.134-.136c4.759-4.858 11.137-7.777 21.008-8.867m62.885.398a2.303 3.552 0 0 0-2.303 3.553a2.303 3.552 0 0 0 2.303 3.553a2.303 3.552 0 0 0 2.303-3.553a2.303 3.552 0 0 0-2.303-3.553m-67.82 8.113c-2.974 0-5.315.846-7.022 2.537c-1.699 1.684-2.549 3.984-2.549 6.9c0 1.594.23 2.986.688 4.179c.457 1.184 1.106 2.174 1.947 2.966c.834.785 1.843 1.372 3.027 1.764c1.185.392 2.489.588 3.91.588c1.103 0 2.242-.167 3.419-.502a23.57 23.57 0 0 0 3.271-1.201v-7.828h-7.29v2.132h4.888v4.473a10.85 10.85 0 0 1-2.059.6a11.91 11.91 0 0 1-2.34.232c-2.14 0-3.832-.652-5.074-1.959c-1.242-1.316-1.861-3.156-1.861-5.517c0-2.24.593-4.014 1.777-5.32c1.193-1.316 2.81-1.973 4.852-1.973c.906 0 1.716.086 2.427.257c.72.164 1.359.372 1.922.625c.466.213.94.479 1.422.797c.482.32.85.576 1.104.772h.22v-2.88c-1.25-.596-2.419-1.018-3.505-1.263a13.848 13.848 0 0 0-3.174-.379m10.646.205v2.391h2.598v-2.39zm7.006.75v3.934h-1.557v1.938h1.557v7.279c0 1.658.363 2.863 1.09 3.615c.727.752 1.788 1.127 3.185 1.127c.4 0 .855-.036 1.362-.11a12.47 12.47 0 0 0 1.42-.28h.002v-2.071h-.123c-.18.074-.475.167-.883.281c-.409.107-.8.16-1.176.16c-.646 0-1.129-.073-1.447-.22a1.692 1.692 0 0 1-.735-.723a2.758 2.758 0 0 1-.343-1.129a22.512 22.512 0 0 1-.05-1.691v-6.239h4.757v-1.937h-4.756v-3.934zm22.383 3.657a4.14 4.14 0 0 1 .945.08c.84.354 1.395.72 1.654 1.015c.273.31.313.506.286.76c-.042.382-.421.961-.995 1.541c-2.748 2.018-3.869 4.712-4.527 7.572c-.338 1.468-.572 2.988-.863 4.541c-.403 1.618-.84 3.298-1.393 5.008c-.235.51-.445.935-.668 1.406a9.9 9.9 0 0 0-.468.713c-.637 1.062-1.156 2.303-1.67 3.506l-.079.182c-.77 1.382-1.488 2.49-2.195 3.322c-1.504 1.772-2.853 2.396-4.924 2.36c-.401-.111-.807-.204-1.21-.305c-2.088-1.623-5.71-2.292-9.524-2.479c-3.985-.194-8.124.213-10.83 1.252l-.05.018l-.048.027a9.052 9.052 0 0 0-2.117 1.598c-.147.063-.302.117-.447.183c-5.307-.217-8.344-2.648-13.317-3.918c-.625-.288-1.22-.705-1.822-1.197a7.98 7.98 0 0 0-1.797-2.51c-1.064-1.012-2.583-2.032-5.023-3.462l-.063-.038l-.066-.023c-1.569-.576-3.61-1.195-6.197-1.045c-1.883-1.628-2.904-2.92-3.254-3.767c-.38-.917-.214-1.236.168-1.598c.382-.363 1.168-.66 1.968-.78c.801-.12 1.64-.063 1.914.01l.006.002l.006.002c8.513 2.118 10.702 3.337 17.854 8.577l.043.03l.049.028c5.005 2.706 9.216 2.59 12.964 1.725c3.747-.866 7.064-2.393 10.584-2.631c.932.042 1.52.031 1.873.02c.37-.013.457-.02.729.038c.54.118 1.844.604 5.94 1.983c-.031-.017-.062-.03-.092-.049l.152.068l-.06-.02c1.328.75 2.715.79 3.85.218c1.16-.585 2.053-1.678 2.815-3.012c1.515-2.65 2.522-6.36 3.223-9.719c1.164-3.776 2.218-6.893 3.438-8.844c.61-.975 1.247-1.644 1.916-2.017a2.875 2.875 0 0 1 1.322-.371m-29.242.271v13.69h2.304v-13.69ZM1.895 56.188a2.21 2.21 0 0 1 .322.011c1.333.14 3.539.987 3.539.987l.015.005l12.958 4.547c-.976.152-2.01.461-2.778 1.19c-.783.742-1.1 2.029-.545 3.373c.105.252.241.513.399.78c-7.053-4.486-12.72-8.96-12.793-9.019c-.6-.662-1.002-1.192-1.207-1.55c-.137-.24-.119-.244-.133-.303c.065-.008.135-.018.223-.021m19.48 14.882c1.717.056 3.125.47 4.346.916c2.342 1.378 3.78 2.355 4.666 3.198c.798.759 1.152 1.463 1.531 2.367c-1.37 1.59-2.051 3.39-1.814 5.38a8.9 8.9 0 0 0 .054.39c-1.33-.183-2.622-.34-3.838-.354c-1.56-.02-3.025.176-4.38.78c-2.568 1.141-4.497 3.742-5.752 8.595c-1.021-.726-1.783-1.649-2.282-2.96l-.01-.025l-.011-.023c-2.165-4.712-1.759-8.012.074-11.393l.002-.002c.897-1.65 2.201-3.267 3.353-4.53c1.048-1.149 1.82-1.858 2.237-2.263a12.582 12.582 0 0 1 1.824-.076m63.13.102c.385.018.697.033.975.055c.388.098.768.188 1.133.263c.323.174.716.48 1.36 1.055c1.223 1.112 2.58 2.404 3.861 3.8c-2.247.902-5.1 2.869-7.266 5.546a15.15 15.15 0 0 0-.562.746l-.041.023l.006.028c-1.942 2.752-2.986 6.23-1.615 9.814c-1.53-.602-2.65-1.908-3.456-3.604c-1.075-2.263-1.434-5.147-1.2-7.462a5.355 5.355 0 0 0 1.925-1.846c.595-.94 1.081-2.039 1.553-3.137c.683-1.225 1.406-2.69 2.176-4.316c.382-.485.771-.806 1.152-.965zm8.425 6.555c.17.155.337.318.5.484c.416.524.818 1.056 1.183 1.598c1.778 2.638 2.772 5.375 2.178 7.97a4.95 4.95 0 0 1-.068.217c-.242.361-.482.717-.73 1.059c-1.563-5.447-4.961-7.999-6.634-9.424c1.325-.931 2.615-1.59 3.57-1.904zm-32.518 2.402c.477.004.954.018 1.428.04c3.814.187 7.435 1.084 8.822 2.302l.012.01l.012.01c.677.548 1.262 1.319 1.748 2.228c-2.975.232-5.885.918-8.508 2.617c-2.841 1.84-5.303 4.845-7.164 9.541l-.016.041c-2.248-.51-4.138-1.11-5.566-1.826c-2.113-1.06-3.16-2.253-3.309-3.791l-.047-.47c-.243-1.504-.244-3.304.281-4.993c.564-1.812 1.667-3.45 3.614-4.533c2.026-.766 5.354-1.203 8.693-1.176m27.65.498c1.865 1.65 5.256 3.85 6.618 9.752c-1.07.788-1.983 1.463-2.826 1.959l-.122.043c-.739-3.675-2.347-6.2-3.798-7.799a12.773 12.773 0 0 0-1.979-1.781l-.037-.026a16.906 16.906 0 0 1 2.144-2.148m-48.7.398c.028.015.029.001.337.114c.434.158 1.061.446 1.848.76c1.404.56 3.429 1.142 5.96 1.347a10.079 10.079 0 0 0-.93 2.115a11.555 11.555 0 0 0-.374 1.612c-.657.658-1.657 1.267-3.213 1.761c-1.991-.263-2.804-.614-3.191-1.037c-.388-.423-.606-1.264-1.135-2.54c-.188-1.304-.299-2.037-.227-2.493c.064-.404.4-.912.924-1.639zm45.603 3.037l.056.04a11.15 11.15 0 0 1 1.727 1.556c1.297 1.429 2.761 3.702 3.432 7.125c-1.235.227-2.74.306-4.598.186c-.454-.108-.93-.23-1.451-.389c-1.491-3.1-.815-6.005.834-8.517Zm-58.639.526c.272.003.555.02.842.037c1.656 3.092 3.065 5.943 2.275 11.197c-.184.014-.38.02-.584.024c-.507-.034-1.088-.088-1.732-.096c-.115-.014-.223-.022-.342-.04c-.044-.005-.093-.016-.139-.022c.59-3.405.462-5.756-.052-7.561c-.41-1.44-1.05-2.51-1.668-3.479c.449-.042.91-.066 1.4-.06m2.748.225c.498.06.993.12 1.516.193c.534 1.612 1.442 3.347 2.658 5.297l.01.021c.35.867.498 1.657.324 2.403a2.924 2.924 0 0 1-.162.48c-.366.295-.905.724-1.541 1.43l-.002.004l-.004.002a5.04 5.04 0 0 1-.746.707c.545-4.678-.645-7.778-2.053-10.537m-5.842.158c.723 1.132 1.409 2.148 1.82 3.595c.435 1.526.576 3.598.02 6.823c-2.053-.468-4.526-1.298-7.336-2.51c1.18-4.631 2.82-6.764 4.856-7.67a6.11 6.11 0 0 1 .64-.238m49.793 1.326l-.023.156c-.245-.036-.274-.118-.266-.11c.008.01.06.07.12.165c.118.189.278.512.433.916c.31.807.611 1.945.73 3.16c.176 1.784-.026 3.664-1.027 5.12c-.462-4.64-2.43-6.865-4.377-8.714c1.408-.391 2.884-.599 4.41-.693m-6.11 1.281c2.305 2.116 4.367 3.813 4.564 9.461c-.16.091-.323.171-.487.244c-.64.195-1.362.299-2.13.36c-.76-4.383-2.739-7.122-4.76-8.467c.229-.172.458-.344.693-.496c.682-.442 1.39-.8 2.12-1.102m-4.09 2.697c1.624.918 3.64 3.212 4.425 7.436c-1.075.008-2.216-.029-3.396-.055c-1.158-.081-2.377-.139-3.649-.066a80.275 80.275 0 0 1-1.314-.23c-.125-.105-.262-.251-.383-.364c1.245-2.966 2.7-5.142 4.316-6.72z\\\"/>\"\n\t\t},\n\t\t\"towergit\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconTowergit0\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit1\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit2\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit3\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit4\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit5\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit6\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit7\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit8\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergit9\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergita\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergitb\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergitc\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergitd\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergite\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergitf\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><clipPath id=\\\"deviconTowergitg\\\"><use href=\\\"#deviconTowergit1q\\\"/></clipPath><mask id=\\\"deviconTowergith\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconTowergiti\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".2\\\"/></g></mask><mask id=\\\"deviconTowergitj\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".6\\\"/></g></mask><mask id=\\\"deviconTowergitk\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".4\\\"/></g></mask><mask id=\\\"deviconTowergitl\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".4\\\"/></g></mask><mask id=\\\"deviconTowergitm\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".4\\\"/></g></mask><mask id=\\\"deviconTowergitn\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".302\\\"/></g></mask><mask id=\\\"deviconTowergito\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".42\\\"/></g></mask><mask id=\\\"deviconTowergitp\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".2\\\"/></g></mask><mask id=\\\"deviconTowergitq\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".4\\\"/></g></mask><mask id=\\\"deviconTowergitr\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".2\\\"/></g></mask><mask id=\\\"deviconTowergits\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".4\\\"/></g></mask><mask id=\\\"deviconTowergitt\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".4\\\"/></g></mask><mask id=\\\"deviconTowergitu\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".4\\\"/></g></mask><mask id=\\\"deviconTowergitv\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".349\\\"/></g></mask><mask id=\\\"deviconTowergitw\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".4\\\"/></g></mask><mask id=\\\"deviconTowergitx\\\"><g filter=\\\"url(#deviconTowergit1p)\\\"><use href=\\\"#deviconTowergit1q\\\" fill-opacity=\\\".302\\\"/></g></mask><g id=\\\"deviconTowergity\\\" clip-path=\\\"url(#deviconTowergitc)\\\"><path fill=\\\"#b47d4f\\\" d=\\\"M37.71 20.625H90.5l-.2-.773H37.888zm0 0\\\"/></g><g id=\\\"deviconTowergitz\\\" clip-path=\\\"url(#deviconTowergit8)\\\"><path fill=\\\"#ff0\\\" d=\\\"m84.824 63.125l-1.523-6.176a.364.364 0 0 0-.352-.273h12.739c.335 0 .624.222.699.55l1.449 5.9zm0 0\\\"/></g><g id=\\\"deviconTowergit10\\\" clip-path=\\\"url(#deviconTowergit9)\\\"><path fill=\\\"url(#deviconTowergit1f)\\\" d=\\\"m97.836 63.125l-1.46-5.898a.718.718 0 0 0-.7-.55h-63.2a.712.712 0 0 0-.703.55l-1.449 5.9a.348.348 0 0 0 .05.287L41.461 80.3c.125.187.34.3.562.3h44.14a.681.681 0 0 0 .564-.3l11.085-16.887c.024-.09.05-.187.024-.29zm0 0\\\"/></g><g id=\\\"deviconTowergit11\\\" clip-path=\\\"url(#deviconTowergit7)\\\"><path fill=\\\"#fff\\\" d=\\\"M77.96 43.813h5.653v-5.649zm0 0\\\"/></g><g id=\\\"deviconTowergit12\\\" clip-path=\\\"url(#deviconTowergite)\\\"><path fill=\\\"#ff0\\\" d=\\\"M30.29 63.273h67.585l-.164-.636H30.438zm0 0\\\"/></g><g id=\\\"deviconTowergit13\\\" clip-path=\\\"url(#deviconTowergit1)\\\"><path fill=\\\"#002d4f\\\" d=\\\"M45.426 80.602h37.312v2.16H45.426zm0 0\\\"/></g><g id=\\\"deviconTowergit14\\\" clip-path=\\\"url(#deviconTowergit0)\\\"><path fill=\\\"#004972\\\" d=\\\"M56.574 30.04h.352v13.773h-.352zm0 0\\\"/></g><g id=\\\"deviconTowergit15\\\" clip-path=\\\"url(#deviconTowergitf)\\\"><path fill=\\\"#002d4f\\\" d=\\\"m93.074 56.676l-.324-1.824H35.437l-.324 1.824zm0 0\\\"/></g><g id=\\\"deviconTowergit16\\\" clip-path=\\\"url(#deviconTowergit5)\\\"><path fill=\\\"#cd7f1f\\\" d=\\\"m43.512 63.074l1.527-6.176a.36.36 0 0 1 .348-.273H32.648a.712.712 0 0 0-.699.55l-1.45 5.9zm0 0\\\"/></g><g id=\\\"deviconTowergit17\\\" clip-path=\\\"url(#deviconTowergit4)\\\"><path fill=\\\"#004972\\\" d=\\\"M44.574 29.512h39.028v1.562H44.574zm0 0\\\"/></g><g id=\\\"deviconTowergit18\\\" clip-path=\\\"url(#deviconTowergitg)\\\"><path fill=\\\"url(#deviconTowergit1g)\\\" d=\\\"M44.574 29.512h39.04v15.601h-39.04zm0 0\\\"/></g><g id=\\\"deviconTowergit19\\\" clip-path=\\\"url(#deviconTowergit3)\\\"><path fill=\\\"#ffe700\\\" d=\\\"m73.71 80.262l11.165-16.95h12.988a.647.647 0 0 1-.05.137L86.727 80.336a.681.681 0 0 1-.563.3H73.086a.76.76 0 0 0 .625-.374zm0 0\\\"/></g><g id=\\\"deviconTowergit1a\\\" clip-path=\\\"url(#deviconTowergitd)\\\"><path fill=\\\"#004972\\\" d=\\\"M47.688 107.54h32.488v.522h-32.49zm0 0\\\"/></g><g id=\\\"deviconTowergit1b\\\" clip-path=\\\"url(#deviconTowergita)\\\"><path fill=\\\"#004972\\\" d=\\\"M71.25 30.04h.352v13.773h-.352zm0 0\\\"/></g><g id=\\\"deviconTowergit1c\\\" clip-path=\\\"url(#deviconTowergit6)\\\"><path fill=\\\"#fff\\\" d=\\\"M54.688 29.512H44.573v10.101zm0 0\\\"/></g><g id=\\\"deviconTowergit1d\\\" clip-path=\\\"url(#deviconTowergit2)\\\"><path fill=\\\"#fff\\\" d=\\\"m67.477 43.813l14.296-14.301H61.477l-14.301 14.3zm0 0\\\"/></g><g id=\\\"deviconTowergit1e\\\" clip-path=\\\"url(#deviconTowergitb)\\\"><path fill=\\\"#002d4f\\\" d=\\\"M54.887 80.602h-9.473v26.062c0 .484.387.875.875.875h8.586V80.602zm0 0\\\"/></g><linearGradient id=\\\"deviconTowergit1f\\\" x1=\\\"402.006\\\" x2=\\\"592.967\\\" y1=\\\"683.678\\\" y2=\\\"352.925\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".204\\\" stop-color=\\\"#ffd813\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".781\\\" stop-color=\\\"#ffd813\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1g\\\" x1=\\\"356.628\\\" x2=\\\"668.854\\\" y1=\\\"298.508\\\" y2=\\\"298.508\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".408\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".999\\\" stop-color=\\\"#fff\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1h\\\" x1=\\\"445.097\\\" x2=\\\"445.097\\\" y1=\\\"350.498\\\" y2=\\\"240.257\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".096\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".568\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".282\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\".797\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".102\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1i\\\" x1=\\\"-13963.451\\\" x2=\\\"-13963.451\\\" y1=\\\"350.498\\\" y2=\\\"240.257\\\" gradientTransform=\\\"matrix(-.125 0 0 .125 -1672.883 0)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".096\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".568\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".282\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\".797\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".102\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1j\\\" x1=\\\"271.237\\\" x2=\\\"754.495\\\" y1=\\\"200.537\\\" y2=\\\"200.537\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".096\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".568\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".282\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\".797\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".102\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1k\\\" x1=\\\"341.428\\\" x2=\\\"684.054\\\" y1=\\\"376.151\\\" y2=\\\"376.151\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".204\\\" stop-color=\\\"#ffd813\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".781\\\" stop-color=\\\"#ffd813\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1l\\\" x1=\\\"280.913\\\" x2=\\\"744.569\\\" y1=\\\"421.897\\\" y2=\\\"421.897\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".096\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".568\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".282\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\".797\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".102\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1m\\\" x1=\\\"512.625\\\" x2=\\\"512.625\\\" y1=\\\"644.777\\\" y2=\\\"860.332\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#005f8e\\\"/><stop offset=\\\".724\\\" stop-color=\\\"#004972\\\"/><stop offset=\\\".74\\\" stop-color=\\\"#004972\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1n\\\" x1=\\\"623.997\\\" x2=\\\"623.997\\\" y1=\\\"644.778\\\" y2=\\\"860.332\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#008dc4\\\"/><stop offset=\\\".541\\\" stop-color=\\\"#0072a7\\\"/></linearGradient><linearGradient id=\\\"deviconTowergit1o\\\" x1=\\\"301.713\\\" x2=\\\"724.02\\\" y1=\\\"152.949\\\" y2=\\\"152.949\\\" gradientTransform=\\\"scale(.125)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".204\\\" stop-color=\\\"#ffd813\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".781\\\" stop-color=\\\"#ffd813\\\"/></linearGradient><filter id=\\\"deviconTowergit1p\\\" width=\\\"100%\\\" height=\\\"100%\\\" x=\\\"0%\\\" y=\\\"0%\\\" filterUnits=\\\"objectBoundingBox\\\"><feColorMatrix in=\\\"SourceGraphic\\\" values=\\\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\\\"/></filter><path id=\\\"deviconTowergit1q\\\" d=\\\"M0 0h128v128H0z\\\"/></defs><path fill=\\\"#00caf4\\\" d=\\\"M47.688 107.54v2.347c0 .199.164.363.363.363h31.773c.2 0 .364-.164.364-.363v-2.348zM83.61 45.113H44.584v-15.61h39.023zm0 0\\\"/><use href=\\\"#deviconTowergit18\\\" mask=\\\"url(#deviconTowergitj)\\\"/><use href=\\\"#deviconTowergit11\\\" mask=\\\"url(#deviconTowergitp)\\\"/><use href=\\\"#deviconTowergit1d\\\" mask=\\\"url(#deviconTowergitv)\\\"/><use href=\\\"#deviconTowergit17\\\" mask=\\\"url(#deviconTowergitt)\\\"/><use href=\\\"#deviconTowergit1c\\\" mask=\\\"url(#deviconTowergitr)\\\"/><path fill=\\\"#002d4f\\\" d=\\\"M83.61 45.23H44.585v-1.42h39.023zm0 0\\\"/><path fill=\\\"#002d4f\\\" d=\\\"M71.613 30.04h1.524v13.773h-1.524zm-16.562 0h1.523v13.773h-1.523zm0 0\\\"/><path fill=\\\"url(#deviconTowergit1h)\\\" d=\\\"M55.05 30.04h1.177v13.773H55.05zm0 0\\\"/><path fill=\\\"url(#deviconTowergit1i)\\\" d=\\\"M71.96 30.04h1.177v13.773H71.96zm0 0\\\"/><use href=\\\"#deviconTowergit14\\\" mask=\\\"url(#deviconTowergitx)\\\"/><use href=\\\"#deviconTowergit1b\\\" mask=\\\"url(#deviconTowergitn)\\\"/><path fill=\\\"#ffc600\\\" d=\\\"m85.512 48.8l-.586-3.277a.353.353 0 0 0-.352-.296h-40.96a.353.353 0 0 0-.352.296l-.586 3.278zm0 0\\\"/><path fill=\\\"#002d4f\\\" d=\\\"m93.074 56.676l-1.363-7.574a.346.346 0 0 0-.348-.3H36.824a.346.346 0 0 0-.347.301l-1.364 7.574zm0 0\\\"/><path fill=\\\"url(#deviconTowergit1l)\\\" d=\\\"m93.074 56.676l-1.363-7.574a.346.346 0 0 0-.348-.3H36.824a.346.346 0 0 0-.347.301l-1.364 7.574zm0 0\\\"/><path fill=\\\"url(#deviconTowergit1m)\\\" d=\\\"M45.426 80.602v26.062a.87.87 0 0 0 .875.875h35.55c.485 0 .876-.39.876-.875V80.602zm0 0\\\"/><path fill=\\\"#002d4f\\\" d=\\\"M36.824 48.8a.346.346 0 0 0-.347.302l-.016.074h55.266l-.016-.074a.346.346 0 0 0-.348-.301zm0 0\\\"/><path fill=\\\"#ffc600\\\" d=\\\"M37.71 20.625H90.5l-.727-2.7a.411.411 0 0 0-.398-.3H38.727a.43.43 0 0 0-.403.313zm0 0\\\"/><path fill=\\\"url(#deviconTowergit1o)\\\" d=\\\"M37.71 20.625H90.5l-.727-2.7a.411.411 0 0 0-.398-.3H38.727a.43.43 0 0 0-.403.313zm0 0\\\"/><use href=\\\"#deviconTowergity\\\" mask=\\\"url(#deviconTowergitl)\\\"/><path fill=\\\"#002d4f\\\" d=\\\"M35.563 30.04h57.085c.141 0 .25-.102.278-.227l1.398-9.188H33.898l1.391 9.188a.28.28 0 0 0 .273.226zm0 0\\\"/><path fill=\\\"#005a82\\\" d=\\\"M33.988 21.188h60.239l.085-.563H33.898zm0 0\\\"/><path fill=\\\"url(#deviconTowergit1k)\\\" d=\\\"m85.512 48.8l-.586-3.277a.353.353 0 0 0-.352-.296h-40.96a.353.353 0 0 0-.352.296l-.586 3.278zm0 0\\\"/><path fill=\\\"#db9927\\\" d=\\\"m85.512 48.8l-.2-1.09H42.876l-.2 1.09zm0 0\\\"/><use href=\\\"#deviconTowergit15\\\" mask=\\\"url(#deviconTowergith)\\\"/><use href=\\\"#deviconTowergit1a\\\" mask=\\\"url(#deviconTowergiti)\\\"/><use href=\\\"#deviconTowergit1e\\\" mask=\\\"url(#deviconTowergitk)\\\"/><path fill=\\\"url(#deviconTowergit1n)\\\" d=\\\"M82.738 106.664V80.602h-9.476v26.949h8.601a.9.9 0 0 0 .875-.887m0 0\\\"/><path fill=\\\"#ffc600\\\" d=\\\"m97.836 63.125l-1.46-5.898a.718.718 0 0 0-.7-.55h-63.2a.712.712 0 0 0-.703.55l-1.449 5.9a.348.348 0 0 0 .05.287L41.461 80.3c.125.187.34.3.562.3h44.14a.681.681 0 0 0 .564-.3l11.085-16.887c.024-.09.05-.187.024-.29zm0 0\\\"/><use href=\\\"#deviconTowergit10\\\" mask=\\\"url(#deviconTowergitm)\\\"/><path fill=\\\"#db9927\\\" d=\\\"M30.313 63.273a.51.51 0 0 0 .05.141L41.45 80.301c.125.187.34.3.563.3h44.136a.676.676 0 0 0 .563-.3L97.8 63.414a.3.3 0 0 0 .05-.14zm0 0\\\"/><use href=\\\"#deviconTowergit13\\\" mask=\\\"url(#deviconTowergito)\\\"/><path fill=\\\"#cd7f1f\\\" d=\\\"M54.46 80.262L43.3 63.312H30.314a.474.474 0 0 0 .05.137L41.45 80.336c.125.187.34.3.563.3h13.09a.786.786 0 0 1-.64-.374zm0 0\\\"/><use href=\\\"#deviconTowergit16\\\" mask=\\\"url(#deviconTowergitq)\\\"/><use href=\\\"#deviconTowergit19\\\" mask=\\\"url(#deviconTowergits)\\\"/><use href=\\\"#deviconTowergitz\\\" mask=\\\"url(#deviconTowergitu)\\\"/><use href=\\\"#deviconTowergit12\\\" mask=\\\"url(#deviconTowergitw)\\\"/><path fill=\\\"url(#deviconTowergit1j)\\\" d=\\\"m92.96 29.512l1.353-8.887H33.898l1.352 8.887zm0 0\\\"/><path fill=\\\"#fff203\\\" d=\\\"M43.613 45.238a.353.353 0 0 0-.351.301l-.024.125h41.7l-.024-.125a.353.353 0 0 0-.352-.3zm0 0\\\"/>\"\n\t\t},\n\t\t\"towergit-wordmark\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconTowergitWordmark0\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark1\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark2\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark3\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark4\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark5\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark6\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark7\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark8\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmark9\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmarka\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmarkb\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmarkc\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmarkd\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmarke\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmarkf\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><clipPath id=\\\"deviconTowergitWordmarkg\\\"><use href=\\\"#deviconTowergitWordmarkt\\\"/></clipPath><linearGradient id=\\\"deviconTowergitWordmarkh\\\" x1=\\\"44.303\\\" x2=\\\"116.064\\\" y1=\\\"48.852\\\" y2=\\\"48.852\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".096\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".568\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".282\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\".797\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".102\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarki\\\" x1=\\\"45.74\\\" x2=\\\"114.59\\\" y1=\\\"81.723\\\" y2=\\\"81.723\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".096\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".568\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".282\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\".797\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".102\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarkj\\\" x1=\\\"63.721\\\" x2=\\\"92.078\\\" y1=\\\"120.596\\\" y2=\\\"71.481\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".204\\\" stop-color=\\\"#ffd813\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".781\\\" stop-color=\\\"#ffd813\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarkk\\\" x1=\\\"56.983\\\" x2=\\\"103.347\\\" y1=\\\"63.4\\\" y2=\\\"63.4\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".408\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".999\\\" stop-color=\\\"#fff\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarkl\\\" x1=\\\"56.983\\\" x2=\\\"103.347\\\" y1=\\\"63.4\\\" y2=\\\"63.4\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconTowergitWordmarkk\\\"/><linearGradient id=\\\"deviconTowergitWordmarkm\\\" x1=\\\"96.686\\\" x2=\\\"96.686\\\" y1=\\\"114.82\\\" y2=\\\"146.828\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#008dc4\\\"/><stop offset=\\\".541\\\" stop-color=\\\"#0072a7\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarkn\\\" x1=\\\"80.148\\\" x2=\\\"80.148\\\" y1=\\\"114.819\\\" y2=\\\"146.828\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#005f8e\\\"/><stop offset=\\\".724\\\" stop-color=\\\"#004972\\\"/><stop offset=\\\".74\\\" stop-color=\\\"#004972\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarko\\\" x1=\\\"63.721\\\" x2=\\\"92.078\\\" y1=\\\"120.596\\\" y2=\\\"71.481\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconTowergitWordmarkj\\\"/><linearGradient id=\\\"deviconTowergitWordmarkp\\\" x1=\\\"48.828\\\" x2=\\\"111.539\\\" y1=\\\"41.785\\\" y2=\\\"41.785\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".204\\\" stop-color=\\\"#ffd813\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".781\\\" stop-color=\\\"#ffd813\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarkq\\\" x1=\\\"54.726\\\" x2=\\\"105.604\\\" y1=\\\"74.93\\\" y2=\\\"74.93\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".204\\\" stop-color=\\\"#ffd813\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".781\\\" stop-color=\\\"#ffd813\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarkr\\\" x1=\\\"70.12\\\" x2=\\\"70.12\\\" y1=\\\"71.12\\\" y2=\\\"54.75\\\" gradientTransform=\\\"scale(.26667 .26316)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".096\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".568\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".282\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\".797\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".102\\\"/></linearGradient><linearGradient id=\\\"deviconTowergitWordmarks\\\" x1=\\\"-14909.275\\\" x2=\\\"-14909.275\\\" y1=\\\"71.12\\\" y2=\\\"54.75\\\" gradientTransform=\\\"matrix(-.26667 0 0 .26316 -3951.75 0)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".096\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".568\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".282\\\"/><stop offset=\\\".6\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\".797\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".302\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00caf4\\\" stop-opacity=\\\".102\\\"/></linearGradient><path id=\\\"deviconTowergitWordmarkt\\\" d=\\\"M0 0h128v50H0z\\\"/></defs><path fill=\\\"#142e4a\\\" d=\\\"m123.642 74.037l-3.646-5.253c2.18-.792 3.677-2.534 3.677-5.274v-.061c0-3.51-2.45-5.603-6.487-5.603h-7.348a.532.532 0 0 0-.538.53v15.953c0 .294.24.53.538.53h2.717a.532.532 0 0 0 .538-.53v-4.923h2.99l3.523 5.217a.534.534 0 0 0 .452.236h3.134c.42 0 .687-.473.45-.822m-3.795-10.321c0 1.444-1.045 2.385-2.897 2.385h-3.826v-4.863h3.765c1.851 0 2.99.823 2.99 2.416v.062zm-27.938-5.84h-2.841a.512.512 0 0 0-.508.382l-3.466 11.148L81.361 58.2a.521.521 0 0 0-.509-.355h-2.48c-.237 0-.418.148-.51.355L74.13 69.406l-3.466-11.15a.54.54 0 0 0-.507-.38h-2.898c-.359 0-.626.355-.509.679l5.529 16.068c.056.206.266.355.507.355h2.54a.547.547 0 0 0 .507-.355l3.765-10.763l3.768 10.763c.056.206.267.355.508.355h2.538c.236 0 .416-.149.508-.355l5.528-16.068c.056-.324-.18-.678-.538-.678zm14.82 13.652h-8.815v-3.567h7.59a.533.533 0 0 0 .537-.53v-2.27a.531.531 0 0 0-.538-.53h-7.589v-3.423h8.698a.533.533 0 0 0 .538-.53v-2.271a.533.533 0 0 0-.538-.53H94.689a.532.532 0 0 0-.539.53v15.922c0 .294.24.53.538.53h12.041a.532.532 0 0 0 .538-.53v-2.271a.533.533 0 0 0-.538-.53m-49.092-13.95c-5.318 0-9.175 3.954-9.175 8.79v.056c0 4.837 3.826 8.733 9.113 8.733c5.318 0 9.174-3.953 9.174-8.789v-.056c0-4.812-3.794-8.733-9.112-8.733zm5.17 8.847c0 2.92-2.124 5.278-5.17 5.278c-3.051 0-5.23-2.416-5.23-5.335v-.056c0-2.92 2.122-5.28 5.168-5.28c3.047 0 5.231 2.417 5.231 5.336zm-14.97-8.548h-13.21a.533.533 0 0 0-.539.53v2.389c0 .263.18.473.45.5h4.811v13.033c0 .294.237.53.538.53h2.72a.533.533 0 0 0 .537-.53V61.295h4.81a.527.527 0 0 0 .447-.5v-2.388c-.056-.294-.267-.53-.564-.53m0 0\\\"/><path fill=\\\"#00caf3\\\" d=\\\"M10.396 81.644v.823c0 .061.056.118.118.118H21.78c.056 0 .118-.057.118-.118v-.823zm12.737-21.85H9.266v-5.458h13.867zm0 0\\\"/><g clip-path=\\\"url(#deviconTowergitWordmarkg)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"url(#deviconTowergitWordmarkl)\\\" d=\\\"M15.2 14.238h12.347v4.895H15.199zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmarkf)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#fff\\\" d=\\\"M25.762 18.71h1.785v-1.76zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmark0)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#fff\\\" d=\\\"m22.453 18.71l4.535-4.472h-6.43l-4.53 4.473zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmark1)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#004770\\\" d=\\\"M15.2 14.238h12.374v.5H15.2zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmarkd)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#fff\\\" d=\\\"M18.398 14.238H15.2v3.157zm0 0\\\"/></g><path fill=\\\"#002b4c\\\" d=\\\"M23.133 59.829H9.266v-.499h13.867zm0 0\\\"/><path fill=\\\"#002b4c\\\" d=\\\"M18.883 54.515h.533v4.836h-.533zm-5.887 0h.537v4.836h-.537zm0 0\\\"/><path fill=\\\"url(#deviconTowergitWordmarkr)\\\" d=\\\"M18.508 14.422h.37v4.316h-.37zm0 0\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"/><path fill=\\\"url(#deviconTowergitWordmarks)\\\" d=\\\"M23.867 14.422h.371v4.316h-.37zm0 0\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"/><g clip-path=\\\"url(#deviconTowergitWordmarkc)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#004770\\\" d=\\\"M18.988 14.422h.106v4.316h-.106zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmarkb)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#004770\\\" d=\\\"M23.652 14.422h.11v4.316h-.11zm0 0\\\"/></g><path fill=\\\"#ffc500\\\" d=\\\"m23.81 61.059l-.209-1.147c0-.06-.057-.092-.118-.092H8.93c-.056 0-.118.031-.118.092l-.21 1.147zm0 0\\\"/><path fill=\\\"#002b4c\\\" d=\\\"m26.499 63.833l-.477-2.655c0-.059-.062-.089-.12-.089H6.54c-.062 0-.119.03-.119.088l-.477 2.656zm0 0\\\"/><path fill=\\\"url(#deviconTowergitWordmarki)\\\" d=\\\"m30.559 22.738l-.426-2.37c0-.052-.055-.079-.106-.079h-17.28c-.056 0-.106.027-.106.078l-.426 2.371zm0 0\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"/><path fill=\\\"url(#deviconTowergitWordmarkn)\\\" d=\\\"M15.465 30.21v8.157c0 .16.137.266.27.266h11.253c.16 0 .266-.133.266-.266v-8.156zm0 0\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"/><path fill=\\\"#002b4c\\\" d=\\\"M6.54 61.059c-.062 0-.119.03-.119.092v.026h19.6v-.026c0-.062-.061-.092-.118-.092zm0 0\\\"/><path fill=\\\"#ffc500\\\" d=\\\"M6.837 51.21h18.738l-.272-.94c-.03-.062-.056-.12-.149-.12H7.196c-.056 0-.118.058-.15.12zm0 0\\\"/><path fill=\\\"url(#deviconTowergitWordmarkp)\\\" d=\\\"M13.012 11.473h16.722l-.242-.84c-.027-.055-.05-.106-.133-.106H13.332c-.05 0-.105.051-.133.106zm0 0\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"/><g clip-path=\\\"url(#deviconTowergitWordmarka)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#b37d4c\\\" d=\\\"M13.012 11.473h16.722l-.054-.235H13.066zm0 0\\\"/></g><path fill=\\\"#002b4c\\\" d=\\\"M6.093 54.515H26.35c.06 0 .092-.03.092-.087l.507-3.217H5.494L6 54.427c0 .027.03.088.092.088zm0 0\\\"/><path fill=\\\"#00597f\\\" d=\\\"M5.524 51.39h21.395l.03-.18H5.494zm0 0\\\"/><path fill=\\\"url(#deviconTowergitWordmarkq)\\\" d=\\\"m28.16 20.262l-.187-1.024c0-.054-.051-.082-.106-.082H14.88c-.05 0-.106.028-.106.082l-.187 1.024zm0 0\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"/><path fill=\\\"#d99926\\\" d=\\\"m23.81 61.059l-.06-.381H8.692l-.092.381zm0 0\\\"/><g clip-path=\\\"url(#deviconTowergitWordmarke)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#002b4c\\\" d=\\\"m30.559 22.738l-.106-.582h-18.16l-.105.582zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmark9)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#004770\\\" d=\\\"M16.188 38.633H26.48v.156H16.187zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmark8)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#002b4c\\\" d=\\\"M18.453 30.21h-2.988v8.157c0 .16.137.266.27.266h2.718zm0 0\\\"/></g><path fill=\\\"url(#deviconTowergitWordmarkm)\\\" d=\\\"M27.281 38.367v-8.156h-2.988v8.422h2.719c.136 0 .27-.106.27-.266zm0 0\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"/><path fill=\\\"#ffc500\\\" d=\\\"m28.201 66.101l-.508-2.061c-.025-.12-.117-.207-.235-.207H4.984c-.118 0-.21.088-.235.207l-.514 2.06c0 .03 0 .06.032.092L8.21 72.12c.03.056.122.117.21.117h15.655c.092 0 .154-.03.211-.117l3.944-5.928c-.031-.03-.031-.06-.031-.09zm0 0\\\"/><g clip-path=\\\"url(#deviconTowergitWordmark7)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"url(#deviconTowergitWordmarko)\\\" d=\\\"m32.078 24.762l-.453-1.84c-.023-.106-.105-.184-.21-.184H11.358c-.105 0-.187.078-.21.184l-.458 1.84c0 .027 0 .054.028.082l3.52 5.289c.027.05.109.105.187.105h13.972c.082 0 .137-.027.188-.105l3.52-5.29c-.028-.027-.028-.054-.028-.081zm0 0\\\"/></g><path fill=\\\"#d99926\\\" d=\\\"M4.21 66.133c0 .029 0 .029.026.06l3.95 5.927c.025.056.117.117.204.117h15.662c.087 0 .149-.03.206-.117l3.944-5.928s.03-.03.03-.06zm0 0\\\"/><g clip-path=\\\"url(#deviconTowergitWordmark6)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#002b4c\\\" d=\\\"M15.465 30.21H27.28v.685H15.465zm0 0\\\"/></g><path fill=\\\"#cc7d1e\\\" d=\\\"M12.785 72.088L8.84 66.162H4.21c0 .031 0 .031.025.057l3.95 5.928c.025.06.117.117.204.117h4.636a.45.45 0 0 1-.241-.176zm0 0\\\"/><g clip-path=\\\"url(#deviconTowergitWordmark5)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#cc7d1e\\\" d=\\\"m14.852 24.738l.48-1.922c0-.054.055-.078.11-.078h-4.028c-.105 0-.187.078-.215.184l-.453 1.84h4.106zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmark4)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#ffe600\\\" d=\\\"m24.426 30.105l3.547-5.289h4.105c0 .028 0 .028-.023.051l-3.52 5.29c-.027.054-.11.105-.187.105h-4.133a.314.314 0 0 0 .21-.157zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmark3)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#ff0\\\" d=\\\"m27.945 24.762l-.48-1.918c0-.055-.05-.082-.106-.082h4.028c.105 0 .187.082.215.187l.453 1.84h-4.11zm0 0\\\"/></g><g clip-path=\\\"url(#deviconTowergitWordmark2)\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"><path fill=\\\"#ff0\\\" d=\\\"M10.668 24.79h21.41l-.05-.185h-21.31zm0 0\\\"/></g><path fill=\\\"url(#deviconTowergitWordmarkh)\\\" d=\\\"m30.535 14.238l.426-2.765H11.813l.425 2.765zm0 0\\\" transform=\\\"translate(-7.743 38.355)scale(1.12052)\\\"/><path fill=\\\"#fff002\\\" d=\\\"M8.93 59.82c-.057 0-.12.031-.12.092v.026h14.791v-.026c0-.06-.057-.092-.118-.092zm0 0\\\"/>\"\n\t\t},\n\t\t\"traefikmesh\": {\n\t\t\t\"body\": \"<path fill=\\\"#9d0fb0\\\" d=\\\"m46.171 25.388l.184.1l15.693 8.848a3.534 3.534 0 0 0 3.461 0l15.56-8.756a5.28 5.28 0 1 1 5.36 9.1l-.18.103l-8.983 5.064a1.762 1.762 0 0 0 0 3.069l24.256 13.675a3.536 3.536 0 0 0 3.462 0l15.001-8.46a5.287 5.287 0 0 1 5.367 9.099l-.18.103l-8.44 4.76a1.75 1.75 0 0 0-.895 1.53c0 .636.34 1.223.895 1.535l8.488 4.788a5.28 5.28 0 0 1 2.15 7.153a5.284 5.284 0 0 1-7.154 2.15l-.184-.1l-15.048-8.484a3.506 3.506 0 0 0-3.458 0L76.994 84.487a1.765 1.765 0 0 0 0 3.07l10.134 5.71a5.279 5.279 0 0 1 2.03 7.09a5.279 5.279 0 0 1-7.033 2.213l-.184-.1l-16.692-9.41a3.526 3.526 0 0 0-3.457 0l-16.84 9.495a5.283 5.283 0 0 1-5.362-9.095l.176-.11l10.277-5.79c.556-.31.895-.899.895-1.534a1.76 1.76 0 0 0-.895-1.535L25.731 70.79a3.516 3.516 0 0 0-3.458 0L7.96 78.84a5.277 5.277 0 0 1-7.23-1.869a5.28 5.28 0 0 1 1.87-7.23l.18-.103l7.742-4.356a1.766 1.766 0 0 0 0-3.07l-7.73-4.355A5.284 5.284 0 0 1 7.8 48.554l.184.1l14.299 8.064a3.526 3.526 0 0 0 3.457 0l24.548-13.815a1.76 1.76 0 0 0 .004-3.069l-9.123-5.142a5.28 5.28 0 0 1 5.002-9.3zm15.873 23.018L37.496 62.22a1.756 1.756 0 0 0-.9 1.535c0 .634.34 1.222.896 1.534l24.3 13.694a3.506 3.506 0 0 0 3.457 0l24.529-13.826c.555-.312.894-.9.894-1.534s-.34-1.22-.894-1.53L65.5 48.403a3.526 3.526 0 0 0-3.458 0zm0 0\\\"/>\"\n\t\t},\n\t\t\"traefikmesh-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M77.994 73.913c1.448 0 2.592.47 3.426 1.419c.838.944 1.256 2.235 1.256 3.875c0 .286-.058.49-.168.617c-.111.126-.307.189-.59.189h-8.133l.004.252c.057 1.423.445 2.526 1.164 3.32c.764.833 1.84 1.25 3.23 1.25c.756 0 1.381-.102 1.88-.306a7.461 7.461 0 0 0 1.452-.806c.33-.22.544-.33.641-.33c.107 0 .2.045.283.13a.429.429 0 0 1 .118.293a.74.74 0 0 1-.18.463c-.118.152-.328.32-.626.508c-1.136.678-2.31 1.017-3.523 1.017c-1.716 0-3.07-.528-4.055-1.581c-.985-1.06-1.476-2.51-1.476-4.354c0-1.182.22-2.22.663-3.12c.441-.9 1.062-1.593 1.868-2.092c.801-.495 1.724-.743 2.762-.743zm11.679 0c.586 0 1.14.077 1.68.237a4.826 4.826 0 0 1 1.42.662c.298.216.514.413.648.576c.132.168.201.335.201.512a.425.425 0 0 1-.118.293a.377.377 0 0 1-.283.132c-.125 0-.33-.12-.617-.356a6.759 6.759 0 0 0-1.287-.78c-.45-.204-1.014-.307-1.692-.307c-.884 0-1.595.21-2.138.625c-.544.417-.818.969-.818 1.643c0 .413.09.745.262 1.006c.172.262.47.487.886.674c.418.189 1.014.373 1.787.544c1.088.27 1.921.54 2.506.814c.58.278.993.608 1.238.993c.246.388.368.883.368 1.48c0 .944-.388 1.705-1.169 2.28c-.78.576-1.82.863-3.11.863a6.535 6.535 0 0 1-1.845-.27a6.373 6.373 0 0 1-1.655-.747c-.314-.205-.528-.373-.638-.508a.698.698 0 0 1-.168-.461c0-.111.042-.21.12-.294a.385.385 0 0 1 .285-.131c.079 0 .184.045.32.13l.27.176c.458.331.936.605 1.43.817c.499.213 1.124.32 1.88.32c1.026 0 1.81-.189 2.367-.568c.548-.377.826-.912.826-1.608c0-.408-.098-.747-.294-1.017c-.201-.266-.523-.5-.973-.695c-.446-.2-1.092-.392-1.926-.58c-1.385-.314-2.378-.72-2.98-1.206c-.597-.492-.895-1.137-.895-1.938c0-.976.38-1.774 1.145-2.391c.764-.613 1.753-.92 2.968-.92zm7.942-5.06c.16 0 .283.049.369.143a.576.576 0 0 1 .13.4v6.81l.09-.183a3.728 3.728 0 0 1 1.467-1.52c.695-.393 1.493-.59 2.392-.59c1.37 0 2.407.364 3.108 1.099c.702.732 1.053 1.815 1.053 3.25v6.954l-.008.098a.496.496 0 0 1-.122.302a.474.474 0 0 1-.368.143a.487.487 0 0 1-.368-.143c-.086-.094-.126-.23-.126-.405v-6.83l-.004-.225c-.029-1.116-.27-1.934-.733-2.46c-.485-.557-1.274-.838-2.362-.838c-1.214 0-2.187.376-2.92 1.124c-.734.747-1.098 1.745-1.098 2.992v6.236l-.008.104a.496.496 0 0 1-.123.302a.474.474 0 0 1-.368.143a.462.462 0 0 1-.35-.155a.55.55 0 0 1-.144-.392V69.397l.004-.099a.526.526 0 0 1 .126-.303a.47.47 0 0 1 .364-.143zm-31.891 5.06c2.522 0 3.78 1.447 3.78 4.349v6.954l-.004.09a.543.543 0 0 1-.125.298a.452.452 0 0 1-.364.155a.455.455 0 0 1-.369-.155a.591.591 0 0 1-.13-.393v-7.055c-.029-1.116-.25-1.934-.663-2.46c-.441-.557-1.14-.838-2.105-.838c-1.1 0-1.978.371-2.632 1.111c-.66.74-.986 1.742-.986 3.005v6.236l-.004.095a.538.538 0 0 1-.122.299a.455.455 0 0 1-.368.155a.46.46 0 0 1-.368-.155a.614.614 0 0 1-.131-.393v-7.055c-.024-1.116-.245-1.934-.658-2.46c-.442-.557-1.144-.838-2.105-.838c-1.12 0-2.002.371-2.65 1.111c-.645.74-.967 1.742-.967 3.005v6.236l-.004.095a.575.575 0 0 1-.127.299a.455.455 0 0 1-.368.155a.452.452 0 0 1-.364-.155a.591.591 0 0 1-.131-.393V74.502l.004-.086c.025-.303.188-.458.49-.458c.16 0 .279.05.357.143a.617.617 0 0 1 .118.401v1.704l.081-.183a3.644 3.644 0 0 1 1.325-1.52c.625-.393 1.36-.59 2.211-.59c1.844 0 3.025.764 3.548 2.293a3.667 3.667 0 0 1 1.489-1.68c.678-.408 1.459-.613 2.342-.613m12.27.92c-1.2 0-2.166.376-2.898 1.124c-.73.748-1.16 1.794-1.287 3.13h7.918c-.028-1.368-.368-2.419-1.014-3.154c-.646-.733-1.553-1.1-2.719-1.1m38.502-32.637c.393 0 .729.131 1.015.393c.262.233.408.548.432.945l.008.135v12.92l7.428-6.7c.24-.203.498-.306.768-.306c.352 0 .658.135.92.405c.27.266.408.568.408.9c0 .265-.101.506-.301.726l-.09.094l-5.944 5.237l6.498 6.733c.242.249.361.527.361.837c0 .344-.143.65-.425.92a1.312 1.312 0 0 1-.953.405a1.256 1.256 0 0 1-.886-.36l-.094-.095l-7.69-8.052v7.018c0 .455-.154.822-.457 1.096a1.54 1.54 0 0 1-1.046.393a1.517 1.517 0 0 1-1.031-.377c-.253-.237-.392-.559-.417-.972l-.004-.14V43.668c0-.458.147-.818.438-1.08a1.584 1.584 0 0 1 1.062-.392m-5.91 7.093c.392 0 .727.135 1.014.405c.262.245.408.571.433.98l.008.14v13.481c0 .474-.156.854-.458 1.136a1.505 1.505 0 0 1-1.047.409c-.4 0-.743-.131-1.03-.393c-.253-.245-.392-.58-.417-1.004l-.004-.148V50.814c0-.474.148-.847.438-1.12a1.549 1.549 0 0 1 1.063-.405m-3.97-7.093l.05.004a1.036 1.036 0 0 1 .032 2.057l-.098.008h-1.532c-.458 0-.818.042-1.072.127c-.257.077-.486.282-.686.565c-.193.269-.262.78-.335 1.294a15.9 15.9 0 0 0-.094 1.816l-.004.257v.965h2.661a.887.887 0 1 1 0 1.774l-2.661-.004v13.293c0 .409-.123.748-.368 1.01l-.09.085a1.53 1.53 0 0 1-1.043.393c-.404 0-.748-.126-1.03-.377c-.253-.236-.397-.559-.421-.972l-.003-.14V51.06h-2.363a.885.885 0 1 1 0-1.77h2.363v-1.758c0-1.93.404-3.298 1.214-4.108c.764-.773 1.806-1.182 3.118-1.223l.238-.004zM89.159 49.29c1.541 0 2.972.397 4.04 1.116c.845.572 1.532 1.451 1.81 2.317c.16.5.184.687.184 1.407c0 .453-.013.755-.037.895c-.249 1.423-.842 2.407-1.876 3.11c-.83.565-1.873.895-3.238 1.026c-.686.066-1.941.058-2.755-.011a26.253 26.253 0 0 1-1.9-.246l-.515-.098l-.217-.037c-.32-.053-.609-.098-.617-.094c-.005.004-.053.319-.107.7c-.09.609-.106.76-.106 1.245c-.004.496.004.582.065.81c.188.735.602 1.226 1.357 1.607c.744.372 1.52.535 2.698.56a7.43 7.43 0 0 0 1.112-.033c.79-.086 1.148-.18 2.199-.569a6.593 6.593 0 0 1 .593-.199c.14-.025.397.025.548.102c.27.142.499.515.499.817c-.004.356-.123.569-.467.847c-.821.665-1.872 1.075-3.127 1.218c-.45.05-1.471.057-1.962.012c-1.394-.123-2.354-.364-3.238-.81c-.69-.347-1.213-.78-1.606-1.32l-.18-.25a1.151 1.151 0 0 0-.142.173a5.783 5.783 0 0 1-1.33 1.222c-.71.47-1.732.825-2.762.969a13.238 13.238 0 0 1-1.595.056c-1.81-.159-3.191-.714-4.202-1.688c-1.021-.989-1.463-2.277-1.287-3.785c.195-1.732 1.01-2.955 2.432-3.67c1.091-.552 2.187-.76 3.966-.76c1.262 0 2.325.101 3.94.387c.4.074.743.132.768.132c.036 0 .061-.131.136-.647c.13-.936.155-1.259.117-1.635c-.04-.433-.094-.641-.257-.981c-.421-.87-1.414-1.405-3.013-1.614a12.196 12.196 0 0 0-1.97-.016c-.769.09-1.198.2-2.15.564c-.56.216-.56.216-.785.2c-.384-.022-.646-.196-.813-.548c-.07-.143-.083-.2-.083-.396c0-.286.079-.442.335-.687c.581-.557 1.56-1.025 2.543-1.226c.634-.131.945-.156 1.775-.156c.862.004 1.414.049 2.179.196c1.271.241 2.239.663 2.967 1.3c.217.193.544.565.683.78c.041.067.085.12.098.12a.993.993 0 0 0 .155-.176c1.104-1.431 2.96-2.24 5.138-2.236m-18.504 0c.367 0 .658.13.862.397c.22.265.33.572.33.927c0 .331-.097.617-.292.858c-.197.233-.48.348-.848.348c-1.553 0-2.616.388-3.479 1.162c-.832.755-1.274 1.761-1.29 3.012v8.302c0 .474-.156.854-.458 1.136a1.507 1.507 0 0 1-1.047.409a1.476 1.476 0 0 1-1.03-.393c-.27-.261-.413-.625-.42-1.095V50.814c0-.474.142-.847.436-1.12a1.549 1.549 0 0 1 1.063-.405c.392 0 .728.135 1.015.405c.281.262.429.617.436 1.062l.004.058v2.08c.286-1.025.862-1.88 1.725-2.564c.875-.694 1.774-1.04 2.993-1.04m-15.231-4.73c.36 0 .675.12.94.352c.273.246.408.572.408.985v3.393h3.255a.89.89 0 0 1 .882.797l.004.09a.886.886 0 0 1-.796.878l-.09.009l-3.255-.004v8.654l.005.253c.004.752.036 1.357.094 1.814c.073.515.143 1.031.335 1.3c.205.278.429.483.687.561c.224.073.523.118.903.126h.168l1.533.005a1.03 1.03 0 0 1 1.01.952a1.036 1.036 0 0 1-.851 1.099l-.094.012h-.05v.005h-2.124l-.233-.005c-1.317-.044-2.359-.453-3.124-1.226c-.772-.772-1.177-2.06-1.21-3.858v-.25l-.004-9.442h-2.069a.879.879 0 0 1-.879-.794l-.007-.09c0-.457.348-.837.796-.882l.09-.004h2.131l.237-3.393c0-.433.126-.763.38-1.001c.254-.22.565-.335.928-.335zM77.63 58.09c-1.1.066-1.548.164-2.208.487c-.339.168-.571.348-.76.584a2.846 2.846 0 0 0-.535 1.13c-.082.33-.09 1.2-.013 1.479a2.197 2.197 0 0 0 .618 1.087c.462.487 1.075.806 1.83.968c.39.083.378.083 1.026.07c.475-.008.651-.02.843-.061c.818-.189 1.549-.605 2.077-1.193c.481-.536.879-1.342 1.096-2.23c.125-.497.326-1.887.282-1.915a1.389 1.389 0 0 0-.237-.042a21.632 21.632 0 0 1-.724-.085c-1.685-.22-2.715-.31-3.295-.274zm10.264-6.662c-.6.11-1.107.314-1.553.625c-.826.576-1.394 1.444-1.713 2.604c-.123.458-.155.633-.27 1.423l-.102.722l.14.017c.412.05 1.348.163 1.892.238l.115.015l.24.03c.238.028.463.052.576.06c.438.037 1.186.037 1.689.009l.176-.017c.679-.06 1.098-.167 1.614-.416c.43-.21.675-.421.912-.777c.347-.527.482-1.025.478-1.766c0-.528-.045-.748-.22-1.124c-.397-.847-1.325-1.455-2.543-1.66c-.303-.052-1.12-.045-1.431.017m22.683-9.23c.523 0 .948.143 1.271.433c.323.283.487.654.487 1.124c0 .458-.164.834-.487 1.124c-.323.283-.752.421-1.287.421c-.536 0-.965-.142-1.287-.42a1.445 1.445 0 0 1-.488-1.125c0-.458.163-.834.487-1.124c.331-.29.768-.434 1.304-.434zm0 0\\\"/><path fill=\\\"#9d0fb0\\\" d=\\\"m15.503 53.029l.06.033l5.27 2.972c.36.204.797.204 1.16 0l5.225-2.939a1.772 1.772 0 1 1 1.799 3.053l-.062.037l-3.017 1.695a.597.597 0 0 0 0 1.035l8.148 4.591a1.198 1.198 0 0 0 1.16 0l5.036-2.841a1.775 1.775 0 0 1 1.803 3.054l-.062.036l-2.833 1.598a.582.582 0 0 0-.302.516a.58.58 0 0 0 .303.51l2.849 1.611a1.768 1.768 0 0 1 .72 2.4a1.773 1.773 0 0 1-2.4.723l-.062-.037l-5.052-2.845a1.175 1.175 0 0 0-1.162 0l-8.235 4.64a.597.597 0 0 0 0 1.03l3.404 1.917a1.77 1.77 0 0 1 .68 2.38a1.768 1.768 0 0 1-2.36.742l-.065-.031l-5.6-3.16a1.175 1.175 0 0 0-1.162 0l-5.652 3.188a1.775 1.775 0 0 1-1.803-3.054l.061-.036l3.45-1.947a.597.597 0 0 0 0-1.03L8.64 68.273a1.175 1.175 0 0 0-1.161 0L2.67 70.974A1.772 1.772 0 0 1 .872 67.92l.062-.037l2.6-1.458a.597.597 0 0 0 0-1.031L.937 63.93a1.774 1.774 0 0 1 1.68-3.123l.062.032l4.803 2.707c.359.204.796.204 1.156 0l8.245-4.636a.6.6 0 0 0 .304-.515a.582.582 0 0 0-.304-.515l-3.062-1.73a1.77 1.77 0 0 1-.682-2.378a1.776 1.776 0 0 1 2.363-.744zm5.326 7.73l-8.24 4.636a.591.591 0 0 0 0 1.03l8.157 4.598c.36.205.798.205 1.162 0l8.232-4.643a.588.588 0 0 0 0-1.026l-8.15-4.594a1.175 1.175 0 0 0-1.16 0zm0 0\\\"/>\"\n\t\t},\n\t\t\"traefikproxy\": {\n\t\t\t\"body\": \"<path fill=\\\"#24a1c1\\\" d=\\\"M63.998 6.385c5.807 0 10.967 4.096 10.967 9.14c0 5.042-4.912 9.138-10.968 9.138c-.69 0-1.591-.115-2.706-.341a3.651 3.651 0 0 0-2.536.405l-39.314 22.36a1.83 1.83 0 0 0 .008 3.185l42.618 23.922a3.659 3.659 0 0 0 3.564.012l42.846-23.82a1.823 1.823 0 0 0 .016-3.186l-13.37-7.587a3.659 3.659 0 0 0-3.579-.02l-14.109 7.826a1.259 1.259 0 0 0-.637.955l-.005.136c0 5.045-4.912 9.137-10.967 9.137c-6.05 0-10.963-4.091-10.963-9.138c0-5.044 4.913-9.14 10.964-9.14c.227 0 .483.018.775.037l.464.05l.512.06a3.664 3.664 0 0 0 2.263-.423l20.873-11.578a5.478 5.478 0 0 1 5.144-.09l.224.115l29.144 16.546c3.653 2.073 3.693 7.295.15 9.448l-.195.115l-19.5 10.836a1.834 1.834 0 0 0-.936 1.622a1.84 1.84 0 0 0 .976 1.592l19.31 10.16c3.836 2.015 3.925 7.472.166 9.614L66.55 120.895a5.497 5.497 0 0 1-5.437 0L2.802 87.611c-3.766-2.15-3.662-7.619.183-9.622l19.521-10.185a1.832 1.832 0 0 0 .05-3.217l-19.76-11.09c-3.652-2.052-3.729-7.249-.218-9.43l.195-.119l48.523-27.59a3.675 3.675 0 0 0 1.641-1.967l.06-.195c1.707-5.072 5.58-7.81 11.001-7.81Zm27.075 67.32L67.115 87.482l-.224.122a5.461 5.461 0 0 1-5.18-.098L37.827 74.039a3.644 3.644 0 0 0-3.477-.052l-13.768 7.195a1.83 1.83 0 0 0-.057 3.21l42.062 24.069a3.656 3.656 0 0 0 3.617 0l42.422-24.238a1.83 1.83 0 0 0 .926-1.619a1.83 1.83 0 0 0-.978-1.588l-13.987-7.38a3.65 3.65 0 0 0-3.516.07zm0 0\\\"/>\"\n\t\t},\n\t\t\"traefikproxy-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M58.233 71.902c1.015 0 1.913.25 2.693.749c.777.501 1.38 1.201 1.813 2.107c.424.906.639 1.962.639 3.167c0 1.19-.215 2.234-.64 3.131c-.432.894-1.035 1.59-1.812 2.083c-.78.494-1.678.736-2.693.736c-.967 0-1.8-.214-2.489-.642c-.691-.43-1.213-1.048-1.561-1.858v6.193l-.004.099a.562.562 0 0 1-.125.306a.49.49 0 0 1-.372.142c-.332 0-.502-.182-.502-.546V72.473l.008-.093a.487.487 0 0 1 .126-.287a.47.47 0 0 1 .368-.146c.157 0 .282.048.367.145a.549.549 0 0 1 .135.38v1.881l.109-.234a3.84 3.84 0 0 1 1.452-1.586c.687-.42 1.52-.632 2.488-.632zm40.006.024c.174 0 .312.093.405.284l4.599 10.36l.048-.122l4.527-10.166l.044-.089a.445.445 0 0 1 .41-.242a.458.458 0 0 1 .33.13a.435.435 0 0 1 .146.343a.97.97 0 0 1-.048.214l-6.84 15.145l-.041.073a.445.445 0 0 1-.383.21a.47.47 0 0 1-.324-.117a.399.399 0 0 1-.13-.31l.045-.191l1.715-3.762l-5.004-11.048l-.021-.065a.455.455 0 0 1 .142-.505a.57.57 0 0 1 .38-.145zm-19.466-.024c1.015 0 1.914.242 2.69.735c.782.494 1.384 1.194 1.813 2.096c.429.906.643 1.954.643 3.143c0 1.207-.214 2.262-.642 3.17c-.43.904-1.032 1.6-1.812 2.093c-.777.494-1.676.736-2.692.736c-1.019 0-1.916-.242-2.693-.735c-.777-.494-1.384-1.19-1.812-2.096c-.43-.906-.643-1.961-.643-3.168c0-1.189.217-2.237.642-3.143c.434-.906 1.035-1.602 1.812-2.095c.782-.494 1.675-.736 2.694-.736m-6.912.049h.109a.48.48 0 0 1 .288.104c.068.073.104.178.104.32c0 .272-.165.429-.501.477l-.713.073l-.23.025c-1.043.145-1.845.566-2.392 1.261a4.032 4.032 0 0 0-.88 2.569v6.5l-.008.102a.474.474 0 0 1-.126.304c-.085.097-.21.142-.368.142c-.157 0-.28-.045-.368-.142c-.089-.094-.13-.231-.13-.404V72.497l.004-.105c.029-.296.195-.445.494-.445a.49.49 0 0 1 .36.145c.093.093.141.227.141.404v1.712l.097-.182c.7-1.246 1.906-1.933 3.62-2.056l.332-.023h.166zm23.878 0a.49.49 0 0 1 .344.142a.453.453 0 0 1 .154.355c0 .145-.053.28-.165.404l-4.24 4.957l4.357 5.069l.064.077a.594.594 0 0 1 .105.327a.49.49 0 0 1-.145.36a.462.462 0 0 1-.332.142c-.142 0-.28-.072-.404-.214l-4.292-5.025l-4.264 5.025l-.085.076a.55.55 0 0 1-.343.138a.45.45 0 0 1-.332-.146a.473.473 0 0 1-.146-.356c0-.141.056-.275.17-.404l4.357-5.073l-4.215-4.951l-.062-.077a.6.6 0 0 1-.11-.328a.476.476 0 0 1 .147-.355a.453.453 0 0 1 .336-.146c.141 0 .275.072.403.214l4.148 4.907l4.146-4.907l.077-.077a.462.462 0 0 1 .327-.134m-16.966.926c-1.27 0-2.268.44-2.988 1.323c-.725.877-1.084 2.102-1.084 3.676c0 1.619.352 2.86 1.059 3.726c.704.866 1.703 1.299 2.99 1.299c1.318 0 2.33-.433 3.038-1.299c.707-.866 1.06-2.107 1.06-3.726c0-1.574-.361-2.799-1.085-3.676c-.724-.882-1.719-1.324-2.99-1.324zm-20.54 0c-1.303 0-2.302.432-3.002 1.298c-.7.866-1.048 2.1-1.048 3.701c0 1.602.348 2.845 1.048 3.714c.7.874 1.69 1.31 2.977 1.31c1.286 0 2.29-.432 3.002-1.298c.715-.866 1.072-2.092 1.072-3.676c0-1.59-.356-2.828-1.072-3.715c-.712-.89-1.708-1.335-2.977-1.335Zm58.178-32.992c.391 0 .731.133 1.019.396c.263.234.408.546.44.934l.004.154v13.013l7.487-6.747c.244-.206.503-.308.777-.308c.352 0 .66.135.923.405c.275.271.413.575.413.906c0 .263-.098.501-.291.72l-.106.11l-5.986 5.27l6.544 6.784c.243.247.365.53.365.842c0 .348-.142.655-.429.926a1.314 1.314 0 0 1-.955.404c-.336 0-.631-.114-.886-.348l-.105-.104l-7.75-8.11v7.066c0 .46-.154.828-.462 1.1a1.514 1.514 0 0 1-1.052.396a1.522 1.522 0 0 1-1.04-.376c-.25-.235-.391-.559-.42-.963l-.004-.157V41.369c0-.461.145-.825.441-1.088a1.605 1.605 0 0 1 1.072-.397zm-5.96 7.143c.397 0 .737.138 1.02.409c.263.242.412.57.44.974l.005.155v13.576c0 .476-.154.856-.461 1.144a1.507 1.507 0 0 1-1.052.408a1.46 1.46 0 0 1-1.036-.392c-.255-.243-.396-.574-.425-1l-.004-.161V48.565c0-.477.146-.853.446-1.13a1.553 1.553 0 0 1 1.067-.407m-4-7.144v.005l.068.004c.547.056.955.529.931 1.076a1.043 1.043 0 0 1-1.015.999h-1.546c-.46 0-.82.044-1.08.133c-.259.073-.489.283-.692.563c-.193.27-.263.788-.34 1.306a15.833 15.833 0 0 0-.092 1.8l-.004.287v.97h2.682a.896.896 0 0 1 .853.895a.89.89 0 0 1-.853.891h-2.678v13.385c0 .408-.121.744-.364 1.006l-.097.094a1.517 1.517 0 0 1-1.056.396a1.512 1.512 0 0 1-1.036-.376c-.255-.235-.391-.559-.42-.963l-.009-.157V48.816h-2.382a.895.895 0 0 1 0-1.788h2.382v-1.771c0-1.943.41-3.322 1.226-4.135c.765-.773 1.804-1.185 3.115-1.233l.268-.005zm-17.592 7.144c1.553 0 2.993.4 4.07 1.124c.853.575 1.544 1.465 1.823 2.339c.162.502.187.687.187 1.415c0 .454-.013.756-.032.9c-.255 1.43-.855 2.425-1.895 3.13c-.836.57-1.888.902-3.264 1.035c-.691.064-1.957.061-2.775-.016c-.699-.06-1.553-.17-1.917-.247a33.077 33.077 0 0 0-1.36-.23c-.004.003-.051.323-.108.708c-.093.615-.106.764-.106 1.258v.25c.004.287.017.38.065.563c.19.74.607 1.233 1.367 1.614c.749.376 1.533.542 2.719.566a7.756 7.756 0 0 0 1.12-.031c.798-.086 1.161-.184 2.216-.575c.264-.102.535-.19.6-.199c.138-.024.4.025.55.102c.275.14.505.517.502.825c0 .355-.118.57-.466.849c-.828.671-1.889 1.084-3.155 1.226c-.449.052-1.481.056-1.978.016c-1.4-.125-2.375-.368-3.26-.817c-.696-.352-1.222-.785-1.619-1.331l-.181-.25a1.15 1.15 0 0 0-.146.173c-.376.477-.829.89-1.336 1.23c-.715.473-1.747.833-2.786.98c-.311.04-1.343.076-1.606.05c-1.824-.156-3.22-.715-4.235-1.693c-1.032-.995-1.473-2.294-1.299-3.815c.202-1.744 1.015-2.978 2.447-3.697c1.105-.554 2.209-.766 4.002-.766c1.273 0 2.341.106 3.971.394c.4.072.753.128.774.128c.036 0 .06-.13.136-.651c.135-.942.155-1.265.122-1.642c-.044-.44-.101-.647-.263-.991c-.424-.878-1.429-1.412-3.038-1.626a11.585 11.585 0 0 0-1.982-.016c-.777.088-1.205.202-2.168.57c-.563.214-.567.214-.793.203c-.384-.025-.647-.203-.818-.555c-.068-.141-.08-.202-.08-.396c0-.295.077-.45.336-.696c.586-.554 1.569-1.031 2.564-1.234c.636-.13.95-.158 1.788-.158c.87.004 1.424.052 2.193.198c1.282.244 2.257.668 2.993 1.311c.215.19.546.567.683.785c.046.068.09.121.102.121c.008 0 .081-.08.158-.178c1.112-1.44 2.986-2.253 5.178-2.253m-18.649 0c.373 0 .66.134.87.4c.218.268.332.58.332.935c0 .331-.102.623-.296.865c-.197.235-.485.348-.853.348c-1.566 0-2.637.394-3.507 1.17c-.838.76-1.286 1.771-1.303 3.038v8.357c0 .477-.153.857-.46 1.145a1.507 1.507 0 0 1-1.053.408a1.477 1.477 0 0 1-1.04-.392c-.27-.263-.416-.632-.424-1.104V48.565c0-.478.145-.854.44-1.13a1.571 1.571 0 0 1 1.073-.408c.392 0 .732.138 1.019.409c.283.263.433.62.445 1.072v2.152c.29-1.032.87-1.893 1.74-2.581c.88-.7 1.787-1.052 3.017-1.052zm-15.351-4.76c.363 0 .68.117.947.352c.274.251.412.578.412.991v3.418h3.28c.458 0 .834.344.887.789l.004.106a.888.888 0 0 1-.79.885l-.105.004H56.22v8.713l.004.287c.004.746.036 1.343.093 1.797c.077.522.145 1.035.34 1.307c.202.282.433.489.691.565c.223.073.518.118.887.127l.193.003h1.546c.522.02.95.421 1.003.942a1.046 1.046 0 0 1-.809 1.117l-.11.021l-.072.003h.004h-2.144l-.263-.004c-1.315-.049-2.35-.46-3.114-1.233c-.773-.769-1.181-2.048-1.222-3.832l-.004-.302v-9.51H51.16a.893.893 0 0 1-.89-.786l-.005-.104a.89.89 0 0 1 .79-.887l.105-.008h2.144l.238-3.418c0-.432.125-.769.384-1.004c.255-.226.59-.347.935-.339zm22.382 13.628c-1.108.062-1.562.162-2.225.486c-.344.17-.579.348-.765.586a2.864 2.864 0 0 0-.542 1.141c-.08.336-.089 1.206-.012 1.488c.125.474.28.74.62 1.097c.468.485 1.083.813 1.848.975c.392.08.38.08 1.035.069c.473-.004.652-.02.845-.065a4.008 4.008 0 0 0 2.096-1.197c.486-.543.886-1.352 1.104-2.241c.125-.507.331-1.906.284-1.934a1.17 1.17 0 0 0-.243-.041a19.344 19.344 0 0 1-.728-.085c-1.696-.226-2.734-.315-3.317-.28Zm10.343-6.714c-.603.113-1.117.319-1.565.635c-.834.577-1.404 1.447-1.724 2.62c-.124.461-.162.635-.275 1.429l-.101.732l.138.016c.186.021.477.056.789.094l.473.06c.238.028.465.06.647.085c.344.044.765.093.938.105a13.5 13.5 0 0 0 1.675.007l.203-.011c.688-.065 1.108-.174 1.63-.425c.429-.21.68-.421.917-.78c.348-.53.487-1.032.482-1.782c0-.528-.045-.751-.223-1.131c-.4-.854-1.334-1.46-2.564-1.67c-.303-.053-1.128-.042-1.44.016m22.86-9.296c.53 0 .958.144 1.282.44c.327.28.489.66.489 1.13c0 .46-.162.84-.489 1.131c-.324.284-.761.425-1.299.425c-.538 0-.971-.141-1.298-.425a1.46 1.46 0 0 1-.49-1.132c0-.462.166-.837.49-1.128c.335-.295.772-.441 1.315-.441m0 0\\\"/><path fill=\\\"#24a1c1\\\" d=\\\"M20.665 45.095c1.873 0 3.54 1.323 3.54 2.949c0 1.63-1.586 2.949-3.54 2.949c-.227 0-.518-.037-.877-.11a1.175 1.175 0 0 0-.818.134L6.277 58.234a.591.591 0 0 0-.3.513a.593.593 0 0 0 .304.514l13.757 7.725a1.18 1.18 0 0 0 1.153 0l13.835-7.689a.59.59 0 0 0 .302-.51a.593.593 0 0 0-.299-.517l-4.316-2.451a1.189 1.189 0 0 0-1.157-.004l-4.554 2.527a.407.407 0 0 0-.208.308v.044c0 1.626-1.584 2.95-3.542 2.95c-1.954 0-3.54-1.324-3.54-2.95c0-1.63 1.585-2.953 3.54-2.953c.072 0 .157.004.25.012l.15.017l.165.02c.252.032.51-.016.732-.137l6.74-3.738a1.77 1.77 0 0 1 1.659-.028l.072.036l9.41 5.343c1.18.668 1.192 2.355.048 3.05l-.06.037l-6.3 3.5a.591.591 0 0 0 .017 1.035l6.234 3.28c1.238.652 1.266 2.412.052 3.106L21.486 82.063a1.765 1.765 0 0 1-1.755 0L.904 71.316c-1.218-.692-1.18-2.46.061-3.107l6.303-3.285a.593.593 0 0 0 .016-1.04l-6.379-3.58C-.276 59.643-.3 57.963.832 57.259l.064-.036l15.668-8.911a1.18 1.18 0 0 0 .529-.636l.017-.06c.554-1.638 1.804-2.52 3.555-2.52zm8.738 21.734l-7.736 4.446l-.072.04a1.76 1.76 0 0 1-1.67-.032l-7.71-4.349a1.18 1.18 0 0 0-1.125-.016L6.644 69.24a.598.598 0 0 0-.316.513a.59.59 0 0 0 .3.526l13.58 7.77c.36.203.805.207 1.165 0l13.7-7.827a.587.587 0 0 0 .296-.522a.59.59 0 0 0-.315-.513l-4.515-2.382a1.183 1.183 0 0 0-1.136.023zm0 0\\\"/>\"\n\t\t},\n\t\t\"travis\": {\n\t\t\t\"body\": \"<path fill=\\\"#cb3349\\\" d=\\\"M68.56 55.275c-2.17.003-4.342.027-6.519.07l-4.014 1.901l-.054.031c-.603.294-5.872 2.953-10.828 7.694c4.442-2.336 10.97-5.387 18.656-7.754a92.315 92.315 0 0 1 7.201-1.9a345.343 345.343 0 0 0-4.437-.042zm-14.658.295a558.82 558.82 0 0 0-11.13.518c-2.154.119-4.298.266-6.442.428a99.32 99.32 0 0 0-3.205.283a25.224 25.224 0 0 0-.908.103c-2.796 1.673-13.52 8.406-20.883 17.21c7.155-4.972 19.618-12.446 35.008-16.753a96.086 96.086 0 0 1 7.56-1.789m31.71.09c-.17.252-.514.749-1.008 1.424c-1.588 2.148-4.734 6.088-8.77 9.428c5.713-1.024 15.62-3.558 24.193-9.54c.214-.151.429-.312.641-.46a.043.043 0 0 0-.022-.008a344.877 344.877 0 0 0-6.287-.416a581.907 581.907 0 0 0-8.748-.428zm-3.403 40.723c-1.15 0-4.493 1.037-11.815 3.306l-.45.143l-.442-.166c-.05-.017-4.854-1.799-10.611-1.799a27.169 27.169 0 0 0-1.399.035c-.576.03-3.812 1.568-7.951 8.116l-.27.421l-.472.153a510.288 510.288 0 0 1-14.748 4.48l-.49.14l-.463-.214c-.05-.02-3.007-1.392-5.819-2.684c1.533 2.265 3.495 5.094 5.221 7.311c3.015 3.883 6.815 7.47 14.102 7.47c.913 0 1.885-.055 2.882-.17c7.412-.836 9.321-1.175 10.348-1.355c.348-.059.623-.109.975-.152c.056-.007 6.125-.791 7.828-4.611c1.756-3.926 2.109-4.86 2.123-4.897l.62-1.652s.076-.43.202-.563c0 .004.001.004.004.004l.012.01c.195.14.484.578.484.578l1.022 1.215a90.881 90.881 0 0 0 5.058 5.473c1.842 1.826 4.071 2.75 6.621 2.75a11.588 11.588 0 0 0 2.71-.334a629.93 629.93 0 0 1 2.743-.66c3.445-.824 7.349-1.76 9.24-2.29c.375-.105.793-.2 1.233-.3c2.519-.582 5.969-1.385 7.799-5.049a541.946 541.946 0 0 1 4.607-8.935a77.702 77.702 0 0 0-3.33 1.613c-1.368.718-3.162 1.066-5.478 1.066c-1.377 0-2.73-.117-4.227-.25c-2.992-.275-8.055-.87-8.107-.877l-.387-.043l-.307-.246c-.045-.033-4.482-3.566-8.068-6.386c-.145-.118-.277-.229-.397-.329c-.376-.322-.378-.322-.603-.322\\\"/><path fill=\\\"#f4edae\\\" d=\\\"M68.908 2.928c-2.53 0-5.033.205-7.492.605a47.256 47.256 0 0 0-7.225 1.772c-5.88 1.941-11.372 5.022-16.199 9.054a51.646 51.646 0 0 0-2.814 2.534a52.876 52.876 0 0 0-7.352 8.877a54.162 54.162 0 0 0-2.043 3.355v.002a54.796 54.796 0 0 0-1.816 3.537v.002a55.605 55.605 0 0 0-1.574 3.713a70.15 70.15 0 0 1 3.285-.945c.848-.217 1.7-.425 2.554-.614a49.699 49.699 0 0 1 2.577-.502l-.014.006c.005 0 .01-.003.016-.004a128.13 128.13 0 0 0-2.46.91c-.811.302-1.622.62-2.431.946c-.017.007-.032.015-.049.021a91.745 91.745 0 0 0-4.676 2.01l-.05.022c-.362.165-.715.344-1.073.515c-.415.199-.836.388-1.246.598l-.006.004c-.204.104-.4.22-.603.328c-.554.293-1.108.585-1.65.898c-.68.39-1.344.8-1.983 1.233c-.64.433-1.253.89-1.828 1.375c-.05.29-.095.608-.135.91c-.007.059-.01.119-.018.178c-.053.451-.094.904-.129 1.357a35.861 35.861 0 0 0-.103 2.35a38.236 38.236 0 0 0 .322 5.191c.21 1.519.498 3.023.88 4.492c.05.197.085.4.14.596v.002c.031.115.078.225.111.34c.205.706.424 1.407.686 2.094c.22.584.47 1.157.75 1.715l.002.002l.11.209a12.61 12.61 0 0 0 .386.19l.771.368c.431.2 1.026.48 1.516.7a.97.97 0 0 0 .078-.073l-1.43-5.45c.303-.083 3.019-.782 7.7-1.673l-.03-.008a22.067 22.067 0 0 1-1.103-.234c-.252-.063-.5-.141-.75-.211c-.156-.044-.312-.086-.467-.133a22.086 22.086 0 0 1-1.918-.658l-.002-.002a14.346 14.346 0 0 1-1.475-.713h-.002c-.475-.272-.942-.58-1.304-.99h.004c.641.21 1.368.381 2.168.52h.004c.8.137 1.673.241 2.605.316c.935.075 1.927.12 2.969.14c2.08.04 4.346-.019 6.695-.144c3.523-.188 7.23-.525 10.772-.89c6.479-.668 12.97-1.16 19.482-1.372c.038-.001.077 0 .115-.002c2.133-.068 4.268-.108 6.406-.113c2.176.005 4.349.044 6.52.115a241.382 241.382 0 0 1 6.506.3h.002c.144.01.289.023.433.032c4.188.256 8.369.609 12.541 1.039c3.4.351 6.946.67 10.34.861c.144.008.293.022.436.03h.004c1.173.062 2.326.109 3.445.134c1.121.026 2.21.03 3.25.01c2.084-.04 3.982-.181 5.586-.459c.79-.136 1.51-.306 2.146-.513l.012-.004c-.36.41-.824.718-1.299.99a14.703 14.703 0 0 1-1.478.715a23.689 23.689 0 0 1-1.553.555a23.702 23.702 0 0 1-1.586.447c-.154.034-.312.07-.47.103c5.13.952 8.115 1.727 8.435 1.813v.002l-1.367 5.187l.57-.254c.085-.038.17-.074.254-.113l.772-.367c.128-.062.256-.128.386-.193l.108-.207v-.002a19.729 19.729 0 0 0 .757-1.715a27.03 27.03 0 0 0 .794-2.434v-.004c.233-.826.43-1.667.597-2.515v-.004c.167-.85.306-1.707.424-2.567v-.004a39.931 39.931 0 0 0 .25-2.586v-.002a36.124 36.124 0 0 0 .07-2.6v-.001c0-.038-.006-.076-.006-.113a32.712 32.712 0 0 0-.244-3.77a16.976 16.976 0 0 0-.137-.912a22.037 22.037 0 0 0-1.824-1.371s0-.002-.002-.002a31.756 31.756 0 0 0-1.982-1.233a51.549 51.549 0 0 0-4.582-2.343c-1.56-.736-3.165-1.404-4.776-2.053a87.478 87.478 0 0 0-2.43-.945h-.001c-.811-.314-1.633-.61-2.455-.91l.015.001l-.013-.004c.863.143 1.72.314 2.576.502a75.24 75.24 0 0 1 2.55.614h.004c1.101.285 2.197.605 3.286.945c-2.907-7.597-7.328-14.2-12.787-19.486a51.649 51.649 0 0 0-2.815-2.533c-4.827-4.033-10.32-7.114-16.201-9.055a47.262 47.262 0 0 0-7.225-1.772a46.587 46.587 0 0 0-7.49-.605M53.572 9.69a55.98 55.98 0 0 0-.998 3.516l.309-.912s.55 29.102 7.35 29.102h2.171v-6.315h2.617V20.377h-1.734v3.183h-7.719V12.662l27.18.002V23.56h-7.725v-3.184h-1.74v14.707h2.631v6.314h2c6.578 0 7.145-26.997 7.176-28.785a52.132 52.132 0 0 0-.848-2.92C87.823 15.93 89.013 23 89.382 28.09l.14.512l-.085.238c.119 1.992.125 3.66.092 4.73a41.1 41.1 0 0 0 .807-.773c.01-.01.026-.017.035-.027c.008-.008.012-.015.022-.022c.01-.01.02-.014.03-.021c.039-.027.076-.05.114-.075c.017-.006.034-.017.05-.027a1.259 1.259 0 0 1 .153-.053c.01 0 .021-.006.031-.006a.73.73 0 0 1 .19-.017c.017 0 .03.004.045.004a1.046 1.046 0 0 1 .146.02l.028.007l11.603 3.295c.093-2.367.14-12.537-5.187-21.11c.185.21 6.15 7.02 6.55 21.5l1.871.53a.864.864 0 0 1 .616.69a48.61 48.61 0 0 1 .574 5.415c.723 2.987 2.059 6.984 4.2 8.246c.424.201.84.417 1.247.655c-.86-.341-1.746-.587-2.64-.807a44.574 44.574 0 0 0-2.688-.59a83.5 83.5 0 0 0-5.44-.85a121.954 121.954 0 0 0-5.468-.59c-1.83-.153-3.653-.308-5.486-.415c-7.326-.451-14.673-.565-22.024-.572c-7.349.004-14.695.14-22.021.574c-1.832.106-3.658.262-5.487.416c-1.828.155-3.653.35-5.468.59a84.052 84.052 0 0 0-5.44.85a46.3 46.3 0 0 0-2.691.587c-.89.22-1.781.467-2.64.807a16.075 16.075 0 0 1 1.253-.658c2.136-1.265 3.47-5.251 4.193-8.235c.086-1.61.239-3.385.575-5.424a.857.857 0 0 1 .615-.69l1.867-.528c.406-14.48 6.37-21.29 6.557-21.5c-5.328 8.574-5.28 18.743-5.188 21.111l11.602-3.299l.027-.006a.919.919 0 0 1 .145-.02c.013 0 .03-.003.047-.003a.757.757 0 0 1 .189.015c.01 0 .021.007.035.01a.801.801 0 0 1 .143.05c.02.01.034.021.054.032c.04.022.077.045.114.07c.01.008.024.01.033.02c.008.007.012.017.02.024c.01.01.024.016.035.027c.263.263.532.52.806.773c-.116-3.822.068-14.789 5.29-23.879zm7.393 8.37v3.183h.002V18.06zm10.002 0v19.343h2.625v-.002h-2.623v-19.34Zm19.232 17.234c-.866.787-2.045 1.798-3.23 2.64v.003c1.185-.842 2.364-1.854 3.23-2.641zm-42.58.002c-.001.045 0 .114-.002.16l.004-.158zm39.455.295l-.05.145l.04-.032zm-22.355 1.81v.002h2.623v-.002zm-22.09.657c-1.18-.056-2.54.318-3.59.568c-2.099.5-4.847 1.199-5.297 2.299c-.872 2.132-1.3 7.693-1.3 7.693l-.061.037c.01.11.026.331.033.395a88.461 88.461 0 0 1 3.283-.822c1.815-.402 3.645-.74 5.477-1.05c1.836-.305 3.68-.54 5.521-.763c.132-.017.259-.027.389-.045a1.04 1.04 0 0 1-.062-.156a27.86 27.86 0 0 1-.42-1.764a20.709 20.709 0 0 1-1.47-4.375c-.324-1.474-1.323-1.961-2.503-2.017m52.691 0c-1.18.056-2.179.543-2.504 2.017c-.461 2.101-1.126 3.77-1.724 4.914c-.092.409-.181.818-.293 1.225a1.05 1.05 0 0 1-.065.164c.13.013.26.024.387.041a109.451 109.451 0 0 1 11.002 1.813a93.664 93.664 0 0 1 3.28.82c.015-.133.043-.496.07-.822c-.083-.976-.486-5.403-1.264-7.305c-.45-1.1-3.199-1.799-5.297-2.299c-1.05-.25-2.411-.624-3.592-.568m-8.777 3.068c-.287 1.417-.758 3.085-1.53 4.701h.003c.77-1.616 1.24-3.284 1.527-4.701m-37.877 4.578l.012.053a.847.847 0 0 1 0 .443h.002a.854.854 0 0 0 0-.445l-.014-.05z\\\"/><path fill=\\\"#e6ccad\\\" d=\\\"m117.469 72.953l-1.78 12.455v.004a.89.89 0 0 1-.37.6v.002l-2.544 1.781l-.152.78c2.51.617 4.917-1.182 6.275-2.483c.634-2.464 1.192-5.357 1.38-7.455c.145-1.617.155-2.598.087-3.21a2.402 2.402 0 0 0-.154-.671a.772.772 0 0 0-.225-.313c-.118-.099-.42-.28-.703-.453c-.11-.066-.147-.101-.273-.175h-.002c-.454-.265-1-.57-1.54-.862zm-96.557 1.729c-.596.319-1.239.673-1.777.988l-.002.002c-.193.113-.257.167-.416.265c-.286.177-.624.378-.743.477c-.237.197-.435.624-.373 2.14c.021.506.072 1.133.159 1.913l.01.068c.113.993.32 2.188.591 3.451l.008.04a62.622 62.622 0 0 0 .965 3.87c1.081 1.244 2.879 2.58 5.222 1.655l-1.66-1.162a.888.888 0 0 1-.375-.62zm48.219 1.781a13.44 13.44 0 0 0-1.799.14L63.37 89.655c-.001.005-.006.008-.008.012a.885.885 0 0 1-.236.377l-.002.002l-.002.002a.884.884 0 0 1-.408.213l-.002.002l-1.895.422c-.161.669-.707 1.65-2.465 2.187c-2.834.867-20.79 6.22-22.837 5.93c-1.21-.17-3.433-1.412-5.12-2.432a60.981 60.981 0 0 0 2.538 5.278c.367.68.779 1.387 1.209 2.105c.163.273.32.542.492.819c.594.953 1.23 1.924 1.937 2.906a559.204 559.204 0 0 0 10.916-3.35a40.025 40.025 0 0 1 2.346-3.246v-.002a29.76 29.76 0 0 1 2.574-2.838c.872-.834 1.746-1.537 2.582-2.039L54.99 96l.016-.008a7.094 7.094 0 0 1 1.187-.578l.018-.008l.02-.006a3.966 3.966 0 0 1 1.12-.242a32.004 32.004 0 0 1 1.538-.039h.002c.675.003 1.35.025 2.023.067h.002a36.465 36.465 0 0 1 2.012.183a4.322 4.322 0 0 1-.652-.746l-.003-.002a4.485 4.485 0 0 1-.408-.732l-.002-.002c-.207-.47-.301-.88-.379-1.131h.002s.231.18.653.443c.21.131.467.282.767.442h.002c.097.051.225.105.33.158a12.208 12.208 0 0 0 3.418 1.154a11.146 11.146 0 0 0 1.489.166l.1.004a10.373 10.373 0 0 0 1.575-.068c.032-.004.062-.004.094-.008a15.279 15.279 0 0 0 5.596-1.89l.031-.02a14.24 14.24 0 0 0 1.47-.967c.298-.224.405-.322.46-.371l.095-.078l.002-.002s-.004.497-.265 1.187a4.904 4.904 0 0 1-.613 1.137v.002c-.29.402-.678.814-1.192 1.197c1.978-.598 3.376-1 4.42-1.252s1.733-.355 2.293-.355c1.237 0 1.845.515 2.38.97c.1.083.201.171.321.268l.002.002c.633.498.959.76 1.615 1.28a3777.68 3777.68 0 0 1 6.153 4.872h.002c.12.014.573.061.74.08c1.556.18 4.669.536 6.904.74c.714.066 1.393.125 2.051.169c.659.043 1.297.07 1.928.07c.408 0 .789-.013 1.15-.039a56.938 56.938 0 0 0 1.729-3.643c.079-.18.158-.358.236-.54a67.857 67.857 0 0 0 1.602-4.124c-1.426 1.003-4.766 3.264-6.352 3.559c-2.032.378-20.202-4.187-23.072-4.93c-1.325-.343-1.975-.96-2.307-1.527l-1.53-.174h-.001a.886.886 0 0 1-.465-.2a.886.886 0 0 1-.285-.427l-4.078-13.437a13.898 13.898 0 0 0-1.793-.141zm3.33 38.492a253.499 253.499 0 0 1-1.228 2.776h.076l.078-.002c.419 0 .882-.044 1.318-.065c.073-.006.145-.019.217-.025a29.196 29.196 0 0 0 1.82-.217a94.872 94.872 0 0 1-2.281-2.467m3.441 3.653a28.128 28.128 0 0 1-3.12.449h-.003c-.017 0-.034 0-.05.002c-.428.017-.837.054-1.287.054l-.694.006l-.265-.006c-.19.282-.396.546-.614.797c-.058.068-.121.128-.181.194a9.378 9.378 0 0 1-.518.529c-.068.063-.14.12-.209.182c-.18.157-.361.31-.549.453c-.072.055-.145.107-.219.16a12.3 12.3 0 0 1-.63.43l-.09.056a13.76 13.76 0 0 1-1.543.81c-.125.057-.242.107-.365.159c-.492.21-.96.391-1.413.539c6.209 1.072 12.982-.56 16.538-1.646c-.037-.013-.071-.032-.108-.045a11.676 11.676 0 0 1-.984-.416c-.118-.056-.232-.12-.348-.18a11.873 11.873 0 0 1-.72-.402a12.107 12.107 0 0 1-.38-.24a12.322 12.322 0 0 1-.65-.465c-.119-.09-.24-.177-.355-.272a13.009 13.009 0 0 1-.817-.728c-.034-.033-.07-.061-.103-.094v-.002c-.11-.11-.216-.214-.323-.324\\\"/><path fill=\\\"#656c67\\\" d=\\\"M82.215 56.248a71.84 71.84 0 0 0-3.106.383c-.005 0-.011 0-.017.002a71.755 71.755 0 0 0-3.067.515a87.27 87.27 0 0 0-9.879 2.477l-.084.025c-1.485.465-2.92.957-4.306 1.461a106.266 106.266 0 0 0-4.354 1.694a251.908 251.908 0 0 1 5.787-.213c1.979-.05 4.003-.078 6.07-.078h.005c2.416 0 4.763.039 7.052.107l.243.004a55.567 55.567 0 0 0 2.586-2.676a55.612 55.612 0 0 0 2.402-2.844c.24-.302.466-.592.668-.857m21.88 1.215a49.678 49.678 0 0 1-2.708 1.814c-2.761 1.722-5.654 3.17-8.51 4.387c2.912.284 5.63.6 8.13.932c2.502.33 4.786.674 6.827 1.01c2.04.335 3.84.662 5.371.958c1.531.297 2.796.563 3.77.778l1.906-7.225c-2.073-.47-5.453-1.176-9.938-1.914h-.002a218.654 218.654 0 0 0-4.845-.74zm-53.013 1.166a96.126 96.126 0 0 0-5.365 1.412c-1.75.515-3.46 1.071-5.125 1.658a107.769 107.769 0 0 0-4.86 1.846a112.947 112.947 0 0 0-4.568 1.982a230.054 230.054 0 0 1 6.885-1.004a230.92 230.92 0 0 1 6.912-.795l.047-.04a47.386 47.386 0 0 1 6.074-5.06zm-26.926.547c-1.865.36-3.386.686-4.512.941l.53 2a66.471 66.471 0 0 1 3.982-2.941m88.322 9.697l-1.956 13.709a.905.905 0 0 1-.124.338v.002a.902.902 0 0 1-.246.264v.002l-2.718 1.9l-4.621 3.234a.896.896 0 0 1-.588.153l-.02.002l-22.127-2.514a.891.891 0 0 1-.752-.623l-.002-.002l-1.386-4.567l-2.598-8.55c-.801-.207-2.543-.62-4.375-.813a17.664 17.664 0 0 0-1.832-.103c-1.204 0-2.49.16-3.608.353c-1.118.194-2.07.423-2.603.56l-3.986 13.12v.002c-.001.002-.004.003-.004.006a.885.885 0 0 1-.242.385a.887.887 0 0 1-.41.216L36.153 90.87a.852.852 0 0 1-.506-.055c-.066-.025-.137-.04-.197-.082l-4.316-3.023l-3.024-2.117a.89.89 0 0 1-.37-.617l-.003-.002l-1.543-12.524l-.435-3.521c-.822.158-1.565.307-2.225.449c-.47.258-.935.515-1.392.773l2.101 17.008l10.664 7.469l26.91-5.988l3.973-13.086v-.002a.893.893 0 0 1 .266-.412a.892.892 0 0 1 .443-.21c1.007-.161 1.887-.244 2.633-.244c.738 0 1.626.083 2.629.245a.883.883 0 0 1 .44.205l.003.004l.008.007a.883.883 0 0 1 .258.405v.002l4.074 13.412l27.06 3.078l10.376-7.27l2.166-15.152a158.3 158.3 0 0 0-3.668-.748z\\\"/><path fill=\\\"#c7b39a\\\" d=\\\"M69.26 64.92c-1.605 0-3.184.016-4.735.047h-.047a238.71 238.71 0 0 0-4.613.137a240.704 240.704 0 0 0-8.644.494h-.002a106.508 106.508 0 0 0-3.647 1.87l-.064.034l-.002.002a95.142 95.142 0 0 0-2.803 1.566c-1.541.898-2.402 1.466-2.441 1.494h-.002l-2.645 1.764l-2.643 1.762l-.003.002l2.142-3.074l1.492-2.141v-.002a36.339 36.339 0 0 1 1.891-2.467a225.57 225.57 0 0 0-8.117 1.059c-.251.037-.501.079-.752.117c-2.272.346-4.36.693-6.112 1.016l.909 7.363l1.037 8.4l6.69 4.686l21.236-4.723l1.988-6.549l1.986-6.547a.895.895 0 0 1 .156-.29a.906.906 0 0 1 .248-.217a.72.72 0 0 1 .202-.09c.073-.02.909-.247 2.058-.488a30.253 30.253 0 0 1 2.606-.443l.03-.007l3.9-2.355a30.352 30.352 0 0 0 3.357-2.375c-.76-.014-1.545-.015-2.316-.024c-.78-.007-1.56-.02-2.34-.021m18.496.709a88.579 88.579 0 0 1-6.233 1.89a91.51 91.51 0 0 1-5.123 1.198c-2.975.605-4.914.838-5.134.853l-.254.016l-.246.02c1.388.12 2.737.366 3.755.587c1.021.223 1.71.42 1.776.44a.9.9 0 0 1 .377.223a.905.905 0 0 1 .228.375l3.96 13.033l21.208 2.41l6.744-4.723l1.917-13.404a210.375 210.375 0 0 0-10.147-1.582a231.476 231.476 0 0 0-5.916-.705a240.712 240.712 0 0 0-6.912-.631m.998 3.459c.342-.012.68.033 1.012.125h.006l.007.004c.329.093.65.232.96.418l.001.002c.313.187.614.418.9.69l.003.001a6.848 6.848 0 0 1 .834.961c.244.337.47.705.675 1.102c.205.395.386.82.545 1.265l.034.096c.155.448.288.917.39 1.404a12.3 12.3 0 0 1 .225 1.569a7.473 7.473 0 0 1-.022 1.55a4.542 4.542 0 0 1-.123.618a3.454 3.454 0 0 1-.19.525c.64-.076 1.155-.024 1.57.098h.001c.414.121.725.313.96.517c.233.205.388.422.485.594c.098.172.14.3.147.326a3.28 3.28 0 0 0-.705-.246a3.968 3.968 0 0 0-.738-.092c-.508-.018-1.05.041-1.649.131c-.602.09-1.262.21-2.004.313a20.7 20.7 0 0 1-2.469.203h-.005c-.686.024-1.345.043-1.95-.008h-.002a5.307 5.307 0 0 1-.86-.137h-.003a3.178 3.178 0 0 1-.76-.295a2.528 2.528 0 0 1-.64-.502a2.93 2.93 0 0 1-.498-.757a4.741 4.741 0 0 1-.336-1.067a8.804 8.804 0 0 1-.155-1.422a14.235 14.235 0 0 1 .032-1.578a12.577 12.577 0 0 1 .199-1.476v-.002c.56-2.831 2.063-4.857 4.123-4.93M48.723 70.15c.007 0 .014.004.021.004c.336 0 .658.048.967.147h.002c.312.1.61.251.89.443l.008.004l.004.004c.845.583 1.537 1.562 2.024 2.797l.007.015l.006.018c.158.405.295.836.407 1.291l.004.016a12.553 12.553 0 0 1 .264 1.457l.001.01v.005a14.198 14.198 0 0 1 .102 1.567v.004a8.628 8.628 0 0 1-.09 1.412v.002a4.321 4.321 0 0 1-.287 1.039v.002a2.56 2.56 0 0 1-.461.726c-.901.982-2.437.886-4.156.903c-.28.007-.545.01-.807.013c-.309.007-.603.011-.889.004c-1.314-.002-2.393-.031-3.332.036c-.014 0-.03 0-.045.002a7.87 7.87 0 0 0-1.324.199h-.002c-.413.103-.803.25-1.18.453c.01-.023.058-.134.163-.295c.1-.156.259-.36.48-.58l.022-.024l.013-.011a4.54 4.54 0 0 1 .897-.664c.209-.12.436-.236.699-.34a6.519 6.519 0 0 1 .82-.262c-.003-.007-.004-.02-.007-.027a4.724 4.724 0 0 1-.303-.998l-.016-.08a9.841 9.841 0 0 1-.142-1.36c-.001-.02-.005-.033-.006-.054c-.001-.017.002-.033.002-.05a9.871 9.871 0 0 1 .064-1.527a9.543 9.543 0 0 1 .287-1.423l.026-.09c.132-.454.294-.886.484-1.291c.196-.419.42-.81.668-1.166a6.822 6.822 0 0 1 .768-.924a5.435 5.435 0 0 1 .922-.752l.046-.031c.299-.187.609-.335.924-.44c.022-.007.043-.015.065-.021c.316-.099.639-.153.962-.158c.01 0 .019-.004.028-.004z\\\"/><path fill=\\\"#ebd599\\\" d=\\\"M90.2 35.297c-.867.787-2.046 1.799-3.231 2.64a21.66 21.66 0 0 1-.12 1.29v.002a24.611 24.611 0 0 1-.306 1.894v.004c-.286 1.417-.756 3.085-1.527 4.701c.09.007.18.018.27.026c1.284.104 2.57.218 3.855.353a.85.85 0 0 1 0-.45v-.001c.27-.983.476-1.984.632-2.967v-.002a35.6 35.6 0 0 0 .332-2.865v-.002c.07-.916.103-1.781.114-2.563v-.002a42.587 42.587 0 0 0-.02-2.056zm-42.579.002l-.004.158a44.69 44.69 0 0 0-.013 1.713c0 .106.002.21.004.318c.012.708.042 1.48.101 2.295l.018.25a35.65 35.65 0 0 0 .338 2.842c.15.94.346 1.892.601 2.83l.014.05a.854.854 0 0 1 0 .446c.009 0 .018 0 .027-.002a167.19 167.19 0 0 1 4.094-.38a17.47 17.47 0 0 1-.524-1.217c-.166-.43-.309-.855-.44-1.276a22.738 22.738 0 0 1-.562-2.207a24.456 24.456 0 0 1-.306-1.894a20.997 20.997 0 0 1-.117-1.29a28.886 28.886 0 0 1-1.63-1.255a42.552 42.552 0 0 1-1.437-1.24c-.049-.045-.117-.098-.164-.141\\\"/><path fill=\\\"#2d3136\\\" d=\\\"M88.756 69.09c-2.747.097-4.507 3.666-4.356 7.984c.151 4.314 2.46 4.284 5.205 4.188c3.693-.07 5.72-1.202 7.569-.309c-.027-.103-.605-1.838-3.162-1.533c.295-.642.427-1.51.334-2.695c-.338-4.308-2.843-7.731-5.59-7.635m-40.033 1.06c-2.75.024-5.41 3.563-5.246 7.877c.044 1.124.21 1.935.474 2.52c-2.397.6-3.056 2.083-3.094 2.176c1.51-.815 3.216-.695 5.883-.692c.286.007.58.005.889-.002c.262-.004.526-.008.805-.015c2.75-.027 5.036.234 4.996-4.084c-.042-4.317-1.96-7.806-4.707-7.78m39.767 1.666c.021 0 .038.012.059.012a1.388 1.388 0 0 1 .535.117a1.404 1.404 0 0 1 .377.244l.043.04a1.4 1.4 0 0 1 .281.398l.02.041c.069.16.109.336.113.521l.002.006v.006a1.399 1.399 0 0 1-.098.535c0 .003 0 .006-.002.008l-.002.004a1.41 1.41 0 0 1-.29.447a1.4 1.4 0 0 1-.985.436a1.517 1.517 0 0 1-.55-.106a1.265 1.265 0 0 1-.433-.28l-.029-.026a1.322 1.322 0 0 1-.215-.305c-.116-.2-.2-.42-.205-.668c-.005-.26.08-.492.2-.703a1.23 1.23 0 0 1 .162-.25l.002-.002c.029-.032.06-.06.091-.09a1.27 1.27 0 0 1 .346-.242c.038-.018.078-.026.117-.041a1.522 1.522 0 0 1 .387-.086c.026-.002.048-.015.074-.016m-39.38 1.047c1.938-.13 2.02 2.804.1 2.805c-.009 0-.017.006-.026.006c-.02 0-.036-.01-.055-.01a1.54 1.54 0 0 1-.377-.064a1.35 1.35 0 0 1-.22-.088a1.268 1.268 0 0 1-.22-.139a1.38 1.38 0 0 1-.57-1.066c-.011-.433.186-.81.486-1.077c.09-.084.188-.158.305-.216c.034-.017.07-.026.106-.04a1.5 1.5 0 0 1 .47-.11z\\\"/><path fill=\\\"#edf6fa\\\" d=\\\"M88.49 71.816a1.404 1.404 0 1 0 .05 2.808a1.404 1.404 0 0 0-.05-2.808m-39.379 1.05a1.405 1.405 0 1 0 .071 2.808a1.405 1.405 0 0 0-.07-2.809z\\\"/><path fill=\\\"#ebd599\\\" d=\\\"m52.883 12.295l-.309.912c-1.164 4.588-2.811 13.146-1.828 22.498c.463.371.95.735 1.426 1.055a.866.866 0 0 1 .375.699c.004.045.102 4.373 2.014 8.055c.026.055.048.113.066.171c4.755-.324 9.521-.454 14.28-.457c4.758.003 9.523.14 14.277.467a.88.88 0 0 1 .068-.181c1.911-3.682 2.012-8.01 2.012-8.055a.876.876 0 0 1 .379-.7c.46-.31.926-.663 1.38-1.023l.051-.144c1.001-9.713-.825-18.585-1.984-22.98c-.03 1.787-.598 28.784-7.176 28.784h-2v1.912h-13.51v-1.912h-2.172c-6.8 0-7.35-29.101-7.35-29.101zm36.5 15.795c.018.25.04.51.055.75l.083-.238zm-43.457 6.476L32.796 38.3c-.81 5.275-.535 9.135-.415 10.357l.06-.037s.43-5.561 1.301-7.693c.45-1.1 3.198-1.8 5.297-2.299c2.098-.5 5.444-1.5 6.094 1.45a20.703 20.703 0 0 0 1.469 4.374c-.828-4.023-.775-7.943-.676-9.885zm45.965 0c.107 2.028.148 6.215-.8 10.424c.599-1.144 1.264-2.813 1.725-4.914c.65-2.948 3.997-1.948 6.096-1.449c2.098.5 4.847 1.2 5.297 2.299c.778 1.902 1.181 6.329 1.264 7.305c.127-1.575.283-5.163-.45-9.93zm15.316 8.334c.205 3.85-.101 6.375-.121 6.518c-.007.042-.017.078-.027.115a26 26 0 0 1 .453.137c1.316.432 2.64.884 3.894 1.477c-2.14-1.263-3.476-5.26-4.199-8.247m-76.6.008c-.723 2.984-2.057 6.97-4.193 8.235c1.253-.592 2.576-1.044 3.893-1.475c.15-.048.298-.09.449-.139c-.01-.038-.02-.071-.027-.111c-.022-.143-.326-2.666-.121-6.51z\\\" opacity=\\\".8\\\"/><path fill=\\\"#cb3349\\\" d=\\\"M57.883 14.979v6.265h3.082V18.06h6.379v19.342h-.002v.002h-2.623v3.586h8.873v-3.586h-2.625V18.061h6.379v3.181h3.082V14.98z\\\"/><path fill=\\\"#c7b39a\\\" d=\\\"M118.898 86.092c-1.36 1.303-3.774 3.108-6.289 2.48c-.104.54-.189 1.031-.359 1.717c1.455.337 3.84.6 4.977.38c.485-.526 1.108-2.387 1.671-4.577m-99.564 1.805c.646 2.273 1.35 4.215 1.848 4.716c1.259.222 4.047-.164 5.416-.566a46.34 46.34 0 0 1-.397-1.346l-1.644-1.15c-2.344.925-4.141-.411-5.223-1.654m90.955 1.634l-.898.63l-2.418 1.696l-2.621 1.836a.91.91 0 0 1-.612.157l-26.078-2.967l-.369-.041c.332.567.981 1.184 2.307 1.527c2.87.743 21.04 5.308 23.072 4.93c1.585-.295 4.926-2.556 6.351-3.559c.27-.77.537-1.545.79-2.351c.17-.617.328-1.236.476-1.858m-49.473 1.15l-25.9 5.77a1.006 1.006 0 0 1-.195.018a.883.883 0 0 1-.512-.162l-1.01-.701l-3.025-2.118v-.007l-1.22-.854c.085.275.183.543.28.81l-.004.005a64.11 64.11 0 0 0 1.164 2.927c1.687 1.02 3.91 2.261 5.12 2.432c2.048.29 20.004-5.063 22.838-5.93c1.759-.537 2.303-1.52 2.464-2.19m19.873 31.094c-3.555 1.088-10.328 2.72-16.537 1.647c-1.612.527-2.891.713-3.015.728a10.8 10.8 0 0 0-.764.12c3.483.954 7.039 1.368 10.545 1.132a42.064 42.064 0 0 0 12.924-2.962a11.926 11.926 0 0 1-3.153-.665\\\"/><path fill=\\\"#2d3136\\\" d=\\\"M68.91.52c-10.884 0-21.335 3.566-30.22 10.308c-8.595 6.524-15.135 15.884-18.938 26.44a50.473 50.473 0 0 0-4.04 1.673c-1.61.772-3.193 1.642-4.661 2.795l-.26.203l-.098.362a20.42 20.42 0 0 0-.332 1.422c-.092.46-.162.924-.228 1.388a33.11 33.11 0 0 0-.27 2.787a34.97 34.97 0 0 0 .166 5.588a35.045 35.045 0 0 0 1.037 5.508c.256.905.55 1.8.899 2.688a18.312 18.312 0 0 0 .9 1.98l.186.328c.07.12.116.208.222.367l.19.293l.295.15c.314.164.572.286.857.419l.832.375c.153.062.297.125.453.187c-3.77 3.49-7.87 8.02-11.418 13.623L0 86.474l6.293-5.523c.106-.093 5.382-4.663 14.182-9.834l.12 1.012c-.572.298-3.342 1.752-4.163 2.437c-1.362 1.134-1.428 2.89-1.063 6.166c.185 1.68.818 4.94 1.666 7.928c1.461 5.146 2.533 6.055 3.475 6.27c.423.1.975.146 1.59.146c1.683 0 3.847-.328 5.252-.752c1.653 5.14 3.993 9.777 6.845 13.846l-.412.12c-1.716-.797-7.713-3.573-9.73-4.481l-4.215-1.895l2.494 3.889c.182.28 4.483 6.99 7.998 11.51c3.284 4.22 7.782 8.533 16.271 8.533a28.9 28.9 0 0 0 3.192-.188a417.47 417.47 0 0 0 5.883-.701c8.91 3.274 18.737 3.473 28.06-.059a40.98 40.98 0 0 0 7.01-3.462c.043-.006.086-.018.127-.028c3.468-.834 7.4-1.772 9.344-2.318c.315-.086.7-.177 1.11-.274c2.705-.622 7.228-1.67 9.64-6.496c2.429-4.87 6.394-12.329 6.437-12.404l1.85-3.479l-3.611 1.569c-.193.086-4.764 2.079-7.143 3.328c-.086.046-.182.086-.28.133c1.93-3.936 2.904-7.09 3.245-8.297c1.328.32 3.303.281 4.754.281a8.26 8.26 0 0 0 1.926-.244c.94-.24 1.668-.865 3.04-6.176c.795-3.085 1.37-6.446 1.526-8.172c.305-3.362.207-5.16-1.168-6.297c-.683-.563-2.687-1.645-3.707-2.18l.049-.366c.52.124.799.197.822.203l.924-3.512a39.62 39.62 0 0 1 1.064-.432a55.505 55.505 0 0 0 1.676-.681l.832-.375c.286-.133.543-.256.858-.418l.294-.153l.19-.29c.103-.16.155-.249.222-.368l.182-.328c.123-.222.231-.438.334-.656c.206-.44.394-.883.57-1.326c.35-.888.643-1.78.899-2.686a35.5 35.5 0 0 0 1.035-5.508c.209-1.856.26-3.725.166-5.59a30.765 30.765 0 0 0-.268-2.785a21.03 21.03 0 0 0-.228-1.388a17.3 17.3 0 0 0-.332-1.422l-.1-.36l-.257-.203c-1.468-1.153-3.053-2.025-4.663-2.797a50.068 50.068 0 0 0-4.04-1.675c-3.803-10.553-10.343-19.914-18.938-26.438C90.243 4.085 79.795.52 68.91.52m-.002 2.408c20.234 0 38.77 13.192 46.52 33.453a67.075 67.075 0 0 0-3.291-.947c-1.692-.435-3.403-.829-5.13-1.114c.823.3 1.645.597 2.456.91c.815.303 1.627.62 2.432.946c1.61.649 3.215 1.317 4.775 2.053a51.549 51.549 0 0 1 4.582 2.343c1.359.783 2.66 1.64 3.81 2.608c.05.29.1.61.137.912c.053.427.098.854.135 1.285c.073.861.107 1.73.113 2.598a37.84 37.84 0 0 1-.32 5.191c-.235 1.723-.554 3.437-1.022 5.09a26.912 26.912 0 0 1-.79 2.434a20.47 20.47 0 0 1-.49 1.164a14.204 14.204 0 0 1-.27.552l-.106.21c-.13.065-.263.13-.388.19l-.772.368c-.271.126-.55.246-.824.369l1.367-5.19c-.318-.085-3.307-.86-8.44-1.812c.16-.033.32-.07.475-.105a23.675 23.675 0 0 0 3.139-1.002a14.702 14.702 0 0 0 1.478-.715c.475-.272.94-.58 1.301-.99c-5.14 1.68-15.769.917-25.22-.057c-8.636-.892-17.299-1.47-26.003-1.488c-8.704.02-17.36.596-26.002 1.488c-9.448.973-20.072 1.736-25.214.057c.36.41.828.718 1.302.99c.474.269.973.5 1.477.715c1.017.41 2.07.737 3.135 1.002c.373.09.76.172 1.136.242c-4.68.89-7.4 1.593-7.7 1.676l1.427 5.447a.97.97 0 0 1-.078.072c-.49-.219-1.085-.5-1.516-.7l-.771-.366a12.6 12.6 0 0 1-.387-.192l-.11-.209a17.801 17.801 0 0 1-.751-1.716a26.841 26.841 0 0 1-.797-2.434c-.467-1.653-.782-3.367-1.02-5.09a38.235 38.235 0 0 1-.322-5.191c.01-.868.04-1.737.115-2.598c.034-.43.085-.86.135-1.287c.04-.302.086-.62.135-.91c1.15-.97 2.453-1.828 3.81-2.61a52.11 52.11 0 0 1 4.578-2.341c1.564-.736 3.166-1.404 4.776-2.053c.809-.325 1.62-.644 2.432-.945a128.13 128.13 0 0 1 2.459-.91c-1.727.284-3.437.679-5.133 1.113c-1.1.285-2.198.606-3.287.947C30.14 16.12 48.67 2.928 68.908 2.928M53.572 9.69c-5.22 9.09-5.405 20.056-5.289 23.88a29.167 29.167 0 0 1-.806-.774c-.011-.011-.025-.017-.036-.027c-.007-.008-.011-.017-.02-.024c-.008-.01-.022-.012-.032-.02a1.211 1.211 0 0 0-.114-.07c-.02-.01-.033-.023-.054-.033a.801.801 0 0 0-.143-.049c-.014-.003-.025-.01-.035-.01a.756.756 0 0 0-.19-.015c-.016 0-.033.004-.046.004a.918.918 0 0 0-.145.02l-.027.005l-11.602 3.299c-.092-2.368-.14-12.537 5.188-21.111c-.187.21-6.15 7.02-6.557 21.5l-1.867.529a.857.857 0 0 0-.615.69c-1.138 6.902-.484 11.73-.453 11.933c.007.04.017.073.027.111c-.151.048-.3.091-.45.139c-1.765.578-3.54 1.194-5.146 2.133c.86-.34 1.75-.587 2.64-.807a46.3 46.3 0 0 1 2.692-.588a84.019 84.019 0 0 1 5.44-.85c1.815-.24 3.64-.434 5.468-.59c1.83-.153 3.655-.31 5.487-.415c7.326-.433 14.672-.57 22.021-.574c7.351.007 14.698.12 22.024.572c1.833.107 3.657.262 5.486.416c1.83.155 3.65.353 5.469.59a83.5 83.5 0 0 1 5.44.85c.9.17 1.796.362 2.687.59c.894.22 1.78.465 2.64.806c-1.606-.94-3.38-1.553-5.142-2.131a23.617 23.617 0 0 0-.453-.137c.01-.037.02-.073.027-.115c.028-.203.684-5.03-.453-11.934a.864.864 0 0 0-.616-.69l-1.87-.528c-.402-14.48-6.366-21.29-6.551-21.5c5.328 8.573 5.28 18.742 5.187 21.109L91.18 32.58c-.01-.003-.02-.004-.028-.008a1.044 1.044 0 0 0-.146-.02c-.014 0-.028-.003-.045-.003a.73.73 0 0 0-.19.017c-.01 0-.02.006-.03.006a1.26 1.26 0 0 0-.153.053c-.017.01-.034.021-.05.027c-.039.025-.076.048-.114.075c-.01.007-.021.01-.031.021c-.01.007-.014.015-.022.021c-.009.01-.025.018-.035.028a41.1 41.1 0 0 1-.807.773c.117-3.823-.069-14.79-5.287-23.879c.11.32 4.252 12.435 2.822 26.014c-.466.371-.947.735-1.421 1.055a.876.876 0 0 0-.38.699c0 .045-.1 4.373-2.011 8.055a.88.88 0 0 0-.068.181c-4.754-.327-9.519-.463-14.278-.466c-4.758.003-9.524.133-14.279.457a1.192 1.192 0 0 0-.067-.172c-1.911-3.682-2.01-8.01-2.013-8.055a.866.866 0 0 0-.375-.7c-.476-.32-.963-.683-1.426-1.054c-1.428-13.579 2.716-25.695 2.826-26.014zm1.996 2.971V23.56h7.72v-3.183h1.734v14.705h-2.618v8.227h13.51v-8.227h-2.63V20.375h1.74v3.184h7.724V12.664Zm2.315 2.316h22.545v6.264h-3.082V18.06h-6.377v19.342h2.623v3.588h-8.873v-3.588h2.625V18.061h-6.377v3.183h-3.084zM45.926 34.566c-.113 2.225-.168 7.05 1.096 11.649c.018.055.037.108.062.156c-.13.018-.257.028-.389.045c-1.842.223-3.685.458-5.521.764c-1.832.31-3.662.646-5.477 1.048a88.459 88.459 0 0 0-3.283.823c-.089-.777-.5-5.004.383-10.752zm45.965 0l13.132 3.735c.884 5.755.468 9.98.38 10.752a93.664 93.664 0 0 0-3.28-.82a109.45 109.45 0 0 0-11.002-1.813c-.127-.017-.257-.028-.387-.041a1.05 1.05 0 0 0 .065-.164c1.262-4.6 1.21-9.425 1.092-11.649m-1.692.729c.08 2.32.022 6.526-1.058 10.46a.856.856 0 0 0 0 .452a172.45 172.45 0 0 0-4.127-.379c1.543-3.234 1.882-6.68 1.955-7.893c1.185-.843 2.364-1.853 3.23-2.64m-42.58.002c.866.787 2.043 1.796 3.233 2.639c.07 1.212.408 4.65 1.949 7.882c-1.376.11-2.75.238-4.123.383a.847.847 0 0 0 0-.443c-1.08-3.93-1.135-8.137-1.059-10.461m20.942 19.978h.003c1.48.004 2.96.018 4.438.041a92.314 92.314 0 0 0-7.201 1.9c-7.685 2.368-14.213 5.419-18.656 7.755c4.956-4.741 10.225-7.4 10.828-7.694l.054-.03l4.014-1.901c2.177-.044 4.35-.068 6.52-.07zm-14.659.295a96.085 96.085 0 0 0-7.56 1.79c-15.39 4.306-27.853 11.78-35.008 16.751c7.363-8.803 18.087-15.536 20.883-17.209c.304-.04.603-.074.908-.103c1.064-.117 2.131-.2 3.205-.283c2.144-.162 4.288-.31 6.442-.428c3.708-.21 7.42-.382 11.13-.518m31.71.09c2.914.122 5.832.262 8.747.428c2.101.118 4.194.26 6.288.416c.006 0 .015.004.021.008c-.212.148-.427.309-.64.46c-8.574 5.982-18.481 8.516-24.194 9.54c4.036-3.34 7.183-7.28 8.77-9.428a47.32 47.32 0 0 0 1.007-1.424zm-3.397.588c-.202.265-.427.556-.668.858a55.59 55.59 0 0 1-4.988 5.519a246.38 246.38 0 0 0-7.297-.111c-4.136 0-8.1.109-11.868.29c5.317-2.205 11.711-4.36 18.631-5.656a71.798 71.798 0 0 1 6.19-.9m21.88 1.215c6.933.98 12.022 2.028 14.786 2.654l-1.906 7.225c-3.894-.858-12.45-2.544-24.098-3.678c3.807-1.623 7.68-3.656 11.219-6.201zm-53.011 1.166a47.573 47.573 0 0 0-6.123 5.1a230.85 230.85 0 0 0-13.799 1.798c5.891-2.71 12.616-5.201 19.922-6.898m-26.928.547a66.47 66.47 0 0 0-3.982 2.941l-.53-2a147.89 147.89 0 0 1 4.512-.941m45.106 5.742c1.58 0 3.128.02 4.656.047a30.352 30.352 0 0 1-3.36 2.375l-3.898 2.355c-2.448.3-4.572.905-4.695.938a.72.72 0 0 0-.201.09a.895.895 0 0 0-.403.508l-3.976 13.095l-21.237 4.723l-6.691-4.686L27.514 68.6c3.797-.7 8.88-1.51 14.982-2.192a33.581 33.581 0 0 0-1.892 2.47l-3.635 5.214l5.293-3.527c.078-.056 3.448-2.274 8.959-4.967a240.52 240.52 0 0 1 18.04-.68zm18.494.711c9.675.743 17.573 1.933 22.974 2.916l-1.916 13.406l-6.744 4.723l-21.209-2.41l-3.959-13.033a.9.9 0 0 0-.605-.598c-.132-.04-2.755-.787-5.541-1.027l.51-.038c.44-.03 7.756-.926 16.49-3.939m24.722 3.244a158.3 158.3 0 0 1 3.669.748l-2.167 15.153l-10.374 7.27l-27.061-3.08l-4.074-13.411a.879.879 0 0 0-.71-.623c-1.002-.162-1.89-.244-2.628-.244c-.746 0-1.626.082-2.633.244a.888.888 0 0 0-.709.623L61.818 88.64l-26.91 5.986l-10.666-7.47l-2.101-17.007a155.2 155.2 0 0 1 1.392-.777c.663-.138 1.405-.29 2.227-.45l1.978 16.05a.891.891 0 0 0 .373.619l7.34 5.137a.868.868 0 0 0 .703.14l22.125-4.925a.886.886 0 0 0 .656-.604l3.987-13.121c1.067-.275 3.804-.914 6.213-.914c2.398 0 5.137.64 6.205.916l3.986 13.119a.89.89 0 0 0 .752.623l22.127 2.514a.886.886 0 0 0 .605-.157l7.342-5.132a.907.907 0 0 0 .37-.606zm4.99 4.078c1.08.587 2.19 1.217 2.518 1.492c.33.266.583.96.291 4.194c-.354 3.963-2.02 10.914-3.05 12.033c-1.137.22-3.522-.044-4.977-.38c.248-.999.322-1.48.523-2.499l2.545-1.78a.89.89 0 0 0 .371-.603zm-96.556 1.73l1.61 13.089a.888.888 0 0 0 .374.619l3.305 2.312c.126.45.257.902.397 1.346c-1.37.402-4.157.788-5.416.566c-1.047-1.053-2.997-8.3-3.424-12.146c-.345-3.118-.103-3.79.215-4.053c.368-.308 1.745-1.093 2.939-1.732zm48.223 1.782c.51 0 1.115.049 1.798.14l4.082 13.44c.103.34.396.585.748.625l1.899.215l26.078 2.967a.91.91 0 0 0 .611-.157l2.621-1.836l2.418-1.697l.899-.629a52.65 52.65 0 0 1-.477 1.858c-1.248 3.995-2.718 7.535-4.355 10.658c-.36.024-.744.039-1.15.039c-1.263 0-2.552-.108-3.979-.236c-2.475-.23-6.406-.677-7.645-.823c-1.07-.85-4.727-3.757-7.769-6.152c-.118-.097-.221-.186-.324-.27c-.534-.454-1.142-.97-2.38-.97c-1.12 0-2.755.411-6.712 1.607c2.058-1.536 2.07-3.523 2.07-3.523s-2.932 2.722-7.654 3.332c-4.721.605-8.428-2.295-8.428-2.295c.156.504.374 1.644 1.444 2.615a34.338 34.338 0 0 0-4.04-.252c-.515 0-1.038.015-1.537.04c-2.907.15-6.994 4.541-9.867 8.968a559.225 559.225 0 0 1-10.916 3.35c-4.76-6.597-7.104-13.337-7.34-14.036l.004-.003c-.097-.268-.195-.536-.281-.811l1.22.854v.007l3.026 2.118l1.01.7a.883.883 0 0 0 .512.163c.063 0 .13-.005.195-.018l27.797-6.191a.886.886 0 0 0 .656-.606l3.963-13.05a13.42 13.42 0 0 1 1.803-.141m13.074 19.92c.225 0 .226 0 .603.322c.12.1.252.21.397.328c3.586 2.82 8.023 6.354 8.068 6.387l.307.246l.387.043c.052.007 5.115.602 8.107.877c1.497.133 2.85.25 4.227.25c2.316 0 4.11-.348 5.478-1.066a77.695 77.695 0 0 1 3.33-1.614a541.942 541.942 0 0 0-4.607 8.936c-1.83 3.664-5.28 4.467-7.8 5.049c-.44.1-.857.194-1.231.3c-1.892.53-5.796 1.466-9.24 2.29c-.956.228-1.887.45-2.745.66a11.61 11.61 0 0 1-2.709.334c-2.55 0-4.779-.924-6.62-2.75a90.88 90.88 0 0 1-5.06-5.473l-1.021-1.215s-.29-.438-.484-.578l-.012-.01c-.003 0-.004 0-.004-.004c-.126.133-.201.562-.201.562l-.621 1.653c-.014.036-.367.97-2.123 4.896c-1.703 3.82-7.773 4.605-7.829 4.612c-.352.043-.626.093-.974.152c-1.027.18-2.936.518-10.348 1.355c-.997.114-1.97.17-2.883.17c-7.287 0-11.086-3.587-14.101-7.47c-1.726-2.217-3.688-5.046-5.22-7.31c2.811 1.291 5.768 2.663 5.818 2.683l.462.215l.49-.141a510.28 510.28 0 0 0 14.749-4.48l.472-.153l.27-.422c4.139-6.548 7.375-8.086 7.951-8.115a27.17 27.17 0 0 1 1.398-.035c5.757 0 10.562 1.782 10.612 1.799l.441.166l.451-.143c7.322-2.27 10.665-3.307 11.815-3.307zm-9.748 18.57a88.84 88.84 0 0 0 2.283 2.469a29.17 29.17 0 0 1-2.037.242c-.437.021-.9.068-1.32.067h-.155a253.5 253.5 0 0 0 1.229-2.778m3.441 3.654l.322.327c2.115 2.094 4.736 3.294 7.618 3.506a42.064 42.064 0 0 1-12.924 2.962c-3.506.236-7.062-.178-10.545-1.132c.293-.054.506-.09.764-.12c.285-.036 6.532-.852 9.345-5.037l.266.006l.693-.006c.468 0 .892-.04 1.338-.056c1.064-.093 2.1-.243 3.123-.45\\\"/>\"\n\t\t},\n\t\t\"travis-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#353635\\\" d=\\\"M53.605 59.867h-4.546v-2.351H60.92v2.351h-4.528v13.385h-2.787V59.859Zm7.054 1.568h2.299l.191 2.09h.087c.845-1.542 2.09-2.378 3.353-2.378c.61 0 .984.07 1.35.244l-.488 2.404a3.807 3.807 0 0 0-1.22-.192c-.94 0-2.072.644-2.786 2.438v7.202H60.66V61.426Zm14.83 4.267c-.026-1.263-.558-2.317-2.142-2.317c-1.176 0-2.282.523-3.31 1.15l-1.019-1.855c1.307-.819 2.961-1.541 4.834-1.541c2.96 0 4.397 1.802 4.397 5.094v7.002h-2.264l-.209-1.307h-.087c-1.045.889-2.264 1.585-3.657 1.585c-2.064 0-3.51-1.393-3.51-3.466c0-2.525 2.116-3.849 6.95-4.38zm-2.587 5.652c.976 0 1.716-.47 2.587-1.29v-2.647c-3.205.418-4.267 1.263-4.267 2.439c0 1.045.697 1.515 1.69 1.515zm6.14-9.928h2.813l1.88 6.13c.314 1.159.671 2.352.985 3.571h.087c.348-1.22.696-2.412 1.019-3.57l1.88-6.122h2.674l-4.006 11.808h-3.222zm12.366-3.631c0-.94.723-1.585 1.715-1.585c.984 0 1.707.644 1.707 1.585c0 .905-.723 1.567-1.707 1.567c-.984 0-1.715-.662-1.715-1.567m.313 3.631h2.787v11.826H91.72zm5.66 8.682c1.063.819 2.073 1.324 3.275 1.324c1.271 0 1.872-.61 1.872-1.42c0-.992-1.263-1.428-2.525-1.915c-1.55-.566-3.31-1.455-3.31-3.431c0-2.073 1.655-3.536 4.311-3.536c1.629 0 2.961.67 3.919 1.42l-1.28 1.68c-.819-.61-1.655-1.01-2.613-1.01c-1.175 0-1.724.557-1.724 1.306c0 .906 1.176 1.306 2.438 1.742c1.62.61 3.397 1.393 3.397 3.596c0 2.003-1.62 3.658-4.598 3.658c-1.611 0-3.31-.697-4.476-1.655l1.306-1.776zm21.336-12.888c1.916 0 3.483.932 4.476 2.003l-1.541 1.715c-.819-.783-1.707-1.306-2.909-1.306c-2.578 0-4.424 2.177-4.424 5.704c0 3.57 1.707 5.747 4.328 5.747c1.394 0 2.439-.583 3.327-1.567l1.541 1.707c-1.263 1.463-2.9 2.281-4.894 2.281c-3.988 0-7.14-2.89-7.14-8.098c0-5.156 3.221-8.212 7.262-8.212zm6.496.287H128v15.745h-2.787z\\\"/><path fill=\\\"#cb3349\\\" d=\\\"M27.762 60.315c-1.327.165-6.464.215-6.464.215l-5.402 3.832l.292.234c.22-.178 9.597-3.041 9.597-3.041zm1.583.253l-3.295 3.756l-.268.65c.237-.096.212.19.212.19c3.836 0 9.588-3.757 9.588-3.757l-1.86-.354c-.092.092-2.998-.101-2.998-.101zm-10.554.279l-8.26.372s-6.858 4.828-7.127 6.668l.515-.106s8.214-5.444 14.725-6.108zm9.635 13.852l-4.14 1.036l-4.788-.415l-2.682 2.93l-5.032 1.503l-2.512-.779l-.127-.108l1.128 2.76s2.554 2.739 3.98 3.06c1.427.323 4.005-.022 5.938-.321c1.933-.3 3.475-.99 4.096-2.117c.621-1.128.713-1.45.713-1.45s1.84 2.6 3.429 2.9c1.587.299 6.305-1.312 6.305-1.312s2.876-.782 3.382-1.772c.506-.99 1.841-4.234 1.841-4.234l-1.444.767l-1.185.334l-5.476-.119zm-19.15 4.279l.523.419l-.08-.037a330.807 330.807 0 0 0-.444-.382Z\\\"/><path fill=\\\"#f4edae\\\" d=\\\"M43.165 57.586a10.627 10.627 0 0 0-.047-.443a5.825 5.825 0 0 0-.047-.314a9.041 9.041 0 0 0-1.312-.897a17.452 17.452 0 0 0-1.578-.808a31.174 31.174 0 0 0-1.644-.707a29.608 29.608 0 0 0-.838-.325c-.28-.11-.562-.211-.845-.314c.595.098 1.183.233 1.767.384c.38.098.757.208 1.133.325c-2.67-6.977-9.053-11.521-16.022-11.521c-6.97 0-13.352 4.544-16.02 11.521a24.035 24.035 0 0 1 1.131-.325c.585-.15 1.174-.286 1.768-.384c-.284.103-.566.205-.847.314c-.279.104-.559.213-.837.325a32.01 32.01 0 0 0-1.644.707c-.54.246-1.07.511-1.578.808a9.11 9.11 0 0 0-1.313.897a8.383 8.383 0 0 0-.046.314a11.272 11.272 0 0 0-.046.443a13.05 13.05 0 0 0 .071 2.683c.082.593.19 1.182.352 1.752c.079.285.169.567.273.84c.052.135.109.27.168.4a6.139 6.139 0 0 0 .091.19l.038.072l.134.066l.265.127c.148.067.353.165.522.24a.382.382 0 0 0 .027-.025l-.492-1.876c.104-.029 1.04-.27 2.652-.577a8.558 8.558 0 0 1-.39-.084a7.995 7.995 0 0 1-1.08-.345a4.919 4.919 0 0 1-.51-.246a1.746 1.746 0 0 1-.448-.34c1.77.577 5.43.315 8.684-.02c2.975-.307 5.957-.506 8.955-.512c2.998.006 5.982.205 8.956.511c3.255.336 6.914.598 8.685.02a1.732 1.732 0 0 1-.448.341a4.945 4.945 0 0 1-.509.246c-.35.142-.713.254-1.08.345a7.283 7.283 0 0 1-.163.037c1.767.328 2.796.594 2.906.624l-.47 1.787c.094-.043.19-.084.283-.126l.265-.127l.134-.066l.037-.073a3.72 3.72 0 0 0 .092-.19a6.888 6.888 0 0 0 .169-.4a9.309 9.309 0 0 0 .273-.84a13.084 13.084 0 0 0 .462-3.54a11.167 11.167 0 0 0-.04-.894z\\\"/><path fill=\\\"#e6ccad\\\" d=\\\"m40.456 67.084l-.613 4.29a.306.306 0 0 1-.127.208l-.876.613c-.07.351-.095.516-.182.86c.501.117 1.323.207 1.715.13c.355-.385.928-2.78 1.051-4.143c.1-1.114.012-1.354-.1-1.446c-.114-.094-.496-.311-.868-.512m-33.253.594c-.411.22-.886.491-1.013.598c-.109.09-.193.321-.074 1.395c.147 1.325.819 3.82 1.179 4.183c.434.076 1.394-.057 1.866-.195a18.145 18.145 0 0 1-.138-.463l-1.136-.797a.301.301 0 0 1-.13-.213Zm16.606.614c-.178 0-.385.017-.62.049l-1.365 4.494a.305.305 0 0 1-.226.21l-9.574 2.131a.347.347 0 0 1-.068.007a.303.303 0 0 1-.175-.056l-.348-.243l-1.041-.729v-.001l-.422-.295c.031.095.064.187.097.28c.081.24.887 2.563 2.527 4.835c1.757-.519 3.275-1 3.76-1.154c.99-1.524 2.397-3.037 3.398-3.089a10.99 10.99 0 0 1 1.92.073c-.368-.335-.443-.727-.497-.9c0 0 1.278.998 2.903.789c1.626-.21 2.636-1.146 2.636-1.146s-.004.684-.712 1.213c1.362-.412 1.926-.553 2.312-.553c.425 0 .634.178.819.334l.11.092a575.52 575.52 0 0 1 2.677 2.12c.427.049 1.78.204 2.633.282a15.1 15.1 0 0 0 1.37.082c.14 0 .272-.005.396-.014a22.066 22.066 0 0 0 1.5-3.67c.058-.212.114-.425.165-.64l-.31.217l-.833.585l-.902.632a.31.31 0 0 1-.21.053l-8.982-1.02l-.655-.076a.306.306 0 0 1-.258-.215l-1.405-4.628a4.712 4.712 0 0 0-.62-.049m1.147 13.257c-.105.238-.242.552-.424.956h.054c.144 0 .303-.016.454-.023c.233-.018.467-.048.702-.083a32.669 32.669 0 0 1-.786-.85m1.185 1.258a9.626 9.626 0 0 1-1.075.155c-.154.006-.301.018-.462.018l-.238.002l-.091-.001c-.97 1.441-3.121 1.722-3.22 1.734a4.421 4.421 0 0 0-.263.042c1.2.329 2.425.47 3.632.39a14.485 14.485 0 0 0 4.452-1.02a4.11 4.11 0 0 1-2.624-1.208z\\\"/><path fill=\\\"#656c67\\\" d=\\\"M28.316 61.33a24.98 24.98 0 0 0-2.133.31c-2.383.446-4.584 1.189-6.416 1.95a84.116 84.116 0 0 1 4.086-.102c.862 0 1.7.014 2.514.04a19.167 19.167 0 0 0 1.948-2.198zm7.535.419c-1.219.876-2.554 1.577-3.864 2.135c4.01.39 6.958.971 8.3 1.267l.656-2.488a63.766 63.766 0 0 0-5.092-.914m-18.257.4c-2.517.586-4.833 1.444-6.862 2.377a79.37 79.37 0 0 1 4.753-.62a16.319 16.319 0 0 1 2.109-1.756zm-9.275.19a49.676 49.676 0 0 0-1.553.324l.182.689a22.99 22.99 0 0 1 1.371-1.013m30.419 3.339l-.675 4.721a.31.31 0 0 1-.127.209l-2.527 1.769a.31.31 0 0 1-.21.053l-7.62-.866a.308.308 0 0 1-.26-.215l-1.371-4.518c-.369-.095-1.312-.315-2.139-.315c-.828 0-1.771.22-2.14.315l-1.372 4.518a.306.306 0 0 1-.15.182a.327.327 0 0 1-.076.028l-7.62 1.695a.31.31 0 0 1-.067.007a.313.313 0 0 1-.175-.054l-2.526-1.77a.305.305 0 0 1-.13-.213l-.681-5.527a35.93 35.93 0 0 0-.766.155c-.162.089-.322.177-.48.266l.724 5.858l3.673 2.572l9.267-2.062l1.368-4.508a.308.308 0 0 1 .245-.214c.347-.055.65-.084.906-.084c.255 0 .56.029.906.084a.305.305 0 0 1 .244.214l1.403 4.62l9.32 1.06l3.574-2.503l.745-5.219a57.754 57.754 0 0 0-1.263-.258\\\"/><path fill=\\\"#c7b39a\\\" d=\\\"M23.853 64.317c-2.234 0-4.322.091-6.213.233c-1.898.929-3.059 1.692-3.086 1.71l-1.821 1.216l1.25-1.797c.208-.297.427-.58.652-.85a74.925 74.925 0 0 0-5.16.754l.67 5.43l2.305 1.614L19.764 71l1.368-4.51a.31.31 0 0 1 .14-.175a.265.265 0 0 1 .069-.03c.041-.013.773-.22 1.616-.323l1.343-.812c.403-.243.79-.521 1.157-.818a88.499 88.499 0 0 0-1.604-.015m6.37.244c-3.008 1.037-5.528 1.347-5.68 1.357l-.175.012c.96.083 1.864.341 1.909.354a.311.311 0 0 1 .208.206l1.363 4.489l7.305.83l2.323-1.627l.66-4.616a77.845 77.845 0 0 0-7.913-1.005m.344 1.191c.946-.032 1.81 1.147 1.926 2.63c.032.41-.014.707-.115.928c.88-.105 1.08.493 1.089.529c-.637-.308-1.336.082-2.607.106c-.946.033-1.74.044-1.792-1.442c-.053-1.487.553-2.717 1.499-2.75zm-13.786.367c.946-.01 1.606 1.192 1.62 2.68c.014 1.486-.773 1.396-1.72 1.406a21.388 21.388 0 0 1-.278.004a6.992 6.992 0 0 1-.306.002c-.919-.002-1.506-.044-2.026.237c.013-.032.241-.542 1.066-.75c-.09-.2-.148-.48-.163-.867c-.057-1.486.86-2.704 1.807-2.712\\\"/><path fill=\\\"#ebd599\\\" d=\\\"M16.4 54.114c-.025.8-.006 2.25.365 3.603a.294.294 0 0 1 0 .153a55.653 55.653 0 0 1 1.42-.132c-.531-1.113-.647-2.297-.672-2.715a12.22 12.22 0 0 1-1.112-.909zm14.665 0c-.299.272-.705.62-1.113.91c-.025.418-.14 1.604-.673 2.718c.474.038.948.08 1.421.13a.292.292 0 0 1 0-.155c.372-1.355.392-2.803.365-3.602z\\\"/><path fill=\\\"#2d3136\\\" d=\\\"M30.567 65.753c-.946.034-1.552 1.263-1.5 2.75c.052 1.486.847 1.475 1.793 1.442c1.272-.024 1.97-.414 2.607-.106c-.01-.036-.209-.634-1.09-.528c.102-.221.148-.52.116-.929c-.117-1.483-.98-2.662-1.926-2.629m-13.787.365c-.947.008-1.863 1.227-1.807 2.713c.016.387.072.666.164.868c-.826.207-1.053.717-1.066.75c.52-.281 1.108-.24 2.026-.239c.099.002.2.002.306 0a32.311 32.311 0 0 0 .277-.006c.948-.01 1.735.08 1.721-1.407c-.014-1.486-.675-2.688-1.62-2.679zm13.696.576a.482.482 0 0 1 .492.475a.485.485 0 0 1-.474.492a.484.484 0 0 1-.492-.475a.482.482 0 0 1 .474-.492m-13.563.359a.483.483 0 0 1 .496.47a.484.484 0 0 1-.47.497a.484.484 0 0 1-.497-.472a.483.483 0 0 1 .471-.495\\\"/><path fill=\\\"#edf6fa\\\" d=\\\"M30.476 66.692a.484.484 0 0 0-.475.492a.484.484 0 0 0 .493.475a.484.484 0 0 0 .475-.492a.484.484 0 0 0-.493-.475m-13.562.361a.484.484 0 0 0-.472.497a.484.484 0 0 0 .497.47a.484.484 0 0 0 .471-.495a.484.484 0 0 0-.496-.472\\\"/><path fill=\\\"#ebd599\\\" d=\\\"M29.308 46.189s-.132 10.026-2.474 10.026h-6.09c-2.342 0-2.531-10.022-2.531-10.022l-1.15 3.403l.018 4.669l.817.65l.371 2.004l.52 1.17l10.025.019l.464-.836l.39-1.41l.056-.892l1.107-3.161zM16.06 53.66l-4.973 1.204l-.287 3.241l-.02-2.569s-.482 3.46-1.758 4.083l1.786-.538l-.003-.432l.11.208l.258-.155s.147-1.916.448-2.65c.155-.378 1.101-.62 1.824-.791c.723-.172 1.875-.517 2.099.499c.223 1.015.585 1.755.826 2.082zm15.39 0l-.31 4.182c.241-.327.603-1.067.826-2.082c.224-1.016 1.376-.671 2.1-.5c.722.173 1.669.414 1.824.792c.3.734.447 2.65.447 2.65l.258.155l.063-.118l-.003.342l1.787.538c-1.276-.623-1.758-4.083-1.758-4.083l-.017 2.09l-.244-2.762z\\\" opacity=\\\".8\\\"/><path fill=\\\"#cb3349\\\" d=\\\"M19.935 47.117H27.7v2.158h-1.061v-1.096H24.44v6.662h.904v1.235H22.29v-1.235h.904v-6.662h-2.196v1.096h-1.062z\\\"/><path fill=\\\"#c7b39a\\\" d=\\\"M41.34 71.193s-1.4 1.789-2.785 1.196l-.43.278l.038-.162l-2.435 1.452l-9.225-1.144s-.077.701.911.957s7.246 1.828 7.946 1.698c.7-.13 2.436-1.402 2.436-1.402l.319-1.357l.094.692l2.076.264l.56-.33zm-35.078.47l.495 2.143l.56.33l2.076-.264l.037-.27l.306 1.089s1.79 1.195 2.495 1.295c.705.1 6.89-1.744 7.865-2.043c.977-.298.868-.995.868-.995l-9.013 1.85l-2.474-1.542l.015-.11l-.989-.362c-1.384.594-2.24-1.12-2.24-1.12Zm22.395 11.945s-4.028 1.594-7.217.713l-1.761.336s5.076 2.56 10.823-.923z\\\"/><path fill=\\\"#2d3136\\\" d=\\\"M23.733 42.137c-3.749 0-7.348 1.229-10.408 3.55c-2.96 2.247-5.212 5.471-6.522 9.106c-.47.173-.935.362-1.391.577c-.555.266-1.1.565-1.606.962l-.09.07l-.033.125a7.02 7.02 0 0 0-.193.968a11.403 11.403 0 0 0-.093.96a12.044 12.044 0 0 0 .057 1.924c.067.638.187 1.27.357 1.897a9.866 9.866 0 0 0 .31.926a6.764 6.764 0 0 0 .196.456c.035.075.074.15.114.226l.064.113c.024.04.04.071.076.126l.066.101l.101.052a7.691 7.691 0 0 0 .296.144l.286.129c.053.021.102.043.156.064a23.735 23.735 0 0 0-3.932 4.692L0 71.74l2.167-1.902c.037-.032 1.854-1.606 4.885-3.387l.041.349c-.197.102-1.151.603-1.434.84c-.469.39-.492.994-.366 2.123c.064.578.282 1.701.574 2.73c.503 1.772.872 2.085 1.197 2.16c.146.034.335.05.547.05c.58 0 1.325-.113 1.809-.26a17.771 17.771 0 0 0 2.358 4.77l-.142.04c-.591-.274-2.657-1.23-3.352-1.543l-1.451-.652l.859 1.339c.063.097 1.544 2.407 2.754 3.964c1.131 1.453 2.68 2.939 5.604 2.939c.351 0 .72-.022 1.1-.065c.872-.099 1.527-.177 2.025-.241c3.069 1.127 6.453 1.196 9.664-.02a14.114 14.114 0 0 0 2.415-1.193a.3.3 0 0 0 .043-.01c1.195-.287 2.55-.61 3.218-.798c.109-.03.242-.06.382-.094c.933-.214 2.49-.576 3.32-2.237a226.665 226.665 0 0 1 2.218-4.272l.637-1.198l-1.244.54c-.066.03-1.64.716-2.46 1.146c-.03.016-.063.03-.096.046c.664-1.356 1-2.442 1.117-2.858c.458.11 1.138.097 1.637.097c.246 0 .5-.042.664-.084c.324-.083.574-.298 1.047-2.127c.274-1.063.472-2.22.525-2.814c.105-1.158.072-1.778-.402-2.169c-.235-.194-.925-.567-1.277-.75l.017-.127c.18.043.276.068.283.07l.319-1.21c.112-.048.232-.096.366-.148c.193-.076.385-.153.577-.235l.287-.13a7.537 7.537 0 0 0 .295-.143l.102-.053l.065-.1a1.986 1.986 0 0 0 .077-.126l.062-.113a3.904 3.904 0 0 0 .115-.226a8.456 8.456 0 0 0 .197-.457a9.918 9.918 0 0 0 .31-.925c.168-.627.288-1.259.356-1.897a11.902 11.902 0 0 0 .057-1.925a10.598 10.598 0 0 0-.092-.96a7.242 7.242 0 0 0-.08-.478a5.987 5.987 0 0 0-.113-.49l-.035-.123l-.088-.07c-.506-.397-1.052-.697-1.606-.963a17.295 17.295 0 0 0-1.392-.577c-1.309-3.635-3.562-6.859-6.522-9.105c-3.06-2.323-6.659-3.55-10.407-3.55Zm-.001.83c6.969 0 13.352 4.543 16.021 11.521a23.1 23.1 0 0 0-1.133-.326a20.573 20.573 0 0 0-1.766-.384c.282.103.566.206.845.314c.28.104.56.213.838.325a32.01 32.01 0 0 1 1.644.707a17.74 17.74 0 0 1 1.578.807a9.1 9.1 0 0 1 1.313.899c.017.1.034.21.047.314a11.395 11.395 0 0 1 .085 1.337a13.03 13.03 0 0 1-.11 1.788a12.71 12.71 0 0 1-.352 1.753a9.196 9.196 0 0 1-.273.838a7.05 7.05 0 0 1-.168.4a4.607 4.607 0 0 1-.093.191l-.036.072a5.34 5.34 0 0 1-.134.066l-.266.126c-.093.044-.19.085-.284.128l.471-1.788c-.11-.03-1.139-.296-2.907-.624a8.518 8.518 0 0 0 .164-.036c.367-.091.73-.204 1.08-.345c.174-.075.347-.154.51-.246c.163-.094.324-.2.448-.341c-1.77.578-5.43.316-8.686-.02c-2.974-.307-5.957-.506-8.955-.513c-2.998.007-5.98.206-8.955.513c-3.254.335-6.913.598-8.684.02c.124.141.285.247.449.34c.163.093.335.173.508.247c.35.141.713.254 1.08.345a7.449 7.449 0 0 0 .391.083a42.01 42.01 0 0 0-2.652.577l.492 1.876a.335.335 0 0 1-.027.025c-.17-.075-.374-.172-.522-.24l-.266-.127a4.382 4.382 0 0 1-.133-.066l-.038-.072a6.133 6.133 0 0 1-.259-.591a9.247 9.247 0 0 1-.274-.838a13.17 13.17 0 0 1-.462-3.54a11.105 11.105 0 0 1 .086-1.339a8.843 8.843 0 0 1 .046-.314a9.085 9.085 0 0 1 1.312-.898c.507-.296 1.037-.56 1.577-.807c.539-.253 1.09-.483 1.645-.707c.278-.112.558-.222.837-.325c.281-.109.563-.21.847-.314a20.81 20.81 0 0 0-1.768.384c-.378.098-.757.208-1.132.326c2.669-6.978 9.051-11.521 16.021-11.521m-5.282 2.33c-1.798 3.13-1.861 6.907-1.821 8.223c-.17-.158-.275-.263-.278-.266c-.004-.004-.009-.006-.012-.01l-.007-.007c-.003-.004-.008-.005-.011-.007a.394.394 0 0 0-.04-.025c-.006-.003-.01-.007-.018-.01a.274.274 0 0 0-.05-.017c-.004-.001-.008-.004-.011-.004a.263.263 0 0 0-.066-.006l-.016.002a.359.359 0 0 0-.05.006l-.009.003l-3.995 1.135c-.032-.815-.05-4.317 1.786-7.27c-.064.072-2.118 2.417-2.258 7.404l-.643.183a.295.295 0 0 0-.212.238c-.392 2.377-.167 4.039-.156 4.109c.002.014.006.026.01.039c-.053.016-.104.03-.155.047c-.609.2-1.22.411-1.773.735c.296-.118.603-.202.91-.278c.307-.077.616-.144.927-.202a28.928 28.928 0 0 1 1.873-.293a40.058 40.058 0 0 1 1.883-.203c.63-.053 1.259-.107 1.89-.144c2.523-.149 5.053-.196 7.584-.197c2.532.002 5.062.041 7.585.197c.631.036 1.26.09 1.89.143a42.012 42.012 0 0 1 1.883.203c.628.076 1.252.176 1.873.293c.31.059.62.125.926.203c.308.076.613.16.91.278c-.554-.324-1.165-.535-1.772-.734l-.156-.047l.01-.04c.01-.07.235-1.732-.157-4.11a.298.298 0 0 0-.212-.237l-.644-.183c-.138-4.987-2.192-7.332-2.256-7.404c1.835 2.952 1.819 6.455 1.787 7.27l-3.997-1.135l-.009-.003a.363.363 0 0 0-.05-.006l-.016-.002a.249.249 0 0 0-.065.006l-.011.002a.408.408 0 0 0-.052.019l-.018.009l-.039.025c-.003.003-.007.004-.01.008c-.004.002-.005.005-.008.007c-.003.004-.009.006-.012.01a13.87 13.87 0 0 1-.278.266c.04-1.317-.024-5.094-1.821-8.224c.038.11 1.464 4.283.972 8.96a7.95 7.95 0 0 1-.49.362a.302.302 0 0 0-.13.241c0 .016-.035 1.506-.693 2.774a.303.303 0 0 0-.024.063a72.308 72.308 0 0 0-4.917-.16c-1.638 0-3.28.045-4.917.157a.413.413 0 0 0-.023-.06c-.659-1.268-.692-2.758-.694-2.774a.298.298 0 0 0-.129-.24a7.47 7.47 0 0 1-.49-.364c-.493-4.676.934-8.85.972-8.959zm.688 1.023v3.753h2.658v-1.097h.597v5.065h-.9v2.833h4.652V54.04h-.906v-5.065h.6v1.096h2.66V46.32zm.797.797h7.764v2.158h-1.061v-1.096h-2.196v6.662h.903v1.235h-3.056v-1.235h.904v-6.662h-2.196v1.096h-1.062Zm-4.118 6.746c-.04.766-.058 2.428.377 4.012a.358.358 0 0 0 .022.054l-.134.015a43.36 43.36 0 0 0-1.902.263c-.63.107-1.261.223-1.886.361a30.599 30.599 0 0 0-1.13.284c-.031-.268-.173-1.724.131-3.703zm15.83 0l4.523 1.286c.304 1.982.161 3.437.13 3.703a32.258 32.258 0 0 0-1.129-.282a37.709 37.709 0 0 0-3.789-.624c-.043-.006-.088-.01-.133-.015a.351.351 0 0 0 .022-.056c.435-1.584.417-3.246.376-4.012m-.582.251c.027.8.007 2.247-.365 3.603a.295.295 0 0 0 0 .155a59.428 59.428 0 0 0-1.421-.13c.531-1.114.648-2.3.673-2.719c.408-.29.814-.638 1.113-.909m-14.665 0c.298.272.704.62 1.113.91c.025.417.14 1.601.672 2.714c-.474.038-.948.082-1.42.132a.292.292 0 0 0 0-.153c-.372-1.353-.391-2.802-.365-3.602zm7.212 6.881h.002c.509.001 1.019.006 1.528.014c-.856.189-1.687.412-2.48.655a38.146 38.146 0 0 0-6.425 2.67c1.707-1.633 3.521-2.548 3.729-2.65l.019-.01l1.382-.655a120.3 120.3 0 0 1 2.245-.024m-5.048.102a33.092 33.092 0 0 0-2.604.616c-5.3 1.483-9.593 4.057-12.057 5.77c2.536-3.032 6.23-5.351 7.192-5.927a9.42 9.42 0 0 1 .313-.036c.367-.04.734-.07 1.104-.098a110.046 110.046 0 0 1 2.218-.147a193.46 193.46 0 0 1 3.834-.178m10.92.03c1.005.043 2.01.09 3.013.148c.724.04 1.444.09 2.166.143a.016.016 0 0 1 .007.003c-.073.051-.147.106-.22.159c-2.953 2.06-6.365 2.932-8.333 3.285c1.39-1.15 2.474-2.507 3.02-3.247a16.194 16.194 0 0 0 .347-.49zm-1.17.203a19.168 19.168 0 0 1-1.948 2.196a85.098 85.098 0 0 0-2.512-.038c-1.425 0-2.79.037-4.087.1c1.831-.76 4.033-1.502 6.416-1.948a24.727 24.727 0 0 1 2.132-.31zm7.537.419c2.387.337 4.14.698 5.092.914l-.657 2.488c-1.34-.296-4.288-.876-8.3-1.267c1.312-.559 2.646-1.259 3.865-2.135m-18.258.401a16.372 16.372 0 0 0-2.108 1.756a79.539 79.539 0 0 0-4.753.62c2.03-.933 4.345-1.792 6.861-2.376m-9.274.188a22.893 22.893 0 0 0-1.371 1.013l-.182-.688c.387-.088.91-.2 1.553-.325m15.535 1.978c.544 0 1.077.007 1.603.016c-.367.297-.754.575-1.157.818l-1.342.811c-.843.103-1.575.312-1.617.323a.247.247 0 0 0-.07.031a.308.308 0 0 0-.138.175L19.763 71l-7.314 1.627l-2.304-1.614l-.67-5.429a74.055 74.055 0 0 1 5.16-.755c-.225.27-.445.552-.651.85l-1.252 1.797l1.823-1.215c.027-.02 1.188-.783 3.085-1.71a82.935 82.935 0 0 1 6.214-.235m6.37.245c3.331.256 6.051.666 7.912 1.004l-.66 4.617l-2.323 1.627l-7.304-.83l-1.364-4.489a.31.31 0 0 0-.208-.206a11.16 11.16 0 0 0-1.909-.354l.176-.012c.152-.01 2.671-.32 5.68-1.357m8.514 1.117a52.95 52.95 0 0 1 1.263.258l-.746 5.218l-3.573 2.504l-9.32-1.06l-1.403-4.62a.303.303 0 0 0-.244-.214a5.838 5.838 0 0 0-.906-.084c-.257 0-.56.028-.906.084a.306.306 0 0 0-.245.215l-1.368 4.507l-9.268 2.062l-3.673-2.573l-.724-5.856c.158-.09.318-.179.48-.268c.228-.048.484-.1.767-.155l.681 5.527a.307.307 0 0 0 .129.213l2.527 1.77a.299.299 0 0 0 .175.055a.322.322 0 0 0 .068-.007l7.62-1.696a.305.305 0 0 0 .225-.209l1.373-4.518c.368-.095 1.31-.315 2.14-.315c.826 0 1.77.22 2.137.315l1.373 4.518a.306.306 0 0 0 .259.215l7.62.866a.305.305 0 0 0 .209-.054l2.529-1.768a.312.312 0 0 0 .127-.208zm1.718 1.405c.372.202.754.419.867.514c.113.091.201.33.1 1.444c-.122 1.365-.695 3.759-1.05 4.144c-.392.076-1.213-.015-1.714-.131c.085-.344.11-.51.18-.86l.877-.613a.307.307 0 0 0 .127-.208zm-33.254.596l.554 4.507a.306.306 0 0 0 .13.213l1.138.797c.043.155.088.31.136.463c-.471.139-1.431.272-1.865.195c-.36-.362-1.032-2.858-1.18-4.183c-.118-1.074-.035-1.306.075-1.396c.127-.106.601-.376 1.012-.596m16.608.613a4.7 4.7 0 0 1 .62.049l1.405 4.628a.305.305 0 0 0 .258.215l.654.074l8.981 1.022a.313.313 0 0 0 .21-.054l.903-.632l.833-.584l.31-.217a18.229 18.229 0 0 1-.164.64a22.08 22.08 0 0 1-1.5 3.67a5.989 5.989 0 0 1-.397.014c-.434 0-.878-.037-1.37-.082c-.852-.078-2.206-.233-2.633-.283a776.25 776.25 0 0 0-2.676-2.119l-.111-.092c-.184-.157-.394-.335-.82-.335c-.385 0-.949.142-2.311.554c.708-.53.713-1.214.713-1.214s-1.01.938-2.636 1.148c-1.626.208-2.903-.79-2.903-.79c.054.173.129.566.497.9a11.816 11.816 0 0 0-1.391-.087a11.2 11.2 0 0 0-.53.014c-1 .052-2.408 1.564-3.398 3.089c-.484.154-2.003.635-3.76 1.153c-1.639-2.271-2.446-4.593-2.527-4.833l.001-.002c-.033-.092-.067-.184-.097-.279l.42.294v.003l1.043.729l.348.241a.304.304 0 0 0 .176.056a.354.354 0 0 0 .067-.006l9.573-2.132a.305.305 0 0 0 .226-.209l1.365-4.494c.235-.032.443-.049.621-.049m4.503 6.86c.077 0 .078 0 .208.112l.136.113c1.235.97 2.763 2.188 2.779 2.2l.106.084l.133.015c.018.002 1.762.207 2.792.302a16.3 16.3 0 0 0 1.456.086c.798 0 1.415-.12 1.886-.367c.306-.161.737-.367 1.147-.556c-.474.9-1.113 2.13-1.586 3.077c-.63 1.262-1.82 1.539-2.686 1.74c-.152.034-.296.066-.425.103c-.651.182-1.995.504-3.182.788l-.945.227a3.999 3.999 0 0 1-.933.116c-.879 0-1.646-.319-2.28-.948a31.28 31.28 0 0 1-1.743-1.884l-.352-.419s-.1-.15-.166-.199l-.004-.003c-.001 0-.002 0-.002-.002c-.043.046-.069.194-.069.194l-.214.57c-.004.011-.126.333-.731 1.685c-.587 1.316-2.677 1.586-2.696 1.589c-.121.014-.216.032-.336.052c-.353.062-1.01.178-3.563.467a8.85 8.85 0 0 1-.993.058c-2.51 0-3.818-1.235-4.857-2.573a50.168 50.168 0 0 1-1.798-2.517c.969.445 1.987.917 2.004.924l.16.074l.168-.048a175.831 175.831 0 0 0 5.08-1.544l.162-.052l.093-.145c1.426-2.256 2.54-2.785 2.738-2.795a9.307 9.307 0 0 1 .482-.012c1.983 0 3.637.613 3.655.62l.152.056l.155-.049c2.522-.781 3.673-1.139 4.069-1.139m-3.357 6.396c.212.239.481.533.786.85a10.15 10.15 0 0 1-.702.084c-.15.007-.31.023-.454.023h-.053c.181-.404.319-.718.423-.957m1.185 1.259l.11.112a4.108 4.108 0 0 0 2.624 1.208c-1.668.676-3.24.939-4.45 1.02a10.967 10.967 0 0 1-3.632-.39c.1-.019.174-.031.263-.041c.098-.013 2.25-.294 3.218-1.735l.092.002l.238-.002c.161 0 .307-.014.461-.02a9.749 9.749 0 0 0 1.076-.154\\\"/>\"\n\t\t},\n\t\t\"trello\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconTrello0\\\" x1=\\\"128\\\" x2=\\\"128\\\" y1=\\\"0\\\" y2=\\\"256\\\" gradientTransform=\\\"scale(.5)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#2684ff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0052cc\\\"/></linearGradient></defs><path fill=\\\"url(#deviconTrello0)\\\" d=\\\"M12.5 0h103c6.925 0 12.5 5.575 12.5 12.5v103c0 6.925-5.575 12.5-12.5 12.5h-103C5.575 128 0 122.425 0 115.5v-103C0 5.575 5.575 0 12.5 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M78.32 16.64h27.04c3.324 0 6 2.676 6 6v44c0 3.324-2.676 6-6 6H78.32c-3.324 0-6-2.676-6-6v-44c0-3.324 2.676-6 6-6m-55.68 0h27.04c3.324 0 6 2.676 6 6v76c0 3.324-2.676 6-6 6H22.64c-3.324 0-6-2.676-6-6v-76c0-3.324 2.676-6 6-6\\\"/>\"\n\t\t},\n\t\t\"trello-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconTrelloWordmark0\\\" x1=\\\"128\\\" x2=\\\"128\\\" y1=\\\"0\\\" y2=\\\"256\\\" gradientTransform=\\\"translate(0 50.95)scale(.10032)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#2684ff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#0052cc\\\"/></linearGradient></defs><path fill=\\\"#293856\\\" d=\\\"M88.89 50.95v20.27c0 3.892 2.162 5.537 5.597 5.537a7.703 7.703 0 0 0 2.109-.213v-4.562a5.795 5.795 0 0 1-.782.036c-.905 0-1.645-.4-1.645-1.522V50.95Zm11.007 0v20.27c0 3.892 2.164 5.537 5.6 5.537a7.677 7.677 0 0 0 2.122-.213v-4.562a5.71 5.71 0 0 1-.778.036c-.921 0-1.667-.4-1.667-1.522V50.95Zm-64.111 1.88v4.961h5.877v18.823h5.671V57.791h5.878v-4.96zm41.289 4.88c-5.645 0-9.26 4.092-9.26 9.811c0 5.937 3.117 9.463 10.165 9.463a16.91 16.91 0 0 0 6.122-1.094v-4.435c-1.81.58-3.847 1.156-5.937 1.156c-2.806 0-4.76-.922-5.237-3.588a43.556 43.556 0 0 0 4.42.259c4.015 0 7.403-1.076 7.403-4.964c0-3.773-3.484-6.608-7.676-6.608m42.035.008c-5.67 0-8.962 3.913-8.962 9.632c0 5.682 3.33 9.7 8.962 9.7s8.89-3.969 8.89-9.7s-3.22-9.632-8.89-9.632m-53.775.113c-2.514.023-3.973 1.475-4.906 3.816V58.1h-5.241v18.514h5.24v-9.702c0-2.966 1.72-3.871 5.423-3.583v-5.484a7.039 7.039 0 0 0-.516-.014m11.632 3.918c1.485 0 2.678 1.01 2.678 2.388c0 1.773-1.871 2.328-4.027 2.328a18.383 18.383 0 0 1-2.74-.22a6.231 6.231 0 0 1 .729-2.467a3.878 3.878 0 0 1 3.36-2.02zm42.143.662c2.625 0 3.755 2.154 3.755 4.939s-1.101 4.994-3.755 4.994s-3.822-2.209-3.822-4.994c0-2.79 1.197-4.939 3.822-4.939\\\"/><path fill=\\\"url(#deviconTrelloWordmark0)\\\" d=\\\"M2.508 50.95h20.665a2.502 2.502 0 0 1 2.508 2.508v20.665a2.502 2.502 0 0 1-2.508 2.508H2.508A2.502 2.502 0 0 1 0 74.123V53.458a2.502 2.502 0 0 1 2.508-2.508\\\"/><path fill=\\\"#fff\\\" d=\\\"M15.714 54.288h5.425c.667 0 1.204.538 1.204 1.204v8.828a1.201 1.201 0 0 1-1.204 1.204h-5.425a1.201 1.201 0 0 1-1.204-1.204v-8.828a1.2 1.2 0 0 1 1.204-1.203zm-11.172 0h5.425c.667 0 1.204.538 1.204 1.204V70.74a1.201 1.201 0 0 1-1.204 1.204H4.542a1.201 1.201 0 0 1-1.204-1.204V55.492c0-.667.537-1.204 1.204-1.204\\\"/>\"\n\t\t},\n\t\t\"trpc\": {\n\t\t\t\"body\": \"<path fill=\\\"#398ccb\\\" d=\\\"M0 38C0 17 17 0 38 0h52c21 0 38 17 38 38v52c0 21-17 38-38 38H38c-21 0-38-17-38-38z\\\"/><path fill=\\\"#fff\\\" d=\\\"M63.9 18.8L81.6 29v5.6l21.5 12.5v21.2l5.8 3.3v20.6l-17.7 10.2l-7.9-4.6l-19.2 11.1l-19.1-11l-7.7 4.5l-17.8-10.3V71.6l5.6-3.2V47.1l21-12.2V29zM81.7 40v9.6L63.9 59.8L46.2 49.6v-9.3l-16.5 9.5v16l7.6-4.4l17.8 10.3v20.5l-5.4 3.1l14.5 8.3l14.5-8.4l-5.3-3V71.7l17.8-10.3l7.4 4.3V49.8zm7.2 55.8V83.2L78.1 77v12.5zM104.3 77l-10.8 6.3v12.5l10.8-6.3zM35 95.8V83.3L24.1 77v12.5zm15.5-18.7l-10.8 6.2v12.5l10.8-6.2zm40.7 2.3l10.9-6.3l-10.9-6.2l-10.8 6.2zM37.3 66.9l-10.8 6.2l10.8 6.3l10.8-6.3zm24.3-13.6V40.8l-10.8-6.2v12.5zm15.5-18.8l-10.9 6.3v12.5L77.1 47zm-13.2 2.3l10.9-6.3l-10.9-6.2l-10.8 6.2z\\\"/>\"\n\t\t},\n\t\t\"trpc-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#398ccb\\\" d=\\\"M.3 56c0-6.1 4.9-11 11-11h16.2c6.1 0 11 4.9 11 11v16c0 6.1-4.9 11-11 11H11.3c-6.1 0-11-4.9-11-11z\\\"/><path fill=\\\"#fff\\\" d=\\\"m19.4 50.6l5.3 3v1.7l6.4 3.7v6.3l1.7 1v6.1l-5.3 3l-2.4-1.4l-5.7 3.3l-5.7-3.2l-2.3 1.3l-5.3-3v-6.1l1.7-1V59l6.3-3.6v-1.8zm5.3 6.3v2.8l-5.3 3.1l-5.3-3.1V57l-4.9 2.8v4.8l2.2-1.3l5.3 3v6.1l-1.6.9l4.3 2.5l4.4-2.5l-1.6-.9v-6.1l5.3-3l2.2 1.2v-4.7zm2.2 16.6v-3.8l-3.3-1.8v3.7zm4.6-5.6l-3.2 1.9v3.7l3.2-1.9zm-20.7 5.6v-3.7l-3.2-1.9v3.8zm4.6-5.6l-3.2 1.8v3.8l3.2-1.9zm12.2.7l3.2-1.9l-3.2-1.8l-3.3 1.8zm-16-3.7l-3.3 1.9l3.3 1.8l3.2-1.8zm7.2-4.1v-3.7l-3.2-1.8V59zm4.6-5.6l-3.2 1.9v3.7l3.2-1.9zm-3.9.7l3.2-1.9l-3.2-1.8l-3.2 1.8zm25.6 1.7h12.4v4.6H45.1zm2.6-4.7h6.2v18q0 .6.2.9q.2.4.6.5q.3.2.8.2q.4 0 .8-.1t.6-.1l.9 4.4q-.4.2-1.3.4q-.8.1-1.9.2q-2.2.1-3.7-.5q-1.6-.6-2.4-1.9q-.8-1.3-.8-3.3zM59.6 77V51.1h10.8q2.9 0 5 1q2.2 1.1 3.3 3q1.2 1.9 1.2 4.6q0 2.7-1.2 4.6q-1.2 1.8-3.4 2.8q-2.1 1-5.1 1h-6.8v-4.9H69q1.4 0 2.4-.4t1.4-1.1q.5-.8.5-2t-.5-2q-.4-.8-1.4-1.2q-1-.4-2.4-.4h-3.1V77zm14.7-11.9L80.7 77h-6.8l-6.4-11.9zM81.9 77V51.1h10.8q2.9 0 5 1.1q2.2 1.1 3.3 3.2q1.2 2 1.2 4.6q0 2.7-1.2 4.7t-3.3 3.1q-2.2 1.1-5.2 1.1h-6.6V64h5.4q1.5 0 2.4-.5q1-.5 1.5-1.4q.5-.9.5-2.1q0-1.2-.5-2q-.5-.9-1.5-1.4q-1-.5-2.4-.5h-3.1V77zm45.6-16.5h-6.4q-.1-1-.5-1.8t-1-1.3q-.7-.6-1.6-.9q-.8-.3-1.9-.3q-1.9 0-3.3.9q-1.3 1-2.1 2.7q-.7 1.7-.7 4.2q0 2.6.7 4.3q.8 1.8 2.1 2.7q1.4.8 3.3.8q1 0 1.8-.2q.9-.3 1.6-.8q.6-.5 1-1.2q.5-.8.6-1.7h6.4q-.2 1.7-1 3.4t-2.3 3q-1.4 1.4-3.5 2.2q-2.1.8-4.8.8q-3.5 0-6.3-1.5q-2.8-1.6-4.4-4.5q-1.6-3-1.6-7.3t1.6-7.2q1.7-3 4.5-4.5q2.8-1.6 6.2-1.6q2.4 0 4.4.7q2 .6 3.5 1.9q1.6 1.2 2.5 3q1 1.8 1.2 4.2\\\"/>\"\n\t\t},\n\t\t\"twitter\": {\n\t\t\t\"body\": \"<path d=\\\"M75.916 54.2L122.542 0h-11.05L71.008 47.06L38.672 0H1.376l48.898 71.164L1.376 128h11.05L55.18 78.303L89.328 128h37.296L75.913 54.2ZM60.782 71.79l-4.955-7.086l-39.42-56.386h16.972L65.19 53.824l4.954 7.086l41.353 59.15h-16.97L60.782 71.793Z\\\"/>\"\n\t\t},\n\t\t\"typescript\": {\n\t\t\t\"body\": \"<path fill=\\\"#fff\\\" d=\\\"M22.67 47h99.67v73.67H22.67z\\\"/><path fill=\\\"#007acc\\\" d=\\\"M1.5 63.91v62.5h125v-125H1.5zm100.73-5a15.56 15.56 0 0 1 7.82 4.5a20.58 20.58 0 0 1 3 4c0 .16-5.4 3.81-8.69 5.85c-.12.08-.6-.44-1.13-1.23a7.09 7.09 0 0 0-5.87-3.53c-3.79-.26-6.23 1.73-6.21 5a4.58 4.58 0 0 0 .54 2.34c.83 1.73 2.38 2.76 7.24 4.86c8.95 3.85 12.78 6.39 15.16 10c2.66 4 3.25 10.46 1.45 15.24c-2 5.2-6.9 8.73-13.83 9.9a38.32 38.32 0 0 1-9.52-.1a23 23 0 0 1-12.72-6.63c-1.15-1.27-3.39-4.58-3.25-4.82a9.34 9.34 0 0 1 1.15-.73L82 101l3.59-2.08l.75 1.11a16.78 16.78 0 0 0 4.74 4.54c4 2.1 9.46 1.81 12.16-.62a5.43 5.43 0 0 0 .69-6.92c-1-1.39-3-2.56-8.59-5c-6.45-2.78-9.23-4.5-11.77-7.24a16.48 16.48 0 0 1-3.43-6.25a25 25 0 0 1-.22-8c1.33-6.23 6-10.58 12.82-11.87a31.66 31.66 0 0 1 9.49.26zm-29.34 5.24v5.12H56.66v46.23H45.15V69.26H28.88v-5a49.19 49.19 0 0 1 .12-5.17C29.08 59 39 59 51 59h21.83z\\\"/>\"\n\t\t},\n\t\t\"typo3\": {\n\t\t\t\"body\": \"<path fill=\\\"#f49700\\\" d=\\\"M96.074 87.898a17.522 17.522 0 0 1-5.37.77c-16.2 0-39.985-56.606-39.985-75.45c0-6.921 1.644-9.241 3.965-11.226C34.855 4.301 11.07 11.582 3.46 20.88C1.867 23.133.82 26.766.82 31.39c0 29.379 31.39 96.148 53.507 96.148c10.25 0 27.52-16.789 41.723-39.648M85.738 0c20.48 0 40.98 3.305 40.98 14.867c0 23.461-14.874 51.89-22.472 51.89c-13.543 0-30.426-37.675-30.426-56.519C73.82 1.648 77.113 0 85.707 0\\\"/>\"\n\t\t},\n\t\t\"typo3-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f49700\\\" d=\\\"M25.309 70.219a4.72 4.72 0 0 1-1.43.203c-4.27 0-10.613-15.031-10.613-20.043c0-1.836.437-2.453 1.066-2.977c-5.258.606-11.586 2.54-13.602 5a4.909 4.909 0 0 0-.726 2.809c0 7.816 8.344 25.598 14.219 25.598c2.722 0 7.308-4.48 11.086-10.54m-2.743-23.402c5.438 0 10.891.887 10.891 3.957c0 6.23-3.957 13.781-5.973 13.781c-3.605 0-8.074-10.003-8.074-15.015c0-2.285.871-2.723 3.2-2.723\\\"/><path d=\\\"M51.695 57.906v22.89h-3.199v-22.89h-5.633v-2.781h14.489v2.781Zm16.801 10.989v11.902h-3.305V68.895l-6.52-13.77h3.52l4.844 10.664l4.844-10.664h3.336Zm16.844 2.218h-3.137v9.684h-3.2V55.125s3.2-.258 6.196-.258c5.578 0 7.192 3.446 7.192 7.957c.007 5.57-1.899 8.29-7.051 8.29Zm.37-13.61a24.297 24.297 0 0 0-3.452.224v10.668h3.402c2.047 0 3.477-1.356 3.477-5.336c0-3.649-.875-5.555-3.477-5.555Zm18.571 23.552c-6.047 0-7.668-4.407-7.668-13.387c0-8.617 1.621-12.8 7.668-12.8c6.051 0 7.672 4.183 7.672 12.8c.05 8.98-1.621 13.387-7.672 13.387m0-23.465c-3.304 0-4.402 2.226-4.402 10.3c0 7.883 1.066 10.532 4.402 10.532c3.34 0 4.395-2.649 4.395-10.531c0-8.118-1.098-10.344-4.395-10.344Zm17.528 23.465a28.19 28.19 0 0 1-4.813-.63v-2.753c1.574.332 3.172.527 4.781.59c1.868 0 3.07-1.54 3.07-4.364c0-3.414-.542-5.101-3.199-5.101h-3.007V66.12h2.632c2.977 0 3.125-3.039 3.125-4.512c0-2.89-.914-4.062-2.75-4.062c-1.52.055-3.03.262-4.511.617v-2.676a22.956 22.956 0 0 1 4.437-.62c3.778 0 5.942 1.612 5.942 7.073c0 2.496-.77 4.692-2.797 5.332c2.39.332 3.203 2.676 3.203 6.274c.082 5.45-2.05 7.508-6.113 7.508Zm0 0\\\"/>\"\n\t\t},\n\t\t\"ubuntu\": {\n\t\t\t\"body\": \"<path fill=\\\"#E95420\\\" d=\\\"M104.663 0H24v128h80.663z\\\"/><path fill=\\\"#fff\\\" d=\\\"M42.443 90.31c4.611 0 8.35-3.768 8.35-8.416c0-4.648-3.739-8.416-8.35-8.416c-4.612 0-8.35 3.768-8.35 8.416c0 4.648 3.738 8.416 8.35 8.416m34.778-18.454c4.612 0 8.35-3.768 8.35-8.416c0-4.648-3.738-8.416-8.35-8.416c-4.611 0-8.35 3.768-8.35 8.416c0 4.648 3.739 8.416 8.35 8.416m-15.945 31.702c-6.016-1.299-11.042-5.17-13.868-10.662a11.934 11.934 0 0 1-7.14.883c3.419 8.464 10.67 14.611 19.573 16.535c1.953.422 3.943.627 5.93.614a12.107 12.107 0 0 1-2.444-7.037a20.048 20.048 0 0 1-2.048-.336zm14.066 8.461c4.612 0 8.35-3.768 8.35-8.416c0-4.648-3.738-8.416-8.35-8.416c-4.611 0-8.35 3.768-8.35 8.416c0 4.648 3.739 8.416 8.35 8.416m11.62-11.507c2.597-3.3 4.426-7.2 5.305-11.344a27.771 27.771 0 0 0-3.937-20.963a12.1 12.1 0 0 1-4.695 5.542a20.736 20.736 0 0 1 1.93 13.975a20.658 20.658 0 0 1-2.597 6.521a12.092 12.092 0 0 1 3.997 6.272zM41.8 69.824a11.785 11.785 0 0 1 3.156.256c1.361.294 2.64.813 3.812 1.549c3.76-5.45 9.826-8.72 16.399-8.842a12.213 12.213 0 0 1 2.534-6.826c-10.503-.838-20.708 4.625-25.905 13.866z\\\"/>\"\n\t\t},\n\t\t\"ubuntu-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M44.662 82.02c-1.367 0-2.531-.208-3.49-.624c-.962-.417-1.74-.99-2.334-1.725a6.9 6.9 0 0 1-1.292-2.572a11.975 11.975 0 0 1-.4-3.166v-12.96h2.02v12.694c0 1.129.133 2.106.402 2.929c.267.822.638 1.5 1.114 2.035a4.349 4.349 0 0 0 1.724 1.19c.674.257 1.427.386 2.258.386c.832 0 1.585-.13 2.259-.387a4.358 4.358 0 0 0 1.723-1.188c.477-.535.848-1.214 1.116-2.036c.267-.823.4-1.799.4-2.93V60.974h2.022v12.96c0 1.13-.133 2.186-.402 3.166c-.267.981-.698 1.839-1.292 2.572c-.594.734-1.371 1.309-2.332 1.725c-.961.417-2.125.624-3.49.624zM58.55 67.128c.338-.258.876-.53 1.62-.818c.744-.287 1.62-.43 2.63-.43c1.109 0 2.095.197 2.957.593a6.14 6.14 0 0 1 2.183 1.666c.594.713 1.045 1.56 1.352 2.54c.306.981.461 2.056.461 3.226c0 1.248-.183 2.367-.55 3.358c-.367.991-.881 1.834-1.545 2.527a6.644 6.644 0 0 1-2.378 1.59c-.921.366-1.946.55-3.075.55c-1.368 0-2.497-.09-3.388-.268c-.89-.177-1.624-.367-2.198-.565V58.86l1.93-.356v8.62l.002.003zm0 12.634c.298.099.739.193 1.323.282c.584.088 1.353.132 2.303.132c1.665 0 3.002-.54 4.012-1.62c1.01-1.08 1.516-2.63 1.516-4.651c0-.852-.089-1.659-.268-2.424c-.178-.763-.466-1.427-.862-1.99a4.317 4.317 0 0 0-1.56-1.354c-.644-.336-1.44-.505-2.391-.505a6.31 6.31 0 0 0-1.309.132a7.529 7.529 0 0 0-1.16.343A6.43 6.43 0 0 0 58.55 69zm26.475 1.278a36.048 36.048 0 0 1-2.318.534c-.97.197-2.159.297-3.566.297c-1.15 0-2.11-.168-2.882-.505c-.774-.336-1.396-.812-1.873-1.428c-.475-.613-.818-1.357-1.024-2.228c-.209-.872-.312-1.834-.312-2.884v-8.62h1.93v7.996c0 1.09.08 2.011.238 2.764c.157.753.417 1.364.773 1.828a3.02 3.02 0 0 0 1.382 1.01c.564.21 1.251.313 2.065.313c.91 0 1.702-.049 2.378-.148c.673-.1 1.099-.189 1.277-.268V66.205h1.93v14.834h.002zm4.26-14.298a36.888 36.888 0 0 1 2.317-.535c.971-.198 2.16-.297 3.567-.297c1.169 0 2.143.168 2.928.505c.782.336 1.405.817 1.872 1.441c.465.625.797 1.374.995 2.245c.198.872.297 1.833.297 2.883v8.59H99.33v-7.966c0-1.09-.074-2.012-.224-2.766c-.148-.753-.396-1.367-.743-1.842a2.89 2.89 0 0 0-1.366-1.027c-.565-.207-1.272-.312-2.126-.312c-.91 0-1.699.05-2.362.148c-.664.1-1.095.19-1.292.269v13.495h-1.931V66.74zm17.92-.536h6.123v1.634h-6.122v8.175c0 .873.074 1.58.224 2.126c.148.546.36.967.639 1.264c.276.297.613.495 1.01.594c.397.1.831.149 1.307.149c.812 0 1.465-.094 1.962-.282a8.602 8.602 0 0 0 1.159-.521l.476 1.605c-.278.178-.763.382-1.456.61a7.193 7.193 0 0 1-2.259.342c-.951 0-1.749-.124-2.392-.373c-.644-.247-1.159-.624-1.544-1.129c-.387-.504-.66-1.133-.818-1.886c-.159-.754-.237-1.646-.237-2.676V61.686l1.93-.356v4.876zM128 81.04a35.976 35.976 0 0 1-2.318.534c-.97.197-2.159.297-3.566.297c-1.15 0-2.11-.168-2.882-.505c-.772-.336-1.396-.812-1.872-1.428c-.475-.613-.817-1.357-1.025-2.228c-.208-.872-.312-1.834-.312-2.884v-8.62h1.93v7.996c0 1.09.08 2.011.238 2.764c.159.753.417 1.364.773 1.828a3.032 3.032 0 0 0 1.382 1.01c.565.21 1.252.313 2.065.313c.91 0 1.703-.049 2.378-.148c.674-.1 1.1-.189 1.277-.268V66.205h1.931v14.834H128z\\\"/><path fill=\\\"#e95420\\\" d=\\\"M29.714 40.6H0v46.8h29.714z\\\"/><path fill=\\\"#fff\\\" d=\\\"M6.794 73.62a3.077 3.077 0 1 0-.002-6.153a3.077 3.077 0 0 0 .002 6.153m12.812-6.748a3.077 3.077 0 1 0-.002-6.153a3.077 3.077 0 0 0 0 6.153zm-5.874 11.592a7.488 7.488 0 0 1-5.108-3.898a4.426 4.426 0 0 1-2.63.323a10.016 10.016 0 0 0 7.21 6.045a10.104 10.104 0 0 0 2.185.224a4.405 4.405 0 0 1-.9-2.572a7.399 7.399 0 0 1-.756-.122zm5.182 3.094a3.077 3.077 0 1 0-.001-6.154a3.077 3.077 0 0 0 0 6.154zm4.28-4.208a10.085 10.085 0 0 0 1.954-4.147a10.093 10.093 0 0 0-1.45-7.666a4.432 4.432 0 0 1-1.73 2.027a7.531 7.531 0 0 1 .712 5.11a7.52 7.52 0 0 1-.957 2.384a4.418 4.418 0 0 1 1.472 2.294zM6.557 66.13a4.375 4.375 0 0 1 1.163.093c.5.108.973.297 1.404.567a7.506 7.506 0 0 1 6.04-3.234a4.451 4.451 0 0 1 .934-2.495c-3.868-.307-7.628 1.69-9.543 5.07z\\\"/>\"\n\t\t},\n\t\t\"unifiedmodelinglanguage\": {\n\t\t\t\"body\": \"<path fill=\\\"#fbbd16\\\" d=\\\"M26.242 107.832v-36.5l7.004 39.418l11.402 5.676l7.329-32.766v35.852l12.859 6.324V65.328l-19.54-9.246l-6.187 28.875l-6.246-34.824l-19.43-9.297v60.562Zm0 0\\\"/><path fill=\\\"#452e7f\\\" d=\\\"m66.633 65.313l20.406-10.594V98.62l28.23-14.598l.11 16.547l-48.695 25.578Zm0 0\\\"/><path fill=\\\"#962444\\\" d=\\\"m58.398 1.508l-14.43 12.754s28.16 14.465 31.583 16.175c3.418 1.711 8.285 4.997 3.023 9.864c-5.261 4.863-11.05 4.207-15 2.238c-3.949-1.977-33.16-16.703-33.16-16.703L15.543 38.46S44.23 53.055 48.969 55.555c4.738 2.5 22.367 8.68 39.082-4.34c16.71-13.02 14.344-17.754 14.344-18.676c0-.918-.395-5.781-3.293-8.809c-2.891-3.023-11.313-7.363-14.868-9.207c-3.554-1.84-25.836-13.015-25.836-13.015m0 0\\\"/><path fill=\\\"#6d6e71\\\" d=\\\"M114.773 75.586c0 2.14-1.683 3.812-3.867 3.812c-2.164 0-3.886-1.675-3.886-3.812c0-2.094 1.722-3.77 3.886-3.77c2.188 0 3.867 1.676 3.867 3.77m-6.785 0c0 1.676 1.239 3.012 2.946 3.012c1.656 0 2.87-1.336 2.87-2.989c0-1.68-1.218-3.035-2.898-3.035c-1.68 0-2.918 1.356-2.918 3.012m2.32 1.977h-.874v-3.77c.347-.07.828-.113 1.449-.113c.715 0 1.035.113 1.312.273c.207.164.368.461.368.828c0 .414-.32.735-.782.871v.047c.367.137.574.414.692.918c.113.578.183.809.273.945h-.941c-.118-.136-.184-.484-.301-.917c-.07-.418-.297-.602-.781-.602h-.414Zm.024-2.137h.414c.48 0 .875-.16.875-.551c0-.348-.254-.574-.805-.574c-.23 0-.39.02-.484.043Zm0 0\\\"/>\"\n\t\t},\n\t\t\"unifiedmodelinglanguage-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#fbbd16\\\" d=\\\"M66.586 90.879V69.168l4.164 23.45l6.777 3.374L81.883 76.5v21.328l7.648 3.762V65.598l-11.617-5.5l-3.68 17.175l-3.71-20.714l-11.551-5.532v36.024Zm0 0\\\"/><path fill=\\\"#452e7f\\\" d=\\\"m90.594 65.59l12.133-6.305v26.117l16.78-8.683l.063 9.84l-28.941 15.214Zm0 0\\\"/><path fill=\\\"#962444\\\" d=\\\"m85.703 27.637l-8.582 7.586s16.742 8.605 18.774 9.62c2.035 1.016 4.93 2.973 1.8 5.868c-3.129 2.894-6.57 2.504-8.918 1.328c-2.347-1.172-19.71-9.934-19.71-9.934l-8.84 7.508s17.05 8.684 19.867 10.172c2.816 1.485 13.3 5.16 23.234-2.582c9.934-7.746 8.527-10.562 8.527-11.11c0-.546-.234-3.44-1.957-5.238c-1.722-1.8-6.726-4.382-8.84-5.476c-2.109-1.098-15.355-7.742-15.355-7.742m0 0\\\"/><path fill=\\\"#4a2469\\\" d=\\\"M21.66 52.86v5.324c0 .605-.015 1.027-.047 1.273a1.92 1.92 0 0 1-.285.75c-.16.258-.367.457-.629.586c-.258.137-.562.2-.914.2c-.39 0-.734-.079-1.031-.235a1.634 1.634 0 0 1-.672-.613a1.996 1.996 0 0 1-.262-.801c-.023-.282-.039-.871-.039-1.77V52.86h1.7v5.973c0 .348.015.57.046.668c.028.098.09.145.184.145c.105 0 .176-.055.207-.16c.031-.106.047-.36.047-.755v-5.87Zm5.61 0v7.964h-1.493l-.882-3.62v3.62H23.48V52.86h1.422l.95 3.586V52.86Zm3.539 0v7.964h-1.7V52.86Zm1.296 0h3.418v1.597h-1.402v1.504h1.25v1.52h-1.25v3.343h-2.016Zm6.684 0v7.964h-1.7V52.86Zm1.84 0h2.828v1.597h-1.133v1.504h1.059v1.52h-1.059v1.75h1.242v1.593H40.63Zm4.586 0h1.273c.82 0 1.375.046 1.664.136c.29.094.512.242.66.453c.153.211.247.446.286.703c.035.254.054.762.054 1.516v2.789c0 .719-.027 1.195-.082 1.438c-.054.238-.152.43-.289.562a1.132 1.132 0 0 1-.508.29c-.203.05-.507.077-.914.077h-2.144Zm1.7 1.359v5.246c.245 0 .398-.059.456-.18c.055-.12.082-.445.082-.976v-3.102c0-.36-.008-.59-.027-.691a.355.355 0 0 0-.13-.227c-.066-.047-.194-.07-.382-.07ZM13.362 65.984v7.97H11.88l-.004-5.38l-.586 5.38h-1.06l-.62-5.263l-.005 5.262H8.121v-7.969h2.2c.066.48.132 1.047.202 1.696l.239 2.023l.386-3.719Zm5.805 4.668c0 .801-.016 1.368-.047 1.7c-.027.32-.125.632-.289.914c-.156.27-.383.488-.66.632a2.015 2.015 0 0 1-.969.223a2.06 2.06 0 0 1-.941-.21a1.638 1.638 0 0 1-.672-.626a2.164 2.164 0 0 1-.3-.91c-.032-.328-.052-.902-.052-1.723V69.29c0-.8.016-1.367.047-1.7c.027-.32.13-.632.293-.913a1.67 1.67 0 0 1 .656-.633c.278-.148.602-.223.97-.223c.35 0 .663.07.94.211c.282.14.504.348.672.625a2.1 2.1 0 0 1 .305.91c.031.329.047.903.047 1.723Zm-1.695-2.617c0-.37-.02-.605-.051-.71c-.035-.102-.106-.153-.211-.153a.22.22 0 0 0-.203.125c-.047.082-.07.328-.07.738v3.719c0 .46.015.746.046.855c.032.106.102.16.215.16c.117 0 .192-.062.223-.187c.031-.121.05-.418.05-.887Zm3.566-2.05h1.27c.82 0 1.375.046 1.664.136c.289.094.511.242.66.453c.152.207.246.45.285.703c.035.258.055.762.055 1.516v2.793c0 .715-.028 1.191-.082 1.434a1.13 1.13 0 0 1-.29.566a1.12 1.12 0 0 1-.507.285c-.203.055-.508.082-.914.082h-2.14Zm1.695 1.359v5.246c.246 0 .399-.059.457-.18c.055-.117.082-.445.082-.976v-3.098c0-.363-.007-.594-.027-.695a.336.336 0 0 0-.129-.223c-.07-.05-.195-.074-.383-.074m4.11-1.36h3.433v1.598h-1.37v1.504h1.28v1.52h-1.28v1.75h1.507v1.597h-3.57Zm6.87 0v6.371h1.345v1.598h-3.543v-7.969Zm3.88 0v7.97h-1.696v-7.97Zm5.71 0v7.97h-1.488l-.882-3.626v3.625h-1.418v-7.969h1.422l.953 3.586v-3.586Zm5.821 2.934h-1.7v-.723c0-.453-.015-.738-.046-.851c-.031-.117-.11-.172-.23-.172a.21.21 0 0 0-.212.144c-.039.102-.054.352-.054.758v3.82c0 .36.015.594.054.708c.04.113.114.168.223.168c.125 0 .207-.063.25-.192c.047-.129.067-.375.067-.746v-.945h-.336V69.68h1.984v4.273h-1.07l-.16-.574c-.114.246-.258.433-.434.555a1.056 1.056 0 0 1-.625.187a1.4 1.4 0 0 1-.797-.254a1.675 1.675 0 0 1-.566-.629a2.357 2.357 0 0 1-.243-.785a11.814 11.814 0 0 1-.046-1.23v-2.368c0-.757.03-1.312.101-1.656c.067-.344.258-.66.578-.949c.317-.285.73-.43 1.235-.43c.496 0 .91.125 1.238.375c.324.25.539.547.64.887c.098.344.149.84.149 1.492Zm-38.57 9.879v6.371h1.375v1.598H8.3v-7.97Zm5.824-.09l.973 7.969h-1.735l-.09-1.434h-.605l-.102 1.434h-1.758l.868-7.969Zm-.899 5.121c-.082-.898-.168-2.016-.257-3.348a86.597 86.597 0 0 0-.32 3.348Zm7.04-5.031v7.969h-1.704L19.81 83.14v3.625h-1.622v-7.97h1.625l1.086 3.587v-3.586Zm5.753 2.933H26.34v-.718c0-.457-.016-.742-.055-.856c-.035-.117-.12-.172-.258-.172c-.117 0-.199.047-.242.149c-.043.097-.062.347-.062.754v3.82c0 .36.02.594.062.707c.043.113.125.168.254.168c.14 0 .234-.062.285-.191c.051-.125.074-.375.074-.746v-.946h-.382v-1.207h2.257v4.274h-1.218l-.18-.57a1.406 1.406 0 0 1-.496.55c-.2.125-.438.188-.707.188a1.74 1.74 0 0 1-.91-.254a1.768 1.768 0 0 1-.64-.63a2.013 2.013 0 0 1-.274-.78c-.04-.278-.055-.688-.055-1.235v-2.367c0-.758.035-1.313.113-1.656c.074-.344.293-.66.657-.946c.363-.289.832-.433 1.406-.433c.562 0 1.031.125 1.406.375c.371.25.613.543.727.887c.113.343.171.84.171 1.492Zm5.508-2.933v5.324c0 .606-.02 1.031-.054 1.274a1.84 1.84 0 0 1-.313.753a1.658 1.658 0 0 1-.684.586c-.285.133-.617.2-1 .2c-.425 0-.804-.079-1.128-.239c-.325-.156-.57-.36-.73-.613a1.818 1.818 0 0 1-.286-.8c-.031-.282-.047-.872-.047-1.77v-4.715h1.856v5.973c0 .347.02.57.05.668c.035.097.102.144.203.144c.118 0 .192-.05.227-.16c.031-.106.05-.356.05-.754v-5.871Zm4.403 0l.972 7.969h-1.734l-.094-1.434h-.605l-.098 1.434h-1.758l.867-7.97Zm-.899 5.121c-.082-.898-.168-2.016-.258-3.344a85.845 85.845 0 0 0-.32 3.344Zm7.235-2.188h-1.891v-.718c0-.457-.02-.742-.055-.856c-.035-.117-.12-.172-.254-.172c-.117 0-.195.047-.238.149c-.043.097-.062.347-.062.754v3.82c0 .36.02.594.062.707c.043.113.125.168.25.168c.137 0 .23-.062.277-.191c.051-.125.075-.375.075-.746v-.946h-.375v-1.207h2.21v4.274h-1.19l-.177-.57a1.39 1.39 0 0 1-.488.55a1.255 1.255 0 0 1-.691.188c-.317 0-.625-.09-.891-.254a1.775 1.775 0 0 1-.633-.63a2.062 2.062 0 0 1-.265-.78a10.54 10.54 0 0 1-.055-1.235v-2.367c0-.758.039-1.313.113-1.656c.074-.344.29-.66.645-.946c.351-.289.812-.433 1.375-.433c.554 0 1.011.125 1.379.375c.363.25.601.543.714.887c.11.343.165.84.165 1.492Zm1.199-2.933h3.433v1.598h-1.37v1.507h1.284v1.516H47.78v1.75h1.508v1.598h-3.57Zm0 0\\\"/><path fill=\\\"#6d6e71\\\" d=\\\"M119.21 71.7c0 1.269-.995 2.269-2.296 2.269c-1.285 0-2.309-1-2.309-2.27c0-1.246 1.024-2.242 2.31-2.242c1.3 0 2.296.996 2.296 2.242Zm-4.03 0c0 .995.738 1.788 1.75 1.788c.984 0 1.707-.793 1.707-1.777c0-.996-.723-1.805-1.723-1.805c-.996 0-1.734.809-1.734 1.793Zm1.379 1.175h-.52v-2.242a4.38 4.38 0 0 1 .863-.07c.422 0 .614.07.778.164a.619.619 0 0 1 .218.492c0 .246-.191.437-.464.52v.027c.218.082.343.246.41.546c.07.344.11.481.164.563h-.559c-.07-.082-.11-.29-.18-.547c-.039-.246-.175-.355-.464-.355h-.246Zm.015-1.273h.246c.285 0 .52-.094.52-.329c0-.203-.153-.34-.48-.34c-.137 0-.231.012-.286.028Zm0 0\\\"/><path fill=\\\"#4a2469\\\" d=\\\"M51.84 84.145h-.93v-.336h2.266v.336h-.938v2.722h-.398Zm4.254 1.378a22.53 22.53 0 0 1-.043-1.32h-.016c-.113.39-.242.777-.383 1.16l-.543 1.485h-.3l-.493-1.457a12.52 12.52 0 0 1-.355-1.188h-.008a38.96 38.96 0 0 1-.058 1.352l-.083 1.312h-.378l.214-3.058h.504l.524 1.48c.125.375.23.711.308 1.027h.012c.078-.308.188-.644.324-1.027l.543-1.48h.504l.192 3.058h-.387Zm0 0\\\"/>\"\n\t\t},\n\t\t\"unity\": {\n\t\t\t\"body\": \"<path d=\\\"m63.991 128l51.702-29.855l-19.817-11.461l-20.26 11.704a1.151 1.151 0 0 1-1.125-.009a1.145 1.145 0 0 1-.568-.975V69.608c0-.819.424-1.56 1.133-1.968L99.13 53.737a1.119 1.119 0 0 1 1.124.009c.352.195.572.564.576.966V78.11l19.83 11.454V29.855L63.99 62.566Zm0 0\\\"/><path fill=\\\"#4d4d4d\\\" d=\\\"m52.397 98.401l-20.27-11.718l-19.832 11.46L63.991 128V62.566L7.34 29.854V89.56l19.825-11.45V54.714c.009-.401.225-.77.572-.966a1.13 1.13 0 0 1 1.13-.009L52.953 67.64a2.275 2.275 0 0 1 1.133 1.97v27.8a1.156 1.156 0 0 1-.565.98a1.131 1.131 0 0 1-1.124.012\\\"/><path fill=\\\"gray\\\" d=\\\"M68.959 0v22.9L89.22 34.597c.348.203.555.576.555.984c0 .403-.212.772-.555.975L65.137 50.468a2.302 2.302 0 0 1-2.27 0L38.791 36.556a1.122 1.122 0 0 1-.56-.975a1.127 1.127 0 0 1 .56-.984L59.048 22.9V0L7.339 29.855l56.652 32.711l56.665-32.71Zm0 0\\\"/>\"\n\t\t},\n\t\t\"unity-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#4c4c4c\\\" d=\\\"M39.47 72.877v-20.75L21.49 41.752v7.978l7.055 4.055c.277.139.277.558 0 .692l-8.393 4.844a.79.79 0 0 1-.785 0l-8.393-4.89c-.273-.136-.273-.553 0-.688l7.055-4.059v-7.979L.046 52.081v20.796v-.093v.093l6.915-3.966v-8.159c0-.277.325-.51.599-.325l8.392 4.844c.233.14.42.414.42.693v9.683c0 .273-.327.506-.601.32l-7.055-4.06l-6.92 3.967l17.989 10.374l17.98-10.374l-6.919-3.966l-7.054 4.059c-.228.14-.6-.047-.6-.32V65.96a.76.76 0 0 1 .419-.692l8.392-4.845c.227-.138.599.047.599.326v8.16zm0 0\\\"/><path d=\\\"M19.737 86.295L37.72 75.919l-6.92-3.966l-7.055 4.059c-.227.14-.598-.047-.598-.32v-9.683a.754.754 0 0 1 .417-.693l8.393-4.844c.226-.139.599.046.599.325v8.16l6.914 3.966V52.127L19.737 63.514zm0 0\\\"/><path fill=\\\"gray\\\" d=\\\"M21.441 41.705v7.98l7.055 4.058c.279.135.279.552 0 .687l-8.391 4.844a.79.79 0 0 1-.786 0l-8.346-4.844c-.274-.135-.274-.552 0-.687l7.055-4.059v-7.979L.046 52.081l19.739 11.387L39.516 52.08Zm0 0\\\"/><path fill=\\\"#4c4c4c\\\" d=\\\"m15.678 75.965l-7.054-4.058l-6.915 3.966l17.982 10.374v-22.78L0 52.128v20.796v-.092v.092l6.914-3.966v-8.16c0-.277.326-.51.605-.325l8.392 4.844a.854.854 0 0 1 .412.693v9.683c-.046.227-.37.413-.645.273zm0 0\\\"/><path d=\\\"M87.612 52.127v3.966h4.886v-3.966zm-37.766 1.198v12.638c0 5.023 2.994 7.927 8.99 7.927s8.945-2.996 8.945-7.927V53.325h-5.303v12.73c0 2.118-1.2 3.595-3.641 3.595c-2.63 0-3.689-1.43-3.689-3.508V53.325zm46.478 0v4.844h-2.028v3.966h2.03v7.328c0 3.321 2.029 4.246 4.843 4.152c1.333 0 2.257-.093 2.67-.232v-3.548c-.18 0-.646.046-1.058.046c-1.058 0-1.706-.277-1.706-1.477v-6.269h2.763V58.17h-2.763v-4.844zm-16.552 4.38c-2.122 0-3.599.878-4.75 2.534h-.093v-2.07H70.27v15.354h4.892v-8.485c0-1.89 1.057-3.227 2.674-3.227c1.564 0 2.396 1.106 2.396 2.722v8.944h4.885v-9.962c0-3.408-1.983-5.809-5.344-5.809zm7.84.464v15.354h4.886V58.17Zm17.517 0l4.519 11.8c.645 1.618.925 2.542.925 3.187c0 1.058-.6 1.612-2.03 1.612h-1.612v3.78h3.182c3.088 0 4.519-1.245 5.764-4.84l5.302-15.539h-4.89l-2.03 6.55c-.459 1.519-.873 3.548-.873 3.548h-.046s-.512-2.076-.97-3.548l-2.076-6.549zm20.936 0a1.929 1.929 0 0 0-1.384.553a1.547 1.547 0 0 0-.413.645a2.07 2.07 0 0 0-.14.739a1.986 1.986 0 0 0 .553 1.384c.185.181.373.32.646.413c.232.092.505.14.738.14c.233 0 .506-.047.739-.14a2.05 2.05 0 0 0 .645-.413c.185-.185.32-.371.414-.645a2.057 2.057 0 0 0 0-1.477a1.914 1.914 0 0 0-.414-.646a1.592 1.592 0 0 0-.645-.418a2.19 2.19 0 0 0-.74-.135zm0 .506c.279 0 .506.047.739.185c.227.135.412.322.553.554c.138.227.185.46.185.738c0 .274-.047.506-.185.734a1.631 1.631 0 0 1-.553.558a1.388 1.388 0 0 1-.74.18a1.388 1.388 0 0 1-.737-.18a1.586 1.586 0 0 1-.552-.558a1.329 1.329 0 0 1-.187-.734c0-.277.046-.511.185-.739a1.54 1.54 0 0 1 .554-.551a1.335 1.335 0 0 1 .738-.187m-.692.6v1.797h.413v-.6h.42l.319.599h.418l-.372-.691c.047-.093.14-.182.185-.228a.656.656 0 0 0 .093-.325a.635.635 0 0 0-.093-.32c-.046-.093-.138-.14-.231-.185c-.093-.048-.181-.048-.227-.048zm.413.232h.371c.048 0 .093 0 .187.046c.04.041.088.088.088.228a.388.388 0 0 1-.088.232a.353.353 0 0 1-.185.093h-.373zm0 0\\\"/>\"\n\t\t},\n\t\t\"unix\": {\n\t\t\t\"body\": \"<path fill=\\\"#4051b5\\\" d=\\\"M7 3v6.554h40.792V3zm71.75 0v6.554H121V3zM7 16.835v6.554h40.792v-6.554zm71.75 0v6.554H121v-6.554zM7 30.306v6.554h40.792v-6.554zm71.75 0v6.554H121v-6.554zM7 60.597c0 22.573.073 23.52 2.55 30.91c2.658 8.047 6.228 13.872 11.8 19.442c9.761 9.685 22.4 14.454 39.736 15c19.887.62 35.002-4.369 45.71-15.145c5.5-5.534 9.615-12.488 11.982-20.243c2.15-6.99 2.222-8.155 2.222-30.073V40.5l-21.015.073l-21.052.11s-.182.066-.182 28.943c0 32.984-5.526 38.91-16.192 38.91s-14.901-5.67-14.694-39.747c.172-28.193-.11-28.289-.11-28.289H7z\\\"/>\"\n\t\t},\n\t\t\"unrealengine\": {\n\t\t\t\"body\": \"<g fill-rule=\\\"evenodd\\\"><path d=\\\"M100.61 72.875c-1.063 5.121-5.785 18.266-20.852 25.379l-6.05-6.8l-10.212 10.261A37.67 37.67 0 0 1 33.7 86.43c1.086.34 2.203.551 3.336.63c1.672.03 3.485-.583 3.485-3.391V55.974a4.57 4.57 0 0 0-5.735-4.57c-4.726 1.089-8.504 12.882-8.504 12.882a37.509 37.509 0 0 1 12.98-28.738a38.043 38.043 0 0 1 19.148-8.836c-5.16 2.942-8.058 7.739-8.058 11.762c0 6.477 3.898 5.692 5.054 4.739v37.379c.196.468.453.91.762 1.316a5.528 5.528 0 0 0 4.516 2.285c3.902 0 8.968-4.457 8.968-4.457V49.478c0-3.078-2.32-6.793-4.644-8.07c0 0 4.3-.762 7.621 1.777a28.338 28.338 0 0 1 1.984-2.183c7.747-7.598 15.04-9.762 21.117-10.844c0 0-11.047 8.683-11.047 20.332c0 8.664.223 29.789.223 29.789c4.098 3.957 10.195-1.758 15.703-7.403z\\\"/><path d=\\\"M64 2.383C29.973 2.383 2.383 29.973 2.383 64S29.973 125.617 64 125.617S125.617 98.027 125.617 64S98.027 2.383 64 2.383m0 120.77C31.332 123.153 4.848 96.669 4.848 64C4.852 31.333 31.336 4.849 64.004 4.853c32.668 0 59.148 26.484 59.148 59.152S96.668 123.157 64 123.157z\\\"/></g>\"\n\t\t},\n\t\t\"unrealengine-wordmark\": {\n\t\t\t\"body\": \"<g fill-rule=\\\"evenodd\\\"><path d=\\\"M41.391 111.047h-9.516v-8.73h9.364v1.933h-6.817v1.485h6.453v1.824h-6.449v1.504h6.965v1.988zm54.734 0h-9.363v-8.594h9.219v1.895H89.27v1.46h6.351v1.794H89.27v1.48h6.855zm-41.836 0h-3.848l-5.07-6.531h-.047v6.531h-2.52v-8.73h3.91l5.005 6.535h.05v-6.535h2.524v8.73zm30.504 0h-3.848l-5.07-6.531h-.047v6.531h-2.531v-8.73h3.91l5.008 6.535h.047v-6.535h2.531zm-23.066.12c-.809 0-1.5-.02-2.082-.059a8.084 8.084 0 0 1-1.5-.222c-.36-.09-.7-.25-.996-.469a1.993 1.993 0 0 1-.602-.777a3.996 3.996 0 0 1-.297-1.16a15.873 15.873 0 0 1-.074-1.614v-.258a15.24 15.24 0 0 1 .078-1.625c.04-.398.137-.793.293-1.164c.133-.304.34-.57.602-.777a2.81 2.81 0 0 1 1-.457a8.003 8.003 0 0 1 1.492-.223a35.248 35.248 0 0 1 2.082-.054h.379c.672 0 1.262.015 1.766.042c.437.024.87.075 1.3.16c.317.06.618.165.903.313c.226.121.422.293.566.508c.145.223.242.473.285.734c.059.332.086.668.082 1.004v.332H64.54v-.105a1.16 1.16 0 0 0-.09-.5a.702.702 0 0 0-.364-.324a2.633 2.633 0 0 0-.757-.168a15.348 15.348 0 0 0-1.29-.051h-.214c-.485 0-.895.008-1.239.027a4.463 4.463 0 0 0-.855.106a1.461 1.461 0 0 0-.54.242a.899.899 0 0 0-.296.422a2.405 2.405 0 0 0-.125.664c-.02.261-.031.578-.031.945v.156c0 .36.011.668.031.926c.012.223.05.442.125.652c.055.165.16.309.297.418c.16.118.348.2.539.239c.281.062.566.097.855.11c.344.015.754.026 1.239.023h.215c.394 0 .734 0 1.019-.02s.523-.04.719-.07c.16-.02.316-.067.465-.13a.714.714 0 0 0 .273-.21a.766.766 0 0 0 .125-.297c.02-.133.031-.27.031-.402v-.243h-3.351v-1.687h5.78v1.941c.005.368-.019.739-.077 1.102c-.047.289-.149.57-.297.82c-.145.23-.336.426-.57.57c-.282.169-.59.29-.914.36a7.958 7.958 0 0 1-1.325.191c-.515.035-1.113.055-1.8.055zm9.714-.1h-2.559v-8.668h2.559zM12.258 97.746c-1.238 0-2.32-.035-3.254-.102a14.845 14.845 0 0 1-2.414-.34a5.787 5.787 0 0 1-1.68-.648a3.348 3.348 0 0 1-1.062-1.031a4.195 4.195 0 0 1-.559-1.473a10.701 10.701 0 0 1-.164-1.996v-9.848h4.492v8.391c0 .52.016.965.055 1.34c.023.324.098.64.219.945c.105.25.27.469.484.637c.25.18.535.308.836.379c.418.105.848.168 1.277.187c.508.032 1.11.043 1.813.043h.379c.703 0 1.305-.015 1.812-.047c.43-.023.86-.082 1.278-.18c.304-.066.586-.195.836-.378a1.59 1.59 0 0 0 .48-.637c.125-.3.2-.621.227-.945c.035-.38.05-.824.05-1.328v-8.41h4.493v9.847c.003.668-.047 1.332-.153 1.992a4.085 4.085 0 0 1-.543 1.477a3.231 3.231 0 0 1-1.05 1.031a5.771 5.771 0 0 1-1.676.653c-.797.18-1.61.292-2.426.34a49.94 49.94 0 0 1-3.285.097zm32.68-.188h-6.715l-8.836-11.422h-.086v11.422H24.9V82.285h6.816l8.731 11.43h.086v-11.43h4.402v15.266zm13.23-7.562c.777 0 1.39-.023 1.852-.07a2.523 2.523 0 0 0 1.046-.297c.231-.14.399-.363.465-.625a4.18 4.18 0 0 0 .11-1.059v-.262a4.113 4.113 0 0 0-.11-1.046a.994.994 0 0 0-.472-.614a2.587 2.587 0 0 0-1.051-.285a18.96 18.96 0 0 0-1.84-.07h-5.594v4.328zm7.992 7.563h-4.433V96.32c.004-.387-.016-.77-.055-1.152a2.295 2.295 0 0 0-.227-.817a1.4 1.4 0 0 0-.488-.535a2.343 2.343 0 0 0-.828-.312a8.158 8.158 0 0 0-1.27-.149a34.078 34.078 0 0 0-1.796-.039h-4.489v4.243H48.13V82.286h11.84a16.49 16.49 0 0 1 3.07.23a4.366 4.366 0 0 1 1.895.773c.465.364.8.868.96 1.434c.192.719.282 1.465.262 2.207v.54a7.89 7.89 0 0 1-.136 1.573c-.082.41-.235.805-.457 1.16a2.702 2.702 0 0 1-.813.805c-.379.23-.793.39-1.226.48v.09c.449.067.89.176 1.316.336c.324.118.602.325.809.602c.214.313.351.672.402 1.047c.078.547.117 1.098.105 1.652v2.336zm19.508-.001h-16.59V82.285h16.328v3.375H73.523v2.598h11.254v3.187H73.523v2.633h12.145zm15.002-5.918l-3.113-6.125h-.11l-3.086 6.125zm7.856 5.93h-4.84l-1.399-2.743h-9.523l-1.375 2.743h-4.805l8.2-15.266h5.507zm16.354 0h-14.703V82.304h4.488v11.723h10.215v3.55zM82.352 47.058c-.531 2.566-2.898 9.156-10.449 12.723l-3.031-3.41l-5.113 5.144a18.89 18.89 0 0 1-14.938-7.66a7.378 7.378 0 0 0 1.675.313c.836.015 1.743-.29 1.743-1.703V38.594a2.272 2.272 0 0 0-.86-1.868a2.27 2.27 0 0 0-2.015-.418c-2.368.54-4.262 6.45-4.262 6.45a18.8 18.8 0 0 1 6.508-14.402c3.527-2.989 6.972-4.024 9.59-4.43c-2.586 1.473-4.04 3.879-4.04 5.898c0 3.239 1.953 2.856 2.536 2.375v18.734c.097.239.222.457.378.664a2.75 2.75 0 0 0 2.266 1.14c1.957 0 4.5-2.234 4.5-2.234V35.335c0-1.543-1.164-3.41-2.328-4.046c0 0 2.152-.38 3.82.894c.313-.383.645-.75.996-1.098c3.875-3.808 7.532-4.886 10.578-5.43c0 0-5.543 4.356-5.543 10.192c0 4.34.11 14.93.11 14.93c2.066 1.98 5.12-.88 7.879-3.72z\\\"/><path d=\\\"M64 11.734c-17.055 0-30.883 13.828-30.883 30.883c0 17.06 13.832 30.883 30.887 30.883c17.059 0 30.887-13.828 30.883-30.887c0-17.055-13.828-30.883-30.887-30.879m0 60.527c-16.375.004-29.648-13.27-29.652-29.645c0-16.375 13.273-29.648 29.652-29.648c16.375-.004 29.648 13.273 29.648 29.645c0 16.375-13.273 29.648-29.648 29.648\\\"/></g>\"\n\t\t},\n\t\t\"uwsgi\": {\n\t\t\t\"body\": \"<rect fill=\\\"none\\\"/><path fill=\\\"#bad05e\\\" d=\\\"M8.884 80.638c-2.2-.6-3.6-2.2-4.4-5.1c-.3-1.2-.4-1.7-.4-10.2l-.1-8.9h5.6v7.2c0 4.2.1 7.8.2 8.5c.4 2.7 1.5 4.1 3.3 4.1c1.7 0 2.9-1.3 3.7-4.1c.2-.9.3-2 .4-8.4l.1-7.4h5.6v11.3c0 6.2 0 11.6.1 11.9l.1 1.2h-5.5l-.1-1.4c0-.5-.1-1.5-.1-2.3v-1.4l-.7 1.4c-.4.8-1 1.7-1.3 2c-1.5 1.6-4.2 2.2-6.5 1.6\\\"/><path fill=\\\"#010101\\\" d=\\\"M72.484 80.638c-4.5-.7-7.1-2.9-8.4-7c-.3-1-.4-1.8-.2-1.8c0 0 1.2-.2 2.6-.4c1.4-.2 2.6-.4 2.7-.5c.1 0 .3.3.5.8c.5 2 1.4 3.1 2.9 3.8c1 .5 3.6.5 4.8.1c1-.4 2-1.5 2.3-2.5c.3-1.2.2-2.9-.2-3.8c-.7-1.6-1.7-2.2-5.9-3.6c-3.8-1.2-4.8-1.8-6.2-3.1c-1.8-1.8-2.6-4.3-2.4-7.2c.3-4.4 2.6-7.1 6.7-8c1.7-.4 5.3-.4 6.8 0c2.6.6 4.2 1.8 5.3 3.9c.7 1.3 1.3 3.5 1.2 3.7c-.1.1-4.9.9-5.5.9l-.4-1c-.4-1.4-1-2.3-2-2.8c-.6-.4-1-.4-2.2-.4c-2.4 0-3.6.9-4.1 3c-.4 2.1.3 3.9 1.9 4.8c.5.3 2.3 1 4 1.5c3.7 1.2 5.1 1.9 6.4 3.2c1.1 1.1 2.1 2.9 2.3 4.4c.2 1.3.2 3.8-.1 5.2c-.7 3.5-3.2 5.9-6.8 6.7c-1.4.2-4.7.4-6 .1m27.2.1c-4.1-.6-7.2-3.3-8.8-7.7c-1.6-4.2-2-10.5-.8-15.8c1.1-5.3 4.1-8.8 8.4-9.9c1.5-.4 4.5-.4 5.8 0c3 .8 5.4 2.8 6.8 5.9c1 2 1.1 1.8-1.7 2.8c-1.4.5-2.6.9-2.7.9s-.3-.3-.4-.6c-.6-1.8-1.8-3.3-3.2-3.9c-1.1-.5-2.9-.4-3.9.1c-2.6 1.3-3.8 5-3.8 11.2c0 4.5.6 7.4 2 9.6c1.2 1.9 2.5 2.5 4.7 2.4c1.7-.1 3-.7 4.2-1.8l.8-.8v-5.4h-5.6v-4.4h11.2v11.8l-.7.8c-1.6 2.1-4.3 3.8-6.9 4.4c-1.5.4-4.1.6-5.4.4\\\"/><path d=\\\"M29.484 64.438c-1.8-8.8-3.5-16.2-3.5-16.4l-.1-.9h5.9c.1 0 .8 4.9 1.8 10.2c1 5.3 2.1 11.4 2.4 13.5c.3 2.1.6 3.9.6 3.9l6.5-23.2h2.6l6.7 23.1c0 .1.3-1.3.5-2.9s1.3-7.7 2.4-13.5l2-11.1h6l-.1.9c0 .3-1.6 7.6-3.5 16.3c-1.9 8.7-3.3 16.6-3.4 16.6h-7.2l-4.7-17.8l-4.5 17.8h-7.1z\\\"/><path fill=\\\"#010101\\\" d=\\\"M118.084 63.938v-16.8h5.9v33.7h-5.9z\\\"/><path fill=\\\"#bad05e\\\" d=\\\"M83.402 52.726a2.09 2.09 0 0 1-2.083 2.083a2.09 2.09 0 0 1-2.083-2.083a2.09 2.09 0 0 1 2.083-2.084c1.125-.041 2.083.917 2.083 2.084\\\"/><path fill=\\\"#010101\\\" d=\\\"M82.194 52.726c0 .5-.375.875-.875.875s-.875-.375-.875-.875s.375-.875.875-.875a.88.88 0 0 1 .875.875\\\"/>\"\n\t\t},\n\t\t\"v8\": {\n\t\t\t\"body\": \"<defs><clipPath id=\\\"deviconV80\\\"><path d=\\\"M14 40h100v7H14Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconV81\\\"><use href=\\\"#deviconV8h\\\"/></clipPath><clipPath id=\\\"deviconV82\\\"><path d=\\\"M3 21h122v97H3Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconV83\\\"><use href=\\\"#deviconV8h\\\"/></clipPath><clipPath id=\\\"deviconV84\\\"><path d=\\\"M3 21h122v2H3Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconV85\\\"><use href=\\\"#deviconV8h\\\"/></clipPath><clipPath id=\\\"deviconV86\\\"><path d=\\\"M17 45h94v73H17Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconV87\\\"><use href=\\\"#deviconV8h\\\"/></clipPath><clipPath id=\\\"deviconV88\\\"><path d=\\\"M52 25h24v58H52Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconV89\\\"><use href=\\\"#deviconV8h\\\"/></clipPath><clipPath id=\\\"deviconV8a\\\"><path d=\\\"M33 10h62v92H33Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconV8b\\\"><use href=\\\"#deviconV8h\\\"/></clipPath><clipPath id=\\\"deviconV8c\\\"><path d=\\\"M33 10h62v62H33Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconV8d\\\"><use href=\\\"#deviconV8h\\\"/></clipPath><clipPath id=\\\"deviconV8e\\\"><path d=\\\"M33 33h62v69H33Zm0 0\\\"/></clipPath><clipPath id=\\\"deviconV8f\\\"><use href=\\\"#deviconV8h\\\"/></clipPath><radialGradient id=\\\"deviconV8g\\\" cx=\\\"78\\\" cy=\\\"337\\\" r=\\\"1854\\\" fx=\\\"78\\\" fy=\\\"337\\\" gradientTransform=\\\"rotate(.277)scale(.06845)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\".102\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></radialGradient><path id=\\\"deviconV8h\\\" d=\\\"M124.234 21.836L113.285 41l-3.082 5.477h-7.39l-9.45 17.867c3.414 14.945-4.914 30.074-19.37 35.18L64 117.663l-9.926-18.14l-1.027-.34c-13.926-5.48-21.754-20.32-18.41-34.91l-9.38-17.797h-7.39L14.715 41L3.765 21.836H35.25l5.137 10.2l.273.136l.067-.137C41.66 19.91 51.77 10.547 63.93 10.547c12.164 0 22.273 9.363 23.207 21.488l-.137.137l-.07-.137l5.82-10.2Zm0 0\\\"/></defs><g clip-path=\\\"url(#deviconV80)\\\"><g clip-path=\\\"url(#deviconV81)\\\"><path fill=\\\"#9e9e9e\\\" d=\\\"m104.727 40.316l-2.942 6.16h8.348l.414-.683l3.078-5.477h-8.965Zm-81.59 0h-8.762l3.492 6.16h8.281Zm0 0\\\"/></g></g><g clip-path=\\\"url(#deviconV82)\\\"><g clip-path=\\\"url(#deviconV83)\\\"><path fill=\\\"#424242\\\" d=\\\"M124.234 21.836L113.285 41h-7.668L93.363 64.344L64 117.664l-29.363-53.39L22.383 41h-7.668L3.765 21.836H35.25l5.137 10.2l16.699 30.456L63.93 75.02l6.574-12.528L86.93 32.035l5.82-10.2\\\"/></g></g><g clip-path=\\\"url(#deviconV84)\\\"><g clip-path=\\\"url(#deviconV85)\\\"><path fill=\\\"#fff\\\" fill-opacity=\\\".2\\\" d=\\\"M35.633 22.52H4.148l-.382-.684H35.25Zm57.117-.684l-.379.684h31.473l.39-.684Zm0 0\\\"/></g></g><g clip-path=\\\"url(#deviconV86)\\\"><g clip-path=\\\"url(#deviconV87)\\\"><path fill=\\\"#263238\\\" fill-opacity=\\\".2\\\" d=\\\"m110.574 45.777l-.398.7h-7.434l-9.398 17.832L64 117.664L34.656 64.293l-9.379-17.816h-7.441l-.383-.684h7.824l.364.684l9.015 17.132L64 116.98l29.344-53.355l9.406-17.848\\\"/></g></g><g clip-path=\\\"url(#deviconV88)\\\"><g clip-path=\\\"url(#deviconV89)\\\"><path fill=\\\"#fff\\\" d=\\\"M75.637 71.117c0 6.43-5.211 11.637-11.637 11.637s-11.637-5.207-11.637-11.637c0-6.426 5.211-11.637 11.637-11.637s11.637 5.211 11.637 11.637m-1.371-35.594c0 5.672-4.594 10.27-10.266 10.27s-10.266-4.598-10.266-10.27c0-5.668 4.594-10.265 10.266-10.265s10.266 4.597 10.266 10.265m0 0\\\"/></g></g><g clip-path=\\\"url(#deviconV8a)\\\"><g clip-path=\\\"url(#deviconV8b)\\\"><path fill=\\\"#4285f4\\\" d=\\\"M93.363 64.344A30.215 30.215 0 0 0 82.961 47.71a23.274 23.274 0 0 0-24.805-36.07a23.277 23.277 0 0 0-17.293 20.394a23.225 23.225 0 0 0 4.176 15.676a30.027 30.027 0 0 0-10.402 16.562a29.69 29.69 0 0 0-.754 6.844c0 12.735 7.941 23.684 19.164 28.067A30.195 30.195 0 0 0 64 101.238a30.045 30.045 0 0 0 23.617-11.34a30.047 30.047 0 0 0 5.746-25.554M64 25.94c5.293 0 9.582 4.293 9.582 9.582c0 5.293-4.289 9.586-9.582 9.586c-5.293 0-9.582-4.293-9.582-9.586c0-5.289 4.289-9.582 9.582-9.582m0 56.13c-6.023 0-10.953-4.93-10.953-10.954a10.956 10.956 0 0 1 6.148-9.808a10.957 10.957 0 0 1 11.512 1.183a10.895 10.895 0 0 1 4.246 8.625c0 6.051-4.906 10.953-10.953 10.953Zm0 0\\\"/></g></g><g clip-path=\\\"url(#deviconV8c)\\\"><g clip-path=\\\"url(#deviconV8d)\\\"><path fill=\\\"#fff\\\" fill-opacity=\\\".2\\\" d=\\\"M87.273 34.156v.344C87.082 21.8 76.73 11.566 64 11.566S40.91 21.801 40.727 34.5v-.344c0-12.855 10.418-23.273 23.273-23.273S87.273 21.3 87.273 34.156M44.766 47.95c-6.641 5.508-10.883 13.848-10.883 23.168v.344c.101-9.324 4.449-17.625 11.183-23.082l.317-.254l-.317-.41l-.3.273Zm38.468 0l-.3-.254l-.317.43l.317.277c6.742 5.473 11.09 13.758 11.183 23.067v-.344c0-9.309-4.242-17.66-10.883-23.137Zm0 0\\\"/></g></g><g clip-path=\\\"url(#deviconV8e)\\\"><g clip-path=\\\"url(#deviconV8f)\\\"><path fill=\\\"#263238\\\" fill-opacity=\\\".2\\\" d=\\\"M94.117 70.777v.34c0 16.633-13.484 30.121-30.117 30.121c-16.633 0-30.117-13.488-30.117-30.12v-.34C34.066 87.253 47.484 100.55 64 100.55s29.934-13.297 30.117-29.774Zm-53.39-36.965v.344a23.152 23.152 0 0 0 4.656 13.965c.11-.07.219-.164.34-.246a23.197 23.197 0 0 1-4.996-14.063m46.546 0a23.197 23.197 0 0 1-4.996 14.063c.121.082.23.168.34.25c2.922-3.832 4.656-8.691 4.656-13.96Zm0 0\\\"/></g></g><path fill=\\\"url(#deviconV8g)\\\" d=\\\"M124.234 21.836L113.285 41l-3.082 5.477h-7.46l-9.38 17.867c3.414 14.945-4.914 30.074-19.37 35.18L64 117.663l-9.926-18.14l-1.027-.34c-13.926-5.48-21.754-20.32-18.41-34.91l-9.38-17.797h-7.39L14.715 41L3.765 21.836H35.25l5.137 10.2l.273.136l.067-.137C41.66 19.91 51.77 10.547 63.93 10.547c12.164 0 22.273 9.363 23.207 21.488l-.137.137l-.07-.137l5.82-10.2Zm0 0\\\"/>\"\n\t\t},\n\t\t\"vagrant\": {\n\t\t\t\"body\": \"<path fill=\\\"#1159cc\\\" d=\\\"M122.5 23.9V12.82L95.91 28.3v9.34l-21.28 45.9l-10.64 7.33v33.61l22.81-13.15zM63.99 66.94L48.04 29.71V19.19l-.11-.06l-15.84 9.17v9.34l21.27 47.91l10.63-5.25z\\\"/><path fill=\\\"#127eff\\\" d=\\\"M106.55 3.52L79.97 19.09l-.02-.01v10.63L63.99 66.94v12.45l-10.63 6.16l-21.27-47.91v-9.36l15.96-9.19l-26.6-15.57l-15.95 9.3v11.42l35.9 87.2l22.59 13.04V91.72l10.64-6.17l-.13-.08l21.41-47.83v-9.36l26.59-15.46z\\\"/>\"\n\t\t},\n\t\t\"vagrant-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M47.77 51.47v-1.82H46.1v1.82h-.85v-4.38h.85v1.84h1.67v-1.84h.85v4.38zm4 0h-.68l-.09-.21a1.86 1.86 0 0 1-1 .28c-.6 0-.86-.4-.86-.94s.29-.89 1-.89h.79v-.33c0-.35-.1-.47-.63-.47a4.79 4.79 0 0 0-.91.1l-.1-.6a4.46 4.46 0 0 1 1.13-.15c1 0 1.34.35 1.34 1.14zm-.82-1.19h-.61c-.27 0-.34.07-.34.31s.07.32.33.32a1.34 1.34 0 0 0 .62-.16zm2.55 1.26a4 4 0 0 1-1.14-.18l.11-.6a3.83 3.83 0 0 0 1 .14c.37 0 .42-.08.42-.32s0-.29-.57-.42c-.8-.19-.9-.38-.9-1s.29-.92 1.23-.92a4.51 4.51 0 0 1 1 .11l-.08.63a6 6 0 0 0-.91-.09c-.36 0-.42.08-.42.27s0 .27.47.38c.92.23 1 .35 1 1s-.24 1-1.23 1zm3.78-.06v-2.21c0-.17-.07-.25-.26-.25a2.34 2.34 0 0 0-.86.27v2.19h-.82V47l.82.12v1.4a3 3 0 0 1 1.2-.31c.55 0 .74.37.74.93v2.29zm1.52-3.61v-.77h.82v.77zm0 3.61v-3.17h.82v3.16zm1.48-3.14c0-.79.48-1.25 1.6-1.25a5.3 5.3 0 0 1 1.22.14l-.09.71a6.91 6.91 0 0 0-1.1-.11c-.59 0-.78.19-.78.66v1.66c0 .46.19.66.78.66a6.91 6.91 0 0 0 1.1-.11l.09.71a5.3 5.3 0 0 1-1.22.14c-1.12 0-1.6-.46-1.6-1.25zm4.65 3.2c-1.13 0-1.43-.6-1.43-1.25v-.8c0-.65.3-1.25 1.43-1.25s1.43.6 1.43 1.25v.8c-.02.65-.36 1.25-1.45 1.25zm0-2.62c-.44 0-.61.19-.61.55v.85c0 .36.17.55.61.55s.61-.19.61-.55v-.85c-.03-.36-.2-.55-.63-.55zm3.76.05a6.54 6.54 0 0 0-.87.46v2H67v-3.12h.7l.05.35a3.75 3.75 0 0 1 .87-.42zM72 50.42a1 1 0 0 1-1.09 1.12a4.73 4.73 0 0 1-.88-.09v1.29l-.82.12v-4.55h.66l.08.27a1.78 1.78 0 0 1 1-.33c.66 0 1 .38 1 1.1zm-2 .36a3.8 3.8 0 0 0 .73.08c.3 0 .41-.14.41-.42v-1.12c0-.26-.1-.4-.41-.4a1.19 1.19 0 0 0-.74.29zM57.56 55h3.56l-5.41 18.1h-5.05L45.25 55h3.56l4.37 15.08zM71 73.1h-2.71l-.24-.9a7.24 7.24 0 0 1-3.94 1.17c-2.42 0-3.45-1.66-3.45-3.94c0-2.69 1.17-3.72 3.86-3.72h3.18v-1.39c0-1.47-.41-2-2.53-2a18.49 18.49 0 0 0-3.67.41l-.41-2.53a17.27 17.27 0 0 1 4.54-.63c4.16 0 5.38 1.47 5.38 4.78zm-3.32-5h-2.43c-1.09 0-1.39.3-1.39 1.3s.3 1.33 1.33 1.33a5.22 5.22 0 0 0 2.5-.68zm9.66 1.44a1.42 1.42 0 0 0-.79 1.06c0 .35.22.52.73.57l3.83.41c2.15.24 2.83 1.3 2.83 3.21c0 2.83-1 3.94-6 3.94a19.27 19.27 0 0 1-5.08-.73l.41-2.47a18.38 18.38 0 0 0 4.46.57c2.64 0 3.15-.19 3.15-1.06s-.24-1-1.25-1.06l-3.83-.43c-1.87-.22-2.61-.84-2.61-2.53a2.8 2.8 0 0 1 1.39-2.26a3.84 3.84 0 0 1-1.79-3.56V64c.05-2.74 1.49-4.4 5.33-4.4a9 9 0 0 1 2.26.27h4.08v1.66l-1.46.4a4.54 4.54 0 0 1 .43 2.07v1.25c0 2.69-1.63 4.32-5.33 4.32a6.89 6.89 0 0 1-.76-.03m.76-7.28c-1.63 0-2.2.6-2.2 1.85v1c0 1.3.65 1.79 2.2 1.79s2.23-.52 2.23-1.79v-1c0-1.25-.57-1.85-2.23-1.85m14.65.38a26 26 0 0 0-3.51 1.93v8.53h-3.31V59.87h2.8l.22 1.47a14.83 14.83 0 0 1 3.48-1.74zm11.09 10.46h-2.72l-.24-.9a7.24 7.24 0 0 1-3.94 1.17c-2.42 0-3.45-1.66-3.45-3.94c0-2.69 1.17-3.72 3.86-3.72h3.18v-1.39c0-1.47-.41-2-2.53-2a18.49 18.49 0 0 0-3.67.41l-.41-2.53a17.27 17.27 0 0 1 4.54-.63c4.16 0 5.38 1.47 5.38 4.78zm-3.32-5h-2.44c-1.09 0-1.39.3-1.39 1.3S97 70.74 98 70.74a5.22 5.22 0 0 0 2.5-.68zm13.18 5v-9.24c0-.71-.3-1.06-1.06-1.06a9.14 9.14 0 0 0-3.45 1.11v9.19h-3.32V59.87h2.53l.33 1.11A13.25 13.25 0 0 1 114 59.6c2.2 0 3 1.55 3 3.91v9.59zm13.07-.24a9.19 9.19 0 0 1-2.91.52c-2.42 0-3.64-1.14-3.64-3.51V62.5h-2v-2.63h2v-3.29l3.32-.46v3.75h3.4l-.22 2.64h-3.18v6.93a1 1 0 0 0 1.2 1.17a6.38 6.38 0 0 0 1.66-.27z\\\"/><path fill=\\\"#1159cc\\\" d=\\\"M33.89 52.75v-3.1l-7.46 4.34v2.62l-5.97 12.88l-2.98 2.05v9.43l6.4-3.69zM17.48 64.83L13 54.38v-2.95l-.03-.01l-4.44 2.57v2.62l5.96 13.44l2.99-1.47z\\\"/><path fill=\\\"#127eff\\\" d=\\\"m29.42 47.03l-7.46 4.37h-.01v2.98l-4.47 10.45v3.49l-2.99 1.73l-5.96-13.44v-2.63l4.48-2.57l-7.47-4.38l-4.47 2.62v3.2l10.07 24.46l6.34 3.66v-9.19l2.98-1.73l-.03-.02l6-13.42v-2.63l7.46-4.33z\\\"/>\"\n\t\t},\n\t\t\"vala\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconVala0\\\" x1=\\\"-18.592\\\" x2=\\\"-18.592\\\" y1=\\\"-81.414\\\" y2=\\\"204.37\\\" gradientTransform=\\\"translate(8.263 36.184)scale(.44444)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#a56de2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7239b3\\\"/></linearGradient><linearGradient id=\\\"deviconVala1\\\" x1=\\\"-13.699\\\" x2=\\\"-13.699\\\" y1=\\\"-7.486\\\" y2=\\\"156.3\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8b58c9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#743fb3\\\"/></linearGradient><linearGradient id=\\\"deviconVala2\\\" x1=\\\"-13.699\\\" x2=\\\"-13.699\\\" y1=\\\"-7.486\\\" y2=\\\"151.61\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7548b2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#6639a4\\\"/></linearGradient></defs><path fill=\\\"url(#deviconVala0)\\\" d=\\\"M0 0h128v128H0z\\\"/><path fill=\\\"url(#deviconVala1)\\\" d=\\\"M-25.893-7.887c-35.819 9.21-66.614 18.75-71.867 53.304c-.853 5.857-.584 11.676 1.414 17.254c2.25 5.764 7.28 9.153 15.094 10.168c3.065.415 14.252 2.487 13.982-2.466c-.287-1.668-1.31-3.517-2.125-5.442c-1.299-2.84-1.197-5.903-1.188-8.76c.447-10.028 3.083-18.524 7.92-25.479c3.81-5.409 8.67-9.8 14.572-13.184l3.14 133.11c0 1.953 1.289 2.991 3.828 2.991h29.88c2.154 0 2.995-.75 3.705-2.654C11.64 99.776 30.526 48.485 49.774-2.665c.255-2.592-2.415-3.57-4.312-4.229H31.425c-2.469-.084-3.92 1.346-4.424 2.826L-7.528 96.392L-9.7.502v-6.188l-4-1.813h-4a81.98 81.98 0 0 0-8.193-.4z\\\" transform=\\\"translate(72.688 35.556)scale(.44444)\\\"/><path fill=\\\"url(#deviconVala2)\\\" d=\\\"M-40.88 149.61L-44.178 9.8q-14.39 5.396-22.485 16.889q-7.994 11.492-7.994 28.581q0 8.294 2.298 12.492q.5.8.5 1.4q-16.389 0-20.487-10.494q-1.4-3.797-1.4-9.393q0-10.293 6.397-19.787q6.495-9.594 16.689-16.99Q-47.375-3.89-21.893-3.89q4.197 0 8.194.4l1.8 125.92L31.171-2.89h14.291l-56.865 152.5z\\\" transform=\\\"translate(72.688 35.556)scale(.44444)\\\"/><path fill=\\\"#fff\\\" d=\\\"m54.52 100.27l-1.466-62.137q-6.396 2.398-9.993 7.506q-3.553 5.108-3.553 12.703q0 3.687 1.021 5.552q.223.355.223.622q-7.285 0-9.106-4.664q-.622-1.687-.622-4.175q0-4.575 2.843-8.794q2.887-4.264 7.417-7.55q10.35-7.285 21.674-7.285q1.866 0 3.642.179l.8 55.964l19.143-55.697h6.351L67.621 100.27z\\\"/>\"\n\t\t},\n\t\t\"vala-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconValaWordmark0\\\" x1=\\\"-18.592\\\" x2=\\\"-18.592\\\" y1=\\\"-81.414\\\" y2=\\\"204.37\\\" gradientTransform=\\\"translate(8.263 36.184)scale(.44444)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#a56de2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#7239b3\\\"/></linearGradient><linearGradient id=\\\"deviconValaWordmark1\\\" x1=\\\"106.16\\\" x2=\\\"105.9\\\" y1=\\\"33.609\\\" y2=\\\"106.44\\\" gradientTransform=\\\"translate(-22.748 13.091)scale(.72823)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8b58c9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#743fb3\\\"/></linearGradient><linearGradient id=\\\"deviconValaWordmark2\\\" x1=\\\"69.487\\\" x2=\\\"69.487\\\" y1=\\\"33.614\\\" y2=\\\"104.68\\\" gradientTransform=\\\"translate(-22.748 13.091)scale(.72823)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7548b2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#6639a4\\\"/></linearGradient></defs><path fill=\\\"url(#deviconValaWordmark0)\\\" d=\\\"M0 0h128v128H0z\\\"/><path fill=\\\"url(#deviconValaWordmark1)\\\" d=\\\"M23.908 37.437v.004C12.315 40.421 2.347 43.51.648 54.692c-.276 1.896-.189 3.78.458 5.586c.728 1.865 2.355 2.961 4.884 3.29c.992.134 4.613.805 4.526-.798c-.093-.54-.425-1.138-.688-1.761c-.42-.92-.388-1.912-.384-2.836c.144-3.246.997-5.994 2.563-8.245c1.233-1.75 2.806-3.172 4.716-4.267l1.017 43.08c0 .633.417.97 1.239.97h9.67c.698 0 .97-.243 1.2-.86c6.206-16.564 12.32-33.165 18.55-49.72c.082-.839-.782-1.155-1.396-1.368h-4.544c-.8-.027-1.269.435-1.431.915L29.853 71.192l-.704-31.035v-2.003l-1.295-.587H26.56a26.52 26.52 0 0 0-2.651-.13zm69.772 3.552l-9.8 1.322c-.628.173-.944.484-1.244.894l-.003-.009l-7.02 32.887l-.018.09c-.805 2.69-1.85 4.492-3.132 5.419c-.671.42-1.259.514-1.672.1c-.512-.472-.777-1.204-.777-2.212c0-.185.026-.382.041-.574l4.906-23.598c.126-.471-.744-.941-1.195-1.062h-9.541c-.628.173-.945.483-1.245.893a4.82 4.82 0 0 0-.83-.314c-.848-.6-2.18-.902-4.007-.902c-2.4 0-4.562.555-6.497 1.643a13.134 13.134 0 0 0-3.969 2.662c-2.566 2.48-4.54 5.618-5.92 9.413a30.52 30.52 0 0 0-1.389 5.209c-.444 3.902-1.014 8.34.185 11.855a7.65 7.65 0 0 0 .73 1.465h-.012c2.605 4.512 10.295 6.501 16.576 1.299c.396-.315.773-.653 1.12-1.019c1.03 2.933 3.71 4.049 6.365 4.102c2.019-.058 4.164-.416 5.853-1.038c1.638-.614 3.341-1.564 4.564-2.849c.078.178.164.35.257.515l.005.007c.32.54.661.945 1.055 1.334c3.135 2.943 9.629 2.606 14.441-.594c.82-.518 1.579-1.116 2.205-1.795c.953 1.513 2.124 2.45 3.509 3.221c3.292 1.706 7.92 1.786 12.124-1.09c.81-.523 1.58-1.134 2.228-1.851c.533 1.138 1.209 2.09 2.006 2.764c1.981 1.479 4.805 1.64 7.086 1.089c1.291-.298 2.48-.91 3.34-1.77c.648-.734 1.435-2.34 2.362-4.82l-.946-2.608v-.003c-.388.194-.874.292-1.456.292a4.88 4.88 0 0 1-.83-.073c-.39-.375-.593-.904-.593-1.603c0-.241.012-.48.03-.718l4.919-23.653l-.003.003c.126-.471-.742-.94-1.194-1.061h-9.542v-.002h-.001c-.628.173-.944.484-1.243.893a4.826 4.826 0 0 0-.83-.312c-.847-.6-2.18-.902-4.006-.902c-2.396 0-4.556.555-6.49 1.64a13.15 13.15 0 0 0-3.976 2.667c-2.566 2.48-4.54 5.616-5.92 9.411a30.527 30.527 0 0 0-1.39 5.209c-.332 1.948-.387 3.661-.497 5.415a8.952 8.952 0 0 1-1.49 1.988a6.585 6.585 0 0 1-1.053.875a4.31 4.31 0 0 1-1.352.219a4.88 4.88 0 0 1-.81-.07c-.38-.37-.58-.889-.58-1.574c0-.342.023-.686.056-1.032l7.705-36.63c.118-.47-.745-.937-1.195-1.057M59.914 60.92c.938.09 1.151.72 1.53 1.503l-2.898 13.659c-.41 1.811-1.154 3.245-2.232 4.301a6.383 6.383 0 0 1-.892.716c-.961.555-1.301.824-2 .126c-.819-.776-1.228-2.145-1.228-4.108c0-1.013.052-1.973.16-2.878c.043-.36.102-.697.153-1.046c.892-4.447 2.476-7.984 4.771-10.58c.834-.812 1.984-1.582 2.636-1.692zm52.528.002c.36.003.71.17 1.024.568c.03.042.065.08.091.125c.183.295.318.564.415.81l-2.898 13.66c-.41 1.812-1.154 3.245-2.232 4.302a6.384 6.384 0 0 1-.892.715c-.818.412-1.327.638-2 .127c-.819-.776-1.227-2.146-1.227-4.108c0-1.013.053-1.973.16-2.879c.044-.358.102-.696.153-1.045c.893-4.447 2.476-7.984 4.772-10.58l.028-.03c.666-.635 1.67-1.672 2.606-1.664z\\\"/><path fill=\\\"url(#deviconValaWordmark2)\\\" d=\\\"M25.202 38.733v.002c-5.498 0-10.76 1.767-15.784 5.303c-2.2 1.596-4 3.429-5.402 5.499c-1.38 2.049-2.07 4.184-2.07 6.405c0 1.207.15 2.22.453 3.04c.884 2.263 3.094 3.396 6.63 3.396c0-.13-.052-.28-.16-.453c-.496-.905-.744-2.254-.744-4.043c0-3.687.862-6.771 2.587-9.25c1.747-2.48 4.172-4.303 7.277-5.467l1.068 45.25h9.541L47.001 39.06h-4.625L28.435 79.62l-.582-40.755a26.545 26.545 0 0 0-2.652-.13zm68.479 3.55l-9.8 1.326l-7.084 33.184l-.017.09c-1.229 4.1-3.01 6.154-5.343 6.154c-1.81 0-2.716-.95-2.716-2.848c0-.668.097-1.379.291-2.133l4.755-22.513h-9.541l-.713 3.524v-.485c0-.97-.42-1.767-1.261-2.392c-.841-.647-2.21-.97-4.108-.97c-3.623 0-6.716 1.238-9.282 3.718s-4.54 5.618-5.92 9.413a30.52 30.52 0 0 0-1.39 5.208a30.149 30.149 0 0 0-.453 5.207c0 1.725.248 3.266.744 4.624c1.38 3.774 3.989 5.661 7.827 5.661c3.86 0 7.235-2.026 10.124-6.08c.431 4.054 2.597 6.08 6.5 6.08c4.145 0 7.53-1.914 10.15-5.74c.277 1.68.899 2.968 1.871 3.863c1.38 1.25 2.944 1.877 4.69 1.877c4.688 0 8.429-2.024 11.227-6.067c.044.139.088.276.138.412c1.38 3.774 4.033 5.66 7.958 5.66c3.924 0 7.255-2.049 9.993-6.145c.26 1.962.949 3.483 2.07 4.561c1.121 1.057 2.555 1.585 4.301 1.585c1.768 0 3.225-.627 4.368-1.878c.647-.733 1.434-2.339 2.361-4.818c-.388.194-.874.291-1.456.291c-1.812 0-2.717-.753-2.717-2.263c0-.798.097-1.575.291-2.33l4.755-22.512h-9.542l-.712 3.525v-.485c0-.97-.42-1.768-1.261-2.393c-.841-.647-2.21-.97-4.108-.97c-3.622 0-6.716 1.24-9.282 3.719c-2.566 2.48-4.54 5.617-5.92 9.412a30.526 30.526 0 0 0-1.843 10.415l.002.131a8.976 8.976 0 0 1-1.535 2.065c-1.1 1.122-2.295 1.681-3.589 1.681c-1.79 0-2.685-.743-2.685-2.231c0-.777.085-1.565.258-2.363zM59.925 59.326c1.23 0 2.026.325 2.392.972c.389.625.584 1.142.584 1.551l-3.17 14.943c-.41 1.812-1.154 3.245-2.232 4.301c-1.078 1.035-2.275 1.554-3.59 1.554c-.712 0-1.305-.237-1.78-.711c-.82-.777-1.229-2.146-1.229-4.108c0-1.014.053-1.973.161-2.879c.712-5.93 2.47-10.48 5.273-13.65c1.164-1.315 2.362-1.973 3.59-1.973zm52.528.004c1.23 0 2.027.325 2.394.972c.388.625.583 1.142.583 1.552l-3.172 14.943c-.41 1.811-1.153 3.244-2.231 4.3c-1.079 1.036-2.275 1.554-3.59 1.554c-.712 0-1.305-.237-1.78-.711c-.82-.776-1.227-2.146-1.227-4.108c0-1.013.053-1.973.16-2.879c.712-5.93 2.47-10.48 5.273-13.65c1.164-1.315 2.361-1.972 3.59-1.972z\\\"/><path fill=\\\"#fff\\\" d=\\\"M25.202 37.439v.002c-5.498 0-10.76 1.767-15.784 5.303c-2.2 1.596-4 3.429-5.402 5.499c-1.38 2.049-2.07 4.184-2.07 6.405c0 1.207.15 2.22.453 3.04c.884 2.263 3.094 3.396 6.63 3.396c0-.13-.052-.28-.16-.453c-.496-.905-.744-2.254-.744-4.043c0-3.687.862-6.771 2.587-9.25c1.747-2.48 4.172-4.303 7.277-5.467l1.068 45.25h9.541l18.403-49.356h-4.625l-13.941 40.56l-.582-40.755a26.545 26.545 0 0 0-2.652-.13zm68.479 3.55l-9.8 1.326l-7.084 33.184l-.017.09c-1.229 4.1-3.01 6.154-5.343 6.154c-1.81 0-2.716-.95-2.716-2.848c0-.668.097-1.379.291-2.133l4.755-22.513h-9.541l-.713 3.524v-.485c0-.97-.42-1.767-1.261-2.392c-.841-.647-2.21-.97-4.108-.97c-3.623 0-6.716 1.238-9.282 3.718s-4.54 5.618-5.92 9.413a30.52 30.52 0 0 0-1.39 5.208a30.149 30.149 0 0 0-.453 5.207c0 1.725.248 3.266.744 4.624c1.38 3.774 3.989 5.661 7.827 5.661c3.86 0 7.235-2.026 10.124-6.08c.431 4.054 2.597 6.08 6.5 6.08c4.145 0 7.53-1.914 10.15-5.74c.277 1.68.899 2.968 1.871 3.863c1.38 1.25 2.944 1.877 4.69 1.877c4.688 0 8.429-2.024 11.227-6.067c.044.139.088.276.138.412c1.38 3.774 4.033 5.66 7.958 5.66c3.924 0 7.255-2.049 9.993-6.145c.26 1.962.949 3.483 2.07 4.561c1.121 1.057 2.555 1.585 4.301 1.585c1.768 0 3.225-.627 4.368-1.878c.647-.733 1.434-2.339 2.361-4.818c-.388.194-.874.291-1.456.291c-1.812 0-2.717-.753-2.717-2.263c0-.798.097-1.575.291-2.33l4.755-22.512h-9.542l-.712 3.525v-.485c0-.97-.42-1.768-1.261-2.393c-.841-.647-2.21-.97-4.108-.97c-3.622 0-6.716 1.24-9.282 3.719c-2.566 2.48-4.54 5.617-5.92 9.412a30.526 30.526 0 0 0-1.843 10.415l.002.131a8.976 8.976 0 0 1-1.535 2.065c-1.1 1.122-2.295 1.681-3.589 1.681c-1.79 0-2.685-.743-2.685-2.231c0-.777.085-1.565.258-2.363zM59.925 58.032c1.23 0 2.026.325 2.392.972c.389.625.584 1.142.584 1.551l-3.17 14.943c-.41 1.812-1.154 3.245-2.232 4.301c-1.078 1.035-2.275 1.554-3.59 1.554c-.712 0-1.305-.237-1.78-.711c-.82-.777-1.229-2.146-1.229-4.108c0-1.014.053-1.973.161-2.879c.712-5.93 2.47-10.48 5.273-13.65c1.164-1.315 2.362-1.973 3.59-1.973zm52.528.004c1.23 0 2.027.325 2.394.972c.388.625.583 1.142.583 1.552l-3.172 14.943c-.41 1.811-1.153 3.244-2.231 4.3c-1.079 1.036-2.275 1.554-3.59 1.554c-.712 0-1.305-.237-1.78-.711c-.82-.776-1.227-2.146-1.227-4.108c0-1.013.053-1.973.16-2.879c.712-5.93 2.47-10.48 5.273-13.65c1.164-1.315 2.361-1.972 3.59-1.972z\\\"/>\"\n\t\t},\n\t\t\"vault\": {\n\t\t\t\"body\": \"<path fill=\\\"#ffd814\\\" d=\\\"m0 1.953l63.76 124.094L128 1.953Zm53.841 49.254H43.684V41.06H53.84zm0-15.227H43.684V25.822H53.84ZM69.08 66.444H58.97V56.286h10.108zm0-15.237H58.97V41.06h10.108zm0-15.227H58.97V25.822h10.108Zm15.147 15.227h-10.2V41.06h10.159Zm-10.2-15.227V25.822h10.159V35.98z\\\"/>\"\n\t\t},\n\t\t\"vault-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M36.222 100.97v-3.012h-2.75v3.012h-1.41v-7.228h1.41v3.025h2.75v-3.03h1.408v7.227zm6.559 0h-1.116l-.1-.356a3.024 3.024 0 0 1-1.614.462c-.992 0-1.417-.623-1.417-1.553c0-1.06.481-1.464 1.584-1.464h1.303v-.55c0-.574-.167-.78-1.034-.78a7.657 7.657 0 0 0-1.51.162l-.168-.997a7.438 7.438 0 0 1 1.87-.25c1.71 0 2.208.58 2.208 1.871zM41.42 99h-1.003c-.443 0-.567.118-.567.517c0 .4.124.523.542.523a2.232 2.232 0 0 0 1.028-.267zm4.21 2.076a6.49 6.49 0 0 1-1.871-.3l.187-.997a6.235 6.235 0 0 0 1.622.23c.623 0 .692-.131.692-.53c0-.4-.07-.48-.949-.686c-1.327-.305-1.484-.623-1.484-1.633s.481-1.516 2.027-1.516a7.358 7.358 0 0 1 1.628.187l-.131 1.036a9.977 9.977 0 0 0-1.497-.15c-.592 0-.692.131-.692.449c0 .418.037.45.773.624c1.516.386 1.659.574 1.659 1.646s-.324 1.64-1.965 1.64zm6.235-.106v-3.642c0-.28-.125-.418-.437-.418a3.785 3.785 0 0 0-1.415.444v3.616h-1.366v-7.32l1.366.205v2.288a4.938 4.938 0 0 1 1.983-.505c.904 0 1.247.624 1.247 1.546v3.78zm2.495-5.955v-1.247h1.358v1.247zm0 5.955v-5.212h1.358v5.212Zm2.45-5.176c0-1.303.791-2.064 2.644-2.064a8.73 8.73 0 0 1 2.014.238l-.157 1.165a11.448 11.448 0 0 0-1.814-.181c-.973 0-1.285.319-1.285 1.08v2.743c0 .76.313 1.079 1.285 1.079a11.448 11.448 0 0 0 1.814-.182l.157 1.172a8.73 8.73 0 0 1-2.014.232c-1.871 0-2.645-.76-2.645-2.064zm7.669 5.282c-1.87 0-2.369-.985-2.369-2.058v-1.316c0-1.073.505-2.058 2.369-2.058c1.864 0 2.363.985 2.363 2.058v1.316c.007 1.073-.499 2.058-2.357 2.058zm0-4.315c-.73 0-1.004.312-1.004.898v1.403c0 .592.275.904 1.004.904c.73 0 1.004-.312 1.004-.904v-1.403c.006-.586-.243-.892-.998-.892zm6.192.087a10.52 10.52 0 0 0-1.435.761v3.36H67.88v-5.211h1.153l.087.572a6.235 6.235 0 0 1 1.428-.686zm5.444 2.388c0 1.154-.537 1.839-1.797 1.839a7.695 7.695 0 0 1-1.452-.149v2.132l-1.36.207v-7.483h1.085l.131.436a2.943 2.943 0 0 1 1.715-.548c1.097 0 1.677.623 1.677 1.814zm-3.25.586a6.292 6.292 0 0 0 1.204.144c.493 0 .687-.225.687-.698v-1.84c0-.43-.17-.666-.674-.666a1.958 1.958 0 0 0-1.248.472zm22.885 27.555a10.843 10.843 0 0 1-3.449.623c-2.862 0-4.308-1.346-4.308-4.153v-8.729h-2.35V112h2.35v-3.89l3.928-.55V112h4.021l-.255 3.118h-3.74v8.212a1.247 1.247 0 0 0 1.414 1.384a7.589 7.589 0 0 0 1.964-.324zm-15.645.293v-22.086l3.928-.549v22.635Zm-11.36-15.682v10.968c0 .835.348 1.247 1.246 1.247a10.843 10.843 0 0 0 4.09-1.323v-10.892h3.923v15.682h-2.993l-.387-1.323a15.676 15.676 0 0 1-6.266 1.64c-2.614 0-3.542-1.832-3.542-4.632v-11.367zM62.56 127.67h-3.218l-.286-1.067a8.58 8.58 0 0 1-4.671 1.384c-2.862 0-4.091-1.964-4.091-4.664c0-3.186 1.385-4.414 4.572-4.414h3.74v-1.64c0-1.74-.48-2.35-2.993-2.35a21.687 21.687 0 0 0-4.364.485l-.48-2.993a20.24 20.24 0 0 1 5.374-.741c4.927 0 6.373 1.74 6.373 5.667zm-3.929-5.925h-2.893c-1.29 0-1.64.356-1.64 1.547c0 1.09.35 1.578 1.578 1.578a6.167 6.167 0 0 0 2.955-.804zm-12.003-15.519h4.215L44.44 127.67h-6.01l-6.386-21.445h4.216l5.187 17.872z\\\"/><path fill=\\\"#ffd814\\\" d=\\\"m24.243 0l39.608 77.088L103.757 0ZM57.69 30.597h-6.31v-6.303h6.31zm0-9.459h-6.31v-6.31h6.31zm9.465 18.925h-6.28v-6.31h6.28zm0-9.466h-6.28v-6.303h6.28zm0-9.459h-6.28v-6.31h6.28zm9.41 9.459h-6.336v-6.303h6.31zm-6.336-9.459v-6.31h6.31v6.31z\\\"/>\"\n\t\t},\n\t\t\"vercel\": {\n\t\t\t\"body\": \"<path d=\\\"M64.002 8.576L128 119.424H0Zm0 0\\\"/>\"\n\t\t},\n\t\t\"vercel-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M64.144 56.789c-4.976 0-8.563 3.245-8.563 8.112s4.034 8.113 9.014 8.113c3.006 0 5.656-1.19 7.297-3.195l-3.448-1.992c-.91.996-2.294 1.577-3.849 1.577c-2.159 0-3.993-1.127-4.674-2.93H72.55a8.151 8.151 0 0 0 .158-1.577c0-4.863-3.583-8.108-8.564-8.108m-4.259 6.535c.563-1.798 2.105-2.93 4.26-2.93c2.158 0 3.7 1.132 4.259 2.93zm-1.019-11.493L46.377 73.465L33.884 51.83h4.683l7.806 13.521l7.806-13.521zm-42.212-2.253l16.653 28.845H0Zm74.172 15.324c0 2.704 1.767 4.507 4.507 4.507c1.857 0 3.25-.843 3.966-2.218l3.462 1.997c-1.434 2.388-4.12 3.826-7.428 3.826c-4.98 0-8.563-3.245-8.563-8.112c0-4.868 3.587-8.113 8.563-8.113c3.308 0 5.99 1.438 7.428 3.826l-3.462 1.997c-.716-1.375-2.109-2.218-3.966-2.218c-2.736 0-4.507 1.803-4.507 4.508M128 51.83v20.732h-4.056V51.831Zm-15.324 4.958c-4.976 0-8.563 3.245-8.563 8.112s4.038 8.113 9.014 8.113c3.006 0 5.656-1.19 7.297-3.195l-3.448-1.992c-.91.996-2.294 1.577-3.85 1.577c-2.158 0-3.992-1.127-4.673-2.93h12.629a8.16 8.16 0 0 0 .157-1.577c0-4.863-3.583-8.108-8.563-8.108m-4.26 6.535c.564-1.798 2.101-2.93 4.26-2.93s3.7 1.132 4.26 2.93zm-22.999-6.085v4.368a5.157 5.157 0 0 0-1.442-.221c-2.618 0-4.507 1.803-4.507 4.507v6.67h-4.056V57.24h4.056v4.147c0-2.29 2.664-4.147 5.95-4.147z\\\"/>\"\n\t\t},\n\t\t\"vertx\": {\n\t\t\t\"body\": \"<path fill=\\\"#782a91\\\" d=\\\"M16.878 0h94.244A16.84 16.84 0 0 1 128 16.878v94.244A16.84 16.84 0 0 1 111.122 128H16.878A16.84 16.84 0 0 1 0 111.122V16.878A16.84 16.84 0 0 1 16.878 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M0 26.309v6.03l26.58 60.369l3.803 8.636h7.465a18.19 18.19 0 0 1-.014-.182A17.282 17.282 0 0 1 48.7 85.158l19.564-42.814L83.449 63.68l-17.19 24.276a17.282 17.282 0 0 1 6.129 12.809h7.79l13.896-19.624l9.234-13.04L127.8 33.519v-7.21h-18.394L94.869 47.554L80.295 26.31H56.852l.041.058L36.745 70.46l-19.44-44.15Zm109.788 46.199L98.84 88.215l8.456 12.55h20.502v-2.948Zm-54.672 17.87c-5.956 0-10.785 4.828-10.785 10.784c0 5.957 4.829 10.786 10.785 10.786c5.957 0 10.785-4.83 10.785-10.786c0-5.956-4.828-10.784-10.785-10.785Z\\\"/>\"\n\t\t},\n\t\t\"vertx-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"m0 47.63l10.2 28.44h4.788l10.233-28.439h-5.434L12.56 69.879L5.412 47.631zm26.176 0v28.44h18.592v-3.947H31.119v-8.746h11.686v-3.906H31.119v-7.852h13.514v-3.988zm20.379 0v28.44H51.5V51.62h5.213c1.714.03 3.013.455 3.875 1.286c.862.831 1.299 2.015 1.299 3.532c0 1.454-.468 2.607-1.403 3.449c-.935.841-2.244 1.256-3.906 1.256h-2.814v2.513l8.943 12.414h5.297v-.25l-8.018-11.082c2.587-.571 4.497-2.255 5.463-3.73c.852-1.309 1.381-2.877 1.381-4.777c0-2.784-.893-4.925-2.68-6.39c-1.776-1.474-4.31-2.21-7.591-2.21zm19.736 0v3.99h8.787v24.45h4.227c.01-1.028.26-1.995.685-2.857V51.619h8.871v-3.988z\\\"/><path fill=\\\"#782a91\\\" d=\\\"m89.848 47.63l8.861 14.106l-6.97 10.979a6.62 6.62 0 0 1 .954 3.365h5.205l18.573-28.45h-8.756l-4.945 7.708l-4.196-7.707zm19.455 16.38l-4.31 6.513l3.085 5.547h8.838zm-23.309 7.947a4.207 4.207 0 0 0-4.207 4.207a4.207 4.207 0 0 0 4.207 4.205a4.207 4.207 0 0 0 4.207-4.205a4.207 4.207 0 0 0-4.207-4.207\\\"/><path d=\\\"M122.308 48.347h-1.59v4.383h-.882v-4.383h-1.58v-.717h4.052zm1.61-.717l1.475 3.916l1.464-3.916H128v5.1h-.883v-1.683l.083-2.254l-1.506 3.937h-.634l-1.506-3.926l.083 2.243v1.683h-.883v-5.1Z\\\"/>\"\n\t\t},\n\t\t\"vim\": {\n\t\t\t\"body\": \"<defs><path id=\\\"deviconVim0\\\" d=\\\"M30.748 108.895h-7.509l-1.226-1.255V18.566h-6.436l-1.379-1.255v-5.436l1.226-1.255h37.544l1.379 1.115v5.297l-1.532 1.533h-7.049v47.952l42.6-43.213v-4.739H81.93l-1.226-1.255v-5.297l1.532-1.533h36.931l1.532 1.533v4.182l-89.951 92.699zm-7.355-.139h7.355l89.645-92.699v-4.043l-1.379-1.394H82.39l-1.379 1.394v5.018l1.226 1.115h6.589v5.158l-43.06 43.771V18.287h7.202l1.379-1.394v-5.158l-1.226-.976H15.577l-1.226 1.115v5.158l1.226 1.115h6.589v89.214l1.226 1.394z\\\"/></defs><path fill=\\\"#019833\\\" d=\\\"M64.461 7.136L8.529 63.173l55.779 55.898l56.085-56.037z\\\"/><path d=\\\"M64.308 119.211L8.376 63.174l.153-.139L64.614 6.858l55.932 56.037l-.153.139zM8.682 63.174l55.626 55.759l55.932-55.898L64.614 7.276z\\\"/><path fill=\\\"#66FE98\\\" d=\\\"M64.308 7.275V2.396L3.319 63.452h5.21z\\\"/><path d=\\\"M8.529 63.452H3.012l.153-.139L64.307 2.118v5.158L8.528 63.453zm-4.904-.139h4.75L64.154 7.276v-4.6z\\\"/><path fill=\\\"#45FE02\\\" d=\\\"M64.154 7.275V2.396l60.989 61.056h-5.21z\\\"/><path d=\\\"M125.297 63.452h-5.517L64.001 7.415V2.257l.153.139zm-5.363-.139h4.75L64.308 2.675v4.6l55.626 56.037z\\\"/><path fill=\\\"#017D17\\\" d=\\\"M64.308 119.35v4.879L3.319 63.313h5.21z\\\"/><path d=\\\"m64.308 124.508l-.153-.139L3.013 63.174H8.53l55.779 56.177v5.158zM3.625 63.313l60.529 60.638v-4.6L8.375 63.314z\\\"/><path d=\\\"M33.507 112.659H21.708l-4.597-2.649V22.608h-3.678l-3.065-3.067V9.923l3.218-3.485h41.221l3.678 3.764v9.061l-3.065 3.764h-3.065v28.995l29.269-28.995h-1.686l-3.371-3.624V9.785l3.371-3.067h41.528l3.218 3.346v9.061zm-10.573-4.461h8.735l88.725-91.026v-5.436l-.613-.697H81.625l-.613.558v5.855l.919.976h10.573L47.912 62.477V18.428h5.517l.766-.836v-5.576l-1.073-1.115H15.578l-.766.836v5.994l.46.558h6.436v89.074l1.226.836z\\\"/><path fill=\\\"#005D04\\\" d=\\\"M64.154 119.35v4.879l60.989-61.056h-5.21z\\\"/><path d=\\\"M64.001 124.508v-5.158l55.779-56.177h5.517l-.153.139zm.306-5.158v4.6l60.529-60.638h-4.75l-55.779 56.037z\\\"/><path d=\\\"M63.848 125.065L1.94 63.173L64.002 1.002l61.908 61.892zM3.932 63.173l59.916 60.08l60.223-60.219l-59.916-60.08z\\\"/><path fill=\\\"#FEFEFE\\\" d=\\\"m54.347 12.294l2.145-1.115l-2.299-2.23H14.657l-1.992 1.952v7.667l2.299 2.23l1.073-2.23l-1.379-1.394v-5.436l1.073-.976h37.85z\\\"/><path d=\\\"m14.965 20.936l-2.452-2.37v-7.667l2.145-2.091h39.689l2.452 2.37l-2.452 1.255l-.919-1.533h-37.85l-.919.836v5.297l1.379 1.394zm-2.145-2.509l2.145 2.091l.919-1.952l-1.379-1.394v-5.436l1.073-.976h37.85l.919 1.533l1.992-1.115l-2.145-2.091H14.658l-1.992 1.952v7.388z\\\"/><use href=\\\"#deviconVim0\\\"/><path fill=\\\"#FEFEFE\\\" d=\\\"M22.014 18.288v89.214l1.226 1.255l-.919 1.673l-2.605-2.509V20.659z\\\"/><path d=\\\"m22.32 110.847l-2.758-2.649V20.657l2.605-2.509v89.493l1.226 1.394zm-2.452-2.788l2.452 2.37l.766-1.533l-1.073-1.255V18.567l-2.145 2.091v87.402z\\\"/><path fill=\\\"gray\\\" d=\\\"m15.731 18.288l-.613 2.091h4.75l2.605-2.091z\\\"/><path d=\\\"M19.868 20.657h-4.904l.766-2.37h7.202l-3.065 2.37zm-4.75-.279h4.597l2.299-1.952h-6.436z\\\"/><path fill=\\\"#FEFEFE\\\" d=\\\"m81.47 20.797l1.073-2.23l-1.532-1.394v-4.739l1.686-1.812h36.471l1.379 1.812l1.992-1.394l-1.992-2.091H81.318l-1.992 1.952v7.667l2.145 2.23M49.597 57.459l-3.831 9.2l43.06-43.213v-5.158z\\\"/><path d=\\\"m45.919 66.937l-.153-.139l3.831-9.34l39.382-39.31v5.436l-43.06 43.352zm3.831-9.34l-3.524 8.782l42.6-42.795v-4.879zm31.72-36.801l-.153-.139l-1.992-1.952v-7.806l1.992-2.091h39.382l2.145 2.37l-2.145 1.533l-1.379-1.952H82.696l-1.686 1.673v4.739l1.532 1.394l-1.073 2.23zm-1.992-2.091l1.992 1.812l.919-1.952l-1.532-1.394v-4.879l1.839-1.812h36.624l1.379 1.812l1.839-1.255l-1.992-1.952H81.317l-1.839 1.952v7.667z\\\"/><path fill=\\\"gray\\\" d=\\\"m54.194 12.015l1.839-1.255v7.527l-2.145 2.23h-4.291v37.08l-3.831 9.2v-48.51h7.049l1.379-1.115v-5.158z\\\"/><path d=\\\"M45.919 66.798h-.153v-48.51h7.202l1.226-.976v-5.158l2.145-1.394v7.806l-2.299 2.23h-4.137v36.94l-3.984 9.061zm0-48.371V66.24l3.678-8.643V20.378h4.291l2.145-2.091v-7.249l-1.686 1.115v5.158l-1.379 1.115h-7.049z\\\"/><path fill=\\\"#ccc\\\" d=\\\"m82.39 10.621l-1.379 1.394v5.158l1.226 1.255h6.436v5.018L45.766 66.798V18.427h7.049l1.532-1.394v-5.158l-1.379-.976h-37.39l-1.226 1.255v5.297l1.226 1.255h6.589v89.074l1.226 1.255h7.355l89.798-92.699v-4.043l-1.379-1.394H82.39z\\\"/><use href=\\\"#deviconVim0\\\"/><path fill=\\\"gray\\\" d=\\\"m120.7 12.154l1.992-1.115v7.109l-90.411 92.559h-9.654l.919-1.812h7.355l89.645-92.699l.153-4.043z\\\"/><path d=\\\"M32.281 110.847h-9.807l1.073-2.091h7.355l89.491-92.559l.153-4.043l2.145-1.255v7.527zm-9.501-.279h9.348l90.411-92.42v-6.97l-1.839.976l-.153 4.043l-89.645 92.838h-7.355z\\\"/><path fill=\\\"gray\\\" d=\\\"m88.673 18.427l-1.992 2.091h-5.21l1.226-2.091z\\\"/><path d=\\\"M86.681 20.657h-5.517l1.379-2.37h6.436zm-5.057-.139h5.057l1.839-1.952h-5.67z\\\"/><path fill=\\\"#ccc\\\" d=\\\"M67.219 70.561s-.153 0-.153.139l-1.686 1.533l-.153.139l-1.686 4.879c0 .139 0 .279.153.418l1.379 1.394c.153.139.153.139.306.139h5.363c.153 0 .153 0 .306-.139l1.379-1.394l.153-.139l1.532-5.158c0-.139 0-.279-.153-.418l-1.226-1.115c-.153-.139-.153-.139-.306-.139h-5.21v-.139zm-9.961 13.8c-.153 0-.306.139-.306.279l-.613 2.649c0 .279.153.418.306.558h3.371l-7.815 22.303c0 .279 0 .418.306.558H64c.153 0 .306-.139.46-.279l.766-2.37c0-.279 0-.418-.306-.558h-2.758l7.815-22.582c0-.279 0-.418-.306-.558zm36.318.139c-.153 0-.153 0-.153.139l-2.299 2.649h-3.831l-2.452-2.649c0-.139-.153-.139-.306-.139h-9.194c-.153 0-.306.139-.306.279l-.766 2.509c0 .279 0 .418.306.558h2.605l-7.509 22.164c0 .279 0 .418.306.558h9.807c.153 0 .306-.139.306-.279l.766-2.091c0-.279 0-.418-.306-.558h-1.839l4.75-15.055h8.581l-5.517 17.564c0 .279 0 .418.306.558h9.347c.153 0 .306-.139.306-.279l.766-1.952c.153-.139 0-.418-.153-.558h-1.839l4.904-15.334h8.275l-5.517 17.564c0 .279 0 .418.306.558h10.267c.153 0 .306-.139.306-.279l.766-2.091c0-.279 0-.418-.306-.558h-2.145l6.13-19.934v-.418l-1.839-2.509c-.153-.139-.153-.139-.306-.139h-7.202c-.153 0-.153 0-.306.139l-2.299 2.509h-3.984l-2.299-2.649c-.153-.139-.153-.139-.306-.139h-6.13v-.139z\\\"/><path d=\\\"M63.848 111.683h-11.34c-.153 0-.306 0-.46-.139c-.766-.279-1.073-.976-.919-1.673l7.355-21.049h-2.145c-.766-.139-1.226-.976-.919-1.673l.613-2.649c.153-.558.46-.836 1.073-.976h12.259c.153 0 .306 0 .46.139c.766.279 1.073.976.919 1.673l-7.355 21.328h1.686c.766.279 1.073.976.919 1.673l-.766 2.37c-.306.558-.766.976-1.379.976zM59.864 86.87h1.379l-7.968 22.861h10.267l.46-1.255h-3.218l7.968-23.14H58.025l-.46 1.533zm53.48 24.534H102.77c-.766-.279-1.073-.976-.919-1.673l5.21-16.309h-6.283l-4.291 13.382h.306c.153 0 .306 0 .46.139c.766.279 1.073 1.115.766 1.812l-.766 1.952c-.153.558-.766.836-1.226.836h-9.654c-.766-.279-1.073-.976-.919-1.673l5.21-16.449h-6.743l-4.137 13.103h.306c.153 0 .306 0 .46.139c.766.279 1.073.976.919 1.673l-.766 2.23c-.153.558-.766.836-1.226.976h-9.654c-.153 0-.306 0-.46-.139c-.766-.279-1.073-.976-.919-1.673l7.049-20.91H74.42c-.153 0-.306 0-.46-.139c-.766-.279-1.073-.976-.919-1.673l.766-2.509c.153-.558.766-.976 1.226-.976h9.041c.306 0 .766.139.919.418l2.299 2.37h2.912l2.145-2.37c.153-.279.46-.418.766-.418h6.129c.306 0 .766.139.919.418l2.145 2.23h3.218l1.992-2.23c.306-.279.613-.418.919-.418h7.202c.46 0 .766.139 1.073.558l1.839 2.509c.306.279.306.836.153 1.255l-5.67 18.679h.766c.153 0 .306 0 .46.139c.766.279 1.073.976.766 1.673l-.766 2.23c.153.418-.306.836-.919.836zM77.026 86.87h1.379l-7.662 22.582h8.428l.306-1.115h-2.145l5.363-17.006h10.573l-5.67 18.122h8.122l.306-.836h-2.145l5.517-17.146h10.267l-5.67 18.122h9.041l.46-1.115h-2.452l6.436-20.91l-1.532-2.091h-6.743l-2.452 2.649h-4.904l-2.452-2.788h-5.363l-2.452 2.788h-4.597l-2.605-2.788h-8.428l-.46 1.394h1.532zm-6.589-6.83h-5.363c-.306 0-.766-.139-.919-.418l-1.379-1.394c-.306-.418-.46-.976-.306-1.394l1.686-4.879c0-.279.153-.418.306-.558l1.686-1.533c.153-.139.306-.279.613-.279h5.21c.306 0 .613.139.919.418l1.226 1.115c.306.279.46.836.306 1.394L72.89 77.67c0 .279-.153.418-.306.558l-1.379 1.394c0 .279-.46.418-.766.418zm-5.976-2.788l.919.976h4.904l1.073-1.115l1.379-4.739l-.766-.697h-4.597l-1.532 1.255l-1.379 4.321z\\\"/><path fill=\\\"#ccc\\\" d=\\\"m67.219 70.98l-1.686 1.533l-1.686 4.879l1.379 1.394h5.363l1.379-1.394l1.532-5.158l-1.226-1.115h-5.057zm-9.807 13.8l-.613 2.649h3.678l-7.968 22.861h11.34l.766-2.37H61.55l7.968-23.14zm36.164 0l-2.452 2.788h-4.137l-2.605-2.788h-9.041l-.766 2.509h2.912l-7.662 22.582h9.654l.766-2.091h-2.299l5.057-15.752h9.501l-5.67 17.982h9.194l.766-1.952h-2.299l5.057-16.17h9.041l-5.67 18.122h10.114l.766-2.091h-2.605l6.283-20.352l-1.839-2.509h-7.202l-2.452 2.649h-4.444l-2.452-2.788h-5.517z\\\"/><path d=\\\"M64.001 110.429H52.355l7.968-22.861h-3.678l.766-2.927H69.67l-8.122 23.14h3.065L64 110.43zm-11.34-.279h11.186l.613-2.23h-3.065l7.815-23H57.564l-.613 2.37h3.678l-7.968 22.861zm60.836 0h-10.42l5.67-18.122h-8.888l-5.057 15.891h2.299l-.919 2.23h-9.501l5.67-17.982h-9.194l-4.904 15.612h2.299l-.766 2.37h-9.807l7.662-22.582h-2.912l.919-2.649h9.194l2.605 2.788h3.984l2.452-2.788h5.976l2.452 2.788h4.291l2.452-2.649h7.355l1.992 2.649l-6.283 20.213h2.605zm-10.114-.279h9.961l.766-1.952h-2.605l6.283-20.491l-1.839-2.509h-7.202l-2.452 2.649h-4.444l-2.452-2.788h-5.67l-2.452 2.788h-4.291l-2.605-2.788h-8.888l-.766 2.23h2.912l-7.662 22.582h9.348l.613-1.952h-2.299l5.057-16.031h9.807l-5.67 17.982h9.041l.766-1.812h-2.145l5.21-16.309h9.348zM70.437 78.786H64.92l-1.379-1.394l1.839-5.018l1.839-1.533h5.057l1.226 1.255l-1.532 5.158l-1.532 1.533zm-5.363-.139h5.21l1.379-1.394l1.532-5.018l-1.073-1.115h-4.904l-1.686 1.394l-1.686 4.739l1.226 1.394z\\\"/>\"\n\t\t},\n\t\t\"visualbasic\": {\n\t\t\t\"body\": \"<path fill=\\\"#004e8c\\\" d=\\\"M128 63.121a63.121 63.121 0 0 1-63.121 63.122A63.121 63.121 0 0 1 1.757 63.121A63.121 63.121 0 0 1 64.879 0A63.121 63.121 0 0 1 128 63.121\\\"/><path fill=\\\"#fff\\\" d=\\\"M21.127 17.753a63.121 63.121 0 1 0 89.12 89.12z\\\" opacity=\\\".1\\\"/><path fill=\\\"#fff\\\" d=\\\"M61.17 38.168L47.125 77.619a21.698 21.698 0 0 0-1.104 4.498h-.138a23.414 23.414 0 0 0-1.006-4.398L31.068 38.268H24.58l18.03 49.709h6.488l18.326-49.71zm13.414.1v49.709h14.44a17.043 17.043 0 0 0 11.538-3.946a13 13 0 0 0 4.577-10.336a11.677 11.677 0 0 0-3.018-8.345a12.644 12.644 0 0 0-8.049-3.787v-.137a12.348 12.348 0 0 0 6.313-4.44a12.092 12.092 0 0 0 2.347-7.338a10.198 10.198 0 0 0-3.787-8.224a15.465 15.465 0 0 0-10.218-3.156zm12.525 5.187c6.352 0 9.528 2.414 9.528 7.24a8.028 8.028 0 0 1-2.742 6.508a11.322 11.322 0 0 1-7.477 2.367h-5.916V43.514zM80.502 64.8l6.607.02c7.996 0 11.993 2.931 11.993 8.796a8.304 8.304 0 0 1-2.82 6.649a11.835 11.835 0 0 1-7.891 2.425h-7.889z\\\"/>\"\n\t\t},\n\t\t\"visualstudio\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconVisualstudio0\\\" x1=\\\"48\\\" x2=\\\"48\\\" y1=\\\"97.75\\\" y2=\\\"2.25\\\" gradientTransform=\\\"matrix(1 0 0 -1 0 97.75)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient></defs><path fill=\\\"#52218a\\\" d=\\\"M14.39 26.295a5.333 5.333 0 0 0-1.417.373l-9.694 4A5.333 5.333 0 0 0 0 35.561v56.88a5.333 5.333 0 0 0 3.28 4.893l9.693 4.066a5.333 5.333 0 0 0 5.521-.865l2.172-1.867a2.947 2.947 0 0 1-4.666-2.4V31.734a2.947 2.947 0 0 1 4.666-2.4l-2.172-1.799a5.333 5.333 0 0 0-4.103-1.24z\\\"/><path fill=\\\"#6c33af\\\" d=\\\"M94.75.416A8 8 0 0 0 88 2.668l-82.666 91.4A3.08 3.08 0 0 1 0 92.002v.44a5.333 5.333 0 0 0 3.28 4.892l9.693 4.066a5.333 5.333 0 0 0 5.521-.865l2.172-1.867l99.08-81.24A5.053 5.053 0 0 1 128 21.334v-.307a8 8 0 0 0-4.533-7.213L97.094 1.121A8 8 0 0 0 94.75.416\\\"/><path fill=\\\"#854cc7\\\" d=\\\"M14.871 26.238a5.333 5.333 0 0 0-1.898.43l-9.694 4A5.333 5.333 0 0 0 0 35.561v.441a3.08 3.08 0 0 1 5.334-2.066L88 125.334a8 8 0 0 0 9.094 1.547l26.373-12.694a8 8 0 0 0 4.533-7.212v-.307a5.053 5.053 0 0 1-8.254 3.906l-99.08-81.24l-2.172-1.865a5.333 5.333 0 0 0-3.623-1.23z\\\"/><path fill=\\\"#b179f1\\\" d=\\\"M94.75.416a8 8 0 0 0-5.674 1.469A4.693 4.693 0 0 1 96 6.015v116a4.693 4.693 0 0 1-8 3.319a8 8 0 0 0 9.094 1.547l26.373-12.68a8 8 0 0 0 4.533-7.213V21.016a8 8 0 0 0-4.533-7.215L97.094 1.12A8 8 0 0 0 94.75.416m-5.674 1.469A4.693 4.693 0 0 0 88 2.668a8 8 0 0 1 1.076-.783\\\"/><path fill=\\\"url(#deviconVisualstudio0)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M94.145.348a8 8 0 0 0-3.026.386A8 8 0 0 0 88 2.668L45.494 49.682L20.666 29.334l-2.172-1.865a5.333 5.333 0 0 0-4.814-1.108a3.4 3.4 0 0 0-.707.24l-9.694 4.067A5.333 5.333 0 0 0 0 35.162v57.679a5.333 5.333 0 0 0 3.28 4.493l9.693 4a3.4 3.4 0 0 0 .707.24a5.333 5.333 0 0 0 4.814-1.105l2.172-1.801l24.828-20.346L88 125.334a8 8 0 0 0 3.854 2.135a8 8 0 0 0 5.24-.588l26.373-12.68a8 8 0 0 0 4.533-7.213V21.016a8 8 0 0 0-4.533-7.215L97.094 1.12a8 8 0 0 0-2.95-.773ZM96 36.908v54.186L62.947 64.002Zm-80 8.787l16.547 18.307L16 82.309Z\\\" opacity=\\\".25\\\"/>\"\n\t\t},\n\t\t\"visualstudio-wordmark\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconVisualstudioWordmark0\\\"><stop offset=\\\"0\\\" stop-color=\\\"#43127b\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#401076\\\"/></linearGradient><linearGradient id=\\\"deviconVisualstudioWordmark1\\\"><stop offset=\\\"0\\\" stop-color=\\\"#511c8e\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#511c8e\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconVisualstudioWordmark2\\\"><stop offset=\\\"0\\\" stop-color=\\\"#511c8e\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#511c8e\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconVisualstudioWordmark3\\\"><stop offset=\\\"0\\\" stop-color=\\\"#6730a5\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#6730a5\\\" stop-opacity=\\\"0\\\"/></linearGradient><linearGradient id=\\\"deviconVisualstudioWordmark4\\\" x1=\\\"80.783\\\" x2=\\\"74.874\\\" y1=\\\"81.704\\\" y2=\\\"81.704\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconVisualstudioWordmark3\\\"/><linearGradient id=\\\"deviconVisualstudioWordmark5\\\" x1=\\\"79.177\\\" x2=\\\"74.806\\\" y1=\\\"31.624\\\" y2=\\\"31.624\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconVisualstudioWordmark2\\\"/><linearGradient id=\\\"deviconVisualstudioWordmark6\\\" x1=\\\"54.779\\\" x2=\\\"60.673\\\" y1=\\\"53.025\\\" y2=\\\"47.833\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconVisualstudioWordmark1\\\"/><linearGradient id=\\\"deviconVisualstudioWordmark7\\\" x1=\\\"46.146\\\" x2=\\\"41.929\\\" y1=\\\"59.644\\\" y2=\\\"64.781\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconVisualstudioWordmark1\\\"/><radialGradient id=\\\"deviconVisualstudioWordmark8\\\" cx=\\\"20.133\\\" cy=\\\"56.933\\\" r=\\\"6.662\\\" fx=\\\"20.133\\\" fy=\\\"56.933\\\" gradientTransform=\\\"matrix(2.35095 0 0 3.36708 -27.199 -133.547)\\\" gradientUnits=\\\"userSpaceOnUse\\\" href=\\\"#deviconVisualstudioWordmark0\\\"/><path id=\\\"deviconVisualstudioWordmark9\\\" fill=\\\"#a16ae2\\\" d=\\\"M81.026 18.646a5.158 4.75 0 0 0-3.658.872a3.026 2.786 0 0 1 4.464 2.452v68.875a3.026 2.786 0 0 1-5.158 1.97a5.158 4.75 0 0 0 5.863.919l17.003-7.529a5.158 4.75 0 0 0 2.923-4.283V30.877a5.158 4.75 0 0 0-2.923-4.284l-17.003-7.53a5.158 4.75 0 0 0-1.511-.417m-3.658.872a3.026 2.786 0 0 0-.694.465a5.158 4.75 0 0 1 .694-.465\\\"/></defs><path fill=\\\"url(#deviconVisualstudioWordmark8)\\\" d=\\\"M29.215 34.011a3.438 3.166 0 0 0-.913.222l-6.25 2.375a3.438 3.166 0 0 0-2.114 2.905v33.772a3.438 3.166 0 0 0 2.114 2.905l6.25 2.415a3.438 3.166 0 0 0 3.56-.514l1.4-1.108a1.9 1.75 0 0 1-3.009-1.425V37.24a1.9 1.75 0 0 1 3.009-1.425l-1.4-1.068a3.438 3.166 0 0 0-2.646-.737z\\\"/><path fill=\\\"#5d25a0\\\" d=\\\"M81.026 18.646a5.158 4.75 0 0 0-4.352 1.337L23.377 74.251a1.986 1.829 0 0 1-3.44-1.226v.26a3.438 3.166 0 0 0 2.115 2.905l6.25 2.415a3.438 3.166 0 0 0 3.56-.514l1.4-1.108l63.88-48.236a3.258 3 0 0 1 5.321 2.319v-.182A5.158 4.75 0 0 0 99.54 26.6l-17.003-7.537a5.158 4.75 0 0 0-1.511-.418z\\\"/><path fill=\\\"#753db8\\\" d=\\\"M29.525 33.978a3.438 3.166 0 0 0-1.223.255l-6.25 2.375a3.438 3.166 0 0 0-2.114 2.905v.262a1.986 1.829 0 0 1 3.439-1.227l53.297 54.267a5.158 4.75 0 0 0 5.863.919l17.003-7.537a5.158 4.75 0 0 0 2.923-4.282v-.183a3.258 3 0 0 1-5.322 2.32l-63.88-48.236l-1.4-1.108a3.438 3.166 0 0 0-2.336-.73\\\"/><use href=\\\"#deviconVisualstudioWordmark9\\\"/><path fill=\\\"#753db8\\\" d=\\\"M5.534 108.898q-.036.124-.094.204q-.058.072-.19.116q-.13.036-.355.044q-.226.014-.59.014q-.29 0-.5-.007q-.204 0-.35-.014q-.145-.015-.24-.044q-.087-.029-.152-.073q-.059-.043-.095-.101q-.029-.066-.058-.16l-2.799-8.339q-.087-.261-.109-.414q-.014-.153.073-.225q.094-.08.312-.095q.218-.022.611-.022q.334 0 .523.015q.19.014.291.05q.102.037.138.11q.044.072.08.181l2.29 7.256h.008l2.246-7.22q.029-.123.073-.195q.043-.08.145-.124q.11-.044.305-.058q.197-.015.538-.015q.335 0 .516.022q.19.022.255.11q.073.08.044.232q-.022.152-.11.407zm6.041.073q0 .073-.05.13q-.044.059-.153.095q-.11.037-.29.058q-.183.022-.466.022q-.276 0-.465-.022q-.182-.021-.291-.058q-.11-.036-.16-.094q-.044-.058-.044-.131v-8.884q0-.072.044-.13q.05-.059.16-.095q.116-.036.298-.058q.182-.022.458-.022q.283 0 .465.022q.182.022.29.058q.11.036.154.094q.05.059.05.131zm7.626-2.559q0 .741-.276 1.301q-.276.56-.749.938q-.472.37-1.105.56q-.632.189-1.352.189q-.487 0-.909-.08q-.414-.08-.734-.19q-.32-.115-.538-.24q-.21-.123-.305-.217q-.095-.095-.138-.27q-.037-.18-.037-.515q0-.226.015-.378q.015-.153.044-.247q.036-.095.087-.131q.058-.044.13-.044q.103 0 .284.124q.19.116.48.261q.29.146.69.27q.408.116.938.116q.35 0 .626-.08q.276-.088.465-.24q.196-.153.298-.378q.102-.226.102-.502q0-.32-.175-.545q-.174-.233-.458-.407q-.276-.182-.632-.335q-.356-.16-.734-.334q-.378-.175-.735-.393q-.356-.225-.64-.53q-.276-.313-.45-.735q-.175-.421-.175-1.01q0-.676.248-1.185q.254-.516.676-.85q.429-.342 1.003-.51q.581-.167 1.228-.167q.335 0 .67.051q.334.051.624.138q.291.088.517.197q.225.109.298.181q.072.073.094.124q.03.05.044.138q.022.08.029.21q.007.125.007.314q0 .21-.014.356q-.008.145-.037.24q-.021.094-.072.138q-.044.043-.124.043t-.254-.101q-.175-.102-.43-.218q-.254-.124-.588-.219q-.335-.101-.734-.101q-.313 0-.546.08q-.232.072-.392.21q-.153.131-.233.32q-.073.19-.073.4q0 .313.168.545q.174.226.458.408q.29.174.654.334q.363.153.741.327q.378.175.742.4q.363.218.647.53q.283.306.458.728q.174.414.174.981m9.138-.683q0 .865-.254 1.548t-.749 1.156q-.494.473-1.221.72q-.727.247-1.672.247q-.887 0-1.592-.218q-.705-.226-1.192-.676q-.488-.451-.75-1.12q-.254-.676-.254-1.577v-5.722q0-.072.044-.13q.044-.059.153-.095q.116-.036.298-.058q.181-.022.465-.022q.276 0 .458.022t.29.058q.11.036.153.094q.051.059.051.131v5.554q0 .56.138.975q.139.407.393.676q.262.269.618.407q.363.13.807.13q.45 0 .807-.138q.356-.138.603-.4q.247-.268.378-.654q.138-.392.138-.887v-5.663q0-.072.044-.13q.044-.059.153-.095q.109-.036.29-.058q.19-.022.466-.022t.45.022q.182.022.291.058q.11.036.153.094q.043.059.043.131zm9.35 2.791q.087.262.108.415q.022.152-.058.232q-.08.073-.283.087q-.204.022-.56.022q-.37 0-.582-.014q-.203-.007-.312-.037q-.11-.036-.153-.094q-.044-.058-.073-.153l-.632-1.89H31.61l-.596 1.84q-.03.101-.08.174q-.044.065-.153.109q-.102.036-.298.05q-.189.015-.502.015q-.334 0-.523-.022q-.189-.021-.262-.101q-.072-.087-.05-.24q.021-.153.108-.407l2.901-8.346q.044-.124.102-.196q.058-.08.182-.117q.13-.043.356-.05q.225-.015.596-.015q.429 0 .683.015q.255.007.393.05q.145.037.203.117q.066.08.11.218zm-4.319-6.899h-.007l-1.33 3.999H34.7zm10.803 6.812q0 .218-.022.37q-.014.146-.05.248q-.037.094-.095.138q-.051.044-.124.044h-4.31q-.24 0-.408-.139q-.16-.145-.16-.465v-8.542q0-.072.044-.13q.05-.059.16-.095q.109-.036.29-.058q.19-.022.466-.022q.283 0 .465.022q.182.022.29.058q.11.036.153.094q.051.059.051.131v7.568h2.96q.072 0 .123.044q.058.036.094.13q.037.088.051.24q.022.146.022.364m10.068-2.021q0 .741-.276 1.301q-.276.56-.749.938q-.472.37-1.105.56q-.632.189-1.352.189q-.487 0-.908-.08q-.415-.08-.735-.19q-.32-.115-.538-.24q-.21-.123-.305-.217q-.095-.095-.138-.27q-.036-.18-.036-.515q0-.226.014-.378q.015-.153.044-.247q.036-.095.087-.131q.058-.044.13-.044q.103 0 .284.124q.19.116.48.261q.29.146.69.27q.408.116.939.116q.348 0 .625-.08q.276-.088.465-.24q.196-.153.298-.378q.102-.226.102-.502q0-.32-.175-.545q-.174-.233-.458-.407q-.276-.182-.632-.335q-.356-.16-.734-.334q-.378-.175-.735-.393q-.356-.225-.64-.53q-.276-.313-.45-.735q-.175-.421-.175-1.01q0-.676.248-1.185q.254-.516.676-.85q.429-.342 1.003-.51q.582-.167 1.229-.167q.334 0 .668.051q.335.051.626.138q.29.088.516.197q.225.109.298.181q.072.073.094.124q.03.05.044.138q.022.08.029.21q.007.125.007.314q0 .21-.014.356q-.008.145-.037.24q-.021.094-.072.138q-.044.043-.124.043t-.254-.101q-.175-.102-.43-.218q-.254-.124-.588-.219q-.335-.101-.734-.101q-.313 0-.546.08q-.232.072-.392.21q-.153.131-.233.32q-.072.19-.072.4q0 .313.167.545q.174.226.458.408q.29.174.654.334q.363.153.741.327q.379.175.742.4q.363.218.647.53q.284.306.458.728q.174.414.174.981m7.575-5.801q0 .21-.021.363q-.015.146-.051.24q-.037.087-.095.131q-.05.044-.116.044h-2.355v7.582q0 .073-.051.13q-.044.059-.153.095q-.109.037-.298.058q-.182.022-.458.022t-.465-.022q-.182-.021-.291-.058q-.11-.036-.16-.094q-.044-.058-.044-.131v-7.582h-2.355q-.073 0-.124-.044q-.05-.044-.087-.13q-.036-.095-.058-.24q-.015-.153-.015-.364q0-.218.015-.371q.022-.153.058-.24q.037-.094.087-.13q.051-.044.124-.044h6.63q.065 0 .116.043q.058.037.095.131q.036.087.05.24q.022.153.022.37zm8.79 5.118q0 .865-.255 1.548q-.254.683-.749 1.156q-.494.473-1.221.72q-.727.247-1.672.247q-.887 0-1.592-.218q-.705-.226-1.192-.676q-.487-.451-.75-1.12q-.254-.676-.254-1.577v-5.722q0-.072.044-.13q.044-.059.153-.095q.116-.036.298-.058q.182-.022.465-.022q.276 0 .458.022t.29.058q.11.036.154.094q.05.059.05.131v5.554q0 .56.139.975q.138.407.392.676q.262.269.618.407q.364.13.807.13q.45 0 .807-.138q.356-.138.603-.4q.247-.268.378-.654q.138-.392.138-.887v-5.663q0-.072.044-.13q.044-.059.153-.095q.109-.036.29-.058q.19-.022.466-.022t.45.022q.182.022.291.058q.11.036.153.094q.044.059.044.131zm9.857-1.338q0 1.294-.341 2.217q-.335.916-.967 1.498q-.633.581-1.541.858q-.902.269-2.152.269h-2.247q-.24 0-.407-.138q-.16-.146-.16-.466v-8.2q0-.32.16-.458q.168-.145.407-.145h2.414q1.258 0 2.13.298q.88.29 1.476.872q.603.574.916 1.425q.312.85.312 1.97m-1.977.065q0-.668-.16-1.243q-.153-.574-.502-.996q-.341-.421-.886-.654q-.538-.24-1.418-.24h-.967v6.398h.996q.785 0 1.323-.204q.538-.204.894-.61q.364-.415.538-1.026q.182-.61.182-1.425m5.467 4.515q0 .073-.051.13q-.044.059-.153.095q-.109.037-.29.058q-.182.022-.466.022q-.276 0-.465-.022q-.182-.021-.29-.058q-.11-.036-.16-.094q-.044-.058-.044-.131v-8.884q0-.072.043-.13q.051-.059.16-.095q.116-.036.298-.058q.182-.022.458-.022q.284 0 .465.022q.182.022.291.058q.11.036.153.094q.05.059.05.131zm10.512-4.55q0 1.17-.291 2.093q-.29.923-.865 1.57q-.574.64-1.425.981q-.843.335-1.956.335q-1.097 0-1.919-.284q-.814-.29-1.36-.88q-.544-.588-.82-1.497q-.27-.909-.27-2.152q0-1.141.291-2.05q.291-.916.865-1.556q.575-.64 1.418-.98q.85-.343 1.97-.343q1.069 0 1.883.284q.821.283 1.367.872q.552.59.828 1.49q.284.895.284 2.116zm-2.007.1q0-.74-.116-1.344q-.116-.61-.4-1.04q-.276-.436-.741-.668q-.466-.24-1.163-.24q-.706 0-1.178.269q-.473.261-.763.705q-.291.443-.415 1.04q-.116.588-.116 1.25q0 .77.116 1.388q.116.61.393 1.047q.276.436.741.669q.465.225 1.17.225q.706 0 1.178-.261q.473-.262.764-.713q.29-.45.407-1.047q.123-.603.123-1.28m12.904 3.934q0 .21-.022.363q-.014.146-.05.24q-.037.095-.095.138q-.058.037-.131.037h-5.409q-.16 0-.276-.03q-.116-.029-.189-.109q-.073-.087-.109-.247q-.029-.16-.029-.414q0-.24.022-.407q.022-.175.08-.306q.058-.138.145-.261q.095-.131.24-.284l1.628-1.745q.488-.508.786-.923q.298-.421.465-.763q.167-.349.225-.64q.066-.29.066-.552q0-.24-.08-.451q-.073-.218-.226-.378q-.145-.16-.37-.247q-.226-.095-.531-.095q-.43 0-.764.11q-.327.108-.581.246q-.247.131-.414.248q-.168.109-.262.109q-.066 0-.116-.044q-.044-.044-.073-.145q-.03-.102-.051-.27q-.015-.174-.015-.42q0-.168.008-.277q.014-.117.036-.196q.022-.088.058-.146q.037-.065.124-.153q.094-.087.334-.218q.247-.138.604-.261q.356-.131.785-.218q.429-.088.894-.088q.734 0 1.28.19q.552.181.915.516q.364.327.538.785q.182.45.182.974q0 .458-.087.901q-.087.444-.364.96q-.276.509-.777 1.134q-.502.618-1.33 1.44l-1.099 1.126h3.708q.073 0 .13.044q.066.043.11.138q.043.087.065.24q.022.145.022.349m7.735-3.962q0 1.127-.182 2.035q-.181.909-.596 1.549q-.407.64-1.068.981q-.655.342-1.607.342q-.967 0-1.6-.327q-.632-.335-1.003-.953q-.37-.625-.523-1.519q-.145-.901-.145-2.036q0-1.12.181-2.028q.19-.916.596-1.556q.415-.64 1.07-.98q.66-.343 1.606-.343q.967 0 1.599.335q.64.327 1.01.952q.371.618.517 1.52q.145.894.145 2.028m-1.926.094q0-.669-.037-1.177q-.036-.517-.116-.895q-.073-.378-.189-.64q-.11-.261-.269-.414q-.16-.16-.363-.225q-.204-.065-.451-.065q-.43 0-.713.21q-.276.204-.443.618q-.16.415-.225 1.033q-.066.617-.066 1.439q0 1.003.08 1.665q.08.654.247 1.047q.175.385.444.545q.269.152.647.152q.283 0 .501-.087q.218-.094.378-.276q.168-.182.277-.458q.109-.276.174-.64q.073-.363.095-.821q.029-.458.029-1.01zm9.283 3.868q0 .21-.022.363q-.014.146-.05.24q-.037.095-.095.138q-.058.037-.131.037h-5.409q-.16 0-.276-.03q-.116-.029-.189-.109q-.073-.087-.109-.247q-.03-.16-.03-.414q0-.24.023-.407q.022-.175.08-.306q.058-.138.145-.261q.095-.131.24-.284l1.628-1.745q.487-.508.786-.923q.298-.421.465-.763q.167-.349.225-.64q.066-.29.066-.552q0-.24-.08-.451q-.073-.218-.226-.378q-.145-.16-.37-.247q-.226-.095-.531-.095q-.43 0-.764.11q-.327.108-.581.246q-.247.131-.415.248q-.167.109-.261.109q-.066 0-.117-.044q-.043-.044-.072-.145q-.03-.102-.051-.27q-.015-.174-.015-.42q0-.168.007-.277q.015-.117.037-.196q.021-.088.058-.146q.036-.065.123-.153q.095-.087.335-.218q.247-.138.603-.261q.356-.131.785-.218q.43-.088.894-.088q.735 0 1.28.19q.552.181.916.516q.363.327.538.785q.182.45.182.974q0 .458-.088.901q-.087.444-.363.96q-.276.509-.778 1.134q-.502.618-1.33 1.44l-1.098 1.126h3.708q.072 0 .13.044q.066.043.11.138q.043.087.065.24q.022.145.022.349m7.546 0q0 .21-.022.363q-.014.146-.05.24q-.037.095-.095.138q-.058.037-.131.037h-5.409q-.16 0-.276-.03q-.116-.029-.189-.109q-.073-.087-.109-.247q-.03-.16-.03-.414q0-.24.023-.407q.021-.175.08-.306q.058-.138.145-.261q.095-.131.24-.284l1.628-1.745q.487-.508.785-.923q.299-.421.466-.763q.167-.349.225-.64q.066-.29.066-.552q0-.24-.08-.451q-.073-.218-.226-.378q-.145-.16-.37-.247q-.226-.095-.531-.095q-.43 0-.764.11q-.327.108-.581.246q-.247.131-.415.248q-.167.109-.261.109q-.066 0-.117-.044q-.043-.044-.072-.145q-.03-.102-.051-.27q-.015-.174-.015-.42q0-.168.007-.277q.015-.117.037-.196q.021-.088.058-.146q.036-.065.123-.153q.095-.087.335-.218q.247-.138.603-.261q.356-.131.785-.218q.43-.088.895-.088q.734 0 1.279.19q.552.181.916.516q.363.327.538.785q.182.45.182.974q0 .458-.088.901q-.087.444-.363.96q-.276.509-.778 1.134q-.501.618-1.33 1.44l-1.098 1.126h3.708q.072 0 .13.044q.066.043.11.138q.043.087.065.24q.022.145.022.349\\\"/><path fill=\\\"url(#deviconVisualstudioWordmark4)\\\" d=\\\"M72.03 65.09v22.996l4.644 4.728a3.026 2.786 0 0 0 5.158-1.968V72.492zm30.36 17.62a5.158 4.75 0 0 1-.015.067a5.158 4.75 0 0 0 .016-.066z\\\"/><path fill=\\\"url(#deviconVisualstudioWordmark5)\\\" d=\\\"M81.025 18.645v.001a5.158 4.75 0 0 0-4.351 1.336l-4.645 4.729v22.998l25.114-18.963a3.258 3 0 0 1 5.32 2.32v-.181a5.158 4.75 0 0 0-2.924-4.285l-17.002-7.538a5.158 4.75 0 0 0-1.512-.417\\\"/><use href=\\\"#deviconVisualstudioWordmark9\\\"/><path fill=\\\"url(#deviconVisualstudioWordmark6)\\\" d=\\\"M81.025 18.645v.001a5.158 4.75 0 0 0-4.351 1.336L49.26 47.896L60.52 56.4l36.623-27.654a3.258 3 0 0 1 5.32 2.32v-.181a5.158 4.75 0 0 0-2.924-4.285l-17.002-7.538a5.158 4.75 0 0 0-1.512-.417\\\"/><path fill=\\\"url(#deviconVisualstudioWordmark7)\\\" d=\\\"M40.908 56.4L23.377 74.252a1.986 1.829 0 0 1-3.44-1.227v.26a3.438 3.166 0 0 0 2.116 2.904l6.25 2.416a3.438 3.166 0 0 0 3.558-.513l1.4-1.11l15.999-12.08z\\\"/>\"\n\t\t},\n\t\t\"vite\": {\n\t\t\t\"body\": \"<path fill=\\\"#006bff\\\" d=\\\"M128 3.83L48.72 22.547L36.977 124.17ZM39.464 24.264L0 33.167l35.658 90.604Z\\\"/>\"\n\t\t},\n\t\t\"vite-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#006bff\\\" d=\\\"M70.355 30.928L26.78 41.214l-6.455 55.858Zm-48.663 11.23L0 47.053l19.6 49.801Zm91.678 18.42v19.627H128V79.14h-13.312v-8.615h12.38v-1.008l-6.173-.012l-6.177-.017l-.017-3.924l-.013-3.924h13.132v-1.061zm-57.326.008c-.365 0-.68.01-.68.025c0 .022 1.788 4.394 3.979 9.736c2.195 5.339 3.991 9.75 4.008 9.783c.03.068.246.084.797.084h.76l3.999-9.736c2.2-5.355 4.006-9.766 4.016-9.812c.016-.063-.108-.08-.625-.08h-.642l-3.723 9.258c-2.043 5.099-3.739 9.25-3.785 9.24c-.026-.008-1.726-4.17-3.74-9.257l-3.684-9.241zm24.45 0v19.619h1.322V60.586Zm8.893 0v.533h-.017v.529h7.57v18.574h1.323V61.648h7.57v-1.062z\\\"/>\"\n\t\t},\n\t\t\"vitejs\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconVitejs0\\\" x1=\\\"6\\\" x2=\\\"235\\\" y1=\\\"33\\\" y2=\\\"344\\\" gradientTransform=\\\"translate(0 .937)scale(.3122)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#41d1ff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#bd34fe\\\"/></linearGradient><linearGradient id=\\\"deviconVitejs1\\\" x1=\\\"194.651\\\" x2=\\\"236.076\\\" y1=\\\"8.818\\\" y2=\\\"292.989\\\" gradientTransform=\\\"translate(0 .937)scale(.3122)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#ffea83\\\"/><stop offset=\\\".083\\\" stop-color=\\\"#ffdd35\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#ffa800\\\"/></linearGradient></defs><path fill=\\\"url(#deviconVitejs0)\\\" d=\\\"M124.766 19.52L67.324 122.238c-1.187 2.121-4.234 2.133-5.437.024L3.305 19.532c-1.313-2.302.652-5.087 3.261-4.622L64.07 25.187a3.09 3.09 0 0 0 1.11 0l56.3-10.261c2.598-.473 4.575 2.289 3.286 4.594m0 0\\\"/><path fill=\\\"url(#deviconVitejs1)\\\" d=\\\"M91.46 1.43L48.954 9.758a1.56 1.56 0 0 0-1.258 1.437l-2.617 44.168a1.563 1.563 0 0 0 1.91 1.614l11.836-2.735a1.562 1.562 0 0 1 1.88 1.836l-3.517 17.219a1.562 1.562 0 0 0 1.985 1.805l7.308-2.223c1.133-.344 2.223.652 1.985 1.812l-5.59 27.047c-.348 1.692 1.902 2.614 2.84 1.164l.625-.968l34.64-69.13c.582-1.16-.421-2.48-1.69-2.234l-12.185 2.352a1.558 1.558 0 0 1-1.793-1.965l7.95-27.562A1.56 1.56 0 0 0 91.46 1.43m0 0\\\"/>\"\n\t\t},\n\t\t\"vitess\": {\n\t\t\t\"body\": \"<path fill=\\\"#284e64\\\" d=\\\"m72.347 76.92l.01-.066l4.103-24.015zm29.629-24.14L88.667 76.842l13.315-24.057l14.544-26.382zm.453-47.19l-4.272 7.81zM22.26 46.707l16.317-17.542zm3.47 6.347l18.027-14.32zm0 0l-1.205-2.208l1.206 2.208l12.824 23.534zm4.503-8.353L38.58 29.2l15.242 28.053l-15.24-28.07L25.673 5.59l12.903 23.599zm37.564 38.29l.054.11l2.416 4.445zM84.85 37.598l-8.4 15.205l-9.348 17.204l9.348-17.2zm0 0\\\"/><path fill=\\\"#f16827\\\" d=\\\"m51.367 100.218l12.129 22.217l6.671-34.312zm0 0\\\"/><path fill=\\\"#f48029\\\" d=\\\"m70.272 87.575l-10.7-19.67l-8.205 32.313l18.8-12.095zm0 0\\\"/><path fill=\\\"#f89a2e\\\" d=\\\"m38.548 76.59l12.814 23.628l8.21-32.312zm0 0\\\"/><path fill=\\\"#f16827\\\" d=\\\"m38.548 76.59l21.024-8.69L43.76 38.73zm0 0\\\"/><path fill=\\\"#f89921\\\" d=\\\"m72.347 76.92l4.113-24.08l-12.546 23.065l6.352 11.669zm0 0\\\"/><path fill=\\\"#f89a2e\\\" d=\\\"m25.73 53.054l12.82 23.535l5.209-37.849zm0 0\\\"/><path fill=\\\"#f48029\\\" d=\\\"m88.657 76.841l13.319-24.06l-29.62 24.071zm0 0\\\"/><path fill=\\\"#f4ae5c\\\" d=\\\"M38.58 29.198L25.73 53.053l18.027-14.318zm33.78 47.654l17.067-47.506l-12.965 23.493zm0 0\\\"/><path fill=\\\"#cd4e27\\\" d=\\\"m25.73 53.054l12.85-23.856l-16.326 17.517l2.275 4.133zm0 0\\\"/><path fill=\\\"#f16938\\\" d=\\\"M101.97 52.78L89.42 29.346L72.36 76.852zm-79.71-6.072l16.317-17.542l-12.91-23.601l-3.412 41.121zm0 0\\\"/><path fill=\\\"#f89a2e\\\" d=\\\"m101.97 52.78l.464-47.19l-13.009 23.756zM25.668 5.584H0l22.26 41.124zm0 0\\\"/><path fill=\\\"#cd4e27\\\" d=\\\"m102.434 5.59l-.464 47.19L128 5.584zM72.357 76.852l-.01.067l-8.852 45.512l25.168-45.585zm0 0\\\"/>\"\n\t\t},\n\t\t\"vitess-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#f16827\\\" d=\\\"M107.124 135.45h10.268v38.055h-10.268zm0-16.817h10.268v7.701h-10.268zm35.807 47.434a9.972 9.972 0 0 1-1.405.088a3.265 3.265 0 0 1-2.446-.952c-.606-.635-.903-1.687-.903-3.164V142.66h6.44v-7.212h-6.44v-9.323H127.94v9.323h-5.56v7.208h5.56v19.416c0 4.22.952 7.306 2.863 9.25c1.913 1.946 4.64 2.92 8.178 2.92a17.986 17.986 0 0 0 3.184-.264a20.356 20.356 0 0 0 3.009-.793l-.842-7.422c-.452.127-.91.226-1.373.303zm23.814-31.296c-5.417-.021-9.67 1.785-12.766 5.416c-3.097 3.636-4.646 8.304-4.646 14v1.411c0 5.483 1.61 9.967 4.817 13.45c3.212 3.482 7.64 5.223 13.301 5.223a27.529 27.529 0 0 0 8.517-1.267c2.6-.838 4.662-1.884 6.188-3.13l-2.777-6.33a23.695 23.695 0 0 1-4.975 2.148a21.303 21.303 0 0 1-5.857.705c-2.788 0-4.894-.81-6.315-2.429c-1.416-1.62-2.209-3.73-2.375-6.331l.106-.21h22.69v-5.338c0-5.3-1.369-9.515-4.101-12.645c-2.732-3.13-6.644-4.694-11.735-4.694zm5.807 15.868h-12.524l-.065-.176c.231-2.347.908-4.232 2.021-5.648c1.114-1.416 2.7-2.126 4.768-2.126c2.036 0 3.513.64 4.429 1.917c.914 1.278 1.37 3.03 1.37 5.261zm43.142 4.453c-2.285-1.82-5.764-3.196-10.43-4.138c-3.046-.584-5.07-1.246-6.066-1.984a3.44 3.44 0 0 1-1.498-2.87a3.834 3.834 0 0 1 1.443-3.02c.964-.826 2.263-1.234 3.907-1.234c1.85 0 3.266.48 4.252 1.443a4.978 4.978 0 0 1 1.477 3.73h9.918l.077-.21c.116-3.427-1.272-6.286-4.17-8.583c-2.9-2.299-6.75-3.444-11.554-3.444c-4.596 0-8.277 1.147-11.043 3.444c-2.77 2.302-4.154 5.08-4.154 8.337c0 3.096 1.157 5.547 3.466 7.348c2.309 1.809 5.69 3.159 10.148 4.046c2.96.61 4.982 1.321 6.072 2.127c1.092.81 1.637 1.778 1.637 2.903a3.711 3.711 0 0 1-1.498 3.118c-.992.762-2.44 1.141-4.342 1.141c-2.04 0-3.693-.458-4.96-1.372c-1.266-.914-1.933-2.39-2.005-4.43h-9.388l-.07.21c-.14 3.283 1.26 6.209 4.202 8.777c2.941 2.567 6.947 3.851 12.01 3.851c4.81 0 8.68-1.09 11.61-3.272c2.926-2.177 4.392-4.982 4.392-8.408c0-3.208-1.147-5.709-3.433-7.51m37.147 0c-2.285-1.82-5.764-3.196-10.43-4.138c-3.046-.584-5.069-1.246-6.066-1.984a3.422 3.422 0 0 1-1.494-2.87a3.813 3.813 0 0 1 1.439-3.02c.965-.826 2.264-1.234 3.907-1.234c1.85 0 3.267.48 4.253 1.443a4.978 4.978 0 0 1 1.476 3.73h9.918l.077-.21c.116-3.427-1.272-6.286-4.17-8.583c-2.9-2.299-6.75-3.444-11.555-3.444c-4.594 0-8.276 1.147-11.042 3.444c-2.772 2.302-4.154 5.08-4.154 8.337c0 3.096 1.157 5.547 3.466 7.348c2.309 1.809 5.691 3.159 10.148 4.046c2.96.61 4.982 1.321 6.073 2.127c1.09.81 1.636 1.778 1.636 2.903a3.711 3.711 0 0 1-1.498 3.118c-.992.762-2.44 1.141-4.342 1.141c-2.04 0-3.692-.458-4.959-1.372c-1.268-.914-1.934-2.39-2.006-4.43h-9.388l-.066.21c-.144 3.283 1.255 6.209 4.203 8.777c2.942 2.567 6.943 3.851 12.012 3.851c4.804 0 8.672-1.09 11.604-3.272c2.931-2.177 4.397-4.982 4.397-8.408c0-3.208-1.147-5.709-3.433-7.51zm0 0\\\"/><path fill=\\\"#284e64\\\" d=\\\"m75.833 129.603l.011-.07l4.292-25.126zm30.999-25.257l-13.924 25.175l13.93-25.17l15.217-27.603Zm.474-49.374l-4.469 8.172zM23.429 97.993L40.5 79.639Zm3.631 6.64L45.92 89.65zm0 0l-1.262-2.31zl13.417 24.623zm4.711-8.739l8.733-16.22l15.947 29.35l-15.946-29.368l-13.504-24.684L40.5 79.662zm39.301 40.062l.057.115l2.527 4.65zM88.914 88.46l-8.788 15.908l-9.781 18l9.78-17.995zm0 0\\\"/><path fill=\\\"#f16827\\\" d=\\\"m53.882 153.978l12.69 23.245l6.98-35.9zm0 0\\\"/><path fill=\\\"#f48029\\\" d=\\\"m73.662 140.75l-11.195-20.58l-8.585 33.808l19.67-12.655zm0 0\\\"/><path fill=\\\"#f89a2e\\\" d=\\\"m40.47 129.256l13.407 24.722l8.59-33.807zm0 0\\\"/><path fill=\\\"#f16827\\\" d=\\\"m40.47 129.256l21.997-9.091l-16.545-30.52Zm0 0\\\"/><path fill=\\\"#f89921\\\" d=\\\"m75.833 129.603l4.302-25.196L67.01 128.54l6.645 12.209zm0 0\\\"/><path fill=\\\"#f89a2e\\\" d=\\\"m27.06 104.632l13.411 24.624l5.45-39.6zm0 0\\\"/><path fill=\\\"#f48029\\\" d=\\\"m92.897 129.52l13.935-25.174l-30.99 25.185Zm0 0\\\"/><path fill=\\\"#f4ae5c\\\" d=\\\"M40.504 79.673L27.06 104.631l18.86-14.98Zm35.342 49.858l17.857-49.704l-13.565 24.58Zm0 0\\\"/><path fill=\\\"#cd4e27\\\" d=\\\"m27.06 104.632l13.444-24.959L23.422 98l2.381 4.324zm0 0\\\"/><path fill=\\\"#f16938\\\" d=\\\"m106.826 104.346l-13.13-24.519l-17.85 49.704Zm-83.397-6.353L40.5 79.639L26.993 54.946l-3.57 43.024Zm0 0\\\"/><path fill=\\\"#f89a2e\\\" d=\\\"m106.826 104.346l.485-49.374l-13.61 24.855Zm-79.832-49.38H.139l23.29 43.027Zm0 0\\\"/><path fill=\\\"#cd4e27\\\" d=\\\"m107.311 54.972l-.485 49.374l27.234-49.38Zm-31.468 74.56l-.01.07l-9.262 47.617l26.332-47.693zm0 0\\\"/>\",\n\t\t\t\"width\": 256,\n\t\t\t\"height\": 256\n\t\t},\n\t\t\"vitest\": {\n\t\t\t\"body\": \"<path fill=\\\"#FCC72B\\\" d=\\\"m96.058 40.82l-30.6 44.244a2.635 2.635 0 0 1-4.339-.007a2.607 2.607 0 0 1-.451-1.601l1.225-24.428l-19.772-4.192a2.628 2.628 0 0 1-1.891-1.59a2.603 2.603 0 0 1 .278-2.451l30.6-44.244a2.632 2.632 0 0 1 3.009-.998a2.621 2.621 0 0 1 1.33 1.005c.322.47.48 1.032.451 1.601l-1.224 24.428l19.77 4.192c.423.09.817.282 1.147.56a2.605 2.605 0 0 1 .467 3.48Z\\\"/><path fill=\\\"#729B1B\\\" d=\\\"M64.013 122.185a6.19 6.19 0 0 1-4.382-1.815L30.717 91.458a6.195 6.195 0 0 1 4.384-10.565a6.198 6.198 0 0 1 4.378 1.803l24.534 24.53l53.446-53.444a6.195 6.195 0 0 1 8.762 8.762L68.393 120.37a6.175 6.175 0 0 1-4.38 1.815\\\"/><path fill=\\\"#729B1B\\\" fill-opacity=\\\".5\\\" d=\\\"M63.988 122.185c.814 0 1.62-.159 2.371-.47a6.191 6.191 0 0 0 2.01-1.345l28.914-28.912a6.193 6.193 0 0 0-.012-8.75a6.197 6.197 0 0 0-8.75-.012l-24.533 24.53L10.54 53.782a6.196 6.196 0 0 0-8.762 8.762l57.828 57.826a6.176 6.176 0 0 0 4.38 1.815Z\\\"/>\"\n\t\t},\n\t\t\"vscode\": {\n\t\t\t\"body\": \"<mask id=\\\"deviconVscode0\\\" width=\\\"128\\\" height=\\\"128\\\" x=\\\"0\\\" y=\\\"0\\\" maskUnits=\\\"userSpaceOnUse\\\" style=\\\"mask-type:alpha\\\"><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M90.767 127.126a7.968 7.968 0 0 0 6.35-.244l26.353-12.681a8 8 0 0 0 4.53-7.209V21.009a8 8 0 0 0-4.53-7.21L97.117 1.12a7.97 7.97 0 0 0-9.093 1.548l-50.45 46.026L15.6 32.013a5.328 5.328 0 0 0-6.807.302l-7.048 6.411a5.335 5.335 0 0 0-.006 7.888L20.796 64L1.74 81.387a5.336 5.336 0 0 0 .006 7.887l7.048 6.411a5.327 5.327 0 0 0 6.807.303l21.974-16.68l50.45 46.025a7.96 7.96 0 0 0 2.743 1.793Zm5.252-92.183L57.74 64l38.28 29.058V34.943Z\\\" clip-rule=\\\"evenodd\\\"/></mask><g mask=\\\"url(#deviconVscode0)\\\"><path fill=\\\"#0065A9\\\" d=\\\"M123.471 13.82L97.097 1.12A7.973 7.973 0 0 0 88 2.668L1.662 81.387a5.333 5.333 0 0 0 .006 7.887l7.052 6.411a5.333 5.333 0 0 0 6.811.303l103.971-78.875c3.488-2.646 8.498-.158 8.498 4.22v-.306a8.001 8.001 0 0 0-4.529-7.208Z\\\"/><g filter=\\\"url(#deviconVscode1)\\\"><path fill=\\\"#007ACC\\\" d=\\\"m123.471 114.181l-26.374 12.698A7.973 7.973 0 0 1 88 125.333L1.662 46.613a5.333 5.333 0 0 1 .006-7.887l7.052-6.411a5.333 5.333 0 0 1 6.811-.303l103.971 78.874c3.488 2.647 8.498.159 8.498-4.219v.306a8.001 8.001 0 0 1-4.529 7.208\\\"/></g><g filter=\\\"url(#deviconVscode2)\\\"><path fill=\\\"#1F9CF0\\\" d=\\\"M97.098 126.882A7.977 7.977 0 0 1 88 125.333c2.952 2.952 8 .861 8-3.314V5.98c0-4.175-5.048-6.266-8-3.313a7.977 7.977 0 0 1 9.098-1.549L123.467 13.8A8 8 0 0 1 128 21.01v85.982a8 8 0 0 1-4.533 7.21z\\\"/></g><path fill=\\\"url(#deviconVscode3)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M90.69 127.126a7.968 7.968 0 0 0 6.349-.244l26.353-12.681a8 8 0 0 0 4.53-7.21V21.009a8 8 0 0 0-4.53-7.21L97.039 1.12a7.97 7.97 0 0 0-9.093 1.548l-50.45 46.026l-21.974-16.68a5.328 5.328 0 0 0-6.807.302l-7.048 6.411a5.336 5.336 0 0 0-.006 7.888L20.718 64L1.662 81.386a5.335 5.335 0 0 0 .006 7.888l7.048 6.411a5.328 5.328 0 0 0 6.807.303l21.975-16.681l50.45 46.026a7.959 7.959 0 0 0 2.742 1.793m5.252-92.184L57.662 64l38.28 29.057z\\\" clip-rule=\\\"evenodd\\\" opacity=\\\".25\\\"/></g><defs><filter id=\\\"deviconVscode1\\\" width=\\\"144.744\\\" height=\\\"113.408\\\" x=\\\"-8.411\\\" y=\\\"22.594\\\" color-interpolation-filters=\\\"sRGB\\\" filterUnits=\\\"userSpaceOnUse\\\"><feFlood flood-opacity=\\\"0\\\" result=\\\"BackgroundImageFix\\\"/><feColorMatrix in=\\\"SourceAlpha\\\" result=\\\"hardAlpha\\\" values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\\\"/><feOffset/><feGaussianBlur stdDeviation=\\\"4.167\\\"/><feColorMatrix values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\\\"/><feBlend in2=\\\"BackgroundImageFix\\\" mode=\\\"overlay\\\" result=\\\"effect1_dropShadow_1_36\\\"/><feBlend in=\\\"SourceGraphic\\\" in2=\\\"effect1_dropShadow_1_36\\\" result=\\\"shape\\\"/></filter><filter id=\\\"deviconVscode2\\\" width=\\\"56.667\\\" height=\\\"144.007\\\" x=\\\"79.667\\\" y=\\\"-8.004\\\" color-interpolation-filters=\\\"sRGB\\\" filterUnits=\\\"userSpaceOnUse\\\"><feFlood flood-opacity=\\\"0\\\" result=\\\"BackgroundImageFix\\\"/><feColorMatrix in=\\\"SourceAlpha\\\" result=\\\"hardAlpha\\\" values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\\\"/><feOffset/><feGaussianBlur stdDeviation=\\\"4.167\\\"/><feColorMatrix values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\\\"/><feBlend in2=\\\"BackgroundImageFix\\\" mode=\\\"overlay\\\" result=\\\"effect1_dropShadow_1_36\\\"/><feBlend in=\\\"SourceGraphic\\\" in2=\\\"effect1_dropShadow_1_36\\\" result=\\\"shape\\\"/></filter><linearGradient id=\\\"deviconVscode3\\\" x1=\\\"63.922\\\" x2=\\\"63.922\\\" y1=\\\".33\\\" y2=\\\"127.67\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient></defs>\"\n\t\t},\n\t\t\"vscode-wordmark\": {\n\t\t\t\"body\": \"<mask id=\\\"deviconVscodeWordmark0\\\" width=\\\"108\\\" height=\\\"108\\\" x=\\\"10\\\" y=\\\"0\\\" maskUnits=\\\"userSpaceOnUse\\\" style=\\\"mask-type:alpha\\\"><path fill=\\\"#fff\\\" fill-rule=\\\"evenodd\\\" d=\\\"M86.585 107.263c1.7.662 3.64.62 5.357-.206l22.236-10.7A6.75 6.75 0 0 0 118 90.274V17.726a6.751 6.751 0 0 0-3.822-6.083L91.942.943a6.724 6.724 0 0 0-7.671 1.307L41.703 41.085L23.163 27.01a4.495 4.495 0 0 0-5.744.256l-5.947 5.41a4.502 4.502 0 0 0-.005 6.654L27.547 54l-16.08 14.67a4.502 4.502 0 0 0 .005 6.655l5.947 5.41a4.495 4.495 0 0 0 5.743.255l18.541-14.075L84.27 105.75a6.724 6.724 0 0 0 2.315 1.513m4.431-77.78L58.718 54l32.298 24.517z\\\" clip-rule=\\\"evenodd\\\"/></mask><path fill=\\\"#0877b9\\\" fill-rule=\\\"evenodd\\\" d=\\\"M35.206 124.462c-.35 0-.657.028-.916.087c-.262.058-.479.15-.65.266c-.159.106-.29.25-.379.421a1.287 1.287 0 0 0-.12.565c0 .363.117.655.346.87c.235.214.558.32.974.32c.33.003.654-.085.938-.253c.29-.175.59-.437.91-.79v-1.486zm35.719-3.069c-.329 0-.608.08-.837.238a1.796 1.796 0 0 0-.557.616a2.992 2.992 0 0 0-.313.864a5.08 5.08 0 0 0-.096.984c0 .35.025.695.084 1.037c.053.337.149.636.283.898c.133.264.316.476.537.633c.224.158.503.238.845.238c.17 0 .333-.026.49-.07a1.84 1.84 0 0 0 .492-.234a3.7 3.7 0 0 0 .522-.425c.206-.202.4-.418.578-.646v-2.805c-.35-.432-.688-.762-1.013-.987a1.756 1.756 0 0 0-1.015-.34Zm12.989-.03c-.384 0-.712.068-.987.205a1.805 1.805 0 0 0-.682.57a2.714 2.714 0 0 0-.397.878c-.09.363-.132.736-.127 1.109c0 .387.031.745.103 1.082c.07.34.192.637.354.886c.166.254.387.454.666.6c.279.148.624.224 1.041.224c.374 0 .703-.07.982-.204c.28-.137.504-.325.683-.57a2.38 2.38 0 0 0 .395-.874a4.647 4.647 0 0 0 .125-1.115c0-.38-.032-.738-.107-1.075a2.697 2.697 0 0 0-.35-.89a1.776 1.776 0 0 0-.659-.604c-.277-.146-.623-.222-1.04-.222m-6.39-.965c.128 0 .237.004.32.013a.83.83 0 0 1 .195.05c.04.016.075.041.1.074a.182.182 0 0 1 .03.105v7.019a.172.172 0 0 1-.03.103a.246.246 0 0 1-.1.075a.877.877 0 0 1-.195.046c-.21.02-.422.02-.633 0a.91.91 0 0 1-.199-.045a.202.202 0 0 1-.1-.075a.205.205 0 0 1-.03-.104v-7.02a.234.234 0 0 1 .03-.104c.016-.028.05-.053.1-.074a.857.857 0 0 1 .2-.05c.083-.01.187-.013.312-.013m-16.668 0c.124 0 .228.004.31.013a.497.497 0 0 1 .2.046a.27.27 0 0 1 .107.074a.192.192 0 0 1 .032.109v4.084c0 .412.028.74.087.987a1.918 1.918 0 0 0 .274.632c.12.174.275.309.462.405c.188.094.409.145.658.145c.32 0 .641-.112.962-.342c.32-.229.658-.565 1.02-1.008v-4.904a.23.23 0 0 1 .025-.107a.239.239 0 0 1 .104-.074a.538.538 0 0 1 .2-.048c.078-.007.187-.011.316-.011c.125 0 .23.003.312.012a.464.464 0 0 1 .196.045c.04.017.075.043.104.075a.16.16 0 0 1 .033.109v7.019a.202.202 0 0 1-.025.103a.206.206 0 0 1-.096.075a.894.894 0 0 1-.18.045a2.487 2.487 0 0 1-.572 0a.659.659 0 0 1-.18-.044a.192.192 0 0 1-.092-.075a.2.2 0 0 1-.02-.104v-.93c-.404.443-.8.762-1.186.967a2.547 2.547 0 0 1-1.186.304c-.467 0-.864-.08-1.183-.233a2.043 2.043 0 0 1-.775-.637a2.473 2.473 0 0 1-.424-.938a5.503 5.503 0 0 1-.128-1.294v-4.258c0-.043.007-.08.027-.11a.215.215 0 0 1 .105-.074a.536.536 0 0 1 .203-.047c.084-.007.184-.01.31-.01zm-35.933 0c.126 0 .23.004.313.013a.497.497 0 0 1 .2.046c.04.017.074.042.103.074c.021.032.032.07.03.109v4.084c0 .412.029.74.092.987c.057.249.149.458.27.632c.125.174.28.309.466.405c.188.094.405.145.653.145c.325 0 .646-.112.967-.342c.316-.229.658-.565 1.016-1.008v-4.904c0-.04.008-.078.028-.107a.215.215 0 0 1 .105-.074a.497.497 0 0 1 .2-.048c.105-.01.21-.013.316-.011c.121 0 .224.003.309.012a.475.475 0 0 1 .195.045a.378.378 0 0 1 .108.075a.192.192 0 0 1 .032.109v7.019a.172.172 0 0 1-.028.103a.206.206 0 0 1-.096.075a.77.77 0 0 1-.181.045a2.43 2.43 0 0 1-.572 0a.748.748 0 0 1-.18-.044c-.045-.022-.074-.047-.085-.075a.202.202 0 0 1-.027-.104v-.93c-.398.443-.795.762-1.186.967c-.362.197-.77.301-1.183.304c-.469 0-.861-.08-1.183-.233a2.089 2.089 0 0 1-.778-.637a2.608 2.608 0 0 1-.424-.938a5.726 5.726 0 0 1-.128-1.294v-4.258c0-.043.008-.08.028-.11a.239.239 0 0 1 .104-.074a.537.537 0 0 1 .204-.047c.083-.007.187-.01.313-.01v-.001zm-9.95 0a3.2 3.2 0 0 1 .321.013a.794.794 0 0 1 .192.05a.233.233 0 0 1 .103.074a.18.18 0 0 1 .03.105v7.019a.173.173 0 0 1-.03.103a.233.233 0 0 1-.103.075a.847.847 0 0 1-.192.046c-.21.02-.422.02-.632 0a.92.92 0 0 1-.2-.045a.202.202 0 0 1-.1-.075a.17.17 0 0 1-.03-.104v-7.02c0-.037.01-.073.03-.104a.205.205 0 0 1 .1-.074a.857.857 0 0 1 .2-.05c.082-.01.188-.013.312-.013zm68.99-.112c.58 0 1.083.086 1.512.258a2.7 2.7 0 0 1 1.07.75c.288.327.499.724.645 1.194c.142.467.213.995.213 1.582c0 .57-.075 1.098-.226 1.578a3.457 3.457 0 0 1-.673 1.245a3.059 3.059 0 0 1-1.125.816c-.45.195-.97.29-1.561.29c-.579 0-1.082-.087-1.511-.257a2.707 2.707 0 0 1-1.07-.75a3.155 3.155 0 0 1-.642-1.19a5.526 5.526 0 0 1-.212-1.59c0-.575.075-1.099.225-1.582a3.368 3.368 0 0 1 .671-1.24a2.98 2.98 0 0 1 1.12-.813c.445-.195.97-.291 1.566-.291zm-49.145 0c.505 0 .934.059 1.287.175c.355.112.641.279.858.504c.216.22.375.49.474.82c.1.328.15.711.15 1.148v4.733c0 .064-.02.109-.062.139a.433.433 0 0 1-.17.07a1.51 1.51 0 0 1-.322.025a1.65 1.65 0 0 1-.324-.025a.387.387 0 0 1-.175-.07c-.037-.03-.053-.075-.053-.139v-.703a3.471 3.471 0 0 1-1.03.767a2.739 2.739 0 0 1-1.193.27c-.371 0-.703-.046-1.004-.146a2.15 2.15 0 0 1-.762-.416a1.804 1.804 0 0 1-.49-.671a2.227 2.227 0 0 1-.176-.903c0-.394.079-.74.242-1.028c.164-.298.402-.548.69-.728a3.416 3.416 0 0 1 1.109-.433a6.906 6.906 0 0 1 1.473-.142h.97v-.545c0-.271-.03-.513-.088-.72a1.259 1.259 0 0 0-.275-.517a1.23 1.23 0 0 0-.495-.312a2.291 2.291 0 0 0-.75-.109c-.315 0-.603.043-.852.118a4.415 4.415 0 0 0-.666.25c-.188.086-.347.17-.476.244c-.124.08-.22.117-.282.117a.189.189 0 0 1-.109-.034a.254.254 0 0 1-.083-.091a.416.416 0 0 1-.05-.162a1.125 1.125 0 0 1-.017-.214c0-.127.008-.232.03-.306a.479.479 0 0 1 .128-.217c.071-.067.191-.146.362-.237c.176-.092.37-.175.597-.25a5.53 5.53 0 0 1 .73-.187a4.35 4.35 0 0 1 .804-.075m-14.99 0c.187 0 .375.016.561.05c.188.029.354.07.509.116a1.988 1.988 0 0 1 .624.295c.043.03.082.067.113.11a.426.426 0 0 1 .037.108c.01.037.017.083.025.14c.01.148.01.296 0 .443a.487.487 0 0 1-.042.158c-.016.041-.037.074-.067.091a.156.156 0 0 1-.083.03c-.05 0-.116-.03-.202-.088a2.46 2.46 0 0 0-.341-.184a3.908 3.908 0 0 0-.497-.183a2.256 2.256 0 0 0-.653-.086a2.019 2.019 0 0 0-.576.074a1.119 1.119 0 0 0-.411.214a.874.874 0 0 0-.242.318a1.017 1.017 0 0 0-.079.408c0 .2.05.371.155.509c.103.141.24.262.407.365c.163.1.354.196.566.28l.654.258c.22.087.437.187.653.296c.217.108.409.242.576.394c.166.16.298.346.398.563c.1.22.155.48.155.783c0 .358-.067.679-.2.957a1.995 1.995 0 0 1-.566.712a2.525 2.525 0 0 1-.874.433a3.911 3.911 0 0 1-1.116.15c-.245 0-.487-.021-.712-.059a3.72 3.72 0 0 1-.607-.149a2.85 2.85 0 0 1-.459-.187a1.186 1.186 0 0 1-.27-.175a.424.424 0 0 1-.126-.217a1.92 1.92 0 0 1-.025-.633a.874.874 0 0 1 .043-.163a.192.192 0 0 1 .062-.09a.201.201 0 0 1 .099-.026c.059 0 .142.033.256.105c.11.07.248.145.411.229c.162.083.357.162.582.233c.222.066.48.103.77.103c.217 0 .416-.024.592-.07c.165-.04.322-.11.461-.209a.906.906 0 0 0 .3-.345a1.11 1.11 0 0 0 .104-.5a.826.826 0 0 0-.149-.499a1.54 1.54 0 0 0-.405-.358a3.547 3.547 0 0 0-.56-.279a65.496 65.496 0 0 1-.642-.25a7.673 7.673 0 0 1-.65-.304a2.39 2.39 0 0 1-.562-.407a1.89 1.89 0 0 1-.404-.576a1.962 1.962 0 0 1-.149-.802a1.886 1.886 0 0 1 .637-1.457c.214-.188.48-.341.8-.454a3.274 3.274 0 0 1 1.119-.175m36.04-1.77c.128 0 .236.01.32.017a.806.806 0 0 1 .196.05c.04.018.074.047.1.083a.168.168 0 0 1 .032.1v1.67h1.8a.207.207 0 0 1 .112.03a.217.217 0 0 1 .079.09a.43.43 0 0 1 .05.167c.013.07.016.154.016.25c0 .187-.025.324-.07.408c-.046.083-.11.124-.187.124h-1.8v3.914c0 .484.071.85.214 1.094c.145.246.399.371.77.371c.117 0 .223-.013.32-.033a3.975 3.975 0 0 0 .246-.075a1.545 1.545 0 0 0 .186-.074a.343.343 0 0 1 .142-.034c.025 0 .05.005.074.017a.129.129 0 0 1 .055.074a1.212 1.212 0 0 1 .05.383c0 .15-.008.27-.03.358a.41.41 0 0 1-.095.196a.626.626 0 0 1-.188.117a1.641 1.641 0 0 1-.282.091a7.373 7.373 0 0 1-.341.059a3.35 3.35 0 0 1-.358.02a2.77 2.77 0 0 1-.938-.14a1.513 1.513 0 0 1-.636-.438a1.788 1.788 0 0 1-.363-.742a4.387 4.387 0 0 1-.113-1.057v-4.1h-.98c-.08 0-.143-.042-.189-.125c-.05-.084-.07-.221-.07-.409c0-.095.004-.179.017-.249a.957.957 0 0 1 .053-.166a.194.194 0 0 1 .08-.092a.207.207 0 0 1 .112-.03h.979v-1.669c0-.037.007-.071.024-.099a.245.245 0 0 1 .104-.085a.778.778 0 0 1 .197-.05c.103-.01.207-.016.312-.016m-51.06-.803c.145 0 .258.004.346.013a.847.847 0 0 1 .199.04a.262.262 0 0 1 .104.084a.637.637 0 0 1 .066.13l2.894 8.493h.009l2.813-8.477a.731.731 0 0 1 .053-.142a.213.213 0 0 1 .11-.086a.972.972 0 0 1 .22-.043c.253-.02.507-.016.758.009c.092.013.154.037.187.075c.038.038.05.088.043.158c-.015.096-.04.19-.075.28l-3.289 9.37a.375.375 0 0 1-.087.142a.375.375 0 0 1-.155.087a1.1 1.1 0 0 1-.25.042a4.896 4.896 0 0 1-.374.012c-.118 0-.217-.004-.304-.004a1.699 1.699 0 0 1-.378-.053a.283.283 0 0 1-.114-.054a.206.206 0 0 1-.075-.072a.37.37 0 0 1-.05-.107l-3.3-9.372a1.044 1.044 0 0 1-.067-.279c0-.07.022-.12.066-.158a.485.485 0 0 1 .23-.071c.1-.01.241-.016.42-.016zm45.472-.1c.446.002.889.075 1.311.216c.2.063.38.138.538.217c.155.08.258.146.31.196a.58.58 0 0 1 .095.116c.018.034.031.07.036.109a.838.838 0 0 1 .025.162c.004.063.008.141.008.242c0 .091-.004.174-.012.245a1.43 1.43 0 0 1-.032.186a.252.252 0 0 1-.068.109a.166.166 0 0 1-.1.033c-.053 0-.146-.036-.266-.107a7.966 7.966 0 0 0-.45-.247a3.808 3.808 0 0 0-.629-.25a2.747 2.747 0 0 0-.816-.111c-.277 0-.524.037-.731.113a1.437 1.437 0 0 0-.512.298a1.164 1.164 0 0 0-.305.446a1.51 1.51 0 0 0-.104.545c0 .28.066.525.196.725c.128.204.303.384.52.537c.217.158.462.299.737.433c.275.129.554.258.842.391c.285.133.565.28.84.437c.279.159.524.346.737.563c.218.22.396.477.524.76c.134.297.2.642.2 1.042c0 .474-.088.895-.263 1.266a2.739 2.739 0 0 1-.724.94a3.128 3.128 0 0 1-1.095.58a4.55 4.55 0 0 1-1.353.195c-.337 0-.65-.03-.937-.088a4.853 4.853 0 0 1-.774-.209a3.674 3.674 0 0 1-.565-.256a1.423 1.423 0 0 1-.321-.225a.551.551 0 0 1-.134-.238a1.403 1.403 0 0 1-.042-.388c0-.116.005-.208.014-.282a.798.798 0 0 1 .049-.188a.205.205 0 0 1 .074-.096a.244.244 0 0 1 .113-.024c.072 0 .176.041.31.129c.127.091.298.187.507.292c.207.103.458.199.753.29c.33.098.675.143 1.02.138c.27.001.537-.038.795-.117a1.908 1.908 0 0 0 .624-.333c.175-.141.31-.316.405-.528a1.716 1.716 0 0 0 .141-.709a1.332 1.332 0 0 0-.196-.731a1.953 1.953 0 0 0-.516-.533a4.295 4.295 0 0 0-.729-.42l-.836-.392a9.15 9.15 0 0 1-.837-.441a3.49 3.49 0 0 1-.725-.571a2.673 2.673 0 0 1-.52-.766a2.624 2.624 0 0 1-.196-1.058c0-.42.075-.795.23-1.127c.153-.33.366-.604.637-.829a2.846 2.846 0 0 1 .978-.512a4.11 4.11 0 0 1 1.22-.175zm27.251-.109c.3 0 .508.05.621.16c.112.107.167.308.167.602c0 .305-.058.509-.17.616c-.118.113-.326.168-.634.168c-.298 0-.507-.055-.62-.163c-.113-.104-.166-.308-.166-.604c0-.299.057-.507.17-.616c.117-.108.325-.163.632-.163m-62.548 0c.298 0 .507.05.62.16c.108.107.165.308.165.602c0 .305-.057.509-.17.616c-.116.113-.328.168-.632.168c-.305 0-.508-.055-.62-.163c-.113-.104-.167-.308-.167-.604c0-.299.054-.507.17-.616c.113-.108.325-.163.633-.163zm58.606-.482c.129 0 .238.004.32.017c.084.012.15.028.197.045a.236.236 0 0 1 .103.08a.181.181 0 0 1 .039.108v10.387a.234.234 0 0 1-.03.107a.214.214 0 0 1-.092.075a1.033 1.033 0 0 1-.179.043a2.157 2.157 0 0 1-.537 0a1.146 1.146 0 0 1-.18-.043a.243.243 0 0 1-.098-.075a.197.197 0 0 1-.034-.107v-.93c-.33.372-.719.689-1.15.938c-.394.22-.83.333-1.306.333c-.511 0-.954-.1-1.316-.3a2.451 2.451 0 0 1-.887-.812a3.615 3.615 0 0 1-.494-1.199a6.593 6.593 0 0 1-.155-1.458c0-.602.062-1.144.192-1.63c.132-.488.324-.9.579-1.245a2.55 2.55 0 0 1 .948-.792a2.94 2.94 0 0 1 1.304-.278a2.4 2.4 0 0 1 1.13.27a4.1 4.1 0 0 1 1.01.791v-4.075c0-.038.008-.075.024-.109a.209.209 0 0 1 .105-.079c.164-.05.335-.072.507-.062m-32.663-.033c.13 0 .235.004.317.016a.634.634 0 0 1 .195.047a.226.226 0 0 1 .104.078a.18.18 0 0 1 .03.11v10.419a.173.173 0 0 1-.03.103a.264.264 0 0 1-.104.075a.817.817 0 0 1-.195.046c-.21.02-.42.02-.629 0a.911.911 0 0 1-.2-.045a.236.236 0 0 1-.104-.075a.202.202 0 0 1-.025-.104v-10.421c0-.037.008-.075.025-.108a.213.213 0 0 1 .104-.079a.76.76 0 0 1 .2-.046a2.185 2.185 0 0 1 .312-.016m71.7 4.404c-.33 0-.608.08-.837.238a1.797 1.797 0 0 0-.557.616a3.013 3.013 0 0 0-.313.864a5.162 5.162 0 0 0-.095.984c0 .35.024.695.083 1.037c.053.337.146.636.282.898c.133.264.313.476.537.633c.225.158.504.238.842.238c.175 0 .337-.026.496-.07c.172-.055.337-.133.487-.234c.166-.108.34-.25.524-.425c.183-.175.374-.391.579-.646v-2.805c-.35-.432-.688-.762-1.013-.987a1.774 1.774 0 0 0-1.014-.34zm-8.305-.03c-.384 0-.712.068-.986.205a1.807 1.807 0 0 0-.683.57a2.611 2.611 0 0 0-.396.878c-.09.363-.133.736-.129 1.109c0 .387.033.745.104 1.082c.071.34.191.637.353.886c.168.254.388.454.667.6c.28.148.624.224 1.037.224c.379 0 .707-.07.986-.203a1.85 1.85 0 0 0 .682-.57c.18-.242.31-.534.397-.875c.086-.365.128-.74.125-1.115a5.198 5.198 0 0 0-.11-1.075a2.713 2.713 0 0 0-.349-.89a1.754 1.754 0 0 0-.66-.604c-.276-.146-.626-.221-1.038-.221zm16.432-.07a1.912 1.912 0 0 0-.838.18a1.844 1.844 0 0 0-.603.474a2.183 2.183 0 0 0-.38.691a2.974 2.974 0 0 0-.148.824h3.829c.017-.675-.133-1.207-.45-1.59c-.315-.387-.786-.579-1.41-.579m.066-1.007c.554 0 1.02.092 1.407.267c.369.163.697.408.96.715c.247.296.43.65.547 1.05c.118.42.177.854.175 1.29v.238c0 .199-.05.345-.154.431a.529.529 0 0 1-.346.126h-4.624c0 .391.041.74.12 1.053c.076.313.208.583.391.804c.184.223.421.395.712.515c.292.122.65.18 1.074.18a4.692 4.692 0 0 0 1.57-.266c.192-.067.35-.13.47-.183a.778.778 0 0 1 .28-.08c.037 0 .07.009.1.025a.218.218 0 0 1 .066.084a.911.911 0 0 1 .033.149c.016.138.017.278.004.416a1.091 1.091 0 0 1-.022.134a.347.347 0 0 1-.107.191a.973.973 0 0 1-.254.142a3.316 3.316 0 0 1-.546.192a8.168 8.168 0 0 1-.774.166a5.68 5.68 0 0 1-.941.075c-.579 0-1.082-.08-1.515-.24a2.857 2.857 0 0 1-1.099-.717a3.144 3.144 0 0 1-.67-1.196c-.15-.48-.225-1.031-.225-1.669c0-.604.08-1.144.233-1.624c.14-.45.37-.868.674-1.228a3 3 0 0 1 1.066-.77a3.484 3.484 0 0 1 1.395-.27m-16.448 0c.58 0 1.082.086 1.51.258c.412.16.78.417 1.07.75c.289.327.5.724.647 1.194c.14.467.212.995.212 1.583c0 .57-.075 1.097-.224 1.577a3.44 3.44 0 0 1-.676 1.245a3.053 3.053 0 0 1-1.124.816c-.45.195-.97.29-1.56.29c-.58 0-1.083-.086-1.511-.257a2.705 2.705 0 0 1-1.07-.75a3.155 3.155 0 0 1-.642-1.19a5.497 5.497 0 0 1-.213-1.59c0-.575.075-1.099.226-1.582a3.37 3.37 0 0 1 .67-1.24a3.003 3.003 0 0 1 1.12-.813c.445-.195.966-.29 1.566-.29zm-7.739-2.648c.291 0 .575.025.849.08c.28.053.533.124.767.207c.232.084.44.18.623.288c.184.107.31.198.38.27a.81.81 0 0 1 .133.159a.375.375 0 0 1 .053.129a1.993 1.993 0 0 1 .026.682a.693.693 0 0 1-.046.183a.246.246 0 0 1-.074.109a.15.15 0 0 1-.105.037c-.075 0-.175-.05-.309-.153a4.795 4.795 0 0 0-.503-.333a3.902 3.902 0 0 0-.753-.339a3.347 3.347 0 0 0-1.062-.15c-.45 0-.858.088-1.228.267a2.613 2.613 0 0 0-.945.792a3.916 3.916 0 0 0-.607 1.278a6.337 6.337 0 0 0-.218 1.719c0 .637.072 1.203.209 1.695c.142.49.337.902.596 1.232c.262.328.578.578.953.749c.379.166.803.253 1.277.253c.405 0 .754-.05 1.054-.149c.267-.084.525-.194.77-.33c.179-.1.351-.212.52-.332c.137-.1.246-.15.32-.15a.178.178 0 0 1 .097.025c.028.022.05.053.061.087c.02.06.032.121.039.183c.004.08.007.18.007.299c0 .085 0 .155-.003.218a1.31 1.31 0 0 1-.03.162a.434.434 0 0 1-.05.125a.655.655 0 0 1-.107.133a2.125 2.125 0 0 1-.33.238a3.666 3.666 0 0 1-.62.312a4.831 4.831 0 0 1-.85.258a4.883 4.883 0 0 1-1.048.104a4.632 4.632 0 0 1-1.774-.325a3.571 3.571 0 0 1-1.349-.97c-.374-.425-.657-.948-.858-1.577c-.202-.625-.298-1.35-.298-2.165c0-.837.103-1.582.32-2.236a4.89 4.89 0 0 1 .908-1.665a3.88 3.88 0 0 1 1.402-1.041a4.387 4.387 0 0 1 1.803-.358m18.66-.616a2.2 2.2 0 0 1 .319.017a1.018 1.018 0 0 1 .195.046a.262.262 0 0 1 .104.078a.181.181 0 0 1 .038.11v10.386a.239.239 0 0 1-.029.107a.207.207 0 0 1-.096.075a.891.891 0 0 1-.175.043a2.149 2.149 0 0 1-.536 0a1.164 1.164 0 0 1-.18-.043a.248.248 0 0 1-.1-.075a.193.193 0 0 1-.032-.107v-.93a4.776 4.776 0 0 1-1.15.938a2.654 2.654 0 0 1-1.307.333c-.512 0-.953-.1-1.316-.3a2.458 2.458 0 0 1-.886-.812a3.609 3.609 0 0 1-.496-1.199a6.572 6.572 0 0 1-.153-1.458c0-.602.062-1.144.191-1.63c.134-.488.325-.9.579-1.245c.247-.338.572-.61.949-.792a2.944 2.944 0 0 1 1.303-.278c.412 0 .786.092 1.127.27a4.07 4.07 0 0 1 1.013.792v-4.076a.26.26 0 0 1 .024-.109c.016-.034.054-.058.105-.078a1.35 1.35 0 0 1 .2-.046c.083-.013.182-.017.308-.017z\\\" clip-rule=\\\"evenodd\\\"/><g mask=\\\"url(#deviconVscodeWordmark0)\\\" transform=\\\"translate(-2.798 -.297)scale(1.06574)\\\"><path fill=\\\"#0065a9\\\" d=\\\"M114.178 11.66L91.925.945A6.727 6.727 0 0 0 84.25 2.25L11.402 68.67a4.5 4.5 0 0 0 .005 6.655l5.95 5.41a4.5 4.5 0 0 0 5.748.255l87.725-66.55c2.943-2.233 7.17-.134 7.17 3.56v-.258a6.75 6.75 0 0 0-3.822-6.082\\\"/><g filter=\\\"url(#deviconVscodeWordmark1)\\\"><path fill=\\\"#007acc\\\" d=\\\"m114.178 96.34l-22.253 10.714a6.727 6.727 0 0 1-7.675-1.304L11.402 39.33a4.5 4.5 0 0 1 .005-6.655l5.95-5.41a4.5 4.5 0 0 1 5.748-.255l87.725 66.55c2.943 2.233 7.17.134 7.17-3.56v.258a6.75 6.75 0 0 1-3.822 6.082\\\"/></g><g filter=\\\"url(#deviconVscodeWordmark2)\\\"><path fill=\\\"#1f9cf0\\\" d=\\\"M91.926 107.056a6.729 6.729 0 0 1-7.676-1.306c2.49 2.491 6.75.727 6.75-2.796V5.046c0-3.523-4.26-5.287-6.75-2.796A6.73 6.73 0 0 1 91.926.943l22.249 10.7A6.75 6.75 0 0 1 118 17.726v72.548a6.75 6.75 0 0 1-3.825 6.083z\\\"/></g><path fill=\\\"url(#deviconVscodeWordmark3)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M86.52 107.262a6.72 6.72 0 0 0 5.357-.205l22.235-10.7a6.751 6.751 0 0 0 3.822-6.083V17.726a6.749 6.749 0 0 0-3.822-6.083L91.877.943a6.724 6.724 0 0 0-7.672 1.307L41.638 41.085L23.097 27.01a4.495 4.495 0 0 0-5.744.256l-5.947 5.41a4.502 4.502 0 0 0-.005 6.654L27.481 54l-16.08 14.67a4.502 4.502 0 0 0 .005 6.655l5.947 5.41a4.495 4.495 0 0 0 5.743.255l18.542-14.075l42.567 38.835a6.707 6.707 0 0 0 2.314 1.512zm4.43-77.78L58.653 54l32.299 24.517V29.483Z\\\" clip-rule=\\\"evenodd\\\" opacity=\\\".25\\\"/></g><defs><filter id=\\\"deviconVscodeWordmark1\\\" width=\\\"124.732\\\" height=\\\"98.292\\\" x=\\\"1.601\\\" y=\\\"17.762\\\" color-interpolation-filters=\\\"sRGB\\\" filterUnits=\\\"userSpaceOnUse\\\"><feFlood flood-opacity=\\\"0\\\" result=\\\"BackgroundImageFix\\\"/><feColorMatrix in=\\\"SourceAlpha\\\" result=\\\"hardAlpha\\\" values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\\\"/><feOffset/><feGaussianBlur stdDeviation=\\\"4.167\\\"/><feColorMatrix values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\\\"/><feBlend in2=\\\"BackgroundImageFix\\\" mode=\\\"overlay\\\" result=\\\"effect1_dropShadow_2383_31\\\"/><feBlend in=\\\"SourceGraphic\\\" in2=\\\"effect1_dropShadow_2383_31\\\" result=\\\"shape\\\"/></filter><filter id=\\\"deviconVscodeWordmark2\\\" width=\\\"50.417\\\" height=\\\"124.11\\\" x=\\\"75.917\\\" y=\\\"-8.055\\\" color-interpolation-filters=\\\"sRGB\\\" filterUnits=\\\"userSpaceOnUse\\\"><feFlood flood-opacity=\\\"0\\\" result=\\\"BackgroundImageFix\\\"/><feColorMatrix in=\\\"SourceAlpha\\\" result=\\\"hardAlpha\\\" values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\\\"/><feOffset/><feGaussianBlur stdDeviation=\\\"4.167\\\"/><feColorMatrix values=\\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\\\"/><feBlend in2=\\\"BackgroundImageFix\\\" mode=\\\"overlay\\\" result=\\\"effect1_dropShadow_2383_31\\\"/><feBlend in=\\\"SourceGraphic\\\" in2=\\\"effect1_dropShadow_2383_31\\\" result=\\\"shape\\\"/></filter><linearGradient id=\\\"deviconVscodeWordmark3\\\" x1=\\\"63.934\\\" x2=\\\"63.934\\\" y1=\\\".278\\\" y2=\\\"107.722\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop stop-color=\\\"#fff\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#fff\\\" stop-opacity=\\\"0\\\"/></linearGradient></defs>\"\n\t\t},\n\t\t\"vsphere\": {\n\t\t\t\"body\": \"<path fill=\\\"#00c1d5\\\" d=\\\"M60.168.104H18.641S2.278.932 0 18.744v89.373s1.14 17.915 19.78 19.78h36.35l5.488-5.49H20.401s-13.048-1.656-14.705-14.705V19.883S5.178 6.628 20.194 5.385h35.107z\\\"/><path fill=\\\"#78bd20\\\" d=\\\"M67.832 127.896h41.527s16.363-.828 18.641-18.64V19.883S126.86 1.968 108.22.103H71.974l-5.489 5.49H107.6s13.048 1.656 14.705 14.705v87.819s.518 13.255-14.498 14.498H72.803Z\\\"/><g fill=\\\"#0091da\\\"><path d=\\\"M101.385 111.534s-.103 0 0 0H47.016c-6.731 0-9.113-6.006-9.424-9.217v-56.13c0-7.56 6.524-9.837 9.942-9.941h.103l54.576.207c6.835 0 9.321 6.214 9.632 9.424v55.094c0 3.107-.932 5.696-2.9 7.56c-2.9 2.9-6.939 3.003-7.56 3.003m-59.65-9.631c.103.828.932 5.489 5.281 5.489h54.37c.103 0 2.899 0 4.763-1.76c1.035-1.036 1.553-2.59 1.553-4.558V46.291c-.103-.932-1.035-5.695-5.592-5.695l-54.472-.208c-.725 0-5.903.518-5.903 5.8z\\\"/><path d=\\\"M32.104 86.162h-7.25c-4.039 0-4.763-4.246-4.97-5.075V25.372c0-4.97 4.66-5.385 5.488-5.489l54.576.208c4.143 0 4.971 4.453 5.178 5.281v5.696h4.971v-6.11c-.414-3.417-3.003-9.838-10.045-9.838l-54.68-.207c-3.52.103-10.252 2.485-10.252 10.356v56.129c.31 3.314 2.9 9.631 9.838 9.631h7.25v-4.867z\\\"/></g>\"\n\t\t},\n\t\t\"vsphere-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#00c1d5\\\" d=\\\"M60.962 0H42.063s-7.411.418-8.455 8.457V49.07s.522 8.144 8.979 8.979H59.08l2.507-2.506H42.9s-5.951-.73-6.682-6.682V8.98s-.21-6.057 6.576-6.58H58.77z\\\"/><path fill=\\\"#78bd20\\\" d=\\\"M64.406 58.153h18.897s7.413-.417 8.457-8.456V8.979S91.238.835 82.781 0H66.285L63.78 2.506h18.688s5.951.73 6.682 6.682V49.07s.21 6.056-6.578 6.578H66.703z\\\"/><path fill=\\\"#0091da\\\" d=\\\"M45.092 6.787c-1.67.104-4.7 1.148-4.7 4.697V36.96c.21 1.462 1.255 4.385 4.49 4.385h3.34v-2.192h-3.34c-1.773 0-2.192-1.879-2.192-2.296V11.484c0-2.192 2.088-2.505 2.506-2.505l24.744.209c1.88 0 2.297 1.984 2.297 2.402v2.61h2.297v-2.716c-.21-1.566-1.358-4.49-4.595-4.49zm10.127 9.604c-1.566 0-4.593 1.044-4.593 4.593v25.477c.104 1.462 1.252 4.28 4.384 4.28h24.745c.313 0 2.088 0 3.445-1.358c.94-.835 1.356-1.984 1.356-3.445V20.88c-.207-1.462-1.357-4.385-4.49-4.385l-24.848-.105Zm.104 2.09l24.744.103c1.88 0 2.297 2.088 2.506 2.506v24.848c0 .835-.313 1.566-.73 1.984c-.837.73-2.089.73-2.089.73H55.01c-1.88 0-2.192-1.982-2.296-2.4V20.984c0-2.192 2.087-2.504 2.609-2.504z\\\"/><path fill=\\\"#717074\\\" d=\\\"m5.208 71.203l8.668 19.629h2.4l8.77-19.629H22.54l-7.414 16.914L7.61 71.203h-2.4zm22.97 0v19.629h2.193V76.006l7.309 13.676l7.307-13.676V90.83h2.193V71.203h-2.193L37.68 84.881l-7.308-13.678zm78.096 4.281c-1.358 0-2.507.42-3.655 1.045c-1.043.731-1.983 1.67-2.61 2.819a8.545 8.545 0 0 0-.94 3.966c0 1.461.313 2.82 1.044 3.967c.627 1.253 1.567 2.09 2.716 2.82c1.148.732 2.295 1.044 3.652 1.044c1.15 0 2.193-.208 3.342-.625c1.148-.418 1.982-.941 2.61-1.672l-1.359-1.358c-.417.522-1.145.94-1.981 1.254c-.94.418-1.777.52-2.716.313c-1.357 0-2.61-.418-3.55-1.358a5.692 5.692 0 0 1-1.67-3.654h12.11c0-2.61-.625-4.698-1.878-6.264c-1.149-1.566-2.923-2.297-5.116-2.297zm-26.833.106c-1.67 0-3.447.522-5.326 1.46l.837 1.776c.834-.417 1.565-.73 2.296-.94a7.801 7.801 0 0 1 2.088-.314c1.46 0 2.505.42 3.132 1.254c.626.835.94 1.775.94 3.028v.521c-1.67-.522-3.34-.836-4.803-.836c-1.044 0-2.088.21-2.924.627a5.753 5.753 0 0 0-2.088 1.775c-.522.836-.835 1.67-.835 2.61c0 1.46.523 2.61 1.567 3.445c.94.835 2.296 1.254 3.862 1.254c1.045 0 2.089-.208 3.029-.73s1.67-1.15 2.193-1.985v2.297h2.19v-8.978c0-1.88-.52-3.343-1.563-4.49c-1.044-1.046-2.506-1.67-4.594-1.774zm17.957.207c-1.357 0-2.508.21-3.55.836c-1.046.522-1.775 1.358-2.089 2.402v-2.924h-2.19v14.825h2.19v-8.249c0-1.044.21-1.878.731-2.609c.418-.73 1.15-1.358 1.984-1.775c.836-.418 1.776-.625 2.924-.625zm-44.998.312l-2.297.002l5.012 14.825h1.982l3.967-11.797l3.97 11.797h1.981l5.012-14.827H69.73l-3.652 11.905l-4.07-11.905h-1.88l-4.07 11.905zm53.873 1.569c1.357 0 2.505.417 3.34 1.252c.835.94 1.357 1.983 1.46 3.445h-9.917c.104-1.462.732-2.61 1.672-3.445c1.044-.836 2.192-1.252 3.445-1.252m-27.355 5.636c1.566 0 3.028.21 4.49.627v2.297c-.21 1.044-.835 1.775-1.775 2.297c-.94.522-2.09.73-3.133.73a4.327 4.327 0 0 1-2.61-.833c-.73-.522-1.043-1.15-1.043-2.09s.314-1.67 1.15-2.192a5.338 5.338 0 0 1 2.921-.836m40.236 18.729a3.642 3.642 0 0 0-3.639 3.637a3.643 3.643 0 0 0 3.64 3.638a3.642 3.642 0 0 0 3.636-3.638a3.64 3.64 0 0 0-3.637-3.637m0 .488a3.144 3.144 0 0 1 3.148 3.149a3.145 3.145 0 0 1-3.148 3.15a3.147 3.147 0 0 1-3.15-3.15a3.145 3.145 0 0 1 3.15-3.149m-91.08.621c-1.253 0-2.298.21-3.342.73a5.059 5.059 0 0 0-2.4 1.985c-.522.835-.836 1.775-.836 2.819c0 1.149.208 1.983.73 2.714c.522.731 1.254 1.253 2.194 1.67c.94.418 2.087.835 3.548 1.149c1.88.417 3.238.94 4.073 1.46c.835.524 1.252 1.253 1.252 2.298c0 .626-.209 1.15-.522 1.671c-.313.522-.835.94-1.566 1.252a6.309 6.309 0 0 1-2.506.522c-1.357 0-2.505-.21-3.549-.73c-1.044-.524-1.984-1.148-2.924-2.088l-1.357 1.775c2.088 2.088 4.7 3.132 7.621 3.027c1.463 0 2.717-.208 3.76-.73a5.058 5.058 0 0 0 2.4-1.985c.522-.94.836-1.88.836-2.923c0-1.566-.52-2.82-1.67-3.655c-1.148-.835-2.715-1.46-4.803-1.982c-1.879-.522-3.237-.941-4.072-1.463c-.835-.418-1.252-1.148-1.252-2.088c0-.626.208-1.148.522-1.67c.417-.522.94-.939 1.566-1.252c.73-.313 1.356-.418 2.191-.418c.94 0 1.985.21 2.924.627a9.086 9.086 0 0 1 2.715 1.88l1.358-1.776c-.94-.94-1.985-1.566-3.133-2.088c-1.15-.522-2.4-.73-3.758-.73zm28.293 0v20.045h2.193v-9.396c0-.627.208-1.252.625-1.88c.418-.52.941-1.043 1.672-1.357c.731-.313 1.462-.521 2.297-.521c1.044 0 1.878.418 2.61 1.148c.73.731 1.042 1.67 1.042 2.922v9.084H69v-9.396c0-1.15-.21-2.192-.73-3.028a6.008 6.008 0 0 0-1.985-1.984a8.067 8.067 0 0 0-2.818-.834c-1.044 0-2.09.209-2.924.73c-.836.523-1.565 1.148-1.983 1.983v-7.516h-2.192zm60.982.4v4.255h.864v-1.596h.79l1.038 1.596h.863l-1.047-1.608c1.634-.186 1.307-2.559-.058-2.646zm.864.67h1.086c1.032 0 .884 1.298.115 1.298h-1.2zm-39.295 3.628c-1.357 0-2.506.418-3.655 1.045c-1.044.73-1.983 1.67-2.609 2.818a8.55 8.55 0 0 0-.94 3.967c0 1.462.313 2.82 1.044 3.968c.626 1.253 1.566 2.088 2.714 2.819c1.15.73 2.297 1.043 3.655 1.043c1.148 0 2.192-.208 3.341-.625c1.148-.418 1.984-.941 2.61-1.672l-1.358-1.358c-.417.522-1.147.941-1.982 1.254c-.835.418-1.776.522-2.61.313c-1.359 0-2.61-.419-3.55-1.358a5.692 5.692 0 0 1-1.672-3.654h12.008c0-2.61-.625-4.698-1.88-6.264c-1.147-1.567-2.924-2.296-5.116-2.296m26.728 0c-1.358 0-2.506.418-3.654 1.045c-1.044.73-1.982 1.67-2.61 2.818a8.551 8.551 0 0 0-.94 3.967c0 1.462.313 2.82 1.044 3.968c.626 1.253 1.566 2.088 2.715 2.819c1.148.73 2.297 1.043 3.654 1.043c1.15 0 2.192-.208 3.34-.625c1.15-.418 1.985-.941 2.611-1.672l-1.357-1.358c-.418.522-1.15.941-1.984 1.254c-.94.418-1.776.522-2.715.313c-1.358 0-2.61-.419-3.55-1.358a5.69 5.69 0 0 1-1.669-3.654h12.11c0-2.61-.627-4.698-1.88-6.264c-1.147-1.567-2.921-2.296-5.114-2.296zm-59.197.105c-1.15 0-2.193.312-3.133.834s-1.775 1.253-2.297 2.297v-2.818h-2.19V128h2.19v-7.727c.627.94 1.357 1.775 2.297 2.297c.94.522 1.984.836 3.133.836a6.57 6.57 0 0 0 3.445-.94c1.044-.625 1.775-1.566 2.4-2.714a9.617 9.617 0 0 0 .837-3.967c0-1.462-.21-2.82-.836-3.969a6.073 6.073 0 0 0-2.4-2.712c-1.046-.73-2.193-1.045-3.446-1.149m50.322.21c-1.357 0-2.505.207-3.549.833c-1.044.522-1.774 1.358-2.088 2.402v-2.923h-2.193v14.826h2.193v-8.248c0-1.044.21-1.88.731-2.612c.418-.73 1.147-1.357 1.982-1.775c.836-.418 1.776-.625 2.924-.625v-1.879zm-91.353.312l6.263 14.826h2.088l6.16-14.826h-2.4l-4.803 12.32l-4.908-12.32zm40.508 1.46c1.042 0 1.88.209 2.61.731a5.759 5.759 0 0 1 1.776 2.09c.418.94.625 1.88.625 3.027c0 1.148-.207 2.192-.625 3.028c-.417.94-1.044 1.565-1.775 2.087c-.73.522-1.673.73-2.61.73c-.94 0-1.88-.208-2.61-.73a5.754 5.754 0 0 1-1.776-2.088c-.418-.94-.625-1.878-.625-3.027c0-1.148.207-2.192.625-3.027c.417-.94 1.044-1.568 1.775-2.09c.835-.522 1.565-.73 2.61-.73zm33.097.106c1.357 0 2.505.417 3.34 1.252c.835.94 1.36 1.984 1.463 3.445h-9.92c.104-1.46.732-2.61 1.672-3.445s2.088-1.252 3.445-1.252m26.727 0c1.357 0 2.506.417 3.342 1.252c.835.94 1.356 1.984 1.46 3.445h-9.918c.104-1.46.73-2.61 1.67-3.445s2.088-1.252 3.446-1.252\\\"/>\"\n\t\t},\n\t\t\"vuejs\": {\n\t\t\t\"body\": \"<path fill=\\\"none\\\" d=\\\"m0 8.934l49.854.158l14.167 24.47l14.432-24.47L128 8.935l-63.834 110.14zm126.98.637l-24.36.02l-38.476 66.053L25.691 9.592L.942 9.572l63.211 107.89zm-25.149-.008l-22.745.168l-15.053 24.647L49.216 9.73l-22.794-.168l37.731 64.476zm-75.834-.17l23.002.009m-23.002-.01l23.002.01\\\"/><path fill=\\\"#35495e\\\" d=\\\"m25.997 9.393l23.002.009L64.035 34.36L79.018 9.404L102 9.398L64.15 75.053z\\\"/><path fill=\\\"#41b883\\\" d=\\\"m.91 9.569l25.067-.172l38.15 65.659L101.98 9.401l25.11.026l-62.966 108.06z\\\"/>\"\n\t\t},\n\t\t\"vuejs-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#35495e\\\" d=\\\"M32.191 97.953a1.91 1.91 0 0 0-1.055.316c-.319.211-.611.575-.611 1.041c0 .062-.036.2.084.44l-.031-.076l6.41 20.797c.115.39.39.688.7.86s.648.235.978.235c.7 0 1.47-.334 1.705-1.088v-.002l6.404-20.875v-.076c0 .106.031.045.031-.183c0-.475-.303-.824-.627-1.043a1.966 1.966 0 0 0-1.101-.346c-.49 0-1.052.297-1.24.863l-.004.006l-5.17 17.254l-5.19-17.223c-.077-.308-.284-.565-.525-.709s-.504-.191-.758-.191m51.055 1.072c-1.02 0-1.88.782-1.88 1.76s.846 1.787 1.88 1.787c1.014 0 1.82-.824 1.82-1.787s-.82-1.76-1.82-1.76m-15.029 6.658c-3.488 0-6.361 2.792-6.361 6.147v3.438c0 1.879.748 3.49 2.02 4.601c1.27 1.112 3.044 1.727 5.077 1.727c1.502 0 2.727-.337 3.602-.793c.438-.229.79-.485 1.049-.764c.26-.28.45-.585.45-.967c0-.35-.134-.654-.353-.927c-.218-.273-.562-.524-1.006-.524c-.32 0-.566.135-.779.266c-.213.13-.413.275-.654.414c-.482.277-1.12.547-2.248.547c-1.256 0-2.302-.358-3.024-.96c-.72-.6-1.14-1.435-1.14-2.529v-.636h6.435c.687 0 1.45 0 2.11-.42c.66-.422 1.06-1.26 1.06-2.533c0-3.53-2.944-6.086-6.238-6.086zm24.186 0c-1.854 0-3.218.6-4.094 1.502c-.876.902-1.254 2.076-1.254 3.172c0 1.398.565 2.4 1.373 3.041c.809.643 1.815.966 2.772 1.254c.957.289 1.873.545 2.488.924c.615.38.945.789.945 1.654c0 .465-.14.835-.517 1.137c-.378.303-1.05.541-2.143.541c-1.293 0-2.016-.319-2.543-.644c-.263-.163-.475-.332-.693-.483s-.466-.314-.813-.314c-.417 0-.725.257-.912.523a1.546 1.546 0 0 0-.295.897c0 .405.198.761.477 1.07c.28.309.657.584 1.121.824c.927.48 2.204.815 3.72.815c1.647 0 3.001-.402 3.96-1.182c.958-.78 1.48-1.939 1.48-3.275c0-1.51-.549-2.595-1.357-3.313c-.809-.717-1.83-1.087-2.801-1.385c-.971-.297-1.906-.529-2.531-.855c-.626-.326-.92-.627-.92-1.32c0-.375.15-.847.531-1.22c.381-.371 1.003-.673 2.037-.673c.826 0 1.44.19 1.932.39c.246.101.46.206.662.294c.203.087.39.173.658.173c.485 0 .818-.32 1.016-.617c.198-.297.312-.59.312-.926c0-.42-.261-.718-.55-.94s-.653-.402-1.073-.556c-.84-.308-1.912-.507-2.988-.507zm-43.857.186c-.811 0-1.512.509-1.512 1.266v8.193c0 3.324 2.826 6.268 6.33 6.268c3.446 0 6.33-2.91 6.33-6.268v-8.223c0-.378-.208-.707-.482-.916c-.274-.208-.622-.32-1-.32s-.728.11-1.008.315c-.28.204-.504.53-.504.921v8.223c0 1.742-1.518 3.428-3.336 3.428c-1.847 0-3.335-1.716-3.335-3.428v-8.193c0-.393-.215-.695-.48-.91s-.615-.356-1.003-.356m34.701 0c-.38 0-.73.098-1.01.309c-.28.21-.47.558-.47.927v15.096c0 1.133-.08 2.083-.329 2.659c-.248.575-.542.83-1.38.83c-.741 0-1.36.647-1.36 1.422c0 .321.104.675.367.95s.672.438 1.145.438c1.594 0 2.814-.707 3.54-1.855c.728-1.149 1.01-2.685 1.01-4.444v-15.096c0-.393-.224-.735-.51-.937a1.723 1.723 0 0 0-1.003-.299m-15.061 2.473c1.991 0 3.336 1.667 3.336 3.365c0 .185-.02.306-.04.361c-.018.055-.016.048-.044.067c-.055.036-.363.115-.951.115H64.85v-.666c0-1.777 1.485-3.242 3.336-3.242m9.512 9.37c-1.088 0-1.912.9-1.912 1.942c0 1 .812 1.912 1.912 1.912c1.042 0 1.88-.884 1.88-1.912c0-1.067-.852-1.941-1.88-1.941z\\\"/><path fill=\\\"none\\\" d=\\\"m9.106 0l42.76.136l12.151 20.988L76.396.136L118.893 0L64.142 94.469zm108.912.546L97.124.564L64.123 57.218L31.14.564L9.914.547L64.13 93.086zM96.448.54l-19.51.143l-12.91 21.14L51.319.683L31.769.54L64.13 55.841zM31.403.394L51.133.4l12.896 21.407L76.88.403L96.592.398L64.128 56.71\\\"/><path fill=\\\"#35495e\\\" d=\\\"M31.404.394L51.133.4l12.896 21.407L76.88.403L96.592.398L64.128 56.71z\\\"/><path fill=\\\"#41b883\\\" d=\\\"m9.887.544l21.5-.146l32.722 56.315L96.575.401l21.537.023l-54.007 92.684z\\\"/>\"\n\t\t},\n\t\t\"vuestorefront\": {\n\t\t\t\"body\": \"<rect width=\\\"71.83\\\" height=\\\"50.423\\\" x=\\\"29.74\\\" y=\\\"41.216\\\" fill=\\\"#fff\\\" stroke=\\\"#6dd0c7\\\" stroke-width=\\\".294\\\" ry=\\\"0\\\"/><path fill=\\\"#5ecd77\\\" d=\\\"M122 113.73v4.2c-.82 1.36-2.06 1.64-3.58 1.64c-36.49-.03-72.99-.02-109.48-.03c-.27 0-.54.01-.81 0c-1.8-.08-2.78-1.07-2.73-2.87c.04-1.29.2-2.57.3-3.86c.91-11.38 1.8-22.74 2.7-34.11c.93-11.69 1.87-23.38 2.81-35.07c.73-9.12 1.46-18.23 2.21-27.35c.15-1.87 1.05-2.64 2.94-2.67c1.08-.02 2.15-.01 3.23-.02c29.2 0 58.4-.01 87.6-.01c1.18.01 2.37 0 3.55.02c1.74.03 2.69.85 2.89 2.58c.09.79-.07 1.61 0 2.4c.31 3.16.7 6.31.99 9.47c.37 4.07.68 8.14 1.02 12.21l1.92 23.3c1.17 14.2 2.33 28.39 3.53 42.59c.21 2.54.6 5.06.91 7.58M61.49 87.58c3.98-.03 7.84-.96 11.29-3.11c10.46-6.51 14.67-16.42 15.12-28.29c.04-1.1-.5-1.83-1.74-1.88c-1.38-.06-1.51.85-1.6 1.9c-.19 2.16-.26 4.36-.71 6.47c-1.45 6.77-4.44 12.71-10.05 17.04c-4.86 3.75-10.21 5.59-16.42 4.12c-7.83-1.85-12.62-7.11-15.94-14.02c-2-4.18-2.87-8.65-2.96-13.28c-.03-1.64-.87-2.5-2.05-2.19c-1.17.31-1.36 1.24-1.32 2.28c.22 6.92 1.98 13.39 5.88 19.16c4.9 7.21 11.46 11.58 20.5 11.8M86 47.34c2.71 2.72 5.02 5.03 7.31 7.35c.81.82 1.7 1.02 2.53.17c.76-.78.6-1.69-.15-2.44c-2.69-2.71-5.38-5.41-8.1-8.08c-.82-.81-1.85-1.01-2.72-.17c-2.81 2.73-5.59 5.5-8.31 8.32c-.74.77-1 1.83-.02 2.63c.9.74 1.77.45 2.54-.38c2.26-2.43 4.53-4.85 6.92-7.4\\\"/><path fill=\\\"#53C074\\\" d=\\\"M105.85 8.76c1.41 1.34 1.18 3.14 1.34 4.83c-29.2 0-58.4.01-87.6.01c.38-1.67-.31-3.69 1.62-4.84z\\\"/>\"\n\t\t},\n\t\t\"vuetify\": {\n\t\t\t\"body\": \"<path fill=\\\"#1697f6\\\" d=\\\"M65.3 34.414L40.84 76.79L64 116.926l30.672-53.13l30.66-53.128H79Zm0 0\\\"/><path fill=\\\"#aeddff\\\" d=\\\"m33.34 63.797l1.605 2.793l22.88-39.649l9.402-16.273H2.668Zm0 0\\\"/><path fill=\\\"#1867c0\\\" d=\\\"M79 10.668C90.594 48.82 64 116.926 64 116.926L40.84 76.789Zm0 0\\\"/><path fill=\\\"#7bc6ff\\\" d=\\\"M67.227 10.668c-48.844 0-32.282 55.922-32.282 55.922Zm0 0\\\"/>\"\n\t\t},\n\t\t\"vyper\": {\n\t\t\t\"body\": \"<path d=\\\"M80 91.712L64 64L48 91.712l16 27.712z\\\" opacity=\\\".8\\\"/><path d=\\\"M96 64L80 36.287L64 64l16 27.712zm-32 0L48 36.287L32 64l16 27.712z\\\" opacity=\\\".6\\\"/><path d=\\\"M112 36.287L96 8.574L80 36.287L96 64zm-64 0L64 64l16-27.713l-8-13.857H56zm0 0L32 8.574L16 36.287L32 64z\\\" opacity=\\\".45\\\"/><path d=\\\"M128 8.574H96l16 27.713zm-96 0H0l16 27.713z\\\" opacity=\\\".3\\\"/>\"\n\t\t},\n\t\t\"vyper-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"m63.993 90.631l13.082-22.658l-13.082-22.657l-13.081 22.657z\\\" opacity=\\\".8\\\"/><path d=\\\"m77.075 67.973l13.082-22.657l-13.082-22.658l-13.082 22.658zm-26.163 0l13.081-22.657l-13.081-22.658L37.83 45.316z\\\" opacity=\\\".6\\\"/><path d=\\\"m90.157 45.316l13.081-22.658L90.157 0L77.075 22.658zm-52.327 0l13.082-22.658L37.83 0L24.75 22.658z\\\" opacity=\\\".45\\\"/><path d=\\\"m90.157 0l13.081 22.658L116.32 0zm-78.49 0l13.082 22.658L37.83 0z\\\" opacity=\\\".3\\\"/><path d=\\\"M63.989 0L50.907 22.658l13.082 22.658L77.07 22.658z\\\" opacity=\\\".45\\\"/><path d=\\\"M65.09 112.68c-1.699 0-3.166.997-3.97 2.46v-1.871a.429.429 0 1 0-.856 0v14.29a.42.42 0 0 0 .133.326a.44.44 0 0 0 .295.109a.44.44 0 0 0 .295-.109a.42.42 0 0 0 .133-.325v-7.313c.804 1.463 2.271 2.46 3.97 2.46c2.57 0 4.626-2.269 4.626-5.013s-2.055-5.014-4.626-5.014m12.876 0c-2.535 0-4.56 2.21-4.616 4.903a.428.428 0 0 0 0 .22c.055 2.693 2.08 4.904 4.616 4.904c1.635 0 3.15-.674 3.966-2.143a.42.42 0 0 0 .04-.348a.441.441 0 0 0-.205-.238a.44.44 0 0 0-.31-.048a.42.42 0 0 0-.274.218c-.656 1.181-1.806 1.703-3.217 1.703c-1.934 0-3.528-1.619-3.726-3.73h7.924a.429.429 0 0 0 .428-.428c0-2.744-2.055-5.013-4.626-5.013m8.79.155a.43.43 0 0 0-.42.434v8.854a.42.42 0 0 0 .132.326a.44.44 0 0 0 .295.108a.44.44 0 0 0 .296-.108a.42.42 0 0 0 .132-.326v-4.462a.427.427 0 0 0 .022-.136c0-.627.323-1.597.921-2.378c.599-.782 1.44-1.38 2.482-1.452a.42.42 0 0 0 .313-.147a.44.44 0 0 0 .096-.295a.44.44 0 0 0-.116-.288a.42.42 0 0 0-.322-.126l-.03.001c-1.335.093-2.394.86-3.102 1.786c-.096.125-.18.255-.263.385v-1.743a.427.427 0 0 0-.415-.43a.05.05 0 0 0-.02-.004zm-37.786 0a.43.43 0 0 0-.392.597l3.627 8.816l-2.02 5.156a.419.419 0 0 0 .004.352c.049.098.136.17.236.21c.1.039.213.045.315.006a.419.419 0 0 0 .242-.256l5.6-14.29v-.001a.428.428 0 1 0-.797-.313l-3.128 7.984l-3.287-7.99a.428.428 0 0 0-.4-.271m-4.488.032a.429.429 0 0 0-.384.278l-3.118 7.973l-3.118-7.974a.428.428 0 1 0-.798.312l3.517 8.993c.07.18.235.272.399.272a.425.425 0 0 0 .398-.272l3.517-8.992a.43.43 0 0 0-.414-.59zm20.608.67c2.065 0 3.769 1.836 3.769 4.156c0 2.321-1.704 4.158-3.77 4.158s-3.769-1.837-3.769-4.158c0-2.32 1.704-4.157 3.77-4.157m12.876 0c1.934 0 3.528 1.617 3.725 3.728H74.24c.198-2.11 1.792-3.729 3.726-3.729\\\"/>\"\n\t\t},\n\t\t\"wasm\": {\n\t\t\t\"body\": \"<path fill=\\\"#654ff0\\\" d=\\\"M.223.222v127.555h127.555V.222H78.594c.014.227.036.455.036.686c0 8.08-6.55 14.626-14.63 14.626c-8.078 0-14.625-6.546-14.625-14.626c0-.231.022-.459.031-.686zm29.595 68.746h8.445l5.782 30.738h.107l6.968-30.738h7.908l6.265 31.119h.106l6.597-31.119h8.284l-10.765 45.156H61.12l-6.213-30.738H54.8l-6.7 30.738h-8.557zm59.994 0h13.334l13.284 45.156h-8.77l-2.879-10.051H89.59l-2.212 10.05h-8.5ZM94.895 80.1l-3.684 16.57h11.473L98.448 80.1Z\\\"/>\"\n\t\t},\n\t\t\"wasm-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#644EEF\\\" d=\\\"M41.301 28.781v22.723l.043 22.766c.023.023 10.262.035 22.75.023l22.703-.016l.016-22.746l.016-22.75H69.305l-.043.535c-.18 2.34-1.742 4.219-3.98 4.785a5.99 5.99 0 0 1-2.312.031a5.255 5.255 0 0 1-3.652-2.953c-.254-.559-.469-1.473-.469-2.027v-.371zm12.098 24.527c.926 0 1.422.023 1.449.066s.484 2.438 1.031 5.332l1.02 5.352c.02.055.055.07.09.035s.594-2.437 1.254-5.344l1.258-5.363c.051-.059.402-.078 1.355-.078c.711 0 1.32.023 1.359.047s.563 2.477 1.164 5.445l1.129 5.438c.02.023.051.027.07.008s.535-2.418 1.152-5.34l1.184-5.453c.063-.145.07-.145 1.441-.145c1.184 0 1.387.012 1.418.098c.039.098-3.652 15.715-3.766 15.926c-.051.102-.187.113-1.449.109c-.766 0-1.422-.02-1.461-.047s-.555-2.422-1.141-5.328l-1.098-5.375c-.02-.055-.055-.066-.09-.031s-.578 2.445-1.215 5.363l-1.191 5.363c-.02.031-.695.059-1.508.059c-1.465 0-1.469 0-1.523-.145c-.129-.355-3.414-15.801-3.379-15.891s.223-.102 1.445-.102zm22.223 0c1.895 0 2.305.016 2.367.09c.102.121 4.73 15.863 4.695 15.965c-.023.063-.379.082-1.488.082c-1.09 0-1.477-.023-1.523-.082c-.035-.043-.273-.801-.527-1.68l-.523-1.715c-.051-.102-.25-.109-2.742-.109h-2.684l-.062.238a76.63 76.63 0 0 0-.387 1.707c-.18.805-.355 1.504-.395 1.555c-.105.121-2.863.125-2.91.004c-.031-.082 3.766-15.859 3.844-15.992c.027-.039.883-.062 2.336-.062zm.137 3.984c-.332-.012-.625.004-.652.031c-.074.074-1.344 5.785-1.305 5.852c.02.031.91.059 1.988.059c1.715 0 1.957-.012 1.988-.102c.023-.055-.289-1.387-.687-2.961l-.73-2.863zm0 0\\\"/><path fill=\\\"#3E3E3E\\\" d=\\\"M52.441 95.148c-1.094-.125-1.945-.344-2.008-.512c-.023-.055-.039-.301-.039-.547c0-.324.023-.453.09-.48c.051-.02.324.039.613.133c1.5.473 3.207.473 4.012 0c.555-.324.809-.789.813-1.477c.004-1.004-.535-1.496-2.359-2.168c-1.137-.418-1.68-.723-2.184-1.219c-.633-.625-.754-.949-.758-1.988c-.004-.742.004-.781.207-1.195c.352-.711.988-1.184 1.934-1.441c.5-.133 1.914-.148 2.559-.023c.453.086 1.324.352 1.477.449c.078.055.074.121-.051.496c-.211.652-.164.629-.816.414c-1.191-.391-2.488-.441-3.168-.125s-.926.688-.926 1.43c0 .598.125.895.535 1.266c.328.293.695.48 1.801.91c1.844.719 2.406 1.121 2.832 2.051c.125.277.145.418.141 1.055c-.004.953-.133 1.309-.684 1.895c-.434.465-1.004.785-1.715.953c-.406.098-1.859.176-2.305.125zm10.566 0c-1.094-.125-1.945-.344-2.008-.512c-.023-.055-.039-.301-.039-.547c0-.324.023-.453.09-.48c.051-.02.324.039.613.133c1.5.473 3.203.473 4.012 0c.555-.324.809-.789.813-1.477c0-1.004-.535-1.496-2.359-2.168c-1.137-.418-1.68-.723-2.184-1.219c-.633-.625-.758-.949-.758-1.988c-.004-.742.004-.781.207-1.195c.348-.711.988-1.184 1.934-1.441c.5-.133 1.914-.148 2.559-.023c.453.086 1.324.352 1.473.449c.082.055.074.121-.047.496c-.211.652-.164.629-.82.414c-1.187-.391-2.484-.441-3.168-.125s-.922.688-.922 1.43c0 .598.125.895.535 1.266c.328.293.695.48 1.801.91c1.844.719 2.402 1.121 2.828 2.051c.129.277.148.418.145 1.055c-.008.953-.133 1.309-.684 1.895c-.434.465-1.008.785-1.715.953c-.406.098-1.859.176-2.305.125zm-60.043-.141c-.043-.027-.367-1.172-.723-2.547L.129 84.449c-.055-.137-.051-.137.793-.145c.648-.008.867.012.922.078c.086.102 1.605 6.242 1.844 7.441c.199 1.016.219 1.082.281 1.016c.027-.031.125-.437.219-.902c.211-1.055 2.012-7.523 2.109-7.59s1.527-.059 1.629.004c.105.07 1.891 6.316 2.133 7.473l.223.992c.059.152.129-.027.215-.543c.109-.66 1.867-7.801 1.941-7.895s1.621-.113 1.676-.023c.051.082-2.711 10.598-2.801 10.652c-.133.086-1.75.059-1.82-.031c-.086-.109-1.902-6.484-2.125-7.461c-.168-.742-.223-.902-.285-.84c-.016.012-.105.371-.199.793c-.219.992-2.012 7.402-2.094 7.508c-.074.09-1.688.117-1.824.031zm14.211-.027c-.121-.121-.113-10.508.008-10.609c.063-.051.91-.066 3.027-.055l2.938.016v1.41l-4.258.031v2.941l2 .02l2 .016v1.41l-4 .031v3.328l2.129.016l2.129.02v1.473l-2.949.016c-2.238.012-2.965-.004-3.023-.062zm9.797.004c-.113-.117-.117-10.492 0-10.609c.094-.094 3.281-.102 4.234-.012c1.688.164 2.625.695 2.965 1.68c.176.512.156 1.438-.039 1.938a2.15 2.15 0 0 1-1.207 1.188c-.219.078-.398.168-.398.195s.125.086.273.129c1.094.293 1.703 1.012 1.809 2.145c.125 1.297-.48 2.422-1.586 2.941c-.887.422-.988.434-3.602.461c-1.863.023-2.387.012-2.449-.055zm4.801-1.582c.715-.285 1.066-.906.996-1.777c-.043-.516-.27-.922-.641-1.141c-.492-.289-.93-.359-2.238-.359h-1.203v3.473l1.359-.027c1.23-.02 1.398-.039 1.727-.168zm-.07-4.887a1.24 1.24 0 0 0 .766-.949c.16-.738-.148-1.348-.824-1.609c-.324-.129-.512-.145-1.66-.172l-1.297-.027v2.973l1.328-.023c1.273-.023 1.344-.031 1.688-.191zm6.176 6.48c-.047-.074 4.113-10.645 4.215-10.711c.125-.082.914-.055.988.031c.125.152 4.18 10.57 4.148 10.656c-.023.063-.187.086-.578.086c-.453 0-.559-.02-.617-.113a47.55 47.55 0 0 1-.691-1.68l-.621-1.57l-2.152-.016c-1.672-.016-2.164 0-2.211.063c-.035.047-.332.773-.66 1.617s-.625 1.574-.656 1.617c-.074.098-1.105.113-1.164.02zm6.367-4.59c0-.059-.328-.988-.73-2.066l-.809-2.234c-.047-.148-.113-.262-.148-.25s-.156.309-.27.656s-.48 1.367-.816 2.258l-.621 1.68c0 .039.637.063 1.699.063c1.531 0 1.695-.012 1.695-.105zm28.059 4.574c-.109-.109-.109-10.492 0-10.605c.059-.055.793-.074 2.91-.074l2.934.039c.148.055.148 1.016 0 1.074c-.059.02-1.121.039-2.363.039c-2.004 0-2.266.012-2.301.102c-.059.148-.043 3.117.016 3.211c.035.059.582.082 2.223.098l2.176.016v1.09l-2.176.016c-1.641.012-2.187.035-2.223.094c-.059.094-.074 3.574-.016 3.727c.035.09.297.102 2.301.102c1.242 0 2.305.016 2.363.039c.078.031.102.141.102.535s-.023.508-.102.539c-.059.02-1.375.039-2.934.039c-2.117 0-2.852-.02-2.91-.078zm10.695 0c-.109-.109-.109-10.492 0-10.605c.09-.086 1.633-.105 1.766-.023c.043.031.73 1.738 1.523 3.793l1.668 4.336c.129.324.266.594.313.594s.754-1.742 1.727-4.242l1.738-4.387c.09-.137.133-.145.91-.145c.551 0 .844.023.895.074c.059.059.078 1.328.078 5.309c0 4.414-.016 5.242-.09 5.305c-.059.047-.277.066-.594.055l-.5-.016v-4.66l-.062-4.641c-.031.012-.859 2.094-1.844 4.625l-1.859 4.656c-.043.027-.258.047-.477.047c-.344.004-.41-.016-.492-.141c-.051-.078-.859-2.148-1.801-4.594l-1.738-4.531c-.02-.043-.051-.082-.074-.082s-.031 2.082-.02 4.621c.016 3.801.004 4.629-.066 4.672c-.129.086-.91.07-1-.02zm15.949.004c-.117-.117-.117-10.492-.004-10.609c.098-.098 3.078-.105 4.031-.008c1.238.125 1.941.398 2.438.953c.355.395.496.77.543 1.453c.082 1.223-.527 2.109-1.695 2.461c-.148.043-.273.102-.273.129s.168.098.371.156c1.465.422 2.172 1.516 1.938 3.008c-.18 1.172-1.031 2.043-2.32 2.379c-.543.141-4.902.211-5.027.078zm4.449-1.047c1.055-.25 1.543-.809 1.602-1.832c.055-.883-.246-1.496-.895-1.824c-.547-.277-1.039-.344-2.559-.344c-1.203-.004-1.391.012-1.426.098c-.02.059-.035.934-.035 1.949s.016 1.891.035 1.949c.035.086.223.098 1.457.098c1.027 0 1.531-.027 1.82-.094zm.199-5.18c.707-.23 1.098-.809 1.098-1.629c0-.801-.367-1.305-1.133-1.555c-.387-.129-.602-.148-1.902-.172c-1.18-.02-1.477-.008-1.52.059c-.062.102-.078 3.191-.016 3.355c.039.094.188.102 1.586.078c1.234-.023 1.609-.051 1.887-.137zm7.449 6.223c-.059-.059-.078-1.324-.078-5.309c0-4.414.016-5.238.09-5.305c.059-.047.277-.066.594-.055l.504.02l.031 4.77l.047 4.789c.008.008 1.035.016 2.285.016s2.313.016 2.367.039c.082.027.102.141.102.535s-.02.508-.102.539c-.055.02-1.375.039-2.934.039c-2.113 0-2.848-.02-2.906-.078m12.23 0c-.059-.055-.078-.605-.078-2.074v-2l-1.758-3.25l-1.723-3.305c.051-.086 1.141-.062 1.25.027c.055.047.699 1.211 1.43 2.594l1.391 2.555c.035.02.102 0 .145-.051s.664-1.18 1.379-2.52l1.398-2.547c.086-.098.195-.113.723-.105l.625.012l-.184.328l-1.789 3.266l-1.605 2.941v2.023c0 1.492-.02 2.051-.078 2.105c-.043.047-.27.078-.562.078s-.516-.031-.562-.078zm0 0\\\"/>\"\n\t\t},\n\t\t\"webflow\": {\n\t\t\t\"body\": \"<path fill=\\\"#4353ff\\\" d=\\\"M.994.994v126.012h126.012V.994zm71.92 41.715s3.988 30.056 3.988 31.443l5.785-18.12h-.04c2.552-6.86 7.579-13.323 17.152-13.323l-13.563 32.75a18.428 18.318 0 0 1-17.549 12.809s-3.99-28.153-3.99-28.788l-5.982 15.465c-2.673 6.86-7.857 13.323-17.43 13.323l-7.5-45.518a14.918 14.829 0 0 1 14.479 13.44s.998 16.693.998 18.001l7.06-18.16c2.553-6.86 7.418-13.322 16.592-13.322\\\"/>\"\n\t\t},\n\t\t\"weblate\": {\n\t\t\t\"body\": \"<g transform=\\\"translate(50 76)\\\"><linearGradient id=\\\"deviconWeblate0\\\" x1=\\\"-100.86\\\" x2=\\\"-37.246\\\" y1=\\\"63.797\\\" y2=\\\"63.797\\\" gradientTransform=\\\"matrix(.9831 0 0 -1.0172 49.154 52.895)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00d2e6\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2eccaa\\\"/></linearGradient><path fill=\\\"url(#deviconWeblate0)\\\" d=\\\"M32 12.5c-1.9 0-3.7-.4-5.5-1.2c-4-1.7-7.4-5-10.3-9.4c.8-1.4 1.5-2.9 2.2-4.4c2.8-6.6 4.2-13.9 4.3-21.1v-.8c0-2.8-.4-5.7-1.4-8.3c-1.1-3.1-2.9-6.1-5.7-7.3c-.5-.2-1.1-.3-1.6-.3c-3.6-6.7-3.7-13 0-19.1h.2c4.3 0 8.6 1.4 12.3 3.7c10 6.4 15 18.7 15.1 30.9v.4h.1c-.1 12.9-3.2 26-9.7 36.9M9.8 32.7c-9.3 3.8-20.2 3.6-29.4-.7c-10.6-4.9-18.8-14.6-23.8-25.5c-8.6-18.8-8.8-41.2-.6-60.2c6.1 2.4 11.5-1.4 11.5-1.4s0 6 5.8 9c-5.9 13.9-5.8 30.5.2 44.1c2.9 6.5 7.3 12.6 13.3 16.1c2.2 1.2 4.6 2 7 2.3c4.3 6.6 9.8 12.3 16 16.3\\\"/><linearGradient id=\\\"deviconWeblate1\\\" x1=\\\"-59.46\\\" x2=\\\"-26.638\\\" y1=\\\"27.873\\\" y2=\\\"43.338\\\" gradientTransform=\\\"matrix(1.1631 0 0 -.8598 58.153 44.71)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".514\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconWeblate1)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M32 12.5c-1.9 0-3.7-.4-5.5-1.2c-4-1.7-7.4-5-10.3-9.4c.8-1.4 1.5-2.9 2.2-4.4c.9-2 1.6-4 2.2-6.1C22-13.4 40.2-7.3 37.5.7C36 4.8 34.2 8.8 32 12.5M9.8 32.7c-9.3 3.8-20.2 3.6-29.4-.7c-10.6-4.9.3-21.5 6.4-18.1c2.2 1.2 4.5 2 7 2.3c4.3 6.8 9.8 12.5 16 16.5\\\" clip-rule=\\\"evenodd\\\" opacity=\\\".3\\\"/><linearGradient id=\\\"deviconWeblate2\\\" x1=\\\"29.342\\\" x2=\\\"-34.164\\\" y1=\\\"63.797\\\" y2=\\\"63.797\\\" gradientTransform=\\\"matrix(.9831 0 0 -1.0172 49.154 52.895)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1fa385\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2eccaa\\\"/></linearGradient><path fill=\\\"url(#deviconWeblate2)\\\" d=\\\"M-13.6-24.3v-.4c.1-12.2 5.1-24.6 15.1-30.9c3.7-2.3 8-3.7 12.3-3.7h.2v19.1c-.5 0-1.1.1-1.6.3c-2.8 1.2-4.6 4.3-5.7 7.3c-1 2.7-1.4 5.5-1.4 8.3v.8c.1 7.2 1.4 14.4 4.3 21C12.7 5 17.8 11.8 25 14.9c5.4 2.4 11.4 1.8 16.3-1c6.1-3.4 10.5-9.5 13.3-16.1c6-13.6 6.1-30.1.2-44.1c5.8-3 5.8-9 5.8-9s5.4 3.9 11.5 1.4c8.1 19 7.9 41.5-.6 60.2c-5 11-13.1 20.6-23.8 25.5c-9.5 4.4-20.6 4.5-30.1.4C9 28.7 2 22-3 14.2c-7.2-11.3-10.6-25-10.6-38.5\\\"/></g>\"\n\t\t},\n\t\t\"weblate-wordmark\": {\n\t\t\t\"body\": \"<g transform=\\\"translate(50 76)\\\"><linearGradient id=\\\"deviconWeblateWordmark0\\\" x1=\\\"-150.086\\\" x2=\\\"-128.011\\\" y1=\\\"-11.98\\\" y2=\\\"-11.98\\\" gradientTransform=\\\"matrix(.9831 0 0 1.0172 98.309 0)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00d2e6\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2eccaa\\\"/></linearGradient><path fill=\\\"url(#deviconWeblateWordmark0)\\\" d=\\\"M-20.8-3.7c-.7 0-1.3-.1-1.9-.4c-1.4-.6-2.6-1.7-3.6-3.3c.3-.5.5-1 .8-1.5c1-2.3 1.5-4.8 1.5-7.3v-.3c0-1-.1-2-.5-2.9c-.4-1.1-1-2.1-2-2.5c-.1-.1-.4-.1-.5-.1c-1.2-2.3-1.3-4.5 0-6.6h.1c1.5 0 3 .5 4.3 1.3c3.5 2.2 5.2 6.5 5.2 10.7v.1c-.1 4.5-1.1 9-3.4 12.8m-7.7 7c-3.2 1.3-7 1.2-10.2-.2c-3.7-1.7-6.5-5.1-8.3-8.8c-3-6.5-3.1-14.3-.2-20.9c2.1.8 4-.5 4-.5s0 2.1 2 3.1c-2 4.8-2 10.6.1 15.3c1 2.3 2.5 4.4 4.6 5.6c.8.4 1.6.7 2.4.8c1.6 2.3 3.5 4.2 5.6 5.6\\\"/><linearGradient id=\\\"deviconWeblateWordmark1\\\" x1=\\\"-130.696\\\" x2=\\\"-119.307\\\" y1=\\\"-.952\\\" y2=\\\"-6.318\\\" gradientTransform=\\\"matrix(1.1631 0 0 .8598 116.308 0)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".514\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconWeblateWordmark1)\\\" fill-rule=\\\"evenodd\\\" d=\\\"M-20.8-3.7c-.7 0-1.3-.1-1.9-.4c-1.4-.6-2.6-1.7-3.6-3.3c.3-.5.5-1 .8-1.5c.3-.7.6-1.4.8-2.1c.5-1.7 6.8.5 5.9 3.2c-.6 1.4-1.2 2.8-2 4.1m-7.7 7c-3.2 1.3-7 1.2-10.2-.2c-3.7-1.7.1-7.5 2.2-6.3c.8.4 1.6.7 2.4.8c1.6 2.4 3.5 4.3 5.6 5.7\\\" clip-rule=\\\"evenodd\\\" opacity=\\\".3\\\"/><linearGradient id=\\\"deviconWeblateWordmark2\\\" x1=\\\"-104.893\\\" x2=\\\"-126.931\\\" y1=\\\"-11.998\\\" y2=\\\"-11.998\\\" gradientTransform=\\\"matrix(.9831 0 0 1.0172 98.309 0)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1fa385\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#2eccaa\\\"/></linearGradient><path fill=\\\"url(#deviconWeblateWordmark2)\\\" d=\\\"M-36.6-16.5v-.1c0-4.2 1.8-8.5 5.2-10.7c1.3-.8 2.8-1.3 4.3-1.3h.1v6.6c-.2 0-.4 0-.6.1c-1 .4-1.6 1.5-2 2.5c-.3.9-.5 1.9-.5 2.9v.3c0 2.5.5 5 1.5 7.3c1.1 2.6 2.8 5 5.3 6c1.9.8 4 .6 5.7-.3c2.1-1.2 3.6-3.3 4.6-5.6c2.1-4.7 2.1-10.4.1-15.3c2-1 2-3.1 2-3.1s1.9 1.4 4 .5c2.8 6.6 2.7 14.4-.2 20.9C-8.8-2-11.6 1.3-15.3 3c-3.3 1.5-7.1 1.6-10.4.1c-3-1.2-5.4-3.5-7.1-6.2c-2.6-3.9-3.8-8.7-3.8-13.4\\\"/></g><path d=\\\"M51.2 59.8h2.1l1 5.7l.3 1.8l.3 1.8h.1c.1-.6.3-1.2.4-1.8c.1-.6.2-1.2.4-1.8l1.4-5.7H59l1.4 5.7c.1.6.3 1.2.4 1.8s.3 1.2.4 1.8H61l.3-1.8l.3-1.8l1-5.7h1.9l-2.2 11.3h-2.5l-1.4-6c-.1-.4-.2-.9-.3-1.3c-.1-.4-.2-.9-.2-1.3h-.1c-.1.4-.2.9-.3 1.3c-.1.4-.2.9-.3 1.3l-1.4 6h-2.4zm16.3 0h6.8v1.7h-4.8v2.9h4.1v1.7h-4.1v3.3h5v1.7h-7zm10.6 0h3.6c.6 0 1.1 0 1.6.1s.9.3 1.3.5s.6.5.8.9c.2.4.3.8.3 1.3s-.1 1-.4 1.5c-.3.5-.7.8-1.2 1v.1c.6.1 1.1.4 1.6.9c.4.4.6 1 .6 1.8c0 .6-.1 1.1-.3 1.5c-.2.4-.5.8-.9 1c-.4.3-.8.5-1.4.6s-1.1.2-1.7.2h-3.9zm3.5 4.7c.8 0 1.4-.1 1.7-.4c.4-.3.5-.7.5-1.2c0-.6-.2-.9-.6-1.2c-.4-.2-.9-.3-1.7-.3H80v3.1zm.2 5.1c.8 0 1.5-.2 1.9-.5c.5-.3.7-.8.7-1.4c0-.6-.2-1-.7-1.3c-.4-.3-1.1-.4-1.9-.4h-1.7v3.6zm8-9.8h2v9.6h4.7v1.7h-6.7zM105 68h-3.8l-.9 3.1h-2l3.7-11.3h2.4l3.7 11.3H106zm-.4-1.5l-.4-1.4c-.2-.6-.4-1.2-.5-1.9c-.2-.6-.3-1.3-.5-1.9h-.1c-.2.6-.3 1.3-.5 1.9c-.2.6-.3 1.2-.5 1.8l-.4 1.4h2.9zm7.3-5h-3.3v-1.7h8.6v1.7h-3.3v9.6h-2zm8.5-1.7h6.8v1.7h-4.8v2.9h4.1v1.7h-4.1v3.3h5v1.7h-7z\\\"/>\"\n\t\t},\n\t\t\"webpack\": {\n\t\t\t\"body\": \"<path fill=\\\"#8ed6fb\\\" d=\\\"M117.29 98.1L66.24 127v-22.51L98 87zm3.5-3.16V34.55l-18.68 10.8v38.81l18.67 10.77zM10.71 98.1l51 28.88v-22.49L29.94 87zm-3.5-3.16V34.55l18.68 10.8v38.81zm2.19-64.3L61.76 1v21.76L28.21 41.21l-.27.15zm109.18 0L66.24 1v21.76L99.79 41.2l.27.15l18.54-10.71z\\\"/><path fill=\\\"#1c78c0\\\" d=\\\"M61.76 99.37L30.37 82.1V47.92L61.76 66zm4.48 0l31.39-17.25v-34.2L66.24 66zM32.5 44L64 26.66L95.5 44L64 62.16z\\\"/>\"\n\t\t},\n\t\t\"webpack-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#8ed6fb\\\" d=\\\"m30.13 72.62l-12.27 6.94v-5.41l7.65-4.21l4.63 2.67zm.84-.76V57.34l-4.49 2.59v9.33l4.52 2.6zm-26.46.76l12.27 6.94v-5.41l-7.65-4.2zm-.84-.76V57.34l4.49 2.59v9.33zM4.2 56.4l12.59-7.12v5.22l-8.07 4.44h-.06zm26.25 0l-12.59-7.12v5.22l8.06 4.43l.08.07l4.46-2.57z\\\"/><path fill=\\\"#1c78c0\\\" d=\\\"m16.78 72.92l-7.54-4.15v-8.22l7.55 4.36zm1.08 0l7.55-4.15v-8.22l-7.55 4.36zM9.75 59.6l7.57-4.16l7.58 4.16l-7.58 4.4zM48.61 70h3.32l3.38-11.27h-3.23l-2 8l-2.14-8h-2.8l-2.16 8l-2-8h-3.21L41.13 70h3.32l2.09-7.22zm6.87-5.6a5.62 5.62 0 0 0 5.93 5.88a5.35 5.35 0 0 0 4.74-2.48l-2-1.49a3.29 3.29 0 0 1-2.74 1.38a2.74 2.74 0 0 1-2.93-2.59h7.94v-.65c0-3.68-2-6-5.47-6c-3.21 0-5.52 2.54-5.52 5.95zm3.13-1.23a2.39 2.39 0 0 1 2.39-2.3a2.3 2.3 0 0 1 2.41 2.28zm9 6.83h2.8v-1.18a4.39 4.39 0 0 0 3.34 1.44c3.23 0 5.52-2.43 5.52-5.9s-2.11-5.92-5.35-5.92a4.24 4.24 0 0 0-3.34 1.46v-5.5h-3V70zm2.89-5.6c0-2.11 1.25-3.32 2.89-3.32s2.89 1.36 2.89 3.32s-1.21 3.25-2.89 3.25a3 3 0 0 1-2.89-3.25m9.92 9.6h3v-5.2a4.3 4.3 0 0 0 3.34 1.44c3.23 0 5.35-2.43 5.35-5.92s-2.28-5.9-5.52-5.9a4.32 4.32 0 0 0-3.34 1.46v-1.17h-2.8V74zm2.89-9.7a3 3 0 0 1 2.89-3.25c1.68 0 2.89 1.25 2.89 3.25s-1.16 3.32-2.89 3.32s-2.89-1.21-2.89-3.32m9.31 2.18c0 2.37 1.94 3.77 4.22 3.77a3.52 3.52 0 0 0 2.74-1l.19.73h2.63v-7.13c0-2.52-1.08-4.42-4.7-4.42a8.41 8.41 0 0 0-4.44 1.34l1.12 2a6.65 6.65 0 0 1 3-.8c1.32 0 2 .67 2 1.66v.73a4.57 4.57 0 0 0-2.38-.59c-2.63 0-4.38 1.5-4.38 3.72zm3-.09c0-.93.8-1.57 1.94-1.57s2 .58 2 1.57s-.88 1.61-2 1.61s-2-.62-2-1.55zm14 1.23a3.29 3.29 0 0 1-.1-6.57a3.83 3.83 0 0 1 2.63 1.08l.84-2.5a5.74 5.74 0 0 0-3.56-1.21a5.81 5.81 0 0 0-6 5.95a5.73 5.73 0 0 0 6 5.88a5.67 5.67 0 0 0 3.57-1.19l-.8-2.43a4.12 4.12 0 0 1-2.55 1zm4.47 2.38h3v-5.83l3.75 5.83h3.49l-4.27-6.17l4-5.11h-3.34l-3.62 4.74V54.4h-3V70z\\\"/>\"\n\t\t},\n\t\t\"webstorm\": {\n\t\t\t\"body\": \"<defs><linearGradient id=\\\"deviconWebstorm0\\\" x1=\\\"38.88\\\" x2=\\\"63.72\\\" y1=\\\"6.5\\\" y2=\\\"95.94\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".28\\\" stop-color=\\\"#07c3f2\\\"/><stop offset=\\\".94\\\" stop-color=\\\"#087cfa\\\"/></linearGradient><linearGradient id=\\\"deviconWebstorm1\\\" x1=\\\"46.63\\\" x2=\\\"88.66\\\" y1=\\\"17.85\\\" y2=\\\"79.48\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".14\\\" stop-color=\\\"#fcf84a\\\"/><stop offset=\\\".37\\\" stop-color=\\\"#07c3f2\\\"/></linearGradient><linearGradient id=\\\"deviconWebstorm2\\\" x1=\\\"88.27\\\" x2=\\\"93.79\\\" y1=\\\"25.47\\\" y2=\\\"45.02\\\" gradientTransform=\\\"rotate(.104)scale(1.21905)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".28\\\" stop-color=\\\"#07c3f2\\\"/><stop offset=\\\".94\\\" stop-color=\\\"#087cfa\\\"/></linearGradient></defs><path fill=\\\"url(#deviconWebstorm0)\\\" d=\\\"M21.262 111.25L5.484 17.75L34.656 5.645l18.63 11.07l17.066-9.207l35.558 13.656l-19.94 101.352Zm0 0\\\"/><path fill=\\\"url(#deviconWebstorm1)\\\" d=\\\"M122.516 45.117L107.41 7.813l-27.402-2.33L37.707 46.13L49.09 98.512l21.262 14.91l52.164-30.953l-12.801-24.004Zm0 0\\\"/><path fill=\\\"url(#deviconWebstorm2)\\\" d=\\\"m99.07 39.559l10.645 18.906l12.8-13.348l-9.398-23.234Zm0 0\\\"/><path d=\\\"M27.43 27.43h73.14v73.14H27.43Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M36.547 86.746h27.43v4.574h-27.43Zm25.965-50.21L58.43 52.538l-4.668-16.004h-4.645L44.434 52.54l-4.07-16.004H33.96l7.84 27.442h5.144L51.43 48.09l4.437 15.887h5.207l7.828-27.442Zm7.535 23.526l3.57-4.277a12.625 12.625 0 0 0 8.219 3.34c2.437 0 3.973-.977 3.973-2.598v-.074c0-1.535-.95-2.316-5.547-3.496c-5.547-1.414-9.117-2.953-9.117-8.414v-.086c0-4.984 4.007-8.289 9.628-8.289a15.85 15.85 0 0 1 10.215 3.5l-3.144 4.559a12.877 12.877 0 0 0-7.156-2.707c-2.317 0-3.536 1.062-3.536 2.437v.086c0 1.805 1.22 2.437 5.938 3.66c5.582 1.461 8.73 3.461 8.73 8.262v.074c0 5.461-4.172 8.535-10.11 8.535a17.48 17.48 0 0 1-11.663-4.402\\\"/>\"\n\t\t},\n\t\t\"webstorm-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M23.977 51.57h3.316l2.926 9.559l3.172-9.598h2.664l3.164 9.598l2.922-9.559h3.246L40.57 65.793h-2.703l-3.187-9.242l-3.184 9.246h-2.7Zm20.054 8.774V60.3c0-3.078 2.196-5.625 5.34-5.625c3.61 0 5.262 2.804 5.262 5.867c0 .238-.02.523-.04.809h-7.519c.301 1.39 1.27 2.113 2.64 2.113c1.028 0 1.774-.32 2.61-1.11l1.754 1.555c-1.008 1.25-2.457 2.016-4.414 2.016c-3.234 0-5.633-2.278-5.633-5.582Zm7.617-.91c-.18-1.368-.988-2.297-2.277-2.297c-1.289 0-2.098.906-2.34 2.297Zm7.164 4.84v1.421H55.75v-14.73h3.063v5.465c.746-1.008 1.777-1.754 3.37-1.754c2.52 0 4.919 1.976 4.919 5.586v.039c0 3.61-2.36 5.586-4.918 5.586a4.158 4.158 0 0 1-3.371-1.614Zm5.215-3.973v-.04c0-1.792-1.207-2.984-2.64-2.984c-1.43 0-2.602 1.192-2.602 2.985v.039c0 1.804 1.184 2.988 2.61 2.988c1.421 0 2.64-1.172 2.64-2.988Zm3.188 3.328l1.836-2.2c1.27 1.048 2.61 1.716 4.215 1.716c1.27 0 2.035-.504 2.035-1.329v-.043c0-.785-.485-1.183-2.844-1.793c-2.84-.722-4.664-1.511-4.664-4.316v-.039c0-2.563 2.059-4.254 4.941-4.254a8.172 8.172 0 0 1 5.239 1.793l-1.61 2.34c-1.25-.867-2.48-1.39-3.672-1.39c-1.187 0-1.816.542-1.816 1.226v.043c0 .926.605 1.23 3.047 1.855c2.86.746 4.473 1.774 4.473 4.235v.039c0 2.8-2.133 4.375-5.18 4.375a8.98 8.98 0 0 1-6-2.258m12.52-1.008V57.5h-1.29v-2.61h1.29v-2.773H82.8v2.762h2.531v2.605H82.8v4.633c0 .711.3 1.047.988 1.047a3.15 3.15 0 0 0 1.512-.383v2.457c-.73.434-1.57.653-2.422.63c-1.875 0-3.145-.75-3.145-3.247Zm6.007-2.277V60.3c0-3.106 2.5-5.625 5.867-5.625c3.364 0 5.825 2.48 5.825 5.586v.039c0 3.105-2.5 5.625-5.868 5.625c-3.363 0-5.824-2.48-5.824-5.582Zm8.668 0V60.3c0-1.59-1.148-2.985-2.844-2.985c-1.754 0-2.804 1.352-2.804 2.946v.039c0 1.594 1.152 2.984 2.847 2.984c1.754.004 2.801-1.351 2.801-2.941Zm3.945-5.465h3.063v2.176c.625-1.492 1.633-2.457 3.45-2.371v3.199h-.165c-2.035 0-3.285 1.23-3.285 3.812v3.989h-3.063Zm7.602 0h3.063v1.535c.71-.906 1.632-1.73 3.183-1.73c1.422 0 2.48.62 3.047 1.71c.95-1.109 2.078-1.71 3.555-1.71c2.28 0 3.652 1.367 3.652 3.968v7.032h-3.07v-6.028c0-1.453-.645-2.199-1.797-2.199c-1.149 0-1.852.746-1.852 2.2v6.027h-3.066v-6.028c0-1.453-.645-2.199-1.793-2.199c-1.149 0-1.856.746-1.856 2.2v6.027h-3.066ZM5.332 51.547h14.223V65.77H5.332Zm0 0\\\"/><path fill=\\\"#fff\\\" d=\\\"M7.105 63.086h5.336v.887H7.105Zm5.051-9.766l-.797 3.11l-.906-3.11h-.902l-.91 3.11l-.793-3.11H6.605l1.524 5.336h1L10 55.57l.863 3.086h1.012l1.523-5.336Zm1.465 4.575l.695-.833a2.446 2.446 0 0 0 1.598.649c.473 0 .77-.188.77-.504v-.016c0-.296-.184-.449-1.079-.68c-1.078-.273-1.773-.574-1.773-1.632v-.016c0-.968.781-1.617 1.875-1.617a3.108 3.108 0 0 1 1.984.684l-.609.886a2.52 2.52 0 0 0-1.39-.535c-.454 0-.688.207-.688.473v.016c0 .351.234.472 1.152.71c1.086.282 1.7.672 1.7 1.606v.016c0 1.062-.813 1.656-1.97 1.656a3.392 3.392 0 0 1-2.265-.856\\\"/><path d=\\\"M25.246 75.71v.731h-.566v-5.367h.566v2.328a1.717 1.717 0 0 1 1.457-.843c.91 0 1.813.71 1.813 1.968v.016c0 1.242-.895 1.977-1.813 1.977a1.712 1.712 0 0 1-1.457-.81m2.692-1.16v-.015c0-.894-.618-1.469-1.34-1.469a1.423 1.423 0 0 0-1.375 1.461v.016a1.42 1.42 0 0 0 1.375 1.469c.734 0 1.34-.543 1.34-1.461Zm4.187-1.91h.602l-1.594 3.922c-.324.79-.692 1.07-1.266 1.07a1.709 1.709 0 0 1-.808-.187l.191-.449c.184.098.387.149.594.14c.34 0 .55-.179.781-.71l-1.727-3.793h.622l1.382 3.168Zm3.297 2.973l.418-.36c.316.477.64.735 1.183.735c.582 0 1.008-.418 1.008-1.234v-3.457h.586v3.437c.031.496-.14.985-.472 1.352a1.567 1.567 0 0 1-1.133.426a1.757 1.757 0 0 1-1.59-.899m4.238-1.062v-.016c0-1.094.77-1.976 1.824-1.976c1.121 0 1.77.898 1.77 2.007a1.44 1.44 0 0 1 0 .184h-3.02a1.325 1.325 0 0 0 1.336 1.285a1.56 1.56 0 0 0 1.2-.535l.351.313c-.383.468-.96.73-1.562.71a1.894 1.894 0 0 1-1.898-1.973Zm3.02-.223c-.059-.687-.453-1.293-1.211-1.293c-.664 0-1.16.555-1.235 1.293Zm1.625 1.106V73.14h-.528v-.5h.528v-1.149h.566v1.149h1.203v.5h-1.203v2.218a.564.564 0 0 0 .64.633c.192 0 .38-.047.552-.133v.473c-.211.11-.446.164-.684.164c-.613.012-1.074-.293-1.074-1.062Zm2.699-4.137h2.191c.489-.031.973.133 1.348.453c.215.219.332.516.328.824v.012a1.246 1.246 0 0 1-.816 1.187c.61.184 1.101.536 1.101 1.243v.015c0 .88-.742 1.403-1.867 1.403h-2.285Zm3.277 1.355c0-.504-.402-.836-1.14-.836h-1.563v1.774h1.524c.695 0 1.183-.317 1.183-.922Zm-1.078 1.45h-1.625v1.816h1.727c.777 0 1.261-.348 1.261-.918v-.016c.004-.554-.464-.882-1.363-.882m3.027-1.461h.567v.992c.117-.317.328-.586.61-.778c.277-.187.605-.289.94-.28v.609h-.042c-.832 0-1.508.597-1.508 1.742v1.515h-.567Zm2.57 2.695v-.012c0-.8.66-1.23 1.626-1.23c.394 0 .789.05 1.168.164v-.133c0-.684-.422-1.035-1.133-1.035a2.609 2.609 0 0 0-1.152.277l-.172-.472c.43-.211.902-.32 1.383-.32c.449-.032.89.12 1.226.421c.277.3.418.703.39 1.11v2.324h-.534v-.575c-.329.426-.84.672-1.375.653c-.715.012-1.426-.39-1.426-1.172Zm2.802-.293v-.375a4.006 4.006 0 0 0-1.118-.164c-.71 0-1.113.308-1.113.785v.02c0 .472.441.754.95.754c.706.011 1.28-.418 1.28-1.02Zm1.675-3.86h.649v.637h-.649Zm.04 1.458h.562v3.793h-.563Zm1.785 0h.57v.66a1.432 1.432 0 0 1 1.3-.742c.919 0 1.454.617 1.454 1.523v2.371h-.567v-2.219c0-.71-.379-1.148-1.05-1.148a1.116 1.116 0 0 0-1.137 1.184v2.175h-.57Zm4.144 3.312l.285-.402c.375.297.836.46 1.317.472c.457 0 .785-.234.785-.601v-.016c0-.383-.445-.527-.945-.668c-.598-.168-1.258-.375-1.258-1.074v-.016c0-.652.543-1.085 1.293-1.085c.488.007.96.152 1.367.417l-.258.426a2.174 2.174 0 0 0-1.121-.367c-.453 0-.738.238-.738.55v.016c0 .36.472.5.976.653c.59.18 1.223.406 1.223 1.09v.03c0 .712-.598 1.142-1.352 1.142a2.61 2.61 0 0 1-1.574-.567m0 0\\\"/>\"\n\t\t},\n\t\t\"windows11\": {\n\t\t\t\"body\": \"<path fill=\\\"#0078d4\\\" d=\\\"M67.328 67.331h60.669V128H67.328zm-67.325 0h60.669V128H.003zM67.328 0h60.669v60.669H67.328zM.003 0h60.669v60.669H.003z\\\"/>\"\n\t\t},\n\t\t\"windows11-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#0078d4\\\" d=\\\"M128 92.399v19.015h-3.176V96.246s-1.09 1.006-3.885 1.735v-2.707c4.155-1.536 5.646-2.875 5.646-2.875zm-9.378 0v19.015h-3.176V96.246s-1.09 1.006-3.884 1.735v-2.707c4.154-1.536 5.645-2.875 5.645-2.875zm-12.217 15.308c0 2.965-2.688 4.12-5.383 4.12c-1.755 0-3.502-.676-3.502-.676v-3.153s1.519 1.323 3.64 1.34c1.455 0 2.11-.459 2.11-1.332c.037-.7-.39-1.087-.9-1.377c-.35-.21-.898-.469-1.643-.775c-.876-.377-1.53-.741-1.959-1.091a3.387 3.387 0 0 1-.946-1.236a4.03 4.03 0 0 1-.35-1.624c0-2.394 1.996-4.085 5.187-4.085c2.11 0 3.023.517 3.023.517v2.995s-1.499-1.036-3.056-1.045c-1.116 0-1.96.406-1.975 1.326c-.008 1.185 1.444 1.763 2.31 2.113c1.262.508 2.186 1.051 2.703 1.673c.517.622.741 1.249.741 2.31m-13.56 3.707H89.42l-2.619-9.637l-2.81 9.636h-3.324L76.793 98.14h3.25l2.53 10.312L85.53 98.14h3.05l2.635 10.285l2.466-10.285h2.98zm-16.66-6.717c0 4.612-2.757 7.11-6.897 7.11c-4.501 0-6.808-2.694-6.808-6.82c0-4.722 2.764-7.178 7.137-7.178c4.006 0 6.567 2.561 6.567 6.888zm-3.234.105c0-2.052-.728-4.333-3.505-4.333c-2.664 0-3.699 1.983-3.699 4.412c0 2.64 1.243 4.318 3.68 4.318c2.61 0 3.505-2.003 3.524-4.397m-15.808 6.612v-1.715h-.053c-.964 1.622-2.931 1.995-4.303 1.995c-4.077 0-5.573-3.167-5.573-6.537c0-2.235.556-4.022 1.669-5.363c1.122-1.35 2.62-1.934 4.495-1.934c2.92 0 3.712 1.624 3.712 1.624h.053V91.78h3.15v19.635zm.026-7.588c0-1.608-1.034-3.436-3.215-3.436c-2.496 0-3.466 2.172-3.466 4.675c0 2.185.916 4.169 3.292 4.202c2.33 0 3.37-2.221 3.39-4.057zm-15.274 7.588V104c0-1.942-.603-3.618-2.56-3.618c-1.946 0-3.18 1.753-3.18 3.526v7.505h-3.037V98.098h3.037v1.884h.052c1.008-1.56 2.463-2.108 4.364-2.108c1.429 0 2.533.351 3.313 1.263c.788.91 1.135 2.295 1.135 4.153v8.123zM30.308 94.289c0 .499-.184.915-.552 1.248c-.36.333-.798.5-1.314.5c-.517 0-.956-.167-1.315-.5a1.632 1.632 0 0 1-.539-1.248c0-.509.18-.934.54-1.275a1.866 1.866 0 0 1 1.314-.513c.534 0 .977.175 1.327.526c.36.35.539.77.539 1.262m-3.465 17.124V98.098h3.105v13.315zm-6.454 0h-3.83l-3.734-14.215l-3.775 14.215H5.135L.001 92.937h3.473l3.703 14.697l4.042-14.697h3.509l3.8 14.784l3.516-14.784h3.354zM65.56 47.731H94v28.44H65.56zm-31.559 0h28.44v28.44H34zm31.56-31.56h28.438v28.438H65.56zm-31.56 0h28.44v28.438H34z\\\"/>\"\n\t\t},\n\t\t\"windows8\": {\n\t\t\t\"body\": \"<path fill=\\\"#00ADEF\\\" d=\\\"m126 1.637l-67 9.834v49.831l67-.534zM1.647 66.709l.003 42.404l50.791 6.983l-.04-49.057zm56.82.68l.094 49.465l67.376 9.509l.016-58.863zM1.61 19.297l.047 42.383l50.791-.289l-.023-49.016z\\\"/>\"\n\t\t},\n\t\t\"windows8-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#00ADEF\\\" d=\\\"m.5 55.235l9.869-1.343l.004 9.519l-9.863.055zm9.863 9.27l.008 9.527l-9.863-1.357v-8.232zm1.196-10.789l13.082-1.91v11.481l-13.082.104zm13.088 10.88l-.006 11.43l-13.082-1.847l-.018-9.605zm26.535-7.879L47.14 71.193l-2.399-.023l-3.152-11.419c.025-.596.072-.165.072-.165l-3.186 11.572l-2.403.025l-4.169-14.46l2.249-.006l3.202 12.061l-.064-.037l3.366-12.024l2.157.007l3.2 12.263l-.055-.175l3.024-12.082zm2.01 1.718c-.36 0-.661-.12-.907-.358a1.201 1.201 0 0 1-.369-.899c0-.354.124-.655.371-.898c.248-.244.551-.366.905-.366c.357 0 .662.123.916.367a1.2 1.2 0 0 1 .378.897c0 .344-.126.639-.376.885a1.258 1.258 0 0 1-.918.372m.894 12.761l-1.953-.014l-.041-10.323l2.006-.012zm11.222.012H63.32v-5.759c0-2.031-.648-3.188-2.19-3.172c-.742 0-1.43.301-1.924.871c-.607.698-.72 1.08-.726 2.301l-.025 5.759l-2.014-.018l.008-10.321l1.98-.008l.016 2.344l-.287-.268c.759-1.329 1.783-2.34 3.597-2.34c1.182 0 2.054.321 2.683 1.086c.625.765.854 1.949.854 3.349zm11.607.169H74.84v-1.729h.317c-.754 1.312-1.965 1.967-3.629 1.967c-1.354 0-2.431-.478-3.231-1.43c-.8-.954-1.201-2.238-1.201-3.856c0-1.727.442-3.122 1.327-4.178c.883-1.056 2.067-1.585 3.554-1.585c1.485 0 2.545.551 3.181 1.65h-.317v-6.295h2.075v15.456zm-2.075-4.801v-1.498c0-.767-.251-1.416-.755-1.943c-.503-.529-1.137-.792-1.899-.792c-.917 0-1.643.34-2.176 1.022c-.532.683-.8 1.644-.8 2.885c0 1.129.255 2.012.763 2.642c.51.633 1.186.947 2.033.947c.836 0 1.517-.305 2.044-.916c.527-.609.79-1.393.79-2.347m8.831 4.941c-1.571 0-2.824-.491-3.761-1.477c-.938-.987-1.406-2.283-1.406-3.893c0-1.744.488-3.115 1.462-4.112c.975-.995 2.289-1.493 3.944-1.493c1.584 0 2.822.483 3.712 1.455c.891.97 1.335 2.301 1.335 3.992c0 1.66-.478 2.995-1.436 4.008c-.957 1.013-2.24 1.52-3.85 1.52m.12-9.21c-.974 0-1.747.331-2.317.993c-.57.661-.855 1.591-.855 2.789c0 1.152.287 2.051.863 2.698c.574.645 1.346.966 2.31.966c.977 0 1.732-.314 2.261-.948c.529-.631.793-1.55.793-2.755c0-1.216-.266-2.144-.795-2.783c-.529-.641-1.283-.96-2.26-.96m20.549-1.477l-3.038 10.368l-2.146.014l-2.181-8.026l.01.012l-2.432 8.008h-2.016L89.338 60.83h2.147l2.204 8.427l-.057.085l2.462-8.512h1.873l2.371 8.739l-.068-.259l2.018-8.48zm.74 10.095v-2.067c.965.655 1.897.981 2.802.981c1.14 0 1.71-.409 1.71-1.227c0-.234-.048-.431-.142-.592a1.51 1.51 0 0 0-.392-.439a3.132 3.132 0 0 0-.638-.377l-.772-.349a10.042 10.042 0 0 1-1.094-.561a3.387 3.387 0 0 1-.799-.65a2.498 2.498 0 0 1-.493-.838a3.326 3.326 0 0 1-.167-1.098c0-.515.104-.967.313-1.359c.208-.393.483-.722.83-.987a3.635 3.635 0 0 1 1.176-.596a4.56 4.56 0 0 1 1.342-.201c.81 0 1.577.179 2.299.537v1.973c-.842-.488-1.674-.733-2.494-.733c-.248 0-.472.031-.666.094a1.507 1.507 0 0 0-.5.26a1.082 1.082 0 0 0-.419.871c0 .238.037.431.108.582c.072.152.183.287.33.413c.149.126.335.242.559.348l.783.358c.429.185.802.37 1.121.553c.32.183.6.397.839.642c.24.243.425.528.557.854c.132.324.197.704.197 1.139c0 .532-.106 1.001-.321 1.403a2.937 2.937 0 0 1-.845.993a3.59 3.59 0 0 1-1.198.577a5.255 5.255 0 0 1-1.408.187c-.97-.001-1.841-.231-2.618-.691m12.766-3.723a4.225 4.225 0 0 1 .72-2.305c.231-.346.521-.663.865-.948c.346-.287.694-.462 1.046-.531c-.578-.226-1.058-.622-1.441-1.19a3.317 3.317 0 0 1-.572-1.896a3.627 3.627 0 0 1 1.202-2.741c.377-.342.823-.61 1.347-.803a4.785 4.785 0 0 1 1.674-.291a4.76 4.76 0 0 1 1.682.295c.521.198.972.468 1.347.808a3.658 3.658 0 0 1 1.194 2.732c0 .694-.191 1.325-.574 1.894c-.386.568-.857.966-1.42 1.19c.346.069.688.246 1.026.529a4.423 4.423 0 0 1 1.398 2.067c.124.397.185.795.185 1.19c0 .645-.118 1.238-.354 1.781a4.007 4.007 0 0 1-1.002 1.398a4.605 4.605 0 0 1-1.527.903a5.76 5.76 0 0 1-1.955.32c-.71 0-1.357-.108-1.943-.32a4.709 4.709 0 0 1-1.53-.903a4.062 4.062 0 0 1-1.009-1.395a4.344 4.344 0 0 1-.359-1.784m2.212-.137c0 .427.063.806.189 1.137c.126.332.303.611.528.844c.229.229.504.407.826.531c.32.123.687.185 1.094.185a2.9 2.9 0 0 0 1.065-.191a2.44 2.44 0 0 0 .828-.534a2.46 2.46 0 0 0 .551-.85c.134-.337.203-.71.203-1.121c0-.372-.065-.718-.193-1.043a2.524 2.524 0 0 0-1.37-1.435a2.687 2.687 0 0 0-1.084-.21c-.376 0-.722.067-1.044.198a2.504 2.504 0 0 0-.832.549a2.563 2.563 0 0 0-.557.848a2.8 2.8 0 0 0-.204 1.092m.508-6.603c0 .317.055.608.165.868c.112.259.268.49.464.688c.197.199.425.352.677.46c.254.11.529.163.824.163c.293 0 .568-.055.826-.169c.26-.112.483-.268.677-.462a2.31 2.31 0 0 0 .464-.692c.114-.265.173-.55.173-.855c0-.32-.057-.611-.167-.877a2.13 2.13 0 0 0-1.973-1.313c-.316 0-.605.057-.865.171a2.036 2.036 0 0 0-1.11 1.152a2.338 2.338 0 0 0-.155.866\\\"/>\"\n\t\t},\n\t\t\"woocommerce\": {\n\t\t\t\"body\": \"<path fill=\\\"#7f54b3\\\" d=\\\"M116.3 89.1H11.7C5.2 89.1 0 83.9 0 77.4v-40C0 31 5.2 25.8 11.7 25.8h104.7c6.4 0 11.7 5.2 11.7 11.7v40c-.1 6.4-5.3 11.6-11.8 11.6\\\"/><path fill=\\\"#FFF\\\" d=\\\"M13.8 76.7s2.8 11.8 8.5 3.9s11.2-20.3 11.2-20.3s.4-3.1 2 3.7S44 80 44 80s6.3 7.9 8.9-.4c-1-11 2.8-31 6.7-40.6c1.6-8.5-7.3-6.1-8.1-4.1s-6.3 14.8-6.7 28.2c0 0-4.7-12.8-5.1-17.4c-.4-4.7-5.3-5.9-8.1-1.4S20.3 66.2 20.3 66.2l-5.5-28.4s-5.5-7.3-8.7 1.6c0 0 5.7 34.9 7.7 37.3m73.2-31c-8.5-14.2-21.1-3.4-21.1-3.4s-9.6 11.1-5.3 26.2c6.9 14.9 16.6 8.3 19.2 7.1c2.7-1.3 14.1-14.3 7.2-29.9m-6.5 12.5c0 5.9-4.9 11.4-8.9 10.2c-2.2-1.3-3.6-4.8-3.6-10.8c2-9.7 6.4-11 8.7-10.8c4.3 2.3 4.1 7.4 3.8 11.4m38.4-12.5c-8.5-14.2-21.1-3.4-21.1-3.4s-9.6 11.1-5.3 26.2c6.9 14.9 16.6 8.3 19.2 7.1c2.6-1.3 14.1-14.3 7.2-29.9m-6.5 12.5c0 5.9-4.9 11.4-8.9 10.2c-2.2-1.3-3.6-4.8-3.6-10.8c2-9.7 6.4-11 8.7-10.8c4.2 2.3 4 7.4 3.8 11.4\\\"/><path fill=\\\"#7f54b3\\\" d=\\\"m61.3 89.1l22.3 13.1l-4.7-13.1l-12.8-3.6z\\\"/>\"\n\t\t},\n\t\t\"woocommerce-wordmark\": {\n\t\t\t\"body\": \"<path d=\\\"M12.1 102.4H9.8c-2.9 0-5.2-2.3-5.2-5.2c0-3 2.4-5.4 5.4-5.4h2.1v-4.2H9.3c-5.1 0-9.3 4.2-9.3 9.3c0 5.7 4.6 10.3 10.3 10.3h1.8zm103.8 0h-2.3c-2.9 0-5.2-2.3-5.2-5.2c0-3 2.4-5.4 5.4-5.4h2.1v-4.2H113c-5.1 0-9.3 4.2-9.3 9.3c0 5.7 4.6 10.3 10.3 10.3h1.8v-4.8zM22.1 87.6c-4.5 0-8.1 4.4-8.1 9.8s3.6 9.8 8.1 9.8s8.1-4.4 8.1-9.8s-3.6-9.8-8.1-9.8m0 15.9c-2 0-3.5-2.7-3.5-6s1.6-6 3.5-6c2 0 3.5 2.7 3.5 6s-1.6 6-3.5 6m8.1 3.7l3.1-19.6h6.5l1.9 9.8l2.5-9.8h6l2.9 19.6h-5l-1.6-13.3l-2.7 13.3h-3.4l-3.7-13.1l-1.7 13.1zm24 0l3.1-19.6h6.5l1.8 9.8l2.5-9.8h6.1l2.9 19.6h-5l-1.7-13.3l-2.7 13.3h-3.3l-3.8-13.1l-1.6 13.1zm23.7 0V87.6h10.2v3.8H83v4.2h4.5v3.6h-5.1v3.8h5.7v4.2zm39.9 0V87.6H128v3.8h-5.1v4.2h4.5v3.6h-5.1v3.8h5.7v4.2z\\\"/><path d=\\\"M100 98.1c1.6 0 3-1.3 3-3v-1.8c0-3.2-2.6-5.7-5.7-5.7h-7.4v19.6h4.6V98l5 9.2h5.1zm-3.9-1.7h-1.7v-4.8h1.9c1.3 0 2.3 1 2.3 2.3c-.1 1.4-1.2 2.5-2.5 2.5\\\"/><path fill=\\\"#7f54b3\\\" d=\\\"M104 71.5H24.3c-6.4 0-11.7-5.2-11.7-11.7V32.4c0-6.4 5.2-11.7 11.7-11.7H104c6.4 0 11.7 5.2 11.7 11.7v27.4c0 6.5-5.3 11.7-11.7 11.7\\\"/><path fill=\\\"#FFF\\\" d=\\\"M23.8 61.6s2.3 9.4 6.9 3.1c4.6-6.3 9-16.2 9-16.2s.3-2.5 1.6 3s6.9 12.8 6.9 12.8s5.1 6.3 7.2-.3c-.8-8.8 2.3-24.8 5.4-32.5c1.3-6.8-5.9-4.9-6.5-3.2S49.1 40 48.8 50.7c0 0-3.8-10.2-4.1-14c-.3-3.7-4.2-4.7-6.5-1.1S29 53.1 29 53.1l-4.4-22.7s-4.4-5.8-7 1.3c0 0 4.6 27.9 6.2 29.9m58.9-24.9c-6.9-11.4-17-2.8-17-2.8s-7.7 8.9-4.2 21c5.6 12 13.3 6.6 15.4 5.7c2.1-1 11.3-11.4 5.8-23.9m-5.2 10c0 4.8-3.9 9.2-7.2 8.2c-1.8-1-2.9-3.9-2.9-8.6c1.6-7.8 5.2-8.8 7-8.6c3.4 1.8 3.2 5.9 3.1 9m30.8-10c-6.9-11.4-17-2.8-17-2.8s-7.7 8.9-4.2 21c5.6 12 13.3 6.6 15.4 5.7c2.2-1 11.4-11.4 5.8-23.9m-5.2 10c0 4.8-3.9 9.2-7.2 8.2c-1.8-1-2.9-3.9-2.9-8.6c1.6-7.8 5.2-8.8 7-8.6c3.4 1.8 3.3 5.9 3.1 9\\\"/><path fill=\\\"#7f54b3\\\" d=\\\"M62 71.5L79.9 82l-3.7-10.5l-10.3-2.9z\\\"/>\"\n\t\t},\n\t\t\"wordpress\": {\n\t\t\t\"body\": \"<path fill=\\\"#337BA2\\\" fill-rule=\\\"evenodd\\\" d=\\\"M43.257 121.233c.079 1.018.029 2.071.299 3.037c.115.408.9.629 1.381.935l.625.401c-.235.137-.469.389-.707.392a165.82 165.82 0 0 1-5.598.002c-.248-.004-.491-.237-.735-.364c.198-.143.388-.391.597-.408c1.251-.105 1.632-.865 1.626-1.989c-.011-2.066-.006-4.134.003-6.202c.005-1.152-.322-1.993-1.679-2.045c-.188-.008-.366-.296-.548-.453c.182-.111.366-.321.546-.318c2.39.029 4.79-.024 7.167.177c1.873.159 3.107 1.455 3.234 2.949c.138 1.639-.703 2.764-2.605 3.486l-.729.272c1.225 1.158 2.31 2.29 3.516 3.272c.535.437 1.293.697 1.989.817c1.393.238 2.149-.361 2.187-1.742c.061-2.229.032-4.461.011-6.691c-.01-1.022-.449-1.697-1.589-1.753c-.215-.01-.42-.253-.629-.388c.239-.14.478-.4.715-.399c2.432.02 4.875-.055 7.291.161c4.123.366 6.42 3.797 5.214 7.588c-.735 2.312-2.495 3.619-4.759 3.773c-3.958.27-7.938.215-11.909.243c-.316.002-.706-.341-.944-.623c-.914-1.085-1.776-2.213-2.668-3.316c-.27-.334-.571-.641-.858-.961zm13.119-5.869c0 2.785-.034 5.484.036 8.18c.011.414.41 1.039.78 1.187c1.457.581 3.812-.368 4.47-1.842c.881-1.973.988-4.05-.203-5.922c-1.175-1.847-3.132-1.663-5.083-1.603m-13.021 4.561c1.262.032 2.653.313 3.192-1.073c.302-.777.234-1.982-.183-2.69c-.633-1.076-1.906-.888-3.01-.752z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#515151\\\" fill-rule=\\\"evenodd\\\" d=\\\"M96.77 119.35c.834-.18 1.661-.154 2.198-.537c.451-.32.563-1.116.908-1.886c.199.357.386.539.39.724c.025 1.38.03 2.761 0 4.141c-.005.216-.226.427-.347.641c-.136-.114-.339-.2-.399-.346c-.733-1.771-.729-1.772-2.843-1.583c.309 1.382-.763 3.149.89 4.058c.843.463 2.203.371 3.189.068c.841-.256 1.48-1.171 2.212-1.798v3.096c-.405.036-.712.086-1.021.086c-4.141.006-8.282-.012-12.422.019c-.714.006-1.197-.174-1.633-.773c-.857-1.182-1.799-2.302-2.725-3.432c-.232-.283-.534-.508-1.021-.962c0 1.154-.042 1.981.012 2.802c.056.858.469 1.427 1.418 1.534c.279.032.529.325.792.5c-.271.105-.54.298-.812.303c-1.827.026-3.653.025-5.48.001c-.28-.004-.558-.173-.866-.275l.156-.303c2.244-.906 2.25-.906 2.248-3.508a343.88 343.88 0 0 0-.039-4.87c-.017-1.121-.321-2.01-1.689-2.058c-.197-.007-.384-.287-.577-.441c.226-.113.453-.325.678-.323c2.311.022 4.635-.054 6.93.16c2.512.234 4.065 2.329 3.132 4.257c-.51 1.053-1.688 1.783-2.725 2.818c.984.9 2.117 2.194 3.491 3.135c1.941 1.33 3.268.571 3.317-1.748c.041-1.947-.007-3.896-.015-5.845c-.004-1.155-.361-1.994-1.717-2.013c-.185-.003-.367-.2-.586-.33c.705-.52 7.499-.709 10.448-.332l.19 3.214l-.333.136c-.686-.717-.601-2.199-2.02-2.204c-1.084-.005-2.168-.119-3.332-.189c.003 1.356.003 2.59.003 4.063m-12.647.566c2.61.105 3.646-.603 3.584-2.364c-.061-1.698-1.195-2.383-3.584-2.121z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3179A1\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.555 120.682c.996-2.947 1.979-5.897 3.003-8.834c.141-.404.486-.737.737-1.104c.248.378.587.725.729 1.14c.931 2.719 1.817 5.451 2.722 8.179c.072.219.165.43.375.969c.928-2.813 1.787-5.308 2.564-7.829c.27-.873-.081-1.504-1.097-1.618c-.335-.039-.66-.17-1.051-.274c.676-.749 5.957-.804 6.827-.108c-.236.112-.424.271-.618.279c-1.65.064-2.414 1.097-2.884 2.521c-1.258 3.81-2.54 7.611-3.817 11.415c-.133.395-.3.778-.452 1.166l-.421.03l-3.579-10.821l-3.619 10.788l-.354.022c-.185-.401-.412-.79-.547-1.207c-1.167-3.581-2.319-7.167-3.474-10.751c-.495-1.539-.99-3.069-3.012-3.167c-.132-.006-.253-.229-.38-.35c.158-.13.316-.373.476-.375c2.272-.024 4.546-.024 6.818.001c.158.001.313.247.47.379c-.169.126-.319.309-.508.367c-1.82.55-1.951.761-1.378 2.526c.723 2.233 1.468 4.457 2.204 6.686z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#4D4D4D\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.484 111.25c.279-.241.435-.494.587-.491c2.957.044 5.938-.093 8.864.247c2.768.321 4.301 2.919 3.466 5.359c-.748 2.189-2.593 2.874-4.68 3.064c-.881.081-1.776.013-2.824.013c.093 1.453.14 2.78.275 4.098c.113 1.114.863 1.56 1.923 1.65c.239.021.457.288.684.442c-.25.126-.498.36-.75.363c-2.191.029-4.384.028-6.575.002c-.263-.003-.523-.219-.784-.336c.218-.165.432-.463.656-.472c1.463-.056 2.012-.964 2.03-2.235c.044-3.081.04-6.162.002-9.243c-.016-1.31-.649-2.148-2.072-2.206c-.212-.008-.422-.13-.802-.255m5.523 6.706c2.682.278 3.703.022 4.349-1.167c.648-1.192.65-2.439-.116-3.566c-1.059-1.559-2.679-1.098-4.233-1.154z\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#3279A1\\\" fill-rule=\\\"evenodd\\\" d=\\\"M31.076 126.463c-2.396-.104-4.348-.856-5.794-2.647c-2.053-2.542-1.741-5.994.711-8.192c2.645-2.37 7.018-2.472 9.733-.171c1.838 1.559 2.709 3.533 2.111 5.953c-.675 2.73-2.601 4.192-5.218 4.856c-.546.137-1.122.149-1.543.201m4.544-6.249l-.224-.147c-.149-.709-.236-1.439-.458-2.125c-.642-1.971-1.986-2.945-3.963-2.949c-1.97-.004-3.295.975-3.939 2.967c-.572 1.771-.498 3.526.383 5.18c1.315 2.468 4.829 2.931 6.549.736c.802-1.023 1.116-2.43 1.652-3.662\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#505050\\\" fill-rule=\\\"evenodd\\\" d=\\\"m122.748 114.317l.893-.782v4.376l-.259.195c-.209-.295-.498-.562-.615-.891c-.591-1.655-1.865-2.553-3.319-2.117c-.499.149-1.099.649-1.232 1.11c-.109.376.285 1.12.671 1.374c1.008.664 2.131 1.156 3.214 1.703c2.356 1.192 3.198 2.845 2.401 4.736c-.809 1.921-3.263 2.915-5.462 2.173c-.606-.206-1.167-.544-1.728-.811l-.857 1.126l-.379-.116c0-1.477-.009-2.954.015-4.431c.002-.143.215-.282.33-.423c.18.218.448.41.527.66c.523 1.656 1.53 2.756 3.325 2.94c1.023.105 2.023-.021 2.378-1.187c.324-1.067-.42-1.669-1.219-2.124c-.879-.5-1.808-.909-2.708-1.37c-.395-.203-.798-.404-1.153-.665c-1.257-.927-1.753-2.263-1.381-3.618c.332-1.211 1.523-2.237 2.997-2.28c1.091-.031 2.195.25 3.561.422m-16.269 11.027c-.166.33-.258.607-.429.821c-.103.128-.356.25-.49.208c-.127-.04-.262-.294-.265-.456c-.021-1.299-.021-2.599.001-3.896c.002-.159.178-.314.274-.471c.184.117.446.193.537.362c.169.314.208.696.356 1.024c.668 1.482 2.021 2.409 3.573 2.184c.649-.093 1.45-.586 1.772-1.138c.434-.741-.086-1.504-.814-1.925c-.979-.566-1.993-1.075-3.009-1.571c-2.297-1.121-3.266-2.972-2.443-4.719c.818-1.737 3.33-2.46 5.429-1.556c.256.11.499.25.7.354l1.078-.886c.113.317.185.426.186.535c.008 1.216.005 2.431.005 3.646l-.317.212c-.211-.27-.504-.509-.619-.814c-.573-1.532-1.48-2.381-2.81-2.219c-.624.075-1.419.504-1.726 1.018c-.45.755.2 1.361.885 1.729c.963.519 1.949.992 2.926 1.483c2.418 1.213 3.269 2.898 2.434 4.824c-.813 1.876-3.346 2.847-5.517 2.077c-.564-.199-1.087-.52-1.717-.826\\\" clip-rule=\\\"evenodd\\\"/><path fill=\\\"#494949\\\" fill-rule=\\\"evenodd\\\" d=\\\"M65.261 1.395C38.48.917 16.103 22.648 16.096 49c-.008 27.11 21.338 48.739 48.077 48.699c26.49-.039 47.932-21.587 47.932-48.167C112.104 23.384 90.76 1.85 65.261 1.395m-1.148 93.887c-25.326.006-45.694-20.529-45.693-46.067c.001-24.88 20.685-45.48 45.674-45.489c25.432-.008 45.695 20.654 45.687 46.587c-.008 24.483-20.807 44.964-45.668 44.969m24.395-59.347c-.994-1.638-2.216-3.227-2.778-5.013c-.64-2.032-1.171-4.345-.832-6.382c.576-3.454 3.225-5.169 6.812-5.497C72.086.83 41.248 7.349 29.885 27.138c4.374-.203 8.55-.468 12.729-.524c.791-.011 2.1.657 2.286 1.277c.416 1.385-.748 1.868-1.986 1.963c-1.301.102-2.604.199-4.115.314l14.935 44.494c.359-.587.507-.752.572-.945c2.762-8.255 5.54-16.505 8.232-24.784c.246-.755.124-1.755-.146-2.531c-1.424-4.111-3.13-8.133-4.379-12.294c-.855-2.849-1.988-4.692-5.355-4.362c-.574.056-1.273-1.178-1.916-1.816c.777-.463 1.548-1.316 2.332-1.328a659.24 659.24 0 0 1 20.572.006c.786.013 1.557.889 2.335 1.364c-.681.622-1.267 1.554-2.063 1.794c-1.276.385-2.691.312-4.218.448l14.953 44.484c2.266-7.524 4.374-14.434 6.422-21.36c1.83-6.182.74-11.957-2.567-17.403M52.719 88.149c-.092.267-.097.563-.168 1.007c8.458 2.344 16.75 2.175 25.24-.685l-12.968-35.52c-4.151 12.064-8.131 23.63-12.104 35.198m-6.535-1.606L26.646 32.947c-8.814 17.217-2.109 43.486 19.538 53.596m54.452-55.403c-.27 2.994-.082 6.327-.941 9.362c-2.023 7.152-4.496 14.181-6.877 21.229c-2.588 7.66-5.28 15.286-7.927 22.927c12.437-7.372 19.271-18.253 20.359-32.555c.62-8.14-2.188-19.412-4.614-20.963\\\" clip-rule=\\\"evenodd\\\"/>\"\n\t\t},\n\t\t\"xamarin\": {\n\t\t\t\"body\": \"<path fill=\\\"#3498DB\\\" d=\\\"M37.8 9c-3.4 0-6.6 1.9-8.3 4.8L3.2 59.2c-1.7 3-1.7 6.6 0 9.6l26.2 45.4c1.8 2.9 4.9 4.8 8.3 4.8h52.4c3.4 0 6.6-1.9 8.3-4.8l26.2-45.4c1.7-3 1.7-6.6 0-9.6L98.5 13.8C96.8 10.9 93.6 9 90.2 9zm.5 26.6h9.3c.4 0 .8.2 1 .6l15.3 27.3c.1.1.1.3.1.4c0-.2.1-.3.1-.4l15.3-27.3c.2-.4.6-.6 1-.6h9c.7.1 1.2.7 1.1 1.4c0 .1 0 .2-.1.4L75.6 64l15 26.7c.3.6 0 1.4-.6 1.6c-.1.1-.3.1-.4.1h-9.1c-.4 0-.8-.2-1-.6L64.1 64.5c-.1-.1-.1-.3-.1-.4c0 .2-.1.3-.1.4L48.5 91.8c-.2.4-.6.6-1 .6h-9c-.7-.1-1.2-.7-1.1-1.3c0-.1.1-.3.1-.4l15-26.7l-15-26.7c-.3-.6 0-1.3.6-1.6c0-.1.1-.1.2-.1\\\"/>\"\n\t\t},\n\t\t\"xamarin-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#3498DB\\\" d=\\\"m51.7 72l-3.2-6.2l-3.3 6.2h-3.5l5-7.9l-4.5-7.9h3.6l2.9 6l3.2-6h3.3L50.5 64l4.7 8zm11.4 0v-1.7c-.9 1.4-2.1 2-3.7 2c-1.2 0-2.2-.3-2.9-1c-.7-.7-1.1-1.6-1.1-2.7c0-2.4 1.4-3.8 4.1-4.1l3.6-.5c0-1.7-.8-2.6-2.4-2.6c-1.5 0-2.9.5-4.1 1.4v-2.5c.5-.3 1.1-.5 2-.8c.9-.2 1.7-.3 2.4-.3c3.2 0 4.8 1.6 4.8 4.9V72zm-2.6-5.7c-.8.1-1.4.3-1.8.6c-.3.3-.5.8-.5 1.4c0 .5.2.9.6 1.3c.4.3.9.5 1.5.5c.8 0 1.5-.3 2.1-.9c.5-.6.8-1.3.8-2.2v-1.1zM83.9 72v-7.1c0-1.2-.2-2-.5-2.6c-.4-.6-1-.9-1.9-.9c-.7 0-1.4.3-1.9 1s-.8 1.5-.8 2.5v7H76v-7.3c0-2.1-.8-3.2-2.5-3.2c-.8 0-1.4.3-1.9 1c-.5.6-.7 1.5-.7 2.5v7h-2.8V59.5h2.8v1.9c.9-1.5 2.2-2.2 4-2.2c.8 0 1.6.2 2.2.7c.6.4 1.1 1 1.4 1.8c1-1.6 2.4-2.5 4.2-2.5c2.7 0 4.1 1.7 4.1 5.1V72zm12.2 0v-1.7c-.9 1.4-2.1 2-3.7 2c-1.2 0-2.2-.3-2.9-1c-.7-.7-1.1-1.6-1.1-2.7c0-2.4 1.4-3.8 4.1-4.1l3.6-.5c0-1.7-.8-2.6-2.4-2.6c-1.5 0-2.9.5-4.1 1.4v-2.5c.5-.3 1.1-.5 2-.8c.9-.2 1.7-.3 2.4-.3c3.2 0 4.8 1.6 4.8 4.9V72zm-2.7-5.7c-.8.1-1.4.3-1.8.6c-.3.3-.5.8-.5 1.4c0 .5.2.9.6 1.3c.4.3.9.5 1.5.5c.8 0 1.5-.3 2.1-.9c.5-.6.8-1.3.8-2.2v-1.1zm14.9-4.1c-.5-.3-1-.4-1.6-.4c-.8 0-1.5.4-2 1.1c-.5.7-.8 1.6-.8 2.7V72h-2.8V59.5h2.8v2.4c.6-1.8 1.7-2.7 3.2-2.7c.5 0 .9.1 1.1.2zm2.8-5.5c-.5 0-.9-.2-1.2-.5c-.3-.3-.5-.7-.5-1.2s.2-.9.5-1.2c.3-.3.7-.5 1.2-.5s.9.2 1.2.5c.3.3.5.7.5 1.2s-.2.8-.5 1.2c-.3.3-.7.5-1.2.5M109.7 72V59.5h2.8V72zm13.5 0v-7c0-2.3-.8-3.5-2.5-3.5c-.8 0-1.5.3-2.1 1c-.6.6-.8 1.4-.8 2.4V72H115V59.5h2.8v2c.9-1.5 2.3-2.3 4.1-2.3c2.8 0 4.2 1.7 4.2 5.1V72zM11.1 49.9c-.9 0-1.7.5-2.1 1.2L2.3 62.8c-.4.7-.4 1.7 0 2.5L9 76.9c.4.7 1.3 1.2 2.1 1.2h13.4c.9 0 1.7-.5 2.1-1.2l6.7-11.7c.4-.7.4-1.7 0-2.5L26.6 51c-.4-.7-1.3-1.2-2.1-1.2H11.1zm.2 6.8h2.4c.1 0 .2.1.3.2l3.9 7l3.9-7c.1-.1.2-.2.3-.2h2.3c.2 0 .4.3.3.4L20.8 64l3.8 6.9c.1.2-.1.5-.3.5H22c-.1 0-.2-.1-.3-.2l-3.9-7v-.1v.1l-3.9 7c0 .1-.1.2-.3.2h-2.3c-.2 0-.4-.3-.3-.5l3.8-6.9l-3.8-6.9c0-.1.1-.4.3-.4\\\"/>\"\n\t\t},\n\t\t\"xcode\": {\n\t\t\t\"body\": \"<linearGradient id=\\\"deviconXcode0\\\" x1=\\\"63.947\\\" x2=\\\"63.947\\\" y1=\\\"114.165\\\" y2=\\\"13.784\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1578e4\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00c3f2\\\"/></linearGradient><path fill=\\\"url(#deviconXcode0)\\\" d=\\\"M35.7 13.8h56.5c12.1 0 21.9 9.8 21.9 21.9v56.5c0 12.1-9.8 21.9-21.9 21.9H35.7c-12.1 0-21.9-9.8-21.9-21.9V35.7c0-12.1 9.8-21.9 21.9-21.9\\\"/><path fill=\\\"#FFF\\\" d=\\\"M90.5 19.2H37.4c-10.1 0-18.3 8.2-18.3 18.3v53.1c0 10.1 8.2 18.3 18.3 18.3h53.1c10.1 0 18.3-8.2 18.3-18.3V37.4c0-10.1-8.2-18.2-18.3-18.2m16.8 71.6c0 9.2-7.4 16.6-16.6 16.6H37.2c-9.1 0-16.6-7.4-16.6-16.6V37.2c0-9.2 7.4-16.6 16.6-16.6h53.6c9.1 0 16.6 7.4 16.6 16.6v53.6z\\\"/><path fill=\\\"#69c5f3\\\" d=\\\"M64.1 22.8c-22.6 0-41 18.4-41 41s18.4 41 41 41c22.7 0 41-18.4 41-41s-18.4-41-41-41m0 81.4c-22.3 0-40.4-18.1-40.4-40.4s18.1-40.4 40.4-40.4c22.3 0 40.4 18.1 40.4 40.4s-18.1 40.4-40.4 40.4\\\"/><path fill=\\\"#68c5f4\\\" d=\\\"M64.1 31.2c-18.1 0-32.7 14.6-32.7 32.7S46 96.5 64.1 96.5s32.7-14.6 32.7-32.7s-14.7-32.6-32.7-32.6m0 64.6c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.4 32-32 32\\\"/><path fill=\\\"#FFF\\\" d=\\\"M32.8 71.3h62.4c2.6 0 4.6 2.1 4.6 4.6c0 2.6-2.1 4.6-4.6 4.6H32.8c-2.6 0-4.6-2.1-4.6-4.6c-.1-2.5 2-4.6 4.6-4.6\\\"/><path fill=\\\"#0a93e9\\\" d=\\\"M32.6 72.2h62.6c2 0 3.7 1.6 3.7 3.7v.1c0 2-1.6 3.7-3.7 3.7H32.6c-2 0-3.7-1.6-3.7-3.7v-.2c.1-2 1.7-3.6 3.7-3.6\\\"/><path fill=\\\"#1694ea\\\" d=\\\"M31.1 79.3h65.7l.5-.3H30.6z\\\"/><path fill=\\\"#319dec\\\" d=\\\"M29.6 78.1h68.6l.2-.3h-69z\\\"/><path fill=\\\"#65b1ee\\\" d=\\\"M29 76.2h69.9v-.4H29z\\\"/><path fill=\\\"#8ec6f3\\\" d=\\\"M29.7 73.7h68.6l.1.2l.1.2h-69l.1-.2z\\\"/><path fill=\\\"#95caf3\\\" d=\\\"M31.2 72.5h65.6l.3.1l.3.2H30.6l.3-.2z\\\"/><linearGradient id=\\\"deviconXcode1\\\" x1=\\\"94.037\\\" x2=\\\"94.037\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode1)\\\" d=\\\"M93.4 72.2h-.5s1.7 1.2 1.7 3.9c0 2.5-1.7 3.6-1.7 3.6h.5s1.7-.8 1.7-3.6c0-3-1.7-3.9-1.7-3.9\\\"/><linearGradient id=\\\"deviconXcode2\\\" x1=\\\"89.042\\\" x2=\\\"89.042\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode2)\\\" d=\\\"M88.6 72.2h-.5s1.5 1.4 1.5 3.9c0 2.2-1.5 3.6-1.5 3.6h.5s1.5-1.1 1.5-3.6c-.1-2.7-1.5-3.9-1.5-3.9\\\"/><linearGradient id=\\\"deviconXcode3\\\" x1=\\\"63.947\\\" x2=\\\"63.947\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode3)\\\" d=\\\"M63.7 72.2h.5v7.5h-.5z\\\"/><linearGradient id=\\\"deviconXcode4\\\" x1=\\\"58.952\\\" x2=\\\"58.952\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode4)\\\" d=\\\"M58.8 72.2h.5s-.2 1.9-.2 3.9c0 1.8.2 3.6.2 3.6h-.5s-.2-1.8-.2-3.6c0-2 .2-3.9.2-3.9\\\"/><linearGradient id=\\\"deviconXcode5\\\" x1=\\\"53.958\\\" x2=\\\"53.958\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode5)\\\" d=\\\"M54 72.2h.5s-.5 1.9-.5 3.9c0 1.8.5 3.6.5 3.6H54s-.5-1.8-.5-3.6c0-2 .5-3.9.5-3.9\\\"/><linearGradient id=\\\"deviconXcode6\\\" x1=\\\"48.963\\\" x2=\\\"48.963\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode6)\\\" d=\\\"M49.1 72.2h.5s-.7 1.9-.7 3.9c0 1.8.7 3.6.7 3.6h-.5s-.7-1.8-.7-3.6c0-2 .7-3.9.7-3.9\\\"/><linearGradient id=\\\"deviconXcode7\\\" x1=\\\"43.968\\\" x2=\\\"43.968\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode7)\\\" d=\\\"M44.2 72.2h.5s-1 1.6-1 3.9c0 2 1 3.6 1 3.6h-.5s-1-1.6-1-3.6c0-2.3 1-3.9 1-3.9\\\"/><linearGradient id=\\\"deviconXcode8\\\" x1=\\\"38.852\\\" x2=\\\"38.852\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode8)\\\" d=\\\"M39.3 72.2h.5s-1.5 1.4-1.5 3.9c0 2.2 1.5 3.6 1.5 3.6h-.5s-1.5-1.1-1.5-3.6c.1-2.7 1.5-3.9 1.5-3.9\\\"/><linearGradient id=\\\"deviconXcode9\\\" x1=\\\"33.857\\\" x2=\\\"33.857\\\" y1=\\\"79.666\\\" y2=\\\"72.184\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1492e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#dbedfb\\\"/></linearGradient><path fill=\\\"url(#deviconXcode9)\\\" d=\\\"M34.5 72.2h.5s-1.7 1.2-1.7 3.9c0 2.5 1.7 3.6 1.7 3.6h-.5s-1.7-.8-1.7-3.6c0-3 1.7-3.9 1.7-3.9\\\"/><path fill=\\\"#FFF\\\" d=\\\"m62 34.1l31.2 54c1.3 2.2.5 5-1.7 6.3c-2.2 1.3-5 .5-6.3-1.7L54 38.7c-1.3-2.2-.5-5 1.7-6.3c2.2-1.3 5-.5 6.3 1.7\\\"/><linearGradient id=\\\"deviconXcodea\\\" x1=\\\"73.58\\\" x2=\\\"73.58\\\" y1=\\\"94.25\\\" y2=\\\"32.642\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1285e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00b5ef\\\"/></linearGradient><path fill=\\\"url(#deviconXcodea)\\\" d=\\\"m61.2 34.5l31.3 54.2c1 1.7.4 4-1.3 5l-.2.1c-1.7 1-4 .4-5-1.3L54.7 38.2c-1-1.7-.4-4 1.3-5l.1-.1c1.8-1 4.1-.4 5.1 1.4\\\"/><linearGradient id=\\\"deviconXcodeb\\\" x1=\\\"87.464\\\" x2=\\\"54.081\\\" y1=\\\"93.978\\\" y2=\\\"36.156\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#2b90e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00b6ef\\\"/></linearGradient><path fill=\\\"url(#deviconXcodeb)\\\" d=\\\"M54.2 36.7L87 93.6l.2.1l.2.1l.2.1l-33.4-57.8z\\\"/><linearGradient id=\\\"deviconXcodec\\\" x1=\\\"89.073\\\" x2=\\\"54.583\\\" y1=\\\"94.327\\\" y2=\\\"34.589\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3795ea\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#49c4f2\\\"/></linearGradient><path fill=\\\"url(#deviconXcodec)\\\" d=\\\"m54.5 34.8l34.3 59.4h.4L54.7 34.5l-.1.2z\\\"/><linearGradient id=\\\"deviconXcoded\\\" x1=\\\"91.026\\\" x2=\\\"56.072\\\" y1=\\\"93.735\\\" y2=\\\"33.193\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3696ea\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#90d9f6\\\"/></linearGradient><path fill=\\\"url(#deviconXcoded)\\\" d=\\\"m55.9 33.3l35 60.5l.3-.2l-35-60.5z\\\"/><linearGradient id=\\\"deviconXcodee\\\" x1=\\\"92.582\\\" x2=\\\"58.065\\\" y1=\\\"92.332\\\" y2=\\\"32.547\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3097ea\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b5e5f9\\\"/></linearGradient><path fill=\\\"url(#deviconXcodee)\\\" d=\\\"M58.4 32.7L92.6 92l-.1.2l-.1.2l-34.5-59.8h.2z\\\"/><linearGradient id=\\\"deviconXcodef\\\" x1=\\\"93.083\\\" x2=\\\"59.741\\\" y1=\\\"90.686\\\" y2=\\\"32.936\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3a98ea\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#bce7fa\\\"/></linearGradient><path fill=\\\"url(#deviconXcodef)\\\" d=\\\"M60.2 33.3L93 90.1v.6L59.6 33l.2.1l.2.1z\\\"/><path fill=\\\"#3c98ea\\\" d=\\\"m91.5 86.9l-.2-.4s-.2 2-2.4 3.4c-2.1 1.3-4 .4-4 .4l.2.4s1.6 1.1 4-.4c2.4-1.4 2.4-3.4 2.4-3.4M89 82.7l-.2-.4s-.5 2-2.6 3.2c-1.9 1.2-3.8.6-3.8.6l.2.4s1.7.7 3.9-.6c2.2-1.3 2.5-3.2 2.5-3.2\\\"/><path fill=\\\"#4ca4ed\\\" d=\\\"m86.6 78.5l-.2-.4s-.9 1.7-2.8 2.8c-1.7 1-3.6 1-3.6 1l.2.4s1.8 0 3.6-1c1.9-1.1 2.8-2.8 2.8-2.8\\\"/><path fill=\\\"#4da7ee\\\" d=\\\"m84.2 74.3l-.2-.4s-1.3 1.7-3 2.6c-1.6.9-3.5 1.2-3.5 1.2l.2.4s1.9-.3 3.5-1.2c1.6-.9 3-2.6 3-2.6\\\"/><linearGradient id=\\\"deviconXcodeg\\\" x1=\\\"67.981\\\" x2=\\\"74.457\\\" y1=\\\"61.226\\\" y2=\\\"57.487\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00a4ec\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b9dff6\\\"/></linearGradient><path fill=\\\"url(#deviconXcodeg)\\\" d=\\\"m74.3 57.3l.2.4s-1.7.8-3.4 1.7c-1.6.9-3 2.1-3 2.1l-.2-.4s1.5-1.2 3-2.1c1.7-.9 3.4-1.7 3.4-1.7\\\"/><linearGradient id=\\\"deviconXcodeh\\\" x1=\\\"65.487\\\" x2=\\\"71.962\\\" y1=\\\"56.906\\\" y2=\\\"53.167\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00a4ec\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b9dff6\\\"/></linearGradient><path fill=\\\"url(#deviconXcodeh)\\\" d=\\\"m71.9 53.1l.2.4s-1.9.6-3.5 1.6c-1.6.9-2.9 2.3-2.9 2.3l-.2-.4s1.3-1.4 2.9-2.3c1.6-1.1 3.5-1.6 3.5-1.6\\\"/><path fill=\\\"#9dd4f7\\\" d=\\\"M67.4 49.8c1.3-.4 2.3-.6 2.3-.6l-.2-.4s-.9.1-1.9.5c-.6.2-.7.7-.2.5\\\"/><linearGradient id=\\\"deviconXcodei\\\" x1=\\\"57.93\\\" x2=\\\"64.364\\\" y1=\\\"43.819\\\" y2=\\\"40.105\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00b4ef\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#c3e9fa\\\"/></linearGradient><path fill=\\\"url(#deviconXcodei)\\\" d=\\\"m64.6 40.5l.2.4s-1.9-.5-4.1.7c-1.9 1.2-2.3 3.1-2.3 3.1l-.2-.4s.2-1.7 2.3-3c2.2-1.4 4.1-.8 4.1-.8\\\"/><linearGradient id=\\\"deviconXcodej\\\" x1=\\\"55.424\\\" x2=\\\"61.9\\\" y1=\\\"39.477\\\" y2=\\\"35.738\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#00b4ef\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#c3e9fa\\\"/></linearGradient><path fill=\\\"url(#deviconXcodej)\\\" d=\\\"m62.2 36.2l.3.4s-2-.8-4.3.5C56 38.5 56 40.4 56 40.4l-.3-.4s-.2-1.7 2.2-3.2c2.5-1.5 4.3-.6 4.3-.6\\\"/><path fill=\\\"#FFF\\\" d=\\\"M55.5 71.3c8.7-15 18.7-32.4 18.7-32.4c1.3-2.2.5-5-1.7-6.3c-2.2-1.3-5-.5-6.3 1.7c0 0-12.2 21.2-21.4 37zm-5.4 9.2C45.9 87.7 43 92.9 43 92.9c-1.3 2.2-4.1 3-6.3 1.7s-3-4.1-1.7-6.3c0 0 1.7-3.1 4.4-7.7c3.4-.1 9.6-.1 10.7-.1\\\"/><linearGradient id=\\\"deviconXcodek\\\" x1=\\\"54.566\\\" x2=\\\"54.566\\\" y1=\\\"94.401\\\" y2=\\\"32.794\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#1285e7\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#00b5ef\\\"/></linearGradient><path fill=\\\"url(#deviconXcodek)\\\" d=\\\"M54.4 71.3c8.8-15.2 19-32.9 19-32.9c1-1.7.4-4-1.3-5l-.1-.1c-1.7-1-4-.4-5 1.3c0 0-12 20.8-21.2 36.7zm-5.3 9.2c-4 7-6.9 12-6.9 12c-1 1.7-3.2 2.3-5 1.3H37c-1.7-1-2.3-3.2-1.3-5c0 0 1.9-3.3 4.8-8.3z\\\"/><linearGradient id=\\\"deviconXcodel\\\" x1=\\\"40.681\\\" x2=\\\"74.064\\\" y1=\\\"94.131\\\" y2=\\\"36.311\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#3194e9\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#71cff4\\\"/></linearGradient><path fill=\\\"url(#deviconXcodel)\\\" d=\\\"M54.1 71.3L74 36.9v-.6s-11 19.1-20.2 35zm-5.4 9.2l-7.6 13.2l-.3.2l-.3.1s3.4-5.9 7.8-13.5z\\\"/><linearGradient id=\\\"deviconXcodem\\\" x1=\\\"39.063\\\" x2=\\\"73.557\\\" y1=\\\"94.482\\\" y2=\\\"34.736\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#5aa6ec\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#a2def8\\\"/></linearGradient><path fill=\\\"url(#deviconXcodem)\\\" d=\\\"m52.6 71.3l21-36.3l-.1-.2l-.1-.2S61.9 54.5 52.3 71.2zm-5.3 9.2l-8 13.8h-.4s3.4-5.9 8-13.9c.2.1.4.1.4.1\\\"/><linearGradient id=\\\"deviconXcoden\\\" x1=\\\"37.118\\\" x2=\\\"72.072\\\" y1=\\\"93.885\\\" y2=\\\"33.343\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#66abee\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#bee8fa\\\"/></linearGradient><path fill=\\\"url(#deviconXcoden)\\\" d=\\\"M50.4 71.3c9.9-17.1 21.8-37.8 21.8-37.8l-.3-.2l-22 38zM45 80.6C40.6 88.3 37.3 94 37.3 94l-.3-.2s3.2-5.6 7.6-13.2c.2-.1.1-.1.4 0\\\"/><linearGradient id=\\\"deviconXcodeo\\\" x1=\\\"35.568\\\" x2=\\\"70.085\\\" y1=\\\"92.482\\\" y2=\\\"32.697\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#7bb6f0\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#b1e3f9\\\"/></linearGradient><path fill=\\\"url(#deviconXcodeo)\\\" d=\\\"M48 71.3c9.9-17.1 22.2-38.5 22.2-38.5h-.4S57.5 54.1 47.6 71.3zm-5.8 9.2c-4 6.9-6.7 11.6-6.7 11.6l.1.2l.1.2s2.9-5 7-12z\\\"/><linearGradient id=\\\"deviconXcodep\\\" x1=\\\"35.056\\\" x2=\\\"68.415\\\" y1=\\\"90.872\\\" y2=\\\"33.092\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#5aa6ec\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#afe3f9\\\"/></linearGradient><path fill=\\\"url(#deviconXcodep)\\\" d=\\\"m46.5 71.3l22-38.1l-.2.1l-.2.1l-.1.1S55.8 54.6 46.2 71.3zm-5.3 9.2c-3.5 6.1-6 10.4-6 10.4v-.8s2.2-3.8 5.6-9.7c.2.1.2.1.4.1\\\"/><linearGradient id=\\\"deviconXcodeq\\\" x1=\\\"66.362\\\" x2=\\\"72.838\\\" y1=\\\"35.689\\\" y2=\\\"39.428\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#c1e7fa\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#89d4f5\\\"/></linearGradient><path fill=\\\"url(#deviconXcodeq)\\\" d=\\\"m66 36.2l-.2.4s1.8-.9 4.2.4c2.2 1.2 2.3 3.3 2.3 3.3l.2-.4s.2-1.9-2.3-3.3s-4.2-.4-4.2-.4\\\"/><linearGradient id=\\\"deviconXcoder\\\" x1=\\\"63.856\\\" x2=\\\"70.332\\\" y1=\\\"40.03\\\" y2=\\\"43.768\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#c1e7fa\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#89d4f5\\\"/></linearGradient><path fill=\\\"url(#deviconXcoder)\\\" d=\\\"m63.6 40.5l-.2.4s2-.6 4.1.6c2 1.1 2.4 3 2.4 3l.2-.4s-.2-1.8-2.4-3c-2.3-1.3-4.1-.6-4.1-.6\\\"/><linearGradient id=\\\"deviconXcodes\\\" x1=\\\"61.273\\\" x2=\\\"67.748\\\" y1=\\\"44.505\\\" y2=\\\"48.243\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#c1e7fa\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#89d4f5\\\"/></linearGradient><path fill=\\\"url(#deviconXcodes)\\\" d=\\\"m61.1 44.7l-.2.4s1.8-.1 3.8 1.1c1.8 1 2.7 2.6 2.7 2.6l.2-.4s-.9-1.6-2.7-2.6c-1.9-1.1-3.8-1.1-3.8-1.1\\\"/><linearGradient id=\\\"deviconXcodet\\\" x1=\\\"58.761\\\" x2=\\\"65.236\\\" y1=\\\"48.855\\\" y2=\\\"52.594\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#b0dff8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#52bdf2\\\"/></linearGradient><path fill=\\\"url(#deviconXcodet)\\\" d=\\\"m58.7 49l-.2.4s2 .3 3.7 1.3c1.6.9 2.8 2.4 2.8 2.4l.2-.4s-1.2-1.5-2.8-2.4c-1.7-1-3.7-1.3-3.7-1.3\\\"/><linearGradient id=\\\"deviconXcodeu\\\" x1=\\\"56.25\\\" x2=\\\"62.727\\\" y1=\\\"53.204\\\" y2=\\\"56.943\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#b4def8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4eb5f0\\\"/></linearGradient><path fill=\\\"url(#deviconXcodeu)\\\" d=\\\"m56.2 53.2l-.2.4s1.9.5 3.6 1.5c1.6.9 2.9 2.2 2.9 2.2l.2-.4s-1.3-1.3-2.9-2.2c-1.6-.9-3.6-1.5-3.6-1.5\\\"/><linearGradient id=\\\"deviconXcodev\\\" x1=\\\"53.74\\\" x2=\\\"60.215\\\" y1=\\\"57.553\\\" y2=\\\"61.291\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#b4def8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#4eb5f0\\\"/></linearGradient><path fill=\\\"url(#deviconXcodev)\\\" d=\\\"m53.8 57.4l-.3.4s1.8.7 3.5 1.7c1.6.9 3 2 3 2l.2-.4s-1.4-1.1-3-2c-1.6-.9-3.4-1.7-3.4-1.7\\\"/><linearGradient id=\\\"deviconXcodew\\\" x1=\\\"51.239\\\" x2=\\\"57.713\\\" y1=\\\"61.886\\\" y2=\\\"65.624\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#b5ddf8\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#46aeee\\\"/></linearGradient><path fill=\\\"url(#deviconXcodew)\\\" d=\\\"m51.1 62.1l.2-.4l6.5 3.7l-.2.4z\\\"/><linearGradient id=\\\"deviconXcodex\\\" x1=\\\"48.735\\\" x2=\\\"55.211\\\" y1=\\\"66.22\\\" y2=\\\"69.959\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#96cef4\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#46aaee\\\"/></linearGradient><path fill=\\\"url(#deviconXcodex)\\\" d=\\\"m48.7 66.4l.2-.4s1.6 1.2 3.3 2.1c1.6.9 3.2 1.6 3.2 1.6l-.2.3s-1.7-.7-3.3-1.6c-1.7-.9-3.2-2-3.2-2\\\"/><path fill=\\\"#73b9f1\\\" d=\\\"M47.1 71.3c-.5-.4-.8-.7-.8-.7l.2-.4s.6.5 1.4 1.1z\\\"/><linearGradient id=\\\"deviconXcodey\\\" x1=\\\"42.719\\\" x2=\\\"47.681\\\" y1=\\\"80.135\\\" y2=\\\"83\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8fc1f2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3193ea\\\"/></linearGradient><path fill=\\\"url(#deviconXcodey)\\\" d=\\\"M43.2 80.5c.4.3.8.6 1.3.9c1.8 1 3.6.9 3.6.9l-.2.4s-1.8.1-3.6-.9c-.7-.4-1.3-.9-1.7-1.3z\\\"/><linearGradient id=\\\"deviconXcodez\\\" x1=\\\"38.634\\\" x2=\\\"45.11\\\" y1=\\\"83.717\\\" y2=\\\"87.456\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8fc1f2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3193ea\\\"/></linearGradient><path fill=\\\"url(#deviconXcodez)\\\" d=\\\"m38.9 83.3l.2-.4s.5 2 2.7 3.2c2 1.1 3.8.5 3.8.5l-.2.4s-1.6.7-3.8-.5c-2.3-1.3-2.7-3.2-2.7-3.2\\\"/><linearGradient id=\\\"deviconXcode10\\\" x1=\\\"36.124\\\" x2=\\\"42.599\\\" y1=\\\"88.063\\\" y2=\\\"91.802\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#8fc1f2\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3193ea\\\"/></linearGradient><path fill=\\\"url(#deviconXcode10)\\\" d=\\\"m36.4 87.6l.2-.4s.2 2.1 2.6 3.4c2.2 1.2 3.9.3 3.9.3l-.3.4s-1.5 1.1-3.9-.3c-2.5-1.4-2.5-3.4-2.5-3.4\\\"/><linearGradient id=\\\"deviconXcode11\\\" x1=\\\"76.722\\\" x2=\\\"89.179\\\" y1=\\\"64.933\\\" y2=\\\"71.008\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".001\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></linearGradient><path fill=\\\"url(#deviconXcode11)\\\" d=\\\"m68.8 114.2l42.8-89.9l-10.8-5.1l-44.6 93.5s1.4.7 3.2 1.5z\\\"/><radialGradient id=\\\"deviconXcode12\\\" cx=\\\"95.237\\\" cy=\\\"25.132\\\" r=\\\"16.181\\\" fx=\\\"79.585\\\" fy=\\\"25.974\\\" gradientTransform=\\\"matrix(-.4494 .8933 -1.5457 -.7777 176.886 -40.4)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\"/><stop offset=\\\"1\\\" stop-opacity=\\\"0\\\"/></radialGradient><path fill=\\\"url(#deviconXcode12)\\\" d=\\\"m94.1 13.8l20 9.5V52C107.2 48.7 61 26.7 61 26.7s3.2-6.7 6.2-12.9z\\\"/><radialGradient id=\\\"deviconXcode13\\\" cx=\\\"51.211\\\" cy=\\\"114.953\\\" r=\\\"7.901\\\" fx=\\\"51.196\\\" fy=\\\"117.292\\\" gradientTransform=\\\"matrix(.8979 .4402 -.2506 .5111 34.032 33.662)\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".417\\\" stop-color=\\\"#0c0c12\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#3d4651\\\"/></radialGradient><path fill=\\\"url(#deviconXcode13)\\\" d=\\\"M44.5 110.2c-.3.6-.8 1.3-.7 2.4c.1 4.1 6.8 7.9 10.7 7.9c2.7 0 3.6-1.1 4.6-3.1s-13.5-9.6-14.6-7.2\\\"/><linearGradient id=\\\"deviconXcode14\\\" x1=\\\"84.758\\\" x2=\\\"94.522\\\" y1=\\\"39.174\\\" y2=\\\"44.149\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#344351\\\"/><stop offset=\\\".1\\\" stop-color=\\\"#9697a0\\\"/><stop offset=\\\".181\\\" stop-color=\\\"#8b8c95\\\"/><stop offset=\\\".351\\\" stop-color=\\\"#787a83\\\"/><stop offset=\\\".47\\\" stop-color=\\\"#71747d\\\"/><stop offset=\\\".591\\\" stop-color=\\\"#777982\\\"/><stop offset=\\\".749\\\" stop-color=\\\"#87898f\\\"/><stop offset=\\\".8\\\" stop-color=\\\"#8e8f94\\\"/><stop offset=\\\".849\\\" stop-color=\\\"#3d3b42\\\"/><stop offset=\\\".9\\\" stop-color=\\\"#606e84\\\"/></linearGradient><path fill=\\\"url(#deviconXcode14)\\\" d=\\\"M90.6 25.1s10.3 2.5 11.1 3.2s-1.3 4.7-1.7 5.3c-3.3 4-13.6 26.1-13.6 26.1l-9.5-5.4s8.5-15.8 11.5-21.4c1.9-3.8 2.2-7.8 2.2-7.8\\\"/><linearGradient id=\\\"deviconXcode15\\\" x1=\\\"117.884\\\" x2=\\\"106.863\\\" y1=\\\"29.257\\\" y2=\\\"14.364\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".27\\\" stop-color=\\\"#262b33\\\"/><stop offset=\\\".45\\\" stop-color=\\\"#74747e\\\"/><stop offset=\\\".54\\\" stop-color=\\\"#b0b0bc\\\"/><stop offset=\\\".73\\\" stop-color=\\\"#74747e\\\"/></linearGradient><path fill=\\\"url(#deviconXcode15)\\\" d=\\\"M114.4 19.9c1.8 1.3 4.2 1 6.1.7c1.3-.2-.7 1.7-2.9 6.1s-2.1 4.7-2.4 4.4c-.3-.3-10.2-5.9-9.9-6.4c.4-.5 2-11.4 2.8-11.1c2.9.7 3.4 4.2 6.3 6.3\\\"/><linearGradient id=\\\"deviconXcode16\\\" x1=\\\"98.542\\\" x2=\\\"114.815\\\" y1=\\\"30.424\\\" y2=\\\"28.322\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".14\\\" stop-color=\\\"#606e84\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#9899a5\\\"/><stop offset=\\\".73\\\" stop-color=\\\"#475768\\\"/><stop offset=\\\".92\\\" stop-color=\\\"#262b33\\\"/></linearGradient><path fill=\\\"url(#deviconXcode16)\\\" d=\\\"M99 32.2c.7-1.1 3.9-7.9 9-7.9c2.3 0 6.7 5.8 7.1 6.6c.3.7-.7 3.5-1.2 2.2c-.6-1.5-3.1-4.7-5.8-4.7s-6.4 3.1-7.3 4.2c-.9 1-2.5.7-1.8-.4\\\"/><linearGradient id=\\\"deviconXcode17\\\" x1=\\\"106.128\\\" x2=\\\"104.549\\\" y1=\\\"31.808\\\" y2=\\\"22.854\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#101215\\\" stop-opacity=\\\".1\\\"/><stop offset=\\\".46\\\" stop-color=\\\"#101215\\\" stop-opacity=\\\".7\\\"/><stop offset=\\\".7\\\" stop-color=\\\"#474951\\\"/><stop offset=\\\".91\\\" stop-color=\\\"#7b7d88\\\"/></linearGradient><path fill=\\\"url(#deviconXcode17)\\\" d=\\\"M98.8 31.8c.5-.8 2.8-4.3 3.9-5.4s3.9-4 6.3-4.4c2.4-.4 4.9 4.5 4.1 5.5c-.6.7-1.6-.1-2.8-1.1c-1.2-.9-2-2.7-5.8.2c-1.3 1-2.6 1.8-5.6 6.1c-.8 1.1-.6-.1-.1-.9\\\"/><linearGradient id=\\\"deviconXcode18\\\" x1=\\\"58.131\\\" x2=\\\"73.237\\\" y1=\\\"81.721\\\" y2=\\\"89.154\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".115\\\" stop-color=\\\"#2c3952\\\"/><stop offset=\\\".374\\\" stop-color=\\\"#3d414e\\\"/><stop offset=\\\".55\\\" stop-color=\\\"#474a54\\\"/><stop offset=\\\".754\\\" stop-color=\\\"#4e5057\\\"/><stop offset=\\\".892\\\" stop-color=\\\"#323945\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#143052\\\"/></linearGradient><path fill=\\\"url(#deviconXcode18)\\\" d=\\\"M86.4 61c.4-.8.9-2-.2-2.9c-1.2-.9-6.8-3.9-7.8-4.1c-1-.2-1.8 0-2.2.7c-.4.7-31.1 53.3-31.7 54.8c-.6 1.5-.7 2.6.2 2.9c.9.3 11.2 5.2 12.2 6.3c1 1.1 1.5-.1 1.9-.7c1.9-2.4 27.1-56.2 27.6-57\\\"/><linearGradient id=\\\"deviconXcode19\\\" x1=\\\"81.508\\\" x2=\\\"93.19\\\" y1=\\\"31.679\\\" y2=\\\"6.047\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\".118\\\" stop-color=\\\"#6d7078\\\" stop-opacity=\\\"0\\\"/><stop offset=\\\".2\\\" stop-color=\\\"#6d7078\\\" stop-opacity=\\\".7\\\"/><stop offset=\\\".34\\\" stop-color=\\\"#35363a\\\"/><stop offset=\\\".374\\\" stop-color=\\\"#1d1f22\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#101215\\\"/><stop offset=\\\".5\\\" stop-color=\\\"#16171a\\\"/><stop offset=\\\".56\\\" stop-color=\\\"#292a2e\\\"/><stop offset=\\\".688\\\" stop-color=\\\"#4b4d51\\\"/><stop offset=\\\".807\\\" stop-color=\\\"#63666b\\\"/><stop offset=\\\".915\\\" stop-color=\\\"#72757b\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#777a80\\\"/></linearGradient><path fill=\\\"url(#deviconXcode19)\\\" d=\\\"M99.5 31.6c.5-.7 1.7-2.7 3.2-4.5c1-1.2 6.4-3.8 7.6-8c.7-2.3-.4-4.6-1.9-5.6c-5.1-3.1-13.9-8-26.8-8c-8.7 0-12.4 2.9-12.4 2.9h4.4l15.3 6l1.9 8s.2 2.7-.7 5.8c-.6 2.5-.8 4-1.7 6.5c.7.3 2.3-.8 4.1-.3c1.6.4 2.6 2.6 3.7 1.3c1.9-2.5 2.5-3 3.3-4.1\\\"/><linearGradient id=\\\"deviconXcode1a\\\" x1=\\\"69.064\\\" x2=\\\"91.026\\\" y1=\\\"16.837\\\" y2=\\\"16.837\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#4a4d56\\\"/><stop offset=\\\"1\\\" stop-color=\\\"#29292d\\\"/></linearGradient><path fill=\\\"url(#deviconXcode1a)\\\" d=\\\"M90.5 25.4C89.7 18 87.9 11 69.1 11.1c1.2-1.2 4.1-2.4 4.1-2.4l-4.1-.3s.6-.5 1.8-.6c11-.9 20.8 1.4 20.1 15.7c-.1 2.3-.3 3.3-.5 1.9\\\"/><linearGradient id=\\\"deviconXcode1b\\\" x1=\\\"69.064\\\" x2=\\\"88.054\\\" y1=\\\"11.697\\\" y2=\\\"11.697\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#767880\\\"/><stop offset=\\\".41\\\" stop-color=\\\"#0c0a0b\\\"/></linearGradient><path fill=\\\"url(#deviconXcode1b)\\\" d=\\\"M69.1 11.1c1.3-.5 3.1-.8 6.5-.6c4.2.2 9.5 1.8 11.7 3.8c1.1 1 1 .2-.2-1.1c-3.1-3.6-7.8-4.4-13.9-4.5c-.7-.1-3 1.2-4.1 2.4\\\"/><linearGradient id=\\\"deviconXcode1c\\\" x1=\\\"116.332\\\" x2=\\\"123.707\\\" y1=\\\"34.756\\\" y2=\\\"21.982\\\" gradientUnits=\\\"userSpaceOnUse\\\"><stop offset=\\\"0\\\" stop-color=\\\"#858997\\\"/><stop offset=\\\".23\\\" stop-color=\\\"#244668\\\"/><stop offset=\\\".282\\\" stop-color=\\\"#1a3249\\\"/><stop offset=\\\".4\\\" stop-color=\\\"#040506\\\"/><stop offset=\\\".464\\\" stop-color=\\\"#313236\\\"/><stop offset=\\\".546\\\" stop-color=\\\"#65656e\\\"/><stop offset=\\\".607\\\" stop-color=\\\"#868691\\\"/><stop offset=\\\".64\\\" stop-color=\\\"#92929e\\\"/></linearGradient><path fill=\\\"url(#deviconXcode1c)\\\" d=\\\"m120.7 20.6l5.5 2.8s-2.1 2.8-3.8 6c-1.8 3.4-3 7.1-3 7.1l-5.3-3.2s1.3-3.6 3.2-7.1c1.5-2.9 3.4-5.6 3.4-5.6\\\"/><path fill=\\\"#bfc0d0\\\" d=\\\"M126.2 23.4c.4.2-.9 3.3-2.8 6.9c-1.9 3.6-3.7 6.4-4 6.2c-.4-.2.9-3.3 2.8-6.9c1.8-3.6 3.6-6.4 4-6.2\\\"/>\"\n\t\t},\n\t\t\"xd\": {\n\t\t\t\"body\": \"<path fill=\\\"#470137\\\" d=\\\"M22.667 1.6h82.666C117.867 1.6 128 11.733 128 24.267v79.466c0 12.534-10.133 22.667-22.667 22.667H22.667C10.133 126.4 0 116.267 0 103.733V24.267C0 11.733 10.133 1.6 22.667 1.6\\\"/><path fill=\\\"#ff61f6\\\" d=\\\"m67.307 34.4l-16 26.4l17.066 28c.107.213.16.427.107.64s-.267.053-.587.107H55.68c-.853 0-1.44-.054-1.813-.587c-1.12-2.24-2.294-4.427-3.414-6.667c-1.12-2.186-2.346-4.426-3.626-6.72c-1.28-2.293-2.56-4.586-3.84-6.933h-.107c-1.12 2.293-2.347 4.587-3.573 6.88a899.142 899.142 0 0 0-3.627 6.827c-1.227 2.24-2.453 4.533-3.68 6.72c-.213.533-.64.586-1.227.586H19.04c-.213 0-.373.107-.373-.16a.74.74 0 0 1 .106-.586l16.587-27.2l-16.16-27.36c-.16-.214-.213-.427-.107-.534c.107-.16.32-.213.534-.213h12.106c.267 0 .534.053.747.107c.213.106.373.266.533.48c1.014 2.293 2.187 4.586 3.414 6.88c1.28 2.293 2.506 4.533 3.84 6.773c1.28 2.24 2.453 4.48 3.573 6.773h.107c1.12-2.346 2.293-4.64 3.466-6.88c1.174-2.24 2.4-4.48 3.627-6.72c1.227-2.24 2.4-4.533 3.573-6.72c.054-.213.16-.426.32-.533c.214-.107.427-.16.694-.107H66.88a.491.491 0 0 1 .587.374c.053.053-.054.266-.16.373m24.64 56.267c-3.947.053-7.894-.747-11.467-2.4c-3.36-1.547-6.133-4.107-8.053-7.254c-1.974-3.253-2.934-7.306-2.934-12.16c-.053-3.946.96-7.84 2.934-11.253c2.026-3.467 4.96-6.347 8.48-8.267c3.733-2.08 8.213-3.093 13.493-3.093c.267 0 .64 0 1.12.053c.48.054 1.013.054 1.653.107V29.547c0-.374.16-.587.534-.587h10.826c.267-.053.48.16.534.373v50.88c0 .96.053 2.027.106 3.2c.107 1.12.16 2.187.214 3.094c0 .373-.16.693-.534.853a40.73 40.73 0 0 1-8.693 2.56c-2.72.48-5.44.747-8.213.747M97.173 80V56.533c-.48-.106-.96-.213-1.44-.266a19.216 19.216 0 0 0-1.76-.107c-2.08 0-4.16.427-6.026 1.387a11.956 11.956 0 0 0-4.534 3.946c-1.173 1.707-1.76 4-1.76 6.774a14.863 14.863 0 0 0 .907 5.493c.533 1.44 1.333 2.72 2.4 3.787a9.214 9.214 0 0 0 3.627 2.133c1.44.48 2.933.693 4.426.693c.8 0 1.547-.053 2.24-.106c.694.053 1.28-.054 1.92-.267\\\"/>\"\n\t\t},\n\t\t\"xml\": {\n\t\t\t\"body\": \"<path fill=\\\"#ae007f\\\" d=\\\"M118.759 49.397c.265-2.273.444-5.109 1.332-7.06c.675 2.022.9 4.64 2.28 6.163c1.798-.42 3.785-.317 5.629.08c-1.107 1.46-3.51 2.446-4.95 3.387c1.733 1.46 2.574 3.161 3.526 5.184c-2.515-.048-4.806-2.234-6.742-3.412c-1.67 1.889-2.844 3.725-5.292 4.403c.882-1.892 2.948-3.518 3.209-5.477c-1.96-.73-4.387-2.293-5.66-3.879c2.023.122 4.649.38 6.668.619\\\"/><path fill=\\\"#97bd00\\\" d=\\\"M120.845 63.79c.19-1.65.318-3.716.964-5.132c.492 1.472.654 3.367 1.657 4.474c1.294-.305 2.749-.234 4.082.055c-.802 1.051-2.542 1.781-3.581 2.46c1.261 1.055 1.875 2.292 2.554 3.764c-1.825-.036-3.494-1.627-4.899-2.472c-1.205 1.365-2.062 2.701-3.843 3.194c.643-1.37 2.146-2.56 2.324-3.975c-1.42-.532-3.18-1.665-4.105-2.816c1.456.091 3.371.278 4.836.448\\\"/><path fill=\\\"#f07f00\\\" d=\\\"M114.594 75.154c.132-1.147.222-2.566.666-3.546c.337 1.015.453 2.324 1.147 3.086c.896-.21 1.896-.159 2.823.04c-.558.73-1.76 1.229-2.477 1.701c.868.734 1.288 1.583 1.76 2.598c-1.262-.024-2.408-1.119-3.387-1.714c-.838.949-1.429 1.869-2.658 2.214c.445-.948 1.48-1.762 1.606-2.742c-.983-.368-2.201-1.149-2.836-1.95c1.016.059 2.337.19 3.344.308\\\"/><path fill=\\\"#005fad\\\" d=\\\"M21.148 74.424c-1.04 0-12.811 11.47-13.957 12.824c-.96 1.066-1.48 3.026-3.126 3.248c-1.75.233-2.15-.449-2.99-1.766c-.798-1.249-1.762-3.474-.37-4.378c1.345-.865 18.023-16.163 18.543-16.785c.647-.663-.064-2.301-.372-4.768c-.397-3.173-.6-6.08-.354-9.218c.246-3.225 1.016-7.2 1.852-10.324c.512-1.912.215-5.684 2.876-5.798c.539.13 4.633 2.962 3.53 6.694c-1.594 5.351-3.125 11.367-2.653 17.1c.087 1.106.535 2.065 1.237 1.558c7.552-5.406 19.375-11.265 22.398-12.308c1.455-.464 2.947-.83 4.457-1.015c1.084.122 1.904 1.142 2.762 1.864c4.28 3.669-4.034 16.683-4.74 20.645c.663 0 1.385-1.007 2.654-2.154a252.59 252.59 0 0 0 5.013-4.673c2.372-1.785 4.446-3.422 7.457-3.807c7.242-.92 5.076 9.51 3.442 13.24c.932 0 3.212-2.626 5.041-4.36c.917-.868 1.935-1.788 2.863-2.645c1.104-1.015 1.615-1.543 2.447-1.134c.56.158 2.98 1.626 3.115 3.867c.114 1.817-.631 3.597-.991 5.338c-.306 1.46-.23 6.207 1.736 6.216c.778-.564 1.793-.802 2.717-.96c1.492-.25 1.42.238 2.65.694c1.927.713.186 3.45-.83 4.462c-1.36 1.357-3.308 2.253-5.26 2.22c-2.145-.035-3.83-1.356-4.798-3.212c-.528-1.015-1.209-4.775-1.472-5.89c-.261-1.095-.035-2.408-1.197-1.297c-3.28 3.165-6.663 6.105-10 9.222c-3.675 3.432-7.186-1.282-6.52-5.132c.655-3.764 3.903-8.361 4.487-12.093c-1.552 0-4.165 2.708-5.153 3.827c-1.607 1.817-3.388 3.828-5.2 5.735c-1.825 1.916-3.387 3.68-5.22 5.588c-1.32 1.377-2.832 3.336-5.06 3.463c-1.1-.174-2.848-2.002-3.145-4.327c-.251-1.943.241-4.077.982-5.862c2.151-5.16 8.032-16.06 9.409-21.482c-2.824.275-14.79 5.807-22.711 12.407c-2.293 1.892-.175 5.351.782 7.655c1.026 2.463 4.056 6.917 4.961 7.674c2.372 1.972.476 3.714-1.876 3.59c-1-.706-2.209-1.472-3.145-2.408c-1.02-1.018-1.9-2.18-2.698-3.37c-1.626-2.407-3.176-5.19-3.597-8.112m85.134-30.74c-.67-2.494-3.789 1.314-5.351 3.33c-4.324 5.564-8.265 16.891-8.901 18.978c-1.935 6.398-2.685 14.283 1.503 19.914c2.436 3.285 6.728 3.534 10.935 2.325c2.17-.623 4.343-2.182 5.085-3.875c.615-1.412.932-4.037-2.166-2.035c-1.198.774-3.395 1.627-7.334 1.564c-1.32-.025-3.49-1.92-4.072-3.88c-1.024-3.193-.587-7.457-.587-7.457c.891-5.505 3.446-11.47 5.687-16.476c.87-1.932 3.518-6.747 4.51-8.282c0 .004 1.27-1.998.7-4.124zm0 0\\\"/>\"\n\t\t},\n\t\t\"yaml\": {\n\t\t\t\"body\": \"<path d=\\\"M22.254 39.778L.5 5.629h15.69l13.833 21.989L43.968 5.629h15.02L36.214 39.778v21.65h-13.96z\\\"/><path fill=\\\"#cb171e\\\" d=\\\"M82.428 49.149H57.162l-5.139 12.408H40.835l23.66-55.798h11.443l22.7 55.798H86.68zm-4.197-11.14l-7.745-20.476l-8.642 20.476z\\\"/><path d=\\\"M22.254 67.686v54.688h11.733V84.65l12.28 25.356h9.236l12.7-26.246v38.601h11.256V67.686H64.09l-13.638 24.73l-12.988-24.73zm105.248 42.804H98.639V67.67H86.682v54.455h40.82z\\\"/>\"\n\t\t},\n\t\t\"yarn\": {\n\t\t\t\"body\": \"<path fill=\\\"#2c8ebb\\\" d=\\\"M64 0a64 64 0 1 0 64 64A64 64 0 0 0 64 0m4.685 21.948a5.037 5.037 0 0 1 2.21.802c.671.444 1.528 1.032 4.026 6.194a4.841 4.841 0 0 1 2.942-.103a3.933 3.933 0 0 1 2.468 2.004c2.55 4.893 2.889 13.614 1.774 19.22a34.89 34.89 0 0 1-6.028 13.74a26.56 26.56 0 0 1 5.957 9.733a26.24 26.24 0 0 1 1.456 10.746a29.626 29.626 0 0 0 3.22-1.796c3.158-1.951 7.927-4.894 13.615-4.966a6.834 6.834 0 0 1 7.225 5.885a6.555 6.555 0 0 1-5.046 7.256c-3.458.836-5.069 1.486-9.714 4.5a69.161 69.161 0 0 1-16.062 7.412a8.991 8.991 0 0 1-3.758 1.828c-3.933.96-17.425 1.682-18.488 1.682h-.248c-4.13 0-6.47-1.28-7.73-2.621c-3.51 1.755-8.052 1.03-11.355-.714a5.729 5.729 0 0 1-3.097-4.024a6.194 6.194 0 0 1 0-2.127a6.875 6.875 0 0 1-.816-1.032a16.908 16.908 0 0 1-2.333-10.386c.3-3.85 2.964-7.287 4.698-9.114A29.481 29.481 0 0 1 35.726 64a27.685 27.685 0 0 1 7.04-9.29c-1.703-2.87-3.436-7.288-1.754-11.789c1.208-3.21 2.199-4.996 4.377-5.76a7.06 7.06 0 0 0 2.59-1.383a18.22 18.22 0 0 1 12.243-5.843c.196-.495.423-1.033.671-1.508c1.652-3.51 3.406-5.48 5.46-6.193a5.037 5.037 0 0 1 2.332-.286m-.558 3.697c-2.703.089-5.355 8.099-5.355 8.099a14.452 14.452 0 0 0-12.089 4.645a9.951 9.951 0 0 1-3.973 2.345c-.424.144-.94.122-2.22 3.58c-1.961 5.234 3.345 11.16 3.345 11.16s-6.328 4.47-8.672 10.034a25.58 25.58 0 0 0-1.806 12.057s-4.5 3.901-4.788 7.927a13.285 13.285 0 0 0 1.826 8.083a2.003 2.003 0 0 0 2.714.94s-2.993 3.487-.196 4.963c2.55 1.331 6.844 2.065 9.115-.196c1.652-1.651 1.982-5.335 2.591-6.842c.144-.351.64.588 1.115 1.032a10.323 10.323 0 0 0 1.403 1.032s-4.024 1.734-2.373 5.688c.547 1.31 2.498 2.145 5.688 2.125c1.187 0 14.203-.743 17.671-1.58a4.47 4.47 0 0 0 2.696-1.505a65.032 65.032 0 0 0 15.99-7.226c4.892-3.19 6.895-4.059 10.848-4.998c3.262-.774 3.045-5.83-1.28-5.758c-4.48.052-8.402 2.363-11.716 4.427c-6.193 3.83-9.29 3.583-9.29 3.583l-.105-.175c-.423-.692 1.983-6.896-.712-14.287c-2.91-8.082-7.534-10.033-7.163-10.653c1.58-2.673 5.534-6.917 7.113-14.824c.94-4.79.691-12.676-1.435-16.805c-.393-.764-3.902 1.28-3.902 1.28s-3.283-7.319-4.201-7.907a1.442 1.442 0 0 0-.839-.244\\\"/>\"\n\t\t},\n\t\t\"yarn-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#2c8ebb\\\" d=\\\"M28.282 35.72A28.28 28.28 0 1 0 56.56 64a28.28 28.28 0 0 0-28.277-28.28Zm2.08 9.688a2.23 2.23 0 0 1 .979.357c.294.2.679.44 1.779 2.723a2.095 2.095 0 0 1 1.3 0a1.739 1.739 0 0 1 1.048.879c1.12 2.158 1.277 6.012.785 8.494a15.417 15.417 0 0 1-2.66 6.076a11.74 11.74 0 0 1 2.66 4.252a11.594 11.594 0 0 1 .65 4.744a13.092 13.092 0 0 0 1.424-.776a11.898 11.898 0 0 1 6.012-2.199a3.016 3.016 0 0 1 3.142 2.598a2.9 2.9 0 0 1-2.191 3.226a11.343 11.343 0 0 0-4.293 1.99a30.561 30.561 0 0 1-7.1 3.278a3.97 3.97 0 0 1-1.656.806a71.482 71.482 0 0 1-8.17.745h-.103a4.462 4.462 0 0 1-3.414-1.163a5.708 5.708 0 0 1-4.996-.314a2.535 2.535 0 0 1-1.354-1.78a2.723 2.723 0 0 1 0-.945a3.037 3.037 0 0 1-.355-.459a7.478 7.478 0 0 1-1.047-4.587a7.175 7.175 0 0 1 2.096-4.033a13.03 13.03 0 0 1 .888-5.32a12.233 12.233 0 0 1 3.143-4.096a6.096 6.096 0 0 1-.776-5.237c.534-1.425.976-2.21 1.94-2.544a3.142 3.142 0 0 0 1.14-.608a8.054 8.054 0 0 1 5.414-2.597c.084-.22.19-.44.295-.67a4.818 4.818 0 0 1 2.387-2.713a2.23 2.23 0 0 1 1.033-.127m-.054 1.683c-1.236-.216-2.487 3.576-2.487 3.576a6.379 6.379 0 0 0-5.341 2.094a4.399 4.399 0 0 1-1.76 1.047c-.188.063-.42.052-.985 1.582c-.87 2.335 1.477 4.934 1.477 4.934a12.642 12.642 0 0 0-3.832 4.43a11.3 11.3 0 0 0-.797 5.331s-1.99 1.727-2.096 3.508a5.865 5.865 0 0 0 .81 3.572a.88.88 0 0 0 1.202.418s-1.32 1.54-.084 2.2c1.236.66 3.027.931 4.033-.085c.733-.733.87-2.354 1.14-3.025c.064-.157.283.26.493.47a4.556 4.556 0 0 0 .62.462a1.906 1.906 0 0 0-1.05 2.513c.241.576 1.1.954 2.514.944a75.337 75.337 0 0 0 7.805-.704a1.98 1.98 0 0 0 1.193-.67a28.75 28.75 0 0 0 7.06-3.195a12.705 12.705 0 0 1 4.795-2.209a1.37 1.37 0 0 0-.658-2.66h-.002a10.285 10.285 0 0 0-5.174 1.947c-2.744 1.697-4.105 1.582-4.105 1.582v-.074c-.19-.303.87-3.047-.315-6.283c-1.288-3.572-3.33-4.43-3.142-4.703a16.968 16.968 0 0 0 3.142-6.545c.42-2.095.306-5.604-.626-7.427c-.178-.335-1.729.566-1.729.566a22.215 22.215 0 0 0-1.853-3.498a.673.673 0 0 0-.248-.098m66.053 3.932a2.095 2.095 0 0 0-2.22 2.094a3.268 3.268 0 0 0 1.906 2.85a41.276 41.276 0 0 1-.735 7.677a1.395 1.395 0 0 0-.043.414c-.41 1.948-1.216 4.601-2.93 4.601v.012c-1.047 0-1.51-1.049-1.51-2.096v-7.331a2.095 2.095 0 0 0-2.397-1.96c-.618 0-1.153.315-1.153.754a9.573 9.573 0 0 1 .178 1.426v6.85c-.492 1.246-1.287 2.314-2.492 2.314c-1.56 0-2.533-1.33-2.533-3.644c0-6.4 3.958-9.29 7.33-9.29c.44 0 .89.083 1.289.083c.398 0 .576-.262.576-1.047a1.843 1.843 0 0 0-2.096-1.865c-5.426 0-10.578 4.536-10.578 11.96c0 .281.013.556.033.827a17.596 17.596 0 0 1-3.29 5.28V55.329a2.095 2.095 0 0 0-2.378-1.948c-.618 0-1.152.314-1.152.754a9.573 9.573 0 0 1 .106 1.424v7.154c-.534 3.142-1.866 6-3.647 6c-1.288 0-2.094-1.288-2.094-3.687a32.216 32.216 0 0 1 1.29-8.975c.178-.67 1.466-2.441-.713-2.441c-2.356 0-2.096.89-2.358 1.644a43.413 43.413 0 0 0-1.486 10.004c0 3.865 1.623 6.398 4.598 6.398c1.906 0 3.288-1.287 4.357-3.068v5.645c-2.933 2.575-5.51 4.85-5.51 9.331c0 2.85 1.782 5.112 4.264 5.112c2.263 0 4.619-1.644 4.619-6.283V74.67a19.293 19.293 0 0 0 4.549-5.295c.887 1.34 2.262 2.164 4.101 2.164a4.944 4.944 0 0 0 3.822-1.822a3.928 3.928 0 0 0 3.426 1.822c3.58 0 5.369-3.508 6.201-6.363c.044-.085.082-.18.115-.287a35.61 35.61 0 0 0 1.162-8.223h3.864a28.833 28.833 0 0 0-2.22 9.824c0 3.906 2.493 5.07 4.577 5.07v.042c1.7 0 2.988-.794 3.965-1.932a1.864 1.864 0 0 0 2.09 1.932c1.288 0 1.246-1.048 1.246-1.907v-6.494c.314-3.508 3.07-7.331 4.357-7.331c.849 0 .932 1.152.932 2.535v9.029c0 2.263 1.383 4.19 3.74 4.19c3.823 0 5.706-4.001 6.47-6.934a1.173 1.173 0 0 0 0-.315a1.959 1.959 0 0 0-1.558-1.822c-.44 0-.891.398-1.049 1.33c-.398 1.958-1.309 4.797-3.09 4.797c-1.15 0-1.15-1.644-1.15-2.094V57.42c0-2.094-.714-4.492-3.688-4.492c-2.179 0-3.78 1.905-4.974 4.399v-2a2.095 2.095 0 0 0-2.4-1.96c-.618 0-1.15.315-1.15.755a9.573 9.573 0 0 1 .177 1.425v7.715a2.685 2.685 0 0 0-.168.6c-.398 1.958-1.152 4.796-3.205 4.796c-1.205 0-1.78-1.151-1.78-2.398c0-4.44 2-9.689 2-10.222c.179-1.047-1.603-2.493-2.095-2.493h-2.314a16.57 16.57 0 0 1-2.356-.177a2.817 2.817 0 0 0-2.828-2.346Zm-24.09 26.591v4.756c0 .848.179 3.51-1.245 3.51l.04-.022c-.712 0-1.152-1.047-1.152-2.44a7.76 7.76 0 0 1 2.358-5.804z\\\"/>\"\n\t\t},\n\t\t\"yii\": {\n\t\t\t\"body\": \"<path fill=\\\"#40B3D8\\\" d=\\\"M89.023 81.366c-.864-11.402-4.54-18.792-6.331-22.98c-1.79-4.189-4.542-8.109-4.544-8.103c-.005.018-2.478 13.342-6.923 22.983c-.743 1.61-1.728 3.62-2.723 5.238c-3.069 5.42-7.521 10.603-10.176 15.857c-2.632 5.208-3.12 10.365-2.875 16.229c.247 5.896 1.609 11.678 2.916 17.41c4.93-1.063 9.22-2.883 12.932-5.21c9.768-6.124 15.67-15.918 17.348-26.47c0 0 .082-.43.118-.952c.757-8.155.506-10.729.258-14.002\\\"/><path fill=\\\"#83C933\\\" d=\\\"M89.023 81.366c-.864-11.402-4.54-18.792-6.331-22.98c-1.79-4.189-4.542-8.109-4.544-8.103v.003v-.004l-.657-.976c-14.405-20.221-42.03-30.317-65.371-20.96c-1.124 14.174 5.447 38.56 29.42 45.363c9.691 2.981 17.452 2.208 26.963 4.794v.001s9.667 3.37 15.291 8.422c2.53 2.273 5.064 5.263 4.937 8.82c.801-8.465.544-11.055.293-14.38Z\\\"/><path fill=\\\"#F18A2A\\\" d=\\\"M78.555 38.417c-3.406-9.965-1.962-16.643 4.269-25.935C85.796 8.048 90.928 2.905 95.425 0c18.145 11.37 24.855 32.55 18.182 52.22c-4.857 14.312-9.414 20.313-20.935 35.038c1.343-15.77-4.207-26.704-9.657-38.853c-1.387-3.09-3.305-6.61-4.46-9.988\\\"/><path fill=\\\"#7FB93C\\\" d=\\\"M88.731 95.746c.127-3.557-2.406-6.547-4.936-8.82c-5.625-5.052-15.292-8.422-15.292-8.422c.995-1.618 1.98-3.629 2.722-5.239c4.446-9.64 6.918-22.964 6.923-22.982c.002-.006 2.754 3.914 4.544 8.102c1.79 4.189 5.468 11.579 6.332 22.98c.251 3.326.508 5.916-.293 14.38Z\\\"/>\"\n\t\t},\n\t\t\"yii-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#40B3D8\\\" d=\\\"M46.452 74.07c-.52-6.875-2.739-11.332-3.819-13.859c-1.079-2.525-2.739-4.89-2.74-4.886c-.003.01-1.494 8.047-4.175 13.86c-.448.971-1.042 2.184-1.642 3.16c-1.85 3.268-4.537 6.394-6.137 9.563c-1.587 3.14-1.882 6.251-1.734 9.787c.148 3.556.97 7.044 1.759 10.501c2.973-.642 5.56-1.739 7.799-3.142c5.89-3.694 9.45-9.6 10.462-15.965c0 0 .05-.258.071-.573c.456-4.919.306-6.47.156-8.445Z\\\"/><path fill=\\\"#83C933\\\" d=\\\"M46.452 74.07c-.52-6.875-2.738-11.332-3.819-13.859c-1.079-2.525-2.739-4.89-2.74-4.886v.002v-.002l-.396-.59C30.809 42.542 14.149 36.453.072 42.096c-.678 8.549 3.285 23.256 17.743 27.358c5.845 1.798 10.525 1.332 16.261 2.892c0 0 5.83 2.032 9.223 5.08c1.526 1.37 3.053 3.173 2.977 5.318c.483-5.105.328-6.666.176-8.672Z\\\"/><path fill=\\\"#40B3D8\\\" d=\\\"M124.463 39.561c1.99 0 3.537 1.548 3.537 3.538c0 1.99-1.547 3.538-3.537 3.538s-3.538-1.548-3.538-3.538c0-1.77 1.547-3.538 3.538-3.538m-12.824 0c1.989 0 3.538 1.548 3.538 3.538c0 1.99-1.548 3.538-3.538 3.538c-1.989 0-3.538-1.548-3.538-3.538c0-1.77 1.549-3.538 3.538-3.538m3.538 43.334V49.953c0-.663-.443-1.106-1.106-1.106h-4.864c-.663 0-1.105.443-1.105 1.106v32.942c0 .663.442 1.106 1.105 1.106h4.864c.663-.222 1.106-.663 1.106-1.106m-12.603.884V49.07c-2.653 0-6.854 1.768-6.854 5.527v23.656c-1.547.221-3.759.443-5.084.443c-4.423 0-5.527-3.096-5.527-7.297V54.374c-.222-4.2-4.865-5.306-6.854-5.306v22.11c0 7.958 3.98 13.043 12.381 13.043c1.325 0 3.98-.443 5.084-.663l.058.573c.306 6.887-7.354 4.07-11.775 3.627c-3.317 0-5.527 2.654-6.191 5.75c1.99.662 8.18 1.326 12.602 1.768c7.96.221 12.16-4.2 12.16-11.497m25.205-.884V49.953c0-.663-.442-1.106-1.105-1.106h-4.864c-.663 0-1.106.443-1.106 1.106v32.942c0 .663.443 1.106 1.106 1.106h4.864c.663-.222 1.105-.663 1.105-1.106\\\"/><path fill=\\\"#F18A2A\\\" d=\\\"M40.139 48.169c-2.055-6.01-1.184-10.037 2.574-15.641c1.793-2.674 4.887-5.776 7.6-7.528c10.943 6.858 14.99 19.63 10.965 31.493c-2.929 8.632-5.677 12.251-12.625 21.132c.81-9.511-2.538-16.105-5.825-23.432c-.836-1.864-1.993-3.986-2.69-6.024Z\\\"/><path fill=\\\"#7FB93C\\\" d=\\\"M46.276 82.743c.077-2.145-1.451-3.948-2.977-5.319c-3.392-3.047-9.222-5.079-9.222-5.079c.6-.976 1.194-2.189 1.641-3.16c2.681-5.813 4.172-13.85 4.176-13.86c0-.003 1.66 2.36 2.74 4.886c1.08 2.527 3.297 6.983 3.819 13.86c.151 2.005.306 3.567-.177 8.672\\\"/>\"\n\t\t},\n\t\t\"yugabytedb\": {\n\t\t\t\"body\": \"<path fill=\\\"#ff5f3b\\\" d=\\\"M34.306 5.813c2.94 0 4.376 0 5.51.568a5.324 5.324 0 0 1 2.274 2.271c.568 1.102.568 2.573.568 5.512v36.71c0 4.342 0 6.546-.902 7.882a5.214 5.214 0 0 1-3.44 2.205c-1.605.267-3.575-.668-7.516-2.505l-10.288-4.81c-7.417-3.474-11.124-5.212-13.863-7.884a22.435 22.435 0 0 1-5.378-8.418C0 33.772 0 29.697 0 21.479v-7.315c0-2.94 0-4.376.568-5.51A5.324 5.324 0 0 1 2.84 6.379c1.136-.567 2.607-.567 5.512-.567Zm85.343 0c2.94 0 4.377 0 5.512.568a5.324 5.324 0 0 1 2.271 2.271c.568 1.102.568 2.573.568 5.512v7.315c0 8.183 0 12.292-1.27 15.9a22.435 22.435 0 0 1-5.377 8.417c-2.706 2.672-6.447 4.41-13.862 7.883L85.312 64V14.164c0-2.94 0-4.376.567-5.51a5.324 5.324 0 0 1 2.272-2.274c1.135-.568 2.606-.568 5.545-.568ZM85.312 64v49.837c0 2.94 0 4.376-.568 5.51a5.324 5.324 0 0 1-2.271 2.273c-1.103.568-2.573.568-5.512.568H51.007c-2.94 0-4.376 0-5.51-.568a5.324 5.324 0 0 1-2.273-2.271c-.567-1.102-.567-2.573-.567-5.512v-7.349c0-8.183 0-12.29 1.27-15.899a22.435 22.435 0 0 1 5.377-8.418c2.705-2.672 6.446-4.408 13.86-7.85z\\\"/>\"\n\t\t},\n\t\t\"yugabytedb-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#1e154b\\\" d=\\\"M125.744 61.399c.815-.421 1.594-1.353 1.594-2.614c0-2.162-1.711-3.369-4.12-3.369h-5.109v13.168h5.29c2.767 0 4.601-1.442 4.601-3.909c0-1.745-1.02-2.824-2.256-3.276m-5.169-4.001h2.433c1.354 0 2.015.568 2.015 1.593s-.661 1.565-1.985 1.565h-2.468v-3.158zm2.556 9.018h-2.556V62.66h2.556c1.681 0 2.496.691 2.496 1.893c0 1.207-.815 1.864-2.496 1.864zm-13.736-11h-4.266v13.168h4.266c3.668 0 6.763-2.192 6.763-6.581c.005-4.394-3.095-6.586-6.763-6.586zm-.177 11h-1.593V57.55h1.593c2.256 0 4.418 1.17 4.418 4.448c0 3.276-2.167 4.418-4.418 4.418m-8.116-.991c-.24.903-1.02 1.383-2.226 1.383c-1.441 0-2.437-.96-2.614-2.491h7.003c.04-.26.06-.52.06-.78c0-2.285-1.442-4.6-4.63-4.6c-3.188 0-4.659 2.374-4.659 4.87s1.742 4.929 4.84 4.929c2.344 0 4.119-1.29 4.477-3.306h-2.25zm-2.407-4.746c1.382 0 2.192.901 2.314 2.104h-4.688c.24-1.413 1.084-2.104 2.374-2.104m-5.439.357v-1.952h-2.613v-2.858h-2.315v2.853h-1.864v1.952h1.864v4.238c0 2.104 1.353 3.305 3.428 3.305h1.505v-1.952h-1.26c-.844 0-1.354-.48-1.354-1.441v-4.15h2.61zm-9.68-1.952l-2.162 6.523l-2.222-6.523h-2.344l3.457 9.499l-1.324 3.845h2.192l1.471-4.3l3.306-9.049h-2.374zm-11.48-.152c-1.231 0-2.255.54-2.795 1.324v-4.834h-2.315v13.162h2.315v-1.172c.54.813 1.594 1.324 2.737 1.324c2.853 0 4.54-1.982 4.54-4.9c-.004-2.922-1.687-4.904-4.482-4.904m-.392 7.817c-1.535 0-2.555-1.171-2.555-2.918c0-1.745 1.02-2.882 2.555-2.882c1.535 0 2.555 1.14 2.555 2.882c0 1.746-1.02 2.918-2.555 2.918m-10.882-7.817c-2.466 0-4.055 1.471-4.178 3.37h2.075c.029-.844.78-1.623 2.015-1.623c1.23 0 1.921.661 1.921 1.593c0 .363-.21.633-.69.633h-1.746c-2.133 0-3.575 1.143-3.575 3.005c0 1.624 1.29 2.826 3.153 2.826c1.383 0 2.462-.633 2.854-1.565v1.412h2.285v-6.1c.005-2.138-1.706-3.55-4.113-3.55zm1.834 5.655c0 1.411-.838 2.432-2.285 2.432c-.872 0-1.471-.48-1.471-1.23c0-.81.662-1.354 1.623-1.354h2.132zm-21.459-5.503v5.199c0 1.383-.931 2.402-2.227 2.402c-1.294 0-1.981-.9-1.981-2.192v-5.409h-2.284v5.89c0 2.222 1.323 3.757 3.516 3.757c1.353 0 2.432-.57 2.976-1.624v1.472h2.314v-9.495zm-10.073 0l-2.191 6.523l-2.192-6.523h-2.344l3.457 9.499l-1.325 3.845h2.192l1.472-4.3l3.305-9.049h-2.374zm21.312 0v1.084c-.54-.72-1.564-1.23-2.765-1.23c-2.825 0-4.477 2.015-4.477 4.898c0 2.883 1.651 4.9 4.506 4.9c1.383 0 2.286-.48 2.766-1.201v.15c0 1.776-.57 2.977-2.432 2.977c-1.172 0-1.775-.48-2.163-1.41h-2.315c.51 2.313 2.075 3.332 4.477 3.332c3.007 0 4.63-1.803 4.63-4.898l.088-8.597zm-2.402 7.665c-1.535 0-2.555-1.171-2.555-2.918c0-1.745 1.02-2.882 2.554-2.882c1.536 0 2.585 1.14 2.585 2.882c0 1.742-1.02 2.918-2.585 2.918z\\\"/><path fill=\\\"#ff5f3b\\\" d=\\\"M5.036 55.416c.43 0 .642 0 .81.084a.77.77 0 0 1 .332.333c.084.163.084.378.084.81v5.389c0 .637 0 .96-.133 1.157a.766.766 0 0 1-.505.324c-.235.04-.524-.097-1.103-.367l-1.511-.707c-1.088-.51-1.632-.765-2.034-1.158a3.293 3.293 0 0 1-.79-1.235C0 59.521 0 58.923 0 57.716v-1.074c0-.43 0-.641.083-.809a.782.782 0 0 1 .333-.333c.168-.084.384-.084.81-.084Zm12.53 0c.43 0 .642 0 .808.084a.77.77 0 0 1 .334.333c.084.163.084.378.084.81v1.073c0 1.201 0 1.805-.188 2.335a3.293 3.293 0 0 1-.788 1.235c-.398.393-.947.648-2.036 1.158l-3.256 1.515v-7.317c0-.43 0-.641.083-.809a.782.782 0 0 1 .333-.333c.168-.084.384-.084.815-.084zm-5.042 8.543v7.316c0 .432 0 .643-.083.81a.782.782 0 0 1-.333.333c-.162.083-.379.083-.81.083h-3.81c-.43 0-.642 0-.808-.083a.782.782 0 0 1-.333-.333c-.084-.162-.084-.378-.084-.809v-1.079c0-1.201 0-1.805.186-2.334a3.293 3.293 0 0 1 .79-1.236c.397-.392.946-.648 2.035-1.153z\\\"/>\"\n\t\t},\n\t\t\"yunohost\": {\n\t\t\t\"body\": \"<g transform=\\\"translate(-173.29 -80.936)scale(3.77953)\\\"><rect width=\\\"33.867\\\" height=\\\"33.867\\\" x=\\\"45.85\\\" y=\\\"21.414\\\" ry=\\\"2.646\\\"/><path fill=\\\"#fff\\\" d=\\\"M50.23 51.691c-.296-.2-.695-.66-.887-1.023c-.37-.702-1.093-1.469-1.828-1.941c-.508-.326-.787-1.303-.478-1.675c.103-.124.539-.32.969-.436c.43-.115.853-.274.94-.352c.087-.079.166-.644.176-1.256c.059-3.748.088-3.84 1.235-3.84c1.36 0 2.28 1.625 1.833 3.237c-.317 1.143-.254 1.39.356 1.386c.932-.004.982-.111 1.024-2.166c.064-3.1.743-4.086 2.302-3.343c.988.472 1.134 1.75.458 4.025c-.222.744.217 3.825.676 4.755c.259.524-.018 1.26-.501 1.329c-.22.031-.58-.122-.877-.372c-.278-.234-.563-.425-.635-.425c-.071 0-.336-.297-.588-.66c-.438-.634-.94-.848-1.157-.496c-.056.09-.439.25-.85.353c-.722.182-.746.208-.655.703c.272 1.466.274 2.05.012 2.313c-.358.359-.876.32-1.524-.116zm16.74-2.294c-.358-.208-1.056-.985-1.365-1.52c-.11-.192-.204-.706-.207-1.144c-.008-1.17.483-1.907.738-1.105c.241.76 1.136 1.102 1.557.593c.34-.41-.229-1.368-1.639-2.76c-1.268-1.25-1.323-1.335-1.323-2.055c0-1.117.32-1.58 1.467-2.129c.954-.455 1.036-.468 1.71-.252c.915.294 1.99 1.33 1.916 1.846c-.045.323-.15.38-.714.38c-.364 0-.754.06-.868.133c-.337.219-.235.718.207 1.008c.407.266.413.264.413-.199c0-.454.043-.478 1.446-.788l1.445-.32l.118-1.3c.199-2.188.831-2.62 2.08-1.42c.381.367.705.757.719.867c.014.11.033.312.042.449c.013.204.265.238 1.441.19c1.372-.055 1.444-.04 1.94.413c.354.323.528.648.557 1.037c.036.478-.042.624-.508.942c-.302.207-1.288.612-2.189.9c-1.294.412-1.639.587-1.639.827c0 .168.085 1.048.188 1.957c.213 1.87.077 2.482-.62 2.8c-.614.28-.776.236-1.355-.362c-.678-.699-.888-1.436-.752-2.65c.125-1.123.052-1.208-.976-1.126l-.732.058l.24.687c.155.444.208 1.01.15 1.596c-.075.768-.174.982-.636 1.38c-1.369 1.177-2.155 1.47-2.85 1.067zm-6.73-.138c-.793-.137-1.945-1.028-2.639-2.042c-.495-.724-.551-.922-.54-1.9c.016-1.273.412-2.753.907-3.382c.392-.499 1.587-1.098 2.19-1.098c.366 0 1.213.311 2.508.922c1.118.526 1.312.854 1.558 2.623l.182 1.305l-.603 1.285c-.332.706-.77 1.441-.974 1.632c-.48.451-1.815.789-2.589.655m.417-3.124c.594-.226.892-1.205.533-1.752c-.146-.224-.362-.407-.48-.407c-.658 0-1.354 1.562-.925 2.078c.23.277.33.287.872.08zm-9.325-8.313c-.316-.21-.743-.735-.975-1.198c-.376-.752-.409-.987-.368-2.625l.044-1.8l-.994-.954c-.547-.526-.995-.986-.995-1.022c0-.036-.149-.762-.33-1.612c-.182-.85-.331-1.94-.331-2.422c0-.754.058-.913.418-1.15c.654-.427 1.369-.14 2.005.806c.422.628.545 1.015.638 2.015c.123 1.304.34 1.673.884 1.5c.325-.102 1.267-1.08 1.603-1.662c.17-.295.21-.29.936.136c.549.321.813.607.952 1.027c.172.52.147.659-.229 1.3a6.195 6.195 0 0 1-1.046 1.267c-.344.302-.635.703-.645.89c-.08 1.402-.428 5.503-.482 5.67c-.1.305-.455.251-1.085-.166m6.04-1.182c-.768-.335-1.823-1.635-2.06-2.537c-.25-.956-.234-4.899.023-5.923c.1-.4.269-.726.373-.726c.316 0 1.402.808 1.614 1.201c.118.217.213 1.176.232 2.333c.028 1.694.073 1.988.327 2.13c.224.126.348.093.516-.137c.122-.167.222-.419.223-.56c.002-.142.187-.837.413-1.545c.226-.707.419-1.637.428-2.065c.035-1.645.397-2.013 1.263-1.284c1.012.851 1.065 2.773.18 6.536c-.352 1.502-.705 2.016-1.74 2.541c-.634.32-1.116.33-1.793.036zm5.678-.351c-.882-.46-1.045-.793-.822-1.68c.495-1.968.591-4.307.26-6.31c-.106-.643-.075-.757.277-1.028c.218-.168.555-.307.748-.309c.468-.005 1.549 1.188 2.018 2.227c.685 1.52.934 1.953 1.081 1.885c.08-.037.165-1.184.189-2.548c.038-2.187.086-2.563.408-3.18c.2-.386.468-.7.593-.7c.126 0 .434.315.684.702c.25.386.524.75.607.81c.083.06.123.915.089 1.9a75.503 75.503 0 0 0-.04 3.196c.08 4.639.054 4.903-.502 5.114c-.527.2-1.358-.206-2.358-1.152c-.479-.452-.935-.822-1.015-.822c-.08 0-.278.427-.441.95c-.477 1.526-.568 1.574-1.776.945m8.869-1.426c-1.54-.834-2.063-1.597-2.187-3.19c-.099-1.266.44-3.513 1.026-4.281c.23-.301.417-.63.417-.73c0-.101.33-.41.732-.687c.94-.646 1.81-.674 2.677-.086c1.216.825 1.393 1.463 1.444 5.2c.02 1.445-.016 1.633-.445 2.363c-.257.437-.632.856-.833.933c-.202.077-.458.249-.569.383c-.243.293-1.778.358-2.262.095m1.638-3.994c.548-1.098.475-1.802-.197-1.898c-.298-.043-.428.085-.678.667c-.466 1.088-.577 1.756-.339 2.043c.355.427.715.186 1.214-.812\\\"/></g>\"\n\t\t},\n\t\t\"zend\": {\n\t\t\t\"body\": \"<path fill=\\\"#68b604\\\" d=\\\"M53.31 81.33c-8.483.03-16.966.146-25.449.146h-1.22c11.721-16.458 23.28-32.038 34.92-47.992c-.395-.026-.584-.114-.776-.114c-18.362-.002-36.722-.03-55.084-.044c-.645 0-.866.15-.861.83c.032 3.795.016 7.582.016 11.377c0 1.082.001 1.08 1.097 1.08c9.292 0 18.585-.002 27.877 0c.365 0 .733.05 1.293.09L0 94.623l.6.034c17.637 0 35.273-.004 52.91.017c.72 0 .817-.29.813-.89c-.018-3.85-.03-7.638.01-11.489c.007-.8-.213-.968-1.023-.965m73.685-47.19c-16.634.002-33.27-.02-49.905.033a22.688 22.688 0 0 0-5.524.703c-6.42 1.65-11.557 8.617-11.305 15.28c.026.732.453.461.894.461h25.538c4.299 0 8.596.186 12.895.16c4.685-.028 9.38.161 14.052-.117c4.837-.287 8.7-2.528 11.368-6.662c1.792-2.78 2.586-5.866 2.979-9.107c.107-.887-.46-.75-.992-.75zm-25.379 21.74c-8.424-.003-16.849-.009-25.273.003c-2.714.003-5.328.532-7.719 1.84c-5.558 3.048-7.695 8.149-8.351 14.117c-.085.788.39.766.93.765c4.436-.007 8.87-.004 13.307-.004c1.506 0 3.013.021 4.519-.004c3.315-.056 6.649.07 9.936-.254c4.276-.424 7.752-2.507 10.224-6.087c1.943-2.814 2.915-5.978 3.253-9.363c.099-.993.138-1.013-.826-1.013M84.737 77.523c-2.564.016-5.13-.025-7.694.021a26.058 26.058 0 0 0-3.567.308c-9.213 1.436-12.652 9.146-13.202 15.724c-.05.589.161.784.75.772c1.532-.032 3.066-.011 4.6-.011l.005.084c2.084-.092 4.19-.037 6.252-.303c7.746-.997 13.66-7.986 13.601-15.904c-.007-.59-.236-.694-.745-.691\\\"/>\"\n\t\t},\n\t\t\"zend-wordmark\": {\n\t\t\t\"body\": \"<path fill=\\\"#68b604\\\" d=\\\"M53.329 57.608c-8.468.03-16.936.213-25.404.213h-1.218C38.408 41.392 49.945 25.774 61.565 9.847c-.394-.027-.584-.148-.774-.148c-18.329-.002-36.657-.047-54.987-.061c-.643 0-.864.14-.858.819c.032 3.788.015 7.564.015 11.353c0 1.08.001 1.075 1.096 1.075c9.276.001 18.552-.003 27.828.001c.365 0 .73.048 1.29.089L.114 70.81l.6.034c17.605.001 35.21-.003 52.814.017c.72.001.815-.288.812-.889c-.018-3.844-.03-7.59.01-11.434c.006-.8-.212-.932-1.021-.93m6.938-31.118c.027.73.454.527.892.527h25.493c4.29 0 8.581.12 12.872.094c4.677-.028 9.364.127 14.028-.15c4.83-.287 8.686-2.542 11.347-6.667c1.79-2.775 2.582-5.864 2.974-9.1c.107-.885-.46-.763-.989-.763c-16.605.001-33.21-.018-49.817.035c-1.841.007-3.73.196-5.514.655c-6.41 1.645-11.537 8.719-11.286 15.37zm16.055 5.649c-2.71.003-5.32.53-7.704 1.839c-5.55 3.041-7.682 8.133-8.337 14.09c-.086.787.39.766.93.765c4.427-.008 8.853-.005 13.28-.005c1.504 0 3.008.022 4.512-.004c3.308-.055 6.637.071 9.92-.254c4.268-.423 7.737-2.503 10.205-6.076c1.94-2.808 2.909-5.968 3.246-9.347c.099-.99.139-1.011-.825-1.012c-8.41-.001-16.819-.006-25.227.004m9.12 22.293c-.004-.59-.234-.694-.742-.69c-2.56.016-5.122-.024-7.682.021a26.133 26.133 0 0 0-3.56.307c-9.197 1.434-12.629 9.13-13.18 15.697c-.048.588.163.782.75.77c1.53-.031 3.061-.012 4.592-.012l.003.086c2.082-.093 4.183-.037 6.242-.303c7.733-.997 13.636-7.972 13.577-15.877zm-52.533 49.937c-.095-.287-.24-.38-.526-.376c-.963.012-1.925.018-2.888-.003c-.351-.007-.501.118-.611.452c-1.24 3.795-2.498 7.585-3.753 11.374c-.205.615-.42 1.226-.667 1.95l-4.394-5.668l.31-.211c1.284-.753 2.137-1.806 2.299-3.33c.202-1.891-.338-3.433-2.408-4.218a5.08 5.08 0 0 0-1.653-.303c-2.062-.043-4.126-.026-6.188-.044c-.337-.003-.483.072-.482.457c.012 4.4.012 8.801 0 13.202c0 .359.13.438.457.43c.81-.024 1.62-.023 2.429.002c.41.015.557-.087.548-.527c-.028-1.405-.014-2.812-.004-4.217c.001-.15.04-.368.14-.436c.327-.22 1.185.007 1.43.336c1.112 1.496 2.218 2.996 3.347 4.479c.127.168.38.339.577.34c2.185.025 4.37.01 6.555.023c.294.002.4-.117.47-.373l.614-2.106c.085-.314.246-.443.581-.438c1.192.016 2.384.015 3.575 0c.342-.005.482.138.567.452c.191.707.406 1.406.638 2.099c.047.14.213.339.33.342c1.05.026 2.102.015 3.192.015l-.064-.338c-1.476-4.452-2.955-8.907-4.421-13.365m-14.821 5.78c-.792.216-1.649.204-2.48.26c-.07.005-.22-.224-.227-.349c-.024-.55-.01-1.099-.01-1.649c0-.518.006-1.039-.003-1.558c-.004-.234.053-.397.321-.386c.715.028 1.439.004 2.142.11c.84.124 1.29.664 1.36 1.436c.095 1.051-.261 1.904-1.103 2.135zm11.313 2.092c.48-1.027.94-2.886 1.399-4.402l.14-.109c.461 1.517.922 3.485 1.405 4.512zm55.75-8.245c-.84.006-1.682.025-2.52-.01c-.401-.016-.526.157-.598.505c-.491 2.37-.992 4.737-1.493 7.105c-.124.582-.257 1.162-.386 1.74a.821.821 0 0 1-.228-.434c-.666-2.831-1.336-5.661-1.985-8.495c-.075-.329-.22-.418-.528-.413c-.824.012-1.651.024-2.475-.006c-.382-.013-.535.132-.62.488c-.548 2.295-1.11 4.588-1.672 6.88c-.16.65-.333 1.296-.5 1.944l-.134-.006c-.109-.511-.225-1.021-.327-1.535c-.495-2.461-.983-4.924-1.49-7.384c-.028-.14-.204-.352-.314-.355c-1.065-.028-2.131-.016-3.227-.016l.05.408c1.1 4.433 2.202 8.867 3.299 13.301c.064.26.178.376.469.37a55.243 55.243 0 0 1 2.887.004c.383.012.53-.113.616-.476c.543-2.265 1.105-4.526 1.664-6.787c.112-.453.239-.902.36-1.353l.114.017l.12.387c.665 2.58 1.335 5.158 1.981 7.745c.086.347.214.475.577.465a59.573 59.573 0 0 1 2.842 0c.333.008.48-.093.562-.424l3.286-13.258c.082-.338-.037-.409-.33-.407m-32.15.472c0-.356-.11-.484-.473-.477c-.993.02-1.987.02-2.98-.001c-.356-.007-.542.103-.687.443c-.796 1.866-1.62 3.721-2.434 5.58l-.44.949l-.283-.56c-.88-1.997-1.764-3.992-2.631-5.994c-.127-.294-.28-.422-.61-.416a98.864 98.864 0 0 1-3.071.002c-.334-.005-.487.066-.486.455c.014 4.4.013 8.801.001 13.203c0 .357.126.44.454.43a34.217 34.217 0 0 1 2.247.003c.411.018.695-.092.692-.53c-.022-2.735.135-5.47.135-8.206v-.473c0 .139.12.293.187.455c.68 1.633 1.297 3.262 1.956 4.904c.15.374.312.515.71.486c.456-.034.9-.024 1.357-.002c.308.014.457-.104.571-.388c.408-1.02.835-2.03 1.258-3.044l1.01-2.44l.14.023v.482c0 2.735.015 5.47 0 8.206c-.002.386.08.545.505.528c.795-.03 1.59-.03 2.385-.002c.353.01.487-.086.486-.457c-.01-4.386-.008-8.773.001-13.159m57.301 7.55l.111-.078c1.413-.791 2.28-1.943 2.41-3.599c.123-1.567-.324-2.87-1.79-3.72c-.705-.407-1.481-.578-2.278-.59c-2.062-.03-4.125-.02-6.186-.038c-.34-.004-.483.076-.482.458c.013 4.4.012 8.8 0 13.2c0 .353.124.439.454.43a39.02 39.02 0 0 1 2.474.004c.422.018.51-.134.503-.524c-.021-1.421-.01-2.842-.001-4.262c0-.137.033-.334.125-.398c.299-.207 1.18.008 1.402.307c1.112 1.495 2.227 2.987 3.33 4.49c.197.268.402.397.755.387c1.053-.026 2.108-.009 3.162-.01l.508-.028l-4.579-5.914zm-2.612-1.685c-.587.071-1.185.064-1.776.105c-.33.023-.42-.126-.408-.432c.019-.518.005-1.037.005-1.556c0-.55-.014-1.099.013-1.647c.005-.115.168-.32.256-.32c.73.006 1.47-.02 2.183.098c.978.165 1.415.827 1.368 1.853c-.047 1.014-.688 1.782-1.641 1.9zm-12.204-6.345c-1.063-.317-2.148-.383-3.256-.249c-1.494.182-2.793.74-3.82 1.86c-1.407 1.535-1.81 3.41-1.877 5.422c.083.71.112 1.432.259 2.127c.47 2.227 1.632 3.925 3.825 4.784c.998.39 2.043.447 3.103.427c2.603-.049 4.77-1.54 5.653-3.986c.777-2.152.782-4.349.066-6.508c-.64-1.94-1.956-3.286-3.953-3.877m.297 10.159c-.537 1.008-1.332 1.605-2.507 1.616c-1.198.012-2.051-.576-2.536-1.625a6.671 6.671 0 0 1-.57-1.955c-.17-1.401-.127-2.805.485-4.123c.396-.853.987-1.505 1.95-1.713c1.322-.285 2.493.261 3.142 1.472c.547 1.022.697 2.132.66 3.275c.029 1.067-.113 2.095-.624 3.053m31.806 3.292c-1.476-2.172-2.947-4.348-4.438-6.51c-.209-.303-.216-.504.009-.799c1.4-1.833 2.78-3.681 4.166-5.523l.454-.603c-1.32 0-2.538-.01-3.756.016c-.136.002-.302.181-.4.318c-1.03 1.441-2.048 2.891-3.07 4.338l-1.01 1.487l-.098-.04v-.486c0-1.712-.057-3.423-.034-5.134c.005-.414-.153-.526-.546-.512a33.15 33.15 0 0 1-2.349-.002c-.429-.017-.58.1-.578.556c.018 4.34.012 8.679 0 13.02c0 .39.081.54.502.523a30.007 30.007 0 0 1 2.381-.001c.41.015.56-.089.549-.528c-.031-1.177.033-2.356-.027-3.53c-.036-.707.295-1.176.75-1.686l.284.373c1.042 1.58 2.1 3.15 3.111 4.752c.286.45.58.649 1.13.623c1.092-.05 2.189-.016 3.38-.016zm-62.758-13.45c-2.78.016-5.561.016-8.342-.001c-.44-.003-.528.153-.525.557c.018 2.17.009 4.34.009 6.508l-.001 6.555c0 .255-.03.477.358.475c2.887-.013 5.775-.01 8.662-.001c.295 0 .362-.123.357-.386c-.012-.58-.027-1.163.004-1.74c.022-.398-.131-.488-.499-.484c-1.665.017-3.33 0-4.995.014c-.353.003-.488-.102-.477-.47a51.19 51.19 0 0 0-.001-2.751c-.013-.4.103-.528.513-.52c1.497.022 2.994-.002 4.491.015c.345.004.458-.111.446-.45a22.181 22.181 0 0 1 0-1.694c.015-.364-.118-.469-.478-.463c-1.45.017-2.65.007-4.102.007c-.61 0-.358-.001-.358-.589v-1.375c0-.64-.252-.642.413-.642c1.604-.001 3.081-.012 4.685.006c.385.005.446-.123.425-.5c-.029-.518-.066-1.04-.03-1.558c.027-.418-.166-.515-.555-.512zm-54.747.502c.019-.378-.116-.502-.497-.5c-2.75.013-5.5.013-8.251-.001c-.39-.002-.487.132-.484.503c.016 2.185.007 4.371.007 6.556c0 2.17.009 4.341-.008 6.511c-.003.386.076.544.501.527c.81-.033 1.62-.033 2.43 0c.424.018.506-.139.502-.527c-.02-1.71 0-3.422-.016-5.134c-.003-.375.104-.503.49-.498l4.4.017c.372.005.482-.123.468-.474c-.023-.55-.023-1.1.002-1.649c.02-.39-.13-.49-.503-.486l-4.354.015c-.37.004-.523-.09-.503-.485c.03-.564.008-1.131.008-1.695c0-.613 0-.616.598-.617c1.559-.002 3.118-.01 4.676.006c.385.004.562-.089.535-.51c-.028-.52-.028-1.04 0-1.56zm20.44-8.284l-.119.014l-.252-.472c-1.69-3.388-3.381-6.773-5.06-10.165c-.163-.33-.348-.484-.731-.456c-.502.037-1.01.034-1.513.001c-.417-.027-.544.1-.543.531c.018 4.142.01 8.284.01 12.425c0 1.148 0 1.131 1.17 1.143c.412.003.494-.135.492-.53c-.014-3.637-.022-7.275-.023-10.912v-.541l.125-.029l.206.339c1.75 3.476 3.545 6.933 5.227 10.441c.453.945.95 1.404 2.019 1.238c.617-.098.637-.02.637-.636V86.22c0-1.088-.005-1.066-1.078-1.095c-.433-.01-.539.13-.537.542c.016 3.348.009 6.694.007 10.04zm4.599 2.522c0 .294.027.501.41.491c1.632-.048 3.272.001 4.895-.136c1.96-.166 3.475-1.164 4.491-2.866c1.06-1.775 1.242-3.7.902-5.698c-.503-2.957-2.58-5.06-5.9-5.284c-1.414-.096-2.838-.056-4.256-.108c-.421-.015-.552.11-.548.535c.019 2.17.009 4.34.01 6.51c0 2.185.002 4.37-.004 6.556m1.8-11.79l.039-.217c1.39.01 2.778-.139 4.118.37c1.743.663 2.661 1.973 2.954 3.762c.192 1.172.151 2.342-.177 3.49c-.512 1.797-2.046 3.089-3.904 3.248c-.88.075-1.767.067-2.652.104c-.256.012-.389-.052-.388-.35c.008-3.467.006-6.938.01-10.406zM19.166 99.214c1.143-.003.966.164 1.008-.99c.018-.453-.146-.567-.577-.562c-1.91.02-3.82 0-5.73.015c-.384.003-.534-.096-.527-.514c.025-1.466.01-2.933.011-4.4l.027-.219c.189-.008.352.189.516.189h4.768c1.057 0 1.042-.213 1.053-1.286c.004-.39-.101-.634-.514-.629c-1.802.022-3.605-.05-5.408-.039c-.332.002-.457-.121-.45-.47c.02-1.023.023-2.06-.001-3.084c-.008-.383.117-.502.494-.499c1.741.018 3.484.003 5.225.003c1.124 0 1.108 0 1.112-1.109c.001-.385-.125-.491-.5-.488c-2.522.014-5.042.015-7.563-.004c-.42-.003-.543.108-.541.535c.015 4.339.015 8.678 0 13.017c-.001.418.115.55.538.545c2.353-.017 4.706-.003 7.059-.01zm-10.582.002c1.024 0 1.002 0 1.027-1.013c.01-.43-.133-.544-.547-.54c-2.17.017-4.34.009-6.51.005c-.183 0-.365-.04-.614-.07l.297-.454c2.17-3.123 4.325-6.26 6.528-9.358c.477-.673.727-1.329.669-2.152c-.029-.408-.138-.507-.532-.504c-2.505.015-5.012.008-7.518.008c-1.08 0-1.062 0-1.084 1.081c-.009.405.107.445.513.44c2.002-.02 4.005-.086 6.007-.086h.636c-.149 0-.224.465-.315.596c-2.157 3.114-4.3 6.276-6.484 9.37c-.454.644-.695 1.292-.652 2.084c.025.466.147.598.603.594c2.657-.02 5.317 0 7.976 0z\\\"/>\"\n\t\t},\n\t\t\"zig\": {\n\t\t\t\"body\": \"<g fill=\\\"#f7a41d\\\"><path d=\\\"m38.484 23.843l-15.06 18.405l-7.529-11.712z\\\"/><path d=\\\"m38.484 23.843l-10.876 9.203l-4.183 9.202h-5.02v42.667h7.53l-9.203 4.183l-6.693 14.222H0V23.843z\\\"/><path d=\\\"M25.935 84.915L10.039 103.32l-6.693-9.202zM46.85 23.843l5.02 11.713l-20.916 6.692z\\\"/><path d=\\\"M46.85 23.843h46.013v18.405H30.954L46.85 32.21zm50.196 61.072L81.15 103.32l-5.856-10.875z\\\"/><path d=\\\"m97.046 84.915l-13.386 7.53l-2.51 10.875H35.137V84.915z\\\"/><path d=\\\"M125.49 5.438L43.503 103.32L2.51 122.562l81.987-98.719zm-7.53 18.405l-.836 15.06l-15.059 4.182z\\\"/><path d=\\\"M128 23.843v79.477H88.68l11.712-10.039l4.183-8.366h5.02v-41.83h-7.53l8.366-7.53l7.53-11.712z\\\"/><path d=\\\"m104.575 84.915l4.183 12.55l-20.078 5.855z\\\"/></g>\"\n\t\t},\n\t\t\"zig-wordmark\": {\n\t\t\t\"body\": \"<g fill=\\\"#f7a41d\\\"><path d=\\\"m14.865 48.489l-5.817 7.11l-2.908-4.525z\\\"/><path d=\\\"m14.865 48.489l-4.201 3.554l-1.616 3.555H7.11v16.48h2.909l-3.555 1.617l-2.585 5.493H0v-30.7z\\\"/><path d=\\\"m10.018 72.079l-6.14 7.11l-2.585-3.556zm8.078-23.59l1.94 4.524l-8.08 2.585z\\\"/><path d=\\\"M18.096 48.489H35.87v7.11H11.957l6.14-3.879zm19.389 23.59l-6.14 7.11l-2.261-4.202z\\\"/><path d=\\\"m37.485 72.079l-5.17 2.908l-.97 4.201H13.573v-7.11z\\\"/><path d=\\\"m48.473 41.38l-31.67 37.808L.97 86.621l31.67-38.132zm-2.909 7.109l-.323 5.817l-5.817 1.615z\\\"/><path d=\\\"M49.442 48.489v30.7H34.254l4.524-3.879l1.616-3.231h1.939V55.92h-2.909l3.232-2.908l2.908-4.524z\\\"/><path d=\\\"m40.394 72.079l1.616 4.847l-7.756 2.262z\\\"/></g><g fill=\\\"#fff\\\"><path d=\\\"M84.02 48.489v4.847l-10.018.97H57.198v-5.817z\\\"/><path d=\\\"M84.02 53.336L66.891 73.371v1.293H56.875l17.127-20.358v-.97z\\\"/><path d=\\\"M84.342 73.371v5.817H56.875v-4.524l9.694-1.293zm3.555-24.882h7.11v30.7h-7.11zm39.424 14.541v12.603h-5.816v-8.078L116.335 64l-4.525-.97z\\\"/><path d=\\\"m116.334 63.354l5.17 4.2l-9.694-4.523z\\\"/><path d=\\\"M127.321 75.633c-3.296 2.36-7.755 3.878-12.182 3.878c-9.372 0-16.513-6.721-16.513-15.608c0-8.822 7.27-15.543 16.803-15.543c4.621 0 9.436 1.777 12.571 4.524l-4.201 4.847c-2.294-2.036-5.429-3.232-8.37-3.232c-5.493 0-9.759 4.17-9.759 9.533c0 5.43 4.298 9.566 9.792 9.566c1.842 0 4.136-.744 6.14-1.778z\\\"/></g>\"\n\t\t}\n\t},\n\t\"aliases\": {\n\t\t\"3dsmax\": {\n\t\t\t\"parent\": \"threedsmax\"\n\t\t}\n\t},\n\t\"width\": 128,\n\t\"height\": 128\n}"
  },
  {
    "path": "modules/blox/data/icons/hb.yaml",
    "content": "# HugoBlox Kit Icon Library\n\nicons:\n  # Callouts\n  exclamation-triangle: <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"1.5\" stroke=\"currentColor\" class=\"w-6 h-6\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z\" /></svg>\n\n  # Skills\n  python: <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"1em\" viewBox=\"0 0 448 512\" fill=\"currentColor\"><path d=\"M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z\"/></svg>\n\n  # Extras\n  markdown: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M20.56 18H3.44C2.65 18 2 17.37 2 16.59V7.41C2 6.63 2.65 6 3.44 6h17.12c.79 0 1.44.63 1.44 1.41v9.18c0 .78-.65 1.41-1.44 1.41M6.81 15.19v-3.66l1.92 2.35l1.92-2.35v3.66h1.93V8.81h-1.93l-1.92 2.35l-1.92-2.35H4.89v6.38h1.92M19.69 12h-1.92V8.81h-1.92V12h-1.93l2.89 3.28L19.69 12Z\"/></svg>\n  warning: <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.5\" viewBox=\"0 0 24 24\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z\"></path></svg>\n  card: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 15 15\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M14 11V4H1v7h13Zm1-7v7a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1ZM2 5.25A.25.25 0 0 1 2.25 5h3.5a.25.25 0 0 1 .25.25v4.5a.25.25 0 0 1-.25.25h-3.5A.25.25 0 0 1 2 9.75v-4.5ZM7.5 7a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM7 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM7.5 5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\" clip-rule=\"evenodd\"/></svg>\n  folder-tree: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"><path fill=\"currentColor\" d=\"m 114.47781,81.538059 c 0,-13.785609 -11.07754,-24.923135 -24.78889,-24.923135 -13.711352,0 -24.788885,11.137526 -24.788885,24.923135 V 355.69254 c 0,27.49333 22.232532,49.84627 49.577775,49.84627 H 263.21112 V 355.69254 H 114.47781 V 181.2306 H 263.21112 V 131.38433 H 114.47781 Z M 288,206.15373 c 0,13.78561 11.07753,24.92314 24.78888,24.92314 h 173.5222 c 13.71135,0 24.78888,-11.13753 24.78888,-24.92314 v -99.69254 c 0,-13.785605 -11.07753,-24.923131 -24.78888,-24.923131 h -76.45822 c -6.58454,0 -12.85923,-2.648083 -17.50715,-7.321171 L 382.04283,63.936095 c -4.64791,-4.673088 -10.9226,-7.321171 -17.50715,-7.321171 h -51.7468 C 299.07753,56.614924 288,67.75245 288,81.538059 Z m 0,224.30821 c 0,13.78561 11.07753,24.92314 24.78888,24.92314 h 173.5222 c 13.71135,0 24.78888,-11.13753 24.78888,-24.92314 V 330.7694 c 0,-13.78561 -11.07753,-24.92313 -24.78888,-24.92313 h -76.45822 c -6.58454,0 -12.85923,-2.64808 -17.50715,-7.32117 l -10.30288,-10.35868 c -4.64791,-4.67309 -10.9226,-7.32117 -17.50715,-7.32117 h -51.7468 C 299.07753,280.84525 288,291.98278 288,305.76838 Z\" style=\"stroke-width:0.776747\" /></svg>\n  one: <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"-1 0 19 19\"><path d=\"M16.417 9.6A7.917 7.917 0 1 1 8.5 1.683 7.917 7.917 0 0 1 16.417 9.6zM9.666 6.508H8.248L6.09 8.09l.806 1.103 1.222-.945v4.816h1.547z\"></path></svg>\n  code-bracket:\n    <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"1.5\" stroke=\"currentColor\" class=\"w-6 h-6\">\n    <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5\" />\n    </svg>\n  circle-stack:\n    <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"1.5\" stroke=\"currentColor\" class=\"w-6 h-6\">\n    <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.25c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125\" />\n    </svg>\n  magnifying-glass: <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"currentColor\" class=\"w-6 h-6\"><path fill-rule=\"evenodd\" d=\"M10.5 3.75a6.75 6.75 0 100 13.5 6.75 6.75 0 000-13.5zM2.25 10.5a8.25 8.25 0 1114.59 5.28l4.69 4.69a.75.75 0 11-1.06 1.06l-4.69-4.69A8.25 8.25 0 012.25 10.5z\" clip-rule=\"evenodd\" /></svg>\n\n  # Phosphor icons\n  cat: <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M96,140a12,12,0,1,1-12-12A12,12,0,0,1,96,140Zm76-12a12,12,0,1,0,12,12A12,12,0,0,0,172,128Zm60-80v88c0,52.93-46.65,96-104,96S24,188.93,24,136V48A16,16,0,0,1,51.31,36.69c.14.14.26.27.38.41L69,57a111.22,111.22,0,0,1,118.1,0L204.31,37.1c.12-.14.24-.27.38-.41A16,16,0,0,1,232,48Zm-16,0-21.56,24.8A8,8,0,0,1,183.63,74,88.86,88.86,0,0,0,168,64.75V88a8,8,0,1,1-16,0V59.05a97.43,97.43,0,0,0-16-2.72V88a8,8,0,1,1-16,0V56.33a97.43,97.43,0,0,0-16,2.72V88a8,8,0,1,1-16,0V64.75A88.86,88.86,0,0,0,72.37,74a8,8,0,0,1-10.81-1.17L40,48v88c0,41.66,35.21,76,80,79.67V195.31l-13.66-13.66a8,8,0,0,1,11.32-11.31L128,180.68l10.34-10.34a8,8,0,0,1,11.32,11.31L136,195.31v20.36c44.79-3.69,80-38,80-79.67Z\"></path></svg>\n  person-simple-walk: <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,80a32,32,0,1,0-32-32A32,32,0,0,0,152,80Zm0-48a16,16,0,1,1-16,16A16,16,0,0,1,152,32Zm64,112a8,8,0,0,1-8,8c-35.31,0-52.95-17.81-67.12-32.12-2.74-2.77-5.36-5.4-8-7.84l-13.43,30.88,37.2,26.57A8,8,0,0,1,160,176v56a8,8,0,0,1-16,0V180.12l-31.07-22.2L79.34,235.19A8,8,0,0,1,72,240a7.84,7.84,0,0,1-3.19-.67,8,8,0,0,1-4.15-10.52l54.08-124.37c-9.31-1.65-20.92,1.2-34.7,8.58a163.88,163.88,0,0,0-30.57,21.77a8,8,0,0,1-10.95-11.66c2.5-2.35,61.69-57.23,98.72-25.08,3.83,3.32,7.48,7,11,10.57C166.19,122.7,179.36,136,208,136A8,8,0,0,1,216,144Z\"></path></svg>\n\n  # Git icons\n  git-fork: <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 24 24\"><path d=\"M6 2C4.89543 2 4 2.89543 4 4C4 4.74028 4.4022 5.38663 5 5.73244V7C5 8.65685 6.34315 10 8 10H10V11.2676C9.4022 11.6134 9 12.2597 9 13C9 14.1046 9.89543 15 11 15C12.1046 15 13 14.1046 13 13C13 12.2597 12.5978 11.6134 12 11.2676V10H14C15.6569 10 17 8.65685 17 7V5.73244C17.5978 5.38663 18 4.74028 18 4C18 2.89543 17.1046 2 16 2C14.8954 2 14 2.89543 14 4C14 4.74028 14.4022 5.38663 15 5.73244V7C15 7.55228 14.5523 8 14 8H8C7.44772 8 7 7.55228 7 7V5.73244C7.5978 5.38663 8 4.74028 8 4C8 2.89543 7.10457 2 6 2ZM6 4C6 3.44772 6.44772 3 7 3C7.55228 3 8 3.44772 8 4C8 4.55228 7.55228 5 7 5C6.44772 5 6 4.55228 6 4ZM11 13C11 12.4477 11.4477 12 12 12C12.5523 12 13 12.4477 13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13ZM16 3C15.4477 3 15 3.44772 15 4C15 4.55228 15.4477 5 16 5C16.5523 5 17 4.55228 17 4C17 3.44772 16.5523 3 16 3Z\"/></svg>\n"
  },
  {
    "path": "modules/blox/data/icons/hero.json",
    "content": "{\n  \"prefix\": \"heroicons\",\n  \"info\": {\n    \"name\": \"HeroIcons\",\n    \"total\": 885,\n    \"version\": \"2.0.18\",\n    \"author\": {\n      \"name\": \"Refactoring UI Inc\",\n      \"url\": \"https://github.com/tailwindlabs/heroicons\"\n    },\n    \"license\": {\n      \"title\": \"MIT\",\n      \"spdx\": \"MIT\",\n      \"url\": \"https://github.com/tailwindlabs/heroicons/blob/master/LICENSE\"\n    },\n    \"samples\": [\"camera\", \"building-library\", \"receipt-refund\"],\n    \"height\": [24, 20],\n    \"category\": \"General\",\n    \"palette\": false\n  },\n  \"lastModified\": 1702312600,\n  \"icons\": {\n    \"academic-cap\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M4.26 10.147a60.436 60.436 0 0 0-.491 6.347A48.627 48.627 0 0 1 12 20.904a48.627 48.627 0 0 1 8.232-4.41a60.46 60.46 0 0 0-.491-6.347m-15.482 0a50.57 50.57 0 0 0-2.658-.813A59.905 59.905 0 0 1 12 3.493a59.902 59.902 0 0 1 10.399 5.84a51.39 51.39 0 0 0-2.658.814m-15.482 0A50.697 50.697 0 0 1 12 13.489a50.702 50.702 0 0 1 7.74-3.342M6.75 15a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m0 0v-3.675A55.378 55.378 0 0 1 12 8.443m-7.007 11.55A5.981 5.981 0 0 0 6.75 15.75v-1.5\\\"/>\"\n    },\n    \"academic-cap-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.664 1.319a.75.75 0 0 1 .672 0a41.059 41.059 0 0 1 8.198 5.424a.75.75 0 0 1-.254 1.285a31.372 31.372 0 0 0-7.86 3.83a.75.75 0 0 1-.84 0a31.508 31.508 0 0 0-2.08-1.287V9.394c0-.244.116-.463.302-.592a35.504 35.504 0 0 1 3.305-2.033a.75.75 0 0 0-.714-1.319a37 37 0 0 0-3.446 2.12A2.216 2.216 0 0 0 6 9.393v.38a31.293 31.293 0 0 0-4.28-1.746a.75.75 0 0 1-.254-1.285a41.059 41.059 0 0 1 8.198-5.424M6 11.459a29.848 29.848 0 0 0-2.455-1.158a41.029 41.029 0 0 0-.39 3.114a.75.75 0 0 0 .419.74c.528.256 1.046.53 1.554.82c-.21.324-.455.63-.739.914a.75.75 0 1 0 1.06 1.06c.37-.369.69-.77.96-1.193a26.61 26.61 0 0 1 3.095 2.348a.75.75 0 0 0 .992 0a26.547 26.547 0 0 1 5.93-3.95a.75.75 0 0 0 .42-.739a41.053 41.053 0 0 0-.39-3.114a29.925 29.925 0 0 0-5.199 2.801a2.25 2.25 0 0 1-2.514 0c-.41-.275-.826-.541-1.25-.797a6.985 6.985 0 0 1-1.084 3.45a26.503 26.503 0 0 0-1.281-.78A5.487 5.487 0 0 0 6 12z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"academic-cap-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M11.7 2.805a.75.75 0 0 1 .6 0A60.65 60.65 0 0 1 22.83 8.72a.75.75 0 0 1-.231 1.337a49.949 49.949 0 0 0-9.902 3.912l-.003.002l-.34.18a.75.75 0 0 1-.707 0A50.009 50.009 0 0 0 7.5 12.174v-.224a.36.36 0 0 1 .172-.311a54.614 54.614 0 0 1 4.653-2.52a.75.75 0 0 0-.65-1.352a56.129 56.129 0 0 0-4.78 2.589a1.858 1.858 0 0 0-.859 1.228a49.803 49.803 0 0 0-4.634-1.527a.75.75 0 0 1-.231-1.337A60.653 60.653 0 0 1 11.7 2.805\\\"/><path d=\\\"M13.06 15.474a48.45 48.45 0 0 1 7.666-3.283a61.14 61.14 0 0 1 .255 4.285a.75.75 0 0 1-.46.71a47.878 47.878 0 0 0-8.105 4.342a.75.75 0 0 1-.832 0a47.877 47.877 0 0 0-8.104-4.342a.75.75 0 0 1-.461-.71c.035-1.442.121-2.87.255-4.286A48.4 48.4 0 0 1 6 13.18v1.27a1.5 1.5 0 0 0-.14 2.508c-.09.38-.222.753-.397 1.11c.452.213.901.434 1.346.661a6.729 6.729 0 0 0 .551-1.608a1.5 1.5 0 0 0 .14-2.67v-.645a48.549 48.549 0 0 1 3.44 1.668a2.25 2.25 0 0 0 2.12 0\\\"/><path d=\\\"M4.462 19.462c.42-.419.753-.89 1-1.394c.453.213.902.434 1.347.661a6.743 6.743 0 0 1-1.286 1.794a.75.75 0 1 1-1.06-1.06\\\"/></g>\"\n    },\n    \"adjustments-horizontal\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M10.5 6h9.75M10.5 6a1.5 1.5 0 1 1-3 0m3 0a1.5 1.5 0 1 0-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-9.75 0h9.75\\\"/>\"\n    },\n    \"adjustments-horizontal-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10 3.75a2 2 0 1 0-4 0a2 2 0 0 0 4 0m7.25.75a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0 0 1.5zM5 3.75a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5a.75.75 0 0 1 .75.75M4.25 17a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0 0 1.5zm13 0a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0 0 1.5zM9 10a.75.75 0 0 1-.75.75h-5.5a.75.75 0 0 1 0-1.5h5.5A.75.75 0 0 1 9 10m8.25.75a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0 0 1.5zM14 10a2 2 0 1 0-4 0a2 2 0 0 0 4 0m-4 6.25a2 2 0 1 0-4 0a2 2 0 0 0 4 0\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"adjustments-horizontal-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M18.75 12.75h1.5a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0 0 1.5M12 6a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 12 6m0 12a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 12 18M3.75 6.75h1.5a.75.75 0 1 0 0-1.5h-1.5a.75.75 0 0 0 0 1.5m1.5 12h-1.5a.75.75 0 0 1 0-1.5h1.5a.75.75 0 0 1 0 1.5M3 12a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 3 12m6-8.25a2.25 2.25 0 1 0 0 4.5a2.25 2.25 0 0 0 0-4.5M12.75 12a2.25 2.25 0 1 1 4.5 0a2.25 2.25 0 0 1-4.5 0M9 15.75a2.25 2.25 0 1 0 0 4.5a2.25 2.25 0 0 0 0-4.5\\\"/>\"\n    },\n    \"adjustments-vertical\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6 13.5V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m12-3V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m-6-9V3.75m0 3.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 9.75V10.5\\\"/>\"\n    },\n    \"adjustments-vertical-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M17 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0zm0 13a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0zM3.75 15a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75M4.5 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0zM10 11a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5A.75.75 0 0 1 10 11m.75-8.25a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0zM10 6a2 2 0 1 0 0 4a2 2 0 0 0 0-4m-6.25 4a2 2 0 1 0 0 4a2 2 0 0 0 0-4m12.5 0a2 2 0 1 0 0 4a2 2 0 0 0 0-4\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"adjustments-vertical-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M6 12a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 1 1 1.5 0v7.5A.75.75 0 0 1 6 12m12 0a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5A.75.75 0 0 1 18 12M6.75 20.25v-1.5a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0m12-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 1.5 0m-6-13.5v-1.5a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0M12 21a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5A.75.75 0 0 1 12 21m-8.25-6a2.25 2.25 0 1 0 4.5 0a2.25 2.25 0 0 0-4.5 0M12 11.25a2.25 2.25 0 1 1 0-4.5a2.25 2.25 0 0 1 0 4.5M15.75 15a2.25 2.25 0 1 0 4.5 0a2.25 2.25 0 0 0-4.5 0\\\"/>\"\n    },\n    \"archive-box\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5M10 11.25h4M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125\\\"/>\"\n    },\n    \"archive-box-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M2 3a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M2 7.5h16l-.811 7.71a2 2 0 0 1-1.99 1.79H4.802a2 2 0 0 1-1.99-1.79zM7 11a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"archive-box-arrow-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5m8.25 3v6.75m0 0l-3-3m3 3l3-3M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125\\\"/>\"\n    },\n    \"archive-box-arrow-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 3a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm0 4.5h16l-.811 7.71a2 2 0 0 1-1.99 1.79H4.802a2 2 0 0 1-1.99-1.79zM10 9a.75.75 0 0 1 .75.75v2.546l.943-1.048a.75.75 0 1 1 1.114 1.004l-2.25 2.5a.75.75 0 0 1-1.114 0l-2.25-2.5a.75.75 0 1 1 1.114-1.004l.943 1.048V9.75A.75.75 0 0 1 10 9\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"archive-box-arrow-down-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"m3.087 9l.54 9.176A3 3 0 0 0 6.62 21h10.757a3 3 0 0 0 2.995-2.824L20.913 9zM12 10.5a.75.75 0 0 1 .75.75v4.94l1.72-1.72a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l1.72 1.72v-4.94a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"archive-box-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"m3.087 9l.54 9.176A3 3 0 0 0 6.62 21h10.757a3 3 0 0 0 2.995-2.824L20.913 9zm6.163 3.75A.75.75 0 0 1 10 12h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"archive-box-x-mark\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m20.25 7.5l-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5m6 4.125l2.25 2.25m0 0l2.25 2.25M12 13.875l2.25-2.25M12 13.875l-2.25 2.25M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125\\\"/>\"\n    },\n    \"archive-box-x-mark-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M2 3a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M2 7.5h16l-.811 7.71a2 2 0 0 1-1.99 1.79H4.802a2 2 0 0 1-1.99-1.79zm5.22 1.72a.75.75 0 0 1 1.06 0L10 10.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L11.06 12l1.72 1.72a.75.75 0 1 1-1.06 1.06L10 13.06l-1.72 1.72a.75.75 0 0 1-1.06-1.06L8.94 12l-1.72-1.72a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"archive-box-x-mark-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"m3.087 9l.54 9.176A3 3 0 0 0 6.62 21h10.757a3 3 0 0 0 2.995-2.824L20.913 9zm6.133 2.845a.75.75 0 0 1 1.06 0l1.72 1.72l1.72-1.72a.75.75 0 1 1 1.06 1.06l-1.72 1.72l1.72 1.72a.75.75 0 1 1-1.06 1.06L12 15.685l-1.72 1.72a.75.75 0 1 1-1.06-1.06l1.72-1.72l-1.72-1.72a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"arrow-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 13.5L12 21m0 0l-7.5-7.5M12 21V3\\\"/>\"\n    },\n    \"arrow-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 3a.75.75 0 0 1 .75.75v10.638l3.96-4.158a.75.75 0 1 1 1.08 1.04l-5.25 5.5a.75.75 0 0 1-1.08 0l-5.25-5.5a.75.75 0 1 1 1.08-1.04l3.96 4.158V3.75A.75.75 0 0 1 10 3\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-down-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m9 12.75l3 3m0 0l3-3m-3 3v-7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"arrow-down-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m.75-11.25a.75.75 0 0 0-1.5 0v4.59L7.3 9.24a.75.75 0 0 0-1.1 1.02l3.25 3.5a.75.75 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02l-1.95 2.1z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-down-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-.53 14.03a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72V8.25a.75.75 0 0 0-1.5 0v5.69l-1.72-1.72a.75.75 0 0 0-1.06 1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-down-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m19.5 4.5l-15 15m0 0h11.25m-11.25 0V8.25\\\"/>\"\n    },\n    \"arrow-down-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M14.78 5.22a.75.75 0 0 0-1.06 0L6.5 12.44V6.75a.75.75 0 0 0-1.5 0v7.5c0 .414.336.75.75.75h7.5a.75.75 0 0 0 0-1.5H7.56l7.22-7.22a.75.75 0 0 0 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-down-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M20.03 3.97a.75.75 0 0 1 0 1.06L6.31 18.75h9.44a.75.75 0 0 1 0 1.5H4.5a.75.75 0 0 1-.75-.75V8.25a.75.75 0 0 1 1.5 0v9.44L18.97 3.97a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-down-on-square\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15M9 12l3 3m0 0l3-3m-3 3V2.25\\\"/>\"\n    },\n    \"arrow-down-on-square-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M13.75 7h-3v5.296l1.943-2.048a.75.75 0 0 1 1.114 1.004l-3.25 3.5a.75.75 0 0 1-1.114 0l-3.25-3.5a.75.75 0 1 1 1.114-1.004l1.943 2.048V7h1.5V1.75a.75.75 0 0 0-1.5 0V7h-3A2.25 2.25 0 0 0 4 9.25v7.5A2.25 2.25 0 0 0 6.25 19h7.5A2.25 2.25 0 0 0 16 16.75v-7.5A2.25 2.25 0 0 0 13.75 7\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-down-on-square-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M12 1.5a.75.75 0 0 1 .75.75V7.5h-1.5V2.25A.75.75 0 0 1 12 1.5m-.75 6v5.69l-1.72-1.72a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72V7.5h3.75a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3v-9a3 3 0 0 1 3-3z\\\"/>\"\n    },\n    \"arrow-down-on-square-stack\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m-6 3.75l3 3m0 0l3-3m-3 3V1.5m6 9h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75\\\"/>\"\n    },\n    \"arrow-down-on-square-stack-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8 1a.75.75 0 0 1 .75.75V6h-1.5V1.75A.75.75 0 0 1 8 1m-.75 5v3.296l-.943-1.048a.75.75 0 1 0-1.114 1.004l2.25 2.5a.75.75 0 0 0 1.114 0l2.25-2.5a.75.75 0 0 0-1.114-1.004L8.75 9.296V6h2A2.25 2.25 0 0 1 13 8.25v4.5A2.25 2.25 0 0 1 10.75 15h-5.5A2.25 2.25 0 0 1 3 12.75v-4.5A2.25 2.25 0 0 1 5.25 6zM7 16.75v-.25h3.75a3.75 3.75 0 0 0 3.75-3.75V10h.25A2.25 2.25 0 0 1 17 12.25v4.5A2.25 2.25 0 0 1 14.75 19h-5.5A2.25 2.25 0 0 1 7 16.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-down-on-square-stack-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M9.75 6.75h-3a3 3 0 0 0-3 3v7.5a3 3 0 0 0 3 3h7.5a3 3 0 0 0 3-3v-7.5a3 3 0 0 0-3-3h-3V1.5a.75.75 0 0 0-1.5 0zm0 0h1.5v5.69l1.72-1.72a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l1.72 1.72z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M7.151 21.75a2.999 2.999 0 0 0 2.599 1.5h7.5a3 3 0 0 0 3-3v-7.5a3 3 0 0 0-1.5-2.599v7.099a4.5 4.5 0 0 1-4.5 4.5z\\\"/></g>\"\n    },\n    \"arrow-down-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m4.5 4.5l15 15m0 0V8.25m0 11.25H8.25\\\"/>\"\n    },\n    \"arrow-down-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M6.28 5.22a.75.75 0 0 0-1.06 1.06l7.22 7.22H6.75a.75.75 0 0 0 0 1.5h7.5a.747.747 0 0 0 .75-.75v-7.5a.75.75 0 0 0-1.5 0v5.69z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-down-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.97 3.97a.75.75 0 0 1 1.06 0l13.72 13.72V8.25a.75.75 0 0 1 1.5 0V19.5a.75.75 0 0 1-.75.75H8.25a.75.75 0 0 1 0-1.5h9.44L3.97 5.03a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25a.75.75 0 0 1 .75.75v16.19l6.22-6.22a.75.75 0 1 1 1.06 1.06l-7.5 7.5a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 1 1 1.06-1.06l6.22 6.22V3a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-down-tray\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3\\\"/>\"\n    },\n    \"arrow-down-tray-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M10.75 2.75a.75.75 0 0 0-1.5 0v8.614L6.295 8.235a.75.75 0 1 0-1.09 1.03l4.25 4.5a.75.75 0 0 0 1.09 0l4.25-4.5a.75.75 0 0 0-1.09-1.03l-2.955 3.129z\\\"/><path d=\\\"M3.5 12.75a.75.75 0 0 0-1.5 0v2.5A2.75 2.75 0 0 0 4.75 18h10.5A2.75 2.75 0 0 0 18 15.25v-2.5a.75.75 0 0 0-1.5 0v2.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-down-tray-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25a.75.75 0 0 1 .75.75v11.69l3.22-3.22a.75.75 0 1 1 1.06 1.06l-4.5 4.5a.75.75 0 0 1-1.06 0l-4.5-4.5a.75.75 0 1 1 1.06-1.06l3.22 3.22V3a.75.75 0 0 1 .75-.75m-9 13.5a.75.75 0 0 1 .75.75v2.25a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5V16.5a.75.75 0 0 1 1.5 0v2.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V16.5a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18\\\"/>\"\n    },\n    \"arrow-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M17 10a.75.75 0 0 1-.75.75H5.612l4.158 3.96a.75.75 0 1 1-1.04 1.08l-5.5-5.25a.75.75 0 0 1 0-1.08l5.5-5.25a.75.75 0 1 1 1.04 1.08L5.612 9.25H16.25A.75.75 0 0 1 17 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-left-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m11.25 9l-3 3m0 0l3 3m-3-3h7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"arrow-left-circle-20-solid\": {\n      \"body\": \"<g fill=\\\"none\\\"><g clip-path=\\\"url(#heroiconsArrowLeftCircle20Solid0)\\\"><path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m3.25-7.25a.75.75 0 0 0 0-1.5H8.66l2.1-1.95a.75.75 0 1 0-1.02-1.1l-3.5 3.25a.75.75 0 0 0 0 1.1l3.5 3.25a.75.75 0 0 0 1.02-1.1l-2.1-1.95z\\\" clip-rule=\\\"evenodd\\\"/></g><defs><clipPath id=\\\"heroiconsArrowLeftCircle20Solid0\\\"><path fill=\\\"#fff\\\" d=\\\"M0 0h20v20H0z\\\"/></clipPath></defs></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-left-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-4.28 9.22a.75.75 0 0 0 0 1.06l3 3a.75.75 0 1 0 1.06-1.06l-1.72-1.72h5.69a.75.75 0 0 0 0-1.5h-5.69l1.72-1.72a.75.75 0 0 0-1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-left-on-rectangle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15M12 9l-3 3m0 0l3 3m-3-3h12.75\\\"/>\"\n    },\n    \"arrow-left-on-rectangle-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M3 4.25A2.25 2.25 0 0 1 5.25 2h5.5A2.25 2.25 0 0 1 13 4.25v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h5.5a.75.75 0 0 0 .75-.75v-2a.75.75 0 0 1 1.5 0v2A2.25 2.25 0 0 1 10.75 18h-5.5A2.25 2.25 0 0 1 3 15.75z\\\"/><path d=\\\"M19 10a.75.75 0 0 0-.75-.75H8.704l1.048-.943a.75.75 0 1 0-1.004-1.114l-2.5 2.25a.75.75 0 0 0 0 1.114l2.5 2.25a.75.75 0 1 0 1.004-1.114l-1.048-.943h9.546A.75.75 0 0 0 19 10\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-left-on-rectangle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.5 3.75A1.5 1.5 0 0 0 6 5.25v13.5a1.5 1.5 0 0 0 1.5 1.5h6a1.5 1.5 0 0 0 1.5-1.5V15a.75.75 0 0 1 1.5 0v3.75a3 3 0 0 1-3 3h-6a3 3 0 0 1-3-3V5.25a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3V9A.75.75 0 0 1 15 9V5.25a1.5 1.5 0 0 0-1.5-1.5zm5.03 4.72a.75.75 0 0 1 0 1.06l-1.72 1.72h10.94a.75.75 0 0 1 0 1.5H10.81l1.72 1.72a.75.75 0 1 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06l3-3a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.03 3.97a.75.75 0 0 1 0 1.06l-6.22 6.22H21a.75.75 0 0 1 0 1.5H4.81l6.22 6.22a.75.75 0 1 1-1.06 1.06l-7.5-7.5a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-long-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 17.25L12 21m0 0l-3.75-3.75M12 21V3\\\"/>\"\n    },\n    \"arrow-long-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2a.75.75 0 0 1 .75.75v12.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 1 1 1.1-1.02l1.95 2.1V2.75A.75.75 0 0 1 10 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-long-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25a.75.75 0 0 1 .75.75v16.19l2.47-2.47a.75.75 0 1 1 1.06 1.06l-3.75 3.75a.75.75 0 0 1-1.06 0l-3.75-3.75a.75.75 0 1 1 1.06-1.06l2.47 2.47V3a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-long-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6.75 15.75L3 12m0 0l3.75-3.75M3 12h18\\\"/>\"\n    },\n    \"arrow-long-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18 10a.75.75 0 0 1-.75.75H4.66l2.1 1.95a.75.75 0 1 1-1.02 1.1l-3.5-3.25a.75.75 0 0 1 0-1.1l3.5-3.25a.75.75 0 1 1 1.02 1.1l-2.1 1.95h12.59A.75.75 0 0 1 18 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-long-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.28 7.72a.75.75 0 0 1 0 1.06l-2.47 2.47H21a.75.75 0 0 1 0 1.5H4.81l2.47 2.47a.75.75 0 1 1-1.06 1.06l-3.75-3.75a.75.75 0 0 1 0-1.06l3.75-3.75a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-long-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M17.25 8.25L21 12m0 0l-3.75 3.75M21 12H3\\\"/>\"\n    },\n    \"arrow-long-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 10a.75.75 0 0 1 .75-.75h12.59l-2.1-1.95a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1l2.1-1.95H2.75A.75.75 0 0 1 2 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-long-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M16.72 7.72a.75.75 0 0 1 1.06 0l3.75 3.75a.75.75 0 0 1 0 1.06l-3.75 3.75a.75.75 0 1 1-1.06-1.06l2.47-2.47H3a.75.75 0 0 1 0-1.5h16.19l-2.47-2.47a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-long-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.25 6.75L12 3m0 0l3.75 3.75M12 3v18\\\"/>\"\n    },\n    \"arrow-long-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a.75.75 0 0 1-.75-.75V4.66L7.3 6.76a.75.75 0 1 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.75.75 0 0 1-1.1 1.02l-1.95-2.1v12.59A.75.75 0 0 1 10 18\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-long-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.47 2.47a.75.75 0 0 1 1.06 0l3.75 3.75a.75.75 0 0 1-1.06 1.06l-2.47-2.47V21a.75.75 0 0 1-1.5 0V4.81L8.78 7.28a.75.75 0 0 1-1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-path\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99\\\"/>\"\n    },\n    \"arrow-path-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.312 11.424a5.5 5.5 0 0 1-9.201 2.466l-.312-.311h2.433a.75.75 0 0 0 0-1.5H3.989a.75.75 0 0 0-.75.75v4.242a.75.75 0 0 0 1.5 0v-2.43l.31.31a7 7 0 0 0 11.712-3.138a.75.75 0 0 0-1.449-.39m1.23-3.723a.75.75 0 0 0 .219-.53V2.929a.75.75 0 0 0-1.5 0V5.36l-.31-.31A7 7 0 0 0 3.239 8.188a.75.75 0 1 0 1.448.389A5.5 5.5 0 0 1 13.89 6.11l.311.31h-2.432a.75.75 0 0 0 0 1.5h4.243a.75.75 0 0 0 .53-.219\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-path-rounded-square\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 12c0-1.232-.046-2.453-.138-3.662a4.006 4.006 0 0 0-3.7-3.7a48.678 48.678 0 0 0-7.324 0a4.006 4.006 0 0 0-3.7 3.7c-.017.22-.032.441-.046.662M19.5 12l3-3m-3 3l-3-3m-12 3c0 1.232.046 2.453.138 3.662a4.006 4.006 0 0 0 3.7 3.7a48.656 48.656 0 0 0 7.324 0a4.006 4.006 0 0 0 3.7-3.7c.017-.22.032-.441.046-.662M4.5 12l3 3m-3-3l-3 3\\\"/>\"\n    },\n    \"arrow-path-rounded-square-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 4.5c1.215 0 2.417.055 3.604.162a.68.68 0 0 1 .615.597c.124 1.038.208 2.088.25 3.15l-1.689-1.69a.75.75 0 0 0-1.06 1.061l2.999 3a.75.75 0 0 0 1.06 0l3.001-3a.75.75 0 1 0-1.06-1.06l-1.748 1.747a41.31 41.31 0 0 0-.264-3.386a2.18 2.18 0 0 0-1.97-1.913a41.512 41.512 0 0 0-7.477 0a2.18 2.18 0 0 0-1.969 1.913a41.16 41.16 0 0 0-.16 1.61a.75.75 0 1 0 1.495.12c.041-.52.093-1.038.154-1.552a.68.68 0 0 1 .615-.597A40.012 40.012 0 0 1 10 4.5M5.281 9.22a.75.75 0 0 0-1.06 0l-3.001 3a.75.75 0 1 0 1.06 1.06l1.748-1.747c.042 1.141.13 2.27.264 3.386a2.18 2.18 0 0 0 1.97 1.913a41.533 41.533 0 0 0 7.477 0a2.18 2.18 0 0 0 1.969-1.913c.064-.534.117-1.071.16-1.61a.75.75 0 1 0-1.495-.12c-.041.52-.093 1.037-.154 1.552a.68.68 0 0 1-.615.597a40.013 40.013 0 0 1-7.208 0a.68.68 0 0 1-.615-.597a39.785 39.785 0 0 1-.25-3.15l1.689 1.69a.75.75 0 0 0 1.06-1.061z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-path-rounded-square-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 5.25c1.213 0 2.415.046 3.605.135a3.256 3.256 0 0 1 3.01 3.01c.044.583.077 1.17.1 1.759L17.03 8.47a.75.75 0 1 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 0 0-1.06-1.06l-1.752 1.751c-.023-.65-.06-1.296-.108-1.939a4.756 4.756 0 0 0-4.392-4.392a49.422 49.422 0 0 0-7.436 0A4.756 4.756 0 0 0 3.89 8.282a37.26 37.26 0 0 0-.046.672a.75.75 0 1 0 1.497.092c.013-.217.028-.434.044-.651a3.256 3.256 0 0 1 3.01-3.01c1.19-.09 2.392-.135 3.605-.135m-6.97 6.22a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l1.752-1.751c.023.65.06 1.296.108 1.939a4.756 4.756 0 0 0 4.392 4.392a49.413 49.413 0 0 0 7.436 0a4.756 4.756 0 0 0 4.392-4.392c.017-.223.032-.447.046-.672a.75.75 0 0 0-1.497-.092c-.013.217-.028.434-.044.651a3.256 3.256 0 0 1-3.01 3.01a47.953 47.953 0 0 1-7.21 0a3.256 3.256 0 0 1-3.01-3.01a47.759 47.759 0 0 1-.1-1.759L6.97 15.53a.75.75 0 0 0 1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-path-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.755 10.059a7.5 7.5 0 0 1 12.548-3.364l1.903 1.903h-3.183a.75.75 0 1 0 0 1.5h4.992a.75.75 0 0 0 .75-.75V4.356a.75.75 0 0 0-1.5 0v3.18l-1.9-1.9A9 9 0 0 0 3.306 9.67a.75.75 0 1 0 1.45.388m15.408 3.352a.75.75 0 0 0-.919.53a7.5 7.5 0 0 1-12.548 3.364l-1.902-1.903h3.183a.75.75 0 0 0 0-1.5H2.984a.75.75 0 0 0-.75.75v4.992a.75.75 0 0 0 1.5 0v-3.18l1.9 1.9a9 9 0 0 0 15.059-4.035a.75.75 0 0 0-.53-.918\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3\\\"/>\"\n    },\n    \"arrow-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 10a.75.75 0 0 1 .75-.75h10.638L10.23 5.29a.75.75 0 1 1 1.04-1.08l5.5 5.25a.75.75 0 0 1 0 1.08l-5.5 5.25a.75.75 0 1 1-1.04-1.08l4.158-3.96H3.75A.75.75 0 0 1 3 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-right-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m12.75 15l3-3m0 0l-3-3m3 3h-7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"arrow-right-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16M6.75 9.25a.75.75 0 0 0 0 1.5h4.59l-2.1 1.95a.75.75 0 0 0 1.02 1.1l3.5-3.25a.75.75 0 0 0 0-1.1l-3.5-3.25a.75.75 0 1 0-1.02 1.1l2.1 1.95z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-right-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m4.28 10.28a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 1 0-1.06 1.06l1.72 1.72H8.25a.75.75 0 0 0 0 1.5h5.69l-1.72 1.72a.75.75 0 1 0 1.06 1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-right-on-rectangle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0l3-3m0 0l-3-3m3 3H9\\\"/>\"\n    },\n    \"arrow-right-on-rectangle-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M3 4.25A2.25 2.25 0 0 1 5.25 2h5.5A2.25 2.25 0 0 1 13 4.25v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0-.75.75v11.5c0 .414.336.75.75.75h5.5a.75.75 0 0 0 .75-.75v-2a.75.75 0 0 1 1.5 0v2A2.25 2.25 0 0 1 10.75 18h-5.5A2.25 2.25 0 0 1 3 15.75z\\\"/><path d=\\\"M6 10a.75.75 0 0 1 .75-.75h9.546l-1.048-.943a.75.75 0 1 1 1.004-1.114l2.5 2.25a.75.75 0 0 1 0 1.114l-2.5 2.25a.75.75 0 1 1-1.004-1.114l1.048-.943H6.75A.75.75 0 0 1 6 10\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-right-on-rectangle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.5 3.75A1.5 1.5 0 0 0 6 5.25v13.5a1.5 1.5 0 0 0 1.5 1.5h6a1.5 1.5 0 0 0 1.5-1.5V15a.75.75 0 0 1 1.5 0v3.75a3 3 0 0 1-3 3h-6a3 3 0 0 1-3-3V5.25a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3V9A.75.75 0 0 1 15 9V5.25a1.5 1.5 0 0 0-1.5-1.5zm10.72 4.72a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l1.72-1.72H9a.75.75 0 0 1 0-1.5h10.94l-1.72-1.72a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12.97 3.97a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 1 1-1.06-1.06l6.22-6.22H3a.75.75 0 0 1 0-1.5h16.19l-6.22-6.22a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-small-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 4.5v15m0 0l6.75-6.75M12 19.5l-6.75-6.75\\\"/>\"\n    },\n    \"arrow-small-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 5a.75.75 0 0 1 .75.75v6.638l1.96-2.158a.75.75 0 1 1 1.08 1.04l-3.25 3.5a.75.75 0 0 1-1.08 0l-3.25-3.5a.75.75 0 1 1 1.08-1.04l1.96 2.158V5.75A.75.75 0 0 1 10 5\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-small-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 3.75a.75.75 0 0 1 .75.75v13.19l5.47-5.47a.75.75 0 1 1 1.06 1.06l-6.75 6.75a.75.75 0 0 1-1.06 0l-6.75-6.75a.75.75 0 1 1 1.06-1.06l5.47 5.47V4.5a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-small-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 12h-15m0 0l6.75 6.75M4.5 12l6.75-6.75\\\"/>\"\n    },\n    \"arrow-small-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15 10a.75.75 0 0 1-.75.75H7.612l2.158 1.96a.75.75 0 1 1-1.04 1.08l-3.5-3.25a.75.75 0 0 1 0-1.08l3.5-3.25a.75.75 0 1 1 1.04 1.08L7.612 9.25h6.638A.75.75 0 0 1 15 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-small-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M20.25 12a.75.75 0 0 1-.75.75H6.31l5.47 5.47a.75.75 0 1 1-1.06 1.06l-6.75-6.75a.75.75 0 0 1 0-1.06l6.75-6.75a.75.75 0 1 1 1.06 1.06l-5.47 5.47H19.5a.75.75 0 0 1 .75.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-small-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75\\\"/>\"\n    },\n    \"arrow-small-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5 10a.75.75 0 0 1 .75-.75h6.638L10.23 7.29a.75.75 0 1 1 1.04-1.08l3.5 3.25a.75.75 0 0 1 0 1.08l-3.5 3.25a.75.75 0 1 1-1.04-1.08l2.158-1.96H5.75A.75.75 0 0 1 5 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-small-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.75 12a.75.75 0 0 1 .75-.75h13.19l-5.47-5.47a.75.75 0 0 1 1.06-1.06l6.75 6.75a.75.75 0 0 1 0 1.06l-6.75 6.75a.75.75 0 1 1-1.06-1.06l5.47-5.47H4.5a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-small-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 19.5v-15m0 0l-6.75 6.75M12 4.5l6.75 6.75\\\"/>\"\n    },\n    \"arrow-small-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 15a.75.75 0 0 1-.75-.75V7.612L7.29 9.77a.75.75 0 0 1-1.08-1.04l3.25-3.5a.75.75 0 0 1 1.08 0l3.25 3.5a.75.75 0 1 1-1.08 1.04l-1.96-2.158v6.638A.75.75 0 0 1 10 15\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-small-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 20.25a.75.75 0 0 1-.75-.75V6.31l-5.47 5.47a.75.75 0 0 1-1.06-1.06l6.75-6.75a.75.75 0 0 1 1.06 0l6.75 6.75a.75.75 0 1 1-1.06 1.06l-5.47-5.47V19.5a.75.75 0 0 1-.75.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-top-right-on-square\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25\\\"/>\"\n    },\n    \"arrow-top-right-on-square-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M4.25 5.5a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-4a.75.75 0 0 1 1.5 0v4A2.25 2.25 0 0 1 12.75 17h-8.5A2.25 2.25 0 0 1 2 14.75v-8.5A2.25 2.25 0 0 1 4.25 4h5a.75.75 0 0 1 0 1.5z\\\"/><path d=\\\"M6.194 12.753a.75.75 0 0 0 1.06.053L16.5 4.44v2.81a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h2.553l-9.056 8.194a.75.75 0 0 0-.053 1.06\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-top-right-on-square-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.75 2.25H21a.75.75 0 0 1 .75.75v5.25a.75.75 0 0 1-1.5 0V4.81L8.03 17.03a.75.75 0 0 1-1.06-1.06L19.19 3.75h-3.44a.75.75 0 0 1 0-1.5m-10.5 4.5a1.5 1.5 0 0 0-1.5 1.5v10.5a1.5 1.5 0 0 0 1.5 1.5h10.5a1.5 1.5 0 0 0 1.5-1.5V10.5a.75.75 0 0 1 1.5 0v8.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V8.25a3 3 0 0 1 3-3h8.25a.75.75 0 0 1 0 1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-trending-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 6L9 12.75l4.286-4.286a11.948 11.948 0 0 1 4.306 6.43l.776 2.898m0 0l3.182-5.511m-3.182 5.51l-5.511-3.181\\\"/>\"\n    },\n    \"arrow-trending-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.22 5.222a.75.75 0 0 1 1.06 0L7 9.942l3.768-3.769a.75.75 0 0 1 1.113.058a20.908 20.908 0 0 1 3.813 7.254l1.574-2.727a.75.75 0 0 1 1.3.75l-2.475 4.286a.75.75 0 0 1-1.025.275l-4.286-2.475a.75.75 0 0 1 .75-1.3l2.708 1.565a19.422 19.422 0 0 0-3.012-6.024L7.53 11.533a.75.75 0 0 1-1.06 0l-5.25-5.25a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-trending-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.72 5.47a.75.75 0 0 1 1.06 0L9 11.69l3.756-3.756a.75.75 0 0 1 .985-.066a12.698 12.698 0 0 1 4.575 6.832l.308 1.149l2.277-3.943a.75.75 0 1 1 1.299.75l-3.182 5.51a.75.75 0 0 1-1.025.275l-5.511-3.181a.75.75 0 0 1 .75-1.3l3.943 2.277l-.308-1.149a11.194 11.194 0 0 0-3.528-5.617l-3.809 3.81a.75.75 0 0 1-1.06 0L1.72 6.53a.75.75 0 0 1 0-1.061\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-trending-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 18L9 11.25l4.306 4.307a11.95 11.95 0 0 1 5.814-5.519l2.74-1.22m0 0l-5.94-2.28m5.94 2.28l-2.28 5.941\\\"/>\"\n    },\n    \"arrow-trending-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12.577 4.878a.75.75 0 0 1 .919-.53l4.78 1.281a.75.75 0 0 1 .531.919l-1.281 4.78a.75.75 0 0 1-1.449-.387l.81-3.022a19.407 19.407 0 0 0-5.594 5.203a.75.75 0 0 1-1.139.093L7 10.06l-4.72 4.72a.75.75 0 0 1-1.06-1.061l5.25-5.25a.75.75 0 0 1 1.06 0l3.074 3.073a20.923 20.923 0 0 1 5.545-4.931l-3.042-.815a.75.75 0 0 1-.53-.919\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-trending-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.22 6.268a.75.75 0 0 1 .968-.432l5.942 2.28a.75.75 0 0 1 .431.97l-2.28 5.941a.75.75 0 1 1-1.4-.537l1.63-4.251l-1.086.483a11.2 11.2 0 0 0-5.45 5.174a.75.75 0 0 1-1.199.19L9 12.31l-6.22 6.22a.75.75 0 1 1-1.06-1.06l6.75-6.75a.75.75 0 0 1 1.06 0l3.606 3.605a12.694 12.694 0 0 1 5.68-4.973l1.086-.484l-4.251-1.631a.75.75 0 0 1-.432-.97\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M4.5 10.5L12 3m0 0l7.5 7.5M12 3v18\\\"/>\"\n    },\n    \"arrow-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 17a.75.75 0 0 1-.75-.75V5.612L5.29 9.77a.75.75 0 0 1-1.08-1.04l5.25-5.5a.75.75 0 0 1 1.08 0l5.25 5.5a.75.75 0 1 1-1.08 1.04l-3.96-4.158V16.25A.75.75 0 0 1 10 17\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-up-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m15 11.25l-3-3m0 0l-3 3m3-3v7.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"arrow-up-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m-.75-4.75a.75.75 0 0 0 1.5 0V8.66l1.95 2.1a.75.75 0 1 0 1.1-1.02l-3.25-3.5a.75.75 0 0 0-1.1 0L6.2 9.74a.75.75 0 1 0 1.1 1.02l1.95-2.1z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-up-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m.53 5.47a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l1.72-1.72v5.69a.75.75 0 0 0 1.5 0v-5.69l1.72 1.72a.75.75 0 1 0 1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-up-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m19.5 19.5l-15-15m0 0v11.25m0-11.25h11.25\\\"/>\"\n    },\n    \"arrow-up-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M14.78 14.78a.75.75 0 0 1-1.06 0L6.5 7.56v5.69a.75.75 0 0 1-1.5 0v-7.5A.75.75 0 0 1 5.75 5h7.5a.75.75 0 0 1 0 1.5H7.56l7.22 7.22a.75.75 0 0 1 0 1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-up-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.25 6.31v9.44a.75.75 0 0 1-1.5 0V4.5a.75.75 0 0 1 .75-.75h11.25a.75.75 0 0 1 0 1.5H6.31l13.72 13.72a.75.75 0 1 1-1.06 1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-up-on-square\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15m0-3l-3-3m0 0l-3 3m3-3V15\\\"/>\"\n    },\n    \"arrow-up-on-square-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M13.75 7h-3V3.66l1.95 2.1a.75.75 0 1 0 1.1-1.02l-3.25-3.5a.75.75 0 0 0-1.1 0L6.2 4.74a.75.75 0 0 0 1.1 1.02l1.95-2.1V7h-3A2.25 2.25 0 0 0 4 9.25v7.5A2.25 2.25 0 0 0 6.25 19h7.5A2.25 2.25 0 0 0 16 16.75v-7.5A2.25 2.25 0 0 0 13.75 7m-3 0h-1.5v5.25a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-up-on-square-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M11.47 1.72a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-1.72-1.72V7.5h-1.5V4.06L9.53 5.78a.75.75 0 0 1-1.06-1.06zm-.22 5.78V15a.75.75 0 0 0 1.5 0V7.5h3.75a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3v-9a3 3 0 0 1 3-3z\\\"/>\"\n    },\n    \"arrow-up-on-square-stack\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.5 7.5h-.75A2.25 2.25 0 0 0 4.5 9.75v7.5a2.25 2.25 0 0 0 2.25 2.25h7.5a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-.75m0-3l-3-3m0 0l-3 3m3-3v11.25m6-2.25h.75a2.25 2.25 0 0 1 2.25 2.25v7.5a2.25 2.25 0 0 1-2.25 2.25h-7.5a2.25 2.25 0 0 1-2.25-2.25v-.75\\\"/>\"\n    },\n    \"arrow-up-on-square-stack-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.75 6h-2v4.25a.75.75 0 0 1-1.5 0V6h1.5V3.704l.943 1.048a.75.75 0 0 0 1.114-1.004l-2.25-2.5a.75.75 0 0 0-1.114 0l-2.25 2.5a.75.75 0 0 0 1.114 1.004l.943-1.048V6h-2A2.25 2.25 0 0 0 3 8.25v4.5A2.25 2.25 0 0 0 5.25 15h5.5A2.25 2.25 0 0 0 13 12.75v-4.5A2.25 2.25 0 0 0 10.75 6M7 16.75v-.25h3.75a3.75 3.75 0 0 0 3.75-3.75V10h.25A2.25 2.25 0 0 1 17 12.25v4.5A2.25 2.25 0 0 1 14.75 19h-5.5A2.25 2.25 0 0 1 7 16.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-up-on-square-stack-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M9.97.97a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-1.72-1.72v3.44h-1.5V3.31L8.03 5.03a.75.75 0 0 1-1.06-1.06zm-.22 5.78v6a.75.75 0 0 0 1.5 0v-6h3a3 3 0 0 1 3 3v7.5a3 3 0 0 1-3 3h-7.5a3 3 0 0 1-3-3v-7.5a3 3 0 0 1 3-3z\\\"/><path d=\\\"M7.151 21.75a2.999 2.999 0 0 0 2.599 1.5h7.5a3 3 0 0 0 3-3v-7.5a3 3 0 0 0-1.5-2.599v7.099a4.5 4.5 0 0 1-4.5 4.5z\\\"/></g>\"\n    },\n    \"arrow-up-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m4.5 19.5l15-15m0 0H8.25m11.25 0v11.25\\\"/>\"\n    },\n    \"arrow-up-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.22 14.78a.75.75 0 0 0 1.06 0l7.22-7.22v5.69a.75.75 0 0 0 1.5 0v-7.5a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0 0 1.5h5.69l-7.22 7.22a.75.75 0 0 0 0 1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-up-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.25 3.75H19.5a.75.75 0 0 1 .75.75v11.25a.75.75 0 0 1-1.5 0V6.31L5.03 20.03a.75.75 0 0 1-1.06-1.06L17.69 5.25H8.25a.75.75 0 0 1 0-1.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.47 2.47a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06l-6.22-6.22V21a.75.75 0 0 1-1.5 0V4.81l-6.22 6.22a.75.75 0 1 1-1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-up-tray\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0l4.5 4.5M12 3v13.5\\\"/>\"\n    },\n    \"arrow-up-tray-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M9.25 13.25a.75.75 0 0 0 1.5 0V4.636l2.955 3.129a.75.75 0 0 0 1.09-1.03l-4.25-4.5a.75.75 0 0 0-1.09 0l-4.25 4.5a.75.75 0 1 0 1.09 1.03L9.25 4.636z\\\"/><path d=\\\"M3.5 12.75a.75.75 0 0 0-1.5 0v2.5A2.75 2.75 0 0 0 4.75 18h10.5A2.75 2.75 0 0 0 18 15.25v-2.5a.75.75 0 0 0-1.5 0v2.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-up-tray-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.47 2.47a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1-1.06 1.06l-3.22-3.22V16.5a.75.75 0 0 1-1.5 0V4.81L8.03 8.03a.75.75 0 0 1-1.06-1.06zM3 15.75a.75.75 0 0 1 .75.75v2.25a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5V16.5a.75.75 0 0 1 1.5 0v2.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V16.5a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-uturn-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m15 15l-6 6m0 0l-6-6m6 6V9a6 6 0 0 1 12 0v3\\\"/>\"\n    },\n    \"arrow-uturn-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.232 12.208a.75.75 0 0 1 1.06.024l3.958 4.146V6.375a5.375 5.375 0 0 1 10.75 0V9.25a.75.75 0 0 1-1.5 0V6.375a3.875 3.875 0 0 0-7.75 0v10.003l3.957-4.146a.75.75 0 0 1 1.085 1.036l-5.25 5.5a.75.75 0 0 1-1.085 0l-5.25-5.5a.75.75 0 0 1 .025-1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-uturn-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15 3.75A5.25 5.25 0 0 0 9.75 9v10.19l4.72-4.72a.75.75 0 1 1 1.06 1.06l-6 6a.75.75 0 0 1-1.06 0l-6-6a.75.75 0 1 1 1.06-1.06l4.72 4.72V9a6.75 6.75 0 0 1 13.5 0v3a.75.75 0 0 1-1.5 0V9c0-2.9-2.35-5.25-5.25-5.25\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-uturn-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 15L3 9m0 0l6-6M3 9h12a6 6 0 0 1 0 12h-3\\\"/>\"\n    },\n    \"arrow-uturn-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.793 2.232a.75.75 0 0 1-.025 1.06L3.622 7.25h10.003a5.375 5.375 0 0 1 0 10.75H10.75a.75.75 0 0 1 0-1.5h2.875a3.875 3.875 0 0 0 0-7.75H3.622l4.146 3.957a.75.75 0 0 1-1.036 1.085l-5.5-5.25a.75.75 0 0 1 0-1.085l5.5-5.25a.75.75 0 0 1 1.06.025\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-uturn-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.53 2.47a.75.75 0 0 1 0 1.06L4.81 8.25H15a6.75 6.75 0 0 1 0 13.5h-3a.75.75 0 0 1 0-1.5h3a5.25 5.25 0 1 0 0-10.5H4.81l4.72 4.72a.75.75 0 1 1-1.06 1.06l-6-6a.75.75 0 0 1 0-1.06l6-6a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-uturn-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m15 15l6-6m0 0l-6-6m6 6H9a6 6 0 0 0 0 12h3\\\"/>\"\n    },\n    \"arrow-uturn-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12.208 2.232a.75.75 0 0 0 .024 1.06l4.146 3.958H6.375a5.375 5.375 0 0 0 0 10.75H9.25a.75.75 0 0 0 0-1.5H6.375a3.875 3.875 0 0 1 0-7.75h10.003l-4.146 3.957a.75.75 0 0 0 1.036 1.085l5.5-5.25a.75.75 0 0 0 0-1.085l-5.5-5.25a.75.75 0 0 0-1.06.025\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-uturn-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M14.47 2.47a.75.75 0 0 1 1.06 0l6 6a.75.75 0 0 1 0 1.06l-6 6a.75.75 0 1 1-1.06-1.06l4.72-4.72H9a5.25 5.25 0 1 0 0 10.5h3a.75.75 0 0 1 0 1.5H9a6.75 6.75 0 0 1 0-13.5h10.19l-4.72-4.72a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrow-uturn-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m9 9l6-6m0 0l6 6m-6-6v12a6 6 0 0 1-12 0v-3\\\"/>\"\n    },\n    \"arrow-uturn-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M17.768 7.793a.75.75 0 0 1-1.06-.025L12.75 3.622v10.003a5.375 5.375 0 0 1-10.75 0V10.75a.75.75 0 0 1 1.5 0v2.875a3.875 3.875 0 0 0 7.75 0V3.622L7.293 7.768a.75.75 0 0 1-1.086-1.036l5.25-5.5a.75.75 0 0 1 1.085 0l5.25 5.5a.75.75 0 0 1-.024 1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrow-uturn-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M21.53 9.53a.75.75 0 0 1-1.06 0l-4.72-4.72V15a6.75 6.75 0 0 1-13.5 0v-3a.75.75 0 0 1 1.5 0v3a5.25 5.25 0 1 0 10.5 0V4.81L9.53 9.53a.75.75 0 0 1-1.06-1.06l6-6a.75.75 0 0 1 1.06 0l6 6a.75.75 0 0 1 0 1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrows-pointing-in\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 9V4.5M9 9H4.5M9 9L3.75 3.75M9 15v4.5M9 15H4.5M9 15l-5.25 5.25M15 9h4.5M15 9V4.5M15 9l5.25-5.25M15 15h4.5M15 15v4.5m0-4.5l5.25 5.25\\\"/>\"\n    },\n    \"arrows-pointing-in-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.28 2.22a.75.75 0 0 0-1.06 1.06L5.44 6.5H2.75a.75.75 0 0 0 0 1.5h4.5A.75.75 0 0 0 8 7.25v-4.5a.75.75 0 0 0-1.5 0v2.69zm10.22.53a.75.75 0 0 0-1.5 0v4.5c0 .414.336.75.75.75h4.5a.75.75 0 0 0 0-1.5h-2.69l3.22-3.22a.75.75 0 0 0-1.06-1.06L13.5 5.44zM3.28 17.78l3.22-3.22v2.69a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h2.69l-3.22 3.22a.75.75 0 1 0 1.06 1.06m10.22-3.22l3.22 3.22a.75.75 0 1 0 1.06-1.06l-3.22-3.22h2.69a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrows-pointing-in-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.22 3.22a.75.75 0 0 1 1.06 0l3.97 3.97V4.5a.75.75 0 0 1 1.5 0V9a.75.75 0 0 1-.75.75H4.5a.75.75 0 0 1 0-1.5h2.69L3.22 4.28a.75.75 0 0 1 0-1.06m17.56 0a.75.75 0 0 1 0 1.06l-3.97 3.97h2.69a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1-.75-.75V4.5a.75.75 0 0 1 1.5 0v2.69l3.97-3.97a.75.75 0 0 1 1.06 0M3.75 15a.75.75 0 0 1 .75-.75H9a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-2.69l-3.97 3.97a.75.75 0 0 1-1.06-1.06l3.97-3.97H4.5a.75.75 0 0 1-.75-.75m10.5 0a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-2.69l3.97 3.97a.75.75 0 1 1-1.06 1.06l-3.97-3.97v2.69a.75.75 0 0 1-1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrows-pointing-out\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15\\\"/>\"\n    },\n    \"arrows-pointing-out-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m13.28 7.78l3.22-3.22v2.69a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h2.69l-3.22 3.22a.75.75 0 0 0 1.06 1.06M2 17.25v-4.5a.75.75 0 0 1 1.5 0v2.69l3.22-3.22a.75.75 0 0 1 1.06 1.06L4.56 16.5h2.69a.75.75 0 0 1 0 1.5h-4.5a.747.747 0 0 1-.75-.75m10.22-3.97l3.22 3.22h-2.69a.75.75 0 0 0 0 1.5h4.5a.747.747 0 0 0 .75-.75v-4.5a.75.75 0 0 0-1.5 0v2.69l-3.22-3.22a.75.75 0 1 0-1.06 1.06M3.5 4.56l3.22 3.22a.75.75 0 0 0 1.06-1.06L4.56 3.5h2.69a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrows-pointing-out-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15 3.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0V5.56l-3.97 3.97a.75.75 0 1 1-1.06-1.06l3.97-3.97h-2.69a.75.75 0 0 1-.75-.75m-12 0A.75.75 0 0 1 3.75 3h4.5a.75.75 0 0 1 0 1.5H5.56l3.97 3.97a.75.75 0 0 1-1.06 1.06L4.5 5.56v2.69a.75.75 0 0 1-1.5 0zm11.47 11.78a.75.75 0 1 1 1.06-1.06l3.97 3.97v-2.69a.75.75 0 0 1 1.5 0v4.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5h2.69zm-4.94-1.06a.75.75 0 0 1 0 1.06L5.56 19.5h2.69a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 1.5 0v2.69l3.97-3.97a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrows-right-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.5 21L3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5\\\"/>\"\n    },\n    \"arrows-right-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M13.2 2.24a.75.75 0 0 0 .04 1.06l2.1 1.95H6.75a.75.75 0 0 0 0 1.5h8.59l-2.1 1.95a.75.75 0 1 0 1.02 1.1l3.5-3.25a.75.75 0 0 0 0-1.1l-3.5-3.25a.75.75 0 0 0-1.06.04m-6.4 8a.75.75 0 0 0-1.06-.04l-3.5 3.25a.75.75 0 0 0 0 1.1l3.5 3.25a.75.75 0 1 0 1.02-1.1l-2.1-1.95h8.59a.75.75 0 0 0 0-1.5H4.66l2.1-1.95a.75.75 0 0 0 .04-1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrows-right-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.97 2.47a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 1 1-1.06-1.06l3.22-3.22H7.5a.75.75 0 0 1 0-1.5h11.69l-3.22-3.22a.75.75 0 0 1 0-1.06m-7.94 9a.75.75 0 0 1 0 1.06l-3.22 3.22H16.5a.75.75 0 0 1 0 1.5H4.81l3.22 3.22a.75.75 0 1 1-1.06 1.06l-4.5-4.5a.75.75 0 0 1 0-1.06l4.5-4.5a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"arrows-up-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 7.5L7.5 3m0 0L12 7.5M7.5 3v13.5m13.5 0L16.5 21m0 0L12 16.5m4.5 4.5V7.5\\\"/>\"\n    },\n    \"arrows-up-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.24 6.8a.75.75 0 0 0 1.06-.04l1.95-2.1v8.59a.75.75 0 0 0 1.5 0V4.66l1.95 2.1a.75.75 0 1 0 1.1-1.02l-3.25-3.5a.75.75 0 0 0-1.1 0L2.2 5.74a.75.75 0 0 0 .04 1.06m8 6.4a.75.75 0 0 0-.04 1.06l3.25 3.5a.75.75 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02l-1.95 2.1V6.75a.75.75 0 0 0-1.5 0v8.59l-1.95-2.1a.75.75 0 0 0-1.06-.04\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"arrows-up-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.97 2.47a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1-1.06 1.06L8.25 4.81V16.5a.75.75 0 0 1-1.5 0V4.81L3.53 8.03a.75.75 0 0 1-1.06-1.06zm9.53 4.28a.75.75 0 0 1 .75.75v11.69l3.22-3.22a.75.75 0 1 1 1.06 1.06l-4.5 4.5a.75.75 0 0 1-1.06 0l-4.5-4.5a.75.75 0 1 1 1.06-1.06l3.22 3.22V7.5a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"at-symbol\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M16.5 12a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0Zm0 0c0 1.657 1.007 3 2.25 3S21 13.657 21 12a9 9 0 1 0-2.636 6.364M16.5 12V8.25\\\"/>\"\n    },\n    \"at-symbol-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.404 14.596A6.5 6.5 0 1 1 16.5 10a1.25 1.25 0 0 1-2.5 0a4 4 0 1 0-.571 2.06A2.75 2.75 0 0 0 18 10a8 8 0 1 0-2.343 5.657a.75.75 0 0 0-1.06-1.06a6.5 6.5 0 0 1-9.193 0M10 7.5a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"at-symbol-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M17.834 6.166a8.25 8.25 0 1 0 0 11.668a.75.75 0 0 1 1.06 1.06c-3.807 3.808-9.98 3.808-13.788 0c-3.808-3.807-3.808-9.98 0-13.788c3.807-3.808 9.98-3.808 13.788 0A9.722 9.722 0 0 1 21.75 12c0 .975-.296 1.887-.809 2.571c-.514.685-1.28 1.179-2.191 1.179c-.904 0-1.666-.487-2.18-1.164a5.25 5.25 0 1 1-.82-6.26V8.25a.75.75 0 0 1 1.5 0V12c0 .682.208 1.27.509 1.671c.3.401.659.579.991.579c.332 0 .69-.178.991-.579c.3-.4.509-.99.509-1.671a8.222 8.222 0 0 0-2.416-5.834M15.75 12a3.75 3.75 0 1 0-7.5 0a3.75 3.75 0 0 0 7.5 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"backspace\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 9.75L14.25 12m0 0l2.25 2.25M14.25 12l2.25-2.25M14.25 12L12 14.25m-2.58 4.92l-6.375-6.375a1.125 1.125 0 0 1 0-1.59L9.42 4.83c.211-.211.498-.33.796-.33H19.5a2.25 2.25 0 0 1 2.25 2.25v10.5a2.25 2.25 0 0 1-2.25 2.25h-9.284c-.298 0-.585-.119-.796-.33\\\"/>\"\n    },\n    \"backspace-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.22 3.22A.75.75 0 0 1 7.75 3h9A2.25 2.25 0 0 1 19 5.25v9.5A2.25 2.25 0 0 1 16.75 17h-9a.75.75 0 0 1-.53-.22L.97 10.53a.75.75 0 0 1 0-1.06zm3.06 4a.75.75 0 1 0-1.06 1.06L10.94 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06L12 11.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L13.06 10l1.72-1.72a.75.75 0 0 0-1.06-1.06L12 8.94z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"backspace-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.515 10.674a1.875 1.875 0 0 0 0 2.652L8.89 19.7c.352.351.829.549 1.326.549H19.5a3 3 0 0 0 3-3V6.75a3 3 0 0 0-3-3h-9.284c-.497 0-.974.198-1.326.55zM12.53 9.22a.75.75 0 1 0-1.06 1.06L13.19 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06l1.72-1.72l1.72 1.72a.75.75 0 1 0 1.06-1.06L15.31 12l1.72-1.72a.75.75 0 1 0-1.06-1.06l-1.72 1.72z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"backward\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21 16.811c0 .864-.933 1.405-1.683.977l-7.108-4.062a1.125 1.125 0 0 1 0-1.953l7.108-4.062A1.125 1.125 0 0 1 21 8.688zm-9.75 0c0 .864-.933 1.405-1.683.977l-7.108-4.062a1.125 1.125 0 0 1 0-1.953L9.567 7.71a1.125 1.125 0 0 1 1.683.977z\\\"/>\"\n    },\n    \"backward-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M7.712 4.819A1.5 1.5 0 0 1 10 6.095v2.973c.104-.131.234-.248.389-.344l6.323-3.905A1.5 1.5 0 0 1 19 6.095v7.81a1.5 1.5 0 0 1-2.288 1.277l-6.323-3.905a1.505 1.505 0 0 1-.389-.344v2.973a1.5 1.5 0 0 1-2.288 1.276l-6.323-3.905a1.5 1.5 0 0 1 0-2.553z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"backward-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M9.195 18.44c1.25.713 2.805-.19 2.805-1.629v-2.34l6.945 3.968c1.25.714 2.805-.188 2.805-1.628V8.688c0-1.44-1.555-2.342-2.805-1.628L12 11.03V8.69c0-1.44-1.555-2.343-2.805-1.629l-7.108 4.062c-1.26.72-1.26 2.536 0 3.256z\\\"/>\"\n    },\n    \"banknotes\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 18.75a60.07 60.07 0 0 1 15.797 2.101c.727.198 1.453-.342 1.453-1.096V18.75M3.75 4.5v.75A.75.75 0 0 1 3 6h-.75m0 0v-.375c0-.621.504-1.125 1.125-1.125H20.25M2.25 6v9m18-10.5v.75c0 .414.336.75.75.75h.75m-1.5-1.5h.375c.621 0 1.125.504 1.125 1.125v9.75c0 .621-.504 1.125-1.125 1.125h-.375m1.5-1.5H21a.75.75 0 0 0-.75.75v.75m0 0H3.75m0 0h-.375a1.125 1.125 0 0 1-1.125-1.125V15m1.5 1.5v-.75A.75.75 0 0 0 3 15h-.75M15 10.5a3 3 0 1 1-6 0a3 3 0 0 1 6 0m3 0h.008v.008H18zm-12 0h.008v.008H6z\\\"/>\"\n    },\n    \"banknotes-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm12 4a3 3 0 1 1-6 0a3 3 0 0 1 6 0M4 9a1 1 0 1 0 0-2a1 1 0 0 0 0 2m13-1a1 1 0 1 1-2 0a1 1 0 0 1 2 0M1.75 14.5a.75.75 0 0 0 0 1.5c4.417 0 8.693.603 12.749 1.73c1.111.309 2.251-.512 2.251-1.696v-.784a.75.75 0 0 0-1.5 0v.784a.272.272 0 0 1-.35.25A49.043 49.043 0 0 0 1.75 14.5\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"banknotes-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M12 7.5a2.25 2.25 0 1 0 0 4.5a2.25 2.25 0 0 0 0-4.5\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M1.5 4.875C1.5 3.839 2.34 3 3.375 3h17.25c1.035 0 1.875.84 1.875 1.875v9.75c0 1.036-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 0 1 1.5 14.625zM8.25 9.75a3.75 3.75 0 1 1 7.5 0a3.75 3.75 0 0 1-7.5 0M18.75 9a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V9.75a.75.75 0 0 0-.75-.75zM4.5 9.75A.75.75 0 0 1 5.25 9h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H5.25a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M2.25 18a.75.75 0 0 0 0 1.5c5.4 0 10.63.722 15.6 2.075c1.19.324 2.4-.558 2.4-1.82V18.75a.75.75 0 0 0-.75-.75z\\\"/></g>\"\n    },\n    \"bars-2\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 9h16.5m-16.5 6.75h16.5\\\"/>\"\n    },\n    \"bars-2-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 6.75A.75.75 0 0 1 2.75 6h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 6.75m0 6.5a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bars-2-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 9a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 9m0 6.75a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bars-3\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5\\\"/>\"\n    },\n    \"bars-3-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 4.75A.75.75 0 0 1 2.75 4h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75M2 10a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 10m0 5.25a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bars-3-bottom-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12\\\"/>\"\n    },\n    \"bars-3-bottom-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 4.75A.75.75 0 0 1 2.75 4h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75m0 10.5a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75M2 10a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bars-3-bottom-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75M3 12a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12m0 5.25a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bars-3-bottom-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 6.75h16.5M3.75 12h16.5M12 17.25h8.25\\\"/>\"\n    },\n    \"bars-3-bottom-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 4.75A.75.75 0 0 1 2.75 4h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75m7 10.5a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75M2 10a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bars-3-bottom-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75M3 12a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12m8.25 5.25a.75.75 0 0 1 .75-.75h8.25a.75.75 0 0 1 0 1.5H12a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bars-3-center-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 6.75h16.5M3.75 12H12m-8.25 5.25h16.5\\\"/>\"\n    },\n    \"bars-3-center-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 4.75A.75.75 0 0 1 2.75 4h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 4.75m0 10.5a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75M2 10a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 2 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bars-3-center-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75M3 12a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12m0 5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bars-3-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 6.75A.75.75 0 0 1 3.75 6h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.75M3 12a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 12m0 5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bars-4\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 5.25h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5\\\"/>\"\n    },\n    \"bars-4-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 3.75A.75.75 0 0 1 2.75 3h14.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75m0 4.167a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75m0 4.166a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75m0 4.167a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bars-4-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 5.25m0 4.5A.75.75 0 0 1 3.75 9h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 9.75m0 4.5a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75m0 4.5a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bars-arrow-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 4.5h14.25M3 9h9.75M3 13.5h9.75m4.5-4.5v12m0 0l-3.75-3.75M17.25 21L21 17.25\\\"/>\"\n    },\n    \"bars-arrow-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 3.75A.75.75 0 0 1 2.75 3h11.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75M2 7.5a.75.75 0 0 1 .75-.75h7.508a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 7.5M14 7a.75.75 0 0 1 .75.75v6.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 1 1 1.1-1.02l1.95 2.1V7.75A.75.75 0 0 1 14 7M2 11.25a.75.75 0 0 1 .75-.75h4.562a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bars-arrow-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 4.5A.75.75 0 0 1 3 3.75h14.25a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75m0 4.5A.75.75 0 0 1 3 8.25h9.75a.75.75 0 0 1 0 1.5H3A.75.75 0 0 1 2.25 9m15-.75A.75.75 0 0 1 18 9v10.19l2.47-2.47a.75.75 0 1 1 1.06 1.06l-3.75 3.75a.75.75 0 0 1-1.06 0l-3.75-3.75a.75.75 0 1 1 1.06-1.06l2.47 2.47V9a.75.75 0 0 1 .75-.75m-15 5.25a.75.75 0 0 1 .75-.75h9.75a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bars-arrow-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 4.5h14.25M3 9h9.75M3 13.5h5.25m5.25-.75L17.25 9m0 0L21 12.75M17.25 9v12\\\"/>\"\n    },\n    \"bars-arrow-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 3.75A.75.75 0 0 1 2.75 3h11.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 3.75M2 7.5a.75.75 0 0 1 .75-.75h6.365a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 7.5M14 7a.75.75 0 0 1 .55.24l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v6.59a.75.75 0 0 1-1.5 0V9.66l-1.95 2.1a.75.75 0 1 1-1.1-1.02l3.25-3.5A.75.75 0 0 1 14 7M2 11.25a.75.75 0 0 1 .75-.75H7A.75.75 0 0 1 7 12H2.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bars-arrow-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 4.5A.75.75 0 0 1 3 3.75h14.25a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75m14.47 3.97a.75.75 0 0 1 1.06 0l3.75 3.75a.75.75 0 1 1-1.06 1.06L18 10.81V21a.75.75 0 0 1-1.5 0V10.81l-2.47 2.47a.75.75 0 1 1-1.06-1.06zM2.25 9A.75.75 0 0 1 3 8.25h9.75a.75.75 0 0 1 0 1.5H3A.75.75 0 0 1 2.25 9m0 4.5a.75.75 0 0 1 .75-.75h5.25a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"battery-0\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18\\\"/>\"\n    },\n    \"battery-0-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 7.25A2.25 2.25 0 0 1 3.25 5h12.5A2.25 2.25 0 0 1 18 7.25v1.085a1.5 1.5 0 0 1 1 1.415v.5a1.5 1.5 0 0 1-1 1.415v1.085A2.25 2.25 0 0 1 15.75 15H3.25A2.25 2.25 0 0 1 1 12.75zm2.25-.75a.75.75 0 0 0-.75.75v5.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"battery-0-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M.75 9.75a3 3 0 0 1 3-3h15a3 3 0 0 1 3 3v.038c.856.173 1.5.93 1.5 1.837v2.25c0 .907-.644 1.664-1.5 1.838v.037a3 3 0 0 1-3 3h-15a3 3 0 0 1-3-3zm19.5 0a1.5 1.5 0 0 0-1.5-1.5h-15a1.5 1.5 0 0 0-1.5 1.5v6a1.5 1.5 0 0 0 1.5 1.5h15a1.5 1.5 0 0 0 1.5-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"battery-100\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M4.5 10.5H18V15H4.5zM3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18\\\"/>\"\n    },\n    \"battery-100-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.75 8a.75.75 0 0 0-.75.75v2.5c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75v-2.5a.75.75 0 0 0-.75-.75z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M1 7.25A2.25 2.25 0 0 1 3.25 5h12.5A2.25 2.25 0 0 1 18 7.25v1.085a1.5 1.5 0 0 1 1 1.415v.5a1.5 1.5 0 0 1-1 1.415v1.085A2.25 2.25 0 0 1 15.75 15H3.25A2.25 2.25 0 0 1 1 12.75zm2.25-.75a.75.75 0 0 0-.75.75v5.5c0 .414.336.75.75.75h12.5a.75.75 0 0 0 .75-.75v-5.5a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"battery-100-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.75 6.75a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-.037c.856-.174 1.5-.93 1.5-1.838v-2.25c0-.907-.644-1.664-1.5-1.837V9.75a3 3 0 0 0-3-3zm15 1.5a1.5 1.5 0 0 1 1.5 1.5v6a1.5 1.5 0 0 1-1.5 1.5h-15a1.5 1.5 0 0 1-1.5-1.5v-6a1.5 1.5 0 0 1 1.5-1.5zM4.5 9.75a.75.75 0 0 0-.75.75V15c0 .414.336.75.75.75H18a.75.75 0 0 0 .75-.75v-4.5a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"battery-50\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21 10.5h.375c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125H21M4.5 10.5h6.75V15H4.5zM3.75 18h15A2.25 2.25 0 0 0 21 15.75v-6a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 9.75v6A2.25 2.25 0 0 0 3.75 18\\\"/>\"\n    },\n    \"battery-50-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.75 8a.75.75 0 0 0-.75.75v2.5c0 .414.336.75.75.75H9.5a.75.75 0 0 0 .75-.75v-2.5A.75.75 0 0 0 9.5 8z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M3.25 5A2.25 2.25 0 0 0 1 7.25v5.5A2.25 2.25 0 0 0 3.25 15h12.5A2.25 2.25 0 0 0 18 12.75v-1.085a1.5 1.5 0 0 0 1-1.415v-.5a1.5 1.5 0 0 0-1-1.415V7.25A2.25 2.25 0 0 0 15.75 5zM2.5 7.25a.75.75 0 0 1 .75-.75h12.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-.75.75H3.25a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"battery-50-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.5 9.75a.75.75 0 0 0-.75.75V15c0 .414.336.75.75.75h6.75A.75.75 0 0 0 12 15v-4.5a.75.75 0 0 0-.75-.75z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M3.75 6.75a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-.037c.856-.174 1.5-.93 1.5-1.838v-2.25c0-.907-.644-1.664-1.5-1.837V9.75a3 3 0 0 0-3-3zm15 1.5a1.5 1.5 0 0 1 1.5 1.5v6a1.5 1.5 0 0 1-1.5 1.5h-15a1.5 1.5 0 0 1-1.5-1.5v-6a1.5 1.5 0 0 1 1.5-1.5z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"beaker\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9.75 3.104v5.714a2.25 2.25 0 0 1-.659 1.591L5 14.5M9.75 3.104c-.251.023-.501.05-.75.082m.75-.082a24.301 24.301 0 0 1 4.5 0m0 0v5.714c0 .597.237 1.17.659 1.591L19.8 15.3M14.25 3.104c.251.023.501.05.75.082M19.8 15.3l-1.57.393A9.065 9.065 0 0 1 12 15a9.065 9.065 0 0 0-6.23-.693L5 14.5m14.8.8l1.402 1.402c1.232 1.232.65 3.318-1.067 3.611A48.309 48.309 0 0 1 12 21a48.25 48.25 0 0 1-8.135-.687c-1.718-.293-2.3-2.379-1.067-3.61L5 14.5\\\"/>\"\n    },\n    \"beaker-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.5 3.528v4.644c0 .729-.29 1.428-.805 1.944l-1.217 1.217a8.75 8.75 0 0 1 3.55.62l.502.201a7.25 7.25 0 0 0 4.178.365l-2.403-2.403a2.75 2.75 0 0 1-.805-1.944V3.528a40.205 40.205 0 0 0-3 0m4.5.084l.19.015a.75.75 0 1 0 .12-1.495a41.364 41.364 0 0 0-6.62 0a.75.75 0 0 0 .12 1.495L7 3.612v4.56c0 .331-.132.649-.366.883L2.6 13.09c-1.496 1.496-.817 4.15 1.403 4.475C5.961 17.853 7.963 18 10 18s4.039-.148 5.997-.436c2.22-.325 2.9-2.979 1.403-4.475l-4.034-4.034A1.25 1.25 0 0 1 13 8.172z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"beaker-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 3.798v5.02a3 3 0 0 1-.879 2.121l-2.377 2.377a9.845 9.845 0 0 1 5.091 1.013a8.315 8.315 0 0 0 5.713.636l.285-.071l-3.954-3.955a3 3 0 0 1-.879-2.121v-5.02a23.614 23.614 0 0 0-3 0m4.5.138a.75.75 0 0 0 .093-1.495A24.837 24.837 0 0 0 12 2.25a25.048 25.048 0 0 0-3.093.191A.75.75 0 0 0 9 3.936v4.882a1.5 1.5 0 0 1-.44 1.06l-6.293 6.294c-1.62 1.621-.903 4.475 1.471 4.88c2.686.46 5.447.698 8.262.698c2.816 0 5.576-.239 8.262-.697c2.374-.406 3.092-3.26 1.47-4.881L15.44 9.879A1.5 1.5 0 0 1 15 8.818z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bell\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0\\\"/>\"\n    },\n    \"bell-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2a6 6 0 0 0-6 6c0 1.887-.454 3.665-1.257 5.234a.75.75 0 0 0 .515 1.076a32.91 32.91 0 0 0 3.256.508a3.5 3.5 0 0 0 6.972 0a32.903 32.903 0 0 0 3.256-.508a.75.75 0 0 0 .515-1.076A11.448 11.448 0 0 1 16 8a6 6 0 0 0-6-6M8.05 14.943a33.54 33.54 0 0 0 3.9 0a2 2 0 0 1-3.9 0\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bell-alert\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M3.124 7.5A8.969 8.969 0 0 1 5.292 3m13.416 0a8.969 8.969 0 0 1 2.168 4.5\\\"/>\"\n    },\n    \"bell-alert-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.214 3.227a.75.75 0 0 0-1.156-.956a8.97 8.97 0 0 0-1.856 3.826a.75.75 0 0 0 1.466.316a7.47 7.47 0 0 1 1.546-3.186m12.728-.956a.75.75 0 0 0-1.157.956a7.47 7.47 0 0 1 1.547 3.186a.75.75 0 0 0 1.466-.316a8.971 8.971 0 0 0-1.856-3.826\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M10 2a6 6 0 0 0-6 6c0 1.887-.454 3.665-1.257 5.234a.75.75 0 0 0 .515 1.076a32.94 32.94 0 0 0 3.256.508a3.5 3.5 0 0 0 6.972 0a32.933 32.933 0 0 0 3.256-.508a.75.75 0 0 0 .515-1.076A11.448 11.448 0 0 1 16 8a6 6 0 0 0-6-6m0 14.5a2 2 0 0 1-1.95-1.557a33.54 33.54 0 0 0 3.9 0A2 2 0 0 1 10 16.5\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bell-alert-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M5.85 3.5a.75.75 0 0 0-1.117-1a9.719 9.719 0 0 0-2.348 4.876a.75.75 0 0 0 1.479.248A8.219 8.219 0 0 1 5.85 3.5m13.417-1a.75.75 0 1 0-1.118 1a8.22 8.22 0 0 1 1.987 4.124a.75.75 0 0 0 1.48-.248a9.72 9.72 0 0 0-2.35-4.876\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25A6.75 6.75 0 0 0 5.25 9v.75a8.217 8.217 0 0 1-2.119 5.52a.75.75 0 0 0 .298 1.206c1.544.57 3.16.99 4.831 1.243a3.75 3.75 0 1 0 7.48 0a24.583 24.583 0 0 0 4.83-1.244a.75.75 0 0 0 .298-1.205a8.217 8.217 0 0 1-2.118-5.52V9A6.75 6.75 0 0 0 12 2.25M9.75 18c0-.034 0-.067.002-.1a25.05 25.05 0 0 0 4.496 0l.002.1a2.25 2.25 0 1 1-4.5 0\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"bell-slash\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9.143 17.082a24.248 24.248 0 0 0 3.844.148m-3.844-.148a23.856 23.856 0 0 1-5.455-1.31a8.964 8.964 0 0 0 2.3-5.542m3.155 6.852a3 3 0 0 0 5.667 1.97m1.965-2.277L21 21m-4.225-4.225a23.81 23.81 0 0 0 3.536-1.003A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6.53 6.53m10.245 10.245L6.53 6.53M3 3l3.53 3.53\\\"/>\"\n    },\n    \"bell-slash-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M4 8c0-.26.017-.517.049-.77l7.722 7.723a33.56 33.56 0 0 1-3.722-.01a2 2 0 0 0 3.862.15l1.134 1.134a3.5 3.5 0 0 1-6.53-1.409a32.91 32.91 0 0 1-3.257-.508a.75.75 0 0 1-.515-1.076A11.448 11.448 0 0 0 4 8m13.266 5.9a.756.756 0 0 1-.068.116L6.389 3.207A6 6 0 0 1 16 8a11.466 11.466 0 0 0 1.258 5.234a.75.75 0 0 1 .01.666M3.28 2.22a.75.75 0 0 0-1.06 1.06l14.5 14.5a.75.75 0 1 0 1.06-1.06z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bell-slash-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06zm17.04 14.006c-.223.082-.448.161-.674.238L7.319 4.137A6.75 6.75 0 0 1 18.75 9v.75c0 2.123.8 4.057 2.118 5.52a.75.75 0 0 1-.297 1.206\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M5.25 9c0-.184.007-.366.022-.546l10.384 10.384a3.751 3.751 0 0 1-7.396-1.119a24.585 24.585 0 0 1-4.831-1.244a.75.75 0 0 1-.298-1.205A8.217 8.217 0 0 0 5.25 9.75zm4.502 8.9a2.25 2.25 0 1 0 4.496 0a25.057 25.057 0 0 1-4.496 0\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"bell-snooze\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M10.5 8.25h3l-3 4.5h3\\\"/>\"\n    },\n    \"bell-snooze-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4 8a6 6 0 1 1 12 0c0 1.887.454 3.665 1.257 5.234a.75.75 0 0 1-.515 1.076a32.903 32.903 0 0 1-3.256.508a3.5 3.5 0 0 1-6.972 0a32.91 32.91 0 0 1-3.256-.508a.75.75 0 0 1-.515-1.076A11.448 11.448 0 0 0 4 8m6 7c-.655 0-1.305-.02-1.95-.057a2 2 0 0 0 3.9 0A33.15 33.15 0 0 1 10 15M8.75 6a.75.75 0 0 0 0 1.5h1.043L8.14 9.814A.75.75 0 0 0 8.75 11h2.5a.75.75 0 0 0 0-1.5h-1.043l1.653-2.314A.75.75 0 0 0 11.25 6z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bell-snooze-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25A6.75 6.75 0 0 0 5.25 9v.75a8.217 8.217 0 0 1-2.119 5.52a.75.75 0 0 0 .298 1.206c1.544.57 3.16.99 4.831 1.243a3.75 3.75 0 1 0 7.48 0a24.583 24.583 0 0 0 4.83-1.244a.75.75 0 0 0 .298-1.205a8.217 8.217 0 0 1-2.118-5.52V9A6.75 6.75 0 0 0 12 2.25M9.75 18c0-.034 0-.067.002-.1a25.05 25.05 0 0 0 4.496 0l.002.1a2.25 2.25 0 1 1-4.5 0m.75-10.5a.75.75 0 0 0 0 1.5h1.599l-2.223 3.334A.75.75 0 0 0 10.5 13.5h3a.75.75 0 0 0 0-1.5h-1.599l2.223-3.334A.75.75 0 0 0 13.5 7.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bell-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.25 9a6.75 6.75 0 0 1 13.5 0v.75c0 2.123.8 4.057 2.118 5.52a.75.75 0 0 1-.297 1.206c-1.544.57-3.16.99-4.831 1.243a3.75 3.75 0 1 1-7.48 0a24.585 24.585 0 0 1-4.831-1.244a.75.75 0 0 1-.298-1.205A8.217 8.217 0 0 0 5.25 9.75zm4.502 8.9a2.25 2.25 0 1 0 4.496 0a25.057 25.057 0 0 1-4.496 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bold\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M6 3.75h7.125a4.125 4.125 0 1 1 0 8.25H6z\\\"/><path d=\\\"M7.5 4.5h4.875a3.375 3.375 0 1 1 0 6.75H7.5zM6 11.25h7.5a4.5 4.5 0 1 1 0 9H6z\\\"/><path d=\\\"M7.5 12h5.25a3.75 3.75 0 1 1 0 7.5H7.5z\\\"/></g>\"\n    },\n    \"bold-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4 3.222C4 2.547 4.547 2 5.222 2H10.5a4.5 4.5 0 0 1 3.475 7.359A4.75 4.75 0 0 1 11.25 18H5.333A1.333 1.333 0 0 1 4 16.667zM6.5 8.5v-4h4a2 2 0 1 1 0 4zm0 2.5v4.5h4.75a2.25 2.25 0 0 0 0-4.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bold-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.25 3.75A.75.75 0 0 1 6 3h7.125a4.875 4.875 0 0 1 3.346 8.42A5.25 5.25 0 0 1 13.5 21H5.999a.75.75 0 0 1-.75-.75zm7.125 6.75a2.625 2.625 0 0 0 0-5.25H8.25v5.25zM8.25 18.75h4.5a3 3 0 1 0 0-6h-4.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bolt\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m3.75 13.5l10.5-11.25L12 10.5h8.25L9.75 21.75L12 13.5z\\\"/>\"\n    },\n    \"bolt-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M11.983 1.907a.75.75 0 0 0-1.292-.657l-8.5 9.5A.75.75 0 0 0 2.75 12h6.572l-1.305 6.093a.75.75 0 0 0 1.292.657l8.5-9.5A.75.75 0 0 0 17.25 8h-6.572z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bolt-slash\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M11.412 15.655L9.75 21.75l3.745-4.012M9.257 13.5H3.75l2.659-2.849m2.048-2.194L14.25 2.25L12 10.5h8.25l-4.707 5.043M8.457 8.457L3 3m5.457 5.457l7.086 7.086m0 0L21 21\\\"/>\"\n    },\n    \"bolt-slash-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M2.22 2.22a.75.75 0 0 1 1.06 0l14.5 14.5a.75.75 0 1 1-1.06 1.06L2.22 3.28a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M4.73 7.912L2.191 10.75A.75.75 0 0 0 2.75 12h6.068zm4.503 4.503l-1.216 5.678a.75.75 0 0 0 1.292.657l2.956-3.303zm6.037-.327l2.539-2.838A.75.75 0 0 0 17.25 8h-6.068zm-4.503-4.503l1.216-5.678a.75.75 0 0 0-1.292-.657L7.735 4.553z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bolt-slash-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m20.798 11.012l-3.188 3.416L9.462 6.28l4.24-4.542a.75.75 0 0 1 1.272.71L12.982 9.75h7.268a.75.75 0 0 1 .548 1.262M3.202 12.988L6.39 9.572l8.148 8.148l-4.24 4.542a.75.75 0 0 1-1.272-.71l1.992-7.302H3.75a.75.75 0 0 1-.548-1.262M3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06z\\\"/>\"\n    },\n    \"bolt-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M14.615 1.595a.75.75 0 0 1 .359.852L12.982 9.75h7.268a.75.75 0 0 1 .548 1.262l-10.5 11.25a.75.75 0 0 1-1.272-.71l1.992-7.302H3.75a.75.75 0 0 1-.548-1.262l10.5-11.25a.75.75 0 0 1 .913-.143\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"book-open\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25\\\"/>\"\n    },\n    \"book-open-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10.75 16.82A7.462 7.462 0 0 1 15 15.5a7.5 7.5 0 0 1 2.046.282a.75.75 0 0 0 .954-.722v-11a.75.75 0 0 0-.546-.721A9.006 9.006 0 0 0 15 3a8.963 8.963 0 0 0-4.25 1.065zM9.25 4.065A8.963 8.963 0 0 0 5 3a9 9 0 0 0-2.454.339A.75.75 0 0 0 2 4.06v11a.75.75 0 0 0 .954.721A7.506 7.506 0 0 1 5 15.5c1.579 0 3.042.487 4.25 1.32z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"book-open-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M11.25 4.533A9.707 9.707 0 0 0 6 3a9.735 9.735 0 0 0-3.25.555a.75.75 0 0 0-.5.707v14.25a.75.75 0 0 0 1 .707A8.237 8.237 0 0 1 6 18.75c1.995 0 3.823.707 5.25 1.886zm1.5 16.103A8.214 8.214 0 0 1 18 18.75c.966 0 1.89.166 2.75.47a.75.75 0 0 0 1-.708V4.262a.75.75 0 0 0-.5-.707A9.735 9.735 0 0 0 18 3a9.707 9.707 0 0 0-5.25 1.533z\\\"/>\"\n    },\n    \"bookmark\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25L4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0\\\"/>\"\n    },\n    \"bookmark-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2c-1.716 0-3.408.106-5.07.31A2.213 2.213 0 0 0 3 4.517V17.25a.75.75 0 0 0 1.075.676L10 15.082l5.926 2.844A.75.75 0 0 0 17 17.25V4.517c0-1.103-.806-2.068-1.93-2.207A41.403 41.403 0 0 0 10 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bookmark-slash\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m3 3l1.664 1.664M21 21l-1.5-1.5m-5.485-1.242L12 17.25L4.5 21V8.742m.164-4.078a2.15 2.15 0 0 1 1.743-1.342a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185V19.5M4.664 4.664L19.5 19.5\\\"/>\"\n    },\n    \"bookmark-slash-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M17 4.517v9.301L5.433 2.252a41.44 41.44 0 0 1 9.637.058A2.213 2.213 0 0 1 17 4.517M3 17.25V6.182l10.654 10.654L10 15.082l-5.925 2.844A.75.75 0 0 1 3 17.25m.28-15.03a.75.75 0 0 0-1.06 1.06l14.5 14.5a.75.75 0 1 0 1.06-1.06z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bookmark-slash-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06zm16.72 3.037v11.561L5.853 2.671c.15-.043.306-.075.467-.094a49.255 49.255 0 0 1 11.36 0c1.497.174 2.57 1.46 2.57 2.93M3.75 21V6.932l14.063 14.063L12 18.088l-7.165 3.583A.75.75 0 0 1 3.75 21\\\"/>\"\n    },\n    \"bookmark-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.32 2.577a49.255 49.255 0 0 1 11.36 0c1.497.174 2.57 1.46 2.57 2.93V21a.75.75 0 0 1-1.085.67L12 18.089l-7.165 3.583A.75.75 0 0 1 3.75 21V5.507c0-1.47 1.073-2.756 2.57-2.93\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"bookmark-square\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M16.5 3.75V16.5L12 14.25L7.5 16.5V3.75m9 0H18A2.25 2.25 0 0 1 20.25 6v12A2.25 2.25 0 0 1 18 20.25H6A2.25 2.25 0 0 1 3.75 18V6A2.25 2.25 0 0 1 6 3.75h1.5m9 0h-9\\\"/>\"\n    },\n    \"bookmark-square-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.25 2A2.25 2.25 0 0 0 2 4.25v11.5A2.25 2.25 0 0 0 4.25 18h11.5A2.25 2.25 0 0 0 18 15.75V4.25A2.25 2.25 0 0 0 15.75 2zM6 13.25V3.5h8v9.75a.75.75 0 0 1-1.064.681L10 12.576l-2.936 1.355A.75.75 0 0 1 6 13.25\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bookmark-square-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3zm1.5 1.5a.75.75 0 0 0-.75.75V16.5a.75.75 0 0 0 1.085.67L12 15.089l4.165 2.083a.75.75 0 0 0 1.085-.671V5.25a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"briefcase\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18c-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 0 0 .75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48.114 48.114 0 0 0-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A23.978 23.978 0 0 1 12 15.75a24 24 0 0 1-7.577-1.22a2.016 2.016 0 0 1-.673-.38m0 0A2.18 2.18 0 0 1 3 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48.111 48.111 0 0 1 3.413-.387m7.5 0V5.25A2.25 2.25 0 0 0 13.5 3h-3a2.25 2.25 0 0 0-2.25 2.25v.894m7.5 0a48.667 48.667 0 0 0-7.5 0M12 12.75h.008v.008H12z\\\"/>\"\n    },\n    \"briefcase-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M6 3.75A2.75 2.75 0 0 1 8.75 1h2.5A2.75 2.75 0 0 1 14 3.75v.443c.572.055 1.14.122 1.706.2C17.053 4.582 18 5.75 18 7.07v3.469c0 1.126-.694 2.191-1.83 2.54c-1.952.599-4.024.921-6.17.921s-4.219-.322-6.17-.921C2.694 12.73 2 11.665 2 10.539V7.07c0-1.321.947-2.489 2.294-2.676A41.047 41.047 0 0 1 6 4.193zm6.5 0v.325a41.622 41.622 0 0 0-5 0V3.75c0-.69.56-1.25 1.25-1.25h2.5c.69 0 1.25.56 1.25 1.25M10 10a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1V11a1 1 0 0 0-1-1z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M3 15.055v-.684c.126.053.255.1.39.142c2.092.642 4.313.987 6.61.987c2.297 0 4.518-.345 6.61-.987c.135-.041.264-.089.39-.142v.684c0 1.347-.985 2.53-2.363 2.686a41.454 41.454 0 0 1-9.274 0C3.985 17.585 3 16.402 3 15.055\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"briefcase-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M7.5 5.25a3 3 0 0 1 3-3h3a3 3 0 0 1 3 3v.205c.933.085 1.857.197 2.774.334c1.454.218 2.476 1.483 2.476 2.917v3.033c0 1.211-.734 2.352-1.936 2.752A24.726 24.726 0 0 1 12 15.75a24.72 24.72 0 0 1-7.814-1.259c-1.202-.4-1.936-1.541-1.936-2.752V8.706c0-1.434 1.022-2.7 2.476-2.917A48.814 48.814 0 0 1 7.5 5.455zm7.5 0v.09a49.488 49.488 0 0 0-6 0v-.09a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5m-3 8.25a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M3 18.4v-2.796a4.3 4.3 0 0 0 .713.31A26.226 26.226 0 0 0 12 17.25c2.892 0 5.68-.468 8.287-1.335c.252-.084.49-.189.713-.311V18.4c0 1.452-1.047 2.728-2.523 2.923c-2.12.282-4.282.427-6.477.427a49.19 49.19 0 0 1-6.477-.427C4.047 21.128 3 19.852 3 18.4\\\"/></g>\"\n    },\n    \"bug-ant\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 12.75c1.148 0 2.278.08 3.383.237c1.037.146 1.866.966 1.866 2.013c0 3.728-2.35 6.75-5.25 6.75S6.75 18.728 6.75 15c0-1.046.83-1.867 1.866-2.013A24.204 24.204 0 0 1 12 12.75m0 0c2.883 0 5.647.508 8.208 1.44a23.91 23.91 0 0 1-1.153 6.06M12 12.75c-2.883 0-5.647.508-8.208 1.44c.125 2.105.52 4.136 1.153 6.06M12 12.75a2.25 2.25 0 0 0 2.248-2.354M12 12.75a2.25 2.25 0 0 1-2.248-2.354M12 8.25c.995 0 1.971-.08 2.922-.236c.403-.066.74-.358.795-.762a3.778 3.778 0 0 0-.399-2.25M12 8.25c-.995 0-1.97-.08-2.922-.236c-.402-.066-.74-.358-.795-.762a3.734 3.734 0 0 1 .4-2.253M12 8.25a2.25 2.25 0 0 0-2.248 2.146M12 8.25a2.25 2.25 0 0 1 2.248 2.146M8.683 5a6.032 6.032 0 0 1-1.155-1.002c.07-.63.27-1.222.574-1.747M8.683 5a3.75 3.75 0 0 1 6.635 0m0 0c.427-.283.815-.62 1.155-.999a4.471 4.471 0 0 0-.575-1.752M4.921 6a24.048 24.048 0 0 0-.392 3.314a23.88 23.88 0 0 0 5.223 1.082M19.08 6c.205 1.08.337 2.187.392 3.314a23.882 23.882 0 0 1-5.223 1.082\\\"/>\"\n    },\n    \"bug-ant-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.56 1.14a.75.75 0 0 1 .177 1.045a3.989 3.989 0 0 0-.464.86c.185.17.382.329.59.473A3.993 3.993 0 0 1 10 2c1.272 0 2.405.594 3.137 1.518c.208-.144.405-.302.59-.473a3.989 3.989 0 0 0-.464-.86a.75.75 0 0 1 1.222-.869c.369.519.65 1.105.822 1.736a.75.75 0 0 1-.174.707a7.03 7.03 0 0 1-1.299 1.098A4 4 0 0 1 14 6c0 .52-.301.963-.723 1.187a6.961 6.961 0 0 1-1.158.486a2.5 2.5 0 0 1 .296.679a19.34 19.34 0 0 0 4.081-.96a19.655 19.655 0 0 0-.09-2.319a.75.75 0 1 1 1.493-.146a21.239 21.239 0 0 1 .08 3.028a.75.75 0 0 1-.482.667a20.874 20.874 0 0 1-5.153 1.249a2.51 2.51 0 0 1-.107.247a20.86 20.86 0 0 1 5.253 1.257a.75.75 0 0 1 .48.74a20.946 20.946 0 0 1-.907 5.107a.75.75 0 0 1-1.433-.444c.415-1.34.69-2.743.806-4.19c-.495-.174-1-.328-1.512-.461c.05.284.076.575.076.873c0 1.814-.517 3.312-1.426 4.37A4.639 4.639 0 0 1 10 19a4.64 4.64 0 0 1-3.574-1.63C5.516 16.311 5 14.813 5 13c0-.298.026-.59.076-.873c-.513.133-1.017.287-1.512.46c.116 1.448.39 2.85.806 4.191a.75.75 0 0 1-1.433.444a20.94 20.94 0 0 1-.908-5.107a.75.75 0 0 1 .482-.74a20.857 20.857 0 0 1 5.252-1.257a2.481 2.481 0 0 1-.107-.247a20.874 20.874 0 0 1-5.153-1.249a.75.75 0 0 1-.482-.667a21.342 21.342 0 0 1 .08-3.028a.75.75 0 1 1 1.493.146a19.745 19.745 0 0 0-.09 2.32c1.302.459 2.668.785 4.08.959c.066-.243.166-.471.297-.679a6.962 6.962 0 0 1-1.158-.486A1.348 1.348 0 0 1 6 6a4 4 0 0 1 .166-1.143a7.032 7.032 0 0 1-1.3-1.098a.75.75 0 0 1-.173-.707a5.48 5.48 0 0 1 .822-1.736a.75.75 0 0 1 1.046-.176\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"bug-ant-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.478 1.6a.75.75 0 0 1 .273 1.025a3.72 3.72 0 0 0-.425 1.122c.058.057.118.114.18.168A4.491 4.491 0 0 1 12 2.25a4.49 4.49 0 0 1 3.497 1.668c.06-.054.12-.11.178-.167a3.717 3.717 0 0 0-.426-1.126a.75.75 0 1 1 1.298-.75a5.22 5.22 0 0 1 .671 2.045a.75.75 0 0 1-.187.582c-.241.27-.505.52-.787.749a4.495 4.495 0 0 1 .216 2.1c-.106.792-.753 1.295-1.417 1.403c-.182.03-.364.057-.547.081c.152.227.273.476.359.741a23.122 23.122 0 0 0 3.832-.802a23.241 23.241 0 0 0-.345-2.634a.75.75 0 0 1 1.474-.28c.21 1.115.348 2.256.404 3.418a.75.75 0 0 1-.516.749c-1.527.5-3.119.855-4.76 1.05c-.074.38-.22.735-.423 1.05a24.61 24.61 0 0 1 5.943 1.358a.75.75 0 0 1 .492.75a24.665 24.665 0 0 1-1.189 6.25a.75.75 0 0 1-1.425-.47a23.141 23.141 0 0 0 1.077-5.307a22.87 22.87 0 0 0-1.524-.454c.068.234.104.484.104.746c0 3.956-2.521 7.5-6 7.5c-3.478 0-6-3.544-6-7.5c0-.262.037-.511.104-.746c-.514.134-1.022.286-1.522.454a23.14 23.14 0 0 0 1.077 5.308a.75.75 0 0 1-1.425.468a24.663 24.663 0 0 1-1.19-6.25a.75.75 0 0 1 .493-.749a24.593 24.593 0 0 1 4.964-1.24h.01c.321-.046.644-.085.969-.118a2.982 2.982 0 0 1-.424-1.05a24.614 24.614 0 0 1-4.76-1.05a.75.75 0 0 1-.516-.75c.057-1.161.194-2.302.405-3.417a.75.75 0 0 1 1.474.28c-.164.862-.28 1.74-.345 2.634c1.237.37 2.517.641 3.832.802c.085-.265.207-.514.359-.74a18.732 18.732 0 0 1-.547-.082c-.664-.108-1.311-.611-1.417-1.403a4.535 4.535 0 0 1 .217-2.103a6.788 6.788 0 0 1-.788-.751a.75.75 0 0 1-.187-.583a5.22 5.22 0 0 1 .67-2.04a.75.75 0 0 1 1.026-.273\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"building-library\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 21v-8.25M15.75 21v-8.25M8.25 21v-8.25M3 9l9-6l9 6m-1.5 12V10.333A48.36 48.36 0 0 0 12 9.75c-2.551 0-5.056.2-7.5.582V21M3 21h18M12 6.75h.008v.008H12z\\\"/>\"\n    },\n    \"building-library-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.674 2.075a.75.75 0 0 1 .652 0l7.25 3.5A.75.75 0 0 1 17 6.957V16.5h.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H3V6.957a.75.75 0 0 1-.576-1.382zM11 6a1 1 0 1 1-2 0a1 1 0 0 1 2 0M7.5 9.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0zm3.25 0a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0zm3.25 0a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"building-library-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M11.584 2.376a.75.75 0 0 1 .832 0l9 6a.75.75 0 1 1-.832 1.248L12 3.901L3.416 9.624a.75.75 0 0 1-.832-1.248z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M20.25 10.333v9.917H21a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1 0-1.5h.75v-9.917a.75.75 0 0 1 .634-.741A49.109 49.109 0 0 1 12 9c2.59 0 5.134.202 7.616.592a.75.75 0 0 1 .634.74m-7.5 2.417a.75.75 0 0 0-1.5 0v6.75a.75.75 0 0 0 1.5 0zm3-.75a.75.75 0 0 1 .75.75v6.75a.75.75 0 0 1-1.5 0v-6.75a.75.75 0 0 1 .75-.75M9 12.75a.75.75 0 0 0-1.5 0v6.75a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M12 7.875a1.125 1.125 0 1 0 0-2.25a1.125 1.125 0 0 0 0 2.25\\\"/></g>\"\n    },\n    \"building-office\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21\\\"/>\"\n    },\n    \"building-office-2\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 21h19.5m-18-18v18m10.5-18v18m6-13.5V21M6.75 6.75h.75m-.75 3h.75m-.75 3h.75m3-6h.75m-.75 3h.75m-.75 3h.75M6.75 21v-3.375c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21M3 3h12m-.75 4.5H21m-3.75 3.75h.008v.008h-.008zm0 3h.008v.008h-.008zm0 3h.008v.008h-.008z\\\"/>\"\n    },\n    \"building-office-2-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 2.75A.75.75 0 0 1 1.75 2h10.5a.75.75 0 0 1 0 1.5H12v13.75a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1-.75-.75v-2.5a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5H2v-13h-.25A.75.75 0 0 1 1 2.75M4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM4.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM8 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM8.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm5.75-3a.75.75 0 0 0-.75.75V17a1 1 0 0 0 1 1h3.75a.75.75 0 0 0 0-1.5H18v-9h.25a.75.75 0 0 0 0-1.5zm.5 3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm.5 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"building-office-2-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 2.25a.75.75 0 0 0 0 1.5v16.5h-.75a.75.75 0 0 0 0 1.5H15v-18a.75.75 0 0 0 0-1.5zM6.75 19.5v-2.25a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75M6 6.75A.75.75 0 0 1 6.75 6h.75a.75.75 0 0 1 0 1.5h-.75A.75.75 0 0 1 6 6.75M6.75 9a.75.75 0 0 0 0 1.5h.75a.75.75 0 0 0 0-1.5zM6 12.75a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 0 1.5h-.75a.75.75 0 0 1-.75-.75M10.5 6a.75.75 0 0 0 0 1.5h.75a.75.75 0 0 0 0-1.5zm-.75 3.75A.75.75 0 0 1 10.5 9h.75a.75.75 0 0 1 0 1.5h-.75a.75.75 0 0 1-.75-.75M10.5 12a.75.75 0 0 0 0 1.5h.75a.75.75 0 0 0 0-1.5zm6-5.25v15h5.25a.75.75 0 0 0 0-1.5H21v-12a.75.75 0 0 0 0-1.5zm1.5 4.5a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75zm.75 2.25a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75v-.008a.75.75 0 0 0-.75-.75zM18 17.25a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"building-office-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4 16.5v-13h-.25a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 0 1.5H16v13h.25a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75v-2.5a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1 0-1.5zm3-11a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM7.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM11 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm.5 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"building-office-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 2.25a.75.75 0 0 0 0 1.5v16.5h-.75a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5h-.75V3.75a.75.75 0 0 0 0-1.5zM9 6a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5zm-.75 3.75A.75.75 0 0 1 9 9h1.5a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75M9 12a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5zm3.75-5.25A.75.75 0 0 1 13.5 6H15a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75M13.5 9a.75.75 0 0 0 0 1.5H15A.75.75 0 0 0 15 9zm-.75 3.75a.75.75 0 0 1 .75-.75H15a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75M9 19.5v-2.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 9 19.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"building-storefront\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M13.5 21v-7.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75V21m-4.5 0H2.36m11.14 0H18m0 0h3.64m-1.39 0V9.349m-16.5 11.65V9.35m0 0a3.001 3.001 0 0 0 3.75-.615A2.993 2.993 0 0 0 9.75 9.75c.896 0 1.7-.393 2.25-1.016a2.993 2.993 0 0 0 2.25 1.016c.896 0 1.7-.393 2.25-1.016a3.001 3.001 0 0 0 3.75.614m-16.5 0a3.004 3.004 0 0 1-.621-4.72L4.318 3.44A1.5 1.5 0 0 1 5.378 3h13.243a1.5 1.5 0 0 1 1.06.44l1.19 1.189a3 3 0 0 1-.621 4.72m-13.5 8.65h3.75a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75H6.75a.75.75 0 0 0-.75.75v3.75c0 .415.336.75.75.75\\\"/>\"\n    },\n    \"building-storefront-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M2.879 7.121A3 3 0 0 0 7.5 6.66A2.997 2.997 0 0 0 10 8a2.997 2.997 0 0 0 2.5-1.34a3 3 0 1 0 4.622-3.78l-.293-.293A2 2 0 0 0 15.415 2H4.585a2 2 0 0 0-1.414.586l-.292.292a3 3 0 0 0 0 4.243M3 9.032a4.507 4.507 0 0 0 4.5-.29A4.48 4.48 0 0 0 10 9.5a4.48 4.48 0 0 0 2.5-.758a4.507 4.507 0 0 0 4.5.29V16.5h.25a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75v3.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5H3z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"building-storefront-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M5.223 2.25c-.497 0-.974.198-1.325.55l-1.3 1.298A3.75 3.75 0 0 0 7.5 9.75a3.74 3.74 0 0 0 2.25.75c.844 0 1.624-.28 2.25-.75c.626.47 1.406.75 2.25.75a3.74 3.74 0 0 0 2.25-.75a3.75 3.75 0 0 0 4.902-5.652l-1.3-1.299a1.875 1.875 0 0 0-1.325-.549z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M3 20.25v-8.755c1.42.674 3.08.673 4.5 0A5.234 5.234 0 0 0 9.75 12c.804 0 1.568-.182 2.25-.506a5.234 5.234 0 0 0 2.25.506c.804 0 1.567-.182 2.25-.506a5.26 5.26 0 0 0 4.5.001v8.755h.75a.75.75 0 0 1 0 1.5H2.25a.75.75 0 0 1 0-1.5zm3-6a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75zm8.25-.75a.75.75 0 0 0-.75.75v5.25c0 .414.336.75.75.75h3a.75.75 0 0 0 .75-.75v-5.25a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"cake\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 8.25v-1.5m0 1.5c-1.355 0-2.697.056-4.024.166C6.845 8.51 6 9.473 6 10.608v2.513m6-4.87c1.355 0 2.697.055 4.024.165C17.155 8.51 18 9.473 18 10.608v2.513m-3-4.87v-1.5m-6 1.5v-1.5m12 9.75l-1.5.75a3.354 3.354 0 0 1-3 0a3.354 3.354 0 0 0-3 0a3.354 3.354 0 0 1-3 0a3.354 3.354 0 0 0-3 0a3.354 3.354 0 0 1-3 0L3 16.5m15-3.38a48.474 48.474 0 0 0-6-.37c-2.032 0-4.034.125-6 .37m12 0c.39.049.777.102 1.163.16c1.07.16 1.837 1.094 1.837 2.175v5.17c0 .62-.504 1.124-1.125 1.124H4.125A1.125 1.125 0 0 1 3 20.625v-5.17c0-1.08.768-2.014 1.837-2.174A47.78 47.78 0 0 1 6 13.12m6.265-10.01a.375.375 0 1 1-.53 0L12 2.845zm-3 0a.375.375 0 1 1-.53 0L9 2.845zm6 0a.375.375 0 1 1-.53 0L15 2.845z\\\"/>\"\n    },\n    \"cake-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m6.75.98l-.884.883a1.25 1.25 0 1 0 1.768 0zm6.5 0l-.884.883a1.25 1.25 0 1 0 1.768 0zM10 .98l.884.883a1.25 1.25 0 1 1-1.768 0zM7.5 5.75a.75.75 0 0 0-1.5 0v.464c-1.179.305-2 1.39-2 2.622v.094c.1-.02.202-.038.306-.051A42.869 42.869 0 0 1 10 8.5c1.93 0 3.83.129 5.694.379c.104.013.206.03.306.051v-.094c0-1.232-.821-2.317-2-2.622V5.75a.75.75 0 0 0-1.5 0v.318a45.645 45.645 0 0 0-1.75-.062V5.75a.75.75 0 0 0-1.5 0v.256c-.586.01-1.17.03-1.75.062zm-2.995 4.615A41.377 41.377 0 0 1 10 10c1.863 0 3.697.124 5.495.365C16.967 10.562 18 11.838 18 13.28v.693a3.72 3.72 0 0 1-1.665-.393a5.222 5.222 0 0 0-4.67 0a3.722 3.722 0 0 1-3.33 0a5.222 5.222 0 0 0-4.67 0A3.72 3.72 0 0 1 2 13.972v-.693c0-1.441 1.033-2.716 2.505-2.914m11.16 4.556a5.22 5.22 0 0 0 2.335.551V16.5a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 2 16.5v-1.028c.8 0 1.6-.183 2.335-.551a3.722 3.722 0 0 1 3.33 0c1.47.735 3.2.735 4.67 0a3.722 3.722 0 0 1 3.33 0\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cake-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m15 1.784l-.796.796a1.125 1.125 0 1 0 1.592 0zm-3 0l-.796.796a1.125 1.125 0 1 0 1.592 0zm-3 0l-.796.796a1.125 1.125 0 1 0 1.592 0zm.75 5.763c.498-.02.998-.035 1.5-.042V6.75a.75.75 0 0 1 1.5 0v.755c.502.007 1.002.021 1.5.042V6.75a.75.75 0 0 1 1.5 0v.88l.307.022c1.55.117 2.693 1.427 2.693 2.946v1.018a62.182 62.182 0 0 0-13.5 0v-1.018c0-1.519 1.143-2.829 2.693-2.946l.307-.022v-.88a.75.75 0 0 1 1.5 0zM12 12.75c-2.472 0-4.9.184-7.274.54c-1.454.217-2.476 1.482-2.476 2.916v.384a4.104 4.104 0 0 1 2.585.364a2.605 2.605 0 0 0 2.33 0a4.104 4.104 0 0 1 3.67 0a2.605 2.605 0 0 0 2.33 0a4.104 4.104 0 0 1 3.67 0a2.605 2.605 0 0 0 2.33 0a4.104 4.104 0 0 1 2.585-.364v-.384c0-1.434-1.022-2.7-2.476-2.917A49.138 49.138 0 0 0 12 12.75m9.75 5.381a2.604 2.604 0 0 0-1.915.165a4.104 4.104 0 0 1-3.67 0a2.604 2.604 0 0 0-2.33 0a4.104 4.104 0 0 1-3.67 0a2.604 2.604 0 0 0-2.33 0a4.104 4.104 0 0 1-3.67 0a2.604 2.604 0 0 0-1.915-.165v2.494c0 1.036.84 1.875 1.875 1.875h15.75c1.035 0 1.875-.84 1.875-1.875z\\\"/>\"\n    },\n    \"calculator\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 15.75V18m-7.5-6.75h.008v.008H8.25zm0 2.25h.008v.008H8.25zm0 2.25h.008v.008H8.25zm0 2.25h.008v.008H8.25zm2.498-6.75h.007v.008h-.007zm0 2.25h.007v.008h-.007zm0 2.25h.007v.008h-.007zm0 2.25h.007v.008h-.007zm2.504-6.75h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm2.498-6.75h.008v.008h-.008zm0 2.25h.008v.008h-.008zM8.25 6h7.5v2.25h-7.5zM12 2.25c-1.892 0-3.758.11-5.593.322C5.307 2.7 4.5 3.65 4.5 4.757V19.5a2.25 2.25 0 0 0 2.25 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25V4.757c0-1.108-.806-2.057-1.907-2.185A48.507 48.507 0 0 0 12 2.25\\\"/>\"\n    },\n    \"calculator-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 1c-1.716 0-3.408.106-5.07.31A2.213 2.213 0 0 0 3 3.517V16.75A2.25 2.25 0 0 0 5.25 19h9.5A2.25 2.25 0 0 0 17 16.75V3.517c0-1.103-.806-2.068-1.93-2.207A41.403 41.403 0 0 0 10 1M5.99 8.75A.75.75 0 0 1 6.74 8h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75zm-.75 2.916a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75zm1.417-5.75a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75zm-.75 2.916a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75zm1.42-5.75a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75zm-.75 2.916a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75zM12.5 8.75a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm.75 1.417a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75v-.01a.75.75 0 0 0-.75-.75zm0 2.166a.75.75 0 0 1 .75.75v2.167a.75.75 0 1 1-1.5 0v-2.167a.75.75 0 0 1 .75-.75M6.75 4a.75.75 0 0 0-.75.75v.5c0 .414.336.75.75.75h6.5a.75.75 0 0 0 .75-.75v-.5a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"calculator-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.32 1.827a49.255 49.255 0 0 1 11.36 0c1.497.174 2.57 1.46 2.57 2.93V19.5a3 3 0 0 1-3 3H6.75a3 3 0 0 1-3-3V4.757c0-1.47 1.073-2.756 2.57-2.93M7.5 11.25a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H8.25a.75.75 0 0 1-.75-.75zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75zm-.75 3a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H8.25a.75.75 0 0 1-.75-.75zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V18a.75.75 0 0 0-.75-.75zm1.748-6a.75.75 0 0 1 .75-.75h.007a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.007a.75.75 0 0 1-.75-.75zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.335.75.75.75h.007a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75zm-.75 3a.75.75 0 0 1 .75-.75h.007a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.007a.75.75 0 0 1-.75-.75zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.335.75.75.75h.007a.75.75 0 0 0 .75-.75V18a.75.75 0 0 0-.75-.75zm1.754-6a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75zm-.75 3a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V18a.75.75 0 0 0-.75-.75zm1.748-6a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75zm.75 1.5a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V13.5a.75.75 0 0 0-.75-.75zm-8.25-6A.75.75 0 0 1 8.25 6h7.5a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-7.5a.75.75 0 0 1-.75-.75zm9 9a.75.75 0 0 0-1.5 0V18a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"calendar\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5\\\"/>\"\n    },\n    \"calendar-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.75 2a.75.75 0 0 1 .75.75V4h7V2.75a.75.75 0 0 1 1.5 0V4h.25A2.75 2.75 0 0 1 18 6.75v8.5A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25v-8.5A2.75 2.75 0 0 1 4.75 4H5V2.75A.75.75 0 0 1 5.75 2m-1 5.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25v-6.5c0-.69-.56-1.25-1.25-1.25z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"calendar-days\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5m-9-6h.008v.008H12zM12 15h.008v.008H12zm0 2.25h.008v.008H12zM9.75 15h.008v.008H9.75zm0 2.25h.008v.008H9.75zM7.5 15h.008v.008H7.5zm0 2.25h.008v.008H7.5zm6.75-4.5h.008v.008h-.008zm0 2.25h.008v.008h-.008zm0 2.25h.008v.008h-.008zm2.25-4.5h.008v.008H16.5zm0 2.25h.008v.008H16.5z\\\"/>\"\n    },\n    \"calendar-days-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M5.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H6a.75.75 0 0 1-.75-.75zM6 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75zM7.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H8a.75.75 0 0 1-.75-.75zM8 13.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75zM9.25 10a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H10a.75.75 0 0 1-.75-.75zm.75 1.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V12a.75.75 0 0 0-.75-.75zM9.25 14a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H10a.75.75 0 0 1-.75-.75zM12 9.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V10a.75.75 0 0 0-.75-.75zM11.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H12a.75.75 0 0 1-.75-.75zm.75 1.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V14a.75.75 0 0 0-.75-.75zM13.25 10a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H14a.75.75 0 0 1-.75-.75zm.75 1.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V12a.75.75 0 0 0-.75-.75z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M5.75 2a.75.75 0 0 1 .75.75V4h7V2.75a.75.75 0 0 1 1.5 0V4h.25A2.75 2.75 0 0 1 18 6.75v8.5A2.75 2.75 0 0 1 15.25 18H4.75A2.75 2.75 0 0 1 2 15.25v-8.5A2.75 2.75 0 0 1 4.75 4H5V2.75A.75.75 0 0 1 5.75 2m-1 5.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25v-6.5c0-.69-.56-1.25-1.25-1.25z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"calendar-days-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M12.75 12.75a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m-5.25 3a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m.75 1.5a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m1.5-1.5a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m.75 1.5a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m1.5-1.5a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m.75 1.5a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m1.5-1.5a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m.75 1.5a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m1.5-1.5a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m-1.5-3a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m1.5.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M6.75 2.25A.75.75 0 0 1 7.5 3v1.5h9V3A.75.75 0 0 1 18 3v1.5h.75a3 3 0 0 1 3 3v11.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V7.5a3 3 0 0 1 3-3H6V3a.75.75 0 0 1 .75-.75m13.5 9a1.5 1.5 0 0 0-1.5-1.5H5.25a1.5 1.5 0 0 0-1.5 1.5v7.5a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"calendar-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.75 2.25A.75.75 0 0 1 7.5 3v1.5h9V3A.75.75 0 0 1 18 3v1.5h.75a3 3 0 0 1 3 3v11.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V7.5a3 3 0 0 1 3-3H6V3a.75.75 0 0 1 .75-.75m13.5 9a1.5 1.5 0 0 0-1.5-1.5H5.25a1.5 1.5 0 0 0-1.5 1.5v7.5a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"camera\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M6.827 6.175A2.31 2.31 0 0 1 5.186 7.23c-.38.054-.757.112-1.134.175C2.999 7.58 2.25 8.507 2.25 9.574V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9.574c0-1.067-.75-1.994-1.802-2.169a47.865 47.865 0 0 0-1.134-.175a2.31 2.31 0 0 1-1.64-1.055l-.822-1.316a2.192 2.192 0 0 0-1.736-1.039a48.774 48.774 0 0 0-5.232 0a2.192 2.192 0 0 0-1.736 1.039z\\\"/><path d=\\\"M16.5 12.75a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m2.25-2.25h.008v.008h-.008z\\\"/></g>\"\n    },\n    \"camera-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 8a2 2 0 0 1 2-2h.93a2 2 0 0 0 1.664-.89l.812-1.22A2 2 0 0 1 8.07 3h3.86a2 2 0 0 1 1.664.89l.812 1.22A2 2 0 0 0 16.07 6H17a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zm13.5 3a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0M10 14a3 3 0 1 0 0-6a3 3 0 0 0 0 6\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"camera-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M12 9a3.75 3.75 0 1 0 0 7.5A3.75 3.75 0 0 0 12 9\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M9.344 3.071a49.52 49.52 0 0 1 5.312 0c.967.052 1.83.585 2.332 1.39l.821 1.317c.24.383.645.643 1.11.71c.386.054.77.113 1.152.177c1.432.239 2.429 1.493 2.429 2.909V18a3 3 0 0 1-3 3h-15a3 3 0 0 1-3-3V9.574c0-1.416.997-2.67 2.429-2.909c.382-.064.766-.123 1.151-.178a1.56 1.56 0 0 0 1.11-.71l.822-1.315a2.942 2.942 0 0 1 2.332-1.39M6.75 12.75a5.25 5.25 0 1 1 10.5 0a5.25 5.25 0 0 1-10.5 0m12-1.5a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"chart-bar\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 0 1 3 19.875zm6.75-4.5c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125zm6.75-4.5c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125z\\\"/>\"\n    },\n    \"chart-bar-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M15.5 2A1.5 1.5 0 0 0 14 3.5v13a1.5 1.5 0 0 0 1.5 1.5h1a1.5 1.5 0 0 0 1.5-1.5v-13A1.5 1.5 0 0 0 16.5 2zm-6 4A1.5 1.5 0 0 0 8 7.5v9A1.5 1.5 0 0 0 9.5 18h1a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 10.5 6zm-6 4A1.5 1.5 0 0 0 2 11.5v5A1.5 1.5 0 0 0 3.5 18h1A1.5 1.5 0 0 0 6 16.5v-5A1.5 1.5 0 0 0 4.5 10z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chart-bar-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M18.375 2.25c-1.035 0-1.875.84-1.875 1.875v15.75c0 1.035.84 1.875 1.875 1.875h.75c1.035 0 1.875-.84 1.875-1.875V4.125c0-1.036-.84-1.875-1.875-1.875zM9.75 8.625c0-1.036.84-1.875 1.875-1.875h.75c1.036 0 1.875.84 1.875 1.875v11.25c0 1.035-.84 1.875-1.875 1.875h-.75a1.875 1.875 0 0 1-1.875-1.875zM3 13.125c0-1.036.84-1.875 1.875-1.875h.75c1.036 0 1.875.84 1.875 1.875v6.75c0 1.035-.84 1.875-1.875 1.875h-.75A1.875 1.875 0 0 1 3 19.875z\\\"/>\"\n    },\n    \"chart-bar-square\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.5 14.25v2.25m3-4.5v4.5m3-6.75v6.75m3-9v9M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25\\\"/>\"\n    },\n    \"chart-bar-square-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.25 2A2.25 2.25 0 0 0 2 4.25v11.5A2.25 2.25 0 0 0 4.25 18h11.5A2.25 2.25 0 0 0 18 15.75V4.25A2.25 2.25 0 0 0 15.75 2zM15 5.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 0 0 1.5 0zm-8.5 6a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0zM8.584 9a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5a.75.75 0 0 1 .75-.75m3.58-1.25a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chart-bar-square-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm4.5 7.5a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-1.5 0v-2.25a.75.75 0 0 1 .75-.75m3.75-1.5a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0zm2.25-3a.75.75 0 0 1 .75.75v6.75a.75.75 0 0 1-1.5 0V9.75A.75.75 0 0 1 13.5 9m3.75-1.5a.75.75 0 0 0-1.5 0v9a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chart-pie\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M10.5 6a7.5 7.5 0 1 0 7.5 7.5h-7.5z\\\"/><path d=\\\"M13.5 10.5H21A7.5 7.5 0 0 0 13.5 3z\\\"/></g>\"\n    },\n    \"chart-pie-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M12 9a1 1 0 0 1-1-1V3c0-.553.45-1.008.997-.93a7.004 7.004 0 0 1 5.933 5.933c.078.547-.378.997-.93.997z\\\"/><path d=\\\"M8.003 4.07C8.55 3.992 9 4.447 9 5v5a1 1 0 0 0 1 1h5c.552 0 1.008.45.93.997A7.001 7.001 0 0 1 2 11a7.002 7.002 0 0 1 6.003-6.93\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chart-pie-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M2.25 13.5a8.25 8.25 0 0 1 8.25-8.25a.75.75 0 0 1 .75.75v6.75H18a.75.75 0 0 1 .75.75a8.25 8.25 0 0 1-16.5 0\\\"/><path d=\\\"M12.75 3a.75.75 0 0 1 .75-.75a8.25 8.25 0 0 1 8.25 8.25a.75.75 0 0 1-.75.75h-7.5a.75.75 0 0 1-.75-.75z\\\"/></g>\"\n    },\n    \"chat-bubble-bottom-center\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227c1.068.157 2.148.279 3.238.364c.466.037.893.281 1.153.671L12 21l2.652-3.978c.26-.39.687-.634 1.153-.67c1.09-.086 2.17-.208 3.238-.365c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z\\\"/>\"\n    },\n    \"chat-bubble-bottom-center-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.43 2.524A41.29 41.29 0 0 1 10 2c2.236 0 4.43.18 6.57.524c1.437.231 2.43 1.49 2.43 2.902v5.148c0 1.413-.993 2.67-2.43 2.902a41.102 41.102 0 0 1-3.55.414a.785.785 0 0 0-.643.413l-1.712 3.293a.75.75 0 0 1-1.33 0l-1.713-3.293a.783.783 0 0 0-.642-.413a41.108 41.108 0 0 1-3.55-.414C1.993 13.245 1 11.986 1 10.574V5.426c0-1.413.993-2.67 2.43-2.902\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chat-bubble-bottom-center-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.848 2.771A49.144 49.144 0 0 1 12 2.25c2.43 0 4.817.178 7.152.52c1.978.292 3.348 2.024 3.348 3.97v6.02c0 1.946-1.37 3.678-3.348 3.97a48.901 48.901 0 0 1-3.476.383a.39.39 0 0 0-.297.17l-2.755 4.133a.75.75 0 0 1-1.248 0l-2.755-4.132a.39.39 0 0 0-.297-.17a48.9 48.9 0 0 1-3.476-.385c-1.978-.29-3.348-2.024-3.348-3.97V6.741c0-1.946 1.37-3.68 3.348-3.97\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chat-bubble-bottom-center-text\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.5 8.25h9m-9 3H12m-9.75 1.51c0 1.6 1.123 2.994 2.707 3.227c1.129.166 2.27.293 3.423.379c.35.026.67.21.865.501L12 21l2.755-4.132a1.14 1.14 0 0 1 .865-.502a48.172 48.172 0 0 0 3.423-.379c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z\\\"/>\"\n    },\n    \"chat-bubble-bottom-center-text-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2c-2.236 0-4.43.18-6.57.524C1.993 2.755 1 4.014 1 5.426v5.148c0 1.413.993 2.67 2.43 2.902c1.168.188 2.352.327 3.55.414c.28.02.521.18.642.413l1.713 3.293a.75.75 0 0 0 1.33 0l1.713-3.293a.783.783 0 0 1 .642-.413a41.102 41.102 0 0 0 3.55-.414c1.437-.231 2.43-1.49 2.43-2.902V5.426c0-1.413-.993-2.67-2.43-2.902A41.289 41.289 0 0 0 10 2M6.75 6a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm0 2.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chat-bubble-bottom-center-text-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.848 2.771A49.144 49.144 0 0 1 12 2.25c2.43 0 4.817.178 7.152.52c1.978.292 3.348 2.024 3.348 3.97v6.02c0 1.946-1.37 3.678-3.348 3.97a48.901 48.901 0 0 1-3.476.383a.39.39 0 0 0-.297.17l-2.755 4.133a.75.75 0 0 1-1.248 0l-2.755-4.132a.39.39 0 0 0-.297-.17a48.9 48.9 0 0 1-3.476-.385c-1.978-.29-3.348-2.024-3.348-3.97V6.741c0-1.946 1.37-3.68 3.348-3.97M6.75 8.25a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75m.75 2.25a.75.75 0 0 0 0 1.5H12a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chat-bubble-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227c1.087.16 2.185.283 3.293.369V21l4.076-4.076a1.526 1.526 0 0 1 1.037-.443a48.282 48.282 0 0 0 5.68-.494c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z\\\"/>\"\n    },\n    \"chat-bubble-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.43 2.524A41.29 41.29 0 0 1 10 2c2.236 0 4.43.18 6.57.524c1.437.231 2.43 1.49 2.43 2.902v5.148c0 1.413-.993 2.67-2.43 2.902a41.202 41.202 0 0 1-5.183.501a.78.78 0 0 0-.528.224l-3.579 3.58A.75.75 0 0 1 6 17.25v-3.443a41.033 41.033 0 0 1-2.57-.33C1.993 13.244 1 11.986 1 10.573V5.426c0-1.413.993-2.67 2.43-2.902\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chat-bubble-left-ellipsis\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.625 9.75a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375m-13.5 3.01c0 1.6 1.123 2.994 2.707 3.227c1.087.16 2.185.283 3.293.369V21l4.184-4.183a1.14 1.14 0 0 1 .778-.332a48.294 48.294 0 0 0 5.83-.498c1.585-.233 2.708-1.626 2.708-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741z\\\"/>\"\n    },\n    \"chat-bubble-left-ellipsis-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2c-2.236 0-4.43.18-6.57.524C1.993 2.755 1 4.014 1 5.426v5.148c0 1.413.993 2.67 2.43 2.902c.848.137 1.705.248 2.57.331v3.443a.75.75 0 0 0 1.28.53l3.58-3.579a.78.78 0 0 1 .527-.224a41.202 41.202 0 0 0 5.183-.5c1.437-.232 2.43-1.49 2.43-2.903V5.426c0-1.413-.993-2.67-2.43-2.902A41.289 41.289 0 0 0 10 2m0 7a1 1 0 1 0 0-2a1 1 0 0 0 0 2M8 8a1 1 0 1 1-2 0a1 1 0 0 1 2 0m5 1a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chat-bubble-left-ellipsis-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-2.429 0-4.817.178-7.152.521C2.87 3.061 1.5 4.795 1.5 6.741v6.018c0 1.946 1.37 3.68 3.348 3.97c.877.129 1.761.234 2.652.316V21a.75.75 0 0 0 1.28.53l4.184-4.183a.39.39 0 0 1 .266-.112c2.006-.05 3.982-.22 5.922-.506c1.978-.29 3.348-2.023 3.348-3.97V6.741c0-1.947-1.37-3.68-3.348-3.97A49.145 49.145 0 0 0 12 2.25M8.25 8.625a1.125 1.125 0 1 0 0 2.25a1.125 1.125 0 0 0 0-2.25m2.625 1.125a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0m4.875-1.125a1.125 1.125 0 1 0 0 2.25a1.125 1.125 0 0 0 0-2.25\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chat-bubble-left-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193c-.34.027-.68.052-1.02.072v3.091l-3-3a49.5 49.5 0 0 1-4.02-.163a2.115 2.115 0 0 1-.825-.242m9.345-8.334a2.126 2.126 0 0 0-.476-.095a48.64 48.64 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402c-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235c.577.075 1.157.14 1.74.194V21l4.155-4.155\\\"/>\"\n    },\n    \"chat-bubble-left-right-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3.505 2.365A41.369 41.369 0 0 1 9 2c1.863 0 3.697.124 5.495.365c1.247.167 2.18 1.108 2.435 2.268a4.45 4.45 0 0 0-.577-.069a43.141 43.141 0 0 0-4.706 0C9.229 4.696 7.5 6.727 7.5 8.998v2.24c0 1.413.67 2.735 1.76 3.562l-2.98 2.98A.75.75 0 0 1 5 17.25v-3.443c-.501-.048-1-.106-1.495-.172C2.033 13.438 1 12.162 1 10.72V5.28c0-1.441 1.033-2.717 2.505-2.914\\\"/><path d=\\\"M14 6c-.762 0-1.52.02-2.271.062C10.157 6.148 9 7.472 9 8.998v2.24c0 1.519 1.147 2.839 2.71 2.935c.214.013.428.024.642.034c.2.009.385.09.518.224l2.35 2.35a.75.75 0 0 0 1.28-.531v-2.07c1.453-.195 2.5-1.463 2.5-2.915V8.998c0-1.526-1.157-2.85-2.729-2.936A41.645 41.645 0 0 0 14 6\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chat-bubble-left-right-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.913 2.658a49.272 49.272 0 0 1 12.674 0c1.922.25 3.291 1.861 3.405 3.727a4.403 4.403 0 0 0-1.032-.211a50.89 50.89 0 0 0-8.42 0c-2.358.196-4.04 2.19-4.04 4.434v4.286a4.47 4.47 0 0 0 2.433 3.984L7.28 21.53A.75.75 0 0 1 6 21v-4.03a48.527 48.527 0 0 1-1.087-.128C2.905 16.58 1.5 14.833 1.5 12.862V6.638c0-1.97 1.405-3.718 3.413-3.979\\\"/><path d=\\\"M15.75 7.5c-1.376 0-2.739.057-4.086.169C10.124 7.797 9 9.103 9 10.609v4.285c0 1.507 1.128 2.814 2.67 2.94c1.243.102 2.5.157 3.768.165l2.782 2.781a.75.75 0 0 0 1.28-.53v-2.39l.33-.026c1.542-.125 2.67-1.433 2.67-2.94v-4.286c0-1.505-1.125-2.811-2.664-2.94A49.392 49.392 0 0 0 15.75 7.5\\\"/></g>\"\n    },\n    \"chat-bubble-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.848 2.771A49.144 49.144 0 0 1 12 2.25c2.43 0 4.817.178 7.152.52c1.978.292 3.348 2.024 3.348 3.97v6.02c0 1.946-1.37 3.678-3.348 3.97a49.36 49.36 0 0 1-5.922.505a.39.39 0 0 0-.266.112L8.78 21.53A.75.75 0 0 1 7.5 21v-3.955a48.842 48.842 0 0 1-2.652-.316c-1.978-.29-3.348-2.024-3.348-3.97V6.741c0-1.946 1.37-3.68 3.348-3.97\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chat-bubble-oval-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 20.25c4.97 0 9-3.694 9-8.25s-4.03-8.25-9-8.25S3 7.444 3 12c0 2.104.859 4.023 2.273 5.48c.432.447.74 1.04.586 1.641a4.483 4.483 0 0 1-.923 1.785A5.969 5.969 0 0 0 6 21c1.282 0 2.47-.402 3.445-1.087c.81.22 1.668.337 2.555.337\\\"/>\"\n    },\n    \"chat-bubble-oval-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 10c0-3.967 3.69-7 8-7c4.31 0 8 3.033 8 7s-3.69 7-8 7a9.165 9.165 0 0 1-1.504-.123a5.976 5.976 0 0 1-3.935 1.107a.75.75 0 0 1-.584-1.143a3.478 3.478 0 0 0 .522-1.756C2.979 13.825 2 12.025 2 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chat-bubble-oval-left-ellipsis\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.625 12a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375M21 12c0 4.556-4.03 8.25-9 8.25a9.764 9.764 0 0 1-2.555-.337A5.972 5.972 0 0 1 5.41 20.97a5.969 5.969 0 0 1-.474-.065a4.48 4.48 0 0 0 .978-2.025c.09-.457-.133-.901-.467-1.226C3.93 16.178 3 14.189 3 12c0-4.556 4.03-8.25 9-8.25s9 3.694 9 8.25\\\"/>\"\n    },\n    \"chat-bubble-oval-left-ellipsis-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 3c-4.31 0-8 3.033-8 7c0 2.024.978 3.825 2.499 5.085a3.478 3.478 0 0 1-.522 1.756a.75.75 0 0 0 .584 1.143a5.976 5.976 0 0 0 3.936-1.108c.487.082.99.124 1.503.124c4.31 0 8-3.033 8-7s-3.69-7-8-7m0 8a1 1 0 1 0 0-2a1 1 0 0 0 0 2m-2-1a1 1 0 1 1-2 0a1 1 0 0 1 2 0m5 1a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chat-bubble-oval-left-ellipsis-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.804 21.644A6.707 6.707 0 0 0 6 21.75a6.721 6.721 0 0 0 3.583-1.029c.774.182 1.584.279 2.417.279c5.322 0 9.75-3.97 9.75-9c0-5.03-4.428-9-9.75-9s-9.75 3.97-9.75 9c0 2.409 1.025 4.587 2.674 6.192c.232.226.277.428.254.543a3.73 3.73 0 0 1-.814 1.686a.75.75 0 0 0 .44 1.223M8.25 10.875a1.125 1.125 0 1 0 0 2.25a1.125 1.125 0 0 0 0-2.25M10.875 12a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0m4.875-1.125a1.125 1.125 0 1 0 0 2.25a1.125 1.125 0 0 0 0-2.25\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chat-bubble-oval-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.337 21.718a6.707 6.707 0 0 1-.533-.074a.75.75 0 0 1-.44-1.223a3.73 3.73 0 0 0 .814-1.686c.023-.115-.022-.317-.254-.543C3.274 16.587 2.25 14.41 2.25 12c0-5.03 4.428-9 9.75-9s9.75 3.97 9.75 9c0 5.03-4.428 9-9.75 9c-.833 0-1.643-.097-2.417-.279a6.721 6.721 0 0 1-4.246.997\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"check\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m4.5 12.75l6 6l9-13.5\\\"/>\"\n    },\n    \"check-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M16.705 4.153a.75.75 0 0 1 .142 1.052l-8 10.5a.75.75 0 0 1-1.127.075l-4.5-4.5a.75.75 0 0 1 1.06-1.06l3.894 3.893l7.48-9.817a.75.75 0 0 1 1.05-.143\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"check-badge\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 12.75L11.25 15L15 9.75M21 12c0 1.268-.63 2.39-1.593 3.068a3.745 3.745 0 0 1-1.043 3.296a3.745 3.745 0 0 1-3.296 1.043A3.745 3.745 0 0 1 12 21c-1.268 0-2.39-.63-3.068-1.593a3.746 3.746 0 0 1-3.296-1.043a3.745 3.745 0 0 1-1.043-3.296A3.745 3.745 0 0 1 3 12c0-1.268.63-2.39 1.593-3.068a3.745 3.745 0 0 1 1.043-3.296a3.746 3.746 0 0 1 3.296-1.043A3.746 3.746 0 0 1 12 3c1.268 0 2.39.63 3.068 1.593a3.746 3.746 0 0 1 3.296 1.043a3.746 3.746 0 0 1 1.043 3.296A3.745 3.745 0 0 1 21 12\\\"/>\"\n    },\n    \"check-badge-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M16.403 12.652a3 3 0 0 0 0-5.304a3 3 0 0 0-3.75-3.751a3 3 0 0 0-5.305 0a3 3 0 0 0-3.751 3.75a3 3 0 0 0 0 5.305a3 3 0 0 0 3.75 3.751a3 3 0 0 0 5.305 0a3 3 0 0 0 3.751-3.75m-2.546-4.46a.75.75 0 0 0-1.214-.883L9.16 12.1l-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"check-badge-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.603 3.799A4.49 4.49 0 0 1 12 2.25c1.357 0 2.573.6 3.397 1.549a4.49 4.49 0 0 1 3.498 1.307a4.491 4.491 0 0 1 1.307 3.497A4.49 4.49 0 0 1 21.75 12a4.49 4.49 0 0 1-1.549 3.397a4.491 4.491 0 0 1-1.307 3.497a4.491 4.491 0 0 1-3.497 1.307A4.49 4.49 0 0 1 12 21.75a4.49 4.49 0 0 1-3.397-1.549a4.49 4.49 0 0 1-3.498-1.306a4.491 4.491 0 0 1-1.307-3.498A4.49 4.49 0 0 1 2.25 12c0-1.357.6-2.573 1.549-3.397a4.49 4.49 0 0 1 1.307-3.497a4.49 4.49 0 0 1 3.497-1.307m7.007 6.387a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"check-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 12.75L11.25 15L15 9.75M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"check-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m3.857-9.809a.75.75 0 0 0-1.214-.882l-3.483 4.79l-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"check-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12m13.36-1.814a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"check-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19.916 4.626a.75.75 0 0 1 .208 1.04l-9 13.5a.75.75 0 0 1-1.154.114l-6-6a.75.75 0 0 1 1.06-1.06l5.353 5.353l8.493-12.739a.75.75 0 0 1 1.04-.208\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-double-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m19.5 5.25l-7.5 7.5l-7.5-7.5m15 6l-7.5 7.5l-7.5-7.5\\\"/>\"\n    },\n    \"chevron-double-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M14.77 4.21a.75.75 0 0 1 .02 1.06l-4.25 4.5a.75.75 0 0 1-1.08 0l-4.25-4.5a.75.75 0 0 1 1.08-1.04L10 8.168l3.71-3.938a.75.75 0 0 1 1.06-.02m0 6a.75.75 0 0 1 .02 1.06l-4.25 4.5a.75.75 0 0 1-1.08 0l-4.25-4.5a.75.75 0 1 1 1.08-1.04L10 14.168l3.71-3.938a.75.75 0 0 1 1.06-.02\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-double-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M20.03 4.72a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 11.69l6.97-6.97a.75.75 0 0 1 1.06 0m0 6a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 1 1 1.06-1.06L12 17.69l6.97-6.97a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-double-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m18.75 19.5l-7.5-7.5l7.5-7.5m-6 15L5.25 12l7.5-7.5\\\"/>\"\n    },\n    \"chevron-double-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.79 14.77a.75.75 0 0 1-1.06.02l-4.5-4.25a.75.75 0 0 1 0-1.08l4.5-4.25a.75.75 0 1 1 1.04 1.08L11.832 10l3.938 3.71a.75.75 0 0 1 .02 1.06m-6 0a.75.75 0 0 1-1.06.02l-4.5-4.25a.75.75 0 0 1 0-1.08l4.5-4.25a.75.75 0 1 1 1.04 1.08L5.832 10l3.938 3.71a.75.75 0 0 1 .02 1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-double-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M13.28 3.97a.75.75 0 0 1 0 1.06L6.31 12l6.97 6.97a.75.75 0 1 1-1.06 1.06l-7.5-7.5a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 0 1 1.06 0m6 0a.75.75 0 0 1 0 1.06L12.31 12l6.97 6.97a.75.75 0 1 1-1.06 1.06l-7.5-7.5a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-double-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m11.25 4.5l7.5 7.5l-7.5 7.5m-6-15l7.5 7.5l-7.5 7.5\\\"/>\"\n    },\n    \"chevron-double-right-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M10.21 14.77a.75.75 0 0 1 .02-1.06L14.168 10L10.23 6.29a.75.75 0 1 1 1.04-1.08l4.5 4.25a.75.75 0 0 1 0 1.08l-4.5 4.25a.75.75 0 0 1-1.06-.02\\\"/><path d=\\\"M4.21 14.77a.75.75 0 0 1 .02-1.06L8.168 10L4.23 6.29a.75.75 0 1 1 1.04-1.08l4.5 4.25a.75.75 0 0 1 0 1.08l-4.5 4.25a.75.75 0 0 1-1.06-.02\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-double-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.72 3.97a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06-1.06L11.69 12L4.72 5.03a.75.75 0 0 1 0-1.06m6 0a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 1 1-1.06-1.06L17.69 12l-6.97-6.97a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-double-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m4.5 12.75l7.5-7.5l7.5 7.5m-15 6l7.5-7.5l7.5 7.5\\\"/>\"\n    },\n    \"chevron-double-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.23 15.79a.75.75 0 0 1-.02-1.06l4.25-4.5a.75.75 0 0 1 1.08 0l4.25 4.5a.75.75 0 1 1-1.08 1.04L10 11.832L6.29 15.77a.75.75 0 0 1-1.06.02m0-6a.75.75 0 0 1-.02-1.06l4.25-4.5a.75.75 0 0 1 1.08 0l4.25 4.5a.75.75 0 1 1-1.08 1.04L10 5.832L6.29 9.77a.75.75 0 0 1-1.06.02\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-double-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.47 4.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 6.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06zm.53 7.59l-6.97 6.97a.75.75 0 0 1-1.06-1.06l7.5-7.5a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m19.5 8.25l-7.5 7.5l-7.5-7.5\\\"/>\"\n    },\n    \"chevron-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.23 7.21a.75.75 0 0 1 1.06.02L10 11.168l3.71-3.938a.75.75 0 1 1 1.08 1.04l-4.25 4.5a.75.75 0 0 1-1.08 0l-4.25-4.5a.75.75 0 0 1 .02-1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 19.5L8.25 12l7.5-7.5\\\"/>\"\n    },\n    \"chevron-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12.79 5.23a.75.75 0 0 1-.02 1.06L8.832 10l3.938 3.71a.75.75 0 1 1-1.04 1.08l-4.5-4.25a.75.75 0 0 1 0-1.08l4.5-4.25a.75.75 0 0 1 1.06.02\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-left-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.72 12.53a.75.75 0 0 1 0-1.06l7.5-7.5a.75.75 0 1 1 1.06 1.06L9.31 12l6.97 6.97a.75.75 0 1 1-1.06 1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m8.25 4.5l7.5 7.5l-7.5 7.5\\\"/>\"\n    },\n    \"chevron-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.21 14.77a.75.75 0 0 1 .02-1.06L11.168 10L7.23 6.29a.75.75 0 1 1 1.04-1.08l4.5 4.25a.75.75 0 0 1 0 1.08l-4.5 4.25a.75.75 0 0 1-1.06-.02\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-right-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M16.28 11.47a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06-1.06L14.69 12L7.72 5.03a.75.75 0 0 1 1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m4.5 15.75l7.5-7.5l7.5 7.5\\\"/>\"\n    },\n    \"chevron-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M14.77 12.79a.75.75 0 0 1-1.06-.02L10 8.832L6.29 12.77a.75.75 0 1 1-1.08-1.04l4.25-4.5a.75.75 0 0 1 1.08 0l4.25 4.5a.75.75 0 0 1-.02 1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-up-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.25 15L12 18.75L15.75 15m-7.5-6L12 5.25L15.75 9\\\"/>\"\n    },\n    \"chevron-up-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 3a.75.75 0 0 1 .55.24l3.25 3.5a.75.75 0 1 1-1.1 1.02L10 4.852L7.3 7.76a.75.75 0 0 1-1.1-1.02l3.25-3.5A.75.75 0 0 1 10 3m-3.76 9.2a.75.75 0 0 1 1.06.04l2.7 2.908l2.7-2.908a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0l-3.25-3.5a.75.75 0 0 1 .04-1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"chevron-up-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.47 4.72a.75.75 0 0 1 1.06 0l3.75 3.75a.75.75 0 0 1-1.06 1.06L12 6.31L8.78 9.53a.75.75 0 0 1-1.06-1.06zm-3.75 9.75a.75.75 0 0 1 1.06 0L12 17.69l3.22-3.22a.75.75 0 1 1 1.06 1.06l-3.75 3.75a.75.75 0 0 1-1.06 0l-3.75-3.75a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"chevron-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.47 7.72a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06L12 9.31l-6.97 6.97a.75.75 0 0 1-1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"circle-stack\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.25c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125\\\"/>\"\n    },\n    \"circle-stack-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 1c3.866 0 7 1.79 7 4s-3.134 4-7 4s-7-1.79-7-4s3.134-4 7-4m5.694 8.13c.464-.264.91-.583 1.306-.952V10c0 2.21-3.134 4-7 4s-7-1.79-7-4V8.178a7 7 0 0 0 1.306.953C5.838 10.006 7.854 10.5 10 10.5s4.162-.494 5.694-1.37M3 13.179V15c0 2.21 3.134 4 7 4s7-1.79 7-4v-1.822a7 7 0 0 1-1.306.953C14.162 15.006 12.146 15.5 10 15.5s-4.162-.494-5.694-1.37A7.009 7.009 0 0 1 3 13.179\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"circle-stack-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M21 6.375c0 2.692-4.03 4.875-9 4.875S3 9.067 3 6.375S7.03 1.5 12 1.5s9 2.183 9 4.875\\\"/><path d=\\\"M12 12.75c2.685 0 5.19-.586 7.078-1.609a8.283 8.283 0 0 0 1.897-1.384c.016.121.025.244.025.368C21 12.817 16.97 15 12 15s-9-2.183-9-4.875c0-.124.009-.247.025-.368a8.285 8.285 0 0 0 1.897 1.384C6.809 12.164 9.315 12.75 12 12.75\\\"/><path d=\\\"M12 16.5c2.685 0 5.19-.586 7.078-1.609a8.282 8.282 0 0 0 1.897-1.384c.016.121.025.244.025.368c0 2.692-4.03 4.875-9 4.875s-9-2.183-9-4.875c0-.124.009-.247.025-.368a8.284 8.284 0 0 0 1.897 1.384C6.809 15.914 9.315 16.5 12 16.5\\\"/><path d=\\\"M12 20.25c2.685 0 5.19-.586 7.078-1.609a8.282 8.282 0 0 0 1.897-1.384c.016.121.025.244.025.368c0 2.692-4.03 4.875-9 4.875s-9-2.183-9-4.875c0-.124.009-.247.025-.368a8.284 8.284 0 0 0 1.897 1.384C6.809 19.664 9.315 20.25 12 20.25\\\"/></g>\"\n    },\n    \"clipboard\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184c1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 0 1 1.927-.184\\\"/>\"\n    },\n    \"clipboard-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M13.887 3.182c.396.037.79.08 1.183.128A2.213 2.213 0 0 1 17 5.517V16.75A2.25 2.25 0 0 1 14.75 19h-9.5A2.25 2.25 0 0 1 3 16.75V5.517c0-1.103.806-2.068 1.93-2.207c.393-.048.787-.09 1.183-.128A3.001 3.001 0 0 1 9 1h2c1.373 0 2.531.923 2.887 2.182M7.5 4A1.5 1.5 0 0 1 9 2.5h2A1.5 1.5 0 0 1 12.5 4v.5h-5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"clipboard-document\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.25 7.5V6.108c0-1.135.845-2.098 1.976-2.192c.373-.03.748-.057 1.124-.08M15.75 18H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 0 0-1.123-.08M15.75 18.75v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5A3.375 3.375 0 0 0 6.375 7.5H5.25m11.9-3.664A2.251 2.251 0 0 0 15 2.25h-1.5a2.251 2.251 0 0 0-2.15 1.586m5.8 0c.065.21.1.433.1.664v.75h-6V4.5c0-.231.035-.454.1-.664M6.75 7.5H4.875c-.621 0-1.125.504-1.125 1.125v12c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V16.5a9 9 0 0 0-9-9\\\"/>\"\n    },\n    \"clipboard-document-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M15.988 3.012A2.25 2.25 0 0 1 18 5.25v6.5A2.25 2.25 0 0 1 15.75 14H13.5v-3.379a3 3 0 0 0-.879-2.121l-3.12-3.121a3 3 0 0 0-1.402-.791a2.252 2.252 0 0 1 1.913-1.576A2.25 2.25 0 0 1 12.25 1h1.5a2.25 2.25 0 0 1 2.238 2.012M11.5 3.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v.25h-3z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M3.5 6A1.5 1.5 0 0 0 2 7.5v9A1.5 1.5 0 0 0 3.5 18h7a1.5 1.5 0 0 0 1.5-1.5v-5.879a1.5 1.5 0 0 0-.44-1.06L8.44 6.439A1.5 1.5 0 0 0 7.378 6z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"clipboard-document-check\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M11.35 3.836c-.065.21-.1.433-.1.664c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75a2.25 2.25 0 0 0-.1-.664m-5.8 0A2.251 2.251 0 0 1 13.5 2.25H15a2.25 2.25 0 0 1 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m8.9-4.414c.376.023.75.05 1.124.08c1.131.094 1.976 1.057 1.976 2.192V16.5A2.25 2.25 0 0 1 18 18.75h-2.25m-7.5-10.5H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V18.75m-7.5-10.5h6.375c.621 0 1.125.504 1.125 1.125v9.375m-8.25-3l1.5 1.5l3-3.75\\\"/>\"\n    },\n    \"clipboard-document-check-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M18 5.25a2.25 2.25 0 0 0-2.012-2.238A2.25 2.25 0 0 0 13.75 1h-1.5a2.25 2.25 0 0 0-2.238 2.012c-.875.092-1.6.686-1.884 1.488H11A2.5 2.5 0 0 1 13.5 7v7h2.25A2.25 2.25 0 0 0 18 11.75zM12.25 2.5a.75.75 0 0 0-.75.75v.25h3v-.25a.75.75 0 0 0-.75-.75z\\\"/><path d=\\\"M3 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1zm6.874 4.166a.75.75 0 1 0-1.248-.832l-2.493 3.739l-.853-.853a.75.75 0 0 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.154-.114z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"clipboard-document-check-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M7.502 6h7.128A3.375 3.375 0 0 1 18 9.375v9.375a3 3 0 0 0 3-3V6.108c0-1.505-1.125-2.811-2.664-2.94a48.972 48.972 0 0 0-.673-.05A3 3 0 0 0 15 1.5h-1.5a3 3 0 0 0-2.663 1.618c-.225.015-.45.032-.673.05C8.662 3.295 7.554 4.542 7.502 6M13.5 3A1.5 1.5 0 0 0 12 4.5h4.5A1.5 1.5 0 0 0 15 3z\\\"/><path d=\\\"M3 9.375C3 8.339 3.84 7.5 4.875 7.5h9.75c1.036 0 1.875.84 1.875 1.875v11.25c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 0 1 3 20.625zm9.586 4.594a.75.75 0 0 0-1.172-.937l-2.476 3.095l-.908-.907a.75.75 0 0 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.116-.062z\\\"/></g>\"\n    },\n    \"clipboard-document-list\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 0 0-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75a2.25 2.25 0 0 0-.1-.664m-5.8 0A2.251 2.251 0 0 1 13.5 2.25H15a2.25 2.25 0 0 1 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125zM6.75 12h.008v.008H6.75zm0 3h.008v.008H6.75zm0 3h.008v.008H6.75z\\\"/>\"\n    },\n    \"clipboard-document-list-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M15.988 3.012A2.25 2.25 0 0 1 18 5.25v6.5A2.25 2.25 0 0 1 15.75 14H13.5V7A2.5 2.5 0 0 0 11 4.5H8.128a2.252 2.252 0 0 1 1.884-1.488A2.25 2.25 0 0 1 12.25 1h1.5a2.25 2.25 0 0 1 2.238 2.012M11.5 3.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v.25h-3z\\\"/><path d=\\\"M2 7a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1zm2 3.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75m0 3.5a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"clipboard-document-list-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M7.502 6h7.128A3.375 3.375 0 0 1 18 9.375v9.375a3 3 0 0 0 3-3V6.108c0-1.505-1.125-2.811-2.664-2.94a48.972 48.972 0 0 0-.673-.05A3 3 0 0 0 15 1.5h-1.5a3 3 0 0 0-2.663 1.618c-.225.015-.45.032-.673.05C8.662 3.295 7.554 4.542 7.502 6M13.5 3A1.5 1.5 0 0 0 12 4.5h4.5A1.5 1.5 0 0 0 15 3z\\\"/><path d=\\\"M3 9.375C3 8.339 3.84 7.5 4.875 7.5h9.75c1.036 0 1.875.84 1.875 1.875v11.25c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 0 1 3 20.625zM6 12a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75zm2.25 0a.75.75 0 0 1 .75-.75h3.75a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75M6 15a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75zm2.25 0a.75.75 0 0 1 .75-.75h3.75a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75M6 18a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75zm2.25 0a.75.75 0 0 1 .75-.75h3.75a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75\\\"/></g>\"\n    },\n    \"clipboard-document-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M17.663 3.118c.225.015.45.032.673.05C19.876 3.298 21 4.604 21 6.109v9.642a3 3 0 0 1-3 3V16.5c0-5.922-4.576-10.775-10.384-11.217c.324-1.132 1.3-2.01 2.548-2.114c.224-.019.448-.036.673-.051A3 3 0 0 1 13.5 1.5H15a3 3 0 0 1 2.663 1.618M12 4.5A1.5 1.5 0 0 1 13.5 3H15a1.5 1.5 0 0 1 1.5 1.5z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M3 8.625c0-1.036.84-1.875 1.875-1.875h.375A3.75 3.75 0 0 1 9 10.5v1.875c0 1.036.84 1.875 1.875 1.875h1.875A3.75 3.75 0 0 1 16.5 18v2.625c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 0 1 3 20.625z\\\"/><path d=\\\"M10.5 10.5a5.23 5.23 0 0 0-1.279-3.434a9.768 9.768 0 0 1 6.963 6.963a5.23 5.23 0 0 0-3.434-1.279h-1.875a.375.375 0 0 1-.375-.375z\\\"/></g>\"\n    },\n    \"clipboard-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 3A1.501 1.501 0 0 0 9 4.5h6A1.5 1.5 0 0 0 13.5 3zm-2.693.178A3 3 0 0 1 10.5 1.5h3a3 3 0 0 1 2.694 1.678c.497.042.992.092 1.486.15c1.497.173 2.57 1.46 2.57 2.929V19.5a3 3 0 0 1-3 3H6.75a3 3 0 0 1-3-3V6.257c0-1.47 1.073-2.756 2.57-2.93c.493-.057.989-.107 1.487-.15\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"clock\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"clock-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m.75-13a.75.75 0 0 0-1.5 0v5c0 .414.336.75.75.75h4a.75.75 0 0 0 0-1.5h-3.25z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"clock-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M12.75 6a.75.75 0 0 0-1.5 0v6c0 .414.336.75.75.75h4.5a.75.75 0 0 0 0-1.5h-3.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cloud\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 15a4.5 4.5 0 0 0 4.5 4.5H18a3.75 3.75 0 0 0 1.332-7.257a3 3 0 0 0-3.758-3.848a5.25 5.25 0 0 0-10.233 2.33A4.502 4.502 0 0 0 2.25 15\\\"/>\"\n    },\n    \"cloud-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M1 12.5A4.5 4.5 0 0 0 5.5 17H15a4 4 0 0 0 1.866-7.539a3.504 3.504 0 0 0-4.504-4.272A4.5 4.5 0 0 0 4.06 8.235A4.502 4.502 0 0 0 1 12.5\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cloud-arrow-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 9.75v6.75m0 0l-3-3m3 3l3-3m-8.25 6a4.5 4.5 0 0 1-1.41-8.775a5.25 5.25 0 0 1 10.233-2.33a3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5z\\\"/>\"\n    },\n    \"cloud-arrow-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.5 17a4.5 4.5 0 0 1-1.44-8.765a4.5 4.5 0 0 1 8.302-3.046a3.5 3.5 0 0 1 4.504 4.272A4 4 0 0 1 15 17zm5.25-9.25a.75.75 0 0 0-1.5 0v4.59l-1.95-2.1a.75.75 0 1 0-1.1 1.02l3.25 3.5a.75.75 0 0 0 1.1 0l3.25-3.5a.75.75 0 1 0-1.1-1.02l-1.95 2.1z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cloud-arrow-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 3.75a6 6 0 0 0-5.98 6.496A5.25 5.25 0 0 0 6.75 20.25H18a4.5 4.5 0 0 0 2.206-8.423a3.75 3.75 0 0 0-4.132-4.303A6.001 6.001 0 0 0 10.5 3.75m2.25 6a.75.75 0 0 0-1.5 0v4.94l-1.72-1.72a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cloud-arrow-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 16.5V9.75m0 0l3 3m-3-3l-3 3M6.75 19.5a4.5 4.5 0 0 1-1.41-8.775a5.25 5.25 0 0 1 10.233-2.33a3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5z\\\"/>\"\n    },\n    \"cloud-arrow-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.5 17a4.5 4.5 0 0 1-1.44-8.765a4.5 4.5 0 0 1 8.302-3.046a3.5 3.5 0 0 1 4.504 4.272A4 4 0 0 1 15 17zm3.75-2.75a.75.75 0 0 0 1.5 0V9.66l1.95 2.1a.75.75 0 1 0 1.1-1.02l-3.25-3.5a.75.75 0 0 0-1.1 0l-3.25 3.5a.75.75 0 1 0 1.1 1.02l1.95-2.1z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cloud-arrow-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 3.75a6 6 0 0 0-5.98 6.496A5.25 5.25 0 0 0 6.75 20.25H18a4.5 4.5 0 0 0 2.206-8.423a3.75 3.75 0 0 0-4.132-4.303A6.001 6.001 0 0 0 10.5 3.75m2.03 5.47a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l1.72-1.72v4.94a.75.75 0 0 0 1.5 0v-4.94l1.72 1.72a.75.75 0 1 0 1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cloud-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 9.75a6 6 0 0 1 11.573-2.226a3.75 3.75 0 0 1 4.133 4.303A4.5 4.5 0 0 1 18 20.25H6.75a5.25 5.25 0 0 1-2.23-10.004a6.072 6.072 0 0 1-.02-.496\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"code-bracket\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5\\\"/>\"\n    },\n    \"code-bracket-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.28 5.22a.75.75 0 0 1 0 1.06L2.56 10l3.72 3.72a.75.75 0 0 1-1.06 1.06L.97 10.53a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0m7.44 0a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06-1.06L17.44 10l-3.72-3.72a.75.75 0 0 1 0-1.06m-2.343-3.209a.75.75 0 0 1 .612.867l-2.5 14.5a.75.75 0 0 1-1.478-.255l2.5-14.5a.75.75 0 0 1 .866-.612\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"code-bracket-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M14.447 3.027a.75.75 0 0 1 .527.92l-4.5 16.5a.75.75 0 0 1-1.448-.394l4.5-16.5a.75.75 0 0 1 .921-.526M16.72 6.22a.75.75 0 0 1 1.06 0l5.25 5.25a.75.75 0 0 1 0 1.06l-5.25 5.25a.75.75 0 1 1-1.06-1.06L21.44 12l-4.72-4.72a.75.75 0 0 1 0-1.06m-9.44 0a.75.75 0 0 1 0 1.06L2.56 12l4.72 4.72a.75.75 0 1 1-1.06 1.06L.97 12.53a.75.75 0 0 1 0-1.06l5.25-5.25a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"code-bracket-square\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.25 9.75L16.5 12l-2.25 2.25m-4.5 0L7.5 12l2.25-2.25M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25\\\"/>\"\n    },\n    \"code-bracket-square-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.25 2A2.25 2.25 0 0 0 2 4.25v11.5A2.25 2.25 0 0 0 4.25 18h11.5A2.25 2.25 0 0 0 18 15.75V4.25A2.25 2.25 0 0 0 15.75 2zm4.03 6.28a.75.75 0 0 0-1.06-1.06L4.97 9.47a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 0 0 1.06-1.06L6.56 10zm4.5-1.06a.75.75 0 1 0-1.06 1.06L13.44 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06l2.25-2.25a.75.75 0 0 0 0-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"code-bracket-square-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm14.25 6a.75.75 0 0 1-.22.53l-2.25 2.25a.75.75 0 1 1-1.06-1.06L15.44 12l-1.72-1.72a.75.75 0 1 1 1.06-1.06l2.25 2.25c.141.14.22.331.22.53m-10.28-.53a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 1 0 1.06-1.06L8.56 12l1.72-1.72a.75.75 0 1 0-1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cog\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M4.5 12a7.5 7.5 0 0 0 15 0m-15 0a7.5 7.5 0 1 1 15 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077l1.41-.513m14.095-5.13l1.41-.513M5.106 17.785l1.15-.964m11.49-9.642l1.149-.964M7.501 19.795l.75-1.3m7.5-12.99l.75-1.3m-6.063 16.658l.26-1.477m2.605-14.772l.26-1.477m0 17.726l-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205L12 12m6.894 5.785l-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864l-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495\\\"/>\"\n    },\n    \"cog-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M13.024 9.25c.47 0 .827-.433.637-.863a4 4 0 0 0-4.094-2.364c-.468.05-.665.576-.43.984l1.08 1.868a.75.75 0 0 0 .649.375zM7.84 7.758c-.236-.408-.79-.5-1.068-.12A3.982 3.982 0 0 0 6 10c0 .884.287 1.7.772 2.363c.278.38.832.287 1.068-.12l1.078-1.868a.75.75 0 0 0 0-.75zm1.298 5.235c-.235.408-.039.934.43.984a4 4 0 0 0 4.094-2.364c.19-.43-.168-.863-.638-.863h-2.158a.75.75 0 0 0-.65.375z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"m14.13 4.347l.644-1.117a.75.75 0 0 0-1.299-.75l-.644 1.116a6.954 6.954 0 0 0-2.081-.556V1.75a.75.75 0 0 0-1.5 0v1.29a6.954 6.954 0 0 0-2.081.556L6.525 2.48a.75.75 0 1 0-1.3.75l.645 1.117A7.04 7.04 0 0 0 4.347 5.87L3.23 5.225a.75.75 0 1 0-.75 1.3l1.116.644A6.954 6.954 0 0 0 3.04 9.25H1.75a.75.75 0 0 0 0 1.5h1.29a6.98 6.98 0 0 0 .556 2.081l-1.116.645a.75.75 0 1 0 .75 1.298l1.117-.644a7.04 7.04 0 0 0 1.523 1.523l-.645 1.117a.75.75 0 1 0 1.3.75l.644-1.116a6.954 6.954 0 0 0 2.081.556v1.29a.75.75 0 0 0 1.5 0v-1.29a6.954 6.954 0 0 0 2.081-.556l.645 1.116a.75.75 0 0 0 1.299-.75l-.645-1.117a7.042 7.042 0 0 0 1.523-1.523l1.117.644a.75.75 0 0 0 .75-1.298l-1.116-.645a6.954 6.954 0 0 0 .556-2.081h1.29a.75.75 0 0 0 0-1.5h-1.29a6.954 6.954 0 0 0-.556-2.081l1.116-.644a.75.75 0 0 0-.75-1.3l-1.117.645a7.04 7.04 0 0 0-1.524-1.523M10 4.5a5.475 5.475 0 0 0-2.781.754A5.527 5.527 0 0 0 5.22 7.277A5.475 5.475 0 0 0 4.5 10a5.475 5.475 0 0 0 .752 2.777a5.527 5.527 0 0 0 2.028 2.004c.802.458 1.73.719 2.72.719a5.474 5.474 0 0 0 2.78-.753a5.527 5.527 0 0 0 2.001-2.027c.458-.802.719-1.73.719-2.72a5.475 5.475 0 0 0-.753-2.78a5.528 5.528 0 0 0-2.028-2.002A5.475 5.475 0 0 0 10 4.5\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cog-6-tooth\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87c.074.04.147.083.22.127c.324.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.24-.438.613-.431.992a6.759 6.759 0 0 1 0 .255c-.007.378.138.75.43.99l1.005.828c.424.35.534.954.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.57 6.57 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.28c-.09.543-.56.941-1.11.941h-2.594c-.55 0-1.02-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.992a6.932 6.932 0 0 1 0-.255c.007-.378-.138-.75-.43-.99l-1.004-.828a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124c.072-.044.146-.087.22-.128c.332-.183.582-.495.644-.869z\\\"/><path d=\\\"M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0\\\"/></g>\"\n    },\n    \"cog-6-tooth-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.84 1.804A1 1 0 0 1 8.82 1h2.36a1 1 0 0 1 .98.804l.331 1.652a6.993 6.993 0 0 1 1.929 1.115l1.598-.54a1 1 0 0 1 1.186.447l1.18 2.044a1 1 0 0 1-.205 1.251l-1.267 1.113a7.047 7.047 0 0 1 0 2.228l1.267 1.113a1 1 0 0 1 .206 1.25l-1.18 2.045a1 1 0 0 1-1.187.447l-1.598-.54a6.993 6.993 0 0 1-1.929 1.115l-.33 1.652a1 1 0 0 1-.98.804H8.82a1 1 0 0 1-.98-.804l-.331-1.652a6.993 6.993 0 0 1-1.929-1.115l-1.598.54a1 1 0 0 1-1.186-.447l-1.18-2.044a1 1 0 0 1 .205-1.251l1.267-1.114a7.05 7.05 0 0 1 0-2.227L1.821 7.773a1 1 0 0 1-.206-1.25l1.18-2.045a1 1 0 0 1 1.187-.447l1.598.54a6.993 6.993 0 0 1 1.93-1.115zM10 13a3 3 0 1 0 0-6a3 3 0 0 0 0 6\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cog-6-tooth-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.078 2.25c-.917 0-1.699.663-1.85 1.567L9.05 4.889c-.02.12-.115.26-.297.348a7.493 7.493 0 0 0-.986.57c-.166.115-.334.126-.45.083L6.3 5.508a1.875 1.875 0 0 0-2.282.819l-.922 1.597a1.875 1.875 0 0 0 .432 2.385l.84.692c.095.078.17.229.154.43a7.598 7.598 0 0 0 0 1.139c.015.2-.059.352-.153.43l-.841.692a1.875 1.875 0 0 0-.432 2.385l.922 1.597a1.875 1.875 0 0 0 2.282.818l1.019-.382c.115-.043.283-.031.45.082c.312.214.641.405.985.57c.182.088.277.228.297.35l.178 1.071a1.876 1.876 0 0 0 1.85 1.567h1.844c.916 0 1.699-.663 1.85-1.567l.178-1.072c.02-.12.114-.26.297-.349c.344-.165.673-.356.985-.57c.167-.114.335-.125.45-.082l1.02.382a1.875 1.875 0 0 0 2.28-.819l.923-1.597a1.875 1.875 0 0 0-.432-2.385l-.84-.692c-.095-.078-.17-.229-.154-.43a7.614 7.614 0 0 0 0-1.139c-.016-.2.059-.352.153-.43l.84-.692c.708-.582.891-1.59.433-2.385l-.922-1.597a1.875 1.875 0 0 0-2.282-.818l-1.02.382c-.114.043-.282.031-.449-.083a7.49 7.49 0 0 0-.985-.57c-.183-.087-.277-.227-.297-.348l-.179-1.072a1.875 1.875 0 0 0-1.85-1.567zM12 15.75a3.75 3.75 0 1 0 0-7.5a3.75 3.75 0 0 0 0 7.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cog-8-tooth\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M10.343 3.94c.09-.542.56-.94 1.11-.94h1.093c.55 0 1.02.398 1.11.94l.149.894c.07.424.384.764.78.93c.398.164.855.142 1.205-.108l.737-.527a1.125 1.125 0 0 1 1.45.12l.773.774c.39.389.44 1.002.12 1.45l-.527.737c-.25.35-.272.806-.107 1.204c.165.397.505.71.93.78l.893.15c.543.09.94.56.94 1.109v1.094c0 .55-.397 1.02-.94 1.11l-.893.149c-.425.07-.765.383-.93.78c-.165.398-.143.854.107 1.204l.527.738c.32.447.269 1.06-.12 1.45l-.774.773a1.125 1.125 0 0 1-1.449.12l-.738-.527c-.35-.25-.806-.272-1.203-.107c-.397.165-.71.505-.781.929l-.149.894c-.09.542-.56.94-1.11.94h-1.094c-.55 0-1.019-.398-1.11-.94l-.148-.894c-.071-.424-.384-.764-.781-.93c-.398-.164-.854-.142-1.204.108l-.738.527c-.447.32-1.06.269-1.45-.12l-.773-.774a1.125 1.125 0 0 1-.12-1.45l.527-.737c.25-.35.273-.806.108-1.204c-.165-.397-.505-.71-.93-.78l-.894-.15c-.542-.09-.94-.56-.94-1.109v-1.094c0-.55.398-1.02.94-1.11l.894-.149c.424-.07.765-.383.93-.78c.165-.398.143-.854-.107-1.204l-.527-.738a1.125 1.125 0 0 1 .12-1.45l.773-.773a1.125 1.125 0 0 1 1.45-.12l.737.527c.35.25.807.272 1.204.107c.397-.165.71-.505.78-.929z\\\"/><path d=\\\"M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0\\\"/></g>\"\n    },\n    \"cog-8-tooth-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.34 1.804A1 1 0 0 1 9.32 1h1.36a1 1 0 0 1 .98.804l.295 1.473c.497.144.971.342 1.416.587l1.25-.834a1 1 0 0 1 1.262.125l.962.962a1 1 0 0 1 .125 1.262l-.834 1.25c.245.445.443.919.587 1.416l1.473.294a1 1 0 0 1 .804.98v1.361a1 1 0 0 1-.804.98l-1.473.295a6.95 6.95 0 0 1-.587 1.416l.834 1.25a1 1 0 0 1-.125 1.262l-.962.962a1 1 0 0 1-1.262.125l-1.25-.834a6.953 6.953 0 0 1-1.416.587l-.294 1.473a1 1 0 0 1-.98.804H9.32a1 1 0 0 1-.98-.804l-.295-1.473a6.957 6.957 0 0 1-1.416-.587l-1.25.834a1 1 0 0 1-1.262-.125l-.962-.962a1 1 0 0 1-.125-1.262l.834-1.25a6.957 6.957 0 0 1-.587-1.416l-1.473-.294A1 1 0 0 1 1 10.68V9.32a1 1 0 0 1 .804-.98l1.473-.295c.144-.497.342-.971.587-1.416l-.834-1.25a1 1 0 0 1 .125-1.262l.962-.962A1 1 0 0 1 5.38 3.03l1.25.834a6.957 6.957 0 0 1 1.416-.587zM13 10a3 3 0 1 1-6 0a3 3 0 0 1 6 0\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cog-8-tooth-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.828 2.25c-.916 0-1.699.663-1.85 1.567l-.091.549a.798.798 0 0 1-.517.608a7.45 7.45 0 0 0-.478.198a.798.798 0 0 1-.796-.064l-.453-.324a1.875 1.875 0 0 0-2.416.2l-.243.243a1.875 1.875 0 0 0-.2 2.416l.324.453a.798.798 0 0 1 .064.796a7.448 7.448 0 0 0-.198.478a.798.798 0 0 1-.608.517l-.55.092a1.875 1.875 0 0 0-1.566 1.849v.344c0 .916.663 1.699 1.567 1.85l.549.091c.281.047.508.25.608.517c.06.162.127.321.198.478a.798.798 0 0 1-.064.796l-.324.453a1.875 1.875 0 0 0 .2 2.416l.243.243c.648.648 1.67.733 2.416.2l.453-.324a.798.798 0 0 1 .796-.064c.157.071.316.137.478.198c.267.1.47.327.517.608l.092.55c.15.903.932 1.566 1.849 1.566h.344c.916 0 1.699-.663 1.85-1.567l.091-.549a.798.798 0 0 1 .517-.608a7.52 7.52 0 0 0 .478-.198a.798.798 0 0 1 .796.064l.453.324a1.875 1.875 0 0 0 2.416-.2l.243-.243c.648-.648.733-1.67.2-2.416l-.324-.453a.798.798 0 0 1-.064-.796c.071-.157.137-.316.198-.478c.1-.267.327-.47.608-.517l.55-.091a1.875 1.875 0 0 0 1.566-1.85v-.344c0-.916-.663-1.699-1.567-1.85l-.549-.091a.798.798 0 0 1-.608-.517a7.507 7.507 0 0 0-.198-.478a.798.798 0 0 1 .064-.796l.324-.453a1.875 1.875 0 0 0-.2-2.416l-.243-.243a1.875 1.875 0 0 0-2.416-.2l-.453.324a.798.798 0 0 1-.796.064a7.462 7.462 0 0 0-.478-.198a.798.798 0 0 1-.517-.608l-.091-.55a1.875 1.875 0 0 0-1.85-1.566zM12 15.75a3.75 3.75 0 1 0 0-7.5a3.75 3.75 0 0 0 0 7.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cog-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M17.004 10.407c.138.435-.216.842-.672.842h-3.465a.75.75 0 0 1-.65-.375l-1.732-3c-.229-.396-.053-.907.393-1.004a5.252 5.252 0 0 1 6.126 3.537M8.12 8.464c.307-.338.838-.235 1.066.16l1.732 3a.75.75 0 0 1 0 .75l-1.732 3.001c-.229.396-.76.498-1.067.16A5.231 5.231 0 0 1 6.75 12a5.23 5.23 0 0 1 1.37-3.536m2.758 8.666c-.447-.097-.623-.608-.394-1.003l1.733-3.003a.75.75 0 0 1 .65-.375h3.465c.457 0 .81.408.672.843a5.252 5.252 0 0 1-6.126 3.538\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M21 12.75a.75.75 0 0 0 0-1.5h-.783a8.22 8.22 0 0 0-.237-1.357l.734-.267a.75.75 0 1 0-.513-1.41l-.735.268a8.24 8.24 0 0 0-.689-1.191l.6-.504a.75.75 0 1 0-.964-1.149l-.6.504a8.3 8.3 0 0 0-1.054-.885l.391-.678a.75.75 0 1 0-1.299-.75l-.39.677a8.188 8.188 0 0 0-1.295-.471l.136-.77a.75.75 0 0 0-1.477-.26l-.136.77a8.364 8.364 0 0 0-1.377 0l-.136-.77a.75.75 0 1 0-1.477.26l.136.77c-.448.121-.88.28-1.294.47l-.39-.676a.75.75 0 0 0-1.3.75l.392.678a8.29 8.29 0 0 0-1.054.885l-.6-.504a.75.75 0 0 0-.965 1.149l.6.503a8.243 8.243 0 0 0-.689 1.192L3.8 8.217a.75.75 0 1 0-.513 1.41l.735.267a8.222 8.222 0 0 0-.238 1.355h-.783a.75.75 0 0 0 0 1.5h.783c.042.464.122.917.238 1.356l-.735.268a.75.75 0 1 0 .513 1.41l.735-.268c.197.417.428.816.69 1.192l-.6.504a.75.75 0 1 0 .963 1.149l.601-.505c.326.323.679.62 1.054.885l-.392.68a.75.75 0 1 0 1.3.75l.39-.679c.414.192.847.35 1.294.471l-.136.771a.75.75 0 1 0 1.477.26l.137-.772a8.376 8.376 0 0 0 1.376 0l.136.773a.75.75 0 1 0 1.477-.26l-.136-.772a8.19 8.19 0 0 0 1.294-.47l.391.677a.75.75 0 1 0 1.3-.75l-.393-.679a8.282 8.282 0 0 0 1.054-.885l.601.504a.75.75 0 1 0 .964-1.15l-.6-.503a8.24 8.24 0 0 0 .69-1.191l.735.268a.75.75 0 1 0 .512-1.41l-.734-.268c.115-.438.195-.892.237-1.356zm-2.657-3.06a6.744 6.744 0 0 0-1.19-2.053a6.784 6.784 0 0 0-1.82-1.51A6.704 6.704 0 0 0 12 5.25a6.801 6.801 0 0 0-1.225.111a6.7 6.7 0 0 0-2.15.792a6.784 6.784 0 0 0-2.952 3.489a.758.758 0 0 1-.036.099A6.74 6.74 0 0 0 5.251 12a6.739 6.739 0 0 0 3.355 5.835l.01.006l.01.005a6.706 6.706 0 0 0 2.203.802c.007 0 .014.002.021.004a6.792 6.792 0 0 0 2.301 0l.022-.004a6.707 6.707 0 0 0 2.228-.816a6.781 6.781 0 0 0 1.762-1.483l.009-.01l.009-.012a6.744 6.744 0 0 0 1.18-2.064c.253-.708.39-1.47.39-2.264a6.74 6.74 0 0 0-.408-2.308\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"command-line\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m6.75 7.5l3 2.25l-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25\\\"/>\"\n    },\n    \"command-line-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.25 3A2.25 2.25 0 0 0 1 5.25v9.5A2.25 2.25 0 0 0 3.25 17h13.5A2.25 2.25 0 0 0 19 14.75v-9.5A2.25 2.25 0 0 0 16.75 3zm.943 8.752a.75.75 0 0 1 .055-1.06L6.128 9l-1.88-1.693a.75.75 0 1 1 1.004-1.114l2.5 2.25a.75.75 0 0 1 0 1.114l-2.5 2.25a.75.75 0 0 1-1.06-.055M9.75 10.25a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"command-line-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 6a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3zm3.97.97a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 0 1-1.06-1.06l1.72-1.72l-1.72-1.72a.75.75 0 0 1 0-1.06m4.28 4.28a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"computer-desktop\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25\\\"/>\"\n    },\n    \"computer-desktop-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 4.25A2.25 2.25 0 0 1 4.25 2h11.5A2.25 2.25 0 0 1 18 4.25v8.5A2.25 2.25 0 0 1 15.75 15h-3.105a3.501 3.501 0 0 0 1.1 1.677A.75.75 0 0 1 13.26 18H6.74a.75.75 0 0 1-.484-1.323A3.501 3.501 0 0 0 7.355 15H4.25A2.25 2.25 0 0 1 2 12.75zm1.5 0a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-.75.75H4.25a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"computer-desktop-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 5.25a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3V15a3 3 0 0 1-3 3h-3v.257c0 .597.237 1.17.659 1.591l.621.622a.75.75 0 0 1-.53 1.28h-9a.75.75 0 0 1-.53-1.28l.621-.622a2.25 2.25 0 0 0 .659-1.59V18h-3a3 3 0 0 1-3-3zm1.5 0v7.5a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5v-7.5a1.5 1.5 0 0 0-1.5-1.5H5.25a1.5 1.5 0 0 0-1.5 1.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cpu-chip\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.25 3v1.5M4.5 8.25H3m18 0h-1.5M4.5 12H3m18 0h-1.5m-15 3.75H3m18 0h-1.5M8.25 19.5V21M12 3v1.5m0 15V21m3.75-18v1.5m0 15V21m-9-1.5h10.5a2.25 2.25 0 0 0 2.25-2.25V6.75a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 6.75v10.5a2.25 2.25 0 0 0 2.25 2.25m.75-12h9v9h-9z\\\"/>\"\n    },\n    \"cpu-chip-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M14 6H6v8h8z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M9.25 3V1.75a.75.75 0 0 1 1.5 0V3h1.5V1.75a.75.75 0 0 1 1.5 0V3h.5A2.75 2.75 0 0 1 17 5.75v.5h1.25a.75.75 0 0 1 0 1.5H17v1.5h1.25a.75.75 0 0 1 0 1.5H17v1.5h1.25a.75.75 0 0 1 0 1.5H17v.5A2.75 2.75 0 0 1 14.25 17h-.5v1.25a.75.75 0 0 1-1.5 0V17h-1.5v1.25a.75.75 0 0 1-1.5 0V17h-1.5v1.25a.75.75 0 0 1-1.5 0V17h-.5A2.75 2.75 0 0 1 3 14.25v-.5H1.75a.75.75 0 0 1 0-1.5H3v-1.5H1.75a.75.75 0 0 1 0-1.5H3v-1.5H1.75a.75.75 0 0 1 0-1.5H3v-.5A2.75 2.75 0 0 1 5.75 3h.5V1.75a.75.75 0 0 1 1.5 0V3zM4.5 5.75c0-.69.56-1.25 1.25-1.25h8.5c.69 0 1.25.56 1.25 1.25v8.5c0 .69-.56 1.25-1.25 1.25h-8.5c-.69 0-1.25-.56-1.25-1.25z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cpu-chip-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M16.5 7.5h-9v9h9z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M8.25 2.25A.75.75 0 0 1 9 3v.75h2.25V3a.75.75 0 0 1 1.5 0v.75H15V3a.75.75 0 0 1 1.5 0v.75h.75a3 3 0 0 1 3 3v.75H21A.75.75 0 0 1 21 9h-.75v2.25H21a.75.75 0 0 1 0 1.5h-.75V15H21a.75.75 0 0 1 0 1.5h-.75v.75a3 3 0 0 1-3 3h-.75V21a.75.75 0 0 1-1.5 0v-.75h-2.25V21a.75.75 0 0 1-1.5 0v-.75H9V21a.75.75 0 0 1-1.5 0v-.75h-.75a3 3 0 0 1-3-3v-.75H3A.75.75 0 0 1 3 15h.75v-2.25H3a.75.75 0 0 1 0-1.5h.75V9H3a.75.75 0 0 1 0-1.5h.75v-.75a3 3 0 0 1 3-3h.75V3a.75.75 0 0 1 .75-.75M6 6.75A.75.75 0 0 1 6.75 6h10.5a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75H6.75a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"credit-card\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 8.25h19.5M2.25 9h19.5m-16.5 5.25h6m-6 2.25h3m-3.75 3h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5\\\"/>\"\n    },\n    \"credit-card-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.5 4A1.5 1.5 0 0 0 1 5.5V6h18v-.5A1.5 1.5 0 0 0 17.5 4zM19 8.5H1v6A1.5 1.5 0 0 0 2.5 16h15a1.5 1.5 0 0 0 1.5-1.5zM3 13.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75m4.75-.75a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"credit-card-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.5 3.75a3 3 0 0 0-3 3v.75h21v-.75a3 3 0 0 0-3-3z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M22.5 9.75h-21v7.5a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3zm-18 3.75a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75m.75 2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"cube\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m21 7.5l-9-5.25L3 7.5m18 0l-9 5.25m9-5.25v9l-9 5.25M3 7.5l9 5.25M3 7.5v9l9 5.25m0-9v9\\\"/>\"\n    },\n    \"cube-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.362 1.093a.75.75 0 0 0-.724 0L2.523 5.018L10 9.143l7.477-4.125zM18 6.443l-7.25 4v8.25l6.862-3.786A.75.75 0 0 0 18 14.25zm-8.75 12.25v-8.25l-7.25-4v7.807a.75.75 0 0 0 .388.657z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cube-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M12.378 1.602a.75.75 0 0 0-.756 0L3 6.632l9 5.25l9-5.25zM21.75 7.93l-9 5.25v9l8.628-5.032a.75.75 0 0 0 .372-.648zm-10.5 14.25v-9l-9-5.25v8.57a.75.75 0 0 0 .372.648z\\\"/>\"\n    },\n    \"cube-transparent\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m21 7.5l-2.25-1.312M21 7.5v2.25m0-2.25l-2.25 1.313M3 7.5l2.25-1.312M3 7.5l2.25 1.313M3 7.5v2.25m9 3l2.25-1.312M12 12.75l-2.25-1.312M12 12.75V15m0 6.75l2.25-1.312M12 21.75V19.5m0 2.25l-2.25-1.312m0-16.875L12 2.25l2.25 1.313M21 14.25v2.25l-2.25 1.313m-13.5 0L3 16.5v-2.25\\\"/>\"\n    },\n    \"cube-transparent-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.638 1.093a.75.75 0 0 1 .724 0l2 1.104a.75.75 0 1 1-.724 1.313L10 2.607l-1.638.903a.75.75 0 1 1-.724-1.313zM5.403 4.287a.75.75 0 0 1-.295 1.019l-.805.444l.805.444a.75.75 0 0 1-.724 1.314L3.5 7.02v.73a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .388-.657l1.996-1.1a.75.75 0 0 1 1.019.294m9.194 0a.75.75 0 0 1 1.02-.295l1.995 1.101A.75.75 0 0 1 18 5.75v2a.75.75 0 0 1-1.5 0v-.73l-.884.488a.75.75 0 1 1-.724-1.314l.806-.444l-.806-.444a.75.75 0 0 1-.295-1.02M7.343 8.284a.75.75 0 0 1 1.02-.294L10 8.893l1.638-.903a.75.75 0 1 1 .724 1.313l-1.612.89v1.557a.75.75 0 0 1-1.5 0v-1.557l-1.612-.89a.75.75 0 0 1-.295-1.019M2.75 11.5a.75.75 0 0 1 .75.75v1.557l1.608.887a.75.75 0 0 1-.724 1.314l-1.996-1.101A.75.75 0 0 1 2 14.25v-2a.75.75 0 0 1 .75-.75m14.5 0a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-.388.657l-1.996 1.1a.75.75 0 1 1-.724-1.313l1.608-.887V12.25a.75.75 0 0 1 .75-.75m-7.25 4a.75.75 0 0 1 .75.75v.73l.888-.49a.75.75 0 0 1 .724 1.313l-2 1.104a.75.75 0 0 1-.724 0l-2-1.104a.75.75 0 1 1 .724-1.313l.888.49v-.73a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cube-transparent-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.622 1.602a.75.75 0 0 1 .756 0l2.25 1.313a.75.75 0 0 1-.756 1.295L12 3.118L10.128 4.21a.75.75 0 1 1-.756-1.295zM5.898 5.81a.75.75 0 0 1-.27 1.025l-1.14.665l1.14.665a.75.75 0 1 1-.756 1.295L3.75 8.806v.944a.75.75 0 0 1-1.5 0V7.5a.75.75 0 0 1 .372-.648l2.25-1.312a.75.75 0 0 1 1.026.27m12.204 0a.75.75 0 0 1 1.026-.27l2.25 1.312a.75.75 0 0 1 .372.648v2.25a.75.75 0 0 1-1.5 0v-.944l-1.122.654a.75.75 0 1 1-.756-1.295l1.14-.665l-1.14-.665a.75.75 0 0 1-.27-1.025m-9 5.25a.75.75 0 0 1 1.026-.27L12 11.882l1.872-1.092a.75.75 0 1 1 .756 1.295l-1.878 1.096V15a.75.75 0 0 1-1.5 0v-1.82l-1.878-1.095a.75.75 0 0 1-.27-1.025M3 13.5a.75.75 0 0 1 .75.75v1.82l1.878 1.095a.75.75 0 1 1-.756 1.295l-2.25-1.312a.75.75 0 0 1-.372-.648v-2.25A.75.75 0 0 1 3 13.5m18 0a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-.372.648l-2.25 1.312a.75.75 0 1 1-.756-1.295l1.878-1.096V14.25a.75.75 0 0 1 .75-.75m-9 5.25a.75.75 0 0 1 .75.75v.944l1.122-.654a.75.75 0 1 1 .756 1.295l-2.25 1.313a.75.75 0 0 1-.756 0l-2.25-1.313a.75.75 0 1 1 .756-1.295l1.122.654V19.5a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"currency-bangladeshi\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m8.25 7.5l.415-.207a.75.75 0 0 1 1.085.67V10.5m0 0h6m-6 0h-1.5m1.5 0v5.438c0 .354.161.697.473.865a3.751 3.751 0 0 0 5.452-2.553c.083-.409-.263-.75-.68-.75h-.745M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"currency-bangladeshi-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2a8 8 0 1 0 0 16a8 8 0 0 0 0-16M5.94 5.5c.944-.945 2.56-.276 2.56 1.06V8h5.75a.75.75 0 0 1 0 1.5H8.5v4.275c0 .296.144.455.26.499a3.5 3.5 0 0 0 4.402-1.77h-.412a.75.75 0 0 1 0-1.5h.537c.462 0 .887.21 1.156.556c.278.355.383.852.184 1.337a5.001 5.001 0 0 1-6.4 2.78C7.376 15.353 7 14.512 7 13.774V9.5H5.75a.75.75 0 0 1 0-1.5H7V6.56l-.22.22a.75.75 0 1 1-1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"currency-bangladeshi-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 21.75c5.385 0 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25S2.25 6.615 2.25 12s4.365 9.75 9.75 9.75M10.5 7.963a1.5 1.5 0 0 0-2.17-1.341l-.415.207a.75.75 0 0 0 .67 1.342L9 7.963V9.75h-.75a.75.75 0 1 0 0 1.5H9v4.688c0 .563.26 1.198.867 1.525A4.501 4.501 0 0 0 16.41 14.4c.199-.977-.636-1.649-1.415-1.649h-.745a.75.75 0 1 0 0 1.5h.656a3.002 3.002 0 0 1-4.327 1.893a.113.113 0 0 1-.045-.051a.336.336 0 0 1-.034-.154V11.25h5.25a.75.75 0 0 0 0-1.5H10.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"currency-dollar\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 6v12m-3-2.818l.879.659c1.171.879 3.07.879 4.242 0c1.172-.879 1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659c-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"currency-dollar-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M10.75 10.818v2.614A3.13 3.13 0 0 0 11.888 13c.482-.315.612-.648.612-.875c0-.227-.13-.56-.612-.875a3.13 3.13 0 0 0-1.138-.432M8.33 8.62c.053.055.115.11.184.164c.208.16.46.284.736.363V6.603a2.45 2.45 0 0 0-.35.13a2.01 2.01 0 0 0-.386.233c-.377.292-.514.627-.514.909c0 .184.058.39.202.592c.037.051.08.102.128.152\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0m-8-6a.75.75 0 0 1 .75.75v.316a3.78 3.78 0 0 1 1.653.713c.426.33.744.74.925 1.2a.75.75 0 0 1-1.395.55a1.35 1.35 0 0 0-.447-.563a2.187 2.187 0 0 0-.736-.363V9.3c.698.093 1.383.32 1.959.696c.787.514 1.29 1.27 1.29 2.13c0 .86-.504 1.616-1.29 2.13c-.576.377-1.261.603-1.96.696v.299a.75.75 0 1 1-1.5 0v-.3c-.697-.092-1.382-.318-1.958-.695c-.482-.315-.857-.717-1.078-1.188a.75.75 0 1 1 1.359-.636c.08.173.245.376.54.569c.313.205.706.353 1.138.432v-2.748a3.782 3.782 0 0 1-1.653-.713C6.9 9.433 6.5 8.681 6.5 7.875c0-.805.4-1.558 1.097-2.096a3.78 3.78 0 0 1 1.653-.713V4.75A.75.75 0 0 1 10 4\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"currency-dollar-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M10.464 8.746c.227-.18.497-.311.786-.394v2.795a2.252 2.252 0 0 1-.786-.393c-.394-.313-.546-.681-.546-1.004c0-.323.152-.691.546-1.004m2.286 6.916v-2.824c.347.085.664.228.921.421c.427.32.579.686.579.991c0 .305-.152.671-.579.991a2.534 2.534 0 0 1-.921.42\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M12.75 6a.75.75 0 0 0-1.5 0v.816a3.836 3.836 0 0 0-1.72.756c-.712.566-1.112 1.35-1.112 2.178c0 .829.4 1.612 1.113 2.178c.502.4 1.102.647 1.719.756v2.978a2.536 2.536 0 0 1-.921-.421l-.879-.66a.75.75 0 0 0-.9 1.2l.879.66c.533.4 1.169.645 1.821.75V18a.75.75 0 0 0 1.5 0v-.81a4.124 4.124 0 0 0 1.821-.749c.745-.559 1.179-1.344 1.179-2.191c0-.847-.434-1.632-1.179-2.191a4.122 4.122 0 0 0-1.821-.75V8.354c.29.082.559.213.786.393l.415.33a.75.75 0 0 0 .933-1.175l-.415-.33a3.836 3.836 0 0 0-1.719-.755z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"currency-euro\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.25 7.756a4.5 4.5 0 1 0 0 8.488M7.5 10.5h5.25m-5.25 3h5.25M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"currency-euro-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16M8.798 7.45c.512-.67 1.135-.95 1.702-.95s1.19.28 1.702.95a.75.75 0 0 0 1.192-.91C12.637 5.55 11.596 5 10.5 5s-2.137.55-2.894 1.54A5.205 5.205 0 0 0 6.83 8H5.75a.75.75 0 0 0 0 1.5h.77a6.333 6.333 0 0 0 0 1h-.77a.75.75 0 0 0 0 1.5h1.08a5.21 5.21 0 0 0 .776 1.46C8.363 14.45 9.404 15 10.5 15s2.137-.55 2.894-1.54a.75.75 0 0 0-1.192-.91c-.512.67-1.135.95-1.702.95s-1.19-.28-1.702-.95a3.505 3.505 0 0 1-.343-.55h1.795a.75.75 0 0 0 0-1.5H8.026a4.835 4.835 0 0 1 0-1h2.224a.75.75 0 0 0 0-1.5H8.455c.098-.195.212-.38.343-.55\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"currency-euro-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-1.902 7.098a3.75 3.75 0 0 1 3.903-.884a.75.75 0 1 0 .498-1.415A5.25 5.25 0 0 0 8.005 9.75H7.5a.75.75 0 0 0 0 1.5h.054a5.281 5.281 0 0 0 0 1.5H7.5a.75.75 0 0 0 0 1.5h.505a5.25 5.25 0 0 0 6.494 2.701a.75.75 0 0 0-.498-1.415a3.75 3.75 0 0 1-4.252-1.286h3.001a.75.75 0 0 0 0-1.5H9.075a3.77 3.77 0 0 1 0-1.5h3.675a.75.75 0 0 0 0-1.5h-3c.105-.14.221-.274.348-.402\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"currency-pound\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.121 7.629A3 3 0 0 0 9.017 9.43a2.56 2.56 0 0 0 .028.636l.506 3.541a4.5 4.5 0 0 1-.43 2.65L9 16.5l1.539-.513a2.25 2.25 0 0 1 1.422 0l.655.218a2.25 2.25 0 0 0 1.718-.122L15 15.75M8.25 12H12m9 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"currency-pound-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16M8.732 6.232a2.5 2.5 0 0 1 3.536 0a.75.75 0 1 0 1.06-1.06A4 4 0 0 0 6.5 8v.165c0 .364.034.728.1 1.085h-.35a.75.75 0 0 0 0 1.5h.737a5.25 5.25 0 0 1-.367 3.072l-.055.123a.75.75 0 0 0 .848 1.037l1.272-.283a3.493 3.493 0 0 1 1.604.021a4.992 4.992 0 0 0 2.422 0l.97-.242a.75.75 0 0 0-.363-1.456l-.971.243a3.491 3.491 0 0 1-1.694 0a4.992 4.992 0 0 0-2.258-.038c.19-.811.227-1.651.111-2.477H9.75a.75.75 0 0 0 0-1.5H8.136A4.397 4.397 0 0 1 8 8.165V8c0-.641.244-1.28.732-1.768\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"currency-pound-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M9.763 9.51a2.25 2.25 0 0 1 3.828-1.351a.75.75 0 0 0 1.06-1.06a3.75 3.75 0 0 0-6.38 2.252c-.033.307 0 .595.032.822l.154 1.077H8.25a.75.75 0 0 0 0 1.5h.421l.138.964a3.75 3.75 0 0 1-.358 2.208l-.122.242a.75.75 0 0 0 .908 1.047l1.539-.512a1.5 1.5 0 0 1 .948 0l.655.218a3 3 0 0 0 2.29-.163l.666-.333a.75.75 0 1 0-.67-1.342l-.667.333a1.5 1.5 0 0 1-1.145.082l-.654-.218a3 3 0 0 0-1.898 0l-.06.02a5.25 5.25 0 0 0 .053-1.794l-.108-.752H12a.75.75 0 0 0 0-1.5H9.972l-.184-1.29a1.863 1.863 0 0 1-.025-.45\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"currency-rupee\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15 8.25H9m6 3H9m3 6l-3-3h1.5a3 3 0 1 0 0-6M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"currency-rupee-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16M6 5.75A.75.75 0 0 1 6.75 5h6.5a.75.75 0 0 1 0 1.5h-2.127c.4.5.683 1.096.807 1.75h1.32a.75.75 0 0 1 0 1.5h-1.32a4.003 4.003 0 0 1-3.404 3.216l1.754 1.754a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 .53-1.28H8c1.12 0 2.067-.736 2.386-1.75H6.75a.75.75 0 0 1 0-1.5h3.636A2.501 2.501 0 0 0 8 6.5H6.75A.75.75 0 0 1 6 5.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"currency-rupee-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M9 7.5A.75.75 0 0 0 9 9h1.5c.98 0 1.813.626 2.122 1.5H9A.75.75 0 0 0 9 12h3.622a2.251 2.251 0 0 1-2.122 1.5H9a.75.75 0 0 0-.53 1.28l3 3a.75.75 0 1 0 1.06-1.06l-1.73-1.732A3.752 3.752 0 0 0 14.175 12H15a.75.75 0 0 0 0-1.5h-.825A3.733 3.733 0 0 0 13.5 9H15a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"currency-yen\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m9 7.5l3 4.5m0 0l3-4.5M12 12v5.25M15 12H9m6 3H9m12-3a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"currency-yen-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16M7.346 5.294a.75.75 0 0 0-1.192.912L9.056 10H6.75a.75.75 0 0 0 0 1.5h2.5v1h-2.5a.75.75 0 0 0 0 1.5h2.5v1.25a.75.75 0 0 0 1.5 0V14h2.5a.75.75 0 1 0 0-1.5h-2.5v-1h2.5a.75.75 0 1 0 0-1.5h-2.306l2.902-3.794a.75.75 0 1 0-1.192-.912L10 8.765z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"currency-yen-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M9.624 7.084a.75.75 0 0 0-1.248.832l2.223 3.334H9a.75.75 0 0 0 0 1.5h2.25v1.5H9a.75.75 0 0 0 0 1.5h2.25v1.5a.75.75 0 0 0 1.5 0v-1.5H15a.75.75 0 0 0 0-1.5h-2.25v-1.5H15a.75.75 0 0 0 0-1.5h-1.599l2.223-3.334a.75.75 0 1 0-1.248-.832L12 10.648z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cursor-arrow-rays\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.042 21.672L13.684 16.6m0 0l-2.51 2.225l.569-9.47l5.227 7.917zM12 2.25V4.5m5.834.166l-1.591 1.591M20.25 10.5H18M7.757 14.743l-1.59 1.59M6 10.5H3.75m4.007-4.243l-1.59-1.59\\\"/>\"\n    },\n    \"cursor-arrow-rays-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 1a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 10 1M5.05 3.05a.75.75 0 0 1 1.06 0l1.062 1.06A.75.75 0 1 1 6.11 5.173L5.05 4.11a.75.75 0 0 1 0-1.06m9.9 0a.75.75 0 0 1 0 1.06l-1.06 1.062a.75.75 0 0 1-1.062-1.061l1.061-1.06a.75.75 0 0 1 1.06 0M3 8a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 3 8m11 0a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 14 8m-6.828 2.828a.75.75 0 0 1 0 1.061L6.11 12.95a.75.75 0 0 1-1.06-1.06l1.06-1.06a.75.75 0 0 1 1.06 0m3.594-3.317a.75.75 0 0 0-1.37.364l-.492 6.861a.75.75 0 0 0 1.204.65l1.043-.799l.985 3.678a.75.75 0 0 0 1.45-.388l-.978-3.646l1.292.204a.75.75 0 0 0 .74-1.16z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cursor-arrow-rays-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 1.5a.75.75 0 0 1 .75.75V4.5a.75.75 0 0 1-1.5 0V2.25A.75.75 0 0 1 12 1.5M5.636 4.136a.75.75 0 0 1 1.06 0l1.592 1.591a.75.75 0 0 1-1.061 1.06l-1.591-1.59a.75.75 0 0 1 0-1.061m12.728 0a.75.75 0 0 1 0 1.06l-1.591 1.592a.75.75 0 0 1-1.06-1.061l1.59-1.591a.75.75 0 0 1 1.061 0m-6.816 4.496a.75.75 0 0 1 .82.311l5.228 7.917a.75.75 0 0 1-.777 1.148l-2.097-.43l1.045 3.9a.75.75 0 0 1-1.45.388l-1.044-3.899l-1.601 1.42a.75.75 0 0 1-1.247-.606l.569-9.47a.75.75 0 0 1 .554-.68M3 10.5a.75.75 0 0 1 .75-.75H6a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 10.5m14.25 0a.75.75 0 0 1 .75-.75h2.25a.75.75 0 0 1 0 1.5H18a.75.75 0 0 1-.75-.75m-8.962 3.712a.75.75 0 0 1 0 1.061l-1.591 1.591a.75.75 0 1 1-1.061-1.06l1.591-1.592a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"cursor-arrow-ripple\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.042 21.672L13.684 16.6m0 0l-2.51 2.225l.569-9.47l5.227 7.917zm-7.518-.267A8.25 8.25 0 1 1 20.25 10.5M8.288 14.212A5.25 5.25 0 1 1 17.25 10.5\\\"/>\"\n    },\n    \"cursor-arrow-ripple-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.111 11.89A5.5 5.5 0 1 1 15.501 8A.75.75 0 1 0 17 8a7 7 0 1 0-11.95 4.95a.75.75 0 0 0 1.06-1.06m2.121-5.658a2.5 2.5 0 0 0 0 3.536a.75.75 0 1 1-1.06 1.06A4 4 0 1 1 14 8a.75.75 0 0 1-1.5 0a2.5 2.5 0 0 0-4.268-1.768m2.534 1.279a.75.75 0 0 0-1.37.364l-.492 6.861a.75.75 0 0 0 1.204.65l1.043-.799l.985 3.678a.75.75 0 0 0 1.45-.388l-.978-3.646l1.292.204a.75.75 0 0 0 .74-1.16z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"cursor-arrow-ripple-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M17.303 5.197A7.5 7.5 0 0 0 6.697 15.803a.75.75 0 0 1-1.061 1.061A9 9 0 1 1 21 10.5a.75.75 0 0 1-1.5 0c0-1.92-.732-3.839-2.197-5.303m-2.121 2.121a4.5 4.5 0 0 0-6.364 6.364a.75.75 0 1 1-1.06 1.06A6 6 0 1 1 18 10.5a.75.75 0 0 1-1.5 0c0-1.153-.44-2.303-1.318-3.182m-3.634 1.314a.75.75 0 0 1 .82.311l5.228 7.917a.75.75 0 0 1-.777 1.148l-2.097-.43l1.045 3.9a.75.75 0 0 1-1.45.388l-1.044-3.899l-1.601 1.42a.75.75 0 0 1-1.247-.606l.569-9.47a.75.75 0 0 1 .554-.68\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"device-phone-mobile\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M10.5 1.5H8.25A2.25 2.25 0 0 0 6 3.75v16.5a2.25 2.25 0 0 0 2.25 2.25h7.5A2.25 2.25 0 0 0 18 20.25V3.75a2.25 2.25 0 0 0-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3\\\"/>\"\n    },\n    \"device-phone-mobile-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M8 16.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M4 4a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3zm4-1.5v.75c0 .414.336.75.75.75h2.5a.75.75 0 0 0 .75-.75V2.5h1A1.5 1.5 0 0 1 14.5 4v12a1.5 1.5 0 0 1-1.5 1.5H7A1.5 1.5 0 0 1 5.5 16V4A1.5 1.5 0 0 1 7 2.5z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"device-phone-mobile-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M10.5 18.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M8.625.75A3.375 3.375 0 0 0 5.25 4.125v15.75a3.375 3.375 0 0 0 3.375 3.375h6.75a3.375 3.375 0 0 0 3.375-3.375V4.125A3.375 3.375 0 0 0 15.375.75zM7.5 4.125C7.5 3.504 8.004 3 8.625 3H9.75v.375c0 .621.504 1.125 1.125 1.125h2.25c.621 0 1.125-.504 1.125-1.125V3h1.125c.621 0 1.125.504 1.125 1.125v15.75c0 .621-.504 1.125-1.125 1.125h-6.75A1.125 1.125 0 0 1 7.5 19.875z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"device-tablet\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M10.5 19.5h3m-6.75 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-15a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 4.5v15a2.25 2.25 0 0 0 2.25 2.25\\\"/>\"\n    },\n    \"device-tablet-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5 1a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3zM3.5 4A1.5 1.5 0 0 1 5 2.5h10A1.5 1.5 0 0 1 16.5 4v12a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 16zm5.25 11.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"device-tablet-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M10.5 18a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M7.125 1.5A3.375 3.375 0 0 0 3.75 4.875v14.25A3.375 3.375 0 0 0 7.125 22.5h9.75a3.375 3.375 0 0 0 3.375-3.375V4.875A3.375 3.375 0 0 0 16.875 1.5zM6 4.875c0-.621.504-1.125 1.125-1.125h9.75c.621 0 1.125.504 1.125 1.125v14.25c0 .621-.504 1.125-1.125 1.125h-9.75A1.125 1.125 0 0 1 6 19.125z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"document\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9\\\"/>\"\n    },\n    \"document-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3 3.5A1.5 1.5 0 0 1 4.5 2h6.879a1.5 1.5 0 0 1 1.06.44l4.122 4.12A1.5 1.5 0 0 1 17 7.622V16.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 3 16.5z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-arrow-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m.75 12l3 3m0 0l3-3m-3 3v-6m-1.5-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9\\\"/>\"\n    },\n    \"document-arrow-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2zm4.75 6.75a.75.75 0 0 1 1.5 0v2.546l.943-1.048a.75.75 0 0 1 1.114 1.004l-2.25 2.5a.75.75 0 0 1-1.114 0l-2.25-2.5a.75.75 0 1 1 1.114-1.004l.943 1.048z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-arrow-down-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875m5.845 17.03a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72V12a.75.75 0 0 0-1.5 0v4.19l-1.72-1.72a.75.75 0 0 0-1.06 1.06z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434a9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375z\\\"/></g>\"\n    },\n    \"document-arrow-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12l-3-3m0 0l-3 3m3-3v6m-1.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9\\\"/>\"\n    },\n    \"document-arrow-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2zm4.75 11.25a.75.75 0 0 0 1.5 0v-2.546l.943 1.048a.75.75 0 1 0 1.114-1.004l-2.25-2.5a.75.75 0 0 0-1.114 0l-2.25 2.5a.75.75 0 1 0 1.114 1.004l.943-1.048z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-arrow-up-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875m6.905 9.97a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l1.72-1.72V18a.75.75 0 0 0 1.5 0v-4.19l1.72 1.72a.75.75 0 1 0 1.06-1.06z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434a9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375z\\\"/></g>\"\n    },\n    \"document-chart-bar\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25M9 16.5v.75m3-3v3M15 12v5.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9\\\"/>\"\n    },\n    \"document-chart-bar-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 3.5A1.5 1.5 0 0 1 4.5 2h6.879a1.5 1.5 0 0 1 1.06.44l4.122 4.12A1.5 1.5 0 0 1 17 7.622V16.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 3 16.5zM13.25 9a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5a.75.75 0 0 1 .75-.75m-6.5 4a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-1.5 0v-.5a.75.75 0 0 1 .75-.75m4-1.25a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-chart-bar-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875M9.75 17.25a.75.75 0 0 0-1.5 0V18a.75.75 0 0 0 1.5 0zm2.25-3a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75m3.75-1.5a.75.75 0 0 0-1.5 0V18a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434a9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375z\\\"/></g>\"\n    },\n    \"document-check\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 0 1 9 9v.375M10.125 2.25A3.375 3.375 0 0 1 13.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 0 1 3.375 3.375M9 15l2.25 2.25L15 12\\\"/>\"\n    },\n    \"document-check-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 3.5A1.5 1.5 0 0 1 4.5 2h6.879a1.5 1.5 0 0 1 1.06.44l4.122 4.12A1.5 1.5 0 0 1 17 7.622V16.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 3 16.5zm10.857 5.691a.75.75 0 0 0-1.214-.882l-3.483 4.79l-1.88-1.88a.75.75 0 0 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-check-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M9 1.5H5.625c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5m6.61 10.936a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 14.47a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279a9.768 9.768 0 0 0-6.963-6.963\\\"/></g>\"\n    },\n    \"document-duplicate\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9.06 9.06 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9.06 9.06 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75\\\"/>\"\n    },\n    \"document-duplicate-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M7 3.5A1.5 1.5 0 0 1 8.5 2h3.879a1.5 1.5 0 0 1 1.06.44l3.122 3.12A1.5 1.5 0 0 1 17 6.622V12.5a1.5 1.5 0 0 1-1.5 1.5h-1v-3.379a3 3 0 0 0-.879-2.121L10.5 5.379A3 3 0 0 0 8.379 4.5H7z\\\"/><path d=\\\"M4.5 6A1.5 1.5 0 0 0 3 7.5v9A1.5 1.5 0 0 0 4.5 18h7a1.5 1.5 0 0 0 1.5-1.5v-5.879a1.5 1.5 0 0 0-.44-1.06L9.44 6.439A1.5 1.5 0 0 0 8.378 6z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-duplicate-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M7.5 3.375c0-1.036.84-1.875 1.875-1.875h.375a3.75 3.75 0 0 1 3.75 3.75v1.875C13.5 8.161 14.34 9 15.375 9h1.875A3.75 3.75 0 0 1 21 12.75v3.375C21 17.16 20.16 18 19.125 18h-9.75A1.875 1.875 0 0 1 7.5 16.125z\\\"/><path d=\\\"M15 5.25a5.23 5.23 0 0 0-1.279-3.434a9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 17.25 7.5h-1.875A.375.375 0 0 1 15 7.125zM4.875 6H6v10.125A3.375 3.375 0 0 0 9.375 19.5H16.5v1.125c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 0 1 3 20.625V7.875C3 6.839 3.84 6 4.875 6\\\"/></g>\"\n    },\n    \"document-magnifying-glass\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m5.231 13.481L15 17.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v16.5c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9m3.75 11.625a2.625 2.625 0 1 1-5.25 0a2.625 2.625 0 0 1 5.25 0\\\"/>\"\n    },\n    \"document-magnifying-glass-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M8 10a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2zm5 5a3 3 0 1 0 1.524 5.585l1.196 1.195a.75.75 0 1 0 1.06-1.06l-1.195-1.196A3 3 0 0 0 9.5 7\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-magnifying-glass-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M11.625 16.5a1.875 1.875 0 1 0 0-3.75a1.875 1.875 0 0 0 0 3.75\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875m6 16.5c.66 0 1.277-.19 1.797-.518l1.048 1.048a.75.75 0 0 0 1.06-1.06l-1.047-1.048A3.375 3.375 0 1 0 11.625 18\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434a9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375z\\\"/></g>\"\n    },\n    \"document-minus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9\\\"/>\"\n    },\n    \"document-minus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2zm7.75 9.75a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0 0 1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-minus-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875M9.75 14.25a.75.75 0 0 0 0 1.5H15a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434a9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375z\\\"/></g>\"\n    },\n    \"document-plus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9\\\"/>\"\n    },\n    \"document-plus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2zM10 8a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 10 8\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-plus-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875M12.75 12a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25V18a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434a9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375z\\\"/></g>\"\n    },\n    \"document-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M5.625 1.5c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5z\\\"/><path d=\\\"M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279a9.768 9.768 0 0 0-6.963-6.963\\\"/></g>\"\n    },\n    \"document-text\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9\\\"/>\"\n    },\n    \"document-text-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 2A1.5 1.5 0 0 0 3 3.5v13A1.5 1.5 0 0 0 4.5 18h11a1.5 1.5 0 0 0 1.5-1.5V7.621a1.5 1.5 0 0 0-.44-1.06l-4.12-4.122A1.5 1.5 0 0 0 11.378 2zm2.25 8.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5zm0 3a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"document-text-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M5.625 1.5c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5zM7.5 15a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 7.5 15m.75 2.25a.75.75 0 0 0 0 1.5H12a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279a9.768 9.768 0 0 0-6.963-6.963\\\"/></g>\"\n    },\n    \"ellipsis-horizontal\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6.75 12a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m6 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m6 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0\\\"/>\"\n    },\n    \"ellipsis-horizontal-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3 10a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m5.5 0a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m7-1.5a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0-3\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"ellipsis-horizontal-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.625 12a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H8.25m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0H12m4.125 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m0 0h-.375M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"ellipsis-horizontal-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 10a8 8 0 1 1 16 0a8 8 0 0 1-16 0m8 1a1 1 0 1 0 0-2a1 1 0 0 0 0 2m-3-1a1 1 0 1 1-2 0a1 1 0 0 1 2 0m7 1a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"ellipsis-horizontal-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m0 8.625a1.125 1.125 0 1 0 0 2.25a1.125 1.125 0 0 0 0-2.25M15.375 12a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0M7.5 10.875a1.125 1.125 0 1 0 0 2.25a1.125 1.125 0 0 0 0-2.25\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"ellipsis-horizontal-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 12a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m6 0a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m6 0a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"ellipsis-vertical\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 6.75a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 6a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 6a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5\\\"/>\"\n    },\n    \"ellipsis-vertical-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10 3a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3m0 5.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3m1.5 7a1.5 1.5 0 1 0-3 0a1.5 1.5 0 0 0 3 0\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"ellipsis-vertical-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 6a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m0 6a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m0 6a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"envelope\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75\\\"/>\"\n    },\n    \"envelope-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3 4a2 2 0 0 0-2 2v1.161l8.441 4.221a1.25 1.25 0 0 0 1.118 0L19 7.162V6a2 2 0 0 0-2-2z\\\"/><path d=\\\"m19 8.839l-7.77 3.885a2.75 2.75 0 0 1-2.46 0L1 8.839V14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"envelope-open\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21.75 9v.906a2.25 2.25 0 0 1-1.183 1.981l-6.478 3.488M2.25 9v.906a2.25 2.25 0 0 0 1.183 1.981l6.478 3.488m8.839 2.51l-4.66-2.51m0 0l-1.023-.55a2.25 2.25 0 0 0-2.134 0l-1.022.55m0 0l-4.661 2.51m16.5 1.615a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V8.844a2.25 2.25 0 0 1 1.183-1.98l7.5-4.04a2.25 2.25 0 0 1 2.134 0l7.5 4.04a2.25 2.25 0 0 1 1.183 1.98z\\\"/>\"\n    },\n    \"envelope-open-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.106 6.447A2 2 0 0 0 1 8.237V16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.236a2 2 0 0 0-1.106-1.789l-7-3.5a2 2 0 0 0-1.788 0zm1.48 4.007a.75.75 0 0 0-.671 1.342l5.855 2.928a2.75 2.75 0 0 0 2.46 0l5.852-2.926a.75.75 0 1 0-.67-1.342l-5.853 2.926a1.25 1.25 0 0 1-1.118 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"envelope-open-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M19.5 22.5a3 3 0 0 0 3-3v-8.174l-6.879 4.022l3.485 1.876a.75.75 0 0 1-.712 1.321l-5.683-3.06a1.5 1.5 0 0 0-1.422 0l-5.683 3.06a.75.75 0 0 1-.712-1.32l3.485-1.877L1.5 11.326V19.5a3 3 0 0 0 3 3z\\\"/><path d=\\\"M1.5 9.589v-.745a3 3 0 0 1 1.578-2.641l7.5-4.039a3 3 0 0 1 2.844 0l7.5 4.039A3 3 0 0 1 22.5 8.844v.745l-8.426 4.926l-.652-.35a3 3 0 0 0-2.844 0l-.652.35z\\\"/></g>\"\n    },\n    \"envelope-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M1.5 8.67v8.58a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V8.67l-8.928 5.493a3 3 0 0 1-3.144 0z\\\"/><path d=\\\"M22.5 6.908V6.75a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v.158l9.714 5.978a1.5 1.5 0 0 0 1.572 0z\\\"/></g>\"\n    },\n    \"exclamation-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 9v3.75m9-.75a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9 3.75h.008v.008H12z\\\"/>\"\n    },\n    \"exclamation-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0m-8-5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5A.75.75 0 0 1 10 5m0 10a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"exclamation-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12M12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75m0 8.25a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"exclamation-triangle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0zM12 15.75h.007v.008H12z\\\"/>\"\n    },\n    \"exclamation-triangle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.485 2.495c.673-1.167 2.357-1.167 3.03 0l6.28 10.875c.673 1.167-.17 2.625-1.516 2.625H3.72c-1.347 0-2.189-1.458-1.515-2.625zM10 5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 10 5m0 9a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"exclamation-triangle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5zM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75m0 8.25a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"eye\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178c.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178\\\"/><path d=\\\"M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0\\\"/></g>\"\n    },\n    \"eye-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M10 12.5a2.5 2.5 0 1 0 0-5a2.5 2.5 0 0 0 0 5\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M.664 10.59a1.651 1.651 0 0 1 0-1.186A10.004 10.004 0 0 1 10 3c4.257 0 7.893 2.66 9.336 6.41c.147.381.146.804 0 1.186A10.004 10.004 0 0 1 10 17c-4.257 0-7.893-2.66-9.336-6.41M14 10a4 4 0 1 1-8 0a4 4 0 0 1 8 0\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"eye-dropper\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m15 11.25l1.5 1.5l.75-.75V8.758l2.276-.61a3 3 0 1 0-3.675-3.675l-.61 2.277H12l-.75.75l1.5 1.5M15 11.25l-8.47 8.47c-.34.34-.8.53-1.28.53s-.94.19-1.28.53l-.97.97l-.75-.75l.97-.97c.34-.34.53-.8.53-1.28s.19-.94.53-1.28L12.75 9M15 11.25L12.75 9\\\"/>\"\n    },\n    \"eye-dropper-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12.1 3.667a3.502 3.502 0 1 1 6.782 1.738a3.487 3.487 0 0 1-.907 1.57a3.495 3.495 0 0 1-1.617.919L16 7.99V10a.75.75 0 0 1-.22.53l-.25.25a.75.75 0 0 1-1.06 0l-.845-.844L7.22 16.34a2.25 2.25 0 0 1-1.591.66H5.12a.75.75 0 0 0-.53.22l-1.56 1.56a.75.75 0 0 1-1.061 0l-.75-.75a.75.75 0 0 1 0-1.06l1.56-1.561a.75.75 0 0 0 .22-.53v-.508c0-.596.237-1.169.659-1.59l6.405-6.406l-.844-.845a.75.75 0 0 1 0-1.06l.25-.25A.75.75 0 0 1 10 4h2.01zM4.72 13.84l6.405-6.405l1.44 1.439l-6.406 6.405a.75.75 0 0 1-.53.22H5.12c-.258 0-.511.044-.75.129a2.25 2.25 0 0 0 .129-.75v-.508a.75.75 0 0 1 .22-.53\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"eye-dropper-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M16.098 2.598a3.75 3.75 0 1 1 3.622 6.275l-1.72.46V12a.75.75 0 0 1-.22.53l-.75.75a.75.75 0 0 1-1.06 0l-.97-.97l-7.94 7.94a2.56 2.56 0 0 1-1.81.75a1.06 1.06 0 0 0-.75.31l-.97.97a.75.75 0 0 1-1.06 0l-.75-.75a.75.75 0 0 1 0-1.06l.97-.97a1.06 1.06 0 0 0 .31-.75c0-.68.27-1.33.75-1.81L11.69 9l-.97-.97a.75.75 0 0 1 0-1.06l.75-.75A.75.75 0 0 1 12 6h2.666l.461-1.72c.165-.617.49-1.2.971-1.682m-3.348 7.463L4.81 18a1.06 1.06 0 0 0-.31.75c0 .318-.06.63-.172.922a2.56 2.56 0 0 1 .922-.172c.281 0 .551-.112.75-.31l7.94-7.94z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"eye-slash\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.98 8.223A10.477 10.477 0 0 0 1.934 12c1.292 4.339 5.31 7.5 10.066 7.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.45 10.45 0 0 1 12 4.5c4.756 0 8.773 3.162 10.065 7.499a10.523 10.523 0 0 1-4.293 5.773M6.228 6.228L3 3m3.228 3.228l3.65 3.65m7.894 7.894L21 21m-3.228-3.228l-3.65-3.65m0 0a3 3 0 1 0-4.243-4.243m4.242 4.242L9.88 9.88\\\"/>\"\n    },\n    \"eye-slash-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M3.28 2.22a.75.75 0 0 0-1.06 1.06l14.5 14.5a.75.75 0 1 0 1.06-1.06l-1.745-1.745a10.029 10.029 0 0 0 3.3-4.38a1.651 1.651 0 0 0 0-1.185A10.004 10.004 0 0 0 9.999 3a9.956 9.956 0 0 0-4.744 1.194zm4.472 4.47l1.092 1.092a2.5 2.5 0 0 1 3.374 3.373l1.091 1.092A4 4 0 0 0 7.752 6.69\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"m10.748 13.93l2.523 2.523a9.987 9.987 0 0 1-3.27.547c-4.258 0-7.894-2.66-9.337-6.41a1.651 1.651 0 0 1 0-1.186A10.007 10.007 0 0 1 2.839 6.02L6.07 9.252a4 4 0 0 0 4.678 4.678\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"eye-slash-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06zm19.146 10.083a11.249 11.249 0 0 1-2.631 4.31l-3.099-3.099a5.25 5.25 0 0 0-6.71-6.71L7.759 4.577a11.217 11.217 0 0 1 4.242-.827c4.97 0 9.185 3.223 10.675 7.69c.12.362.12.752 0 1.113\\\"/><path d=\\\"M15.75 12c0 .18-.013.357-.037.53l-4.244-4.243A3.75 3.75 0 0 1 15.75 12m-3.22 3.713l-4.243-4.244a3.75 3.75 0 0 0 4.243 4.243\\\"/><path d=\\\"M6.75 12c0-.619.107-1.213.304-1.764l-3.1-3.1a11.25 11.25 0 0 0-2.63 4.31c-.12.362-.12.752 0 1.114c1.489 4.467 5.704 7.69 10.675 7.69c1.5 0 2.933-.294 4.242-.827l-2.477-2.477A5.25 5.25 0 0 1 6.75 12\\\"/></g>\"\n    },\n    \"eye-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M12 15a3 3 0 1 0 0-6a3 3 0 0 0 0 6\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M1.323 11.447C2.811 6.976 7.028 3.75 12.001 3.75c4.97 0 9.185 3.223 10.675 7.69c.12.362.12.752 0 1.113c-1.487 4.471-5.705 7.697-10.677 7.697c-4.97 0-9.186-3.223-10.675-7.69a1.762 1.762 0 0 1 0-1.113M17.25 12a5.25 5.25 0 1 1-10.5 0a5.25 5.25 0 0 1 10.5 0\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"face-frown\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.182 16.318A4.486 4.486 0 0 0 12.016 15a4.486 4.486 0 0 0-3.198 1.318M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0M9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75S9.168 9 9.375 9s.375.336.375.75m-.375 0h.008v.015h-.008zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75s.168-.75.375-.75s.375.336.375.75m-.375 0h.008v.015h-.008z\\\"/>\"\n    },\n    \"face-frown-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m-3.536-3.475a.75.75 0 0 0 1.061 0a3.5 3.5 0 0 1 4.95 0a.75.75 0 1 0 1.06-1.06a5 5 0 0 0-7.07 0a.75.75 0 0 0 0 1.06M9 8.5c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S7.448 7 8 7s1 .672 1 1.5m3 1.5c.552 0 1-.672 1-1.5S12.552 7 12 7s-1 .672-1 1.5s.448 1.5 1 1.5\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"face-frown-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-2.625 6c-.54 0-.828.419-.936.634a1.96 1.96 0 0 0-.189.866c0 .298.059.605.189.866c.108.215.395.634.936.634c.54 0 .828-.419.936-.634c.13-.26.189-.568.189-.866c0-.298-.059-.605-.189-.866c-.108-.215-.395-.634-.936-.634m4.314.634c.108-.215.395-.634.936-.634c.54 0 .828.419.936.634c.13.26.189.568.189.866c0 .298-.059.605-.189.866c-.108.215-.395.634-.936.634c-.54 0-.828-.419-.936-.634a1.96 1.96 0 0 1-.189-.866c0-.298.059-.605.189-.866m-4.34 7.964a.75.75 0 0 1-1.061-1.06a5.236 5.236 0 0 1 3.73-1.538a5.236 5.236 0 0 1 3.695 1.538a.75.75 0 1 1-1.061 1.06a3.736 3.736 0 0 0-2.639-1.098a3.736 3.736 0 0 0-2.664 1.098\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"face-smile\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.182 15.182a4.5 4.5 0 0 1-6.364 0M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0M9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75S9.168 9 9.375 9s.375.336.375.75m-.375 0h.008v.015h-.008zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75s.168-.75.375-.75s.375.336.375.75m-.375 0h.008v.015h-.008z\\\"/>\"\n    },\n    \"face-smile-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m3.536-4.464a.75.75 0 1 0-1.061-1.061a3.5 3.5 0 0 1-4.95 0a.75.75 0 0 0-1.06 1.06a5 5 0 0 0 7.07 0M9 8.5c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S7.448 7 8 7s1 .672 1 1.5m3 1.5c.552 0 1-.672 1-1.5S12.552 7 12 7s-1 .672-1 1.5s.448 1.5 1 1.5\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"face-smile-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-2.625 6c-.54 0-.828.419-.936.634a1.96 1.96 0 0 0-.189.866c0 .298.059.605.189.866c.108.215.395.634.936.634c.54 0 .828-.419.936-.634c.13-.26.189-.568.189-.866c0-.298-.059-.605-.189-.866c-.108-.215-.395-.634-.936-.634m4.314.634c.108-.215.395-.634.936-.634c.54 0 .828.419.936.634c.13.26.189.568.189.866c0 .298-.059.605-.189.866c-.108.215-.395.634-.936.634c-.54 0-.828-.419-.936-.634a1.96 1.96 0 0 1-.189-.866c0-.298.059-.605.189-.866m2.023 6.828a.75.75 0 1 0-1.06-1.06a3.75 3.75 0 0 1-5.304 0a.75.75 0 0 0-1.06 1.06a5.25 5.25 0 0 0 7.424 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"film\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h1.5C5.496 19.5 6 18.996 6 18.375m-3.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-1.5A1.125 1.125 0 0 1 18 18.375M20.625 4.5H3.375m17.25 0c.621 0 1.125.504 1.125 1.125M20.625 4.5h-1.5C18.504 4.5 18 5.004 18 5.625m3.75 0v1.5c0 .621-.504 1.125-1.125 1.125M3.375 4.5c-.621 0-1.125.504-1.125 1.125M3.375 4.5h1.5C5.496 4.5 6 5.004 6 5.625m-3.75 0v1.5c0 .621.504 1.125 1.125 1.125m0 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m1.5-3.75C5.496 8.25 6 7.746 6 7.125v-1.5M4.875 8.25C5.496 8.25 6 8.754 6 9.375v1.5m0-5.25v5.25m0-5.25C6 5.004 6.504 4.5 7.125 4.5h9.75c.621 0 1.125.504 1.125 1.125m1.125 2.625h1.5m-1.5 0A1.125 1.125 0 0 1 18 7.125v-1.5m1.125 2.625c-.621 0-1.125.504-1.125 1.125v1.5m2.625-2.625c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125M18 5.625v5.25M7.125 12h9.75m-9.75 0A1.125 1.125 0 0 1 6 10.875M7.125 12C6.504 12 6 12.504 6 13.125m0-2.25C6 11.496 5.496 12 4.875 12M18 10.875c0 .621-.504 1.125-1.125 1.125M18 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m-12 5.25v-5.25m0 5.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125m-12 0v-1.5c0-.621-.504-1.125-1.125-1.125M18 18.375v-5.25m0 5.25v-1.5c0-.621.504-1.125 1.125-1.125M18 13.125v1.5c0 .621.504 1.125 1.125 1.125M18 13.125c0-.621.504-1.125 1.125-1.125M6 13.125v1.5c0 .621-.504 1.125-1.125 1.125M6 13.125C6 12.504 5.496 12 4.875 12m-1.5 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M19.125 12h1.5m0 0c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h1.5m14.25 0h1.5\\\"/>\"\n    },\n    \"film-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 4.75C1 3.784 1.784 3 2.75 3h14.5c.966 0 1.75.784 1.75 1.75v10.515a1.75 1.75 0 0 1-1.75 1.75h-1.5c-.078 0-.155-.005-.23-.015H4.48c-.075.01-.152.015-.23.015h-1.5A1.75 1.75 0 0 1 1 15.265zm16.5 7.385V11.01a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25v1.125c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25m0 2.005a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25v1.125c0 .108.069.2.165.235h1.585a.25.25 0 0 0 .25-.25zm-15 1.11v-1.11a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1.125a.25.25 0 0 1-.164.235H2.75a.25.25 0 0 1-.25-.25m2-4.24v1.125a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25V11.01a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25m13-2.005V7.88a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25v1.125c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25M4.25 7.63a.25.25 0 0 1 .25.25v1.125a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25V7.88a.25.25 0 0 1 .25-.25zm0-3.13a.25.25 0 0 1 .25.25v1.125a.25.25 0 0 1-.25.25h-1.5a.25.25 0 0 1-.25-.25V4.75a.25.25 0 0 1 .25-.25zm11.5 1.625a.25.25 0 0 1-.25-.25V4.75a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25v1.125a.25.25 0 0 1-.25.25zm-9 3.125a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"film-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.5 5.625c0-1.036.84-1.875 1.875-1.875h17.25c1.035 0 1.875.84 1.875 1.875v12.75c0 1.035-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 0 1 1.5 18.375zm1.5 0v1.5c0 .207.168.375.375.375h1.5a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-1.5A.375.375 0 0 0 3 5.625m16.125-.375a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5A.375.375 0 0 0 21 7.125v-1.5a.375.375 0 0 0-.375-.375zM21 9.375A.375.375 0 0 0 20.625 9h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5a.375.375 0 0 0 .375-.375zm0 3.75a.375.375 0 0 0-.375-.375h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5a.375.375 0 0 0 .375-.375zm0 3.75a.375.375 0 0 0-.375-.375h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h1.5a.375.375 0 0 0 .375-.375zM4.875 18.75a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375zM3.375 15h1.5a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-1.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375m0-3.75h1.5a.375.375 0 0 0 .375-.375v-1.5A.375.375 0 0 0 4.875 9h-1.5A.375.375 0 0 0 3 9.375v1.5c0 .207.168.375.375.375m4.125 0a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"finger-print\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.864 4.243A7.5 7.5 0 0 1 19.5 10.5c0 2.92-.556 5.709-1.568 8.269M5.742 6.364A7.465 7.465 0 0 0 4.5 10.5a7.464 7.464 0 0 1-1.15 3.993m1.989 3.559A11.209 11.209 0 0 0 8.25 10.5a3.75 3.75 0 1 1 7.5 0c0 .527-.021 1.049-.064 1.565M12 10.5a14.94 14.94 0 0 1-3.6 9.75m6.633-4.596a18.666 18.666 0 0 1-2.485 5.33\\\"/>\"\n    },\n    \"finger-print-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2.5c-1.31 0-2.526.386-3.546 1.051a.75.75 0 0 1-.82-1.256A8 8 0 0 1 18 9a22.47 22.47 0 0 1-1.228 7.351a.75.75 0 1 1-1.417-.49A20.97 20.97 0 0 0 16.5 9A6.5 6.5 0 0 0 10 2.5M4.333 4.416a.75.75 0 0 1 .218 1.038A6.466 6.466 0 0 0 3.5 9a7.966 7.966 0 0 1-1.293 4.362a.75.75 0 0 1-1.257-.819A6.466 6.466 0 0 0 2 9c0-1.61.476-3.11 1.295-4.365a.75.75 0 0 1 1.038-.219M10 6.12a3 3 0 0 0-3.001 3.041a11.455 11.455 0 0 1-2.697 7.24a.75.75 0 0 1-1.148-.965A9.957 9.957 0 0 0 5.5 9c0-.028.002-.055.004-.082a4.5 4.5 0 0 1 8.996.084v.148l-.005.297a.75.75 0 1 1-1.5-.034c.003-.11.004-.219.005-.328a3 3 0 0 0-3-2.965m0 2.13a.75.75 0 0 1 .75.75c0 3.51-1.187 6.746-3.181 9.323a.75.75 0 1 1-1.186-.918A13.687 13.687 0 0 0 9.25 9a.75.75 0 0 1 .75-.75m3.529 3.698a.75.75 0 0 1 .584.885a18.883 18.883 0 0 1-2.257 5.84a.75.75 0 1 1-1.29-.764a17.386 17.386 0 0 0 2.078-5.377a.75.75 0 0 1 .885-.584\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"finger-print-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 3.75a6.715 6.715 0 0 0-3.722 1.118a.75.75 0 1 1-.828-1.25a8.25 8.25 0 0 1 12.8 6.883a23.19 23.19 0 0 1-1.62 8.543a.75.75 0 0 1-1.395-.551A21.69 21.69 0 0 0 18.75 10.5A6.75 6.75 0 0 0 12 3.75M6.157 5.739a.75.75 0 0 1 .21 1.04A6.715 6.715 0 0 0 5.25 10.5c0 1.613-.463 3.12-1.265 4.393a.75.75 0 0 1-1.27-.8A6.715 6.715 0 0 0 3.75 10.5c0-1.68.503-3.246 1.367-4.55a.75.75 0 0 1 1.04-.211M12 7.5a3 3 0 0 0-3 3c0 3.1-1.176 5.927-3.105 8.056a.75.75 0 1 1-1.112-1.008A10.459 10.459 0 0 0 7.5 10.5a4.5 4.5 0 1 1 9 0c0 .547-.022 1.09-.067 1.626a.75.75 0 0 1-1.495-.123A18.2 18.2 0 0 0 15 10.5a3 3 0 0 0-3-3m0 2.25a.75.75 0 0 1 .75.75a15.69 15.69 0 0 1-3.78 10.238a.75.75 0 0 1-1.14-.975a14.19 14.19 0 0 0 3.42-9.263a.75.75 0 0 1 .75-.75m3.239 5.183a.75.75 0 0 1 .515.927a19.415 19.415 0 0 1-2.585 5.544a.75.75 0 1 1-1.243-.84a17.912 17.912 0 0 0 2.386-5.116a.75.75 0 0 1 .927-.515\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"fire\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M15.362 5.214A8.252 8.252 0 0 1 12 21A8.25 8.25 0 0 1 6.038 7.048A8.287 8.287 0 0 0 9 9.6a8.983 8.983 0 0 1 3.361-6.867a8.21 8.21 0 0 0 3 2.48\\\"/><path d=\\\"M12 18a3.75 3.75 0 0 0 .495-7.467a5.99 5.99 0 0 0-1.925 3.546a5.974 5.974 0 0 1-2.133-1A3.75 3.75 0 0 0 12 18\\\"/></g>\"\n    },\n    \"fire-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M13.5 4.938a7 7 0 1 1-9.006 1.737c.202-.257.59-.218.793.039c.278.352.594.672.943.954c.332.269.786-.049.773-.476a5.977 5.977 0 0 1 .572-2.759a6.026 6.026 0 0 1 2.486-2.665c.247-.14.55-.016.677.238A6.967 6.967 0 0 0 13.5 4.938M14 12a4 4 0 0 1-4 4c-1.913 0-3.52-1.398-3.91-3.182c-.093-.429.44-.643.814-.413a4.043 4.043 0 0 0 1.601.564c.303.038.531-.24.51-.544a5.975 5.975 0 0 1 1.315-4.192a.447.447 0 0 1 .431-.16A4.001 4.001 0 0 1 14 12\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"fire-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12.963 2.286a.75.75 0 0 0-1.071-.136a9.742 9.742 0 0 0-3.539 6.177A7.547 7.547 0 0 1 6.648 6.61a.75.75 0 0 0-1.152-.082A9 9 0 1 0 15.68 4.534a7.46 7.46 0 0 1-2.717-2.248M15.75 14.25a3.75 3.75 0 1 1-7.313-1.172c.628.465 1.35.81 2.133 1a5.99 5.99 0 0 1 1.925-3.545a3.75 3.75 0 0 1 3.255 3.717\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"flag\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 3v1.5M3 21v-6m0 0l2.77-.693a9 9 0 0 1 6.208.682l.108.054a9 9 0 0 0 6.086.71l3.114-.732a48.524 48.524 0 0 1-.005-10.499l-3.11.732a9 9 0 0 1-6.085-.711l-.108-.054a9 9 0 0 0-6.208-.682L3 4.5M3 15V4.5\\\"/>\"\n    },\n    \"flag-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.5 2.75a.75.75 0 0 0-1.5 0v14.5a.75.75 0 0 0 1.5 0v-4.392l1.657-.348a6.449 6.449 0 0 1 4.271.572a7.948 7.948 0 0 0 5.965.524l2.078-.64A.75.75 0 0 0 18 12.25v-8.5a.75.75 0 0 0-.904-.734l-2.38.501a7.25 7.25 0 0 1-4.186-.363l-.502-.2a8.75 8.75 0 0 0-5.053-.439l-1.475.31z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"flag-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 2.25a.75.75 0 0 1 .75.75v.54l1.838-.46a9.75 9.75 0 0 1 6.725.738l.108.054a8.25 8.25 0 0 0 5.58.652l3.109-.732a.75.75 0 0 1 .917.81a47.784 47.784 0 0 0 .005 10.337a.75.75 0 0 1-.574.812l-3.114.733a9.75 9.75 0 0 1-6.594-.77l-.108-.054a8.25 8.25 0 0 0-5.69-.625l-2.202.55V21a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 3 2.25\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"folder\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 12.75V12A2.25 2.25 0 0 1 4.5 9.75h15A2.25 2.25 0 0 1 21.75 12v.75m-8.69-6.44l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44\\\"/>\"\n    },\n    \"folder-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.75 3A1.75 1.75 0 0 0 2 4.75v3.26a3.235 3.235 0 0 1 1.75-.51h12.5c.644 0 1.245.188 1.75.51V6.75A1.75 1.75 0 0 0 16.25 5h-4.836a.25.25 0 0 1-.177-.073L9.823 3.513A1.75 1.75 0 0 0 8.586 3zm0 6A1.75 1.75 0 0 0 2 10.75v4.5c0 .966.784 1.75 1.75 1.75h12.5A1.75 1.75 0 0 0 18 15.25v-4.5A1.75 1.75 0 0 0 16.25 9z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"folder-arrow-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m9 13.5l3 3m0 0l3-3m-3 3v-6m1.06-4.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44\\\"/>\"\n    },\n    \"folder-arrow-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 4.75C2 3.784 2.784 3 3.75 3h4.836c.464 0 .909.184 1.237.513l1.414 1.414a.25.25 0 0 0 .177.073h4.836c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 16.25 17H3.75A1.75 1.75 0 0 1 2 15.25zm8.75 4a.75.75 0 0 0-1.5 0v2.546l-.943-1.048a.75.75 0 1 0-1.114 1.004l2.25 2.5a.75.75 0 0 0 1.114 0l2.25-2.5a.75.75 0 1 0-1.114-1.004l-.943 1.048z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"folder-arrow-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19.5 21a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3h-5.379a.75.75 0 0 1-.53-.22L11.47 3.66A2.25 2.25 0 0 0 9.879 3H4.5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3zm-6.75-10.5a.75.75 0 0 0-1.5 0v4.19l-1.72-1.72a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 1 0-1.06-1.06l-1.72 1.72z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"folder-minus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15 13.5H9m4.06-7.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44\\\"/>\"\n    },\n    \"folder-minus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 4.75C2 3.784 2.784 3 3.75 3h4.836c.464 0 .909.184 1.237.513l1.414 1.414a.25.25 0 0 0 .177.073h4.836c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 16.25 17H3.75A1.75 1.75 0 0 1 2 15.25zm10.25 7a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0 0 1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"folder-minus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19.5 21a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3h-5.379a.75.75 0 0 1-.53-.22L11.47 3.66A2.25 2.25 0 0 0 9.879 3H4.5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3zM9 12.75a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"folder-open\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 9.776c.112-.017.227-.026.344-.026h15.812c.117 0 .232.009.344.026m-16.5 0a2.25 2.25 0 0 0-1.883 2.542l.857 6a2.25 2.25 0 0 0 2.227 1.932H19.05a2.25 2.25 0 0 0 2.227-1.932l.857-6a2.25 2.25 0 0 0-1.883-2.542m-16.5 0V6A2.25 2.25 0 0 1 6 3.75h3.879a1.5 1.5 0 0 1 1.06.44l2.122 2.12a1.5 1.5 0 0 0 1.06.44H18A2.25 2.25 0 0 1 20.25 9v.776\\\"/>\"\n    },\n    \"folder-open-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M4.75 3A1.75 1.75 0 0 0 3 4.75v2.752l.104-.002h13.792c.035 0 .07 0 .104.002V6.75A1.75 1.75 0 0 0 15.25 5h-3.836a.25.25 0 0 1-.177-.073L9.823 3.513A1.75 1.75 0 0 0 8.586 3zM3.104 9a1.75 1.75 0 0 0-1.673 2.265l1.385 4.5A1.75 1.75 0 0 0 4.488 17h11.023a1.75 1.75 0 0 0 1.673-1.235l1.384-4.5A1.75 1.75 0 0 0 16.896 9z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"folder-open-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M19.906 9c.382 0 .749.057 1.094.162V9a3 3 0 0 0-3-3h-3.879a.75.75 0 0 1-.53-.22L11.47 3.66A2.25 2.25 0 0 0 9.879 3H6a3 3 0 0 0-3 3v3.162A3.756 3.756 0 0 1 4.094 9zM4.094 10.5a2.25 2.25 0 0 0-2.227 2.568l.857 6A2.25 2.25 0 0 0 4.951 21H19.05a2.25 2.25 0 0 0 2.227-1.932l.857-6a2.25 2.25 0 0 0-2.227-2.568z\\\"/>\"\n    },\n    \"folder-plus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 10.5v6m3-3H9m4.06-7.19l-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44\\\"/>\"\n    },\n    \"folder-plus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.75 3A1.75 1.75 0 0 0 2 4.75v10.5c0 .966.784 1.75 1.75 1.75h12.5A1.75 1.75 0 0 0 18 15.25v-8.5A1.75 1.75 0 0 0 16.25 5h-4.836a.25.25 0 0 1-.177-.073L9.823 3.513A1.75 1.75 0 0 0 8.586 3zM10 8a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 10 8\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"folder-plus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19.5 21a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3h-5.379a.75.75 0 0 1-.53-.22L11.47 3.66A2.25 2.25 0 0 0 9.879 3H4.5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3zm-6.75-10.5a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25v2.25a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"folder-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M19.5 21a3 3 0 0 0 3-3v-4.5a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3V18a3 3 0 0 0 3 3zm-18-10.854V6a3 3 0 0 1 3-3h5.379a2.25 2.25 0 0 1 1.59.659l2.122 2.121c.14.141.331.22.53.22H19.5a3 3 0 0 1 3 3v1.146A4.483 4.483 0 0 0 19.5 9h-15a4.483 4.483 0 0 0-3 1.146\\\"/>\"\n    },\n    \"forward\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 8.688c0-.864.933-1.405 1.683-.977l7.108 4.062a1.125 1.125 0 0 1 0 1.953l-7.108 4.062A1.125 1.125 0 0 1 3 16.81zm9.75 0c0-.864.933-1.405 1.683-.977l7.108 4.062a1.125 1.125 0 0 1 0 1.953l-7.108 4.062a1.125 1.125 0 0 1-1.683-.977z\\\"/>\"\n    },\n    \"forward-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.288 4.819A1.5 1.5 0 0 0 1 6.095v7.81a1.5 1.5 0 0 0 2.288 1.277l6.323-3.905c.155-.096.285-.213.389-.344v2.973a1.5 1.5 0 0 0 2.288 1.276l6.323-3.905a1.5 1.5 0 0 0 0-2.553L12.288 4.82A1.5 1.5 0 0 0 10 6.095v2.973a1.506 1.506 0 0 0-.389-.344z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"forward-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M5.055 7.06c-1.25-.714-2.805.189-2.805 1.628v8.123c0 1.44 1.555 2.342 2.805 1.628L12 14.471v2.34c0 1.44 1.555 2.342 2.805 1.628l7.108-4.061c1.26-.72 1.26-2.536 0-3.256L14.805 7.06C13.555 6.346 12 7.25 12 8.688v2.34z\\\"/>\"\n    },\n    \"funnel\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 3c2.755 0 5.455.232 8.083.678c.533.09.917.556.917 1.096v1.044a2.25 2.25 0 0 1-.659 1.591l-5.432 5.432a2.25 2.25 0 0 0-.659 1.591v2.927a2.25 2.25 0 0 1-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 0 0-.659-1.591L3.659 7.409A2.25 2.25 0 0 1 3 5.818V4.774c0-.54.384-1.006.917-1.096A48.32 48.32 0 0 1 12 3\\\"/>\"\n    },\n    \"funnel-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.628 1.601C5.028 1.206 7.49 1 10 1s4.973.206 7.372.601a.75.75 0 0 1 .628.74v2.288a2.25 2.25 0 0 1-.659 1.59l-4.682 4.683a2.25 2.25 0 0 0-.659 1.59v3.037c0 .684-.31 1.33-.844 1.757l-1.937 1.55A.75.75 0 0 1 8 18.25v-5.757a2.25 2.25 0 0 0-.659-1.591L2.659 6.22A2.25 2.25 0 0 1 2 4.629V2.34a.75.75 0 0 1 .628-.74\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"funnel-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.792 2.938A49.069 49.069 0 0 1 12 2.25c2.797 0 5.54.236 8.209.688a1.857 1.857 0 0 1 1.541 1.836v1.044a3 3 0 0 1-.879 2.121l-6.182 6.182a1.5 1.5 0 0 0-.439 1.061v2.927a3 3 0 0 1-1.658 2.684l-1.757.878A.75.75 0 0 1 9.75 21v-5.818a1.5 1.5 0 0 0-.44-1.06L3.13 7.938a3 3 0 0 1-.879-2.121V4.774c0-.897.64-1.683 1.542-1.836\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"gif\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12.75 8.25v7.5m6-7.5h-3V12m0 0v3.75m0-3.75H18M9.75 9.348c-1.03-1.464-2.698-1.464-3.728 0c-1.03 1.465-1.03 3.84 0 5.304c1.03 1.464 2.699 1.464 3.728 0V12h-1.5M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5\\\"/>\"\n    },\n    \"gif-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 5.25A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25v9.5A2.25 2.25 0 0 1 16.75 17H3.25A2.25 2.25 0 0 1 1 14.75zm4.026 2.879C5.356 7.65 5.72 7.5 6 7.5s.643.15.974.629a.75.75 0 0 0 1.234-.854C7.66 6.484 6.873 6 6 6c-.873 0-1.66.484-2.208 1.275C3.25 8.059 3 9.048 3 10c0 .952.25 1.941.792 2.725C4.34 13.516 5.127 14 6 14c.873 0 1.66-.484 2.208-1.275a.75.75 0 0 0 .133-.427V10a.75.75 0 0 0-.75-.75H6.25a.75.75 0 0 0 0 1.5h.591v1.295c-.293.342-.6.455-.841.455c-.279 0-.643-.15-.974-.629C4.69 11.386 4.5 10.711 4.5 10c0-.711.19-1.386.526-1.871M10.75 6a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-1.5 0v-6.5a.75.75 0 0 1 .75-.75m3 0h2.5a.75.75 0 0 1 0 1.5H14.5v1.75h.75a.75.75 0 0 1 0 1.5h-.75v2.5a.75.75 0 0 1-1.5 0v-6.5a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"gif-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 3.75a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V6.75a3 3 0 0 0-3-3zm9 4.5a.75.75 0 0 0-1.5 0v7.5a.75.75 0 0 0 1.5 0zm1.5 0a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5H16.5v2.25H18a.75.75 0 0 1 0 1.5h-1.5v3a.75.75 0 0 1-1.5 0zM6.636 9.78c.404-.575.867-.78 1.25-.78s.846.205 1.25.78a.75.75 0 0 0 1.228-.863C9.738 8.027 8.853 7.5 7.886 7.5c-.966 0-1.852.527-2.477 1.417c-.62.882-.909 2-.909 3.083c0 1.083.289 2.201.909 3.083c.625.89 1.51 1.417 2.477 1.417c.967 0 1.852-.527 2.478-1.417a.75.75 0 0 0 .136-.431V12a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0 0 1.5H9v1.648c-.37.44-.774.602-1.114.602c-.383 0-.846-.205-1.25-.78C6.226 13.638 6 12.837 6 12c0-.837.226-1.638.636-2.22\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"gift\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21 11.25v8.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5v-8.25M12 4.875A2.625 2.625 0 1 0 9.375 7.5H12m0-2.625V7.5m0-2.625A2.625 2.625 0 1 1 14.625 7.5H12m0 0V21m-8.625-9.75h18c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125h-18c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125\\\"/>\"\n    },\n    \"gift-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M14 6a2.5 2.5 0 0 0-4-3a2.5 2.5 0 0 0-4 3H3.25C2.56 6 2 6.56 2 7.25v.5C2 8.44 2.56 9 3.25 9h6V6h1.5v3h6C17.44 9 18 8.44 18 7.75v-.5C18 6.56 17.44 6 16.75 6zm-1-1.5a1 1 0 0 1-1 1h-1v-1a1 1 0 1 1 2 0m-6 0a1 1 0 0 0 1 1h1v-1a1 1 0 0 0-2 0\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M9.25 10.5H3v4.75A2.75 2.75 0 0 0 5.75 18h3.5zm1.5 7.5v-7.5H17v4.75A2.75 2.75 0 0 1 14.25 18z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"gift-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M9.375 3a1.875 1.875 0 0 0 0 3.75h1.875v4.5H3.375A1.875 1.875 0 0 1 1.5 9.375v-.75c0-1.036.84-1.875 1.875-1.875h3.193A3.375 3.375 0 0 1 12 2.754a3.375 3.375 0 0 1 5.432 3.997h3.943a1.874 1.874 0 0 1 1.875 1.874v.75c0 1.036-.84 1.875-1.875 1.875H12.75v-4.5h1.875a1.875 1.875 0 1 0-1.875-1.875V6.75h-1.5V4.875C11.25 3.839 10.41 3 9.375 3m1.875 9.75H3v6.75a2.25 2.25 0 0 0 2.25 2.25h6zm1.5 0v9h6.75a2.25 2.25 0 0 0 2.25-2.25v-6.75z\\\"/>\"\n    },\n    \"gift-top\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 3.75v16.5M2.25 12h19.5M6.375 17.25a4.875 4.875 0 0 0 4.875-4.875V12m6.375 5.25a4.875 4.875 0 0 1-4.875-4.875V12m-9 8.25h16.5a1.5 1.5 0 0 0 1.5-1.5V5.25a1.5 1.5 0 0 0-1.5-1.5H3.75a1.5 1.5 0 0 0-1.5 1.5v13.5a1.5 1.5 0 0 0 1.5 1.5m12.621-9.44c-1.409 1.41-4.242 1.061-4.242 1.061s-.349-2.833 1.06-4.242a2.25 2.25 0 0 1 3.182 3.182M10.773 7.63c1.409 1.409 1.06 4.242 1.06 4.242S9 12.22 7.592 10.811a2.25 2.25 0 1 1 3.182-3.182\\\"/>\"\n    },\n    \"gift-top-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.25 3H3.5A1.5 1.5 0 0 0 2 4.5v4.75h3.365A2.75 2.75 0 0 1 9.25 5.362zM2 10.75v4.75A1.5 1.5 0 0 0 3.5 17h5.75v-4.876A4.75 4.75 0 0 1 5 14.75a.75.75 0 0 1 0-1.5a3.251 3.251 0 0 0 3.163-2.5zM10.75 17h5.75a1.5 1.5 0 0 0 1.5-1.5v-4.75h-6.163A3.251 3.251 0 0 0 15 13.25a.75.75 0 0 1 0 1.5a4.75 4.75 0 0 1-4.25-2.626zM18 9.25V4.5A1.5 1.5 0 0 0 16.5 3h-5.75v2.362a2.75 2.75 0 0 1 3.885 3.888zm-4.496-2.755a1.25 1.25 0 0 0-1.768 0c-.36.359-.526.999-.559 1.697c-.01.228-.006.443.004.626c.183.01.398.014.626.003c.698-.033 1.338-.2 1.697-.559a1.25 1.25 0 0 0 0-1.767m-5.24 0a1.25 1.25 0 0 0-1.768 1.767c.36.36 1 .526 1.697.56c.228.01.443.006.626-.004c.01-.183.015-.398.004-.626c-.033-.698-.2-1.338-.56-1.697\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"gift-top-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M11.25 3v4.046a3 3 0 0 0-4.277 4.204H1.5v-6A2.25 2.25 0 0 1 3.75 3zm1.5 0v4.011a3 3 0 0 1 4.239 4.239H22.5v-6A2.25 2.25 0 0 0 20.25 3zm9.75 9.75h-8.983a4.125 4.125 0 0 0 4.108 3.75a.75.75 0 0 1 0 1.5a5.623 5.623 0 0 1-4.875-2.817V21h7.5a2.25 2.25 0 0 0 2.25-2.25zM11.25 21v-5.817A5.623 5.623 0 0 1 6.375 18a.75.75 0 0 1 0-1.5a4.126 4.126 0 0 0 4.108-3.75H1.5v6A2.25 2.25 0 0 0 3.75 21z\\\"/><path d=\\\"M11.086 10.354c.03.297.037.575.035.805a7.484 7.484 0 0 1-.805-.036c-.833-.084-1.677-.325-2.195-.843a1.5 1.5 0 0 1 2.122-2.12c.517.517.759 1.36.842 2.194m1.792 0c-.03.297-.038.575-.036.805c.23.002.508-.006.805-.036c.833-.084 1.677-.325 2.195-.843a1.5 1.5 0 0 0-2.121-2.12c-.518.518-.76 1.362-.843 2.194\\\"/></g>\"\n    },\n    \"globe-alt\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5a17.92 17.92 0 0 1-8.716-2.247m0 0A9.015 9.015 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418\\\"/>\"\n    },\n    \"globe-alt-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M16.555 5.412a8.028 8.028 0 0 0-3.503-2.81a14.899 14.899 0 0 1 1.663 4.472a8.547 8.547 0 0 0 1.84-1.662m-3.229 2.413a13.43 13.43 0 0 0-2.413-5.773a8.087 8.087 0 0 0-1.826 0a13.43 13.43 0 0 0-2.413 5.773A8.473 8.473 0 0 0 10 8.5c1.18 0 2.304-.24 3.326-.675M6.514 9.376A9.98 9.98 0 0 0 10 10c1.226 0 2.4-.22 3.486-.624a13.54 13.54 0 0 1-.351 3.759A13.54 13.54 0 0 1 10 13.5c-1.079 0-2.128-.127-3.134-.366a13.538 13.538 0 0 1-.352-3.758M5.285 7.074a14.9 14.9 0 0 1 1.663-4.471a8.028 8.028 0 0 0-3.503 2.81a8.577 8.577 0 0 0 1.84 1.66m12.049-.275a7.973 7.973 0 0 1 .614 4.115a13.47 13.47 0 0 1-3.178 1.72a15.093 15.093 0 0 0 .174-3.939a10.043 10.043 0 0 0 2.39-1.896m-14.668 0a10.042 10.042 0 0 0 2.39 1.896a15.196 15.196 0 0 0 .174 3.94a13.472 13.472 0 0 1-3.178-1.72a7.973 7.973 0 0 1 .615-4.115M10 15c.898 0 1.778-.079 2.633-.23a13.473 13.473 0 0 1-1.72 3.178a8.099 8.099 0 0 1-1.826 0a13.47 13.47 0 0 1-1.72-3.178c.855.151 1.735.23 2.633.23m4.357-.643a14.912 14.912 0 0 1-1.305 3.04a8.027 8.027 0 0 0 4.345-4.345c-.953.542-1.971.981-3.04 1.305m-7.409 3.04a8.027 8.027 0 0 1-4.345-4.345c.953.542 1.971.981 3.04 1.305a14.912 14.912 0 0 0 1.305 3.04\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"globe-alt-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M21.721 12.752a9.711 9.711 0 0 0-.945-5.003a12.754 12.754 0 0 1-4.339 2.708a18.991 18.991 0 0 1-.214 4.772a17.165 17.165 0 0 0 5.498-2.477m-7.087 2.798a17.324 17.324 0 0 0 .332-4.647c-.952.227-1.945.347-2.966.347c-1.021 0-2.014-.12-2.966-.347a17.515 17.515 0 0 0 .332 4.647a17.385 17.385 0 0 0 5.268 0m-4.862 1.569a18.963 18.963 0 0 0 4.456 0A17.182 17.182 0 0 1 12 21.724a17.18 17.18 0 0 1-2.228-4.605M7.777 15.23a18.87 18.87 0 0 1-.214-4.773a12.753 12.753 0 0 1-4.34-2.709a9.711 9.711 0 0 0-.944 5.004a17.165 17.165 0 0 0 5.498 2.477m13.579-.476a9.765 9.765 0 0 1-7.478 6.816a18.64 18.64 0 0 0 1.988-4.718a18.627 18.627 0 0 0 5.49-2.098m-18.712 0c1.682.97 3.53 1.687 5.49 2.098a18.64 18.64 0 0 0 1.988 4.718a9.765 9.765 0 0 1-7.478-6.816M13.878 2.43a9.755 9.755 0 0 1 6.116 3.986a11.267 11.267 0 0 1-3.746 2.504a18.63 18.63 0 0 0-2.37-6.49M12 2.276a17.152 17.152 0 0 1 2.805 7.121a11.281 11.281 0 0 1-5.61 0A17.151 17.151 0 0 1 12 2.276m-1.878.154a18.629 18.629 0 0 0-2.37 6.49a11.266 11.266 0 0 1-3.746-2.504a9.754 9.754 0 0 1 6.116-3.985\\\"/>\"\n    },\n    \"globe-americas\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m6.115 5.19l.319 1.913A6 6 0 0 0 8.11 10.36L9.75 12l-.387.775c-.217.433-.132.956.21 1.298l1.348 1.348c.21.21.329.497.329.795v1.089c0 .426.24.815.622 1.006l.153.076c.433.217.956.132 1.298-.21l.723-.723a8.7 8.7 0 0 0 2.288-4.042a1.087 1.087 0 0 0-.358-1.099l-1.33-1.108a1.122 1.122 0 0 0-.905-.245l-1.17.195a1.125 1.125 0 0 1-.98-.314l-.295-.295a1.125 1.125 0 0 1 0-1.591l.13-.132a1.125 1.125 0 0 1 1.3-.21l.603.302a.809.809 0 0 0 1.086-1.086L14.25 7.5l1.256-.837a4.5 4.5 0 0 0 1.528-1.732l.146-.292M6.115 5.19a9 9 0 1 0 11.065-.55m-11.065.55A8.965 8.965 0 0 1 12 3c1.929 0 3.716.607 5.18 1.64\\\"/>\"\n    },\n    \"globe-americas-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0m-1.5 0a6.5 6.5 0 1 1-11-4.69v.447a3.5 3.5 0 0 0 1.025 2.475L8.293 10L8 10.293a1 1 0 0 0 0 1.414l1.06 1.06a1.5 1.5 0 0 1 .44 1.061v.363a1 1 0 0 0 .553.894l.276.139a1 1 0 0 0 1.342-.448l1.454-2.908a1.5 1.5 0 0 0-.281-1.731l-.772-.772a1 1 0 0 0-1.023-.242l-.384.128a.5.5 0 0 1-.606-.25l-.296-.592a.481.481 0 0 1 .646-.646l.262.131a1 1 0 0 0 .447.106h.188a1 1 0 0 0 .949-1.316l-.068-.204a.5.5 0 0 1 .149-.538l1.44-1.234A6.492 6.492 0 0 1 16.5 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"globe-americas-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M6.262 6.072a8.25 8.25 0 1 0 10.562-.766a4.5 4.5 0 0 1-1.318 1.357L14.25 7.5l.165.33a.809.809 0 0 1-1.086 1.085l-.604-.302a1.125 1.125 0 0 0-1.298.21l-.132.131a1.127 1.127 0 0 0 0 1.592l.296.295c.256.257.622.374.98.314l1.17-.195c.323-.054.654.036.905.245l1.33 1.108c.32.267.46.694.358 1.1a8.7 8.7 0 0 1-2.288 4.04l-.723.724a1.125 1.125 0 0 1-1.298.21l-.153-.076a1.125 1.125 0 0 1-.622-1.006v-1.089c0-.298-.119-.585-.33-.796l-1.347-1.347a1.125 1.125 0 0 1-.21-1.298L9.75 12l-1.64-1.64a6 6 0 0 1-1.676-3.257z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"globe-asia-australia\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12.75 3.03v.568c0 .334.148.65.405.864l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 0 1-1.161.886l-.143.048a1.107 1.107 0 0 0-.57 1.664a1.108 1.108 0 0 1-.427 1.605L9 13.125l.423 1.059a.956.956 0 0 1-1.652.928l-.679-.906a1.125 1.125 0 0 0-1.906.172L4.5 15.75l-.612.153M12.75 3.031a9 9 0 0 0-8.862 12.872M12.75 3.031a9 9 0 0 1 6.69 14.036m0 0l-.177-.529A2.25 2.25 0 0 0 17.128 15H16.5l-.324-.324a1.453 1.453 0 0 0-2.328.377l-.036.073a1.586 1.586 0 0 1-.982.816l-.99.282c-.55.157-.894.702-.8 1.267l.073.438c.08.474.49.821.97.821c.846 0 1.598.542 1.865 1.345l.215.643m5.276-3.67a9.012 9.012 0 0 1-5.276 3.67m0 0a9 9 0 0 1-10.275-4.835M15.75 9c0 .896-.393 1.7-1.016 2.25\\\"/>\"\n    },\n    \"globe-asia-australia-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0m-6.5 6.326a6.52 6.52 0 0 1-1.5.174a6.487 6.487 0 0 1-5.011-2.36l.49-.98a.423.423 0 0 1 .614-.164l.294.196a.992.992 0 0 0 1.491-1.139l-.197-.593a.252.252 0 0 1 .126-.304l1.973-.987a.938.938 0 0 0 .361-1.359a.375.375 0 0 1 .239-.576l.125-.025A2.421 2.421 0 0 0 12.327 6.6l.05-.149a1 1 0 0 0-.242-1.023l-1.489-1.489a.5.5 0 0 1-.146-.353v-.067a6.5 6.5 0 0 1 5.392 9.23a1.398 1.398 0 0 0-.68-.244l-.566-.566a1.5 1.5 0 0 0-1.06-.439h-.172a1.5 1.5 0 0 0-1.06.44l-.593.592a.501.501 0 0 1-.13.093l-1.578.79a1 1 0 0 0-.553.894v.191a1 1 0 0 0 1 1h.5a.5.5 0 0 1 .5.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"globe-asia-australia-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M15.75 8.25a.75.75 0 0 1 .75.75a3.74 3.74 0 0 1-1.27 2.812a.75.75 0 1 1-.992-1.124A2.243 2.243 0 0 0 15 9a.75.75 0 0 1 .75-.75\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M4.575 15.6a8.25 8.25 0 0 0 9.348 4.425a1.966 1.966 0 0 0-1.84-1.275a.983.983 0 0 1-.97-.822l-.073-.437c-.094-.565.25-1.11.8-1.267l.99-.282c.427-.123.783-.418.982-.816l.036-.073a1.453 1.453 0 0 1 2.328-.377L16.5 15h.628a2.25 2.25 0 0 1 1.983 1.186a8.25 8.25 0 0 0-6.345-12.4c.044.262.18.503.389.676l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 0 1-1.161.886l-.143.048a1.107 1.107 0 0 0-.57 1.664a1.108 1.108 0 0 1-.427 1.605L9 13.125l.423 1.059a.956.956 0 0 1-1.652.928l-.679-.906a1.125 1.125 0 0 0-1.906.172z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"globe-europe-africa\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m20.893 13.393l-1.135-1.135a2.252 2.252 0 0 1-.421-.585l-1.08-2.16a.414.414 0 0 0-.663-.107a.827.827 0 0 1-.812.21l-1.273-.363a.89.89 0 0 0-.738 1.595l.587.39c.59.395.674 1.23.172 1.732l-.2.2c-.212.212-.33.498-.33.796v.41c0 .409-.11.809-.32 1.158l-1.315 2.191a2.11 2.11 0 0 1-1.81 1.025a1.055 1.055 0 0 1-1.055-1.055v-1.172c0-.92-.56-1.747-1.414-2.089l-.655-.261a2.25 2.25 0 0 1-1.383-2.46l.007-.042a2.25 2.25 0 0 1 .29-.787l.09-.15a2.25 2.25 0 0 1 2.37-1.048l1.178.236a1.125 1.125 0 0 0 1.302-.795l.208-.73a1.125 1.125 0 0 0-.578-1.315l-.665-.332l-.091.091a2.25 2.25 0 0 1-1.591.659h-.18a.94.94 0 0 0-.662.274a.931.931 0 0 1-1.458-1.137l1.411-2.353a2.25 2.25 0 0 0 .286-.76m11.928 9.869A9 9 0 0 0 8.965 3.525m11.928 9.868A9 9 0 1 1 8.965 3.525\\\"/>\"\n    },\n    \"globe-europe-africa-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0m-1.503.204A6.5 6.5 0 1 1 7.95 3.83L6.927 5.62a1.453 1.453 0 0 0 1.91 2.02l.175-.087a.5.5 0 0 1 .224-.053h.146a.5.5 0 0 1 .447.724l-.028.055a.4.4 0 0 1-.357.221h-.502a2.26 2.26 0 0 0-1.88 1.006l-.044.066a2.099 2.099 0 0 0 1.085 3.156a.58.58 0 0 1 .397.547v1.05a1.175 1.175 0 0 0 2.093.734l1.611-2.014c.192-.24.296-.536.296-.842c0-.316.128-.624.353-.85a1.363 1.363 0 0 0 .173-1.716l-.464-.696a.369.369 0 0 1 .527-.499l.343.257a1.04 1.04 0 0 0 1.091.098a.586.586 0 0 1 .677.11z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"globe-europe-africa-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M8.547 4.505a8.25 8.25 0 1 0 11.672 8.214l-.46-.46a2.252 2.252 0 0 1-.422-.586l-1.08-2.16a.414.414 0 0 0-.663-.107a.827.827 0 0 1-.812.21l-1.273-.363a.89.89 0 0 0-.738 1.595l.587.39c.59.395.674 1.23.172 1.732l-.2.2c-.211.212-.33.498-.33.796v.41c0 .409-.11.809-.32 1.158l-1.315 2.191a2.11 2.11 0 0 1-1.81 1.025a1.055 1.055 0 0 1-1.055-1.055v-1.172c0-.92-.56-1.747-1.414-2.089l-.654-.261a2.25 2.25 0 0 1-1.384-2.46l.007-.042a2.25 2.25 0 0 1 .29-.787l.09-.15a2.25 2.25 0 0 1 2.37-1.048l1.178.236a1.125 1.125 0 0 0 1.302-.795l.208-.73a1.125 1.125 0 0 0-.578-1.315l-.665-.332l-.091.091a2.25 2.25 0 0 1-1.591.659h-.18a.94.94 0 0 0-.662.274a.931.931 0 0 1-1.458-1.137z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"hand-raised\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M10.05 4.575a1.575 1.575 0 1 0-3.15 0v3m3.15-3v-1.5a1.575 1.575 0 0 1 3.15 0v1.5m-3.15 0l.075 5.925m3.075.75V4.575m0 0a1.575 1.575 0 0 1 3.15 0V15M6.9 7.575a1.575 1.575 0 1 0-3.15 0v8.175a6.75 6.75 0 0 0 6.75 6.75h2.018a5.25 5.25 0 0 0 3.712-1.538l1.732-1.732a5.25 5.25 0 0 0 1.538-3.712l.003-2.024a.668.668 0 0 1 .198-.471a1.575 1.575 0 1 0-2.228-2.228a3.818 3.818 0 0 0-1.12 2.687M6.9 7.575V12m6.27 4.318A4.49 4.49 0 0 1 16.35 15m.002 0h-.002\\\"/>\"\n    },\n    \"hand-raised-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11 2a1 1 0 1 0-2 0v6.5a.5.5 0 0 1-1 0V3a1 1 0 1 0-2 0v5.5a.5.5 0 0 1-1 0V5a1 1 0 1 0-2 0v7a7 7 0 1 0 14 0V8a1 1 0 1 0-2 0v3.5a.5.5 0 0 1-1 0V3a1 1 0 1 0-2 0v5.5a.5.5 0 0 1-1 0V8z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"hand-raised-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10.5 1.875a1.125 1.125 0 0 1 2.25 0v8.219c.517.162 1.02.382 1.5.659V3.375a1.125 1.125 0 0 1 2.25 0v10.937a4.505 4.505 0 0 0-3.25 2.373a8.963 8.963 0 0 1 4-.935A.75.75 0 0 0 18 15v-2.266a3.368 3.368 0 0 1 .988-2.37a1.125 1.125 0 0 1 1.592 1.59a1.118 1.118 0 0 0-.33.79v3.006h-.005a6 6 0 0 1-1.752 4.007l-1.736 1.736a6 6 0 0 1-4.242 1.757H10.5a7.5 7.5 0 0 1-7.5-7.5V6.375a1.125 1.125 0 0 1 2.25 0v5.519c.46-.452.965-.832 1.5-1.141V3.375a1.125 1.125 0 0 1 2.25 0v6.526c.495-.1.997-.151 1.5-.151z\\\"/>\"\n    },\n    \"hand-thumb-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.5 15h2.25m8.025-9.75c.01.05.027.1.05.148a8.95 8.95 0 0 1 .925 3.977a8.96 8.96 0 0 1-.999 4.125m.023-8.25c-.076-.365.183-.75.575-.75h.908c.889 0 1.713.518 1.972 1.368c.339 1.11.521 2.287.521 3.507c0 1.553-.295 3.036-.831 4.398C20.613 14.547 19.833 15 19 15h-1.053c-.472 0-.745-.556-.5-.96a8.95 8.95 0 0 0 .303-.54m.023-8.25H16.48a4.5 4.5 0 0 1-1.423-.23l-3.114-1.04a4.5 4.5 0 0 0-1.423-.23H6.504c-.618 0-1.217.247-1.605.729A11.95 11.95 0 0 0 2.25 12c0 .434.023.863.068 1.285C2.427 14.306 3.346 15 4.372 15h3.126c.618 0 .991.724.725 1.282A7.471 7.471 0 0 0 7.5 19.5a2.25 2.25 0 0 0 2.25 2.25a.75.75 0 0 0 .75-.75v-.633c0-.573.11-1.14.322-1.672c.304-.76.93-1.33 1.653-1.715a9.04 9.04 0 0 0 2.86-2.4c.498-.634 1.226-1.08 2.032-1.08h.384\\\"/>\"\n    },\n    \"hand-thumb-down-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M18.905 12.75a1.25 1.25 0 0 1-2.5 0v-7.5a1.25 1.25 0 1 1 2.5 0zm-10 4.25v1.3c0 .268-.14.526-.395.607A2 2 0 0 1 5.905 17c0-.995.182-1.948.514-2.826c.204-.54-.166-1.174-.744-1.174h-2.52c-1.242 0-2.26-1.01-2.146-2.247c.193-2.08.652-4.082 1.341-5.974C2.752 3.678 3.833 3 5.005 3h3.192a3 3 0 0 1 1.342.317l2.733 1.366A3 3 0 0 0 13.614 5h1.291v7h-.963c-.684 0-1.258.482-1.612 1.068a4.012 4.012 0 0 1-2.165 1.73c-.433.143-.854.386-1.012.814c-.16.432-.248.9-.248 1.388\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"hand-thumb-down-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M15.73 5.25h1.035A7.465 7.465 0 0 1 18 9.375a7.465 7.465 0 0 1-1.235 4.125h-.148c-.806 0-1.533.446-2.031 1.08a9.04 9.04 0 0 1-2.861 2.4c-.723.384-1.35.956-1.653 1.715a4.498 4.498 0 0 0-.322 1.672V21a.75.75 0 0 1-.75.75a2.25 2.25 0 0 1-2.25-2.25c0-1.152.26-2.243.723-3.218C7.74 15.724 7.366 15 6.748 15H3.622c-1.026 0-1.945-.694-2.054-1.715A12.134 12.134 0 0 1 1.5 12c0-2.848.992-5.464 2.649-7.521c.388-.482.987-.729 1.605-.729H9.77a4.5 4.5 0 0 1 1.423.23l3.114 1.04a4.5 4.5 0 0 0 1.423.23m5.939 8.523c.536-1.362.831-2.845.831-4.398c0-1.22-.182-2.398-.52-3.507c-.26-.85-1.084-1.368-1.973-1.368H19.1c-.445 0-.72.498-.523.898c.591 1.2.924 2.55.924 3.977a8.959 8.959 0 0 1-1.302 4.666c-.245.403.028.959.5.959h1.053c.832 0 1.612-.453 1.918-1.227\\\"/>\"\n    },\n    \"hand-thumb-up\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6.633 10.5c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 0 0 .322-1.672V3a.75.75 0 0 1 .75-.75A2.25 2.25 0 0 1 16.5 4.5c0 1.152-.26 2.243-.723 3.218c-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715c.045.422.068.85.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H13.48a4.53 4.53 0 0 1-1.423-.23l-3.114-1.04a4.501 4.501 0 0 0-1.423-.23H5.904M14.25 9h2.25M5.904 18.75c.083.205.173.405.27.602c.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 0 1-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 10.203 4.167 9.75 5 9.75h1.053c.472 0 .745.556.5.96a8.958 8.958 0 0 0-1.302 4.665a8.97 8.97 0 0 0 .654 3.375\\\"/>\"\n    },\n    \"hand-thumb-up-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M1 8.25a1.25 1.25 0 1 1 2.5 0v7.5a1.25 1.25 0 1 1-2.5 0zM11 3V1.7c0-.268.14-.526.395-.607A2 2 0 0 1 14 3c0 .995-.182 1.948-.514 2.826c-.204.54.166 1.174.744 1.174h2.52c1.243 0 2.261 1.01 2.146 2.247a23.864 23.864 0 0 1-1.341 5.974C17.153 16.323 16.072 17 14.9 17h-3.192a3 3 0 0 1-1.341-.317l-2.734-1.366A3 3 0 0 0 6.292 15H5V8h.963c.685 0 1.258-.483 1.612-1.068a4.011 4.011 0 0 1 2.166-1.73c.432-.143.853-.386 1.011-.814c.16-.432.248-.9.248-1.388\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"hand-thumb-up-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M7.493 18.75c-.425 0-.82-.236-.975-.632A7.48 7.48 0 0 1 6 15.375a7.47 7.47 0 0 1 1.602-4.634c.151-.192.373-.309.6-.397c.473-.183.89-.514 1.212-.924a9.042 9.042 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 0 0 .322-1.672V3a.75.75 0 0 1 .75-.75a2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218c-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715c.045.422.068.85.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H14.23a4.53 4.53 0 0 1-1.423-.23l-3.114-1.04a4.501 4.501 0 0 0-1.423-.23zm-5.162-7.773a11.969 11.969 0 0 0-.831 4.398a12 12 0 0 0 .52 3.507c.26.85 1.084 1.368 1.973 1.368H4.9c.445 0 .72-.498.523-.898a8.963 8.963 0 0 1-.924-3.977c0-1.708.476-3.305 1.302-4.666c.245-.403-.028-.959-.5-.959H4.25c-.832 0-1.612.453-1.918 1.227\\\"/>\"\n    },\n    \"hashtag\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5l-3.9 19.5m-2.1-19.5l-3.9 19.5\\\"/>\"\n    },\n    \"hashtag-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.493 2.853a.75.75 0 0 0-1.486-.205L7.545 6H4.198a.75.75 0 0 0 0 1.5h3.14l-.69 5H3.302a.75.75 0 0 0 0 1.5h3.14l-.435 3.148a.75.75 0 0 0 1.486.205L7.955 14h2.986l-.434 3.148a.75.75 0 0 0 1.486.205L12.456 14h3.346a.75.75 0 0 0 0-1.5h-3.14l.69-5h3.346a.75.75 0 0 0 0-1.5h-3.14l.435-3.147a.75.75 0 0 0-1.486-.205L12.045 6H9.059zM8.852 7.5l-.69 5h2.986l.69-5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"hashtag-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.097 1.515a.75.75 0 0 1 .589.882L10.666 7.5h4.47l1.079-5.397a.75.75 0 1 1 1.47.294L16.665 7.5h3.585a.75.75 0 0 1 0 1.5h-3.885l-1.2 6h3.585a.75.75 0 0 1 0 1.5h-3.885l-1.08 5.397a.75.75 0 1 1-1.47-.294l1.02-5.103h-4.47l-1.08 5.397a.75.75 0 0 1-1.47-.294l1.02-5.103H3.75a.75.75 0 1 1 0-1.5h3.885l1.2-6H5.25a.75.75 0 0 1 0-1.5h3.885l1.08-5.397a.75.75 0 0 1 .882-.588M10.365 9l-1.2 6h4.47l1.2-6z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"heart\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21 8.25c0-2.485-2.099-4.5-4.687-4.5c-1.936 0-3.598 1.126-4.313 2.733c-.715-1.607-2.377-2.733-4.312-2.733C5.098 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12\\\"/>\"\n    },\n    \"heart-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m9.653 16.915l-.005-.003l-.019-.01a20.759 20.759 0 0 1-1.162-.682a22.045 22.045 0 0 1-2.582-1.9C4.045 12.733 2 10.352 2 7.5a4.5 4.5 0 0 1 8-2.828A4.5 4.5 0 0 1 18 7.5c0 2.852-2.044 5.233-3.885 6.82a22.049 22.049 0 0 1-3.744 2.582l-.019.01l-.005.003h-.002a.739.739 0 0 1-.69.001z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"heart-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m11.645 20.91l-.007-.003l-.022-.012a15.247 15.247 0 0 1-.383-.218a25.18 25.18 0 0 1-4.244-3.17C4.688 15.36 2.25 12.174 2.25 8.25C2.25 5.322 4.714 3 7.688 3A5.5 5.5 0 0 1 12 5.052A5.5 5.5 0 0 1 16.313 3c2.973 0 5.437 2.322 5.437 5.25c0 3.925-2.438 7.111-4.739 9.256a25.175 25.175 0 0 1-4.244 3.17a15.247 15.247 0 0 1-.383.219l-.022.012l-.007.004l-.003.001a.752.752 0 0 1-.704 0z\\\"/>\"\n    },\n    \"home\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m2.25 12l8.955-8.955a1.124 1.124 0 0 1 1.59 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25\\\"/>\"\n    },\n    \"home-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.293 2.293a1 1 0 0 1 1.414 0l7 7A1 1 0 0 1 17 11h-1v6a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-6H3a1 1 0 0 1-.707-1.707z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"home-modern\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.25 21v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21m0 0h4.5V3.545M12.75 21h7.5V10.75M2.25 21h1.5m18 0h-18M2.25 9l4.5-1.636M18.75 3l-1.5.545m0 6.205l3 1m1.5.5l-1.5-.5M6.75 7.364V3h-3v18m3-13.636l10.5-3.819\\\"/>\"\n    },\n    \"home-modern-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M14.916 2.404a.75.75 0 0 1-.32 1.012l-.596.31V17a1 1 0 0 1-1 1h-2.26a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 0-.75-.75H6.75a.75.75 0 0 0-.75.75v3.5a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1 0-1.5H2V9.957a.75.75 0 0 1-.596-1.372L2 8.275V5.75a.75.75 0 0 1 1.5 0v1.745l10.404-5.41a.75.75 0 0 1 1.012.32m.946 6.165a.75.75 0 0 1 .735-.025l1.999 1.04A.75.75 0 0 1 18 10.957V16.5h.25a.75.75 0 1 1 0 1.5h-2a.75.75 0 0 1-.75-.75V9.21a.75.75 0 0 1 .361-.64\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"home-modern-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M19.006 3.705a.75.75 0 0 0-.512-1.41L6 6.838V3a.75.75 0 0 0-.75-.75h-1.5A.75.75 0 0 0 3 3v4.93l-1.006.365a.75.75 0 0 0 .512 1.41z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M3.019 11.115L18 5.667V9.09l4.006 1.456a.75.75 0 1 1-.512 1.41l-.494-.18v8.475h.75a.75.75 0 0 1 0 1.5H2.25a.75.75 0 0 1 0-1.5H3v-9.128zM18 20.25v-9.565l1.5.545v9.02zm-9-6a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h3a.75.75 0 0 0 .75-.75V15a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"home-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M11.47 3.84a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.06l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 0 0 1.061 1.06z\\\"/><path d=\\\"m12 5.432l8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086z\\\"/></g>\"\n    },\n    \"identification\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15 9h3.75M15 12h3.75M15 15h3.75M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5m6-10.125a1.875 1.875 0 1 1-3.75 0a1.875 1.875 0 0 1 3.75 0m1.294 6.336a6.721 6.721 0 0 1-3.17.789a6.721 6.721 0 0 1-3.168-.789a3.376 3.376 0 0 1 6.338 0\\\"/>\"\n    },\n    \"identification-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3zm4 1.5a2 2 0 1 1 4 0a2 2 0 0 1-4 0m2 3a4 4 0 0 0-3.665 2.395a.75.75 0 0 0 .416 1A8.98 8.98 0 0 0 7 14.5a8.98 8.98 0 0 0 3.249-.604a.75.75 0 0 0 .416-1.001A4.001 4.001 0 0 0 7 10.5m5-3.75a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75m0 6.5a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75m.75-4a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"identification-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 3.75a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V6.75a3 3 0 0 0-3-3zm4.125 3a2.25 2.25 0 1 0 0 4.5a2.25 2.25 0 0 0 0-4.5m-3.873 8.703a4.126 4.126 0 0 1 7.746 0a.75.75 0 0 1-.351.92a7.47 7.47 0 0 1-3.522.877a7.47 7.47 0 0 1-3.522-.877a.75.75 0 0 1-.351-.92M15 8.25a.75.75 0 0 0 0 1.5h3.75a.75.75 0 0 0 0-1.5zM14.25 12a.75.75 0 0 1 .75-.75h3.75a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1-.75-.75m.75 2.25a.75.75 0 0 0 0 1.5h3.75a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"inbox\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859m-19.5.338V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162c0-.224-.034-.447-.1-.661l-2.41-7.839a2.25 2.25 0 0 0-2.15-1.588H6.911a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.25 2.25 0 0 0-.1.661\\\"/>\"\n    },\n    \"inbox-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 11.27c0-.246.033-.492.099-.73l1.523-5.521A2.75 2.75 0 0 1 5.273 3h9.454a2.75 2.75 0 0 1 2.651 2.019l1.523 5.52c.066.239.099.485.099.732V15a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zm3.068-5.852A1.25 1.25 0 0 1 5.273 4.5h9.454a1.25 1.25 0 0 1 1.205.918l1.523 5.52c.006.02.01.041.015.062H14a1 1 0 0 0-.86.49l-.606 1.02a1 1 0 0 1-.86.49H8.236a1 1 0 0 1-.894-.553l-.448-.894A1 1 0 0 0 6 11H2.53l.015-.062z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"inbox-arrow-down\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 3.75H6.912a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.25 2.25 0 0 0-.1.661V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162c0-.224-.034-.447-.1-.661l-2.41-7.839a2.25 2.25 0 0 0-2.15-1.588H15M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859M12 3v8.25m0 0l-3-3m3 3l3-3\\\"/>\"\n    },\n    \"inbox-arrow-down-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M10 2a.75.75 0 0 1 .75.75v5.59l1.95-2.1a.75.75 0 1 1 1.1 1.02l-3.25 3.5a.75.75 0 0 1-1.1 0L6.2 7.26a.75.75 0 1 1 1.1-1.02l1.95 2.1V2.75A.75.75 0 0 1 10 2\\\"/><path d=\\\"M5.273 4.5a1.25 1.25 0 0 0-1.205.918l-1.523 5.52c-.006.02-.01.041-.015.062H6a1 1 0 0 1 .894.553l.448.894a1 1 0 0 0 .894.553h3.438a1 1 0 0 0 .86-.49l.606-1.02A1 1 0 0 1 14 11h3.47a1.318 1.318 0 0 0-.015-.062l-1.523-5.52a1.25 1.25 0 0 0-1.205-.918h-.977a.75.75 0 0 1 0-1.5h.977a2.75 2.75 0 0 1 2.651 2.019l1.523 5.52c.066.239.099.485.099.732V15a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-3.73c0-.246.033-.492.099-.73l1.523-5.521A2.75 2.75 0 0 1 5.273 3h.977a.75.75 0 0 1 0 1.5z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"inbox-arrow-down-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M5.478 5.559A1.5 1.5 0 0 1 6.912 4.5H9A.75.75 0 0 0 9 3H6.912a3 3 0 0 0-2.868 2.118l-2.411 7.838a3 3 0 0 0-.133.882V18a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-4.162c0-.299-.045-.596-.133-.882l-2.411-7.838A3 3 0 0 0 17.088 3H15a.75.75 0 0 0 0 1.5h2.088a1.5 1.5 0 0 1 1.434 1.059l2.213 7.191H17.89a3 3 0 0 0-2.684 1.658l-.256.513a1.5 1.5 0 0 1-1.342.829H10.39a1.5 1.5 0 0 1-1.342-.83l-.256-.512a3 3 0 0 0-2.684-1.658H3.265z\\\"/><path d=\\\"M12 2.25a.75.75 0 0 1 .75.75v6.44l1.72-1.72a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 0 1 1.06-1.06l1.72 1.72V3a.75.75 0 0 1 .75-.75\\\"/></g>\"\n    },\n    \"inbox-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.912 3a3 3 0 0 0-2.868 2.118l-2.411 7.838a3 3 0 0 0-.133.882V18a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-4.162c0-.299-.045-.596-.133-.882l-2.411-7.838A3 3 0 0 0 17.088 3zm13.823 9.75l-2.213-7.191A1.5 1.5 0 0 0 17.088 4.5H6.912a1.5 1.5 0 0 0-1.434 1.059L3.265 12.75H6.11a3 3 0 0 1 2.684 1.658l.256.513a1.5 1.5 0 0 0 1.342.829h3.218a1.5 1.5 0 0 0 1.342-.83l.256-.512a3 3 0 0 1 2.684-1.658z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"inbox-stack\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m7.875 14.25l1.214 1.942a2.25 2.25 0 0 0 1.908 1.058h2.006c.776 0 1.497-.4 1.908-1.058l1.214-1.942M2.41 9h4.636a2.25 2.25 0 0 1 1.872 1.002l.164.246a2.25 2.25 0 0 0 1.872 1.002h2.092a2.25 2.25 0 0 0 1.872-1.002l.164-.246A2.25 2.25 0 0 1 16.954 9h4.636M2.41 9a2.25 2.25 0 0 0-.16.832V12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 12V9.832c0-.287-.055-.57-.16-.832M2.41 9a2.25 2.25 0 0 1 .382-.632l3.285-3.832a2.25 2.25 0 0 1 1.708-.786h8.43c.657 0 1.281.287 1.709.786l3.284 3.832c.163.19.291.404.382.632M4.5 20.25h15A2.25 2.25 0 0 0 21.75 18v-2.625c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125V18a2.25 2.25 0 0 0 2.25 2.25\\\"/>\"\n    },\n    \"inbox-stack-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M1.045 6.954a2.75 2.75 0 0 1 .217-.678L2.53 3.58A2.75 2.75 0 0 1 5.019 2h9.962a2.75 2.75 0 0 1 2.488 1.58l1.27 2.696c.101.216.174.444.216.678A1 1 0 0 1 19 7.25v1.5a2.75 2.75 0 0 1-2.75 2.75H3.75A2.75 2.75 0 0 1 1 8.75v-1.5a1 1 0 0 1 .045-.296m2.843-2.736A1.25 1.25 0 0 1 5.02 3.5h9.962c.484 0 .925.28 1.13.718l.957 2.032H14a1 1 0 0 0-.86.49l-.606 1.02a1 1 0 0 1-.86.49H8.236a1 1 0 0 1-.894-.553l-.448-.894A1 1 0 0 0 6 6.25H2.932z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M1 14a1 1 0 0 1 1-1h4a1 1 0 0 1 .894.553l.448.894a1 1 0 0 0 .894.553h3.438a1 1 0 0 0 .86-.49l.606-1.02A1 1 0 0 1 14 13h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"inbox-stack-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M1.5 9.832v1.793c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875V9.832a3 3 0 0 0-.722-1.952l-3.285-3.832A3 3 0 0 0 16.215 3h-8.43a3 3 0 0 0-2.278 1.048L2.222 7.88A3 3 0 0 0 1.5 9.832M7.785 4.5a1.5 1.5 0 0 0-1.139.524L3.881 8.25h3.165a3 3 0 0 1 2.496 1.336l.164.246a1.5 1.5 0 0 0 1.248.668h2.092a1.5 1.5 0 0 0 1.248-.668l.164-.246a3 3 0 0 1 2.496-1.336h3.165l-2.765-3.226a1.5 1.5 0 0 0-1.139-.524z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M2.813 15c-.725 0-1.313.588-1.313 1.313V18a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3v-1.687c0-.725-.588-1.313-1.312-1.313h-4.234a3 3 0 0 0-2.496 1.336l-.164.246a1.5 1.5 0 0 1-1.248.668h-2.092a1.5 1.5 0 0 1-1.248-.668l-.164-.246A3 3 0 0 0 7.046 15z\\\"/></g>\"\n    },\n    \"information-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m11.25 11.25l.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9-3.75h.008v.008H12z\\\"/>\"\n    },\n    \"information-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0m-7-4a1 1 0 1 1-2 0a1 1 0 0 1 2 0M9 9a.75.75 0 0 0 0 1.5h.253a.25.25 0 0 1 .244.304l-.459 2.066A1.75 1.75 0 0 0 10.747 15H11a.75.75 0 0 0 0-1.5h-.253a.25.25 0 0 1-.244-.304l.459-2.066A1.75 1.75 0 0 0 9.253 9z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"information-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12m8.706-1.442c1.146-.573 2.437.463 2.126 1.706l-.709 2.836l.042-.02a.75.75 0 0 1 .67 1.34l-.04.022c-1.147.573-2.438-.463-2.127-1.706l.71-2.836l-.042.02a.75.75 0 1 1-.671-1.34zM12 9a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"italic\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M11.25 3.75h3.696m3.804 0h-3.804M5.25 20.25h3.804m3.696 0H9.054m0 0l5.892-16.5\\\"/>\"\n    },\n    \"italic-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.05 2.75A.75.75 0 0 1 8.8 2h7.45a.75.75 0 0 1 0 1.5h-3.132l-4.643 13h2.785a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1 0-1.5h3.132l4.643-13H8.8a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"italic-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 3.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-3.275l-5.357 15h2.632a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5h3.275l5.357-15H11.25a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"key\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 5.25a3 3 0 0 1 3 3m3 0a6 6 0 0 1-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v2.25H2.25v-2.818c0-.597.237-1.17.659-1.591l6.499-6.499c.404-.404.527-1 .43-1.563A6 6 0 1 1 21.75 8.25\\\"/>\"\n    },\n    \"key-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8 7a5 5 0 1 1 3.61 4.804l-1.903 1.903A1 1 0 0 1 9 14H8v1a1 1 0 0 1-1 1H6v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-2a1 1 0 0 1 .293-.707L8.196 8.39A5.002 5.002 0 0 1 8 7m5-3a.75.75 0 0 0 0 1.5A1.5 1.5 0 0 1 14.5 7A.75.75 0 0 0 16 7a3 3 0 0 0-3-3\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"key-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.75 1.5a6.75 6.75 0 0 0-6.651 7.906c.067.39-.032.717-.221.906l-6.5 6.499a3 3 0 0 0-.878 2.121v2.818c0 .414.336.75.75.75H6a.75.75 0 0 0 .75-.75v-1.5h1.5A.75.75 0 0 0 9 19.5V18h1.5a.75.75 0 0 0 .53-.22l2.658-2.658c.19-.189.517-.288.906-.22A6.75 6.75 0 1 0 15.75 1.5m0 3a.75.75 0 0 0 0 1.5A2.25 2.25 0 0 1 18 8.25a.75.75 0 0 0 1.5 0a3.75 3.75 0 0 0-3.75-3.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"language\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m10.5 21l5.25-11.25L21 21m-9-3h7.5M3 5.621a48.474 48.474 0 0 1 6-.371m0 0c1.12 0 2.233.038 3.334.114M9 5.25V3m3.334 2.364C11.176 10.658 7.69 15.08 3 17.502m9.334-12.138A47.63 47.63 0 0 1 15 5.621m-4.589 8.495a18.023 18.023 0 0 1-3.827-5.802\\\"/>\"\n    },\n    \"language-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M7.75 2.75a.75.75 0 0 0-1.5 0v1.258a32.987 32.987 0 0 0-3.599.278a.75.75 0 1 0 .198 1.487A31.545 31.545 0 0 1 8.7 5.545A19.381 19.381 0 0 1 7 9.56a19.418 19.418 0 0 1-1.002-2.05a.75.75 0 0 0-1.384.577a20.935 20.935 0 0 0 1.492 2.91a19.613 19.613 0 0 1-3.828 4.154a.75.75 0 1 0 .945 1.164A21.116 21.116 0 0 0 7 12.331c.095.132.192.262.29.391a.75.75 0 0 0 1.194-.91a18.97 18.97 0 0 1-.59-.815a20.888 20.888 0 0 0 2.333-5.332c.31.031.618.068.924.108a.75.75 0 0 0 .198-1.487a32.832 32.832 0 0 0-3.599-.278z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M13 8a.75.75 0 0 1 .671.415l4.25 8.5a.75.75 0 1 1-1.342.67L15.787 16h-5.573l-.793 1.585a.75.75 0 1 1-1.342-.67l4.25-8.5A.75.75 0 0 1 13 8m2.037 6.5L13 10.427L10.964 14.5z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"language-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9 2.25a.75.75 0 0 1 .75.75v1.506a49.38 49.38 0 0 1 5.343.371a.75.75 0 1 1-.186 1.489a46.7 46.7 0 0 0-1.99-.206a18.67 18.67 0 0 1-2.969 6.323c.317.384.65.753.998 1.108a.75.75 0 1 1-1.07 1.05A18.902 18.902 0 0 1 9 13.688a18.823 18.823 0 0 1-5.656 4.482a.75.75 0 1 1-.688-1.333a17.323 17.323 0 0 0 5.396-4.353A18.72 18.72 0 0 1 5.89 8.598a.75.75 0 0 1 1.388-.568A17.21 17.21 0 0 0 9 11.224a17.17 17.17 0 0 0 2.391-5.165a48.038 48.038 0 0 0-8.298.307a.75.75 0 0 1-.186-1.489a49.159 49.159 0 0 1 5.343-.371V3A.75.75 0 0 1 9 2.25M15.75 9a.75.75 0 0 1 .68.433l5.25 11.25a.75.75 0 0 1-1.36.634l-1.198-2.567h-6.744l-1.198 2.567a.75.75 0 0 1-1.36-.634l5.25-11.25A.75.75 0 0 1 15.75 9m-2.672 8.25h5.344l-2.672-5.726z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"lifebuoy\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M16.712 4.33a9.027 9.027 0 0 1 1.652 1.306c.51.51.944 1.064 1.306 1.652M16.712 4.33l-3.448 4.138m3.448-4.138a9.014 9.014 0 0 0-9.424 0M19.67 7.288l-4.138 3.448m4.138-3.448a9.014 9.014 0 0 1 0 9.424m-4.138-5.976a3.736 3.736 0 0 0-.88-1.388a3.737 3.737 0 0 0-1.388-.88m2.268 2.268a3.765 3.765 0 0 1 0 2.528m-2.268-4.796a3.765 3.765 0 0 0-2.528 0m4.796 4.796a3.754 3.754 0 0 1-.88 1.388a3.736 3.736 0 0 1-1.388.88m2.268-2.268l4.138 3.448m0 0a9.027 9.027 0 0 1-1.306 1.652c-.51.51-1.064.944-1.652 1.306m0 0l-3.448-4.138m3.448 4.138a9.014 9.014 0 0 1-9.424 0m5.976-4.138a3.765 3.765 0 0 1-2.528 0m0 0a3.736 3.736 0 0 1-1.388-.88a3.737 3.737 0 0 1-.88-1.388m2.268 2.268L7.288 19.67m0 0a9.024 9.024 0 0 1-1.652-1.306a9.027 9.027 0 0 1-1.306-1.652m0 0l4.138-3.448M4.33 16.712a9.014 9.014 0 0 1 0-9.424m4.138 5.976a3.765 3.765 0 0 1 0-2.528m0 0c.181-.506.475-.982.88-1.388a3.736 3.736 0 0 1 1.388-.88m-2.268 2.268L4.33 7.288m6.406 1.18L7.288 4.33m0 0a9.024 9.024 0 0 0-1.652 1.306A9.025 9.025 0 0 0 4.33 7.288\\\"/>\"\n    },\n    \"lifebuoy-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"m7.171 4.146l1.947 2.466a3.514 3.514 0 0 1 1.764 0l1.947-2.466a6.52 6.52 0 0 0-5.658 0m8.683 3.025l-2.466 1.947c.15.578.15 1.186 0 1.764l2.466 1.947a6.52 6.52 0 0 0 0-5.658m-3.025 8.683l-1.947-2.466c-.578.15-1.186.15-1.764 0l-1.947 2.466a6.52 6.52 0 0 0 5.658 0M4.146 12.83l2.466-1.947a3.514 3.514 0 0 1 0-1.764L4.146 7.171a6.52 6.52 0 0 0 0 5.658M5.63 3.297a8.01 8.01 0 0 1 8.738 0a8.031 8.031 0 0 1 2.334 2.334a8.01 8.01 0 0 1 0 8.738a8.033 8.033 0 0 1-2.334 2.334a8.01 8.01 0 0 1-8.738 0a8.032 8.032 0 0 1-2.334-2.334a8.01 8.01 0 0 1 0-8.738A8.03 8.03 0 0 1 5.63 3.297m5.198 4.882a2.008 2.008 0 0 0-2.243.407a1.994 1.994 0 0 0-.407 2.243a1.993 1.993 0 0 0 .992.992a2.008 2.008 0 0 0 2.243-.407c.176-.175.31-.374.407-.585a2.008 2.008 0 0 0-.407-2.243a1.993 1.993 0 0 0-.585-.407\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"lifebuoy-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19.449 8.448L16.388 11a4.52 4.52 0 0 1 0 2.002l3.061 2.55a8.275 8.275 0 0 0 0-7.103M15.552 19.45L13 16.388a4.52 4.52 0 0 1-2.002 0l-2.55 3.061a8.275 8.275 0 0 0 7.103 0M4.55 15.552L7.612 13a4.52 4.52 0 0 1 0-2.002L4.551 8.45a8.275 8.275 0 0 0 0 7.103M8.448 4.55L11 7.612a4.52 4.52 0 0 1 2.002 0l2.55-3.061a8.275 8.275 0 0 0-7.103 0m8.657-.86a9.776 9.776 0 0 1 1.79 1.415a9.776 9.776 0 0 1 1.414 1.788a9.764 9.764 0 0 1 0 10.212a9.777 9.777 0 0 1-1.415 1.788a9.777 9.777 0 0 1-1.788 1.415a9.764 9.764 0 0 1-10.212 0a9.776 9.776 0 0 1-1.788-1.415a9.776 9.776 0 0 1-1.415-1.788a9.764 9.764 0 0 1 0-10.212a9.774 9.774 0 0 1 1.415-1.788A9.774 9.774 0 0 1 6.894 3.69a9.764 9.764 0 0 1 10.212 0m-2.984 6.19a2.985 2.985 0 0 0-1.11-.704a3.015 3.015 0 0 0-2.022 0a2.985 2.985 0 0 0-1.11.704c-.326.325-.56.705-.704 1.11a3.015 3.015 0 0 0 0 2.022c.144.405.378.785.704 1.11c.325.326.705.56 1.11.704c.652.233 1.37.233 2.022 0a2.985 2.985 0 0 0 1.11-.704c.326-.325.56-.705.704-1.11a3.016 3.016 0 0 0 0-2.022a2.985 2.985 0 0 0-.704-1.11\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"light-bulb\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 18v-5.25m0 0a6.01 6.01 0 0 0 1.5-.189m-1.5.189a6.01 6.01 0 0 1-1.5-.189m3.75 7.478a12.06 12.06 0 0 1-4.5 0m3.75 2.383a14.406 14.406 0 0 1-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 1 0-7.517 0c.85.493 1.509 1.333 1.509 2.316V18\\\"/>\"\n    },\n    \"light-bulb-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10 1a6 6 0 0 0-3.815 10.631C7.237 12.5 8 13.443 8 14.456v.644a.75.75 0 0 0 .572.729a6.016 6.016 0 0 0 2.856 0A.75.75 0 0 0 12 15.1v-.644c0-1.013.762-1.957 1.815-2.825A6 6 0 0 0 10 1M8.863 17.414a.75.75 0 0 0-.226 1.483a9.066 9.066 0 0 0 2.726 0a.75.75 0 0 0-.226-1.483a7.553 7.553 0 0 1-2.274 0\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"light-bulb-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M12 .75a8.25 8.25 0 0 0-4.135 15.39c.686.398 1.115 1.008 1.134 1.623a.75.75 0 0 0 .577.706c.352.083.71.148 1.074.195c.323.041.6-.218.6-.544v-4.661a6.714 6.714 0 0 1-.937-.171a.75.75 0 1 1 .374-1.453a5.261 5.261 0 0 0 2.626 0a.75.75 0 1 1 .374 1.452a6.712 6.712 0 0 1-.937.172v4.66a.54.54 0 0 0 .6.545a10.58 10.58 0 0 0 1.074-.195a.75.75 0 0 0 .577-.706c.02-.615.448-1.225 1.134-1.623A8.25 8.25 0 0 0 12 .75\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M9.013 19.9a.75.75 0 0 1 .877-.597a11.319 11.319 0 0 0 4.22 0a.75.75 0 1 1 .28 1.473a12.819 12.819 0 0 1-4.78 0a.75.75 0 0 1-.597-.876m.741 2.444a.75.75 0 0 1 .824-.668a13.682 13.682 0 0 0 2.844 0a.75.75 0 1 1 .156 1.492a15.156 15.156 0 0 1-3.156 0a.75.75 0 0 1-.668-.824\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"link\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M13.19 8.688a4.5 4.5 0 0 1 1.242 7.244l-4.5 4.5a4.5 4.5 0 0 1-6.364-6.364l1.757-1.757m13.35-.622l1.757-1.757a4.5 4.5 0 0 0-6.364-6.364l-4.5 4.5a4.5 4.5 0 0 0 1.242 7.244\\\"/>\"\n    },\n    \"link-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M12.232 4.232a2.5 2.5 0 0 1 3.536 3.536l-1.225 1.224a.75.75 0 0 0 1.061 1.06l1.224-1.224a4 4 0 0 0-5.656-5.656l-3 3a4 4 0 0 0 .225 5.865a.75.75 0 0 0 .977-1.138a2.5 2.5 0 0 1-.142-3.667z\\\"/><path d=\\\"M11.603 7.963a.75.75 0 0 0-.977 1.138a2.5 2.5 0 0 1 .142 3.667l-3 3a2.5 2.5 0 0 1-3.536-3.536l1.225-1.224a.75.75 0 0 0-1.061-1.06l-1.224 1.224a4 4 0 1 0 5.656 5.656l3-3a4 4 0 0 0-.225-5.865\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"link-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19.902 4.098a3.75 3.75 0 0 0-5.304 0l-4.5 4.5a3.75 3.75 0 0 0 1.035 6.037a.75.75 0 0 1-.646 1.353a5.25 5.25 0 0 1-1.449-8.45l4.5-4.5a5.25 5.25 0 1 1 7.424 7.424l-1.757 1.757a.75.75 0 1 1-1.06-1.06l1.757-1.757a3.75 3.75 0 0 0 0-5.304m-7.389 4.267a.75.75 0 0 1 1-.353a5.25 5.25 0 0 1 1.449 8.45l-4.5 4.5a5.25 5.25 0 1 1-7.424-7.424l1.757-1.757a.75.75 0 1 1 1.06 1.06l-1.757 1.757a3.75 3.75 0 1 0 5.304 5.304l4.5-4.5a3.75 3.75 0 0 0-1.035-6.037a.75.75 0 0 1-.354-1\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"list-bullet\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0M3.75 12h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m-.375 5.25h.007v.008H3.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0\\\"/>\"\n    },\n    \"list-bullet-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6 4.75A.75.75 0 0 1 6.75 4h10.5a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 4.75M6 10a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 10m0 5.25a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75a.75.75 0 0 1-.75-.75M1.99 4.75a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1zm0 10.5a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1zm0-5.25a1 1 0 0 1 1-1H3a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"list-bullet-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.625 6.75a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0m4.875 0A.75.75 0 0 1 8.25 6h12a.75.75 0 0 1 0 1.5h-12a.75.75 0 0 1-.75-.75M2.625 12a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0M7.5 12a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5h-12A.75.75 0 0 1 7.5 12m-4.875 5.25a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0m4.875 0a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5h-12a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"lock-closed\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25\\\"/>\"\n    },\n    \"lock-closed-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 1a4.5 4.5 0 0 0-4.5 4.5V9H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2h-.5V5.5A4.5 4.5 0 0 0 10 1m3 8V5.5a3 3 0 1 0-6 0V9z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"lock-closed-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 1.5a5.25 5.25 0 0 0-5.25 5.25v3a3 3 0 0 0-3 3v6.75a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3v-6.75a3 3 0 0 0-3-3v-3c0-2.9-2.35-5.25-5.25-5.25m3.75 8.25v-3a3.75 3.75 0 1 0-7.5 0v3z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"lock-open\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25\\\"/>\"\n    },\n    \"lock-open-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M14.5 1A4.5 4.5 0 0 0 10 5.5V9H3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2h-1.5V5.5a3 3 0 1 1 6 0v2.75a.75.75 0 0 0 1.5 0V5.5A4.5 4.5 0 0 0 14.5 1\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"lock-open-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M18 1.5c2.9 0 5.25 2.35 5.25 5.25v3.75a.75.75 0 0 1-1.5 0V6.75a3.75 3.75 0 1 0-7.5 0v3a3 3 0 0 1 3 3v6.75a3 3 0 0 1-3 3H3.75a3 3 0 0 1-3-3v-6.75a3 3 0 0 1 3-3h9v-3c0-2.9 2.35-5.25 5.25-5.25\\\"/>\"\n    },\n    \"magnifying-glass\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607\\\"/>\"\n    },\n    \"magnifying-glass-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9 3.5a5.5 5.5 0 1 0 0 11a5.5 5.5 0 0 0 0-11M2 9a7 7 0 1 1 12.452 4.391l3.328 3.329a.75.75 0 1 1-1.06 1.06l-3.329-3.328A7 7 0 0 1 2 9\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"magnifying-glass-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m15.75 15.75l-2.488-2.488m0 0a3.375 3.375 0 1 0-4.773-4.773a3.375 3.375 0 0 0 4.772 4.772M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"magnifying-glass-circle-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M6.5 9a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16M9 5a4 4 0 1 0 2.248 7.309l1.472 1.471a.75.75 0 1 0 1.06-1.06l-1.471-1.472A4 4 0 0 0 9 5\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"magnifying-glass-circle-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M8.25 10.875a2.625 2.625 0 1 1 5.25 0a2.625 2.625 0 0 1-5.25 0\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-1.125 4.5a4.125 4.125 0 1 0 2.338 7.524l2.007 2.006a.75.75 0 1 0 1.06-1.06l-2.006-2.007a4.125 4.125 0 0 0-3.399-6.463\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"magnifying-glass-minus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607M13.5 10.5h-6\\\"/>\"\n    },\n    \"magnifying-glass-minus-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M6.75 8.25a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M9 2a7 7 0 1 0 4.391 12.452l3.329 3.328a.75.75 0 1 0 1.06-1.06l-3.328-3.329A7 7 0 0 0 9 2M3.5 9a5.5 5.5 0 1 1 11 0a5.5 5.5 0 0 1-11 0\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"magnifying-glass-minus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 3.75a6.75 6.75 0 1 0 0 13.5a6.75 6.75 0 0 0 0-13.5M2.25 10.5a8.25 8.25 0 1 1 14.59 5.28l4.69 4.69a.75.75 0 1 1-1.06 1.06l-4.69-4.69A8.25 8.25 0 0 1 2.25 10.5m4.5 0a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"magnifying-glass-plus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607M10.5 7.5v6m3-3h-6\\\"/>\"\n    },\n    \"magnifying-glass-plus-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M9 6a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 9 6\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M2 9a7 7 0 1 1 12.452 4.391l3.328 3.329a.75.75 0 1 1-1.06 1.06l-3.329-3.328A7 7 0 0 1 2 9m7-5.5a5.5 5.5 0 1 0 0 11a5.5 5.5 0 0 0 0-11\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"magnifying-glass-plus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 3.75a6.75 6.75 0 1 0 0 13.5a6.75 6.75 0 0 0 0-13.5M2.25 10.5a8.25 8.25 0 1 1 14.59 5.28l4.69 4.69a.75.75 0 1 1-1.06 1.06l-4.69-4.69A8.25 8.25 0 0 1 2.25 10.5m8.25-3.75a.75.75 0 0 1 .75.75v2.25h2.25a.75.75 0 0 1 0 1.5h-2.25v2.25a.75.75 0 0 1-1.5 0v-2.25H7.5a.75.75 0 0 1 0-1.5h2.25V7.5a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"magnifying-glass-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.5 3.75a6.75 6.75 0 1 0 0 13.5a6.75 6.75 0 0 0 0-13.5M2.25 10.5a8.25 8.25 0 1 1 14.59 5.28l4.69 4.69a.75.75 0 1 1-1.06 1.06l-4.69-4.69A8.25 8.25 0 0 1 2.25 10.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"map\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 6.75V15m6-6v8.25m.503 3.499l4.875-2.438c.381-.19.622-.58.622-1.006V4.82c0-.836-.88-1.38-1.628-1.006l-3.869 1.934a1.12 1.12 0 0 1-1.006 0L9.503 3.252a1.125 1.125 0 0 0-1.006 0L3.622 5.689A1.125 1.125 0 0 0 3 6.695V19.18c0 .836.88 1.38 1.628 1.006l3.869-1.934a1.12 1.12 0 0 1 1.006 0l4.994 2.497c.317.158.69.158 1.006 0\\\"/>\"\n    },\n    \"map-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.157 2.176a1.5 1.5 0 0 0-1.147 0l-4.084 1.69A1.5 1.5 0 0 0 2 5.25v10.877a1.5 1.5 0 0 0 2.074 1.386l3.51-1.453l4.26 1.763a1.5 1.5 0 0 0 1.146 0l4.083-1.69A1.5 1.5 0 0 0 18 14.749V3.873a1.5 1.5 0 0 0-2.073-1.386l-3.51 1.452zM7.58 5a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-1.5 0v-6.5A.75.75 0 0 1 7.58 5m5.59 2.75a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"map-pin\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M15 10.5a3 3 0 1 1-6 0a3 3 0 0 1 6 0\\\"/><path d=\\\"M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0\\\"/></g>\"\n    },\n    \"map-pin-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"m9.69 18.933l.003.001C9.89 19.02 10 19 10 19s.11.02.308-.066l.002-.001l.006-.003l.018-.008a5.741 5.741 0 0 0 .281-.14c.186-.096.446-.24.757-.433c.62-.384 1.445-.966 2.274-1.765C15.302 14.988 17 12.493 17 9A7 7 0 1 0 3 9c0 3.492 1.698 5.988 3.355 7.584a13.731 13.731 0 0 0 2.273 1.765a11.842 11.842 0 0 0 .976.544l.062.029l.018.008zM10 11.25a2.25 2.25 0 1 0 0-4.5a2.25 2.25 0 0 0 0 4.5\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"map-pin-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"m11.54 22.351l.07.04l.028.016a.76.76 0 0 0 .723 0l.028-.015l.071-.041a16.975 16.975 0 0 0 1.144-.742a19.58 19.58 0 0 0 2.683-2.282c1.944-1.99 3.963-4.98 3.963-8.827a8.25 8.25 0 0 0-16.5 0c0 3.846 2.02 6.837 3.963 8.827a19.58 19.58 0 0 0 2.682 2.282a16.975 16.975 0 0 0 1.145.742M12 13.5a3 3 0 1 0 0-6a3 3 0 0 0 0 6\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"map-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.161 2.58a1.875 1.875 0 0 1 1.678 0l4.993 2.498c.106.052.23.052.336 0l3.869-1.935A1.875 1.875 0 0 1 21.75 4.82v12.485c0 .71-.401 1.36-1.037 1.677l-4.875 2.437a1.875 1.875 0 0 1-1.676 0l-4.994-2.497a.375.375 0 0 0-.336 0l-3.868 1.935A1.875 1.875 0 0 1 2.25 19.18V6.695c0-.71.401-1.36 1.036-1.677zM9 6a.75.75 0 0 1 .75.75V15a.75.75 0 0 1-1.5 0V6.75A.75.75 0 0 1 9 6m6.75 3a.75.75 0 0 0-1.5 0v8.25a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"megaphone\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M10.34 15.84a24.07 24.07 0 0 0-2.09-.09H7.5a4.5 4.5 0 1 1 0-9h.75c.704 0 1.402-.03 2.09-.09m0 9.18c.253.962.584 1.892.985 2.783c.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a20.845 20.845 0 0 1-1.44-4.282m3.102.069a18.03 18.03 0 0 1-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.848 23.848 0 0 1 8.835 2.535M10.34 6.66a23.847 23.847 0 0 0 8.835-2.535m0 0A23.74 23.74 0 0 0 18.795 3m.38 1.125a23.91 23.91 0 0 1 1.014 5.395m-1.014 8.855c-.118.38-.245.754-.38 1.125m.38-1.125a23.91 23.91 0 0 0 1.014-5.395m0-3.46a2.249 2.249 0 0 1 0 3.46m0-3.46a24.347 24.347 0 0 1 0 3.46\\\"/>\"\n    },\n    \"megaphone-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M13.92 3.845a19.361 19.361 0 0 1-6.3 1.98C6.765 5.942 5.89 6 5 6a4 4 0 0 0-.504 7.969a15.974 15.974 0 0 0 1.271 3.341c.397.77 1.342 1 2.05.59l.867-.5c.726-.42.94-1.321.588-2.021a12.07 12.07 0 0 1-.448-1.004c1.8.358 3.511.964 5.096 1.78A17.964 17.964 0 0 0 15 10c0-2.161-.381-4.234-1.08-6.155m1.323-.748A19.456 19.456 0 0 1 16.5 10a19.47 19.47 0 0 1-1.257 6.904l-.03.077a.75.75 0 0 0 1.401.537a20.902 20.902 0 0 0 1.312-5.745a1.999 1.999 0 0 0 0-3.545a20.902 20.902 0 0 0-1.312-5.745a.75.75 0 0 0-1.4.537z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"megaphone-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M16.881 4.346A23.112 23.112 0 0 1 8.25 6H7.5a5.25 5.25 0 0 0-.88 10.427a21.593 21.593 0 0 0 1.378 3.94c.464 1.004 1.674 1.32 2.582.796l.657-.379c.88-.508 1.165-1.592.772-2.468a17.116 17.116 0 0 1-.628-1.607c1.918.258 3.76.75 5.5 1.446A21.727 21.727 0 0 0 18 11.25c0-2.413-.393-4.735-1.119-6.904m1.379-.606a23.22 23.22 0 0 1 1.24 7.51a23.22 23.22 0 0 1-1.24 7.51c-.055.161-.111.322-.17.482a.75.75 0 1 0 1.409.516a24.555 24.555 0 0 0 1.415-6.43a2.992 2.992 0 0 0 .836-2.078c0-.806-.319-1.54-.836-2.078a24.65 24.65 0 0 0-1.415-6.43a.75.75 0 1 0-1.409.516c.059.16.116.321.17.483\\\"/>\"\n    },\n    \"microphone\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 18.75a6 6 0 0 0 6-6v-1.5m-6 7.5a6 6 0 0 1-6-6v-1.5m6 7.5v3.75m-3.75 0h7.5M12 15.75a3 3 0 0 1-3-3V4.5a3 3 0 1 1 6 0v8.25a3 3 0 0 1-3 3\\\"/>\"\n    },\n    \"microphone-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M7 4a3 3 0 0 1 6 0v6a3 3 0 1 1-6 0z\\\"/><path d=\\\"M5.5 9.643a.75.75 0 0 0-1.5 0V10c0 3.06 2.29 5.585 5.25 5.954V17.5h-1.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-1.5v-1.546A6.001 6.001 0 0 0 16 10v-.357a.75.75 0 0 0-1.5 0V10a4.5 4.5 0 0 1-9 0z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"microphone-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M8.25 4.5a3.75 3.75 0 1 1 7.5 0v8.25a3.75 3.75 0 1 1-7.5 0z\\\"/><path d=\\\"M6 10.5a.75.75 0 0 1 .75.75v1.5a5.25 5.25 0 1 0 10.5 0v-1.5a.75.75 0 0 1 1.5 0v1.5a6.751 6.751 0 0 1-6 6.709v2.291h3a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5h3v-2.291a6.751 6.751 0 0 1-6-6.709v-1.5A.75.75 0 0 1 6 10.5\\\"/></g>\"\n    },\n    \"minus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.5 12h-15\\\"/>\"\n    },\n    \"minus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4 10a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H4.75A.75.75 0 0 1 4 10\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"minus-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15 12H9m12 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"minus-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16M6.75 9.25a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"minus-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m3 10.5a.75.75 0 0 0 0-1.5H9a.75.75 0 0 0 0 1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"minus-small\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M18 12H6\\\"/>\"\n    },\n    \"minus-small-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M6.75 9.25a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"minus-small-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.25 12a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"minus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.75 12a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"moon\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21.752 15.002A9.718 9.718 0 0 1 18 15.75A9.75 9.75 0 0 1 8.25 6c0-1.33.266-2.597.748-3.752A9.753 9.753 0 0 0 3 11.25A9.75 9.75 0 0 0 12.75 21a9.753 9.753 0 0 0 9.002-5.998\\\"/>\"\n    },\n    \"moon-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.455 2.004a.75.75 0 0 1 .26.77a7 7 0 0 0 9.958 7.967a.75.75 0 0 1 1.067.853A8.5 8.5 0 1 1 6.647 1.921a.75.75 0 0 1 .808.083\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"moon-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.528 1.718a.75.75 0 0 1 .162.819A8.97 8.97 0 0 0 9 6a9 9 0 0 0 9 9a8.97 8.97 0 0 0 3.463-.69a.75.75 0 0 1 .981.98a10.503 10.503 0 0 1-9.694 6.46c-5.799 0-10.5-4.701-10.5-10.5c0-4.368 2.667-8.112 6.46-9.694a.75.75 0 0 1 .818.162\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"musical-note\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m9 9l10.5-3m0 6.553v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 1 1-.99-3.467l2.31-.66a2.25 2.25 0 0 0 1.632-2.163m0 0V2.25L9 5.25v10.303m0 0v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 0 1-.99-3.467l2.31-.66A2.25 2.25 0 0 0 9 15.553\\\"/>\"\n    },\n    \"musical-note-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M17.721 1.599a.75.75 0 0 1 .279.584v11.29a2.25 2.25 0 0 1-1.774 2.198l-2.041.442a2.216 2.216 0 0 1-.938-4.333l2.662-.576a.75.75 0 0 0 .591-.734V6.113l-8 1.73v7.684a2.25 2.25 0 0 1-1.774 2.2l-2.042.44a2.216 2.216 0 1 1-.935-4.33l2.659-.574A.75.75 0 0 0 7 12.53V4.237a.75.75 0 0 1 .591-.733l9.5-2.054a.75.75 0 0 1 .63.149\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"musical-note-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19.952 1.651a.75.75 0 0 1 .298.599v14.053a3 3 0 0 1-2.176 2.884l-1.32.377a2.553 2.553 0 1 1-1.403-4.909l2.311-.66a1.5 1.5 0 0 0 1.088-1.442V6.994l-9 2.572v9.737a3 3 0 0 1-2.176 2.884l-1.32.377a2.553 2.553 0 1 1-1.402-4.909l2.31-.66a1.5 1.5 0 0 0 1.088-1.442V5.25a.75.75 0 0 1 .544-.721l10.5-3a.75.75 0 0 1 .658.122\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"newspaper\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 7.5h1.5m-1.5 3h1.5m-7.5 3h7.5m-7.5 3h7.5m3-9h3.375c.621 0 1.125.504 1.125 1.125V18a2.25 2.25 0 0 1-2.25 2.25M16.5 7.5V18a2.25 2.25 0 0 0 2.25 2.25M16.5 7.5V4.875c0-.621-.504-1.125-1.125-1.125H4.125C3.504 3.75 3 4.254 3 4.875V18a2.25 2.25 0 0 0 2.25 2.25h13.5M6 7.5h3v3H6z\\\"/>\"\n    },\n    \"newspaper-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M2 3.5A1.5 1.5 0 0 1 3.5 2h9A1.5 1.5 0 0 1 14 3.5v11.75A2.75 2.75 0 0 0 16.75 18h-12A2.75 2.75 0 0 1 2 15.25zm3.75 7a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5zm0 3a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5zM5 5.75A.75.75 0 0 1 5.75 5h4.5a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 5 8.25z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M16.5 6.5h-1v8.75a1.25 1.25 0 1 0 2.5 0V8a1.5 1.5 0 0 0-1.5-1.5\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"newspaper-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M4.125 3C3.089 3 2.25 3.84 2.25 4.875V18a3 3 0 0 0 3 3h15a3 3 0 0 1-3-3V4.875C17.25 3.839 16.41 3 15.375 3zM12 9.75a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5zm-.75-2.25a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5H12a.75.75 0 0 1-.75-.75M6 12.75a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5zm-.75 3.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75M6 6.75a.75.75 0 0 0-.75.75v3c0 .414.336.75.75.75h3a.75.75 0 0 0 .75-.75v-3A.75.75 0 0 0 9 6.75z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M18.75 6.75h1.875c.621 0 1.125.504 1.125 1.125V18a1.5 1.5 0 0 1-3 0z\\\"/></g>\"\n    },\n    \"no-symbol\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M18.364 18.364A9 9 0 0 0 5.636 5.636m12.728 12.728A9 9 0 0 1 5.636 5.636m12.728 12.728L5.636 5.636\\\"/>\"\n    },\n    \"no-symbol-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"m5.965 4.904l9.131 9.131a6.5 6.5 0 0 0-9.131-9.131m8.07 10.192L4.904 5.965a6.5 6.5 0 0 0 9.131 9.131M4.343 4.343a8 8 0 1 1 11.314 11.314A8 8 0 0 1 4.343 4.343\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"no-symbol-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"m6.72 5.66l11.62 11.62A8.25 8.25 0 0 0 6.72 5.66m10.56 12.68L5.66 6.72a8.25 8.25 0 0 0 11.62 11.62M5.105 5.106c3.807-3.808 9.98-3.808 13.788 0c3.808 3.807 3.808 9.98 0 13.788c-3.807 3.808-9.98 3.808-13.788 0c-3.808-3.807-3.808-9.98 0-13.788\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"paint-brush\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9.53 16.122a3 3 0 0 0-5.78 1.128a2.25 2.25 0 0 1-2.4 2.245a4.5 4.5 0 0 0 8.4-2.245c0-.399-.078-.78-.22-1.128m0 0a15.998 15.998 0 0 0 3.388-1.62m-5.043-.025a15.994 15.994 0 0 1 1.622-3.395m3.42 3.42a15.995 15.995 0 0 0 4.764-4.648l3.876-5.814a1.151 1.151 0 0 0-1.597-1.597L14.146 6.32a15.996 15.996 0 0 0-4.649 4.764m3.42 3.42a6.776 6.776 0 0 0-3.42-3.42\\\"/>\"\n    },\n    \"paint-brush-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M15.993 1.385a1.87 1.87 0 0 1 2.623 2.622l-4.03 5.27a12.749 12.749 0 0 1-4.237 3.562a4.508 4.508 0 0 0-3.188-3.188a12.75 12.75 0 0 1 3.562-4.236zM6 11a3 3 0 0 0-3 3a.5.5 0 0 1-.72.45a.75.75 0 0 0-1.035.931A4.001 4.001 0 0 0 9 14.004V14a3.01 3.01 0 0 0-1.66-2.685A2.99 2.99 0 0 0 6 11\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"paint-brush-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M20.599 1.5c-.376 0-.743.111-1.055.32l-5.08 3.385a18.747 18.747 0 0 0-3.471 2.987a10.04 10.04 0 0 1 4.815 4.815a18.748 18.748 0 0 0 2.987-3.472l3.386-5.079A1.902 1.902 0 0 0 20.599 1.5m-8.3 14.025a18.76 18.76 0 0 0 1.896-1.207a8.026 8.026 0 0 0-4.513-4.513A18.75 18.75 0 0 0 8.475 11.7l-.278.5a5.26 5.26 0 0 1 3.601 3.602zM6.75 13.5A3.75 3.75 0 0 0 3 17.25a1.5 1.5 0 0 1-1.601 1.497a.75.75 0 0 0-.7 1.123a5.25 5.25 0 0 0 9.8-2.62a3.75 3.75 0 0 0-3.75-3.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"paper-airplane\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6 12L3.269 3.126A59.768 59.768 0 0 1 21.486 12a59.77 59.77 0 0 1-18.217 8.876zm0 0h7.5\\\"/>\"\n    },\n    \"paper-airplane-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.105 2.289a.75.75 0 0 0-.826.95l1.414 4.925A1.5 1.5 0 0 0 5.135 9.25h6.115a.75.75 0 0 1 0 1.5H5.135a1.5 1.5 0 0 0-1.442 1.086l-1.414 4.926a.75.75 0 0 0 .826.95a28.896 28.896 0 0 0 15.293-7.154a.75.75 0 0 0 0-1.115A28.897 28.897 0 0 0 3.105 2.289\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"paper-airplane-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.478 2.405a.75.75 0 0 0-.926.94l2.432 7.906H13.5a.75.75 0 0 1 0 1.5H4.984l-2.432 7.904a.75.75 0 0 0 .926.94a60.519 60.519 0 0 0 18.445-8.986a.75.75 0 0 0 0-1.218A60.517 60.517 0 0 0 3.478 2.405\\\"/>\"\n    },\n    \"paper-clip\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m18.375 12.739l-7.693 7.693a4.5 4.5 0 0 1-6.364-6.364l10.94-10.94A3 3 0 1 1 19.5 7.372L8.552 18.32m.009-.01l-.01.01m5.699-9.941l-7.81 7.81a1.5 1.5 0 0 0 2.112 2.13\\\"/>\"\n    },\n    \"paper-clip-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.621 4.379a3 3 0 0 0-4.242 0l-7 7a3 3 0 0 0 4.241 4.243h.001l.497-.5a.75.75 0 0 1 1.064 1.057l-.498.501l-.002.002a4.5 4.5 0 0 1-6.364-6.364l7-7a4.5 4.5 0 0 1 6.368 6.36l-3.455 3.553A2.625 2.625 0 1 1 9.52 9.52l3.45-3.451a.75.75 0 1 1 1.061 1.06l-3.45 3.451a1.125 1.125 0 0 0 1.587 1.595l3.454-3.553a3 3 0 0 0 0-4.242\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"paper-clip-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18.97 3.659a2.25 2.25 0 0 0-3.182 0l-10.94 10.94a3.75 3.75 0 1 0 5.304 5.303l7.693-7.693a.75.75 0 0 1 1.06 1.06l-7.693 7.693a5.25 5.25 0 1 1-7.424-7.424l10.939-10.94a3.75 3.75 0 1 1 5.303 5.304L9.097 18.835l-.008.008l-.007.007l-.002.002l-.003.002A2.25 2.25 0 0 1 5.91 15.66l7.81-7.81a.75.75 0 0 1 1.061 1.06l-7.81 7.81a.75.75 0 0 0 1.054 1.068L18.97 6.84a2.25 2.25 0 0 0 0-3.182\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"pause\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 5.25v13.5m-7.5-13.5v13.5\\\"/>\"\n    },\n    \"pause-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M5.75 3a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h1.5a.75.75 0 0 0 .75-.75V3.75A.75.75 0 0 0 7.25 3zm7 0a.75.75 0 0 0-.75.75v12.5c0 .414.336.75.75.75h1.5a.75.75 0 0 0 .75-.75V3.75a.75.75 0 0 0-.75-.75z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"pause-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.25 9v6m-4.5 0V9M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"pause-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 10a8 8 0 1 1 16 0a8 8 0 0 1-16 0m5-2.25A.75.75 0 0 1 7.75 7h.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1-.75-.75zm4 0a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"pause-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12M9 8.25a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75h.75a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.75-.75zm5.25 0a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75H15a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"pause-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6.75 5.25a.75.75 0 0 1 .75-.75H9a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H7.5a.75.75 0 0 1-.75-.75zm7.5 0A.75.75 0 0 1 15 4.5h1.5a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H15a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"pencil\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m16.862 4.487l1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L6.832 19.82a4.5 4.5 0 0 1-1.897 1.13l-2.685.8l.8-2.685a4.5 4.5 0 0 1 1.13-1.897zm0 0L19.5 7.125\\\"/>\"\n    },\n    \"pencil-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"m2.695 14.763l-1.262 3.154a.5.5 0 0 0 .65.65l3.155-1.262a4 4 0 0 0 1.343-.885L17.5 5.5a2.121 2.121 0 0 0-3-3L3.58 13.42a4 4 0 0 0-.885 1.343\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"pencil-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157l3.712 3.712l1.157-1.157a2.625 2.625 0 0 0 0-3.712m-2.218 5.93l-3.712-3.712l-12.15 12.15a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32z\\\"/>\"\n    },\n    \"pencil-square\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m16.862 4.487l1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10\\\"/>\"\n    },\n    \"pencil-square-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"m5.433 13.917l1.262-3.155A4 4 0 0 1 7.58 9.42l6.92-6.918a2.121 2.121 0 0 1 3 3l-6.92 6.918c-.383.383-.84.685-1.343.886l-3.154 1.262a.5.5 0 0 1-.65-.65\\\"/><path d=\\\"M3.5 5.75c0-.69.56-1.25 1.25-1.25H10A.75.75 0 0 0 10 3H4.75A2.75 2.75 0 0 0 2 5.75v9.5A2.75 2.75 0 0 0 4.75 18h9.5A2.75 2.75 0 0 0 17 15.25V10a.75.75 0 0 0-1.5 0v5.25c0 .69-.56 1.25-1.25 1.25h-9.5c-.69 0-1.25-.56-1.25-1.25z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"pencil-square-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M21.731 2.269a2.625 2.625 0 0 0-3.712 0l-1.157 1.157l3.712 3.712l1.157-1.157a2.625 2.625 0 0 0 0-3.712m-2.218 5.93l-3.712-3.712l-8.4 8.4a5.25 5.25 0 0 0-1.32 2.214l-.8 2.685a.75.75 0 0 0 .933.933l2.685-.8a5.25 5.25 0 0 0 2.214-1.32z\\\"/><path d=\\\"M5.25 5.25a3 3 0 0 0-3 3v10.5a3 3 0 0 0 3 3h10.5a3 3 0 0 0 3-3V13.5a.75.75 0 0 0-1.5 0v5.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5V8.25a1.5 1.5 0 0 1 1.5-1.5h5.25a.75.75 0 0 0 0-1.5z\\\"/></g>\"\n    },\n    \"phone\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5z\\\"/>\"\n    },\n    \"phone-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 3.5A1.5 1.5 0 0 1 3.5 2h1.148a1.5 1.5 0 0 1 1.465 1.175l.716 3.223a1.5 1.5 0 0 1-1.052 1.767l-.933.267c-.41.117-.643.555-.48.95a11.542 11.542 0 0 0 6.254 6.254c.395.163.833-.07.95-.48l.267-.933a1.5 1.5 0 0 1 1.767-1.052l3.223.716A1.5 1.5 0 0 1 18 15.352V16.5a1.5 1.5 0 0 1-1.5 1.5H15c-1.149 0-2.263-.15-3.326-.43A13.022 13.022 0 0 1 2.43 8.327A13.019 13.019 0 0 1 2 5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"phone-arrow-down-left\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.25 9.75v-4.5m0 4.5h4.5m-4.5 0l6-6m-3 18c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21a12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z\\\"/>\"\n    },\n    \"phone-arrow-down-left-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.5 2A1.5 1.5 0 0 0 2 3.5V5c0 1.149.15 2.263.43 3.326a13.022 13.022 0 0 0 9.244 9.244c1.063.28 2.177.43 3.326.43h1.5a1.5 1.5 0 0 0 1.5-1.5v-1.148a1.5 1.5 0 0 0-1.175-1.465l-3.223-.716a1.5 1.5 0 0 0-1.767 1.052l-.267.933c-.117.41-.555.643-.95.48a11.542 11.542 0 0 1-6.254-6.254c-.163-.395.07-.833.48-.95l.933-.267a1.5 1.5 0 0 0 1.052-1.767l-.716-3.223A1.5 1.5 0 0 0 4.648 2zm13.22.22a.75.75 0 1 1 1.06 1.06L14.56 6.5h2.69a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 1.5 0v2.69z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"phone-arrow-down-left-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M19.5 9.75a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 1.5 0v2.69l4.72-4.72a.75.75 0 1 1 1.06 1.06L16.06 9h2.69a.75.75 0 0 1 .75.75\\\"/><path d=\\\"M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75z\\\"/></g>\"\n    },\n    \"phone-arrow-up-right\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M20.25 3.75v4.5m0-4.5h-4.5m4.5 0l-6 6m3 12c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21a12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z\\\"/>\"\n    },\n    \"phone-arrow-up-right-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.5 2A1.5 1.5 0 0 0 2 3.5V5c0 1.149.15 2.263.43 3.326a13.022 13.022 0 0 0 9.244 9.244c1.063.28 2.177.43 3.326.43h1.5a1.5 1.5 0 0 0 1.5-1.5v-1.148a1.5 1.5 0 0 0-1.175-1.465l-3.223-.716a1.5 1.5 0 0 0-1.767 1.052l-.267.933c-.117.41-.555.643-.95.48a11.542 11.542 0 0 1-6.254-6.254c-.163-.395.07-.833.48-.95l.933-.267a1.5 1.5 0 0 0 1.052-1.767l-.716-3.223A1.5 1.5 0 0 0 4.648 2zm13 2.56l-3.22 3.22a.75.75 0 1 1-1.06-1.06l3.22-3.22h-2.69a.75.75 0 0 1 0-1.5h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"phone-arrow-up-right-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M15 3.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0V5.56l-4.72 4.72a.75.75 0 1 1-1.06-1.06l4.72-4.72h-2.69a.75.75 0 0 1-.75-.75\\\"/><path d=\\\"M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75z\\\"/></g>\"\n    },\n    \"phone-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"phone-x-mark\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 3.75L18 6m0 0l2.25 2.25M18 6l2.25-2.25M18 6l-2.25 2.25m1.5 13.5c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21a12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25z\\\"/>\"\n    },\n    \"phone-x-mark-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.5 2A1.5 1.5 0 0 0 2 3.5V5c0 1.149.15 2.263.43 3.326a13.022 13.022 0 0 0 9.244 9.244c1.063.28 2.177.43 3.326.43h1.5a1.5 1.5 0 0 0 1.5-1.5v-1.148a1.5 1.5 0 0 0-1.175-1.465l-3.223-.716a1.5 1.5 0 0 0-1.767 1.052l-.267.933c-.117.41-.555.643-.95.48a11.542 11.542 0 0 1-6.254-6.254c-.163-.395.07-.833.48-.95l.933-.267a1.5 1.5 0 0 0 1.052-1.767l-.716-3.223A1.5 1.5 0 0 0 4.648 2zm9.78.22a.75.75 0 1 0-1.06 1.06L13.94 5l-1.72 1.72a.75.75 0 0 0 1.06 1.06L15 6.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L16.06 5l1.72-1.72a.75.75 0 0 0-1.06-1.06L15 3.94z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"phone-x-mark-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.22 3.22a.75.75 0 0 1 1.06 0L18 4.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L19.06 6l1.72 1.72a.75.75 0 0 1-1.06 1.06L18 7.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L16.94 6l-1.72-1.72a.75.75 0 0 1 0-1.06M1.5 4.5a3 3 0 0 1 3-3h1.372c.86 0 1.61.586 1.819 1.42l1.105 4.423a1.875 1.875 0 0 1-.694 1.955l-1.293.97c-.135.101-.164.249-.126.352a11.285 11.285 0 0 0 6.697 6.697c.103.038.25.009.352-.126l.97-1.293a1.875 1.875 0 0 1 1.955-.694l4.423 1.105c.834.209 1.42.959 1.42 1.82V19.5a3 3 0 0 1-3 3h-2.25C8.552 22.5 1.5 15.448 1.5 6.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"photo\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m2.25 15.75l5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5l1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5m10.5-11.25h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0\\\"/>\"\n    },\n    \"photo-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 5.25A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25v9.5A2.25 2.25 0 0 1 16.75 17H3.25A2.25 2.25 0 0 1 1 14.75zm1.5 5.81v3.69c0 .414.336.75.75.75h13.5a.75.75 0 0 0 .75-.75v-2.69l-2.22-2.219a.75.75 0 0 0-1.06 0l-1.91 1.909l.47.47a.75.75 0 1 1-1.06 1.06L6.53 8.091a.75.75 0 0 0-1.06 0zM12 7a1 1 0 1 1-2 0a1 1 0 0 1 2 0\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"photo-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.5 6a2.25 2.25 0 0 1 2.25-2.25h16.5A2.25 2.25 0 0 1 22.5 6v12a2.25 2.25 0 0 1-2.25 2.25H3.75A2.25 2.25 0 0 1 1.5 18zM3 16.06V18c0 .414.336.75.75.75h16.5A.75.75 0 0 0 21 18v-1.94l-2.69-2.689a1.5 1.5 0 0 0-2.12 0l-.88.879l.97.97a.75.75 0 1 1-1.06 1.06l-5.16-5.159a1.5 1.5 0 0 0-2.12 0zm10.125-7.81a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"play\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.348a1.125 1.125 0 0 1 0 1.971l-11.54 6.347a1.125 1.125 0 0 1-1.667-.985z\\\"/>\"\n    },\n    \"play-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M6.3 2.841A1.5 1.5 0 0 0 4 4.11v11.78a1.5 1.5 0 0 0 2.3 1.269l9.344-5.89a1.5 1.5 0 0 0 0-2.538z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"play-circle\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/><path d=\\\"M15.91 11.672a.375.375 0 0 1 0 .656l-5.603 3.113a.375.375 0 0 1-.557-.328V8.887c0-.286.307-.466.557-.327z\\\"/></g>\"\n    },\n    \"play-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 10a8 8 0 1 1 16 0a8 8 0 0 1-16 0m6.39-2.908a.75.75 0 0 1 .766.027l3.5 2.25a.75.75 0 0 1 0 1.262l-3.5 2.25A.75.75 0 0 1 8 12.25v-4.5a.75.75 0 0 1 .39-.658\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"play-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12m14.024-.983a1.125 1.125 0 0 1 0 1.967l-5.603 3.112A1.125 1.125 0 0 1 9 15.113V8.887c0-.857.922-1.4 1.671-.983z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"play-pause\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21 7.5V18M15 7.5V18M3 16.811V8.69c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811\\\"/>\"\n    },\n    \"play-pause-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M12.75 4a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h.5a.75.75 0 0 0 .75-.75V4.75a.75.75 0 0 0-.75-.75zm5 0a.75.75 0 0 0-.75.75v10.5c0 .414.336.75.75.75h.5a.75.75 0 0 0 .75-.75V4.75a.75.75 0 0 0-.75-.75zm-14.462.819A1.5 1.5 0 0 0 1 6.095v7.81a1.5 1.5 0 0 0 2.288 1.277l6.323-3.906a1.5 1.5 0 0 0 0-2.552z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"play-pause-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M15 6.75a.75.75 0 0 0-.75.75V18a.75.75 0 0 0 .75.75h.75a.75.75 0 0 0 .75-.75V7.5a.75.75 0 0 0-.75-.75zm5.25 0a.75.75 0 0 0-.75.75V18c0 .414.336.75.75.75H21a.75.75 0 0 0 .75-.75V7.5a.75.75 0 0 0-.75-.75zm-15.195.31c-1.25-.713-2.805.19-2.805 1.63v8.122c0 1.44 1.555 2.343 2.805 1.628l7.108-4.061c1.26-.72 1.26-2.536 0-3.256z\\\"/>\"\n    },\n    \"play-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 5.653c0-1.426 1.529-2.33 2.779-1.643l11.54 6.348c1.295.712 1.295 2.573 0 3.285L7.28 19.991c-1.25.687-2.779-.217-2.779-1.643z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"plus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 4.5v15m7.5-7.5h-15\\\"/>\"\n    },\n    \"plus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10.75 4.75a.75.75 0 0 0-1.5 0v4.5h-4.5a.75.75 0 0 0 0 1.5h4.5v4.5a.75.75 0 0 0 1.5 0v-4.5h4.5a.75.75 0 0 0 0-1.5h-4.5z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"plus-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 9v6m3-3H9m12 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"plus-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m.75-11.25a.75.75 0 0 0-1.5 0v2.5h-2.5a.75.75 0 0 0 0 1.5h2.5v2.5a.75.75 0 0 0 1.5 0v-2.5h2.5a.75.75 0 0 0 0-1.5h-2.5z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"plus-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25M12.75 9a.75.75 0 0 0-1.5 0v2.25H9a.75.75 0 0 0 0 1.5h2.25V15a.75.75 0 0 0 1.5 0v-2.25H15a.75.75 0 0 0 0-1.5h-2.25z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"plus-small\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 6v12m6-6H6\\\"/>\"\n    },\n    \"plus-small-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10.75 6.75a.75.75 0 0 0-1.5 0v2.5h-2.5a.75.75 0 0 0 0 1.5h2.5v2.5a.75.75 0 0 0 1.5 0v-2.5h2.5a.75.75 0 0 0 0-1.5h-2.5z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"plus-small-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 5.25a.75.75 0 0 1 .75.75v5.25H18a.75.75 0 0 1 0 1.5h-5.25V18a.75.75 0 0 1-1.5 0v-5.25H6a.75.75 0 0 1 0-1.5h5.25V6a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"plus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 3.75a.75.75 0 0 1 .75.75v6.75h6.75a.75.75 0 0 1 0 1.5h-6.75v6.75a.75.75 0 0 1-1.5 0v-6.75H4.5a.75.75 0 0 1 0-1.5h6.75V4.5a.75.75 0 0 1 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"power\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M5.636 5.636a9 9 0 1 0 12.728 0M12 3v9\\\"/>\"\n    },\n    \"power-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-1.5 0v-7.5A.75.75 0 0 1 10 2M5.404 4.343a.75.75 0 0 1 0 1.06a6.5 6.5 0 1 0 9.192 0a.75.75 0 1 1 1.06-1.06a8 8 0 1 1-11.313 0a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"power-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25a.75.75 0 0 1 .75.75v9a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75M6.166 5.106a.75.75 0 0 1 0 1.06a8.25 8.25 0 1 0 11.668 0a.75.75 0 1 1 1.06-1.06c3.808 3.807 3.808 9.98 0 13.788c-3.807 3.808-9.98 3.808-13.788 0c-3.808-3.807-3.808-9.98 0-13.788a.75.75 0 0 1 1.06 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"presentation-chart-bar\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-.5 1.5M9 11.25v1.5M12 9v3.75m3-6v6\\\"/>\"\n    },\n    \"presentation-chart-bar-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 2.75A.75.75 0 0 1 1.75 2h16.5a.75.75 0 0 1 0 1.5H18v8.75A2.75 2.75 0 0 1 15.25 15h-1.072l.798 3.06a.75.75 0 0 1-1.452.38L13.41 18H6.59l-.114.44a.75.75 0 0 1-1.452-.38L5.823 15H4.75A2.75 2.75 0 0 1 2 12.25V3.5h-.25A.75.75 0 0 1 1 2.75M7.373 15l-.391 1.5h6.037l-.392-1.5zM13.25 5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5a.75.75 0 0 1 .75-.75m-6.5 4a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 6.75 9m4-1.25a.75.75 0 0 0-1.5 0v3.5a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"presentation-chart-bar-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 2.25a.75.75 0 0 0 0 1.5H3v10.5a3 3 0 0 0 3 3h1.21l-1.172 3.513a.75.75 0 0 0 1.424.474l.329-.987h8.418l.33.987a.75.75 0 0 0 1.422-.474l-1.17-3.513H18a3 3 0 0 0 3-3V3.75h.75a.75.75 0 0 0 0-1.5zm6.04 16.5l.5-1.5h6.42l.5 1.5zm7.46-12a.75.75 0 0 0-1.5 0v6a.75.75 0 0 0 1.5 0zm-3 2.25a.75.75 0 0 0-1.5 0v3.75a.75.75 0 0 0 1.5 0zm-3 2.25a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"presentation-chart-line\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-.5 1.5m.75-9l3-3l2.148 2.148A12.061 12.061 0 0 1 16.5 7.605\\\"/>\"\n    },\n    \"presentation-chart-line-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1 2.75A.75.75 0 0 1 1.75 2h16.5a.75.75 0 0 1 0 1.5H18v8.75A2.75 2.75 0 0 1 15.25 15h-1.072l.798 3.06a.75.75 0 0 1-1.452.38L13.41 18H6.59l-.114.44a.75.75 0 0 1-1.452-.38L5.823 15H4.75A2.75 2.75 0 0 1 2 12.25V3.5h-.25A.75.75 0 0 1 1 2.75M7.373 15l-.391 1.5h6.037l-.392-1.5zm7.49-8.931a.75.75 0 0 1-.175 1.046a19.326 19.326 0 0 0-3.398 3.098a.75.75 0 0 1-1.097.04L8.5 8.561l-2.22 2.22A.75.75 0 1 1 5.22 9.72l2.75-2.75a.75.75 0 0 1 1.06 0l1.664 1.663a20.786 20.786 0 0 1 3.122-2.74a.75.75 0 0 1 1.047.176\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"presentation-chart-line-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 2.25a.75.75 0 0 0 0 1.5H3v10.5a3 3 0 0 0 3 3h1.21l-1.172 3.513a.75.75 0 0 0 1.424.474l.329-.987h8.418l.33.987a.75.75 0 0 0 1.422-.474l-1.17-3.513H18a3 3 0 0 0 3-3V3.75h.75a.75.75 0 0 0 0-1.5zm6.54 15h6.42l.5 1.5H8.29zm8.086-8.995a.75.75 0 1 0-.751-1.299a12.81 12.81 0 0 0-3.558 3.05L11.03 8.47a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 1 0 1.06 1.06l2.47-2.47l1.617 1.618a.75.75 0 0 0 1.146-.102a11.312 11.312 0 0 1 3.612-3.321\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"printer\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171c.24.03.48.062.72.096m-.72-.096L17.66 18m0 0l.229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48.055 48.055 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48.041 48.041 0 0 1 1.913-.247m10.5 0a48.536 48.536 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18zm-3 0h.008v.008H15z\\\"/>\"\n    },\n    \"printer-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5 2.75C5 1.784 5.784 1 6.75 1h6.5c.966 0 1.75.784 1.75 1.75v3.552c.377.046.752.097 1.126.153A2.212 2.212 0 0 1 18 8.653v4.097A2.25 2.25 0 0 1 15.75 15h-.241l.305 1.984A1.75 1.75 0 0 1 14.084 19H5.915a1.75 1.75 0 0 1-1.73-2.016L4.492 15H4.25A2.25 2.25 0 0 1 2 12.75V8.653c0-1.082.775-2.034 1.874-2.198c.374-.056.75-.107 1.127-.153L5 6.25zm8.5 3.397a41.533 41.533 0 0 0-7 0V2.75a.25.25 0 0 1 .25-.25h6.5a.25.25 0 0 1 .25.25zM6.608 12.5a.25.25 0 0 0-.247.212l-.693 4.5a.25.25 0 0 0 .247.288h8.17a.25.25 0 0 0 .246-.288l-.692-4.5a.25.25 0 0 0-.247-.212z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"printer-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.875 1.5C6.839 1.5 6 2.34 6 3.375v2.99c-.426.053-.851.11-1.274.174c-1.454.218-2.476 1.483-2.476 2.917v6.294a3 3 0 0 0 3 3h.27l-.155 1.705A1.875 1.875 0 0 0 7.232 22.5h9.536a1.875 1.875 0 0 0 1.867-2.045l-.155-1.705h.27a3 3 0 0 0 3-3V9.456c0-1.434-1.022-2.7-2.476-2.917A48.716 48.716 0 0 0 18 6.366V3.375c0-1.036-.84-1.875-1.875-1.875zM16.5 6.205v-2.83A.375.375 0 0 0 16.125 3h-8.25a.375.375 0 0 0-.375.375v2.83a49.353 49.353 0 0 1 9 0m-.217 8.265c.178.018.317.16.333.337l.526 5.784a.375.375 0 0 1-.374.409H7.232a.375.375 0 0 1-.374-.409l.526-5.784a.373.373 0 0 1 .333-.337a41.741 41.741 0 0 1 8.566 0m.967-3.97a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H18a.75.75 0 0 1-.75-.75zM15 9.75a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V10.5a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"puzzle-piece\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M14.25 6.087c0-.355.186-.676.401-.959c.221-.29.349-.634.349-1.003c0-1.036-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003c.215.283.401.604.401.959v0a.64.64 0 0 1-.657.643a48.39 48.39 0 0 1-4.163-.3a48.44 48.44 0 0 1 .315 4.907a.656.656 0 0 1-.658.663v0c-.355 0-.676-.186-.959-.401a1.647 1.647 0 0 0-1.003-.349c-1.036 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349c.283-.215.604-.401.959-.401v0c.31 0 .555.26.532.57a48.039 48.039 0 0 1-.642 5.056c1.518.19 3.058.309 4.616.354a.64.64 0 0 0 .657-.643v0c0-.355-.186-.676-.401-.959a1.647 1.647 0 0 1-.349-1.003c0-1.035 1.008-1.875 2.25-1.875c1.243 0 2.25.84 2.25 1.875c0 .369-.128.713-.349 1.003c-.215.283-.4.604-.4.959v0c0 .333.277.599.61.58a48.1 48.1 0 0 0 5.427-.63a48.05 48.05 0 0 0 .582-4.717a.532.532 0 0 0-.533-.57v0c-.355 0-.676.186-.959.401c-.29.221-.634.349-1.003.349c-1.035 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.37 0 .713.128 1.003.349c.283.215.604.401.96.401v0a.656.656 0 0 0 .658-.663a48.422 48.422 0 0 0-.37-5.36a48.14 48.14 0 0 1-5.766.689a.578.578 0 0 1-.61-.58\\\"/>\"\n    },\n    \"puzzle-piece-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M12 4.467c0-.405.262-.75.559-1.027c.276-.257.441-.584.441-.94c0-.828-.895-1.5-2-1.5s-2 .672-2 1.5c0 .362.171.694.456.953c.29.265.544.6.544.994a.968.968 0 0 1-1.024.974a39.655 39.655 0 0 1-3.014-.306a.75.75 0 0 0-.847.847c.14.993.242 1.999.306 3.014A.968.968 0 0 1 4.447 10c-.393 0-.729-.253-.994-.544C3.194 9.17 2.862 9 2.5 9C1.672 9 1 9.895 1 11s.672 2 1.5 2c.356 0 .683-.165.94-.441c.276-.297.622-.559 1.027-.559a.997.997 0 0 1 1.004 1.03a39.747 39.747 0 0 1-.319 3.734a.75.75 0 0 0 .64.842c1.05.146 2.111.252 3.184.318A.97.97 0 0 0 10 16.948c0-.394-.254-.73-.545-.995C9.171 15.693 9 15.362 9 15c0-.828.895-1.5 2-1.5s2 .672 2 1.5c0 .356-.165.683-.441.94c-.297.276-.559.622-.559 1.027a.998.998 0 0 0 1.03 1.005a41.333 41.333 0 0 0 3.961-.337a.75.75 0 0 0 .644-.644c.175-1.302.288-2.624.337-3.961A.998.998 0 0 0 16.967 12c-.405 0-.75.262-1.027.559c-.257.276-.584.441-.94.441c-.828 0-1.5-.895-1.5-2s.672-2 1.5-2c.362 0 .694.17.953.455c.265.291.601.545.995.545a.97.97 0 0 0 .976-1.024a41.159 41.159 0 0 0-.318-3.184a.75.75 0 0 0-.842-.64a39.565 39.565 0 0 1-3.734.319A.997.997 0 0 1 12 4.467\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"puzzle-piece-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M11.25 5.337c0-.355-.186-.676-.401-.959a1.647 1.647 0 0 1-.349-1.003c0-1.036 1.007-1.875 2.25-1.875S15 2.34 15 3.375c0 .369-.128.713-.349 1.003c-.215.283-.401.604-.401.959c0 .332.278.598.61.578c1.91-.114 3.79-.342 5.632-.676a.75.75 0 0 1 .878.645a49.17 49.17 0 0 1 .376 5.452a.657.657 0 0 1-.66.664c-.354 0-.675-.186-.958-.401a1.647 1.647 0 0 0-1.003-.349c-1.035 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349c.283-.215.604-.401.959-.401c.31 0 .557.262.534.571a48.774 48.774 0 0 1-.595 4.845a.75.75 0 0 1-.61.61c-1.82.317-3.673.533-5.555.642a.58.58 0 0 1-.611-.581c0-.355.186-.676.401-.959c.221-.29.349-.634.349-1.003c0-1.035-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003c.215.283.401.604.401.959a.641.641 0 0 1-.658.643a49.118 49.118 0 0 1-4.708-.36a.75.75 0 0 1-.645-.878c.293-1.614.504-3.257.629-4.924A.53.53 0 0 0 5.337 15c-.355 0-.676.186-.959.401c-.29.221-.634.349-1.003.349c-1.036 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.369 0 .713.128 1.003.349c.283.215.604.401.959.401a.656.656 0 0 0 .659-.663a47.703 47.703 0 0 0-.31-4.82a.75.75 0 0 1 .83-.832c1.343.155 2.703.254 4.077.294a.64.64 0 0 0 .657-.642\\\"/>\"\n    },\n    \"qr-code\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M3.75 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 3.75 9.375zm0 9.75c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5a1.125 1.125 0 0 1-1.125-1.125zm9.75-9.75c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 13.5 9.375z\\\"/><path d=\\\"M6.75 6.75h.75v.75h-.75zm0 9.75h.75v.75h-.75zm9.75-9.75h.75v.75h-.75zm-3 6.75h.75v.75h-.75zm0 6h.75v.75h-.75zm6-6h.75v.75h-.75zm0 6h.75v.75h-.75zm-3-3h.75v.75h-.75z\\\"/></g>\"\n    },\n    \"qr-code-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.75 2A1.75 1.75 0 0 0 2 3.75v3.5C2 8.216 2.784 9 3.75 9h3.5A1.75 1.75 0 0 0 9 7.25v-3.5A1.75 1.75 0 0 0 7.25 2zM3.5 3.75a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.5a.25.25 0 0 1-.25.25h-3.5a.25.25 0 0 1-.25-.25zM3.75 11A1.75 1.75 0 0 0 2 12.75v3.5c0 .966.784 1.75 1.75 1.75h3.5A1.75 1.75 0 0 0 9 16.25v-3.5A1.75 1.75 0 0 0 7.25 11zm-.25 1.75a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.5a.25.25 0 0 1-.25.25h-3.5a.25.25 0 0 1-.25-.25zm7.5-9c0-.966.784-1.75 1.75-1.75h3.5c.966 0 1.75.784 1.75 1.75v3.5A1.75 1.75 0 0 1 16.25 9h-3.5A1.75 1.75 0 0 1 11 7.25zm1.75-.25a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25zm-7.26 1a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1V5.5a1 1 0 0 0-1-1zm9 0a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1V5.5a1 1 0 0 0-1-1zm-9 9a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1v-.01a1 1 0 0 0-1-1zm9 0a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1h.01a1 1 0 0 0 1-1v-.01a1 1 0 0 0-1-1zm-3.5-1.5a1 1 0 0 1 1-1H12a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1zm6-1a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1H17a1 1 0 0 0 1-1V12a1 1 0 0 0-1-1zm-1 6a1 1 0 0 1 1-1H17a1 1 0 0 1 1 1v.01a1 1 0 0 1-1 1h-.01a1 1 0 0 1-1-1zm-4-1a1 1 0 0 0-1 1v.01a1 1 0 0 0 1 1H12a1 1 0 0 0 1-1V17a1 1 0 0 0-1-1z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"qr-code-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 4.875C3 3.839 3.84 3 4.875 3h4.5c1.036 0 1.875.84 1.875 1.875v4.5c0 1.036-.84 1.875-1.875 1.875h-4.5A1.875 1.875 0 0 1 3 9.375zM4.875 4.5a.375.375 0 0 0-.375.375v4.5c0 .207.168.375.375.375h4.5a.375.375 0 0 0 .375-.375v-4.5a.375.375 0 0 0-.375-.375zm7.875.375c0-1.036.84-1.875 1.875-1.875h4.5C20.16 3 21 3.84 21 4.875v4.5c0 1.036-.84 1.875-1.875 1.875h-4.5a1.875 1.875 0 0 1-1.875-1.875zm1.875-.375a.375.375 0 0 0-.375.375v4.5c0 .207.168.375.375.375h4.5a.375.375 0 0 0 .375-.375v-4.5a.375.375 0 0 0-.375-.375zM6 6.75A.75.75 0 0 1 6.75 6h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75A.75.75 0 0 1 6 7.5zm9.75 0A.75.75 0 0 1 16.5 6h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75zM3 14.625c0-1.036.84-1.875 1.875-1.875h4.5c1.036 0 1.875.84 1.875 1.875v4.5c0 1.035-.84 1.875-1.875 1.875h-4.5A1.875 1.875 0 0 1 3 19.125zm1.875-.375a.375.375 0 0 0-.375.375v4.5c0 .207.168.375.375.375h4.5a.375.375 0 0 0 .375-.375v-4.5a.375.375 0 0 0-.375-.375zm7.875-.75a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75zm6 0a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75zM6 16.5a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75zm9.75 0a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75zm-3 3a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75zm6 0a.75.75 0 0 1 .75-.75h.75a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"question-mark-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9.879 7.519c1.172-1.025 3.071-1.025 4.243 0c1.171 1.025 1.171 2.687 0 3.712a2.98 2.98 0 0 1-.67.442c-.746.361-1.452.999-1.452 1.827v.75M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9 5.25h.008v.008H12z\\\"/>\"\n    },\n    \"question-mark-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0M8.94 6.94a.75.75 0 1 1-1.061-1.061a3 3 0 1 1 2.871 5.026v.345a.75.75 0 0 1-1.5 0v-.5c0-.72.57-1.172 1.081-1.287A1.5 1.5 0 1 0 8.94 6.94M10 15a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"question-mark-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12m11.378-3.917c-.89-.777-2.366-.777-3.255 0a.75.75 0 0 1-.988-1.129c1.454-1.272 3.776-1.272 5.23 0c1.513 1.324 1.513 3.518 0 4.842a3.75 3.75 0 0 1-.837.552c-.676.328-1.028.774-1.028 1.152v.75a.75.75 0 0 1-1.5 0v-.75c0-1.279 1.06-2.107 1.875-2.502a2.28 2.28 0 0 0 .503-.331c.83-.727.83-1.857 0-2.584M12 18a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"queue-list\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 12h16.5m-16.5 3.75h16.5M3.75 19.5h16.5M5.625 4.5h12.75a1.875 1.875 0 0 1 0 3.75H5.625a1.875 1.875 0 0 1 0-3.75\\\"/>\"\n    },\n    \"queue-list-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M2 4.5A2.5 2.5 0 0 1 4.5 2h11a2.5 2.5 0 0 1 0 5h-11A2.5 2.5 0 0 1 2 4.5m.75 4.583a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5zm0 3.58a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5zm0 3.587a.75.75 0 0 0 0 1.5h14.5a.75.75 0 1 0 0-1.5z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"queue-list-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M5.625 3.75a2.625 2.625 0 1 0 0 5.25h12.75a2.625 2.625 0 0 0 0-5.25zm-1.875 7.5a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5zM3 15.75a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75m.75 3a.75.75 0 0 0 0 1.5h16.5a.75.75 0 0 0 0-1.5z\\\"/>\"\n    },\n    \"radio\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m3.75 7.5l16.5-4.125M12 6.75a48.3 48.3 0 0 0-7.948.655C2.999 7.58 2.25 8.507 2.25 9.574v9.176A2.25 2.25 0 0 0 4.5 21h15a2.25 2.25 0 0 0 2.25-2.25V9.574c0-1.067-.75-1.994-1.802-2.169A48.329 48.329 0 0 0 12 6.75m-1.683 6.443l-.005.005l-.006-.005l.006-.005zm-.005 2.127l-.005-.006l.005-.005l.005.005zm-2.116-.006l-.005.006l-.006-.006l.005-.005zm-.005-2.116l-.006-.005l.006-.005l.005.005zM9.255 10.5v.008h-.008V10.5zm3.249 1.88l-.007.004l-.003-.007l.006-.003zm-1.38 5.126l-.003-.006l.006-.004l.004.007zm.007-6.501l-.003.006l-.007-.003l.004-.007zm1.37 5.129l-.007-.004l.004-.006l.006.003zm.504-1.877h-.008v-.007h.008zM9.255 18v.008h-.008V18zm-3.246-1.87l-.007.004L6 16.127l.006-.003zm1.366-5.119l-.004-.006l.006-.004l.004.007zM7.38 17.5l-.003.006l-.007-.003l.004-.007zm-1.376-5.116L6 12.38l.003-.007l.007.004zm-.5 1.873h-.008v-.007h.008zM17.25 12.75a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5m0 4.5a.75.75 0 1 1 0-1.5a.75.75 0 0 1 0 1.5\\\"/>\"\n    },\n    \"radio-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M17.45 3.473a.75.75 0 1 0-.4-1.446L5.313 5.265c-.84.096-1.671.217-2.495.362A2.212 2.212 0 0 0 1 7.817v7.933A2.25 2.25 0 0 0 3.25 18h13.5A2.25 2.25 0 0 0 19 15.75V7.816c0-1.06-.745-2-1.817-2.189a41.124 41.124 0 0 0-5.406-.589zM16 9.5a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0M14.5 16a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3m-9.26-5a.75.75 0 0 1 .75-.75H6a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm2.75-.75a.75.75 0 0 0-.75.75v.01c0 .415.336.75.75.75H8a.75.75 0 0 0 .75-.75V11a.75.75 0 0 0-.75-.75zm-1.75-1.5A.75.75 0 0 1 6.99 8H7a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm3.583.42a.75.75 0 0 0-1.06 0l-.007.007a.75.75 0 0 0 0 1.06l.007.008a.75.75 0 0 0 1.06 0l.007-.007a.75.75 0 0 0 0-1.061zm.427 2.08A.75.75 0 0 1 11 12v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V12a.75.75 0 0 1 .75-.75zm-.42 3.584a.75.75 0 0 0 0-1.061l-.007-.007a.75.75 0 0 0-1.06 0l-.007.007a.75.75 0 0 0 0 1.06l.007.008a.75.75 0 0 0 1.06 0zm-3.59.416a.75.75 0 0 1 .75-.75H7a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm-1.013-1.484a.75.75 0 0 0-1.06 0l-.008.007a.75.75 0 0 0 0 1.06l.007.008a.75.75 0 0 0 1.061 0l.007-.007a.75.75 0 0 0 0-1.061zM3.75 11.25a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75V12a.75.75 0 0 1 .75-.75zm1.484-1.012a.75.75 0 0 0 0-1.061l-.007-.007a.75.75 0 0 0-1.06 0l-.007.007a.75.75 0 0 0 0 1.06l.007.008a.75.75 0 0 0 1.06 0zM7.24 13a.75.75 0 0 1 .75-.75H8a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm-1.25-.75a.75.75 0 0 0-.75.75v.01c0 .415.336.75.75.75H6a.75.75 0 0 0 .75-.75V13a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"radio-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M20.432 4.103a.75.75 0 0 0-.364-1.455L4.128 6.632l-.2.033C2.498 6.904 1.5 8.158 1.5 9.575v9.175a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V9.574c0-1.416-.997-2.67-2.429-2.909a49.016 49.016 0 0 0-7.255-.658zm-9.585 8.56a.75.75 0 0 1 0 1.06l-.005.006a.75.75 0 0 1-1.06 0l-.006-.005a.75.75 0 0 1 0-1.061l.005-.005a.75.75 0 0 1 1.06 0zM9.781 15.85a.75.75 0 0 0 1.061 0l.005-.005a.75.75 0 0 0 0-1.061l-.005-.005a.75.75 0 0 0-1.06 0l-.006.005a.75.75 0 0 0 0 1.06zm-1.055-1.066a.75.75 0 0 1 0 1.06l-.005.006a.75.75 0 0 1-1.061 0l-.005-.005a.75.75 0 0 1 0-1.06l.005-.006a.75.75 0 0 1 1.06 0zM7.66 13.73a.75.75 0 0 0 1.061 0l.005-.006a.75.75 0 0 0 0-1.06l-.005-.005a.75.75 0 0 0-1.06 0l-.006.005a.75.75 0 0 0 0 1.06zm1.595-3.98a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75V10.5a.75.75 0 0 1 .75-.75zm3.624 3.28a.75.75 0 0 0 .275-1.025L13.15 12a.75.75 0 0 0-1.025-.275l-.006.004a.75.75 0 0 0-.275 1.024l.004.007a.75.75 0 0 0 1.024.274zm-1.38 5.126a.75.75 0 0 1-1.024-.274l-.004-.007a.75.75 0 0 1 .275-1.024l.006-.004a.75.75 0 0 1 1.025.274l.004.007a.75.75 0 0 1-.275 1.024zm.282-6.776a.75.75 0 0 0-.274-1.025l-.007-.003a.75.75 0 0 0-1.024.274l-.004.007a.75.75 0 0 0 .274 1.024l.007.004a.75.75 0 0 0 1.024-.274zm1.369 5.129a.75.75 0 0 1-1.025.274l-.006-.003a.75.75 0 0 1-.275-1.025l.004-.006a.75.75 0 0 1 1.025-.275l.006.004a.75.75 0 0 1 .275 1.024zm-.145-1.501a.75.75 0 0 0 .75-.75v-.008a.75.75 0 0 0-.75-.75h-.008a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75zm-3.75 2.242a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75V18a.75.75 0 0 1 .75-.75zm-2.871-.47a.75.75 0 0 0 .274-1.025l-.003-.006a.75.75 0 0 0-1.025-.275l-.006.004a.75.75 0 0 0-.275 1.025l.004.006a.75.75 0 0 0 1.024.274zm1.366-5.12a.75.75 0 0 1-1.025-.274l-.004-.006a.75.75 0 0 1 .275-1.025l.006-.003a.75.75 0 0 1 1.025.274l.004.007a.75.75 0 0 1-.275 1.024zm.281 6.215a.75.75 0 0 0-.275-1.024l-.006-.004a.75.75 0 0 0-1.025.274l-.003.007a.75.75 0 0 0 .274 1.024l.007.004a.75.75 0 0 0 1.024-.274zM6.655 12.76a.75.75 0 0 1-1.025.274l-.006-.003a.75.75 0 0 1-.275-1.025L5.353 12a.75.75 0 0 1 1.025-.275l.006.004a.75.75 0 0 1 .275 1.024zm-1.15 2.249a.75.75 0 0 0 .75-.75v-.008a.75.75 0 0 0-.75-.75h-.008a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75zM17.25 10.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3m1.5 6a1.5 1.5 0 1 0-3 0a1.5 1.5 0 0 0 3 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"receipt-percent\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m9 14.25l6-6m4.5-3.493V21.75l-3.75-1.5l-3.75 1.5l-3.75-1.5l-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185M9.75 9h.008v.008H9.75zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m4.125 4.5h.008v.008h-.008zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0\\\"/>\"\n    },\n    \"receipt-percent-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.93 1.31a41.401 41.401 0 0 1 10.14 0A2.213 2.213 0 0 1 17 3.517V18.25a.75.75 0 0 1-1.075.676l-2.8-1.344l-2.8 1.344a.75.75 0 0 1-.65 0l-2.8-1.344l-2.8 1.344A.75.75 0 0 1 3 18.25V3.517c0-1.103.806-2.068 1.93-2.207m8.85 5.97a.75.75 0 0 0-1.06-1.06l-6.5 6.5a.75.75 0 1 0 1.06 1.06zM9 8a1 1 0 1 1-2 0a1 1 0 0 1 2 0m3 5a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"receipt-percent-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 1.5c-1.921 0-3.816.111-5.68.327c-1.497.174-2.57 1.46-2.57 2.93V21.75a.75.75 0 0 0 1.029.696l3.471-1.388l3.472 1.388a.75.75 0 0 0 .556 0l3.472-1.388l3.471 1.388a.75.75 0 0 0 1.029-.696V4.757c0-1.47-1.073-2.756-2.57-2.93A49.255 49.255 0 0 0 12 1.5m3.53 7.28a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 1 0 1.06 1.06zM8.625 9a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0m5.625 3.375a1.125 1.125 0 1 0 0 2.25a1.125 1.125 0 0 0 0-2.25\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"receipt-refund\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.25 9.75h4.875a2.625 2.625 0 0 1 0 5.25H12M8.25 9.75L10.5 7.5M8.25 9.75L10.5 12m9-7.243V21.75l-3.75-1.5l-3.75 1.5l-3.75-1.5l-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185\\\"/>\"\n    },\n    \"receipt-refund-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.93 1.31a41.401 41.401 0 0 1 10.14 0A2.213 2.213 0 0 1 17 3.517V18.25a.75.75 0 0 1-1.075.676l-2.8-1.344l-2.8 1.344a.75.75 0 0 1-.65 0l-2.8-1.344l-2.8 1.344A.75.75 0 0 1 3 18.25V3.517c0-1.103.806-2.068 1.93-2.207m4.822 4.997a.75.75 0 1 0-1.004-1.114l-2.5 2.25a.75.75 0 0 0 0 1.114l2.5 2.25a.75.75 0 0 0 1.004-1.114L8.704 8.75h1.921a1.875 1.875 0 0 1 0 3.75a.75.75 0 0 0 0 1.5a3.375 3.375 0 1 0 0-6.75h-1.92z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"receipt-refund-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 1.5c-1.921 0-3.816.111-5.68.327c-1.497.174-2.57 1.46-2.57 2.93V21.75a.75.75 0 0 0 1.029.696l3.471-1.388l3.472 1.388a.75.75 0 0 0 .556 0l3.472-1.388l3.471 1.388a.75.75 0 0 0 1.029-.696V4.757c0-1.47-1.073-2.756-2.57-2.93A49.255 49.255 0 0 0 12 1.5m-.97 6.53a.75.75 0 1 0-1.06-1.06L7.72 9.22a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 1 0 1.06-1.06l-.97-.97h3.065a1.875 1.875 0 0 1 0 3.75H12a.75.75 0 0 0 0 1.5h1.125a3.375 3.375 0 1 0 0-6.75h-3.064z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"rectangle-group\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 7.125C2.25 6.504 2.754 6 3.375 6h6c.621 0 1.125.504 1.125 1.125v3.75c0 .621-.504 1.125-1.125 1.125h-6a1.125 1.125 0 0 1-1.125-1.125zm12 1.5c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v8.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125zm-10.5 7.5c0-.621.504-1.125 1.125-1.125h5.25c.621 0 1.125.504 1.125 1.125v2.25c0 .621-.504 1.125-1.125 1.125h-5.25a1.125 1.125 0 0 1-1.125-1.125z\\\"/>\"\n    },\n    \"rectangle-group-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.5 3A1.5 1.5 0 0 0 1 4.5v4A1.5 1.5 0 0 0 2.5 10h6A1.5 1.5 0 0 0 10 8.5v-4A1.5 1.5 0 0 0 8.5 3zm11 2A1.5 1.5 0 0 0 12 6.5v7a1.5 1.5 0 0 0 1.5 1.5h4a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 17.5 5zm-10 7A1.5 1.5 0 0 0 2 13.5v2A1.5 1.5 0 0 0 3.5 17h6a1.5 1.5 0 0 0 1.5-1.5v-2A1.5 1.5 0 0 0 9.5 12z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"rectangle-group-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.5 7.125c0-1.036.84-1.875 1.875-1.875h6c1.036 0 1.875.84 1.875 1.875v3.75c0 1.036-.84 1.875-1.875 1.875h-6A1.875 1.875 0 0 1 1.5 10.875zm12 1.5c0-1.036.84-1.875 1.875-1.875h5.25c1.035 0 1.875.84 1.875 1.875v8.25c0 1.035-.84 1.875-1.875 1.875h-5.25a1.875 1.875 0 0 1-1.875-1.875zM3 16.125c0-1.036.84-1.875 1.875-1.875h5.25c1.036 0 1.875.84 1.875 1.875v2.25c0 1.035-.84 1.875-1.875 1.875h-5.25A1.875 1.875 0 0 1 3 18.375z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"rectangle-stack\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6 6.878V6a2.25 2.25 0 0 1 2.25-2.25h7.5A2.25 2.25 0 0 1 18 6v.878m-12 0c.235-.083.487-.128.75-.128h10.5c.263 0 .515.045.75.128m-12 0A2.25 2.25 0 0 0 4.5 9v.878m13.5-3A2.25 2.25 0 0 1 19.5 9v.878m0 0a2.246 2.246 0 0 0-.75-.128H5.25c-.263 0-.515.045-.75.128m15 0A2.25 2.25 0 0 1 21 12v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6c0-.98.626-1.813 1.5-2.122\\\"/>\"\n    },\n    \"rectangle-stack-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M5.127 3.502L5.25 3.5h9.5c.041 0 .082 0 .123.002A2.251 2.251 0 0 0 12.75 2h-5.5a2.25 2.25 0 0 0-2.123 1.502M1 10.25A2.25 2.25 0 0 1 3.25 8h13.5A2.25 2.25 0 0 1 19 10.25v5.5A2.25 2.25 0 0 1 16.75 18H3.25A2.25 2.25 0 0 1 1 15.75zM3.25 6.5c-.04 0-.082 0-.123.002A2.25 2.25 0 0 1 5.25 5h9.5c.98 0 1.814.627 2.123 1.502a3.819 3.819 0 0 0-.123-.002z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"rectangle-stack-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M5.566 4.657A4.505 4.505 0 0 1 6.75 4.5h10.5c.41 0 .806.055 1.183.157A3 3 0 0 0 15.75 3h-7.5a3 3 0 0 0-2.684 1.657M2.25 12a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3zm3-4.5c-.41 0-.806.055-1.184.157A3 3 0 0 1 6.75 6h10.5a3 3 0 0 1 2.683 1.657A4.505 4.505 0 0 0 18.75 7.5z\\\"/>\"\n    },\n    \"rocket-launch\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.59 14.37a6 6 0 0 1-5.84 7.38v-4.8m5.84-2.58a14.98 14.98 0 0 0 6.16-12.12A14.98 14.98 0 0 0 9.631 8.41m5.96 5.96a14.926 14.926 0 0 1-5.841 2.58m-.119-8.54a6 6 0 0 0-7.381 5.84h4.8m2.581-5.84a14.927 14.927 0 0 0-2.58 5.84m2.699 2.7a15.53 15.53 0 0 1-.311.06a15.09 15.09 0 0 1-2.448-2.448a14.9 14.9 0 0 1 .06-.312m-2.24 2.39a4.493 4.493 0 0 0-1.757 4.306a4.493 4.493 0 0 0 4.306-1.758M16.5 9a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0\\\"/>\"\n    },\n    \"rocket-launch-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" clip-rule=\\\"evenodd\\\"><path d=\\\"M4.606 12.97a.75.75 0 0 1-.134 1.051a2.494 2.494 0 0 0-.93 2.437a2.494 2.494 0 0 0 2.437-.93a.75.75 0 1 1 1.186.918a3.995 3.995 0 0 1-4.482 1.332a.75.75 0 0 1-.461-.461a3.994 3.994 0 0 1 1.332-4.482a.75.75 0 0 1 1.052.134\\\"/><path d=\\\"M5.752 12A13.07 13.07 0 0 0 8 14.248v4.002c0 .414.336.75.75.75a5 5 0 0 0 4.797-6.414a12.984 12.984 0 0 0 5.45-10.848a.75.75 0 0 0-.735-.735a12.984 12.984 0 0 0-10.849 5.45A5 5 0 0 0 1 11.25c.001.414.337.75.751.75zM13 9a2 2 0 1 0 0-4a2 2 0 0 0 0 4\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"rocket-launch-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M9.315 7.584A15.723 15.723 0 0 1 21.75 1.5a.75.75 0 0 1 .75.75c0 5.056-2.383 9.555-6.084 12.436A6.75 6.75 0 0 1 9.75 22.5a.75.75 0 0 1-.75-.75v-4.131A15.838 15.838 0 0 1 6.382 15H2.25a.75.75 0 0 1-.75-.75a6.75 6.75 0 0 1 7.815-6.666M15 6.75a2.25 2.25 0 1 0 0 4.5a2.25 2.25 0 0 0 0-4.5\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M5.26 17.242a.75.75 0 1 0-.897-1.203a5.243 5.243 0 0 0-2.05 5.022a.75.75 0 0 0 .625.627a5.243 5.243 0 0 0 5.022-2.051a.75.75 0 1 0-1.202-.897a3.744 3.744 0 0 1-3.008 1.51c0-1.23.592-2.323 1.51-3.008\\\"/></g>\"\n    },\n    \"rss\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12.75 19.5v-.75a7.5 7.5 0 0 0-7.5-7.5H4.5m0-6.75h.75c7.87 0 14.25 6.38 14.25 14.25v.75M6 18.75a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0\\\"/>\"\n    },\n    \"rss-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3.75 3a.75.75 0 0 0-.75.75v.5c0 .414.336.75.75.75H4c6.075 0 11 4.925 11 11v.25c0 .414.336.75.75.75h.5a.75.75 0 0 0 .75-.75V16C17 8.82 11.18 3 4 3z\\\"/><path d=\\\"M3 8.75A.75.75 0 0 1 3.75 8H4a8 8 0 0 1 8 8v.25a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1-.75-.75V16a6 6 0 0 0-6-6h-.25A.75.75 0 0 1 3 9.25zM7 15a2 2 0 1 1-4 0a2 2 0 0 1 4 0\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"rss-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.75 4.5a.75.75 0 0 1 .75-.75h.75c8.284 0 15 6.716 15 15v.75a.75.75 0 0 1-.75.75h-.75a.75.75 0 0 1-.75-.75v-.75C18 11.708 12.292 6 5.25 6H4.5a.75.75 0 0 1-.75-.75zm0 6.75a.75.75 0 0 1 .75-.75h.75a8.25 8.25 0 0 1 8.25 8.25v.75a.75.75 0 0 1-.75.75H12a.75.75 0 0 1-.75-.75v-.75a6 6 0 0 0-6-6H4.5a.75.75 0 0 1-.75-.75zm0 7.5a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"scale\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 3v17.25m0 0c-1.472 0-2.882.265-4.185.75M12 20.25c1.472 0 2.882.265 4.185.75M18.75 4.97A48.416 48.416 0 0 0 12 4.5c-2.291 0-4.545.16-6.75.47m13.5 0c1.01.143 2.01.317 3 .52m-3-.52l2.62 10.726c.122.499-.106 1.028-.589 1.202a5.988 5.988 0 0 1-2.031.352a5.988 5.988 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202zm-16.5.52c.99-.203 1.99-.377 3-.52m0 0l2.62 10.726c.122.499-.106 1.028-.589 1.202a5.989 5.989 0 0 1-2.031.352a5.989 5.989 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202z\\\"/>\"\n    },\n    \"scale-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 2a.75.75 0 0 1 .75.75v.258a33.186 33.186 0 0 1 6.668.83a.75.75 0 0 1-.336 1.461a31.28 31.28 0 0 0-1.103-.232l1.702 7.545a.75.75 0 0 1-.387.832A4.981 4.981 0 0 1 15 14a4.98 4.98 0 0 1-2.294-.556a.75.75 0 0 1-.387-.832l1.77-7.849a31.743 31.743 0 0 0-3.339-.254v11.505a20.01 20.01 0 0 1 3.78.501a.75.75 0 1 1-.339 1.462A18.558 18.558 0 0 0 10 17.5c-1.442 0-2.845.165-4.191.477a.75.75 0 0 1-.338-1.462a20.01 20.01 0 0 1 3.779-.501V4.509a31.692 31.692 0 0 0-3.34.254l1.771 7.85a.75.75 0 0 1-.387.83A4.98 4.98 0 0 1 5 14a4.98 4.98 0 0 1-2.294-.556a.75.75 0 0 1-.387-.832L4.02 5.067c-.37.07-.738.148-1.103.232a.75.75 0 0 1-.336-1.462a32.845 32.845 0 0 1 6.668-.829V2.75A.75.75 0 0 1 10 2M5 7.543L3.92 12.33a3.499 3.499 0 0 0 2.16 0zm10 0l-1.08 4.787a3.498 3.498 0 0 0 2.16 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"scale-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25a.75.75 0 0 1 .75.75v.756a49.106 49.106 0 0 1 9.152 1a.75.75 0 0 1-.152 1.485h-1.918l2.474 10.124a.75.75 0 0 1-.375.84A6.723 6.723 0 0 1 18.75 18a6.723 6.723 0 0 1-3.181-.795a.75.75 0 0 1-.375-.84l2.474-10.124H12.75v13.28c1.293.076 2.534.343 3.697.776a.75.75 0 0 1-.262 1.453h-8.37a.75.75 0 0 1-.262-1.453c1.162-.433 2.404-.7 3.697-.775V6.24H6.332l2.474 10.124a.75.75 0 0 1-.375.84A6.723 6.723 0 0 1 5.25 18a6.723 6.723 0 0 1-3.181-.795a.75.75 0 0 1-.375-.84L4.168 6.241H2.25a.75.75 0 0 1-.152-1.485a49.105 49.105 0 0 1 9.152-1V3a.75.75 0 0 1 .75-.75m4.878 13.543l1.872-7.662l1.872 7.662zm-9.756 0L5.25 8.131l-1.872 7.662z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"scissors\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m7.848 8.25l1.536.887M7.848 8.25a3 3 0 1 1-5.196-3a3 3 0 0 1 5.196 3m1.536.887a2.165 2.165 0 0 1 1.083 1.839c.005.351.054.695.14 1.024M9.384 9.137l2.077 1.199M7.848 15.75l1.536-.887m-1.536.887a3 3 0 1 1-5.196 3a3 3 0 0 1 5.196-3m1.536-.887a2.165 2.165 0 0 0 1.083-1.838c.005-.352.054-.695.14-1.025m-1.223 2.863l2.077-1.199m0-3.328a4.323 4.323 0 0 1 2.068-1.379l5.325-1.628a4.5 4.5 0 0 1 2.48-.044l.803.215l-7.794 4.5m-2.882-1.664A4.331 4.331 0 0 0 10.607 12m3.736 0l7.794 4.5l-.802.215a4.5 4.5 0 0 1-2.48-.043l-5.326-1.629a4.324 4.324 0 0 1-2.068-1.379M14.343 12l-2.882 1.664\\\"/>\"\n    },\n    \"scissors-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M1.469 3.75a3.5 3.5 0 0 0 5.617 4.11l.883.51c.025.092.147.116.21.043a3.75 3.75 0 0 1 .5-.484c.286-.23.3-.709-.018-.892l-.825-.477A3.501 3.501 0 0 0 1.47 3.75M3.5 7.232a2 2 0 1 1 2-3.464a2 2 0 0 1-2 3.464m6.456 1.09a2.75 2.75 0 0 0-1.588 1.822L7.97 11.63l-.884.51a3.501 3.501 0 1 0 .75 1.3l10.68-6.166a.75.75 0 0 0-.182-1.374l-.703-.189a2.75 2.75 0 0 0-1.78.123zM2.768 15.5a2 2 0 1 1 3.464-2a2 2 0 0 1-3.464 2\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M12.52 11.89a.5.5 0 0 0 .056.894l3.274 1.381a2.75 2.75 0 0 0 1.78.123l.704-.188a.75.75 0 0 0 .18-1.374l-3.47-2.004a.5.5 0 0 0-.5 0z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"scissors-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M8.128 9.155a3.751 3.751 0 1 1 .713-1.321l1.136.656a.75.75 0 0 1 .222 1.104l-.006.007a.75.75 0 0 1-1.032.157a1.421 1.421 0 0 0-.113-.072zm-4.827-3.53a2.25 2.25 0 0 1 3.994 2.063a.756.756 0 0 0-.122.23a2.25 2.25 0 0 1-3.872-2.293m10.047 2.647a5.073 5.073 0 0 0-3.428 3.57c-.101.387-.158.79-.165 1.202a1.415 1.415 0 0 1-.707 1.201l-.96.554a3.751 3.751 0 1 0 .734 1.309l13.729-7.926a.75.75 0 0 0-.181-1.374l-.803-.215a5.25 5.25 0 0 0-2.894.05zm-9.223 7.03a2.25 2.25 0 1 0 2.25 3.897a2.25 2.25 0 0 0-2.25-3.897M12 12.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M16.372 12.615a.75.75 0 0 1 .75 0l5.43 3.135a.75.75 0 0 1-.182 1.374l-.802.215a5.25 5.25 0 0 1-2.894-.051l-5.147-1.574a.75.75 0 0 1-.156-1.367z\\\"/></g>\"\n    },\n    \"server\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21.75 17.25v-.228a4.5 4.5 0 0 0-.12-1.03l-2.268-9.64a3.375 3.375 0 0 0-3.285-2.602H7.923a3.375 3.375 0 0 0-3.285 2.602l-2.268 9.64a4.5 4.5 0 0 0-.12 1.03v.228m19.5 0a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3m19.5 0a3 3 0 0 0-3-3H5.25a3 3 0 0 0-3 3m16.5 0h.008v.008h-.008zm-3 0h.008v.008h-.008z\\\"/>\"\n    },\n    \"server-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.632 3.533A2 2 0 0 1 6.577 2h6.846a2 2 0 0 1 1.945 1.533l1.976 8.234A3.489 3.489 0 0 0 16 11.5H4c-.476 0-.93.095-1.344.267z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M4 13a2 2 0 1 0 0 4h12a2 2 0 1 0 0-4zm11.24 2a.75.75 0 0 1 .75-.75H16a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm-2.25-.75a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75H13a.75.75 0 0 0 .75-.75V15a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"server-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.08 5.227A3 3 0 0 1 6.979 3H17.02a3 3 0 0 1 2.9 2.227l2.113 7.926A5.228 5.228 0 0 0 18.75 12H5.25a5.228 5.228 0 0 0-3.284 1.153z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M5.25 13.5a3.75 3.75 0 1 0 0 7.5h13.5a3.75 3.75 0 1 0 0-7.5zm10.5 4.5a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5m3.75-.75a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"server-stack\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M5.25 14.25h13.5m-13.5 0a3 3 0 0 1-3-3m3 3a3 3 0 1 0 0 6h13.5a3 3 0 1 0 0-6m-16.5-3a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3m-19.5 0a4.5 4.5 0 0 1 .9-2.7L5.738 5.1a3.375 3.375 0 0 1 2.7-1.35h7.124c1.063 0 2.063.5 2.7 1.35l2.588 3.45a4.5 4.5 0 0 1 .9 2.7m0 0a3 3 0 0 1-3 3m0 3h.008v.008h-.008zm0-6h.008v.008h-.008zm-3 6h.008v.008h-.008zm0-6h.008v.008h-.008z\\\"/>\"\n    },\n    \"server-stack-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4.464 3.162A2 2 0 0 1 6.28 2h7.44a2 2 0 0 1 1.816 1.162l1.154 2.5c.067.145.115.291.145.438A3.508 3.508 0 0 0 16 6H4c-.288 0-.568.035-.835.1a1.99 1.99 0 0 1 .145-.438z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M2 9.5a2 2 0 0 1 2-2h12a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2m13.24 0a.75.75 0 0 1 .75-.75H16a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm-2.25-.75a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75H13a.75.75 0 0 0 .75-.75V9.5a.75.75 0 0 0-.75-.75zM2 15a2 2 0 0 1 2-2h12a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2m13.24 0a.75.75 0 0 1 .75-.75H16a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75h-.01a.75.75 0 0 1-.75-.75zm-2.25-.75a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75H13a.75.75 0 0 0 .75-.75V15a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"server-stack-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M5.507 4.048A3 3 0 0 1 7.785 3h8.43a3 3 0 0 1 2.278 1.048l1.722 2.008A4.533 4.533 0 0 0 19.5 6h-15c-.243 0-.482.02-.715.056z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M1.5 10.5a3 3 0 0 1 3-3h15a3 3 0 1 1 0 6h-15a3 3 0 0 1-3-3m15 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m2.25.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5M4.5 15a3 3 0 1 0 0 6h15a3 3 0 1 0 0-6zm11.25 3.75a.75.75 0 1 0 0-1.5a.75.75 0 0 0 0 1.5M19.5 18a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"share\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.217 10.907a2.25 2.25 0 1 0 0 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 1 0 3.935 2.186a2.25 2.25 0 0 0-3.935-2.186m0-12.814a2.25 2.25 0 1 0 3.933-2.185a2.25 2.25 0 0 0-3.933 2.185\\\"/>\"\n    },\n    \"share-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M13 4.5a2.5 2.5 0 1 1 .702 1.737L6.97 9.604a2.518 2.518 0 0 1 0 .792l6.733 3.367a2.5 2.5 0 1 1-.671 1.341l-6.733-3.367a2.5 2.5 0 1 1 0-3.475l6.733-3.366A2.52 2.52 0 0 1 13 4.5\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"share-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.75 4.5a3 3 0 1 1 .825 2.066l-8.421 4.679a3.002 3.002 0 0 1 0 1.51l8.421 4.679a3 3 0 1 1-.729 1.31l-8.421-4.678a3 3 0 1 1 0-4.132l8.421-4.679a3 3 0 0 1-.096-.755\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"shield-check\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 12.75L11.25 15L15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6A11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623c5.176-1.332 9-6.03 9-11.622c0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285\\\"/>\"\n    },\n    \"shield-check-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9.661 2.237a.531.531 0 0 1 .678 0a11.947 11.947 0 0 0 7.078 2.749a.5.5 0 0 1 .479.425c.069.52.104 1.05.104 1.59c0 5.162-3.26 9.563-7.834 11.256a.48.48 0 0 1-.332 0C5.26 16.564 2 12.163 2 7c0-.538.035-1.069.104-1.589a.5.5 0 0 1 .48-.425a11.947 11.947 0 0 0 7.077-2.75m4.196 5.954a.75.75 0 0 0-1.214-.882l-3.483 4.79l-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"shield-check-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12.516 2.17a.75.75 0 0 0-1.032 0a11.209 11.209 0 0 1-7.877 3.08a.75.75 0 0 0-.722.515A12.74 12.74 0 0 0 2.25 9.75c0 5.942 4.064 10.933 9.563 12.348a.749.749 0 0 0 .374 0c5.499-1.415 9.563-6.406 9.563-12.348c0-1.39-.223-2.73-.635-3.985a.75.75 0 0 0-.722-.516l-.143.001c-2.996 0-5.717-1.17-7.734-3.08m3.094 8.016a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"shield-exclamation\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 9v3.75m0-10.036A11.959 11.959 0 0 1 3.598 6A11.99 11.99 0 0 0 3 9.75c0 5.592 3.824 10.29 9 11.622c5.176-1.332 9-6.03 9-11.622c0-1.31-.21-2.57-.598-3.75h-.152c-3.196 0-6.1-1.249-8.25-3.286m0 13.036h.008v.008H12z\\\"/>\"\n    },\n    \"shield-exclamation-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.339 2.237a.532.532 0 0 0-.678 0a11.947 11.947 0 0 1-7.078 2.75a.5.5 0 0 0-.479.425A12.11 12.11 0 0 0 2 7c0 5.163 3.26 9.564 7.834 11.257a.48.48 0 0 0 .332 0C14.74 16.564 18 12.163 18 7.001c0-.54-.035-1.07-.104-1.59a.5.5 0 0 0-.48-.425a11.947 11.947 0 0 1-7.077-2.75M10 6a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 10 6m0 9a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"shield-exclamation-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M11.484 2.17a.75.75 0 0 1 1.032 0a11.209 11.209 0 0 0 7.877 3.08a.75.75 0 0 1 .722.515a12.74 12.74 0 0 1 .635 3.985c0 5.942-4.064 10.933-9.563 12.348a.749.749 0 0 1-.374 0C6.314 20.683 2.25 15.692 2.25 9.75c0-1.39.223-2.73.635-3.985a.75.75 0 0 1 .722-.516l.143.001c2.996 0 5.718-1.17 7.734-3.08M12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75M12 15a.75.75 0 0 0-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75v-.008a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"shopping-bag\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007M8.625 10.5a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m7.5 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0\\\"/>\"\n    },\n    \"shopping-bag-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6 5v1H4.667a1.75 1.75 0 0 0-1.743 1.598l-.826 9.5A1.75 1.75 0 0 0 3.84 19h12.32a1.75 1.75 0 0 0 1.743-1.902l-.826-9.5A1.75 1.75 0 0 0 15.333 6H14V5a4 4 0 0 0-8 0m4-2.5A2.5 2.5 0 0 0 7.5 5v1h5V5A2.5 2.5 0 0 0 10 2.5M7.5 10a2.5 2.5 0 0 0 5 0V8.75a.75.75 0 0 1 1.5 0V10a4 4 0 0 1-8 0V8.75a.75.75 0 0 1 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"shopping-bag-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.5 6v.75H5.513c-.96 0-1.764.724-1.865 1.679l-1.263 12A1.875 1.875 0 0 0 4.25 22.5h15.5a1.875 1.875 0 0 0 1.865-2.071l-1.263-12a1.875 1.875 0 0 0-1.865-1.679H16.5V6a4.5 4.5 0 1 0-9 0M12 3a3 3 0 0 0-3 3v.75h6V6a3 3 0 0 0-3-3m-3 8.25a3 3 0 1 0 6 0v-.75a.75.75 0 0 1 1.5 0v.75a4.5 4.5 0 1 1-9 0v-.75a.75.75 0 0 1 1.5 0z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"shopping-cart\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.137a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25L5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m12.75 0a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0\\\"/>\"\n    },\n    \"shopping-cart-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M1 1.75A.75.75 0 0 1 1.75 1h1.628a1.75 1.75 0 0 1 1.734 1.51L5.18 3a65.25 65.25 0 0 1 13.36 1.412a.75.75 0 0 1 .58.875a48.645 48.645 0 0 1-1.618 6.2a.75.75 0 0 1-.712.513H6a2.503 2.503 0 0 0-2.292 1.5H17.25a.75.75 0 0 1 0 1.5H2.76a.75.75 0 0 1-.748-.807a4.002 4.002 0 0 1 2.716-3.486L3.626 2.716a.25.25 0 0 0-.248-.216H1.75A.75.75 0 0 1 1 1.75M6 17.5a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0m9.5 1.5a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"shopping-cart-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M2.25 2.25a.75.75 0 0 0 0 1.5h1.386c.17 0 .318.114.362.278l2.558 9.592a3.752 3.752 0 0 0-2.806 3.63c0 .414.336.75.75.75h15.75a.75.75 0 0 0 0-1.5H5.378A2.25 2.25 0 0 1 7.5 15h11.218a.75.75 0 0 0 .674-.421a60.358 60.358 0 0 0 2.96-7.228a.75.75 0 0 0-.525-.965A60.864 60.864 0 0 0 5.68 4.509l-.232-.867A1.875 1.875 0 0 0 3.636 2.25zm1.5 18a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m12.75 0a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0\\\"/>\"\n    },\n    \"signal\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9.348 14.651a3.75 3.75 0 0 1 0-5.303m5.304 0a3.75 3.75 0 0 1 0 5.303m-7.425 2.122a6.75 6.75 0 0 1 0-9.546m9.546 0a6.75 6.75 0 0 1 0 9.546M5.106 18.894c-3.808-3.808-3.808-9.98 0-13.789m13.788 0c3.808 3.808 3.808 9.981 0 13.79M12 12h.008v.007H12zm.375 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0\\\"/>\"\n    },\n    \"signal-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M16.364 3.636a.75.75 0 0 0-1.06 1.06a7.5 7.5 0 0 1 0 10.607a.75.75 0 0 0 1.06 1.061a9 9 0 0 0 0-12.728M4.697 4.697a.75.75 0 0 0-1.061-1.06a9 9 0 0 0 0 12.727a.75.75 0 1 0 1.06-1.06a7.5 7.5 0 0 1 0-10.607\\\"/><path d=\\\"M12.475 6.465a.75.75 0 0 1 1.06 0a5 5 0 0 1 0 7.07a.75.75 0 1 1-1.06-1.06a3.5 3.5 0 0 0 0-4.95a.75.75 0 0 1 0-1.06m-4.95 0a.75.75 0 0 1 0 1.06a3.5 3.5 0 0 0 0 4.95a.75.75 0 0 1-1.06 1.06a5 5 0 0 1 0-7.07a.75.75 0 0 1 1.06 0M11 10a1 1 0 1 1-2 0a1 1 0 0 1 2 0\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"signal-slash\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m3 3l8.735 8.735m0 0a.374.374 0 1 1 .53.53m-.53-.53l.53.53m0 0L21 21M14.652 9.348a3.75 3.75 0 0 1 0 5.304m2.121-7.425a6.75 6.75 0 0 1 0 9.546m2.121-11.667c3.808 3.807 3.808 9.98 0 13.788m-9.546-4.242a3.733 3.733 0 0 1-1.06-2.122m-1.061 4.243a6.75 6.75 0 0 1-1.625-6.929m-.496 9.05c-3.068-3.067-3.664-7.67-1.79-11.334M12 12h.008v.008H12z\\\"/>\"\n    },\n    \"signal-slash-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M2.22 2.22a.75.75 0 0 1 1.06 0l6.783 6.782a1 1 0 0 1 .935.935l6.782 6.783a.75.75 0 1 1-1.06 1.06l-6.783-6.782a1 1 0 0 1-.935-.935L2.22 3.28a.75.75 0 0 1 0-1.06m1.416 14.144a9.004 9.004 0 0 1-1.39-10.936L3.349 6.53a7.503 7.503 0 0 0 1.348 8.773a.75.75 0 0 1-1.061 1.061m2.828-2.828a5 5 0 0 1-1.213-5.103l1.262 1.262a3.493 3.493 0 0 0 1.012 2.78a.75.75 0 0 1-1.06 1.06m9.899-9.899a9.004 9.004 0 0 1 1.39 10.937l-1.103-1.104a7.503 7.503 0 0 0-1.348-8.772a.75.75 0 1 1 1.061-1.061m-2.828 2.828a5 5 0 0 1 1.213 5.103l-1.262-1.262a3.493 3.493 0 0 0-1.012-2.78a.75.75 0 0 1 1.06-1.06\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"signal-slash-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.47 2.47a.75.75 0 0 1 1.06 0l8.407 8.407a1.125 1.125 0 0 1 1.186 1.186l1.462 1.461a3.001 3.001 0 0 0-.464-3.645a.75.75 0 1 1 1.061-1.061a4.501 4.501 0 0 1 .486 5.79l1.072 1.072a6.001 6.001 0 0 0-.497-7.923a.75.75 0 0 1 1.06-1.06a7.501 7.501 0 0 1 .505 10.05l1.064 1.065a9 9 0 0 0-.508-12.176a.75.75 0 0 1 1.06-1.06c3.923 3.922 4.093 10.175.512 14.3l1.594 1.594a.75.75 0 1 1-1.06 1.06l-2.106-2.105l-2.121-2.122h-.001l-4.705-4.706a.747.747 0 0 1-.127-.126L2.47 3.53a.75.75 0 0 1 0-1.061m1.189 4.422a.75.75 0 0 1 .326 1.01a9.004 9.004 0 0 0 1.651 10.462a.75.75 0 1 1-1.06 1.06C1.27 16.12.63 11.165 2.648 7.219a.75.75 0 0 1 1.01-.326M5.84 9.134a.75.75 0 0 1 .472.95a6 6 0 0 0 1.444 6.159a.75.75 0 0 1-1.06 1.06A7.5 7.5 0 0 1 4.89 9.606a.75.75 0 0 1 .95-.472m2.341 2.653a.75.75 0 0 1 .848.638c.088.62.37 1.218.849 1.696a.75.75 0 0 1-1.061 1.061a4.483 4.483 0 0 1-1.273-2.546a.75.75 0 0 1 .637-.848\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"signal-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.636 4.575a.75.75 0 0 1 0 1.06a9 9 0 0 0 0 12.729a.75.75 0 0 1-1.06 1.06c-4.101-4.1-4.101-10.748 0-14.849a.75.75 0 0 1 1.06 0m12.728 0a.75.75 0 0 1 1.06 0c4.101 4.1 4.101 10.749 0 14.85a.75.75 0 1 1-1.06-1.061a9 9 0 0 0 0-12.728a.75.75 0 0 1 0-1.06M7.757 6.696a.75.75 0 0 1 0 1.061a6 6 0 0 0 0 8.485a.75.75 0 0 1-1.06 1.061a7.5 7.5 0 0 1 0-10.607a.75.75 0 0 1 1.06 0m8.486 0a.75.75 0 0 1 1.06 0a7.5 7.5 0 0 1 0 10.607a.75.75 0 0 1-1.06-1.06a6 6 0 0 0 0-8.486a.75.75 0 0 1 0-1.06M9.879 8.818a.75.75 0 0 1 0 1.06a3 3 0 0 0 0 4.243a.75.75 0 1 1-1.061 1.06a4.5 4.5 0 0 1 0-6.363a.75.75 0 0 1 1.06 0m4.242 0a.75.75 0 0 1 1.061 0a4.5 4.5 0 0 1 0 6.364a.75.75 0 0 1-1.06-1.06a3 3 0 0 0 0-4.244a.75.75 0 0 1 0-1.06M10.875 12a1.125 1.125 0 1 1 2.25 0a1.125 1.125 0 0 1-2.25 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"sparkles\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09m8.445-7.188L18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456m-1.365 11.852L16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183l.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394l-1.183.394a2.25 2.25 0 0 0-1.423 1.423\\\"/>\"\n    },\n    \"sparkles-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M15.98 1.804a1 1 0 0 0-1.96 0l-.24 1.192a1 1 0 0 1-.784.785l-1.192.238a1 1 0 0 0 0 1.962l1.192.238a1 1 0 0 1 .785.785l.238 1.192a1 1 0 0 0 1.962 0l.238-1.192a1 1 0 0 1 .785-.785l1.192-.238a1 1 0 0 0 0-1.962l-1.192-.238a1 1 0 0 1-.785-.785zm-9.031 3.88a1 1 0 0 0-1.898 0l-.683 2.051a1 1 0 0 1-.633.633l-2.051.683a1 1 0 0 0 0 1.898l2.051.684a1 1 0 0 1 .633.632l.683 2.051a1 1 0 0 0 1.898 0l.683-2.051a1 1 0 0 1 .633-.633l2.051-.683a1 1 0 0 0 0-1.898l-2.051-.683a1 1 0 0 1-.633-.633zm7 8a1 1 0 0 0-1.898 0l-.184.551a1 1 0 0 1-.632.633l-.551.183a1 1 0 0 0 0 1.898l.551.183a1 1 0 0 1 .633.633l.183.551a1 1 0 0 0 1.898 0l.184-.551a1 1 0 0 1 .632-.633l.551-.183a1 1 0 0 0 0-1.898l-.551-.184a1 1 0 0 1-.633-.632z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"sparkles-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M9 4.5a.75.75 0 0 1 .721.544l.813 2.846a3.75 3.75 0 0 0 2.576 2.576l2.846.813a.75.75 0 0 1 0 1.442l-2.846.813a3.75 3.75 0 0 0-2.576 2.576l-.813 2.846a.75.75 0 0 1-1.442 0l-.813-2.846a3.75 3.75 0 0 0-2.576-2.576l-2.846-.813a.75.75 0 0 1 0-1.442l2.846-.813A3.75 3.75 0 0 0 7.466 7.89l.813-2.846A.75.75 0 0 1 9 4.5m9-3a.75.75 0 0 1 .728.568l.258 1.036a2.63 2.63 0 0 0 1.91 1.91l1.036.258a.75.75 0 0 1 0 1.456l-1.036.258a2.63 2.63 0 0 0-1.91 1.91l-.258 1.036a.75.75 0 0 1-1.456 0l-.258-1.036a2.625 2.625 0 0 0-1.91-1.91l-1.036-.258a.75.75 0 0 1 0-1.456l1.036-.258a2.625 2.625 0 0 0 1.91-1.91l.258-1.036A.75.75 0 0 1 18 1.5M16.5 15a.75.75 0 0 1 .712.513l.394 1.183c.15.447.5.799.948.948l1.183.395a.75.75 0 0 1 0 1.422l-1.183.395a1.5 1.5 0 0 0-.948.948l-.395 1.183a.75.75 0 0 1-1.422 0l-.395-1.183a1.5 1.5 0 0 0-.948-.948l-1.183-.395a.75.75 0 0 1 0-1.422l1.183-.395a1.5 1.5 0 0 0 .948-.948l.395-1.183A.75.75 0 0 1 16.5 15\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"speaker-wave\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.01 9.01 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25z\\\"/>\"\n    },\n    \"speaker-wave-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M10 3.75a.75.75 0 0 0-1.264-.546L4.703 7H3.167a.75.75 0 0 0-.7.48A6.985 6.985 0 0 0 2 10c0 .887.165 1.737.468 2.52c.111.29.39.48.7.48h1.535l4.033 3.796A.75.75 0 0 0 10 16.25zm5.95 1.3a.75.75 0 0 0-1.06 1.061a5.5 5.5 0 0 1 0 7.778a.75.75 0 0 0 1.06 1.06a7 7 0 0 0 0-9.899\\\"/><path d=\\\"M13.829 7.172a.75.75 0 0 0-1.061 1.06a2.5 2.5 0 0 1 0 3.536a.75.75 0 0 0 1.06 1.06a4 4 0 0 0 0-5.656\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"speaker-wave-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M13.5 4.06c0-1.336-1.616-2.005-2.56-1.06l-4.5 4.5H4.508c-1.141 0-2.318.664-2.66 1.905A9.76 9.76 0 0 0 1.5 12c0 .898.121 1.768.35 2.595c.341 1.24 1.518 1.905 2.659 1.905h1.93l4.5 4.5c.945.945 2.561.276 2.561-1.06zm5.084 1.046a.75.75 0 0 1 1.06 0c3.808 3.807 3.808 9.98 0 13.788a.75.75 0 1 1-1.06-1.06a8.25 8.25 0 0 0 0-11.668a.75.75 0 0 1 0-1.06\\\"/><path d=\\\"M15.932 7.757a.75.75 0 0 1 1.061 0a6 6 0 0 1 0 8.486a.75.75 0 0 1-1.06-1.061a4.5 4.5 0 0 0 0-6.364a.75.75 0 0 1 0-1.06\\\"/></g>\"\n    },\n    \"speaker-x-mark\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M17.25 9.75L19.5 12m0 0l2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25m-10.5-6l4.72-4.72a.75.75 0 0 1 1.28.531V19.94a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.506-1.938-1.354A9.01 9.01 0 0 1 2.25 12c0-.83.112-1.633.322-2.395C2.806 8.757 3.63 8.25 4.51 8.25z\\\"/>\"\n    },\n    \"speaker-x-mark-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M9.547 3.062A.75.75 0 0 1 10 3.75v12.5a.75.75 0 0 1-1.264.546L4.703 13H3.167a.75.75 0 0 1-.7-.48A6.985 6.985 0 0 1 2 10c0-.887.165-1.737.468-2.52a.75.75 0 0 1 .7-.48h1.535l4.033-3.796a.75.75 0 0 1 .811-.142M13.28 7.22a.75.75 0 1 0-1.06 1.06L13.94 10l-1.72 1.72a.75.75 0 0 0 1.06 1.06L15 11.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L16.06 10l1.72-1.72a.75.75 0 0 0-1.06-1.06L15 8.94z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"speaker-x-mark-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M13.5 4.06c0-1.336-1.616-2.005-2.56-1.06l-4.5 4.5H4.508c-1.141 0-2.318.664-2.66 1.905A9.76 9.76 0 0 0 1.5 12c0 .898.121 1.768.35 2.595c.341 1.24 1.518 1.905 2.659 1.905h1.93l4.5 4.5c.945.945 2.561.276 2.561-1.06zm4.28 5.16a.75.75 0 1 0-1.06 1.06L18.44 12l-1.72 1.72a.75.75 0 0 0 1.06 1.06l1.72-1.72l1.72 1.72a.75.75 0 1 0 1.06-1.06L20.56 12l1.72-1.72a.75.75 0 0 0-1.06-1.06l-1.72 1.72z\\\"/>\"\n    },\n    \"square-2-stack\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M16.5 8.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v8.25A2.25 2.25 0 0 0 6 16.5h2.25m8.25-8.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-7.5A2.25 2.25 0 0 1 8.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 0 0-2.25 2.25v6\\\"/>\"\n    },\n    \"square-2-stack-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M2 4.25A2.25 2.25 0 0 1 4.25 2h6.5A2.25 2.25 0 0 1 13 4.25V5.5H9.25A3.75 3.75 0 0 0 5.5 9.25V13H4.25A2.25 2.25 0 0 1 2 10.75z\\\"/><path d=\\\"M9.25 7A2.25 2.25 0 0 0 7 9.25v6.5A2.25 2.25 0 0 0 9.25 18h6.5A2.25 2.25 0 0 0 18 15.75v-6.5A2.25 2.25 0 0 0 15.75 7z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"square-2-stack-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M16.5 6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v7.5a3 3 0 0 0 3 3v-6A4.5 4.5 0 0 1 10.5 6z\\\"/><path d=\\\"M18 7.5a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3h-7.5a3 3 0 0 1-3-3v-7.5a3 3 0 0 1 3-3z\\\"/></g>\"\n    },\n    \"square-3-stack-3d\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6.429 9.75L2.25 12l4.179 2.25m0-4.5l5.571 3l5.571-3m-11.142 0L2.25 7.5L12 2.25l9.75 5.25l-4.179 2.25m0 0L21.75 12l-4.179 2.25m0 0l4.179 2.25L12 21.75L2.25 16.5l4.179-2.25m11.142 0l-5.571 3l-5.571-3\\\"/>\"\n    },\n    \"square-3-stack-3d-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"m3.196 12.87l-.825.483a.75.75 0 0 0 0 1.294l7.25 4.25a.75.75 0 0 0 .758 0l7.25-4.25a.75.75 0 0 0 0-1.294l-.825-.484l-5.666 3.322a2.25 2.25 0 0 1-2.276 0z\\\"/><path d=\\\"m3.196 8.87l-.825.483a.75.75 0 0 0 0 1.294l7.25 4.25a.75.75 0 0 0 .758 0l7.25-4.25a.75.75 0 0 0 0-1.294l-.825-.484l-5.666 3.322a2.25 2.25 0 0 1-2.276 0z\\\"/><path d=\\\"M10.38 1.103a.75.75 0 0 0-.76 0l-7.25 4.25a.75.75 0 0 0 0 1.294l7.25 4.25a.75.75 0 0 0 .76 0l7.25-4.25a.75.75 0 0 0 0-1.294z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"square-3-stack-3d-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M11.644 1.59a.75.75 0 0 1 .712 0l9.75 5.25a.75.75 0 0 1 0 1.32l-9.75 5.25a.75.75 0 0 1-.712 0l-9.75-5.25a.75.75 0 0 1 0-1.32z\\\"/><path d=\\\"m3.265 10.602l7.668 4.129a2.25 2.25 0 0 0 2.134 0l7.668-4.13l1.37.739a.75.75 0 0 1 0 1.32l-9.75 5.25a.75.75 0 0 1-.71 0l-9.75-5.25a.75.75 0 0 1 0-1.32z\\\"/><path d=\\\"m10.933 19.231l-7.668-4.13l-1.37.739a.75.75 0 0 0 0 1.32l9.75 5.25c.221.12.489.12.71 0l9.75-5.25a.75.75 0 0 0 0-1.32l-1.37-.738l-7.668 4.13a2.25 2.25 0 0 1-2.134-.001\\\"/></g>\"\n    },\n    \"squares-2x2\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25zm0 9.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18zM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25zm0 9.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18z\\\"/>\"\n    },\n    \"squares-2x2-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.25 2A2.25 2.25 0 0 0 2 4.25v2.5A2.25 2.25 0 0 0 4.25 9h2.5A2.25 2.25 0 0 0 9 6.75v-2.5A2.25 2.25 0 0 0 6.75 2zm0 9A2.25 2.25 0 0 0 2 13.25v2.5A2.25 2.25 0 0 0 4.25 18h2.5A2.25 2.25 0 0 0 9 15.75v-2.5A2.25 2.25 0 0 0 6.75 11zm9-9A2.25 2.25 0 0 0 11 4.25v2.5A2.25 2.25 0 0 0 13.25 9h2.5A2.25 2.25 0 0 0 18 6.75v-2.5A2.25 2.25 0 0 0 15.75 2zm0 9A2.25 2.25 0 0 0 11 13.25v2.5A2.25 2.25 0 0 0 13.25 18h2.5A2.25 2.25 0 0 0 18 15.75v-2.5A2.25 2.25 0 0 0 15.75 11z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"squares-2x2-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3 6a3 3 0 0 1 3-3h2.25a3 3 0 0 1 3 3v2.25a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm9.75 0a3 3 0 0 1 3-3H18a3 3 0 0 1 3 3v2.25a3 3 0 0 1-3 3h-2.25a3 3 0 0 1-3-3zM3 15.75a3 3 0 0 1 3-3h2.25a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm9.75 0a3 3 0 0 1 3-3H18a3 3 0 0 1 3 3V18a3 3 0 0 1-3 3h-2.25a3 3 0 0 1-3-3z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"squares-plus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M13.5 16.875h3.375m0 0h3.375m-3.375 0V13.5m0 3.375v3.375M6 10.5h2.25a2.25 2.25 0 0 0 2.25-2.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v2.25A2.25 2.25 0 0 0 6 10.5m0 9.75h2.25A2.25 2.25 0 0 0 10.5 18v-2.25a2.25 2.25 0 0 0-2.25-2.25H6a2.25 2.25 0 0 0-2.25 2.25V18A2.25 2.25 0 0 0 6 20.25m9.75-9.75H18a2.25 2.25 0 0 0 2.25-2.25V6A2.25 2.25 0 0 0 18 3.75h-2.25A2.25 2.25 0 0 0 13.5 6v2.25a2.25 2.25 0 0 0 2.25 2.25\\\"/>\"\n    },\n    \"squares-plus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M2 4.25A2.25 2.25 0 0 1 4.25 2h2.5A2.25 2.25 0 0 1 9 4.25v2.5A2.25 2.25 0 0 1 6.75 9h-2.5A2.25 2.25 0 0 1 2 6.75zm0 9A2.25 2.25 0 0 1 4.25 11h2.5A2.25 2.25 0 0 1 9 13.25v2.5A2.25 2.25 0 0 1 6.75 18h-2.5A2.25 2.25 0 0 1 2 15.75zm9-9A2.25 2.25 0 0 1 13.25 2h2.5A2.25 2.25 0 0 1 18 4.25v2.5A2.25 2.25 0 0 1 15.75 9h-2.5A2.25 2.25 0 0 1 11 6.75zm4.25 7.5a.75.75 0 0 0-1.5 0v2h-2a.75.75 0 0 0 0 1.5h2v2a.75.75 0 0 0 1.5 0v-2h2a.75.75 0 0 0 0-1.5h-2z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"squares-plus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M6 3a3 3 0 0 0-3 3v2.25a3 3 0 0 0 3 3h2.25a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3zm9.75 0a3 3 0 0 0-3 3v2.25a3 3 0 0 0 3 3H18a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3zM6 12.75a3 3 0 0 0-3 3V18a3 3 0 0 0 3 3h2.25a3 3 0 0 0 3-3v-2.25a3 3 0 0 0-3-3zm11.625.75a.75.75 0 0 0-1.5 0v2.625H13.5a.75.75 0 0 0 0 1.5h2.625v2.625a.75.75 0 0 0 1.5 0v-2.625h2.625a.75.75 0 0 0 0-1.5h-2.625z\\\"/>\"\n    },\n    \"star\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.563.563 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.563.563 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.562.562 0 0 0-.182-.557l-4.204-3.602a.563.563 0 0 1 .321-.988l5.518-.442a.563.563 0 0 0 .475-.345z\\\"/>\"\n    },\n    \"star-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.868 2.884c-.321-.772-1.415-.772-1.736 0l-1.83 4.401l-4.753.381c-.833.067-1.171 1.107-.536 1.651l3.62 3.102l-1.106 4.637c-.194.813.691 1.456 1.405 1.02L10 15.591l4.069 2.485c.713.436 1.598-.207 1.404-1.02l-1.106-4.637l3.62-3.102c.635-.544.297-1.584-.536-1.65l-4.752-.382z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"star-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10.788 3.21c.448-1.077 1.976-1.077 2.424 0l2.082 5.007l5.404.433c1.164.093 1.636 1.545.749 2.305l-4.117 3.527l1.257 5.273c.271 1.136-.964 2.033-1.96 1.425L12 18.354L7.373 21.18c-.996.608-2.231-.29-1.96-1.425l1.257-5.273l-4.117-3.527c-.887-.76-.415-2.212.749-2.305l5.404-.433z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"stop\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25z\\\"/>\"\n    },\n    \"stop-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M5.25 3A2.25 2.25 0 0 0 3 5.25v9.5A2.25 2.25 0 0 0 5.25 17h9.5A2.25 2.25 0 0 0 17 14.75v-9.5A2.25 2.25 0 0 0 14.75 3z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"stop-circle\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/><path d=\\\"M9 9.563C9 9.252 9.252 9 9.563 9h4.874c.311 0 .563.252.563.563v4.874a.563.563 0 0 1-.562.563H9.561A.562.562 0 0 1 9 14.438z\\\"/></g>\"\n    },\n    \"stop-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2 10a8 8 0 1 1 16 0a8 8 0 0 1-16 0m5-2.25A.75.75 0 0 1 7.75 7h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"stop-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12m6-2.437c0-.725.588-1.313 1.313-1.313h4.874c.725 0 1.313.588 1.313 1.313v4.874c0 .725-.588 1.313-1.312 1.313H9.561a1.312 1.312 0 0 1-1.312-1.312z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"stop-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.5 7.5a3 3 0 0 1 3-3h9a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"sun\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0a3.75 3.75 0 0 1 7.5 0\\\"/>\"\n    },\n    \"sun-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10 2a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 10 2m0 13a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 10 15m0-8a3 3 0 1 0 0 6a3 3 0 0 0 0-6m5.657-1.596a.75.75 0 1 0-1.06-1.06l-1.061 1.06a.75.75 0 0 0 1.06 1.06zm-9.193 9.192a.75.75 0 1 0-1.06-1.06l-1.06 1.06a.75.75 0 0 0 1.06 1.06zM18 10a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 18 10M5 10a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 5 10m9.596 5.657a.75.75 0 0 0 1.06-1.06l-1.06-1.061a.75.75 0 1 0-1.06 1.06zM5.404 6.464a.75.75 0 0 0 1.06-1.06l-1.06-1.06a.75.75 0 1 0-1.061 1.06z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"sun-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M12 2.25a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75M7.5 12a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0m11.394-5.834a.75.75 0 0 0-1.06-1.06l-1.591 1.59a.75.75 0 1 0 1.06 1.061zM21.75 12a.75.75 0 0 1-.75.75h-2.25a.75.75 0 0 1 0-1.5H21a.75.75 0 0 1 .75.75m-3.916 6.894a.75.75 0 0 0 1.06-1.06l-1.59-1.591a.75.75 0 1 0-1.061 1.06zM12 18a.75.75 0 0 1 .75.75V21a.75.75 0 0 1-1.5 0v-2.25A.75.75 0 0 1 12 18m-4.242-.697a.75.75 0 0 0-1.061-1.06l-1.591 1.59a.75.75 0 0 0 1.06 1.061zM6 12a.75.75 0 0 1-.75.75H3a.75.75 0 0 1 0-1.5h2.25A.75.75 0 0 1 6 12m.697-4.243a.75.75 0 0 0 1.06-1.06l-1.59-1.591a.75.75 0 0 0-1.061 1.06z\\\"/>\"\n    },\n    \"swatch\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M4.098 19.902a3.75 3.75 0 0 0 5.304 0l6.401-6.402M6.75 21A3.75 3.75 0 0 1 3 17.25V4.125C3 3.504 3.504 3 4.125 3h5.25c.621 0 1.125.504 1.125 1.125v4.072M6.75 21a3.75 3.75 0 0 0 3.75-3.75V8.197M6.75 21h13.125c.621 0 1.125-.504 1.125-1.125v-5.25c0-.621-.504-1.125-1.125-1.125h-4.072M10.5 8.197l2.88-2.88a1.124 1.124 0 0 1 1.59 0l3.712 3.713c.44.44.44 1.152 0 1.59l-2.879 2.88M6.75 17.25h.008v.008H6.75z\\\"/>\"\n    },\n    \"swatch-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.5 2A1.5 1.5 0 0 0 2 3.5V15a3 3 0 1 0 6 0V3.5A1.5 1.5 0 0 0 6.5 2zm11.753 6.99L9.5 14.743V6.257l1.51-1.51a1.5 1.5 0 0 1 2.122 0l2.121 2.121a1.5 1.5 0 0 1 0 2.122M8.364 18H16.5a1.5 1.5 0 0 0 1.5-1.5v-3a1.5 1.5 0 0 0-1.5-1.5h-2.136zM5 16a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"swatch-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M2.25 4.125c0-1.036.84-1.875 1.875-1.875h5.25c1.036 0 1.875.84 1.875 1.875V17.25a4.5 4.5 0 1 1-9 0zm4.5 14.25a1.125 1.125 0 1 0 0-2.25a1.125 1.125 0 0 0 0 2.25\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M10.719 21.75h9.156c1.036 0 1.875-.84 1.875-1.875v-5.25c0-1.036-.84-1.875-1.875-1.875h-.14l-8.742 8.743a6 6 0 0 1-.274.257m2.019-4.124l6.474-6.475a1.875 1.875 0 0 0 0-2.651L15.5 4.787a1.875 1.875 0 0 0-2.651 0l-.1.099V17.25c0 .126-.003.251-.01.375\\\"/></g>\"\n    },\n    \"table-cells\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h7.5c.621 0 1.125-.504 1.125-1.125m-9.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-7.5A1.125 1.125 0 0 1 12 18.375m9.75-12.75c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125m19.5 0v1.5c0 .621-.504 1.125-1.125 1.125M2.25 5.625v1.5c0 .621.504 1.125 1.125 1.125m0 0h17.25m-17.25 0h7.5c.621 0 1.125.504 1.125 1.125M3.375 8.25c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m17.25-3.75h-7.5c-.621 0-1.125.504-1.125 1.125m8.625-1.125c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M12 10.875v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125M13.125 12h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125M20.625 12c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5M12 14.625v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 14.625c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m0 1.5v-1.5m0 0c0-.621.504-1.125 1.125-1.125m0 0h7.5\\\"/>\"\n    },\n    \"table-cells-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M.99 5.24A2.25 2.25 0 0 1 3.25 3h13.5A2.25 2.25 0 0 1 19 5.25l.01 9.5A2.25 2.25 0 0 1 16.76 17H3.26A2.267 2.267 0 0 1 1 14.74zm8.26 9.52v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75v.615c0 .414.336.75.75.75h5.373a.75.75 0 0 0 .627-.74m1.5 0a.75.75 0 0 0 .627.74h5.373a.75.75 0 0 0 .75-.75v-.615a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75zm6.75-3.63v-.625a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75v.625c0 .414.336.75.75.75h5.25a.75.75 0 0 0 .75-.75m-8.25 0v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75v.625c0 .414.336.75.75.75H8.5a.75.75 0 0 0 .75-.75M17.5 7.5v-.625a.75.75 0 0 0-.75-.75H11.5a.75.75 0 0 0-.75.75V7.5c0 .414.336.75.75.75h5.25a.75.75 0 0 0 .75-.75m-8.25 0v-.625a.75.75 0 0 0-.75-.75H3.25a.75.75 0 0 0-.75.75V7.5c0 .414.336.75.75.75H8.5a.75.75 0 0 0 .75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"table-cells-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.5 5.625c0-1.036.84-1.875 1.875-1.875h17.25c1.035 0 1.875.84 1.875 1.875v12.75c0 1.035-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 0 1 1.5 18.375zM21 9.375A.375.375 0 0 0 20.625 9h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h7.5a.375.375 0 0 0 .375-.375zm0 3.75a.375.375 0 0 0-.375-.375h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h7.5a.375.375 0 0 0 .375-.375zm0 3.75a.375.375 0 0 0-.375-.375h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375h7.5a.375.375 0 0 0 .375-.375zM10.875 18.75a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375zM3.375 15h7.5a.375.375 0 0 0 .375-.375v-1.5a.375.375 0 0 0-.375-.375h-7.5a.375.375 0 0 0-.375.375v1.5c0 .207.168.375.375.375m0-3.75h7.5a.375.375 0 0 0 .375-.375v-1.5A.375.375 0 0 0 10.875 9h-7.5A.375.375 0 0 0 3 9.375v1.5c0 .207.168.375.375.375\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"tag\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.224-5.223c.54-.827.368-1.908-.33-2.607l-9.583-9.58A2.25 2.25 0 0 0 9.568 3\\\"/><path d=\\\"M6 6h.008v.008H6z\\\"/></g>\"\n    },\n    \"tag-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.5 3A2.5 2.5 0 0 0 3 5.5v2.879a2.5 2.5 0 0 0 .732 1.767l6.5 6.5a2.5 2.5 0 0 0 3.536 0l2.878-2.878a2.5 2.5 0 0 0 0-3.536l-6.5-6.5A2.5 2.5 0 0 0 8.38 3zM6 7a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"tag-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.25 2.25a3 3 0 0 0-3 3v4.318a3 3 0 0 0 .879 2.121l9.58 9.581c.92.92 2.39 1.186 3.548.428a18.849 18.849 0 0 0 5.441-5.44c.758-1.16.492-2.629-.428-3.548l-9.58-9.581a3 3 0 0 0-2.122-.879zM6.375 7.5a1.125 1.125 0 1 0 0-2.25a1.125 1.125 0 0 0 0 2.25\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"ticket\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 0 1 0 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 0 1 0-5.198V6.375c0-.621-.504-1.125-1.125-1.125z\\\"/>\"\n    },\n    \"ticket-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M13 3v1.27a.75.75 0 0 0 1.5 0V3h2.25A2.25 2.25 0 0 1 19 5.25v2.628a.75.75 0 0 1-.5.707a1.5 1.5 0 0 0 0 2.83c.3.106.5.39.5.707v2.628A2.25 2.25 0 0 1 16.75 17H14.5v-1.27a.75.75 0 0 0-1.5 0V17H3.25A2.25 2.25 0 0 1 1 14.75v-2.628c0-.318.2-.601.5-.707a1.5 1.5 0 0 0 0-2.83a.75.75 0 0 1-.5-.707V5.25A2.25 2.25 0 0 1 3.25 3zm1.5 4.396a.75.75 0 0 0-1.5 0v1.042a.75.75 0 0 0 1.5 0zm0 4.167a.75.75 0 0 0-1.5 0v1.041a.75.75 0 0 0 1.5 0zM6 10.75a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75m0 2.5a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"ticket-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.5 6.375c0-1.036.84-1.875 1.875-1.875h17.25c1.035 0 1.875.84 1.875 1.875v3.026a.75.75 0 0 1-.375.65a2.249 2.249 0 0 0 0 3.898a.75.75 0 0 1 .375.65v3.026c0 1.035-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 0 1 1.5 17.625v-3.026a.75.75 0 0 1 .374-.65a2.249 2.249 0 0 0 0-3.898a.75.75 0 0 1-.374-.65zm15-1.125a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-1.5 0V6a.75.75 0 0 1 .75-.75m.75 4.5a.75.75 0 0 0-1.5 0v.75a.75.75 0 0 0 1.5 0zm-.75 3a.75.75 0 0 1 .75.75v.75a.75.75 0 0 1-1.5 0v-.75a.75.75 0 0 1 .75-.75m.75 4.5a.75.75 0 0 0-1.5 0V18a.75.75 0 0 0 1.5 0zM6 12a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H6.75A.75.75 0 0 1 6 12m.75 2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"trash\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0\\\"/>\"\n    },\n    \"trash-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M8.75 1A2.75 2.75 0 0 0 6 3.75v.443a40.83 40.83 0 0 0-2.365.298a.75.75 0 1 0 .23 1.482l.149-.022l.841 10.518A2.75 2.75 0 0 0 7.596 19h4.807a2.75 2.75 0 0 0 2.742-2.53l.841-10.52l.149.023a.75.75 0 0 0 .23-1.482A41.03 41.03 0 0 0 14 4.193V3.75A2.75 2.75 0 0 0 11.25 1zM10 4c.84 0 1.673.025 2.5.075V3.75c0-.69-.56-1.25-1.25-1.25h-2.5c-.69 0-1.25.56-1.25 1.25v.325C8.327 4.025 9.16 4 10 4M8.58 7.72a.75.75 0 0 0-1.5.06l.3 7.5a.75.75 0 1 0 1.5-.06zm4.34.06a.75.75 0 1 0-1.5-.06l-.3 7.5a.75.75 0 1 0 1.5.06z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"trash-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M16.5 4.478v.227a48.816 48.816 0 0 1 3.878.512a.75.75 0 1 1-.256 1.478l-.209-.035l-1.005 13.07a3 3 0 0 1-2.991 2.77H8.084a3 3 0 0 1-2.991-2.77L4.087 6.66l-.209.035a.75.75 0 0 1-.256-1.478A48.567 48.567 0 0 1 7.5 4.705v-.227c0-1.564 1.213-2.9 2.816-2.951a52.662 52.662 0 0 1 3.369 0c1.603.051 2.815 1.387 2.815 2.951m-6.136-1.452a51.196 51.196 0 0 1 3.273 0C14.39 3.05 15 3.684 15 4.478v.113a49.488 49.488 0 0 0-6 0v-.113c0-.794.609-1.428 1.364-1.452m-.355 5.945a.75.75 0 1 0-1.5.058l.347 9a.75.75 0 1 0 1.499-.058zm5.48.058a.75.75 0 1 0-1.498-.058l-.347 9a.75.75 0 0 0 1.5.058z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"trophy\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M16.5 18.75h-9m9 0a3 3 0 0 1 3 3h-15a3 3 0 0 1 3-3m9 0v-3.375c0-.621-.503-1.125-1.125-1.125h-.871M7.5 18.75v-3.375c0-.621.504-1.125 1.125-1.125h.872m5.007 0H9.497m5.007 0a7.454 7.454 0 0 1-.982-3.172M9.497 14.25a7.454 7.454 0 0 0 .981-3.172M5.25 4.236c-.982.143-1.954.317-2.916.52A6.003 6.003 0 0 0 7.73 9.728M5.25 4.236V4.5c0 2.108.966 3.99 2.48 5.228M5.25 4.236V2.721A48.339 48.339 0 0 1 12 2.25c2.291 0 4.545.16 6.75.47v1.516M7.73 9.728a6.726 6.726 0 0 0 2.748 1.35m8.272-6.842V4.5c0 2.108-.966 3.99-2.48 5.228m2.48-5.492a46.32 46.32 0 0 1 2.916.52a6.003 6.003 0 0 1-5.395 4.972m0 0a6.726 6.726 0 0 1-2.749 1.35m0 0a6.772 6.772 0 0 1-3.044 0\\\"/>\"\n    },\n    \"trophy-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 1c-1.828 0-3.623.149-5.371.435a.75.75 0 0 0-.629.74v.387c-.827.157-1.642.345-2.445.564a.75.75 0 0 0-.552.698a5 5 0 0 0 4.503 5.152a6 6 0 0 0 2.946 1.822A6.451 6.451 0 0 1 7.768 13H7.5A1.5 1.5 0 0 0 6 14.5V17h-.75C4.56 17 4 17.56 4 18.25c0 .414.336.75.75.75h10.5a.75.75 0 0 0 .75-.75c0-.69-.56-1.25-1.25-1.25H14v-2.5a1.5 1.5 0 0 0-1.5-1.5h-.268a6.453 6.453 0 0 1-.684-2.202a6 6 0 0 0 2.946-1.822a5 5 0 0 0 4.503-5.152a.75.75 0 0 0-.552-.698A31.804 31.804 0 0 0 16 2.562v-.387a.75.75 0 0 0-.629-.74A33.227 33.227 0 0 0 10 1M2.525 4.422C3.012 4.3 3.504 4.19 4 4.09V5c0 .74.134 1.448.38 2.103a3.503 3.503 0 0 1-1.855-2.68m14.95 0a3.503 3.503 0 0 1-1.854 2.68A5.984 5.984 0 0 0 16 5v-.91c.496.099.988.21 1.475.332\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"trophy-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.166 2.621v.858a47.68 47.68 0 0 0-3.071.543a.75.75 0 0 0-.584.859a6.753 6.753 0 0 0 6.138 5.6a6.73 6.73 0 0 0 2.743 1.346A6.707 6.707 0 0 1 9.279 15H8.54c-1.036 0-1.875.84-1.875 1.875V19.5h-.75a2.25 2.25 0 0 0-2.25 2.25c0 .414.336.75.75.75h15a.75.75 0 0 0 .75-.75a2.25 2.25 0 0 0-2.25-2.25h-.75v-2.625c0-1.036-.84-1.875-1.875-1.875h-.739a6.706 6.706 0 0 1-1.112-3.173a6.73 6.73 0 0 0 2.743-1.347a6.753 6.753 0 0 0 6.139-5.6a.75.75 0 0 0-.585-.858a47.077 47.077 0 0 0-3.07-.543V2.62a.75.75 0 0 0-.658-.744a49.22 49.22 0 0 0-6.093-.377c-2.063 0-4.096.128-6.093.377a.75.75 0 0 0-.657.744m0 2.629c0 1.196.312 2.32.857 3.294A5.266 5.266 0 0 1 3.16 5.337a45.6 45.6 0 0 1 2.006-.343zm13.5 0v-.256c.674.1 1.343.214 2.006.343a5.265 5.265 0 0 1-2.863 3.207a6.72 6.72 0 0 0 .857-3.294\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"truck\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.902 17.902 0 0 0-3.213-9.193a2.056 2.056 0 0 0-1.58-.86H14.25M16.5 18.75h-2.25m0-11.177v-.958c0-.568-.422-1.048-.987-1.106a48.554 48.554 0 0 0-10.026 0a1.106 1.106 0 0 0-.987 1.106v7.635m12-6.677v6.677m0 4.5v-4.5m0 0h-12\\\"/>\"\n    },\n    \"truck-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M6.5 3c-1.051 0-2.093.04-3.125.117A1.49 1.49 0 0 0 2 4.607V10.5h9V4.606c0-.771-.59-1.43-1.375-1.489A41.568 41.568 0 0 0 6.5 3M2 12v2.5A1.5 1.5 0 0 0 3.5 16h.041a3 3 0 0 1 5.918 0h.791a.75.75 0 0 0 .75-.75V12z\\\"/><path d=\\\"M6.5 18a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3m6.75-13a.75.75 0 0 0-.75.75v8.514a3.001 3.001 0 0 1 4.893 1.44c.37-.275.61-.719.595-1.227a24.905 24.905 0 0 0-1.784-8.549A1.486 1.486 0 0 0 14.823 5zm1.25 13a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"truck-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M3.375 4.5C2.339 4.5 1.5 5.34 1.5 6.375V13.5h12V6.375c0-1.036-.84-1.875-1.875-1.875zM13.5 15h-12v2.625c0 1.035.84 1.875 1.875 1.875h.375a3 3 0 1 1 6 0h3a.75.75 0 0 0 .75-.75z\\\"/><path d=\\\"M8.25 19.5a1.5 1.5 0 1 0-3 0a1.5 1.5 0 0 0 3 0m7.5-12.75a.75.75 0 0 0-.75.75v11.25c0 .087.015.17.042.248a3 3 0 0 1 5.958.464c.853-.175 1.522-.935 1.464-1.883a18.659 18.659 0 0 0-3.732-10.104a1.837 1.837 0 0 0-1.47-.725z\\\"/><path d=\\\"M19.5 19.5a1.5 1.5 0 1 0-3 0a1.5 1.5 0 0 0 3 0\\\"/></g>\"\n    },\n    \"tv\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6 20.25h12m-7.5-3v3m3-3v3m-10.125-3h17.25c.621 0 1.125-.504 1.125-1.125V4.875c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125\\\"/>\"\n    },\n    \"tv-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M4 5h12v7H4z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M1 3.5A1.5 1.5 0 0 1 2.5 2h15A1.5 1.5 0 0 1 19 3.5v10a1.5 1.5 0 0 1-1.5 1.5H12v1.5h3.25a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1 0-1.5H8V15H2.5A1.5 1.5 0 0 1 1 13.5zm16.5 0h-15v10h15z\\\" clip-rule=\\\"evenodd\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"tv-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path d=\\\"M19.5 6h-15v9h15z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"M3.375 3C2.339 3 1.5 3.84 1.5 4.875v11.25C1.5 17.16 2.34 18 3.375 18H9.75v1.5H6A.75.75 0 0 0 6 21h12a.75.75 0 0 0 0-1.5h-3.75V18h6.375c1.035 0 1.875-.84 1.875-1.875V4.875C22.5 3.839 21.66 3 20.625 3zm0 13.5h17.25a.375.375 0 0 0 .375-.375V4.875a.375.375 0 0 0-.375-.375H3.375A.375.375 0 0 0 3 4.875v11.25c0 .207.168.375.375.375\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"underline\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M18 3.75v7.5a6 6 0 0 1-12 0v-7.5m-2.25 16.5h16.5\\\"/>\"\n    },\n    \"underline-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M4.75 2a.75.75 0 0 1 .75.75V10a4.5 4.5 0 1 0 9 0V2.75a.75.75 0 0 1 1.5 0V10a6 6 0 0 1-12 0V2.75A.75.75 0 0 1 4.75 2m-2.5 16.25A.75.75 0 0 1 3 17.5h14a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"underline-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M6 3a.75.75 0 0 1 .75.75v7.5a5.25 5.25 0 1 0 10.5 0v-7.5a.75.75 0 0 1 1.5 0v7.5a6.75 6.75 0 0 1-13.5 0v-7.5A.75.75 0 0 1 6 3M3 20.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"user\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15.75 6a3.75 3.75 0 1 1-7.5 0a3.75 3.75 0 0 1 7.5 0M4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632\\\"/>\"\n    },\n    \"user-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10 8a3 3 0 1 0 0-6a3 3 0 0 0 0 6m-6.535 6.494a1.23 1.23 0 0 0 .41 1.41A9.957 9.957 0 0 0 10 18c2.31 0 4.438-.784 6.131-2.1c.43-.333.604-.903.408-1.41a7.002 7.002 0 0 0-13.074.003\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"user-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.964 0a9 9 0 1 0-11.963 0m11.962 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0\\\"/>\"\n    },\n    \"user-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18 10a8 8 0 1 1-16 0a8 8 0 0 1 16 0m-5.5-2.5a2.5 2.5 0 1 1-5 0a2.5 2.5 0 0 1 5 0M10 12a5.99 5.99 0 0 0-4.793 2.39A6.483 6.483 0 0 0 10 16.5a6.483 6.483 0 0 0 4.793-2.11A5.99 5.99 0 0 0 10 12\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"user-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M18.685 19.097A9.723 9.723 0 0 0 21.75 12c0-5.385-4.365-9.75-9.75-9.75S2.25 6.615 2.25 12a9.723 9.723 0 0 0 3.065 7.097A9.716 9.716 0 0 0 12 21.75a9.716 9.716 0 0 0 6.685-2.653m-12.54-1.285A7.486 7.486 0 0 1 12 15a7.486 7.486 0 0 1 5.855 2.812A8.224 8.224 0 0 1 12 20.25a8.224 8.224 0 0 1-5.855-2.438M15.75 9a3.75 3.75 0 1 1-7.5 0a3.75 3.75 0 0 1 7.5 0\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"user-group\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M18 18.72a9.094 9.094 0 0 0 3.741-.479a3 3 0 0 0-4.682-2.72m.94 3.198l.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 0 1 6 18.719m12 0a5.971 5.971 0 0 0-.941-3.197m0 0A5.995 5.995 0 0 0 12 12.75a5.995 5.995 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72a8.986 8.986 0 0 0 3.74.477m.94-3.197a5.971 5.971 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0m6 3a2.25 2.25 0 1 1-4.5 0a2.25 2.25 0 0 1 4.5 0m-13.5 0a2.25 2.25 0 1 1-4.5 0a2.25 2.25 0 0 1 4.5 0\\\"/>\"\n    },\n    \"user-group-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10 9a3 3 0 1 0 0-6a3 3 0 0 0 0 6M6 8a2 2 0 1 1-4 0a2 2 0 0 1 4 0m-4.51 7.326a.78.78 0 0 1-.358-.442a3 3 0 0 1 4.308-3.516a6.484 6.484 0 0 0-1.905 3.959c-.023.222-.014.442.025.654a4.97 4.97 0 0 1-2.07-.655m14.95.654a4.97 4.97 0 0 0 2.07-.654a.78.78 0 0 0 .357-.442a3 3 0 0 0-4.308-3.517a6.484 6.484 0 0 1 1.907 3.96a2.32 2.32 0 0 1-.026.654M18 8a2 2 0 1 1-4 0a2 2 0 0 1 4 0M5.304 16.19a.844.844 0 0 1-.277-.71a5 5 0 0 1 9.947 0a.843.843 0 0 1-.277.71A6.975 6.975 0 0 1 10 18a6.974 6.974 0 0 1-4.696-1.81\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"user-group-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M8.25 6.75a3.75 3.75 0 1 1 7.5 0a3.75 3.75 0 0 1-7.5 0m7.5 3a3 3 0 1 1 6 0a3 3 0 0 1-6 0m-13.5 0a3 3 0 1 1 6 0a3 3 0 0 1-6 0m4.06 5.368A6.745 6.745 0 0 1 12 12a6.745 6.745 0 0 1 6.709 7.498a.75.75 0 0 1-.372.568A12.696 12.696 0 0 1 12 21.75a12.69 12.69 0 0 1-6.337-1.684a.75.75 0 0 1-.372-.568a6.787 6.787 0 0 1 1.019-4.38\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M5.082 14.254a8.287 8.287 0 0 0-1.308 5.135a9.687 9.687 0 0 1-1.764-.44l-.115-.04a.563.563 0 0 1-.373-.487l-.01-.121a3.75 3.75 0 0 1 3.57-4.047m15.144 5.135a8.287 8.287 0 0 0-1.308-5.135a3.75 3.75 0 0 1 3.57 4.047l-.01.121a.563.563 0 0 1-.373.486l-.115.04c-.567.2-1.156.349-1.764.441\\\"/></g>\"\n    },\n    \"user-minus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M22 10.5h-6m-2.25-4.125a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0M4 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 10.374 21C8.043 21 5.862 20.355 4 19.234\\\"/>\"\n    },\n    \"user-minus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M11 5a3 3 0 1 1-6 0a3 3 0 0 1 6 0M2.046 15.253c-.058.468.172.92.57 1.175A9.953 9.953 0 0 0 8 18c1.982 0 3.83-.578 5.384-1.573c.398-.254.628-.707.57-1.175a6.001 6.001 0 0 0-11.908 0M12.75 7.75a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"user-minus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M10.375 2.25a4.125 4.125 0 1 0 0 8.25a4.125 4.125 0 0 0 0-8.25m0 9.75a7.125 7.125 0 0 0-7.124 7.247a.75.75 0 0 0 .363.63a13.067 13.067 0 0 0 6.761 1.873c2.472 0 4.786-.684 6.76-1.873a.75.75 0 0 0 .364-.63l.001-.12v-.002A7.125 7.125 0 0 0 10.375 12M16 9.75a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5z\\\"/>\"\n    },\n    \"user-plus\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M19 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0M4 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 10.374 21C8.043 21 5.862 20.355 4 19.234\\\"/>\"\n    },\n    \"user-plus-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M11 5a3 3 0 1 1-6 0a3 3 0 0 1 6 0M2.615 16.428a1.224 1.224 0 0 1-.569-1.175a6.002 6.002 0 0 1 11.908 0c.058.467-.172.92-.57 1.174A9.953 9.953 0 0 1 8 18a9.953 9.953 0 0 1-5.385-1.572M16.25 5.75a.75.75 0 0 0-1.5 0v2h-2a.75.75 0 0 0 0 1.5h2v2a.75.75 0 0 0 1.5 0v-2h2a.75.75 0 0 0 0-1.5h-2z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"user-plus-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M6.25 6.375a4.125 4.125 0 1 1 8.25 0a4.125 4.125 0 0 1-8.25 0m-3 12.75a7.125 7.125 0 0 1 14.25 0v.003l-.001.119a.75.75 0 0 1-.363.63a13.067 13.067 0 0 1-6.761 1.873c-2.472 0-4.786-.684-6.76-1.873a.75.75 0 0 1-.364-.63zM19.75 7.5a.75.75 0 0 0-1.5 0v2.25H16a.75.75 0 0 0 0 1.5h2.25v2.25a.75.75 0 0 0 1.5 0v-2.25H22a.75.75 0 0 0 0-1.5h-2.25z\\\"/>\"\n    },\n    \"user-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M7.5 6a4.5 4.5 0 1 1 9 0a4.5 4.5 0 0 1-9 0M3.751 20.105a8.25 8.25 0 0 1 16.498 0a.75.75 0 0 1-.437.695A18.683 18.683 0 0 1 12 22.5c-2.786 0-5.433-.608-7.812-1.7a.75.75 0 0 1-.437-.695\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"users\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M15 19.128a9.38 9.38 0 0 0 2.625.372a9.337 9.337 0 0 0 4.121-.952a4.125 4.125 0 0 0-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 0 1 8.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0 1 11.964-3.07M12 6.375a3.375 3.375 0 1 1-6.75 0a3.375 3.375 0 0 1 6.75 0m8.25 2.25a2.625 2.625 0 1 1-5.25 0a2.625 2.625 0 0 1 5.25 0\\\"/>\"\n    },\n    \"users-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M7 8a3 3 0 1 0 0-6a3 3 0 0 0 0 6m7.5 1a2.5 2.5 0 1 0 0-5a2.5 2.5 0 0 0 0 5M1.615 16.428a1.224 1.224 0 0 1-.569-1.175a6.002 6.002 0 0 1 11.908 0c.058.467-.172.92-.57 1.174A9.953 9.953 0 0 1 7 18a9.953 9.953 0 0 1-5.385-1.572M14.5 16h-.106c.07-.297.088-.611.048-.933a7.47 7.47 0 0 0-1.588-3.755a4.502 4.502 0 0 1 5.874 2.636a.818.818 0 0 1-.36.98A7.465 7.465 0 0 1 14.5 16\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"users-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M4.5 6.375a4.125 4.125 0 1 1 8.25 0a4.125 4.125 0 0 1-8.25 0m9.75 2.25a3.375 3.375 0 1 1 6.75 0a3.375 3.375 0 0 1-6.75 0M1.5 19.125a7.125 7.125 0 0 1 14.25 0v.003l-.001.119a.75.75 0 0 1-.363.63a13.067 13.067 0 0 1-6.761 1.873c-2.472 0-4.786-.684-6.76-1.873a.75.75 0 0 1-.364-.63zm15.75.003l-.001.144a2.25 2.25 0 0 1-.233.96a10.088 10.088 0 0 0 5.06-1.01a.75.75 0 0 0 .42-.643a4.875 4.875 0 0 0-6.957-4.611a8.586 8.586 0 0 1 1.71 5.157z\\\"/>\"\n    },\n    \"variable\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M4.745 3A23.933 23.933 0 0 0 3 12c0 3.183.62 6.22 1.745 9M19.5 3c.967 2.78 1.5 5.817 1.5 9s-.533 6.22-1.5 9M8.25 8.885l1.444-.89a.75.75 0 0 1 1.105.402l2.402 7.206a.75.75 0 0 0 1.104.401l1.445-.889m-8.25.75l.213.09a1.687 1.687 0 0 0 2.062-.617l4.45-6.676a1.688 1.688 0 0 1 2.062-.618l.213.09\\\"/>\"\n    },\n    \"variable-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M15.212 2.079a.75.75 0 0 1 1.006.336A16.932 16.932 0 0 1 18 10c0 2.724-.641 5.3-1.782 7.585a.75.75 0 1 1-1.342-.67A15.432 15.432 0 0 0 16.5 10c0-2.486-.585-4.834-1.624-6.915a.75.75 0 0 1 .336-1.006m-10.424 0a.75.75 0 0 1 .336 1.006A15.433 15.433 0 0 0 3.5 10c0 2.486.585 4.834 1.624 6.915a.75.75 0 1 1-1.342.67A16.933 16.933 0 0 1 2 10c0-2.724.641-5.3 1.782-7.585a.75.75 0 0 1 1.006-.336m2.285 3.554a1.5 1.5 0 0 1 2.219.677l.856 2.08l1.146-1.77a2.25 2.25 0 0 1 3.137-.65l.235.156a.75.75 0 1 1-.832 1.248l-.235-.156a.75.75 0 0 0-1.045.216l-1.71 2.644l1.251 3.04l.739-.492a.75.75 0 1 1 .832 1.248l-.739.493a1.5 1.5 0 0 1-2.219-.677l-.856-2.08l-1.146 1.77a2.25 2.25 0 0 1-3.137.65l-.235-.156a.75.75 0 0 1 .832-1.248l.235.157a.75.75 0 0 0 1.045-.217l1.71-2.644l-1.251-3.04l-.739.492a.75.75 0 0 1-.832-1.248z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"variable-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19.254 2.292a.75.75 0 0 1 .954.461A28.123 28.123 0 0 1 21.75 12a28.13 28.13 0 0 1-1.542 9.247a.75.75 0 1 1-1.416-.494c.94-2.7 1.458-5.654 1.458-8.753s-.519-6.054-1.458-8.754a.75.75 0 0 1 .461-.954m-14.228.013a.75.75 0 0 1 .414.976A23.183 23.183 0 0 0 3.75 12c0 3.085.6 6.027 1.69 8.718a.75.75 0 0 1-1.39.563c-1.161-2.867-1.8-6-1.8-9.281c0-3.28.639-6.414 1.8-9.281a.75.75 0 0 1 .976-.414m4.275 5.052a1.5 1.5 0 0 1 2.21.803l.716 2.148L13.6 8.246a2.438 2.438 0 0 1 2.978-.892l.213.09a.75.75 0 1 1-.584 1.381l-.214-.09a.937.937 0 0 0-1.145.343l-2.021 3.033l1.084 3.255l1.445-.89a.75.75 0 1 1 .786 1.278l-1.444.889a1.5 1.5 0 0 1-2.21-.803l-.716-2.148l-1.374 2.062a2.437 2.437 0 0 1-2.978.892l-.213-.09a.75.75 0 0 1 .584-1.381l.214.09a.938.938 0 0 0 1.145-.344l2.021-3.032l-1.084-3.255l-1.445.89a.75.75 0 1 1-.786-1.278z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"video-camera\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m15.75 10.5l4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25Z\\\"/>\"\n    },\n    \"video-camera-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.25 4A2.25 2.25 0 0 0 1 6.25v7.5A2.25 2.25 0 0 0 3.25 16h7.5A2.25 2.25 0 0 0 13 13.75v-7.5A2.25 2.25 0 0 0 10.75 4zM19 4.75a.75.75 0 0 0-1.28-.53l-3 3a.75.75 0 0 0-.22.53v4.5c0 .199.079.39.22.53l3 3a.75.75 0 0 0 1.28-.53z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"video-camera-slash\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m15.75 10.5l4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M12 18.75H4.5a2.25 2.25 0 0 1-2.25-2.25V9m12.841 9.091L16.5 19.5m-1.409-1.409c.407-.407.659-.97.659-1.591v-9a2.25 2.25 0 0 0-2.25-2.25h-9c-.621 0-1.184.252-1.591.659m12.182 12.182L2.909 5.909M1.5 4.5l1.409 1.409\\\"/>\"\n    },\n    \"video-camera-slash-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M1 13.75V7.182L9.818 16H3.25A2.25 2.25 0 0 1 1 13.75m12-7.5v6.568L4.182 4h6.568A2.25 2.25 0 0 1 13 6.25m6-1.5a.75.75 0 0 0-1.28-.53l-3 3a.75.75 0 0 0-.22.53v4.5c0 .199.079.39.22.53l3 3a.75.75 0 0 0 1.28-.53zM2.28 4.22a.75.75 0 0 0-1.06 1.06l10.5 10.5a.75.75 0 1 0 1.06-1.06z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"video-camera-slash-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M3.53 2.47a.75.75 0 0 0-1.06 1.06l18 18a.75.75 0 1 0 1.06-1.06zM22.5 17.69c0 .471-.202.86-.504 1.124l-4.746-4.746V7.939l2.69-2.689c.944-.945 2.56-.276 2.56 1.06zM15.75 7.5v5.068L7.682 4.5h5.068a3 3 0 0 1 3 3M1.5 7.5c0-.782.3-1.494.79-2.028l12.846 12.846A2.995 2.995 0 0 1 12.75 19.5H4.5a3 3 0 0 1-3-3z\\\"/>\"\n    },\n    \"video-camera-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M4.5 4.5a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h8.25a3 3 0 0 0 3-3v-9a3 3 0 0 0-3-3zm15.44 14.25l-2.69-2.69V7.94l2.69-2.69c.944-.945 2.56-.276 2.56 1.06v11.38c0 1.336-1.616 2.005-2.56 1.06\\\"/>\"\n    },\n    \"view-columns\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M9 4.5v15m6-15v15m-10.875 0h15.75c.621 0 1.125-.504 1.125-1.125V5.625c0-.621-.504-1.125-1.125-1.125H4.125C3.504 4.5 3 5.004 3 5.625v12.75c0 .621.504 1.125 1.125 1.125\\\"/>\"\n    },\n    \"view-columns-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M14 17h2.75A2.25 2.25 0 0 0 19 14.75v-9.5A2.25 2.25 0 0 0 16.75 3H14zM12.5 3h-5v14h5zM3.25 3H6v14H3.25A2.25 2.25 0 0 1 1 14.75v-9.5A2.25 2.25 0 0 1 3.25 3\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"view-columns-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M15 3.75H9v16.5h6zm1.5 16.5h3.375c1.035 0 1.875-.84 1.875-1.875V5.625c0-1.036-.84-1.875-1.875-1.875H16.5zM4.125 3.75H7.5v16.5H4.125a1.875 1.875 0 0 1-1.875-1.875V5.625c0-1.036.84-1.875 1.875-1.875\\\"/>\"\n    },\n    \"viewfinder-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M7.5 3.75H6A2.25 2.25 0 0 0 3.75 6v1.5M16.5 3.75H18A2.25 2.25 0 0 1 20.25 6v1.5m0 9V18A2.25 2.25 0 0 1 18 20.25h-1.5m-9 0H6A2.25 2.25 0 0 1 3.75 18v-1.5M15 12a3 3 0 1 1-6 0a3 3 0 0 1 6 0\\\"/>\"\n    },\n    \"viewfinder-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M4.25 2A2.25 2.25 0 0 0 2 4.25v2a.75.75 0 0 0 1.5 0v-2a.75.75 0 0 1 .75-.75h2a.75.75 0 0 0 0-1.5zm9.5 0a.75.75 0 0 0 0 1.5h2a.75.75 0 0 1 .75.75v2a.75.75 0 0 0 1.5 0v-2A2.25 2.25 0 0 0 15.75 2zM3.5 13.75a.75.75 0 0 0-1.5 0v2A2.25 2.25 0 0 0 4.25 18h2a.75.75 0 0 0 0-1.5h-2a.75.75 0 0 1-.75-.75zm14.5 0a.75.75 0 0 0-1.5 0v2a.75.75 0 0 1-.75.75h-2a.75.75 0 0 0 0 1.5h2A2.25 2.25 0 0 0 18 15.75zM7 10a3 3 0 1 1 6 0a3 3 0 0 1-6 0\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"viewfinder-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M6 3a3 3 0 0 0-3 3v1.5a.75.75 0 0 0 1.5 0V6A1.5 1.5 0 0 1 6 4.5h1.5a.75.75 0 0 0 0-1.5zm10.5 0a.75.75 0 0 0 0 1.5H18A1.5 1.5 0 0 1 19.5 6v1.5a.75.75 0 0 0 1.5 0V6a3 3 0 0 0-3-3zM12 8.25a3.75 3.75 0 1 0 0 7.5a3.75 3.75 0 0 0 0-7.5M4.5 16.5a.75.75 0 0 0-1.5 0V18a3 3 0 0 0 3 3h1.5a.75.75 0 0 0 0-1.5H6A1.5 1.5 0 0 1 4.5 18zm16.5 0a.75.75 0 0 0-1.5 0V18a1.5 1.5 0 0 1-1.5 1.5h-1.5a.75.75 0 0 0 0 1.5H18a3 3 0 0 0 3-3z\\\"/>\"\n    },\n    \"wallet\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M21 12a2.25 2.25 0 0 0-2.25-2.25H15a3 3 0 1 1-6 0H5.25A2.25 2.25 0 0 0 3 12m18 0v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 9m18 0V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v3\\\"/>\"\n    },\n    \"wallet-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M1 4.25a3.733 3.733 0 0 1 2.25-.75h13.5c.844 0 1.623.279 2.25.75A2.25 2.25 0 0 0 16.75 2H3.25A2.25 2.25 0 0 0 1 4.25m0 3a3.733 3.733 0 0 1 2.25-.75h13.5c.844 0 1.623.279 2.25.75A2.25 2.25 0 0 0 16.75 5H3.25A2.25 2.25 0 0 0 1 7.25M7 8a1 1 0 0 1 1 1a2 2 0 1 0 4 0a1 1 0 0 1 1-1h3.75A2.25 2.25 0 0 1 19 10.25v5.5A2.25 2.25 0 0 1 16.75 18H3.25A2.25 2.25 0 0 1 1 15.75v-5.5A2.25 2.25 0 0 1 3.25 8z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"wallet-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M2.273 5.625A4.483 4.483 0 0 1 5.25 4.5h13.5c1.141 0 2.183.425 2.977 1.125A3 3 0 0 0 18.75 3H5.25a3 3 0 0 0-2.977 2.625m0 3A4.483 4.483 0 0 1 5.25 7.5h13.5c1.141 0 2.183.425 2.977 1.125A3 3 0 0 0 18.75 6H5.25a3 3 0 0 0-2.977 2.625M5.25 9a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h13.5a3 3 0 0 0 3-3v-6a3 3 0 0 0-3-3H15a.75.75 0 0 0-.75.75a2.25 2.25 0 0 1-4.5 0A.75.75 0 0 0 9 9z\\\"/>\"\n    },\n    \"wifi\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M8.288 15.038a5.25 5.25 0 0 1 7.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0M12.53 18.22l-.53.53l-.53-.53a.75.75 0 0 1 1.06 0\\\"/>\"\n    },\n    \"wifi-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M.676 6.941A12.964 12.964 0 0 1 10 3c3.657 0 6.963 1.511 9.324 3.941a.75.75 0 0 1-.008 1.053l-.353.354a.75.75 0 0 1-1.069-.008C15.894 6.28 13.097 5 10 5C6.903 5 4.106 6.28 2.106 8.34a.75.75 0 0 1-1.069.008l-.353-.354a.75.75 0 0 1-.008-1.053m2.825 2.833A8.976 8.976 0 0 1 10 7a8.976 8.976 0 0 1 6.499 2.774a.75.75 0 0 1-.011 1.049l-.354.354a.75.75 0 0 1-1.072-.012A6.978 6.978 0 0 0 10 9c-1.99 0-3.786.83-5.061 2.165a.75.75 0 0 1-1.073.012l-.354-.354a.75.75 0 0 1-.01-1.05m2.82 2.84A4.989 4.989 0 0 1 10 11c1.456 0 2.767.623 3.68 1.614a.75.75 0 0 1-.022 1.039l-.354.354a.75.75 0 0 1-1.085-.026A2.99 2.99 0 0 0 10 13c-.88 0-1.67.377-2.22.981a.75.75 0 0 1-1.084.026l-.354-.354a.75.75 0 0 1-.021-1.039m2.795 2.752a1.248 1.248 0 0 1 1.768 0a.75.75 0 0 1 0 1.06l-.354.354a.75.75 0 0 1-1.06 0l-.354-.353a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"wifi-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M1.371 8.143c5.858-5.857 15.356-5.857 21.214 0a.75.75 0 0 1 0 1.061l-.53.53a.75.75 0 0 1-1.061 0c-4.98-4.979-13.053-4.979-18.032 0a.75.75 0 0 1-1.06 0l-.53-.53a.75.75 0 0 1 0-1.06m3.182 3.182c4.1-4.1 10.749-4.1 14.85 0a.75.75 0 0 1 0 1.061l-.53.53a.75.75 0 0 1-1.062 0a8.25 8.25 0 0 0-11.667 0a.75.75 0 0 1-1.06 0l-.53-.53a.75.75 0 0 1 0-1.06m3.204 3.182a6 6 0 0 1 8.486 0a.75.75 0 0 1 0 1.061l-.53.53a.75.75 0 0 1-1.061 0a3.75 3.75 0 0 0-5.304 0a.75.75 0 0 1-1.06 0l-.53-.53a.75.75 0 0 1 0-1.06m3.182 3.182a1.5 1.5 0 0 1 2.122 0a.75.75 0 0 1 0 1.061l-.53.53a.75.75 0 0 1-1.061 0l-.53-.53a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"window\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M3 8.25V18a2.25 2.25 0 0 0 2.25 2.25h13.5A2.25 2.25 0 0 0 21 18V8.25m-18 0V6a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 6v2.25m-18 0h18M5.25 6h.008v.008H5.25zM7.5 6h.008v.008H7.5zm2.25 0h.008v.008H9.75z\\\"/>\"\n    },\n    \"window-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M3.25 3A2.25 2.25 0 0 0 1 5.25v9.5A2.25 2.25 0 0 0 3.25 17h13.5A2.25 2.25 0 0 0 19 14.75v-9.5A2.25 2.25 0 0 0 16.75 3zM2.5 9v5.75c0 .414.336.75.75.75h13.5a.75.75 0 0 0 .75-.75V9zM4 5.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V6a.75.75 0 0 0-.75-.75zM6.25 6A.75.75 0 0 1 7 5.25h.01a.75.75 0 0 1 .75.75v.01a.75.75 0 0 1-.75.75H7a.75.75 0 0 1-.75-.75zM10 5.25a.75.75 0 0 0-.75.75v.01c0 .414.336.75.75.75h.01a.75.75 0 0 0 .75-.75V6a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"window-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M2.25 6a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3zm18 3H3.75v9a1.5 1.5 0 0 0 1.5 1.5h13.5a1.5 1.5 0 0 0 1.5-1.5zm-15-3.75A.75.75 0 0 0 4.5 6v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V6a.75.75 0 0 0-.75-.75zm1.5.75a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75H7.5a.75.75 0 0 1-.75-.75zm3-.75A.75.75 0 0 0 9 6v.008c0 .414.336.75.75.75h.008a.75.75 0 0 0 .75-.75V6a.75.75 0 0 0-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"wrench\": {\n      \"body\": \"<g fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\"><path d=\\\"M21.75 6.75a4.5 4.5 0 0 1-4.884 4.484c-1.076-.091-2.264.071-2.95.904l-7.152 8.684a2.548 2.548 0 1 1-3.586-3.586l8.684-7.151c.833-.687.995-1.875.904-2.95a4.5 4.5 0 0 1 6.336-4.486l-3.276 3.275a3.004 3.004 0 0 0 2.25 2.25l3.276-3.276c.256.565.398 1.192.398 1.852\\\"/><path d=\\\"M4.867 19.125h.008v.008h-.008z\\\"/></g>\"\n    },\n    \"wrench-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M19 5.5a4.5 4.5 0 0 1-4.791 4.49c-.873-.055-1.808.128-2.368.8l-6.024 7.23a2.724 2.724 0 1 1-3.837-3.837L9.21 8.16c.672-.56.855-1.495.8-2.368a4.5 4.5 0 0 1 5.873-4.575c.324.105.39.51.15.752L13.34 4.66a.455.455 0 0 0-.11.494a3.01 3.01 0 0 0 1.617 1.617c.17.07.363.02.493-.111l2.692-2.692c.241-.241.647-.174.752.15c.14.435.216.9.216 1.382M4 17a1 1 0 1 0 0-2a1 1 0 0 0 0 2\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"wrench-screwdriver\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M11.42 15.17L17.25 21A2.652 2.652 0 0 0 21 17.25l-5.877-5.877M11.42 15.17l2.496-3.03c.317-.384.74-.626 1.208-.766M11.42 15.17l-4.655 5.653a2.548 2.548 0 1 1-3.586-3.586l6.837-5.63m5.108-.233c.55-.164 1.163-.188 1.743-.14a4.5 4.5 0 0 0 4.486-6.336l-3.276 3.277a3.004 3.004 0 0 1-2.25-2.25l3.276-3.276a4.5 4.5 0 0 0-6.336 4.486c.091 1.076-.071 2.264-.904 2.95l-.102.085m-1.745 1.437L5.909 7.5H4.5L2.25 3.75l1.5-1.5L7.5 4.5v1.409l4.26 4.26m-1.745 1.437l1.745-1.437m6.615 8.206L15.75 15.75M4.867 19.125h.008v.008h-.008z\\\"/>\"\n    },\n    \"wrench-screwdriver-20-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M14.5 10a4.5 4.5 0 0 0 4.284-5.882c-.105-.324-.51-.391-.751-.15L15.34 6.66a.454.454 0 0 1-.493.11a3.01 3.01 0 0 1-1.618-1.616a.455.455 0 0 1 .11-.494l2.694-2.692c.24-.241.174-.647-.15-.752a4.5 4.5 0 0 0-5.873 4.575c.055.873-.128 1.808-.8 2.368l-7.23 6.024a2.724 2.724 0 1 0 3.837 3.837l6.024-7.23c.56-.672 1.495-.855 2.368-.8c.096.007.193.01.291.01M5 16a1 1 0 1 1-2 0a1 1 0 0 1 2 0\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"M14.5 11.5c.173 0 .345-.007.514-.022l3.754 3.754a2.5 2.5 0 0 1-3.536 3.536l-4.41-4.41l2.172-2.607c.052-.062.147-.138.342-.196a2.28 2.28 0 0 1 .777-.067c.128.008.257.012.387.012M6 4.586l2.33 2.33a.452.452 0 0 1-.08.09L6.8 8.214L4.586 6H3.309a.5.5 0 0 1-.447-.276l-1.7-3.402a.5.5 0 0 1 .093-.577l.49-.49a.5.5 0 0 1 .577-.094l3.402 1.7A.5.5 0 0 1 6 3.31z\\\"/></g>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"wrench-screwdriver-solid\": {\n      \"body\": \"<g fill=\\\"currentColor\\\"><path fill-rule=\\\"evenodd\\\" d=\\\"M12 6.75a5.25 5.25 0 0 1 6.775-5.025a.75.75 0 0 1 .313 1.248l-3.32 3.319a2.248 2.248 0 0 0 1.941 1.939l3.318-3.319a.75.75 0 0 1 1.248.313a5.25 5.25 0 0 1-5.472 6.756c-1.018-.086-1.87.1-2.309.634L7.344 21.3A3.298 3.298 0 1 1 2.7 16.657l8.684-7.151c.533-.44.72-1.291.634-2.309A5.342 5.342 0 0 1 12 6.75M4.117 19.125a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/><path d=\\\"m10.076 8.64l-2.201-2.2V4.874a.75.75 0 0 0-.364-.643l-3.75-2.25a.75.75 0 0 0-.916.113l-.75.75a.75.75 0 0 0-.113.916l2.25 3.75a.75.75 0 0 0 .643.364h1.564l2.062 2.062z\\\"/><path fill-rule=\\\"evenodd\\\" d=\\\"m12.556 17.329l4.183 4.182a3.375 3.375 0 0 0 4.773-4.773l-3.306-3.305a6.803 6.803 0 0 1-1.53.043c-.394-.034-.682-.006-.867.042a.589.589 0 0 0-.167.063zm3.414-1.36a.75.75 0 0 1 1.06 0l1.875 1.876a.75.75 0 1 1-1.06 1.06L15.97 17.03a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/></g>\"\n    },\n    \"wrench-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 6.75a5.25 5.25 0 0 1 6.775-5.025a.75.75 0 0 1 .313 1.248l-3.32 3.319a2.248 2.248 0 0 0 1.941 1.939l3.318-3.319a.75.75 0 0 1 1.248.313a5.25 5.25 0 0 1-5.472 6.756c-1.018-.086-1.87.1-2.309.634L7.344 21.3A3.298 3.298 0 1 1 2.7 16.657l8.684-7.151c.533-.44.72-1.291.634-2.309A5.342 5.342 0 0 1 12 6.75M4.117 19.125a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"x-circle\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"m9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0\\\"/>\"\n    },\n    \"x-circle-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16M8.28 7.22a.75.75 0 0 0-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06L10 11.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L11.06 10l1.72-1.72a.75.75 0 0 0-1.06-1.06L10 8.94z\\\" clip-rule=\\\"evenodd\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"x-circle-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m-1.72 6.97a.75.75 0 1 0-1.06 1.06L10.94 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06L12 13.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L13.06 12l1.72-1.72a.75.75 0 1 0-1.06-1.06L12 10.94z\\\" clip-rule=\\\"evenodd\\\"/>\"\n    },\n    \"x-mark\": {\n      \"body\": \"<path fill=\\\"none\\\" stroke=\\\"currentColor\\\" stroke-linecap=\\\"round\\\" stroke-linejoin=\\\"round\\\" stroke-width=\\\"1.5\\\" d=\\\"M6 18L18 6M6 6l12 12\\\"/>\"\n    },\n    \"x-mark-20-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" d=\\\"M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94z\\\"/>\",\n      \"width\": 20,\n      \"height\": 20\n    },\n    \"x-mark-solid\": {\n      \"body\": \"<path fill=\\\"currentColor\\\" fill-rule=\\\"evenodd\\\" d=\\\"M5.47 5.47a.75.75 0 0 1 1.06 0L12 10.94l5.47-5.47a.75.75 0 1 1 1.06 1.06L13.06 12l5.47 5.47a.75.75 0 1 1-1.06 1.06L12 13.06l-5.47 5.47a.75.75 0 0 1-1.06-1.06L10.94 12L5.47 6.53a.75.75 0 0 1 0-1.06\\\" clip-rule=\\\"evenodd\\\"/>\"\n    }\n  },\n  \"aliases\": {\n    \"code-solid\": {\n      \"parent\": \"code-bracket-solid\"\n    },\n    \"code-square-solid\": {\n      \"parent\": \"code-bracket-square-solid\"\n    },\n    \"exclaimation-circle\": {\n      \"parent\": \"exclamation-circle\"\n    },\n    \"exclaimation-circle-solid\": {\n      \"parent\": \"exclamation-circle-solid\"\n    },\n    \"exclaimation-triangle\": {\n      \"parent\": \"exclamation-triangle\"\n    },\n    \"exclaimation-triangle-solid\": {\n      \"parent\": \"exclamation-triangle-solid\"\n    }\n  },\n  \"suffixes\": {\n    \"\": \"Outline 24x24\",\n    \"solid\": \"Solid 24x24\",\n    \"20-solid\": \"Solid 20x20\"\n  },\n  \"width\": 24,\n  \"height\": 24\n}\n"
  },
  {
    "path": "modules/blox/data/languages.yaml",
    "content": "'ar': 'عربي'\n'bn': 'বাংলা'\n'ca': 'Català'\n'cs': 'Česky'\n'da': 'Dansk'\n'de': 'Deutsch'\n'el': 'Ελληνικά'\n'en': 'English'\n'es': 'Español'\n'et': 'Eesti'\n'eu': 'Euskara'\n'fa': 'فارسی'\n'fi': 'Suomi'\n'fr': 'Français'\n'he': 'עברית'\n'hr': 'Hrvatski'\n'hu': 'Magyar'\n'ht': 'kréyol'\n'id': 'Bahasa Indonesia'\n'it': 'Italiano'\n'ja': '日本語'\n'km': 'ភាសាខ្មែរ'\n'ko': '한국어'\n'lt': 'Lietuvių'\n'lv': 'Latviešu'\n'mg': 'Malagasy'\n'ms': 'Bahasa Melayu (Rumi)'\n'ms-Arab': 'بهاس ملايو (جاوي)'\n'nb': 'Norsk bokmål'\n'nl': 'Nederlands'\n'pl': 'Polski'\n'pt': 'Português'\n'ro': 'Română'\n'ru': 'Русский'\n'so': 'Soomaali'\n'sv': 'Svenska'\n'tr': 'Türkçe'\n'uk': 'Українська'\n'vi': 'Tiếng Việt'\n'zh': '中文 (简体)'\n'zh-hant': '中文 (繁體)'\n"
  },
  {
    "path": "modules/blox/data/link_types.yaml",
    "content": "types:\n  pdf:\n    label_i18n: btn_pdf\n    icon: hero/document-text\n  preprint:\n    label_i18n: btn_preprint\n    icon: hero/document-text\n  doi:\n    label_i18n: btn_doi\n    icon: hero/link\n  code:\n    label_i18n: btn_code\n    icon: hero/code-bracket\n  dataset:\n    label_i18n: btn_dataset\n    icon: hero/circle-stack\n  model:\n    label_i18n: btn_model\n    icon: hero/link\n  slides:\n    label_i18n: btn_slides\n    icon: hero/presentation-chart-bar\n  video:\n    label_i18n: btn_video\n    icon: hero/video-camera\n  poster:\n    label_i18n: btn_poster\n    icon: hero/photo\n  project:\n    label_i18n: btn_project\n    icon: hero/link\n  site:\n    label_i18n: btn_site\n    icon: hero/link\n  source:\n    label_i18n: btn_source\n    icon: hero/document\n  bibtex:\n    label_i18n: btn_cite\n    icon: hero/document-duplicate\n  canonical:\n    label_i18n: btn_canonical\n    icon: hero/link\n  crosspost:\n    label_i18n: btn_crosspost\n    icon: hero/link\n  discussion:\n    label_i18n: btn_discussion\n    icon: hero/link\n  event:\n    label_i18n: btn_event\n    icon: hero/calendar\n  calendar:\n    label_i18n: btn_calendar\n    icon: hero/calendar\n  registration:\n    label_i18n: btn_registration\n    icon: hero/link\n  demo:\n    label_i18n: btn_demo\n    icon: hero/link\n\n# Mapping of identifier keys under `hugoblox.ids` to derived links\nderived:\n  doi:\n    type: doi\n    label_i18n: btn_doi\n    icon: hero/link\n    url_template: \"https://doi.org/{id}\"\n  arxiv:\n    type: preprint\n    label_i18n: btn_preprint\n    icon: hero/document-text\n    url_template: \"https://arxiv.org/abs/{id}\"\n  openreview:\n    type: preprint\n    label_i18n: btn_preprint\n    icon: hero/document-text\n    url_template: \"https://openreview.net/forum?id={id}\"\n  acl_id:\n    type: source\n    label_i18n: btn_source\n    icon: hero/document\n    url_template: \"https://aclanthology.org/{id}\"\n  hal:\n    type: source\n    label_i18n: btn_hal\n    icon: hero/document\n    url_template: \"https://hal.science/{id}\"\n  dblp:\n    type: source\n    label_i18n: btn_dblp\n    icon: hero/document\n    url_template: \"https://dblp.org/rec/{id}.html\"\n  isbn:\n    type: source\n    label_i18n: btn_isbn\n    icon: hero/document\n    url_template: \"https://openlibrary.org/isbn/{id}\"\n  osf:\n    type: source\n    label_i18n: btn_osf\n    icon: hero/document\n    url_template: \"https://osf.io/{id}\"\n  zenodo:\n    type: source\n    label_i18n: btn_zenodo\n    icon: hero/document\n    url_template: \"https://zenodo.org/records/{id}\"\n  kaggle_dataset:\n    type: dataset\n    label_i18n: btn_kaggle\n    icon: hero/circle-stack\n    url_template: \"https://www.kaggle.com/datasets/{id}\"\n  kaggle_competition:\n    type: site\n    label_i18n: btn_kaggle\n    icon: hero/link\n    url_template: \"https://www.kaggle.com/competitions/{id}\"\n  openalex:\n    type: source\n    label_i18n: btn_openalex\n    icon: hero/document\n    url_template: \"https://openalex.org/{id}\"\n  semanticscholar:\n    type: source\n    label_i18n: btn_semanticscholar\n    icon: hero/document\n    url_template: \"https://www.semanticscholar.org/paper/{id}\"\n  pwc:\n    type: site\n    label_i18n: btn_pwc\n    icon: hero/link\n    url_template: \"https://paperswithcode.com/paper/{id}\"\n  huggingface_model:\n    type: model\n    label_i18n: btn_model\n    icon: hero/link\n    url_template: \"https://huggingface.co/{id}\"\n  huggingface_dataset:\n    type: dataset\n    label_i18n: btn_dataset\n    icon: hero/circle-stack\n    url_template: \"https://huggingface.co/datasets/{id}\"\n  huggingface_space:\n    type: demo\n    label_i18n: btn_demo\n    icon: hero/link\n    url_template: \"https://huggingface.co/spaces/{id}\"\n\n"
  },
  {
    "path": "modules/blox/data/page_sharer.yaml",
    "content": "# Hugo Blox\n# Social sharing links\n# Docs: https://docs.hugoblox.com/reference/page-sharer/\n\nlinks:\n  - id: x\n    url: 'https://x.com/intent/tweet?url={url}&text={title}'\n    title: X\n    icon: brands/x\n    enable: true\n  - id: facebook\n    url: 'https://www.facebook.com/sharer.php?u={url}&t={title}'\n    title: Facebook\n    icon: brands/facebook\n    enable: true\n  - id: email\n    url: 'mailto:?subject={title}&body={url}'\n    title: Email\n    icon: hero/at-symbol\n    enable: true\n  - id: linkedin\n    url: 'https://www.linkedin.com/shareArticle?url={url}&title={title}'\n    title: LinkedIn\n    icon: brands/linkedin\n    enable: true\n  - id: whatsapp\n    url: 'whatsapp://send?text={title}%20{url}'\n    title: WhatsApp\n    icon: brands/whatsapp\n    enable: true\n#  - id: weibo\n#    url: 'https://service.weibo.com/share/share.php?url={url}&title={title}'\n#    title: Weibo\n#    icon: weibo\n#    enable: true\n#  - id: reddit\n#    url: 'https://reddit.com/submit?url={url}&title={title}'\n#    title: Reddit\n#    icon: brands/reddit\n#    enable: false\n#  - id: pinterest\n#    url: 'https://pinterest.com/pin/create/link/?url={url}&description={title}'\n#    title: Pinterest\n#    icon: pinterest\n#    enable: false\n#  - id: xing\n#    url: 'https://www.xing.com/spi/shares/new?url={url}&title={title}'\n#    title: Xing\n#    icon: xing\n#    enable: false\n#  - id: tumblr\n#    url: 'https://www.tumblr.com/widgets/share/tool?canonicalUrl={url}&title={title}'\n#    title: Tumblr\n#    icon: tumblr\n#    enable: false\n"
  },
  {
    "path": "modules/blox/data/themes/coffee.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Coffee\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Warm latte light mode, deep americano dark mode\"\n\n  type: \"dual\"\n\n  light:\n    # \"Latte\" - Warm, creamy, light\n    colors:\n      primary: \"#3b2313\" # Mocha/Coffee bean\n      secondary: \"#d97706\" # Caramel/Amber\n      neutral: \"#78716c\" # Stone\n    surfaces:\n      background: \"#fffaf5\" # Warm cream/milk foam\n      foreground: \"#3b2313\" # Espresso text\n      header:\n        background: \"#f5efe9\" # Visible header band (same as footer)\n        foreground: \"#3b2313\"\n      footer:\n        background: \"#f5efe9\" # Slightly darker latte foam\n        foreground: \"#5c4033\"\n\n  dark:\n    # \"Americano\" - Deep, dark, intense\n    colors:\n      primary: \"#d49255\" # Warm Orange/Brown crema\n      secondary: \"#395260\" # Cool Slate Blue\n      neutral: \"#2b262b\" # Deep Espresso (Dark Neutral)\n    surfaces:\n      background: \"#2b262b\" # Deep Espresso\n      foreground: \"#e0cab6\" # Crema\n      header:\n        background: \"#2b262b\"\n        foreground: \"#e0cab6\"\n      footer:\n        background: \"#231f23\" # Darker roast\n        foreground: \"#9ca3af\"\n"
  },
  {
    "path": "modules/blox/data/themes/contrast.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Contrast\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"High contrast with inverted header\"\n\n  type: \"dual\"\n\n  light:\n    colors:\n      primary: \"indigo\"\n      secondary: \"blue\"\n    surfaces:\n      background: \"#ffffff\"\n      foreground: \"#111827\"\n      header:\n        foreground: \"#ffffff\"\n        background: \"#0f172a\"\n      footer:\n        background: \"#f3f4f6\"\n        foreground: \"#0f172a\"\n\n  dark:\n    colors:\n      primary: \"blue\"\n      secondary: \"teal\"\n    surfaces:\n      background: \"#0f172a\"\n      foreground: \"#f8fafc\"\n      header:\n        foreground: \"#0f172a\"\n        background: \"#f8fafc\"\n      footer:\n        background: \"#111827\"\n        foreground: \"#e5e7eb\"\n"
  },
  {
    "path": "modules/blox/data/themes/cupcake.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Cupcake\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Sweet pastry pinks and berry accents\"\n\n  type: \"dual\"\n\n  light:\n    colors:\n      primary: \"#e779c1\" # Frosting Pink\n      secondary: \"#d946ef\" # Deep Purple/Fuchsia\n      neutral: \"#5c4033\" # Chocolate/Dark Brown\n    surfaces:\n      background: \"#faf7f5\" # Vanilla/Sugar\n      foreground: \"#7d1f39\" # Berry Jam\n      header:\n        background: \"#fff0f5\" # LavenderBlush - slight pink tint\n        foreground: \"#7d1f39\"\n      footer:\n        background: \"#f3e8e8\" # Light Pink Foam\n        foreground: \"#7d1f39\"\n\n  dark:\n    # \"Dark Berry\" - Rich, vibrant, fruity\n    colors:\n      primary: \"#f472b6\" # Bright Icing Pink (Pink-400)\n      secondary: \"#c084fc\" # Purple Sprinkle (Purple-400)\n      neutral: \"#831843\" # Deep Berry (Pink-900)\n    surfaces:\n      background: \"#4c0519\" # Deep Red Velvet / Rose-950\n      foreground: \"#fce7f3\" # Sweet Cream / Pink-100\n      header:\n        background: \"#831843\" # Vibrant Berry Header / Pink-900\n        foreground: \"#fce7f3\"\n      footer:\n        background: \"#881337\" # Rose-900\n        foreground: \"#fbcfe8\" # Pink-200\n"
  },
  {
    "path": "modules/blox/data/themes/default.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Default\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n\n  type: \"dual\"\n\n  light:\n    colors:\n      primary: \"indigo\"\n      secondary: \"blue\"\n    surfaces:\n      background: \"#ffffff\"\n      foreground: \"#111827\"\n      header:\n        background: \"#f1f5f9\" # Slate-100 for definition against white content\n        foreground: \"#0f172a\"\n      footer:\n        background: \"#f3f4f6\"\n        foreground: \"#0f172a\"\n\n  dark:\n    colors:\n      primary: \"blue\"\n      secondary: \"teal\"\n    surfaces:\n      background: \"#0f172a\"\n      foreground: \"#f8fafc\"\n      header:\n        background: \"#0f172a\"\n        foreground: \"#f8fafc\"\n      footer:\n        background: \"#111827\"\n        foreground: \"#e5e7eb\"\n"
  },
  {
    "path": "modules/blox/data/themes/dracula.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Dracula\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"The iconic dark theme with a light Buffy variant\"\n\n  type: \"dual\"\n\n  dark:\n    # Official Dracula Dark\n    colors:\n      primary: \"#ff79c6\" # Pink\n      secondary: \"#bd93f9\" # Purple\n      neutral: \"#6272a4\" # Comment\n    surfaces:\n      background: \"#282a36\" # Background\n      foreground: \"#f8f8f2\" # Foreground\n      header:\n        background: \"#282a36\"\n        foreground: \"#f8f8f2\"\n      footer:\n        background: \"#21222c\" # Selection\n        foreground: \"#f8f8f2\"\n\n  light:\n    # Dracula Light (Buffy inspired) - Inverted aesthetic\n    colors:\n      primary: \"#d03282\" # Darker Pink for contrast\n      secondary: \"#9259d6\" # Darker Purple for contrast\n      neutral: \"#44475a\" # Current Line (Dark Gray)\n    surfaces:\n      background: \"#f8f8f2\" # Light Gray\n      foreground: \"#282a36\" # Dark Gray\n      header:\n        background: \"#e4e4db\" # Slightly darker band\n        foreground: \"#282a36\"\n      footer:\n        background: \"#e4e4db\"\n        foreground: \"#282a36\"\n"
  },
  {
    "path": "modules/blox/data/themes/marine.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Marine\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Deep ocean blues with teal accents\"\n\n  type: \"dual\"\n\n  dark:\n    colors:\n      primary: \"#2dd4bf\" # Teal/Cyan\n      secondary: \"#a855f7\" # Purple\n      neutral: \"#1e3a8a\" # Deep Blue\n    surfaces:\n      background: \"#1e3a8a\" # Deep Ocean Blue\n      foreground: \"#e0f2fe\" # Light Sky\n      header:\n        background: \"#1e3a8a\"\n        foreground: \"#e0f2fe\"\n      footer:\n        background: \"#172554\" # Darker depth\n        foreground: \"#93c5fd\"\n\n  light:\n    # A \"Beach Day\" pairing\n    colors:\n      primary: \"#2dd4bf\"\n      secondary: \"#a855f7\"\n    surfaces:\n      background: \"#f0f9ff\"\n      foreground: \"#0c4a6e\"\n      header:\n        background: \"#e0f2fe\" # Sky-100 for visible header bar\n        foreground: \"#0c4a6e\"\n"
  },
  {
    "path": "modules/blox/data/themes/matcha.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Matcha\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Fresh, organic greens inspired by Japanese tea\"\n\n  type: \"dual\"\n\n  light:\n    # \"Matcha Latte\" - Creamy, fresh, organic\n    colors:\n      primary: \"#65a30d\" # Fresh Tea Leaf (Lime-600)\n      secondary: \"#15803d\" # Deep Herbal Green (Green-700)\n      neutral: \"#3f6212\" # Olive text (Lime-800)\n    surfaces:\n      background: \"#f7fee7\" # Very pale lime cream (Lime-50)\n      foreground: \"#1a2e05\" # Dark moss text\n      header:\n        background: \"#ecfccb\" # Light Matcha Foam (Lime-100)\n        foreground: \"#365314\" # Deep olive\n      footer:\n        background: \"#d9f99d\" # Stronger tea green (Lime-200)\n        foreground: \"#14532d\"\n\n  dark:\n    # \"Ceremonial Grade\" - Deep, rich, meditative\n    colors:\n      primary: \"#a3e635\" # Vibrant Matcha Powder (Lime-400)\n      secondary: \"#4ade80\" # Soft green light (Green-400)\n      neutral: \"#1a2f23\" # Deep Forest Background\n    surfaces:\n      background: \"#14281d\" # Deep Nori Green\n      foreground: \"#ecfccb\" # Pale tea green text\n      header:\n        background: \"#0f1f16\" # Darker leaf\n        foreground: \"#d9f99d\"\n      footer:\n        background: \"#052e16\" # Deepest green (Green-950)\n        foreground: \"#86efac\"\n"
  },
  {
    "path": "modules/blox/data/themes/minimal.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Minimal\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Clean, GitHub-inspired design\"\n\n  type: \"dual\"\n\n  light:\n    # Inspired by GitHub Light\n    colors:\n      primary: \"#0969da\" # GitHub Blue\n      secondary: \"#1f883d\" # GitHub Green\n      neutral: \"#24292f\" # GitHub Dark Gray (Text)\n    surfaces:\n      background: \"#ffffff\"\n      foreground: \"#24292f\"\n      header:\n        background: \"#f6f8fa\" # GitHub Header Gray\n        foreground: \"#24292f\"\n      footer:\n        background: \"#ffffff\" # Clean\n        foreground: \"#57606a\" # Muted text\n\n  dark:\n    # Inspired by GitHub Dark\n    colors:\n      primary: \"#58a6ff\" # GitHub Blue (Dark Mode)\n      secondary: \"#238636\" # GitHub Green (Dark Mode)\n      neutral: \"#c9d1d9\" # GitHub Light Gray (Text)\n    surfaces:\n      background: \"#0d1117\" # GitHub Dimmed BG\n      foreground: \"#c9d1d9\"\n      header:\n        background: \"#161b22\" # GitHub Dark Header\n        foreground: \"#f0f6fc\"\n      footer:\n        background: \"#0d1117\"\n        foreground: \"#8b949e\" # Muted text\n"
  },
  {
    "path": "modules/blox/data/themes/retro.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Retro\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Vintage paper meets midnight arcade\"\n\n  type: \"dual\"\n\n  light:\n    # \"Vintage Paper\" - Sepia, warm, nostalgic\n    colors:\n      primary: \"#e38c89\" # Desaturated Red/Pink\n      secondary: \"#b4e9d6\" # Mint Green\n      neutral: \"#79726b\" # Warm Stone\n    surfaces:\n      background: \"#ebe6d9\" # Vintage Paper / Beige\n      foreground: \"#7d5e3c\" # Sepia/Brown\n      header:\n        background: \"#e3dbcd\" # Slightly darker paper\n        foreground: \"#7d5e3c\"\n      footer:\n        background: \"#dcd3c3\"\n        foreground: \"#5c4033\"\n\n  dark:\n    # \"Midnight Arcade\" - Deep petrol, mustard, and neon accents\n    colors:\n      primary: \"#fbbf24\" # Mustard Gold (Amber-400)\n      secondary: \"#f472b6\" # Retro Pink (Pink-400)\n      neutral: \"#134e4a\" # Dark Teal (Teal-900)\n    surfaces:\n      background: \"#042f2e\" # Deep Petrol / Teal-950\n      foreground: \"#ccfbf1\" # Pale Mint / Teal-50\n      header:\n        background: \"#115e59\" # Lighter Petrol / Teal-800\n        foreground: \"#ccfbf1\"\n      footer:\n        background: \"#0f393b\" # Muted Teal\n        foreground: \"#99f6e4\" # Teal-200\n"
  },
  {
    "path": "modules/blox/data/themes/solar.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Solar\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Solarized-inspired, easy on the eyes\"\n\n  type: \"dual\"\n\n  light:\n    # Inspired by Solarized Light - Low contrast, warm, easy on the eyes\n    colors:\n      primary: \"#b58900\" # Yellow (Solarized)\n      secondary: \"#2aa198\" # Cyan (Solarized)\n      neutral: \"#657b83\" # Base00 (Primary Content)\n    surfaces:\n      background: \"#fdf6e3\" # Base3 (Creamy Background)\n      foreground: \"#586e75\" # Base01 (Optional darker text for contrast)\n      header:\n        background: \"#eee8d5\" # Base2 (Slightly darker highlights)\n        foreground: \"#586e75\"\n      footer:\n        background: \"#eee8d5\"\n        foreground: \"#657b83\"\n\n  dark:\n    # Inspired by Solarized Dark - Deep, cool, high precision\n    colors:\n      primary: \"#268bd2\" # Blue (Solarized)\n      secondary: \"#859900\" # Green (Solarized)\n      neutral: \"#839496\" # Base0 (Primary Content)\n    surfaces:\n      background: \"#002b36\" # Base03 (Deep Teal Background)\n      foreground: \"#93a1a1\" # Base1 (Light Content)\n      header:\n        background: \"#073642\" # Base02 (Lighter Teal Highlights)\n        foreground: \"#93a1a1\"\n      footer:\n        background: \"#073642\"\n        foreground: \"#839496\"\n"
  },
  {
    "path": "modules/blox/data/themes/synthwave.yaml",
    "content": "# HugoBlox Theme Pack\n# https://docs.hugoblox.com\n\nhugoblox:\n  meta:\n    format: \"hugoblox-theme@1\"\n    name: \"Synthwave\"\n    vendor: \"hugoblox\"\n    version: \"1.0.0\"\n    license: \"MIT\"\n    description: \"Neon-drenched 80s retrowave aesthetic\"\n\n  type: \"dual\"\n\n  dark:\n    colors:\n      primary: \"#e779c1\" # Neon Pink\n      secondary: \"#58c7f3\" # Cyan\n      neutral: \"#2a2e37\" # Dark Blue-Gray\n    surfaces:\n      background: \"#1a103d\" # Deep Purple\n      foreground: \"#f9f7fd\" # Light Lavender\n      header:\n        background: \"rgba(26, 16, 61, 0.9)\" # Deep Purple\n        foreground: \"#f9f7fd\"\n      footer:\n        background: \"#110a28\" # Darker Deep Purple\n        foreground: \"#b8b2cc\"\n\n  light:\n    # \"Vaporwave\" - A bright, pastel-neon day dream\n    colors:\n      primary: \"#d946ef\" # Electric Fuchsia\n      secondary: \"#06b6d4\" # Neon Cyan\n      neutral: \"#701a75\" # Deep Magenta (for text utilities)\n    surfaces:\n      background: \"#fff0f5\" # Lavender Blush\n      foreground: \"#2e1065\" # Deep Violet Ink\n      header:\n        background: \"#fae8ff\" # Light Fuchsia Mist\n        foreground: \"#86198f\" # Vibrant Purple\n      footer:\n        background: \"#f0abfc\" # Sunset Pink\n        foreground: \"#2e1065\" # Dark Violet\n"
  },
  {
    "path": "modules/blox/go.mod",
    "content": "module github.com/HugoBlox/kit/modules/blox\n\ngo 1.19\n\nrequire github.com/HugoBlox/kit/modules/analytics v0.3.1\n"
  },
  {
    "path": "modules/blox/hugo.yaml",
    "content": "build:\n  buildStats:\n    enable: true\n  cachebusters:\n    - source: assets/hugo_stats\\.json\n      target: css\n    - source: (postcss|tailwind)\\.config\\.js\n      target: css\n\nmarkup:\n  defaultMarkdownHandler: goldmark\n  goldmark:\n    renderHooks:\n      link:\n        # Process backlinks hook\n        useEmbedded: fallback\n    renderer:\n      # Render HTML in Markdown\n      unsafe: true\n    parser:\n      # Support Latex math(?)\n      attribute:\n        block: true  # For callouts as quote blocks\n        title: true\n    extensions:\n      # Support Latex math\n      passthrough:\n        enable: true\n        delimiters:\n          block:\n            - - \\[\n              - \\]\n            - - $$\n              - $$\n          inline:\n            - - \\(\n              - \\)\n            - - $\n              - $\n      extras:\n        # Enable subscript, superscript, and highlighting with ~,^, and == wrappers\n        insert:\n          enable: false\n        mark:\n          enable: true\n        subscript:\n          enable: true\n        superscript:\n          enable: true\n  highlight:\n    # Enable code highlighting\n    codeFences: true\n    noHl: false\n    lineNumbersInTable: false\n    noClasses: false\n    guessSyntax: true\n  tableOfContents:\n    startLevel: 2\n    endLevel: 3\nminify:\n  minifyOutput: true\n  tdewolff:\n    html:\n      keepComments: true\n      keepSpecialComments: true\nsitemap:\n  changefreq: weekly\nsecurity:\n  funcs:\n    getenv:\n      # Allow HUGO_ and HUGO_BLOX_ vars\n      - ^HUGO_\n      # Allow continuous integration vars\n      - ^CI$\noutputFormats:\n  backlinks:\n    mediaType: application/json\n    baseName: backlinks\n    isPlainText: true\n    notAlternative: true\n  LLM:\n    mediaType: text/plain\n    baseName: llms\n    isPlainText: true\n    notAlternative: true\n    permalinkable: true\n\noutputs:\n  home:\n    - HTML\n    - RSS\n    - LLM\nimaging:\n  # High quality defaults for crisp avatar display\n  quality: 90\n  resampleFilter: lanczos\n  anchor: smart\n  hint: picture\nparams:\n  locale:\n    date_format: 'Jan 2, 2006'\n    time_format: '3:04 PM'\n    address_format: en-us\nmodule:\n  hugoVersion:\n    min: '0.153.0'\n    extended: true\n  imports:\n    - path: github.com/HugoBlox/kit/modules/analytics\n  mounts:\n    - source: content\n      target: content\n    - source: static\n      target: static\n    - source: layouts\n      target: layouts\n    - source: data\n      target: data\n    - source: assets\n      target: assets\n    - source: i18n\n      target: i18n\n    - source: archetypes\n      target: archetypes\n    - disableWatch: true\n      source: hugo_stats.json\n      target: assets/hugo_stats.json\n\n    # BLOX A) Server-rendered block templates (Go HTML)\n    - source: blox\n      target: layouts/_partials/hbx/blocks\n      files:\n        - '**/block.html'\n\n    # BLOX B) Client islands (compiled with js.Build/js.Batch)\n    - source: blox\n      target: assets/js/hbx/blocks\n      files:\n        - '**/*.js'\n        - '**/*.ts'\n        - '**/*.jsx'\n        - '**/*.tsx'\n\n    # BLOX C) Block-specific CSS\n    - source: blox\n      target: assets/css/hbx/blocks\n      files:\n        - '**/*.css'\n\n    # BLOX D) Shared assets (optional)\n    - source: blox/shared/js\n      target: assets/js/hbx/shared\n    - source: blox/shared/css\n      target: assets/css/hbx/shared\n    - source: blox\n      target: assets/img/hbx/blocks\n      files:\n        - '**/*.png'\n        - '**/*.jpg'\n        - '**/*.jpeg'\n        - '**/*.svg'\n        - '**/*.webp'\n"
  },
  {
    "path": "modules/blox/i18n/ar.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: قائمة\n\n- id: table_of_contents\n  translation: فهرس المحتويات\n\n- id: on_this_page\n  translation: المحتويات\n\n- id: back_to_top\n  translation: الرجوع لأعلى الصفحة\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: ذات صلة\n\n- id: minute_read\n  translation: دقيقة قراءة\n\n- id: previous\n  translation: السابق\n\n- id: next\n  translation: التالي\n\n- id: figure\n  translation: 'شكل %d:'\n\n- id: edit_page\n  translation: عدل هذه الصفحة\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: الوضع العادي\n\n- id: theme_dark\n  translation: الوضع الليلي\n\n- id: theme_auto\n  translation: تلقائي\n\n# Buttons\n\n- id: btn_preprint\n  translation: المسودة\n\n- id: btn_pdf\n  translation: بي دي اف\n\n- id: btn_cite\n  translation: استشهاد\n\n- id: btn_slides\n  translation: شرائح\n\n- id: btn_video\n  translation: فيديو\n\n- id: btn_code\n  translation: تمريز\n\n- id: btn_dataset\n  translation: البيانات\n\n- id: btn_project\n  translation: مشروع\n\n- id: btn_poster\n  translation: ملصق\n\n- id: btn_source\n  translation: مستند أصلي\n\n- id: btn_copy\n  translation: نسخ\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: تحميل\n\n# About widget\n\n- id: interests\n  translation: الإهتمامات\n\n- id: education\n  translation: التعليم\n\n- id: user_profile_latest\n  translation: اخر\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: الشهادات\n\n# Experience widget\n\n- id: present\n  translation: حتى الأن\n\n# Pages widget\n\n- id: more_pages\n  translation: شاهد الكل\n\n- id: more_posts\n  translation: شاهد جميع التعليقات\n\n- id: more_talks\n  translation: شاهد جميع المحاضرات\n\n- id: more_publications\n  translation: شاهد جميع المنشورات\n\n# Contact widget\n\n- id: contact_name\n  translation: الأسم\n\n- id: contact_email\n  translation: البريد الإلكتروني\n\n- id: contact_message\n  translation: رسالة\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: إرسل الرسالة\n\n- id: book_appointment\n  translation: حجز موعد\n\n# Publication/Event details\n\n- id: abstract\n  translation: مقدمة\n\n- id: publication\n  translation: منشور\n\n- id: publication_type\n  translation: نوع\n\n- id: date\n  translation: التاريخ\n\n- id: last_updated\n  translation: اخر تحيث في\n\n- id: event\n  translation: حدث\n\n- id: location\n  translation: موقع\n\n- id: pub_paper_conference\n  translation: ورقة مؤتمر\n\n- id: pub_article_journal\n  translation: مجلة محكمه\n\n- id: pub_article\n  translation: مسودة\n\n- id: pub_report\n  translation: تقرير\n\n- id: pub_book\n  translation: كتاب\n\n- id: pub_chapter\n  translation: قسم من كتاب\n\n- id: pub_thesis\n  translation: أطروحة\n\n- id: pub_patent\n  translation: براءة الإختراع\n\n# Project details\n\n- id: open_project_site\n  translation: أذهب لموقع المشروع\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: التعليقات\n\n- id: publications\n  translation: المنشورات\n\n- id: talks\n  translation: المحاضرات\n\n- id: projects\n  translation: المشروعات\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: بحث\n\n- id: search_placeholder\n  translation: ابحث هنا‫...‬\n\n- id: search_results\n  translation: نتائج البحث\n\n- id: search_no_results\n  translation: لم يتم العثور على نتائج\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: الصفحة غير موجودة\n\n- id: 404_recommendations\n  translation: هل تبحث عن أحد الصفحات التالية؟\n\n# Cookie consent\n\n- id: cookie_message\n  translation: هذا الموقع يستخدم ملفات تعريف الارتباط \"الكوكيز\" لنمنحك أفضل تجربة مستخدم ممكنة\n\n- id: cookie_dismiss\n  translation: أوافق‫!‬\n\n- id: cookie_learn\n  translation: تعرف على المزيد\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/bn.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation # Toggle navigation\n  translation: নেভিগেশন পরিবর্তন করুন # Alternatively: নেভিগেশন টগল করুন\n\n- id: table_of_contents # Table of Contents\n  translation: সুচিপত্র\n\n- id: on_this_page # Contents\n  translation: বিষয়বস্তু\n\n- id: back_to_top # Back to top\n  translation: উপরে ফিরে যান\n\n- id: home # Home\n  translation: হোম পেজ\n\n- id: close # Close\n  translation: বন্ধ করুন\n\n- id: languages # Languages\n  translation: ভাষা # Alternatively: ভাষা সমূহ\n\n# General\n\n- id: related # Related\n  translation: সংশ্লিষ্ট\n\n- id: minute_read # min read\n  translation: মিনিটের পড়া\n\n- id: previous # Previous\n  translation: পূর্ববর্তী\n\n- id: next # Next\n  translation: পরবর্তী\n\n- id: figure # 'Figure %d:'\n  translation: 'চিত্র %d:'\n\n- id: edit_page # Edit this page\n  translation: পেজটি সম্পাদনা করুন\n\n# Themes\n\n- id: theme_selector # Display preferences\n  translation: প্রদর্শন পছন্দসমূহ\n\n- id: theme_light # Light\n  translation: উজ্জ্বল\n\n- id: theme_dark # Dark\n  translation: অন্ধকার\n\n- id: theme_auto # Automatic\n  translation: অটোমেটিক\n\n# Buttons\n\n- id: btn_preprint # Preprint\n  translation: প্রিপ্রিন্ট\n\n- id: btn_pdf # PDF\n  translation: পিডিএফ # Alternatively: PDF\n\n- id: btn_cite # Cite\n  translation: উদ্ধৃত করুন\n\n- id: btn_slides # Slides\n  translation: স্লাইড সমূহ\n\n- id: btn_video # Video\n  translation: ভিডিও\n\n- id: btn_code # Code\n  translation: কোড\n\n- id: btn_dataset # Dataset\n  translation: ডেটাসেট\n\n- id: btn_project # Project\n  translation: প্রকল্প\n\n- id: btn_poster # Poster\n  translation: পোস্টার\n\n- id: btn_source # Source Document\n  translation: উৎস নথি\n\n- id: btn_copy # Copy\n  translation: কপি করুন\n\n- id: btn_copied # Copied\n  translation: কপি করা হয়েছে\n\n- id: btn_download # Download\n  translation: ডাউনলোড করুন\n\n# About widget\n\n- id: interests # Interests\n  translation: আগ্রহ\n\n- id: education # Education\n  translation: শিক্ষা\n\n- id: user_profile_latest # Latest\n  translation: সর্বশেষ\n\n# Accomplishments widget\n\n- id: see_certificate # See certificate\n  translation: সার্টিফিকেট দেখুন\n\n# Experience widget\n\n- id: present # Present\n  translation: বর্তমান\n\n# Pages widget\n\n- id: more_pages # See all\n  translation: সবগুলি দেখুন\n\n- id: more_posts # See all posts\n  translation: সব পোস্ট দেখুন\n\n- id: more_talks # See all events\n  translation: সব সংঘটনা দেখুন\n\n- id: more_publications # See all publications\n  translation: সব প্রকাশনা দেখুন\n\n# Contact widget\n\n- id: contact_name # Name\n  translation: নাম\n\n- id: contact_email # Email\n  translation: ইমেইল\n\n- id: contact_message # Message\n  translation: বার্তা\n\n- id: contact_attachment # Attach file\n  translation: ফাইল সংযুক্ত করুন\n\n- id: contact_send # Send\n  translation: পাঠান\n\n- id: book_appointment # Book an appointment\n  translation: সাক্ষাৎকার বুক করুন # Alternatively: সাক্ষাৎকার লিপিবদ্ধ করুন\n\n# Publication/Event details\n\n- id: abstract # Abstract\n  translation: সারাংশ\n\n- id: publication # Publication\n  translation: প্রকাশনা\n\n- id: publication_type # Type\n  translation: প্রকাশনার ধরন # Note: In English, it reads \"Type\" but is actually \"Publication type\".\n\n- id: date # Date\n  translation: তারিখ\n\n- id: last_updated # Last updated on\n  translation: 'সর্বশেষ আপডেট:'\n\n- id: event # Event\n  translation: ঘটনা\n\n- id: location # Location\n  translation: অবস্থান\n\n- id: pub_paper_conference # Conference paper\n  translation: সম্মেলন নিবন্ধ\n\n- id: pub_article_journal # Journal article\n  translation: জার্নাল নিবন্ধ\n\n- id: pub_article # Preprint\n  translation: প্রিপ্রিন্ট\n\n- id: pub_report # Report\n  translation: রিপোর্ট\n\n- id: pub_book # Book\n  translation: বই # Alternatively: পুস্তক\n\n- id: pub_chapter # Book section\n  translation: পুস্তক বিভাগ\n\n- id: pub_thesis # Thesis\n  translation: থিসিস\n\n- id: pub_patent # Patent\n  translation: পেটেন্ট\n\n# Project details\n\n- id: open_project_site # Go to Project Site\n  translation: প্রকল্প সাইটে যান\n\n# Content types for default archive page titles and search results\n\n- id: posts # Posts\n  translation: পোস্ট সমূহ\n\n- id: publications # Publications\n  translation: প্রকাশনা সমূহ\n\n- id: talks # Events\n  translation: ঘটনাবলী\n\n- id: projects # Projects\n  translation: প্রকল্প সমূহ\n\n- id: slides # Slides\n  translation: স্লাইড সমূহ\n\n- id: authors # Authors\n  translation: লেখকগন\n\n# Search\n\n- id: search # Search\n  translation: অনুসন্ধান\n\n- id: search_placeholder # Search...\n  translation: অনুসন্ধান করুন...\n\n- id: search_results # results found\n  translation: ফলাফল পাওয়া গেছে\n\n- id: search_no_results # No results found\n  translation: কোন ফলাফল পাওয়া যায়নি\n\n- id: search_common_queries # Common searches\n  translation: প্রচলিত অনুসন্ধান প্রশ্ন\n\n# Error 404\n\n- id: page_not_found # Page not found\n  translation: পেজটি খুঁজে পাওয়া যায়নি\n\n- id: 404_recommendations # Perhaps you were looking for one of these?\n  translation: সম্ভবত আপনি এর মধ্যে একটিকে খুঁজছিলেন?\n\n# Cookie consent\n\n- id: cookie_message # This website uses cookies to ensure you get the best experience on our website.\n  translation: আপনি যাতে এই ওয়েবসাইটে সেরা অভিজ্ঞতা পান তা নিশ্চিত করতে এই ওয়েবসাইটটি কুকিজ ব্যবহার করে।\n\n- id: cookie_dismiss # Got it!\n  translation: বুঝেছি!\n\n- id: cookie_learn # Learn more\n  translation: আরও জানুন\n\n# Published with\n\n- id: published_with\n  translation: '{hugoblox}-এর সাথে প্রকাশিত – বিনামূল্যে, {repo_link}ওপেন সোর্স{/repo_link} ওয়েবসাইট নির্মাতা যা সৃজনকারীদের ক্ষমতায়ন করে।'\n\n# Contact info block\n\n- id: block_contact_follow_me\n  translation: আমাকে খুঁজুন\n\n# Dev Hero block\n\n- id: scroll_to_content\n  translation: কনটেন্টে স্ক্রোল করুন\n\n- id: developer\n  translation: ডেভেলপার\n\n# Portfolio block\n\n- id: portfolio_link_code\n  translation: কোড\n\n- id: portfolio_link_live\n  translation: লাইভ\n\n- id: portfolio_link_demo\n  translation: ডেমো\n\n- id: portfolio_link_default\n  translation: লিংক\n\n- id: portfolio_view_all\n  translation: সমস্ত প্রকল্প দেখুন\n\n# Additional translations\n\n- id: about_me\n  translation: পেশাগত সারসংক্ষেপ\n\n- id: ai_insight\n  translation: এআই অন্তর্দৃষ্টি\n\n- id: content_type\n  translation: বিষয়ের ধরন\n\n- id: difficulty\n  translation: কঠিনতা\n\n- id: prerequisites\n  translation: পূর্বশর্ত\n\n- id: trending\n  translation: ট্রেন্ডিং\n\n- id: article\n  translation: প্রবন্ধ\n\n- id: articles\n  translation: প্রবন্ধসমূহ\n\n- id: all\n  translation: সব\n\n- id: helpful\n  translation: সহায়ক\n\n\n# Buttons and links\n\n- id: btn_site\n  translation: সাইট\n\n- id: btn_canonical\n  translation: ক্যানোনিকাল\n\n- id: btn_crosspost\n  translation: ক্রসপোস্ট\n\n- id: btn_discussion\n  translation: আলোচনা\n\n- id: btn_event\n  translation: ইভেন্ট\n\n- id: btn_calendar\n  translation: ক্যালেন্ডার\n\n- id: btn_registration\n  translation: নিবন্ধন\n\n- id: btn_demo\n  translation: ডেমো\n\n- id: btn_model\n  translation: মডেল\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n# Callouts\n\n- id: callout_note\n  translation: নোট\n\n- id: callout_abstract\n  translation: সারাংশ\n\n- id: callout_summary\n  translation: সারসংক্ষেপ\n\n- id: callout_info\n  translation: তথ্য\n\n- id: callout_todo\n  translation: করনীয়\n\n- id: callout_tip\n  translation: টিপস\n\n- id: callout_question\n  translation: প্রশ্ন\n\n- id: callout_quote\n  translation: উদ্ধৃতি\n\n- id: callout_warning\n  translation: সতর্কতা\n\n- id: callout_caution\n  translation: সতর্কতা\n\n- id: callout_danger\n  translation: বিপদ\n\n- id: callout_bug\n  translation: বাগ\n\n- id: callout_example\n  translation: উদাহরণ\n\n- id: callout_failure\n  translation: ব্যর্থতা\n\n- id: callout_success\n  translation: সাফল্য\n\n- id: callout_important\n  translation: গুরুত্বপূর্ণ\n\n# Slides\n\n- id: back_to_slides\n  translation: স্লাইডে ফিরে যান\n\n- id: present_slides\n  translation: প্রেজেন্ট\n\n- id: present_fullscreen\n  translation: প্রেজেন্ট (পূর্ণস্ক্রিন)\n\n- id: export_pdf_print\n  translation: পিডিএফ রপ্তানি (প্রিন্ট)\n\n- id: slides_print_hint\n  translation: প্রিন্ট মোডে খোলে - ব্রাউজার প্রিন্ট > PDF হিসেবে সেভ করুন\n\n- id: slides_search_placeholder\n  translation: শিরোনাম দিয়ে ডেক খুঁজুন...\n\n- id: slides_no_decks\n  translation: কোন স্লাইড ডেক পাওয়া যায়নি\n\n- id: slides_no_matches\n  translation: কোন ডেক ফিল্টারের সাথে মেলে না\n\n- id: clear_filters\n  translation: ফিল্টার মুছুন\n\n- id: topics\n  translation: বিষয়\n\n- id: details\n  translation: বিস্তারিত\n\n- id: related_resources\n  translation: সম্পর্কিত রিসোর্স\n\n- id: copy_link\n  translation: লিঙ্ক কপি করুন\n\n- id: copy_citation\n  translation: উদ্ধৃতি কপি করুন\n\n- id: how_to_cite\n  translation: কীভাবে উদ্ধৃতি দিবেন\n\n- id: citation\n  translation: উদ্ধৃতি\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: cite.bib ডাউনলোড করুন\n\n- id: lecture\n  translation: লেকচার\n\n- id: enter_fullscreen\n  translation: পূর্ণস্ক্রিনে যান\n\n- id: exit_fullscreen\n  translation: পূর্ণস্ক্রিন থেকে বের হন\n\n- id: speaker_notes_hint\n  translation: বক্তার নোটের জন্য\n\n- id: slides_not_found\n  translation: স্লাইড পাওয়া যায়নি\n\n# Q&A\n\n- id: qa\n  translation: প্রশ্নোত্তর\n\n- id: question\n  translation: প্রশ্ন\n\n- id: answer\n  translation: উত্তর\n\n- id: accepted_answer\n  translation: গৃহীত উত্তর\n\n- id: other_answers\n  translation: অন্যান্য উত্তর\n\n- id: questions\n  translation: প্রশ্নসমূহ\n\n- id: questions_count\n  translation: প্রশ্ন\n\n- id: related_questions\n  translation: সম্পর্কিত প্রশ্ন\n\n- id: search_questions\n  translation: প্রশ্ন অনুসন্ধান...\n\n- id: no_questions_yet\n  translation: এখনও কোনো প্রশ্ন নেই\n\n- id: faq\n  translation: FAQ\n\n- id: faqs\n  translation: FAQs\n\n- id: browse_by_category\n  translation: বিভাগ অনুযায়ী দেখুন\n\n# General extras\n\n- id: backlinks\n  translation: ব্যাকলিঙ্কস\n\n- id: blog\n  translation: ব্লগ\n\n- id: browse\n  translation: ব্রাউজ\n\n- id: days\n  translation: দিন\n\n- id: hours\n  translation: ঘণ্টা\n\n- id: minutes\n  translation: মিনিট\n\n- id: seconds\n  translation: সেকেন্ড\n\n- id: experience\n  translation: অভিজ্ঞতা\n\n- id: read_more\n  translation: আরও পড়ুন\n\n- id: docs\n  translation: ডকুমেন্টেশন\n\n- id: featured\n  translation: বৈশিষ্ট্যযুক্ত\n\n- id: events\n  translation: ইভেন্ট\n\n- id: poweredby_button\n  translation: 'নিজেরটি বানান →'\n\n- id: block_contact_title\n  translation: যোগাযোগ করুন\n\n- id: block_contact_visit_title\n  translation: আমাদের দেখুন\n\n- id: block_contact_office_hours\n  translation: অফিস সময়\n\n- id: block_contact_view_on_map\n  translation: মানচিত্রে দেখুন\n\n- id: block_contact_connect_title\n  translation: সংযুক্ত হন\n\n- id: block_contact_follow_us\n  translation: আমাদের অনুসরণ করুন\n\n- id: block_contact_prospective_title\n  translation: সম্ভাব্য সদস্যরা\n\n- id: block_contact_form_title\n  translation: আমাদের বার্তা পাঠান\n\n- id: block_contact_form_name\n  translation: নাম\n\n- id: block_contact_form_email\n  translation: ইমেইল\n\n- id: block_contact_form_subject\n  translation: বিষয়\n\n- id: block_contact_form_message\n  translation: বার্তা\n\n- id: block_contact_form_submit\n  translation: বার্তা পাঠান\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: মতামত\n\n- id: feedback_widget_question\n  translation: এই পেজটি কি সহায়ক ছিল?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 হ্যাঁ\n\n- id: feedback_widget_answer_negative\n  translation: 😡 না\n"
  },
  {
    "path": "modules/blox/i18n/ca.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Barra de navegació\n\n- id: table_of_contents\n  translation: Index\n\n- id: on_this_page\n  translation: On this page\n\n- id: back_to_top\n  translation: Back to top\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Relacionat\n\n- id: minute_read\n  translation: min de lectura\n\n- id: previous\n  translation: Anterior\n\n- id: next\n  translation: Següent\n\n- id: figure\n  translation: 'Figura %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preimpresió\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Cita\n\n- id: btn_slides\n  translation: Diapositives\n\n- id: btn_video\n  translation: Vídeo\n\n- id: btn_code\n  translation: Códi\n\n- id: btn_dataset\n  translation: Dades\n\n- id: btn_project\n  translation: Projecte\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Font\n\n- id: btn_copy\n  translation: Copia\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Baixa\n\n# About widget\n\n- id: interests\n  translation: Interessos\n\n- id: education\n  translation: Educació\n\n- id: user_profile_latest\n  translation: Latest\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: See certificate\n\n# Experience widget\n\n- id: present\n  translation: Present\n\n# Pages widget\n\n- id: more_pages\n  translation: See all\n\n- id: more_posts\n  translation: Més entrades\n\n- id: more_talks\n  translation: Més xerrades\n\n- id: more_publications\n  translation: Més publicacions\n\n# Contact widget\n\n- id: contact_name\n  translation: Nom\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Missatge\n\n- id: contact_attachment\n  translation: Adjunt\n\n- id: contact_send\n  translation: Enviar\n\n- id: book_appointment\n  translation: Book an appointment\n\n# Publication/Event details\n\n- id: abstract\n  translation: Resum\n\n- id: publication\n  translation: Publicació\n\n- id: publication_type\n  translation: Tipus\n\n- id: date\n  translation: Data\n\n- id: last_updated\n  translation: Última actualizació el\n\n- id: event\n  translation: Event\n\n- id: location\n  translation: Ubicació\n\n- id: pub_paper_conference\n  translation: Conference paper\n\n- id: pub_article_journal\n  translation: Journal article\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Report\n\n- id: pub_book\n  translation: Book\n\n- id: pub_chapter\n  translation: Book section\n\n- id: pub_thesis\n  translation: Thesis\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Obre el lloc del web del projecte\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Entrada\n\n- id: publications\n  translation: Publicació\n\n- id: talks\n  translation: Conferència\n\n- id: projects\n  translation: Projectes\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Search\n\n- id: search_placeholder\n  translation: Search...\n\n- id: search_results\n  translation: results found\n\n- id: search_no_results\n  translation: No results found\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: No s'ha trobat la pàgina\n\n- id: 404_recommendations\n  translation: Buscaves alguna d'aquestes?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Aquet lloc web fa servir cookies per garantitzar una millor experiència.\n\n- id: cookie_dismiss\n  translation: D'acord\n\n- id: cookie_learn\n  translation: Més informació\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/cs.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Přepnout navigaci\n\n- id: table_of_contents\n  translation: Obsah\n\n- id: on_this_page\n  translation: Na stránce\n\n- id: back_to_top\n  translation: Nahoru\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Související\n\n- id: minute_read\n  translation: min čtení\n\n- id: previous\n  translation: Předchozí\n\n- id: next\n  translation: Další\n\n- id: figure\n  translation: 'Obrázek %d:'\n\n- id: edit_page\n  translation: Upravit stránku\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Tisk\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citace\n\n- id: btn_slides\n  translation: Slidy\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kód\n\n- id: btn_dataset\n  translation: Dataset\n\n- id: btn_project\n  translation: Projekt\n\n- id: btn_poster\n  translation: Plakát\n\n- id: btn_source\n  translation: Zdrojový dokument\n\n- id: btn_copy\n  translation: Kopírovat\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Stáhnout\n\n# About widget\n\n- id: interests\n  translation: Zájmy\n\n- id: education\n  translation: Vzdělání\n\n- id: user_profile_latest\n  translation: Nejnověší\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Stáhnout\n\n# Experience widget\n\n- id: present\n  translation: Aktuální\n\n# Pages widget\n\n- id: more_pages\n  translation: Zobrazit všechny\n\n- id: more_posts\n  translation: Zobrazit všechny aktuality\n\n- id: more_talks\n  translation: Zobrazit všechny přednášky\n\n- id: more_publications\n  translation: Zobrazit všechny publikace\n\n# Contact widget\n\n- id: contact_name\n  translation: Jméno\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Zpráva\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Poslat\n\n- id: book_appointment\n  translation: Rezervovat schůzku\n\n# Publication/Event details\n\n- id: abstract\n  translation: Abstrakt\n\n- id: publication\n  translation: Publikace\n\n- id: publication_type\n  translation: Typ\n\n- id: date\n  translation: Datum\n\n- id: last_updated\n  translation: Naposledy aktualizováno dne\n\n- id: event\n  translation: Událost\n\n- id: location\n  translation: Místo\n\n- id: pub_paper_conference\n  translation: Materiál ke konferenci\n\n- id: pub_article_journal\n  translation: Článek v žurnálu\n\n- id: pub_article\n  translation: Tisk předem\n\n- id: pub_report\n  translation: Správa\n\n- id: pub_book\n  translation: Kniha\n\n- id: pub_chapter\n  translation: Sekce knihy\n\n- id: pub_thesis\n  translation: Diplomová práce\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Na stánku projektu\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Aktuality\n\n- id: publications\n  translation: Publikace\n\n- id: talks\n  translation: Přednášky\n\n- id: projects\n  translation: Projekty\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Hledání\n\n- id: search_placeholder\n  translation: Hledání...\n\n- id: search_results\n  translation: nalezených výsledků\n\n- id: search_no_results\n  translation: Nic nelalezeno\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Stránka neexistuje\n\n- id: 404_recommendations\n  translation: Nehledáte náhodou jednu z těchto stránek?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Tyto stránky používají cookies k zajištění co možná nejlepší zkušenosti na našem webu.\n\n- id: cookie_dismiss\n  translation: Rozumím!\n\n- id: cookie_learn\n  translation: Zjistit více\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/da.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Vis/skjul navigation\n\n- id: table_of_contents\n  translation: Indholdsfortegnelse\n\n- id: on_this_page\n  translation: På denne side\n\n- id: back_to_top\n  translation: Til toppen\n\n- id: home\n  translation: Hjem\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Relaterede\n\n- id: minute_read\n  translation: min læsning\n\n- id: previous\n  translation: Forrige\n\n- id: next\n  translation: Næste\n\n- id: figure\n  translation: 'Figur %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Eksempel\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citer\n\n- id: btn_slides\n  translation: Præsentation\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kode\n\n- id: btn_dataset\n  translation: Datasæt\n\n- id: btn_project\n  translation: Projekt\n\n- id: btn_poster\n  translation: Plakat\n\n- id: btn_source\n  translation: Kilde kode\n\n- id: btn_copy\n  translation: Kopier\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Download\n\n# About widget\n\n- id: interests\n  translation: Interesser\n\n- id: education\n  translation: Uddannelse\n\n- id: user_profile_latest\n  translation: Seneste\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Certifikat\n\n# Experience widget\n\n- id: present\n  translation: Nuværende\n\n# Pages widget\n\n- id: more_pages\n  translation: Se alle\n\n- id: more_posts\n  translation: Se alle indlæg\n\n- id: more_talks\n  translation: Se alle foredrag\n\n- id: more_publications\n  translation: Se alle udgivelser\n\n# Contact widget\n\n- id: contact_name\n  translation: Navn\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Besked\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Send\n\n- id: book_appointment\n  translation: Reserver en aftale\n\n# Publication/Event details\n\n- id: abstract\n  translation: Abstrakt\n\n- id: publication\n  translation: Udgivelse\n\n- id: publication_type\n  translation: Type\n\n- id: date\n  translation: Dato\n\n- id: last_updated\n  translation: Sidst opdateret\n\n- id: event\n  translation: Begivenhed\n\n- id: location\n  translation: Lokation\n\n- id: pub_paper_conference\n  translation: Konference artikel\n\n- id: pub_article_journal\n  translation: Videnskablig artikel\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Rapport\n\n- id: pub_book\n  translation: Bog\n\n- id: pub_chapter\n  translation: Bøger\n\n- id: pub_thesis\n  translation: Thesis\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Gå til projekt side\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Indlæg\n\n- id: publications\n  translation: Udgivelser\n\n- id: talks\n  translation: Foredrag\n\n- id: projects\n  translation: Projekter\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Søg\n\n- id: search_placeholder\n  translation: Søg...\n\n- id: search_results\n  translation: resultater fundet\n\n- id: search_no_results\n  translation: Ingen resultater fundet\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Side blev ikke fundet\n\n- id: 404_recommendations\n  translation: Måske du ledte efter dette?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Denne side benytter cookies for at sikre den bedste oplevelse.\n\n- id: cookie_dismiss\n  translation: Accepter\n\n- id: cookie_learn\n  translation: Læs mere\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/de.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Navigation einblenden\n\n- id: table_of_contents\n  translation: Inhaltsverzeichnis\n\n- id: on_this_page\n  translation: Auf dieser Seite\n\n- id: back_to_top\n  translation: Zurück zum Anfang\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Schließen\n\n- id: languages\n  translation: Sprachen\n\n# General\n\n- id: related\n  translation: Ähnliches\n\n# Callouts\n- id: callout_note\n  translation: Hinweis\n\n- id: callout_tip\n  translation: Tipp\n\n- id: callout_important\n  translation: Wichtig\n\n- id: callout_warning\n  translation: Warnung\n\n- id: callout_caution\n  translation: Vorsicht\n\n- id: backlinks\n  translation: Backlinks\n\n- id: minute_read\n  translation: Min Lesezeit\n\n- id: previous\n  translation: Zurück\n\n- id: next\n  translation: Weiter\n\n- id: figure\n  translation: 'Abbildung %d:'\n\n- id: edit_page\n  translation: Seite bearbeiten\n\n# Themes\n\n- id: theme_selector\n  translation: Einstellungen anzeigen\n\n- id: theme_light\n  translation: Hell\n\n- id: theme_dark\n  translation: Dunkel\n\n- id: theme_auto\n  translation: Automatisch\n\n# Buttons\n\n- id: btn_preprint\n  translation: Vorabdruck\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Zitieren\n\n- id: btn_slides\n  translation: Folien\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Code\n\n- id: btn_dataset\n  translation: Datensatz\n\n- id: btn_project\n  translation: Projekt\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Quelldokument\n\n- id: btn_copy\n  translation: Kopie\n\n- id: btn_copied\n  translation: Kopiert\n\n- id: btn_download\n  translation: Download\n\n# About widget\n\n- id: interests\n  translation: Interessen\n\n- id: education\n  translation: Bildung\n\n- id: user_profile_latest\n  translation: Aktuellste\n\n# Countdown widget\n\n- id: days\n  translation: Tage\n- id: hours\n  translation: Stunden\n- id: minutes\n  translation: Minuten\n- id: seconds\n  translation: Sekunden\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Zertifikat anzeigen\n\n# Experience widget\n\n- id: experience\n  translation: Erfahrung\n\n- id: present\n  translation: Aktuell\n\n# Pages widget\n\n- id: read_more\n  translation: Mehr lesen\n\n- id: more_pages\n  translation: Alle anzeigen\n\n- id: more_posts\n  translation: Weitere Blogbeiträge\n\n- id: more_talks\n  translation: Weitere Vorträge\n\n- id: more_publications\n  translation: Weitere Publikationen\n\n# Contact widget\n\n- id: contact_name\n  translation: Name\n\n- id: contact_email\n  translation: E-Mail\n\n- id: contact_message\n  translation: Nachricht\n\n- id: contact_attachment\n  translation: Anhang\n\n- id: contact_send\n  translation: Senden\n\n- id: book_appointment\n  translation: Termin vereinbaren\n\n# Contact info block\n\n- id: block_contact_title\n  translation: Kontaktieren Sie uns\n\n- id: block_contact_visit_title\n  translation: Besuchen Sie uns\n\n- id: block_contact_office_hours\n  translation: Öffnungszeiten\n\n- id: block_contact_view_on_map\n  translation: Auf der Karte ansehen\n\n- id: block_contact_connect_title\n  translation: Kontakt\n\n- id: block_contact_follow_us\n  translation: Folgen Sie uns\n\n- id: block_contact_prospective_title\n  translation: Potenzielle Mitglieder\n\n- id: block_contact_form_title\n  translation: Senden Sie uns eine Nachricht\n\n- id: block_contact_form_name\n  translation: Name\n\n- id: block_contact_form_email\n  translation: E-Mail\n\n- id: block_contact_form_subject\n  translation: Betreff\n\n- id: block_contact_form_message\n  translation: Nachricht\n\n- id: block_contact_form_submit\n  translation: Nachricht senden\n\n# Publication/Event details\n\n- id: abstract\n  translation: Zusammenfassung\n\n- id: publication\n  translation: Publikation\n\n- id: publication_type\n  translation: Typ\n\n- id: date\n  translation: Datum\n\n- id: last_updated\n  translation: Zuletzt aktualisiert am\n\n- id: event\n  translation: Veranstaltung\n\n- id: location\n  translation: Ort\n\n- id: pub_paper_conference\n  translation: Konferenzpapier\n\n- id: pub_article_journal\n  translation: Journalartikel\n\n- id: pub_article\n  translation: Vordruck\n\n- id: pub_report\n  translation: Bericht\n\n- id: pub_book\n  translation: Buch\n\n- id: pub_chapter\n  translation: Buchkapitel\n\n- id: pub_thesis\n  translation: Abschlussarbeit\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Zur Projektseite\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: Blog\n\n- id: publications\n  translation: Publikationen\n\n- id: events\n  translation: Veranstaltungen\n\n- id: projects\n  translation: Projekte\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Autoren\n\n# Search\n\n- id: search\n  translation: Suche\n\n- id: search_placeholder\n  translation: Suche...\n\n- id: search_results\n  translation: Suchergebnisse\n\n- id: search_no_results\n  translation: Nichts gefunden\n\n- id: search_common_queries\n  translation: Allgemeine Suche\n\n# Error 404\n\n- id: page_not_found\n  translation: Seite nicht gefunden\n\n- id: 404_recommendations\n  translation: Suchen Sie vielleicht nach einer der folgenden Seiten?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Um unsere Webseite für Sie passend zu gestalten und fortlaufend verbessern zu können, verwenden wir Cookies.\n\n- id: cookie_dismiss\n  translation: Verstanden!\n\n- id: cookie_learn\n  translation: Mehr erfahren\n\n# Published with\n\n- id: published_with\n  translation: Veröffentlicht mit {hugoblox} - dem kostenlosen, {repo_link}Open Source{/repo_link} Website-Builder, der Kreative fördert.\n\n- id: poweredby_button\n  translation: 'Erstelle deine →'\n\n# Contact info block\n\n- id: block_contact_follow_me\n  translation: Finde mich auf\n\n# Dev Hero block\n\n- id: scroll_to_content\n  translation: Zum Inhalt scrollen\n\n- id: developer\n  translation: Entwickler\n\n# Portfolio block\n\n- id: portfolio_link_code\n  translation: Code\n\n- id: portfolio_link_live\n  translation: Live\n\n- id: portfolio_link_demo\n  translation: Demo\n\n- id: portfolio_link_default\n  translation: Link\n\n- id: portfolio_view_all\n  translation: Alle Projekte anzeigen\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: Feedback\n\n- id: feedback_widget_question\n  translation: War diese Seite hilfreich?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Ja\n\n- id: feedback_widget_answer_negative\n  translation: 😡 Nein\n\n# AI Features\n\n- id: ai_insight\n  translation: KI-Einblick\n\n# Content Metadata\n\n- id: content_type\n  translation: Inhaltstyp\n\n- id: difficulty\n  translation: Schwierigkeitsgrad\n\n- id: prerequisites\n  translation: Voraussetzungen\n\n# Card metadata\n\n- id: trending\n  translation: Im Trend\n\n- id: article\n  translation: Artikel\n\n- id: articles\n  translation: Artikel\n\n- id: browse\n  translation: Durchsuchen\n\n- id: all\n  translation: Alle\n\n- id: helpful\n  translation: hilfreich\n\n# Additional buttons\n\n- id: btn_site\n  translation: Website\n\n- id: btn_canonical\n  translation: Kanonisch\n\n- id: btn_crosspost\n  translation: Crosspost\n\n- id: btn_discussion\n  translation: Diskussion\n\n- id: btn_event\n  translation: Event\n\n- id: btn_calendar\n  translation: Kalender\n\n- id: btn_registration\n  translation: Anmeldung\n\n- id: btn_demo\n  translation: Demo\n\n- id: btn_model\n  translation: Modell\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n# Callouts\n\n- id: callout_abstract\n  translation: Abstract\n\n- id: callout_summary\n  translation: Zusammenfassung\n\n- id: callout_info\n  translation: Info\n\n- id: callout_todo\n  translation: To-do\n\n- id: callout_tip\n  translation: Tipp\n\n- id: callout_question\n  translation: Frage\n\n- id: callout_quote\n  translation: Zitat\n\n- id: callout_warning\n  translation: Warnung\n\n- id: callout_danger\n  translation: Gefahr\n\n- id: callout_bug\n  translation: Bug\n\n- id: callout_example\n  translation: Beispiel\n\n- id: callout_failure\n  translation: Fehlschlag\n\n- id: callout_success\n  translation: Erfolg\n\n# Slides\n\n- id: back_to_slides\n  translation: Zurück zu Slides\n\n- id: present_slides\n  translation: Präsentieren\n\n- id: present_fullscreen\n  translation: Präsentieren (Vollbild)\n\n- id: export_pdf_print\n  translation: PDF exportieren (Druck)\n\n- id: slides_print_hint\n  translation: Öffnet im Druckmodus – Browser Drucken > Als PDF speichern\n\n- id: slides_search_placeholder\n  translation: Decks nach Titel suchen...\n\n- id: slides_no_decks\n  translation: Keine Foliensätze gefunden\n\n- id: slides_no_matches\n  translation: Keine Sätze entsprechen deinen Filtern\n\n- id: clear_filters\n  translation: Filter zurücksetzen\n\n- id: topics\n  translation: Themen\n\n- id: details\n  translation: Details\n\n- id: related_resources\n  translation: Verwandte Ressourcen\n\n- id: copy_link\n  translation: Link kopieren\n\n- id: copy_citation\n  translation: Zitat kopieren\n\n- id: how_to_cite\n  translation: So zitieren\n\n- id: citation\n  translation: Zitat\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: cite.bib herunterladen\n\n- id: lecture\n  translation: Vorlesung\n\n- id: enter_fullscreen\n  translation: Vollbildmodus starten\n\n- id: exit_fullscreen\n  translation: Vollbildmodus beenden\n\n- id: speaker_notes_hint\n  translation: für Sprechernotizen\n\n- id: slides_not_found\n  translation: Folien nicht gefunden\n\n# Q&A\n\n- id: qa\n  translation: Q&A\n\n- id: question\n  translation: Frage\n\n- id: answer\n  translation: Antwort\n\n- id: accepted_answer\n  translation: Akzeptierte Antwort\n\n- id: other_answers\n  translation: Weitere Antworten\n\n- id: questions\n  translation: Fragen\n\n- id: questions_count\n  translation: Fragen\n\n- id: related_questions\n  translation: Ähnliche Fragen\n\n- id: search_questions\n  translation: Fragen durchsuchen...\n\n- id: no_questions_yet\n  translation: Noch keine Fragen vorhanden\n\n- id: faq\n  translation: FAQ\n\n- id: faqs\n  translation: FAQs\n\n- id: browse_by_category\n  translation: Nach Kategorie durchsuchen\n\n# General extras\n\n- id: about_me\n  translation: Berufliches Profil\n\n- id: docs\n  translation: Dokumentation\n\n- id: featured\n  translation: Empfohlen\n"
  },
  {
    "path": "modules/blox/i18n/el.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Εναλλαγή πλοήγησης\n\n- id: table_of_contents\n  translation: Πίνακας περιεχομένων\n\n- id: on_this_page\n  translation: On this page\n\n- id: back_to_top\n  translation: Back to top\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Σχετικά\n\n- id: minute_read\n  translation: λεπτά διαβάσματος\n\n- id: previous\n  translation: Προηγούμενο\n\n- id: next\n  translation: Επόμενο\n\n- id: figure\n  translation: 'Figure %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Προ-δημοσίευση\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Βιβλιογραφική αναφορά\n\n- id: btn_slides\n  translation: Διαφάνεια\n\n- id: btn_video\n  translation: Βίντεο\n\n- id: btn_code\n  translation: Κώδικας\n\n- id: btn_dataset\n  translation: Δεδομένα\n\n- id: btn_project\n  translation: Ερευνητικό πρόγραμμα\n\n- id: btn_poster\n  translation: Ανακοίνωση συνεδρίου\n\n- id: btn_source\n  translation: Πηγαίος κώδικας\n\n- id: btn_copy\n  translation: Αντιγραφή\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Λήψη\n\n# About widget\n\n- id: interests\n  translation: Ενδιαφέροντα\n\n- id: education\n  translation: Εκπαίδευση\n\n- id: user_profile_latest\n  translation: Latest\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: See certificate\n\n# Experience widget\n\n- id: present\n  translation: Present\n\n# Pages widget\n\n- id: more_pages\n  translation: See all\n\n- id: more_posts\n  translation: Περισσότερες αναρτήσεις\n\n- id: more_talks\n  translation: Περισσότερες ομιλίες\n\n- id: more_publications\n  translation: Περισσότερες δημοσιεύσεις\n\n# Contact widget\n\n- id: contact_name\n  translation: Name\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Message\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Send\n\n- id: book_appointment\n  translation: Book an appointment\n\n# Publication/Event details\n\n- id: abstract\n  translation: Περίληψη\n\n- id: publication\n  translation: Δημοσίευση\n\n- id: publication_type\n  translation: Τύπος\n\n- id: date\n  translation: Ημερομηνία\n\n- id: last_updated\n  translation: Τελευταία ενημέρωση\n\n- id: event\n  translation: Συμβάν\n\n- id: location\n  translation: Τοποθεσία\n\n- id: pub_paper_conference\n  translation: Conference paper\n\n- id: pub_article_journal\n  translation: Journal article\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Report\n\n- id: pub_book\n  translation: Book\n\n- id: pub_chapter\n  translation: Book section\n\n- id: pub_thesis\n  translation: Thesis\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Προς ιστοσελίδα ερευνητικού προγράμματος\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Αναρτήσεις\n\n- id: publications\n  translation: Δημοσιεύσεις\n\n- id: talks\n  translation: Ομιλίες\n\n- id: projects\n  translation: Ερευνητικά προγράμματα\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Search\n\n- id: search_placeholder\n  translation: Search...\n\n- id: search_results\n  translation: results found\n\n- id: search_no_results\n  translation: No results found\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Η ιστοσελίδα δεν βρέθηκε\n\n- id: 404_recommendations\n  translation: Μήπως ψάχνατε για μια από αυτές;\n\n# Cookie consent\n\n- id: cookie_message\n  translation: This website uses cookies to ensure you get the best experience on our website.\n\n- id: cookie_dismiss\n  translation: Got it!\n\n- id: cookie_learn\n  translation: Learn more\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/en.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Toggle navigation\n\n- id: table_of_contents\n  translation: Table of Contents\n\n- id: on_this_page\n  translation: On this page\n\n- id: back_to_top\n  translation: Back to top\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Related\n\n# Callouts - All Obsidian-compatible types\n- id: callout_note\n  translation: Note\n\n- id: callout_abstract\n  translation: Abstract\n\n- id: callout_summary\n  translation: Summary\n\n- id: callout_info\n  translation: Info\n\n- id: callout_todo\n  translation: Todo\n\n- id: callout_tip\n  translation: Tip\n\n- id: callout_success\n  translation: Success\n\n- id: callout_question\n  translation: Question\n\n- id: callout_warning\n  translation: Warning\n\n- id: callout_failure\n  translation: Failure\n\n- id: callout_danger\n  translation: Danger\n\n- id: callout_bug\n  translation: Bug\n\n- id: callout_example\n  translation: Example\n\n- id: callout_quote\n  translation: Quote\n\n- id: callout_important\n  translation: Important\n\n- id: callout_caution\n  translation: Caution\n\n- id: backlinks\n  translation: Backlinks\n\n- id: minute_read\n  translation: min read\n\n- id: previous\n  translation: Previous\n\n- id: next\n  translation: Next\n\n- id: figure\n  translation: 'Figure %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preprint\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Cite\n\n- id: btn_slides\n  translation: Slides\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Code\n\n- id: btn_dataset\n  translation: Dataset\n\n- id: btn_project\n  translation: Project\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Source Document\n\n# New link types\n- id: btn_doi\n  translation: DOI\n- id: btn_site\n  translation: Site\n- id: btn_canonical\n  translation: Canonical\n- id: btn_crosspost\n  translation: Crosspost\n- id: btn_discussion\n  translation: Discussion\n- id: btn_event\n  translation: Event\n- id: btn_calendar\n  translation: Calendar\n- id: btn_registration\n  translation: Registration\n- id: btn_demo\n  translation: Demo\n- id: btn_model\n  translation: Model\n- id: btn_hal\n  translation: HAL\n- id: btn_dblp\n  translation: DBLP\n- id: btn_isbn\n  translation: ISBN\n- id: btn_osf\n  translation: OSF\n- id: btn_zenodo\n  translation: Zenodo\n- id: btn_kaggle\n  translation: Kaggle\n- id: btn_openalex\n  translation: OpenAlex\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n- id: btn_pwc\n  translation: Papers With Code\n\n- id: btn_copy\n  translation: Copy\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Download\n\n# About widget\n\n- id: interests\n  translation: Interests\n\n- id: education\n  translation: Education\n\n- id: about_me\n  translation: Professional Summary\n\n- id: user_profile_latest\n  translation: Latest\n\n# Countdown widget\n\n- id: days\n  translation: Days\n- id: hours\n  translation: Hours\n- id: minutes\n  translation: Minutes\n- id: seconds\n  translation: Seconds\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: See certificate\n\n# Experience widget\n\n- id: experience\n  translation: Experience\n\n- id: present\n  translation: Present\n\n# Pages widget\n\n- id: read_more\n  translation: Read more\n\n- id: more_pages\n  translation: See all\n\n- id: more_posts\n  translation: See all posts\n\n- id: more_talks\n  translation: See all events\n\n- id: more_publications\n  translation: See all publications\n\n# Contact widget\n\n- id: contact_name\n  translation: Name\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Message\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Send\n\n- id: book_appointment\n  translation: Book an appointment\n\n# Contact info block\n\n- id: block_contact_title\n  translation: Contact Us\n\n- id: block_contact_visit_title\n  translation: Visit Us\n\n- id: block_contact_office_hours\n  translation: Office Hours\n\n- id: block_contact_view_on_map\n  translation: View on Map\n\n- id: block_contact_connect_title\n  translation: Connect\n\n- id: block_contact_follow_us\n  translation: Follow Us\n\n- id: block_contact_follow_me\n  translation: Find me on\n\n- id: block_contact_prospective_title\n  translation: Prospective Members\n\n- id: block_contact_form_title\n  translation: Send us a Message\n\n- id: block_contact_form_name\n  translation: Name\n\n- id: block_contact_form_email\n  translation: Email\n\n- id: block_contact_form_subject\n  translation: Subject\n\n- id: block_contact_form_message\n  translation: Message\n\n- id: block_contact_form_submit\n  translation: Send Message\n\n# Publication/Event details\n\n- id: abstract\n  translation: Abstract\n\n- id: publication\n  translation: Publication\n\n- id: publication_type\n  translation: Type\n\n- id: date\n  translation: Date\n\n- id: last_updated\n  translation: Last updated on\n\n- id: event\n  translation: Event\n\n- id: location\n  translation: Location\n\n- id: pub_paper_conference\n  translation: Conference paper\n\n- id: pub_article_journal\n  translation: Journal article\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Report\n\n- id: pub_book\n  translation: Book\n\n- id: pub_chapter\n  translation: Book section\n\n- id: pub_thesis\n  translation: Thesis\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Go to Project Site\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: Blog\n\n- id: publications\n  translation: Publications\n\n- id: events\n  translation: Events\n\n- id: projects\n  translation: Projects\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n- id: qa\n  translation: Q&A\n\n- id: questions\n  translation: Questions\n\n- id: faq\n  translation: FAQ\n\n- id: faqs\n  translation: FAQs\n\n- id: docs\n  translation: Documentation\n\n- id: question\n  translation: Question\n\n- id: answer\n  translation: Answer\n\n- id: accepted_answer\n  translation: Accepted Answer\n\n- id: other_answers\n  translation: Other Answers\n\n- id: related_questions\n  translation: Related Questions\n\n- id: browse_by_category\n  translation: Browse by Category\n\n- id: search_questions\n  translation: Search questions...\n\n- id: no_questions_yet\n  translation: No questions yet. Check back soon!\n\n- id: questions_count\n  translation: questions\n\n# Slides\n\n- id: back_to_slides\n  translation: Back to Slides\n\n- id: featured\n  translation: Featured\n\n- id: details\n  translation: Details\n\n- id: present_slides\n  translation: Present\n\n- id: present_fullscreen\n  translation: Present (fullscreen)\n\n- id: export_pdf_print\n  translation: Export PDF (print)\n\n- id: slides_print_hint\n  translation: Opens in print mode - use browser Print > Save as PDF\n\n- id: slides_search_placeholder\n  translation: Search decks by title...\n\n- id: slides_no_decks\n  translation: No slide decks found\n\n- id: slides_no_matches\n  translation: No decks match your filters\n\n- id: clear_filters\n  translation: Clear filters\n\n- id: topics\n  translation: Topics\n\n- id: related_resources\n  translation: Related Resources\n\n- id: copy_link\n  translation: Copy Link\n\n- id: copy_citation\n  translation: Copy citation\n\n- id: how_to_cite\n  translation: How to cite\n\n- id: citation\n  translation: Citation\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: Download cite.bib\n\n- id: lecture\n  translation: Lecture\n\n- id: enter_fullscreen\n  translation: Enter fullscreen\n\n- id: exit_fullscreen\n  translation: Exit fullscreen\n\n- id: speaker_notes_hint\n  translation: for speaker notes\n\n- id: slides_not_found\n  translation: Slides not found\n\n# Search\n\n- id: search\n  translation: Search\n\n- id: search_placeholder\n  translation: Search...\n\n- id: search_results\n  translation: results found\n\n- id: search_no_results\n  translation: No results found\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Page not found\n\n- id: 404_recommendations\n  translation: Perhaps you were looking for one of these?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: This website uses cookies to ensure you get the best experience on our website.\n\n- id: cookie_dismiss\n  translation: Got it!\n\n- id: cookie_learn\n  translation: Learn more\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n\n- id: poweredby_button\n  translation: 'Build yours →'\n\n# Dev Hero block\n\n- id: scroll_to_content\n  translation: Scroll to content\n\n- id: developer\n  translation: Developer\n\n# Portfolio block\n\n- id: portfolio_link_code\n  translation: Code\n\n- id: portfolio_link_live\n  translation: Live\n\n- id: portfolio_link_demo\n  translation: Demo\n\n- id: portfolio_link_default\n  translation: Link\n\n- id: portfolio_view_all\n  translation: View All Projects\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: Feedback\n\n- id: feedback_widget_question\n  translation: Was this page helpful?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Yes\n\n- id: feedback_widget_answer_negative\n  translation: 😡 No\n\n# AI Features\n\n- id: ai_insight\n  translation: AI Insight\n\n# Content Metadata\n- id: content_type\n  translation: Content Type\n- id: difficulty\n  translation: Difficulty\n- id: prerequisites\n  translation: Prerequisites\n\n# Card metadata\n- id: trending\n  translation: Trending\n\n- id: article\n  translation: article\n\n- id: articles\n  translation: articles\n\n- id: browse\n  translation: Browse\n\n- id: all\n  translation: All\n\n- id: helpful\n  translation: helpful\n"
  },
  {
    "path": "modules/blox/i18n/es.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Barra de navegación\n\n- id: table_of_contents\n  translation: Índice\n\n- id: on_this_page\n  translation: En esta página\n\n- id: back_to_top\n  translation: Regreso al inicio\n\n- id: home\n  translation: Inicio\n\n- id: close\n  translation: Cerrar\n\n- id: languages\n  translation: Idiomas\n\n# General\n\n- id: related\n  translation: Relacionado\n\n# Callouts - All Obsidian-compatible types\n- id: callout_note\n  translation: Nota\n\n- id: callout_abstract\n  translation: Resumen\n\n- id: callout_summary\n  translation: Resumen\n\n- id: callout_info\n  translation: Info\n\n- id: callout_todo\n  translation: Pendiente\n\n- id: callout_tip\n  translation: Consejo\n\n- id: callout_success\n  translation: Éxito\n\n- id: callout_question\n  translation: Pregunta\n\n- id: callout_warning\n  translation: Advertencia\n\n- id: callout_failure\n  translation: Fallo\n\n- id: callout_danger\n  translation: Peligro\n\n- id: callout_bug\n  translation: Error\n\n- id: callout_example\n  translation: Ejemplo\n\n- id: callout_quote\n  translation: Cita\n\n- id: callout_important\n  translation: Importante\n\n- id: callout_caution\n  translation: Precaución\n\n- id: minute_read\n  translation: min de lectura\n\n- id: previous\n  translation: Anterior\n\n- id: next\n  translation: Siguiente\n\n- id: figure\n  translation: 'Figura %d:'\n\n- id: edit_page\n  translation: Edita esta página\n\n# Themes\n\n- id: theme_selector\n  translation: Mostrar preferencias\n\n- id: theme_light\n  translation: Claro\n\n- id: theme_dark\n  translation: Oscuro\n\n- id: theme_auto\n  translation: Automático\n\n# Buttons\n\n- id: btn_preprint\n  translation: Prepublicación\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citar\n\n- id: btn_slides\n  translation: Diapositivas\n\n- id: btn_video\n  translation: Vídeo\n\n- id: btn_code\n  translation: Código fuente\n\n- id: btn_dataset\n  translation: Datos\n\n- id: btn_project\n  translation: Proyecto\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Documento fuente\n\n- id: btn_copy\n  translation: Copiar\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Descargar\n\n# About widget\n\n- id: interests\n  translation: Intereses\n\n- id: education\n  translation: Educación\n\n- id: user_profile_latest\n  translation: Recientes\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Ver certificado\n\n# Experience widget\n\n- id: present\n  translation: Actualmente\n\n# Pages widget\n\n- id: more_pages\n  translation: Ver todo\n\n- id: more_posts\n  translation: Más posts\n\n- id: more_talks\n  translation: Más eventos\n\n- id: more_publications\n  translation: Más publicaciones\n\n# Contact widget\n\n- id: contact_name\n  translation: Nombre\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Mensaje\n\n- id: contact_attachment\n  translation: Adjunto\n\n- id: contact_send\n  translation: Enviar\n\n- id: book_appointment\n  translation: Solicitar una cita\n\n# Contact info block\n\n- id: block_contact_title\n  translation: Contáctanos\n\n- id: block_contact_visit_title\n  translation: Visítanos\n\n- id: block_contact_office_hours\n  translation: Horario de atención\n\n- id: block_contact_view_on_map\n  translation: Ver en el mapa\n\n- id: block_contact_connect_title\n  translation: Contacto\n\n- id: block_contact_follow_us\n  translation: Síguenos\n\n- id: block_contact_prospective_title\n  translation: Miembros potenciales\n\n- id: block_contact_form_title\n  translation: Envíanos un mensaje\n\n- id: block_contact_form_name\n  translation: Nombre\n\n- id: block_contact_form_email\n  translation: Email\n\n- id: block_contact_form_subject\n  translation: Asunto\n\n- id: block_contact_form_message\n  translation: Mensaje\n\n- id: block_contact_form_submit\n  translation: Enviar mensaje\n\n# Publication/Event details\n\n- id: abstract\n  translation: Resumen\n\n- id: publication\n  translation: Publicación\n\n- id: publication_type\n  translation: Tipo\n\n- id: date\n  translation: Fecha\n\n- id: last_updated\n  translation: Última actualización el\n\n- id: event\n  translation: Evento\n\n- id: location\n  translation: Localización\n\n- id: pub_paper_conference\n  translation: Artículo de conferencia\n\n- id: pub_article_journal\n  translation: Artículo de revista\n\n- id: pub_article\n  translation: Prepublicación\n\n- id: pub_report\n  translation: Informe\n\n- id: pub_book\n  translation: Libro\n\n- id: pub_chapter\n  translation: Capítulo de libro\n\n- id: pub_thesis\n  translation: Tesis\n\n- id: pub_patent\n  translation: Patente\n\n# Project details\n\n- id: open_project_site\n  translation: Ir al sitio del proyecto\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: Blog\n\n- id: publications\n  translation: Publicaciones\n\n- id: events\n  translation: Eventos\n\n- id: projects\n  translation: Proyectos\n\n- id: slides\n  translation: Diapositivas\n\n- id: authors\n  translation: Autores\n\n# Search\n\n- id: search\n  translation: Buscar\n\n- id: search_placeholder\n  translation: Buscar...\n\n- id: search_results\n  translation: resultados encontrados\n\n- id: search_no_results\n  translation: No se encontraron resultados\n\n- id: search_common_queries\n  translation: Búsquedas comunes\n\n# Error 404\n\n- id: page_not_found\n  translation: Página no encontrada\n\n- id: 404_recommendations\n  translation: ¿Buscabas una de éstas?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Este sitio web utiliza cookies para garantizarle una mejor experiencia.\n\n- id: cookie_dismiss\n  translation: Entendido!\n\n- id: cookie_learn\n  translation: Más información\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n\n- id: poweredby_button\n  translation: 'Crea el tuyo →'\n\n# AI Features\n\n- id: ai_insight\n  translation: Perspectiva de IA\n\n# Content Metadata\n\n- id: content_type\n  translation: Tipo de contenido\n\n- id: difficulty\n  translation: Dificultad\n\n- id: prerequisites\n  translation: Requisitos previos\n\n# Card metadata\n\n- id: trending\n  translation: Tendencia\n\n- id: article\n  translation: artículo\n\n- id: articles\n  translation: artículos\n\n- id: browse\n  translation: Explorar\n\n- id: all\n  translation: Todo\n\n- id: helpful\n  translation: útil\n\n# Additional buttons\n\n- id: btn_site\n  translation: Sitio\n\n- id: btn_canonical\n  translation: Canónico\n\n- id: btn_crosspost\n  translation: Crosspost\n\n- id: btn_discussion\n  translation: Discusión\n\n- id: btn_event\n  translation: Evento\n\n- id: btn_calendar\n  translation: Calendario\n\n- id: btn_registration\n  translation: Registro\n\n- id: btn_demo\n  translation: Demo\n\n- id: btn_model\n  translation: Modelo\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n# Callouts\n\n- id: callout_abstract\n  translation: Resumen\n\n- id: callout_summary\n  translation: Resumen\n\n- id: callout_info\n  translation: Info\n\n- id: callout_todo\n  translation: Tareas\n\n- id: callout_tip\n  translation: Consejo\n\n- id: callout_question\n  translation: Pregunta\n\n- id: callout_quote\n  translation: Cita\n\n- id: callout_warning\n  translation: Advertencia\n\n- id: callout_danger\n  translation: Peligro\n\n- id: callout_bug\n  translation: Error\n\n- id: callout_example\n  translation: Ejemplo\n\n- id: callout_failure\n  translation: Fallo\n\n- id: callout_success\n  translation: Éxito\n\n# Slides\n\n- id: back_to_slides\n  translation: Volver a diapositivas\n\n- id: present_slides\n  translation: Presentar\n\n- id: present_fullscreen\n  translation: Presentar (pantalla completa)\n\n- id: export_pdf_print\n  translation: Exportar PDF (impresión)\n\n- id: slides_print_hint\n  translation: Se abre en modo impresión - usa Imprimir > Guardar como PDF\n\n- id: slides_search_placeholder\n  translation: Busca mazos por título...\n\n- id: slides_no_decks\n  translation: No se encontraron diapositivas\n\n- id: slides_no_matches\n  translation: Ningún mazo coincide con tus filtros\n\n- id: clear_filters\n  translation: Borrar filtros\n\n- id: topics\n  translation: Temas\n\n- id: details\n  translation: Detalles\n\n- id: related_resources\n  translation: Recursos relacionados\n\n- id: copy_link\n  translation: Copiar enlace\n\n- id: copy_citation\n  translation: Copiar cita\n\n- id: how_to_cite\n  translation: Cómo citar\n\n- id: citation\n  translation: Cita\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: Descargar cite.bib\n\n- id: lecture\n  translation: Clase\n\n- id: enter_fullscreen\n  translation: Entrar en pantalla completa\n\n- id: exit_fullscreen\n  translation: Salir de pantalla completa\n\n- id: speaker_notes_hint\n  translation: para notas del presentador\n\n- id: slides_not_found\n  translation: Diapositivas no encontradas\n\n# Q&A\n\n- id: qa\n  translation: Preguntas y respuestas\n\n- id: question\n  translation: Pregunta\n\n- id: answer\n  translation: Respuesta\n\n- id: accepted_answer\n  translation: Respuesta aceptada\n\n- id: other_answers\n  translation: Otras respuestas\n\n- id: questions\n  translation: Preguntas\n\n- id: questions_count\n  translation: preguntas\n\n- id: related_questions\n  translation: Preguntas relacionadas\n\n- id: search_questions\n  translation: Buscar preguntas...\n\n- id: no_questions_yet\n  translation: Aún no hay preguntas\n\n- id: faq\n  translation: FAQ\n\n- id: faqs\n  translation: FAQs\n\n- id: browse_by_category\n  translation: Navegar por categoría\n\n# General extras\n\n- id: about_me\n  translation: Resumen profesional\n\n- id: backlinks\n  translation: Enlaces de retorno\n\n- id: days\n  translation: Días\n\n- id: hours\n  translation: Horas\n\n- id: minutes\n  translation: Minutos\n\n- id: seconds\n  translation: Segundos\n\n- id: developer\n  translation: Desarrollador\n\n- id: docs\n  translation: Documentación\n\n- id: experience\n  translation: Experiencia\n\n- id: read_more\n  translation: Leer más\n\n- id: featured\n  translation: Destacado\n\n- id: block_contact_follow_me\n  translation: Encuéntrame en\n\n- id: portfolio_link_code\n  translation: Código\n\n- id: portfolio_link_live\n  translation: En vivo\n\n- id: portfolio_link_demo\n  translation: Demo\n\n- id: portfolio_link_default\n  translation: Enlace\n\n- id: portfolio_view_all\n  translation: Ver todos los proyectos\n\n- id: scroll_to_content\n  translation: Ir al contenido\n\n- id: feedback_widget_title\n  translation: Comentarios\n\n- id: feedback_widget_question\n  translation: ¿Esta página fue útil?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Sí\n\n- id: feedback_widget_answer_negative\n  translation: 😡 No\n"
  },
  {
    "path": "modules/blox/i18n/et.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Näita menüüd\n\n- id: table_of_contents\n  translation: Sisukord\n\n- id: on_this_page\n  translation: Sellel lehel\n\n- id: back_to_top\n  translation: Lehe algusse\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Vaata ka\n\n- id: minute_read\n  translation: min lugemine\n\n- id: previous\n  translation: Tagasi\n\n- id: next\n  translation: Edasi\n\n- id: figure\n  translation: 'Kujutis %d:'\n\n- id: edit_page\n  translation: Muuda seda lehte\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Eeltrükk\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Tsiteeri\n\n- id: btn_slides\n  translation: Slaidid\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Lähtekood\n\n- id: btn_dataset\n  translation: Lähteandmed\n\n- id: btn_project\n  translation: Projekt\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Algdokument\n\n- id: btn_copy\n  translation: Koopia\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Laadi alla\n\n# About widget\n\n- id: interests\n  translation: Huvid\n\n- id: education\n  translation: Haridus\n\n- id: user_profile_latest\n  translation: Värske\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Vaata serti\n\n# Experience widget\n\n- id: present\n  translation: Praegu\n\n# Pages widget\n\n- id: more_pages\n  translation: Näita kõiki\n\n- id: more_posts\n  translation: Näita kõiki postitusi\n\n- id: more_talks\n  translation: Näita kõiki esinemisi\n\n- id: more_publications\n  translation: Näita kõiki väljaandeid\n\n# Contact widget\n\n- id: contact_name\n  translation: Nimi\n\n- id: contact_email\n  translation: Meil\n\n- id: contact_message\n  translation: Sõnum\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Saada\n\n- id: book_appointment\n  translation: Lepi kohtumine\n\n# Publication/Event details\n\n- id: abstract\n  translation: Kokkuvõte\n\n- id: publication\n  translation: Väljaanne\n\n- id: publication_type\n  translation: Tüüp\n\n- id: date\n  translation: Kuupäev\n\n- id: last_updated\n  translation: Viimati uuendatud\n\n- id: event\n  translation: Sündmus\n\n- id: location\n  translation: Asukoht\n\n- id: pub_paper_conference\n  translation: Ettekanne\n\n- id: pub_article_journal\n  translation: Artikkel\n\n- id: pub_article\n  translation: Eeltrükk\n\n- id: pub_report\n  translation: Raport\n\n- id: pub_book\n  translation: Raamat\n\n- id: pub_chapter\n  translation: Peatükk\n\n- id: pub_thesis\n  translation: Väitekiri\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Mine projektilehele\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Blogi\n\n- id: publications\n  translation: Publikatsioonid\n\n- id: talks\n  translation: Esinemised\n\n- id: projects\n  translation: Projektid\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Otsing\n\n- id: search_placeholder\n  translation: Otsimine...\n\n- id: search_results\n  translation: tulemust\n\n- id: search_no_results\n  translation: Tulemusi pole\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Lehekülge ei leitud\n\n- id: 404_recommendations\n  translation: Äkki mõni neist aitab edasi?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: See veebisait kasutab küpsiseid, et pakkuda sulle isikustatud lehitsemiskogemust.\n\n- id: cookie_dismiss\n  translation: Selge!\n\n- id: cookie_learn\n  translation: Täpsemalt\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/eu.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Nabigazio-barra\n\n- id: table_of_contents\n  translation: Aurkibidea\n\n- id: on_this_page\n  translation: Orrialde honetan\n\n- id: back_to_top\n  translation: Hasierara itzuli\n\n- id: home\n  translation: Hasiera\n\n- id: close\n  translation: Itxi\n\n- id: languages\n  translation: Hizkuntzak\n\n# General\n\n- id: related\n  translation: Erlazionatuta\n\n- id: minute_read\n  translation: minutuko irakurketa\n\n- id: previous\n  translation: Aurrekoa\n\n- id: next\n  translation: Hurrengoa\n\n- id: figure\n  translation: 'Figura %d:'\n\n- id: edit_page\n  translation: Orrialde hau editatu\n\n# Themes\n\n- id: theme_selector\n  translation: Bistaratze lehentasunak\n\n- id: theme_light\n  translation: Argia\n\n- id: theme_dark\n  translation: Iluna\n\n- id: theme_auto\n  translation: Automatikoa\n\n# Buttons\n\n- id: btn_preprint\n  translation: Aurreargitalpena\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Aipuak\n\n- id: btn_slides\n  translation: Diapositibak\n\n- id: btn_video\n  translation: Bideoa\n\n- id: btn_code\n  translation: Kodea\n\n- id: btn_dataset\n  translation: Datu-sorta\n\n- id: btn_project\n  translation: Proiektua\n\n- id: btn_poster\n  translation: Posterra\n\n- id: btn_source\n  translation: Jatorrizko dokumentua\n\n- id: btn_copy\n  translation: Kopiatu\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Deskargatu\n\n# About widget\n\n- id: interests\n  translation: Interesak\n\n- id: education\n  translation: Ikasketak\n\n- id: user_profile_latest\n  translation: Berriak\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Ikusi ziurtagiria\n\n# Experience widget\n\n- id: present\n  translation: Gaur egun\n\n# Pages widget\n\n- id: more_pages\n  translation: Ikusi dena\n\n- id: more_posts\n  translation: Post gehiago\n\n- id: more_talks\n  translation: Ekitaldi gehiago\n\n- id: more_publications\n  translation: Argitalpen gehiago\n\n# Contact widget\n\n- id: contact_name\n  translation: Izena\n\n- id: contact_email\n  translation: Emaila\n\n- id: contact_message\n  translation: Mezua\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Bidali\n\n- id: book_appointment\n  translation: Hitzordua eskatu\n\n# Publication/Event details\n\n- id: abstract\n  translation: Laburpena\n\n- id: publication\n  translation: Argitalpena\n\n- id: publication_type\n  translation: Mota\n\n- id: date\n  translation: Data\n\n- id: last_updated\n  translation: Azkenengoz editatua\n\n- id: event\n  translation: Ekitaldia\n\n- id: location\n  translation: Kokalekua\n\n- id: pub_paper_conference\n  translation: Konferentzia-artikulua\n\n- id: pub_article_journal\n  translation: Aldizkari-artikulua\n\n- id: pub_article\n  translation: Aurreargitalpena\n\n- id: pub_report\n  translation: Txostena\n\n- id: pub_book\n  translation: Liburua\n\n- id: pub_chapter\n  translation: Liburu-kapitulua\n\n- id: pub_thesis\n  translation: Tesia\n\n- id: pub_patent\n  translation: Patentea\n\n# Project details\n\n- id: open_project_site\n  translation: Joan proiektuaren webgunera\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Posts\n\n- id: publications\n  translation: Argitalpenak\n\n- id: talks\n  translation: Ekitaldiak\n\n- id: projects\n  translation: Proiektuak\n\n- id: slides\n  translation: Diapositibak\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Bilatu\n\n- id: search_placeholder\n  translation: Bilatu...\n\n- id: search_results\n  translation: Bilaketaren emaitzak\n\n- id: search_no_results\n  translation: Ez da ezer aurkitu\n\n- id: search_common_queries\n  translation: Ohiko bilaketak\n\n# Error 404\n\n- id: page_not_found\n  translation: Ezin izan da orrialdea aurkitu\n\n- id: 404_recommendations\n  translation: Agian hauetako baten bila zenbiltzan?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Webgune honek cookie-ak erabiltzen ditu esperientzia hobea bermatzeko.\n\n- id: cookie_dismiss\n  translation: Ulertua!\n\n- id: cookie_learn\n  translation: Informazio gehiago\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/fa.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: خاموش/روشن کردن مسیر\n\n- id: table_of_contents\n  translation: فهرست مطالب\n\n- id: on_this_page\n  translation: محتوا\n\n- id: back_to_top\n  translation: بازگشت به بالا\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: مرتبط\n\n- id: minute_read\n  translation: زمان خواندن\n\n- id: previous\n  translation: قبلی\n\n- id: next\n  translation: بعدی\n\n- id: figure\n  translation: 'شکل %d:'\n\n- id: edit_page\n  translation: ویرایش صفحه\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: روشن\n\n- id: theme_dark\n  translation: تاریک\n\n- id: theme_auto\n  translation: روشنایی خودکار\n\n# Buttons\n\n- id: btn_preprint\n  translation: نسخه پیش از چاپ\n\n- id: btn_pdf\n  translation: فایل PDF\n\n- id: btn_cite\n  translation: رفرنس دادن\n\n- id: btn_slides\n  translation: اسلایدها\n\n- id: btn_video\n  translation: ویدئو\n\n- id: btn_code\n  translation: برنامه\n\n- id: btn_dataset\n  translation: داده‌ها\n\n- id: btn_project\n  translation: پروژه\n\n- id: btn_poster\n  translation: پوستر\n\n- id: btn_source\n  translation: متن اصلی\n\n- id: btn_copy\n  translation: کپی\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: دانلود\n\n# About widget\n\n- id: interests\n  translation: موضوعات پژوهشی\n\n- id: education\n  translation: تحصیلات\n\n- id: user_profile_latest\n  translation: آخرین‌ها\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: مشاهده گواهی\n\n# Experience widget\n\n- id: present\n  translation: اکنون\n\n# Pages widget\n\n- id: more_pages\n  translation: بقیه صفحات\n\n- id: more_posts\n  translation: بقیه پست‌ها\n\n- id: more_talks\n  translation: بقیه سخنرانی‌ها\n\n- id: more_publications\n  translation: بقیه آثار\n\n# Contact widget\n\n- id: contact_name\n  translation: نام\n\n- id: contact_email\n  translation: ایمیل\n\n- id: contact_message\n  translation: پیام\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: ارسال\n\n- id: book_appointment\n  translation: تعیین قرار ملاقات\n\n# Publication/Event details\n\n- id: abstract\n  translation: چکیده\n\n- id: publication\n  translation: اثر\n\n- id: publication_type\n  translation: نوع اثر\n\n- id: date\n  translation: تاریخ\n\n- id: last_updated\n  translation: آخرین به روز رسانی\n\n- id: event\n  translation: رویداد\n\n- id: location\n  translation: مکان\n\n- id: pub_paper_conference\n  translation: مقاله کنفرانسی\n\n- id: pub_article_journal\n  translation: مقاله ژورنالی\n\n- id: pub_article\n  translation: پیش‌نویس مقاله\n\n- id: pub_report\n  translation: گزارش\n\n- id: pub_book\n  translation: کتاب\n\n- id: pub_chapter\n  translation: فصل از کتاب\n\n- id: pub_thesis\n  translation: پایان‌نامه\n\n- id: pub_patent\n  translation: ثبت اختراع\n\n# Project details\n\n- id: open_project_site\n  translation: باز کردن وب‌سایت پروژه\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: پست‌ها\n\n- id: publications\n  translation: آثار\n\n- id: talks\n  translation: سخنرانی‌ها\n\n- id: projects\n  translation: پروژه‌ها\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: جستجو\n\n- id: search_placeholder\n  translation: جستجو...\n\n- id: search_results\n  translation: نتیجه پیدا شد.\n\n- id: search_no_results\n  translation: هیچ نتیجه‌ای پیدا نشد.\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: صفحه پیدا نشد.\n\n- id: 404_recommendations\n  translation: شاید دنبال یکی از این صفحات بودید؟\n\n# Cookie consent\n\n- id: cookie_message\n  translation: این وب‌سایت برای بهبود تجربه کاربری شما از کوکی‌ها استفاده می‌کند.\n\n- id: cookie_dismiss\n  translation: باشه!\n\n- id: cookie_learn\n  translation: اطلاعات بیشتر...\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/fi.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Navigointi\n\n- id: table_of_contents\n  translation: Sisällys\n\n- id: on_this_page\n  translation: Sisältö\n\n- id: back_to_top\n  translation: Takaisin ylös\n\n- id: home\n  translation: Etusivu\n\n- id: close\n  translation: Sulje\n\n- id: languages\n  translation: Kielet\n\n# General\n\n- id: related\n  translation: Aiheeseen liittyvät\n\n- id: minute_read\n  translation: min (lukuaika)\n\n- id: previous\n  translation: Edellinen\n\n- id: next\n  translation: Seuraava\n\n- id: figure\n  translation: 'Kuvio %d:'\n\n- id: edit_page\n  translation: Muokkaa sivua\n\n# Themes\n\n- id: theme_selector\n  translation: Valitse teema\n\n- id: theme_light\n  translation: Vaalea\n\n- id: theme_dark\n  translation: Tumma\n\n- id: theme_auto\n  translation: Automaattinen\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preprint\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Siteeraa\n\n- id: btn_slides\n  translation: Diaesitykset\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Koodi\n\n- id: btn_dataset\n  translation: Tietojoukot\n\n- id: btn_project\n  translation: Projekti\n\n- id: btn_poster\n  translation: Juliste\n\n- id: btn_source\n  translation: Lähdeasiakirja\n\n- id: btn_copy\n  translation: Kopioi\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Lataa\n\n# About widget\n\n- id: interests\n  translation: Kiinnostukset\n\n- id: education\n  translation: Koulutus\n\n- id: user_profile_latest\n  translation: Viimeisin\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Katso todistus\n\n# Experience widget\n\n- id: present\n  translation: Nykyinen\n\n# Pages widget\n\n- id: more_pages\n  translation: Katso kaikki\n\n- id: more_posts\n  translation: Kaikki blogitekstit\n\n- id: more_talks\n  translation: Katso kaikki esitelmät\n\n- id: more_publications\n  translation: Katso kaikki julkaisut\n\n# Contact widget\n\n- id: contact_name\n  translation: Nimi\n\n- id: contact_email\n  translation: Sähköposti\n\n- id: contact_message\n  translation: Viesti\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Lähetä\n\n- id: book_appointment\n  translation: Sovi tapaaminen\n\n# Publication/Event details\n\n- id: abstract\n  translation: Abstrakti\n\n- id: publication\n  translation: Julkaisu\n\n- id: publication_type\n  translation: Tyyppi\n\n- id: date\n  translation: Päivämäärä\n\n- id: last_updated\n  translation: Viimeksi päivitetty\n\n- id: event\n  translation: Tapahtuma\n\n- id: location\n  translation: Sijainti\n\n- id: pub_paper_conference\n  translation: Konferenssijulkaisu\n\n- id: pub_article_journal\n  translation: Artikkeli\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Raportti\n\n- id: pub_book\n  translation: Kirja\n\n- id: pub_chapter\n  translation: Kirjan kohta\n\n- id: pub_thesis\n  translation: Opinnäyte\n\n- id: pub_patent\n  translation: Patentti\n\n# Project details\n\n- id: open_project_site\n  translation: Siirry projektisivulle\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Blogitekstit\n\n- id: publications\n  translation: Julkaisut\n\n- id: talks\n  translation: Esitelmät\n\n- id: projects\n  translation: Projektit\n\n- id: slides\n  translation: Diaesitykset\n\n- id: authors\n  translation: Kirjoittajat\n\n# Search\n\n- id: search\n  translation: Etsi\n\n- id: search_placeholder\n  translation: Etsi...\n\n- id: search_results\n  translation: tulosta löydetty\n\n- id: search_no_results\n  translation: Ei tuloksia\n\n- id: search_common_queries\n  translation: Yleiset haut\n\n# Error 404\n\n- id: page_not_found\n  translation: Sivua ei löydetty\n\n- id: 404_recommendations\n  translation: Ehkä etsit jotain näistä?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Tämä verkkosivusto käyttää evästeitä varmistaakseen, että saat parhaan käyttökokemuksen verkkosivustollamme.\n\n- id: cookie_dismiss\n  translation: Hyväksytty\n\n- id: cookie_learn\n  translation: Lisätietoja\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/fr.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Ouvrir la barre de navigation\n\n- id: table_of_contents\n  translation: Table des matières\n\n- id: on_this_page\n  translation: Dans cette page\n\n- id: back_to_top\n  translation: Retourner au début\n\n- id: home\n  translation: Accueil\n\n- id: close\n  translation: Fermer\n\n- id: languages\n  translation: Langues\n\n# General\n\n- id: related\n  translation: Sur le même sujet\n\n# Callouts - All Obsidian-compatible types\n- id: callout_note\n  translation: Note\n\n- id: callout_abstract\n  translation: Résumé\n\n- id: callout_summary\n  translation: Résumé\n\n- id: callout_info\n  translation: Info\n\n- id: callout_todo\n  translation: À faire\n\n- id: callout_tip\n  translation: Conseil\n\n- id: callout_success\n  translation: Succès\n\n- id: callout_question\n  translation: Question\n\n- id: callout_warning\n  translation: Attention\n\n- id: callout_failure\n  translation: Échec\n\n- id: callout_danger\n  translation: Danger\n\n- id: callout_bug\n  translation: Bug\n\n- id: callout_example\n  translation: Exemple\n\n- id: callout_quote\n  translation: Citation\n\n- id: callout_important\n  translation: Important\n\n- id: callout_caution\n  translation: Prudence\n\n- id: minute_read\n  translation: min. de lecture\n\n- id: previous\n  translation: Précédent\n\n- id: next\n  translation: Suivant\n\n- id: figure\n  translation: 'Figure %d:'\n\n- id: edit_page\n  translation: Editer cette page\n\n# Themes\n\n- id: theme_selector\n  translation: Préférences d'affichage\n\n- id: theme_light\n  translation: Clair\n\n- id: theme_dark\n  translation: Sombre\n\n- id: theme_auto\n  translation: Automatique\n\n# Buttons\n\n- id: btn_preprint\n  translation: Pré-impression\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citation\n\n- id: btn_slides\n  translation: Diapositives\n\n- id: btn_video\n  translation: Vidéo\n\n- id: btn_code\n  translation: Code\n\n- id: btn_dataset\n  translation: Jeu de données\n\n- id: btn_project\n  translation: Projet\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Document source\n\n- id: btn_copy\n  translation: Copier\n\n- id: btn_copied\n  translation: Copié\n\n- id: btn_download\n  translation: Télécharger\n\n# About widget\n\n- id: interests\n  translation: Intérêts\n\n- id: education\n  translation: Éducation\n\n- id: user_profile_latest\n  translation: Récents\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Voir certificat\n\n# Experience widget\n\n- id: experience\n  translation: Expériences\n\n- id: present\n  translation: Actuellement\n\n# Pages widget\n\n- id: more_pages\n  translation: Voir tout\n\n- id: more_posts\n  translation: Plus de posts\n\n- id: more_talks\n  translation: Plus de présentations\n\n- id: more_publications\n  translation: Plus de publications\n\n# Contact widget\n\n- id: contact_name\n  translation: Nom\n\n- id: contact_email\n  translation: E-mail\n\n- id: contact_message\n  translation: Message\n\n- id: contact_attachment\n  translation: Joindre un fichier\n\n- id: contact_send\n  translation: Envoyer\n\n- id: book_appointment\n  translation: Demander un rendez-vous\n\n# Publication/Event details\n\n- id: abstract\n  translation: Résumé\n\n- id: publication\n  translation: Publication\n\n- id: publication_type\n  translation: Type\n\n- id: date\n  translation: Date\n\n- id: last_updated\n  translation: Dernière mise à jour le\n\n- id: event\n  translation: Évènement\n\n- id: location\n  translation: Lieu\n\n- id: pub_paper_conference\n  translation: Article de conférence\n\n- id: pub_article_journal\n  translation: Article de revue\n\n- id: pub_article\n  translation: Pré-impression\n\n- id: pub_report\n  translation: Rapport\n\n- id: pub_book\n  translation: Livre\n\n- id: pub_chapter\n  translation: Chapitre de livre\n\n- id: pub_thesis\n  translation: Thèse\n\n- id: pub_patent\n  translation: Brevet\n\n# Project details\n\n- id: open_project_site\n  translation: Aller sur le site du projet\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: Blog\n\n- id: publications\n  translation: Publications\n\n- id: events\n  translation: Événements\n\n- id: projects\n  translation: Projets\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Auteurs\n\n# Search\n\n- id: search\n  translation: Rechercher\n\n- id: search_placeholder\n  translation: Recherche...\n\n- id: search_results\n  translation: Résultats trouvés\n\n- id: search_no_results\n  translation: Aucun résultat n'a été trouvé\n\n- id: search_common_queries\n  translation: Recherches fréquentes\n\n# Error 404\n\n- id: page_not_found\n  translation: Page non disponible\n\n- id: 404_recommendations\n  translation: Vous cherchiez peut-être une des pages suivantes ?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Ce site utilise des cookies pour vous assurer la meilleure expérience.\n\n- id: cookie_dismiss\n  translation: Accepter\n\n- id: cookie_learn\n  translation: En savoir plus\n\n# Published with\n\n- id: published_with\n  translation: Publié avec {hugoblox} — le générateur {repo_link}libre{/repo_link} de site web gratuit permettant aux créateurs de s'épanouir.\n\n- id: poweredby_button\n  translation: 'Créer le vôtre →'\n"
  },
  {
    "path": "modules/blox/i18n/he.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: ניווט\n\n- id: table_of_contents\n  translation: תוכן עניינים\n\n- id: on_this_page\n  translation: תוכן\n\n- id: back_to_top\n  translation: חזרה למעלה\n\n- id: home\n  translation: בית\n\n- id: close\n  translation: סגירה\n\n- id: languages\n  translation: שפות\n\n# General\n\n- id: related\n  translation: קשור\n\n- id: minute_read\n  translation: דק׳ קריאה\n\n- id: previous\n  translation: הקודם\n\n- id: next\n  translation: הבא\n\n- id: figure\n  translation: 'איור %d:'\n\n- id: edit_page\n  translation: עריכת דף זה\n\n# Themes\n\n- id: theme_selector\n  translation: העדפות תצוגה\n\n- id: theme_light\n  translation: בהיר\n\n- id: theme_dark\n  translation: כהה\n\n- id: theme_auto\n  translation: אוטומטי\n\n# Buttons\n\n- id: btn_preprint\n  translation: קדם-פרסום\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: ציטוט\n\n- id: btn_slides\n  translation: שקופיות\n\n- id: btn_video\n  translation: וידאו\n\n- id: btn_code\n  translation: קוד\n\n- id: btn_dataset\n  translation: ערכת נתונים\n\n- id: btn_project\n  translation: פרויקט\n\n- id: btn_poster\n  translation: פוסטר\n\n- id: btn_source\n  translation: מסמך מקור\n\n- id: btn_copy\n  translation: העתקה\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: הורדה\n\n# About widget\n\n- id: interests\n  translation: תחומי עניין\n\n- id: education\n  translation: השכלה\n\n- id: user_profile_latest\n  translation: פורסם לאחרונה\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: תעודה\n\n# Experience widget\n\n- id: present\n  translation: הווה\n\n# Pages widget\n\n- id: more_pages\n  translation: הכל\n\n- id: more_posts\n  translation: כל הפוסטים\n\n- id: more_talks\n  translation: כל האירועים\n\n- id: more_publications\n  translation: כל הפרסומים\n\n# Contact widget\n\n- id: contact_name\n  translation: שם\n\n- id: contact_email\n  translation: דוא״ל\n\n- id: contact_message\n  translation: הודעה\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: שליחה\n\n- id: book_appointment\n  translation: קביעת פגישה\n\n# Publication/Event details\n\n- id: abstract\n  translation: תקציר\n\n- id: publication\n  translation: פרסום\n\n- id: publication_type\n  translation: סוג\n\n- id: date\n  translation: תאריך\n\n- id: last_updated\n  translation: עודכן לאחרונה ב-\n\n- id: event\n  translation: אירוע\n\n- id: location\n  translation: מיקום\n\n- id: pub_paper_conference\n  translation: נייר ועידה\n\n- id: pub_article_journal\n  translation: מאמר בכתב עת\n\n- id: pub_article\n  translation: קדם-פרסום\n\n- id: pub_report\n  translation: דו״ח\n\n- id: pub_book\n  translation: ספר\n\n- id: pub_chapter\n  translation: קטע של ספר\n\n- id: pub_thesis\n  translation: תזה\n\n- id: pub_patent\n  translation: פטנט\n\n# Project details\n\n- id: open_project_site\n  translation: אתר הפרויקט\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: פוסטים\n\n- id: publications\n  translation: פרסומים\n\n- id: talks\n  translation: אירועים\n\n- id: projects\n  translation: פרויקטים\n\n- id: slides\n  translation: שקופיות\n\n- id: authors\n  translation: מחברים\n\n# Search\n\n- id: search\n  translation: חיפוש\n\n- id: search_placeholder\n  translation: חיפוש...\n\n- id: search_results\n  translation: תוצאות חיפוש\n\n- id: search_no_results\n  translation: לא נמצאו תוצאות\n\n- id: search_common_queries\n  translation: חיפושים נפוצים\n\n# Error 404\n\n- id: page_not_found\n  translation: העמוד לא נמצא\n\n- id: 404_recommendations\n  translation: אולי חיפשת אחד מאלה?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: אתר זה משתמש בקובצי Cookie כדי להבטיח שתקבלו את החוויה הטובה ביותר באתר.\n\n- id: cookie_dismiss\n  translation: הבנתי!\n\n- id: cookie_learn\n  translation: מידע נוסף\n\n# Published with\n\n- id: published_with\n  translation: פורסם באמצעות {hugoblox} — בונה האתרים החינמי, בעל {repo_link}קוד פתוח{/repo_link}, שמעצים יוצרים.\n"
  },
  {
    "path": "modules/blox/i18n/hi.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: नेविगेशन टॉगल करें\n\n- id: table_of_contents\n  translation: सामग्री तालिका\n\n- id: on_this_page\n  translation: इस पेज पर\n\n- id: back_to_top\n  translation: ऊपर वापस जाएँ\n\n- id: home\n  translation: होम\n\n- id: close\n  translation: बंद करें\n\n- id: languages\n  translation: भाषाएँ\n\n# General\n\n- id: related\n  translation: संबंधित\n\n- id: backlinks\n  translation: बैकलिंक्स\n\n# Callouts - All Obsidian-compatible types\n\n- id: callout_note\n  translation: नोट\n\n- id: callout_abstract\n  translation: सार\n\n- id: callout_summary\n  translation: सारांश\n\n- id: callout_info\n  translation: जानकारी\n\n- id: callout_todo\n  translation: करना है\n\n- id: callout_tip\n  translation: सुझाव\n\n- id: callout_success\n  translation: सफलता\n\n- id: callout_question\n  translation: प्रश्न\n\n- id: callout_warning\n  translation: चेतावनी\n\n- id: callout_failure\n  translation: विफलता\n\n- id: callout_danger\n  translation: खतरा\n\n- id: callout_bug\n  translation: बग\n\n- id: callout_example\n  translation: उदाहरण\n\n- id: callout_quote\n  translation: उद्धरण\n\n- id: callout_important\n  translation: महत्वपूर्ण\n\n- id: callout_caution\n  translation: सावधानी\n\n- id: minute_read\n  translation: मिनट पढ़ें\n\n- id: previous\n  translation: पिछला\n\n- id: next\n  translation: अगला\n\n- id: figure\n  translation: 'चित्र %d:'\n\n- id: edit_page\n  translation: इस पेज को संपादित करें\n\n# Themes\n\n- id: theme_selector\n  translation: प्रदर्शन प्राथमिकताएँ\n\n- id: theme_light\n  translation: लाइट\n\n- id: theme_dark\n  translation: डार्क\n\n- id: theme_auto\n  translation: स्वचालित\n\n# Buttons\n\n- id: btn_preprint\n  translation: प्रीप्रिंट\n\n- id: btn_pdf\n  translation: पीडीएफ\n\n- id: btn_cite\n  translation: उद्धृत करें\n\n- id: btn_slides\n  translation: स्लाइड्स\n\n- id: btn_video\n  translation: वीडियो\n\n- id: btn_code\n  translation: कोड\n\n- id: btn_dataset\n  translation: डेटासेट\n\n- id: btn_project\n  translation: प्रोजेक्ट\n\n- id: btn_poster\n  translation: पोस्टर\n\n- id: btn_source\n  translation: स्रोत दस्तावेज़\n\n# New link types\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_site\n  translation: साइट\n\n- id: btn_canonical\n  translation: कैनोनिकल\n\n- id: btn_crosspost\n  translation: क्रॉसपोस्ट\n\n- id: btn_discussion\n  translation: चर्चा\n\n- id: btn_event\n  translation: इवेंट\n\n- id: btn_calendar\n  translation: कैलेंडर\n\n- id: btn_registration\n  translation: पंजीकरण\n\n- id: btn_demo\n  translation: डेमो\n\n- id: btn_model\n  translation: मॉडल\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n- id: btn_copy\n  translation: कॉपी करें\n\n- id: btn_copied\n  translation: कॉपी किया गया\n\n- id: btn_download\n  translation: डाउनलोड\n\n# About widget\n\n- id: interests\n  translation: रुचियाँ\n\n- id: education\n  translation: शिक्षा\n\n- id: about_me\n  translation: व्यावसायिक सारांश\n\n- id: user_profile_latest\n  translation: नवीनतम\n\n# Countdown widget\n\n- id: days\n  translation: दिन\n\n- id: hours\n  translation: घंटे\n\n- id: minutes\n  translation: मिनट\n\n- id: seconds\n  translation: सेकंड\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: प्रमाणपत्र देखें\n\n# Experience widget\n\n- id: experience\n  translation: अनुभव\n\n- id: present\n  translation: वर्तमान\n\n# Pages widget\n\n- id: read_more\n  translation: और पढ़ें\n\n- id: more_pages\n  translation: सभी देखें\n\n- id: more_posts\n  translation: सभी पोस्ट देखें\n\n- id: more_talks\n  translation: सभी इवेंट देखें\n\n- id: more_publications\n  translation: सभी प्रकाशन देखें\n\n# Contact widget\n\n- id: contact_name\n  translation: नाम\n\n- id: contact_email\n  translation: ईमेल\n\n- id: contact_message\n  translation: संदेश\n\n- id: contact_attachment\n  translation: फ़ाइल संलग्न करें\n\n- id: contact_send\n  translation: भेजें\n\n- id: book_appointment\n  translation: अपॉइंटमेंट बुक करें\n\n# Contact info block\n\n- id: block_contact_title\n  translation: संपर्क करें\n\n- id: block_contact_visit_title\n  translation: हमसे मिलें\n\n- id: block_contact_office_hours\n  translation: ऑफिस समय\n\n- id: block_contact_view_on_map\n  translation: मैप पर देखें\n\n- id: block_contact_connect_title\n  translation: कनेक्ट करें\n\n- id: block_contact_follow_us\n  translation: हमें फॉलो करें\n\n- id: block_contact_follow_me\n  translation: मुझे यहाँ पाएँ\n\n- id: block_contact_prospective_title\n  translation: संभावित सदस्य\n\n- id: block_contact_form_title\n  translation: हमें संदेश भेजें\n\n- id: block_contact_form_name\n  translation: नाम\n\n- id: block_contact_form_email\n  translation: ईमेल\n\n- id: block_contact_form_subject\n  translation: विषय\n\n- id: block_contact_form_message\n  translation: संदेश\n\n- id: block_contact_form_submit\n  translation: संदेश भेजें\n\n# Publication/Event details\n\n- id: abstract\n  translation: सार\n\n- id: publication\n  translation: प्रकाशन\n\n- id: publication_type\n  translation: प्रकार\n\n- id: date\n  translation: तारीख\n\n- id: last_updated\n  translation: अंतिम अपडेट\n\n- id: event\n  translation: इवेंट\n\n- id: location\n  translation: स्थान\n\n- id: pub_paper_conference\n  translation: सम्मेलन पेपर\n\n- id: pub_article_journal\n  translation: जर्नल लेख\n\n- id: pub_article\n  translation: प्रीप्रिंट\n\n- id: pub_report\n  translation: रिपोर्ट\n\n- id: pub_book\n  translation: पुस्तक\n\n- id: pub_chapter\n  translation: पुस्तक अनुभाग\n\n- id: pub_thesis\n  translation: थीसिस\n\n- id: pub_patent\n  translation: पेटेंट\n\n# Project details\n\n- id: open_project_site\n  translation: प्रोजेक्ट साइट पर जाएँ\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: ब्लॉग\n\n- id: publications\n  translation: प्रकाशन\n\n- id: events\n  translation: इवेंट\n\n- id: projects\n  translation: प्रोजेक्ट\n\n- id: slides\n  translation: स्लाइड्स\n\n- id: authors\n  translation: लेखक\n\n- id: qa\n  translation: प्रश्नोत्तर\n\n- id: questions\n  translation: प्रश्न\n\n- id: faq\n  translation: अक्सर पूछे जाने वाले प्रश्न\n\n- id: faqs\n  translation: FAQs\n\n- id: docs\n  translation: प्रलेखन\n\n- id: question\n  translation: प्रश्न\n\n- id: answer\n  translation: उत्तर\n\n- id: accepted_answer\n  translation: स्वीकृत उत्तर\n\n- id: other_answers\n  translation: अन्य उत्तर\n\n- id: related_questions\n  translation: संबंधित प्रश्न\n\n- id: browse_by_category\n  translation: श्रेणी के अनुसार ब्राउज़ करें\n\n- id: search_questions\n  translation: प्रश्न खोजें...\n\n- id: no_questions_yet\n  translation: अभी तक कोई प्रश्न नहीं\n\n- id: questions_count\n  translation: प्रश्न\n\n# Slides\n\n- id: back_to_slides\n  translation: स्लाइड्स पर वापस जाएँ\n\n- id: featured\n  translation: विशेष\n\n- id: details\n  translation: विवरण\n\n- id: present_slides\n  translation: प्रस्तुति करें\n\n- id: present_fullscreen\n  translation: प्रस्तुति (फुलस्क्रीन)\n\n- id: export_pdf_print\n  translation: पीडीएफ निर्यात (प्रिंट)\n\n- id: slides_print_hint\n  translation: प्रिंट मोड में खुलेगा - ब्राउज़र प्रिंट > PDF के रूप में सहेजें\n\n- id: slides_search_placeholder\n  translation: शीर्षक से डेक खोजें...\n\n- id: slides_no_decks\n  translation: कोई स्लाइड डेक नहीं मिला\n\n- id: slides_no_matches\n  translation: कोई डेक आपके फ़िल्टर से मेल नहीं खाता\n\n- id: clear_filters\n  translation: फ़िल्टर साफ़ करें\n\n- id: topics\n  translation: विषय\n\n- id: related_resources\n  translation: संबंधित संसाधन\n\n- id: copy_link\n  translation: लिंक कॉपी करें\n\n- id: copy_citation\n  translation: उद्धरण कॉपी करें\n\n- id: how_to_cite\n  translation: कैसे उद्धृत करें\n\n- id: citation\n  translation: उद्धरण\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: cite.bib डाउनलोड करें\n\n- id: lecture\n  translation: व्याख्यान\n\n- id: enter_fullscreen\n  translation: फुलस्क्रीन में जाएँ\n\n- id: exit_fullscreen\n  translation: फुलस्क्रीन से बाहर निकलें\n\n- id: speaker_notes_hint\n  translation: वक्ता नोट्स के लिए\n\n- id: slides_not_found\n  translation: स्लाइड्स नहीं मिलीं\n\n# Search\n\n- id: search\n  translation: खोज\n\n- id: search_placeholder\n  translation: खोजें...\n\n- id: search_results\n  translation: परिणाम मिले\n\n- id: search_no_results\n  translation: कोई परिणाम नहीं मिला\n\n- id: search_common_queries\n  translation: सामान्य खोजें\n\n# Error 404\n\n- id: page_not_found\n  translation: पेज नहीं मिला\n\n- id: 404_recommendations\n  translation: शायद आप इनमें से किसी को ढूँढ रहे थे?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: यह वेबसाइट सर्वोत्तम अनुभव देने के लिए कुकीज़ का उपयोग करती है।\n\n- id: cookie_dismiss\n  translation: समझ गया!\n\n- id: cookie_learn\n  translation: और जानें\n\n# Published with\n\n- id: published_with\n  translation: '{hugoblox} के साथ बनाया गया — मुफ़्त {repo_link}ओपन सोर्स{/repo_link} वेबसाइट बिल्डर जो क्रिएटर्स को सशक्त करता है।'\n\n- id: poweredby_button\n  translation: 'अपनी बनाएँ →'\n\n# Dev Hero block\n\n- id: scroll_to_content\n  translation: सामग्री पर स्क्रॉल करें\n\n- id: developer\n  translation: डेवलपर\n\n# Portfolio block\n\n- id: portfolio_link_code\n  translation: कोड\n\n- id: portfolio_link_live\n  translation: लाइव\n\n- id: portfolio_link_demo\n  translation: डेमो\n\n- id: portfolio_link_default\n  translation: लिंक\n\n- id: portfolio_view_all\n  translation: सभी प्रोजेक्ट देखें\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: प्रतिपुष्टि\n\n- id: feedback_widget_question\n  translation: क्या यह पेज सहायक था?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 हाँ\n\n- id: feedback_widget_answer_negative\n  translation: 😡 नहीं\n\n# AI Features\n\n- id: ai_insight\n  translation: एआई अंतर्दृष्टि\n\n# Content Metadata\n\n- id: content_type\n  translation: सामग्री प्रकार\n\n- id: difficulty\n  translation: कठिनाई\n\n- id: prerequisites\n  translation: पूर्वापेक्षाएँ\n\n# Card metadata\n\n- id: trending\n  translation: ट्रेंडिंग\n\n- id: article\n  translation: लेख\n\n- id: articles\n  translation: लेख\n\n- id: browse\n  translation: ब्राउज़\n\n- id: all\n  translation: सब\n\n- id: helpful\n  translation: सहायक\n"
  },
  {
    "path": "modules/blox/i18n/hr.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Promjeni navigaciju\n\n- id: table_of_contents\n  translation: Sadržaj\n\n- id: on_this_page\n  translation: Na ovoj stranici\n\n- id: back_to_top\n  translation: Natrag na vrh\n\n- id: home\n  translation: Početna stranica\n\n- id: close\n  translation: Zatvori\n\n- id: languages\n  translation: Jezici\n\n# General\n\n- id: related\n  translation: Povezano\n\n- id: minute_read\n  translation: Čitanje u minutama\n\n- id: previous\n  translation: Prethodni\n\n- id: next\n  translation: Sljedeći\n\n- id: figure\n  translation: 'Slika %d:'\n\n- id: edit_page\n  translation: Promjeni ovu stranicu\n\n# Themes\n\n- id: theme_selector\n  translation: Postavke prikaza\n\n- id: theme_light\n  translation: Svjetla\n\n- id: theme_dark\n  translation: Tamna\n\n- id: theme_auto\n  translation: Automatska\n\n# Buttons\n\n- id: btn_preprint\n  translation: Pretisak\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citiraj\n\n- id: btn_slides\n  translation: Slajdovi\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kod\n\n- id: btn_dataset\n  translation: Set podataka\n\n- id: btn_project\n  translation: Projekt\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Izvorni Dokument\n\n- id: btn_copy\n  translation: Kopiraj\n\n- id: btn_copied\n  translation: Kopirano\n\n- id: btn_download\n  translation: Preuzmi\n\n# About widget\n\n- id: interests\n  translation: Interesi\n\n- id: education\n  translation: Obrazovanje\n\n- id: user_profile_latest\n  translation: Najnovije\n\n# Countdown widget\n\n- id: days\n  translation: Dani\n- id: hours\n  translation: Sati\n- id: minutes\n  translation: Minute\n- id: seconds\n  translation: Sekunde\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: See certifikat\n\n# Experience widget\n\n- id: experience\n  translation: Iskustvo\n\n- id: present\n  translation: Trenutno\n\n# Pages widget\n\n- id: read_more\n  translation: Pročitaj više\n\n- id: more_pages\n  translation: Vidi sve\n\n- id: more_posts\n  translation: Vidi sve objave\n\n- id: more_talks\n  translation: Vidi sve događaje\n\n- id: more_publications\n  translation: Vidi sve publikacije\n\n# Contact widget\n\n- id: contact_name\n  translation: Ime\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Poruka\n\n- id: contact_attachment\n  translation: Dodaj privitak\n\n- id: contact_send\n  translation: Pošalji\n\n- id: book_appointment\n  translation: Dogovori sastanak\n\n# Publication/Event details\n\n- id: abstract\n  translation: Sažetak\n\n- id: publication\n  translation: Publikacija\n\n- id: publication_type\n  translation: Tip\n\n- id: date\n  translation: Datum\n\n- id: last_updated\n  translation: Zadnji put ažurirano\n\n- id: event\n  translation: Događaj\n\n- id: location\n  translation: Lokacija\n\n- id: pub_paper_conference\n  translation: Rad na konferenciji\n\n- id: pub_article_journal\n  translation: Rad u časopisu\n\n- id: pub_article\n  translation: Pretisak\n\n- id: pub_report\n  translation: Izvještaj\n\n- id: pub_book\n  translation: Knjiga\n\n- id: pub_chapter\n  translation: Poglavlje u knjizi\n\n- id: pub_thesis\n  translation: Doktorski rad\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Idi na Stranicu Projekta\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Objave\n\n- id: publications\n  translation: Publikacije\n\n- id: talks\n  translation: Događaji\n\n- id: projects\n  translation: Projekti\n\n- id: slides\n  translation: Prezentacije\n\n- id: authors\n  translation: Autori\n\n# Search\n\n- id: search\n  translation: Pretraži\n\n- id: search_placeholder\n  translation: Pretraži...\n\n- id: search_results\n  translation: pronađeni rezultati\n\n- id: search_no_results\n  translation: Nisu pronađeni rezultati \n\n- id: search_common_queries\n  translation: Česta pretraživanja\n\n# Error 404\n\n- id: page_not_found\n  translation: Stranica nije pronađena\n\n- id: 404_recommendations\n  translation: Možda ste tražili nešto od ovoga?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Ova web stranica koristi kolačiće kako bi vam osigurala najbolje iskustvo na našoj web stranici.\n\n- id: cookie_dismiss\n  translation: Shvaćam!\n\n- id: cookie_learn\n  translation: Saznajte više\n\n# Published with\n\n- id: published_with\n  translation: Objavljeno pomoću {hugoblox} — besplatnog alata za izradu web stranica {repo_link}otvorenog koda{/repo_link} koji osnažuje kreatore.\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: Povratne informacije\n\n- id: feedback_widget_question\n  translation: Je li ova stranica bila korisna?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Da\n\n- id: feedback_widget_answer_negative\n  translation: 😡 Ne\n"
  },
  {
    "path": "modules/blox/i18n/ht.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Chanje navigasyon\n\n- id: table_of_contents\n  translation: Tablo kontni\n\n- id: on_this_page\n  translation: Sou paj sa a\n\n- id: back_to_top\n  translation: Tounen anlè paj la\n\n- id: home\n  translation: Akèy\n\n- id: close\n  translation: Fèmen\n\n- id: languages\n  translation: Lang\n\n# General\n\n- id: related\n  translation: Ki gen rapò\n\n# Callouts - All Obsidian-compatible types\n- id: callout_note\n  translation: Nòt\n\n- id: callout_abstract\n  translation: Rezime\n\n- id: callout_summary\n  translation: Rezime\n\n- id: callout_info\n  translation: Enfòmasyon\n\n- id: callout_todo\n  translation: Pou fè\n\n- id: callout_tip\n  translation: Konsèy\n\n- id: callout_success\n  translation: Siksè\n\n- id: callout_question\n  translation: Kesyon\n\n- id: callout_warning\n  translation: Avètisman\n\n- id: callout_failure\n  translation: Echek\n\n- id: callout_danger\n  translation: Danje\n\n- id: callout_bug\n  translation: Pinèz\n\n- id: callout_example\n  translation: Egzanp\n\n- id: callout_quote\n  translation: Sita\n\n- id: callout_important\n  translation: Enpòtan\n\n- id: callout_caution\n  translation: Pridans\n\n- id: backlinks\n  translation: Lyen tounen\n\n- id: minute_read\n  translation: minit lekti\n\n- id: previous\n  translation: Anvan\n\n- id: next\n  translation: Pwochen\n\n- id: figure\n  translation: 'Figur %d:'\n\n- id: edit_page\n  translation: Modifye paj sa a\n\n# Themes\n\n- id: theme_selector\n  translation: Preferans afichaj\n\n- id: theme_light\n  translation: Klè\n\n- id: theme_dark\n  translation: Fènwa\n\n- id: theme_auto\n  translation: Otomatik\n\n# Buttons\n\n- id: btn_preprint\n  translation: Pre-piblikasyon\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Site\n\n- id: btn_slides\n  translation: Dias\n\n- id: btn_video\n  translation: Videyo\n\n- id: btn_code\n  translation: Kòd\n\n- id: btn_dataset\n  translation: Done\n\n- id: btn_project\n  translation: Pwojè\n\n- id: btn_poster\n  translation: Afich\n\n- id: btn_source\n  translation: Dokiman sous\n\n# New link types\n- id: btn_doi\n  translation: DOI\n- id: btn_site\n  translation: Sit\n- id: btn_canonical\n  translation: Kanonik\n- id: btn_crosspost\n  translation: Kwoz-piblikasyon\n- id: btn_discussion\n  translation: Diskisyon\n- id: btn_event\n  translation: Evènman\n- id: btn_calendar\n  translation: Kalandriye\n- id: btn_registration\n  translation: Enskripsyon\n- id: btn_demo\n  translation: Demo\n- id: btn_model\n  translation: Modèl\n- id: btn_hal\n  translation: HAL\n- id: btn_dblp\n  translation: DBLP\n- id: btn_isbn\n  translation: ISBN\n- id: btn_osf\n  translation: OSF\n- id: btn_zenodo\n  translation: Zenodo\n- id: btn_kaggle\n  translation: Kaggle\n- id: btn_openalex\n  translation: OpenAlex\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n- id: btn_pwc\n  translation: Papers With Code\n\n- id: btn_copy\n  translation: Kopye\n\n- id: btn_copied\n  translation: Kopiye\n\n- id: btn_download\n  translation: Telechaje\n\n# About widget\n\n- id: interests\n  translation: Enterè\n\n- id: education\n  translation: Edikasyon\n\n- id: about_me\n  translation: Rezime pwofesyonèl\n\n- id: user_profile_latest\n  translation: Dènye\n\n# Countdown widget\n\n- id: days\n  translation: Jou\n- id: hours\n  translation: Èdtan\n- id: minutes\n  translation: Minit\n- id: seconds\n  translation: Segonn\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Gade sètifika\n\n# Experience widget\n\n- id: experience\n  translation: Eksperyans\n\n- id: present\n  translation: Kounye a\n\n# Pages widget\n\n- id: read_more\n  translation: Li plis\n\n- id: more_pages\n  translation: Gade tout\n\n- id: more_posts\n  translation: Gade tout pòs yo\n\n- id: more_talks\n  translation: Gade tout evènman yo\n\n- id: more_publications\n  translation: Gade tout piblikasyon yo\n\n# Contact widget\n\n- id: contact_name\n  translation: Non\n\n- id: contact_email\n  translation: Imèl\n\n- id: contact_message\n  translation: Mesaj\n\n- id: contact_attachment\n  translation: Atache fichye\n\n- id: contact_send\n  translation: Voye\n\n- id: book_appointment\n  translation: Rezève randevou\n\n# Publication/Event details\n\n- id: abstract\n  translation: Rezime\n\n- id: publication\n  translation: Piblikasyon\n\n- id: publication_type\n  translation: Kalite\n\n- id: date\n  translation: Dat\n\n- id: last_updated\n  translation: Dènye mizajou sou\n\n- id: event\n  translation: Evènman\n\n- id: location\n  translation: Kote\n\n- id: pub_paper_conference\n  translation: Atik konferans\n\n- id: pub_article_journal\n  translation: Atik jounal\n\n- id: pub_article\n  translation: Pre-piblikasyon\n\n- id: pub_report\n  translation: Rapò\n\n- id: pub_book\n  translation: Liv\n\n- id: pub_chapter\n  translation: Chapit liv\n\n- id: pub_thesis\n  translation: Tèz\n\n- id: pub_patent\n  translation: Patant\n\n# Project details\n\n- id: open_project_site\n  translation: Ale sou sit pwojè a\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: Blog\n\n- id: publications\n  translation: Piblikasyon\n\n- id: events\n  translation: Evènman\n\n- id: projects\n  translation: Pwojè\n\n- id: slides\n  translation: Dias\n\n- id: authors\n  translation: Otè\n\n# Search\n\n- id: search\n  translation: Rechèch\n\n- id: search_placeholder\n  translation: Chèche...\n\n- id: search_results\n  translation: rezilta jwenn\n\n- id: search_no_results\n  translation: Pa gen rezilta\n\n- id: search_common_queries\n  translation: Rechèch komen\n\n# Error 404\n\n- id: page_not_found\n  translation: Paj pa jwenn\n\n- id: 404_recommendations\n  translation: Petèt ou t ap chèche youn nan sa yo?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Sit entènèt sa a itilize bonbon pou asire w jwenn pi bon eksperyans.\n\n- id: cookie_dismiss\n  translation: Mwen konprann!\n\n- id: cookie_learn\n  translation: Aprann plis\n\n# Published with\n\n- id: published_with\n  translation: Fè ak {hugoblox}.\n\n- id: poweredby_button\n  translation: 'Kreye pa w →'\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: Fidbak\n\n- id: feedback_widget_question\n  translation: Èske paj sa a te itil ou?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Wi\n\n- id: feedback_widget_answer_negative\n  translation: 😡 Non\n\n# AI Features\n\n- id: ai_insight\n  translation: Analiz AI\n\n# Content Metadata\n- id: content_type\n  translation: Kalite kontni\n- id: difficulty\n  translation: Difikilte\n- id: prerequisites\n  translation: Kondisyon davans\n\n# Card metadata\n- id: trending\n  translation: Popilè"
  },
  {
    "path": "modules/blox/i18n/hu.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Navigáció\n\n- id: table_of_contents\n  translation: Tartalomjegyzék\n\n- id: on_this_page\n  translation: Ezen az oldalon\n\n- id: back_to_top\n  translation: Vissza felülre\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Kapcsolódó anyagok\n\n- id: minute_read\n  translation: perc olvasás\n\n- id: previous\n  translation: Előző\n\n- id: next\n  translation: Következő\n\n- id: figure\n  translation: '%d. ábra:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Megjelenés előtt\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Idézet\n\n- id: btn_slides\n  translation: Diák\n\n- id: btn_video\n  translation: Videó\n\n- id: btn_code\n  translation: Kód\n\n- id: btn_dataset\n  translation: Adatcsomag\n\n- id: btn_project\n  translation: Projekt\n\n- id: btn_poster\n  translation: Poszter\n\n- id: btn_source\n  translation: Forrás dokumentum\n\n- id: btn_copy\n  translation: Másolat\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Letöltés\n\n# About widget\n\n- id: interests\n  translation: Érdeklődési terület\n\n- id: education\n  translation: Tanulmányok\n\n- id: user_profile_latest\n  translation: Latest\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Lásd a bizonyítányt\n\n# Experience widget\n\n- id: present\n  translation: Jelenleg\n\n# Pages widget\n\n- id: more_pages\n  translation: See all\n\n- id: more_posts\n  translation: További posztok\n\n- id: more_talks\n  translation: Előadások\n\n- id: more_publications\n  translation: További publikációk\n\n# Contact widget\n\n- id: contact_name\n  translation: Név\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Üzenet\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Elküldés\n\n- id: book_appointment\n  translation: Időpont kérése\n\n# Publication/Event details\n\n- id: abstract\n  translation: Kivonat\n\n- id: publication\n  translation: Publikáció\n\n- id: publication_type\n  translation: Típus\n\n- id: date\n  translation: Dátum\n\n- id: last_updated\n  translation: Utoljára frissítve\n\n- id: event\n  translation: Esemény\n\n- id: location\n  translation: Helyszín\n\n- id: pub_paper_conference\n  translation: Conference paper\n\n- id: pub_article_journal\n  translation: Journal article\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Report\n\n- id: pub_book\n  translation: Book\n\n- id: pub_chapter\n  translation: Book section\n\n- id: pub_thesis\n  translation: Thesis\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Tovább a projekt oldalára\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Posztok\n\n- id: publications\n  translation: Publikációk\n\n- id: talks\n  translation: Előadások\n\n- id: projects\n  translation: Projektek\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Keresés\n\n- id: search_placeholder\n  translation: Keresés...\n\n- id: search_results\n  translation: találat\n\n- id: search_no_results\n  translation: Nincsen találat\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Az oldal nem található\n\n- id: 404_recommendations\n  translation: Esetleg ezeket kereste?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Ez az oldal a legjobb felhasználói élmény érdekében sütiket használ.\n\n- id: cookie_dismiss\n  translation: Rendben\n\n- id: cookie_learn\n  translation: További információk\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/id.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Buka navigasi\n\n- id: table_of_contents\n  translation: Daftar isi\n\n- id: on_this_page\n  translation: Di halaman ini\n\n- id: back_to_top\n  translation: Kembali ke atas\n\n- id: home\n  translation: Beranda\n\n- id: close\n  translation: Tutup\n\n- id: languages\n  translation: Bahasa\n\n# General\n\n- id: related\n  translation: Terkait\n\n- id: minute_read\n  translation: menit untuk membaca\n\n- id: previous\n  translation: Sebelumnya\n\n- id: next\n  translation: Selanjutnya\n\n- id: figure\n  translation: 'Orang %d:'\n\n- id: edit_page\n  translation: Sunting halaman ini\n\n# Themes\n\n- id: theme_selector\n  translation: Preferensi tampilan\n\n- id: theme_light\n  translation: Terang\n\n- id: theme_dark\n  translation: Gelap\n\n- id: theme_auto\n  translation: Tema Otomatis\n\n# Buttons\n\n- id: btn_preprint\n  translation: Pracetak\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Sitasi\n\n- id: btn_slides\n  translation: Presentasi\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kode\n\n- id: btn_dataset\n  translation: Dataset\n\n- id: btn_project\n  translation: Proyek\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Sumber\n\n- id: btn_copy\n  translation: Salin\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Unduh\n\n# About widget\n\n- id: interests\n  translation: Minat\n\n- id: education\n  translation: Pendidikan\n\n- id: user_profile_latest\n  translation: Terbaru\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Lihat sertifikat\n\n# Experience widget\n\n- id: present\n  translation: Terkini\n\n# Pages widget\n\n- id: more_pages\n  translation: Lihat semua\n\n- id: more_posts\n  translation: Postingan lainnya\n\n- id: more_talks\n  translation: Percakapan lainnya\n\n- id: more_publications\n  translation: Publikasi lainnya\n\n# Contact widget\n\n- id: contact_name\n  translation: Nama\n\n- id: contact_email\n  translation: Surel\n\n- id: contact_message\n  translation: Pesan\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Kirim\n\n- id: book_appointment\n  translation: Menjadwalkan pertemuan\n\n# Publication/Event details\n\n- id: abstract\n  translation: Abstrak\n\n- id: publication\n  translation: Publikasi\n\n- id: publication_type\n  translation: Jenis publikasi\n\n- id: date\n  translation: Tanggal\n\n- id: last_updated\n  translation: Terakhir diperbaharui\n\n- id: event\n  translation: Acara\n\n- id: location\n  translation: Lokasi\n\n- id: pub_paper_conference\n  translation: Kertas konferensi\n\n- id: pub_article_journal\n  translation: Artikel Jurnal\n\n- id: pub_article\n  translation: Pracetak\n\n- id: pub_report\n  translation: Laporan\n\n- id: pub_book\n  translation: Buku\n\n- id: pub_chapter\n  translation: Bagian buku\n\n- id: pub_thesis\n  translation: Tesis\n\n- id: pub_patent\n  translation: Paten\n\n# Project details\n\n- id: open_project_site\n  translation: Ke laman proyek\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Postingan\n\n- id: publications\n  translation: Publikasi\n\n- id: talks\n  translation: Perbincangan\n\n- id: projects\n  translation: Proyek\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Penulis\n\n# Search\n\n- id: search\n  translation: Cari\n\n- id: search_placeholder\n  translation: Cari...\n\n- id: search_results\n  translation: hasil pencarian\n\n- id: search_no_results\n  translation: Hasil pencarian tidak ada\n\n- id: search_common_queries\n  translation: Pencarian umum\n\n# Error 404\n\n- id: page_not_found\n  translation: Laman tidak ditemukan\n\n- id: 404_recommendations\n  translation: Apakah ini yang Anda cari?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Situs web ini menggunakan cookie untuk memastikan Anda mendapatkan pengalaman terbaik di situs web kami.\n\n- id: cookie_dismiss\n  translation: Mengerti!\n\n- id: cookie_learn\n  translation: Pelajari\n\n# Published with\n\n- id: published_with\n  translation: Diterbitkan dengan {hugoblox} — Secara gratis, {repo_link}sumber terbuka{/repo_link} pembuat situs web yang memberdayakan para pembuat konten.\n\n# AI Features\n\n- id: ai_insight\n  translation: Wawasan AI\n\n# Content Metadata\n\n- id: content_type\n  translation: Jenis konten\n\n- id: difficulty\n  translation: Tingkat kesulitan\n\n- id: prerequisites\n  translation: Prasyarat\n\n# Card metadata\n\n- id: trending\n  translation: Sedang tren\n\n- id: article\n  translation: artikel\n\n- id: articles\n  translation: artikel\n\n- id: browse\n  translation: Jelajahi\n\n- id: all\n  translation: Semua\n\n- id: helpful\n  translation: bermanfaat\n\n# Additional buttons\n\n- id: btn_site\n  translation: Situs\n\n- id: btn_canonical\n  translation: Kanonikal\n\n- id: btn_crosspost\n  translation: Crosspost\n\n- id: btn_discussion\n  translation: Diskusi\n\n- id: btn_event\n  translation: Acara\n\n- id: btn_calendar\n  translation: Kalender\n\n- id: btn_registration\n  translation: Registrasi\n\n- id: btn_demo\n  translation: Demo\n\n- id: btn_model\n  translation: Model\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n# Callouts\n\n- id: callout_note\n  translation: Catatan\n\n- id: callout_abstract\n  translation: Abstrak\n\n- id: callout_summary\n  translation: Ringkasan\n\n- id: callout_info\n  translation: Info\n\n- id: callout_todo\n  translation: To-do\n\n- id: callout_tip\n  translation: Tip\n\n- id: callout_question\n  translation: Pertanyaan\n\n- id: callout_quote\n  translation: Kutipan\n\n- id: callout_warning\n  translation: Peringatan\n\n- id: callout_caution\n  translation: Perhatian\n\n- id: callout_danger\n  translation: Bahaya\n\n- id: callout_bug\n  translation: Bug\n\n- id: callout_example\n  translation: Contoh\n\n- id: callout_failure\n  translation: Gagal\n\n- id: callout_success\n  translation: Sukses\n\n- id: callout_important\n  translation: Penting\n\n# Slides\n\n- id: back_to_slides\n  translation: Kembali ke slides\n\n- id: present_slides\n  translation: Presentasi\n\n- id: present_fullscreen\n  translation: Presentasi (layar penuh)\n\n- id: export_pdf_print\n  translation: Ekspor PDF (cetak)\n\n- id: slides_print_hint\n  translation: Membuka mode cetak - gunakan Cetak > Simpan sebagai PDF\n\n- id: slides_search_placeholder\n  translation: Cari deck berdasarkan judul...\n\n- id: slides_no_decks\n  translation: Tidak ada deck ditemukan\n\n- id: slides_no_matches\n  translation: Tidak ada deck sesuai filter\n\n- id: clear_filters\n  translation: Hapus filter\n\n- id: topics\n  translation: Topik\n\n- id: details\n  translation: Detail\n\n- id: related_resources\n  translation: Sumber terkait\n\n- id: copy_link\n  translation: Salin tautan\n\n- id: copy_citation\n  translation: Salin sitasi\n\n- id: how_to_cite\n  translation: Cara mengutip\n\n- id: citation\n  translation: Sitasi\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: Unduh cite.bib\n\n- id: lecture\n  translation: Kuliah\n\n- id: enter_fullscreen\n  translation: Masuk layar penuh\n\n- id: exit_fullscreen\n  translation: Keluar layar penuh\n\n- id: speaker_notes_hint\n  translation: untuk catatan pembicara\n\n- id: slides_not_found\n  translation: Slide tidak ditemukan\n\n- id: related\n  translation: Terkait\n\n# Q&A\n\n- id: qa\n  translation: Tanya Jawab\n\n- id: question\n  translation: Pertanyaan\n\n- id: answer\n  translation: Jawaban\n\n- id: accepted_answer\n  translation: Jawaban diterima\n\n- id: other_answers\n  translation: Jawaban lainnya\n\n- id: questions\n  translation: Pertanyaan\n\n- id: questions_count\n  translation: pertanyaan\n\n- id: related_questions\n  translation: Pertanyaan terkait\n\n- id: search_questions\n  translation: Cari pertanyaan...\n\n- id: no_questions_yet\n  translation: Belum ada pertanyaan\n\n- id: faq\n  translation: FAQ\n\n- id: faqs\n  translation: FAQ\n\n- id: browse_by_category\n  translation: Telusuri per kategori\n\n# General extras\n\n- id: about_me\n  translation: Ringkasan profesional\n\n- id: backlinks\n  translation: Tautan balik\n\n- id: days\n  translation: Hari\n\n- id: hours\n  translation: Jam\n\n- id: minutes\n  translation: Menit\n\n- id: seconds\n  translation: Detik\n\n- id: experience\n  translation: Pengalaman\n\n- id: read_more\n  translation: Baca selengkapnya\n\n- id: docs\n  translation: Dokumentasi\n\n- id: featured\n  translation: Unggulan\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: Masukan\n\n- id: feedback_widget_question\n  translation: Apakah halaman ini membantu?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Ya\n\n- id: feedback_widget_answer_negative\n  translation: 😡 Tidak\n\n- id: block_contact_title\n  translation: Hubungi Kami\n\n- id: block_contact_visit_title\n  translation: Kunjungi Kami\n\n- id: block_contact_office_hours\n  translation: Jam kerja\n\n- id: block_contact_view_on_map\n  translation: Lihat di Peta\n\n- id: block_contact_connect_title\n  translation: Terhubung\n\n- id: block_contact_follow_us\n  translation: Ikuti kami\n\n- id: block_contact_follow_me\n  translation: Temukan saya di\n\n- id: block_contact_prospective_title\n  translation: Calon anggota\n\n- id: block_contact_form_title\n  translation: Kirim Pesan\n\n- id: block_contact_form_name\n  translation: Nama\n\n- id: block_contact_form_email\n  translation: Email\n\n- id: block_contact_form_subject\n  translation: Subjek\n\n- id: block_contact_form_message\n  translation: Pesan\n\n- id: block_contact_form_submit\n  translation: Kirim pesan\n\n- id: blog\n  translation: Blog\n\n- id: events\n  translation: Acara\n\n- id: poweredby_button\n  translation: 'Bangun punyamu →'\n\n- id: developer\n  translation: Pengembang\n\n- id: scroll_to_content\n  translation: Gulir ke konten\n\n- id: portfolio_link_code\n  translation: Kode\n\n- id: portfolio_link_live\n  translation: Langsung\n\n- id: portfolio_link_demo\n  translation: Demo\n\n- id: portfolio_link_default\n  translation: Tautan\n\n- id: portfolio_view_all\n  translation: Lihat semua proyek\n\n- id: featured\n  translation: Unggulan\n"
  },
  {
    "path": "modules/blox/i18n/it.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Attiva la navigazione\n\n- id: table_of_contents\n  translation: Indice dei Contenuti\n\n- id: on_this_page\n  translation: In questa pagina\n\n- id: back_to_top\n  translation: Torna su\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Chiudi\n\n- id: languages\n  translation: Lingue\n\n# General\n\n- id: related\n  translation: Correlato\n\n- id: minute_read\n  translation: min di lettura\n\n- id: previous\n  translation: Precedente\n\n- id: next\n  translation: Prossimo\n\n- id: figure\n  translation: 'Immagine %d:'\n\n- id: edit_page\n  translation: Modifica questa pagina\n\n# Themes\n\n- id: theme_selector\n  translation: Opzioni tema\n\n- id: theme_light\n  translation: Chiaro\n\n- id: theme_dark\n  translation: Scuro\n\n- id: theme_auto\n  translation: Automatico\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preprint\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citazione\n\n- id: btn_slides\n  translation: Slides\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Codice\n\n- id: btn_dataset\n  translation: Dataset\n\n- id: btn_project\n  translation: Progetti\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Sorgente\n\n- id: btn_copy\n  translation: Copia\n\n- id: btn_copied\n  translation: Copiata\n\n- id: btn_download\n  translation: Download\n\n# About widget\n\n- id: interests\n  translation: Interessi\n\n- id: education\n  translation: Formazione\n\n- id: user_profile_latest\n  translation: Ultime\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Guarda il certificato\n\n# Experience widget\n\n- id: present\n  translation: Attualmente\n\n# Pages widget\n\n- id: more_pages\n  translation: Vedi archivio\n\n- id: more_posts\n  translation: Altri Post\n\n- id: more_talks\n  translation: Altre Conferenze\n\n- id: more_publications\n  translation: Altre pubblicazioni\n\n# Contact widget\n\n- id: contact_name\n  translation: Nome\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Messaggio\n\n- id: contact_attachment\n  translation: Allegato\n\n- id: contact_send\n  translation: Invio\n\n- id: book_appointment\n  translation: Richiedi un appuntamento\n\n# Publication/Event details\n\n- id: abstract\n  translation: Abstract\n\n- id: publication\n  translation: Publicazione\n\n- id: publication_type\n  translation: Tipo\n\n- id: date\n  translation: Data\n\n- id: last_updated\n  translation: Aggiornato il\n\n- id: event\n  translation: Evento\n\n- id: location\n  translation: Luogo\n\n- id: pub_paper_conference\n  translation: Conference paper\n\n- id: pub_article_journal\n  translation: Journal article\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Report\n\n- id: pub_book\n  translation: Libro\n\n- id: pub_chapter\n  translation: Sezione Libro\n\n- id: pub_thesis\n  translation: Tesi\n\n- id: pub_patent\n  translation: Brevetto\n\n# Project details\n\n- id: open_project_site\n  translation: Apri il sito del Progetto\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Post\n\n- id: publications\n  translation: Pubblicazioni\n\n- id: talks\n  translation: Conferenze\n\n- id: projects\n  translation: Progetti\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Cerca\n\n- id: search_placeholder\n  translation: Cerca...\n\n- id: search_results\n  translation: Risultati della ricerca\n\n- id: search_no_results\n  translation: Nessun risultato\n\n- id: search_common_queries\n  translation: Ricerche comuni\n\n# Error 404\n\n- id: page_not_found\n  translation: Pagina non trovata\n\n- id: 404_recommendations\n  translation: Forse stavate carcando uno di questi?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Questo sito usa i cookies per garantire la migliore esperienza di navigazione.\n\n- id: cookie_dismiss\n  translation: Ok!\n\n- id: cookie_learn\n  translation: Leggi i dettagli\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/ja.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: ナビゲーションの切り替え\n\n- id: table_of_contents\n  translation: 目次\n\n- id: on_this_page\n  translation: このページの内容\n\n- id: back_to_top\n  translation: トップへ戻る\n\n- id: home\n  translation: ホーム\n\n- id: close\n  translation: 閉じる\n\n- id: languages\n  translation: 言語\n\n# General\n\n- id: related\n  translation: 関連項目\n\n- id: minute_read\n  translation: 分で読める\n\n- id: previous\n  translation: 前へ\n\n- id: next\n  translation: 次へ\n\n- id: figure\n  translation: '図 %d:'\n\n- id: edit_page\n  translation: このページを編集する\n\n# Themes\n\n- id: theme_selector\n  translation: 表示設定\n\n- id: theme_light\n  translation: ライト\n\n- id: theme_dark\n  translation: ダーク\n\n- id: theme_auto\n  translation: 自動\n\n# Buttons\n\n- id: btn_preprint\n  translation: プレプリント\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: 引用\n\n- id: btn_slides\n  translation: スライド\n\n- id: btn_video\n  translation: 動画\n\n- id: btn_code\n  translation: ソースコード\n\n- id: btn_dataset\n  translation: データセット\n\n- id: btn_project\n  translation: プロジェクト\n\n- id: btn_poster\n  translation: ポスター\n\n- id: btn_source\n  translation: ソース\n\n- id: btn_copy\n  translation: コピー\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: ダウンロード\n\n# About widget\n\n- id: interests\n  translation: 興味・関心\n\n- id: education\n  translation: 学歴\n\n- id: user_profile_latest\n  translation: 最新\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: 証明書を見る\n\n# Experience widget\n\n- id: present\n  translation: 現在\n\n# Pages widget\n\n- id: more_pages\n  translation: すべて表示\n\n- id: more_posts\n  translation: 投稿一覧\n\n- id: more_talks\n  translation: 登壇一覧\n\n- id: more_publications\n  translation: 発表文献一覧\n\n# Contact widget\n\n- id: contact_name\n  translation: 名前\n\n- id: contact_email\n  translation: メールアドレス\n\n- id: contact_message\n  translation: メッセージ本文\n\n- id: contact_attachment\n  translation: ファイルを添付\n\n- id: contact_send\n  translation: 送信\n\n- id: book_appointment\n  translation: 予約を取る\n\n# Publication/Event details\n\n- id: abstract\n  translation: 概要\n\n- id: publication\n  translation: 収録\n\n- id: publication_type\n  translation: タイプ\n\n- id: date\n  translation: 日付\n\n- id: last_updated\n  translation: 最終更新\n\n- id: event\n  translation: イベント\n\n- id: location\n  translation: 場所\n\n- id: pub_paper_conference\n  translation: 学会論文\n\n- id: pub_article_journal\n  translation: ジャーナル記事\n\n- id: pub_article\n  translation: プレプリント\n\n- id: pub_report\n  translation: 報告\n\n- id: pub_book\n  translation: 書籍\n\n- id: pub_chapter\n  translation: Book section\n\n- id: pub_thesis\n  translation: 論文\n\n- id: pub_patent\n  translation: 特許\n\n# Project details\n\n- id: open_project_site\n  translation: プロジェクトのサイトへ\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: 投稿\n\n- id: publications\n  translation: 発表文献\n\n- id: talks\n  translation: 登壇\n\n- id: projects\n  translation: プロジェクト\n\n- id: slides\n  translation: スライド\n\n- id: authors\n  translation: 著者\n\n# Search\n\n- id: search\n  translation: 検索\n\n- id: search_placeholder\n  translation: 検索...\n\n- id: search_results\n  translation: 件の検索結果\n\n- id: search_no_results\n  translation: 結果が見つかりませんでした\n\n- id: search_common_queries\n  translation: よくある検索\n\n# Error 404\n\n- id: page_not_found\n  translation: ページが見つかりませんでした\n\n- id: 404_recommendations\n  translation: あなたが探しているものはこれらの中にあるかもしれません\n\n# Cookie consent\n\n- id: cookie_message\n  translation: このウェブサイトはあなたが最高の体験を得るためにクッキーを使用します。\n\n- id: cookie_dismiss\n  translation: はい\n\n- id: cookie_learn\n  translation: 詳細を見る\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/km.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: បិទ/បើក នាវាចរណ៍\n\n- id: table_of_contents\n  translation: តារាងមាតិកា\n\n- id: on_this_page\n  translation: នៅក្នុងទំព័រនេះ\n\n- id: back_to_top\n  translation: ទៅខាងលើទំព័រ\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: ភាសាខ្មែរ\n\n- id: minute_read\n  translation: ពេលចំណាយអាន\n\n- id: previous\n  translation: ផ្នែកមុន\n\n- id: next\n  translation: ផ្នែកបន្ទាប់\n\n- id: figure\n  translation: 'រូប %d:'\n\n- id: edit_page\n  translation: កែប្រែទំព័រ\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: ប៊ូតុងបោះពុម្ព\n\n- id: btn_pdf\n  translation: ប៊ូតុងPDF\n\n- id: btn_cite\n  translation: ប៊ូតុងដកស្រង់\n\n- id: btn_slides\n  translation: ប៊ូតុងស្លាយ\n\n- id: btn_video\n  translation: ប៊ូតុងវីដេអូ\n\n- id: btn_code\n  translation: ប៊ូតុងកូដ\n\n- id: btn_dataset\n  translation: ប៊ូតុងទិន្នន័យ\n\n- id: btn_project\n  translation: ប៊ូតុងគម្រោង\n\n- id: btn_poster\n  translation: ប៊ូតុងប័ណ្ណប្រកាស\n\n- id: btn_source\n  translation: ប៊ូតុងប្រភព\n\n- id: btn_copy\n  translation: ប៊ូតុងចម្លង\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: ប៊ូតុងទាញយក\n\n# About widget\n\n- id: interests\n  translation: ចំណាប់អារម្មណ៍\n\n- id: education\n  translation: កម្រិតការសិក្សា\n\n- id: user_profile_latest\n  translation: ប្រវត្តិរូបចុងក្រោយបង្អស់\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: វិញ្ញាបនបត្រ\n\n# Experience widget\n\n- id: present\n  translation: បច្ចុប្បន្ន\n\n# Pages widget\n\n- id: more_pages\n  translation: ទំព័រច្រើនទៀត\n\n- id: more_posts\n  translation: ប៉ុស្ដិ៍ច្រើនទៀត\n\n- id: more_talks\n  translation: សុន្ទរកថាច្រើនទៀត\n\n- id: more_publications\n  translation: ការបោះពុម្ពផ្សាយច្រើនទៀត\n\n# Contact widget\n\n- id: contact_name\n  translation: ឈ្មោះ​\n\n- id: contact_email\n  translation: អាស័យ​ដ្ឋាន​អ៊ី​ម៉េ​ល\n\n- id: contact_message\n  translation: ​សារអ៊ី​ម៉េ​ល\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: ផ្ញើអ៊ីមែល\n\n- id: book_appointment\n  translation: កក់ការណាត់ជួប\n\n# Publication/Event details\n\n- id: abstract\n  translation: របាយការណ៍\n\n- id: publication\n  translation: ការបោះពុម្ពផ្សាយ\n\n- id: publication_type\n  translation: ប្រភេទការបោះពុម្ពផ្សាយ\n\n- id: date\n  translation: កាលបរិច្ឆេទ\n\n- id: last_updated\n  translation: ការធ្វើឱ្យទាន់សម័យចុងក្រោយបង្អស់\n\n- id: event\n  translation: ព្រឹត្តិការណ៍\n\n- id: location\n  translation: ទីតាំង\n\n- id: pub_paper_conference\n  translation: សន្និសិទ\n\n- id: pub_article_journal\n  translation: ទិនានុប្បវត្តិ\n\n- id: pub_article\n  translation: បោះពុម្ព\n\n- id: pub_report\n  translation: របាយការណ៍\n\n- id: pub_book\n  translation: សៀវភៅបោះពុម្ព\n\n- id: pub_chapter\n  translation: ផ្នែកសៀវភៅ\n\n- id: pub_thesis\n  translation: និក្ខេបបទ\n\n- id: pub_patent\n  translation: ប៉ាតង់\n\n# Project details\n\n- id: open_project_site\n  translation: គម្រោងបើក\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: ប៉ុស្ដិ៍\n\n- id: publications\n  translation: ការបោះពុម្ពផ្សាយ\n\n- id: talks\n  translation: សុន្ទរកថា\n\n- id: projects\n  translation: គម្រោង\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: ស្វែងរក\n\n- id: search_placeholder\n  translation: កន្លែងស្វែងរក\n\n- id: search_results\n  translation: លទ្ធផលស្វែងរក\n\n- id: search_no_results\n  translation: ស្វែងរកគ្មានលទ្ធផល\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: ទំព័ររក​មិន​ឃើញ\n\n- id: 404_recommendations\n  translation: 404_អនុសាសន៍\n\n# Cookie consent\n\n- id: cookie_message\n  translation: សារខូឃី\n\n- id: cookie_dismiss\n  translation: ខូឃីបណ្តេញចេញ\n\n- id: cookie_learn\n  translation: ខូឃីរៀន\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/ko.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: 네비게이션\n\n- id: table_of_contents\n  translation: 차례\n\n- id: on_this_page\n  translation: 이 페이지\n\n- id: back_to_top\n  translation: 맨 위로\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: 관련문서\n\n- id: minute_read\n  translation: 분 읽기\n\n- id: previous\n  translation: 이전\n\n- id: next\n  translation: 다음\n\n- id: figure\n  translation: '그림 %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: 출판 전 논문\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: 인용\n\n- id: btn_slides\n  translation: 발표자료\n\n- id: btn_video\n  translation: 비디오\n\n- id: btn_code\n  translation: 소스코드\n\n- id: btn_dataset\n  translation: 데이터셋\n\n- id: btn_project\n  translation: 프로젝트\n\n- id: btn_poster\n  translation: 포스터\n\n- id: btn_source\n  translation: 원본문서\n\n- id: btn_copy\n  translation: 복사\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: 다운로드\n\n# About widget\n\n- id: interests\n  translation: 관심분야\n\n- id: education\n  translation: 학위\n\n- id: user_profile_latest\n  translation: 최신\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: 증서 보기\n\n# Experience widget\n\n- id: present\n  translation: 현재\n\n# Pages widget\n\n- id: more_pages\n  translation: 전체 보기\n\n- id: more_posts\n  translation: 포스트 더 보기\n\n- id: more_talks\n  translation: 강연 더 보기\n\n- id: more_publications\n  translation: 논문 더 보기\n\n# Contact widget\n\n- id: contact_name\n  translation: 이름\n\n- id: contact_email\n  translation: 이메일\n\n- id: contact_message\n  translation: 메시지\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: 보내기\n\n- id: book_appointment\n  translation: 일정 약속\n\n# Publication/Event details\n\n- id: abstract\n  translation: 초록\n\n- id: publication\n  translation: 발행기관\n\n- id: publication_type\n  translation: 출판유형\n\n- id: date\n  translation: 날짜\n\n- id: last_updated\n  translation: 마지막 업데이트\n\n- id: event\n  translation: 이벤트\n\n- id: location\n  translation: 장소\n\n- id: pub_paper_conference\n  translation: 학술 대회 논문\n\n- id: pub_article_journal\n  translation: 저널 논문\n\n- id: pub_article\n  translation: 출판 전 논문\n\n- id: pub_report\n  translation: 보고서\n\n- id: pub_book\n  translation: 도서\n\n- id: pub_chapter\n  translation: 책 소개 면\n\n- id: pub_thesis\n  translation: 졸업 논문\n\n- id: pub_patent\n  translation: 특허\n\n# Project details\n\n- id: open_project_site\n  translation: 프로젝트 사이트 열기\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: 포스트\n\n- id: publications\n  translation: 논문\n\n- id: talks\n  translation: 강연\n\n- id: projects\n  translation: 프로젝트\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: 검색\n\n- id: search_placeholder\n  translation: 검색...\n\n- id: search_results\n  translation: 검색 결과\n\n- id: search_no_results\n  translation: 검색 결과 없음\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: 페이지 없음\n\n- id: 404_recommendations\n  translation: 이 중에 찾는게 있나요?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: 이 사이트는 최적화된 사용 경험을 제공하기 위해 쿠키를 사용합니다.\n\n- id: cookie_dismiss\n  translation: 알겠어!\n\n- id: cookie_learn\n  translation: 더 알아보기\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/lt.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Perjungti navigaciją\n\n- id: table_of_contents\n  translation: Turinys\n\n- id: on_this_page\n  translation: Turinys\n\n- id: back_to_top\n  translation: Grįžti į puslapio viršų\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Susiję\n\n- id: minute_read\n  translation: minučių skaitymo\n\n- id: previous\n  translation: Ankstesnis\n\n- id: next\n  translation: Tolimesnis\n\n- id: figure\n  translation: 'Pav. %d:'\n\n- id: edit_page\n  translation: Redaguoti šį puslapį\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Šviesus\n\n- id: theme_dark\n  translation: Tamsus\n\n- id: theme_auto\n  translation: Automatinis\n\n# Buttons\n\n- id: btn_preprint\n  translation: Nerecenzuota publikacija\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citata\n\n- id: btn_slides\n  translation: Prezentacija\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kodas\n\n- id: btn_dataset\n  translation: Duomenų rinkinys\n\n- id: btn_project\n  translation: Projektas\n\n- id: btn_poster\n  translation: Plakatas\n\n- id: btn_source\n  translation: Šaltinis\n\n- id: btn_copy\n  translation: Kopijuoti\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Parsisiųsti\n\n# About widget\n\n- id: interests\n  translation: Pomėgiai\n\n- id: education\n  translation: Išsilavinimas\n\n- id: user_profile_latest\n  translation: Naujausi\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Peržiūrėti sertifikatą\n\n# Experience widget\n\n- id: present\n  translation: Parodyti\n\n# Pages widget\n\n- id: more_pages\n  translation: Žiūrėti visus\n\n- id: more_posts\n  translation: Žiūrėti visus straipsnius\n\n- id: more_talks\n  translation: Žiūrėti visus pranešimus\n\n- id: more_publications\n  translation: Žiūrėti visas publikacijas\n\n# Contact widget\n\n- id: contact_name\n  translation: Vardas\n\n- id: contact_email\n  translation: Elektroninis paštas\n\n- id: contact_message\n  translation: Žinutė\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Siųsti\n\n- id: book_appointment\n  translation: Rezervuoti susitikimą\n\n# Publication/Event details\n\n- id: abstract\n  translation: Santrauka\n\n- id: publication\n  translation: Publikacija\n\n- id: publication_type\n  translation: Tipas\n\n- id: date\n  translation: Data\n\n- id: last_updated\n  translation: Vėliausiai atnaujinti\n\n- id: event\n  translation: Renginys\n\n- id: location\n  translation: Lokacija\n\n- id: pub_paper_conference\n  translation: Konferencijos publikacija\n\n- id: pub_article_journal\n  translation: Mokslinis straipsnis\n\n- id: pub_article\n  translation: Nerecenzuota publikacija\n\n- id: pub_report\n  translation: Ataskaita\n\n- id: pub_book\n  translation: Knyga\n\n- id: pub_chapter\n  translation: Knygos skyrius\n\n- id: pub_thesis\n  translation: Tezė\n\n- id: pub_patent\n  translation: Patentas\n\n# Project details\n\n- id: open_project_site\n  translation: Eiti į projekto puslapį\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Straipsniai\n\n- id: publications\n  translation: Publikacijos\n\n- id: talks\n  translation: Pranešimai\n\n- id: projects\n  translation: Projektai\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Paieška\n\n- id: search_placeholder\n  translation: Ieškoti...\n\n- id: search_results\n  translation: rasta rezultatų\n\n- id: search_no_results\n  translation: Nieko nerasta\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Puslapis nerastas\n\n- id: 404_recommendations\n  translation: Galbūt jūs ieškojote šių puslapių?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Šis puslapis naudoja slapukus, kad užtikrintų geriausią naršymo patirtį.\n\n- id: cookie_dismiss\n  translation: Supratau!\n\n- id: cookie_learn\n  translation: Sužinoti daugiau\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/lv.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Pārslēgt navigāciju\n\n- id: table_of_contents\n  translation: Satura rādītājs\n\n- id: on_this_page\n  translation: Šajā lapā\n\n- id: back_to_top\n  translation: Uz augšu\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Līdzīgi\n\n- id: minute_read\n  translation: minūtes lasīšanai\n\n- id: previous\n  translation: Atpakaļ\n\n- id: next\n  translation: Uz priekšu\n\n- id: figure\n  translation: 'Attēls %d:'\n\n- id: edit_page\n  translation: Rediģēt šo lapu\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preprints\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citēt\n\n- id: btn_slides\n  translation: Slaidi\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kods\n\n- id: btn_dataset\n  translation: Datu kopa\n\n- id: btn_project\n  translation: Projekts\n\n- id: btn_poster\n  translation: Plakāts\n\n- id: btn_source\n  translation: Pirmavots\n\n- id: btn_copy\n  translation: Kopija\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Lejupielādēt\n\n# About widget\n\n- id: interests\n  translation: Intereses\n\n- id: education\n  translation: Izglītība\n\n- id: user_profile_latest\n  translation: Jaunākais\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Skatīt sertifikātu\n\n# Experience widget\n\n- id: present\n  translation: Šobrīd\n\n# Pages widget\n\n- id: more_pages\n  translation: Skatīt visu\n\n- id: more_posts\n  translation: Skatīt visus rakstus\n\n- id: more_talks\n  translation: Skatīt visas runas\n\n- id: more_publications\n  translation: Skatīt visas publikācijas\n\n# Contact widget\n\n- id: contact_name\n  translation: Vārds\n\n- id: contact_email\n  translation: E-pasts\n\n- id: contact_message\n  translation: Teksts\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Nosūtīt\n\n- id: book_appointment\n  translation: Pieteikt tikšanos\n\n# Publication/Event details\n\n- id: abstract\n  translation: Kopsavilkums\n\n- id: publication\n  translation: Publikācija\n\n- id: publication_type\n  translation: Veids\n\n- id: date\n  translation: Datums\n\n- id: last_updated\n  translation: Pēdējais atjauninājums\n\n- id: event\n  translation: Notikums\n\n- id: location\n  translation: Vieta\n\n- id: pub_paper_conference\n  translation: Uzstāšanās konferencē\n\n- id: pub_article_journal\n  translation: Raksts žurnālā\n\n- id: pub_article\n  translation: Novilkums\n\n- id: pub_report\n  translation: Ziņojums\n\n- id: pub_book\n  translation: Grāmata\n\n- id: pub_chapter\n  translation: Grāmatas nodaļa\n\n- id: pub_thesis\n  translation: Disertācija\n\n- id: pub_patent\n  translation: Patents\n\n# Project details\n\n- id: open_project_site\n  translation: Pāriet pie projekta lapas\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Blogs\n\n- id: publications\n  translation: Publikācijas\n\n- id: talks\n  translation: Runas\n\n- id: projects\n  translation: Projekti\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Meklēt\n\n- id: search_placeholder\n  translation: Meklēt...\n\n- id: search_results\n  translation: rezultāti\n\n- id: search_no_results\n  translation: Nekas nav atrasts\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Lapa nav atrasta\n\n- id: 404_recommendations\n  translation: Iespējams, meklējāt kādu no šiem ierakstiem?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Šī vietne izmanto sīkdatnes, lai nodrošinātu Jums vislabāko pieredzi mūsu vietnē.\n\n- id: cookie_dismiss\n  translation: Sapratu!\n\n- id: cookie_learn\n  translation: Uzzināt vairāk\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/mg.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Toggle navigation\n\n- id: table_of_contents\n  translation: Lohahevitra\n\n- id: on_this_page\n  translation: Votoaty\n\n- id: back_to_top\n  translation: Miverina eny ambony\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Akatona\n\n- id: languages\n  translation: Fiteny\n\n# General\n\n- id: related\n  translation: Mifandraika\n\n- id: minute_read\n  translation: minitra vakiana\n\n- id: previous\n  translation: Teo aloha\n\n- id: next\n  translation: Manaraka\n\n- id: figure\n  translation: 'Sary %d:'\n\n- id: edit_page\n  translation: Amboary ity pejy ity\n\n# Themes\n\n- id: theme_selector\n  translation: Asehoy ny safidy\n\n- id: theme_light\n  translation: Mazava endrika\n\n- id: theme_dark\n  translation: Matroka\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preprint\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Cite\n\n- id: btn_slides\n  translation: Slides\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Code\n\n- id: btn_dataset\n  translation: Dataset\n\n- id: btn_project\n  translation: Tetik’asa\n\n- id: btn_poster\n  translation: Afisy\n\n- id: btn_source\n  translation: Source Document\n\n- id: btn_copy\n  translation: Kopia\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Download\n\n# About widget\n\n- id: interests\n  translation: Mahaliana\n\n- id: education\n  translation: Fanabeazana\n\n- id: user_profile_latest\n  translation: Farany\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Jereo ny taratasy fanamarinana\n\n# Experience widget\n\n- id: present\n  translation: Ankehitriny\n\n# Pages widget\n\n- id: more_pages\n  translation: Jereo daholo\n\n- id: more_posts\n  translation: Jereo ny lahatsoratra rehetra\n\n- id: more_talks\n  translation: Jereo ny hetsika rehetra\n\n- id: more_publications\n  translation: Jereo ny boky rehetra\n\n# Contact widget\n\n- id: contact_name\n  translation: Anarana\n\n- id: contact_email\n  translation: Mailaka\n\n- id: contact_message\n  translation: Hafatra\n\n- id: contact_attachment\n  translation: Handefa fichier\n\n- id: contact_send\n  translation: Alefaso\n\n- id: book_appointment\n  translation: Famandrihana fotoana\n\n# Publication/Event details\n\n- id: abstract\n  translation: Fehinteny\n\n- id: publication\n  translation: Publication\n\n- id: publication_type\n  translation: Karazana\n\n- id: date\n  translation: Daty\n\n- id: last_updated\n  translation: Nohavaozina farany tamin'ny\n\n- id: event\n  translation: Event\n\n- id: location\n  translation: Toerana\n\n- id: pub_paper_conference\n  translation: Taratasy fihaonambe\n\n- id: pub_article_journal\n  translation: Lahatsoratra amin'ny gazety\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Tatitra\n\n- id: pub_book\n  translation: Boky\n\n- id: pub_chapter\n  translation: fizarana boky\n\n- id: pub_thesis\n  translation: Thèse\n\n- id: pub_patent\n  translation: patanty\n\n# Project details\n\n- id: open_project_site\n  translation: Mandehana any amin'ny site tetik’asa\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Lahatsoratra\n\n- id: publications\n  translation: Publications\n\n- id: talks\n  translation: Hetsika\n\n- id: projects\n  translation: Tetik’asa\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Mpanoratra\n\n# Search\n\n- id: search\n  translation: Fikarohana\n\n- id: search_placeholder\n  translation: Fikarohana...\n\n- id: search_results\n  translation: valiny hita\n\n- id: search_no_results\n  translation: Tsy misy valiny hita\n\n- id: search_common_queries\n  translation: Fikarohana mahazatra\n\n# Error 404\n\n- id: page_not_found\n  translation: Pejy tsy hita\n\n- id: 404_recommendations\n  translation: Angamba iray amin'ireo no tadiavinao?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Mampiasa Cookies ity tranokala ity mba hahazoana antoka fa hahazo traikefa tsara indrindra amin'ny tranokalanay ianao.\n\n- id: cookie_dismiss\n  translation: Azoko!\n\n- id: cookie_learn\n  translation: Mianara bebe kokoa\n\n# Published with\n\n- id: published_with\n  translation: Navoaka niaraka tamin'ny {hugoblox} — ilay famoronana tranonkala {repo_link}open source{/repo_link} maimaim-poana izay manankahery ny mpamorona.\n"
  },
  {
    "path": "modules/blox/i18n/ms-Arab.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: بوک ڤڠمودين\n\n- id: table_of_contents\n  translation: دفتر کندوڠن\n\n- id: on_this_page\n  translation: کندوڠن\n\n- id: back_to_top\n  translation: کمبالي کأتس\n\n- id: home\n  translation: اوتام\n\n- id: close\n  translation: توتوڤ\n\n- id: languages\n  translation: بهاس\n\n# General\n\n- id: related\n  translation: ترکاءيت\n\n- id: minute_read\n  translation: مينيت اونتوق دباچ\n\n- id: previous\n  translation: سبلومڽ\n\n- id: next\n  translation: ستروسڽ\n\n- id: figure\n  translation: 'اورڠ %d:'\n\n- id: edit_page\n  translation: سونتيڠ هالمن اين\n\n# Themes\n\n- id: theme_selector\n  translation: ڤميليه تيما\n\n- id: theme_light\n  translation: چره\n\n- id: theme_dark\n  translation: ݢلڤ\n\n- id: theme_auto\n  translation: اءوتوماتيک\n\n# Buttons\n\n- id: btn_preprint\n  translation: ڤراچيتق\n\n- id: btn_pdf\n  translation: ڤي.دي.ايف.\n\n- id: btn_cite\n  translation: ڤتيق\n\n- id: btn_slides\n  translation: ڤرسمبهن\n\n- id: btn_video\n  translation: ۏيديو\n\n- id: btn_code\n  translation: کود\n\n- id: btn_dataset\n  translation: سيت داتا\n\n- id: btn_project\n  translation: ڤروجيک\n\n- id: btn_poster\n  translation: ڤوستر\n\n- id: btn_source\n  translation: سومبر\n\n- id: btn_copy\n  translation: سالين\n\n- id: btn_copied\n  translation: دسالين\n\n- id: btn_download\n  translation: موات تورون\n\n# About widget\n\n- id: interests\n  translation: مينت\n\n- id: education\n  translation: ڤنديديقن\n\n- id: user_profile_latest\n  translation: ترکيني\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: ليهت سيجيل\n\n# Experience widget\n\n- id: present\n  translation: ترکيني\n\n# Pages widget\n\n- id: more_pages\n  translation: ليهت سموا\n\n- id: more_posts\n  translation: کيريمن لاءينڽ\n\n- id: more_talks\n  translation: ڤربينچڠن لاءينڽ\n\n- id: more_publications\n  translation: تربيتن لاءينڽ\n\n# Contact widget\n\n- id: contact_name\n  translation: نام\n\n- id: contact_email\n  translation: إي-ميل\n\n- id: contact_message\n  translation: ميسيج\n\n- id: contact_attachment\n  translation: سيسيڤ فاءيل\n\n- id: contact_send\n  translation: هنتر\n\n- id: book_appointment\n  translation: جدوالکنن ڤرتموان\n\n# Publication/Event details\n\n- id: abstract\n  translation: ابستراک\n\n- id: publication\n  translation: تربيتن\n\n- id: publication_type\n  translation: جنيس\n\n- id: date\n  translation: تاريخ\n\n- id: last_updated\n  translation: تراخير دکمس کيني\n\n- id: event\n  translation: اچارا\n\n- id: location\n  translation: کدودوقن\n\n- id: pub_paper_conference\n  translation: کرتس سيدڠ\n\n- id: pub_article_journal\n  translation: ارتيکل جورنل\n\n- id: pub_article\n  translation: ڤراچيتق\n\n- id: pub_report\n  translation: لاڤورنن\n\n- id: pub_book\n  translation: بوکو\n\n- id: pub_chapter\n  translation: بهاݢين بوکو\n\n- id: pub_thesis\n  translation: تيسيس\n\n- id: pub_patent\n  translation: ڤاتين\n\n# Project details\n\n- id: open_project_site\n  translation: کلامان ڤروجيک\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: کيريمن\n\n- id: publications\n  translation: تربيتن\n\n- id: talks\n  translation: ڤربينچڠن\n\n- id: projects\n  translation: ڤروجيک\n\n- id: slides\n  translation: ڤرسمبهن\n\n- id: authors\n  translation: ڤنوليس\n\n# Search\n\n- id: search\n  translation: چاري\n\n- id: search_placeholder\n  translation: چاري...\n\n- id: search_results\n  translation: هاسيل دجومڤاءي\n\n- id: search_no_results\n  translation: تياد هاسيل دجومڤاءي\n\n- id: search_common_queries\n  translation: ڤنچارين عموم\n\n# Error 404\n\n- id: page_not_found\n  translation: لامن تيدق دتموکن\n\n- id: 404_recommendations\n  translation: اداکه اين يڠ اندا چاري؟\n\n# Cookie consent\n\n- id: cookie_message\n  translation: لامن اين مڠݢوناکن کوکي اونتوق ممستيکن اندا منداڤتکن ڤڠالمن ترباءيق دري لامن کامي.\n\n- id: cookie_dismiss\n  translation: باءيقله!\n\n- id: cookie_learn\n  translation: لبيه لنجوت\n\n# Published with\n\n- id: published_with\n  translation: دتربيتکنن دڠن {hugoblox} — ڤمبوات لامن ويب ڤرچوما {repo_link}برسومبر تربوک{/repo_link} دان برکواس\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: معلوم بالس\n\n- id: feedback_widget_question\n  translation: اداکه لامن اين ممبنتو؟\n\n- id: feedback_widget_answer_positive\n  translation: 😍 ي\n\n- id: feedback_widget_answer_negative\n  translation: 😡 تيدق\n"
  },
  {
    "path": "modules/blox/i18n/ms.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Buka pengemudian\n\n- id: table_of_contents\n  translation: Daftar kandungan\n\n- id: on_this_page\n  translation: Kandungan\n\n- id: back_to_top\n  translation: Kembali ke atas\n\n- id: home\n  translation: Utama\n\n- id: close\n  translation: Tutup\n\n- id: languages\n  translation: Bahasa\n\n# General\n\n- id: related\n  translation: Terkait\n\n- id: minute_read\n  translation: minit untuk dibaca\n\n- id: previous\n  translation: Sebelumnya\n\n- id: next\n  translation: Seterusnya\n\n- id: figure\n  translation: 'Orang %d:'\n\n- id: edit_page\n  translation: Sunting halaman ini\n\n# Themes\n\n- id: theme_selector\n  translation: Pemilih tema\n\n- id: theme_light\n  translation: Cerah\n\n- id: theme_dark\n  translation: Gelap\n\n- id: theme_auto\n  translation: Automatik\n\n# Buttons\n\n- id: btn_preprint\n  translation: Pracetak\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Petik\n\n- id: btn_slides\n  translation: Persembahan\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kod\n\n- id: btn_dataset\n  translation: Set data\n\n- id: btn_project\n  translation: Projek\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Sumber\n\n- id: btn_copy\n  translation: Salin\n\n- id: btn_copied\n  translation: Disalin\n\n- id: btn_download\n  translation: Muat turun\n\n# About widget\n\n- id: interests\n  translation: Minat\n\n- id: education\n  translation: Pendidikan\n\n- id: user_profile_latest\n  translation: Terkini\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Lihat sijil\n\n# Experience widget\n\n- id: present\n  translation: Terkini\n\n# Pages widget\n\n- id: more_pages\n  translation: Lihat semua\n\n- id: more_posts\n  translation: Kiriman lainnya\n\n- id: more_talks\n  translation: Perbincangan lainnya\n\n- id: more_publications\n  translation: Terbitan lainnya\n\n# Contact widget\n\n- id: contact_name\n  translation: Nama\n\n- id: contact_email\n  translation: E-mel\n\n- id: contact_message\n  translation: Mesej\n\n- id: contact_attachment\n  translation: Sisip fail\n\n- id: contact_send\n  translation: Hantar\n\n- id: book_appointment\n  translation: Jadualkan pertemuan\n\n# Publication/Event details\n\n- id: abstract\n  translation: Abstrak\n\n- id: publication\n  translation: Terbitan\n\n- id: publication_type\n  translation: Jenis\n\n- id: date\n  translation: Tarikh\n\n- id: last_updated\n  translation: Terakhir dikemas kini\n\n- id: event\n  translation: Acara\n\n- id: location\n  translation: Kedudukan\n\n- id: pub_paper_conference\n  translation: Kertas sidang\n\n- id: pub_article_journal\n  translation: Artikel jurnal\n\n- id: pub_article\n  translation: Pracetak\n\n- id: pub_report\n  translation: Laporan\n\n- id: pub_book\n  translation: Buku\n\n- id: pub_chapter\n  translation: Bahagian buku\n\n- id: pub_thesis\n  translation: Tesis\n\n- id: pub_patent\n  translation: Paten\n\n# Project details\n\n- id: open_project_site\n  translation: Ke laman projek\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Kiriman\n\n- id: publications\n  translation: Terbitan\n\n- id: talks\n  translation: Perbincangan\n\n- id: projects\n  translation: Projek\n\n- id: slides\n  translation: Persembahan\n\n- id: authors\n  translation: Penulis\n\n# Search\n\n- id: search\n  translation: Cari\n\n- id: search_placeholder\n  translation: Cari...\n\n- id: search_results\n  translation: hasil dijumpai\n\n- id: search_no_results\n  translation: Tiada hasil dijumpai\n\n- id: search_common_queries\n  translation: Pencarian umum\n\n# Error 404\n\n- id: page_not_found\n  translation: Laman tidak ditemukan\n\n- id: 404_recommendations\n  translation: Adakah ini yang anda cari?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Laman ini menggunakan kuki untuk memastikan anda mendapatkan pengalaman terbaik dari laman web kami.\n\n- id: cookie_dismiss\n  translation: Baiklah!\n\n- id: cookie_learn\n  translation: Lebih lanjut\n\n# Published with\n\n- id: published_with\n  translation: Diterbitkan dengan {hugoblox} — pembuat laman web percuma {repo_link}bersumber terbuka{/repo_link} dan berkuasa.\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: Maklum balas\n\n- id: feedback_widget_question\n  translation: Adakah laman ini membantu?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Ya\n\n- id: feedback_widget_answer_negative\n  translation: 😡 Tidak\n"
  },
  {
    "path": "modules/blox/i18n/nb.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Bytte navigering\n\n- id: table_of_contents\n  translation: Innholdsfortegnelse\n\n- id: on_this_page\n  translation: Innhold\n\n- id: back_to_top\n  translation: Tilbake til toppen\n\n- id: home\n  translation: Hjem\n\n- id: close\n  translation: Lukk\n\n- id: languages\n  translation: Språk\n\n# General\n\n- id: related\n  translation: Relatert\n\n- id: minute_read\n  translation: min. lesing\n\n- id: previous\n  translation: Forrige\n\n- id: next\n  translation: Neste\n\n- id: figure\n  translation: 'Figur %d:'\n\n- id: edit_page\n  translation: Rediger denne siden\n\n# Themes\n\n- id: theme_selector\n  translation: Vis innstillinger\n\n- id: theme_light\n  translation: Lys\n\n- id: theme_dark\n  translation: Mørk\n\n- id: theme_auto\n  translation: Automatisk\n\n# Buttons\n\n- id: btn_preprint\n  translation: Upublisert manus (preprint)\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Sitere\n\n- id: btn_slides\n  translation: Presentasjoner\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kode\n\n- id: btn_dataset\n  translation: Datasett\n\n- id: btn_project\n  translation: Prosjekt\n\n- id: btn_poster\n  translation: Innlegg\n\n- id: btn_source\n  translation: Kildedokument\n\n- id: btn_copy\n  translation: Kopi\n\n- id: btn_copied\n  translation: Kopiert\n\n- id: btn_download\n  translation: Last ned\n\n# About widget\n\n- id: interests\n  translation: Interesser\n\n- id: education\n  translation: Utdanning\n\n- id: user_profile_latest\n  translation: Siste\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Se sertifikat\n\n# Experience widget\n\n- id: present\n  translation: Nå\n\n# Pages widget\n\n- id: more_pages\n  translation: Se alle\n\n- id: more_posts\n  translation: Se alle innlegg\n\n- id: more_talks\n  translation: Se alle presentasjoner\n\n- id: more_publications\n  translation: See alle publiseringer\n\n# Contact widget\n\n- id: contact_name\n  translation: Navn\n\n- id: contact_email\n  translation: E-post\n\n- id: contact_message\n  translation: Melding\n\n- id: contact_attachment\n  translation: Legg ved fil\n\n- id: contact_send\n  translation: Send\n\n- id: book_appointment\n  translation: Be om en avtale\n\n# Publication/Event details\n\n- id: abstract\n  translation: Sammendrag\n\n- id: publication\n  translation: Publisering\n\n- id: publication_type\n  translation: Type\n\n- id: date\n  translation: Dato\n\n- id: last_updated\n  translation: Sist oppdatert den\n\n- id: event\n  translation: Arrangement\n\n- id: location\n  translation: Sted\n\n- id: pub_paper_conference\n  translation: Konferanseartikkel\n\n- id: pub_article_journal\n  translation: Tidskriftsartikkel\n\n- id: pub_article\n  translation: Upublisert manus (preprint)\n\n- id: pub_report\n  translation: Rapport\n\n- id: pub_book\n  translation: Bok\n\n- id: pub_chapter\n  translation: Bokkapittel\n\n- id: pub_thesis\n  translation: Avhandling\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Gå til prosjektside\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Innlegg\n\n- id: publications\n  translation: Publiseringer\n\n- id: talks\n  translation: Foredrag\n\n- id: projects\n  translation: Prosjekter\n\n- id: slides\n  translation: Presentasjoner\n\n- id: authors\n  translation: Forfattere\n\n# Search\n\n- id: search\n  translation: Søk\n\n- id: search_placeholder\n  translation: Søk...\n\n- id: search_results\n  translation: resultater funnet\n\n- id: search_no_results\n  translation: Ingen resultater funnet\n\n- id: search_common_queries\n  translation: Felles søkeord\n\n# Error 404\n\n- id: page_not_found\n  translation: Siden ble ikke funnet\n\n- id: 404_recommendations\n  translation: Kanskje du lette etter noe av dette?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Denne siden bruker informasjonskapsler (cookies) for å bidra til den beste opplevelsen av denne nettsiden.\n\n- id: cookie_dismiss\n  translation: Skjønner!\n\n- id: cookie_learn\n  translation: Lær mer\n\n# Published with\n\n- id: published_with\n  translation: Publisert med {hugoblox} — en gratis løsning, {repo_link}basert på åpen kildekode{/repo_link} for å generere nettsider.\n"
  },
  {
    "path": "modules/blox/i18n/nl.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Navigatiebalk\n\n- id: table_of_contents\n  translation: Inhoudsopgave\n\n- id: on_this_page\n  translation: Op deze pagina\n\n- id: back_to_top\n  translation: Terug naar boven\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Gerelateerd\n\n- id: minute_read\n  translation: minuten lezen\n\n- id: previous\n  translation: Vorige\n\n- id: next\n  translation: Volgende\n\n- id: figure\n  translation: 'Figuur %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preprint\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citeer\n\n- id: btn_slides\n  translation: Dia's\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Code\n\n- id: btn_dataset\n  translation: Dataset\n\n- id: btn_project\n  translation: Project\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Brondocument\n\n- id: btn_copy\n  translation: Kopieer\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Download\n\n# About widget\n\n- id: interests\n  translation: Interesses\n\n- id: education\n  translation: Educatie\n\n- id: user_profile_latest\n  translation: Nieuwste\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Bekijk certificate\n\n# Experience widget\n\n- id: present\n  translation: Present\n\n# Pages widget\n\n- id: more_pages\n  translation: Bekijk alles\n\n- id: more_posts\n  translation: Meer Berichten\n\n- id: more_talks\n  translation: Meer Presentaties\n\n- id: more_publications\n  translation: Meer Publicaties\n\n# Contact widget\n\n- id: contact_name\n  translation: Naam\n\n- id: contact_email\n  translation: E-mailadres\n\n- id: contact_message\n  translation: Bericht\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Verzend\n\n- id: book_appointment\n  translation: Maak een afspraak\n\n# Contact info block\n\n- id: block_contact_title\n  translation: Neem contact op\n\n- id: block_contact_visit_title\n  translation: Bezoek ons\n\n- id: block_contact_office_hours\n  translation: Kantoortijden\n\n- id: block_contact_view_on_map\n  translation: Bekijk op kaart\n\n- id: block_contact_connect_title\n  translation: Contact\n\n- id: block_contact_follow_us\n  translation: Volg ons\n\n- id: block_contact_prospective_title\n  translation: Aspirant-leden\n\n- id: block_contact_form_title\n  translation: Stuur ons een bericht\n\n- id: block_contact_form_name\n  translation: Naam\n\n- id: block_contact_form_email\n  translation: E-mailadres\n\n- id: block_contact_form_subject\n  translation: Onderwerp\n\n- id: block_contact_form_message\n  translation: Bericht\n\n- id: block_contact_form_submit\n  translation: Verzend bericht\n\n# Publication/Event details\n\n- id: abstract\n  translation: Samenvatting\n\n- id: publication\n  translation: Publicatie\n\n- id: publication_type\n  translation: Type\n\n- id: date\n  translation: Datum\n\n- id: last_updated\n  translation: Laatst bijgewerkt op\n\n- id: event\n  translation: Evenement\n\n- id: location\n  translation: Locatie\n\n- id: pub_paper_conference\n  translation: Conferentiepaper\n\n- id: pub_article_journal\n  translation: Journalartikel\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Rapport\n\n- id: pub_book\n  translation: Boek\n\n- id: pub_chapter\n  translation: Boek sectie\n\n- id: pub_thesis\n  translation: Proefschrift\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Ga naar Projectenpagina\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: Blog\n\n- id: publications\n  translation: Publicaties\n\n- id: events\n  translation: Evenementen\n\n- id: projects\n  translation: Projects\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Search\n\n- id: search_placeholder\n  translation: Zoeken...\n\n- id: search_results\n  translation: resultaten gevonden\n\n- id: search_no_results\n  translation: Geen resultaten gevonden\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Pagina niet gevonden\n\n- id: 404_recommendations\n  translation: Misschien was je op zoek naar een van deze pagina's?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Deze website gebruikt cookies om je de best mogelijke ervaring te bieden.\n\n- id: cookie_dismiss\n  translation: Accepteer cookies\n\n- id: cookie_learn\n  translation: Meer informatie\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n\n- id: poweredby_button\n  translation: 'Bouw de jouwe →'\n\n# Contact info block\n\n- id: block_contact_follow_me\n  translation: Vind mij op\n\n# Dev Hero block\n\n- id: scroll_to_content\n  translation: Scroll naar inhoud\n\n- id: developer\n  translation: Ontwikkelaar\n\n# Portfolio block\n\n- id: portfolio_link_code\n  translation: Code\n\n- id: portfolio_link_live\n  translation: Live\n\n- id: portfolio_link_demo\n  translation: Demo\n\n- id: portfolio_link_default\n  translation: Link\n\n- id: portfolio_view_all\n  translation: Bekijk alle projecten\n\n# AI Features\n\n- id: ai_insight\n  translation: AI-inzicht\n\n# Content Metadata\n\n- id: content_type\n  translation: Contenttype\n\n- id: difficulty\n  translation: Moeilijkheidsgraad\n\n- id: prerequisites\n  translation: Vereisten\n\n# Card metadata\n\n- id: trending\n  translation: Populair\n\n- id: article\n  translation: artikel\n\n- id: articles\n  translation: artikelen\n\n- id: browse\n  translation: Bladeren\n\n- id: all\n  translation: Alles\n\n- id: helpful\n  translation: nuttig\n\n# Additional buttons\n\n- id: btn_site\n  translation: Site\n\n- id: btn_canonical\n  translation: Canoniek\n\n- id: btn_crosspost\n  translation: Crosspost\n\n- id: btn_discussion\n  translation: Discussie\n\n- id: btn_event\n  translation: Evenement\n\n- id: btn_calendar\n  translation: Kalender\n\n- id: btn_registration\n  translation: Registratie\n\n- id: btn_demo\n  translation: Demo\n\n- id: btn_model\n  translation: Model\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n# Callouts\n\n- id: callout_note\n  translation: Notitie\n\n- id: callout_abstract\n  translation: Samenvatting\n\n- id: callout_summary\n  translation: Samenvatting\n\n- id: callout_info\n  translation: Info\n\n- id: callout_todo\n  translation: Te doen\n\n- id: callout_tip\n  translation: Tip\n\n- id: callout_question\n  translation: Vraag\n\n- id: callout_quote\n  translation: Citaat\n\n- id: callout_warning\n  translation: Waarschuwing\n\n- id: callout_caution\n  translation: Let op\n\n- id: callout_danger\n  translation: Gevaar\n\n- id: callout_bug\n  translation: Bug\n\n- id: callout_example\n  translation: Voorbeeld\n\n- id: callout_failure\n  translation: Mislukt\n\n- id: callout_success\n  translation: Succes\n\n- id: callout_important\n  translation: Belangrijk\n\n# Slides\n\n- id: back_to_slides\n  translation: Terug naar slides\n\n- id: present_slides\n  translation: Presenteren\n\n- id: present_fullscreen\n  translation: Presenteren (volledig scherm)\n\n- id: export_pdf_print\n  translation: PDF exporteren (print)\n\n- id: slides_print_hint\n  translation: Opent in printmodus - browser Afdrukken > Opslaan als PDF\n\n- id: slides_search_placeholder\n  translation: Zoek decks op titel...\n\n- id: slides_no_decks\n  translation: Geen decks gevonden\n\n- id: slides_no_matches\n  translation: Geen decks voldoen aan je filters\n\n- id: clear_filters\n  translation: Filters wissen\n\n- id: topics\n  translation: Onderwerpen\n\n- id: details\n  translation: Details\n\n- id: related_resources\n  translation: Gerelateerde bronnen\n\n- id: copy_link\n  translation: Link kopiëren\n\n- id: copy_citation\n  translation: Citatie kopiëren\n\n- id: how_to_cite\n  translation: Hoe te citeren\n\n- id: citation\n  translation: Citatie\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: cite.bib downloaden\n\n- id: lecture\n  translation: College\n\n- id: enter_fullscreen\n  translation: Volledig scherm\n\n- id: exit_fullscreen\n  translation: Volledig scherm afsluiten\n\n- id: speaker_notes_hint\n  translation: voor sprekersnotities\n\n- id: slides_not_found\n  translation: Slides niet gevonden\n\n# Q&A\n\n- id: qa\n  translation: Q&A\n\n- id: question\n  translation: Vraag\n\n- id: answer\n  translation: Antwoord\n\n- id: accepted_answer\n  translation: Geaccepteerd antwoord\n\n- id: other_answers\n  translation: Andere antwoorden\n\n- id: questions\n  translation: Vragen\n\n- id: questions_count\n  translation: vragen\n\n- id: related_questions\n  translation: Gerelateerde vragen\n\n- id: search_questions\n  translation: Zoek vragen...\n\n- id: no_questions_yet\n  translation: Nog geen vragen\n\n- id: faq\n  translation: FAQ\n\n- id: faqs\n  translation: FAQs\n\n- id: browse_by_category\n  translation: Blader op categorie\n\n# General extras\n\n- id: about_me\n  translation: Professionele samenvatting\n\n- id: backlinks\n  translation: Backlinks\n\n- id: days\n  translation: Dagen\n\n- id: hours\n  translation: Uren\n\n- id: minutes\n  translation: Minuten\n\n- id: seconds\n  translation: Seconden\n\n- id: experience\n  translation: Ervaring\n\n- id: read_more\n  translation: Lees meer\n\n- id: docs\n  translation: Documentatie\n\n- id: featured\n  translation: Uitgelicht\n\n- id: feedback_widget_title\n  translation: Feedback\n\n- id: feedback_widget_question\n  translation: Was deze pagina nuttig?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Ja\n\n- id: feedback_widget_answer_negative\n  translation: 😡 Nee\n"
  },
  {
    "path": "modules/blox/i18n/pl.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Włącz/Wyłącz nawigację\n\n- id: table_of_contents\n  translation: Spis treści\n\n- id: on_this_page\n  translation: Na tej stronie\n\n- id: back_to_top\n  translation: Powrót do góry\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Powiązane\n\n- id: minute_read\n  translation: min czytania\n\n- id: previous\n  translation: Poprzedni\n\n- id: next\n  translation: Następny\n\n- id: figure\n  translation: 'Figura %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preprint\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Cytowanie\n\n- id: btn_slides\n  translation: Slajdy\n\n- id: btn_video\n  translation: Wideo\n\n- id: btn_code\n  translation: Kod\n\n- id: btn_dataset\n  translation: Dane\n\n- id: btn_project\n  translation: Projekt\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Dokument źródłowy\n\n- id: btn_copy\n  translation: Kopia\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Pobierz\n\n# About widget\n\n- id: interests\n  translation: Zainteresowania\n\n- id: education\n  translation: Wykształcenie\n\n- id: user_profile_latest\n  translation: Ostatnie\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Zobacz certyfikat\n\n# Experience widget\n\n- id: present\n  translation: Obecnie\n\n# Pages widget\n\n- id: more_pages\n  translation: Wszystkie\n\n- id: more_posts\n  translation: Więcej postów\n\n- id: more_talks\n  translation: Więcej wystąpień\n\n- id: more_publications\n  translation: Więcej publikacji\n\n# Contact widget\n\n- id: contact_name\n  translation: Imię i nazwisko\n\n- id: contact_email\n  translation: Adres email\n\n- id: contact_message\n  translation: Wiadomość\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Wyślij\n\n- id: book_appointment\n  translation: Umów spotkanie\n\n# Publication/Event details\n\n- id: abstract\n  translation: Streszczenie\n\n- id: publication\n  translation: Publikacja\n\n- id: publication_type\n  translation: Rodzaj\n\n- id: date\n  translation: Data\n\n- id: last_updated\n  translation: Ostatnia aktualizacja\n\n- id: event\n  translation: Wydarzenie\n\n- id: location\n  translation: Miejsce\n\n- id: pub_paper_conference\n  translation: Prezentacja z konferencji\n\n- id: pub_article_journal\n  translation: Artykuł w czasopiśmie\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Raport\n\n- id: pub_book\n  translation: Książka\n\n- id: pub_chapter\n  translation: Rozdział książki\n\n- id: pub_thesis\n  translation: Praca dyplomowa\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Idź do strony projektu\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Posty\n\n- id: publications\n  translation: Publikacje\n\n- id: talks\n  translation: Wystąpienia\n\n- id: projects\n  translation: Projekty\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Szukaj\n\n- id: search_placeholder\n  translation: Szukaj...\n\n- id: search_results\n  translation: wyników\n\n- id: search_no_results\n  translation: Brak wyników\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Strona nie znaleziona\n\n- id: 404_recommendations\n  translation: Podobne strony\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Ta strona używa ciasteczek do poprawnego działania strony.\n\n- id: cookie_dismiss\n  translation: Zrozumiałem!\n\n- id: cookie_learn\n  translation: Dlaczego?\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/pt.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Alterar navegação\n\n- id: table_of_contents\n  translation: Lista de Conteúdos\n\n- id: on_this_page\n  translation: Nesta página\n\n- id: back_to_top\n  translation: Voltar para o topo\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Relacionados\n\n- id: minute_read\n  translation: minutos de leitura\n\n- id: previous\n  translation: Anterior\n\n- id: next\n  translation: Próximo\n\n- id: figure\n  translation: 'Figura %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Pré-impressão\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citação\n\n- id: btn_slides\n  translation: Slides\n\n- id: btn_video\n  translation: Vídeo\n\n- id: btn_code\n  translation: Código\n\n- id: btn_dataset\n  translation: Dados\n\n- id: btn_project\n  translation: Projeto\n\n- id: btn_poster\n  translation: Pôster\n\n- id: btn_source\n  translation: Documento Fonte\n\n- id: btn_copy\n  translation: Copiar\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Download\n\n# About widget\n\n- id: interests\n  translation: Interesses\n\n- id: education\n  translation: Formação\n\n- id: user_profile_latest\n  translation: Recentes\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Ver certificado\n\n# Experience widget\n\n- id: present\n  translation: Presente\n\n# Pages widget\n\n- id: more_pages\n  translation: Ver todas\n\n- id: more_posts\n  translation: Mais Posts\n\n- id: more_talks\n  translation: Mais Palestras\n\n- id: more_publications\n  translation: Mais Publicações\n\n# Contact widget\n\n- id: contact_name\n  translation: Nome\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Mensagem\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Enviar\n\n- id: book_appointment\n  translation: Agendar um horário\n\n# Contact info block\n\n- id: block_contact_title\n  translation: Fale Conosco\n\n- id: block_contact_visit_title\n  translation: Visite-nos\n\n- id: block_contact_office_hours\n  translation: Horário de atendimento\n\n- id: block_contact_view_on_map\n  translation: Ver no mapa\n\n- id: block_contact_connect_title\n  translation: Contato\n\n- id: block_contact_follow_us\n  translation: Siga-nos\n\n- id: block_contact_prospective_title\n  translation: Membros em potencial\n\n- id: block_contact_form_title\n  translation: Envie-nos uma mensagem\n\n- id: block_contact_form_name\n  translation: Nome\n\n- id: block_contact_form_email\n  translation: Email\n\n- id: block_contact_form_subject\n  translation: Assunto\n\n- id: block_contact_form_message\n  translation: Mensagem\n\n- id: block_contact_form_submit\n  translation: Enviar mensagem\n\n# Publication/Event details\n\n- id: abstract\n  translation: Resumo\n\n- id: publication\n  translation: Publicação\n\n- id: publication_type\n  translation: Tipo\n\n- id: date\n  translation: Data\n\n- id: last_updated\n  translation: Última atualização em\n\n- id: event\n  translation: Evento\n\n- id: location\n  translation: Local\n\n- id: pub_paper_conference\n  translation: Artigo de conferência\n\n- id: pub_article_journal\n  translation: Artigo de revista\n\n- id: pub_article\n  translation: Pré-impressão\n\n- id: pub_report\n  translation: Relatório\n\n- id: pub_book\n  translation: Livro\n\n- id: pub_chapter\n  translation: Seção de livro\n\n- id: pub_thesis\n  translation: Tese\n\n- id: pub_patent\n  translation: Patente\n\n# Project details\n\n- id: open_project_site\n  translation: Ir para o site do projeto\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: Blog\n\n- id: publications\n  translation: Publicações\n\n- id: events\n  translation: Eventos\n\n- id: projects\n  translation: Projetos\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Pesquisar\n\n- id: search_placeholder\n  translation: Pesquisar...\n\n- id: search_results\n  translation: Resultados encontrados\n\n- id: search_no_results\n  translation: Sem resultados\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Página não encontrada\n\n- id: 404_recommendations\n  translation: Você está procurando por um desses?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Este site contém cookies para garantir que você tenha a melhor experência.\n\n- id: cookie_dismiss\n  translation: Entendi!\n\n- id: cookie_learn\n  translation: Saiba mais\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n\n# AI Features\n\n- id: ai_insight\n  translation: Insight de IA\n\n# Content Metadata\n\n- id: content_type\n  translation: Tipo de conteúdo\n\n- id: difficulty\n  translation: Dificuldade\n\n- id: prerequisites\n  translation: Pré-requisitos\n\n# Card metadata\n\n- id: trending\n  translation: Em alta\n\n- id: article\n  translation: artigo\n\n- id: articles\n  translation: artigos\n\n- id: browse\n  translation: Navegar\n\n- id: all\n  translation: Todos\n\n- id: helpful\n  translation: útil\n\n# Additional buttons\n\n- id: btn_site\n  translation: Site\n\n- id: btn_canonical\n  translation: Canônico\n\n- id: btn_crosspost\n  translation: Crosspost\n\n- id: btn_discussion\n  translation: Discussão\n\n- id: btn_event\n  translation: Evento\n\n- id: btn_calendar\n  translation: Calendário\n\n- id: btn_registration\n  translation: Inscrição\n\n- id: btn_demo\n  translation: Demo\n\n- id: btn_model\n  translation: Modelo\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n# Callouts\n\n- id: callout_note\n  translation: Nota\n\n- id: callout_abstract\n  translation: Resumo\n\n- id: callout_summary\n  translation: Sumário\n\n- id: callout_info\n  translation: Informação\n\n- id: callout_todo\n  translation: Para fazer\n\n- id: callout_tip\n  translation: Dica\n\n- id: callout_question\n  translation: Pergunta\n\n- id: callout_quote\n  translation: Citação\n\n- id: callout_warning\n  translation: Aviso\n\n- id: callout_caution\n  translation: Cuidado\n\n- id: callout_danger\n  translation: Perigo\n\n- id: callout_bug\n  translation: Bug\n\n- id: callout_example\n  translation: Exemplo\n\n- id: callout_failure\n  translation: Falha\n\n- id: callout_success\n  translation: Sucesso\n\n- id: callout_important\n  translation: Importante\n\n# Slides\n\n- id: back_to_slides\n  translation: Voltar para slides\n\n- id: present_slides\n  translation: Apresentar\n\n- id: present_fullscreen\n  translation: Apresentar (tela cheia)\n\n- id: export_pdf_print\n  translation: Exportar PDF (impressão)\n\n- id: slides_print_hint\n  translation: Abre em modo de impressão - use Imprimir > Salvar como PDF\n\n- id: slides_search_placeholder\n  translation: Buscar decks por título...\n\n- id: slides_no_decks\n  translation: Nenhum conjunto de slides encontrado\n\n- id: slides_no_matches\n  translation: Nenhum deck corresponde aos filtros\n\n- id: clear_filters\n  translation: Limpar filtros\n\n- id: topics\n  translation: Tópicos\n\n- id: details\n  translation: Detalhes\n\n- id: related_resources\n  translation: Recursos relacionados\n\n- id: copy_link\n  translation: Copiar link\n\n- id: copy_citation\n  translation: Copiar citação\n\n- id: how_to_cite\n  translation: Como citar\n\n- id: citation\n  translation: Citação\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: Baixar cite.bib\n\n- id: lecture\n  translation: Aula\n\n- id: enter_fullscreen\n  translation: Entrar em tela cheia\n\n- id: exit_fullscreen\n  translation: Sair da tela cheia\n\n- id: speaker_notes_hint\n  translation: para notas do apresentador\n\n- id: slides_not_found\n  translation: Slides não encontrados\n\n# Q&A\n\n- id: qa\n  translation: Q&A\n\n- id: question\n  translation: Pergunta\n\n- id: answer\n  translation: Resposta\n\n- id: accepted_answer\n  translation: Resposta aceita\n\n- id: other_answers\n  translation: Outras respostas\n\n- id: questions\n  translation: Perguntas\n\n- id: questions_count\n  translation: perguntas\n\n- id: related_questions\n  translation: Perguntas relacionadas\n\n- id: search_questions\n  translation: Buscar perguntas...\n\n- id: no_questions_yet\n  translation: Ainda não há perguntas\n\n- id: faq\n  translation: FAQ\n\n- id: faqs\n  translation: FAQs\n\n- id: browse_by_category\n  translation: Navegar por categoria\n\n# General extras\n\n- id: about_me\n  translation: Resumo profissional\n\n- id: backlinks\n  translation: Backlinks\n\n- id: days\n  translation: Dias\n\n- id: hours\n  translation: Horas\n\n- id: minutes\n  translation: Minutos\n\n- id: seconds\n  translation: Segundos\n\n- id: developer\n  translation: Desenvolvedor\n\n- id: docs\n  translation: Documentação\n\n- id: experience\n  translation: Experiência\n\n- id: read_more\n  translation: Leia mais\n\n- id: featured\n  translation: Em destaque\n\n- id: block_contact_follow_me\n  translation: Encontre-me em\n\n- id: portfolio_link_code\n  translation: Código\n\n- id: portfolio_link_live\n  translation: Ao vivo\n\n- id: portfolio_link_demo\n  translation: Demo\n\n- id: portfolio_link_default\n  translation: Link\n\n- id: portfolio_view_all\n  translation: Ver todos os projetos\n\n- id: scroll_to_content\n  translation: Rolar para o conteúdo\n\n- id: feedback_widget_title\n  translation: Feedback\n\n- id: feedback_widget_question\n  translation: Esta página foi útil?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Sim\n\n- id: feedback_widget_answer_negative\n  translation: 😡 Não\n\n- id: poweredby_button\n  translation: 'Construa a sua →'\n"
  },
  {
    "path": "modules/blox/i18n/ro.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Bara de navigare\n\n- id: table_of_contents\n  translation: Indice\n\n- id: on_this_page\n  translation: Pe această pagină\n\n- id: back_to_top\n  translation: Înapoi la început\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Înrudit\n\n- id: minute_read\n  translation: min de citire\n\n- id: previous\n  translation: Anterioară\n\n- id: next\n  translation: Următor\n\n- id: figure\n  translation: 'Imagine %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preimprimare\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citat\n\n- id: btn_slides\n  translation: Diapozitive\n\n- id: btn_video\n  translation: Vídeo\n\n- id: btn_code\n  translation: Cod\n\n- id: btn_dataset\n  translation: Date\n\n- id: btn_project\n  translation: Proiect\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Sursa document\n\n- id: btn_copy\n  translation: Copie\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Descărcare\n\n# About widget\n\n- id: interests\n  translation: Interese\n\n- id: education\n  translation: Educație\n\n- id: user_profile_latest\n  translation: Recent\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Vezi certificatul\n\n# Experience widget\n\n- id: present\n  translation: În prezent\n\n# Pages widget\n\n- id: more_pages\n  translation: Vezi tot\n\n- id: more_posts\n  translation: Mai multe postări\n\n- id: more_talks\n  translation: Mai multe discuții\n\n- id: more_publications\n  translation: Mai multe publicații\n\n# Contact widget\n\n- id: contact_name\n  translation: Nume\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Mesaj\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Trimiteți\n\n- id: book_appointment\n  translation: Solicitați o întâlnire\n\n# Publication/Event details\n\n- id: abstract\n  translation: Rezumat\n\n- id: publication\n  translation: Publicație\n\n- id: publication_type\n  translation: Tip\n\n- id: date\n  translation: Data\n\n- id: last_updated\n  translation: Ultima actualizare la\n\n- id: event\n  translation: Eveniment\n\n- id: location\n  translation: Localizare\n\n- id: pub_paper_conference\n  translation: Conference paper\n\n- id: pub_article_journal\n  translation: Articol jurnal\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Report\n\n- id: pub_book\n  translation: Carte\n\n- id: pub_chapter\n  translation: Secțiunea cărți\n\n- id: pub_thesis\n  translation: Teza\n\n- id: pub_patent\n  translation: Brevet de invenție\n\n# Project details\n\n- id: open_project_site\n  translation: Accesați site-ul proiectului\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Articole\n\n- id: publications\n  translation: Publicații\n\n- id: talks\n  translation: Conferințe\n\n- id: projects\n  translation: Proiecte\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Căutare\n\n- id: search_placeholder\n  translation: Căutare...\n\n- id: search_results\n  translation: rezultate găsite\n\n- id: search_no_results\n  translation: Nu s-au găsit rezultate\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Pagina nu a fost găsită\n\n- id: 404_recommendations\n  translation: Căutați una din acestea?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Acest site utilizează cookie-uri pentru a garanta o experiență mai bună.\n\n- id: cookie_dismiss\n  translation: Înțeles!\n\n- id: cookie_learn\n  translation: Mai multe informații\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/ru.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Переключить навигацию\n\n- id: table_of_contents\n  translation: Содержание\n\n- id: on_this_page\n  translation: На этой странице\n\n- id: back_to_top\n  translation: На верх\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Похожие\n\n- id: minute_read\n  translation: мин. для прочтения\n\n- id: previous\n  translation: Предыдущий\n\n- id: next\n  translation: Следующий\n\n- id: figure\n  translation: 'Схема № %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Предварительная печать\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Процитировать\n\n- id: btn_slides\n  translation: Слайды\n\n- id: btn_video\n  translation: Видео\n\n- id: btn_code\n  translation: Код\n\n- id: btn_dataset\n  translation: Набор данных\n\n- id: btn_project\n  translation: Проект\n\n- id: btn_poster\n  translation: Постер\n\n- id: btn_source\n  translation: Исходный документ\n\n- id: btn_copy\n  translation: Копия\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Скачать\n\n# About widget\n\n- id: interests\n  translation: Интересы\n\n- id: education\n  translation: Образование\n\n- id: user_profile_latest\n  translation: Последние\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Посмотреть сертификат\n\n# Experience widget\n\n- id: present\n  translation: Настоящий\n\n# Pages widget\n\n- id: more_pages\n  translation: Посмотреть всё\n\n- id: more_posts\n  translation: Больше статей\n\n- id: more_talks\n  translation: Больше выступлений\n\n- id: more_publications\n  translation: Больше публикаций\n\n# Contact widget\n\n- id: contact_name\n  translation: Имя\n\n- id: contact_email\n  translation: адрес электронной почты\n\n- id: contact_message\n  translation: Сообщение\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Отправить\n\n- id: book_appointment\n  translation: Назначить встречу\n\n# Publication/Event details\n\n- id: abstract\n  translation: Аннотация\n\n- id: publication\n  translation: Публикация\n\n- id: publication_type\n  translation: Тип публикации\n\n- id: date\n  translation: Дата\n\n- id: last_updated\n  translation: Обновлено\n\n- id: event\n  translation: Событие\n\n- id: location\n  translation: Место\n\n- id: pub_paper_conference\n  translation: Статья для конференции\n\n- id: pub_article_journal\n  translation: Статья для журнала\n\n- id: pub_article\n  translation: Предварительная печать\n\n- id: pub_report\n  translation: Выступление\n\n- id: pub_book\n  translation: Книга\n\n- id: pub_chapter\n  translation: Глава книги\n\n- id: pub_thesis\n  translation: Тезис\n\n- id: pub_patent\n  translation: Патент\n\n# Project details\n\n- id: open_project_site\n  translation: Перейти на сайт проекта\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Статьи\n\n- id: publications\n  translation: Публикации\n\n- id: talks\n  translation: Выступления\n\n- id: projects\n  translation: Проекты\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Поиск\n\n- id: search_placeholder\n  translation: Поиск ...\n\n- id: search_results\n  translation: результат найден\n\n- id: search_no_results\n  translation: результат не найден\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Страница не найдена\n\n- id: 404_recommendations\n  translation: Вы наверное искали один из тезисов?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Для комфорной навигации на этом сайте используются куки (cookies).\n\n- id: cookie_dismiss\n  translation: Понял!\n\n- id: cookie_learn\n  translation: Узнать больше\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/so.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Rog socodka\n\n- id: table_of_contents\n  translation: Tusmada Guud\n\n- id: on_this_page\n  translation: Boggan ku yaal\n\n- id: back_to_top\n  translation: Kor aad\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: La Mida\n\n- id: minute_read\n  translation: Akhrisma\n\n- id: previous\n  translation: Hore\n\n- id: next\n  translation: Xiga\n\n- id: figure\n  translation: 'Sawir %d:'\n\n- id: edit_page\n  translation: Tifatir Boggan\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Caddee\n\n- id: theme_dark\n  translation: Madoobee\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Daabac hore\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Xigso\n\n- id: btn_slides\n  translation: Slides\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Code\n\n- id: btn_dataset\n  translation: Xog\n\n- id: btn_project\n  translation: Mashruuc\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Source Document\n\n- id: btn_copy\n  translation: Nuqul\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Dajiso\n\n# About widget\n\n- id: interests\n  translation: Hiwaayado\n\n- id: education\n  translation: Waxbarasho\n\n- id: user_profile_latest\n  translation: Ugu cusub\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Arag Shahaadada\n\n# Experience widget\n\n- id: present\n  translation: Hadda\n\n# Pages widget\n\n- id: more_pages\n  translation: Arag dhammaan\n\n- id: more_posts\n  translation: Arag dhammaan qoraalada\n\n- id: more_talks\n  translation: Arag Qudbadaha\n\n- id: more_publications\n  translation: Arag qoraalada oo dhan\n\n# Contact widget\n\n- id: contact_name\n  translation: Magac\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Baaq\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Dir\n\n- id: book_appointment\n  translation: Ballan qabso\n\n# Publication/Event details\n\n- id: abstract\n  translation: Arar\n\n- id: publication\n  translation: Qormooyin\n\n- id: publication_type\n  translation: Nooc\n\n- id: date\n  translation: Goor\n\n- id: last_updated\n  translation: La tifatiray\n\n- id: event\n  translation: Dhacdo\n\n- id: location\n  translation: Meel\n\n- id: pub_paper_conference\n  translation: Qoraal Shir\n\n- id: pub_article_journal\n  translation: Qoraal Majallad\n\n- id: pub_article\n  translation: Daabac Hore\n\n- id: pub_report\n  translation: Wargelin\n\n- id: pub_book\n  translation: Buug\n\n- id: pub_chapter\n  translation: Qayb Buug\n\n- id: pub_thesis\n  translation: Buug Qalinjabin\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Tag Bogga Mashruuca\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Qoraal\n\n- id: publications\n  translation: Publications\n\n- id: talks\n  translation: Qudbad\n\n- id: projects\n  translation: Mashruuc\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Raadi\n\n- id: search_placeholder\n  translation: Raadi...\n\n- id: search_results\n  translation: results found\n\n- id: search_no_results\n  translation: No results found\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Boggan lama helin\n\n- id: 404_recommendations\n  translation: Malaha waxaad raadinaysay?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Boggani wuxuu isticmaala \"cookies\" sii aad u hesho adeegga ugu wacan\n\n- id: cookie_dismiss\n  translation: Gartay!\n\n- id: cookie_learn\n  translation: Faahfaahin\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/sv.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Växla navigering\n\n- id: table_of_contents\n  translation: Innehållsförteckning\n\n- id: on_this_page\n  translation: Innehåll\n\n- id: back_to_top\n  translation: Tillbaka till toppen\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Relaterad\n\n- id: minute_read\n  translation: Min Läsning\n\n- id: previous\n  translation: Föregående\n\n- id: next\n  translation: Nästa\n\n- id: figure\n  translation: 'Figur %d:'\n\n- id: edit_page\n  translation: Redigera den här sidan\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Manuscript\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Citera\n\n- id: btn_slides\n  translation: Presentationer\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kod\n\n- id: btn_dataset\n  translation: Datauppsättning\n\n- id: btn_project\n  translation: Projekt\n\n- id: btn_poster\n  translation: Affisch\n\n- id: btn_source\n  translation: Källdokument\n\n- id: btn_copy\n  translation: Kopia\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Ladda ner\n\n# About widget\n\n- id: interests\n  translation: Intressen\n\n- id: education\n  translation: Utbildning\n\n- id: user_profile_latest\n  translation: Senaste Inläggen\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Se certifikat\n\n# Experience widget\n\n- id: present\n  translation: Nuvarande\n\n# Pages widget\n\n- id: more_pages\n  translation: Se allt\n\n- id: more_posts\n  translation: Se alla inlägg\n\n- id: more_talks\n  translation: Se alla föredrag\n\n- id: more_publications\n  translation: Se alla publikationer\n\n# Contact widget\n\n- id: contact_name\n  translation: Namn\n\n- id: contact_email\n  translation: E-post\n\n- id: contact_message\n  translation: Meddelande\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Skicka\n\n- id: book_appointment\n  translation: Boka ett möte\n\n# Publication/Event details\n\n- id: abstract\n  translation: Abstrakt\n\n- id: publication\n  translation: Publikation\n\n- id: publication_type\n  translation: Typ\n\n- id: date\n  translation: Datum\n\n- id: last_updated\n  translation: Senast uppdaterad\n\n- id: event\n  translation: Event\n\n- id: location\n  translation: Plats\n\n- id: pub_paper_conference\n  translation: Konferensbidrag\n\n- id: pub_article_journal\n  translation: Tidskriftsartikel\n\n- id: pub_article\n  translation: Manuscript\n\n- id: pub_report\n  translation: Rapport\n\n- id: pub_book\n  translation: Bok\n\n- id: pub_chapter\n  translation: Bok sektion\n\n- id: pub_thesis\n  translation: Avhandling\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Gå till projektsidan\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Inlägg\n\n- id: publications\n  translation: Publikationer\n\n- id: talks\n  translation: Föredrag\n\n- id: projects\n  translation: Projekt\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Sök\n\n- id: search_placeholder\n  translation: Sök...\n\n- id: search_results\n  translation: hittade resultat\n\n- id: search_no_results\n  translation: Inga resultat funna\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Sidan hittas inte\n\n- id: 404_recommendations\n  translation: Kanske letade du efter en av dessa?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Denna webbplats använder kakor för att säkerställa att du får den bästa upplevelsen på vår webbplats.\n\n- id: cookie_dismiss\n  translation: Jag fattar!\n\n- id: cookie_learn\n  translation: Lär dig mer\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/tr.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Arayüz yönünü değiştir\n\n- id: table_of_contents\n  translation: Table of Contents\n\n- id: on_this_page\n  translation: On this page\n\n- id: back_to_top\n  translation: Back to top\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Related\n\n- id: minute_read\n  translation: min read\n\n- id: previous\n  translation: Previous\n\n- id: next\n  translation: Next\n\n- id: figure\n  translation: 'Figure %d:'\n\n- id: edit_page\n  translation: Edit this page\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Preprint\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Cite\n\n- id: btn_slides\n  translation: Slaytlar\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Kod\n\n- id: btn_dataset\n  translation: Veri kümesi\n\n- id: btn_project\n  translation: Proje\n\n- id: btn_poster\n  translation: Poster\n\n- id: btn_source\n  translation: Source Document\n\n- id: btn_copy\n  translation: Copy\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Download\n\n# About widget\n\n- id: interests\n  translation: İlgi alanları\n\n- id: education\n  translation: Eğitim\n\n- id: user_profile_latest\n  translation: Latest\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: See certificate\n\n# Experience widget\n\n- id: present\n  translation: Present\n\n# Pages widget\n\n- id: more_pages\n  translation: See all\n\n- id: more_posts\n  translation: Daha fazla blog içeriği\n\n- id: more_talks\n  translation: Daha fazla konuşma\n\n- id: more_publications\n  translation: Daha fazla yayınlar\n\n# Contact widget\n\n- id: contact_name\n  translation: Name\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Message\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Send\n\n- id: book_appointment\n  translation: Book an appointment\n\n# Publication/Event details\n\n- id: abstract\n  translation: Özet\n\n- id: publication\n  translation: Yayın\n\n- id: publication_type\n  translation: Yayın tipi\n\n- id: date\n  translation: Tarih\n\n- id: last_updated\n  translation: Last updated on\n\n- id: event\n  translation: Etkinlikler\n\n- id: location\n  translation: Adres\n\n- id: pub_paper_conference\n  translation: Conference paper\n\n- id: pub_article_journal\n  translation: Journal article\n\n- id: pub_article\n  translation: Preprint\n\n- id: pub_report\n  translation: Report\n\n- id: pub_book\n  translation: Book\n\n- id: pub_chapter\n  translation: Book section\n\n- id: pub_thesis\n  translation: Thesis\n\n- id: pub_patent\n  translation: Patent\n\n# Project details\n\n- id: open_project_site\n  translation: Projenin sayfasına git\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Blog içerikleri\n\n- id: publications\n  translation: Yayınlar\n\n- id: talks\n  translation: Konuşmalar\n\n- id: projects\n  translation: Projects\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Search\n\n- id: search_placeholder\n  translation: Search...\n\n- id: search_results\n  translation: results found\n\n- id: search_no_results\n  translation: No results found\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Page not found\n\n- id: 404_recommendations\n  translation: Perhaps you were looking for one of these?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: This website uses cookies to ensure you get the best experience on our website.\n\n- id: cookie_dismiss\n  translation: Got it!\n\n- id: cookie_learn\n  translation: Learn more\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/uk.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Перемкнути навігацію\n\n- id: table_of_contents\n  translation: Зміст\n\n- id: on_this_page\n  translation: на сторінці\n\n- id: back_to_top\n  translation: Повернутися догори\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: Languages\n\n# General\n\n- id: related\n  translation: Подібні\n\n- id: minute_read\n  translation: хв читання\n\n- id: previous\n  translation: Попередній\n\n- id: next\n  translation: Наступний\n\n- id: figure\n  translation: 'Схема %d:'\n\n- id: edit_page\n  translation: Редагувати цю сторінку\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: Light\n\n- id: theme_dark\n  translation: Dark\n\n- id: theme_auto\n  translation: Automatic\n\n# Buttons\n\n- id: btn_preprint\n  translation: Попередній друк\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Цитувати\n\n- id: btn_slides\n  translation: Слайди\n\n- id: btn_video\n  translation: Відео\n\n- id: btn_code\n  translation: Код\n\n- id: btn_dataset\n  translation: Набір даних\n\n- id: btn_project\n  translation: Проєкт\n\n- id: btn_poster\n  translation: Постер\n\n- id: btn_source\n  translation: Вихідний документ\n\n- id: btn_copy\n  translation: Копія\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Завантажити\n\n# About widget\n\n- id: interests\n  translation: Зацікавлення\n\n- id: education\n  translation: Освіта\n\n- id: user_profile_latest\n  translation: Останні\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Переглянути сертифікат\n\n# Experience widget\n\n- id: present\n  translation: Теперішній\n\n# Pages widget\n\n- id: more_pages\n  translation: Переглянути все\n\n- id: more_posts\n  translation: Переглянути всі пости\n\n- id: more_talks\n  translation: Переглянути всі бесіди\n\n- id: more_publications\n  translation: Переглянути всі публікації\n\n# Contact widget\n\n- id: contact_name\n  translation: Ім'я\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Повідомлення\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: Надіслати\n\n- id: book_appointment\n  translation: Призначити зустріч\n\n# Publication/Event details\n\n- id: abstract\n  translation: Анотація\n\n- id: publication\n  translation: Публікація\n\n- id: publication_type\n  translation: Тип\n\n- id: date\n  translation: Дата\n\n- id: last_updated\n  translation: Останнє оновлення\n\n- id: event\n  translation: Подія\n\n- id: location\n  translation: Місце\n\n- id: pub_paper_conference\n  translation: Стаття для конференції\n\n- id: pub_article_journal\n  translation: Стаття для журнала\n\n- id: pub_article\n  translation: Попередній друк\n\n- id: pub_report\n  translation: Доповідь\n\n- id: pub_book\n  translation: Книга\n\n- id: pub_chapter\n  translation: Розділ книги\n\n- id: pub_thesis\n  translation: Тезис\n\n- id: pub_patent\n  translation: Патент\n\n# Project details\n\n- id: open_project_site\n  translation: Перейти на сайт проєкта\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Дописи\n\n- id: publications\n  translation: Публікації\n\n- id: talks\n  translation: Бесіди\n\n- id: projects\n  translation: Проєкти\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: Пошук\n\n- id: search_placeholder\n  translation: Пошук...\n\n- id: search_results\n  translation: Знайдені результати\n\n- id: search_no_results\n  translation: Результатів не знайдено\n\n- id: search_common_queries\n  translation: Common searches\n\n# Error 404\n\n- id: page_not_found\n  translation: Не вдалося знайти сторінку\n\n- id: 404_recommendations\n  translation: Можливо, Ви шукали щось з цього?\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Щоб упевнитись у зручності користування сайтом, ми використовуємо кукі-файли.\n\n- id: cookie_dismiss\n  translation: Зрозуміло!\n\n- id: cookie_learn\n  translation: Дізнатися більше\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n"
  },
  {
    "path": "modules/blox/i18n/vi.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: Chuyển Điều Hướng\n\n- id: table_of_contents\n  translation: Mục Lục\n\n- id: on_this_page\n  translation: Nội dung\n\n- id: back_to_top\n  translation: Lên đầu trang\n\n- id: home\n  translation: Trang chủ\n\n- id: close\n  translation: Đóng\n\n- id: languages\n  translation: Ngôn ngữ\n\n# General\n\n- id: related\n  translation: Bài Liên Quan\n\n- id: minute_read\n  translation: phút để đọc\n\n- id: previous\n  translation: Trước\n\n- id: next\n  translation: Sau\n\n- id: figure\n  translation: 'Hình %d:'\n\n- id: edit_page\n  translation: Chỉnh sửa trang này\n\n# Themes\n\n- id: theme_selector\n  translation: Tùy chọn hiển thị\n\n- id: theme_light\n  translation: Sáng\n\n- id: theme_dark\n  translation: Tối\n\n- id: theme_auto\n  translation: Tự động\n\n# Buttons\n\n- id: btn_preprint\n  translation: Bản Thảo\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: Trích Dẫn\n\n- id: btn_slides\n  translation: Slides\n\n- id: btn_video\n  translation: Video\n\n- id: btn_code\n  translation: Mã Nguồn\n\n- id: btn_dataset\n  translation: Dữ liệu\n\n- id: btn_project\n  translation: Dự Án\n\n- id: btn_poster\n  translation: Áp phích\n\n- id: btn_source\n  translation: Mã Nguồn\n\n- id: btn_copy\n  translation: Sao Chép\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: Tải Về\n\n# About widget\n\n- id: interests\n  translation: Sở Thích\n\n- id: education\n  translation: Học Vấn\n\n- id: user_profile_latest\n  translation: Mới nhất\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: Xem chứng chỉ\n\n# Experience widget\n\n- id: present\n  translation: Hiện tại\n\n# Pages widget\n\n- id: more_pages\n  translation: Xem tất cả\n\n- id: more_posts\n  translation: Bài Đăng Khác\n\n- id: more_talks\n  translation: Thuyết Trình Khác\n\n- id: more_publications\n  translation: Các Công Trình\n\n# Contact widget\n\n- id: contact_name\n  translation: Tên\n\n- id: contact_email\n  translation: Email\n\n- id: contact_message\n  translation: Tin nhắn\n\n- id: contact_attachment\n  translation: Đính kèm tệp\n\n- id: contact_send\n  translation: Gửi\n\n- id: book_appointment\n  translation: Đặt cuộc hẹn\n\n# Publication/Event details\n\n- id: abstract\n  translation: Tóm tắt\n\n- id: publication\n  translation: Công Trình\n\n- id: publication_type\n  translation: Phân Loại\n\n- id: date\n  translation: Thời Gian\n\n- id: last_updated\n  translation: Cập Nhật Lần Cuối\n\n- id: event\n  translation: Sự Kiện\n\n- id: location\n  translation: Địa Điểm\n\n- id: pub_paper_conference\n  translation: Bài báo hội nghị\n\n- id: pub_article_journal\n  translation: Bài viết tạp chí\n\n- id: pub_article\n  translation: Bài viết trước\n\n- id: pub_report\n  translation: Báo cáo\n\n- id: pub_book\n  translation: Sách\n\n- id: pub_chapter\n  translation: Chương sách\n\n- id: pub_thesis\n  translation: Luận văn\n\n- id: pub_patent\n  translation: Bằng sáng chế\n\n# Project details\n\n- id: open_project_site\n  translation: Đến Trang Dự Án\n\n# Content types for default archive page titles and search results\n\n- id: posts\n  translation: Bài Đăng\n\n- id: publications\n  translation: Công Trình\n\n- id: talks\n  translation: Thuyết Trình\n\n- id: projects\n  translation: Dự Án\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Tác giả\n\n# Search\n\n- id: search\n  translation: Tìm kiếm\n\n- id: search_placeholder\n  translation: Tìm kiếm...\n\n- id: search_results\n  translation: kết quả được tìm thấy\n\n- id: search_no_results\n  translation: Không tìm thấy kết quả\n\n- id: search_common_queries\n  translation: Tìm kiếm phổ biến\n\n# Error 404\n\n- id: page_not_found\n  translation: Trang không tìm thấy\n\n- id: 404_recommendations\n  translation: Có thể bạn đang tìm những trang này\n\n# Cookie consent\n\n- id: cookie_message\n  translation: Trang web này sử dụng cookie để đảm bảo bạn có trải nghiệm tốt nhất trên trang web của chúng tôi.\n\n- id: cookie_dismiss\n  translation: Tôi đã hiểu!\n\n- id: cookie_learn\n  translation: Tìm hiểu thêm\n\n# Published with\n\n- id: published_with\n  translation: Made with {hugoblox}.\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: Phản hồi\n\n- id: feedback_widget_question\n  translation: Trang này có hữu ích không?\n\n- id: feedback_widget_answer_positive\n  translation: 😍 Có\n\n- id: feedback_widget_answer_negative\n  translation: 😡 Không\n"
  },
  {
    "path": "modules/blox/i18n/zh-Hant.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: 切換導航\n\n- id: table_of_contents\n  translation: 目錄\n\n- id: on_this_page\n  translation: 於本頁\n\n- id: back_to_top\n  translation: 回到頂端\n\n- id: home\n  translation: 主頁\n\n- id: close\n  translation: 關閉\n\n- id: languages\n  translation: 語言\n\n# General\n\n- id: related\n  translation: 相關\n\n- id: minute_read\n  translation: 閱讀時間（分鐘）\n\n- id: previous\n  translation: 上一頁\n\n- id: next\n  translation: 下一頁\n\n- id: figure\n  translation: '圖%d:'\n\n- id: edit_page\n  translation: 編輯本業\n\n# Themes\n\n- id: theme_selector\n  translation: 顯示選項\n\n- id: theme_light\n  translation: 明亮\n\n- id: theme_dark\n  translation: 暗黑\n\n- id: theme_auto\n  translation: 自動\n\n# Buttons\n\n- id: btn_preprint\n  translation: 影印預覽\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: 引用\n\n- id: btn_slides\n  translation: 投影片\n\n- id: btn_video\n  translation: 影片\n\n- id: btn_code\n  translation: 程式碼\n\n- id: btn_dataset\n  translation: 數據集\n\n- id: btn_project\n  translation: 專案\n\n- id: btn_poster\n  translation: 海報\n\n- id: btn_source\n  translation: 原始檔\n\n- id: btn_copy\n  translation: 複製\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: 下載\n\n# About widget\n\n- id: interests\n  translation: 興趣\n\n- id: education\n  translation: 教育程度\n\n- id: user_profile_latest\n  translation: 最新\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: 查看證書\n\n# Experience widget\n\n- id: present\n  translation: 現在\n\n# Pages widget\n\n- id: more_pages\n  translation: 查看更多\n\n- id: more_posts\n  translation: 查看更多文章\n\n- id: more_talks\n  translation: 查看更多演講\n\n- id: more_publications\n  translation: 查看更多出版物\n\n# Contact widget\n\n- id: contact_name\n  translation: 姓名\n\n- id: contact_email\n  translation: 郵箱\n\n- id: contact_message\n  translation: 訊息\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: 發送\n\n- id: book_appointment\n  translation: 預約\n\n# Contact info block\n\n- id: block_contact_title\n  translation: 聯絡我們\n\n- id: block_contact_visit_title\n  translation: 造訪我們\n\n- id: block_contact_office_hours\n  translation: 辦公時間\n\n- id: block_contact_view_on_map\n  translation: 在地圖上查看\n\n- id: block_contact_connect_title\n  translation: 聯繫\n\n- id: block_contact_follow_us\n  translation: 追蹤我們\n\n- id: block_contact_prospective_title\n  translation: 潛在成員\n\n- id: block_contact_form_title\n  translation: 向我們發送訊息\n\n- id: block_contact_form_name\n  translation: 姓名\n\n- id: block_contact_form_email\n  translation: 郵箱\n\n- id: block_contact_form_subject\n  translation: 主旨\n\n- id: block_contact_form_message\n  translation: 訊息\n\n- id: block_contact_form_submit\n  translation: 發送訊息\n\n# Publication/Event details\n\n- id: abstract\n  translation: 摘要\n\n- id: publication\n  translation: 出版物\n\n- id: publication_type\n  translation: 類型\n\n- id: date\n  translation: 日期\n\n- id: last_updated\n  translation: 最近更新於\n\n- id: event\n  translation: 事件\n\n- id: location\n  translation: 位置\n\n- id: pub_paper_conference\n  translation: 會議文章\n\n- id: pub_article_journal\n  translation: 期刊文章\n\n- id: pub_article\n  translation: 影印預覽\n\n- id: pub_report\n  translation: 報告\n\n- id: pub_book\n  translation: 書籍\n\n- id: pub_chapter\n  translation: 章節\n\n- id: pub_thesis\n  translation: 論文\n\n- id: pub_patent\n  translation: 專利\n\n# Project details\n\n- id: open_project_site\n  translation: 前往專案網站\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: 博客\n\n- id: publications\n  translation: 出版物\n\n- id: events\n  translation: 活動\n\n- id: projects\n  translation: 專案\n\n- id: slides\n  translation: 投影片\n\n- id: authors\n  translation: 作者\n\n# Search\n\n- id: search\n  translation: 搜尋\n\n- id: search_placeholder\n  translation: 搜尋...\n\n- id: search_results\n  translation: 搜尋结果\n\n- id: search_no_results\n  translation: 找不到结果\n\n- id: search_common_queries\n  translation: 經常搜索\n\n# Error 404\n\n- id: page_not_found\n  translation: 找不到頁面\n\n- id: 404_recommendations\n  translation: 您可能在找？\n\n# Cookie consent\n\n- id: cookie_message\n  translation: 本網站使用cookies來確保您可以在網站中獲得最佳體驗。\n\n- id: cookie_dismiss\n  translation: 知道了!\n\n- id: cookie_learn\n  translation: 了解更多\n\n# Published with\n\n- id: published_with\n  translation: 由{hugoblox}支持發布——免費{repo_link}開源{/repo_link}網站，為創作者賦能。\n\n- id: poweredby_button\n  translation: '構建您的 →'\n\n# AI Features\n\n- id: ai_insight\n  translation: AI 洞察\n\n# Content Metadata\n\n- id: content_type\n  translation: 內容類型\n\n- id: difficulty\n  translation: 難度\n\n- id: prerequisites\n  translation: 先決條件\n\n# Card metadata\n\n- id: trending\n  translation: 熱門\n\n- id: article\n  translation: 文章\n\n- id: articles\n  translation: 文章\n\n- id: browse\n  translation: 瀏覽\n\n- id: all\n  translation: 全部\n\n- id: helpful\n  translation: 有幫助\n\n# Additional buttons\n\n- id: btn_site\n  translation: 網站\n\n- id: btn_canonical\n  translation: 正規連結\n\n- id: btn_crosspost\n  translation: 交叉發布\n\n- id: btn_discussion\n  translation: 討論\n\n- id: btn_event\n  translation: 活動\n\n- id: btn_calendar\n  translation: 行事曆\n\n- id: btn_registration\n  translation: 註冊\n\n- id: btn_demo\n  translation: 示範\n\n- id: btn_model\n  translation: 模型\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n# Callouts\n\n- id: callout_note\n  translation: 備註\n\n- id: callout_abstract\n  translation: 摘要\n\n- id: callout_summary\n  translation: 摘要\n\n- id: callout_info\n  translation: 資訊\n\n- id: callout_todo\n  translation: 待辦\n\n- id: callout_tip\n  translation: 提示\n\n- id: callout_question\n  translation: 問題\n\n- id: callout_quote\n  translation: 引用\n\n- id: callout_warning\n  translation: 警告\n\n- id: callout_caution\n  translation: 注意\n\n- id: callout_danger\n  translation: 危險\n\n- id: callout_bug\n  translation: 錯誤\n\n- id: callout_example\n  translation: 範例\n\n- id: callout_failure\n  translation: 失敗\n\n- id: callout_success\n  translation: 成功\n\n- id: callout_important\n  translation: 重要\n\n# Slides\n\n- id: back_to_slides\n  translation: 返回投影片\n\n- id: present_slides\n  translation: 播放\n\n- id: present_fullscreen\n  translation: 播放（全螢幕）\n\n- id: export_pdf_print\n  translation: 匯出 PDF（列印）\n\n- id: slides_print_hint\n  translation: 以列印模式開啟 - 瀏覽器列印 > 另存為 PDF\n\n- id: slides_search_placeholder\n  translation: 依標題搜尋投影片...\n\n- id: slides_no_decks\n  translation: 未找到投影片集\n\n- id: slides_no_matches\n  translation: 沒有符合篩選的投影片\n\n- id: clear_filters\n  translation: 清除篩選\n\n- id: topics\n  translation: 主題\n\n- id: details\n  translation: 詳細資訊\n\n- id: related_resources\n  translation: 相關資源\n\n- id: copy_link\n  translation: 複製連結\n\n- id: copy_citation\n  translation: 複製引用\n\n- id: how_to_cite\n  translation: 如何引用\n\n- id: citation\n  translation: 引用\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: 下載 cite.bib\n\n- id: lecture\n  translation: 講座\n\n- id: enter_fullscreen\n  translation: 進入全螢幕\n\n- id: exit_fullscreen\n  translation: 離開全螢幕\n\n- id: speaker_notes_hint\n  translation: 用於講者備註\n\n- id: slides_not_found\n  translation: 找不到投影片\n\n# Q&A\n\n- id: qa\n  translation: 問答\n\n- id: question\n  translation: 問題\n\n- id: answer\n  translation: 回答\n\n- id: accepted_answer\n  translation: 已接受的回答\n\n- id: other_answers\n  translation: 其他回答\n\n- id: questions\n  translation: 問題\n\n- id: questions_count\n  translation: 個問題\n\n- id: related_questions\n  translation: 相關問題\n\n- id: search_questions\n  translation: 搜尋問題...\n\n- id: no_questions_yet\n  translation: 尚無問題\n\n- id: faq\n  translation: 常見問題\n\n- id: faqs\n  translation: 常見問題\n\n- id: browse_by_category\n  translation: 依分類瀏覽\n\n# General extras\n\n- id: about_me\n  translation: 職業簡介\n\n- id: backlinks\n  translation: 反向連結\n\n- id: days\n  translation: 天\n\n- id: hours\n  translation: 小時\n\n- id: minutes\n  translation: 分鐘\n\n- id: seconds\n  translation: 秒\n\n- id: developer\n  translation: 開發者\n\n- id: docs\n  translation: 文件\n\n- id: experience\n  translation: 經驗\n\n- id: read_more\n  translation: 閱讀更多\n\n- id: featured\n  translation: 精選\n\n- id: block_contact_follow_me\n  translation: 在這裡找到我\n\n- id: portfolio_link_code\n  translation: 程式碼\n\n- id: portfolio_link_live\n  translation: 線上\n\n- id: portfolio_link_demo\n  translation: 示範\n\n- id: portfolio_link_default\n  translation: 連結\n\n- id: portfolio_view_all\n  translation: 查看所有專案\n\n- id: scroll_to_content\n  translation: 捲動至內容\n\n- id: feedback_widget_title\n  translation: 回饋\n\n- id: feedback_widget_question\n  translation: 此頁面有幫助嗎？\n\n- id: feedback_widget_answer_positive\n  translation: 😍 是\n\n- id: feedback_widget_answer_negative\n  translation: 😡 否\n"
  },
  {
    "path": "modules/blox/i18n/zh.yaml",
    "content": "# Navigation\n\n- id: toggle_navigation\n  translation: 切换导航\n\n- id: table_of_contents\n  translation: 目录\n\n- id: on_this_page\n  translation: 在本页\n\n- id: back_to_top\n  translation: 回到顶部\n\n- id: home\n  translation: Home\n\n- id: close\n  translation: Close\n\n- id: languages\n  translation: 语言\n\n# General\n\n- id: related\n  translation: 相关\n\n# Callouts\n- id: callout_note\n  translation: 注意\n\n- id: callout_tip\n  translation: 提示\n\n- id: callout_important\n  translation: 重要\n\n- id: callout_warning\n  translation: 警告\n\n- id: callout_caution\n  translation: 小心\n\n- id: minute_read\n  translation: 分钟阅读时长\n\n- id: previous\n  translation: 上一页\n\n- id: next\n  translation: 下一页\n\n- id: figure\n  translation: '图%d:'\n\n- id: edit_page\n  translation: 编辑本页\n\n# Themes\n\n- id: theme_selector\n  translation: Display preferences\n\n- id: theme_light\n  translation: 浅色\n\n- id: theme_dark\n  translation: 深色\n\n- id: theme_auto\n  translation: 自动\n\n# Buttons\n\n- id: btn_preprint\n  translation: 预印本\n\n- id: btn_pdf\n  translation: PDF\n\n- id: btn_cite\n  translation: 引用\n\n- id: btn_slides\n  translation: 演示文稿\n\n- id: btn_video\n  translation: 视频\n\n- id: btn_code\n  translation: 代码\n\n- id: btn_dataset\n  translation: 数据集\n\n- id: btn_project\n  translation: 项目\n\n- id: btn_poster\n  translation: 海报\n\n- id: btn_source\n  translation: 源文档\n\n- id: btn_copy\n  translation: 复制\n\n- id: btn_copied\n  translation: Copied\n\n- id: btn_download\n  translation: 下载\n\n# About widget\n\n- id: interests\n  translation: 兴趣爱好\n\n- id: education\n  translation: 教育经历\n\n- id: user_profile_latest\n  translation: 最新\n\n# Accomplishments widget\n\n- id: see_certificate\n  translation: 查看证书\n\n# Experience widget\n\n- id: experience\n  translation: 工作经历\n\n- id: present\n  translation: 现在\n\n# Pages widget\n\n- id: read_more\n  translation: 阅读文章\n\n- id: more_pages\n  translation: 查看全部\n\n- id: more_posts\n  translation: 查看全部文章\n\n- id: more_talks\n  translation: 查看全部演讲\n\n- id: more_publications\n  translation: 查看全部出版物\n\n# Contact widget\n\n- id: contact_name\n  translation: 姓名\n\n- id: contact_email\n  translation: 邮箱\n\n- id: contact_message\n  translation: 信息\n\n- id: contact_attachment\n  translation: Attach file\n\n- id: contact_send\n  translation: 发送\n\n- id: book_appointment\n  translation: 预约\n\n# Contact info block\n\n- id: block_contact_title\n  translation: 联系我们\n\n- id: block_contact_visit_title\n  translation: 访问我们\n\n- id: block_contact_office_hours\n  translation: 办公时间\n\n- id: block_contact_view_on_map\n  translation: 在地图上查看\n\n- id: block_contact_connect_title\n  translation: 联系\n\n- id: block_contact_follow_us\n  translation: 关注我们\n\n- id: block_contact_prospective_title\n  translation: 潜在成员\n\n- id: block_contact_form_title\n  translation: 向我们发送信息\n\n- id: block_contact_form_name\n  translation: 姓名\n\n- id: block_contact_form_email\n  translation: 邮箱\n\n- id: block_contact_form_subject\n  translation: 主题\n\n- id: block_contact_form_message\n  translation: 信息\n\n- id: block_contact_form_submit\n  translation: 发送信息\n\n# Publication/Event details\n\n- id: abstract\n  translation: 摘要\n\n- id: publication\n  translation: 出版物\n\n- id: publication_type\n  translation: 类型\n\n- id: date\n  translation: 日期\n\n- id: last_updated\n  translation: 最近更新于\n\n- id: event\n  translation: 事件\n\n- id: location\n  translation: 位置\n\n- id: pub_paper_conference\n  translation: 会议文章\n\n- id: pub_article_journal\n  translation: 期刊文章\n\n- id: pub_article\n  translation: 预印本\n\n- id: pub_report\n  translation: 报告\n\n- id: pub_book\n  translation: 书籍\n\n- id: pub_chapter\n  translation: 章节\n\n- id: pub_thesis\n  translation: 论文\n\n- id: pub_patent\n  translation: 专利\n\n# Project details\n\n- id: open_project_site\n  translation: 访问项目网站\n\n# Content types for default archive page titles and search results\n\n- id: blog\n  translation: 博客\n\n- id: publications\n  translation: 出版物\n\n- id: events\n  translation: 活动\n\n- id: projects\n  translation: 项目\n\n- id: slides\n  translation: Slides\n\n- id: authors\n  translation: Authors\n\n# Search\n\n- id: search\n  translation: 搜索\n\n- id: search_placeholder\n  translation: 搜索...\n\n- id: search_results\n  translation: 搜索结果\n\n- id: search_no_results\n  translation: 没有找到结果\n\n- id: search_common_queries\n  translation: 经常搜寻\n\n# Error 404\n\n- id: page_not_found\n  translation: 找不到页面\n\n- id: 404_recommendations\n  translation: 也许你在找？\n\n# Cookie consent\n\n- id: cookie_message\n  translation: 本网站使用cookies来确保您在本网站上获得最佳体验。\n\n- id: cookie_dismiss\n  translation: 知道了!\n\n- id: cookie_learn\n  translation: 了解更多\n\n# Published with\n\n- id: published_with\n  translation: 由{hugoblox}支持发布——免费{repo_link}开源{/repo_link}网站，为创作者赋能。\n\n- id: poweredby_button\n  translation: '构建您的 →'\n\n# Contact info block\n\n- id: block_contact_follow_me\n  translation: 在这里找到我\n\n# Dev Hero block\n\n- id: scroll_to_content\n  translation: 滚动到内容\n\n- id: developer\n  translation: 开发者\n\n# Portfolio block\n\n- id: portfolio_link_code\n  translation: 代码\n\n- id: portfolio_link_live\n  translation: 在线\n\n- id: portfolio_link_demo\n  translation: 演示\n\n- id: portfolio_link_default\n  translation: 链接\n\n- id: portfolio_view_all\n  translation: 查看所有项目\n\n# AI Features\n\n- id: ai_insight\n  translation: AI 洞察\n\n# Content Metadata\n\n- id: content_type\n  translation: 内容类型\n\n- id: difficulty\n  translation: 难度\n\n- id: prerequisites\n  translation: 先决条件\n\n# Card metadata\n\n- id: trending\n  translation: 热门\n\n- id: article\n  translation: 文章\n\n- id: articles\n  translation: 文章\n\n- id: browse\n  translation: 浏览\n\n- id: all\n  translation: 全部\n\n- id: helpful\n  translation: 有帮助\n\n# Additional buttons\n\n- id: btn_site\n  translation: 网站\n\n- id: btn_canonical\n  translation: 规范链接\n\n- id: btn_crosspost\n  translation: 交叉发布\n\n- id: btn_discussion\n  translation: 讨论\n\n- id: btn_event\n  translation: 活动\n\n- id: btn_calendar\n  translation: 日历\n\n- id: btn_registration\n  translation: 注册\n\n- id: btn_demo\n  translation: 演示\n\n- id: btn_model\n  translation: 模型\n\n- id: btn_doi\n  translation: DOI\n\n- id: btn_hal\n  translation: HAL\n\n- id: btn_dblp\n  translation: DBLP\n\n- id: btn_isbn\n  translation: ISBN\n\n- id: btn_osf\n  translation: OSF\n\n- id: btn_zenodo\n  translation: Zenodo\n\n- id: btn_kaggle\n  translation: Kaggle\n\n- id: btn_openalex\n  translation: OpenAlex\n\n- id: btn_semanticscholar\n  translation: Semantic Scholar\n\n- id: btn_pwc\n  translation: Papers With Code\n\n# Callouts\n\n- id: callout_abstract\n  translation: 摘要\n\n- id: callout_summary\n  translation: 总结\n\n- id: callout_info\n  translation: 信息\n\n- id: callout_todo\n  translation: 待办\n\n- id: callout_question\n  translation: 问题\n\n- id: callout_quote\n  translation: 引用\n\n- id: callout_warning\n  translation: 警告\n\n- id: callout_danger\n  translation: 危险\n\n- id: callout_bug\n  translation: 缺陷\n\n- id: callout_example\n  translation: 示例\n\n- id: callout_failure\n  translation: 失败\n\n- id: callout_success\n  translation: 成功\n\n# Slides\n\n- id: back_to_slides\n  translation: 返回幻灯\n\n- id: present_slides\n  translation: 演示\n\n- id: present_fullscreen\n  translation: 演示（全屏）\n\n- id: export_pdf_print\n  translation: 导出 PDF（打印）\n\n- id: slides_print_hint\n  translation: 在打印模式打开 - 浏览器打印 > 另存为 PDF\n\n- id: slides_search_placeholder\n  translation: 按标题搜索幻灯集...\n\n- id: slides_no_decks\n  translation: 未找到幻灯集\n\n- id: slides_no_matches\n  translation: 没有符合筛选的幻灯集\n\n- id: clear_filters\n  translation: 清除过滤\n\n- id: topics\n  translation: 主题\n\n- id: details\n  translation: 详情\n\n- id: related_resources\n  translation: 相关资源\n\n- id: copy_link\n  translation: 复制链接\n\n- id: copy_citation\n  translation: 复制引用\n\n\n- id: citation\n  translation: 引用\n\n- id: bibtex\n  translation: BibTeX\n\n- id: download_cite_bib\n  translation: 下载 cite.bib\n\n- id: lecture\n  translation: 讲座\n\n- id: enter_fullscreen\n  translation: 进入全屏\n\n- id: exit_fullscreen\n  translation: 退出全屏\n\n- id: speaker_notes_hint\n  translation: 用于演讲者备注\n\n- id: slides_not_found\n  translation: 未找到幻灯\n\n# Q&A\n\n- id: qa\n  translation: 问答\n\n- id: question\n  translation: 问题\n\n- id: answer\n  translation: 答案\n\n- id: accepted_answer\n  translation: 已采纳的回答\n\n- id: other_answers\n  translation: 其他回答\n\n- id: questions\n  translation: 问题\n\n- id: questions_count\n  translation: 个问题\n\n- id: related_questions\n  translation: 相关问题\n\n- id: search_questions\n  translation: 搜索问题...\n\n- id: no_questions_yet\n  translation: 尚无问题\n\n- id: faq\n  translation: 常见问题\n\n- id: faqs\n  translation: 常见问题\n\n- id: browse_by_category\n  translation: 按类别浏览\n\n# General extras\n\n- id: about_me\n  translation: 职业简介\n\n- id: backlinks\n  translation: 反向链接\n\n- id: days\n  translation: 天\n\n- id: hours\n  translation: 小时\n\n- id: minutes\n  translation: 分钟\n\n- id: seconds\n  translation: 秒\n\n- id: docs\n  translation: 文档\n\n- id: featured\n  translation: 精选\n\n- id: read_more\n  translation: 阅读更多\n\n# Feedback widget\n\n- id: feedback_widget_title\n  translation: 反馈\n\n- id: feedback_widget_question\n  translation: 此页面有帮助吗？\n\n- id: feedback_widget_answer_positive\n  translation: 😍 是\n\n- id: feedback_widget_answer_negative\n  translation: 😡 否\n\n- id: how_to_cite\n  translation: 如何引用\n"
  },
  {
    "path": "modules/blox/layouts/404.html",
    "content": "{{- define \"main\" -}}\n{{/* Exclude 404 page from search indexing */}}\n<div data-pagefind-ignore class=\"flex flex-col justify-center\">\n  <article class=\"container mx-auto prose prose-slate lg:prose-xl dark:prose-invert\">\n    <h1 class=\"lg:text-6xl\">{{ i18n \"page_not_found\" }}</h1>\n\n    {{/* Suggest recently published pages to the user. */}}\n\n    <p>{{ i18n \"404_recommendations\" }}</p>\n\n    {{ $query := where (where (where (where site.Pages.ByDate.Reverse \"Title\" \"!=\" \"\") \"Kind\" \"in\" (slice \"page\" \"section\")) \"Params.private\" \"!=\" true) \"Permalink\" \"!=\" \"\" }}\n    {{ $count := len $query }}\n    {{ if gt $count 0 }}\n    <h2>{{ i18n \"user_profile_latest\" }}</h2>\n    <ul>\n      {{ range first 10 $query }}\n      <li><a href=\"{{ .RelPermalink }}\">{{ .Title }}</a></li>\n      {{ end }}\n    </ul>\n    {{ end }}\n\n  </article>\n</div>\n\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_markup/render-blockquote.html",
    "content": "{{/*\n  Hugo Blox Kit Blockquote Render Hook\n  \n  Renders standard blockquotes and GitHub/Obsidian-style alerts (callouts).\n  \n  Supports alert types: note, tip, important, warning, caution\n  Syntax examples:\n  - > [!NOTE]\n    > This is a note callout.\n  \n  - > [!WARNING]+ Custom Title\n    > This is a warning with custom title.\n*/}}\n\n{{ if eq .Type \"alert\" }}\n  {{/* Use custom title if provided, otherwise let render_callout handle default */}}\n  {{ $title := .AlertTitle }}\n  \n  {{/* Use shared callout renderer */}}\n  {{ partial \"functions/render_callout\" (dict \n    \"type\" .AlertType\n    \"content\" .Text\n    \"title\" $title\n    \"source\" \"renderhook\"\n  ) }}\n{{ else }}\n  {{/* Render regular blockquotes */}}\n  <blockquote class=\"border-l-4 border-neutral-300 dark:border-neutral-600 pl-4 italic text-neutral-600 dark:text-neutral-400 my-6\">\n    {{ .Text }}\n  </blockquote>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_markup/render-codeblock-markmap.html",
    "content": "<div class=\"markmap\" style=\"height: {{.Attributes.height | default \"500px\"}};\">\n{{/* No indentation before PRE and .Inner otherwise mindmap first item will be indented */}}\n<pre>{{- .Inner | safeHTML -}}</pre>\n</div>\n{{ .Page.Store.Set \"has_markmap\" true }}\n"
  },
  {
    "path": "modules/blox/layouts/_markup/render-codeblock-mermaid.html",
    "content": "<div class=\"mermaid\">\n  {{- .Inner | safeHTML }}\n</div>\n{{ .Page.Store.Set \"has_mermaid\" true }}"
  },
  {
    "path": "modules/blox/layouts/_markup/render-image.html",
    "content": "{{/* Markdown Image Renderer for Hugo Blox Kit. */}}\n{{/* Load image from page dir falling back to media library at `assets/media/` and then to remote URI. */}}\n\n{{ $destination := .Destination }}\n{{ $is_remote := strings.HasPrefix $destination \"http\" }}\n{{ $caption := .Title | default \"\" }}\n{{ $zoom := \"true\" }}\n{{ $id := anchorize ($caption | plainify) }}\n{{ $alt := .Text | default ($caption | plainify) }}\n{{ $img_class := \"\" }}\n{{ $fig_class := \"\" }}\n{{ $max_width := \"\" }}\n{{ $width := \"\" }}\n{{ $height := \"\" }}\n{{ $numbered := false }}\n\n{{/* Workaround Hugo v0.81 error on Windows when `resources.Get (path.Join \"media\" <URL>)` */}}\n{{- $img := \"\" -}}\n{{- if not $is_remote -}}\n  {{- $img = (.Page.Resources.ByType \"image\").GetMatch $destination -}}\n  {{- if not $img -}}\n    {{- $img = resources.Get (path.Join \"media\" $destination) -}}\n  {{- end -}}\n{{- end -}}\n\n<figure {{ with $fig_class }}class=\"{{.}}\"{{end}} {{ with $id }}id=\"figure-{{ . }}\"{{ end }}>\n  <div class=\"flex justify-center\t\">\n    <div class=\"w-full\" {{ with $max_width }}style=\"max-width: {{.}}\"{{end}}>\n      {{- if $img -}}\n        {{- $isSVG := eq $img.MediaType.SubType \"svg\" -}}\n        {{- $isGIF := eq $img.MediaType.SubType \"gif\" -}}\n        {{- if $isSVG | or $isGIF -}}\n          <img alt=\"{{ $alt }}\"\n           src=\"{{ $img.RelPermalink }}\"\n           loading=\"lazy\"\n           {{- if $zoom }} data-zoomable{{end}}\n           {{- with $width }} width=\"{{.}}\"{{end}}\n           {{- with $height }} height=\"{{.}}\"{{end}}\n           {{- with $img_class }} class=\"{{.}}\"{{end}} />\n        {{- else }}\n          {{/* Process responsive images - use 760px as default display size */}}\n          {{- $img_md := $img.Fit \"760x760 webp\" -}}\n          {{- $responsive := partial \"functions/process_responsive_image.html\" (dict \"image\" $img_md \"mode\" \"responsive\") -}}\n          {{- $width := $width | default $img_md.Width -}}\n          {{- $height := $height | default $img_md.Height -}}\n          <img alt=\"{{ $alt }}\" \n               srcset=\"{{ $responsive.srcset }}\"\n               sizes=\"(max-width: 480px) 100vw, (max-width: 768px) 90vw, (max-width: 1024px) 80vw, 760px\"\n               src=\"{{ $responsive.fallback.RelPermalink }}\"\n               width=\"{{ $width }}\"\n               height=\"{{ $height }}\"\n               loading=\"lazy\"\n               {{- if $zoom }} data-zoomable{{end}}\n               {{- with $img_class }} class=\"{{.}}\"{{end}} />\n        {{- end }}\n      {{- else -}}\n        <img src=\"{{ $destination | safeURL }}\" alt=\"{{ $alt }}\" loading=\"lazy\" {{ if $zoom }}data-zoomable{{end}}\n             {{- with $width }} width=\"{{.}}\"{{end}} {{- with $height }} height=\"{{.}}\"{{end}}\n             {{- with $img_class }} class=\"{{.}}\"{{end}} />\n      {{- end -}}\n    </div>\n  </div>\n\n  {{- if $caption -}}\n    {{/* Localize the figure numbering (if enabled). */}}\n    {{- $figure := split (i18n \"figure\" | default \"Figure %d:\") \"%d\" -}}\n    <figcaption{{ if eq $numbered \"true\" }} data-pre=\"{{- trim (index $figure 0) \" \" -}}&nbsp;\" data-post=\"{{ index $figure 1 }}&nbsp;\" class=\"numbered\"{{ end }}>\n      {{ $caption | markdownify | emojify }}\n    </figcaption>\n  {{- end -}}\n</figure>\n"
  },
  {
    "path": "modules/blox/layouts/_markup/render-link.backlinks.json",
    "content": "{{- $url_struct := urls.Parse .Destination -}}\n{{/* Ignore anchor links to other sections of the same page. */}}\n{{- if not (or $url_struct.IsAbs (strings.HasPrefix $url_struct.String \"#\")) }}\n  {{- $page_path := strings.TrimPrefix \"./\" $url_struct.Path -}}\n  {{- with .PageInner.GetPage $page_path }}\n    {{- $page := dict\n      \"date\" ($.Page.Date.UTC.Format \"2006-01-02T15:04:05-07:00\")\n      \"linkTitle\" $.Page.LinkTitle\n      \"relPermalink\" $.Page.RelPermalink\n    }}\n    {{- $backlink := dict \"page\" $page \"links_to\" .RelPermalink }}\n    {{- site.Home.Store.Add \"backlinks\" (slice $backlink) }}\n  {{- end }}\n{{- end }}\n"
  },
  {
    "path": "modules/blox/layouts/_markup/render-link.html",
    "content": "{{- /* A Hugo Markdown render hook to parse links, opening external links in new tabs. */ -}}\n<a href=\"{{ .Destination | safeURL }}\"{{ with .Title}} title=\"{{ . }}\"{{ end }}{{ if strings.HasPrefix .Destination \"http\" }} target=\"_blank\" rel=\"noopener\"{{ end }}>{{ .Text | safeHTML }}</a>"
  },
  {
    "path": "modules/blox/layouts/_partials/blox/contact-info/config.html",
    "content": "{{/* Hugo Blox: Contact Info - config */}}\n{{/* Purpose: pre-declare dependencies before <head> libraries load */}}\n\n{{ $page := .wcPage }}\n\n{{/* Contact block uses Alpine for copy-to-clipboard + small interactions */}}\n{{ $page.Store.Set \"has_alpine\" true }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/blox/dev-hero/config.html",
    "content": "{{/* Hugo Blox: Dev Hero - config */}}\n{{/* Purpose: pre-declare dependencies before <head> libraries load */}}\n\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n\n{{ $typewriter := $block.content.typewriter | default dict }}\n{{ $has_animations := or ($block.design.animations | default false) ($typewriter.enable | default false) }}\n\n{{ if $has_animations }}\n  {{ $page.Store.Set \"has_animations\" true }}\n  {{ $page.Store.Set \"has_alpine\" true }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/blox/portfolio/config.html",
    "content": "{{/* Hugo Blox: Portfolio - config */}}\n{{/* Purpose: pre-declare dependencies before <head> libraries load */}}\n\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n\n{{/* Portfolio always needs Alpine for filtering */}}\n{{ $page.Store.Set \"has_alpine\" true }}\n\n{{/* Enable scroll/transition helpers if animations not explicitly disabled */}}\n{{ if ne $block.design.animations false }}\n  {{ $page.Store.Set \"has_animations\" true }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/blox/preact-wrapper.html",
    "content": "{{/* Hugo Blox: Generic Preact Block Wrapper */}}\n{{/* Single wrapper for all Preact-based blocks */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* Initialize variables */}}\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n{{ $block_type := .wcBlockType }}\n{{ $block_id := .wcIdentifier | default (printf \"%s-%d\" $block_type (now.Unix)) }}\n\n{{/* Prepare props for the Preact component */}}\n{{ $props := dict \n  \"content\" $block.content\n  \"design\" $block.design\n  \"id\" $block_id\n  \"type\" $block_type\n}}\n\n{{/* Resolve icon for primary_action (hero, cta blocks) */}}\n{{ with $block.content.primary_action.icon }}\n  {{ $icon_data := partial \"functions/get_icon_data\" (dict \"name\" .) }}\n  {{ if $icon_data }}\n    {{ $props = merge $props (dict \"icon_svg\" $icon_data) }}\n  {{ end }}\n{{ end }}\n\n{{/* Resolve icon for single button (cta-card) */}}\n{{ with $block.content.button.icon }}\n  {{ $icon_data := partial \"functions/get_icon_data\" (dict \"name\" .) }}\n  {{ if $icon_data }}\n    {{ $props = merge $props (dict \"button_icon_svg\" $icon_data) }}\n  {{ end }}\n{{ end }}\n\n{{/* Resolve per-item icons (stats, features, etc.) into an icon_svgs map */}}\n{{ $icon_svgs := dict }}\n{{ with $block.content.items }}\n  {{ range . }}\n    {{ with .icon }}\n      {{ if not (index $icon_svgs .) }}\n        {{ $icon_data := partial \"functions/get_icon_data\" (dict \"name\" .) }}\n        {{ if $icon_data }}\n          {{ $icon_svgs = merge $icon_svgs (dict . $icon_data) }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ if gt (len $icon_svgs) 0 }}\n  {{ $props = merge $props (dict \"icon_svgs\" $icon_svgs) }}\n{{ end }}\n\n{{/* Resolve per-item images via Hugo's image pipeline */}}\n{{/* Thumbnail mode (testimonials): Fill 96x96 webp */}}\n{{/* Responsive mode (cta-image-paragraph): srcset with breakpoints */}}\n{{ $item_images := dict }}\n{{ with $block.content.items }}\n  {{ range $idx, $item := . }}\n    {{ with .image }}\n      {{ $image_path := strings.TrimSpace (printf \"%v\" .) }}\n      {{ $is_remote := or (strings.HasPrefix $image_path \"http://\") (strings.HasPrefix $image_path \"https://\") }}\n\n      {{/* Resolve the image resource */}}\n      {{ $image_resource := false }}\n      {{ $fallback_url := \"\" }}\n\n      {{ if $is_remote }}\n        {{ $remote := try (resources.GetRemote $image_path) }}\n        {{ if and $remote (not $remote.Err) }}\n          {{ $image_resource = $remote.Value }}\n        {{ else }}\n          {{ $fallback_url = $image_path }}\n        {{ end }}\n      {{ else }}\n        {{ $normalized := $image_path }}\n        {{ $normalized = strings.TrimPrefix \"/\" $normalized }}\n        {{ $normalized = strings.TrimPrefix \"./\" $normalized }}\n        {{ $normalized = strings.TrimPrefix \"assets/\" $normalized }}\n        {{ $normalized = strings.TrimPrefix \"media/\" $normalized }}\n        {{ $normalized = path.Clean $normalized }}\n\n        {{ if and $normalized (ne $normalized \".\") }}\n          {{ with $page }}\n            {{ $image_resource = (.Resources.ByType \"image\").GetMatch $normalized }}\n          {{ end }}\n          {{ if not $image_resource }}\n            {{ $image_resource = resources.Get (path.Join \"media\" $normalized) }}\n          {{ end }}\n          {{ if not $image_resource }}\n            {{ $fallback_url = printf \"/media/%s\" $normalized }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n\n      {{ $img_data := dict }}\n      {{ if $image_resource }}\n        {{ $isSVG := eq $image_resource.MediaType.SubType \"svg\" }}\n        {{ $isGIF := eq $image_resource.MediaType.SubType \"gif\" }}\n        {{ if or $isSVG $isGIF }}\n          {{/* SVG/GIF: no processing, just pass through */}}\n          {{ $img_data = dict \"src\" $image_resource.RelPermalink }}\n        {{ else if eq $block_type \"cta-image-paragraph\" }}\n          {{/* Responsive mode: generate srcset via process_responsive_image */}}\n          {{ $responsive := partial \"functions/process_responsive_image.html\" (dict\n              \"image\" $image_resource\n              \"mode\" \"fit\"\n              \"sizes\" (slice 400 600 800 1200)\n          ) }}\n          {{ $img_data = dict \"srcset\" $responsive.srcset \"src\" $responsive.fallback.RelPermalink \"width\" $responsive.fallback.Width \"height\" $responsive.fallback.Height }}\n        {{ else }}\n          {{/* Thumbnail mode (testimonials, etc.): Fill 96x96 */}}\n          {{ $processed := $image_resource.Process \"Fill 96x96 Center webp\" }}\n          {{ $img_data = dict \"src\" $processed.RelPermalink }}\n        {{ end }}\n      {{ else if $fallback_url }}\n        {{ $img_data = dict \"src\" $fallback_url }}\n      {{ end }}\n\n      {{ if $img_data }}\n        {{ $item_images = merge $item_images (dict (printf \"%d\" $idx) $img_data) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ if gt (len $item_images) 0 }}\n  {{ $props = merge $props (dict \"item_images\" $item_images) }}\n{{ end }}\n\n{{/* Resolve per-item feature_icon (cta-image-paragraph) */}}\n{{ with $block.content.items }}\n  {{ range . }}\n    {{ with .feature_icon }}\n      {{ if not (index $icon_svgs .) }}\n        {{ $icon_data := partial \"functions/get_icon_data\" (dict \"name\" .) }}\n        {{ if $icon_data }}\n          {{ $icon_svgs = merge $icon_svgs (dict . $icon_data) }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ if gt (len $icon_svgs) 0 }}\n  {{ $props = merge $props (dict \"icon_svgs\" $icon_svgs) }}\n{{ end }}\n\n{{/* Convert props to JSON for client-side rendering */}}\n{{ $propsJSON := $props | jsonify }}\n\n{{/* Render a container that Preact will populate */}}\n<div \n  class=\"{{ $block_type }}-block-container preact-block\"\n  data-block-type=\"{{ $block_type }}\"\n  data-props='{{ $propsJSON | safeHTML }}'\n  data-preact-render=\"true\"\n>\n  {{/* Empty - Preact renders everything */}}\n  {{/* Could add a loading skeleton here if desired */}}\n</div>\n\n{{/* Preact script loading is handled by libraries.html */}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/blox/tech-stack/config.html",
    "content": "{{/* Hugo Blox: Tech Stack - config */}}\n{{/* Purpose: pre-declare dependencies before <head> libraries load */}}\n\n{{ $page := .wcPage }}\n{{ $block := .wcBlock }}\n\n{{ if ne $block.design.animations false }}\n  {{ $page.Store.Set \"has_animations\" true }}\n  {{ $page.Store.Set \"has_alpine\" true }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/comments/disqus.html",
    "content": "{{ if site.Params.hugoblox.comments.disqus.shortname }}\n<div id=\"disqus_thread\"></div>\n<script>\n  var disqus_config = function () {\n    {{with .Params.disqus_identifier }}this.page.identifier = '{{ . }}';{{end}}\n    {{with .Params.disqus_title }}this.page.title = '{{ . }}';{{end}}\n    {{with .Params.disqus_url }}this.page.url = '{{ . | html  }}';{{end}}\n  };\n  (function() {\n    if ([\"localhost\", \"127.0.0.1\"].indexOf(window.location.hostname) != -1) {\n      document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';\n      return;\n    }\n    var d = document, s = d.createElement('script'); s.async = true;\n    s.src = 'https://' + {{site.Params.hugoblox.comments.disqus.shortname}} + '.disqus.com/embed.js';\n    s.setAttribute('data-timestamp', +new Date());\n    (d.head || d.body).appendChild(s);\n  })();\n</script>\n<noscript>Please enable JavaScript to view the <a href=\"https://disqus.com/?ref_noscript\">comments powered by Disqus.</a></noscript>\n<a href=\"https://disqus.com\" class=\"dsq-brlink\">comments powered by <span class=\"logo-disqus\">Disqus</span></a>\n{{end}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/comments/giscus.html",
    "content": "{{ if site.Params.hugoblox.comments.giscus }}\n  {{ $config := site.Params.hugoblox.comments.giscus }}\n  <script src=\"https://giscus.app/client.js\"\n          data-repo=\"{{$config.repo}}\"\n          data-repo-id=\"{{$config.repo_id}}\"\n          data-category=\"{{$config.category}}\"\n          data-category-id=\"{{$config.category_id}}\"\n          data-mapping=\"{{ $config.mapping | default \"pathname\" }}\"\n          data-strict=\"0\"\n          data-reactions-enabled=\"1\"\n          data-emit-metadata=\"0\"\n          data-input-position=\"top\"\n          data-theme=\"{{ $config.theme | default \"preferred_color_scheme\" }}\"\n          data-lang=\"{{ $config.language_code | default \"en\" }}\"\n          data-loading=\"lazy\"\n          crossorigin=\"anonymous\"\n          async>\n  </script>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/comments.html",
    "content": "{{ $provider := trim (site.Params.hugoblox.comments.provider | lower) \" \" }}\n\n{{ if $provider }}\n  {{ $provider_tpl := printf \"comments/%s.html\" $provider }}\n  {{ $provider_exists := templates.Exists (printf \"_partials/%s\" $provider_tpl) }}\n  {{ if not $provider_exists }}\n    {{ errorf \"The '%s' comment provider was not found.\" $provider }}\n  {{ end }}\n\n  {{ $commentable_page := .Params.commentable }}\n\n  {{ if $commentable_page }}\n  <section id=\"comments\">\n    {{ partial $provider_tpl . }}\n  </section>\n  {{ end }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/backlinks.html",
    "content": "{{ $show_backlinks := .Params.backlinks | default true }}\n{{ if $show_backlinks }}\n  {{ $defer_globals := (dict \"page\" . )}}\n  {{ with (templates.Defer (dict \"data\" $defer_globals )) }}\n    {{ $backlinks := (site.Home.Store.Get \"backlinks\" | uniq) | default dict }}\n    {{ with (where $backlinks \"links_to\" .page.RelPermalink) }}\n    <div class=\"backlinks\">\n      <div class=\"mb-1 font-semibold tracking-tight\">\n        {{ (T \"backlinks\") | default \"Backlinks\" }}\n      </div>\n      <ul>\n        {{ range (sort . \"page.date\" \"desc\") }}\n        {{ $page := .page }}\n        <li>\n          <a href=\"{{ $page.relPermalink }}\" class=\"backlink\">{{ $page.linkTitle }}</a>\n        </li>\n        {{ end }}\n      </ul>\n    </div>\n    {{ end }}\n  {{ end }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/breadcrumb.html",
    "content": "<div class=\"mt-1.5 flex items-center gap-1 overflow-hidden text-sm text-gray-500 dark:text-gray-400\">\n  {{- range .Ancestors.Reverse }}\n    {{- if not .IsHome }}\n      <div class=\"whitespace-nowrap transition-colors min-w-[24px] overflow-hidden text-ellipsis hover:text-gray-900 dark:hover:text-gray-100\">\n        <a href=\"{{ .Permalink }}\">{{ .LinkTitle }}</a>\n      </div>\n      {{- partial \"functions/get_icon.html\" (dict \"name\" \"chevron-right\" \"attributes\" \"class=\\\"w-3.5 shrink-0\\\"\") -}}\n    {{ end -}}\n  {{ end -}}\n  <div class=\"whitespace-nowrap font-medium text-gray-700 dark:text-gray-100\">\n    {{- .LinkTitle -}}\n  </div>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/cover.html",
    "content": "{{/* Article Cover Component - Notion-inspired page cover with icon overlay */}}\n{{/* Requires: page context */}}\n\n{{ $cover := partial \"functions/get_cover_image.html\" . }}\n{{ if $cover }}\n\n{{/* Get cover configuration with defaults */}}\n{{ $cover_config := .Params.cover | default (dict) }}\n{{ if not (reflect.IsMap $cover_config) }}\n  {{/* Simple string format: cover: \"image.jpg\" */}}\n  {{ $cover_config = dict \"image\" $cover_config }}\n{{ end }}\n\n{{/* Default alt text to page title if not specified */}}\n{{ $alt_text := $cover_config.alt_text | default (.Title | plainify) }}\n\n{{/* Height configuration */}}\n{{ $height_map := dict \n  \"small\" \"200px\" \n  \"medium\" \"320px\" \n  \"large\" \"480px\" \n  \"full\" \"60vh\" \n}}\n{{ $height := index $height_map ($cover_config.height | default \"medium\") | default \"320px\" }}\n\n{{/* Style configuration */}}\n{{ $style := $cover_config.style | default \"gradient\" }}\n\n{{/* Position configuration */}}\n{{ $position := $cover_config.position | default (dict) }}\n{{ $x := $position.x | default 50 }}\n{{ $y := $position.y | default 50 }}\n\n{{/* Overlay configuration */}}\n{{ $overlay := $cover_config.overlay | default (dict) }}\n{{ $overlay_enabled := $overlay.enabled | default true }}\n{{ $overlay_type := $overlay.type | default \"gradient\" }}\n{{ $overlay_opacity := $overlay.opacity | default 0.3 }}\n{{ $overlay_color := $overlay.color | default \"#000000\" }}\n{{ $overlay_gradient := $overlay.gradient | default \"bottom\" }}\n\n{{/* Fade configuration */}}\n{{ $fade := $cover_config.fade | default (dict) }}\n{{ $fade_enabled := $fade.enabled | default true }}\n{{ $fade_height := $fade.height | default \"60px\" }}\n{{ $fade_blur := $fade.blur | default false }}\n\n{{/* Icon configuration */}}\n{{ $icon_config := $cover_config.icon | default (dict) }}\n{{ $has_icon := or $icon_config.name $icon_config.emoji }}\n{{ $icon_position := $icon_config.position | default \"overlap\" }}\n{{ $icon_size := $icon_config.size | default \"large\" }}\n{{ $icon_style := $icon_config.style | default \"glass\" }}\n{{ $icon_border := $icon_config.border | default true }}\n\n{{/* Responsive hide on mobile */}}\n{{ $hide_mobile := false }}\n{{ if $cover_config.responsive }}\n  {{ $hide_mobile = $cover_config.responsive.hide_on_mobile | default false }}\n{{ end }}\n\n{{/* Process cover image */}}\n{{ $cover_width := 2560 }}\n{{ $cover_height := 520 }}\n{{ if eq ($cover_config.height | default \"medium\") \"small\" }}\n  {{ $cover_height = 320 }}\n{{ else if eq ($cover_config.height | default \"medium\") \"large\" }}\n  {{ $cover_height = 768 }}\n{{ else if eq ($cover_config.height | default \"medium\") \"full\" }}\n  {{ $cover_height = 1080 }}\n{{ end }}\n\n{{/* Generate responsive images */}}\n{{ $processed_cover := $cover }}\n{{ $srcset := \"\" }}\n{{ if ne $cover.MediaType.SubType \"gif\" }}\n  {{ $fill_spec := printf \"%dx%d Center q85 webp\" $cover_width $cover_height }}\n  {{ $processed_cover = $cover.Fill $fill_spec }}\n  \n  {{ $variants := slice }}\n  {{ $widths := slice 640 768 1024 1366 1920 2560 }}\n  {{ range $widths }}\n    {{ $w := . }}\n    {{ $h := div (mul $w $cover_height) $cover_width }}\n    {{ $variant_spec := printf \"%dx%d Center q85 webp\" $w $h }}\n    {{ $variant := $cover.Fill $variant_spec }}\n    {{ $variants = $variants | append (printf \"%s %dw\" $variant.RelPermalink $w) }}\n  {{ end }}\n  {{ $srcset = delimit $variants \", \" }}\n{{ end }}\n\n{{/* Build CSS classes based on style */}}\n{{ $cover_classes := \"article-cover relative w-full\" }}\n{{ if $hide_mobile }}\n  {{ $cover_classes = printf \"%s hidden md:block\" $cover_classes }}\n{{ end }}\n\n{{/* Container styles */}}\n{{ $container_style := printf \"height: %s;\" $height }}\n\n{{/* Calculate mask style for fade */}}\n{{ $mask_style := \"\" }}\n{{ if and $fade_enabled (ne $style \"minimal\") }}\n  {{/* Mask fades from black (visible) to transparent (invisible) at the bottom */}}\n  {{ $mask_style = printf \"-webkit-mask-image: linear-gradient(to bottom, black calc(100%% - %s), transparent 100%%); mask-image: linear-gradient(to bottom, black calc(100%% - %s), transparent 100%%);\" $fade_height $fade_height }}\n{{ end }}\n\n<div class=\"{{ $cover_classes }}\" style=\"{{ $container_style | safeCSS }}\" data-cover-style=\"{{ $style }}\">\n  <!-- Image Container (Clipped) -->\n  <div class=\"absolute inset-0 overflow-hidden\" style=\"{{ $mask_style | safeCSS }}\">\n    {{/* Cover Image */}}\n    <div class=\"absolute inset-0\">\n      {{ if ne $cover.MediaType.SubType \"gif\" }}\n        <img \n          srcset=\"{{ $srcset }}\"\n          sizes=\"100vw\"\n          src=\"{{ $processed_cover.RelPermalink }}\" \n          alt=\"{{ $alt_text }}\" \n          class=\"w-full h-full object-cover object-center\"\n          style=\"object-position: {{ $x }}% {{ $y }}%;\"\n          fetchpriority=\"high\"\n          loading=\"eager\">\n      {{ else }}\n        <img \n          src=\"{{ $cover.RelPermalink }}\" \n          alt=\"{{ $alt_text }}\" \n          class=\"w-full h-full object-cover object-center\"\n          style=\"object-position: {{ $x }}% {{ $y }}%;\"\n          fetchpriority=\"high\"\n          loading=\"eager\">\n      {{ end }}\n    </div>\n\n    {{/* Overlay Effects */}}\n    {{ if and $overlay_enabled (ne $style \"minimal\") }}\n      {{ if eq $style \"gradient\" }}\n        <div class=\"absolute inset-0 bg-gradient-to-b from-transparent via-transparent to-black/{{ $overlay_opacity | mul 100 }}\"></div>\n      {{ else if eq $style \"glass\" }}\n        <div class=\"absolute inset-0 backdrop-blur-sm backdrop-saturate-150\" style=\"background: rgba(255, 255, 255, 0.1);\"></div>\n      {{ else if eq $style \"blur\" }}\n        <div class=\"absolute inset-x-0 bottom-0 h-1/3 backdrop-blur-md\"></div>\n      {{ else if eq $overlay_type \"gradient\" }}\n        {{ if eq $overlay_gradient \"bottom\" }}\n          <div class=\"absolute inset-0 bg-gradient-to-b from-transparent to-black/{{ $overlay_opacity | mul 100 }}\"></div>\n        {{ else if eq $overlay_gradient \"top\" }}\n          <div class=\"absolute inset-0 bg-gradient-to-t from-transparent to-black/{{ $overlay_opacity | mul 100 }}\"></div>\n        {{ else if eq $overlay_gradient \"both\" }}\n          <div class=\"absolute inset-0 bg-gradient-to-b from-black/{{ $overlay_opacity | mul 50 }} via-transparent to-black/{{ $overlay_opacity | mul 100 }}\"></div>\n        {{ else if eq $overlay_gradient \"radial\" }}\n          <div class=\"absolute inset-0\" style=\"background: radial-gradient(circle, transparent 0%, rgba(0,0,0,{{ $overlay_opacity }}) 100%);\"></div>\n        {{ end }}\n      {{ else if eq $overlay_type \"solid\" }}\n        <div class=\"absolute inset-0\" style=\"background-color: {{ $overlay_color }}; opacity: {{ $overlay_opacity }};\"></div>\n      {{ end }}\n    {{ end }}\n\n    {{/* Blur Effect at Bottom (Optional) */}}\n    {{ if and $fade_enabled $fade_blur (ne $style \"minimal\") }}\n      {{/* Taller blur zone with mask to create smooth blur transition before fade out */}}\n      {{/* Semi-transparent background needed for backdrop-filter to render */}}\n      <div class=\"absolute inset-x-0 bottom-0 pointer-events-none\" \n           style=\"height: calc({{ $fade_height }} * 2.5); \n                  background: rgba(255, 255, 255, 0.01);\n                  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);\n                  -webkit-mask-image: linear-gradient(to bottom, transparent, black); mask-image: linear-gradient(to bottom, transparent, black);\"></div>\n    {{ end }}\n    \n    {{/* Caption */}}\n    {{ with $cover_config.caption }}\n      <div class=\"absolute bottom-4 left-4 right-4 text-sm text-white/90 bg-black/50 backdrop-blur-sm px-3 py-2 rounded-lg z-20\">\n        {{ . | markdownify }}\n      </div>\n    {{ end }}\n  </div>\n\n  {{/* Icon Overlay - Only if position is \"overlap\" - NOW UNCLIPPED */}}\n  {{ if and $has_icon (eq $icon_position \"overlap\") }}\n    {{ $icon_size_map := dict \"small\" \"w-8 h-8\" \"medium\" \"w-12 h-12\" \"large\" \"w-16 h-16\" }}\n    {{ $icon_size_class := index $icon_size_map $icon_size | default \"w-16 h-16\" }}\n    {{ $icon_padding := cond (eq $icon_size \"small\") \"p-1.5\" (cond (eq $icon_size \"medium\") \"p-2\" \"p-3\") }}\n    \n    <div class=\"absolute left-6 md:left-12 {{ $icon_size_class }}\" style=\"bottom: -32px; z-index: 30;\">\n      <div class=\"article-cover-icon {{ $icon_padding }} rounded-xl shadow-lg backdrop-blur-md\n                  {{ if eq $icon_style \"glass\" }}bg-white/90 dark:bg-gray-800/80 border border-white/30 dark:border-gray-700/30\n                  {{ else if eq $icon_style \"rounded\" }}bg-white dark:bg-gray-800 rounded-full\n                  {{ else }}bg-white dark:bg-gray-800{{ end }}\n                  {{ if $icon_border }}border border-gray-200 dark:border-gray-700{{ end }}\">\n        {{ if $icon_config.emoji }}\n          <span class=\"text-2xl md:text-3xl lg:text-4xl leading-none flex items-center justify-center\">{{ $icon_config.emoji }}</span>\n        {{ else if $icon_config.name }}\n          {{ partial \"functions/get_icon.html\" (dict \"name\" $icon_config.name \"attributes\" (printf \"class=\\\"%s text-gray-700 dark:text-gray-200\\\"\" $icon_size_class)) }}\n        {{ end }}\n      </div>\n    </div>\n  {{ end }}\n\n</div>\n\n{{/* Icon Below Cover - If position is \"below\" */}}\n{{ if and $has_icon (eq $icon_position \"below\") }}\n  {{ $icon_size_map := dict \"small\" \"w-8 h-8\" \"medium\" \"w-12 h-12\" \"large\" \"w-16 h-16\" }}\n  {{ $icon_size_class := index $icon_size_map $icon_size | default \"w-16 h-16\" }}\n  {{ $icon_padding := cond (eq $icon_size \"small\") \"p-1.5\" (cond (eq $icon_size \"medium\") \"p-2\" \"p-3\") }}\n  \n  <div class=\"flex justify-center -mt-8 mb-4 relative z-10\">\n    <div class=\"article-cover-icon {{ $icon_size_class }} {{ $icon_padding }} rounded-xl shadow-lg backdrop-blur-md\n                {{ if eq $icon_style \"glass\" }}bg-white/90 dark:bg-gray-800/80 border border-white/30 dark:border-gray-700/30\n                {{ else if eq $icon_style \"rounded\" }}bg-white dark:bg-gray-800 rounded-full\n                {{ else }}bg-white dark:bg-gray-800{{ end }}\n                {{ if $icon_border }}border border-gray-200 dark:border-gray-700{{ end }}\">\n      {{ if $icon_config.emoji }}\n        <span class=\"text-2xl md:text-3xl lg:text-4xl leading-none flex items-center justify-center\">{{ $icon_config.emoji }}</span>\n      {{ else if $icon_config.name }}\n        {{ partial \"functions/get_icon.html\" (dict \"name\" $icon_config.name \"attributes\" (printf \"class=\\\"%s text-gray-700 dark:text-gray-200\\\"\" $icon_size_class)) }}\n      {{ end }}\n    </div>\n  </div>\n{{ end }}\n\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/feedback.html",
    "content": "{{/* TODO: port JS & response text from Bootstrap module. Re-integrate with GA plus Fathom/Plausible */}}\n{{/* $ga := site.Params.marketing.analytics.google_analytics | default \"\" */}}\n{{ $show_feedback := .Params.feedback | default true }}\n\n{{ if hugo.IsProduction | and $show_feedback }}{{/*  | and $ga */}}\n<div class=\"\n          mt-3\n          bg-[#EAEEF6]\n          dark:bg-[#1F2938] dark:text-[#e2e8f0]\n          shadow-sm\n          pt-5\n          pb-5\n          flex\n          justify-center\n          items-center\n          flex-col\n          rounded-md\n        \">\n  <div class=\"contents\">\n    <div class=\"opacity-60\">\n      {{ i18n \"feedback_widget_question\" | default \"Was this page helpful?\" }}\n    </div>\n    <div class=\"flex items-center justify-around mt-3\">\n      <div class=\"px-3 py-2 mr-1 text-2xl transition transform rounded-md cursor-pointer hover:opacity-100 hover:bg-gray-200 dark:hover:bg-gray-700\">\n              😞\n      </div>\n      <div class=\"px-3 py-2 mr-1 text-2xl transition transform rounded-md cursor-pointer hover:opacity-100 hover:bg-gray-200 dark:hover:bg-gray-700\">\n              😐\n      </div>\n      <div class=\"px-3 py-2 mr-1 text-2xl transition transform rounded-md cursor-pointer hover:opacity-100 hover:bg-gray-200 dark:hover:bg-gray-700\">\n              🤩\n      </div>\n    </div>\n  </div>\n</div>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/footers/columns.html",
    "content": "{{ $branding := partialCached \"functions/get_branding\" . \"branding\" }}\n{{- $logo_height := site.Params.hugoblox.footer.logo_height | default 36 -}}\n{{ $logo := partialCached \"functions/get_logo\" (dict \"constraint\" \"max_height\" \"size\" $logo_height) \"footer_logo\" }}\n{{- $show_logo := site.Params.hugoblox.footer.show_logo | default true -}}\n{{- $show_title := site.Params.hugoblox.footer.show_title | default true -}}\n{{- $show_tagline := site.Params.hugoblox.footer.show_tagline | default true -}}\n{{- $footer_title := site.Params.hugoblox.footer.title | default $branding.name -}}\n<footer aria-labelledby=\"footer-heading\">\n  <span id=\"footer-heading\" class=\"sr-only\">Footer</span>\n\n  <div class=\"mx-auto max-w-7xl px-4 py-12 sm:px-6 lg:px-16\">\n    <div class=\"xl:grid xl:grid-cols-3 xl:gap-8 xl:items-start\">\n      <div class=\"xl:col-span-1\">\n        {{ if $show_logo }}\n        {{ with $logo.resource }}\n          {{ if $logo.is_svg }}\n            <div class=\"footer-logo\" style=\"height: {{ $logo_height }}px;\">\n              {{- .Content | safeHTML -}}\n            </div>\n            <style>.footer-logo svg { height: 100%; width: auto; }</style>\n          {{ else }}\n            <img\n              decoding=\"async\"\n              width=\"{{ .Width }}\"\n              height=\"{{ .Height }}\"\n              src=\"{{ .RelPermalink }}\"\n              alt=\"{{ $branding.name }}\" />\n          {{ end }}\n        {{ end }}\n        {{ end }}\n        {{ if $show_title }}\n        <a class=\"text-lg font-bold tracking-tighter text-primary-600 transition duration-500 ease-in-out lg:pr-8 dark:text-primary-200\" href=\"{{site.Home.RelPermalink}}\">\n          {{ $footer_title }}\n        </a>\n        {{ end }}\n        {{ if $show_tagline }}\n        <p class=\"mt-2 w-1/2 text-sm text-gray-500 dark:text-gray-300\">{{ site.Params.hugoblox.identity.tagline | default \"\" }}</p>\n        {{ end }}\n        {{- $show_social := site.Params.hugoblox.footer.show_social | default true -}}\n        {{ if $show_social }}\n        {{ with site.Params.hugoblox.identity.social.links }}\n        <div class=\"mt-4 text-xl\">\n          {{ partial \"social_links\" (dict \"Params\" (dict \"profiles\" .)) }}\n        </div>\n        {{ end }}\n        {{ end }}\n      </div>\n      <div class=\"mt-12 grid grid-cols-1 gap-8 xl:col-span-2 xl:mt-0 md:grid-cols-{{ len .Site.Menus.footer }}\">\n\n          {{ $menu := .Site.Menus.footer }}\n          {{ range $index, $menuItem := $menu }}\n          <div>\n            <h3 class=\"text-sm font-bold tracking-wider text-primary-500 uppercase dark:text-primary-300\">{{ $menuItem.Name }}</h3>\n            <ul role=\"list\" class=\"mt-4 space-y-2\">\n              {{ range $childIndex, $childMenuItem := $menuItem.Children }}\n              {{ $url := .URL | relLangURL }}\n              <li>\n                <a href=\"{{ $url }}\"\n                class=\"text-base font-normal text-gray-500 hover:text-primary-600 dark:text-gray-300 dark:hover:text-primary-300\"\n                   {{ if findRE `^http` .URL }}\n                   target=\"_blank\" rel=\"noopener\"\n                   {{ end }}\n                   >\n                  {{ $childMenuItem.Name }}\n                </a>\n              </li>\n              {{ end }}\n            </ul>\n          </div>\n        {{ end }}\n      </div>\n    </div>\n  </div>\n  <div class=\"mx-auto max-w-7xl px-4 py-12 sm:px-6 lg:px-16\">\n    <div class=\"flex flex-wrap items-baseline\">\n      <span class=\"mt-2 text-sm font-light text-gray-500 dark:text-gray-300\">\n        {{/* Display copyright license. */}}\n        {{ partial \"site_footer_license\" . }}\n      </span>\n    </div>\n  </div>\n</footer>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/footers/minimal.html",
    "content": "{{ $show_translations := site.Params.hugoblox.footer.language_switcher | default true }}\n{{ if .IsTranslated | and $show_translations }}\n<div class=\"mx-auto flex gap-3 py-2 px-4\">\n  <div class=\"font-bold\">\n    {{- partial \"functions/get_icon\" (dict \"name\" \"globe-alt\" \"attributes\" `class=\"inline-block pr-1\" style=\"height: 1em\"`) -}}\n    {{ i18n \"languages\" }}:\n  </div>\n  <div class=\"font-bold\">{{ index site.Data.languages .Lang }}</div>\n  {{ range .Translations }}\n  <div><a href=\"{{ .Permalink }}\">{{ index site.Data.languages .Lang }}</a></div>\n  {{ end }}\n</div>\n{{ end }}\n\n{{/* Footer nav links - single level */}}\n{{ $menu := .Site.Menus.footer }}\n{{ with $menu }}\n<nav class=\"flex flex-wrap justify-center gap-x-8 gap-y-2 py-4\">\n  {{ range $index, $menuItem := . }}\n  <a href=\"{{ $menuItem.URL | relLangURL }}\"\n     class=\"text-base font-medium text-gray-500 hover:text-primary-600 dark:text-gray-300 dark:hover:text-primary-300\"\n     {{ if findRE `^http` $menuItem.URL }}\n     target=\"_blank\" rel=\"noopener\"\n     {{ end }}\n  >\n    {{ $menuItem.Name }}\n  </a>\n  {{ end }}\n</nav>\n{{ end }}\n\n{{/* Social links */}}\n{{- $show_social := site.Params.hugoblox.footer.show_social | default true -}}\n{{ if $show_social }}\n{{ with site.Params.hugoblox.identity.social.links }}\n<div class=\"flex justify-center py-4 text-xl\">\n  {{ partial \"social_links\" (dict \"Params\" (dict \"profiles\" .)) }}\n</div>\n{{ end }}\n{{ end }}\n\n{{ with site.Params.hugoblox.footer.text }}\n<p class=\"text-center\">\n  {{ . | markdownify | emojify }}\n</p>\n{{ end }}\n\n{{/* Display copyright license. */}}\n{{ partial \"site_footer_license\" . }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/headers/floating-theme-toggler.html",
    "content": "<div class=\"absolute right-0 top-0 m-3 bg-primary-100 dark:bg-primary-700 rounded-full p-2 z-10\">\n  <div class=\"h-[24px] w-[24px]\">\n    <button class=\"theme-toggle h-[24px] w-[24px] flex items-center justify-center\" accesskey=\"t\" title=\"\" aria-label=\"{{ i18n \"theme_selector\" }}\">\n      <svg id=\"moon\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"\n           fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"\n           stroke-linejoin=\"round\" class=\"block dark:hidden\">\n        <path d=\"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z\"></path>\n      </svg>\n      <svg id=\"sun\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"\n           fill=\"none\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"\n           stroke-linejoin=\"round\" class=\"hidden dark:block\">\n        <circle cx=\"12\" cy=\"12\" r=\"5\"></circle>\n        <line x1=\"12\" y1=\"1\" x2=\"12\" y2=\"3\"></line>\n        <line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"23\"></line>\n        <line x1=\"4.22\" y1=\"4.22\" x2=\"5.64\" y2=\"5.64\"></line>\n        <line x1=\"18.36\" y1=\"18.36\" x2=\"19.78\" y2=\"19.78\"></line>\n        <line x1=\"1\" y1=\"12\" x2=\"3\" y2=\"12\"></line>\n        <line x1=\"21\" y1=\"12\" x2=\"23\" y2=\"12\"></line>\n        <line x1=\"4.22\" y1=\"19.78\" x2=\"5.64\" y2=\"18.36\"></line>\n        <line x1=\"18.36\" y1=\"5.64\" x2=\"19.78\" y2=\"4.22\"></line>\n      </svg>\n    </button>\n  </div>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/headers/navbar-simple.html",
    "content": "<!-- Main navigation container -->\n\n{{/* Show site search? */}}\n{{ $show_search := site.Params.hugoblox.header.search | default false }}\n\n<nav\n  class=\"relative flex w-full flex-nowrap items-center justify-between bg-white py-2 text-neutral-500 shadow-lg hover:text-neutral-700 focus:text-neutral-700 dark:bg-slate-900 lg:flex-wrap lg:justify-start lg:py-4\"\n  data-te-navbar-ref>\n  <div class=\"flex w-full flex-wrap items-center justify-between px-3\">\n    <!-- Hamburger button for mobile view -->\n    <button\n      class=\"block border-0 bg-transparent px-2 text-[var(--hb-color-header-fg)] hover:no-underline hover:shadow-none focus:no-underline focus:shadow-none focus:outline-none focus:ring-0 lg:hidden\"\n      type=\"button\"\n      data-te-collapse-init\n      data-te-target=\"#collapse-main-navbar\"\n      aria-controls=\"collapse-main-navbar\"\n      aria-expanded=\"false\"\n      aria-label=\"Toggle navigation\" onclick=\"toggleNavbar('collapse-main-navbar')\">\n      <!-- Hamburger icon -->\n      <span class=\"[&>svg]:w-7\">\n        <svg\n          xmlns=\"http://www.w3.org/2000/svg\"\n          viewBox=\"0 0 24 24\"\n          fill=\"currentColor\"\n          class=\"h-7 w-7\">\n          <path\n            fill-rule=\"evenodd\"\n            d=\"M3 6.75A.75.75 0 013.75 6h16.5a.75.75 0 010 1.5H3.75A.75.75 0 013 6.75zM3 12a.75.75 0 01.75-.75h16.5a.75.75 0 010 1.5H3.75A.75.75 0 013 12zm0 5.25a.75.75 0 01.75-.75h16.5a.75.75 0 010 1.5H3.75a.75.75 0 01-.75-.75z\"\n            clip-rule=\"evenodd\" />\n        </svg>\n      </span>\n    </button>\n\n    <!-- Collapsible navbar container -->\n    <div\n      class=\"!visible mt-2 hidden flex-grow basis-[100%] items-center justify-center lg:mt-0 lg:!flex lg:basis-auto\"\n      id=\"collapse-main-navbar\"\n      data-te-collapse-item>\n      <!-- Main links -->\n      {{- $currentPage := . }}\n      <ul\n        class=\"list-style-none flex flex-col pl-0 lg:mt-1 lg:flex-row items-center\"\n        data-te-navbar-nav-ref>\n        {{- range site.Menus.main }}\n        {{- $menu_item_url := (cond (strings.HasSuffix .URL \"/\") .URL (printf \"%s/\" .URL) ) | absLangURL }}\n        {{- $page_url:= $currentPage.Permalink | absLangURL }}\n        {{- $active := eq $menu_item_url $page_url -}}\n        {{- $activeClass := cond $active \"active\" \"\" -}}\n        <!-- Home link [&.active]:text-bold [&.active]:text-black/90 dark:[&.active]:text-neutral-300-->\n        <li\n          class=\"my-4 pl-2 lg:my-0 lg:pl-2 lg:pr-1\"\n          data-te-nav-item-ref>\n          <a\n            class=\"lg:px-2 text-[var(--hb-color-header-fg)] hover:text-primary-500\n            [&.active]:font-bold [&.active]:text-primary-500 {{ $activeClass }}\"\n            aria-current=\"page\"\n            href=\"{{ .URL | relLangURL }}\"\n            data-te-nav-link-ref\n          >{{- .Name -}}</a\n          >\n        </li>\n        {{ end }}\n        {{ if $show_search }}\n        <li class=\"my-4 pl-2 lg:my-0 lg:pl-2 lg:pr-1\">\n          <a\n            class=\"lg:px-2 text-[var(--hb-color-header-fg)] hover:text-primary-500\n            [&.active]:font-bold [&.active]:text-primary-500\"\n            aria-current=\"page\"\n            href=\"#\"\n            id=\"search-toggle\"\n          >{{- i18n \"search\" -}}</a\n          >\n        </li>\n        {{ end }}\n        {{ $show_mode_toggle := site.Params.hugoblox.header.theme_toggle | default true }}\n        {{ if $show_mode_toggle }}\n        <li class=\"lg:px-2 text-[var(--hb-color-header-fg)] hover:text-primary-500\n            [&.active]:font-bold [&.active]:text-primary-500\">\n          <button class=\"theme-toggle mt-1\" accesskey=\"t\" title=\"\">\n                    <svg id=\"moon\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"18\" viewBox=\"0 0 24 24\"\n             fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"\n             stroke-linejoin=\"round\" class=\"block dark:hidden\">\n          <path d=\"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z\"></path>\n        </svg>\n        <svg id=\"sun\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"18\" viewBox=\"0 0 24 24\"\n             fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"\n             stroke-linejoin=\"round\" class=\"hidden dark:block\">\n              <circle cx=\"12\" cy=\"12\" r=\"5\"></circle>\n              <line x1=\"12\" y1=\"1\" x2=\"12\" y2=\"3\"></line>\n              <line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"23\"></line>\n              <line x1=\"4.22\" y1=\"4.22\" x2=\"5.64\" y2=\"5.64\"></line>\n              <line x1=\"18.36\" y1=\"18.36\" x2=\"19.78\" y2=\"19.78\"></line>\n              <line x1=\"1\" y1=\"12\" x2=\"3\" y2=\"12\"></line>\n              <line x1=\"21\" y1=\"12\" x2=\"23\" y2=\"12\"></line>\n              <line x1=\"4.22\" y1=\"19.78\" x2=\"5.64\" y2=\"18.36\"></line>\n              <line x1=\"18.36\" y1=\"5.64\" x2=\"19.78\" y2=\"4.22\"></line>\n            </svg>\n          </button>\n        </li>\n        {{ end }}\n\n        {{/* Theme Picker */}}\n        {{ if site.Params.hugoblox.header.theme_picker }}\n        <li class=\"lg:px-2\">\n          <select onchange=\"document.documentElement.setAttribute('data-theme-pack', this.value); localStorage.setItem('hb-theme-pack', this.value);\" class=\"bg-transparent text-[var(--hb-color-header-fg)] border-none focus:ring-0 cursor-pointer text-sm font-medium\">\n            <option value=\"\">Theme</option>\n            {{ range $name, $data := site.Data.themes }}\n              <option value=\"{{ $name }}\">{{ $name | humanize }}</option>\n            {{ end }}\n          </select>\n          <script>\n            (function() {\n              const savedTheme = localStorage.getItem('hb-theme-pack');\n              if (savedTheme) {\n                document.documentElement.setAttribute('data-theme-pack', savedTheme);\n                document.addEventListener('DOMContentLoaded', () => {\n                  const select = document.querySelector('select[onchange*=\"data-theme-pack\"]');\n                  if (select) select.value = savedTheme;\n                });\n              }\n            })();\n          </script>\n        </li>\n        {{ end }}\n\n        {{ $show_translations := site.Params.hugoblox.header.language_switcher | default true }}\n        {{ if .IsTranslated | and $show_translations }}\n        <li class=\"lg:px-2 text-[var(--hb-color-header-fg)] hover:text-primary-500\n            [&.active]:font-bold [&.active]:text-primary-500\">\n          {{- partial \"components/language-chooser.html\" (dict \"page\" .) -}}\n        </li>\n        {{ end }}\n      </ul>\n    </div>\n  </div>\n</nav>\n\n{{ if $show_search }}\n  {{- partial \"components/search-modal.html\" . -}}\n{{ end }}\n\n<script>\n  function toggleNavbar(collapseID){\n    document.getElementById(collapseID).classList.toggle(\"hidden\");\n    document.getElementById(collapseID).classList.toggle(\"flex\");\n  }\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/headers/navbar.html",
    "content": "{{ $branding := partialCached \"functions/get_branding\" . \"branding\" }}\n{{ $logo := partialCached \"functions/get_logo\" (dict \"constraint\" \"max_height\" \"size\" 36) \"navbar_logo\" }}\n{{- $show_logo := site.Params.hugoblox.header.show_logo | default true -}}\n{{- $show_title := site.Params.hugoblox.header.show_title | default true -}}\n{{- $navbar_title := site.Params.hugoblox.header.title | default $branding.name -}}\n<header id=\"site-header\" class=\"header\">\n  <nav class=\"navbar px-3 flex justify-start\">\n    <div class=\"order-0 h-full\">\n      <!-- Brand -->\n      <a class=\"navbar-brand\" href=\"{{ site.Home.RelPermalink }}\" title=\"{{ $branding.site_title }}\">\n        {{/* Auto-detect logo from assets/media/logo.{svg,png} */}}\n        {{ if $show_logo }}\n        {{ with $logo.resource }}\n          {{ if $logo.is_svg }}\n            {{- .Content | safeHTML -}}\n          {{ else }}\n            <img\n              fetchpriority=\"high\"\n              decoding=\"async\"\n              class=\"\"\n              width=\"{{ .Width }}\"\n              height=\"{{ .Height }}\"\n              src=\"{{ .RelPermalink }}\"\n              alt=\"{{ $branding.name }}\" />\n          {{ end }}\n        {{ end }}\n        {{ end }}\n        {{/* Display brand name */}}\n        {{ if $show_title }}{{ $navbar_title }}{{ end }}\n      </a>\n    </div>\n    <!-- Mobile menu -->\n    <input id=\"nav-toggle\" type=\"checkbox\" class=\"hidden\" />\n    <label\n      for=\"nav-toggle\"\n      class=\"order-3 cursor-pointer flex items-center lg:hidden text-[var(--hb-color-header-fg)] lg:order-1\">\n      <svg id=\"show-button\" class=\"h-6 fill-current block\" viewBox=\"0 0 20 20\">\n        <title>Open Menu</title>\n        <path d=\"M0 3h20v2H0V3z m0 6h20v2H0V9z m0 6h20v2H0V0z\"></path>\n      </svg>\n      <svg id=\"hide-button\" class=\"h-6 fill-current hidden\" viewBox=\"0 0 20 20\">\n        <title>Close Menu</title>\n        <polygon\n          points=\"11 9 22 9 22 11 11 11 11 22 9 22 9 11 -2 11 -2 9 9 9 9 -2 11 -2\"\n          transform=\"rotate(45 10 10)\"></polygon>\n      </svg>\n    </label>\n    <!-- /Mobile menu -->\n\n    <!-- Main menu -->\n    {{ $align_menu := site.Params.hugoblox.header.align | default \"center\" }}\n    <ul\n      id=\"nav-menu\"\n      class=\"navbar-nav order-3 hidden lg:flex w-full pb-6 lg:order-1 lg:w-auto lg:space-x-2 lg:pb-0 xl:space-x-8 justify-start\n      {{ if in (slice \"l\" \"left\") $align_menu }}mr-auto ml-6{{ else if (in (slice \"r\" \"right\") $align_menu) }}ml-auto mr-6{{end}}\">\n      {{ $currentPage := . }}\n      {{ range site.Menus.main }}\n      {{ $menuURL := .URL | absLangURL }}\n      {{ $pageURL:= $currentPage.Permalink | absLangURL }}\n      {{ $active := eq $menuURL $pageURL }}\n      {{ if .HasChildren }}\n      <li class=\"nav-item nav-dropdown group relative\">\n            <span\n              role=\"button\"\n              tabindex=\"0\"\n              aria-haspopup=\"true\"\n              aria-expanded=\"false\"\n              class=\"nav-link cursor-pointer select-none {{ range .Children }}\n                {{ $childURL := .URL | absLangURL }}\n                {{ $active := eq $childURL $pageURL }}\n                {{ if $active }}active{{ end }}\n              {{ end }} inline-flex items-center\">\n              {{ .Name }}\n              <svg class=\"h-4 w-4 fill-current inline-block\" viewBox=\"0 0 20 20\">\n                <path\n                  d=\"M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z\" />\n              </svg>\n            </span>\n        <ul\n          class=\"nav-dropdown-list lg:group-hover:visible lg:group-hover:opacity-100\">\n          {{ range .Children }}\n          {{ $childURL := .URL | absLangURL }}\n          {{ $active := eq $childURL $pageURL }}\n          {{ $url := \"\" }}\n          {{- if findRE `^#` .URL -}}\n            {{- if not $.IsHome -}}\n              {{- $url = site.Home.RelPermalink -}}\n            {{- end }}\n            {{- $url = .URL -}}\n          {{- else -}}\n            {{- $url = .URL | relLangURL -}}\n          {{- end -}}\n          <li class=\"nav-dropdown-item\">\n            <a\n              class=\"nav-dropdown-link {{ if $active }}active{{- end -}}\"\n              {{ if findRE `^http` .URL }}\n              target=\"_blank\" rel=\"noopener\"\n              {{ end }}\n              href=\"{{$url}}\">\n              {{ .Name }}\n            </a>\n          </li>\n          {{ end }}\n        </ul>\n      </li>\n      {{ else }}\n      {{ $url := \"\" }}\n      {{- if findRE `^#` .URL -}}\n        {{- if not $.IsHome -}}\n          {{- $url = site.Home.RelPermalink -}}\n        {{- end }}\n        {{- $url = .URL -}}\n        {{- else -}}\n        {{- $url = .URL | relLangURL -}}\n      {{- end -}}\n      <li class=\"nav-item\">\n        <a\n          class=\"nav-link {{ if $active }}active{{- end -}}\"\n          {{ if findRE `^http` .URL }}\n          target=\"_blank\" rel=\"noopener\"\n          {{ end }}\n          href=\"{{$url}}\"\n        >{{ .Name }}</a\n        >\n      </li>\n      {{ end }}\n      {{ end }}\n      {{ if site.Params.hugoblox.header.cta.enable }}\n      <li class=\"mt-4 inline-block lg:hidden\">\n        <a\n          class=\"\"\n          href=\"{{ site.Params.hugoblox.header.cta.url | relLangURL }}\">\n          {{ site.Params.hugoblox.header.cta.text }}\n        </a>\n      </li>\n      {{ end }}\n    </ul>\n\n    <div class=\"order-1 ml-auto flex items-center md:order-2 lg:ml-0\">\n\n      {{/* Show site search? */}}\n      {{ $show_search := site.Params.hugoblox.header.search | default false }}\n      {{ with $show_search }}\n      <button\n        aria-label=\"toggle search\"\n        class=\"inline-block px-3 text-xl text-[var(--hb-color-header-fg)] hover:text-primary-500 cursor-pointer\"\n        data-search-toggle>\n        <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"16\" width=\"16\" viewBox=\"0 0 512 512\" fill=\"currentColor\"><path d=\"M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z\"/></svg>\n      </button>\n      {{ end }}\n\n      {{ $show_mode_toggle := site.Params.hugoblox.header.theme_toggle | default true }}\n      {{ if $show_mode_toggle }}\n      <div class=\"px-3 text-[var(--hb-color-header-fg)] hover:text-primary-500\n            [&.active]:font-bold [&.active]:text-primary-500\">\n        <button class=\"theme-toggle mt-1\" accesskey=\"t\" title=\"appearance\">\n          <svg id=\"moon\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"18\" viewBox=\"0 0 24 24\"\n               fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"\n               stroke-linejoin=\"round\" class=\"block dark:hidden\">\n            <path d=\"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z\"></path>\n          </svg>\n          <svg id=\"sun\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"18\" viewBox=\"0 0 24 24\"\n               fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"\n               stroke-linejoin=\"round\" class=\"hidden dark:block\">\n            <circle cx=\"12\" cy=\"12\" r=\"5\"></circle>\n            <line x1=\"12\" y1=\"1\" x2=\"12\" y2=\"3\"></line>\n            <line x1=\"12\" y1=\"21\" x2=\"12\" y2=\"23\"></line>\n            <line x1=\"4.22\" y1=\"4.22\" x2=\"5.64\" y2=\"5.64\"></line>\n            <line x1=\"18.36\" y1=\"18.36\" x2=\"19.78\" y2=\"19.78\"></line>\n            <line x1=\"1\" y1=\"12\" x2=\"3\" y2=\"12\"></line>\n            <line x1=\"21\" y1=\"12\" x2=\"23\" y2=\"12\"></line>\n            <line x1=\"4.22\" y1=\"19.78\" x2=\"5.64\" y2=\"18.36\"></line>\n            <line x1=\"18.36\" y1=\"5.64\" x2=\"19.78\" y2=\"4.22\"></line>\n          </svg>\n        </button>\n      </div>\n      {{ end }}\n\n      {{/* Theme Picker */}}\n      {{ if site.Params.hugoblox.header.theme_picker }}\n      <div class=\"px-3\">\n        <select onchange=\"document.documentElement.setAttribute('data-theme-pack', this.value); localStorage.setItem('hb-theme-pack', this.value);\" class=\"bg-transparent text-[var(--hb-color-header-fg)] border-none focus:ring-0 cursor-pointer text-sm font-medium\">\n          <option value=\"\">Theme</option>\n          {{ range $name, $data := site.Data.themes }}\n            <option value=\"{{ $name }}\">{{ $name | humanize }}</option>\n          {{ end }}\n        </select>\n        <script>\n          (function() {\n            const savedTheme = localStorage.getItem('hb-theme-pack');\n            if (savedTheme) {\n              document.documentElement.setAttribute('data-theme-pack', savedTheme);\n              // Defer selecting the option until DOM is ready\n              document.addEventListener('DOMContentLoaded', () => {\n                const select = document.querySelector('select[onchange*=\"data-theme-pack\"]');\n                if (select) select.value = savedTheme;\n              });\n            }\n          })();\n        </script>\n      </div>\n      {{ end }}\n\n      {{ $show_translations := site.Params.hugoblox.header.language_switcher | default true }}\n      {{ if .IsTranslated | and $show_translations }}\n      <div class=\"pl-1 mr-5 text-[var(--hb-color-header-fg)] hover:text-primary-500\n            [&.active]:font-bold [&.active]:text-primary-500\">\n        {{- partial \"components/language-chooser.html\" (dict \"page\" .) -}}\n      </div>\n      {{ end }}\n\n      <!-- CTA button -->\n      {{ if site.Params.hugoblox.header.cta.enable }}\n      <a\n        href=\"{{ site.Params.hugoblox.header.cta.url | relLangURL }}\"\n        class=\"inline-block rounded border px-5 py-2 font-semibold transition\n        md:ml-4 px-4 py-1.5 text-sm\n        border-black  hover:bg-black dark:hover:bg-white dark:hover:text-black hover:text-white dark:border-white dark:text-white dark:hover:bg-white\n        hidden lg:inline-block\">\n        {{ site.Params.hugoblox.header.cta.text }}\n      </a>\n      {{ end }}\n    </div>\n  </nav>\n</header>\n\n{{ if $show_search }}\n  {{- partial \"components/search-modal.html\" . -}}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/language-chooser.html",
    "content": "{{ $page := .page }}\n{{ $class := .class }}\n{{ $hide_language_name := false }}{{/* TODO: Add to hugoblox.header.hide_language_name if needed */}}\n{{ $str_languages := T \"languages\" }}\n\n{{- if $page.IsTranslated -}}\n  <div class=\"flex justify-items-start {{ with $class }}{{. | safeCSS }}{{ end }}\">\n    <button\n      title=\"{{ $str_languages }}\"\n      data-state=\"closed\"\n      data-hb-language-chooser\n      class=\"grow h-7 rounded-md px-2 text-left text-xs font-medium text-gray-600 transition-colors dark:text-gray-400 hover:bg-gray-100 hover:text-gray-900 dark:hover:bg-primary-100/5 dark:hover:text-gray-50\"\n      type=\"button\"\n      aria-label=\"{{ $str_languages }}\"\n    >\n      <div class=\"flex items-center gap-2 capitalize\">\n        {{/* Match theme chooser icon height */}}\n        {{- partial \"functions/get_icon\" (dict \"name\" \"globe-alt\" \"attributes\" \"height=18\") -}}\n        {{- if not $hide_language_name -}}<span>{{ index site.Data.languages $page.Lang }}</span>{{ end -}}\n      </div>\n    </button>\n    <ul\n      class=\"fixed m-0 min-w-[100px] hidden z-20 max-h-64 overflow-auto rounded-md ring-1 ring-black/5 bg-white py-1 text-sm shadow-lg dark:ring-white/20 dark:bg-neutral-800\"\n      style=\"inset: auto auto 0 0;\"\n    >\n      {{ range $page.Translations }}\n        <li class=\"flex flex-col\">\n          <a\n            href=\"{{ .Permalink }}\"\n            class=\"relative cursor-pointer text-gray-800 dark:text-gray-100 hover:bg-primary-50 hover:text-primary-600 hover:dark:bg-primary-500/10 hover:dark:text-primary-200 whitespace-nowrap py-1.5 transition-colors ltr:pl-3 ltr:pr-9 rtl:pr-3 rtl:pl-9\"\n          >\n            {{- index site.Data.languages .Lang -}}\n          </a>\n        </li>\n      {{ end -}}\n    </ul>\n  </div>\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/last-edited.html",
    "content": "{{- $last_updated := T \"last_updated\" -}}\n\n{{- if (.Params.show_date_updated | default true) | and .Lastmod -}}\n  {{ $datetime := (time.Format \"2006-01-02T15:04:05.000Z\" .Lastmod) }}\n  <time class=\"mt-12 mb-8 block text-xs text-gray-500 ltr:text-right rtl:text-left dark:text-gray-400\" datetime=\"{{ $datetime }}\">\n    <span>{{ $last_updated }}</span>\n    {{ .Lastmod | time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") -}}\n  </time>\n{{- else -}}\n  <div class=\"mt-16\"></div>\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/next-in-series.html",
    "content": "{{ if .Params.pager | default true }}\n  {{ if and .Section (or .NextInSection .PrevInSection) }}\n    {{ $next := .NextInSection }}\n    {{ $prev := .PrevInSection }}\n    {{ if (eq (.Scratch.Get \"invert_pager\") true) | default .Params.invert_pager | default false }}\n      {{ $next = .PrevInSection }}\n      {{ $prev = .NextInSection }}\n    {{ end }}\n<div class=\"pt-1 no-prose w-full\">\n  <hr class=\"border-dotted border-neutral-300 dark:border-neutral-600\" />\n  <div class=\"flex flex-col md:flex-row flex-nowrap justify-between gap-5 pt-2\">\n    <div class=\"\">\n      {{ if $prev }}\n        <a class=\"group flex no-underline\" href=\"{{ $prev.RelPermalink }}\">\n          <span\n            class=\"mt-[-0.3rem] me-2 text-neutral-700 transition-transform group-hover:-translate-x-[2px] group-hover:text-primary-600 dark:text-neutral dark:group-hover:text-primary-400\"\n          ><span class=\"ltr:inline rtl:hidden\">&larr;</span></span>\n          <span class=\"flex flex-col\">\n            <span\n              class=\"mt-[0.1rem] leading-6 group-hover:underline group-hover:decoration-primary-500\"\n            >{{ $prev.Title }}</span>\n            <span class=\"mt-[0.1rem] text-xs text-neutral-500 dark:text-neutral-400\">\n              {{ if .Params.show_date | default true }}\n                {{ time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") $prev.Date }}\n              {{ end }}\n            </span>\n          </span>\n        </a>\n      {{ end }}\n    </div>\n    <div class=\"\">\n      {{ if $next }}\n        <a class=\"group flex text-right no-underline\" href=\"{{ $next.RelPermalink }}\">\n          <span class=\"flex flex-col\">\n            <span\n              class=\"mt-[0.1rem] leading-6 group-hover:underline group-hover:decoration-primary-500\"\n            >{{ $next.Title }}</span\n            >\n            <span class=\"mt-[0.1rem] text-xs text-neutral-500 dark:text-neutral-400\">\n              {{ if .Params.show_date | default true }}\n                {{ time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") $next.Date }}\n              {{ end }}\n            </span>\n          </span>\n          <span\n            class=\"mt-[-0.3rem] ms-2 text-neutral-700 transition-transform group-hover:-translate-x-[2px] group-hover:text-primary-600 dark:text-neutral dark:group-hover:text-primary-400\"\n          ><span class=\"ltr:inline\">&rarr;</span></span>\n        </a>\n      {{ end }}\n    </div>\n  </div>\n</div>\n{{ end }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/page_sharer.html",
    "content": "{{ if ne .Params.share false }}\n<section class=\"flex flex-row flex-wrap justify-center pt-4 text-xl\">\n  {{ range where site.Data.page_sharer.links \"enable\" true }}\n\n  {{/* Utilise `urlquery` over `htmlEscape` to encode sharing URL */}}\n  {{/* See https://github.com/HugoBlox/kit/pull/2726 */}}\n  {{ $link := replace .url \"{url}\" ($.Permalink | urlquery) }}\n  {{ $link = replace $link \"{title}\" ($.Title | urlquery) }}\n  {{/* Workaround `urlquery` encoding for mailto as `urlquery` encodes `+` as `%2B` and ` ` (space) as `+` */}}\n  {{ if eq (urls.Parse $link).Scheme \"mailto\" }}\n    {{ $link = replace $link \"+\" \"%20\" }}\n  {{ end }}\n  <a\n    target=\"_blank\" rel=\"noopener\"\n    class=\"m-1 rounded-md bg-neutral-300 p-1.5 text-neutral-700 hover:bg-primary-500 hover:text-neutral-300 dark:bg-neutral-700 dark:text-neutral-300 dark:hover:bg-primary-400 dark:hover:text-neutral-800\"\n    href=\"{{$link|safeURL}}\"\n    title=\"{{ .title }}\"\n    aria-label=\"{{ .title }}\"\n    id=\"share-link-{{.id}}\"\n  >\n    {{ partial \"functions/get_icon\" (dict \"name\" .icon \"attributes\" \"style=\\\"height: 1em;\\\"\") }}\n  </a>\n  {{ end }}\n</section>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/paginator.html",
    "content": "{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }}\n<nav class=\"mt-1\">\n  <ul class=\"container mx-auto flex justify-center\">\n    {{ if .Paginator.HasPrev }}\n    <li class=\"p-5\"><a class=\"page-link\" href=\"{{ .Paginator.Prev.URL }}\">&laquo; {{ T \"previous\" }}</a></li>\n    {{ end }}\n    {{ if .Paginator.HasNext }}\n    <li class=\"p-5\"><a class=\"page-link\" href=\"{{ .Paginator.Next.URL }}\">{{ T \"next\" }} &raquo;</a></li>\n    {{ end }}\n  </ul>\n</nav>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/search-modal.html",
    "content": "{{/* Modern Search Modal - Custom Pagefind API Implementation */}}\n<div\n  x-data=\"searchModal()\"\n  x-show=\"$store.search.open\"\n  @keydown.escape.window=\"$store.search.open = false\"\n  @keydown.cmd.k.window.prevent=\"$store.search.open = !$store.search.open\"\n  @keydown.ctrl.k.window.prevent=\"$store.search.open = !$store.search.open\"\n  x-cloak\n  class=\"fixed inset-0 z-[100] bg-black/50 backdrop-blur-sm\"\n  style=\"display: none;\"\n>\n  {{/* Backdrop */}}\n  <div class=\"absolute inset-0\" @click=\"$store.search.open = false\"></div>\n  \n  {{/* Modal Container */}}\n  <div \n    class=\"relative mx-auto mt-[10vh] max-w-3xl\"\n    x-show=\"$store.search.open\"\n    x-transition:enter=\"transition ease-out duration-200\"\n    x-transition:enter-start=\"opacity-0 translate-y-4 scale-95\"\n    x-transition:enter-end=\"opacity-100 translate-y-0 scale-100\"\n    x-transition:leave=\"transition ease-in duration-150\"\n    x-transition:leave-start=\"opacity-100 translate-y-0 scale-100\"\n    x-transition:leave-end=\"opacity-0 translate-y-4 scale-95\"\n  >\n    <div class=\"mx-4 overflow-hidden rounded-2xl bg-white dark:bg-gray-900 shadow-2xl ring-1 ring-gray-900/10 dark:ring-white/10\">\n      \n      {{/* Search Header */}}\n      <div class=\"border-b border-gray-200 dark:border-gray-800\">\n        <div class=\"flex items-center gap-3 px-4 py-3\">\n          \n          {{/* Search Icon */}}\n          <svg class=\"h-5 w-5 flex-shrink-0 text-gray-400\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n            <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\"></path>\n          </svg>\n          \n          {{/* Search Input */}}\n          <input\n            x-ref=\"searchInput\"\n            x-model=\"query\"\n            @input=\"loading = query.trim() !== ''\"\n            @input.debounce.300ms=\"search()\"\n            type=\"text\"\n            placeholder=\"Search for answers...\"\n            class=\"flex-1 bg-transparent text-lg outline-none text-gray-900 dark:text-gray-100 placeholder-gray-400\"\n            autocomplete=\"off\"\n            autofocus\n          />\n          \n          {{/* Loading Indicator */}}\n          <div x-show=\"loading\" class=\"flex-shrink-0\">\n            <svg class=\"animate-spin h-5 w-5 text-primary-600\" fill=\"none\" viewBox=\"0 0 24 24\">\n              <circle class=\"opacity-25\" cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"4\"></circle>\n              <path class=\"opacity-75\" fill=\"currentColor\" d=\"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z\"></path>\n            </svg>\n          </div>\n          \n          {{/* ESC hint */}}\n          <kbd class=\"hidden sm:block flex-shrink-0 rounded bg-gray-100 px-2 py-1 text-xs font-semibold text-gray-600 dark:bg-gray-800 dark:text-gray-400\">ESC</kbd>\n          \n          {{/* Close Button */}}\n    <button\n            @click=\"$store.search.open = false\"\n            class=\"flex-shrink-0 rounded-lg p-1 text-gray-400 hover:bg-gray-100 hover:text-gray-600 dark:hover:bg-gray-800 dark:hover:text-gray-300 cursor-pointer\"\n    >\n            <svg class=\"h-5 w-5\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 18L18 6M6 6l12 12\"></path>\n      </svg>\n    </button>\n  </div>\n\n        {{/* Filters - Auto-show when search has results */}}\n        <div x-show=\"query && availableFilters.length > 0\" x-transition class=\"border-t border-gray-100 dark:border-gray-800 px-4 py-2\">\n          <div class=\"flex flex-wrap gap-2\">\n            <button\n              @click=\"activeFilter = null; search()\"\n              :class=\"activeFilter === null ? 'bg-primary-100 text-primary-700 dark:bg-primary-900 dark:text-primary-300' : 'bg-gray-100 text-gray-600 hover:bg-gray-200 dark:bg-gray-800 dark:text-gray-400'\"\n              class=\"rounded-full px-3 py-1 text-xs font-medium transition-colors cursor-pointer\"\n            >\n              All Results\n            </button>\n            <template x-for=\"filter in availableFilters\" :key=\"filter.filterKey\">\n              <button\n                @click=\"activeFilter = filter.filterKey; search()\"\n                :class=\"activeFilter === filter.filterKey ? 'bg-primary-100 text-primary-700 dark:bg-primary-900 dark:text-primary-300' : 'bg-gray-100 text-gray-600 hover:bg-gray-200 dark:bg-gray-800 dark:text-gray-400'\"\n                class=\"rounded-full px-3 py-1 text-xs font-medium transition-colors cursor-pointer\"\n                x-text=\"filter.label + ' (' + filter.count + ')'\"\n              ></button>\n            </template>\n          </div>\n        </div>\n      </div>\n      \n      {{/* Results Container */}}\n      <div class=\"max-h-[60vh] overflow-y-auto\">\n        \n        {{/* Empty State - Quick Actions */}}\n        <div x-show=\"!query && results.length === 0\" class=\"p-6\">\n          \n          {{/* Quick Actions - Configurable via site params */}}\n          {{ $quick_actions := site.Params.hugoblox.search.quick_actions }}\n          {{ if $quick_actions }}\n          <div class=\"mb-8\">\n            <h3 class=\"mb-4 text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400\">\n              Quick Actions\n            </h3>\n            <div class=\"grid gap-3 sm:grid-cols-2\">\n              {{ range $quick_actions }}\n              <a href=\"{{ .url }}\" {{ if .external }}target=\"_blank\" rel=\"noopener\"{{ end }} class=\"group flex items-center gap-3 rounded-xl border border-gray-200 dark:border-gray-700 p-4 hover:border-{{ .color | default \"primary\" }}-500 hover:bg-{{ .color | default \"primary\" }}-50 dark:hover:bg-{{ .color | default \"primary\" }}-900/10 transition-all\">\n                <div class=\"flex h-10 w-10 items-center justify-center rounded-lg bg-{{ .color | default \"primary\" }}-100 text-{{ .color | default \"primary\" }}-600 dark:bg-{{ .color | default \"primary\" }}-900 dark:text-{{ .color | default \"primary\" }}-400\">\n                  {{ partial \"functions/get_icon\" (dict \"name\" (.icon | default \"question-mark-circle\") \"attributes\" \"class=\\\"h-5 w-5\\\"\") }}\n                </div>\n                <div class=\"flex-1 min-w-0\">\n                  <div class=\"font-semibold text-gray-900 dark:text-white truncate\">{{ .title }}</div>\n                  <div class=\"text-sm text-gray-500 dark:text-gray-400 truncate\">{{ .description }}</div>\n                </div>\n                {{ if .external }}\n                <svg class=\"h-4 w-4 text-gray-400\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n                  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14\"></path>\n                </svg>\n                {{ end }}\n              </a>\n              {{ end }}\n            </div>\n          </div>\n          {{ end }}\n          \n          {{/* Trending Searches - Configurable via site params */}}\n          {{ $trending := site.Params.hugoblox.search.suggestions }}\n          {{ if $trending }}\n          <div>\n            <h3 class=\"mb-3 text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400\">\n              Trending Searches\n            </h3>\n            <div class=\"flex flex-wrap gap-2\">\n              {{ range $trending }}\n              <button\n                @click=\"query = '{{ . }}'; search()\"\n                class=\"rounded-full bg-gradient-to-r from-primary-100 to-blue-100 dark:from-primary-900/50 dark:to-blue-900/50 px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:from-primary-200 hover:to-blue-200 dark:hover:from-primary-800/50 dark:hover:to-blue-800/50 transition-all cursor-pointer\"\n              >\n                {{ . }}\n              </button>\n              {{ end }}\n            </div>\n          </div>\n          {{ end }}\n        </div>\n        \n        {{/* Search Results */}}\n        <div x-show=\"query && results.length > 0\" class=\"divide-y divide-gray-200 dark:divide-gray-800\">\n          <template x-for=\"(result, index) in results\" :key=\"result.id\">\n            <a\n              :href=\"result.url\"\n              @mouseenter=\"selectedIndex = index\"\n              @click=\"$store.search.open = false\"\n              :class=\"selectedIndex === index ? 'bg-primary-50 dark:bg-primary-900/20 border-l-2 border-primary-600' : ''\"\n              class=\"block px-6 py-4 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors group search-result\"\n            >\n              {{/* Result Badges */}}\n              <div class=\"flex items-center gap-2 mb-2 flex-wrap\">\n                {{/* Type badge with i18n */}}\n                <span\n                  x-show=\"result.filters && result.filters.type\"\n                  :class=\"{\n                    'bg-primary-100 text-primary-700 dark:bg-primary-900 dark:text-primary-300': result.filters.type && result.filters.type[0] === 'questions',\n                    'bg-green-100 text-green-700 dark:bg-green-900 dark:text-green-300': result.filters.type && result.filters.type[0] === 'faq',\n                    'bg-blue-100 text-blue-700 dark:bg-blue-900 dark:text-blue-300': result.filters.type && result.filters.type[0] === 'docs'\n                  }\"\n                  class=\"inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium\"\n                  x-text=\"result.filters.type ? (typeLabels[result.filters.type[0]] || result.filters.type[0]) : ''\"\n                ></span>\n                \n                {{/* Category badge */}}\n                <span \n                  x-show=\"result.filters && result.filters.category\" \n                  class=\"inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium bg-gray-100 text-gray-700 dark:bg-gray-800 dark:text-gray-300\"\n                  x-text=\"result.filters.category ? result.filters.category[0] : ''\"\n                ></span>\n                \n                {{/* Difficulty badge */}}\n                <span \n                  x-show=\"result.filters && result.filters.difficulty\" \n                  class=\"inline-flex items-center rounded-full px-2 py-0.5 text-xs font-medium bg-amber-100 text-amber-700 dark:bg-amber-900 dark:text-amber-300\"\n                  x-text=\"result.filters.difficulty ? result.filters.difficulty[0] : ''\"\n                ></span>\n              </div>\n              \n              {{/* Title */}}\n              <h3 class=\"text-lg font-semibold text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors mb-2\" x-html=\"result.meta.title || 'Untitled'\"></h3>\n              \n              {{/* Excerpt */}}\n              <p class=\"text-sm text-gray-600 dark:text-gray-400 line-clamp-2\" x-html=\"result.excerpt\"></p>\n            </a>\n          </template>\n        </div>\n        \n        {{/* Loading State */}}\n        <div x-show=\"query && loading\" class=\"px-6 py-16 text-center\">\n          <div class=\"inline-flex items-center gap-3\">\n            <svg class=\"animate-spin h-8 w-8 text-primary-600\" fill=\"none\" viewBox=\"0 0 24 24\">\n              <circle class=\"opacity-25\" cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"4\"></circle>\n              <path class=\"opacity-75\" fill=\"currentColor\" d=\"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z\"></path>\n            </svg>\n            <div class=\"text-left\">\n              <p class=\"text-lg font-medium text-gray-900 dark:text-white\">Searching...</p>\n              <p class=\"text-sm text-gray-500 dark:text-gray-400\" x-text=\"'Finding results for &quot;' + query + '&quot;'\"></p>\n            </div>\n          </div>\n        </div>\n        \n        {{/* No Results - Only show if search has completed at least once */}}\n        <div x-show=\"query && results.length === 0 && !loading && hasSearched\" class=\"px-6 py-12 text-center\">\n          <svg class=\"mx-auto h-12 w-12 text-gray-400\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n            <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.172 16.172a4 4 0 015.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z\"></path>\n          </svg>\n          <h3 class=\"mt-4 text-lg font-semibold text-gray-900 dark:text-white\">No results found</h3>\n          <p class=\"mt-2 text-gray-600 dark:text-gray-400\" x-text=\"'No results for &quot;' + query + '&quot;'\"></p>\n          <button\n            @click=\"query = ''; $refs.searchInput.focus()\"\n            class=\"mt-4 text-primary-600 hover:text-primary-700 dark:text-primary-400 dark:hover:text-primary-300 font-medium\"\n          >\n            Clear search\n          </button>\n        </div>\n      </div>\n      \n      {{/* Footer */}}\n      <div class=\"border-t border-gray-200 dark:border-gray-800 px-4 py-3 bg-gray-50 dark:bg-gray-900/50\">\n        <div class=\"flex items-center justify-between text-xs text-gray-500 dark:text-gray-400\">\n          <div class=\"flex items-center gap-3\">\n            <span class=\"flex items-center gap-1\">\n              <kbd class=\"rounded bg-white dark:bg-gray-800 px-1.5 py-0.5 font-mono text-[10px] font-semibold border border-gray-300 dark:border-gray-700\">↑↓</kbd>\n              Navigate\n            </span>\n            <span class=\"flex items-center gap-1\">\n              <kbd class=\"rounded bg-white dark:bg-gray-800 px-1.5 py-0.5 font-mono text-[10px] font-semibold border border-gray-300 dark:border-gray-700\">↵</kbd>\n              Select\n            </span>\n            <span x-show=\"availableFilters.length > 0\" class=\"flex items-center gap-1\">\n              <svg class=\"h-3 w-3\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n                <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.293A1 1 0 013 6.586V4z\"></path>\n              </svg>\n              <span x-text=\"availableFilters.length + ' filters'\"></span>\n            </span>\n          </div>\n          <a href=\"https://hugoblox.com\" target=\"_blank\" rel=\"noopener\" class=\"flex items-center gap-1 hover:text-primary-600 dark:hover:text-primary-400 transition-colors\">\n            <svg class=\"h-3 w-3\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path d=\"M13 10V3L4 14h7v7l9-11h-7z\"/>\n            </svg>\n            Powered by Hugo Blox\n          </a>\n        </div>\n      </div>\n      \n    </div>\n  </div>\n</div>\n\n<script>\n  // Alpine.js component for search modal\n  function searchModal() {\n    return {\n      query: '',\n      results: [],\n      loading: false,\n      hasSearched: false,  // Track if at least one search has completed\n      selectedIndex: -1,\n      activeFilter: null,\n      availableFilters: [],\n      allFilters: [],\n      trendingSearches: {{ site.Params.hugoblox.search.suggestions | default (slice \"Search term 1\" \"Search term 2\") | jsonify }},\n      pagefind: null,\n      pagefindModulePath: window.hbb?.assetPaths?.pagefind ?? '/pagefind/pagefind.js',\n      \n      // i18n translations for content types\n      typeLabels: {\n        'questions': {{ i18n \"questions\" | default \"Questions\" | jsonify }},\n        'faq': {{ i18n \"faq\" | default \"FAQ\" | jsonify }},\n        'docs': {{ i18n \"docs\" | default \"Documentation\" | jsonify }}\n      },\n      \n      async init() {\n        // Initialize Pagefind\n        try {\n          this.pagefind = await import(this.pagefindModulePath);\n          await this.pagefind.init();\n          console.log('✓ Pagefind initialized');\n          \n          // Load available filters\n          await this.loadFilters();\n        } catch (error) {\n          console.error('Failed to initialize Pagefind:', error);\n        }\n        \n        // Keyboard navigation\n        this.$watch('$store.search.open', (open) => {\n          if (open) {\n            this.$nextTick(() => this.$refs.searchInput?.focus());\n            document.body.style.overflow = 'hidden';\n          } else {\n            document.body.style.overflow = '';\n            this.query = '';\n            this.results = [];\n            this.selectedIndex = -1;\n            this.hasSearched = false;  // Reset search state when modal closes\n          }\n        });\n        \n        // Arrow key and Enter navigation\n        window.addEventListener('keydown', (e) => {\n          if (!this.$store.search.open || this.results.length === 0) return;\n          \n          if (e.key === 'ArrowDown') {\n            e.preventDefault();\n            this.selectedIndex = this.selectedIndex < this.results.length - 1 ? this.selectedIndex + 1 : 0;\n            this.scrollToSelected();\n          } else if (e.key === 'ArrowUp') {\n            e.preventDefault();\n            this.selectedIndex = this.selectedIndex > 0 ? this.selectedIndex - 1 : this.results.length - 1;\n            this.scrollToSelected();\n          } else if (e.key === 'Enter' && this.selectedIndex >= 0) {\n            e.preventDefault();\n            const selected = this.results[this.selectedIndex];\n            if (selected) {\n              window.location.href = selected.url;\n              this.$store.search.open = false;\n            }\n          }\n        });\n      },\n      \n      scrollToSelected() {\n        this.$nextTick(() => {\n          const selectedEl = document.querySelector('.search-result:nth-child(' + (this.selectedIndex + 1) + ')');\n          if (selectedEl) {\n            selectedEl.scrollIntoView({ block: 'nearest', behavior: 'smooth' });\n          }\n        });\n      },\n\n      buildFilters(filterIndex) {\n        const filters = [];\n\n        if (filterIndex?.type) {\n          Object.entries(filterIndex.type).forEach(([value, count]) => {\n            filters.push({\n              category: 'type',\n              value,\n              label: this.typeLabels[value] || value.charAt(0).toUpperCase() + value.slice(1),\n              count,\n              filterKey: `type:${value}`\n            });\n          });\n        }\n\n        if (filterIndex?.category) {\n          Object.entries(filterIndex.category).forEach(([value, count]) => {\n            filters.push({\n              category: 'category',\n              value,\n              label: value,\n              count,\n              filterKey: `category:${value}`\n            });\n          });\n        }\n\n        if (filterIndex?.difficulty) {\n          Object.entries(filterIndex.difficulty).forEach(([value, count]) => {\n            filters.push({\n              category: 'difficulty',\n              value,\n              label: value,\n              count,\n              filterKey: `difficulty:${value}`\n            });\n          });\n        }\n\n        return filters;\n      },\n\n      mergeFilterCounts(filterCounts) {\n        if (!this.allFilters.length) {\n          return [];\n        }\n\n        return this.allFilters.map((filter) => {\n          const count = filterCounts?.[filter.category]?.[filter.value];\n          return {\n            ...filter,\n            count: typeof count === 'number' ? count : 0\n          };\n        });\n      },\n      \n      async search() {\n        if (!this.query.trim()) {\n          this.results = [];\n          this.hasSearched = false;\n          return;\n        }\n        \n        this.loading = true;\n        this.hasSearched = false;  // Reset until search completes\n        \n        try {\n          const options = {};\n          \n          // Apply active filter if selected\n          if (this.activeFilter) {\n            const [filterCategory, filterValue] = this.activeFilter.split(':');\n            options.filters = { [filterCategory]: filterValue };\n          }\n          \n          const search = await this.pagefind.search(this.query, options);\n          console.log('Search results:', search);\n          console.log('Search filters:', search.filters);\n          \n          // Process results\n          this.results = await Promise.all(\n            search.results.slice(0, 10).map(async (result) => {\n              const data = await result.data();\n              console.log('Result data:', data);\n              return {\n                id: data.url,\n                url: data.url,\n                meta: data.meta,\n                excerpt: data.excerpt,\n                filters: data.filters || {}\n              };\n            })\n          );\n\n          const filterCounts = search.totalFilters || search.filters || {};\n\n          if (this.allFilters.length) {\n            this.availableFilters = this.mergeFilterCounts(filterCounts);\n          } else {\n            this.availableFilters = this.buildFilters(filterCounts);\n          }\n          console.log('Final availableFilters array:', this.availableFilters);\n          \n          // Set first result as selected for keyboard navigation\n          if (this.results.length > 0) {\n            this.selectedIndex = 0;\n          }\n        } catch (error) {\n          console.error('Search error:', error);\n          this.results = [];\n        } finally {\n          this.loading = false;\n          this.hasSearched = true;  // Mark that search has completed\n        }\n      },\n      \n      async loadFilters() {\n        // Pre-load available filters from the full Pagefind index\n        try {\n          const filterIndex = await this.pagefind.filters();\n          console.log('Available Pagefind filters:', filterIndex);\n\n          const filters = this.buildFilters(filterIndex);\n          this.allFilters = filters;\n          this.availableFilters = filters;\n          console.log('Processed filters:', this.availableFilters);\n        } catch (error) {\n          console.error('Failed to load filters:', error);\n        }\n      }\n    };\n  }\n  \n  // Alpine store for global search state\n  document.addEventListener('alpine:init', () => {\n    Alpine.store('search', {\n      open: false\n    });\n  });\n</script>\n\n<style>\n  [x-cloak] { display: none !important; }\n</style>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/sidebar.html",
    "content": "{{- $context := .context -}}\n\n{{- $no_sidebar := ne .no_sidebar false -}}\n{{- $pad_sidebar := true -}}\n{{- $sidebar_dynamic_class := cond $no_sidebar (cond $pad_sidebar \"lg:hidden xl:block\" \"lg:hidden\") \"lg:sticky\" -}}\n\n{{- $root_section := cond (eq site.Home.Type \"docs\") site.Home $context.FirstSection -}}\n{{- $page_url := $context.RelPermalink -}}\n\n{{/* Only replace explicit mobile menu links with automated links for Docs pages */}}\n{{ if not $no_sidebar }}\n  {{/* Classes appended to `hb-sidebar-mobile-menu` are modified via sidebar JS, so do not @apply them to `hb-sidebar-mobile-menu` */}}\n  <div class=\"hb-sidebar-mobile-menu fixed inset-0 z-10 bg-white dark:bg-black/80 hidden\"></div>\n{{ end }}\n\n<!-- Explicit `transform` class as we toggle it in JS -->\n<aside class=\"hb-sidebar-container max-lg:[transform:translate3d(0,-100%,0)] {{ $sidebar_dynamic_class }}\">\n  <!-- Search bar on small screen -->\n  <div class=\"px-4 pt-4 lg:hidden\">\n    <!-- Currently, use the navbar search button instead -->\n    {{/* partial \"search.html\" */}}\n  </div>\n  <div class=\"hb-scrollbar lg:h-[calc(100vh-var(--navbar-height))]\">\n    <ul class=\"flex flex-col gap-1 lg:hidden\">\n      <!-- Navigation links -->\n      {{ template \"menu-links\" (dict \"context\" site.Home \"pageURL\" $page_url \"page\" $context \"toc\" true) -}}\n      {{ template \"custom-menu-links\" }}\n    </ul>\n\n    <!-- Sidebar on large screen -->\n    {{- if $no_sidebar -}}\n      <div class=\"max-xl:hidden h-0 w-64 shrink-0\"></div>\n    {{- else -}}\n      <ul class=\"flex flex-col gap-1 max-lg:hidden\">\n        {{ template \"menu-links\" (dict \"context\" $root_section \"page\" $context  \"pageURL\" $page_url) }}\n        {{ template \"custom-menu-links\" }}\n      </ul>\n    {{ end -}}\n  </div>\n\n</aside>\n\n{{- define \"menu-links\" -}}\n  {{ template \"link-tree\" (dict \"context\" .context \"level\" 0 \"page\" .page \"pageURL\" .pageURL \"toc\" (.toc | default false)) }}\n{{- end -}}\n\n{{- define \"link-tree\" -}}\n  {{- if ge .level 4 -}}\n    {{- return -}}\n  {{- end -}}\n\n  {{- $context := .context -}}\n  {{- $page := .page }}\n  {{- $page_url := .page.RelPermalink -}}\n  {{- $level := .level -}}\n  {{- $toc := .toc | default false -}}\n\n  {{- with $items := union .context.RegularPages .context.Sections -}}\n    {{- $items = where $items \"Params.sidebar.hidden\" \"!=\" true -}}\n    {{- if eq $level 0 -}}\n      {{- range $items.ByWeight }}\n        {{- $active := eq $page_url .RelPermalink -}}\n        {{- $is_expanded := or (.Params.sidebar.open) (.IsAncestor $page) $active | default false }}\n        <li class=\"{{ if $is_expanded }}open{{ end }}\">\n          {{- template \"custom-menu-link\" dict \"context\" . \"active\" $active \"title\" .LinkTitle \"link\" .RelPermalink -}}\n          {{- if and $toc $active -}}\n            {{- template \"mobile-toc\" dict \"page\" . -}}\n          {{- end -}}\n          {{- template \"link-tree\" dict \"context\" . \"page\" $page \"pageURL\" $page_url \"level\" (add $level 1) \"toc\" $toc -}}\n        </li>\n      {{- end -}}\n    {{- else -}}\n      <div class=\"ltr:pr-0 overflow-hidden\">\n        <ul class=\"hb-sidebar-list\">\n          {{- range $items.ByWeight }}\n            {{- $active := eq $page_url .RelPermalink -}}\n            {{- $is_expanded := or (.Params.sidebar.open) (.IsAncestor $page) $active | default false }}\n            {{- $title := .LinkTitle | default .File.BaseFileName -}}\n            <li class=\"flex flex-col {{ if $is_expanded }}open{{ end }}\">\n              {{- template \"custom-menu-link\" dict \"context\" . \"active\" $active \"title\" $title \"link\" .RelPermalink -}}\n              {{- if and $toc $active -}}\n                {{ template \"mobile-toc\" dict \"page\" . }}\n              {{- end }}\n              {{ template \"link-tree\" dict \"context\" . \"page\" $page \"pageURL\" $page_url \"level\" (add $level 1) \"toc\" $toc }}\n            </li>\n          {{- end -}}\n        </ul>\n      </div>\n    {{- end -}}\n  {{- end }}\n{{- end -}}\n\n{{- define \"mobile-toc\" -}}\n  {{ $page := .page }}\n  {{ with $page.Fragments.Headings }}\n    <ul class=\"hb-sidebar-mobile-toc\">\n      {{- range . }}\n        {{- with .Headings }}\n          {{- range . -}}\n            <li>\n              <a\n                href=\"#{{ anchorize .ID }}\"\n                class=\"hb-docs-link\"\n              >\n                {{- .Title -}}\n              </a>\n            </li>\n          {{ end -}}\n        {{ end -}}\n      {{ end -}}\n    </ul>\n  {{ end }}\n{{- end -}}\n\n{{- define \"custom-menu-links\" -}}\n  {{- range site.Menus.sidebar -}}\n    {{- $name := .Name -}}\n    {{ if eq .Params.type \"separator\" }}\n      <li class=\"[word-break:break-word] mt-5 mb-2 px-2 py-1.5 text-sm font-semibold text-gray-900 first:mt-0 dark:text-gray-100 cursor-default\">\n        <span>{{ $name }}</span>\n      </li>\n    {{ else }}\n      <li>{{ template \"custom-menu-link\" dict \"active\" false \"title\" $name \"link\" (.URL | relLangURL) }}</li>\n    {{ end }}\n  {{- end -}}\n{{- end -}}\n\n{{- define \"custom-menu-link\" -}}\n  {{- $is_external := strings.HasPrefix .link \"http\" -}}\n  {{- $open := .open | default false -}}\n  <a\n    class=\"hb-sidebar-custom-link\n    {{- if .active }}\n      sidebar-active-item bg-primary-100 font-semibold text-primary-800 dark:bg-primary-300 dark:text-primary-900\n    {{- else }}\n      text-gray-500 hover:bg-gray-100 hover:text-gray-900 dark:text-gray-300 dark:hover:bg-primary-800 dark:hover:text-gray-50\n    {{- end -}}\"\n    href=\"{{ .link }}\"\n    {{ if $is_external }}target=\"_blank\" rel=\"noreferer\"{{ end }}\n  >\n    {{- .title -}}\n    {{- with .context }}\n      {{- if or .RegularPages .Sections }}\n        <span data-hb-sidebar-toggle>\n            <svg fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" class=\"h-[18px] min-w-[18px] rounded-sm p-0.5 hover:bg-gray-800/5 dark:hover:bg-gray-100/5\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 5l7 7-7 7\" class=\"origin-center transition-transform rtl:-rotate-180\"></path></svg>\n        </span>\n      {{- end }}\n    {{ end -}}\n  </a>\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/slides-embed.html",
    "content": "{{/*\n  Hugo Blox Slides Embed Component - Reusable iframe embed with fullscreen support\n  Usage: {{ partial \"components/slides-embed.html\" (dict \"page\" . \"slides_slug\" .Params.slides) }}\n  \n  Params:\n  - page: current page context\n  - slides_slug: slug of slides to embed (e.g., \"example\")\n  - show_actions: (optional) show open/speaker notes links, default true\n  - title: (optional) title for iframe, defaults to page title\n*/}}\n\n{{ $page := .page }}\n{{ $slides_slug := .slides_slug }}\n{{ $show_actions := .show_actions | default true }}\n{{ $slides_label := i18n \"slides\" | default \"Slides\" }}\n{{ $present_fullscreen_label := i18n \"present_fullscreen\" | default \"Present (fullscreen)\" }}\n{{ $enter_fullscreen_label := i18n \"enter_fullscreen\" | default \"Enter fullscreen\" }}\n{{ $exit_fullscreen_label := i18n \"exit_fullscreen\" | default \"Exit fullscreen\" }}\n{{ $speaker_notes_hint := i18n \"speaker_notes_hint\" | default \"for speaker notes\" }}\n{{ $slides_not_found_label := i18n \"slides_not_found\" | default \"Slides not found\" }}\n{{ $embed_title := .title | default (printf \"%s - %s\" $page.Title $slides_label) }}\n\n{{/* Enable Alpine.js for fullscreen functionality */}}\n{{ $page.Store.Set \"has_alpine\" true }}\n\n{{/* Get slides page */}}\n{{ $slides_page := site.GetPage (printf \"/slides/%s\" $slides_slug) }}\n{{ $scr := newScratch }}\n{{ if $slides_page }}\n  {{ $scr.Set \"slides_url\" $slides_page.RelPermalink }}\n  {{ $scr.Set \"present_url\" $slides_page.RelPermalink }}\n  {{ $scr.Set \"embed_url\" $slides_page.RelPermalink }}\n  {{ $present_format := $slides_page.OutputFormats.Get \"present\" }}\n  {{ if not $present_format }}\n    {{ $present_format = $slides_page.OutputFormats.Get \"Present\" }}\n  {{ end }}\n  {{ with $present_format }}\n    {{ $scr.Set \"present_url\" .RelPermalink }}\n    {{ $scr.Set \"embed_url\" (printf \"%s?embed=1\" .RelPermalink) }}\n  {{ end }}\n{{ end }}\n{{ $slides_url := $scr.Get \"slides_url\" }}\n{{ $present_url := $scr.Get \"present_url\" | default $slides_url }}\n{{ $embed_url := $scr.Get \"embed_url\" | default $slides_url }}\n\n{{ if $slides_page }}\n<div \n  x-data=\"{ \n    isFullscreen: false,\n    toggleFullscreen() {\n      const container = this.$refs.slideContainer;\n      if (!this.isFullscreen) {\n        if (container.requestFullscreen) {\n          container.requestFullscreen();\n        } else if (container.webkitRequestFullscreen) {\n          container.webkitRequestFullscreen();\n        } else if (container.msRequestFullscreen) {\n          container.msRequestFullscreen();\n        }\n      } else {\n        if (document.exitFullscreen) {\n          document.exitFullscreen();\n        } else if (document.webkitExitFullscreen) {\n          document.webkitExitFullscreen();\n        } else if (document.msExitFullscreen) {\n          document.msExitFullscreen();\n        }\n      }\n    }\n  }\"\n  @fullscreenchange.window=\"isFullscreen = document.fullscreenElement === $refs.slideContainer\"\n  @webkitfullscreenchange.window=\"isFullscreen = document.webkitFullscreenElement === $refs.slideContainer\"\n  class=\"mb-12\"\n>\n  {{/* Slides iframe container - wrapper for fullscreen API */}}\n  <div \n    x-ref=\"slideContainer\"\n    class=\"relative w-full bg-black rounded-lg shadow-2xl overflow-visible\"\n    style=\"aspect-ratio: 16 / 9;\"\n    :class=\"isFullscreen ? 'h-screen' : ''\"\n  >\n    <iframe\n      src=\"{{ $embed_url }}\"\n      class=\"w-full h-full border-0 rounded-lg\"\n      allowfullscreen\n      allow=\"autoplay\"\n      title=\"{{ $embed_title }}\"\n      loading=\"lazy\"\n    ></iframe>\n    \n    {{/* Fullscreen toggle button - inside container for fullscreen visibility */}}\n    <button\n      @click=\"toggleFullscreen()\"\n      class=\"absolute top-4 right-4 p-3 bg-white/95 dark:bg-gray-800/95 hover:bg-white dark:hover:bg-gray-800 text-gray-700 dark:text-gray-200 rounded-lg shadow-xl border border-gray-200 dark:border-gray-700 transition-all duration-200 hover:scale-110 focus:outline-none focus:ring-2 focus:ring-primary-500 backdrop-blur-sm\"\n      :aria-label=\"isFullscreen ? {{ $exit_fullscreen_label | jsonify }} : {{ $enter_fullscreen_label | jsonify }}\"\n      type=\"button\"\n      style=\"z-index: 9999;\"\n    >\n      {{/* Expand icon (when not fullscreen) */}}\n      <svg \n        x-show=\"!isFullscreen\"\n        xmlns=\"http://www.w3.org/2000/svg\" \n        class=\"h-5 w-5\" \n        fill=\"none\" \n        viewBox=\"0 0 24 24\" \n        stroke=\"currentColor\"\n        stroke-width=\"2\"\n      >\n        <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 8V4m0 0h4M4 4l5 5m11-1V4m0 0h-4m4 0l-5 5M4 16v4m0 0h4m-4 0l5-5m11 5l-5-5m5 5v-4m0 4h-4\" />\n      </svg>\n      {{/* Compress icon (when fullscreen) */}}\n      <svg \n        x-show=\"isFullscreen\"\n        x-cloak\n        xmlns=\"http://www.w3.org/2000/svg\" \n        class=\"h-5 w-5\" \n        fill=\"none\" \n        viewBox=\"0 0 24 24\" \n        stroke=\"currentColor\"\n        stroke-width=\"2\"\n      >\n        <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 9V4.5M9 9H4.5M9 9L3.75 3.75M9 15v4.5M9 15H4.5M9 15l-5.25 5.25M15 9h4.5M15 9V4.5M15 9l5.25-5.25M15 15h4.5M15 15v4.5m0-4.5l5.25 5.25\" />\n      </svg>\n    </button>\n  </div>\n\n  {{ if $show_actions }}\n  {{/* Action links below embed */}}\n  <div class=\"mt-4 flex items-center justify-between text-sm text-gray-600 dark:text-gray-400\">\n    <div class=\"flex items-center gap-4\">\n      {{/* Open in new tab */}}\n      <a \n        href=\"{{ $present_url }}\"\n        target=\"_blank\"\n        rel=\"noopener\"\n        class=\"inline-flex items-center gap-1 hover:text-primary-600 dark:hover:text-primary-400 transition-colors\"\n      >\n        <svg xmlns=\"http://www.w3.org/2000/svg\" class=\"h-4 w-4\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\">\n          <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14\" />\n        </svg>\n        <span>{{ $present_fullscreen_label }}</span>\n      </a>\n      \n      {{/* Presentation mode hint */}}\n      <span class=\"text-xs\">\n        <kbd class=\"px-2 py-1 text-xs font-semibold text-gray-800 bg-gray-100 border border-gray-200 rounded dark:bg-gray-600 dark:text-gray-100 dark:border-gray-500\">S</kbd>\n        {{ $speaker_notes_hint }}\n      </span>\n    </div>\n  </div>\n  {{ end }}\n</div>\n{{ else }}\n  <p class=\"text-sm text-red-600 dark:text-red-400\">{{ $slides_not_found_label }}: {{ $slides_slug }}</p>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/components/toc.html",
    "content": "{{/* Table of Contents */}}\n\n{{- $toc := .Params.toc | default true -}}\n\n{{/* UI Text */}}\n{{- $on_this_page := T \"on_this_page\" }}\n{{- $edit_this_page := T \"edit_page\" }}\n\n<nav class=\"hb-toc order-last hidden w-64 shrink-0 xl:block print:hidden px-4\" aria-label=\"table of contents\">\n  {{ partial \"functions/get_hook\" (dict \"hook\" \"toc-start\" \"context\" .) }}\n  {{- if $toc }}\n  <div class=\"hb-scrollbar text-sm [hyphens:auto] sticky top-16 overflow-y-auto pr-4 pt-6 max-h-[calc(100vh-var(--navbar-height)-env(safe-area-inset-bottom))] -mr-4 rtl:-ml-4\">\n    {{- with .Fragments.Headings -}}\n    <p class=\"mb-4 font-semibold tracking-tight\">{{ $on_this_page }}</p>\n    {{- range . -}}\n    <ul>\n      {{- with .Headings -}}{{ template \"toc-headings\" (dict \"headings\" . \"level\" 0) }}{{- end -}}\n    </ul>\n    {{- end -}}\n    {{- end -}}\n\n    {{- $class := \"\" -}}\n    {{- if .Fragments.Headings -}}\n      {{- $class = \"mt-8 border-t dark:border-neutral-700 pt-8\" -}}\n    {{- end -}}\n\n    {{/* Page Features */}}\n    {{- if site.Params.hugoblox.repository.url | and .Params.editable -}}\n    <div class=\"{{ $class }} sticky bottom-0 flex flex-col items-start gap-2 pb-8\">\n\n        {{ $edit_url := site.Params.hugoblox.repository.url | default \"\" }}\n        {{ $branch := site.Params.hugoblox.repository.branch | default \"main\" }}\n        {{ $dir := site.Params.hugoblox.repository.content_dir | default \"content\" }}\n        {{- with .File -}}{{ $edit_url = urls.JoinPath $edit_url \"edit\" $branch $dir (replace .Path \"\\\\\" \"/\") }}{{- end -}}\n        {{- with .Params.edit_url -}}{{ $edit_url = . }}{{- end -}}\n        <a class=\"text-xs font-medium text-gray-500 hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-100 contrast-more:text-gray-800 contrast-more:dark:text-gray-50\" href=\"{{ $edit_url }}\" target=\"_blank\" rel=\"noreferer\">{{ $edit_this_page }}</a>\n\n    </div>\n    {{- end -}}\n\n    {{ partial \"components/backlinks\" . }}\n\n    {{ partial \"functions/get_hook\" (dict \"hook\" \"toc-end\" \"context\" .) }}\n\n  </div>\n  {{ end -}}\n</nav>\n\n{{/* Render Headings */}}\n{{- define \"toc-headings\" -}}\n  {{- $headings := .headings -}}\n  {{- $level := .level -}}\n  {{- if ge $level 4 -}}\n    {{ return }}\n  {{- end -}}\n\n  {{- $padding := (mul $level 4) -}}{{/* Requires inclusion in Tailwind safelist!! */}}\n  {{- $class := cond (eq $level 0) \"font-semibold\" (printf \"pl-%d rtl:pr-%d\" $padding $padding) -}}\n\n  {{- range $headings }}\n    {{- if .Title }}\n      <li class=\"my-2 scroll-my-6 scroll-py-6\">\n        <a class=\"{{ $class }} inline-block text-gray-500 hover:text-gray-900 dark:text-gray-400 dark:hover:text-gray-300 w-full break-words\" href=\"#{{ anchorize .ID }}\">\n          {{- .Title | plainify | htmlUnescape -}}\n        </a>\n      </li>\n    {{- end -}}\n\n    {{- with .Headings -}}\n      {{ template \"toc-headings\" (dict \"headings\" . \"level\" (add $level 1)) }}\n    {{- end -}}\n\n  {{- end -}}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/css.html",
    "content": "{{/* HB Tailwind CSS v4 Processing with Hugo's Native Function */}}\n{{ with resources.Get \"css/main.css\" }}\n  {{/* Build dynamic @source list and prepend it before main.css */}}\n  {{ $dynamic_sources_str := partial \"tailwind_sources.html\" . }}\n  {{ $dynamic_sources_res := resources.FromString \"css/_dynamic_sources.css\" $dynamic_sources_str }}\n  {{ $main_css := . }}\n  {{ $entry := slice $dynamic_sources_res $main_css | resources.Concat \"css/_entry.css\" }}\n  {{ $opts := dict \"minify\" (not hugo.IsDevelopment) }}\n  {{ with $entry | css.TailwindCSS $opts }}\n    {{ if hugo.IsDevelopment }}\n      <link rel=\"stylesheet\" href=\"{{ .RelPermalink }}\">\n    {{ else }}\n      {{ with . | fingerprint }}\n        <link rel=\"stylesheet\" href=\"{{ .RelPermalink }}\" integrity=\"{{ .Data.Integrity }}\" crossorigin=\"anonymous\">\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/docs_layout.html",
    "content": "<div class=\"mx-auto flex max-w-screen-xl\">\n  {{ partial \"components/sidebar.html\" (dict \"context\" . \"no_sidebar\" false) }}\n  {{ partial \"components/toc.html\" . }}\n  <article class=\"flex w-full min-w-0 min-h-[calc(100vh-var(--navbar-height))] justify-center break-words pb-8 pr-[calc(env(safe-area-inset-right)-1.5rem)]\">\n    <main class=\"prose prose-slate lg:prose-xl dark:prose-invert w-full min-w-0 max-w-6xl px-6 pt-4 md:px-12\">\n      {{ if (.Params.show_breadcrumb | default true) }}\n      <div class=\"mb-1\">\n        {{ partial \"components/breadcrumb.html\" . }}\n      </div>\n      {{ end }}\n\n      {{/* Pagefind metadata for search filtering */}}\n      <div class=\"content\" data-pagefind-body>\n        <h1 data-pagefind-meta=\"title\">{{ .Title }}</h1>\n        {{ .Content }}\n\n        {{/* Use hidden spans for filter values - best practice per Pagefind docs */}}\n        <span data-pagefind-filter=\"type\" style=\"display:none;\">docs</span>\n        {{ with .Params.categories }}\n            <span data-pagefind-filter=\"category\" style=\"display:none;\">{{ index . 0 }}</span>\n        {{ end }}\n      </div>\n\n      {{ partial \"components/last-edited.html\" . }}\n      {{ .Scratch.Set \"invert_pager\" true }}\n      {{ partial \"components/next-in-series.html\" . }}\n      {{ partial \"comments.html\" . }}\n    </main>\n  </article>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/build_links.html",
    "content": "{{/*\n  Hugo Blox Page Link Builder\n  Build a normalized list of page links from:\n  - Author-provided front matter `links` (array order respected)\n  - Auto-detected resources (local PDF, cite.bib)\n  - Derived identifiers from `hugoblox.ids`\n  - Associated internal `projects` references\n\n  Inputs: dict { \"page\": . , \"is_list\": 0|1 }\n  Output: slice of dicts with fields: type, url, icon, labelKey, label, contexts, rel\n\n  Deprecations handled with warnings and mapped:\n    - external_link -> type: site\n    - url_pdf -> type: pdf\n    - url_preprint -> type: preprint\n    - url_code -> type: code\n    - url_dataset -> type: dataset\n    - url_poster -> type: poster\n    - url_project -> type: project\n    - url_slides -> type: slides\n    - url_source -> type: source\n    - url_video -> type: video\n*/}}\n\n{{ $page := .page }}\n{{ $is_list := .is_list }}\n\n{{ $types := site.Data.link_types.types }}\n{{ $derived := site.Data.link_types.derived }}\n\n{{ $links := slice }}\n{{ $seen := newScratch }}\n{{ $seen.Set \"set\" (dict) }}\n\n{{/* 1) Author-provided links (array order) */}}\n{{ with $page.Params.links }}\n  {{ range . }}\n    {{/* Support new fields: type, url, icon (pack/name), label, contexts, rel; legacy: name */}}\n    {{ $type := .type | default \"custom\" }}\n    {{ $url := .url | default \"\" }}\n    {{/* Optional provider+id derivation for common platforms */}}\n    {{ if and (not $url) .id }}\n      {{ if eq $type \"doi\" }}\n        {{ $url = replace (index (index $derived \"doi\") \"url_template\") \"{id}\" (printf \"%v\" .id) }}\n      {{ else if and (eq $type \"preprint\") (eq .provider \"arxiv\") }}\n        {{ $url = replace (index (index $derived \"arxiv\") \"url_template\") \"{id}\" (printf \"%v\" .id) }}\n      {{ else if and (eq $type \"preprint\") (eq .provider \"openreview\") }}\n        {{ $url = replace (index (index $derived \"openreview\") \"url_template\") \"{id}\" (printf \"%v\" .id) }}\n      {{ end }}\n    {{ end }}\n    {{ $typeF := $type }}\n    {{ $urlF := $url }}\n    {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n    {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n      {{ $seen.SetInMap \"set\" $keyF true }}\n      {{ $links = $links | append (dict\n          \"type\" $typeF\n          \"url\" $urlF\n          \"icon\" (.icon | default (index (index $types $typeF) \"icon\") | default \"hero/link\")\n          \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n          \"label\" (.label | default .name)\n          \"contexts\" (.contexts | default (slice \"list\" \"page\"))\n          \"rel\" .rel\n        ) }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* 2) Associated projects (internal) */}}\n{{ with $page.Params.projects }}\n  {{ range . }}\n    {{ with (site.GetPage (printf \"project/%s\" .)) }}\n      {{ $typeF := \"project\" }}\n      {{ $urlF := .RelPermalink }}\n      {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n      {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n        {{ $seen.SetInMap \"set\" $keyF true }}\n        {{ $links = $links | append (dict\n            \"type\" $typeF\n            \"url\" $urlF\n            \"icon\" (index (index $types $typeF) \"icon\")\n            \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n            \"contexts\" (slice \"list\" \"page\")\n          ) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* 2b) Slides relation parameter (legacy but common) */}}\n{{ with $page.Params.slides }}\n  {{ if reflect.IsMap . }}\n    {{/* Skip: slides map is Reveal.js config for slide decks. */}}\n  {{ else if reflect.IsSlice . }}\n    {{ range . }}\n      {{ with (site.GetPage (printf \"slides/%s\" .)) }}\n        {{ $typeF := \"slides\" }}\n        {{ $urlF := .RelPermalink }}\n        {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n        {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n          {{ $seen.SetInMap \"set\" $keyF true }}\n          {{ $links = $links | append (dict\n              \"type\" $typeF\n              \"url\" $urlF\n              \"icon\" (index (index $types $typeF) \"icon\")\n              \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n              \"contexts\" (slice \"list\" \"page\")\n            ) }}\n        {{ end }}\n      {{ else }}\n        {{ warnf \"`slides` relation could not resolve to a page for %s\" $page.File.Path }}\n      {{ end }}\n    {{ end }}\n  {{ else }}\n    {{ with (site.GetPage (printf \"slides/%s\" .)) }}\n      {{ $typeF := \"slides\" }}\n      {{ $urlF := .RelPermalink }}\n      {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n      {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n        {{ $seen.SetInMap \"set\" $keyF true }}\n        {{ $links = $links | append (dict\n            \"type\" $typeF\n            \"url\" $urlF\n            \"icon\" (index (index $types $typeF) \"icon\")\n            \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n            \"contexts\" (slice \"list\" \"page\")\n          ) }}\n      {{ end }}\n    {{ else }}\n      {{ warnf \"`slides` relation could not resolve to a page for %s\" $page.File.Path }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* 3) Auto-detected resources (local PDF by content basename, cite.bib) */}}\n{{ with $page.File.ContentBaseName }}\n  {{ with ($page.Resources.GetMatch (printf \"%s.pdf\" .)) }}\n    {{ $typeF := \"pdf\" }}\n    {{ $urlF := .RelPermalink }}\n    {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n    {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n      {{ $seen.SetInMap \"set\" $keyF true }}\n      {{ $links = $links | append (dict\n          \"type\" $typeF\n          \"url\" $urlF\n          \"icon\" (index (index $types $typeF) \"icon\")\n          \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n          \"contexts\" (slice \"list\" \"page\")\n        ) }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ with ($page.Resources.GetMatch \"cite.bib\") }}\n  {{ $typeF := \"bibtex\" }}\n  {{ $urlF := .RelPermalink }}\n  {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n  {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n    {{ $seen.SetInMap \"set\" $keyF true }}\n    {{ $links = $links | append (dict\n        \"type\" $typeF\n        \"url\" $urlF\n        \"icon\" (index (index $types $typeF) \"icon\")\n        \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n        \"contexts\" (slice \"list\" \"page\")\n      ) }}\n  {{ end }}\n{{ end }}\n\n{{/* 4) Derived links from identifiers under `hugoblox.ids` */}}\n{{ with $page.Params.hugoblox }}\n  {{ with .ids }}\n    {{ range $key, $val := . }}\n      {{ with (index $derived $key) }}\n        {{ $der := . }}\n        {{ $typeF := index $der \"type\" }}\n        {{ $urlF := replace (index $der \"url_template\") \"{id}\" (printf \"%v\" $val) }}\n        {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n        {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n          {{ $seen.SetInMap \"set\" $keyF true }}\n          {{ $links = $links | append (dict\n              \"type\" $typeF\n              \"url\" $urlF\n              \"icon\" (index $der \"icon\")\n              \"labelKey\" (index $der \"label_i18n\")\n              \"contexts\" (slice \"list\" \"page\")\n            ) }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* 5) Legacy fields -> deprecation warnings and normalized items */}}\n{{/* external_link */}}\n{{ with $page.Params.external_link }}\n  {{ warnf \"`external_link` is deprecated. Use `links: [{type: site, url: ...}]` in %s\" $page.File.Path }}\n  {{ $typeF := \"site\" }}\n  {{ $urlF := . }}\n  {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n  {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n    {{ $seen.SetInMap \"set\" $keyF true }}\n    {{ $links = $links | append (dict\n        \"type\" $typeF\n        \"url\" $urlF\n        \"icon\" (index (index $types $typeF) \"icon\")\n        \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n        \"contexts\" (slice \"list\" \"page\")\n      ) }}\n  {{ end }}\n{{ end }}\n{{/* top-level doi */}}\n{{ with $page.Params.doi }}\n  {{ warnf \"Top-level `doi` is deprecated. Use `hugoblox.ids: { doi: ... }` in %s\" $page.File.Path }}\n  {{ with (index $derived \"doi\") }}\n    {{ $der := . }}\n    {{ $typeF := index $der \"type\" }}\n    {{ $urlF := replace (index $der \"url_template\") \"{id}\" (printf \"%v\" $page.Params.doi) }}\n    {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n    {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n      {{ $seen.SetInMap \"set\" $keyF true }}\n      {{ $links = $links | append (dict\n          \"type\" $typeF\n          \"url\" $urlF\n          \"icon\" (index $der \"icon\")\n          \"labelKey\" (index $der \"label_i18n\")\n          \"contexts\" (slice \"list\" \"page\")\n        ) }}\n    {{ end }}\n  {{ else }}\n    {{ $typeF := \"doi\" }}\n    {{ $urlF := printf \"https://doi.org/%v\" $page.Params.doi }}\n    {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n    {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n      {{ $seen.SetInMap \"set\" $keyF true }}\n      {{ $links = $links | append (dict\n          \"type\" $typeF\n          \"url\" $urlF\n          \"icon\" (index (index $types $typeF) \"icon\")\n          \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n          \"contexts\" (slice \"list\" \"page\")\n        ) }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{/* Map of legacy url_* to new types */}}\n{{ $legacy := dict\n  \"url_pdf\" \"pdf\"\n  \"url_preprint\" \"preprint\"\n  \"url_code\" \"code\"\n  \"url_dataset\" \"dataset\"\n  \"url_poster\" \"poster\"\n  \"url_project\" \"project\"\n  \"url_slides\" \"slides\"\n  \"url_source\" \"source\"\n  \"url_video\" \"video\"\n}}\n{{ range $legacyKey, $legacyType := $legacy }}\n  {{ with index $page.Params $legacyKey }}\n    {{ warnf \"`%s` is deprecated. Use `links: [{type: %s, url: ...}]` in %s\" $legacyKey $legacyType $page.File.Path }}\n    {{/* Resolve relative resource if present */}}\n    {{ $u := . }}\n    {{ with ($page.Resources.GetMatch $u) }}\n      {{ $u = .RelPermalink }}\n    {{ else }}\n      {{ $u = $u | relURL }}\n    {{ end }}\n    {{ $typeF := $legacyType }}\n    {{ $urlF := $u }}\n    {{ $keyF := printf \"%s::%s\" $typeF $urlF }}\n    {{ if not ($seen.Get (printf \"set.%s\" $keyF)) }}\n      {{ $seen.SetInMap \"set\" $keyF true }}\n      {{ $links = $links | append (dict\n          \"type\" $typeF\n          \"url\" $urlF\n          \"icon\" (index (index $types $typeF) \"icon\")\n          \"labelKey\" (index (index $types $typeF) \"label_i18n\")\n          \"contexts\" (slice \"list\" \"page\")\n        ) }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{- return $links -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/coerce_bool.html",
    "content": "{{ $value := .value }}\n{{ $result := .default }}\n{{ if ne $value nil }}\n  {{ $valueType := printf \"%T\" $value }}\n  {{ if eq $valueType \"bool\" }}\n    {{ $result = $value }}\n  {{ else if or (eq $valueType \"int\") (eq $valueType \"int8\") (eq $valueType \"int16\") (eq $valueType \"int32\") (eq $valueType \"int64\") (eq $valueType \"uint\") (eq $valueType \"uint8\") (eq $valueType \"uint16\") (eq $valueType \"uint32\") (eq $valueType \"uint64\") }}\n    {{ $result = ne (int $value) 0 }}\n  {{ else if or (eq $valueType \"float32\") (eq $valueType \"float64\") }}\n    {{ $result = ne (float $value) 0 }}\n  {{ else if eq $valueType \"string\" }}\n    {{ $trimmed := lower (strings.TrimSpace $value) }}\n    {{ if in (slice \"1\" \"true\" \"yes\" \"y\" \"on\") $trimmed }}\n      {{ $result = true }}\n    {{ else if in (slice \"0\" \"false\" \"no\" \"n\" \"off\") $trimmed }}\n      {{ $result = false }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ return $result }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/coerce_int.html",
    "content": "{{ $value := .value }}\n{{ $result := .default }}\n{{ if ne $value nil }}\n  {{ $valueType := printf \"%T\" $value }}\n  {{ if or (eq $valueType \"int\") (eq $valueType \"int8\") (eq $valueType \"int16\") (eq $valueType \"int32\") (eq $valueType \"int64\") (eq $valueType \"uint\") (eq $valueType \"uint8\") (eq $valueType \"uint16\") (eq $valueType \"uint32\") (eq $valueType \"uint64\") (eq $valueType \"float32\") (eq $valueType \"float64\") }}\n    {{ $result = int $value }}\n  {{ else if eq $valueType \"string\" }}\n    {{ $trimmed := strings.TrimSpace $value }}\n    {{ if gt (len (findRE \"^-?[0-9]+$\" $trimmed)) 0 }}\n      {{ $result = int $trimmed }}\n    {{ else if gt (len (findRE \"^-?[0-9]*\\\\.[0-9]+$\" $trimmed)) 0 }}\n      {{ $result = int (float $trimmed) }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ if isset . \"min\" }}\n  {{ if lt $result .min }}\n    {{ $result = .min }}\n  {{ end }}\n{{ end }}\n{{ if isset . \"max\" }}\n  {{ if gt $result .max }}\n    {{ $result = .max }}\n  {{ end }}\n{{ end }}\n{{ return $result }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/deep_merge.html",
    "content": "{{/* Pragmatic deep merge for block sections: shallow merge + merge 'content' and 'design' submaps if present. b overrides a. */}}\n{{- $a := .a -}}\n{{- $b := .b -}}\n{{- if and (reflect.IsMap $a) (reflect.IsMap $b) -}}\n  {{- $result := merge $a $b -}}\n  {{- /* merge 'content' submap */ -}}\n  {{- $ac := index $a \"content\" -}}\n  {{- $bc := index $b \"content\" -}}\n  {{- if and (reflect.IsMap $ac) (reflect.IsMap $bc) -}}\n    {{- $result = merge $result (dict \"content\" (merge $ac $bc)) -}}\n  {{- end -}}\n  {{- /* merge 'design' submap */ -}}\n  {{- $ad := index $a \"design\" -}}\n  {{- $bd := index $b \"design\" -}}\n  {{- if and (reflect.IsMap $ad) (reflect.IsMap $bd) -}}\n    {{- $result = merge $result (dict \"design\" (merge $ad $bd)) -}}\n  {{- end -}}\n  {{- return $result -}}\n{{- else -}}\n  {{- return $b -}}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/demo_theme_styles.html",
    "content": "{{/*\n  HugoBlox Theme Engine: Demo Theme Styles\n  Generates CSS variables for ALL available theme packs.\n  Used for the \"Theme Pack Chooser\" demo feature.\n*/}}\n\n{{ $typography_config := .typography }}\n{{ $layout_config := .layout }}\n\n<style>\n  {{ range $pack_name, $pack_data := site.Data.themes }}\n    {{ if $pack_data.hugoblox }}\n      {{ $theme := $pack_data.hugoblox }}\n      \n      {{/* Get light/dark mode data */}}\n      {{ $light_data := $theme.light | default $theme }}\n      {{ $dark_data := $theme.dark | default $theme }}\n      \n      {{/* 1. Light Mode Variables */}}\n      [data-theme-pack=\"{{ $pack_name }}\"] {\n        {{ partial \"functions/theme_variables\" (dict \"data\" $light_data \"is_dark\" false \"typography\" $typography_config \"layout\" $layout_config) | safeCSS }}\n      }\n\n      {{/* 2. Dark Mode Variables */}}\n      [data-theme-pack=\"{{ $pack_name }}\"].dark,\n      .dark [data-theme-pack=\"{{ $pack_name }}\"] {\n        {{ partial \"functions/theme_variables\" (dict \"data\" $dark_data \"is_dark\" true \"typography\" $typography_config \"layout\" $layout_config) | safeCSS }}\n      }\n    {{ end }}\n  {{ end }}\n</style>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/embed/github.html",
    "content": "{{/*\n  Hugo Blox GitHub Platform Configuration\n  Part of Hugo Blox embed system\n  \n  Parameters:\n  - resource: repository identifier (e.g., \"owner/repo\")\n  - type: \"repo\", \"gist\", etc.\n  - user: username/organization\n  - customUrl: optional override URL\n*/}}\n\n{{- $resource := .resource -}}\n{{- $type := .type | default \"repo\" -}}\n{{- $user := .user -}}\n{{- $customUrl := .customUrl -}}\n{{- $showThumbnail := .showThumbnail | default false -}}\n{{- $width := .width | default 600 -}}\n{{- $height := .height | default 315 -}}\n{{- $quality := .quality | default 85 -}}\n{{- $formats := .formats | default (slice \"avif\" \"webp\" \"jpg\") -}}\n\n{{- $config := dict -}}\n\n{{- if $resource -}}\n  {{- if eq $type \"repo\" -}}\n    {{- if $showThumbnail -}}\n      {{- $config = dict \n          \"apiUrl\" (print \"https://api.github.com/repos/\" $resource)\n          \"repoLink\" (print \"https://github.com/\" $resource)\n          \"imageUrl\" (print \"https://opengraph.githubassets.com/0/\" $resource)\n          \"icon\" \"code-bracket\"\n          \"brandColors\" (slice \"slate-800\" \"slate-900\")\n          \"typeColor\" \"primary-500\"\n          \"isImageEmbed\" true\n          \"imageProcessing\" (dict\n            \"width\" $width\n            \"height\" $height\n            \"quality\" $quality\n            \"formats\" $formats\n            \"sizes\" (slice 400 600 800)\n          )\n          \"statsConfig\" (dict \n            \"stars\" (dict \"icon\" \"star\" \"color\" \"yellow-500\" \"field\" \"stargazers_count\")\n            \"forks\" (dict \"icon\" \"git-fork\" \"color\" \"primary-500\" \"field\" \"forks_count\")\n            \"issues\" (dict \"icon\" \"exclamation-circle\" \"color\" \"red-500\" \"field\" \"open_issues_count\")\n          )\n          \"titleField\" \"name\"\n          \"descriptionField\" \"description\"\n          \"subtypeField\" \"language\"\n          \"ownerField\" \"owner.login\"\n      -}}\n    {{- else -}}\n      {{- $config = dict \n          \"apiUrl\" (print \"https://api.github.com/repos/\" $resource)\n          \"repoLink\" (print \"https://github.com/\" $resource)\n          \"icon\" \"code-bracket\"\n          \"brandColors\" (slice \"slate-800\" \"slate-900\")\n          \"typeColor\" \"primary-500\"\n          \"statsConfig\" (dict \n            \"stars\" (dict \"icon\" \"star\" \"color\" \"yellow-500\" \"field\" \"stargazers_count\")\n            \"forks\" (dict \"icon\" \"git-fork\" \"color\" \"primary-500\" \"field\" \"forks_count\")\n            \"issues\" (dict \"icon\" \"exclamation-circle\" \"color\" \"red-500\" \"field\" \"open_issues_count\")\n          )\n          \"titleField\" \"name\"\n          \"descriptionField\" \"description\"\n          \"subtypeField\" \"language\"\n          \"ownerField\" \"owner.login\"\n      -}}\n    {{- end -}}\n  {{- else if eq $type \"gist\" -}}\n    {{- $config = dict \n        \"apiUrl\" (print \"https://api.github.com/gists/\" $resource)\n        \"repoLink\" (print \"https://gist.github.com/\" $resource)\n        \"icon\" \"document-text\"\n        \"brandColors\" (slice \"slate-800\" \"slate-900\")\n        \"typeColor\" \"secondary-500\"\n        \"titleField\" \"description\"\n        \"descriptionField\" \"description\"\n    -}}\n  {{- else -}}\n    {{- $config = dict \n        \"repoLink\" (print \"https://github.com/\" $resource)\n        \"icon\" \"link\"\n        \"brandColors\" (slice \"slate-800\" \"slate-900\")\n        \"typeColor\" \"zinc-500\"\n    -}}\n  {{- end -}}\n{{- else if $customUrl -}}\n  {{- $config = dict \n      \"repoLink\" $customUrl\n      \"icon\" \"link\"\n      \"brandColors\" (slice \"slate-800\" \"slate-900\")\n      \"typeColor\" \"zinc-500\"\n  -}}\n{{- end -}}\n\n{{ return $config }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/embed/hbx_content_section.html",
    "content": "{{/*\n  Content section rendering for embed cards\n  \n  Parameters:\n  - customDescription: user-provided description override\n  - embedData: data fetched from API\n  - platform: platform name\n  - hb_id: Hugo Blox unique identifier\n  - config: platform configuration\n  - processedImage: processed image data (for image embeds)\n*/}}\n\n{{- $customDescription := .customDescription -}}\n{{- $embedData := .embedData -}}\n{{- $platform := .platform -}}\n{{- $hb_id := .hb_id -}}\n{{- $config := .config -}}\n{{- $processedImage := .processedImage -}}\n\n{{/* Display processed image if available */}}\n{{- if $processedImage -}}\n  <div class=\"mb-4 overflow-hidden rounded-lg\">\n    <img class=\"w-full h-auto transition-transform duration-500 ease-out group-hover:scale-105\" \n         srcset=\"{{ $processedImage.srcset }}\"\n         sizes=\"(max-width: 768px) 100vw, (max-width: 1200px) 50vw, 33vw\"\n         src=\"{{ $processedImage.fallback.RelPermalink }}\" \n         width=\"{{ $processedImage.fallback.Width }}\" \n         height=\"{{ $processedImage.fallback.Height }}\"\n         loading=\"lazy\" \n         decoding=\"async\"\n         alt=\"{{ if $customDescription }}{{ $customDescription }}{{ else if and $embedData $config.titleField }}{{ index $embedData $config.titleField }}{{ else }}Embedded image{{ end }}\"\n         style=\"aspect-ratio: {{ $processedImage.fallback.Width }}/{{ $processedImage.fallback.Height }};\">\n  </div>\n{{- end -}}\n\n{{/* Description handling */}}\n{{- $description := $customDescription -}}\n{{- if and (not $description) $embedData $config.descriptionField -}}\n  {{- $description = index $embedData $config.descriptionField -}}\n  {{/* Apply platform-specific cleanup */}}\n  {{- if $config.descriptionCleanup -}}\n    {{- $description = $description | replaceRE $config.descriptionCleanup \"\" -}}\n  {{- end -}}\n{{- end -}}\n\n{{- if $description -}}\n  <p class=\"text-zinc-600 dark:text-zinc-400 text-base leading-relaxed line-clamp-3\">\n    {{ $description | plainify | htmlUnescape | truncate 200 | emojify }}\n  </p>\n{{- end -}}\n\n{{/* Platform-specific stats section */}}\n{{- if and $embedData $config.statsConfig -}}\n  <div class=\"flex items-center gap-6 pt-2\">\n    {{- range $statKey, $statConfig := $config.statsConfig -}}\n      {{- $statValue := index $embedData $statConfig.field -}}\n      {{- if $statValue -}}\n        <div class=\"flex items-center gap-1.5 text-sm text-zinc-600 dark:text-zinc-400\">\n          {{ partial \"functions/get_icon\" (dict \"name\" $statConfig.icon \"attributes\" (printf \"class=\\\"w-4 h-4 text-%s\\\"\" $statConfig.color)) }}\n          {{- if and (eq $platform \"github\") (eq $statKey \"issues\") -}}\n            {{/* Make issues count clickable for GitHub */}}\n            <a href=\"{{ $config.repoLink }}/issues\" target=\"_blank\" rel=\"noopener\" class=\"font-medium hover:text-primary-600 dark:hover:text-primary-400 hover:underline transition-colors duration-200\" id=\"hb-{{ $hb_id }}-{{ $statKey }}\">\n              {{- if gt $statValue 999 -}}\n                {{- if gt $statValue 999999 -}}\n                  {{ div $statValue 1000000 }}M\n                {{- else -}}\n                  {{ div $statValue 1000 }}k\n                {{- end -}}\n              {{- else -}}\n                {{ $statValue }}\n              {{- end -}}\n            </a>\n          {{- else -}}\n            <span id=\"hb-{{ $hb_id }}-{{ $statKey }}\">\n              {{- if gt $statValue 999 -}}\n                {{- if gt $statValue 999999 -}}\n                  {{ div $statValue 1000000 }}M\n                {{- else -}}\n                  {{ div $statValue 1000 }}k\n                {{- end -}}\n              {{- else -}}\n                {{ $statValue }}\n              {{- end -}}\n            </span>\n          {{- end -}}\n        </div>\n      {{- end -}}\n    {{- end -}}\n  </div>\n{{- end -}}\n\n{{/* Additional platform-specific content */}}\n{{- if eq $platform \"github\" -}}\n  {{/* Show additional GitHub-specific info if available */}}\n  {{- if and $embedData $embedData.topics -}}\n    <div class=\"flex flex-wrap gap-1 pt-2\">\n      {{- range first 3 $embedData.topics -}}\n        <span class=\"inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium bg-primary-100 text-primary-800 dark:bg-primary-900/40 dark:text-primary-300\">\n          {{ . | emojify }}\n        </span>\n      {{- end -}}\n      {{- if gt (len $embedData.topics) 3 -}}\n        <span class=\"text-xs text-zinc-500 dark:text-zinc-500\">+{{ sub (len $embedData.topics) 3 }}</span>\n      {{- end -}}\n    </div>\n  {{- end -}}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/embed/hbx_platform_icon.html",
    "content": "{{/*\n  Platform icon rendering\n  \n  Parameters:\n  - platform: platform name (huggingface, github, etc.)\n  - config: platform configuration dict\n  - hb_id: Hugo Blox unique identifier for the embed\n*/}}\n\n{{- $platform := .platform -}}\n{{- $config := .config -}}\n{{- $hb_id := .hb_id -}}\n\n{{- if eq $platform \"huggingface\" -}}\n  <div class=\"w-10 h-10 rounded-full bg-gradient-to-br from-{{ index $config.brandColors 0 }} to-{{ index $config.brandColors 1 }} flex items-center justify-center\">\n    {{ partial \"functions/get_icon\" (dict \"name\" \"brands/huggingface\" \"attributes\" \"class=\\\"w-6 h-6 text-white\\\"\") }}\n  </div>\n{{- else if eq $platform \"github\" -}}\n  <div class=\"w-10 h-10 rounded-full bg-gradient-to-br from-{{ index $config.brandColors 0 }} to-{{ index $config.brandColors 1 }} flex items-center justify-center\">\n    {{ partial \"functions/get_icon\" (dict \"name\" \"brands/github\" \"attributes\" \"class=\\\"w-6 h-6 text-white\\\"\") }}\n  </div>\n{{- else -}}\n  {{/* Custom/generic embeds use neutral styling */}}\n  <div class=\"w-10 h-10 rounded-full bg-gradient-to-br from-{{ index $config.brandColors 0 }} to-{{ index $config.brandColors 1 }} flex items-center justify-center\">\n    {{ partial \"functions/get_icon\" (dict \"name\" ($config.icon | default \"globe-alt\") \"attributes\" \"class=\\\"w-5 h-5 text-white\\\"\") }}\n  </div>\n{{- end -}}\n\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/embed/hbx_title_section.html",
    "content": "{{/*\n  Title section rendering for embed cards\n  \n  Parameters:\n  - hb_id: Hugo Blox unique identifier\n  - customTitle: user-provided title override\n  - embedData: data fetched from API\n  - customUrl: custom URL if provided\n  - resource: platform resource identifier\n  - type: resource type\n  - platform: platform name\n  - config: platform configuration\n*/}}\n\n{{- $hb_id := .hb_id -}}\n{{- $customTitle := .customTitle -}}\n{{- $embedData := .embedData -}}\n{{- $customUrl := .customUrl -}}\n{{- $resource := .resource -}}\n{{- $type := .type -}}\n{{- $platform := .platform -}}\n{{- $config := .config -}}\n\n<h3 id=\"hb-embed-title-{{ $hb_id }}\" class=\"text-xl font-bold tracking-tight leading-tight truncate\">\n  <a href=\"{{ $config.repoLink | default $customUrl }}\" target=\"_blank\" rel=\"noopener\" class=\"text-zinc-900 dark:text-zinc-100 hover:text-primary-600 dark:hover:text-primary-400 hover:underline transition-colors duration-200\">\n    {{- if $customTitle -}}\n      {{ $customTitle | emojify }}\n    {{- else if and $embedData $config.titleField -}}\n      {{ index $embedData $config.titleField | emojify }}\n    {{- else if and $embedData $embedData.name -}}\n      {{ $embedData.name | emojify }}\n    {{- else if and $embedData $embedData.id -}}\n      {{ $embedData.id | emojify }}\n    {{- else if $customUrl -}}\n      {{- $parsed := urls.Parse $customUrl -}}\n      {{ $parsed.Host | emojify }}\n    {{- else if $resource -}}\n      {{- if eq $platform \"github\" -}}\n        {{/* For GitHub, show just the repo name, not the full \"owner/repo\" */}}\n        {{- $parts := split $resource \"/\" -}}\n        {{- if gt (len $parts) 1 -}}\n          {{ index $parts 1 | emojify }}\n        {{- else -}}\n          {{ $resource | emojify }}\n        {{- end -}}\n      {{- else -}}\n        {{ $resource | emojify }}\n      {{- end -}}\n    {{- else -}}\n      Embedded Resource\n    {{- end -}}\n  </a>\n</h3>\n\n{{/* Resource type and subtype indicator */}}\n{{- $showTypeIndicator := false -}}\n{{- $typeText := \"\" -}}\n{{- $typeColor := $config.typeColor | default \"zinc-500\" -}}\n\n{{/* Always show type indicator for GitHub repos with data */}}\n{{- if and (eq $platform \"github\") $embedData $config.ownerField -}}\n  {{- $showTypeIndicator = true -}}\n{{- end -}}\n\n{{/* Force metadata line for custom embeds to ensure proper alignment */}}\n{{- if eq $platform \"custom\" -}}\n  {{- $showTypeIndicator = true -}}\n{{- end -}}\n\n{{- if $type -}}\n  {{- $showTypeIndicator = true -}}\n  {{- if and $embedData $config.subtypeField -}}\n    {{- if $config.subtypeIndex -}}\n      {{- $subtypes := index $embedData $config.subtypeField -}}\n      {{- if $subtypes -}}\n        {{- $typeText = index $subtypes $config.subtypeIndex -}}\n      {{- else -}}\n        {{- $typeText = $type -}}\n      {{- end -}}\n    {{- else -}}\n      {{- $typeText = index $embedData $config.subtypeField | default $type -}}\n    {{- end -}}\n  {{- else -}}\n    {{- $typeText = $type -}}\n  {{- end -}}\n{{- else if and $embedData $config.subtypeField -}}\n  {{- $showTypeIndicator = true -}}\n  {{- if $config.subtypeIndex -}}\n    {{- $subtypes := index $embedData $config.subtypeField -}}\n    {{- if $subtypes -}}\n      {{- $typeText = index $subtypes $config.subtypeIndex -}}\n    {{- end -}}\n  {{- else -}}\n    {{- $typeText = index $embedData $config.subtypeField -}}\n  {{- end -}}\n{{- end -}}\n\n{{- if $showTypeIndicator -}}\n<div class=\"flex items-center gap-2 mt-1\">\n  {{/* GitHub repos: Show owner prominently, then language */}}\n  {{- if eq $platform \"github\" -}}\n    {{- $owner := \"\" -}}\n    {{/* Get owner from API data if available */}}\n    {{- if $embedData -}}\n      {{- if eq $config.ownerField \"owner.login\" -}}\n        {{/* Handle nested GitHub API structure: embedData.owner.login */}}\n        {{- $ownerObj := index $embedData \"owner\" -}}\n        {{- if $ownerObj -}}\n          {{- $owner = index $ownerObj \"login\" -}}\n        {{- end -}}\n      {{- else if $config.ownerField -}}\n        {{/* Handle simple field access */}}\n        {{- $owner = index $embedData $config.ownerField -}}\n      {{- end -}}\n    {{- end -}}\n    \n    {{/* Fallback: extract owner from resource string (e.g., \"HugoBlox/kit\" -> \"HugoBlox\") */}}\n    {{- if and (not $owner) $resource -}}\n      {{- $parts := split $resource \"/\" -}}\n      {{- if gt (len $parts) 0 -}}\n        {{- $owner = index $parts 0 -}}\n      {{- end -}}\n    {{- end -}}\n    \n    {{- if $owner -}}\n      <span class=\"text-sm text-zinc-600 dark:text-zinc-400\">by \n        <a href=\"https://github.com/{{ $owner }}\" target=\"_blank\" rel=\"noopener\" class=\"font-medium hover:text-primary-600 dark:hover:text-primary-400 hover:underline transition-colors duration-200\">{{ $owner | emojify }}</a>\n      </span>\n      {{- if $typeText -}}\n        <span class=\"text-sm text-zinc-500 dark:text-zinc-500\">•</span>\n        <span class=\"inline-block w-2 h-2 rounded-full bg-{{ $typeColor }}\"></span>\n        <span class=\"text-sm text-zinc-500 dark:text-zinc-500 capitalize\">{{ $typeText | emojify }}</span>\n      {{- end -}}\n    {{- else if $typeText -}}\n      {{/* No owner, just show type */}}\n      <span class=\"inline-block w-2 h-2 rounded-full bg-{{ $typeColor }}\"></span>\n      <span class=\"text-sm text-zinc-600 dark:text-zinc-400 capitalize\">{{ $typeText | emojify }}</span>\n    {{- end -}}\n  {{- else if eq $platform \"custom\" -}}\n    {{/* Custom embeds: Show domain or minimal placeholder for consistent alignment */}}\n    {{- if $customUrl -}}\n      {{- $parsed := urls.Parse $customUrl -}}\n      {{- $domain := $parsed.Host -}}\n      <span class=\"text-sm text-zinc-500 dark:text-zinc-500\">{{ $domain | emojify }}</span>\n    {{- else -}}\n      {{/* Minimal placeholder to maintain visual spacing */}}\n      <span class=\"text-sm text-zinc-500 dark:text-zinc-500 opacity-0\">external resource</span>\n    {{- end -}}\n  {{- else -}}\n    {{/* Other platforms: Show type with indicator */}}\n    {{- if $typeText -}}\n      <span class=\"inline-block w-2 h-2 rounded-full bg-{{ $typeColor }}\"></span>\n      <span class=\"text-sm text-zinc-600 dark:text-zinc-400 capitalize\">\n        {{ $typeText | emojify }}\n      </span>\n    {{- else -}}\n      {{/* Minimal placeholder for consistent spacing */}}\n      <span class=\"text-sm text-zinc-500 dark:text-zinc-500 opacity-0\">platform resource</span>\n    {{- end -}}\n  {{- end -}}\n</div>\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/embed/huggingface.html",
    "content": "{{/*\n  HuggingFace platform configuration\n  \n  Parameters:\n  - resource: model or dataset identifier\n  - type: \"model\" or \"dataset\" \n  - customUrl: optional override URL\n*/}}\n\n{{- $resource := .resource -}}\n{{- $type := .type -}}\n{{- $customUrl := .customUrl -}}\n\n{{- $config := dict -}}\n\n{{- if $resource -}}\n  {{- if eq $type \"model\" -}}\n    {{- $config = dict \n        \"apiUrl\" (print \"https://huggingface.co/api/models/\" $resource)\n        \"repoLink\" (print \"https://huggingface.co/\" $resource)\n        \"icon\" \"cpu-chip\"\n        \"brandColors\" (slice \"yellow-400\" \"orange-500\")\n        \"typeColor\" \"secondary-500\"\n        \"statsConfig\" (dict \n          \"likes\" (dict \"icon\" \"heart\" \"color\" \"secondary-500\" \"field\" \"likes\")\n          \"downloads\" (dict \"icon\" \"arrow-down-tray\" \"color\" \"primary-500\" \"field\" \"downloads\")\n        )\n        \"titleField\" \"id\"\n        \"descriptionField\" \"description\"\n        \"descriptionCleanup\" `Dataset Card for .+\\s+Dataset Summary\\s+`\n        \"subtypeField\" \"pipeline_tag\"\n    -}}\n  {{- else if eq $type \"dataset\" -}}\n    {{- $config = dict \n        \"apiUrl\" (print \"https://huggingface.co/api/datasets/\" $resource)\n        \"repoLink\" (print \"https://huggingface.co/datasets/\" $resource)\n        \"icon\" \"circle-stack\"\n        \"brandColors\" (slice \"yellow-400\" \"orange-500\")\n        \"typeColor\" \"primary-500\"\n        \"statsConfig\" (dict \n          \"likes\" (dict \"icon\" \"heart\" \"color\" \"secondary-500\" \"field\" \"likes\")\n          \"downloads\" (dict \"icon\" \"arrow-down-tray\" \"color\" \"primary-500\" \"field\" \"downloads\")\n        )\n        \"titleField\" \"id\"\n        \"descriptionField\" \"description\"\n        \"descriptionCleanup\" `Dataset Card for .+\\s+Dataset Summary\\s+`\n        \"subtypeField\" \"task_categories\"\n        \"subtypeIndex\" 0\n    -}}\n  {{- else -}}\n    {{- $config = dict \n        \"repoLink\" (print \"https://huggingface.co/\" $resource)\n        \"icon\" \"link\"\n        \"brandColors\" (slice \"yellow-400\" \"orange-500\")\n        \"typeColor\" \"zinc-500\"\n    -}}\n  {{- end -}}\n{{- else if $customUrl -}}\n  {{- $config = dict \n      \"repoLink\" $customUrl\n      \"icon\" \"link\"\n      \"brandColors\" (slice \"yellow-400\" \"orange-500\")\n      \"typeColor\" \"zinc-500\"\n  -}}\n{{- end -}}\n\n{{ return $config }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/generate_color_scale.html",
    "content": "{{/* \n  Hugo Blox Kit: Generate Color Scale\n  Generate Tailwind-like 50–950 scale for a given color.\n  Supports palette names and hex values.\n*/}}\n{{ $name := .name }}\n{{ $colorInput := .color | lower }}\n\n{{/* Tailwind 4 Color Palette Lookup Table (OKLCH/Hex) */}}\n{{ $tailwind_palette := dict\n  \"red\" (dict \"50\" \"oklch(0.971 0.013 17.38)\" \"100\" \"oklch(0.936 0.032 17.717)\" \"200\" \"oklch(0.885 0.062 18.334)\" \"300\" \"oklch(0.808 0.114 19.571)\" \"400\" \"oklch(0.704 0.191 22.216)\" \"500\" \"oklch(0.637 0.237 25.331)\" \"600\" \"oklch(0.577 0.245 27.325)\" \"700\" \"oklch(0.505 0.213 27.518)\" \"800\" \"oklch(0.444 0.177 26.899)\" \"900\" \"oklch(0.396 0.141 25.723)\" \"950\" \"oklch(0.258 0.092 26.042)\")\n  \"orange\" (dict \"50\" \"oklch(0.98 0.016 73.684)\" \"100\" \"oklch(0.954 0.038 75.164)\" \"200\" \"oklch(0.901 0.076 70.697)\" \"300\" \"oklch(0.837 0.128 66.29)\" \"400\" \"oklch(0.75 0.183 55.934)\" \"500\" \"oklch(0.705 0.213 47.604)\" \"600\" \"oklch(0.646 0.222 41.116)\" \"700\" \"oklch(0.553 0.195 38.402)\" \"800\" \"oklch(0.47 0.157 37.304)\" \"900\" \"oklch(0.408 0.123 38.172)\" \"950\" \"oklch(0.266 0.079 36.259)\")\n  \"amber\" (dict \"50\" \"oklch(0.987 0.022 95.277)\" \"100\" \"oklch(0.962 0.059 95.617)\" \"200\" \"oklch(0.924 0.12 95.746)\" \"300\" \"oklch(0.879 0.169 91.605)\" \"400\" \"oklch(0.828 0.189 84.429)\" \"500\" \"oklch(0.769 0.188 70.08)\" \"600\" \"oklch(0.666 0.179 58.318)\" \"700\" \"oklch(0.555 0.163 48.998)\" \"800\" \"oklch(0.473 0.137 46.201)\" \"900\" \"oklch(0.414 0.112 45.904)\" \"950\" \"oklch(0.279 0.077 45.635)\")\n  \"yellow\" (dict \"50\" \"oklch(0.987 0.026 102.212)\" \"100\" \"oklch(0.973 0.071 103.193)\" \"200\" \"oklch(0.945 0.129 101.54)\" \"300\" \"oklch(0.905 0.182 98.111)\" \"400\" \"oklch(0.852 0.199 91.936)\" \"500\" \"oklch(0.795 0.184 86.047)\" \"600\" \"oklch(0.681 0.162 75.834)\" \"700\" \"oklch(0.554 0.135 66.442)\" \"800\" \"oklch(0.476 0.114 61.907)\" \"900\" \"oklch(0.421 0.095 57.708)\" \"950\" \"oklch(0.286 0.066 53.813)\")\n  \"lime\" (dict \"50\" \"oklch(0.986 0.031 120.757)\" \"100\" \"oklch(0.967 0.067 122.328)\" \"200\" \"oklch(0.938 0.127 124.321)\" \"300\" \"oklch(0.897 0.196 126.665)\" \"400\" \"oklch(0.841 0.238 128.85)\" \"500\" \"oklch(0.768 0.233 130.85)\" \"600\" \"oklch(0.648 0.2 131.684)\" \"700\" \"oklch(0.532 0.157 131.589)\" \"800\" \"oklch(0.453 0.124 130.933)\" \"900\" \"oklch(0.405 0.101 131.063)\" \"950\" \"oklch(0.274 0.072 132.109)\")\n  \"green\" (dict \"50\" \"oklch(0.982 0.018 155.826)\" \"100\" \"oklch(0.962 0.044 156.743)\" \"200\" \"oklch(0.925 0.084 155.995)\" \"300\" \"oklch(0.871 0.15 154.449)\" \"400\" \"oklch(0.792 0.209 151.711)\" \"500\" \"oklch(0.723 0.219 149.579)\" \"600\" \"oklch(0.627 0.194 149.214)\" \"700\" \"oklch(0.527 0.154 150.069)\" \"800\" \"oklch(0.448 0.119 151.328)\" \"900\" \"oklch(0.393 0.095 152.535)\" \"950\" \"oklch(0.266 0.065 152.934)\")\n  \"emerald\" (dict \"50\" \"oklch(0.979 0.021 166.113)\" \"100\" \"oklch(0.95 0.052 163.051)\" \"200\" \"oklch(0.905 0.093 164.15)\" \"300\" \"oklch(0.845 0.143 164.978)\" \"400\" \"oklch(0.765 0.177 163.223)\" \"500\" \"oklch(0.696 0.17 162.48)\" \"600\" \"oklch(0.596 0.145 163.225)\" \"700\" \"oklch(0.508 0.118 165.612)\" \"800\" \"oklch(0.432 0.095 166.913)\" \"900\" \"oklch(0.378 0.077 168.94)\" \"950\" \"oklch(0.262 0.051 172.552)\")\n  \"teal\" (dict \"50\" \"oklch(0.984 0.014 180.72)\" \"100\" \"oklch(0.953 0.051 180.801)\" \"200\" \"oklch(0.91 0.096 180.426)\" \"300\" \"oklch(0.855 0.138 181.071)\" \"400\" \"oklch(0.777 0.152 181.912)\" \"500\" \"oklch(0.704 0.14 182.503)\" \"600\" \"oklch(0.6 0.118 184.704)\" \"700\" \"oklch(0.511 0.096 186.391)\" \"800\" \"oklch(0.437 0.078 188.216)\" \"900\" \"oklch(0.386 0.063 188.416)\" \"950\" \"oklch(0.277 0.046 192.524)\")\n  \"cyan\" (dict \"50\" \"oklch(0.984 0.019 200.873)\" \"100\" \"oklch(0.956 0.045 203.388)\" \"200\" \"oklch(0.917 0.08 205.041)\" \"300\" \"oklch(0.865 0.127 207.078)\" \"400\" \"oklch(0.789 0.154 211.53)\" \"500\" \"oklch(0.715 0.143 215.221)\" \"600\" \"oklch(0.609 0.126 221.723)\" \"700\" \"oklch(0.52 0.105 223.128)\" \"800\" \"oklch(0.45 0.085 224.283)\" \"900\" \"oklch(0.398 0.07 227.392)\" \"950\" \"oklch(0.302 0.056 229.695)\")\n  \"sky\" (dict \"50\" \"oklch(0.977 0.013 236.62)\" \"100\" \"oklch(0.951 0.026 236.824)\" \"200\" \"oklch(0.901 0.058 230.902)\" \"300\" \"oklch(0.828 0.111 230.318)\" \"400\" \"oklch(0.746 0.16 232.661)\" \"500\" \"oklch(0.685 0.169 237.323)\" \"600\" \"oklch(0.588 0.158 241.966)\" \"700\" \"oklch(0.5 0.134 242.749)\" \"800\" \"oklch(0.443 0.11 240.79)\" \"900\" \"oklch(0.391 0.09 240.876)\" \"950\" \"oklch(0.293 0.066 243.157)\")\n  \"blue\" (dict \"50\" \"oklch(0.97 0.014 254.604)\" \"100\" \"oklch(0.932 0.032 255.585)\" \"200\" \"oklch(0.882 0.059 254.128)\" \"300\" \"oklch(0.809 0.105 251.813)\" \"400\" \"oklch(0.707 0.165 254.624)\" \"500\" \"oklch(0.623 0.214 259.815)\" \"600\" \"oklch(0.546 0.245 262.881)\" \"700\" \"oklch(0.488 0.243 264.376)\" \"800\" \"oklch(0.424 0.199 265.638)\" \"900\" \"oklch(0.379 0.146 265.522)\" \"950\" \"oklch(0.282 0.091 267.935)\")\n  \"indigo\" (dict \"50\" \"oklch(0.962 0.018 272.314)\" \"100\" \"oklch(0.93 0.034 272.788)\" \"200\" \"oklch(0.87 0.065 274.039)\" \"300\" \"oklch(0.785 0.115 274.713)\" \"400\" \"oklch(0.673 0.182 276.935)\" \"500\" \"oklch(0.585 0.233 277.117)\" \"600\" \"oklch(0.511 0.262 276.966)\" \"700\" \"oklch(0.457 0.24 277.023)\" \"800\" \"oklch(0.398 0.195 277.366)\" \"900\" \"oklch(0.359 0.144 278.697)\" \"950\" \"oklch(0.257 0.09 281.288)\")\n  \"violet\" (dict \"50\" \"oklch(0.969 0.016 293.756)\" \"100\" \"oklch(0.943 0.029 294.588)\" \"200\" \"oklch(0.894 0.057 293.283)\" \"300\" \"oklch(0.811 0.111 293.571)\" \"400\" \"oklch(0.702 0.183 293.541)\" \"500\" \"oklch(0.606 0.25 292.717)\" \"600\" \"oklch(0.541 0.281 293.009)\" \"700\" \"oklch(0.491 0.27 292.581)\" \"800\" \"oklch(0.432 0.232 292.759)\" \"900\" \"oklch(0.38 0.189 293.745)\" \"950\" \"oklch(0.283 0.141 291.089)\")\n  \"purple\" (dict \"50\" \"oklch(0.977 0.014 308.299)\" \"100\" \"oklch(0.946 0.033 307.174)\" \"200\" \"oklch(0.902 0.063 306.703)\" \"300\" \"oklch(0.827 0.119 306.383)\" \"400\" \"oklch(0.714 0.203 305.504)\" \"500\" \"oklch(0.627 0.265 303.9)\" \"600\" \"oklch(0.558 0.288 302.321)\" \"700\" \"oklch(0.496 0.265 301.924)\" \"800\" \"oklch(0.438 0.218 303.724)\" \"900\" \"oklch(0.381 0.176 304.987)\" \"950\" \"oklch(0.291 0.149 302.717)\")\n  \"fuchsia\" (dict \"50\" \"oklch(0.977 0.017 320.058)\" \"100\" \"oklch(0.952 0.037 318.852)\" \"200\" \"oklch(0.903 0.076 319.62)\" \"300\" \"oklch(0.833 0.145 321.434)\" \"400\" \"oklch(0.74 0.238 322.16)\" \"500\" \"oklch(0.667 0.295 322.15)\" \"600\" \"oklch(0.591 0.293 322.896)\" \"700\" \"oklch(0.518 0.253 323.949)\" \"800\" \"oklch(0.452 0.211 324.591)\" \"900\" \"oklch(0.401 0.17 325.612)\" \"950\" \"oklch(0.293 0.136 325.661)\")\n  \"pink\" (dict \"50\" \"oklch(0.971 0.014 343.198)\" \"100\" \"oklch(0.948 0.028 342.258)\" \"200\" \"oklch(0.899 0.061 343.231)\" \"300\" \"oklch(0.823 0.12 346.018)\" \"400\" \"oklch(0.718 0.202 349.761)\" \"500\" \"oklch(0.656 0.241 354.308)\" \"600\" \"oklch(0.592 0.249 0.584)\" \"700\" \"oklch(0.525 0.223 3.958)\" \"800\" \"oklch(0.459 0.187 3.815)\" \"900\" \"oklch(0.408 0.153 2.432)\" \"950\" \"oklch(0.284 0.109 3.907)\")\n  \"rose\" (dict \"50\" \"oklch(0.969 0.015 12.422)\" \"100\" \"oklch(0.941 0.03 12.58)\" \"200\" \"oklch(0.892 0.058 10.001)\" \"300\" \"oklch(0.81 0.117 11.638)\" \"400\" \"oklch(0.712 0.194 13.428)\" \"500\" \"oklch(0.645 0.246 16.439)\" \"600\" \"oklch(0.586 0.253 17.585)\" \"700\" \"oklch(0.514 0.222 16.935)\" \"800\" \"oklch(0.455 0.188 13.697)\" \"900\" \"oklch(0.41 0.159 10.272)\" \"950\" \"oklch(0.271 0.105 12.094)\")\n  \"slate\" (dict \"50\" \"oklch(0.984 0.003 247.858)\" \"100\" \"oklch(0.968 0.007 247.896)\" \"200\" \"oklch(0.929 0.013 255.508)\" \"300\" \"oklch(0.869 0.022 252.894)\" \"400\" \"oklch(0.704 0.04 256.788)\" \"500\" \"oklch(0.554 0.046 257.417)\" \"600\" \"oklch(0.446 0.043 257.281)\" \"700\" \"oklch(0.372 0.044 257.287)\" \"800\" \"oklch(0.279 0.041 260.031)\" \"900\" \"oklch(0.208 0.042 265.755)\" \"950\" \"oklch(0.129 0.042 264.695)\")\n  \"gray\" (dict \"50\" \"oklch(0.985 0.002 247.839)\" \"100\" \"oklch(0.967 0.003 264.542)\" \"200\" \"oklch(0.928 0.006 264.531)\" \"300\" \"oklch(0.872 0.01 258.338)\" \"400\" \"oklch(0.707 0.022 261.325)\" \"500\" \"oklch(0.551 0.027 264.364)\" \"600\" \"oklch(0.446 0.03 256.802)\" \"700\" \"oklch(0.373 0.034 259.733)\" \"800\" \"oklch(0.278 0.033 256.848)\" \"900\" \"oklch(0.21 0.034 264.665)\" \"950\" \"oklch(0.13 0.028 261.692)\")\n  \"zinc\" (dict \"50\" \"oklch(0.985 0 0)\" \"100\" \"oklch(0.967 0.001 286.375)\" \"200\" \"oklch(0.92 0.004 286.32)\" \"300\" \"oklch(0.871 0.006 286.286)\" \"400\" \"oklch(0.705 0.015 286.067)\" \"500\" \"oklch(0.552 0.016 285.938)\" \"600\" \"oklch(0.442 0.017 285.786)\" \"700\" \"oklch(0.37 0.013 285.805)\" \"800\" \"oklch(0.274 0.006 286.033)\" \"900\" \"oklch(0.21 0.006 285.885)\" \"950\" \"oklch(0.141 0.005 285.823)\")\n  \"neutral\" (dict \"50\" \"oklch(0.985 0 0)\" \"100\" \"oklch(0.97 0 0)\" \"200\" \"oklch(0.922 0 0)\" \"300\" \"oklch(0.87 0 0)\" \"400\" \"oklch(0.708 0 0)\" \"500\" \"oklch(0.556 0 0)\" \"600\" \"oklch(0.439 0 0)\" \"700\" \"oklch(0.371 0 0)\" \"800\" \"oklch(0.269 0 0)\" \"900\" \"oklch(0.205 0 0)\" \"950\" \"oklch(0.145 0 0)\")\n  \"stone\" (dict \"50\" \"oklch(0.985 0.001 106.423)\" \"100\" \"oklch(0.97 0.001 106.424)\" \"200\" \"oklch(0.923 0.003 48.717)\" \"300\" \"oklch(0.869 0.005 56.366)\" \"400\" \"oklch(0.709 0.01 56.259)\" \"500\" \"oklch(0.553 0.013 58.071)\" \"600\" \"oklch(0.444 0.011 73.639)\" \"700\" \"oklch(0.374 0.01 67.558)\" \"800\" \"oklch(0.268 0.007 34.298)\" \"900\" \"oklch(0.216 0.006 56.043)\" \"950\" \"oklch(0.147 0.004 49.25)\")\n}}\n\n{{ if hasPrefix $colorInput \"#\" }}\n  {{/* \n    HEX PATH: Custom Brand Color\n    Generate an accessible 50-950 scale by mixing the hex base with white (tints) and black (shades).\n    We map the user's hex to the '500' slot and interpolate outwards.\n  */}}\n  {{ $r := 0 }}{{ $g := 0 }}{{ $b := 0 }}\n  {{ if eq (len $colorInput) 7 }}\n    {{ $r = printf \"0x%s\" (substr $colorInput 1 2) | int }}\n    {{ $g = printf \"0x%s\" (substr $colorInput 3 2) | int }}\n    {{ $b = printf \"0x%s\" (substr $colorInput 5 2) | int }}\n  {{ end }}\n\n  {{/* Base (500) */}}\n  --hb-{{$name}}-500-rgb: {{ $r }} {{ $g }} {{ $b }};\n  --color-{{$name}}-500: rgb(var(--hb-{{$name}}-500-rgb));\n\n  {{/* Tints (50-400): Mix with White */}}\n  {{ $tints := slice\n    (dict \"shade\" \"50\"  \"percent\" 95)\n    (dict \"shade\" \"100\" \"percent\" 90)\n    (dict \"shade\" \"200\" \"percent\" 80)\n    (dict \"shade\" \"300\" \"percent\" 70)\n    (dict \"shade\" \"400\" \"percent\" 60)\n  }}\n  {{ range $tints }}\n    {{ $p := .percent }}\n    {{ $rp := div (add (mul $r (sub 100 $p)) (mul 255 $p)) 100 }}\n    {{ $gp := div (add (mul $g (sub 100 $p)) (mul 255 $p)) 100 }}\n    {{ $bp := div (add (mul $b (sub 100 $p)) (mul 255 $p)) 100 }}\n    --hb-{{$name}}-{{ .shade }}-rgb: {{ $rp }} {{ $gp }} {{ $bp }};\n    --color-{{$name}}-{{ .shade }}: rgb(var(--hb-{{$name}}-{{ .shade }}-rgb));\n  {{ end }}\n\n  {{/* Shades (600-950): Mix with Black */}}\n  {{ $shades := slice\n    (dict \"shade\" \"600\" \"percent\" 10)\n    (dict \"shade\" \"700\" \"percent\" 20)\n    (dict \"shade\" \"800\" \"percent\" 35)\n    (dict \"shade\" \"900\" \"percent\" 50)\n    (dict \"shade\" \"950\" \"percent\" 70)\n  }}\n  {{ range $shades }}\n    {{ $p := .percent }}\n    {{ $rp := div (mul $r (sub 100 $p)) 100 }}\n    {{ $gp := div (mul $g (sub 100 $p)) 100 }}\n    {{ $bp := div (mul $b (sub 100 $p)) 100 }}\n    --hb-{{$name}}-{{ .shade }}-rgb: {{ $rp }} {{ $gp }} {{ $bp }};\n    --color-{{$name}}-{{ .shade }}: rgb(var(--hb-{{$name}}-{{ .shade }}-rgb));\n  {{ end }}\n\n{{ else }}\n  {{/* \n    PALETTE PATH: Standard Tailwind Colors\n    Look up the exact OKLCH values for the requested palette (e.g. \"indigo\").\n    This ensures complete visual consistency with standard Tailwind utilities.\n  */}}\n  {{ $palette := index $tailwind_palette $colorInput }}\n  \n  {{ if $palette }}\n    {{ range $shade, $value := $palette }}\n      {{/* Note: converting OKLCH to raw RGB CSS vars requires Tailwind 4's internal conversion \n         or we output the raw color value directly if theme.css supports it.\n         \n         The existing system expects --hb-primary-50-rgb to be a comma-less RGB triplet \"255 255 255\".\n         However, Tailwind 4 supports OKLCH natively. \n         \n         CRITICAL FIX: We must override the `rgb(var(...))` wrapper in `theme.css` if we want to use OKLCH.\n         OR we just output the RGB approximation if we want to keep `theme.css` untouched.\n         \n         BUT `theme.css` defines: --color-primary-50: rgb(var(--hb-primary-50-rgb));\n         So we MUST provide RGB triplets. OKLCH strings like \"oklch(...)\" inside `rgb(...)` is invalid CSS.\n         \n         To fix this properly without changing `theme.css` significantly, we need RGB values in this table, \n         OR we redefine the higher-level variables.\n         \n         Since we cannot easily calculate OKLCH -> RGB in Hugo templates, we should \n         OUTPUT THE HIGHER LEVEL VARIABLES directly here to override theme.css.\n      */}}\n      --color-{{$name}}-{{$shade}}: {{ $value }};\n    {{ end }}\n    \n    {{/* Also set the legacy RGB vars to a fallback (500 shade) to prevent breakage \n       in case something accesses the raw -rgb var directly, though unlikely */}}\n    --hb-{{$name}}-500-rgb: 128 128 128; \n  {{ else }}\n    {{/* Unknown palette '{{$colorInput}}', falling back to Indigo-like default */}}\n    {{ partial \"functions/generate_color_scale\" (dict \"name\" $name \"color\" \"#6366f1\") }}\n  {{ end }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get-block-scripts.html",
    "content": "{{/*\n  Get Block Scripts\n  Discovers and returns a slice of JavaScript files for blocks used on the current page.\n*/}}\n{{ $block_scripts := slice }}\n{{ if .IsPage }}\n  {{/* Get the list of unique block types used on this page from the Page Store */}}\n  {{ $block_types := .Page.Store.Get \"block_types\" | default (slice) | uniq }}\n  \n  {{ range $block_type := $block_types }}\n    {{/* Check if a JS file exists for this block type */}}\n    {{ $script_path := printf \"js/hbx/blocks/%s/%s.js\" $block_type $block_type }}\n    {{ with resources.Get $script_path }}\n      {{ $block_scripts = $block_scripts | append . }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{ return $block_scripts }}\n\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get-build-id.html",
    "content": "{{/*\n  Get Build ID - Returns a consistent build identifier for the current build cycle.\n  This is cached across the entire build to prevent log duplication during dev rebuilds.\n*/}}\n{{- printf \"%d\" now.Unix -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_address.html",
    "content": "{{/* Function to return a formatted address given a semantic address. */}}\n\n{{/* Check for valid site config. */}}\n{{ if not site.Data.address_formats }}{{errorf \"Address formats missing from `data/address_formats.toml`!\"}}{{end}}\n\n{{ $page := . }}\n{{ $address := .address }}\n{{ $format_name := $page.Params.address_format | default site.Params.hugoblox.locale.address_format | default \"en-us\" }}\n\n{{ if not (isset site.Data.address_formats $format_name) }}{{ errorf \"Address format `%s` missing from `data/address_formats.toml`!\" $format_name }}{{end}}\n\n{{ $format := index site.Data.address_formats $format_name }}\n{{ $address_display := slice }}\n\n{{ range $k, $v := $format.order }}\n  {{ if eq $v \"street\" | and $address.street }}{{$address_display = $address_display | append (transform.HTMLEscape $address.street) | append (index $format.delimiters $k | default \"\") }}{{end}}\n  {{ if eq $v \"city\" | and $address.city }}{{$address_display = $address_display | append (transform.HTMLEscape $address.city) | append (index $format.delimiters $k | default \"\") }}{{end}}\n  {{ if eq $v \"region\" | and $address.region }}{{$address_display = $address_display | append (transform.HTMLEscape $address.region) | append (index $format.delimiters $k | default \"\") }}{{end}}\n  {{ if eq $v \"postcode\" | and $address.postcode }}{{$address_display = $address_display | append (transform.HTMLEscape $address.postcode) | append (index $format.delimiters $k | default \"\") }}{{end}}\n  {{ if eq $v \"country\" | and $address.country }}{{$address_display = $address_display | append (transform.HTMLEscape $address.country) | append (index $format.delimiters $k | default \"\") }}{{end}}\n{{end}}\n\n{{ return safeHTML (delimit $address_display \"\") }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_author_name.html",
    "content": "{{/* Get name of primary author. */}}\n\n{{ $page := . }}\n\n{{/* Get publisher as fall back. */}}\n{{ $branding := partialCached \"functions/get_branding\" $page \"branding\" }}\n{{ $publisher := $branding.organization }}\n\n{{ $author := \"\" }}\n{{ $author_slug := \"\" }}\n\n{{ if and (not $page.Params.authors) ($page.Scratch.Get \"superuser_slug\") }}\n  {{ $author_slug = $page.Scratch.Get \"superuser_slug\" }}\n{{ else if $page.Params.authors }}\n  {{ $author = index $page.Params.authors 0 }}\n  {{ $author_slug = urlize $author }}\n{{ end }}\n\n{{ $profile := partial \"functions/get_author_profile\" (dict \"slug\" $author_slug) }}\n{{ if $profile.title }}\n  {{ $author = $profile.title }}\n{{ else }}\n  {{ $author = $author | default $publisher }}\n{{ end }}\n\n{{ return $author }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_author_profile.html",
    "content": "{{/*\nReturn a normalized HugoBlox author/person profile from data.\n\nInput (flexible):\n- dict with \"slug\" key, or a raw string slug.\n\nOutput (dict):\n- slug: string\n- title: string (display name, fallback to humanized slug)\n- role: string (optional)\n- bio: string (optional)\n- status: map (optional)\n- affiliations: array (optional)\n- ids: map (optional)\n- links: array (optional)\n- is_owner: bool (optional)\n- has_data: bool (true if found in data/authors)\n- avatar: resource (optional) – matching assets/media/authors/<slug>.*\n*/}}\n\n{{- $input := . -}}\n{{- $slug := \"\" -}}\n{{- $rawTitle := \"\" -}}\n\n{{- $inputType := printf \"%T\" $input -}}\n\n{{- if (reflect.IsMap $input) -}}\n  {{- $slug = index $input \"slug\" | default \"\" -}}\n  {{- with index $input \"title\" }}{{ $rawTitle = . }}{{ end -}}\n{{- else if eq $inputType \"string\" -}}\n  {{- $slug = $input -}}\n  {{- $rawTitle = $input -}}\n{{- else -}}\n  {{- $slug = printf \"%v\" $input -}}\n{{- end -}}\n\n{{- $rawTitle = trim $rawTitle \" \" -}}\n\n{{- $slug = $slug | urlize -}}\n\n{{- $authors := partialCached \"functions/get_authors_data\" . site.Language.Lang -}}\n{{- $data := index $authors $slug -}}\n{{- $hasData := $data -}}\n\n{{/* Structured name resolution */}}\n{{- $name := $data.name -}}\n{{- $display := \"\" -}}\n{{- $given := \"\" -}}\n{{- $family := \"\" -}}\n{{- $middle := \"\" -}}\n{{- $alternate := \"\" -}}\n{{- $namePronunciation := \"\" -}}\n{{- $namePronouns := \"\" -}}\n\n{{- if $name.display }}{{ $display = $name.display }}{{ end }}\n{{- if $name.given }}{{ $given = $name.given }}{{ end }}\n{{- if $name.family }}{{ $family = $name.family }}{{ end }}\n{{- if $name.middle }}{{ $middle = $name.middle }}{{ end }}\n{{- if $name.alternate }}{{ $alternate = $name.alternate }}{{ end }}\n{{- if $name.pronunciation }}{{ $namePronunciation = $name.pronunciation }}{{ end }}\n{{- if $name.pronouns }}{{ $namePronouns = $name.pronouns }}{{ end }}\n\n{{- $title := \"\" -}}\n{{- if $display -}}\n  {{- $title = $display -}}\n{{- else if $data.title -}}\n  {{- $title = $data.title -}}\n{{- else if $rawTitle -}}\n  {{- $title = $rawTitle -}}\n{{- else -}}\n  {{- $title = $slug | humanize | title -}}\n{{- end -}}\n\n{{- $role := $data.role -}}\n{{- $bio := $data.bio -}}\n{{- $status := $data.status -}}\n{{- $affiliations := $data.affiliations -}}\n{{- $ids := $data.ids -}}\n{{- $links := $data.links -}}\n{{- $isOwner := or ($data.is_owner) ($data.superuser) -}}\n{{- $pronouns := $namePronouns | default $data.pronouns -}}\n{{- $userGroups := $data.user_groups -}}\n{{- $interests := $data.interests -}}\n{{- $education := $data.education -}}\n{{- $experience := or $data.experience $data.work -}}\n{{- $skills := $data.skills -}}\n{{- $languages := $data.languages -}}\n{{- $awards := $data.awards -}}\n{{- $graduationYear := $data.graduation_year -}}\n{{- $weight := $data.weight -}}\n{{- $nameFamily := $data.name.family | default $family -}}\n{{- $postnominals := slice -}}\n{{- if $data.postnominals -}}\n  {{- if (reflect.IsSlice $data.postnominals) -}}\n    {{- $postnominals = $data.postnominals -}}\n  {{- else -}}\n    {{- $postnominals = slice $data.postnominals -}}\n  {{- end -}}\n{{- end -}}\n\n{{- /* Avatar resolution: look in assets/media/authors/<slug>.* */ -}}\n{{- $avatar := resources.GetMatch (printf \"media/authors/%s.*\" $slug) -}}\n\n{{- $profile := dict\n  \"slug\" $slug\n  \"title\" $title\n  \"name_display\" $display\n  \"name_given\" $given\n  \"name_family\" $family\n  \"name_family_pref\" $nameFamily\n  \"name_middle\" $middle\n  \"name_alternate\" $alternate\n  \"name_pronunciation\" $namePronunciation\n  \"role\" $role\n  \"bio\" $bio\n  \"status\" $status\n  \"affiliations\" $affiliations\n  \"ids\" $ids\n  \"links\" $links\n  \"pronouns\" $pronouns\n  \"user_groups\" $userGroups\n  \"interests\" $interests\n  \"education\" $education\n  \"experience\" $experience\n  \"skills\" $skills\n  \"languages\" $languages\n  \"awards\" $awards\n  \"graduation_year\" $graduationYear\n  \"weight\" $weight\n  \"postnominals\" $postnominals\n  \"is_owner\" $isOwner\n  \"has_data\" (not (eq $hasData nil))\n  \"avatar\" $avatar\n-}}\n\n{{- return $profile -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_authors_data.html",
    "content": "{{/*\n  Return the authors data map for the current language.\n\n  For multilingual sites, language-specific author data from data/<lang>/authors/\n  is merged on top of the default data/authors/ files. This allows translating\n  fields like name, bio, role, etc., while inheriting non-translated fields.\n\n  Usage:\n    {{ $authors := partialCached \"functions/get_authors_data\" . site.Language.Lang }}\n\n  Returns: map of slug → author data (same shape as site.Data.authors)\n*/}}\n\n{{- $authors := site.Data.authors -}}\n{{- if not $authors -}}\n  {{- $authors = dict -}}\n{{- end -}}\n\n{{/* Check for language-specific author overrides */}}\n{{- $lang := site.Language.Lang -}}\n{{- $langData := index site.Data $lang -}}\n{{- if $langData -}}\n  {{- $langAuthors := index $langData \"authors\" -}}\n  {{- if $langAuthors -}}\n    {{/* Merge each language-specific author data on top of the default */}}\n    {{- $merged := dict -}}\n    {{/* Start with all default authors */}}\n    {{- range $slug, $data := $authors -}}\n      {{- $langAuthor := index $langAuthors $slug -}}\n      {{- if $langAuthor -}}\n        {{/* Language data overrides default; merge gives $langAuthor priority */}}\n        {{- $mergedAuthor := merge $data $langAuthor -}}\n        {{/* Deep-merge the 'name' submap if both have it */}}\n        {{- $baseName := index $data \"name\" -}}\n        {{- $langName := index $langAuthor \"name\" -}}\n        {{- if and (reflect.IsMap $baseName) (reflect.IsMap $langName) -}}\n          {{- $mergedAuthor = merge $mergedAuthor (dict \"name\" (merge $baseName $langName)) -}}\n        {{- end -}}\n        {{- $merged = merge $merged (dict $slug $mergedAuthor) -}}\n      {{- else -}}\n        {{- $merged = merge $merged (dict $slug $data) -}}\n      {{- end -}}\n    {{- end -}}\n    {{/* Add any authors that only exist in the language data */}}\n    {{- range $slug, $data := $langAuthors -}}\n      {{- if not (index $authors $slug) -}}\n        {{- $merged = merge $merged (dict $slug $data) -}}\n      {{- end -}}\n    {{- end -}}\n    {{- $authors = $merged -}}\n  {{- end -}}\n{{- end -}}\n\n{{- return $authors -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_branding.html",
    "content": "{{/*\n  get_branding.html - Centralized branding configuration helper (v2)\n  \n  Returns a dict with:\n    - name: Display name (navbar, footer, JSON-LD publisher)\n    - site_title: Browser tab title / SEO title\n    - organization: Legal/copyright entity name\n  \n  Fallback chain:\n    - site_title → seo.title → name → site.Title\n    - organization → name → site.Title\n*/}}\n\n{{/* v2 structure: hugoblox.identity */}}\n{{ $hb := site.Params.hugoblox | default dict }}\n{{ $identity := $hb.identity | default dict }}\n{{ $seo := $hb.seo | default dict }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    NAME (primary display name)\n    Priority: hugoblox.identity.name → site.Title\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $name := $identity.name | default site.Title }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    SITE_TITLE (browser tab / SEO title)\n    Priority: hugoblox.seo.title → hugoblox.identity.name → site.Title\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $site_title := $seo.title | default $name }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    ORGANIZATION (legal/copyright entity)\n    Priority: hugoblox.identity.organization → name\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $organization := $identity.organization | default $name }}\n\n{{/* Return branding dict */}}\n{{ return dict \n    \"name\" $name \n    \"site_title\" $site_title \n    \"organization\" $organization\n}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_cover_image.html",
    "content": "{{/* HugoBlox function to retrieve the cover image */}}\n{{/* Inputs: page context */}}\n{{/* Output: image resource, or nil if not found */}}\n\n{{/*\n    Cover image is searched in this order:\n      1. Search for a file `*cover*` in the page directory\n      2. Search for a file `.Params.cover.image` in the page directory\n      3. Search for a file `.Params.cover.image` in the `assets/media/` directory\n*/}}\n\n{{/* Search for an image \"*cover*\" in page folder */}}\n{{ $resource := (.Resources.ByType \"image\").GetMatch \"*cover*\" }}\n{{ if eq $resource nil }}\n  {{/* Otherwise fall back to the image file specified in front matter */}}\n  {{ $filename := \"\" }}\n  {{ if .Params.cover }}\n    {{ if reflect.IsMap .Params.cover }}\n      {{ $filename = .Params.cover.image }}\n    {{ else }}\n      {{/* Support simple string format: cover: \"image.jpg\" */}}\n      {{ $filename = .Params.cover }}\n    {{ end }}\n  {{ end }}\n  {{ if $filename }}\n    {{/* Check if it's a remote URL */}}\n    {{ if or (strings.HasPrefix $filename \"http://\") (strings.HasPrefix $filename \"https://\") }}\n      {{ $resource = resources.GetRemote $filename }}\n      {{ if eq $resource nil }}\n        {{ warnf \"Remote cover image not found: %s\" $filename }}\n      {{ end }}\n    {{ else }}\n      {{/* Search in page folder */}}\n      {{ $resource = (.Resources.ByType \"image\").GetMatch $filename }}\n      {{/* Otherwise in `assets/media/` folder */}}\n      {{ if eq $resource nil }} {{ $resource = resources.GetMatch (path.Join \"media\" $filename) }} {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ return $resource }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_event_dates.html",
    "content": "{{/* Function to get event start and end dates/times. */}}\n{{ $start_date := .Params.event_start | default .Date }}\n{{ $end_date := .Params.event_end | default .Params.date_end }}\n{{ $all_day := .Params.event_all_day | default .Params.all_day }}\n\n{{ $t1 := time $start_date }}{{/* Start datetime. */}}\n{{ $str := slice (time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") (time $t1)) }}{{/* Init return string with start date. */}}\n{{/* Show start time if not all day event. */}}\n{{ if not $all_day }}{{ $str = $str | append (time.Format (site.Params.hugoblox.locale.time_format | default \"3:04 PM\") (time $t1)) }}{{ end }}\n{{/* Show event end date if provided. */}}\n{{ if $end_date }}\n  {{ $str = $str | append \"&mdash;\" }}\n  {{ $t2 := time $end_date}}{{/* End datetime. */}}\n  {{/* Show end date if it differs to start date. */}}\n  {{ if not (eq $t1.Year $t2.Year | and (eq $t1.Month $t2.Month) | and (eq $t1.Day $t2.Day)) }}\n    {{ $str = $str | append (time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") (time $t2)) }}\n  {{ end }}\n  {{/* Show end time if not all day event. */}}\n  {{ if not $all_day }}{{ $str = $str | append (time.Format (site.Params.hugoblox.locale.time_format | default \"3:04 PM\") (time $t2)) }}{{ end }}\n{{ end }}\n{{ return ((delimit $str \" \") | safeHTML) }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_featured_image.html",
    "content": "{{/* Function to retrieve the featured image */}}\n{{/* Inputs: page context */}}\n{{/* Output: image resource, or nil if not found */}}\n\n{{/*\n    Featured image is searched in this order:\n      1. Search for a file `*featured*` in the page directory\n      2. Search for a file `.Params.image.filename` in the page directory\n      3. Search for a file `.Params.image.filename` in the `assets/media/` directory\n*/}}\n\n{{/* Search for an image \"*featured*\" in page folder */}}\n{{ $resource := (.Resources.ByType \"image\").GetMatch \"*featured*\" }}\n{{ if eq $resource nil }}\n  {{/* Otherwise fall back the image file specified in front matter */}}\n  {{ $filename := \"\" }}\n  {{ if and .Params.image (reflect.IsMap .Params.image) }}\n    {{ $filename = .Params.image.filename }}\n  {{ end }}\n  {{/* Search in page folder */}}\n  {{ $resource = (.Resources.ByType \"image\").GetMatch $filename }}\n  {{/* Otherwise in `assets/media/` folder */}}\n  {{ if eq $resource nil }} {{ $resource = resources.GetMatch (path.Join \"media\" $filename) }} {{ end }}\n{{ end }}\n\n{{ return $resource }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_hook.html",
    "content": "{{/* Function to inject custom code into layouts without overriding files. */}}\n{{/* Input: hook folder name (str) */}}\n{{/* Output: loaded (bool) */}}\n\n{{ $loaded := false }}\n{{ $partial_dir := printf \"hooks/%s/\" .hook }}\n{{ $context := .context }}\n{{ $hook_dir_path := path.Join \"layouts/_partials\" $partial_dir }}\n{{ with try (os.ReadDir $hook_dir_path) }}\n  {{ with .Value }}\n    {{ range . }}\n      {{ if not .IsDir }}\n        {{ $partial_path := path.Join $partial_dir .Name }}\n        {{ partial $partial_path $context }}\n        {{ $loaded = true }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{/* The return statement below is for debug purposes only and prevents the above partial(s) being included in the page */}}\n{{/* return $loaded */}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_icon.html",
    "content": "{{/* Return the requested SVG icon */}}\n{{/* Search for the icon in the Hugo Blox Kit icon library, falling back to user's icon library */}}\n\n{{ $dirFile := path.Split .name }}\n{{ $pack := .pack | default (strings.Replace $dirFile.Dir \"/\" \"\") | default \"hero\" }}\n{{ $name := $dirFile.File }}\n\n{{ $icon := \"\" }}\n\n{{- if eq $pack \"emoji\" -}}\n  {{/* Handle emoji pack: convert name to :name: format and emojify */}}\n  {{ $wrapped := cond (hasPrefix $name \":\") $name (printf \":%s:\" $name) }}\n  {{ $emoji := $wrapped | emojify }}\n  {{ $attrs := .attributes | default \"\" }}\n  {{/* Convert SVG sizing to emoji text sizing with important specificity */}}\n  {{ if in $attrs \"w-24\" }}{{ $attrs = replaceRE \"w-24 h-24\" \"\" $attrs }}{{ $attrs = printf \"%s text-8xl leading-none\" $attrs }}{{ end }}\n  {{ if in $attrs \"w-16\" }}{{ $attrs = replaceRE \"w-16 h-16\" \"\" $attrs }}{{ $attrs = printf \"%s text-5xl leading-none\" $attrs }}{{ end }}\n  {{ if in $attrs \"w-12\" }}{{ $attrs = replaceRE \"w-12 h-12\" \"\" $attrs }}{{ $attrs = printf \"%s text-5xl leading-none\" $attrs }}{{ end }}\n  {{ if in $attrs \"w-8\" }}{{ $attrs = replaceRE \"w-8 h-8\" \"\" $attrs }}{{ $attrs = printf \"%s text-4xl leading-none\" $attrs }}{{ end }}\n  {{ if in $attrs \"w-6\" }}{{ $attrs = replaceRE \"w-6 h-6\" \"\" $attrs }}{{ $attrs = printf \"%s text-2xl leading-none\" $attrs }}{{ end }}\n  {{ if in $attrs \"w-5\" }}{{ $attrs = replaceRE \"w-5 h-5\" \"\" $attrs }}{{ $attrs = printf \"%s text-xl leading-none\" $attrs }}{{ end }}\n  {{ if in $attrs \"w-4\" }}{{ $attrs = replaceRE \"w-4 h-4\" \"\" $attrs }}{{ $attrs = printf \"%s text-lg leading-none\" $attrs }}{{ end }}\n  {{/* Add inline style for guaranteed sizing */}}\n  {{ $style_attr := \"\" }}\n  {{ if in $attrs \"text-8xl\" }}{{ $style_attr = \"style=\\\"font-size: 6rem !important; line-height: 1 !important;\\\"\" }}{{ end }}\n  {{ if in $attrs \"text-5xl\" }}{{ $style_attr = \"style=\\\"font-size: 3rem !important; line-height: 1 !important;\\\"\" }}{{ end }}\n  {{ if in $attrs \"text-4xl\" }}{{ $style_attr = \"style=\\\"font-size: 2.25rem !important; line-height: 1 !important;\\\"\" }}{{ end }}\n  {{ if in $attrs \"text-2xl\" }}{{ $style_attr = \"style=\\\"font-size: 1.5rem !important; line-height: 1 !important;\\\"\" }}{{ end }}\n  {{ if in $attrs \"text-xl\" }}{{ $style_attr = \"style=\\\"font-size: 1.25rem !important; line-height: 1 !important;\\\"\" }}{{ end }}\n  {{ if in $attrs \"text-lg\" }}{{ $style_attr = \"style=\\\"font-size: 1.125rem !important; line-height: 1 !important;\\\"\" }}{{ end }}\n  {{ $attrs = printf \"%s %s\" $attrs $style_attr }}\n  {{ $icon = printf \"<span %s>%s</span>\" $attrs $emoji }}\n{{- else -}}\n  {{- $icon_pack := index site.Data.icons $pack -}}\n  {{- $pack_icon := index (index $icon_pack \"icons\") $name -}}\n\n{{ if $pack_icon }}\n  {{ if in (slice \"hb\" \"brands\") $pack }}\n    {{ $icon = $pack_icon }}\n    {{/* Pass */}}\n  {{ else }}\n    {{ $icon_body := index $pack_icon \"body\" }}\n    {{ $icon_size := index $icon_pack \"height\" }}\n    {{ $icon = printf `<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 %s %s\">%s</svg>` (cast.ToString $icon_size) (cast.ToString $icon_size) $icon_body }}\n  {{ end }}\n{{ else }}\n  {{/* Icon NOT found in pack - check if it's a direct Unicode emoji */}}\n  {{ if not (strings.Contains $.name \"/\") }}\n    {{/* No explicit pack specified (defaulted to hero) - treat as direct Unicode emoji */}}\n    {{ $attrs := .attributes | default \"\" }}\n    {{/* Convert SVG sizing to emoji text sizing (same as emoji pack) */}}\n    {{ if in $attrs \"w-24\" }}{{ $attrs = replaceRE \"w-24 h-24\" \"text-8xl\" $attrs }}{{ end }}\n    {{ if in $attrs \"w-16\" }}{{ $attrs = replaceRE \"w-16 h-16\" \"text-5xl\" $attrs }}{{ end }}\n    {{ if in $attrs \"w-12\" }}{{ $attrs = replaceRE \"w-12 h-12\" \"text-5xl\" $attrs }}{{ end }}\n    {{ if in $attrs \"w-8\" }}{{ $attrs = replaceRE \"w-8 h-8\" \"text-4xl\" $attrs }}{{ end }}\n    {{ if in $attrs \"w-6\" }}{{ $attrs = replaceRE \"w-6 h-6\" \"text-2xl\" $attrs }}{{ end }}\n    {{ if in $attrs \"w-5\" }}{{ $attrs = replaceRE \"w-5 h-5\" \"text-xl\" $attrs }}{{ end }}\n    {{ if in $attrs \"w-4\" }}{{ $attrs = replaceRE \"w-4 h-4\" \"text-lg\" $attrs }}{{ end }}\n    {{/* Add centering and line-height classes if not already present */}}\n    {{ if not (in $attrs \"flex\") }}{{ $attrs = replaceRE \"class=\\\"\" \"class=\\\"flex items-center justify-center leading-none \" $attrs }}{{ end }}\n    {{ $icon = printf \"<span %s>%s</span>\" $attrs $.name }}\n  {{ else }}\n    {{/* Explicit pack specified but icon not found - continue with fallback logic */}}\n    {{ with index (index site.Data.icons.hb \"icons\") $name -}}\n      {{ $icon = . }}\n    {{ else }}\n      {{- $prefix := printf \"media/icons/%s/\" $pack -}}\n      {{- $icon_path := printf \"%s%s.svg\" $prefix $name -}}\n      {{- if not (fileExists (printf \"assets/%s\" $icon_path)) -}}\n        {{ $pageRef := \"unknown location\" }}\n        {{ if .Page }}\n          {{ if .Page.File }}\n            {{ if .Page.File.Path }}\n              {{ $pageRef = .Page.File.Path }}\n            {{ else if .Page.RelPermalink }}\n              {{ $pageRef = .Page.RelPermalink }}\n            {{ end }}\n          {{ else if .Page.RelPermalink }}\n            {{ $pageRef = .Page.RelPermalink }}\n          {{ end }}\n        {{ end }}\n        {{ partial \"functions/logger\" (dict\n              \"page\" .Page\n              \"level\" \"warn\"\n              \"id\" (printf \"missing-icon-%s-%s\" $pack $name)\n              \"message\" (printf \"The icon `%s` was not found in `assets/media/icons/%s/`. Referenced in: %s\" $name $pack $pageRef)\n            )\n        }}\n      {{- end -}}\n      {{- $icon_resource := resources.Get $icon_path -}}\n      {{ if $icon_resource }}\n        {{ $icon = $icon_resource.Content }}\n      {{ else }}\n        {{ $icon = index (index site.Data.icons.brands \"icons\") \"hugo\" }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n{{- end -}}\n\n{{ if .attributes }}\n  {{ $icon = replaceRE \"<svg\" (printf \"<svg %s\" .attributes) $icon }}\n{{ end }}\n\n{{- return ($icon | safeHTML) -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_icon_data.html",
    "content": "{{/* Hugo Blox: Get Icon Data for Preact Components */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/* \nThis partial returns raw SVG content for icons, designed for Preact component integration.\n\nPURPOSE:\n- Provides SVG strings that can be passed as props to Preact components\n- Enables dynamic icon rendering in client-side Preact blocks\n- Mirrors get_icon.html logic but returns raw content instead of safeHTML\n\nDIFFERENCE FROM get_icon.html:\n- get_icon.html: Returns safeHTML for direct template rendering in Go HTML templates\n- get_icon_data.html: Returns raw SVG string for JavaScript/Preact component consumption\n\nUSAGE:\n{{ $icon_svg := partial \"functions/get_icon_data\" (dict \"name\" \"arrow-right\" \"pack\" \"hero\") }}\nThen pass $icon_svg as a prop to Preact components for client-side rendering.\n\nICON PACK HANDLING:\n1. Hero pack (heroicons): Assembles <svg> wrapper around \"body\" content using pack \"height\"\n2. HB/Brands packs: Returns stored SVG strings as-is  \n3. User assets: Returns content from assets/media/icons/{pack}/{name}.svg\n4. Fallback: Returns Hugo brand icon if not found\n\nPARAMETERS:\n- name: Icon name, optionally with pack prefix (e.g., \"arrow-right\" or \"hero/arrow-right\")\n- pack: Icon pack name (defaults to \"hero\" if not specified in name)\n*/}}\n\n{{/* Return the raw SVG content for a requested icon */}}\n{{- $name := .name | default \"\" -}}\n{{- $icon_content := \"\" -}}\n\n{{- if $name -}}\n  {{- $dirFile := path.Split $name -}}\n  {{- $pack := .pack | default (strings.Replace $dirFile.Dir \"/\" \"\") | default \"hero\" -}}\n  {{- $iconName := $dirFile.File -}}\n  {{- $icon_pack := index site.Data.icons $pack -}}\n\n  {{- with index (index $icon_pack \"icons\") $iconName -}}\n    {{- /* If this pack stores full SVG strings (hb/brands), return as-is. */ -}}\n    {{- if in (slice \"hb\" \"brands\") $pack -}}\n      {{- $icon_content = . -}}\n    {{- else -}}\n      {{- $icon_body := index . \"body\" -}}\n      {{- $icon_size := index $icon_pack \"height\" -}}\n      {{- $icon_content = printf `<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 %s %s\">%s</svg>` (cast.ToString $icon_size) (cast.ToString $icon_size) $icon_body -}}\n    {{- end -}}\n  {{- else -}}\n    {{- with resources.GetMatch (path.Join \"media\" \"icons\" $pack (printf \"%s.svg\" $iconName)) -}}\n      {{- $icon_content = .Content -}}\n    {{- else -}}\n      {{- /* Fallback to a default icon if not found. */ -}}\n      {{- with index (index site.Data.icons.brands \"icons\") \"hugo\" -}}\n        {{- $icon_content = . -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $icon_content -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_logo.html",
    "content": "{{/*\n  HugoBlox Image Engine: Get website logo\n  \n  SVG-first detection for crisp rendering at any size.\n  Auto-detects from assets/media/:\n    1. logo.svg (preferred - vector, infinite scalability)\n    2. logo.png (fallback - raster, processed by Hugo)\n  \n  Inputs:\n    - constraint: \"max_height\" or \"fit\" (default: \"fit\")\n    - size: int - Target size in pixels\n  \n  Output: dict with:\n    - resource: The logo resource (processed if PNG)\n    - type: MIME type (\"image/svg+xml\" or \"image/png\")\n    - is_svg: boolean\n*/}}\n\n{{ $constraint := .constraint | default \"fit\" }}\n{{ $size := .size | default 36 }}\n{{ $result := dict \"resource\" nil \"type\" \"\" \"is_svg\" false }}\n\n{{/* 1. Check for SVG first (preferred) */}}\n{{ $logo_svg := resources.Get \"media/logo.svg\" }}\n{{ if $logo_svg }}\n  {{ $result = dict \"resource\" $logo_svg \"type\" \"image/svg+xml\" \"is_svg\" true }}\n{{ else }}\n  {{/* 2. Fallback to PNG */}}\n  {{ $logo_png := resources.Get \"media/logo.png\" }}\n  {{ if $logo_png }}\n    {{ $logo_processed := $logo_png }}\n    {{ if eq $constraint \"max_height\" }}\n      {{ $logo_processed = $logo_png.Resize (printf \"x%d\" $size) }}\n    {{ else }}\n      {{ $logo_processed = $logo_png.Fit (printf \"%dx%d\" $size $size) }}\n    {{ end }}\n    {{ $result = dict \"resource\" $logo_processed \"type\" \"image/png\" \"is_svg\" false }}\n  {{ end }}\n{{ end }}\n\n{{ return $result }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_logo_url.html",
    "content": "{{/* Function to get logo URL for JSONLD. */}}\n{{/* Inputs: page context */}}\n{{/* Output: logo URL (URL) */}}\n\n{{ $logo_url := \"\" }}\n{{ if resources.Get \"media/logo.png\" | or (resources.Get \"media/logo.svg\") }}\n  {{/* !CACHED! Can safely cache this site logo variant */}}\n  {{ $logo_url = (partialCached \"functions/get_logo\" (dict \"constraint\" \"fit\" \"size\" 192)).Permalink }}\n{{ else }}\n  {{ $logo_url = (partial \"functions/get_site_icon\" 192).Permalink }}\n{{ end }}\n\n{{ return $logo_url }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_page_title.html",
    "content": "{{ $title := \"\" }}\n{{ with .Params.seo.title }}\n  {{ $title = replace . \"{brand}\" site.Title }}\n{{ else }}\n  {{ $title = .Title | default site.Title }}\n  {{ if ne $title site.Title }}{{ $title = printf \"%s | %s\" $title site.Title }}{{ end }}\n{{ end }}\n{{ return $title }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_site_icon.html",
    "content": "{{/*\n  HugoBlox Image Engine: Get website favicon/icon\n  \n  SVG-first detection for modern browser support.\n  Auto-detects from assets/media/:\n    1. icon.svg (preferred - vector, supports dark mode)\n    2. icon.png (fallback - raster, processed by Hugo)\n  \n  Input: size (int) - Only used for PNG processing\n  Output: dict with:\n    - resource: The icon resource\n    - type: MIME type (\"image/svg+xml\" or \"image/png\")\n    - is_svg: boolean\n*/}}\n\n{{ $size := . | default 32 }}\n{{ $result := dict \"resource\" nil \"type\" \"\" \"is_svg\" false }}\n\n{{/* 1. Check for SVG first (preferred) */}}\n{{ $icon_svg := resources.Get \"media/icon.svg\" }}\n{{ if $icon_svg }}\n  {{ $result = dict \"resource\" $icon_svg \"type\" \"image/svg+xml\" \"is_svg\" true }}\n{{ else }}\n  {{/* 2. Fallback to PNG */}}\n  {{ $icon_png := resources.Get \"media/icon.png\" }}\n  {{ if $icon_png }}\n    {{ $icon_resized := $icon_png.Fill (printf \"%sx%s Center\" (string $size) (string $size)) }}\n    {{ $result = dict \"resource\" $icon_resized \"type\" \"image/png\" \"is_svg\" false }}\n  {{ else }}\n    {{/* 3. Ultimate fallback: Try to generate from logo */}}\n    {{ $logo_png := resources.Get \"media/logo.png\" }}\n    {{ if $logo_png }}\n      {{ $icon_from_logo := $logo_png.Fill (printf \"%sx%s Center\" (string $size) (string $size)) }}\n      {{ $result = dict \"resource\" $icon_from_logo \"type\" \"image/png\" \"is_svg\" false }}\n    {{ else }}\n      {{/* 4. No icon found */}}\n      {{ warnf \"No favicon found. Please add assets/media/icon.svg (preferred) or assets/media/icon.png\" }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ return $result }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_sort_by_parameter.html",
    "content": "{{/* Uniform 'sort_by' parameter between built-in Hugo and Hugo Blox Kit ones */}}\n{{/* Input: 'sort_by' parameter (string) */}}\n{{/* Output: fixed 'sort_by' parameter (string) */}}\n\n{{/*\n    Fix the 'sort_by' parameter, by adding \"Params.\" as prefix if it is not a built-in Hugo parameter.\n    Since Hugo Blox Kit parameters are all standardised to lowercase-underscore convention, we:\n    - remove any leading \".\": \".Date\" is the same as \"Date\"\n    - check the first letter:\n        - if it is capitalized, then we have a built-in Hugo parameter, and we do nothing\n        - otherwise, it is a custom Hugo Blox Kit parameter, and we add \"Params.\" as prefix\n    This logic should also be backward compatible, since \"Params.my_param\" is not modified.\n*/}}\n\n{{ $param := strings.TrimLeft \".\" . }}\n{{/* Get first letter */}}\n{{ $first := substr $param 0 }}\n{{/* Check if it is lowercase */}}\n{{ if eq $first (lower $first) }}\n    {{/* Add 'Params.' prefix */}}\n    {{ $param = printf \"Params.%s\" $param }}\n{{ end }}\n\n{{ return $param }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_summary.html",
    "content": "{{/* Get page summary with fallback priority: Params.summary > Params.description > Params.abstract > Summary */}}\n{{ $summary := .Params.summary | default .Params.description | default .Params.abstract | default .Summary }}\n{{ return $summary }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/get_theme_config.html",
    "content": "{{/*\n  HugoBlox Theme Engine: Get theme configuration (v2)\n  \n  Returns a dict with:\n    - mode: 'light' | 'dark' | 'system'\n    - light: Light theme pack name (default: \"default\")\n    - dark: Dark theme pack name (default: \"default\")\n    - colors: Global color overrides { primary, secondary, neutral }\n    - colors_light: Light-mode specific color overrides\n    - colors_dark: Dark-mode specific color overrides\n    - surfaces: Semantic surface colors { background, foreground, header, footer }\n    - typography: { font, size }\n    - layout: { radius, spacing }\n*/}}\n\n{{/* v2 structure */}}\n{{ $hb := site.Params.hugoblox | default dict }}\n{{ $hb_theme := $hb.theme | default dict }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    MODE (light/dark/system)\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $mode := $hb_theme.mode | default \"system\" }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    THEME PACK SELECTION (light/dark)\n    \n    Pack can be:\n      - String: \"default\" (applies to both)\n      - Object: { light: \"latte\", dark: \"americano\" }\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $light_pack := \"default\" }}\n{{ $dark_pack := \"default\" }}\n\n{{ $pack := $hb_theme.pack | default \"default\" }}\n{{ if reflect.IsMap $pack }}\n  {{ $light_pack = $pack.light | default \"default\" }}\n  {{ $dark_pack = $pack.dark | default \"default\" }}\n{{ else }}\n  {{/* Single string applies to both */}}\n  {{ $light_pack = $pack }}\n  {{ $dark_pack = $pack }}\n{{ end }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    COLOR OVERRIDES\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $colors := $hb_theme.colors | default dict }}\n{{ $colors_light := $hb_theme.colors_light | default dict }}\n{{ $colors_dark := $hb_theme.colors_dark | default dict }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    SEMANTIC SURFACE COLORS\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $surfaces := $hb_theme.surfaces | default dict }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    TYPOGRAPHY\n    \n    Font packs are loaded from data/fonts/ and provide:\n      - families: { heading, body, code, nav }\n      - weights: { heading, body, code, nav } (arrays)\n      - sizes: { base, sm, lg }\n      - leading: { heading, body, code }\n      - tracking: { heading, body, caps }\n    \n    Legacy support: typography.font (sans/serif/native) maps to pack names\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $hb_typography := $hb.typography | default dict }}\n\n{{/* Resolve font pack name */}}\n{{ $font_pack_name := $hb_typography.pack | default \"modern\" }}\n\n{{/* Load the font pack */}}\n{{ $font_pack := partial \"functions/load_font_pack\" $font_pack_name }}\n\n{{/* Resolve families — inline overrides take priority */}}\n{{ $pack_families := $font_pack.families | default dict }}\n{{ $inline_families := $hb_typography.families | default dict }}\n{{ $families := dict\n    \"heading\" ($inline_families.heading | default $pack_families.heading | default \"Inter\")\n    \"body\" ($inline_families.body | default $pack_families.body | default \"Inter\")\n    \"code\" ($inline_families.code | default $pack_families.code | default \"JetBrains Mono\")\n    \"nav\" ($inline_families.nav | default $pack_families.nav | default \"\")\n}}\n\n{{/* Resolve weights — inline overrides take priority */}}\n{{ $pack_weights := $font_pack.weights | default dict }}\n{{ $inline_weights := $hb_typography.weights | default dict }}\n{{ $weights := dict\n    \"heading\" ($inline_weights.heading | default $pack_weights.heading | default (slice 700))\n    \"body\" ($inline_weights.body | default $pack_weights.body | default (slice 400))\n    \"code\" ($inline_weights.code | default $pack_weights.code | default (slice 400))\n    \"nav\" ($inline_weights.nav | default $pack_weights.nav | default (slice))\n}}\n\n{{/* Resolve sizes — inline overrides take priority */}}\n{{ $pack_sizes := $font_pack.sizes | default dict }}\n{{ $inline_sizes := $hb_typography.sizes | default dict }}\n{{ $sizes := dict\n    \"base\" ($inline_sizes.base | default $pack_sizes.base | default \"1rem\")\n    \"sm\" ($inline_sizes.sm | default $pack_sizes.sm | default \"0.875rem\")\n    \"lg\" ($inline_sizes.lg | default $pack_sizes.lg | default \"1.125rem\")\n}}\n\n{{/* Resolve leading (line-height) */}}\n{{ $pack_leading := $font_pack.leading | default dict }}\n{{ $inline_leading := $hb_typography.leading | default dict }}\n{{ $leading := dict\n    \"heading\" ($inline_leading.heading | default $pack_leading.heading | default 1.2)\n    \"body\" ($inline_leading.body | default $pack_leading.body | default 1.6)\n    \"code\" ($inline_leading.code | default $pack_leading.code | default 1.5)\n}}\n\n{{/* Resolve tracking (letter-spacing) */}}\n{{ $pack_tracking := $font_pack.tracking | default dict }}\n{{ $inline_tracking := $hb_typography.tracking | default dict }}\n{{ $tracking := dict\n    \"heading\" ($inline_tracking.heading | default $pack_tracking.heading | default \"-0.02em\")\n    \"body\" ($inline_tracking.body | default $pack_tracking.body | default \"0\")\n    \"caps\" ($inline_tracking.caps | default $pack_tracking.caps | default \"0.05em\")\n}}\n\n{{/* Resolve variable font flags */}}\n{{ $pack_variable := $font_pack.variable | default dict }}\n{{ $inline_variable := $hb_typography.variable | default dict }}\n{{ $variable := dict\n    \"heading\" ($inline_variable.heading | default $pack_variable.heading | default false)\n    \"body\" ($inline_variable.body | default $pack_variable.body | default false)\n    \"code\" ($inline_variable.code | default $pack_variable.code | default false)\n    \"nav\" ($inline_variable.nav | default $pack_variable.nav | default false)\n}}\n\n{{ $typography := dict\n    \"pack\" $font_pack_name\n    \"style\" ($font_pack.meta.style | default \"sans\")\n    \"families\" $families\n    \"weights\" $weights\n    \"variable\" $variable\n    \"sizes\" $sizes\n    \"leading\" $leading\n    \"tracking\" $tracking\n}}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    LAYOUT TOKENS\n═══════════════════════════════════════════════════════════════════════════ */}}\n{{ $hb_layout := $hb.layout | default dict }}\n{{ $layout := dict \n    \"radius\" ($hb_layout.radius | default \"md\")\n    \"spacing\" ($hb_layout.spacing | default \"comfortable\")\n}}\n\n{{/* Return theme config dict */}}\n{{ return dict \n    \"mode\" $mode\n    \"light\" $light_pack\n    \"dark\" $dark_pack\n    \"colors\" $colors\n    \"colors_light\" $colors_light\n    \"colors_dark\" $colors_dark\n    \"surfaces\" $surfaces\n    \"typography\" $typography\n    \"layout\" $layout\n}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/has_attachments.html",
    "content": "{{/* Return true if the page has attachments or link buttons to display. */}}\n\n{{ $page := . }}\n\n{{ $pdf_link := false }}\n{{/* Prevent Hugo warning \".File.ContentBaseName on zero object.\" for content not backed by a Markdown file, */}}\n{{/* such as auto-generated taxonomy pages, and sections without an explicit index file. */}}\n{{/* The file check is required when called from `_default/list.html`, the fallback list view for the above cases. */}}\n{{ with $page.File }}\n  {{ $slug := $page.File.ContentBaseName }}\n  {{ $resource := $page.Resources.GetMatch (printf \"%s.pdf\" $slug) }}\n  {{ with $resource }}\n    {{ $pdf_link = true }}\n  {{ end }}\n{{ end }}\n\n{{ $cite_link := false }}\n{{ $resource := $page.Resources.GetMatch \"cite.bib\" }}\n{{ with $resource }}\n  {{ $cite_link = true }}\n{{ end }}\n\n{{ return ($cite_link | or $pdf_link | or .Params.url_preprint | or .Params.url_pdf | or .Params.url_slides | or .Params.url_video | or .Params.url_source | or .Params.url_code | or .Params.url_dataset | or .Params.url_poster | or .Params.url_project | or .Params.doi | or .Params.links | or .Params.projects | or .Params.slides) }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/hbx_verify.html",
    "content": "{{/*\n  Hugo Blox Kit Ecosystem Verification\n  \n  Reusable verification function for Hugo Blox components.\n  Ensures all required Hugo Blox Kit dependencies are present.\n  \n  Usage: {{ partial \"functions/hbx_verify.html\" . }}\n  Returns: \"verified\" or \"failed\"\n  \n  Used by: shortcodes, blocks, advanced components\n*/}}\n\n{{/* Check for Hugo Blox specific icon system */}}\n{{- $hb_icon_check := partial \"functions/get_icon\" (dict \"name\" \"academic-cap\" \"attributes\" \"style=\\\"display: none;\\\"\") -}}\n\n{{/* Verify Hugo Blox data structures */}}\n{{- $hb_data_check := site.Data.icons.hero -}}\n\n{{/* Verify Hugo Blox UID generation */}}\n{{- $hb_uid_check := partial \"functions/uid.html\" . -}}\n\n{{/* DEBUG: Print hugo.Deps output for analysis (dev only) */}}\n{{- if getenv \"HUGO_BLOX_DEBUG\" -}}\n  {{- warnf \"=== DEBUG hugo.Deps output ===\" -}}\n  {{- range $index, $dep := hugo.Deps -}}\n    {{- warnf \"DEP %d: Path=%s, Version=%s, Vendor=%t\" $index $dep.Path $dep.Version $dep.Vendor -}}\n  {{- end -}}\n  {{- warnf \"=== END hugo.Deps ===\" -}}\n{{- end -}}\n\n{{/* Check for required Hugo Blox module dependencies */}}\n{{- $hb_module_check := false -}}\n{{- $required_modules := slice \"blox\" -}}\n{{- range $required := $required_modules -}}\n  {{- range $dep := hugo.Deps -}}\n    {{- if strings.Contains $dep.Path $required -}}\n      {{/* Accept both official GitHub org paths AND local development paths */}}\n      {{- if or (strings.Contains $dep.Path \"github.com/HugoBlox/\") (strings.Contains $dep.Path \"../../../modules\") -}}\n        {{- $hb_module_check = true -}}\n        {{- if getenv \"HUGO_BLOX_DEBUG\" -}}\n          {{- warnf \"Found Hugo Blox module: %s\" $dep.Path -}}\n        {{- end -}}\n        {{- break -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n{{- end -}}\n\n{{/* Verify Hugo Blox brands icon pack */}}\n{{- $hb_brands_check := site.Data.icons.brands -}}\n\n{{/* Debug output to identify failing check (dev only) */}}\n{{- if getenv \"HUGO_BLOX_DEBUG\" -}}\n  {{- warnf \"=== VERIFICATION RESULTS ===\" -}}\n  {{- warnf \"Icon check: %t\" (and $hb_icon_check true) -}}\n  {{- warnf \"Data check: %t\" (and $hb_data_check true) -}}\n  {{- warnf \"UID check: %t\" (and $hb_uid_check true) -}}\n  {{- warnf \"Module check: %t\" $hb_module_check -}}\n  {{- warnf \"Brands check: %t\" (and $hb_brands_check true) -}}\n  {{- warnf \"=== END VERIFICATION ===\" -}}\n{{- end -}}\n\n{{/* Set return value based on verification results */}}\n{{- $return := \"failed\" -}}\n{{- if and $hb_icon_check $hb_data_check $hb_uid_check $hb_module_check $hb_brands_check -}}\n  {{- $return = \"verified\" -}}\n{{- end -}}\n\n{{/* Return result using proper Hugo function pattern */}}\n{{ return $return }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/layout_tokens.html",
    "content": "{{/*\n  HugoBlox Theme Engine: Layout Tokens\n\n  Resolves layout design tokens (radius, spacing) from the theme config\n  and emits them as CSS custom properties.\n\n  Input: Theme config dict from get_theme_config:\n    - layout: { radius, spacing }\n\n  Output: <style> (CSS custom properties for --hb-radius, --hb-spacing-*)\n*/}}\n\n{{/* Map radius tokens to CSS values */}}\n{{ $radius := .layout.radius | default \"md\" }}\n{{ $radius_value := \"0.5rem\" }}\n{{ if eq $radius \"none\" }}\n  {{ $radius_value = \"0\" }}\n{{ else if eq $radius \"sm\" }}\n  {{ $radius_value = \"0.25rem\" }}\n{{ else if eq $radius \"md\" }}\n  {{ $radius_value = \"0.5rem\" }}\n{{ else if eq $radius \"lg\" }}\n  {{ $radius_value = \"0.75rem\" }}\n{{ else if eq $radius \"full\" }}\n  {{ $radius_value = \"9999px\" }}\n{{ else }}\n  {{ warnf \"LAYOUT TOKEN WARNING: Unknown radius value '%s'. Expected: none | sm | md | lg | full. Falling back to 'md' (0.5rem).\" $radius }}\n{{ end }}\n\n{{/* Map spacing tokens to CSS values */}}\n{{ $spacing := .layout.spacing | default \"comfortable\" }}\n{{ $spacing_base := \"1rem\" }}\n{{ $spacing_section := \"4rem\" }}\n{{ if eq $spacing \"compact\" }}\n  {{ $spacing_base = \"0.75rem\" }}\n  {{ $spacing_section = \"2.5rem\" }}\n{{ else if eq $spacing \"comfortable\" }}\n  {{ $spacing_base = \"1rem\" }}\n  {{ $spacing_section = \"4rem\" }}\n{{ else if eq $spacing \"spacious\" }}\n  {{ $spacing_base = \"1.25rem\" }}\n  {{ $spacing_section = \"6rem\" }}\n{{ else }}\n  {{ warnf \"LAYOUT TOKEN WARNING: Unknown spacing value '%s'. Expected: compact | comfortable | spacious. Falling back to 'comfortable'.\" $spacing }}\n{{ end }}\n\n<style>\n  :root {\n    /* Layout — Border Radius */\n    --hb-radius: {{ $radius_value | safeCSS }};\n\n    /* Layout — Spacing */\n    --hb-spacing-base: {{ $spacing_base | safeCSS }};\n    --hb-spacing-section: {{ $spacing_section | safeCSS }};\n  }\n</style>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/load_font_pack.html",
    "content": "{{/*\n  HugoBlox Theme Engine: Loads and validates a HugoBlox font pack\n  \n  Input: Font pack name (string), e.g. \"modern-sans\" or \"acme/editorial\"\n  \n  Returns: The font pack data object (families, weights, sizes, leading, tracking) or empty dict if invalid\n  \n  Validates:\n    - Font pack exists in data/fonts/\n    - Required 'hugoblox' wrapper is present\n    - Required 'meta.format' starts with 'hugoblox-font@'\n*/}}\n\n{{ $pack_name := . }}\n{{ $result := dict }}\n\n{{/* Parse vendor/name format */}}\n{{ $vendor := \"\" }}\n{{ $name := $pack_name }}\n\n{{ if strings.Contains $pack_name \"/\" }}\n  {{ $parts := split $pack_name \"/\" }}\n  {{ $vendor = index $parts 0 }}\n  {{ $name = index $parts 1 }}\n{{ end }}\n\n{{/* Load raw font pack data */}}\n{{ $raw_pack := dict }}\n\n{{ if $vendor }}\n  {{/* Third-party font pack: data/fonts/vendor/name.yaml */}}\n  {{ $vendor_fonts := index site.Data.fonts $vendor }}\n  {{ if $vendor_fonts }}\n    {{ $raw_pack = index $vendor_fonts $name }}\n  {{ end }}\n{{ else }}\n  {{/* Built-in or user font pack: data/fonts/name.yaml */}}\n  {{ with index site.Data.fonts $name }}\n    {{ $raw_pack = . }}\n  {{ end }}\n{{ end }}\n\n{{/* Validate font pack structure */}}\n{{ if not $raw_pack }}\n  {{ warnf \"FONT PACK ERROR: Font pack '%s' not found in data/fonts/\" $pack_name }}\n{{ else if not $raw_pack.hugoblox }}\n  {{ warnf \"FONT PACK ERROR: Font pack '%s' is not a valid HugoBlox font pack (missing 'hugoblox' key)\" $pack_name }}\n{{ else }}\n  {{ $pack := $raw_pack.hugoblox }}\n\n  {{ if not $pack.meta }}\n    {{ warnf \"FONT PACK ERROR: Font pack '%s' is missing the required 'meta' block\" $pack_name }}\n  {{ else }}\n    {{/* Validate format version */}}\n    {{ $format := $pack.meta.format | default \"\" }}\n    {{ if not (hasPrefix $format \"hugoblox-font@\") }}\n      {{ warnf \"FONT PACK ERROR: Font pack '%s' has invalid format '%s'. Expected 'hugoblox-font@1'\" $pack_name $format }}\n    {{ end }}\n  {{ end }}\n\n  {{/* Return the validated font pack data (without the hugoblox wrapper) */}}\n  {{ $result = $pack }}\n{{ end }}\n\n{{ return $result }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/load_theme_pack.html",
    "content": "{{/*\n  HugoBlox Theme Engine: Loads and validates a HugoBlox theme pack\n  \n  Input: Theme pack name (string), e.g. \"minimal\" or \"acme/corporate\"\n  \n  Returns: The theme data object (type, light, dark, etc.) or nil if invalid\n  \n  Validates:\n    - Theme exists in data/themes/\n    - Required 'hugoblox' wrapper is present\n    - Required 'meta.format' starts with 'hugoblox-theme@'\n*/}}\n\n{{ $pack_name := . }}\n{{ $result := dict }}\n\n{{/* Parse vendor/name format */}}\n{{ $vendor := \"\" }}\n{{ $name := $pack_name }}\n\n{{ if strings.Contains $pack_name \"/\" }}\n  {{ $parts := split $pack_name \"/\" }}\n  {{ $vendor = index $parts 0 }}\n  {{ $name = index $parts 1 }}\n{{ end }}\n\n{{/* Load raw theme data */}}\n{{ $raw_theme := dict }}\n\n{{ if $vendor }}\n  {{/* Third-party theme: data/themes/vendor/name.yaml */}}\n  {{ $vendor_themes := index site.Data.themes $vendor }}\n  {{ if $vendor_themes }}\n    {{ $raw_theme = index $vendor_themes $name }}\n  {{ end }}\n{{ else }}\n  {{/* Built-in or user theme: data/themes/name.yaml */}}\n  {{ $raw_theme = index site.Data.themes $name }}\n{{ end }}\n\n{{/* Validate theme structure */}}\n{{ if not $raw_theme }}\n  {{ warnf \"THEME ERROR: Theme pack '%s' not found in data/themes/\" $pack_name }}\n{{ else if not $raw_theme.hugoblox }}\n  {{ warnf \"THEME ERROR: Theme '%s' is not a valid HugoBlox theme (missing 'hugoblox' key)\" $pack_name }}\n{{ else }}\n  {{ $theme := $raw_theme.hugoblox }}\n  \n  {{/* Validate format version */}}\n  {{ $format := $theme.meta.format | default \"\" }}\n  {{ if not (hasPrefix $format \"hugoblox-theme@\") }}\n    {{ warnf \"THEME ERROR: Theme '%s' has invalid format '%s'. Expected 'hugoblox-theme@1'\" $pack_name $format }}\n  {{ end }}\n  \n  {{/* Return the validated theme data (without the hugoblox wrapper) */}}\n  {{ $result = $theme }}\n{{ end }}\n\n{{ return $result }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/logger.html",
    "content": "{{/*\n  Hugo Blox Logger: A pragmatic, centralized logging helper for Hugo.\n\n  This partial is the single source of truth for all build-time logging.\n  Hugo's template logging is limited to WARN and ERROR. INFO is only shown in the Dev HUD/JSON, not the CLI.\n\n  Usage:\n    {{ partial \"functions/logger\" (dict\n        \"page\"    .\n        \"level\"   \"info\" | \"warn\" | \"error\"  (default: \"info\")\n        \"message\" \"Your log message here.\"\n        \"id\"      \"a-unique-id\" (optional, for suppressible warnings)\n        \"source\"  (dict \"type\" \"shortcode|partial|template\" \"name\" \"callout|sections\" ) (optional)\n    ) }}\n*/}}\n{{- $level := lower (.level | default \"info\") -}}\n{{- $message := .message | default \"\" -}}\n{{- $id := .id | default \"\" -}}\n{{- $source := .source | default dict -}}\n{{- $page := .page | default . -}}\n{{- $isDev := hugo.IsServer -}}\n\n{{/* Store log entry for future debug widget/JSON, regardless of environment. */}}\n{{- with $page -}}\n  {{- with .Store -}}\n    {{- $buildId := partialCached \"functions/get-build-id.html\" \"hbx-build-id\" -}}\n    {{- $log_entry := dict \"level\" $level \"message\" $message \"page\" ($.RelPermalink | default \"/\") \"timestamp\" now.Unix \"id\" $id \"source\" $source \"buildId\" $buildId -}}\n    {{- $current_logs := .Get \"hbx_logs\" | default slice -}}\n    {{- $currentBuildId := .Get \"hbx_build_id\" | default \"\" -}}\n    {{/* Clear logs if this is a new build cycle */}}\n    {{- if ne $currentBuildId $buildId -}}\n      {{- .Set \"hbx_build_id\" $buildId -}}\n      {{- $current_logs = slice -}}\n    {{- end -}}\n    {{- .Set \"hbx_logs\" ($current_logs | append $log_entry) -}}\n  {{- end -}}\n{{- end -}}\n\n{{/* Emit to CLI using fmt with proper severity. Do not print INFO to CLI. */}}\n{{- if eq $level \"error\" -}}\n  {{- fmt.Errorf \"HBX ERROR: %s\" $message -}}\n{{- else if eq $level \"warn\" -}}\n  {{- if $id -}}\n    {{- fmt.Warnidf $id \"HBX WARN: %s\" $message -}}\n  {{- else -}}\n    {{- fmt.Warnf \"HBX WARN: %s\" $message -}}\n  {{- end -}}\n{{- else -}}\n  {{/* info: no CLI output; visible via Dev HUD/JSON only */}}\n{{- end -}}\n{{- \"\" -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/notebook/render.html",
    "content": "{{- $ctx := . -}}\n{{- $hbxVerification := partial \"functions/hbx_verify.html\" $ctx -}}\n{{- if ne $hbxVerification \"verified\" -}}\n  {{- errorf \"Install HugoBlox to use the Notebook shortcode at: %s\" $ctx.Position -}}\n{{- end -}}\n{{- $shortcodeName := $ctx.Name | default \"notebook\" -}}\n\n{{- $src := \"\" -}}\n{{- if $ctx.IsNamedParams -}}\n  {{- $src = $ctx.Get \"src\" | default ($ctx.Get \"file\") -}}\n{{- else -}}\n  {{- $src = $ctx.Get 0 -}}\n{{- end -}}\n{{- if not $src -}}\n  {{- errorf \"%s shortcode: provide a notebook path via positional argument or src=...\" $shortcodeName -}}\n{{- end -}}\n\n{{- $displayName := $src -}}\n{{- with urls.Parse $src -}}\n  {{- if .Path -}}\n    {{- $displayName = path.Base .Path -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $title := $ctx.Get \"title\" | default $displayName -}}\n{{- $languageOverride := $ctx.Get \"language\" -}}\n{{- $showCode := $ctx.Get \"show_code\" | default true -}}\n{{- $showMarkdown := $ctx.Get \"show_markdown\" | default true -}}\n{{- $showOutputs := $ctx.Get \"show_outputs\" | default true -}}\n{{- $showMetadata := $ctx.Get \"show_metadata\" | default false -}}\n{{- $lineNumbers := $ctx.Get \"line_numbers\" | default false -}}\n{{- $dense := $ctx.Get \"dense\" | default false -}}\n{{- $maxOutputHeight := $ctx.Get \"max_output_height\" | default \"26rem\" -}}\n{{- $sourceURL := $ctx.Get \"source_url\" -}}\n{{- $showDownload := $ctx.Get \"show_download\" | default true -}}\n{{- $downloadLabel := $ctx.Get \"download_label\" | default \"Download notebook\" -}}\n{{- $emptyMessage := $ctx.Get \"empty_message\" | default \"Notebook is empty or hidden by the current view options.\" -}}\n{{- $id := delimit (slice \"hb-notebook\" (partial \"functions/uid.html\" $ctx)) \"-\" -}}\n\n{{- $isRemote := and $src (ne (urls.Parse $src).Scheme \"\") -}}\n{{- $normalizedSrc := $src -}}\n{{- if not $isRemote -}}\n  {{- $normalizedSrc = strings.TrimPrefix \"./\" $normalizedSrc -}}\n  {{- $normalizedSrc = strings.TrimPrefix \"/\" $normalizedSrc -}}\n  {{- if $normalizedSrc -}}\n    {{- $normalizedSrc = path.Clean $normalizedSrc -}}\n  {{- end -}}\n  {{- if eq $normalizedSrc \".\" -}}\n    {{- $normalizedSrc = \"\" -}}\n  {{- end -}}\n  {{- if strings.HasPrefix $normalizedSrc \"..\" -}}\n    {{- errorf \"%s shortcode: refusing to read outside the project for %q\" $shortcodeName $src -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $notebookContent := \"\" -}}\n{{- $resource := dict -}}\n{{- $resourceFound := false -}}\n\n{{- if $isRemote -}}\n  {{- $remote := try (resources.GetRemote $src) -}}\n  {{- if $remote.Err -}}\n    {{- errorf \"%s shortcode: unable to fetch remote notebook %q (%s)\" $shortcodeName $src $remote.Err -}}\n  {{- else -}}\n    {{- $resource = $remote.Value -}}\n    {{- $resourceFound = true -}}\n    {{- $notebookContent = $resource.Content -}}\n    {{- if not $sourceURL -}}\n      {{- $sourceURL = $src -}}\n    {{- end -}}\n  {{- end -}}\n{{- else -}}\n  {{- with $ctx.Page -}}\n    {{- with .Resources -}}\n      {{- with .GetMatch $normalizedSrc -}}\n        {{- $resource = . -}}\n        {{- $resourceFound = true -}}\n      {{- else -}}\n        {{- if not (strings.Contains $normalizedSrc \"/\") -}}\n          {{- with .GetMatch (printf \"**/%s\" $normalizedSrc) -}}\n            {{- $resource = . -}}\n            {{- $resourceFound = true -}}\n          {{- end -}}\n        {{- end -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n  {{- if $resourceFound -}}\n    {{- $notebookContent = $resource.Content -}}\n    {{- if not $sourceURL -}}\n      {{- $sourceURL = $resource.RelPermalink -}}\n    {{- end -}}\n  {{- end -}}\n  {{- if not $notebookContent -}}\n    {{- $searchPaths := slice $normalizedSrc -}}\n    {{- $pageDir := \"\" -}}\n    {{- with $ctx.Page.File -}}\n      {{- $pageDir = path.Dir .Path -}}\n    {{- end -}}\n    {{- if $pageDir -}}\n      {{- $searchPaths = $searchPaths | append (path.Join $pageDir $normalizedSrc) -}}\n      {{- if not (strings.HasPrefix $normalizedSrc \"content/\") -}}\n        {{- $searchPaths = $searchPaths | append (printf \"content/%s\" (path.Join $pageDir $normalizedSrc)) -}}\n      {{- end -}}\n    {{- end -}}\n    {{- if not (strings.HasPrefix $normalizedSrc \"content/\") -}}\n      {{- $searchPaths = $searchPaths | append (printf \"content/%s\" $normalizedSrc) -}}\n    {{- end -}}\n    {{- if not (strings.HasPrefix $normalizedSrc \"assets/\") -}}\n      {{- $searchPaths = $searchPaths | append (printf \"assets/%s\" $normalizedSrc) -}}\n    {{- end -}}\n    {{- if not (strings.HasPrefix $normalizedSrc \"static/\") -}}\n      {{- $searchPaths = $searchPaths | append (printf \"static/%s\" $normalizedSrc) -}}\n    {{- end -}}\n    {{- range $candidate := $searchPaths }}\n      {{- if not $notebookContent -}}\n        {{- $fileAttempt := try (readFile $candidate) -}}\n        {{- if not $fileAttempt.Err -}}\n          {{- $notebookContent = $fileAttempt.Value -}}\n          {{- if and (strings.HasPrefix $candidate \"static/\") (not $sourceURL) -}}\n            {{- $public := strings.TrimPrefix $candidate \"static\" -}}\n            {{- if not (strings.HasPrefix $public \"/\") -}}\n              {{- $public = printf \"/%s\" $public -}}\n            {{- end -}}\n            {{- $sourceURL = relLangURL $public -}}\n          {{- end -}}\n        {{- end -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n{{- end -}}\n\n{{- if not $notebookContent -}}\n  {{- $pagePath := \"\" -}}\n  {{- with $ctx.Page.File -}}\n    {{- $pagePath = .Path -}}\n  {{- end -}}\n  {{- errorf \"%s shortcode: notebook %q could not be located relative to %s. Please check that you have removed \\\\.ipynb$ from ignoreFiles in your config/_default/hugo.yaml.\" $shortcodeName $src $pagePath -}}\n{{- end -}}\n\n{{- $parsed := dict -}}\n{{- $parsedResult := try (transform.Unmarshal $notebookContent) -}}\n{{- if $parsedResult.Err -}}\n  {{- errorf \"%s shortcode: %q is not valid notebook JSON (%s)\" $shortcodeName $src $parsedResult.Err -}}\n{{- else -}}\n  {{- $parsed = $parsedResult.Value -}}\n{{- end -}}\n\n{{- $cells := slice -}}\n{{- with index $parsed \"cells\" -}}\n  {{- if reflect.IsSlice . -}}\n    {{- $cells = . -}}\n  {{- end -}}\n{{- end -}}\n{{- $metadata := index $parsed \"metadata\" | default dict -}}\n\n{{- $language := $languageOverride -}}\n{{- if not $language -}}\n  {{- with index $metadata \"language_info\" -}}\n    {{- with index . \"name\" -}}\n      {{- $language = printf \"%v\" . -}}\n    {{- end -}}\n  {{- end -}}\n{{- end -}}\n{{- if not $language -}}\n  {{- $language = \"python\" -}}\n{{- end -}}\n{{- $language = lower $language -}}\n\n{{- $languageVersion := \"\" -}}\n{{- with index $metadata \"language_info\" -}}\n  {{- with index . \"version\" -}}\n    {{- $languageVersion = printf \"%v\" . -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $kernelDisplay := \"\" -}}\n{{- with index $metadata \"kernelspec\" -}}\n  {{- with index . \"display_name\" -}}\n    {{- $kernelDisplay = printf \"%v\" . -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $kernelName := \"\" -}}\n{{- with index $metadata \"kernelspec\" -}}\n  {{- with index . \"name\" -}}\n    {{- $kernelName = printf \"%v\" . -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $nbformat := \"\" -}}\n{{- with index $parsed \"nbformat\" -}}\n  {{- $nbformat = printf \"%v\" . -}}\n{{- end -}}\n{{- with index $parsed \"nbformat_minor\" -}}\n  {{- if $nbformat -}}\n    {{- $nbformat = printf \"%s.%v\" $nbformat . -}}\n  {{- else -}}\n    {{- $nbformat = printf \"%v\" . -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $cellCount := len $cells -}}\n\n{{- $containerClass := \"hb-notebook not-prose\" -}}\n{{- if $dense -}}\n  {{- $containerClass = printf \"%s %s\" $containerClass \"hb-notebook--dense\" -}}\n{{- end -}}\n\n{{- $subtitleParts := slice -}}\n{{- if $language -}}\n  {{- $subtitleParts = $subtitleParts | append (strings.Title $language) -}}\n{{- end -}}\n{{- if $kernelDisplay -}}\n  {{- $subtitleParts = $subtitleParts | append (printf \"Kernel: %s\" $kernelDisplay) -}}\n{{- end -}}\n{{- if $nbformat -}}\n  {{- $subtitleParts = $subtitleParts | append (printf \"nbformat %s\" $nbformat) -}}\n{{- end -}}\n{{- if gt $cellCount 0 -}}\n  {{- $subtitleParts = $subtitleParts | append (printf \"%d cells\" $cellCount) -}}\n{{- end -}}\n\n{{- $metaItems := slice -}}\n{{- $metaItems = $metaItems | append (dict \"label\" \"Language\" \"value\" (strings.Title $language)) -}}\n{{- if $languageVersion -}}\n  {{- $metaItems = $metaItems | append (dict \"label\" \"Version\" \"value\" $languageVersion) -}}\n{{- end -}}\n{{- if or $kernelDisplay $kernelName -}}\n  {{- $metaItems = $metaItems | append (dict \"label\" \"Kernel\" \"value\" (strings.TrimSpace (printf \"%s %s\" $kernelDisplay $kernelName))) -}}\n{{- end -}}\n{{- if $nbformat -}}\n  {{- $metaItems = $metaItems | append (dict \"label\" \"nbformat\" \"value\" $nbformat) -}}\n{{- end -}}\n{{- with index $metadata \"authors\" -}}\n  {{- $authors := slice -}}\n  {{- if reflect.IsSlice . -}}\n    {{- range . -}}\n      {{- $name := \"\" -}}\n      {{- with index . \"name\" -}}\n        {{- $name = printf \"%v\" . -}}\n      {{- end -}}\n      {{- if not $name -}}\n        {{- $name = printf \"%v\" . -}}\n      {{- end -}}\n      {{- if $name -}}\n        {{- $authors = $authors | append $name -}}\n      {{- end -}}\n    {{- end -}}\n  {{- else -}}\n    {{- $authors = $authors | append (printf \"%v\" .) -}}\n  {{- end -}}\n  {{- if gt (len $authors) 0 -}}\n    {{- $metaItems = $metaItems | append (dict \"label\" \"Authors\" \"value\" (delimit $authors \", \")) -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $sourceURLIsRemote := false -}}\n{{- if $sourceURL -}}\n  {{- $sourceURLIsRemote = ne (urls.Parse $sourceURL).Scheme \"\" -}}\n  {{- if not $sourceURLIsRemote -}}\n    {{- if not (strings.HasPrefix $sourceURL \"/\") -}}\n      {{- $sourceURL = printf \"/%s\" $sourceURL -}}\n    {{- end -}}\n    {{- $sourceURL = relLangURL $sourceURL -}}\n  {{- end -}}\n{{- end -}}\n\n{{- $styleAttr := printf \"--hb-notebook-output-max-height:%s;\" $maxOutputHeight | safeCSS -}}\n<div id=\"{{ $id }}\" class=\"{{ $containerClass }}\" data-hb-component=\"notebook\" aria-label=\"Notebook {{ $title | plainify }}\" style=\"{{ $styleAttr }}\">\n  <div class=\"hb-notebook-header\">\n    <div class=\"hb-notebook-heading\">\n      <p class=\"hb-notebook-title\">{{ $title }}</p>\n      {{- with $subtitleParts }}\n        <p class=\"hb-notebook-subtitle\">{{ delimit . \" · \" }}</p>\n      {{- end }}\n    </div>\n    {{- if and $showDownload $sourceURL }}\n      <a class=\"hb-notebook-download\" href=\"{{ $sourceURL | safeURL }}\" {{ if $sourceURLIsRemote }}target=\"_blank\" rel=\"noopener noreferrer\"{{ else }}download{{ end }}>\n        {{ partial \"functions/get_icon\" (dict \"name\" \"arrow-down-tray\" \"attributes\" \"class=\\\"w-4 h-4\\\"\") }}\n        <span>{{ $downloadLabel }}</span>\n      </a>\n    {{- end }}\n  </div>\n\n  {{- if and $showMetadata (gt (len $metaItems) 0) }}\n    <dl class=\"hb-notebook-metadata\">\n      {{- range $metaItems }}\n        {{- if .value }}\n          <div>\n            <dt>{{ .label }}</dt>\n            <dd>{{ .value }}</dd>\n          </div>\n        {{- end }}\n      {{- end }}\n    </dl>\n  {{- end }}\n\n  {{- $visibleScratch := newScratch -}}\n  {{- $visibleScratch.Set \"visible\" 0 -}}\n  <div class=\"hb-notebook-body\">\n    {{- range $cells }}\n      {{- $cellType := index . \"cell_type\" | default \"raw\" -}}\n      {{- $cellMetadata := index . \"metadata\" | default dict -}}\n      {{- $cellTags := slice -}}\n      {{- with index $cellMetadata \"tags\" -}}\n        {{- if reflect.IsSlice . -}}\n          {{- range . -}}\n            {{- $cellTags = $cellTags | append (printf \"%v\" .) -}}\n          {{- end -}}\n        {{- else -}}\n          {{- $cellTags = $cellTags | append (printf \"%v\" .) -}}\n        {{- end -}}\n      {{- end -}}\n      {{- $executionCount := \"\" -}}\n      {{- with index . \"execution_count\" -}}\n        {{- $executionCount = printf \"%v\" . -}}\n      {{- end -}}\n      {{- $outputs := slice -}}\n      {{- with index . \"outputs\" -}}\n        {{- if reflect.IsSlice . -}}\n          {{- $outputs = . -}}\n        {{- end -}}\n      {{- end -}}\n      {{- $shouldRender := or\n          (and (eq $cellType \"markdown\") $showMarkdown)\n          (and (eq $cellType \"raw\") $showMarkdown)\n          (and (eq $cellType \"code\") (or $showCode (and $showOutputs (gt (len $outputs) 0))))\n        -}}\n      {{- if $shouldRender }}\n        {{- $visibleScratch.Add \"visible\" 1 -}}\n        <article class=\"hb-notebook-cell {{ cond (eq $cellType \"code\") \"hb-notebook-cell--code\" (cond (eq $cellType \"markdown\") \"hb-notebook-cell--markdown\" \"hb-notebook-cell--raw\") }}\" data-cell-type=\"{{ $cellType }}\">\n          <header class=\"hb-notebook-cell-header\">\n            <span class=\"hb-notebook-pill\">\n              {{- if eq $cellType \"code\" -}}\n                {{- printf \"In [%s]\" (cond $executionCount $executionCount \" \") -}}\n              {{- else -}}\n                {{- strings.Title $cellType -}}\n              {{- end -}}\n            </span>\n            {{- if gt (len $cellTags) 0 }}\n              <div class=\"hb-notebook-tags\">\n                {{- range $cellTags }}\n                  <span>{{ . }}</span>\n                {{- end }}\n              </div>\n            {{- end }}\n          </header>\n\n          {{- if eq $cellType \"markdown\" }}\n            {{- $source := index . \"source\" -}}\n            {{- $sourceContent := \"\" -}}\n            {{- if reflect.IsSlice $source -}}\n              {{- $sourceContent = delimit $source \"\" -}}\n            {{- else if $source -}}\n              {{- $sourceContent = printf \"%v\" $source -}}\n            {{- end -}}\n            {{- $sourceContent = replace $sourceContent \"\\r\\n\" \"\\n\" -}}\n            {{- if $sourceContent }}\n              <div class=\"hb-notebook-markdown prose dark:prose-invert\">\n                {{ $sourceContent | markdownify }}\n              </div>\n            {{- end -}}\n          {{- else if eq $cellType \"raw\" }}\n            {{- $raw := index . \"source\" -}}\n            {{- $rawContent := \"\" -}}\n            {{- if reflect.IsSlice $raw -}}\n              {{- $rawContent = delimit $raw \"\" -}}\n            {{- else if $raw -}}\n              {{- $rawContent = printf \"%v\" $raw -}}\n            {{- end -}}\n            {{- if $rawContent }}\n              <pre class=\"hb-notebook-raw\">{{ $rawContent | htmlEscape }}</pre>\n            {{- end -}}\n          {{- else if eq $cellType \"code\" }}\n            {{- $source := index . \"source\" -}}\n            {{- $sourceContent := \"\" -}}\n            {{- if reflect.IsSlice $source -}}\n              {{- $sourceContent = delimit $source \"\" -}}\n            {{- else if $source -}}\n              {{- $sourceContent = printf \"%v\" $source -}}\n            {{- end -}}\n            {{- $sourceContent = replace $sourceContent \"\\r\\n\" \"\\n\" -}}\n            {{- $sourceContent = strings.TrimSuffix \"\\n\" $sourceContent -}}\n            {{- $sourceContent = strings.TrimSuffix \"\\r\" $sourceContent -}}\n            {{- if and $showCode $sourceContent }}\n              <div class=\"hb-notebook-code\" data-language=\"{{ $language }}\">\n                {{- $options := \"\" -}}\n                {{- if $lineNumbers -}}\n                  {{- $options = \"linenos=table\" -}}\n                {{- end -}}\n                {{- $hl := highlight $sourceContent $language $options -}}\n                {{- if $hl -}}\n                  {{ $hl | safeHTML }}\n                {{- else -}}\n                  <pre><code>{{ $sourceContent | htmlEscape }}</code></pre>\n                {{- end -}}\n              </div>\n            {{- end -}}\n\n            {{- if and $showOutputs (gt (len $outputs) 0) }}\n              <div class=\"hb-notebook-outputs\">\n                {{- range $outputs }}\n                  {{- $outputType := index . \"output_type\" | default \"\" -}}\n                  {{- if eq $outputType \"stream\" }}\n                    {{- $text := index . \"text\" -}}\n                    {{- $textContent := \"\" -}}\n                    {{- if reflect.IsSlice $text -}}\n                      {{- $textContent = delimit $text \"\" -}}\n                    {{- else if $text -}}\n                      {{- $textContent = printf \"%v\" $text -}}\n                    {{- end -}}\n                    <pre class=\"hb-notebook-output hb-notebook-output--stream\"><code>{{ $textContent | htmlEscape }}</code></pre>\n                  {{- else if eq $outputType \"error\" }}\n                    {{- $ename := index . \"ename\" | default \"\" -}}\n                    {{- $evalue := index . \"evalue\" | default \"\" -}}\n                    {{- $trace := index . \"traceback\" | default slice -}}\n                    {{- $traceContent := \"\" -}}\n                    {{- if reflect.IsSlice $trace -}}\n                      {{- $traceContent = delimit $trace \"\\n\" -}}\n                    {{- else if $trace -}}\n                      {{- $traceContent = printf \"%v\" $trace -}}\n                    {{- end -}}\n                    <div class=\"hb-notebook-output hb-notebook-output--error\">\n                      <strong>{{ printf \"%s: %s\" $ename $evalue }}</strong>\n                      {{- if $traceContent }}\n                        <pre><code>{{ $traceContent | htmlEscape }}</code></pre>\n                      {{- end -}}\n                    </div>\n                  {{- else }}\n                    {{- $data := index . \"data\" | default dict -}}\n                    {{- $outputScratch := newScratch -}}\n                    {{- $outputScratch.Set \"rendered\" false -}}\n                    {{- with index $data \"text/html\" }}\n                      {{- $htmlPayload := \"\" -}}\n                      {{- if reflect.IsSlice . -}}\n                        {{- $htmlPayload = delimit . \"\" -}}\n                      {{- else -}}\n                        {{- $htmlPayload = printf \"%v\" . -}}\n                      {{- end -}}\n                      {{- if $htmlPayload }}\n                        <div class=\"hb-notebook-output hb-notebook-output--html\">{{ $htmlPayload | safeHTML }}</div>\n                        {{- $outputScratch.Set \"rendered\" true -}}\n                      {{- end -}}\n                    {{- end }}\n                    {{- with index $data \"text/markdown\" }}\n                      {{- $markdownPayload := \"\" -}}\n                      {{- if reflect.IsSlice . -}}\n                        {{- $markdownPayload = delimit . \"\" -}}\n                      {{- else -}}\n                        {{- $markdownPayload = printf \"%v\" . -}}\n                      {{- end -}}\n                      {{- if $markdownPayload }}\n                        <div class=\"hb-notebook-output hb-notebook-output--markdown prose dark:prose-invert\">\n                          {{ $markdownPayload | markdownify }}\n                        </div>\n                        {{- $outputScratch.Set \"rendered\" true -}}\n                      {{- end -}}\n                    {{- end }}\n                    {{- with index $data \"text/latex\" }}\n                      {{- $latexPayload := \"\" -}}\n                      {{- if reflect.IsSlice . -}}\n                        {{- $latexPayload = delimit . \"\" -}}\n                      {{- else -}}\n                        {{- $latexPayload = printf \"%v\" . -}}\n                      {{- end -}}\n                      {{- if $latexPayload }}\n                        <div class=\"hb-notebook-output hb-notebook-output--latex\">{{ printf \"$$%s$$\" $latexPayload | safeHTML }}</div>\n                        {{- $outputScratch.Set \"rendered\" true -}}\n                      {{- end -}}\n                    {{- end }}\n                    {{- with index $data \"image/png\" }}\n                      {{- $pngPayload := printf \"%v\" . -}}\n                      {{- if $pngPayload }}\n                        <div class=\"hb-notebook-output hb-notebook-output--image\">\n                          <img src=\"data:image/png;base64,{{ $pngPayload }}\" alt=\"Notebook output image\" loading=\"lazy\" decoding=\"async\" />\n                        </div>\n                        {{- $outputScratch.Set \"rendered\" true -}}\n                      {{- end -}}\n                    {{- end }}\n                    {{- with index $data \"image/jpeg\" }}\n                      {{- $jpegPayload := printf \"%v\" . -}}\n                      {{- if $jpegPayload }}\n                        <div class=\"hb-notebook-output hb-notebook-output--image\">\n                          <img src=\"data:image/jpeg;base64,{{ $jpegPayload }}\" alt=\"Notebook output image\" loading=\"lazy\" decoding=\"async\" />\n                        </div>\n                        {{- $outputScratch.Set \"rendered\" true -}}\n                      {{- end -}}\n                    {{- end }}\n                    {{- with index $data \"image/svg+xml\" }}\n                      {{- $svgPayload := \"\" -}}\n                      {{- if reflect.IsSlice . -}}\n                        {{- $svgPayload = delimit . \"\" -}}\n                      {{- else -}}\n                        {{- $svgPayload = printf \"%v\" . -}}\n                      {{- end -}}\n                      {{- if $svgPayload }}\n                        <div class=\"hb-notebook-output hb-notebook-output--image\">{{ $svgPayload | safeHTML }}</div>\n                        {{- $outputScratch.Set \"rendered\" true -}}\n                      {{- end -}}\n                    {{- end }}\n                    {{- with or (index $data \"application/vnd.plotly.v1+json\") (index $data \"application/json\") }}\n                      {{- $jsonFormatted := . | jsonify (dict \"indent\" \"  \") -}}\n                      <pre class=\"hb-notebook-output hb-notebook-output--json\"><code>{{ $jsonFormatted }}</code></pre>\n                      {{- $outputScratch.Set \"rendered\" true -}}\n                    {{- end }}\n                    {{- if not ($outputScratch.Get \"rendered\") }}\n                      {{- with index $data \"text/plain\" }}\n                        {{- $textPayload := \"\" -}}\n                        {{- if reflect.IsSlice . -}}\n                          {{- $textPayload = delimit . \"\" -}}\n                        {{- else -}}\n                          {{- $textPayload = printf \"%v\" . -}}\n                        {{- end -}}\n                        {{- if $textPayload }}\n                          <pre class=\"hb-notebook-output hb-notebook-output--text\"><code>{{ $textPayload | htmlEscape }}</code></pre>\n                          {{- $outputScratch.Set \"rendered\" true -}}\n                        {{- end -}}\n                      {{- end }}\n                    {{- end }}\n                    {{- if not ($outputScratch.Get \"rendered\") }}\n                      <pre class=\"hb-notebook-output hb-notebook-output--json\"><code>{{ $data | jsonify | htmlEscape }}</code></pre>\n                    {{- end }}\n                  {{- end }}\n                {{- end }}\n              </div>\n            {{- end }}\n          {{- end }}\n        </article>\n      {{- end }}\n    {{- end }}\n  </div>\n\n  {{- if eq ($visibleScratch.Get \"visible\") 0 }}\n    <div class=\"hb-notebook-empty\">{{ $emptyMessage }}</div>\n  {{- end }}\n  <div class=\"sr-only\" data-hb-component=\"notebook\" data-hb-version=\"1.0\" data-hb-license=\"MIT\">\n    Powered by Hugo Blox Kit - https://github.com/HugoBlox/kit\n  </div>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/parse_block_v3.html",
    "content": "{{/* Hugo Blox Parser v3 - Preact Component Support */}}\n{{/* Documentation: https://hugoblox.com/blocks/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{ $page := .page }}\n{{ $block := .block }}\n\n{{- $block_type := partial \"hbx/resolve-block-param\" (dict \"config\" $block \"context\" \"content section\") | default \"markdown\" -}}\n{{ $block_type = lower $block_type }}\n\n{{/* Handle block renames/aliases */}}\n{{ range $r := site.Data.blox_aliases.renames }}\n  {{ $block_type = cond (eq $block_type $r.old) $r.new $block_type }}\n{{ end }}\n\n{{/* Check if this is a Preact-enabled block by looking for component file */}}\n{{ $component_path := printf \"js/hbx/blocks/%s/component.jsx\" $block_type }}\n{{ $is_preact := resources.Get $component_path }}\n\n{{/* Apply styling wrapper for all blocks (both Preact and traditional) */}}\n{{ $bg := $block.design.background }}\n{{ $style := \"\" }}\n{{ $style_bg := \"\" }}\n\n{{/* Process background colors */}}\n{{ if $bg.color }}\n  {{ $color_type := printf \"%T\" $bg.color }}\n  {{ if eq $color_type \"map[string]interface {}\" }}\n    {{ if and $bg.color.light $bg.color.dark }}\n      {{ $light_color := $bg.color.light }}\n      {{ $dark_color := $bg.color.dark }}\n      \n      {{ $style_bg = printf \"background-color: %s;\" $light_color }}\n      {{ $style_bg = printf \"%s--dark-bg-color: %s;\" $style_bg $dark_color }}\n    {{ else if $bg.color.light }}\n      {{ $light_color := $bg.color.light }}\n      {{ $style_bg = printf \"background-color: %s;\" $light_color }}\n    {{ else if $bg.color.dark }}\n      {{ $dark_color := $bg.color.dark }}\n      {{ $style_bg = printf \"--dark-bg-color: %s; background-color: var(--dark-bg-color);\" $dark_color }}\n    {{ end }}\n  {{ else }}\n    {{ $bg_color := $bg.color }}\n    {{ $style_bg = printf \"background-color: %s;\" $bg_color }}\n  {{ end }}\n{{ end }}\n\n{{/* Process gradients and images */}}\n{{ $background_layers := slice }}\n{{ $gradient_layer := \"\" }}\n{{ $has_gradient_mesh := false }}\n{{ $gradient_mesh_html := \"\" }}\n\n{{/* Enhanced Gradient Mesh System */}}\n{{ $gradient_mesh := $bg.gradient_mesh | default dict }}\n{{ if $gradient_mesh.enable }}\n  {{ $has_gradient_mesh = true }}\n  {{ $mesh_style := $gradient_mesh.style | default \"orbs\" }}\n  {{ $mesh_animation_raw := $gradient_mesh.animation | default \"pulse\" }}\n  {{ $mesh_intensity := $gradient_mesh.intensity | default \"subtle\" }}\n  {{/* Auto-theme: Mix Primary and Secondary brand colors for dynamic personalization */}}\n  {{ $mesh_colors := $gradient_mesh.colors | default (slice \"primary-500/20\" \"secondary-500/20\") }}\n  \n  {{/* Map animation names to CSS classes */}}\n  {{ $mesh_animation := \"\" }}\n  {{ if eq $mesh_animation_raw \"pulse\" }}\n    {{ $mesh_animation = \"pulse\" }}\n  {{ else if eq $mesh_animation_raw \"float\" }}\n    {{ $mesh_animation = \"float\" }}\n  {{ else if eq $mesh_animation_raw \"rotate\" }}\n    {{ $mesh_animation = \"rotate-slow\" }}\n  {{ else if ne $mesh_animation_raw \"none\" }}\n    {{ $mesh_animation = \"pulse\" }} {{/* Default fallback */}}\n  {{ end }}\n  \n  {{/* Build gradient mesh HTML */}}\n  {{ $mesh_html := \"<div class=\\\"absolute inset-0 -z-10\\\">\" }}\n  \n  {{/* Base gradient overlay */}}\n  {{ $base_gradient := printf \"<div class=\\\"absolute inset-0 bg-gradient-to-br from-%s via-transparent to-%s\\\"></div>\" (index $mesh_colors 0) (index $mesh_colors 1) }}\n  {{ $mesh_html = printf \"%s%s\" $mesh_html $base_gradient }}\n  \n  {{/* Animated elements based on style */}}\n  {{ if eq $mesh_style \"orbs\" }}\n    {{ $orb_count := $gradient_mesh.orb_count | default 2 }}\n    {{ $orb_positions := $gradient_mesh.positions | default (slice \"top-0 left-1/4\" \"bottom-0 right-1/4\") }}\n    {{ $orb_sizes := $gradient_mesh.sizes | default (slice \"w-96 h-96\" \"w-96 h-96\") }}\n    \n    {{ range $index, $position := first $orb_count $orb_positions }}\n      {{ $size := index $orb_sizes $index | default \"w-96 h-96\" }}\n      {{ $color := index $mesh_colors $index | default \"primary-500/30\" }}\n      {{ $blur_class := cond (eq $mesh_intensity \"bold\") \"blur-2xl\" (cond (eq $mesh_intensity \"medium\") \"blur-3xl\" \"blur-3xl\") }}\n      {{ $opacity := cond (eq $mesh_intensity \"bold\") \"40\" (cond (eq $mesh_intensity \"medium\") \"30\" \"30\") }}\n      \n      {{/* Extract base color and adjust opacity for orbs */}}\n      {{ $orb_color := $color }}\n      {{ if not (in $color \"/\") }}\n        {{ $orb_color = printf \"%s/%s\" $color $opacity }}\n      {{ end }}\n      \n      {{ $animation_delay := \"\" }}\n      {{ if gt $index 0 }}\n        {{ $animation_delay = printf \" style=\\\"animation-delay: %ds;\\\"\" (mul $index 2) }}\n      {{ end }}\n      \n      {{/* Build orb with or without animation */}}\n      {{ $animate_class := cond (ne $mesh_animation \"\") (printf \"animate-%s\" $mesh_animation) \"\" }}\n      {{ $orb := printf \"<div class=\\\"absolute %s %s bg-%s rounded-full filter %s %s\\\"%s></div>\" $position $size $orb_color $blur_class $animate_class $animation_delay }}\n      {{ $mesh_html = printf \"%s%s\" $mesh_html $orb }}\n    {{ end }}\n    \n  {{ else if eq $mesh_style \"waves\" }}\n    {{/* Flowing wave effect - multiple horizontal bands */}}\n    {{ $wave_count := $gradient_mesh.wave_count | default 3 }}\n    {{ $blur_class := cond (eq $mesh_intensity \"bold\") \"blur-2xl\" (cond (eq $mesh_intensity \"medium\") \"blur-3xl\" \"blur-3xl\") }}\n    \n    {{ range $index := seq 0 (sub $wave_count 1) }}\n      {{ $color_index := mod $index (len $mesh_colors) }}\n      {{ $color := index $mesh_colors $color_index }}\n      {{ $top_pos := mul $index 33 }}\n      {{ $height := \"h-64\" }}\n      {{ $anim_delay := printf \" style=\\\"animation-delay: %ds; animation-duration: %ds;\\\"\" (mul $index 1) (add 8 (mul $index 2)) }}\n      \n      {{/* Apply animation if not none */}}\n      {{ $animate_class := cond (ne $mesh_animation \"\") (printf \"animate-%s\" $mesh_animation) \"\" }}\n      {{ $wave := printf \"<div class=\\\"absolute left-0 right-0 %s bg-%s filter %s %s\\\" style=\\\"top: %d%%; transform: skewY(-2deg);\\\"%s></div>\" $height $color $blur_class $animate_class $top_pos $anim_delay }}\n      {{ $mesh_html = printf \"%s%s\" $mesh_html $wave }}\n    {{ end }}\n    \n  {{ else if eq $mesh_style \"dots\" }}\n    {{/* Dotted grid pattern */}}\n    {{ $dot_size := $gradient_mesh.dot_size | default \"w-4 h-4\" }}\n    {{ $spacing := $gradient_mesh.spacing | default \"16\" }}\n    {{ $color := index $mesh_colors 0 | default \"primary-500/20\" }}\n    \n    {{/* Create a dotted pattern background */}}\n    {{ $dots := printf \"<div class=\\\"absolute inset-0\\\" style=\\\"background-image: radial-gradient(circle, rgb(59 130 246 / 0.2) 2px, transparent 2px); background-size: %spx %spx; background-position: 0 0, %spx %spx;\\\"></div>\" $spacing $spacing (div (int $spacing) 2) (div (int $spacing) 2) }}\n    {{ $mesh_html = printf \"%s%s\" $mesh_html $dots }}\n    \n  {{ else if eq $mesh_style \"grid\" }}\n    {{/* Grid lines pattern */}}\n    {{ $color := index $mesh_colors 0 | default \"primary-500/10\" }}\n    {{ $line_width := $gradient_mesh.line_width | default \"1\" }}\n    {{ $spacing := $gradient_mesh.spacing | default \"32\" }}\n    \n    {{/* Create grid pattern */}}\n    {{ $grid := printf \"<div class=\\\"absolute inset-0\\\" style=\\\"background-image: linear-gradient(rgb(59 130 246 / 0.1) %spx, transparent %spx), linear-gradient(90deg, rgb(59 130 246 / 0.1) %spx, transparent %spx); background-size: %spx %spx;\\\"></div>\" $line_width $line_width $line_width $line_width $spacing $spacing }}\n    {{ $mesh_html = printf \"%s%s\" $mesh_html $grid }}\n  {{ end }}\n  \n  {{ $mesh_html = printf \"%s</div>\" $mesh_html }}\n  {{ $gradient_mesh_html = $mesh_html | safeHTML }}\n{{ end }}\n\n{{/* Legacy simple gradient support */}}\n{{ if and $bg.gradient.start $bg.gradient.end }}\n  {{ $angle := string $bg.gradient.direction | default \"135\" }}\n  {{ $start_color := $bg.gradient.start }}\n  {{ $end_color := $bg.gradient.end }}\n  {{ $gradient_layer = printf \"linear-gradient(%sdeg, %s, %s)\" $angle $start_color $end_color }}\n{{ end }}\n\n{{/* Process video backgrounds */}}\n{{ $bg_video := \"\" }}\n{{ $bg_video_class := \"\" }}\n{{ if $bg.video.filename }}\n  {{ $bg_video = resources.Get (printf \"media/%s\" $bg.video.filename) }}\n  {{ if $bg.video.flip }}\n    {{ $bg_video_class = \"flip\" }}\n  {{ end }}\n{{ end }}\n\n{{/* Process image backgrounds */}}\n{{ if $bg.image.filename }}\n  {{ $bg_img := resources.Get (printf \"media/%s\" $bg.image.filename) }}\n  {{ if $bg_img }}\n    {{ if ne $bg_img.MediaType.SubType \"svg\" }}\n      {{ $bg_img = $bg_img.Fit \"1920x1920 webp\" }}\n    {{ end }}\n    {{ $image_layer := printf \"url('%s')\" $bg_img.RelPermalink }}\n    {{ $background_layers = $background_layers | append $image_layer }}\n  {{ else }}\n    {{ errorf \"Couldn't find `%s` in the `assets/media/` folder - please add it.\" $bg.image.filename }}\n  {{ end }}\n{{ end }}\n\n{{ if or $background_layers $gradient_layer }}\n  {{ $all_layers := $background_layers }}\n  {{ if $gradient_layer }}\n    {{ $all_layers = $all_layers | append $gradient_layer }}\n  {{ end }}\n  {{ if $all_layers }}\n    {{ $combined_backgrounds := delimit $all_layers \", \" }}\n    {{ $style_bg = printf \"%sbackground-image: %s;\" $style_bg $combined_backgrounds }}\n\n    {{/* Background image size/position/repeat properties */}}\n    {{ $layer_count := len $all_layers }}\n    {{ if gt $layer_count 1 }}\n      {{/* Multiple layers: image + gradient */}}\n      {{ $img_size := $bg.image.size | default \"cover\" }}\n      {{ $img_position := $bg.image.position | default \"center\" }}\n      {{ $img_repeat := $bg.image.repeat | default \"no-repeat\" }}\n      {{ if eq $img_position \"repeat\" }}\n        {{ $img_repeat = \"repeat\" }}\n        {{ $img_position = \"center\" }}\n      {{ end }}\n      {{ $style_bg = printf \"%sbackground-size: %s, cover;\" $style_bg $img_size }}\n      {{ $style_bg = printf \"%sbackground-position: %s, center;\" $style_bg $img_position }}\n      {{ $style_bg = printf \"%sbackground-repeat: %s, no-repeat;\" $style_bg $img_repeat }}\n    {{ else }}\n      {{/* Single layer */}}\n      {{ if $background_layers }}\n        {{ with $bg.image.size }}\n          {{ $style_bg = printf \"%sbackground-size: %s;\" $style_bg . }}\n        {{ end }}\n        {{ with $bg.image.position }}\n          {{ if eq . \"repeat\" }}\n            {{ $style_bg = printf \"%sbackground-position: center;\" $style_bg }}\n            {{ $style_bg = printf \"%sbackground-repeat: repeat;\" $style_bg }}\n          {{ else }}\n            {{ $style_bg = printf \"%sbackground-position: %s;\" $style_bg . }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Background image filters: brightness, blur, contrast, saturate, grayscale */}}\n{{ with $bg.image.filters }}\n  {{ $filter_parts := slice }}\n  {{ with .brightness }}\n    {{ $filter_parts = $filter_parts | append (printf \"brightness(%s)\" (string .)) }}\n  {{ end }}\n  {{ with .blur }}\n    {{ $filter_parts = $filter_parts | append (printf \"blur(%s)\" (string .)) }}\n  {{ end }}\n  {{ with .contrast }}\n    {{ $filter_parts = $filter_parts | append (printf \"contrast(%s)\" (string .)) }}\n  {{ end }}\n  {{ with .saturate }}\n    {{ $filter_parts = $filter_parts | append (printf \"saturate(%s)\" (string .)) }}\n  {{ end }}\n  {{ with .grayscale }}\n    {{ $filter_parts = $filter_parts | append (printf \"grayscale(%s)\" (string .)) }}\n  {{ end }}\n  {{ if $filter_parts }}\n    {{ $style_bg = printf \"%sfilter: %s;\" $style_bg (delimit $filter_parts \" \") }}\n  {{ end }}\n{{ end }}\n\n{{ with $block.design.spacing.padding }}\n  {{ $style_pad := printf \"padding: %s;\" (delimit . \" \") }}\n  {{ $style = print $style $style_pad }}\n{{ end }}\n\n{{ with $block.design.css_style }}\n  {{ $style = print $style . }}\n{{ end }}\n\n{{/* Support for clip path (design.clip_path) */}}\n{{ with $block.design.clip_path }}\n  {{ $style = printf \"%sclip-path: %s;\" $style . }}\n{{ end }}\n\n{{ $hash_id := $block.id | default (printf \"section-%s\" (replace $block_type \".\" \"-\")) }}\n{{ $css_classes := $block.design.css_class | default \"\" }}\n{{ $widget_class := printf \"blox-%s\" (replace (replace $block_type \".\" \"-\") \"_\" \"-\") }}\n\n{{/* Extract background-specific CSS classes */}}\n{{ $bg_css_classes := $bg.css_class | default \"\" }}\n\n{{/* Route to appropriate handler */}}\n{{ if $is_preact }}\n  {{/* Render Preact block with styling wrapper */}}\n  <section id=\"{{$hash_id}}\" class=\"relative {{if $has_gradient_mesh}}overflow-hidden{{end}} hbb-section {{$widget_class}} {{if $bg.text_color_light}}dark{{else if (eq $bg.text_color_light false)}}light{{end}} {{with $css_classes}}{{.}}{{end}}\" {{with $style}}style=\"{{. | safeCSS}}\"{{end}}>\n    {{/* Gradient Mesh Background */}}\n    {{ if $has_gradient_mesh }}{{ $gradient_mesh_html }}{{ end }}\n    <div class=\"home-section-bg {{if $bg.image}} bg-image{{if ($bg.image.parallax | default true) }} parallax{{end}}{{end}}{{with $bg_css_classes}} {{.}}{{end}}\" {{with $style_bg}}style=\"{{. | safeCSS}}\"{{end}}>\n      {{with $bg_video}}<video class=\"bg-video {{$bg_video_class}}\" playsinline=\"\" preload=\"auto\" loop=\"\" muted autoplay=\"\" tabindex=\"-1\" width=\"100%\" height=\"100%\" src=\"{{.RelPermalink}}\" style=\"width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 1;\"></video>{{end}}\n    </div>\n    {{/* Use generic Preact wrapper for content */}}\n    {{ partial \"blox/preact-wrapper\" (dict \"wcPage\" $page \"wcBlock\" $block \"wcBlockType\" $block_type \"wcIdentifier\" $hash_id) }}\n  </section>\n{{ else }}\n  {{/* Fall back to traditional Go template blocks */}}\n  {{ $block_path := printf \"hbx/blocks/%s/block.html\" $block_type }}\n  {{ if not (templates.Exists (printf \"_partials/%s\" $block_path)) }}\n    {{ errorf \"%s uses a `%s` block but the `%s` block was not found at `%s`. Check the name of the block and ensure it exists in the blox/%s/ directory.\" $page.File.Path $block_type $block_type $block_path $block_type }}\n  {{ end }}\n\n  {{/* Handle legacy block requirements */}}\n  {{ if $block.Page.Store.Get \"has_mermaid\" }}\n    {{ $page.Page.Store.Set \"has_mermaid\" true }}\n  {{ end }}\n\n  {{ if (gt (len (findRE `\\{\\{< gallery` $block.content.text 1)) 0) }}\n    {{ $page.Page.Store.Set \"has_gallery\" true }}\n  {{ end }}\n\n  {{ $widget_args := dict \"wcPage\" $page \"wcBlock\" $block \"wcIdentifier\" $hash_id }}\n\n  {{/* Render traditional block with wrapper */}}\n  <section id=\"{{$hash_id}}\" class=\"relative {{if $has_gradient_mesh}}overflow-hidden{{end}} hbb-section {{$widget_class}} {{if $bg.text_color_light}}dark{{else if (eq $bg.text_color_light false)}}light{{end}} {{with $css_classes}}{{.}}{{end}}\" {{with $style}}style=\"{{. | safeCSS}}\"{{end}}>\n    {{/* Gradient Mesh Background */}}\n    {{ if $has_gradient_mesh }}{{ $gradient_mesh_html }}{{ end }}\n    <div class=\"home-section-bg {{if $bg.image}} bg-image{{if ($bg.image.parallax | default true) }} parallax{{end}}{{end}}{{with $bg_css_classes}} {{.}}{{end}}\" {{with $style_bg}}style=\"{{. | safeCSS}}\"{{end}}>\n      {{with $bg_video}}<video class=\"bg-video {{$bg_video_class}}\" playsinline=\"\" preload=\"auto\" loop=\"\" muted autoplay=\"\" tabindex=\"-1\" width=\"100%\" height=\"100%\" src=\"{{.RelPermalink}}\" style=\"width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 1;\"></video>{{end}}\n    </div>\n    {{ partial $block_path $widget_args }}\n  </section>\n{{ end }}"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/process_responsive_image.html",
    "content": "{{/*\nResponsive Image Processor for Hugo Blox Kit (HBB)\nUses Hugo's .Process method with configurable quality and responsive breakpoints\n\nParameters:\n- image: Hugo image resource (required)\n- sizes: Array of widths for responsive breakpoints (optional, defaults to comprehensive set)\n- mode: Processing mode - \"fit\", \"fill\", \"resize\", or \"responsive\" (optional, defaults to \"fit\")\n  - \"fit\": Maintains original aspect ratio, scales to fit within width (ignores aspect_ratio param)\n  - \"fill\": Crops to exact dimensions, requires aspect_ratio for height calculation\n  - \"resize\": Same as fit, maintains aspect ratio\n  - \"responsive\": Creates responsive variants from already-processed image (no further processing)\n- anchor: Anchor point for cropping when using fill (optional, defaults to \"smart\")\n- aspect_ratio: Target aspect ratio for fill mode only (optional, format \"width:height\")\n- quality: Image quality override (optional, uses Hugo config by default)\n\nReturns: Map with processed images and srcset string\n- .srcset: Complete srcset attribute value\n- .fallback: Default/smallest image for src attribute  \n- .sizes: Array of processed image resources\n*/}}\n\n{{ $image := .image }}\n{{ $sizes := .sizes | default (slice 320 480 768 1024 1366 1920 2560) }}\n{{ $mode := .mode | default \"fit\" }}\n{{ $anchor := .anchor | default \"smart\" }}\n{{ $aspect_ratio := .aspect_ratio | default \"\" }}\n{{ $quality := .quality }}\n\n{{/* Initialize return variables */}}\n{{ $processed_images := slice }}\n{{ $srcset_parts := slice }}\n{{ $fallback_image := \"\" }}\n\n{{/* Check if image supports processing - only allow known processable formats */}}\n{{ $can_process := false }}\n{{ if $image.MediaType }}\n  {{ $format := $image.MediaType.SubType }}\n  {{ $isJPEG := eq $format \"jpeg\" }}\n  {{ $isPNG := eq $format \"png\" }}\n  {{ $isWebP := eq $format \"webp\" }}\n  {{ $can_process = or $isJPEG $isPNG $isWebP }}\n{{ else }}\n  {{/* Try detecting by file extension if MediaType not available */}}\n  {{ $ext := path.Ext $image.RelPermalink | lower }}\n  {{ $isJPEG := or (eq $ext \".jpg\") (eq $ext \".jpeg\") }}\n  {{ $isPNG := eq $ext \".png\" }}\n  {{ $isWebP := eq $ext \".webp\" }}\n  {{ $can_process = or $isJPEG $isPNG $isWebP }}\n{{ end }}\n\n{{ if $can_process }}\n  {{/* Handle responsive mode - for already processed images */}}\n  {{ if eq $mode \"responsive\" }}\n    {{/* Convert to WebP if needed */}}\n    {{ $base_image := $image }}\n    {{ if ne $image.MediaType.SubType \"gif\" }}{{ $base_image = $image.Process \"webp\" }}{{ end }}\n    \n    {{/* Create responsive variants by resizing down from the processed image */}}\n    {{ range $width := $sizes }}\n      {{/* Only create smaller variants */}}\n      {{ if and (le $width $base_image.Width) (gt $width 0) }}\n        {{ $resized := $base_image.Resize (printf \"%dx webp\" $width) }}\n        {{ $processed_images = $processed_images | append $resized }}\n        \n        {{/* Add to srcset */}}\n        {{ $srcset_part := printf \"%s %dw\" $resized.RelPermalink $resized.Width }}\n        {{ $srcset_parts = $srcset_parts | append $srcset_part }}\n        \n        {{/* Set fallback to smallest image */}}\n        {{ if not $fallback_image }}\n          {{ $fallback_image = $resized }}\n        {{ end }}\n      {{ end }}\n    {{ end }}\n    \n    {{/* Always include the original size as the largest option */}}\n    {{ $srcset_part := printf \"%s %dw\" $base_image.RelPermalink $base_image.Width }}\n    {{ $srcset_parts = $srcset_parts | append $srcset_part }}\n    {{ $processed_images = $processed_images | append $base_image }}\n    {{ if not $fallback_image }}{{ $fallback_image = $base_image }}{{ end }}\n    \n  {{ else }}\n    {{/* Process images for each breakpoint */}}\n    {{ range $width := $sizes }}\n      {{/* Only process if the source image is larger than target width */}}\n      {{ if ge $image.Width $width }}\n        {{ $process_params := \"\" }}\n        {{/* Build processing parameters based on mode */}}\n        {{- if eq $mode \"resize\" -}}\n        {{- if $quality -}}\n          {{- $process_params = printf \"resize %dx webp q%d\" $width $quality -}}\n        {{- else -}}\n          {{- $process_params = printf \"resize %dx webp\" $width -}}\n        {{- end -}}\n      {{- else if eq $mode \"fill\" -}}\n        {{- if $aspect_ratio -}}\n          {{- $ratio_parts := split $aspect_ratio \":\" -}}\n          {{- $ratio_width := int (index $ratio_parts 0) -}}\n          {{- $ratio_height := int (index $ratio_parts 1) -}}\n          {{- $height := div (mul $width $ratio_height) $ratio_width -}}\n          {{- if $quality -}}\n            {{- $process_params = printf \"fill %dx%d webp q%d %s\" $width $height $quality $anchor -}}\n          {{- else -}}\n            {{- $process_params = printf \"fill %dx%d webp %s\" $width $height $anchor -}}\n          {{- end -}}\n        {{- else -}}\n          {{/* Fill mode without aspect ratio - use resize instead to maintain original proportions */}}\n          {{- if $quality -}}\n            {{- $process_params = printf \"resize %dx webp q%d\" $width $quality -}}\n          {{- else -}}\n            {{- $process_params = printf \"resize %dx webp\" $width -}}\n          {{- end -}}\n        {{- end -}}\n      {{- else -}}\n        {{/* Default to fit - always maintain original aspect ratio */}}\n        {{/* Fit mode should not force an aspect ratio, it should fit within bounds */}}\n        {{- if $quality -}}\n          {{- $process_params = printf \"resize %dx webp q%d\" $width $quality -}}\n        {{- else -}}\n          {{- $process_params = printf \"resize %dx webp\" $width -}}\n        {{- end -}}\n      {{- end -}}\n\n      {{/* Process the image */}}\n      {{- $processed := $image.Process $process_params -}}\n      {{- $processed_images = $processed_images | append $processed -}}\n\n      {{/* Add to srcset */}}\n      {{- $srcset_part := printf \"%s %dw\" $processed.RelPermalink $processed.Width -}}\n      {{- $srcset_parts = $srcset_parts | append $srcset_part -}}\n\n      {{/* Set fallback to smallest image */}}\n      {{- if not $fallback_image -}}\n        {{- $fallback_image = $processed -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n  {{ end }}\n{{- else -}}\n  {{/* Handle unsupported formats (SVG, GIF) - skip srcset as width/height are unavailable for SVGs */}}\n  {{- $fallback_image = $image -}}\n  {{- $processed_images = $processed_images | append $image -}}\n{{- end -}}\n\n{{/* Return processed data */}}\n{{ return (dict \n  \"srcset\" (delimit $srcset_parts \", \") \n  \"fallback\" $fallback_image \n  \"sizes\" $processed_images\n) }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/render_callout.html",
    "content": "{{/*\n  Hugo Blox Kit Shared Callout Renderer\n  \n  Renders callouts with consistent styling for both shortcodes and render hooks.\n  \n  Parameters:\n  - type: The callout type (note, tip, important, warning, caution, or custom icon name)\n  - content: The callout content (HTML)\n  - title: Optional title for the callout\n  - source: \"shortcode\" or \"renderhook\" for context\n*/}}\n\n{{ $type := (lower .type) | default \"note\" }}\n{{ $content := .content }}\n{{ $title := .title }}\n{{ if or (not $title) (eq $title \"\") }}\n  {{/* Try i18n translation with \"callout_\" prefix, fall back to title case */}}\n  {{ $i18n_key := printf \"callout_%s\" $type }}\n  {{ $title = or (i18n $i18n_key) (title $type) }}\n{{ end }}\n{{ $source := .source | default \"shortcode\" }}\n\n{{/* Define icon and styling mappings for all Obsidian callout types */}}\n{{ $alertConfigs := dict\n  \"note\" (dict \n    \"icon\" \"pencil\"\n    \"class\" \"bg-blue-100 dark:bg-blue-900\"\n    \"textClass\" \"text-blue-600 dark:text-blue-300\"\n    \"borderClass\" \"border-blue-500\"\n  )\n  \"abstract\" (dict\n    \"icon\" \"clipboard-document-list\"\n    \"class\" \"bg-cyan-100 dark:bg-cyan-900\"\n    \"textClass\" \"text-cyan-600 dark:text-cyan-300\"\n    \"borderClass\" \"border-cyan-500\"\n  )\n  \"summary\" (dict\n    \"icon\" \"clipboard-document-list\"\n    \"class\" \"bg-cyan-100 dark:bg-cyan-900\"\n    \"textClass\" \"text-cyan-600 dark:text-cyan-300\"\n    \"borderClass\" \"border-cyan-500\"\n  )\n  \"info\" (dict\n    \"icon\" \"information-circle\"\n    \"class\" \"bg-blue-100 dark:bg-blue-900\"\n    \"textClass\" \"text-blue-600 dark:text-blue-300\"\n    \"borderClass\" \"border-blue-500\"\n  )\n  \"todo\" (dict\n    \"icon\" \"check-circle\"\n    \"class\" \"bg-blue-100 dark:bg-blue-900\"\n    \"textClass\" \"text-blue-600 dark:text-blue-300\"\n    \"borderClass\" \"border-blue-500\"\n  )\n  \"tip\" (dict\n    \"icon\" \"light-bulb\"\n    \"class\" \"bg-emerald-100 dark:bg-emerald-900\"\n    \"textClass\" \"text-emerald-600 dark:text-emerald-300\"\n    \"borderClass\" \"border-emerald-500\"\n  )\n  \"success\" (dict\n    \"icon\" \"check-circle\"\n    \"class\" \"bg-green-100 dark:bg-green-900\"\n    \"textClass\" \"text-green-600 dark:text-green-300\"\n    \"borderClass\" \"border-green-500\"\n  )\n  \"question\" (dict\n    \"icon\" \"question-mark-circle\"\n    \"class\" \"bg-yellow-100 dark:bg-yellow-900\"\n    \"textClass\" \"text-yellow-700 dark:text-yellow-300\"\n    \"borderClass\" \"border-yellow-500\"\n  )\n  \"warning\" (dict\n    \"icon\" \"exclamation-triangle\"\n    \"class\" \"bg-orange-100 dark:bg-orange-900\"\n    \"textClass\" \"text-orange-600 dark:text-orange-300\"\n    \"borderClass\" \"border-orange-500\"\n  )\n  \"failure\" (dict\n    \"icon\" \"x-circle\"\n    \"class\" \"bg-red-100 dark:bg-red-900\"\n    \"textClass\" \"text-red-600 dark:text-red-300\"\n    \"borderClass\" \"border-red-500\"\n  )\n  \"danger\" (dict\n    \"icon\" \"exclamation-triangle\"\n    \"class\" \"bg-red-100 dark:bg-red-900\"\n    \"textClass\" \"text-red-600 dark:text-red-300\"\n    \"borderClass\" \"border-red-500\"\n  )\n  \"bug\" (dict\n    \"icon\" \"bug-ant\"\n    \"class\" \"bg-red-100 dark:bg-red-900\"\n    \"textClass\" \"text-red-600 dark:text-red-300\"\n    \"borderClass\" \"border-red-500\"\n  )\n  \"example\" (dict\n    \"icon\" \"beaker\"\n    \"class\" \"bg-purple-100 dark:bg-purple-900\"\n    \"textClass\" \"text-purple-600 dark:text-purple-300\"\n    \"borderClass\" \"border-purple-500\"\n  )\n  \"quote\" (dict\n    \"icon\" \"chat-bubble-left-right\"\n    \"class\" \"bg-gray-100 dark:bg-gray-800\"\n    \"textClass\" \"text-gray-600 dark:text-gray-300\"\n    \"borderClass\" \"border-gray-500\"\n  )\n  \"important\" (dict\n    \"icon\" \"exclamation-circle\"\n    \"class\" \"bg-purple-100 dark:bg-purple-900\"\n    \"textClass\" \"text-purple-600 dark:text-purple-300\"\n    \"borderClass\" \"border-purple-500\"\n  )\n  \"caution\" (dict\n    \"icon\" \"exclamation-triangle\"\n    \"class\" \"bg-red-100 dark:bg-red-900\"\n    \"textClass\" \"text-red-600 dark:text-red-300\"\n    \"borderClass\" \"border-red-500\"\n  )\n}}\n\n{{/* Get configuration for this callout type, or use fallback */}}\n{{ $config := index $alertConfigs $type }}\n{{ $icon := $type }}\n{{ $class := \"bg-blue-100 dark:bg-blue-900\" }}\n{{ $textClass := \"text-blue-600 dark:text-blue-300\" }}\n{{ $borderClass := \"border-blue-500\" }}\n\n{{ if $config }}\n  {{ $icon = $config.icon }}\n  {{ $class = $config.class }}\n  {{ $textClass = $config.textClass }}\n  {{ $borderClass = $config.borderClass }}\n{{ end }}\n\n<div class=\"callout flex px-4 py-3 mb-6 rounded-md border-l-4 {{ $class }} {{ $borderClass }}\" \n     data-callout=\"{{ $type }}\" \n     data-callout-metadata=\"\">\n  <span class=\"callout-icon pr-3 pt-1 {{ $textClass }}\">\n    {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"height=\\\"24\\\"\") }}\n  </span>\n  <div class=\"callout-content dark:text-neutral-300\">\n    {{/* Display title if provided */}}\n    {{- with $title -}}\n      <div class=\"callout-title font-semibold mb-1\">\n        {{- . -}}\n      </div>\n    {{- end -}}\n    {{/* Display content */}}\n    <div class=\"callout-body\">\n      {{- $content -}}\n    </div>\n  </div>\n</div>"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/render_view.html",
    "content": "{{/* Hugo Blox Kit content preview renderer */}}\n\n{{ $page := .page }}\n{{ $item := .item }}\n{{ $view := lower .view | default \"card\" }}\n{{ $fragment := .fragment | default \"body\" }}\n{{ $view_dtype :=  printf \"%T\" $view }}\n{{ $index := .index }}\n{{ $html := \"\" }}\n\n{{ if not (templates.Exists (printf \"_partials/views/%s.html\" $view)) }}\n  {{/* Fallback to card view */}}\n  {{ warnf \"Failed to locate view at `_partials/views/%s.html`. Check you specified a supported `view` in `%s`\" $view $page.File.Path }}\n  {{ $view = \"card\" }}\n{{ end }}\n\n{{ if eq $fragment \"body\" }}\n  {{ $html = (partial (printf \"views/%s\" $view) (dict \"page\" $page \"item\" $item \"index\" $index \"config\" (.config | default dict))) }}\n{{ else }}\n  {{ $html = (partial (printf \"views/%s--%s\" $view $fragment) (dict \"page\" $page \"item\" $item \"index\" $index \"config\" (.config | default dict))) }}\n{{ end }}\n\n{{ return $html }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/theme_generator.html",
    "content": "{{/*\n  HugoBlox Theme Engine: Generates CSS Variables for Light and Dark modes\n  \n  Input: Theme config dict from get_theme_config helper:\n    - mode: 'light' | 'dark' | 'system'\n    - light: Light theme pack name\n    - dark: Dark theme pack name\n    - colors: Global color overrides { primary, secondary, neutral }\n    - colors_light: Light-mode specific color overrides\n    - colors_dark: Dark-mode specific color overrides\n    - surfaces: Semantic surface color overrides\n*/}}\n\n{{ $config := . }}\n{{ $light_theme_name := $config.light | default \"default\" }}\n{{ $dark_theme_name := $config.dark | default \"default\" }}\n{{ $global_colors := $config.colors | default dict }}\n{{ $colors_light := $config.colors_light | default dict }}\n{{ $colors_dark := $config.colors_dark | default dict }}\n{{ $surfaces_overrides := $config.surfaces | default dict }}\n\n{{/* Load Theme Data using the new loader */}}\n{{ if not site.Data.themes }}\n  {{ warnf \"THEME ENGINE ERROR: site.Data.themes is empty! Check modules/blox-tailwind/data/themes/\" }}\n{{ end }}\n\n{{ $light_theme := partial \"functions/load_theme_pack\" $light_theme_name }}\n{{ $dark_theme := partial \"functions/load_theme_pack\" $dark_theme_name }}\n\n{{/* Fallback for missing themes */}}\n{{ if not $light_theme }}\n  {{ warnf \"THEME ENGINE WARNING: Light theme '%s' not found or invalid. Defaulting to 'default'.\" $light_theme_name }}\n  {{ $light_theme = partial \"functions/load_theme_pack\" \"default\" }}\n{{ end }}\n{{ if not $dark_theme }}\n  {{ warnf \"THEME ENGINE WARNING: Dark theme '%s' not found or invalid. Defaulting to 'default'.\" $dark_theme_name }}\n  {{ $dark_theme = partial \"functions/load_theme_pack\" \"default\" }}\n{{ end }}\n\n{{/* Resolve effective light/dark mode objects from theme files */}}\n{{ $light_base := $light_theme.light | default $light_theme }}\n{{ $dark_base := $dark_theme.dark | default $dark_theme }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    APPLY COLOR OVERRIDES\n    Priority: colors_light/colors_dark → colors (global) → theme pack defaults\n═══════════════════════════════════════════════════════════════════════════ */}}\n\n{{/* Apply global color overrides to LIGHT mode */}}\n{{ if $light_base }}\n  {{ $light_colors := merge (dict) ($light_base.colors | default dict) }}\n  \n  {{/* Global overrides */}}\n  {{ with $global_colors.primary }}\n    {{ $light_colors = merge $light_colors (dict \"primary\" .) }}\n  {{ end }}\n  {{ with $global_colors.secondary }}\n    {{ $light_colors = merge $light_colors (dict \"secondary\" .) }}\n  {{ end }}\n  {{ with $global_colors.neutral }}\n    {{ $light_colors = merge $light_colors (dict \"neutral\" .) }}\n  {{ end }}\n  \n  {{/* Mode-specific overrides (highest priority) */}}\n  {{ with $colors_light.primary }}\n    {{ $light_colors = merge $light_colors (dict \"primary\" .) }}\n  {{ end }}\n  {{ with $colors_light.secondary }}\n    {{ $light_colors = merge $light_colors (dict \"secondary\" .) }}\n  {{ end }}\n  {{ with $colors_light.neutral }}\n    {{ $light_colors = merge $light_colors (dict \"neutral\" .) }}\n  {{ end }}\n  \n  {{ $light_base = merge $light_base (dict \"colors\" $light_colors) }}\n  \n  {{/* Apply surface overrides (only non-empty values) */}}\n  {{ if $surfaces_overrides }}\n    {{ $light_surfaces := merge (dict) ($light_base.surfaces | default dict) }}\n    {{ with $surfaces_overrides.background }}\n      {{ if ne . \"\" }}\n        {{ $light_surfaces = merge $light_surfaces (dict \"background\" .) }}\n      {{ end }}\n    {{ end }}\n    {{ with $surfaces_overrides.foreground }}\n      {{ if ne . \"\" }}\n        {{ $light_surfaces = merge $light_surfaces (dict \"foreground\" .) }}\n      {{ end }}\n    {{ end }}\n    {{ with $surfaces_overrides.header }}\n      {{ $header := merge (dict) ($light_surfaces.header | default dict) }}\n      {{ with .background }}\n        {{ if ne . \"\" }}\n          {{ $header = merge $header (dict \"background\" .) }}\n        {{ end }}\n      {{ end }}\n      {{ with .foreground }}\n        {{ if ne . \"\" }}\n          {{ $header = merge $header (dict \"foreground\" .) }}\n        {{ end }}\n      {{ end }}\n      {{ if gt (len $header) 0 }}\n        {{ $light_surfaces = merge $light_surfaces (dict \"header\" $header) }}\n      {{ end }}\n    {{ end }}\n    {{ with $surfaces_overrides.footer }}\n      {{ $footer := merge (dict) ($light_surfaces.footer | default dict) }}\n      {{ with .background }}\n        {{ if ne . \"\" }}\n          {{ $footer = merge $footer (dict \"background\" .) }}\n        {{ end }}\n      {{ end }}\n      {{ with .foreground }}\n        {{ if ne . \"\" }}\n          {{ $footer = merge $footer (dict \"foreground\" .) }}\n        {{ end }}\n      {{ end }}\n      {{ if gt (len $footer) 0 }}\n        {{ $light_surfaces = merge $light_surfaces (dict \"footer\" $footer) }}\n      {{ end }}\n    {{ end }}\n    {{ $light_base = merge $light_base (dict \"surfaces\" $light_surfaces) }}\n  {{ end }}\n{{ end }}\n\n{{/* Apply global color overrides to DARK mode */}}\n{{ if $dark_base }}\n  {{ $dark_colors := merge (dict) ($dark_base.colors | default dict) }}\n  \n  {{/* Global overrides */}}\n  {{ with $global_colors.primary }}\n    {{ $dark_colors = merge $dark_colors (dict \"primary\" .) }}\n  {{ end }}\n  {{ with $global_colors.secondary }}\n    {{ $dark_colors = merge $dark_colors (dict \"secondary\" .) }}\n  {{ end }}\n  {{ with $global_colors.neutral }}\n    {{ $dark_colors = merge $dark_colors (dict \"neutral\" .) }}\n  {{ end }}\n  \n  {{/* Mode-specific overrides (highest priority) */}}\n  {{ with $colors_dark.primary }}\n    {{ $dark_colors = merge $dark_colors (dict \"primary\" .) }}\n  {{ end }}\n  {{ with $colors_dark.secondary }}\n    {{ $dark_colors = merge $dark_colors (dict \"secondary\" .) }}\n  {{ end }}\n  {{ with $colors_dark.neutral }}\n    {{ $dark_colors = merge $dark_colors (dict \"neutral\" .) }}\n  {{ end }}\n  \n  {{ $dark_base = merge $dark_base (dict \"colors\" $dark_colors) }}\n  \n  {{/* Apply surface overrides (only non-empty values) */}}\n  {{ if $surfaces_overrides }}\n    {{ $dark_surfaces := merge (dict) ($dark_base.surfaces | default dict) }}\n    {{ with $surfaces_overrides.background }}\n      {{ if ne . \"\" }}\n        {{ $dark_surfaces = merge $dark_surfaces (dict \"background\" .) }}\n      {{ end }}\n    {{ end }}\n    {{ with $surfaces_overrides.foreground }}\n      {{ if ne . \"\" }}\n        {{ $dark_surfaces = merge $dark_surfaces (dict \"foreground\" .) }}\n      {{ end }}\n    {{ end }}\n    {{ with $surfaces_overrides.header }}\n      {{ $header := merge (dict) ($dark_surfaces.header | default dict) }}\n      {{ with .background }}\n        {{ if ne . \"\" }}\n          {{ $header = merge $header (dict \"background\" .) }}\n        {{ end }}\n      {{ end }}\n      {{ with .foreground }}\n        {{ if ne . \"\" }}\n          {{ $header = merge $header (dict \"foreground\" .) }}\n        {{ end }}\n      {{ end }}\n      {{ if gt (len $header) 0 }}\n        {{ $dark_surfaces = merge $dark_surfaces (dict \"header\" $header) }}\n      {{ end }}\n    {{ end }}\n    {{ with $surfaces_overrides.footer }}\n      {{ $footer := merge (dict) ($dark_surfaces.footer | default dict) }}\n      {{ with .background }}\n        {{ if ne . \"\" }}\n          {{ $footer = merge $footer (dict \"background\" .) }}\n        {{ end }}\n      {{ end }}\n      {{ with .foreground }}\n        {{ if ne . \"\" }}\n          {{ $footer = merge $footer (dict \"foreground\" .) }}\n        {{ end }}\n      {{ end }}\n      {{ if gt (len $footer) 0 }}\n        {{ $dark_surfaces = merge $dark_surfaces (dict \"footer\" $footer) }}\n      {{ end }}\n    {{ end }}\n    {{ $dark_base = merge $dark_base (dict \"surfaces\" $dark_surfaces) }}\n  {{ end }}\n{{ end }}\n\n{{/* ═══════════════════════════════════════════════════════════════════════════\n    GENERATE CSS OUTPUT\n═══════════════════════════════════════════════════════════════════════════ */}}\n\n<style>\n  /* stylelint-disable */\n  /* HugoBlox Theme Engine - Light: {{ $light_theme_name }}, Dark: {{ $dark_theme_name }} */\n  \n  /* 1. Light Mode (Default :root) */\n  :root {\n    {{ if $light_base }}\n      {{ partial \"functions/theme_variables\" (dict \"data\" $light_base \"is_dark\" false) | safeCSS }}\n    {{ else }}\n      /* ERROR: Failed to load light theme '{{ $light_theme_name }}' */\n    {{ end }}\n  }\n\n  /* 2. Dark Mode (.dark class) */\n  .dark {\n    {{ if $dark_base }}\n      {{ partial \"functions/theme_variables\" (dict \"data\" $dark_base \"is_dark\" true) | safeCSS }}\n    {{ else }}\n      /* ERROR: Failed to load dark theme '{{ $dark_theme_name }}' */\n    {{ end }}\n  }\n  /* stylelint-enable */\n</style>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/theme_variables.html",
    "content": "{{/* HugoBlox Theme Helper to output CSS variables for a specific theme block */}}\n{{ $data := .data }}\n\n{{/* 1. Palette Generation (Primary/Secondary Scales) */}}\n{{ $primary := $data.colors.primary | default \"#3b82f6\" }}\n{{ $secondary := $data.colors.secondary | default \"#10b981\" }}\n\n{{ partial \"functions/generate_color_scale\" (dict \"name\" \"primary\" \"color\" $primary) }}\n{{ partial \"functions/generate_color_scale\" (dict \"name\" \"secondary\" \"color\" $secondary) }}\n\n{{ if $data.colors.neutral }}\n  {{/* Map user 'neutral' to Tailwind 'gray' utility to override text-gray-* classes */}}\n  {{ partial \"functions/generate_color_scale\" (dict \"name\" \"gray\" \"color\" $data.colors.neutral) }}\n{{ end }}\n\n{{/* 2. Semantic Surface Variables */}}\n--hb-color-background: {{ $data.surfaces.background | default \"#ffffff\" }};\n--hb-color-foreground: {{ $data.surfaces.foreground | default \"#000000\" }};\n\n{{/* Header */}}\n--hb-color-header-bg: {{ $data.surfaces.header.background | default $data.surfaces.background | default \"#ffffff\" }};\n--hb-color-header-fg: {{ $data.surfaces.header.foreground | default $data.surfaces.foreground | default \"#000000\" }};\n\n{{/* Footer */}}\n--hb-color-footer-bg: {{ $data.surfaces.footer.background | default $data.surfaces.background | default \"#f3f4f6\" }};\n--hb-color-footer-fg: {{ $data.surfaces.footer.foreground | default $data.surfaces.foreground | default \"#000000\" }};\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/typography.html",
    "content": "{{/*\n  HugoBlox Theme Engine: Typography Rendering\n\n  Resolves font families, emits @font-face for bundled fonts,\n  Google Fonts <link> tags for remote fonts, and CSS custom properties.\n\n  Font resolution order (per family):\n    1. system-sans / system-serif / system-mono → native OS font stack\n    2. Bundled file in assets/dist/font/<Name>* → local @font-face\n    3. Fallback → Google Fonts CDN <link>\n\n  Input: Theme config dict from get_theme_config:\n    - typography: { families, weights, sizes, leading, tracking, variable }\n\n  Output: @font-face (bundled) + <link> (Google Fonts) + <style> (CSS custom properties)\n*/}}\n\n{{ $typo := .typography }}\n{{ $pack_style := $typo.style | default \"sans\" }}\n{{ $families := $typo.families }}\n{{ $weights := $typo.weights }}\n{{ $variable := $typo.variable | default dict }}\n{{ $leading := $typo.leading }}\n{{ $tracking := $typo.tracking }}\n{{ $sizes := $typo.sizes }}\n\n{{/* System font stacks */}}\n{{ $system_sans := \"ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'\" }}\n{{ $system_serif := \"ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif\" }}\n{{ $system_mono := \"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace\" }}\n\n{{/* Map font names to CSS values and collect Google Font / bundled font families */}}\n{{ $resolve_family := dict }}\n{{ $roles := slice \"heading\" \"body\" \"code\" \"nav\" }}\n{{ range $role := $roles }}\n  {{ $name := index $families $role }}\n  {{ if not $name }}\n    {{ continue }}\n  {{ end }}\n  {{ $css := \"\" }}\n  {{ $is_google := false }}\n  {{ $bundled_res := false }}\n  {{ if eq $name \"system-sans\" }}\n    {{ $css = $system_sans }}\n  {{ else if eq $name \"system-serif\" }}\n    {{ $css = $system_serif }}\n  {{ else if eq $name \"system-mono\" }}\n    {{ $css = $system_mono }}\n  {{ else }}\n    {{/* Check for a locally bundled font file in assets/dist/font/ */}}\n    {{ $normalized := replace $name \" \" \"\" }}\n    {{ $bundled_res = resources.GetMatch (printf \"dist/font/%s*\" $normalized) }}\n    {{/* Build CSS font-family value with appropriate generic fallback */}}\n    {{ if eq $role \"code\" }}\n      {{ $css = printf \"'%s', %s\" $name $system_mono }}\n    {{ else if eq $pack_style \"serif\" }}\n      {{ $css = printf \"'%s', %s\" $name $system_serif }}\n    {{ else }}\n      {{ $css = printf \"'%s', %s\" $name $system_sans }}\n    {{ end }}\n    {{/* Only request from Google Fonts if no local bundle exists */}}\n    {{ if not $bundled_res }}\n      {{ $is_google = true }}\n    {{ end }}\n  {{ end }}\n  {{ $resolve_family = merge $resolve_family (dict $role (dict \"css\" $css \"google\" $is_google \"name\" $name \"bundled\" $bundled_res)) }}\n{{ end }}\n\n{{/* Emit @font-face declarations for locally bundled fonts */}}\n{{ $bundled_seen := dict }}\n{{ range $role := $roles }}\n  {{ with index $resolve_family $role }}\n    {{ if .bundled }}\n      {{ $name := .name }}\n      {{ if not (index $bundled_seen $name) }}\n        {{ $bundled_seen = merge $bundled_seen (dict $name true) }}\n        {{ $res := .bundled }}\n        {{/* Publish the font file so Hugo copies it to the output directory */}}\n        {{ $res.Publish }}\n        {{/* Determine the CSS font format from the file extension */}}\n        {{ $ext := path.Ext $res.Name }}\n        {{ $format := \"\" }}\n        {{ if eq $ext \".woff2\" }}\n          {{ $format = \"woff2\" }}\n        {{ else if eq $ext \".ttf\" }}\n          {{ $format = \"truetype\" }}\n        {{ else if eq $ext \".woff\" }}\n          {{ $format = \"woff\" }}\n        {{ else }}\n          {{ warnf \"TYPOGRAPHY: Bundled font '%s' has unrecognized extension '%s'. Expected .woff2 or .ttf.\" $name $ext }}\n        {{ end }}\n        {{/* Determine weight range: variable font files get full range, static get discrete weights.\n             Detect variable fonts from the \".var.\" convention in the filename (e.g. Inter.var.woff2),\n             which is more reliable than the pack's variable flag (used for Google Fonts URL construction). */}}\n        {{ $is_var_file := strings.Contains $res.Name \".var.\" }}\n        {{ $weight_val := \"400\" }}\n        {{ if $is_var_file }}\n          {{ $weight_val = \"100 900\" }}\n        {{ else }}\n          {{/* Collect all discrete weights across roles using this font */}}\n          {{ $all_weights := slice }}\n          {{ range $r := $roles }}\n            {{ $entry := index $resolve_family $r }}\n            {{ if and $entry (eq (index $entry \"name\") $name) }}\n              {{ with index $weights $r }}\n                {{ range $w := . }}\n                  {{ $all_weights = $all_weights | append $w }}\n                {{ end }}\n              {{ end }}\n            {{ end }}\n          {{ end }}\n          {{ if gt (len $all_weights) 0 }}\n            {{ $weight_val = delimit ($all_weights | uniq | sort) \" \" }}\n          {{ end }}\n        {{ end }}\n        {{ if $format }}\n<style>\n  @font-face {\n    font-family: '{{ $name }}';\n    src: local('{{ $name }}'), url('{{ $res.RelPermalink }}') format('{{ $format }}');\n    font-weight: {{ $weight_val }};\n    font-display: swap;\n  }\n</style>\n        {{ end }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Build Google Fonts URL */}}\n{{ $gf_families := slice }}\n{{ $seen := dict }}\n{{ range $role := $roles }}\n  {{ with index $resolve_family $role }}\n    {{ if .google }}\n      {{ $name := .name }}\n      {{ $is_variable := index $variable $role | default false }}\n      {{/* Use full range for variable fonts, discrete weights for static */}}\n      {{ $weight_spec := \"\" }}\n      {{ if $is_variable }}\n        {{ $weight_spec = \"100..900\" }}\n      {{ else }}\n        {{ $role_weights := index $weights $role | default (slice 400) }}\n        {{ $weight_spec = delimit $role_weights \",\" }}\n      {{ end }}\n      {{/* Dedup key includes weight spec so the same font can appear as both static and variable if needed */}}\n      {{ $dedup_key := printf \"%s|%s\" $name $weight_spec }}\n      {{ if not (index $seen $dedup_key) }}\n        {{ $seen = merge $seen (dict $dedup_key true) }}\n        {{ $encoded := replace $name \" \" \"+\" }}\n        {{ $gf_families = $gf_families | append (printf \"%s:wght@%s\" $encoded $weight_spec) }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ if gt (len $gf_families) 0 }}\n  {{ $gf_url := printf \"https://fonts.googleapis.com/css2?%s&display=swap\" (delimit (apply $gf_families \"printf\" \"family=%s\" \".\") \"&\") }}\n  <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\" />\n  <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin />\n  <link href=\"{{ $gf_url }}\" rel=\"stylesheet\" />\n{{ end }}\n\n{{/* Font size vars */}}\n{{ $font_size_base := $sizes.base | default \"1rem\" }}\n{{ $font_size_sm := $sizes.sm | default \"0.875rem\" }}\n{{ $font_size_lg := $sizes.lg | default \"1.125rem\" }}\n\n{{/* Resolve CSS font-family values */}}\n{{ $heading_css := $system_sans }}\n{{ with index $resolve_family \"heading\" }}{{ $heading_css = .css }}{{ end }}\n{{ $body_css := $system_sans }}\n{{ with index $resolve_family \"body\" }}{{ $body_css = .css }}{{ end }}\n{{ $code_css := $system_mono }}\n{{ with index $resolve_family \"code\" }}{{ $code_css = .css }}{{ end }}\n{{ $nav_css := $heading_css }}\n{{ with index $resolve_family \"nav\" }}{{ if .css }}{{ $nav_css = .css }}{{ end }}{{ end }}\n\n{{/* Get primary weight for each role (first in array) */}}\n{{ $heading_weight := 700 }}\n{{ with $weights.heading }}{{ $heading_weight = index . 0 }}{{ end }}\n{{ $body_weight := 400 }}\n{{ with $weights.body }}{{ $body_weight = index . 0 }}{{ end }}\n\n{{/* Bold body weight: second value in array, or primary + 200 (capped at 900) */}}\n{{ $body_weight_bold := math.Min 900 (add $body_weight 200) }}\n{{ with $weights.body }}{{ if ge (len .) 2 }}{{ $body_weight_bold = index . 1 }}{{ end }}{{ end }}\n\n<style>\n  :root {\n    /* Typography — Font Families */\n    --hb-font-heading: {{ $heading_css | safeCSS }};\n    --hb-font-body: {{ $body_css | safeCSS }};\n    --hb-font-code: {{ $code_css | safeCSS }};\n    --hb-font-nav: {{ $nav_css | safeCSS }};\n\n    /* Typography — Font Weights */\n    --hb-font-weight-heading: {{ $heading_weight }};\n    --hb-font-weight-body: {{ $body_weight }};\n    --hb-font-weight-body-bold: {{ $body_weight_bold }};\n\n    /* Typography — Line Heights */\n    --hb-font-leading-heading: {{ $leading.heading }};\n    --hb-font-leading-body: {{ $leading.body }};\n    --hb-font-leading-code: {{ $leading.code }};\n\n    /* Typography — Letter Spacing */\n    --hb-font-tracking-heading: {{ $tracking.heading | safeCSS }};\n    --hb-font-tracking-body: {{ $tracking.body | safeCSS }};\n    --hb-font-tracking-caps: {{ $tracking.caps | safeCSS }};\n\n    /* Typography — Font Sizes */\n    --hb-font-size-base: {{ $font_size_base | safeCSS }};\n    --hb-font-size-sm: {{ $font_size_sm | safeCSS }};\n    --hb-font-size-lg: {{ $font_size_lg | safeCSS }};\n\n    /* Typography — Font Family Alias (Tailwind v4 compat) */\n    --hb-font-family-sans: {{ $body_css | safeCSS }};\n  }\n</style>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/functions/uid.html",
    "content": "{{/* \n  Hugo Blox UID Generator\n  Generate a unique ID for shortcodes and components.\n  Uses the page's unique ID combined with ordinal for uniqueness.\n*/}}\n\n{{ $uid := .Page.File.UniqueID }}\n{{ $ctx := . }}\n\n{{ range seq 16 }}\n  {{ with $ctx }}\n    {{ $uid = printf \"%s-%d\" $uid .Ordinal }}\n    {{ $ctx = .Parent }}\n  {{ else }}\n    {{ break }}\n  {{ end }}\n{{ end }}\n\n{{ return (crypto.MD5 $uid) }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/hbx/resolve-block-param.html",
    "content": "{{/* Context-aware block parameter resolution with backward compatibility */}}\n{{/* Strategy: Prefers \"block\" over \"blox\" (legacy) in configs */}}\n{{- $config := .config -}}\n{{- $context := .context | default \"component\" -}}\n\n{{- $block_id := \"\" -}}\n{{- $using_legacy := false -}}\n\n{{- if $config.style -}}\n  {{- $block_id = $config.style -}}\n{{- else if $config.block -}}\n  {{- $block_id = $config.block -}}\n{{- else if $config.blox -}}\n  {{- $block_id = $config.blox -}}\n  {{- $using_legacy = true -}}\n{{- end -}}\n\n{{- if $using_legacy -}}\n  {{- warnf \"HBX: Using legacy 'blox' parameter for %s. Please update to 'block' for consistency. (Found: blox=%s)\" $context $block_id -}}\n{{- end -}}\n\n{{- return $block_id -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/hbx/resolve.html",
    "content": "{{/* HBX resolver: maps a section { block: \"<id>\", ... } to the block partial.\n     This resolver looks up blocks from the blox/<block-id>/block.html structure,\n     which are mounted to layouts/_partials/hbx/blocks/<block-id>/block.html via module.yaml.\n*/}}\n{{- $id := .section.block -}}\n{{- if not $id }}{{ errorf \"HBX: section is missing 'block' key: %v\" .section }}{{ end -}}\n\n{{- $params := .section -}}\n{{- $path := printf \"hbx/blocks/%s/block.html\" $id -}}\n\n{{- if templates.Exists (printf \"_partials/%s\" $path) -}}\n  {{ partial $path (dict \"wcPage\" .ctx \"wcBlock\" $params \"wcIdentifier\" ($params.id | default (printf \"section-%s\" $id))) }}\n{{- else -}}\n  {{ errorf \"HBX: block '%s' not found at %q\" $id $path }}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/hbx/sections.html",
    "content": "{{/* Returns sections from front matter, linked data, or from data. */}}\n{{- $sections := .Params.sections -}}\n{{- $source := \"front matter\" -}}\n\n{{/* 1) Linked-data: sections_source */}}\n{{- with .Params.sections_source -}}\n  {{- $key := . -}}\n  {{- if hasPrefix $key \"pages/\" -}}{{- $key = (replace $key \"pages/\" \"\") -}}{{- end -}}\n  {{- with index site.Data.pages $key -}}\n    {{- $base := .sections -}}\n    {{- if $sections -}}\n      {{- $merged := slice -}}\n      {{- range $i, $b := $base -}}\n        {{- $ov := index $sections $i -}}\n        {{- if $ov -}}\n          {{- $merged = $merged | append (partial \"functions/deep_merge\" (dict \"a\" $b \"b\" $ov)) -}}\n        {{- else -}}\n          {{- $merged = $merged | append $b -}}\n        {{- end -}}\n      {{- end -}}\n      {{- if gt (len $sections) (len $base) -}}\n        {{- range $i, $ov := $sections -}}\n          {{- if ge $i (len $base) -}}\n            {{- $merged = $merged | append $ov -}}\n          {{- end -}}\n        {{- end -}}\n      {{- end -}}\n      {{- $sections = $merged -}}\n    {{- else -}}\n      {{- $sections = $base -}}\n    {{- end -}}\n    {{- $source = printf \"data/pages/%s.yaml (sections_source)\" $key -}}\n  {{- else -}}\n    {{- partial \"functions/logger\" (dict \"page\" . \"level\" \"warn\" \"id\" (printf \"sections-source-missing-%s\" $key) \"message\" (printf \"sections_source '%s' not found under data/pages/\" $key) \"source\" (dict \"type\" \"partial\" \"name\" \"hbx/sections\")) -}}\n  {{- end -}}\n{{- end -}}\n\n{{/* 2) Fallbacks if still no sections */}}\n{{- if not $sections -}}\n  {{/* Fallback: Legacy data-driven pages */}}\n  {{- $p := \"home\" -}}{{/* Default to \"home\" for homepage */}}\n  {{- with .File -}}\n    {{- $basename := .ContentBaseName -}}\n    {{- if $basename -}}\n      {{- $p = $basename -}}\n      {{/* Special case: homepage _index.md should use \"home\" data file */}}\n      {{- if eq $p \"_index\" -}}\n        {{- $p = \"home\" -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n  {{/* Ensure homepage always uses \"home\" data file */}}\n  {{- if eq $.RelPermalink \"/\" -}}\n    {{- $p = \"home\" -}}\n  {{- end -}}\n  {{- with index site.Data.pages $p -}}\n    {{- $sections = .sections -}}\n    {{- $source = printf \"data/pages/%s.yaml\" $p -}}\n  {{- end -}}\n{{- end -}}\n\n{{/* 3) Per-section ref: load from data/blocks/<slug>.yaml and deep-merge with inline (inline wins) */}}\n{{- if $sections -}}\n  {{- $resolved := slice -}}\n  {{- range $i, $s := $sections -}}\n    {{- $sec := $s -}}\n    {{- with $s.ref -}}\n      {{- $ref := . | lower -}}\n      {{- $path := cond (hasPrefix $ref \"blocks/\") $ref (printf \"blocks/%s\" $ref) -}}\n      {{- $parts := split $path \"/\" -}}\n      {{- $data := site.Data -}}\n      {{- range $j, $p := $parts -}}\n        {{- if $data -}}\n          {{- $data = index $data $p -}}\n        {{- end -}}\n      {{- end -}}\n      {{- if $data -}}\n        {{- /* shallow merge */ -}}\n        {{- $merged := merge $data $sec -}}\n        {{- /* merge 'content' */ -}}\n        {{- $ac := index $data \"content\" -}}{{- $bc := index $sec \"content\" -}}\n        {{- if and (reflect.IsMap $ac) (reflect.IsMap $bc) -}}\n          {{- $merged = merge $merged (dict \"content\" (merge $ac $bc)) -}}\n        {{- end -}}\n        {{- /* merge 'design' */ -}}\n        {{- $ad := index $data \"design\" -}}{{- $bd := index $sec \"design\" -}}\n        {{- if and (reflect.IsMap $ad) (reflect.IsMap $bd) -}}\n          {{- $merged = merge $merged (dict \"design\" (merge $ad $bd)) -}}\n        {{- end -}}\n        {{- $sec = $merged -}}\n      {{- else -}}\n        {{- partial \"functions/logger\" (dict \"page\" $ \"level\" \"warn\" \"id\" (printf \"section-ref-missing-%s\" $ref) \"message\" (printf \"HBX: section ref '%s' not found under data/blocks/\" $ref) \"source\" (dict \"type\" \"partial\" \"name\" \"hbx/sections\")) -}}\n      {{- end -}}\n    {{- end -}}\n    {{- $resolved = $resolved | append $sec -}}\n  {{- end -}}\n  {{- $sections = $resolved -}}\n{{- end -}}\n\n{{- if $sections -}}\n  {{- partial \"functions/logger\" (dict \"page\" . \"level\" \"info\" \"message\" (printf \"✅  Using sections from %s for page %s (found %d sections)\" $source $.RelPermalink (len $sections)) \"source\" (dict \"type\" \"partial\" \"name\" \"hbx/sections\")) -}}\n{{- else -}}\n  {{- partial \"functions/logger\" (dict \"page\" . \"level\" \"warn\" \"id\" (printf \"sections-none-%s\" $.RelPermalink) \"message\" (printf \"HBX: No sections found for page %s (checked %s)\" $.RelPermalink $source) \"source\" (dict \"type\" \"partial\" \"name\" \"hbx/sections\")) -}}\n{{- end -}}\n{{- return $sections -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/hooks/body-end/hbx-debug-export.html",
    "content": "{{/* Hugo Blox: Export Debug Logs for Dev HUD (window var) */}}\n{{- if site.Params.hugoblox.debug.export_logs | default true -}}\n  {{- /* Collect all logs from all pages (site-wide) */ -}}\n  {{- $entries := slice -}}\n  {{- range .Site.Pages -}}\n    {{- with .Store -}}\n      {{- with .Get \"hbx_logs\" -}}\n        {{- $entries = $entries | append . -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n\n  {{- /* Summarize dependencies */ -}}\n  {{- $deps := slice -}}\n  {{- range $i, $d := hugo.Deps -}}\n    {{- $dep := dict \"path\" $d.Path \"version\" $d.Version \"vendor\" $d.Vendor -}}\n    {{- with $d.Owner -}}\n      {{- $dep = merge $dep (dict \"owner_path\" .Path) -}}\n    {{- end -}}\n    {{- with $d.Replace -}}\n      {{- $dep = merge $dep (dict \"replace_path\" .Path) -}}\n    {{- end -}}\n    {{- with $d.Time -}}\n      {{- $dep = merge $dep (dict \"time\" (printf \"%v\" .)) -}}\n    {{- end -}}\n    {{- $deps = $deps | append $dep -}}\n  {{- end -}}\n\n  {{- /* Detect blox-tailwind module version if present */ -}}\n  {{- $bloxTW := dict -}}\n  {{- range $deps -}}\n    {{- $p := .path -}}\n    {{- if and $p (in $p \"blox-tailwind\") -}}\n      {{- $bloxTW = dict \"path\" .path \"version\" .version -}}\n    {{- end -}}\n  {{- end -}}\n\n  {{- /* Current page information */ -}}\n  {{- $filePath := \"\" -}}\n  {{- with .File -}}\n    {{- $filePath = .Path -}}\n  {{- end -}}\n  {{- $buildId := partialCached \"functions/get-build-id.html\" \"hbx-build-id\" -}}\n  {{- $currentPage := dict \n    \"path\" .RelPermalink\n    \"type\" .Type\n    \"layout\" (.Layout | default \"\")\n    \"kind\" .Kind\n    \"section\" .Section\n    \"title\" .Title\n    \"file\" $filePath\n    \"buildId\" $buildId\n  -}}\n\n  {{- $payload := dict\n    \"version\" 1\n    \"generatedAt\" (now.UTC.Format \"2006-01-02T15:04:05Z07:00\")\n    \"hugo\" (dict \"version\" hugo.Version \"goVersion\" hugo.GoVersion)\n    \"deps\" $deps\n    \"modules\" (dict \"bloxTailwind\" $bloxTW)\n    \"entries\" $entries\n    \"currentPage\" $currentPage\n  -}}\n  <script>\n    window.__HBX_LOGS__ = {{ $payload | jsonify | safeJS }};\n  </script>\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/hooks/body-end/hbx-debug-hud.html",
    "content": "{{/* Hugo Blox: Dev HUD (floating button + panel). Dev only. */}}\n<script>\n(function(){\n    try {\n    const PLACEMENT = {{ (site.Params.hugoblox.debug.hud.position | default \"bottom-left\") | jsonify }};\n    const OPACITY = {{ (site.Params.hugoblox.debug.hud.opacity | default 1.0) | jsonify }};\n    const PLACEMENT_KEY = 'hbx-hud-placement';\n    const HIDE_BUTTON_KEY = 'hbx-hide-button';\n    const VALID_PLACEMENTS = ['bottom-left', 'bottom-center', 'bottom-right', 'top-left', 'top-center', 'top-right'];\n    const FALLBACK_PLACEMENT = 'bottom-left';\n    const isValidPlacement = (value) => VALID_PLACEMENTS.includes(value);\n    const normalizePlacement = (value) => (typeof value === 'string' ? value.toLowerCase().trim() : '');\n    const storedPlacement = normalizePlacement(localStorage.getItem(PLACEMENT_KEY));\n    const defaultPlacement = normalizePlacement(PLACEMENT);\n    const initialPlacement = isValidPlacement(storedPlacement) ? storedPlacement : (isValidPlacement(defaultPlacement) ? defaultPlacement : FALLBACK_PLACEMENT);\n    let currentPlacement = initialPlacement;\n    const initialHidePref = localStorage.getItem(HIDE_BUTTON_KEY) === '1';\n\n    const root = document.createElement('div');\n    root.id = 'hbx-dev-hud-root';\n    root.style.all = 'initial';\n    root.style.position = 'fixed';\n    root.style.zIndex = '2147483647';\n    root.style.pointerEvents = 'none';\n    root.style.bottom = '16px';\n\n    const shadow = root.attachShadow({ mode: 'open' });\n    const style = document.createElement('style');\n    style.textContent = `\n        :host { all: initial; }\n        .btn { pointer-events: auto; position:relative; display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:9999px; background:#111418; color:#e6eaf0; border:1px solid #2a2f38; box-shadow: 0 10px 20px rgba(0,0,0,.25); cursor:pointer; }\n        .btn:hover { filter: brightness(1.1); }\n        .badge { position:absolute; top:-4px; right:-4px; min-width:18px; height:18px; padding:0 4px; border-radius:9999px; background:#ef4444; color:white; font: 600 11px/18px system-ui, sans-serif; text-align:center; }\n        .panel { pointer-events:auto; position:fixed; width:min(92vw, 1200px); max-height:min(80vh, 800px); background:#0d1117; color:#e6eaf0; border:1px solid #21262d; border-radius:12px; box-shadow: 0 20px 40px rgba(0,0,0,.4); overflow:hidden; display:none; transform: translateX(var(--hbx-panel-offset-x, 0)) translateY(8px) scale(0.95); opacity:0; }\n        .panel.open { display:flex; flex-direction:column; transform: translateX(var(--hbx-panel-offset-x, 0)) translateY(0) scale(1); opacity:1; }\n        .panel-header { display:flex; align-items:center; gap:12px; padding:12px 16px; border-bottom:1px solid #21262d; background:#161b22; }\n        .panel-header h2 { margin:0; font: 700 16px system-ui, sans-serif; letter-spacing:-0.01em; color:#f0f6fc; }\n        .panel-header .close-btn { margin-left:auto; width:32px; height:32px; border:none; background:#21262d; color:#8b949e; border-radius:6px; cursor:pointer; font-size:16px; display:flex; align-items:center; justify-content:center; }\n        .panel-header .close-btn:hover { background:#30363d; color:#f0f6fc; }\n        .page-info { padding:16px; background:#0d1117; border-bottom:1px solid #21262d; }\n        .page-info h3 { margin:0 0 12px 0; font: 600 14px system-ui, sans-serif; color:#f0f6fc; display:flex; align-items:center; gap:8px; }\n        .page-info h3::before { content:'🔍'; font-size:16px; }\n        .page-meta { display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:12px; }\n        .meta-item { display:flex; flex-direction:column; gap:4px; }\n        .meta-label { font: 500 11px system-ui, sans-serif; color:#8b949e; text-transform:uppercase; letter-spacing:0.5px; }\n        .meta-value { font: 600 13px \"SF Mono\", Monaco, \"Cascadia Code\", \"Roboto Mono\", monospace; color:#79c0ff; background:#161b22; padding:6px 8px; border-radius:6px; border:1px solid #21262d; word-break:break-all; }\n        .meta-value.type { color:#a5f3fc; }\n        .meta-value.layout { color:#fbbf24; }\n        .tabs { display:flex; background:#161b22; border-bottom:1px solid #21262d; }\n        .tab { padding:12px 16px; font: 500 14px system-ui, sans-serif; color:#8b949e; cursor:pointer; border-bottom:2px solid transparent; }\n        .tab:hover { color:#f0f6fc; }\n        .tab.active { color:#58a6ff; border-bottom-color:#58a6ff; }\n        .tab-content { flex:1; overflow:auto; }\n        .env-info { padding:12px 16px; font: 500 11px system-ui, sans-serif; color:#8b949e; background:#0d1117; border-bottom:1px solid #21262d; display:flex; align-items:center; gap:16px; }\n        .filters { display:flex; flex-wrap:wrap; gap:12px; align-items:center; margin-left:auto; justify-content:flex-end; }\n        .filters label { display:inline-flex; gap:6px; align-items:center; font: 500 12px system-ui, sans-serif; color:#c9d2e1; cursor:pointer; }\n        .filters select { appearance:none; background:#111418; border:1px solid #2a2f38; border-radius:6px; color:#e6eaf0; font: 500 12px system-ui, sans-serif; padding:6px 28px 6px 10px; min-width:140px; box-shadow: inset 0 1px 2px rgba(0,0,0,0.2); }\n        .filters select:focus { outline:2px solid #2563eb; outline-offset:1px; }\n        .logs-content { overflow:auto; }\n        .entry { display:grid; grid-template-columns:auto 1fr auto; gap:12px; padding:12px 16px; border-bottom:1px solid #21262d; }\n        .entry:hover { background:#161b22; }\n        .entry .lvl { font:700 11px system-ui, sans-serif; text-transform:uppercase; padding:4px 6px; border-radius:4px; }\n        .entry.error .lvl { color:#ffffff; background:#da3633; }\n        .entry.warn .lvl { color:#1f2937; background:#f59e0b; }\n        .entry.info .lvl { color:#ffffff; background:#1f6feb; }\n        .entry .msg { white-space:pre-wrap; word-break:break-word; font: 400 13px system-ui, sans-serif; line-height:1.5; }\n        .entry .meta { color:#8b949e; font: 500 11px \"SF Mono\", Monaco, monospace; }\n        .page-group-header { padding:12px 16px; font: 600 12px system-ui, sans-serif; color:#58a6ff; border-bottom:1px solid #21262d; background:#0d1117; }\n        @media (prefers-reduced-motion:no-preference) {\n        .panel { transition: all .25s cubic-bezier(0.4, 0, 0.2, 1); }\n        }\n    `;\n    shadow.appendChild(style);\n\n    const btnWrap = document.createElement('div');\n    btnWrap.style.position = 'relative';\n    const btn = document.createElement('button');\n    btn.className = 'btn';\n    btn.style.opacity = String(OPACITY);\n    btn.setAttribute('aria-label', 'Hugo Blox Dev HUD');\n    btn.textContent = 'HB';\n    const badge = document.createElement('span');\n    badge.className = 'badge';\n    badge.hidden = true;\n    btnWrap.append(btn, badge);\n\n    const panel = document.createElement('div');\n    panel.className = 'panel';\n    \n    // Header\n    const header = document.createElement('div');\n    header.className = 'panel-header';\n    const title = document.createElement('h2'); \n    title.textContent = 'Hugo Blox – Dev Tools';\n    const close = document.createElement('button'); \n    close.className = 'close-btn'; \n    close.textContent = '×'; \n    close.title = 'Close';\n    header.append(title, close);\n    \n    // Page Info Section\n    const pageInfo = document.createElement('div');\n    pageInfo.className = 'page-info';\n    const pageTitle = document.createElement('h3');\n    pageTitle.textContent = 'Current Page';\n    const pageMeta = document.createElement('div');\n    pageMeta.className = 'page-meta';\n    pageInfo.append(pageTitle, pageMeta);\n    \n    // Environment Info\n    const envInfo = document.createElement('div');\n    envInfo.className = 'env-info';\n    const env = document.createElement('div');\n    env.textContent = '';\n    const filters = document.createElement('div'); \n    filters.className = 'filters';\n    const chkInfo = document.createElement('input'); \n    chkInfo.type='checkbox'; \n    chkInfo.id='hbx-info'; \n    chkInfo.checked = !!(localStorage.getItem('hbx-show-info')||'');\n    const lblInfo = document.createElement('label'); \n    lblInfo.htmlFor='hbx-info'; \n    lblInfo.textContent='Show info';\n    const chkAuto = document.createElement('input');\n    chkAuto.type='checkbox';\n    chkAuto.id='hbx-auto-open';\n    chkAuto.checked = !!(localStorage.getItem('hbx-auto-open')||'');\n    const lblAuto = document.createElement('label');\n    lblAuto.htmlFor='hbx-auto-open';\n    lblAuto.textContent='Auto open';\n    const chkHide = document.createElement('input');\n    chkHide.type = 'checkbox';\n    chkHide.id = 'hbx-hide-button';\n    chkHide.checked = initialHidePref;\n    const lblHide = document.createElement('label');\n    lblHide.htmlFor = 'hbx-hide-button';\n    lblHide.textContent = 'Hide button';\n    lblHide.title = 'When hidden, press Cmd/Ctrl + Shift + D to toggle the panel.';\n    const placementLabel = document.createElement('label');\n    placementLabel.htmlFor = 'hbx-placement';\n    placementLabel.textContent = 'Button position';\n    placementLabel.title = 'Choose where the floating button lives.';\n    const placementSelect = document.createElement('select');\n    placementSelect.id = 'hbx-placement';\n    placementSelect.setAttribute('aria-label', 'Dev tools button placement');\n    const appendPlacementOption = (value, text) => {\n        const opt = document.createElement('option');\n        opt.value = value;\n        opt.textContent = text;\n        placementSelect.append(opt);\n    };\n    appendPlacementOption('bottom-left', 'Bottom left');\n    appendPlacementOption('bottom-center', 'Bottom center');\n    appendPlacementOption('bottom-right', 'Bottom right');\n    appendPlacementOption('top-left', 'Top left');\n    appendPlacementOption('top-center', 'Top center');\n    appendPlacementOption('top-right', 'Top right');\n    placementSelect.value = initialPlacement;\n    filters.append(lblInfo, chkInfo, lblAuto, chkAuto, lblHide, chkHide, placementLabel, placementSelect);\n    envInfo.append(env, filters);\n    \n    // Tabs\n    const tabs = document.createElement('div');\n    tabs.className = 'tabs';\n    const logsTab = document.createElement('div');\n    logsTab.className = 'tab active';\n    logsTab.textContent = 'Logs';\n    logsTab.dataset.tab = 'logs';\n    tabs.append(logsTab);\n    \n    // Tab Content\n    const tabContent = document.createElement('div');\n    tabContent.className = 'tab-content';\n    const logsContent = document.createElement('div');\n    logsContent.className = 'logs-content';\n    tabContent.append(logsContent);\n    \n    panel.append(header, pageInfo, envInfo, tabs, tabContent);\n\n    const setPlacement = (placement, persist = true) => {\n        const nextPlacement = isValidPlacement(placement) ? placement : FALLBACK_PLACEMENT;\n        currentPlacement = nextPlacement;\n        root.style.top = '';\n        root.style.bottom = '';\n        root.style.left = '';\n        root.style.right = '';\n        root.style.transform = '';\n        panel.style.top = '';\n        panel.style.bottom = '';\n        panel.style.left = '';\n        panel.style.right = '';\n        panel.style.setProperty('--hbx-panel-offset-x', '0');\n        const isTop = nextPlacement.startsWith('top-');\n        if (isTop) {\n        root.style.top = '16px';\n        panel.style.top = '72px';\n        } else {\n        root.style.bottom = '16px';\n        panel.style.bottom = '72px';\n        }\n        if (nextPlacement.endsWith('left')) {\n        root.style.left = '16px';\n        panel.style.left = '16px';\n        } else if (nextPlacement.endsWith('right')) {\n        root.style.right = '16px';\n        panel.style.right = '16px';\n        } else {\n        root.style.left = '50%';\n        panel.style.left = '50%';\n        root.style.transform = 'translateX(-50%)';\n        panel.style.setProperty('--hbx-panel-offset-x', '-50%');\n        }\n        if (persist) {\n        localStorage.setItem(PLACEMENT_KEY, nextPlacement);\n        }\n        placementSelect.value = nextPlacement;\n    };\n\n    const setButtonVisibility = (hidden, persist = true) => {\n        btnWrap.hidden = hidden;\n        if (persist) {\n        localStorage.setItem(HIDE_BUTTON_KEY, hidden ? '1' : '');\n        }\n        chkHide.checked = hidden;\n    };\n\n    setPlacement(currentPlacement, false);\n    setButtonVisibility(initialHidePref, false);\n\n    shadow.append(btnWrap, panel);\n\n    const attach = () => { if (!document.body.contains(root)) document.body.appendChild(root); };\n    if (document.readyState === 'loading') document.addEventListener('DOMContentLoaded', attach);\n    else attach();\n\n    let logs = [];\n    let meta = null;\n    const setLogs = (payload) => { \n        if (payload) { \n        logs = Array.isArray(payload.entries) ? payload.entries : []; \n        meta = payload; \n        } else { \n        logs = []; \n        meta = null; \n        } \n    };\n    const shouldShowInfo = () => chkInfo.checked;\n    const createMetaItem = (label, value, className = '') => {\n        const item = document.createElement('div');\n        item.className = 'meta-item';\n        const labelEl = document.createElement('div');\n        labelEl.className = 'meta-label';\n        labelEl.textContent = label;\n        const valueEl = document.createElement('div');\n        valueEl.className = `meta-value ${className}`;\n        valueEl.textContent = value || '(not set)';\n        item.append(labelEl, valueEl);\n        return item;\n    };\n\n    const render = () => {\n        \n        // Update environment info\n        if (meta && meta.hugo) {\n        const hv = meta.hugo.version || '';\n        const gvRaw = meta.hugo.goVersion || '';\n        const gv = gvRaw.replace(/^go/i, '');\n        const tw = meta.modules && meta.modules.bloxTailwind ? meta.modules.bloxTailwind.version : '';\n        env.textContent = `Hugo ${hv} · Go ${gv}${tw ? ` · blox-tailwind ${tw}` : ''}`;\n        }\n\n        // Update page information\n        pageMeta.replaceChildren();\n        if (meta && meta.currentPage) {\n        const page = meta.currentPage;\n        pageMeta.append(\n            createMetaItem('Type', page.type || 'unknown', 'type'),\n            createMetaItem('Layout', page.layout || '(none)', 'layout'),\n            createMetaItem('Kind', page.kind || 'unknown'),\n            createMetaItem('Section', page.section || '(none)'),\n            createMetaItem('Path', page.path || window.location.pathname),\n            createMetaItem('File', page.file || '(virtual page)'),\n            createMetaItem('Build ID', page.buildId || 'unknown')\n        );\n        } else {\n        // Show placeholder data when meta isn't loaded yet\n        pageMeta.append(\n            createMetaItem('Type', 'loading...', 'type'),\n            createMetaItem('Layout', 'loading...', 'layout'),\n            createMetaItem('Kind', 'loading...'),\n            createMetaItem('Section', 'loading...'),\n            createMetaItem('Path', window.location.pathname),\n            createMetaItem('File', 'loading...'),\n            createMetaItem('Build ID', 'loading...')\n        );\n        }\n\n        // Update logs\n        const visible = logs.filter(e => e.level==='error' || e.level==='warn' || (e.level==='info' && shouldShowInfo()));\n        const errs = visible.filter(e => e.level==='error').length;\n        const warns = visible.filter(e => e.level==='warn').length;\n        const total = errs + warns + (shouldShowInfo()? visible.filter(e=>e.level==='info').length : 0);\n        badge.textContent = String(total);\n        badge.hidden = total === 0;\n        \n        // Update tab badge\n        logsTab.textContent = `Logs${total > 0 ? ` (${total})` : ''}`;\n        \n        logsContent.replaceChildren();\n        const groupByPage = new Map();\n        for (const e of visible) {\n        const key = e.page || '/';\n        if (!groupByPage.has(key)) groupByPage.set(key, []);\n        groupByPage.get(key).push(e);\n        }\n        for (const [page, entries] of groupByPage) {\n        const h = document.createElement('div');\n        h.className = 'page-group-header';\n        h.textContent = page;\n        logsContent.appendChild(h);\n        for (const e of entries.sort((a,b)=> (a.level>b.level?-1:1) || (a.timestamp-b.timestamp))) {\n            const row = document.createElement('div');\n            row.className = `entry ${e.level}`;\n            const lvl = document.createElement('div'); \n            lvl.className='lvl'; \n            lvl.textContent=e.level;\n            const msg = document.createElement('div'); \n            msg.className='msg'; \n            msg.textContent = e.message || '';\n            const metaEl = document.createElement('div'); \n            metaEl.className='meta'; \n            metaEl.textContent = new Date(e.timestamp*1000).toLocaleTimeString();\n            row.append(lvl, msg, metaEl);\n            logsContent.appendChild(row);\n        }\n        }\n    };\n\n    const refreshFromWindow = () => { \n        if (window.__HBX_LOGS__) { \n        setLogs(window.__HBX_LOGS__); \n        }\n    };\n    const fetchLogs = async () => {\n        try {\n        const res = await fetch('/hbx-debug.json?cb=' + Date.now());\n        if (res.ok) { const data = await res.json(); setLogs(data); render(); }\n        } catch (e) { /* silent */ }\n    };\n\n    const openPanel = () => {\n        panel.classList.add('open');\n        refreshFromWindow();\n        render();\n        fetchLogs();\n    };\n    const closePanel = () => {\n        panel.classList.remove('open');\n    };\n    const togglePanel = () => {\n        if (panel.classList.contains('open')) {\n        closePanel();\n        } else {\n        openPanel();\n        }\n    };\n\n    btn.addEventListener('click', togglePanel);\n    close.addEventListener('click', closePanel);\n    chkInfo.addEventListener('change', () => { \n        localStorage.setItem('hbx-show-info', chkInfo.checked ? '1' : ''); \n        render(); \n    });\n    chkAuto.addEventListener('change', () => {\n        localStorage.setItem('hbx-auto-open', chkAuto.checked ? '1' : '');\n    });\n    chkHide.addEventListener('change', () => {\n        const hideButton = chkHide.checked;\n        setButtonVisibility(hideButton);\n        if (hideButton) {\n        openPanel();\n        }\n    });\n    placementSelect.addEventListener('change', () => {\n        setPlacement(placementSelect.value);\n    });\n\n    // Initial render immediately on load\n    refreshFromWindow();\n    render(); // Force initial render even without data\n\n    // Auto-open panel if user enabled it\n    if (chkAuto.checked) {\n        openPanel();\n    }\n\n    const handleShortcut = (event) => {\n        const key = (event.key || '').toLowerCase();\n        if (key === 'd' && event.shiftKey && (event.metaKey || event.ctrlKey)) {\n        event.preventDefault();\n        togglePanel();\n        }\n    };\n    window.addEventListener('keydown', handleShortcut);\n\n    // Auto-refresh badge every few seconds in dev\n    setInterval(() => { refreshFromWindow(); }, 3000);\n    } catch(e) { /* ignore */ }\n})();\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/init.html",
    "content": "{{/* Workaround Hugo concurrency issues (e.g. not detecting Page.Store variables) */}}\n{{/* Use cases: Page.Store use within shortcodes, blox, and backlinks. */}}\n{{/* See https://discourse.gohugo.io/t/persisting-data-across-the-build-of-a-site/41114/6 */}}\n\n{{/* Pre-warm only content pages so Page.Store/backlinks are populated deterministically */}}\n{{- range where .Site.Pages \"Kind\" \"page\" -}}\n  {{- $ := .Content -}}\n{{- end -}}\n\n{{/* Preload block configs for landing pages */}}\n{{- range where .Site.Pages \"Type\" \"landing\" -}}\n  {{ $page := . }}\n  {{/* Resolve sections: front matter, sections_source, fallback to data/pages */}}\n  {{ $sections := $page.Params.sections }}\n\n  {{/* Linked-data: sections_source support */}}\n  {{ with $page.Params.sections_source }}\n    {{ $key := . }}\n    {{ if hasPrefix $key \"pages/\" }}{{ $key = replace $key \"pages/\" \"\" }}{{ end }}\n    {{ with index $.Site.Data.pages $key }}\n      {{ $base := .sections }}\n      {{ if $sections }}\n        {{ $merged := slice }}\n        {{ range $i, $b := $base }}\n          {{ $ov := index $sections $i }}\n          {{ if $ov }}\n            {{ $merged = $merged | append (merge $b $ov) }}\n          {{ else }}\n            {{ $merged = $merged | append $b }}\n          {{ end }}\n        {{ end }}\n        {{ if gt (len $sections) (len $base) }}\n          {{ range $i, $ov := $sections }}\n            {{ if ge $i (len $base) }}\n              {{ $merged = $merged | append $ov }}\n            {{ end }}\n          {{ end }}\n        {{ end }}\n        {{ $sections = $merged }}\n      {{ else }}\n        {{ $sections = $base }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n\n  {{ if not $sections }}\n    {{/* Data-driven fallback (home) */}}\n    {{ $p := \"home\" }}\n    {{ with $page.File }}\n      {{ $basename := .ContentBaseName }}\n      {{ if $basename }}\n        {{ $p = $basename }}\n        {{ if eq $p \"_index\" }}{{ $p = \"home\" }}{{ end }}\n      {{ end }}\n    {{ end }}\n    {{ if eq $page.RelPermalink \"/\" }}{{ $p = \"home\" }}{{ end }}\n    {{ with index $.Site.Data.pages $p }}\n      {{ $sections = .sections }}\n    {{ end }}\n  {{ end }}\n\n  {{/* Resolve per-section ref from data/blocks/* for block detection */}}\n  {{ if $sections }}\n    {{ $resolved := slice }}\n    {{ range $i, $s := $sections }}\n      {{ $sec := $s }}\n      {{ with $s.ref }}\n        {{ $ref := lower . }}\n        {{ $path := cond (hasPrefix $ref \"blocks/\") $ref (printf \"blocks/%s\" $ref) }}\n        {{ $parts := split $path \"/\" }}\n        {{ $data := $.Site.Data }}\n        {{ range $j, $p := $parts }}\n          {{ if $data }}{{ $data = index $data $p }}{{ end }}\n        {{ end }}\n        {{ if $data }}\n          {{/* Shallow merge so base can provide block type */}}\n          {{ $sec = merge $data $sec }}\n        {{ end }}\n      {{ end }}\n      {{ $resolved = $resolved | append $sec }}\n    {{ end }}\n    {{ $sections = $resolved }}\n  {{ end }}\n\n  {{ range $index, $block := $sections }}\n    {{/* Do not show sections intended only for the demo site. */}}\n    {{ if or (not $block.demo) ($block.demo | and (eq (os.Getenv \"HUGO_BLOX_DEMO\") \"true\")) }}\n      {{- $block_type := partial \"hbx/resolve-block-param\" (dict \"config\" $block \"context\" \"content section\") | default \"markdown\" -}}\n      {{ $block_type = lower $block_type }}\n      {{ range $r := .Site.Data.blox_aliases.renames }}\n        {{ $block_type = cond (eq $block_type $r.old) $r.new $block_type }}\n      {{ end }}\n      \n      {{/* Store the block type in the page store for asset bundling */}}\n      {{ $current_blocks := $page.Store.Get \"block_types\" | default (slice) }}\n      {{ $page.Store.Set \"block_types\" ($current_blocks | append $block_type) }}\n      \n      {{/* Check if this is a Preact-enabled block that needs hydration */}}\n      {{ $component_path := printf \"js/hbx/blocks/%s/client.jsx\" $block_type }}\n      {{ if resources.Get $component_path }}\n        {{ $page.Store.Set \"needs_preact\" true }}\n        {{/* Store which Preact blocks are used on this page */}}\n        {{ $preact_blocks := $page.Store.Get \"preact_blocks\" | default slice }}\n        {{ if not (in $preact_blocks $block_type) }}\n          {{ $preact_blocks = $preact_blocks | append $block_type }}\n          {{ $page.Store.Set \"preact_blocks\" $preact_blocks }}\n        {{ end }}\n      {{ end }}\n      \n      {{/* Detect FAQ blocks for JSON-LD structured data (avoid race conditions) */}}\n      {{ if eq $block_type \"faq\" }}\n        {{ if $block.content.items }}\n          {{ $faq_items := $page.Store.Get \"faq_items\" | default slice }}\n          {{ range $block.content.items }}\n            {{ $faq_items = $faq_items | append (dict \"question\" .question \"answer\" .answer) }}\n          {{ end }}\n          {{ $page.Store.Set \"faq_items\" $faq_items }}\n        {{ end }}\n      {{ end }}\n      \n      {{ $widget_config_file := printf \"blox/%s/config.html\" $block_type }}\n      {{ if templates.Exists (printf \"_partials/%s\" $widget_config_file) }}\n        {{ $hash_id := $block.id | default (printf \"section-%s\" (replace $block_type \".\" \"-\")) }}\n        {{ $widget_args := dict \"wcPage\" $page \"wcBlock\" $block \"wcIdentifier\" $hash_id }}\n        {{ partial $widget_config_file $widget_args }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/article.html",
    "content": "{{- $page := .page }}\n{{ $summary := .summary }}\n{{ $featured_image := ($page.Resources.ByType \"image\").GetMatch \"*featured*\" }}\n\n{{/* Get schema type. */}}\n{{ $schema := \"Article\" }}\n{{ if eq $page.Type \"blog\" }}\n  {{ $schema = \"BlogPosting\" }}\n{{ end }}\n\n{{ $author := partial \"functions/get_author_name\" $page }}\n{{ $branding := partialCached \"functions/get_branding\" $page \"branding\" }}\n{{ $publisher := $branding.organization }}\n{{ $logo_url := partial \"functions/get_logo_url\" $page -}}\n\n<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": {{$schema}},\n  \"mainEntityOfPage\": {\n    \"@type\": \"WebPage\",\n    \"@id\": {{$page.Permalink}}\n  },\n  \"headline\": {{$page.Title}},\n  {{ if $featured_image }}\n  \"image\": [\n    {{$featured_image.Permalink}}\n  ],\n  {{end}}\n  \"datePublished\": {{ $page.PublishDate.Format \"2006-01-02T15:04:05Z07:00\" }},\n  \"dateModified\": {{ $page.Lastmod.Format \"2006-01-02T15:04:05Z07:00\" }},\n  {{with $author}}\n  \"author\": {\n    \"@type\": \"Person\",\n    \"name\": {{.}}\n  },\n  {{end}}\n  \"publisher\": {\n    \"@type\": \"Organization\",\n    \"name\": {{$publisher}},\n    \"logo\": {\n      \"@type\": \"ImageObject\",\n      \"url\": {{$logo_url}}\n    }\n  },\n  \"description\": {{$summary}}\n}\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/breadcrumbs.html",
    "content": "{{- $page := .page -}}\n\n{{- if not $page.IsHome -}}\n  {{- $items := slice -}}\n  {{- $position := 1 -}}\n\n  {{- with site.Home -}}\n    {{- $home_title := .LinkTitle | default site.Title | default \"Home\" -}}\n    {{- $item := dict \"@type\" \"ListItem\" \"position\" $position \"name\" ($home_title | plainify) \"item\" (dict \"@id\" .Permalink \"name\" ($home_title | plainify)) -}}\n    {{- $items = $items | append $item -}}\n    {{- $position = add $position 1 -}}\n  {{- end -}}\n\n  {{- with $page.Ancestors -}}\n    {{- range .Reverse -}}\n      {{- if not .IsHome -}}\n        {{- $item := dict \"@type\" \"ListItem\" \"position\" $position \"name\" (.LinkTitle | plainify) \"item\" (dict \"@id\" .Permalink \"name\" (.LinkTitle | plainify)) -}}\n        {{- $items = $items | append $item -}}\n        {{- $position = add $position 1 -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n\n  {{- $item := dict \"@type\" \"ListItem\" \"position\" $position \"name\" ($page.LinkTitle | default $page.Title | plainify) \"item\" (dict \"@id\" $page.Permalink \"name\" ($page.LinkTitle | default $page.Title | plainify)) -}}\n  {{- $items = $items | append $item -}}\n\n  {{- if gt (len $items) 1 -}}\n    {{- $breadcrumb := dict \"@context\" \"https://schema.org\" \"@type\" \"BreadcrumbList\" \"itemListElement\" $items -}}\n    <script type=\"application/ld+json\">\n    {{ $breadcrumb | jsonify (dict \"indent\" \"  \") | safeJS }}\n    </script>\n  {{- end -}}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/business.html",
    "content": "{{- $sharing_image := resources.GetMatch (path.Join \"media\" \"sharing.*\") -}}\n{{- $branding := partialCached \"functions/get_branding\" . \"branding\" -}}\n<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": {{site.Params.hugoblox.identity.type | humanize | default \"Organization\"}},\n  \"@id\": {{site.BaseURL}},\n  \"name\": {{$branding.organization}},\n  \"logo\": {{ partial \"functions/get_logo_url\" . }},\n  {{with $sharing_image}}\"image\": {{.Permalink}},{{end}}\n  {{ if (eq site.Params.hugoblox.identity.type \"local_business\") | and site.Params.hugoblox.seo.location.coordinates }}\n  \"geo\": {\n    \"@type\": \"GeoCoordinates\",\n    \"latitude\": {{site.Params.hugoblox.seo.location.coordinates.latitude}},\n    \"longitude\": {{site.Params.hugoblox.seo.location.coordinates.longitude}}\n  },\n  {{end}}\n  {{ with site.Params.hugoblox.seo.location.address }}\n  \"address\": {\n    \"@type\": \"PostalAddress\",\n    \"streetAddress\": {{ .street | default \"\" }},\n    \"addressLocality\": {{ .city | default \"\" }},\n    \"addressRegion\": {{ .region | default \"\" }},\n    \"postalCode\": {{ .postal_code | default \"\" }},\n    \"addressCountry\": {{ .country | default \"\" }}\n  },\n  {{end}}\n  {{ with site.Params.hugoblox.seo.location.phone }}\"telephone\": {{.}},{{end}}\n  \"url\": {{site.BaseURL}}\n}\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/collectionpage.html",
    "content": "{{- $page := .page -}}\n{{- $summary := .summary -}}\n\n{{- $language := $page.Language.LanguageCode | default site.LanguageCode | default \"en\" -}}\n{{- $description := $summary | default ($page.Params.summary | default $page.Summary) -}}\n{{- $description = $description | plainify -}}\n\n{{- $listed_pages := $page.Pages -}}\n{{- if $page.IsHome -}}\n  {{- $listed_pages = slice -}}\n{{- else if $listed_pages -}}\n  {{- $listed_pages = $listed_pages.ByDate.Reverse -}}\n{{- else -}}\n  {{- $listed_pages = slice -}}\n{{- end -}}\n\n{{- $items := slice -}}\n{{- $max_items := 10 -}}\n{{- range $index, $item := $listed_pages -}}\n  {{- if ge $index $max_items -}}\n    {{- break -}}\n  {{- end -}}\n  {{- $items = $items | append (dict\n    \"@type\" \"ListItem\"\n    \"position\" (add $index 1)\n    \"item\" (dict\n      \"@type\" \"WebPage\"\n      \"@id\" $item.Permalink\n      \"name\" ($item.LinkTitle | default $item.Title | plainify)\n      \"url\" $item.Permalink\n    )\n  ) -}}\n{{- end -}}\n\n{{- $item_list := dict\n  \"@type\" \"ItemList\"\n  \"itemListOrder\" \"Descending\"\n  \"numberOfItems\" (len $items)\n  \"itemListElement\" $items\n-}}\n\n{{- $collection := dict\n  \"@context\" \"https://schema.org\"\n  \"@type\" \"CollectionPage\"\n  \"@id\" $page.Permalink\n  \"url\" $page.Permalink\n  \"name\" ($page.LinkTitle | default $page.Title | plainify)\n  \"inLanguage\" $language\n  \"isPartOf\" (dict\n    \"@type\" \"WebSite\"\n    \"@id\" site.BaseURL\n    \"url\" site.BaseURL\n    \"name\" site.Title\n  )\n-}}\n\n{{- if $description }}\n  {{- $collection = merge $collection (dict \"description\" $description) -}}\n{{- end -}}\n\n{{- if not $page.Lastmod.IsZero }}\n  {{- $collection = merge $collection (dict \"dateModified\" ($page.Lastmod.Format \"2006-01-02T15:04:05Z07:00\")) -}}\n{{- end -}}\n\n{{- if gt (len $items) 0 }}\n  {{- $collection = merge $collection (dict \"mainEntity\" $item_list) -}}\n{{- end -}}\n\n<script type=\"application/ld+json\">\n{{ $collection | jsonify (dict \"indent\" \"  \") | safeJS }}\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/event.html",
    "content": "{{ $page := .page }}\n{{ $summary := .summary }}\n{{ $featured_image := ($page.Resources.ByType \"image\").GetMatch \"*featured*\" }}\n{{ $author := partial \"functions/get_author_name\" $page }}\n\n<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"Event\",\n  \"mainEntityOfPage\": {\n    \"@type\": \"WebPage\",\n    \"@id\": {{$page.Permalink}}\n  },\n  \"name\": {{$page.Title}},\n  {{ with $page.Params.location }}\n  \"location\": {\n    \"@type\": \"Place\",\n    \"name\": {{. | plainify}}{{if $page.Params.address}},\n    \"address\": {\n      \"@type\": \"PostalAddress\",\n      \"streetAddress\": {{$page.Params.address.street | default \"\"}},\n      \"addressLocality\": {{$page.Params.address.city | default \"\"}},\n      \"postalCode\": {{$page.Params.address.postcode | default \"\"}},\n      \"addressRegion\": {{$page.Params.address.region | default \"\"}},\n      \"addressCountry\": {{$page.Params.address.country | default \"\"}}\n    }\n    {{end}}\n  },\n  {{end}}\n  {{ if $featured_image }}\n  \"image\": [\n    {{$featured_image.Permalink}}\n  ],\n  {{end}}\n  {{ $start := $page.Params.event_start | default $page.Date }}\n  \"startDate\": {{ (time $start).Format \"2006-01-02T15:04:05Z07:00\" }},\n  {{with ($page.Params.event_end | default $page.Params.date_end)}}\n  \"endDate\": {{ (time .).Format \"2006-01-02T15:04:05Z07:00\" }},\n  {{end}}\n  {{with $author}}\n  \"performer\": {\n    \"@type\": \"Person\",\n    \"name\": {{.}}\n  },\n  {{end}}\n  \"description\": {{$summary}}\n}\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/faqpage.html",
    "content": "{{- $page := .page }}\n{{ $summary := .summary }}\n\n{{/* Get FAQ items - can be from params.faqs, Page.Store (from init.html), or child pages */}}\n{{ $faq_items := slice }}\n\n{{/* Method 1: FAQ items defined in front matter */}}\n{{ if $page.Params.faqs }}\n  {{ $faq_items = $page.Params.faqs }}\n{{ end }}\n\n{{/* Method 2: Extract from Page.Store (populated by init.html to avoid race conditions) */}}\n{{ if not $faq_items }}\n  {{ with $page.Store.Get \"faq_items\" }}\n    {{ $faq_items = . }}\n  {{ end }}\n{{ end }}\n\n{{/* Method 3: Auto-generate from child pages in a FAQ section */}}\n{{ if and (not $faq_items) ($page.IsSection) }}\n  {{ range $page.RegularPages }}\n    {{ $faq_items = $faq_items | append (dict \"question\" (.Params.question | default .Title) \"answer\" (.Params.answer | default .Summary | default (.Content | plainify))) }}\n  {{ end }}\n{{ end }}\n\n{{/* Only output FAQ schema if we have FAQ items */}}\n{{ if $faq_items }}\n<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [\n    {{- range $index, $item := $faq_items -}}\n    {{- if $index }},{{ end -}}\n    {\n      \"@type\": \"Question\",\n      \"name\": {{ $item.question | jsonify }},\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": {{ $item.answer | plainify | jsonify }}\n      }\n    }\n    {{- end -}}\n  ]\n}\n</script>\n{{ end }}\n\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/main.html",
    "content": "{{ $page := .page }}\n{{ $summary := .summary }}\n{{ $site_type := site.Params.hugoblox.identity.type | humanize | default \"Person\" }}\n\n{{- if $page.IsHome -}}\n\n  {{ partialCached \"jsonld/website.html\" $page }}\n\n  {{ if ne $site_type \"Person\" }}\n    {{ partial \"jsonld/business.html\" $page }}\n  {{ end }}\n\n{{- else if $page.IsPage -}}\n\n  {{ if (eq $page.Type \"blog\") | or (eq $page.Type \"publications\") | or (eq $page.Type \"projects\") }}\n    {{ partial \"jsonld/article.html\" (dict \"page\" $page \"summary\" $summary) }}\n  {{ end }}\n\n  {{ if eq $page.Type \"events\" }}\n    {{ partial \"jsonld/event.html\" (dict \"page\" $page \"summary\" $summary) }}\n  {{ end }}\n\n  {{/* Q&A Page - individual question/answer page */}}\n  {{ if eq $page.Type \"questions\" }}\n    {{ partial \"jsonld/qapage.html\" (dict \"page\" $page \"summary\" $summary) }}\n  {{ end }}\n\n  {{/* FAQ Page type */}}\n  {{ if eq $page.Type \"faq\" }}\n    {{ partial \"jsonld/faqpage.html\" (dict \"page\" $page \"summary\" $summary) }}\n  {{ end }}\n\n  {{ partial \"jsonld/webpage.html\" (dict \"page\" $page \"summary\" $summary) }}\n\n{{- else -}}\n\n  {{ partial \"jsonld/collectionpage.html\" (dict \"page\" $page \"summary\" $summary) }}\n\n{{- end }}\n\n{{ if not $page.IsHome }}\n  {{ partial \"jsonld/breadcrumbs.html\" (dict \"page\" $page) }}\n{{ end }}\n\n{{/* FAQ content - can appear on any page type including landing pages and homepage */}}\n{{ if or ($page.Params.faq_page) ($page.Params.faqs) }}\n  {{ partial \"jsonld/faqpage.html\" (dict \"page\" $page \"summary\" $summary) }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/qapage.html",
    "content": "{{- $page := .page }}\n{{ $summary := .summary }}\n{{ $featured_image := ($page.Resources.ByType \"image\").GetMatch \"*featured*\" }}\n\n{{/* Get author and publisher info */}}\n{{ $author := partial \"functions/get_author_name\" $page }}\n{{ $branding := partialCached \"functions/get_branding\" $page \"branding\" }}\n{{ $publisher := $branding.organization }}\n\n{{/* Extract question - prioritize explicit param, fallback to title */}}\n{{ $question := $page.Params.question | default $page.Title }}\n\n{{/* Extract answer - prioritize explicit param, fallback to summary, then content */}}\n{{ $answer := \"\" }}\n{{ if $page.Params.answer }}\n  {{ $answer = $page.Params.answer }}\n{{ else if $page.Params.summary }}\n  {{ $answer = $page.Params.summary }}\n{{ else }}\n  {{ $answer = $page.Content | plainify | truncate 500 }}\n{{ end }}\n\n{{/* Get upvote/downvote counts if available */}}\n{{ $upvote_count := $page.Params.upvote_count | default 0 }}\n{{ $downvote_count := $page.Params.downvote_count | default 0 }}\n\n<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"QAPage\",\n  \"mainEntity\": {\n    \"@type\": \"Question\",\n    \"name\": {{ $question | jsonify }},\n    \"text\": {{ $question | jsonify }},\n    \"answerCount\": 1,\n    {{ if $upvote_count }}\"upvoteCount\": {{ $upvote_count }},{{ end }}\n    \"dateCreated\": {{ $page.Date.Format \"2006-01-02T15:04:05Z07:00\" | jsonify }},\n    {{- with $author -}}\n    \"author\": {\n      \"@type\": \"Person\",\n      \"name\": {{ . | jsonify }}\n    },\n    {{- end -}}\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": {{ $answer | plainify | jsonify }},\n      {{ if $upvote_count }}\"upvoteCount\": {{ $upvote_count }},{{ end }}\n      {{ if $downvote_count }}\"downvoteCount\": {{ $downvote_count }},{{ end }}\n      \"dateCreated\": {{ $page.Date.Format \"2006-01-02T15:04:05Z07:00\" | jsonify }},\n      {{- with $author -}}\n      \"author\": {\n        \"@type\": \"Person\",\n        \"name\": {{ . | jsonify }}\n      }{{- if or $page.Params.url $featured_image -}},{{- end -}}\n      {{- end -}}\n      {{- with $page.Params.url -}}\n      \"url\": {{ . | jsonify }}{{ if $featured_image }},{{ end }}\n      {{- end -}}\n      {{ if $featured_image }}\n      \"image\": {{ $featured_image.Permalink | jsonify }}\n      {{ end }}\n    }{{ if or $page.Params.suggested_answer $page.Params.additional_answers }},{{ end }}\n    {{- with $page.Params.suggested_answer -}}\n    \"suggestedAnswer\": [\n      {{- range $index, $answer := . -}}\n      {{- if $index }},{{ end -}}\n      {\n        \"@type\": \"Answer\",\n        \"text\": {{ $answer.text | jsonify }},\n        {{- with $answer.author -}}\n        \"author\": {\n          \"@type\": \"Person\",\n          \"name\": {{ . | jsonify }}\n        }{{ if or $answer.upvote_count $answer.date }},{{ end }}\n        {{- end -}}\n        {{- with $answer.upvote_count -}}\n        \"upvoteCount\": {{ . }},\n        {{- end -}}\n        {{- with $answer.date -}}\n        \"dateCreated\": {{ (time .) | time.Format \"2006-01-02T15:04:05Z07:00\" | jsonify }}\n        {{- end -}}\n      }\n      {{- end -}}\n    ]\n    {{- end -}}\n  }\n}\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/webpage.html",
    "content": "{{- $page := .page -}}\n{{- $summary := .summary -}}\n\n{{- $language := $page.Language.LanguageCode | default site.LanguageCode | default \"en\" -}}\n{{- $description := $summary | default ($page.Params.summary | default $page.Summary) -}}\n{{- $description = $description | plainify -}}\n\n{{- $image := partial \"functions/get_featured_image\" $page -}}\n{{- if not $image -}}\n  {{- $image = partial \"functions/get_site_icon\" 512 -}}\n{{- end -}}\n\n{{- $image_obj := dict -}}\n{{- with $image -}}\n  {{- $image_obj = dict\n    \"@type\" \"ImageObject\"\n    \"url\" .Permalink\n  -}}\n  {{- with .Width }}{{ $image_obj = merge $image_obj (dict \"width\" .) }}{{ end -}}\n  {{- with .Height }}{{ $image_obj = merge $image_obj (dict \"height\" .) }}{{ end -}}\n{{- end -}}\n\n{{- $webpage := dict\n  \"@context\" \"https://schema.org\"\n  \"@type\" \"WebPage\"\n  \"@id\" $page.Permalink\n  \"url\" $page.Permalink\n  \"name\" ($page.LinkTitle | default $page.Title | plainify)\n  \"inLanguage\" $language\n  \"isPartOf\" (dict\n    \"@type\" \"WebSite\"\n    \"@id\" site.BaseURL\n    \"url\" site.BaseURL\n    \"name\" site.Title\n  )\n-}}\n\n{{- if $description }}\n  {{- $webpage = merge $webpage (dict \"description\" $description) -}}\n{{- end -}}\n\n{{- if not $page.Date.IsZero }}\n  {{- $webpage = merge $webpage (dict \"datePublished\" ($page.Date.Format \"2006-01-02T15:04:05Z07:00\")) -}}\n{{- end -}}\n\n{{- if not $page.Lastmod.IsZero }}\n  {{- $webpage = merge $webpage (dict \"dateModified\" ($page.Lastmod.Format \"2006-01-02T15:04:05Z07:00\")) -}}\n{{- end -}}\n\n{{- with $image_obj }}\n  {{- $webpage = merge $webpage (dict \"primaryImageOfPage\" .) -}}\n{{- end -}}\n\n<script type=\"application/ld+json\">\n{{ $webpage | jsonify (dict \"indent\" \"  \") | safeJS }}\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/jsonld/website.html",
    "content": "<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"WebSite\",\n  {{- if site.Params.hugoblox.search.enable }}\n  \"potentialAction\": {\n    \"@type\": \"SearchAction\",\n    \"target\": {{ printf \"%s?q={search_term_string}\" site.BaseURL }},\n    \"query-input\": \"required name=search_term_string\"\n  },\n  {{end -}}\n  \"url\": {{site.BaseURL}}\n}\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/landing_page.html",
    "content": "{{/* Load Hugo Blox - HBX resolver-based system \n     Blocks live in `blox/<block-id>/block.html` and are mounted to `layouts/_partials/hbx/blocks/<block-id>/block.html`.\n     Landing pages must specify `sections: [{ block: '<id>', ... }]`.\n*/}}\n{{/* Use unified sections source */}}\n{{- $sections := partial \"hbx/sections.html\" . -}}\n\n{{ range $index, $block := $sections }}\n  {{/* Do not show sections intended only for the demo site. */}}\n  {{ if or (not $block.demo) ($block.demo | and (eq (os.Getenv \"HUGO_BLOX_DEMO\") \"true\")) }}\n    {{ partial \"functions/parse_block_v3\" (dict \"page\" $ \"block\" $block) }}\n  {{ end }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/libraries.html",
    "content": "{{/* Load Preact for component-based blocks */}}\n{{/* Check if any blocks on this page use Preact (set by init.html) */}}\n{{ if .Page.Store.Get \"needs_preact\" }}\n  {{ $preact_blocks := .Page.Store.Get \"preact_blocks\" | default slice }}\n  \n  {{/* Preact is now bundled with each template via js.Build and node_modules */}}\n  \n  {{/* Build and load each Preact block's client script */}}\n  {{ range $block_type := $preact_blocks }}\n    {{ $client_path := printf \"js/hbx/blocks/%s/client.jsx\" $block_type }}\n    {{ $client_jsx := resources.Get $client_path }}\n    \n    {{ if $client_jsx }}\n      {{/* Build the client-side JSX using Hugo's official integration */}}\n      {{ $jsx_opts := dict \n        \"targetPath\" (printf \"assets/js/preact-built/%s.js\" $block_type)\n        \"JSX\" \"automatic\"\n        \"JSXImportSource\" \"preact\"\n        \"format\" \"iife\"\n        \"minify\" hugo.IsProduction\n        \"sourceMap\" (cond hugo.IsDevelopment \"external\" \"\")\n      }}\n      {{ $built_jsx := $client_jsx | js.Build $jsx_opts }}\n      {{ if hugo.IsProduction }}\n        {{ $built_jsx = $built_jsx | fingerprint \"sha256\" }}\n      {{ end }}\n      <script defer src=\"{{ $built_jsx.RelPermalink }}\"{{ if hugo.IsProduction }} integrity=\"{{ $built_jsx.Data.Integrity }}\"{{ end }}></script>\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Show site search? */}}\n{{ $show_search := site.Params.hugoblox.header.search | default false }}\n\n{{/* Hugo Blox Animations - load synchronously BEFORE Alpine.js to register components */}}\n{{ if .Page.Store.Get \"has_animations\" }}\n  {{ $animations_js := resources.Get \"js/hb-animations.js\" | resources.Minify }}\n  {{- if hugo.IsProduction -}}\n    {{ $animations_js = $animations_js | fingerprint \"sha256\" }}\n  {{- end -}}\n  <script src=\"{{ $animations_js.RelPermalink }}\"{{ if hugo.IsProduction }} integrity=\"{{ $animations_js.Data.Integrity }}\"{{ end }}></script>\n{{ end }}\n\n{{/* Load Alpine JS extension? */}}\n{{/* Alpine is needed for search modal and other interactive components */}}\n{{ $needs_alpine := or (.Page.Store.Get \"has_alpine\") $show_search (.Page.Store.Get \"has_animations\") }}\n{{ if $needs_alpine }}\n  <script>console.log('✓ Alpine.js loading on demand');</script>\n  {{ $alpine_js := resources.Get \"dist/lib/alpinejs/cdn.min.js\" }}\n  {{ $alpine_js = $alpine_js | resources.Fingerprint \"sha256\" }}\n  <script src=\"{{ $alpine_js.RelPermalink }}\" integrity=\"{{ $alpine_js.Data.Integrity }}\" defer></script>\n{{ end }}\n\n{{/* Hugo Blox Search JavaScript (CSS is in main.css) */}}\n{{ if $show_search }}\n{{ $search_js := resources.Get \"js/hb-search.js\" | resources.Minify }}\n{{- if hugo.IsProduction -}}\n  {{ $search_js = $search_js | fingerprint \"sha256\" }}\n{{- end -}}\n<script defer src=\"{{ $search_js.RelPermalink }}\"{{ if hugo.IsProduction }} integrity=\"{{ $search_js.Data.Integrity }}\"{{ end }}></script>\n{{ end }}\n\n{{/* Mermaid */}}\n{{ if (.Page.Store.Get \"has_mermaid\") }}\n  {{ $mermaid_js := resources.Get \"dist/lib/mermaid/mermaid.min.js\" }}\n  {{ $mermaid_config_js := resources.Get \"js/hb-mermaid-config.js\" }}\n  {{ $mermaid_config_js = $mermaid_config_js | resources.Minify }}\n  {{ $mermaid_bundle := slice $mermaid_js $mermaid_config_js | resources.Concat \"js/mermaid.bundle.js\" | resources.Fingerprint \"sha256\" }}\n  <script defer src=\"{{ $mermaid_bundle.RelPermalink }}\" integrity=\"{{ $mermaid_bundle.Data.Integrity }}\"></script>\n{{ end }}\n\n{{/* Markmap */}}\n{{ if (.Page.Store.Get \"has_markmap\") }}\n<style>\n  .markmap > svg {\n    width: 100%;\n    height: 100%;\n  }\n</style>\n<script>\n  window.markmap = {\n    autoLoader: {\n      manual: false,\n      onReady() {\n        const { autoLoader, builtInPlugins } = window.markmap;\n        // Disable Prism highlighting plugin as it conflicts and attempts to re-render code blocks outside of Markmap.\n        autoLoader.transformPlugins = builtInPlugins.filter(plugin => plugin.name !== 'prism');\n      },\n    },\n  };\n</script>\n{{ $markmap_js := resources.Get \"dist/lib/markmap/index.js\" }}\n{{ $markmap_js = $markmap_js | resources.Minify | resources.Fingerprint \"sha256\" }}\n<script defer src=\"{{ $markmap_js.RelPermalink }}\" integrity=\"{{ $markmap_js.Data.Integrity }}\"></script>\n{{ end }}\n\n{{/* Katex */}}\n{{ if (.Page.HasShortcode \"math\") | or .Params.math | or site.Params.hugoblox.content.math.enable }}\n  {{ $katex_css := resources.Get \"dist/lib/katex/katex.min.css\" }}\n  {{ $katex_css = $katex_css | resources.Fingerprint \"sha256\" }}\n  <link type=\"text/css\" rel=\"stylesheet\" href=\"{{ $katex_css.RelPermalink }}\" integrity=\"{{ $katex_css.Data.Integrity }}\" />\n  {{ $katex_js := resources.Get \"dist/lib/katex/katex.min.js\" }}\n  {{ $katex_js = $katex_js | resources.Fingerprint \"sha256\" }}\n  <script defer src=\"{{ $katex_js.RelPermalink }}\" integrity=\"{{ $katex_js.Data.Integrity }}\"></script>\n  {{ $katex_render_js := resources.Get \"dist/lib/katex/auto-render.min.js\" }}\n  {{ $katex_config_js := resources.Get \"js/katex-config.js\" }}\n  {{ $katex_config_js = $katex_config_js | resources.Minify }}\n  {{ $katex_bundle := slice $katex_render_js $katex_config_js | resources.Concat \"js/katex-renderer.js\" | resources.Fingerprint \"sha256\" }}\n  <script defer src=\"{{ $katex_bundle.RelPermalink }}\" integrity=\"{{ $katex_bundle.Data.Integrity }}\"></script>\n  {{ $katex_fonts := resources.Match \"dist/lib/katex/fonts/*\" }}\n  {{ range $katex_fonts }}\n    {{ .Publish }}\n  {{ end }}\n{{ end }}\n\n{{/* Plotly */}}\n{{ if .Page.HasShortcode \"chart\" }}\n{{ $plotly_js := resources.Get \"dist/lib/plotly/plotly.min.js\" }}\n{{ $plotly_js = $plotly_js | resources.Fingerprint \"sha256\" }}\n<script defer src=\"{{ $plotly_js.RelPermalink }}\" integrity=\"{{ $plotly_js.Data.Integrity }}\"></script>\n{{ end }}"
  },
  {
    "path": "modules/blox/layouts/_partials/notification-container.html",
    "content": "{{/* Notification Container for toasts/alerts */}}\n{{/* This container is placed at the page level to ensure proper z-index and visibility */}}\n{{/* Used by hb-notifier.js module for showing toast notifications */}}\n<div id=\"hb-notification-container\" class=\"fixed top-20 right-4 z-[9999] pointer-events-none\" aria-live=\"polite\" aria-atomic=\"true\"></div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/page_author.html",
    "content": "{{/* Author profile box */}}\n\n{{/* Don't show author box on normal pages or if author box disabled. */}}\n{{ if ne .Type \"page\" | and (not (or (eq site.Params.profile false) (eq .Params.profile false))) }}\n\n{{ $authors := .Params.authors }}\n\n{{/* If authors not set, fallback to superuser/owner from Scratch */}}\n{{ if (not $authors) }}\n  {{ $superuser := .Scratch.Get \"superuser_slug\" }}\n  {{ if $superuser }}\n    {{ $authors = (slice $superuser) }}\n  {{ end }}\n{{ end }}\n\n{{ if $authors }}\n  {{ range $idx, $slug := $authors }}\n    {{ $profile := partial \"functions/get_author_profile\" $slug }}\n    {{ if $profile.has_data }}\n      {{ partial \"page_author_card\" (dict \"profile\" $profile \"page\" .) }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{end}}{{/* Show profile block */}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/page_author_card.html",
    "content": "{{ $profile := .profile }}\n{{ $page := .page }}\n{{ $site_type := site.Params.hugoblox.identity.type | humanize | default \"Person\" }}\n{{ $avatar_shape := site.Params.hugoblox.layout.avatar_shape | default \"circle\" }}\n\n{{ if $profile }}\n  {{/* If it's a personal site and the profile is owner, link home */}}\n  {{ $profile_url := printf \"/authors/%s/\" $profile.slug }}\n  {{ if and (eq $site_type \"Person\") ($profile.is_owner) }}\n    {{ $profile_url = site.BaseURL }}\n  {{ end }}\n\n  {{ $avatar := $profile.avatar }}\n\n<div class=\"flex pt-12 pb-4\">\n  {{ if $avatar }}\n    {{ $isSVG := eq $avatar.MediaType.SubType \"svg\" }}\n    {{ if $isSVG }}\n    <img\n      class=\"mr-4 h-24 w-24 {{if ne $avatar_shape \"square\"}}rounded-full{{end}}\"\n      src=\"{{ $avatar.RelPermalink }}\"\n      width=\"96\"\n      height=\"96\"\n      alt=\"{{$profile.title}}\"\n      loading=\"lazy\"\n      />\n    {{ else }}\n    {{ $responsive := partial \"functions/process_responsive_image.html\" (dict\n        \"image\" $avatar\n        \"mode\" \"fill\"\n        \"aspect_ratio\" \"1:1\"\n        \"anchor\" \"Center\"\n        \"sizes\" (slice 96 192 288 384)\n    ) }}\n    <img\n      class=\"mr-4 h-24 w-24 {{if ne $avatar_shape \"square\"}}rounded-full{{end}}\"\n      srcset=\"{{ $responsive.srcset }}\"\n      sizes=\"96px\"\n      src=\"{{ $responsive.fallback.RelPermalink }}\"\n      width=\"96\"\n      height=\"96\"\n      alt=\"{{$profile.title}}\"\n      loading=\"lazy\"\n      />\n    {{ end }}\n  {{ end }}\n  <div class=\"place-self-center\">\n    <div class=\"text-[0.6rem] uppercase leading-3 text-neutral-500 dark:text-neutral-400\">\n      {{ i18n \"authors\" }}\n    </div>\n    <div class=\"font-semibold leading-6 text-neutral-800 dark:text-neutral-300\">\n      <span class=\"inline-block\">\n        {{if $profile_url}}<a href=\"{{$profile_url}}\" class=\"no-underline\">{{end}}\n        {{$profile.title}}\n        {{if $profile_url}}</a>{{end}}\n      </span>\n      {{- with $profile.pronouns -}}\n        <span class=\"text-sm font-normal text-gray-600 dark:text-gray-400 ml-1 inline-block\">({{ . }})</span>\n      {{- end -}}\n    </div>\n\n    {{ with $profile.role }}\n    <div class=\"text-sm font-bold text-neutral-700 dark:text-neutral-300\">\n    {{. | markdownify | emojify}}\n    </div>\n    {{end}}\n\n\n    {{ with $profile.bio }}\n    <div class=\"text-sm text-neutral-700 dark:text-neutral-300\">{{ . | markdownify | emojify }}</div>\n    {{ end }}\n\n    <div class=\"text-2xl sm:text-lg pt-1\">\n      {{ partial \"social_links\" (dict \"Params\" (dict \"profiles\" $profile.links)) }}\n    </div>\n  </div>\n</div>\n\n{{end}}{{/* End Check for Author Profile */}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/page_edit.html",
    "content": "{{/* Add link to let visitors edit the page on GitHub. */}}\n{{/* Perform short-circuit check that page is backed by a file. */}}\n{{ if and .File .Params.editable | and site.Params.hugoblox.repository.url }}\n{{/* Get language subfolder for multilingual sites. */}}\n{{/* Limitations: the subfolder param, `<LANG>.contentDir`, is unexposed in the Hugo `site` API so we attempt to workaround this issue. */}}\n{{ $content_dir := \"content\" }}\n{{ if site.Params.hugoblox.repository.content_dir }}\n  {{ $content_dir = site.Params.hugoblox.repository.content_dir }}\n{{else}}\n  {{/* Attempt to get content dir from the LanguagePrefix URI, but defaultContentLanguageInSubdir can break this assumption. */}}\n  {{ $content_dir = cond site.IsMultiLingual (cond (ne .Site.LanguagePrefix \"\") (printf \"%s%s\" $content_dir .Site.LanguagePrefix) $content_dir) $content_dir }}\n{{end}}\n<p class=\"edit-page\">\n  <a href=\"{{site.Params.hugoblox.repository.url}}/edit/{{site.Params.hugoblox.repository.branch | default \"main\"}}/{{$content_dir}}/{{.File.Path}}\">\n    📝 {{ i18n \"edit_page\" | default \"Edit this page\" }}\n  </a>\n</p>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/page_footer.html",
    "content": "<div class=\"max-w-prose print:hidden\">\n  {{/* Moved to TOC sidebar */}}\n  {{/* partial \"page_edit\" . */}}\n\n  {{ partial \"tags\" . }}\n  {{ partial \"components/page_sharer\" . }}\n  {{ partial \"page_author\" . }}\n  {{ partial \"components/next-in-series\" . }}\n  {{ partial \"page_related\" . }}\n  {{ partial \"comments\" . }}\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/page_links.html",
    "content": "{{ $is_list := .is_list }}\n{{ $page := .page }}\n\n{{/* Build normalized links (new API) */}}\n{{ $built := partial \"functions/build_links\" (dict \"page\" $page \"is_list\" $is_list) }}\n\n{{ $ctx := cond $is_list \"list\" \"page\" }}\n\n{{/* English fallbacks if i18n key is missing in a locale */}}\n{{ $fallbackByKey := dict\n  \"btn_pdf\" \"PDF\"\n  \"btn_preprint\" \"Preprint\"\n  \"btn_doi\" \"DOI\"\n  \"btn_code\" \"Code\"\n  \"btn_dataset\" \"Dataset\"\n  \"btn_model\" \"Model\"\n  \"btn_slides\" \"Slides\"\n  \"btn_video\" \"Video\"\n  \"btn_poster\" \"Poster\"\n  \"btn_project\" \"Project\"\n  \"btn_site\" \"Site\"\n  \"btn_source\" \"Source Document\"\n  \"btn_canonical\" \"Canonical\"\n  \"btn_crosspost\" \"Crosspost\"\n  \"btn_discussion\" \"Discussion\"\n  \"btn_event\" \"Event\"\n  \"btn_calendar\" \"Calendar\"\n  \"btn_registration\" \"Registration\"\n  \"btn_demo\" \"Demo\"\n  \"btn_cite\" \"Cite\"\n}} \n\n{{ range $built }}\n  {{ if in .contexts $ctx }}\n    {{ $url := .url | default \"\" }}\n    {{ $scheme := (urls.Parse $url).Scheme }}\n    {{ $target := \"\" }}\n    {{ $rel := slice }}\n    {{ with .rel }}{{ $rel = . }}{{ end }}\n    {{ if not $scheme }}\n      {{ with ($page.Resources.GetMatch $url) }}\n        {{ $url = .RelPermalink }}\n      {{ else }}\n        {{ $url = $url | relURL }}\n      {{ end }}\n    {{ else if in (slice \"http\" \"https\") $scheme }}\n      {{ $target = \"target=\\\"_blank\\\"\" }}\n      {{ $rel = $rel | append \"noopener\" }}\n    {{ end }}\n\n    {{ $classes := printf \"hb-attachment-link %s\" (cond $is_list \"hb-attachment-link-small\" \"hb-attachment-link-large\") }}\n    {{ $label := .label }}\n    {{ with .labelKey }}\n      {{ if not $label }}\n        {{ $label = (i18n .) | default (index $fallbackByKey .) | default \"Link\" }}\n      {{ end }}\n    {{ end }}\n    {{ if not $label }}\n      {{ $label = \"Link\" }}\n    {{ end }}\n\n    {{ if eq .type \"bibtex\" }}\n      <button class=\"{{ $classes }} js-cite-clipboard cursor-pointer\" type=\"button\" data-filename=\"{{ $url }}\">\n        {{ partial \"functions/get_icon\" (dict \"name\" (.icon | default \"hero/document-duplicate\") \"attributes\" \"style=\\\"height: 1em\\\" class='inline-block'\") }}\n        <span>{{ $label }}</span>\n      </button>\n    {{ else }}\n      <a class=\"{{ $classes }}\" href=\"{{ $url | safeURL }}\" {{ $target | safeHTMLAttr }} {{ with $rel }}rel=\"{{ delimit . \" \" }}\"{{ end }}>\n        {{ partial \"functions/get_icon\" (dict \"name\" (.icon | default \"hero/link\") \"attributes\" \"style=\\\"height: 1em\\\" class='inline-block'\") }}\n        {{ $label }}\n      </a>\n    {{ end }}\n  {{ end }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/page_links_div.html",
    "content": "{{/* Div wrapper around page links. Hidden if page has no links. */}}\n\n{{ $built := partial \"functions/build_links\" (dict \"page\" . \"is_list\" 0) }}\n{{ if gt (len $built) 0 }}\n<div class=\"\">\n  {{ partial \"page_links\" (dict \"page\" . \"is_list\" 0) }}\n</div>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/page_metadata_authors.html",
    "content": "{{/* Display author list. */}}\n\n{{- $authors := .Params.authors -}}\n\n{{ if $authors }}\n  {{- if not (reflect.IsSlice $authors) -}}\n    {{- $authors = slice $authors -}}\n  {{- end -}}\n\n  {{ range $index, $raw := $authors }}\n    {{- $slug := $raw | urlize -}}\n    {{- $profile := partial \"functions/get_author_profile\" (dict \"slug\" $slug \"title\" $raw) -}}\n    {{- $termPage := site.GetPage (printf \"/authors/%s\" $slug) -}}\n    {{- $display := $profile.title | default $raw -}}\n    {{- $highlight_name := false -}}\n\n    {{- if gt $index 0 }}, {{ end -}}\n    <span {{ if $highlight_name }}class=\"font-bold\"{{end}}>\n      {{- if $termPage -}}\n        <a href=\"{{ $termPage.RelPermalink }}\">{{ $display }}</a>\n      {{- else -}}\n        {{ $display }}\n      {{- end -}}\n    </span>\n    {{- if isset $.Params \"author_notes\" -}}\n      {{- with (index $.Params.author_notes $index) -}}\n        <span class=\"relative inline-block ml-1\" x-data=\"{ tooltip: false }\">\n          <button\n            @mouseenter=\"tooltip = true\"\n            @mouseleave=\"tooltip = false\"\n            @click=\"tooltip = !tooltip\"\n            class=\"author-notes text-primary-600 dark:text-primary-400 hover:text-primary-800 dark:hover:text-primary-200 transition-colors cursor-help\"\n            data-tooltip=\"{{.}}\"\n            aria-label=\"{{.}}\"\n            type=\"button\"\n          >\n            <svg class=\"inline-block w-4 h-4\" fill=\"currentColor\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\">\n              <path fill-rule=\"evenodd\" d=\"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z\" clip-rule=\"evenodd\"></path>\n            </svg>\n          </button>\n          <div\n            x-show=\"tooltip\"\n            x-transition:enter=\"transition ease-out duration-200\"\n            x-transition:enter-start=\"opacity-0 transform scale-95\"\n            x-transition:enter-end=\"opacity-100 transform scale-100\"\n            x-transition:leave=\"transition ease-in duration-150\"\n            x-transition:leave-start=\"opacity-100 transform scale-100\"\n            x-transition:leave-end=\"opacity-0 transform scale-95\"\n            @click.away=\"tooltip = false\"\n            class=\"absolute z-50 bottom-full left-1/2 transform -translate-x-1/2 mb-2 px-3 py-2 text-sm text-white bg-gray-900 dark:bg-gray-700 rounded-lg shadow-lg whitespace-nowrap\"\n            x-cloak\n          >\n            {{.}}\n            <div class=\"absolute top-full left-1/2 transform -translate-x-1/2 -mt-1 w-0 h-0 border-l-4 border-r-4 border-t-4 border-transparent border-t-gray-900 dark:border-t-gray-700\"></div>\n          </div>\n        </span>\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/page_related.html",
    "content": "{{/* Show related/recommended content. */}}\n{{ if .Params.show_related }}\n  {{ $related := site.RegularPages.Related . | first 5 }}\n  {{ with $related }}\n<hr class=\"border-dotted border-neutral-300 dark:border-neutral-600\">\n  <div class=\"text-sm\">\n    <h3>{{ i18n \"related\" }}</h3>\n    <ul>\n      {{ range . }}\n      <li><a href=\"{{ .RelPermalink }}\">{{ .Title }}</a></li>\n      {{ end }}\n    </ul>\n  </div>\n  {{ end }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/site_footer.html",
    "content": "<footer class=\"container mx-auto flex flex-col justify-items-center text-sm leading-6 mt-24 mb-4 text-slate-700 dark:text-slate-200\">\n\n  {{ partial \"functions/get_hook\" (dict \"hook\" \"footer-start\" \"context\" .) }}\n\n  {{/* Load footer block */}}\n  {{- $footer_config := site.Params.hugoblox.footer | default dict -}}\n  {{- $footer_section_name := partial \"hbx/resolve-block-param\" (dict \"config\" $footer_config \"context\" \"footer\") | default \"minimal\" -}}\n  {{ $footer_section_path := printf \"components/footers/%s.html\" $footer_section_name }}\n  {{ if not (templates.Exists (printf \"_partials/%s\" $footer_section_path)) }}\n    {{ errorf \"Check your `params.yaml`. Cannot find footer block at `layouts/_partials/%s`\" $footer_section_path }}\n  {{ end }}\n  {{ partial $footer_section_path . }}\n\n  {{/* Attribution - PLEASE DO NOT REMOVE THIS, SUPPORT OPEN SOURCE */}}\n  \n  {{/* Check for Pro license key */}}\n  {{- $license_key := getenv \"HUGO_BLOX_LICENSE\" -}}\n  {{- $has_pro_license := false -}}\n  \n  {{- if $license_key -}}\n    {{/* Validate UUID v4 format */}}\n    {{- $uuid_pattern := \"^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$\" -}}\n    {{- $is_valid_format := findRE $uuid_pattern (lower $license_key) -}}\n    {{- $has_pro_license = gt (len $is_valid_format) 0 -}}\n  {{- end -}}\n  \n  {{/* Check user preference */}}\n  {{- $wants_to_hide := site.Params.hugoblox.pro.hide_attribution | default false -}}\n  \n  {{/* Determine if we show attribution */}}\n  {{- $show_attribution := true -}}\n  \n  {{- if $has_pro_license -}}\n    {{/* Pro user - respect their choice */}}\n    {{- $show_attribution = not $wants_to_hide -}}\n  {{- else if $wants_to_hide -}}\n    {{/* Free user trying to hide - show warning and attribution */}}\n    {{- warnf \"Attribution removal requires HugoBlox Premium. Get Premium at https://hugoblox.com/premium \\nAlready purchased Premium? Reach out in the Premium Discord channel for support.\" -}}\n    {{- $show_attribution = true -}}\n  {{- end -}}\n  \n  {{- if $show_attribution -}}\n    {{- $base := \"https://hugoblox.com\" -}}\n    {{- $tid  := \"\" -}}\n    {{- $ref  := .Site.Params.hugoblox.pro.affiliate_code | default \"\" -}}\n  \n    {{/* Detect Template */}}\n    {{ $hugoblox_file := \"\" }}\n    {{ if fileExists \"hugoblox.yaml\" }}\n      {{ $hugoblox_file = readFile \"hugoblox.yaml\" }}\n      {{ if $hugoblox_file }}\n        {{ $hugoblox_data := $hugoblox_file | transform.Unmarshal }}\n        {{ $tid = $hugoblox_data.template.id | default \"\" }}\n      {{ end }}\n    {{ end }}\n\n    {{/* Per-site variant selection */}}\n    {{- $brandOptions := slice \"Hugo Blox\" \"Hugo Blox Kit\" \"Hugo Blox — Open Source\" -}}\n    {{- $ctaWhenTemplate := slice \"Duplicate this template →\" \"Clone this template →\" \"Build yours →\" \"Create yours →\" \"Build your site →\" \"Create your site →\" -}}\n    {{- $ctaNoTemplate   := slice \"Start free →\" \"Build yours →\" \"Create yours →\" \"Build your site →\" \"Create your site →\" -}}\n  \n    {{- $seed := .Site.BaseURL -}}\n    {{- $h := md5 $seed -}}\n    {{- $digits := replaceRE \"[^0-9]\" \"\" $h -}}\n    {{- if lt (len $digits) 6 }}{{- $digits = printf \"%s123456\" $digits -}}{{- end -}}\n    {{- $first6 := substr $digits 0 6 -}}\n    {{/* Fix for Hugo's int() function treating leading zeros as octal numbers.\n         Strings like \"095186\" fail because 8 and 9 aren't valid octal digits.\n         Replace leading zero with 1 to ensure valid decimal parsing. */}}\n    {{- if eq (substr $first6 0 1) \"0\" -}}\n      {{- $first6 = printf \"1%s\" (substr $first6 1 5) -}}\n    {{- end -}}\n    {{- $n := int $first6 -}}\n  \n    {{- $brandText := index $brandOptions (mod $n (len $brandOptions)) -}}\n    {{- $ctaText   := cond (ne $tid \"\")\n          (index $ctaWhenTemplate (mod $n (len $ctaWhenTemplate)))\n          (index $ctaNoTemplate   (mod $n (len $ctaNoTemplate))) -}}\n  \n    {{- $target := cond (ne $tid \"\")\n          (printf \"%s/templates/%s/start\" $base $tid)\n          (printf \"%s/start\" $base) -}}\n  \n    {{- $brandHref := printf \"%s?utm_source=site_footer&utm_medium=referral&utm_campaign=poweredby_oss&utm_content=brand_%s\"\n          $base (cond (ne $tid \"\") (printf \"%s\" $tid) \"na\") -}}\n    {{- $ctaHref := printf \"%s?utm_source=site_footer&utm_medium=referral&utm_campaign=poweredby_oss&utm_content=cta_%s\"\n          $target (cond (ne $tid \"\") (printf \"%s\" $tid) \"na\") -}}\n    {{- if ne $ref \"\" -}}\n      {{- $brandHref = printf \"%s&ref=%s\" $brandHref $ref -}}\n      {{- $ctaHref   = printf \"%s&ref=%s\"   $ctaHref   $ref -}}\n    {{- end -}}\n  \n    <p class=\"powered-by text-center text-sm opacity-80 py-1\">\n      {{ $published_with := \"Made with {hugoblox}.\" }}\n      {{ $i18n_published_with := i18n \"published_with\" | default $published_with }}\n      {{ $defaultEnText := \"Build yours →\" }}\n      {{ $i18n_ctaText := i18n \"poweredby_button\" | default $ctaText }}\n      {{ if eq $i18n_ctaText $defaultEnText }}\n        {{ $i18n_ctaText = $ctaText }}\n      {{ end }}\n      {{ if not (findRE \"{hugoblox}\" $i18n_published_with) }}\n        {{ warnf \"Please attribute Hugo Blox using `{hugoblox}` in the i18n `published_with` text or sponsor with All Access to remove attribution.\" }}\n        {{ $i18n_published_with = $published_with }}\n      {{ end }}\n      {{ $i18n_published_with = replace $i18n_published_with \"{hugoblox}\" (printf \"<a class=\\\"underline hover:opacity-100\\\" href=\\\"%s\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-hbx=\\\"poweredby_brand\\\">%s</a>\" $brandHref $brandText) | safeHTML }}\n      {{ $i18n_published_with = replace $i18n_published_with \"{repo_link}\" \"<a href=\\\"https://github.com/HugoBlox/kit\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\" | safeHTML }}\n      {{ $i18n_published_with = replace $i18n_published_with \"{/repo_link}\" \"</a>\" | safeHTML }}\n      {{ $i18n_published_with | safeHTML }}\n      <a class=\"inline-flex items-center rounded px-2 py-0.5 border border-current ms-2 text-xs hover:opacity-100\"\n         href=\"{{ $ctaHref }}\" target=\"_blank\" rel=\"noopener\" data-hbx=\"poweredby_cta\">{{ $i18n_ctaText }}</a>\n    </p>\n  {{- end -}}{{/* end $show_attribution */}}  \n\n</footer>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/site_footer_license.html",
    "content": "{{/* Display copyright license. */}}\n\n{{ $branding := partialCached \"functions/get_branding\" . \"branding\" }}\n{{ $page_copyright := .Params.copyright | default dict }}\n{{ $site_copyright := site.Params.hugoblox.copyright | default dict }}\n\n{{ $copyright_license := $page_copyright.license | default $site_copyright.license | default dict }}\n{{ $notice := $page_copyright.notice | default $site_copyright.notice }}\n\n{{ $license_type := $copyright_license.type | default \"cc\" }}\n\n{{ $license_label := \"\" }}\n{{ $license_url := \"\" }}\n{{ $show_cc_icons := false }}\n\n{{ $allow_commercial := $copyright_license.allow_commercial | default false }}\n{{ $allow_derivatives := $copyright_license.allow_derivatives | default false }}\n{{ $share_alike := $copyright_license.share_alike | default true }}\n\n{{ if eq $license_type \"cc\" }}\n\n  {{ $cc_code := \"by\" }}\n  {{ if not $allow_commercial }}\n    {{ $cc_code = printf \"%s-nc\" $cc_code }}\n  {{end}}\n  {{ if and $allow_derivatives $share_alike }}\n    {{ $cc_code = printf \"%s-sa\" $cc_code }}\n  {{ else if not $allow_derivatives }}\n    {{ $cc_code = printf \"%s-nd\" $cc_code }}\n  {{end}}\n\n  {{ $license_url = printf \"https://creativecommons.org/licenses/%s/4.0\" ($cc_code | urlize) }}\n  {{ $license_label = printf \"<a href=\\\"%s\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">CC %s 4.0</a>\" $license_url (replace $cc_code \"-\" \" \" | upper) }}\n  {{ $show_cc_icons = true }}\n\n{{ else if eq $license_type \"custom\" }}\n\n  {{ $custom_label := $copyright_license.label | default $copyright_license.text | default \"\" }}\n  {{ $custom_url := $copyright_license.url | default \"\" }}\n  {{ if and $custom_label $custom_url }}\n    {{ $license_label = printf \"<a href=\\\"%s\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">%s</a>\" $custom_url $custom_label }}\n  {{ else }}\n    {{ $license_label = $custom_label }}\n  {{ end }}\n\n{{ end }}\n\n{{ if and $show_cc_icons $license_url }}\n\n  <p class=\"powered-by footer-license-icons text-center pb-2\">\n    <a class=\"inline-flex items-center justify-center gap-2 align-middle\" href=\"{{$license_url}}\" rel=\"noopener noreferrer\" target=\"_blank\" aria-label=\"Creative Commons\">\n    <a class=\"inline-flex items-center justify-center gap-2 align-middle\" href=\"{{$license_url}}\" rel=\"noopener noreferrer\" target=\"_blank\" aria-label=\"Creative Commons\">\n      <svg class=\"h-6 w-6 inline-block align-middle text-current\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" fill=\"currentColor\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M253.8 214.9l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.6-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77 0-58.7 43-77.1 72.6-77.1 30.7 0 52.7 11.9 66 35.9zm143 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.5 9.2 43.8 33.2 43.8 14.4 0 24.6-7.1 30.5-21.3l31 15.5c-2.1 3.8-21.4 39-65.1 39-22.7 0-74-9.9-74-77 0-58.7 43-77.1 72.6-77.1 30.7 0 52.6 11.9 65.6 35.9zM255.6 8C112.7 8 8 123.1 8 256.1 8 394.5 121.6 504.1 255.6 504.1 385.5 504.1 504 403.2 504 256.1 504 118.2 397.4 8 255.6 8zm.9 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.4-203.3 203.7-203.3 112.5 0 202.8 89.5 202.8 203.3 0 121.7-99.7 202.8-202.8 202.8z\"/></svg>\n      <svg class=\"h-6 w-6 inline-block align-middle text-current\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" fill=\"currentColor\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M322.9 194.4l0 101.4-28.3 0 0 120.5-77.1 0 0-120.4-28.3 0 0-101.5c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7l101.9 0c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-32.5-64.5a34.5 34.5 0 1 1 -69 .8 34.5 34.5 0 1 1 69-.8zM255.6 8C397.4 8 504 118.1 504 256 504 403.1 385.5 504 255.6 504 121.6 504 8 394.5 8 256 8 123.1 112.7 8 255.6 8zm.8 44.7c-118.2 0-203.7 97.9-203.7 203.3 0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3z\"/></svg>\n      {{ if not $allow_commercial }}\n        <svg class=\"h-6 w-6 inline-block align-middle text-current\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" fill=\"currentColor\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M255.6 8C395.4 8 504 115.9 504 256 504 403.2 385.5 504 255.6 504 121.1 504 8 393.2 8 256 8 123.1 112.7 8 255.6 8zM63.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4l0 38.1-28.8 0 0-38.2c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM256.4 52.3C218 52.3 144 61 85.9 145.3l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3l0-38.1 28.8 0 0 38.1c22.7 1.2 43.4 8.9 62 23L303 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z\"/></svg>\n      {{end}}\n      {{ if and $allow_derivatives $share_alike }}\n        <svg class=\"h-6 w-6 inline-block align-middle text-current\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" fill=\"currentColor\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M255.6 8C397.4 8 504 118.1 504 256 504 403.1 385.5 504 255.6 504 121.6 504 8 394.5 8 256 8 123.1 112.7 8 255.6 8zm.8 44.7c-118.2 0-203.7 97.9-203.7 203.3 0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zM145.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97l62.5 0c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8l18.2 0-49.2 49.2-49-49.2 19.4 0z\"/></svg>\n      {{ else if not $allow_derivatives }}\n        <svg class=\"h-6 w-6 inline-block align-middle text-current\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" fill=\"currentColor\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M255.6 8C397.4 8 504 118.1 504 256 504 403.1 385.5 504 255.6 504 121.6 504 8 394.5 8 256 8 123.1 112.7 8 255.6 8zm.8 44.7c-118.2 0-203.7 97.9-203.7 203.3 0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zm94 144.3l0 42.5-180.3 0 0-42.5 180.3 0zm0 79.8l0 42.5-180.3 0 0-42.5 180.3 0z\"/></svg>\n      {{end}}\n    </a>\n  </p>\n\n{{ end }}\n\n{{ with $notice }}\n<p class=\"powered-by text-center\">\n  {{ $processed := replace . \"{year}\" now.Year }}\n  {{ $processed = replace $processed \"{name}\" $branding.organization }}\n  {{ $processed = replace $processed \"{license}\" $license_label }}\n  {{ $processed | markdownify }}\n</p>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/site_head.html",
    "content": "{{ $scr := .Scratch }}\n<head>\n  <meta charset=\"utf-8\" />\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n  <meta name=\"generator\" content=\"Hugo Blox Kit {{ site.Data.hugoblox.version }}\" />\n\n  {{/* EXTENSIBILITY HOOK: HEAD-START */}}\n  {{ partial \"functions/get_hook\" (dict \"hook\" \"head-start\" \"context\" .) }}\n\n  {{ if .Params.private }}\n    <meta name=\"robots\" content=\"noindex\" />\n  {{- end -}}\n\n{{/* Attempt to load superuser/person from data. */}}\n{{ $superuser_name := \"\" }}\n{{ $superuser_slug := \"\" }}\n{{ $superuser_role := \"\" }}\n\n{{/* Prefer is_owner flag, fallback to slug 'me' */}}\n{{ $authors := partialCached \"functions/get_authors_data\" . site.Language.Lang }}\n{{ range $slug, $data := $authors }}\n  {{ if and (not $superuser_slug) ($data.is_owner) }}\n    {{ $superuser_slug = $slug }}\n  {{ end }}\n{{ end }}\n{{ if and (eq $superuser_slug \"\") (index $authors \"me\") }}\n  {{ $superuser_slug = \"me\" }}\n{{ end }}\n\n{{ if $superuser_slug }}\n  {{ $profile := partial \"functions/get_author_profile\" (dict \"slug\" $superuser_slug) }}\n  {{ $superuser_name = $profile.title }}\n  {{ $superuser_role = $profile.role }}\n{{ end }}\n\n{{ $scr.Set \"superuser_slug\" $superuser_slug }}{{/* Set superuser globally for author rendering. */}}\n\n{{ with $superuser_name }}<meta name=\"author\" content=\"{{ . }}\" />{{ end }}\n\n  {{/* Generate page description. */}}\n  {{ $desc := \"\" }}\n  {{ $desc = partial \"functions/get_summary\" . }}\n  {{ if site.Params.hugoblox.identity.description | and (not $desc) }}\n    {{ $desc = site.Params.hugoblox.identity.description }}\n  {{ end }}\n  {{ if not $desc }}\n    {{ $desc = $superuser_role }}\n  {{ end }}\n  <meta name=\"description\" content=\"{{ $desc | plainify }}\" />\n\n  {{ range .Translations }}\n    <link rel=\"alternate\" hreflang=\"{{ .Lang }}\" href=\"{{ .Permalink }}\" />\n  {{ end }}\n  <link rel=\"alternate\" hreflang=\"{{ site.LanguageCode | default \"en-us\" }}\" href=\"{{ .Permalink }}\" />\n\n  {{/* Hugo Blox Theme Engine Initialization */}}\n  {{/* Uses get_theme_config helper for backward-compatible config resolution */}}\n  {{ $theme_config := partialCached \"functions/get_theme_config\" . \"theme_config\" }}\n  {{ partial \"functions/theme_generator.html\" $theme_config }}\n\n  {{/* Demo Theme Pack Styles (if enabled) */}}\n  {{ if site.Params.hugoblox.header.theme_picker }}\n    {{ partial \"functions/demo_theme_styles.html\" (dict \"typography\" $theme_config.typography \"layout\" $theme_config.layout) }}\n  {{ end }}\n\n  {{/* Tailwind CSS v4 Processing */}}\n  {{/* Use templates.Defer to process CSS after all content is analyzed */}}\n  {{ with (templates.Defer (dict \"key\" \"tailwind-css\")) }}\n    {{ partial \"css.html\" . }}\n  {{ end }}\n\n  {{/* Load community blox styles */}}\n  {{ $hb_community_styles := resources.Match \"dist/community/blox/**.css\" }}\n  {{ with $hb_community_styles }}\n    {{ $hb_community_styles = $hb_community_styles | resources.Concat \"css/community-hugo-blox.css\" }}\n    {{- if hugo.IsProduction -}}\n      {{- $hb_community_styles = $hb_community_styles | minify | fingerprint \"sha256\" -}}\n    {{- end -}}\n    <link href=\"{{ $hb_community_styles.RelPermalink }}\" rel=\"stylesheet\" />\n  {{ end }}\n\n  {{ if fileExists \"assets/css/custom.css\" }}\n    {{ $styles := resources.Get \"css/custom.css\" | minify | fingerprint \"sha256\" }}\n    <link href=\"{{ $styles.RelPermalink }}\" rel=\"stylesheet\" />\n  {{ end }}\n\n  {{/* Externalized init scripts for CSP-friendly head */}}\n  {{- $hb_head := resources.Get \"js/hb-head.js\" | js.Build | resources.Minify -}}\n  {{- if hugo.IsProduction -}}\n    {{- $hb_head = $hb_head | fingerprint \"sha256\" -}}\n  {{- end -}}\n  <script src=\"{{ $hb_head.RelPermalink }}\"{{ if hugo.IsProduction }} integrity=\"{{ $hb_head.Data.Integrity }}\" crossorigin=\"anonymous\"{{ end }}></script>\n\n  {{/* Analytics & Verification */}}\n  {{/* !CACHED! All analytics and verification code is at site level */}}\n  {{ partialCached \"blox-analytics/index\" . }}\n\n  {{/* RSS Feed */}}\n  {{ $branding := partialCached \"functions/get_branding\" . \"branding\" }}\n  {{ with .OutputFormats.Get \"RSS\" }}\n    <link rel=\"alternate\" href=\"{{ .RelPermalink }}\" type=\"application/rss+xml\" title=\"{{ $branding.site_title }}\" />\n  {{ end }}\n\n  {{/* Progressive Web App (PWA) Icon - SVG preferred */}}\n  {{ $icon := partial \"functions/get_site_icon\" 32 }}\n  {{ with $icon.resource }}\n    <link rel=\"icon\" type=\"{{ $icon.type }}\" href=\"{{ .RelPermalink }}\" />\n  {{ end }}\n  {{/* Apple Touch Icon - requires PNG */}}\n  {{ $icon_apple := partial \"functions/get_site_icon\" 180 }}\n  {{ if not $icon_apple.is_svg }}\n    {{ with $icon_apple.resource }}\n      <link rel=\"apple-touch-icon\" type=\"image/png\" href=\"{{ .RelPermalink }}\" />\n    {{ end }}\n  {{ else }}\n    {{/* SVG icon - need PNG fallback for Apple */}}\n    {{ $icon_png := resources.Get \"media/icon.png\" }}\n    {{ with $icon_png }}\n      {{ $apple_icon := .Fill \"180x180 Center\" }}\n      <link rel=\"apple-touch-icon\" type=\"image/png\" href=\"{{ $apple_icon.RelPermalink }}\" />\n    {{ end }}\n  {{ end }}\n\n  <link rel=\"canonical\" href=\"{{ .Permalink }}\" />\n\n  {{/* Get page image for sharing. */}}\n  {{ $sharing_image := resources.GetMatch (path.Join \"media\" \"sharing.*\") }}\n  {{ $featured_image := (.Resources.ByType \"image\").GetMatch \"*featured*\" }}\n{{ $avatar_image := (.Resources.ByType \"image\").GetMatch \"avatar*\" }}\n  {{ $has_logo := fileExists \"assets/media/logo.png\" | or (fileExists \"assets/media/logo.svg\") }}\n  {{ $og_image := \"\" }}\n  {{ $twitter_card := \"summary_large_image\" }}\n{{ if and (eq .Kind \"term\") (eq .Data.Singular \"author\") }}\n  {{/* Try data-driven avatar for author term pages */}}\n  {{ $termSlug := .Data.Term | urlize }}\n  {{ $profile := partial \"functions/get_author_profile\" (dict \"slug\" $termSlug) }}\n  {{ with $profile.avatar }}\n    {{ $og_image = (.Fill \"540x540 Center\").Permalink }}\n    {{ $twitter_card = \"summary\" }}\n  {{ end }}\n{{ else if (and (eq .Kind \"term\") $avatar_image) }}\n  {{ $og_image = ($avatar_image.Fill \"540x540 Center\").Permalink }}\n  {{ $twitter_card = \"summary\" }}\n{{ else if $featured_image }}\n    {{ $og_image = $featured_image.Permalink }}\n  {{ else if $sharing_image }}\n    {{ $og_image = $sharing_image.Permalink }}\n  {{ else if $has_logo }}\n    {{/* !CACHED! Can safely cache this site logo variant */}}\n    {{ $logo_data := partialCached \"functions/get_logo\" (dict \"constraint\" \"fit\" \"size\" 300) \"logo_og\" }}\n    {{ with $logo_data.resource }}\n      {{ $og_image = .Permalink }}\n    {{ end }}\n    {{ $twitter_card = \"summary\" }}\n  {{ else }}\n    {{ $icon_og := partial \"functions/get_site_icon\" 512 }}\n    {{ with $icon_og.resource }}\n      {{ $og_image = .Permalink }}\n    {{ end }}\n    {{ $twitter_card = \"summary\" }}\n  {{ end }}\n  {{ $scr.Set \"og_image\" $og_image }}{{/* Set `og_image` globally for `rss.xml`. */}}\n\n  {{ $title := \"\" }}\n  {{ with .Params.seo.title }}\n    {{ $title = replace . \"{brand}\" $branding.site_title }}\n  {{ else }}\n    {{ $title = .Title | default $branding.site_title }}\n    {{ if ne $title $branding.site_title }}{{ $title = printf \"%s | %s\" $title $branding.site_title }}{{ end }}\n  {{ end }}\n  <meta property=\"twitter:card\" content=\"{{ $twitter_card }}\" />\n  {{ with site.Params.hugoblox.identity.social.twitter }}\n    <meta property=\"twitter:site\" content=\"@{{ . }}\" />\n    <meta property=\"twitter:creator\" content=\"@{{ . }}\" />\n  {{ end }}\n  <meta property=\"og:site_name\" content=\"{{ $branding.site_title }}\" />\n  <meta property=\"og:url\" content=\"{{ .Permalink }}\" />\n  <meta property=\"og:title\" content=\"{{ $title }}\" />\n  <meta property=\"og:description\" content=\"{{ $desc }}\" />\n  {{- with $og_image -}}\n    <meta property=\"og:image\" content=\"{{ . }}\" />\n    <meta property=\"twitter:image\" content=\"{{ . }}\" />\n  {{- end -}}\n  <meta property=\"og:locale\" content=\"{{ site.LanguageCode | default \"en-us\" }}\" />\n  {{ if .IsPage }}\n    {{ if not .PublishDate.IsZero }}\n      <meta\n        property=\"article:published_time\"\n        content=\"{{ .PublishDate.Format \"2006-01-02T15:04:05-07:00\" | safeHTML }}\"\n      />\n    {{ else if not .Date.IsZero }}\n      <meta property=\"article:published_time\" content=\"{{ .Date.Format \"2006-01-02T15:04:05-07:00\" | safeHTML }}\" />\n    {{ end }}\n    {{ if not .Lastmod.IsZero }}<meta property=\"article:modified_time\" content=\"{{ .Lastmod.Format \"2006-01-02T15:04:05-07:00\" | safeHTML }}\">{{ end }}\n  {{ else }}\n    {{ if not .Date.IsZero }}\n      <meta property=\"og:updated_time\" content=\"{{ .Date.Format \"2006-01-02T15:04:05-07:00\" | safeHTML }}\" />\n    {{ end }}\n  {{ end }}\n\n  {{ partial \"jsonld/main\" (dict \"page\" . \"summary\" $desc) }}\n\n  <title>{{$title}}</title>\n\n  {{/* Typography: font loading, font families, and sizes */}}\n  {{ partial \"functions/typography.html\" $theme_config }}\n  {{/* Layout tokens: radius and spacing */}}\n  {{ partial \"functions/layout_tokens.html\" $theme_config }}\n\n  {{ if .Params.design.background.image.filename }}\n    {{/* See Hugo note on linking assets in styles: https://github.com/gohugoio/hugoThemes#common-permalink-issues */}}\n    {{ $bg_img := resources.Get (printf \"media/%s\" .Params.design.background.image.filename) }}\n    {{ if $bg_img }}\n      {{/* Exception for SVG as Hugo doesn't yet support image processing on SVG. */}}\n      {{ if ne $bg_img.MediaType.SubType \"svg\" }}\n        {{ $bg_img = $bg_img.Fit \"1920x1920 webp\" }}\n      {{ end }}\n      <style>\n        #page-bg {\n         background-image: url('{{$bg_img.Permalink}}');\n         background-position: center;\n         background-size: cover;\n        }\n      </style>\n      {{ else }}\n        {{ errorf \"Couldn't find page background `%s` in the `assets/media/` folder - please add it.\" .Params.design.background.image.filename }}\n      {{ end }}\n  {{ end }}\n\n  {{/* Init prior to auto-chunking/bundling scripts due to Hugo concurrency issues */}}\n  {{/* !CACHED! Initialized once at site level and then cached for each page */}}\n  {{- partialCached \"init.html\" . \"hb_init_once\" -}}\n\n  {{ $js_license := printf \"/*! Hugo Blox Kit Tailwind UI v%s | https://hugoblox.com/ */\\n\" site.Data.hugoblox.version }}\n  {{ $js_license := $js_license | printf \"%s/*! Copyright 2016-present George Cushen (https://georgecushen.com/) */\\n\" }}\n  {{ $js_license := $js_license | printf \"%s/*! License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */\\n\" }}\n  {{ $js_bundle_head := $js_license | resources.FromString \"js/bundle-head.js\" }}\n  {{ $i18n := dict \"copy\" (i18n \"btn_copy\") \"copied\" (i18n \"btn_copied\" | default \"Copied\") }}\n  {{ $js_params := dict \"hugoEnvironment\" hugo.Environment \"i18n\" $i18n }}\n  {{ $js_hugoblox := resources.Get \"js/hb-code-copy.js\" | js.Build (dict \"targetPath\" (printf \"js/hugoblox-core-%s.js\" .Lang ) \"params\" $js_params) }}\n  {{ $js_hugoblox := $js_hugoblox | resources.Minify }}\n  {{- $js_theme := resources.Get \"js/hb-theme.js\" | resources.Minify -}}\n  {{- $js_lang := resources.Get \"js/hb-i18n.js\" | resources.Minify -}}\n  {{- $js_nav := resources.Get \"js/hb-nav.js\" | resources.Minify -}}\n  {{- $js_sidebar := resources.Get \"js/hb-sidebar.js\" | resources.Minify -}}\n  {{- $js_notifier := resources.Get \"js/hb-notifier.js\" | js.Build (dict \"targetPath\" (printf \"js/hb-notifier-%s.js\" .Lang ) \"params\" $js_params) | resources.Minify -}}\n  {{- $js_clipboard := resources.Get \"js/hb-clipboard.js\" | js.Build (dict \"targetPath\" (printf \"js/hb-clipboard-%s.js\" .Lang ) \"params\" $js_params) | resources.Minify -}}\n  {{- $js_citation := resources.Get \"js/hb-citation.js\" | js.Build (dict \"targetPath\" (printf \"js/hb-citation-%s.js\" .Lang ) \"params\" $js_params) | resources.Minify -}}\n  \n  {{/* Start with the core scripts */}}\n  {{ $js_bundle_contents := slice $js_bundle_head $js_hugoblox $js_theme $js_lang $js_nav $js_sidebar $js_notifier $js_clipboard $js_citation }}\n\n  {{/* Discover and include block-specific JavaScript */}}\n  {{- with partial \"functions/get-block-scripts.html\" . -}}\n    {{ $js_bundle_contents = $js_bundle_contents | append . }}\n  {{- end -}}\n  \n  {{ $js_bundle := $js_bundle_contents | resources.Concat (printf \"js/hugo-blox-%s.min.js\" .Lang) }}\n  {{- if hugo.IsProduction -}}\n    {{ $js_bundle = $js_bundle | fingerprint \"sha256\" }}\n  {{- end -}}\n  <script\n    defer\n    src=\"{{ $js_bundle.RelPermalink }}\"\n    integrity=\"{{ $js_bundle.Data.Integrity }}\"\n  ></script>\n\n  {{/* Load Third-Party Libraries */}}\n  {{ partial \"libraries.html\" . }}\n\n  {{/* EXTENSIBILITY HOOK: HEAD-END */}}\n  {{ partial \"functions/get_hook\" (dict \"hook\" \"head-end\" \"context\" .) }}\n</head>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/social_links.html",
    "content": "{{ if .Params.profiles }}\n<div class=\"flex flex-wrap text-neutral-500 dark:text-neutral-300\">\n  {{ range $links := .Params.profiles }}\n    {{ $link := .url }}\n    {{ $scheme := (urls.Parse $link).Scheme }}\n    {{ $target := \"\" }}\n    {{ if not $scheme }}\n      {{ $link = .url | relLangURL }}\n    {{ else if in (slice \"http\" \"https\") $scheme }}\n      {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\" rel=\\\"me noopener noreferrer\\\"\" }}\n    {{ end }}\n    <a\n      class=\"pr-4 transition-transform hover:scale-125 hover:text-primary-700 dark:hover:text-primary-400\"\n      style=\"will-change:transform;\"\n      href=\"{{ $link | safeURL }}\"\n      {{ $target | safeHTMLAttr }}\n      aria-label=\"{{ .icon | title }}\"\n    >{{ partial \"functions/get_icon\" (dict \"name\" .icon \"attributes\" \"style=\\\"height: 1em;\\\"\") }}</a>\n  {{ end }}\n</div>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/tags.html",
    "content": "{{ if .Params.tags }}\n<div class=\"flex justify-center\">\n  {{ range $index, $value := (.GetTerms \"tags\") }}\n  <a class=\"no-underline bg-primary-100 hover:bg-primary-300 text-primary-800 text-xs font-medium mr-2 px-2.5 py-0.5 lg:px-5 lg:py-2 rounded dark:bg-primary-900 dark:hover:bg-primary-700 dark:text-primary-300\" href=\"{{ .RelPermalink }}\">{{ .LinkTitle }}</a>\n  {{ end }}\n</div>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/tailwind_sources.html",
    "content": "{{/* Hugo Blox: Dynamic Tailwind @source generation for Hugo modules */}}\n{{/* Documentation: https://hugoblox.com/docs/ */}}\n{{/* License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md */}}\n\n{{/*\nThis partial generates Tailwind CSS @source directives that tell Tailwind where to scan for CSS classes.\n\nIt provides a robust bridge between Hugo's virtual filesystem (which includes module mounts)\nand Tailwind's real filesystem scanner.\n*/}}\n{{ $paths := slice }}\n\n{{/* 1. Always scan the site's source files. */}}\n{{ $paths = $paths | append `content/**/*.md` }}\n{{ $paths = $paths | append `layouts/**/*.html` }}\n{{ $paths = $paths | append `assets/js/**/*.js` }}\n{{ $paths = $paths | append `assets/js/**/*.jsx` }}\n{{ $paths = $paths | append `assets/js/**/*.tsx` }}\n{{ $paths = $paths | append `hugo_stats.json` }}\n\n{{/*\n2.  Crucially, scan Hugo's generated JS output from Preact components.\n    These files are built by Hugo's `js.Build` into a predictable location within the\n    project's `assets` directory, making them a reliable source for Tailwind to scan.\n    This step happens before Tailwind runs, thanks to `templates.Defer` in `site_head.html`.\n*/}}\n{{ $paths = $paths | append `assets/js/preact-built/**/*.js` }}\n\n{{/*\n3. Comprehensive class extraction from Preact JSX/TSX source files.\n\n   Hugo's virtual filesystem mounts block JSX/TSX into assets/js/hbx/blocks/.\n   Tailwind's @source file paths only work on the real filesystem, but these\n   files exist only in Hugo's virtual FS (or in a module cache for remote modules).\n   So we read the file content via resources.Match and extract class candidates inline.\n\n   Strategy: Extract ALL string literal content — not just class= attributes.\n   This catches classes in any pattern:\n     - Static attrs:     class=\"gap-8 items-center\"\n     - JSX expressions:  class={\"gap-8 items-center\"}\n     - Template literals: class={`gap-8 ${cond ? \"md:grid\" : \"\"}`}\n     - Utility fns:      cn(\"gap-8\", condition && \"md:grid-cols-2\")\n\n   Tailwind's scanner automatically ignores non-class tokens (import paths,\n   error messages, etc.), so false positives are harmless.\n*/}}\n{{ $all_jsx := resources.Match \"js/hbx/**/*.jsx\" }}\n{{ $all_tsx := resources.Match \"js/hbx/**/*.tsx\" }}\n\n{{ $extracted_classes := slice }}\n{{ range $f := $all_jsx | append $all_tsx }}\n  {{ $code := $f.Content }}\n\n  {{/* A) Extract content of all double-quoted strings */}}\n  {{ $dq_matches := findRE `\"[^\"]*\"` $code }}\n  {{ range $m := $dq_matches }}\n    {{ $str := strings.TrimPrefix `\"` (strings.TrimSuffix `\"` $m) }}\n    {{ range split $str \" \" }}\n      {{ $t := strings.TrimSpace . }}\n      {{/* Filter out tokens with unsafe characters (braces, quotes, parens) */}}\n      {{ if and $t (not (findRE `[\\{\\}\\(\\)\"';]` $t)) }}\n        {{ $extracted_classes = $extracted_classes | append $t }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n\n  {{/* B) Extract static parts of template literals (backtick strings) */}}\n  {{/* Removes ${...} interpolations, keeping surrounding text */}}\n  {{ $bt_matches := findRE \"`[^`]*`\" $code }}\n  {{ range $m := $bt_matches }}\n    {{ $str := strings.TrimPrefix \"`\" (strings.TrimSuffix \"`\" $m) }}\n    {{ $static := replaceRE `\\$\\{[^}]*\\}` \" \" $str }}\n    {{ range split $static \" \" }}\n      {{ $t := strings.TrimSpace . }}\n      {{/* Filter out tokens with unsafe characters (braces, quotes, parens) */}}\n      {{ if and $t (not (findRE `[\\{\\}\\(\\)\"';]` $t)) }}\n        {{ $extracted_classes = $extracted_classes | append $t }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{ $extracted_classes = $extracted_classes | uniq }}\n{{ range $class := $extracted_classes }}\n@source inline(\"{{ $class }}\");\n{{ end }}\n\n{{/* Generate the @source rules */}}\n{{ range $paths }}\n@source \"{{ . }}\";\n{{ end }}"
  },
  {
    "path": "modules/blox/layouts/_partials/views/article-grid--end.html",
    "content": "  </div>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/article-grid--start.html",
    "content": "{{ $columns := .config.columns | default 2 }}\n{{ $len := .config.len | default 2 }}\n{{/* NOTE: dynamic `md:grid-cols-{{$columns}}` class requires Tailwind exception */}}\n<div class=\"container px-8 mx-auto xl:px-5 py-5 lg:py-8 {{ if eq $len 1 }}max-w-[500px] justify-center{{else}}max-w-screen-lg {{end}}\">\n  <div class=\"grid gap-10 md:grid-cols-{{$columns}} lg:gap-10\">\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/article-grid.html",
    "content": "{{- partial \"views/card.html\" . -}}\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/card--end.html",
    "content": "</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/card--start.html",
    "content": "<div class=\"container max-w-[65ch] mx-auto grid grid-cols-1 gap-6 my-5\">\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/card.html",
    "content": "{{ $item := .item }}\n\n{{ $link := $item.RelPermalink }}\n{{ $target := \"\" }}\n{{ if $item.Params.external_link }}\n  {{ $link = $item.Params.external_link }}\n  {{ $target = \"target=\\\"_blank\\\" rel=\\\"noopener\\\"\" }}\n{{ end }}\n\n{{ $resource := partial \"functions/get_featured_image.html\" $item }}\n{{ $anchor := \"Center\" }}\n{{ if and $item.Params.image (reflect.IsMap $item.Params.image) }}\n  {{ $anchor = $item.Params.image.focal_point | default \"Center\" }}\n{{ end }}\n{{ $fill_image := .config.fill_image | default true }}\n{{ $showDate := .config.show_date | default true }}\n{{ $showReadTime := .config.show_read_time | default true }}\n{{ $showReadMore := .config.show_read_more | default true }}\n{{ $hasMeta := or $showDate $showReadTime $showReadMore }}\n{{ $index := .index }}\n{{ $isEvent := eq $item.Type \"events\" }}\n{{ $event_dates := \"\" }}\n{{ if $isEvent }}\n{{ $event_dates = partial \"functions/get_event_dates\" $item }}\n{{ end }}\n\n<div class=\"group bg-white/90 dark:bg-zinc-900/90 backdrop-blur-sm rounded-2xl ring-1 ring-zinc-900/5 dark:ring-white/10 shadow-lg overflow-hidden transition-all duration-300 ease-out hover:shadow-xl hover:shadow-primary-500/10 hover:-translate-y-2 focus-within:ring-2 focus-within:ring-primary-500/50\" role=\"article\" aria-labelledby=\"card-title-{{ $item.File.UniqueID }}\">\n    <!-- Image Section -->\n    <div class=\"relative overflow-hidden aspect-[16/9] bg-gradient-to-br from-zinc-100 to-zinc-200 dark:from-zinc-800 dark:to-zinc-900\">\n      {{ with $item.Params.content_meta }}\n        {{ if .trending }}\n          <div class=\"absolute top-3 right-3 z-10 inline-flex items-center gap-1 px-2.5 py-1 rounded-full text-[11px] font-semibold bg-black/55 backdrop-blur-sm text-white shadow-sm\">\n            <span>{{ i18n \"trending\" | default \"Trending\" }}</span>\n            <span aria-hidden=\"true\">🔥</span>\n          </div>\n        {{ end }}\n      {{ end }}\n      {{ with $resource }}\n        {{ if strings.Contains .MediaType.SubType \"svg\" }}\n          <a href=\"{{ $link }}\" {{ $target | safeHTMLAttr }} class=\"block\">\n            <img class=\"w-full h-full transition-transform duration-500 ease-out group-hover:scale-105 {{ if $fill_image }}object-fill{{ else }}object-contain{{ end }}\" \n                 src=\"{{ .RelPermalink }}\"\n                 loading=\"lazy\" \n                 decoding=\"async\"\n                 {{ if eq $index 0 }}fetchpriority=\"high\"{{ end }}\n                 style=\"position: absolute; height: 100%; width: 100%; inset: 0px; color: transparent;\"\n                 alt=\"{{ $item.Title | plainify }} featured image\">\n          </a>\n        {{ else if ne .MediaType.SubType \"gif\" }}\n          {{ $original_image := \"\" }}\n          {{ if $fill_image }}\n            {{ $original_image = .Fill (printf \"800x450 %s\" $anchor) }}\n          {{ else }}\n            {{ $original_image = .Fit (printf \"800x450 %s\" $anchor) }}\n          {{ end }}\n          {{ $responsive := partial \"functions/process_responsive_image.html\" (dict \n              \"image\" $original_image \n              \"mode\" \"responsive\"\n              \"sizes\" (slice 400 600 800)\n              \"formats\" (slice \"avif\" \"webp\" \"jpg\")\n          ) }}\n          <a href=\"{{ $link }}\" {{ $target | safeHTMLAttr }} class=\"block\">\n            <img class=\"w-full h-full transition-transform duration-500 ease-out group-hover:scale-105 {{ if $fill_image }}object-fill{{ else }}object-contain{{ end }}\" \n                 srcset=\"{{ $responsive.srcset }}\"\n                 sizes=\"(max-width: 768px) 100vw, (max-width: 1200px) 50vw, 33vw\"\n                 src=\"{{ $responsive.fallback.RelPermalink }}\" \n                 width=\"{{ $original_image.Width }}\" \n                 height=\"{{ $original_image.Height }}\"\n                 loading=\"lazy\" \n                 decoding=\"async\"\n                 {{ if eq $index 0 }}fetchpriority=\"high\"{{ end }}\n                 style=\"position: absolute; height: 100%; width: 100%; inset: 0px; color: transparent;\"\n                 alt=\"{{ $item.Title | plainify }} featured image\">\n          </a>\n        {{ else }}\n          <a href=\"{{ $link }}\" {{ $target | safeHTMLAttr }} class=\"block\">\n            <img class=\"w-full h-full transition-transform duration-500 ease-out group-hover:scale-105 {{ if $fill_image }}object-fill{{ else }}object-contain{{ end }}\"\n                 src=\"{{ .RelPermalink }}\"\n                 width=\"{{ .Width }}\"\n                 height=\"{{ .Height }}\"\n                 loading=\"lazy\"\n                 decoding=\"async\"\n                 style=\"position: absolute; height: 100%; width: 100%; inset: 0px; color: transparent;\"\n                 alt=\"{{ $item.Title | plainify }} featured image\">\n          </a>\n        {{ end }}\n      {{ else }}\n        <!-- Fallback gradient using theme colors - make clickable for consistency -->\n        <a href=\"{{ $link }}\" {{ $target | safeHTMLAttr }} class=\"block w-full h-full\">\n          <div class=\"w-full h-full bg-gradient-to-br from-primary-600/40 via-secondary-600/30 to-primary-800/50 flex items-center justify-center transition-all duration-300 group-hover:from-primary-500/50 group-hover:via-secondary-500/40 group-hover:to-primary-700/60\">\n            <div class=\"w-16 h-16 rounded-full bg-white/20 backdrop-blur-sm flex items-center justify-center group-hover:scale-110 transition-transform duration-300\">\n              <svg class=\"w-8 h-8 text-white/40\" fill=\"currentColor\" viewBox=\"0 0 20 20\">\n                <path fill-rule=\"evenodd\" d=\"M4 3a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V5a2 2 0 00-2-2H4zm12 12H4l4-8 3 6 2-4 3 6z\" clip-rule=\"evenodd\"/>\n              </svg>\n            </div>\n          </div>\n        </a>\n      {{end}}\n      \n      <!-- Subtle overlay for better text contrast (allow clicks to pass through) -->\n      <div class=\"absolute inset-0 pointer-events-none bg-gradient-to-t from-black/10 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300\"></div>\n    </div>\n\n    <!-- Content Section -->\n    <div class=\"p-8 space-y-4\">\n      {{ with $item.Params.content_meta }}\n        {{ if or .content_type .difficulty }}\n        <div class=\"flex items-center gap-x-4\">\n          {{ with .content_type }}\n          <span class=\"inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-primary-100 text-primary-800 dark:bg-primary-900/40 dark:text-primary-300\">\n            {{ . }}\n          </span>\n          {{ end }}\n          {{ with .difficulty }}\n          <span class=\"text-sm font-medium text-zinc-600 dark:text-zinc-400\">{{ i18n \"difficulty\" }}: {{ . }}</span>\n          {{ end }}\n        </div>\n        {{ end }}\n      {{ end }}\n\n      {{ if and $item.Params.tags (gt (len $item.Params.tags) 0) }}\n      <div class=\"flex items-center gap-2\">\n        {{ with index ($item.GetTerms \"tags\") 0 }}\n        <a href=\"{{ .RelPermalink }}\">\n          <span class=\"inline-flex items-center px-3 py-1 rounded-full text-xs font-semibold bg-primary-100 text-primary-800 dark:bg-primary-900/40 dark:text-primary-300\">\n            {{ .Page.LinkTitle }}\n          </span>\n        </a>\n        {{ end }}\n      </div>\n      {{ end }}\n\n      <h3 id=\"card-title-{{ $item.File.UniqueID }}\" class=\"text-xl font-bold tracking-tight text-zinc-900 dark:text-zinc-100 group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors duration-200 leading-tight\">\n        <a href=\"{{ $link }}\" {{ $target | safeHTMLAttr }} class=\"hover:underline\">\n          {{ $item.Title }}\n          {{ if $item.Params.external_link }}\n            {{ partial \"functions/get_icon\" (dict \"name\" \"arrow-top-right-on-square\" \"attributes\" \"style=\\\"height: 1em;\\\" class=\\\"inline-flex h-4 w-4 ml-1 align-text-top\\\"\") }}\n          {{ end }}\n        </a>\n      </h3>\n      \n      <p class=\"text-zinc-600 dark:text-zinc-400 text-base leading-relaxed line-clamp-3\">\n        {{ (partial \"functions/get_summary\" $item) | plainify | htmlUnescape | truncate 180 }}\n      </p>\n\n      {{ with $item.Params.content_meta.prerequisites }}\n        {{ $max := 2 }}\n        {{ $count := len . }}\n        <div class=\"flex items-center gap-2 pt-1 text-sm text-zinc-600 dark:text-zinc-400\">\n          <span class=\"opacity-80\">{{ i18n \"prerequisites\" }}:</span>\n          {{ range (first $max .) }}\n            <span class=\"inline-flex items-center px-2 py-0.5 rounded-md text-[11px] font-medium bg-zinc-100 text-zinc-800 dark:bg-zinc-800 dark:text-zinc-300\">{{ . }}</span>\n          {{ end }}\n          {{ if gt $count $max }}\n            <span class=\"text-[11px] opacity-70\">+{{ sub $count $max }}</span>\n          {{ end }}\n        </div>\n      {{ end }}\n\n      <!-- Metadata section -->\n      {{ if $hasMeta }}\n      <div class=\"pt-3 border-t border-zinc-100 dark:border-zinc-800\">\n        <div class=\"flex items-center gap-3 text-xs text-zinc-500 dark:text-zinc-500 flex-wrap mb-3\">\n          {{ if $item.Params.authors }}\n          <div class=\"flex items-center gap-2 min-w-0\">\n            {{ $slug := index $item.Params.authors 0 | urlize }}\n            {{ $profile := partial \"functions/get_author_profile\" $slug }}\n            {{ $avatar := $profile.avatar }}\n            <div class=\"relative h-6 w-6 flex-shrink-0\">\n              {{ if $avatar }}\n                {{ $avatar_48 := $avatar.Process \"Fill 48x48 Center webp\" }}\n                <img alt=\"avatar\" class=\"rounded-full object-cover\" src=\"{{$avatar_48.RelPermalink}}\" width=\"24\" height=\"24\" loading=\"lazy\" decoding=\"async\" />\n              {{ else }}\n                <div class=\"w-6 h-6 bg-gray-100 dark:bg-gray-700 rounded-full flex items-center justify-center\">\n                  {{ partial \"functions/get_icon\" (dict \"name\" \"hero/user\" \"attributes\" \"class=\\\"w-4 h-4 text-gray-500 dark:text-gray-400\\\"\") }}\n                </div>\n              {{ end }}\n            </div>\n            <span class=\"truncate max-w-[9rem] text-sm\">{{ $profile.title }}</span>\n          </div>\n          <span class=\"opacity-40\">•</span>\n          {{ end }}\n          {{ if $showDate }}\n            {{ if $isEvent }}\n            <span class=\"hidden sm:inline whitespace-nowrap\">{{ $event_dates }}</span>\n            {{ else }}\n            <time class=\"hidden sm:inline whitespace-nowrap\" datetime=\"{{ $item.Date.Format \"2006-01-02\" }}\">\n              {{ $item.Date | time.Format (site.Params.hugoblox.locale.date_format | default \"Jan 2, 2006\") }}\n            </time>\n            {{ end }}\n          {{ end }}\n          {{ if and $showDate $showReadTime }}\n            <span class=\"hidden sm:inline opacity-40\">•</span>\n          {{ end }}\n          {{ if $showReadTime }}\n            {{ $content := $item.Content | plainify }}\n            {{ $words := len (split $content \" \") }}\n            {{ $readTime := div $words 200 }}\n            {{ if lt $readTime 1 }}{{ $readTime = 1 }}{{ end }}\n            <span class=\"hidden sm:inline whitespace-nowrap\">{{ $readTime }} {{ i18n \"minute_read\" }}</span>\n          {{ end }}\n        </div>\n        \n        <!-- Read More with arrow - properly separated -->\n        {{ if $showReadMore }}\n        <div class=\"pt-2 border-t border-zinc-200/50 dark:border-zinc-700/50\">\n          <a href=\"{{ $link }}\" {{ $target | safeHTMLAttr }} class=\"inline-flex items-center gap-2 text-primary-600 dark:text-primary-400 hover:text-primary-700 dark:hover:text-primary-300 font-medium text-sm transition-all duration-300 group/link\">\n            <span>{{ i18n \"read_more\" | default \"Read more\" }}</span>\n            <svg class=\"w-4 h-4 transition-transform group-hover/link:translate-x-1\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\" aria-hidden=\"true\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17 8l4 4m0 0l-4 4m4-4H3\"/>\n            </svg>\n          </a>\n        </div>\n        {{ end }}\n      </div>\n      {{ end }}\n      \n      <!-- Optional AI metadata -->\n      {{ if $item.Params.ai_insights }}\n        <div class=\"flex items-center gap-2 pt-2 text-xs text-primary-600 dark:text-primary-400 bg-primary-50 dark:bg-primary-950/30 rounded-lg px-3 py-2\">\n          <svg class=\"w-4 h-4 flex-shrink-0\" fill=\"currentColor\" viewBox=\"0 0 20 20\">\n            <path d=\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\"/>\n          </svg>\n          <span class=\"font-medium\">{{ i18n \"ai_insight\" }}:</span>\n          <span class=\"text-zinc-600 dark:text-zinc-400\">{{ $item.Params.ai_insights }}</span>\n        </div>\n      {{ end }}\n    </div>\n</div>"
  },
  {
    "path": "modules/blox/layouts/_partials/views/citation--end.html",
    "content": "</div>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/citation--start.html",
    "content": "{{/* Left alignment / width is set so that multiple blocks with this view & variable length content all left align. */}}\n<div class=\"mt-16 sm:mt-20 container max-w-3xl w-full\">\n  <div class=\"flex flex-col space-y-3\">\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/citation.html",
    "content": "{{ $item := .item }}\n{{ $year_value := $item.Params.event_start | default $item.Date }}\n{{ $year := (time $year_value).Format \"2006\" }}\n{{ $has_attachments := partial \"functions/has_attachments\" $item }}\n\n<div class=\"pub-list-item view-citation\" style=\"margin-bottom: 1rem\">\n  <i class=\"far fa-file-alt pub-icon\" aria-hidden=\"true\"></i>\n\n  {{/* APA Style */}}\n  {{ if eq (site.Params.hugoblox.content.citations.style | default \"apa\") \"apa\" }}\n\n  <span class=\"article-metadata li-cite-author\">\n    {{ partial \"page_metadata_authors\" $item }}\n  </span>\n  ({{- $year -}}).\n  <a href=\"{{ $item.RelPermalink }}\" class=\"underline\">{{ $item.Title }}</a>.\n  {{ if $item.Params.publication_short }}\n    {{- $item.Params.publication_short | markdownify -}}.\n  {{ else if $item.Params.publication }}\n    {{- $item.Params.publication | markdownify -}}.\n  {{ end }}\n\n  {{ if $has_attachments }}\n  <div class=\"flex flex-wrap space-x-3\">\n    {{ partial \"page_links\" (dict \"page\" $item \"is_list\" 1) }}\n  </div>\n  {{ end }}\n\n  {{/* MLA Style */}}\n  {{ else }}\n\n  <span class=\"article-metadata li-cite-author\">\n    {{ partial \"page_metadata_authors\" $item }}.\n  </span>\n  <a href=\"{{ $item.RelPermalink }}\">{{ $item.Title }}</a>.\n  {{ if $item.Params.publication_short }}\n    {{- $item.Params.publication_short | markdownify -}},\n  {{ else if $item.Params.publication }}\n    {{- $item.Params.publication | markdownify -}},\n  {{ end }}\n  {{- $year -}}.\n\n  {{ if $has_attachments }}\n  <div class=\"flex flex-wrap space-x-3\">\n    {{ partial \"page_links\" (dict \"page\" $item \"is_list\" 1) }}\n  </div>\n  {{ end }}\n\n  {{ end }}\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/date-title-summary--end.html",
    "content": "</div>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/date-title-summary--start.html",
    "content": "<div class=\"mt-16 sm:mt-20 w-fit\">\n  <div class=\"flex max-w-3xl flex-col space-y-16\">\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/date-title-summary.html",
    "content": "{{ $item := .item }}\n{{ $page := .page }}\n{{ $summary := partial \"functions/get_summary\" $item }}\n{{ $summary =  $summary | page.RenderString }}\n{{ $displayDate := .item.Params.event_start | default .item.Date }}\n<article class=\"md:grid md:grid-cols-4 md:items-baseline\">\n  <div class=\"md:col-span-3 group relative flex flex-col items-start\">\n    <h2 class=\"text-base font-semibold tracking-tight text-zinc-800 dark:text-zinc-100\">\n      <div\n        class=\"absolute -inset-x-4 -inset-y-6 z-0 scale-95 bg-zinc-50 opacity-0 transition group-hover:scale-100 group-hover:opacity-100 dark:bg-zinc-800/50 sm:-inset-x-6 sm:rounded-2xl\"></div>\n      <a href=\"{{$item.RelPermalink}}\"><span\n        class=\"absolute -inset-x-4 -inset-y-6 z-20 sm:-inset-x-6 sm:rounded-2xl\"></span><span class=\"relative z-10\">{{$item.Title}}</span></a>\n    </h2>\n    <time\n      class=\"md:hidden relative z-10 order-first mb-3 flex items-center text-sm text-zinc-400 dark:text-zinc-500 pl-1\"\n      datetime=\"{{ time.Format \"2006-01-02\" $displayDate }}\">\n      {{ time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") $displayDate }}\n    </time>\n    <p class=\"relative z-10 mt-2 text-sm text-zinc-600 dark:text-zinc-400 line-clamp-3\">{{$summary}}</p>\n    <div aria-hidden=\"true\" class=\"relative z-10 mt-4 flex items-center text-sm font-medium text-primary-500\">\n    {{ T \"read_more\" | default \"Read more\" }}\n      <svg aria-hidden=\"true\" class=\"ml-1 h-4 w-4 stroke-current\" fill=\"none\" viewBox=\"0 0 16 16\">\n        <path d=\"M6.75 5.75 9.25 8l-2.5 2.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\"></path>\n      </svg>\n    </div>\n  </div>\n  <time\n    class=\"mt-1 hidden md:block relative z-10 order-first mb-3 flex items-center text-sm text-zinc-400 dark:text-zinc-500\"\n    datetime=\"{{ time.Format \"2006-01-02\" $displayDate }}\">{{ time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") $displayDate }}\n  </time>\n</article>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/slides-gallery--end.html",
    "content": "  </div>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/slides-gallery--start.html",
    "content": "{{ $columns := .config.columns | default 2 }}\n{{ $len := .config.len | default 1 }}\n{{/* Grid layout optimized for slide deck previews - 16:9 aspect ratio cards */}}\n<div class=\"container px-4 sm:px-6 mx-auto max-w-6xl py-8\">\n  <div class=\"grid gap-6 sm:gap-8 {{ if eq $columns 1 }}max-w-xl mx-auto{{ else if eq $columns 2 }}grid-cols-1 md:grid-cols-2{{ else }}grid-cols-1 md:grid-cols-2 lg:grid-cols-3{{ end }}\">\n"
  },
  {
    "path": "modules/blox/layouts/_partials/views/slides-gallery.html",
    "content": "{{/* Hugo Blox Slides Gallery View - Optimized for slide deck presentations */}}\n{{/* Features: 16:9 aspect ratio, play button overlay, slide count, tags, featured badge */}}\n\n{{ $item := .item }}\n{{ $link := $item.RelPermalink }}\n{{ $html_format := $item.OutputFormats.Get \"HTML\" }}\n{{ if not $html_format }}\n  {{ $html_format = $item.OutputFormats.Get \"html\" }}\n{{ end }}\n{{ with $html_format }}\n  {{ $link = .RelPermalink }}\n{{ end }}\n{{ $present_link := $link }}\n{{ $present_format := $item.OutputFormats.Get \"present\" }}\n{{ if not $present_format }}\n  {{ $present_format = $item.OutputFormats.Get \"Present\" }}\n{{ end }}\n{{ with $present_format }}\n  {{ $present_link = .RelPermalink }}\n{{ end }}\n{{ $resource := partial \"functions/get_featured_image.html\" $item }}\n{{ $index := .index }}\n{{ $featured_label := i18n \"featured\" | default \"Featured\" }}\n{{ $details_label := i18n \"details\" | default \"Details\" }}\n{{ $present_label := i18n \"present_slides\" | default \"Present\" }}\n{{ $present_fullscreen_label := i18n \"present_fullscreen\" | default \"Present (fullscreen)\" }}\n{{ $slides_label := i18n \"slides\" | default \"Slides\" }}\n\n{{/* Check if featured/pinned */}}\n{{ $isFeatured := or $item.Params.featured $item.Params.pinned }}\n\n{{/* Calculate slide count by counting \"---\" separators in content */}}\n{{ $content := $item.RawContent }}\n{{ $slideCount := 1 }}\n{{ $separators := findRE \"(?m)^---$\" $content }}\n{{ if $separators }}\n  {{ $slideCount = add (len $separators) 1 }}\n  {{/* Subtract 1 for front matter separator if content starts with --- */}}\n  {{ if hasPrefix $content \"---\" }}\n    {{ $slideCount = sub $slideCount 1 }}\n  {{ end }}\n{{ end }}\n\n{{/* Get summary - use description from front matter or truncate content */}}\n{{ $summary := $item.Description | default $item.Summary | default \"\" }}\n{{ $summary = $summary | plainify | truncate 160 }}\n\n<article class=\"group relative flex flex-col bg-white dark:bg-zinc-900 rounded-xl shadow-sm ring-1 ring-zinc-900/5 dark:ring-white/10 overflow-hidden transition-all duration-300 hover:shadow-lg hover:shadow-primary-500/10 hover:-translate-y-1{{ if $isFeatured }} ring-2 ring-primary-500/50{{ end }}\">\n  {{/* Featured Badge */}}\n  {{ if $isFeatured }}\n  <div class=\"absolute top-3 left-3 z-10 px-2.5 py-1 rounded-full text-xs font-semibold bg-primary-500 text-white flex items-center gap-1.5 shadow-lg\">\n    <svg class=\"w-3 h-3\" fill=\"currentColor\" viewBox=\"0 0 20 20\">\n      <path d=\"M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z\"/>\n    </svg>\n    {{ $featured_label }}\n  </div>\n  {{ end }}\n\n  {{/* Slide Preview Image - 16:9 aspect ratio */}}\n  <a href=\"{{ $present_link }}\" target=\"_blank\" rel=\"noopener\" class=\"block relative aspect-video bg-gradient-to-br from-zinc-100 to-zinc-200 dark:from-zinc-800 dark:to-zinc-900 overflow-hidden\" aria-label=\"{{ printf \"%s %s\" $present_fullscreen_label ($item.Title | plainify) }}\">\n    {{ with $resource }}\n      {{ if strings.Contains .MediaType.SubType \"svg\" }}\n        <img \n          class=\"w-full h-full object-cover transition-transform duration-500 group-hover:scale-105\" \n          src=\"{{ .RelPermalink }}\"\n          loading=\"lazy\" \n          decoding=\"async\"\n          alt=\"{{ $item.Title | plainify }}\">\n      {{ else if ne .MediaType.SubType \"gif\" }}\n        {{ $image := .Fill \"800x450 Center\" }}\n        {{ $responsive := partial \"functions/process_responsive_image.html\" (dict \n            \"image\" $image \n            \"mode\" \"responsive\"\n            \"sizes\" (slice 400 600 800)\n            \"formats\" (slice \"avif\" \"webp\" \"jpg\")\n        ) }}\n        <img \n          class=\"w-full h-full object-cover transition-transform duration-500 group-hover:scale-105\" \n          srcset=\"{{ $responsive.srcset }}\"\n          sizes=\"(max-width: 768px) 100vw, 50vw\"\n          src=\"{{ $responsive.fallback.RelPermalink }}\" \n          width=\"{{ $image.Width }}\" \n          height=\"{{ $image.Height }}\"\n          loading=\"lazy\" \n          decoding=\"async\"\n          {{ if eq $index 0 }}fetchpriority=\"high\"{{ end }}\n          alt=\"{{ $item.Title | plainify }}\">\n      {{ else }}\n        <img \n          class=\"w-full h-full object-cover transition-transform duration-500 group-hover:scale-105\"\n          src=\"{{ .RelPermalink }}\"\n          loading=\"lazy\"\n          decoding=\"async\"\n          alt=\"{{ $item.Title | plainify }}\">\n      {{ end }}\n    {{ else }}\n      {{/* Fallback: Decorative gradient with slide icon - smaller, cleaner */}}\n      <div class=\"w-full h-full bg-gradient-to-br from-primary-500/10 via-secondary-500/10 to-primary-700/15 dark:from-primary-600/20 dark:via-secondary-600/15 dark:to-primary-800/25 flex items-center justify-center\">\n        <div class=\"text-center px-4\">\n          <svg class=\"w-8 h-8 mx-auto text-primary-500/40 dark:text-primary-400/40\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n            <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M3.75 3v11.25A2.25 2.25 0 006 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0118 16.5h-2.25m-7.5 0h7.5m-7.5 0l-1 3m8.5-3l1 3m0 0l.5 1.5m-.5-1.5h-9.5m0 0l-.5 1.5m.75-9l3-3 2.148 2.148A12.061 12.061 0 0116.5 7.605\" />\n          </svg>\n        </div>\n      </div>\n    {{ end }}\n    \n    {{/* Play button overlay on hover */}}\n    <div class=\"absolute inset-0 flex items-center justify-center bg-black/0 group-hover:bg-black/30 transition-all duration-300\">\n      <div class=\"w-14 h-14 rounded-full bg-white/90 dark:bg-zinc-900/90 flex items-center justify-center opacity-0 group-hover:opacity-100 transform scale-75 group-hover:scale-100 transition-all duration-300 shadow-lg\">\n        <svg class=\"w-6 h-6 text-primary-600 dark:text-primary-400 ml-1\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n          <path d=\"M8 5v14l11-7z\"/>\n        </svg>\n      </div>\n    </div>\n    \n    {{/* Slide count badge */}}\n    {{ if gt $slideCount 1 }}\n    <div class=\"absolute bottom-3 right-3 px-2.5 py-1 rounded-full text-xs font-medium bg-black/60 backdrop-blur-sm text-white\">\n      {{ $slideCount }} {{ $slides_label | lower }}\n    </div>\n    {{ end }}\n  </a>\n  \n  {{/* Content Section */}}\n  <div class=\"flex flex-col flex-1 p-5\">\n    {{/* Tags */}}\n    {{ if $item.Params.tags }}\n    <div class=\"flex flex-wrap gap-2 mb-3\">\n      {{ range first 3 $item.Params.tags }}\n      <span class=\"inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-primary-100 text-primary-800 dark:bg-primary-900/40 dark:text-primary-300\">\n        {{ . }}\n      </span>\n      {{ end }}\n      {{ if gt (len $item.Params.tags) 3 }}\n      <span class=\"text-xs text-zinc-500 dark:text-zinc-400\">+{{ sub (len $item.Params.tags) 3 }}</span>\n      {{ end }}\n    </div>\n    {{ end }}\n\n    {{ $authors := slice }}\n    {{ with $item.Params.authors }}\n      {{ if reflect.IsSlice . }}\n        {{ $authors = . }}\n      {{ else }}\n        {{ $authors = slice . }}\n      {{ end }}\n    {{ end }}\n    {{ if gt (len $authors) 0 }}\n    {{ $author := index $authors 0 }}\n    {{ $profile := partial \"functions/get_author_profile\" $author }}\n    {{ $avatar := $profile.avatar }}\n    {{ $authorName := $author }}\n    {{ if $profile.has_data }}\n      {{ $authorName = $profile.title }}\n    {{ end }}\n    <div class=\"flex items-center gap-2 mb-2 text-xs text-zinc-500 dark:text-zinc-400\">\n      <div class=\"relative h-6 w-6 flex-shrink-0\">\n        {{ if $avatar }}\n          {{ $avatar_48 := $avatar.Process \"Fill 48x48 Center webp\" }}\n          <img alt=\"{{ $authorName }}\" class=\"rounded-full object-cover\" src=\"{{ $avatar_48.RelPermalink }}\" width=\"24\" height=\"24\" loading=\"lazy\" decoding=\"async\" />\n        {{ else }}\n          <div class=\"w-6 h-6 bg-zinc-100 dark:bg-zinc-800 rounded-full flex items-center justify-center\">\n            {{ partial \"functions/get_icon\" (dict \"name\" \"hero/user\" \"attributes\" \"class=\\\"w-4 h-4 text-zinc-500 dark:text-zinc-400\\\"\") }}\n          </div>\n        {{ end }}\n      </div>\n      <span class=\"truncate max-w-[10rem]\">{{ $authorName }}</span>\n    </div>\n    {{ end }}\n    \n    {{/* Title */}}\n    <h3 class=\"text-lg font-semibold text-zinc-900 dark:text-zinc-100 group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors line-clamp-2 mb-2\">\n      <a href=\"{{ $link }}\">{{ $item.Title }}</a>\n    </h3>\n    \n    {{/* Summary */}}\n    <p class=\"text-sm text-zinc-600 dark:text-zinc-400 line-clamp-3 min-h-[3.75rem] mb-3 flex-1\">{{ if $summary }}{{ $summary }}{{ else }}&nbsp;{{ end }}</p>\n    \n    {{/* Footer: Venue, Year, Details + Present Links */}}\n    <div class=\"flex items-center justify-between pt-3 border-t border-zinc-100 dark:border-zinc-800 mt-auto\">\n      <div class=\"flex items-center gap-2 text-xs text-zinc-500 dark:text-zinc-500\">\n        {{ with $item.Params.venue }}\n        <span class=\"truncate max-w-[120px]\" title=\"{{ . }}\">{{ . }}</span>\n        <span class=\"text-zinc-300 dark:text-zinc-600\">·</span>\n        {{ end }}\n        <time datetime=\"{{ $item.Date.Format \"2006-01-02\" }}\">\n          {{ $item.Date.Format \"2006\" }}\n        </time>\n      </div>\n      <div class=\"flex items-center gap-3\">\n        <a href=\"{{ $link }}\" class=\"inline-flex items-center gap-1 text-xs font-medium text-zinc-600 dark:text-zinc-400 hover:text-zinc-900 dark:hover:text-zinc-100 transition-colors\">\n          <span>{{ $details_label }}</span>\n        </a>\n        <a href=\"{{ $present_link }}\" target=\"_blank\" rel=\"noopener\" class=\"inline-flex items-center gap-1 text-xs font-medium text-primary-600 dark:text-primary-400 hover:text-primary-700 dark:hover:text-primary-300 transition-colors\">\n          <span>{{ $present_label }}</span>\n          <svg class=\"w-3.5 h-3.5\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n            <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M14 5l7 7m0 0l-7 7m7-7H3\"/>\n          </svg>\n        </a>\n      </div>\n    </div>\n  </div>\n</article>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/audio.html",
    "content": "{{/* Audio Shortcode for Hugo Blox Kit. */}}\n{{/* Load audio from page dir falling back to media library at `assets/media/` and then to remote URI. */}}\n{{/* Supports primarily MP3 and MP4. */}}\n\n{{/*\n    Docs: https://docs.hugoblox.com/content/writing-markdown-latex/#audio\n\n    Parameters\n    ----------\n    src :\n        Path to file or url for the audio file.\n        If a local file, first it is searched in the page directory, and then in `assets/media/` .\n    id : optional\n        Custom id \"audio-{id}\" to associate to the <audio> tag.\n*/}}\n\n{{ $destination := .Get \"src\" }}\n{{ $is_remote := strings.HasPrefix $destination \"http\" }}\n{{- $asset := \"\" -}}\n{{- if not $is_remote -}}\n  {{- $asset = (.Page.Resources.ByType \"audio\").GetMatch $destination -}}\n  {{- if not $asset -}}\n    {{- $asset = resources.Get (path.Join \"media\" $destination) -}}\n  {{- end -}}\n{{- end -}}\n\n{{ if $asset }}\n  {{ $destination = $asset.RelPermalink }}\n{{ else }}\n  {{ $destination = $destination | safeURL }}\n{{ end }}\n\n\n{{ $audio_type := strings.TrimPrefix \".\" (path.Ext $destination) | lower }}\n\n{{/* Set MP3 mime type to mpeg. */}}\n{{ $audio_type = replace $audio_type \"mp3\" \"mpeg\" }}\n\n<audio controls {{ with (.Get \"id\") }}id=\"audio-{{.|anchorize}}\"{{end}}>\n  <source src=\"{{$destination}}\" type=\"audio/{{$audio_type}}\">\n</audio>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/bilibili.html",
    "content": "{{- $video_id := cond .IsNamedParams (.Get `id`) (.Get 0) -}}\n{{- $video_page := (cond .IsNamedParams (.Get `p`) (.Get 1)) | default 1 -}}\n<div class=\"w-full h-auto aspect-video relative\">\n  <iframe src=\"//player.bilibili.com/player.html?bvid={{ $video_id }}&page={{ $video_page }}&autoplay=0\"\n  allow=\"accelerometer; clipboard-write; encrypted-media; gyroscope; fullscreen; picture-in-picture;\"\n  class=\"w-full h-full\"\n  ></iframe>\n</div>"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/button.html",
    "content": "{{/*\n  Button Shortcode for Hugo Blox Kit\n  \n  Docs: https://docs.hugoblox.com/content/writing-markdown-latex/\n  \n  Parameters\n  ----------\n  url : required\n      Button destination URL (internal or external)\n  text : optional\n      Button text content (overrides .Inner)\n  new_tab : optional, default false\n      Whether to open link in new tab:\n      - false: Open in same tab (default)\n      - true: Open in new tab\n  style : optional, default \"primary\"\n      Button style variant:\n      - \"primary\": Primary gradient (default)\n      - \"secondary\": Secondary gradient\n      - \"outline\": Outlined style\n      - \"ghost\": Minimal ghost style\n  size : optional, default \"md\"\n      Button size:\n      - \"sm\": Small button\n      - \"md\": Medium button (default)\n      - \"lg\": Large button\n      - \"xl\": Extra large button\n  align : optional, default \"left\"\n      Button alignment on page:\n      - \"left\": Left-aligned (default)\n      - \"center\": Center-aligned\n      - \"right\": Right-aligned\n  icon : optional\n      Icon name to display alongside text\n  icon_position : optional, default \"left\"\n      Icon position relative to text:\n      - \"left\": Icon before text (default)\n      - \"right\": Icon after text\n  rounded : optional, default \"md\"\n      Button border radius:\n      - \"sm\": Small radius\n      - \"md\": Medium radius (default)\n      - \"lg\": Large radius\n      - \"xl\": Extra large radius\n      - \"full\": Fully rounded (pill shape)\n  disabled : optional, default false\n      Whether button should be disabled\n  \n  Examples\n  --------\n  {{< button url=\"/contact\" >}}Contact Us{{< /button >}}\n  {{< button url=\"https://example.com\" new_tab=\"true\" style=\"secondary\" >}}External Link{{< /button >}}\n  {{< button url=\"/download\" text=\"Download Now\" icon=\"download\" style=\"primary\" size=\"lg\" align=\"center\" >}}\n  {{< button url=\"#section\" style=\"outline\" rounded=\"full\" icon=\"arrow-right\" icon_position=\"right\" >}}Learn More{{< /button >}}\n*/}}\n\n{{- $url := .Get \"url\" | default \"#\" -}}\n{{- $text := .Get \"text\" | default (.Inner | markdownify | plainify) -}}\n{{- $newTab := .Get \"new_tab\" | default false -}}\n{{- $style := .Get \"style\" | default \"primary\" -}}\n{{- $size := .Get \"size\" | default \"md\" -}}\n{{- $align := .Get \"align\" | default \"left\" -}}\n{{- $icon := .Get \"icon\" -}}\n{{- $iconPosition := .Get \"icon_position\" | default \"left\" -}}\n{{- $rounded := .Get \"rounded\" | default \"md\" -}}\n{{- $disabled := .Get \"disabled\" | default false -}}\n\n{{/* Set target and rel attributes based on new_tab parameter */}}\n{{- $targetAttr := \"\" -}}\n{{- $relAttr := \"\" -}}\n{{- $isExternal := or (strings.HasPrefix $url \"http://\") (strings.HasPrefix $url \"https://\") -}}\n\n{{- if $newTab -}}\n  {{- $targetAttr = \"_blank\" -}}\n  {{- if $isExternal -}}\n    {{- $relAttr = \"noopener noreferrer\" -}}\n  {{- else -}}\n    {{- $relAttr = \"noopener\" -}}\n  {{- end -}}\n{{- else if $isExternal -}}\n  {{- $relAttr = \"noreferrer\" -}}\n{{- end -}}\n\n{{/* Alignment classes */}}\n{{- $alignClass := \"\" -}}\n{{- if eq $align \"center\" -}}\n  {{- $alignClass = \"text-center\" -}}\n{{- else if eq $align \"right\" -}}\n  {{- $alignClass = \"text-right\" -}}\n{{- else -}}\n  {{- $alignClass = \"text-left\" -}}\n{{- end -}}\n\n{{/* Size classes */}}\n{{- $sizeClasses := \"\" -}}\n{{- if eq $size \"sm\" -}}\n  {{- $sizeClasses = \"px-3 py-1.5 text-sm\" -}}\n{{- else if eq $size \"lg\" -}}\n  {{- $sizeClasses = \"px-6 py-3 text-lg\" -}}\n{{- else if eq $size \"xl\" -}}\n  {{- $sizeClasses = \"px-8 py-4 text-xl\" -}}\n{{- else -}}\n  {{- $sizeClasses = \"px-4 py-2 text-base\" -}}\n{{- end -}}\n\n{{/* Rounded classes */}}\n{{- $roundedClass := \"\" -}}\n{{- if eq $rounded \"sm\" -}}\n  {{- $roundedClass = \"rounded\" -}}\n{{- else if eq $rounded \"lg\" -}}\n  {{- $roundedClass = \"rounded-xl\" -}}\n{{- else if eq $rounded \"xl\" -}}\n  {{- $roundedClass = \"rounded-2xl\" -}}\n{{- else if eq $rounded \"full\" -}}\n  {{- $roundedClass = \"rounded-full\" -}}\n{{- else -}}\n  {{- $roundedClass = \"rounded-lg\" -}}\n{{- end -}}\n\n{{/* Style classes */}}\n{{- $styleClasses := \"\" -}}\n{{- $baseClasses := \"inline-flex items-center gap-2 font-medium no-underline transition-all duration-300 ease-out transform-gpu focus:outline-none focus:ring-4 focus:ring-offset-2 focus:ring-offset-white dark:focus:ring-offset-zinc-900 disabled:opacity-50 disabled:cursor-not-allowed disabled:pointer-events-none\" -}}\n\n{{- if eq $style \"secondary\" -}}\n  {{- $styleClasses = \"bg-gradient-to-br from-secondary-500 to-secondary-600 hover:from-secondary-600 hover:to-secondary-700 active:from-secondary-700 active:to-secondary-800 text-white shadow-lg shadow-secondary-500/25 hover:shadow-xl hover:shadow-secondary-500/30 hover:scale-105 active:scale-95 focus:ring-secondary-500/50\" -}}\n{{- else if eq $style \"outline\" -}}\n  {{- $styleClasses = \"bg-white dark:bg-zinc-900 border-2 border-primary-500 text-primary-600 dark:text-primary-400 hover:bg-primary-50 dark:hover:bg-primary-950/50 hover:border-primary-600 active:bg-primary-100 dark:active:bg-primary-950 shadow-md hover:shadow-lg hover:scale-105 active:scale-95 focus:ring-primary-500/50\" -}}\n{{- else if eq $style \"ghost\" -}}\n  {{- $styleClasses = \"bg-transparent text-primary-600 dark:text-primary-400 hover:bg-primary-50 dark:hover:bg-primary-950/50 active:bg-primary-100 dark:active:bg-primary-950 hover:scale-105 active:scale-95 focus:ring-primary-500/50\" -}}\n{{- else -}}\n  {{/* Primary gradient (default) */}}\n  {{- $styleClasses = \"bg-gradient-to-br from-primary-500 to-primary-600 hover:from-primary-600 hover:to-primary-700 active:from-primary-700 active:to-primary-800 text-white shadow-lg shadow-primary-500/25 hover:shadow-xl hover:shadow-primary-500/30 hover:-translate-y-0.5 hover:scale-[1.02] active:scale-[0.98] focus:ring-primary-500/50\" -}}\n{{- end -}}\n\n{{/* Generate unique ID for button */}}\n{{ $id := delimit (slice \"button\" (partial \"functions/uid.html\" .)) \"-\" }}\n\n<div class=\"{{ $alignClass }}\">\n  <a\n    id=\"{{ $id }}\"\n    href=\"{{ $url }}\"\n    {{ with $targetAttr }}target=\"{{ . }}\"{{ end }}\n    {{ with $relAttr }}rel=\"{{ . }}\"{{ end }}\n    {{ with $disabled }}{{ if . }}disabled aria-disabled=\"true\"{{ end }}{{ end }}\n    class=\"{{ $baseClasses }} {{ $styleClasses }} {{ $sizeClasses }} {{ $roundedClass }}\"\n    role=\"button\"\n    {{ with $text }}aria-label=\"{{ . | plainify }}\"{{ end }}\n  >\n    {{/* Icon before text */}}\n    {{ if and $icon (eq $iconPosition \"left\") }}\n      <span class=\"flex-shrink-0\">\n        {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class=\\\"w-4 h-4\\\"\") }}\n      </span>\n    {{ end }}\n    \n    {{/* Button text */}}\n    <span>{{ $text }}</span>\n    \n    {{/* Icon after text */}}\n    {{ if and $icon (eq $iconPosition \"right\") }}\n      <span class=\"flex-shrink-0\">\n        {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"class=\\\"w-4 h-4\\\"\") }}\n      </span>\n    {{ end }}\n  </a>\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/callout.html",
    "content": "{{/*\n    DEPRECATED: This shortcode is deprecated in favor of standard Markdown alert syntax.\n    \n    Instead of:\n        {{< callout note >}}\n        Your content here\n        {{< /callout >}}\n    \n    Use standard GitHub/Obsidian alert syntax:\n        > [!NOTE]\n        > Your content here\n    \n    This provides better portability across Markdown platforms.\n    \n    Docs: https://docs.hugoblox.com/reference/markdown/#callouts\n\n    Parameters\n    ----------\n    #0 : optional, positional\n        Name of the icon to display in the callout component.\n        Default Hugo Blox Kit available options include \"note\" and \"warning\".\n        Otherwise, you can add your own icon to assets/media/icons/ and reference its name when calling the shortcode.\n*/}}\n\n{{/* Log deprecation warning */}}\n{{ $src := \"/\" }}\n{{ with .Page }}\n  {{ with .File }}\n    {{ $src = .Path }}\n  {{ end }}\n{{ end }}\n{{ partial \"functions/logger\" (dict \n  \"page\" .Page \n  \"level\" \"warn\" \n  \"id\" \"callout-deprecated\" \n  \"message\" (printf \"The `callout` shortcode is deprecated in %s. Use standard Markdown alert syntax instead, such as `> [!NOTE]`.\" $src)\n  \"source\" (dict \"type\" \"shortcode\" \"name\" \"callout\" \"docs\" \"https://docs.hugoblox.com/reference/markdown/#callouts\")\n) }}\n\n{{/* Get callout type from parameter */}}\n{{ $type := (.Get 0) | default \"note\" }}\n\n{{/* Use shared callout renderer */}}\n{{ partial \"functions/render_callout\" (dict \n  \"type\" $type \n  \"content\" (.Inner | markdownify | emojify) \n  \"source\" \"shortcode\"\n) }}"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/card.html",
    "content": "{{/*\nDocs: https://docs.hugoblox.com/content/writing-markdown-latex/\n*/}}\n\n{{- $url := .Get \"url\" -}}\n{{- $is_external := strings.HasPrefix $url \"http\" -}}\n{{- $url = cond (strings.HasPrefix $url \"/\") ($url | relURL) $url -}}\n\n{{- $icon := .Get \"icon\" -}}\n{{- $title := .Get \"title\" -}}\n{{- $subtitle := .Get \"subtitle\" -}}\n\n<a\n  class=\"hb-card group\"\n  {{- if $url -}}\n    href=\"{{ $url }}\" {{ with $is_external }}target=\"_blank\" rel=\"noreferrer\"{{ end -}}\n  {{- end -}}\n>\n\n  {{/* Adjust padding depending on content */}}\n  {{- $padding := \"p-4\" -}}\n  {{- with $subtitle -}}\n    {{- $padding = \"pt-4 px-4\" -}}\n  {{- end -}}\n\n  <span class=\"hb-card-title {{ $padding }}\">\n    {{- with $icon }}\n      {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"style=\\\"height: 1em; width: 1em;\\\"\") -}}\n    {{- end -}}\n    {{- $title -}}\n  </span>\n  {{- with $subtitle -}}\n    <div class=\"hb-card-subtitle\">{{- $subtitle | markdownify -}}</div>\n  {{- end -}}\n</a>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/cards.html",
    "content": "{{/*\nDocs: https://docs.hugoblox.com/content/writing-markdown-latex/\n*/}}\n\n{{ $col_count := .Get \"cols\" | default \"1\" }}\n\n<div class=\"hb-cards mt-4 grid gap-4 not-prose\" style=\"--hb-cols: {{ $col_count }};\">\n  {{ .Inner }}\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/chart.html",
    "content": "{{/*\n    Docs: https://docs.hugoblox.com/content/writing-markdown-latex/#charts\n\n    Parameters\n    ----------\n    data :\n        Plotly JSON file name (without \".json\" extension, since it is appended automatically to the name).\n        Expects the JSON file to be placed in the page folder.(.Get \"data\")\n*/}}\n\n{{ $json := printf \"./%s.json\" (.Get \"data\") }}\n{{ $id := delimit (shuffle (seq 1 9)) \"\" }}\n<div id=\"chart-{{$id}}\" class=\"chart\"></div>\n<script>\n  (function() {\n    async function fetchChartJSON() {\n      console.debug('Hugo Blox fetching chart JSON...')\n      const response = await fetch('{{$json}}');\n      return await response.json();\n    }\n\n    let a = setInterval( function() {\n      if ( typeof window.Plotly === 'undefined' ) {\n        console.debug('Plotly not loaded yet...')\n        return;\n      }\n      clearInterval( a );\n\n      fetchChartJSON().then(chart => {\n        console.debug('Plotting chart...')\n        window.Plotly.newPlot('chart-{{$id}}', chart.data, chart.layout, {responsive: true});\n      });\n    }, 500 );\n  })();\n</script>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/cite.html",
    "content": "{{/*\n    Docs: https://docs.hugoblox.com/content/writing-markdown-latex/#cite\n    \n    Cite shortcode for Hugo Blox Kit.\n    \n    Parameters\n    ----------\n    page : required\n        Path to Markdown page to be referenced.\n    view : optional, default \"citation\"\n        A built-in Hugo Blox Kit view or an installed community view.\n    \n*/}}\n\n{{ $page := .Page }}\n{{ $item := .Get \"page\" }}\n\n{{/* Default to citation view for Tailwind module */}}\n{{ $view := (.Get \"view\") | default \"citation\" }}\n\n{{ with site.GetPage $item }}\n  {{ partial \"functions/render_view\" (dict \"page\" $page \"item\" . \"view\" $view \"index\" 0) }}\n{{ else }}\n  {{ warnf \"Failed to find page for cite shortcode: %s\" $item }}\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/embed.html",
    "content": "{{/*\n  Hugo Blox Embed Shortcode\n  Copyright (c) George Cushen\n  \n  Licensed under MIT with Attribution Required:\n  - Copyright notice and this license must be retained\n  - \"Powered by Hugo Blox\" attribution must be maintained\n  - See: https://github.com/HugoBlox/kit/blob/main/LICENSE.md\n  \n  Docs: https://docs.hugoblox.com/content/writing-markdown-latex/\n  \n  Parameters\n  ----------\n  platform : default auto-detected\n      Platform type (huggingface, github, etc.)\n  resource : optional\n      Platform-specific resource identifier (model/dataset for HF, repo for GitHub)\n  type : optional\n      Resource type (model, dataset, repo, etc.)\n  title : optional\n      Override the default title\n  description : optional\n      Override the default description\n  url : optional\n      Direct URL to the resource\n  user : optional\n      Username/organization (for GitHub: \"owner/repo\")\n  thumbnail : default false\n      Show platform thumbnail (e.g., GitHub OpenGraph image)\n  image : optional\n      Remote image URL to process and display (works with any URL including Unsplash)\n  \n  Image Processing Parameters (when using image parameter)\n  --------------------------------------------------------\n  width : default 800\n      Image width in pixels\n  height : default 600  \n      Image height in pixels\n  quality : default 80\n      Image quality 1-100\n  formats : default [\"avif\", \"webp\", \"jpg\"]\n      Image formats to generate\n      \n  Examples\n  --------\n  {{< embed platform=\"huggingface\" resource=\"microsoft/DialoGPT-medium\" type=\"model\" >}}\n  {{< embed platform=\"github\" resource=\"hugo-blox/kit\" type=\"repo\" >}}\n  {{< embed platform=\"github\" resource=\"hugo-blox/kit\" type=\"repo\" thumbnail=\"true\" >}}\n  {{< embed url=\"https://example.com\" title=\"Custom Title\" description=\"Description\" image=\"https://images.unsplash.com/photo-123\" >}}\n  {{< embed platform=\"github\" resource=\"owner/repo\" image=\"https://custom-image.jpg\" width=\"600\" height=\"400\" >}}\n*/}}\n\n{{/* Hugo Blox Kit ecosystem verification - Required for functionality */}}\n{{- $hbx_verification_result := partial \"functions/hbx_verify.html\" . -}}\n{{- if ne $hbx_verification_result \"verified\" -}}\n  {{ errorf \"Hugo Blox Embed requires complete Hugo Blox Kit theme ecosystem at %s\" .Position }}\n{{- end -}}\n\n{{ $hbx_embed_id := delimit (slice \"hb-embed\" (partial \"functions/uid.html\" .)) \"-\" }}\n\n{{/* New flexible parameters */}}\n{{- $platform := .Get \"platform\" -}}\n{{- $resource := .Get \"resource\" -}}\n{{- $type := .Get \"type\" -}}\n{{- $user := .Get \"user\" -}}\n{{- $customTitle := .Get \"title\" -}}\n{{- $customDescription := .Get \"description\" -}}\n{{- $customUrl := .Get \"url\" -}}\n{{- $imageUrl := .Get \"image\" -}}\n\n{{/* Image processing parameters */}}\n{{- $width := .Get \"width\" | default \"800\" | int -}}\n{{- $height := .Get \"height\" | default \"600\" | int -}}\n{{- $quality := .Get \"quality\" | default \"80\" | int -}}\n{{- $formats := .Get \"formats\" | default (slice \"avif\" \"webp\" \"jpg\") -}}\n{{- $showThumbnail := .Get \"thumbnail\" | default false -}}\n\n{{/* Set default platform based on available parameters */}}\n{{- if not $platform -}}\n  {{- if $customUrl -}}\n    {{- $platform = \"custom\" -}}\n  {{- else -}}\n    {{- $platform = \"custom\" -}}\n  {{- end -}}\n{{- end -}}\n\n{{/* Platform configuration - extensible for future platforms */}}\n{{- $config := dict -}}\n{{- if eq $platform \"huggingface\" -}}\n  {{- $config = partial \"functions/embed/huggingface.html\" (dict \"resource\" $resource \"type\" $type \"customUrl\" $customUrl) -}}\n{{- else if eq $platform \"github\" -}}\n  {{- $config = partial \"functions/embed/github.html\" (dict \"resource\" $resource \"type\" $type \"user\" $user \"customUrl\" $customUrl \"showThumbnail\" $showThumbnail \"width\" $width \"height\" $height \"quality\" $quality \"formats\" $formats) -}}\n{{- else -}}\n  {{/* Custom/generic embed configuration */}}\n  {{- $config = dict \n      \"repoLink\" $customUrl \n      \"icon\" \"globe-alt\"\n      \"brandColors\" (slice \"zinc-700\" \"zinc-800\")\n      \"typeColor\" \"zinc-500\"\n  -}}\n{{- end -}}\n\n{{/* Add generic image processing if image parameter is provided */}}\n{{- if $imageUrl -}}\n  {{- $config = merge $config (dict \n      \"imageUrl\" $imageUrl\n      \"isImageEmbed\" true\n      \"imageProcessing\" (dict\n        \"width\" $width\n        \"height\" $height\n        \"quality\" $quality\n        \"formats\" $formats\n        \"sizes\" (slice 400 600 800 1200)\n      )\n  ) -}}\n{{- end -}}\n\n{{/* Fetch data from API if available - with graceful fallbacks */}}\n{{- $embedData := dict -}}\n{{- $processedImage := dict -}}\n{{- if $config.apiUrl -}}\n  {{- with try (resources.GetRemote $config.apiUrl) -}}\n    {{- with .Err -}}\n      {{/* Log warning but don't fail - allow graceful fallback */}}\n      {{- if not (strings.Contains (string .Err) \"rate limit\") -}}\n        {{- warnf \"embed shortcode: failed to fetch remote resource from %q: %s (continuing with fallback display)\" $config.apiUrl $.Position -}}\n      {{- end -}}\n    {{- else with .Value -}}\n      {{- $embedData = . | transform.Unmarshal -}}\n    {{- else -}}\n      {{/* Still warn but continue */}}\n      {{- warnf \"embed shortcode: unable to get remote resource from %q (continuing with fallback display)\" $config.apiUrl -}}\n    {{- end -}}\n  {{- end -}}\n{{- end -}}\n\n{{/* Process image if image URL or platform image is configured */}}\n{{- if and $config.isImageEmbed $config.imageUrl -}}\n  {{- with try (resources.GetRemote $config.imageUrl) -}}\n    {{- with .Err -}}\n      {{- warnf \"embed shortcode: failed to fetch image from %q (continuing without image): %s\" $config.imageUrl $.Position -}}\n    {{- else with .Value -}}\n      {{- $remoteImg := . -}}\n      {{- $resizeStr := printf \"%dx%d jpg q%d\" $config.imageProcessing.width $config.imageProcessing.height $config.imageProcessing.quality -}}\n      {{- with try ($remoteImg.Resize $resizeStr) -}}\n        {{- with .Err -}}\n          {{/* Image resize failed, use original */}}\n          {{- $processedImage = dict \"fallback\" $remoteImg \"srcset\" $remoteImg.RelPermalink -}}\n        {{- else with .Value -}}\n          {{- $processedImage = partial \"functions/process_responsive_image.html\" (dict \n              \"image\" .\n              \"mode\" \"responsive\"\n              \"sizes\" $config.imageProcessing.sizes\n              \"formats\" $config.imageProcessing.formats\n          ) -}}\n        {{- end -}}\n      {{- end -}}\n    {{- end -}}\n  {{- end -}}\n{{- end -}}\n\n{{- if or $embedData $customUrl $config.repoLink $resource $processedImage -}}\n<div class=\"group bg-white/90 dark:bg-zinc-900/90 backdrop-blur-sm rounded-2xl ring-1 ring-zinc-900/5 dark:ring-white/10 shadow-lg overflow-hidden transition-all duration-300 ease-out hover:shadow-xl hover:shadow-primary-500/10 hover:-translate-y-1 focus-within:ring-2 focus-within:ring-primary-500/50 my-6\" role=\"article\" aria-labelledby=\"hb-embed-title-{{ $hbx_embed_id }}\">\n  \n    <!-- Header with platform branding -->\n    <div class=\"flex items-center gap-3 p-6 border-b border-zinc-100 dark:border-zinc-800\">\n      <div class=\"flex-shrink-0\">\n        {{ partial \"functions/embed/hbx_platform_icon.html\" (dict \"platform\" $platform \"config\" $config \"hb_id\" $hbx_embed_id) }}\n      </div>\n      \n      <div class=\"flex-1 min-w-0\">\n        {{ partial \"functions/embed/hbx_title_section.html\" (dict \"hb_id\" $hbx_embed_id \"customTitle\" $customTitle \"embedData\" $embedData \"customUrl\" $customUrl \"resource\" $resource \"type\" $type \"platform\" $platform \"config\" $config) }}\n      </div>\n      \n      <div class=\"flex-shrink-0\">\n        <a href=\"{{ $config.repoLink | default $customUrl }}\" target=\"_blank\" rel=\"noopener\" class=\"text-zinc-400 hover:text-primary-500 transition-colors duration-200\">\n          {{ partial \"functions/get_icon\" (dict \"name\" \"arrow-top-right-on-square\" \"attributes\" \"class=\\\"w-5 h-5 hb-embed-link\\\"\") }}\n        </a>\n      </div>\n    </div>\n    \n    <!-- Content Section -->\n    <div class=\"p-6 space-y-4\">\n      {{ partial \"functions/embed/hbx_content_section.html\" (dict \"customDescription\" $customDescription \"embedData\" $embedData \"platform\" $platform \"hb_id\" $hbx_embed_id \"config\" $config \"processedImage\" $processedImage) }}\n    </div>\n    \n    <!-- Hover indicator -->\n    <div class=\"absolute inset-0 pointer-events-none bg-gradient-to-r from-primary-500/0 via-primary-500/5 to-secondary-500/0 opacity-0 group-hover:opacity-100 transition-opacity duration-300\"></div>\n    \n    <!-- Required MIT Attribution - Do Not Remove -->\n    <div class=\"sr-only\" data-hb-component=\"embed\" data-hb-version=\"1.0\" data-hb-license=\"MIT\">\n      Powered by Hugo Blox Kit - https://github.com/HugoBlox/kit\n    </div>\n    \n</div>\n{{- else -}}\n  {{ warnf \"embed shortcode: unable to fetch data or missing required parameters: %s\" .Position }}\n  <!-- Fallback display -->\n  <div class=\"bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-4 my-6\">\n    <div class=\"flex items-center gap-2 text-yellow-800 dark:text-yellow-200\">\n      {{ partial \"functions/get_icon\" (dict \"name\" \"exclamation-triangle\" \"attributes\" \"class=\\\"w-5 h-5\\\"\") }}\n      <span class=\"font-medium\">Embed Warning</span>\n    </div>\n    <p class=\"mt-1 text-sm text-yellow-700 dark:text-yellow-300\">\n      Unable to load embedded content. Please check the parameters and try again.\n    </p>\n  </div>\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/icon.html",
    "content": "{{/*\n    Docs: https://docs.hugoblox.com/reference/markdown/#inline-image\n\n    Parameters\n    ----------\n    name :\n        Icon name.\n    padding_left : default \"0\"\n        Left padding.\n    padding_right : default \"1\"\n        Right padding.\n*/}}\n\n{{- if (.Get \"name\") -}}\n  {{- $icon := .Get \"name\" -}}\n  {{- $padding_right := (.Get \"padding_right\") | default 1 -}}{{/* Defaulting to 1 prevents no spacing when minimizing HTML. */}}\n  <span class=\"inline-block {{with (.Get \"padding_left\")}}pl-{{.}}{{end}} {{with $padding_right}}pr-{{.}}{{end}}\">\n    {{ partial \"functions/get_icon\" (dict \"name\" $icon \"attributes\" \"style=\\\"height: 1em; transform: translateY(0.1em);\\\"\") }}\n  </span>\n{{- end -}}"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/include.html",
    "content": "{{- /*\n    Docs: https://docs.hugoblox.com/reference/markdown/#include\n\n    Parameters\n    ----------\n    postional parameter 0 :\n        Path to the Markdown file to include, relative to the `content` folder.\n\n    Example\n    ----------\n    {{% include \"snippet/intro\" %}}\n*/ -}}\n\n{{- with .Get 0 }}\n  {{- $page := . -}}\n  {{- with site.GetPage $page }}\n    {{- .RenderShortcodes }}\n  {{- else }}\n    {{- errorf \"The %q shortcode at %s could not locate %q\" $.Name $.Position (printf \"content/%s.md\" .) }}\n  {{- end }}\n{{- else }}\n  {{- errorf \"Call the %q shortcode in %s with the path of the Markdown file to include.\" .Name .Position }}\n{{- end }}"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/math.html",
    "content": "{{ .Inner }}\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/mention.html",
    "content": "{{/*\n    Docs: https://docs.hugoblox.com/content/writing-markdown-latex/#mention-a-user\n\n    Parameters\n    ----------\n    #0 : positional\n        User account in Hugo Blox Kit to mention.\n*/}}\n\n{{- $username := .Get 0 -}}\n{{- $username_url := $username | urlize -}}\n{{- $taxonomy := \"authors\" -}}\n{{- $profile_page := site.GetPage (printf \"/%s/%s\" $taxonomy $username_url) -}}\n{{- $name := $profile_page.Title | default ($username|markdownify) -}}\n{{- with $profile_page -}}\n  <a href=\"{{$profile_page.RelPermalink}}\">{{$name}}</a>\n{{- else -}}\n  {{- $name -}}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/notebook.html",
    "content": "{{/*\n  HugoBlox Notebook Shortcode\n  Copyright (c) HugoBlox\n\n  Licensed under MIT WITH ATTRIBUTION REQUIRED:\n  - Keep this notice intact\n  - Preserve visible/hidden \"Powered by Hugo Blox Kit\" attribution\n  - See https://github.com/HugoBlox/kit/blob/main/LICENSE.md\n\n  This shortcode relies on the Hugo Blox Kit theme ecosystem.\n  Docs: https://docs.hugoblox.com/\n\n  Render Jupyter/Quarto notebooks directly inside Markdown while keeping blocks editable.\n\n  Parameters\n  ----------\n  src/file (required)\n      Notebook path. Supports page resources, assets/, static/, or remote URLs.\n  title (optional)\n      Heading override. Defaults to notebook filename.\n  language (optional)\n      Highlight language override. Defaults to notebook metadata or python.\n  show_code / show_markdown / show_outputs (optional, default true)\n      Toggle sections per cell type.\n  show_metadata (optional, default false)\n      Display kernel/language metadata badges.\n  line_numbers (optional, default false)\n      Render chroma line numbers for code cells.\n  max_output_height (optional, default \"26rem\")\n      CSS value for output scroll area height (supports rem/vh/calc()).\n  dense (optional, default false)\n      Compact spacing preset.\n  source_url / show_download / download_label (optional)\n      Override download link behavior.\n\n  Examples\n  --------\n  {{< notebook src=\"notebooks/analysis.ipynb\" >}}\n  {{< notebook src=\"https://example.com/demo.ipynb\" show_metadata=true line_numbers=true >}}\n  {{< notebook file=\"stats/notebook.ipynb\" show_code=false show_outputs=true title=\"Model outputs\" >}}\n*/}}\n{{ partial \"functions/notebook/render\" . }}\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/spoiler.html",
    "content": "{{/*\n    Docs: https://docs.hugoblox.com/reference/markdown/#toggle-lists\n\n    Parameters\n    ----------\n    text :\n        Spoiler title.\n    class : optional\n        Additional class for <details> tag.\n    style : optional\n        Additional style for <details> tag.\n*/}}\n\n{{- $title := .Get \"text\" | default \"\" -}}\n{{- $id := printf \"spoiler-%d\" .Ordinal -}}\n\n<details class=\"spoiler {{ .Get \"class\" }}\" {{ with .Get \"style\" }}style=\"{{ . | safeCSS }}\"{{ end }} id=\"{{$id}}\">\n  <summary class=\"cursor-pointer\">{{ $title }}</summary>\n  <div class=\"rounded-lg bg-neutral-50 dark:bg-neutral-800 p-2\">\n    {{ .InnerDeindent | markdownify }}\n  </div>\n</details>"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/steps.html",
    "content": "<div class=\"hb-steps\">\n  {{- .Inner -}}\n</div>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/table.html",
    "content": "{{/* Table Shortcode for Hugo Blox Kit. */}}\n{{/* Load a CSV table from page dir falling back to remote URL */}}\n{{/* Defaults to expecting a comma-separated CSV with a header row. */}}\n\n{{/*\n    Docs: https://docs.hugoblox.com/content/writing-markdown-latex/#csv-table\n\n    Parameters\n    ----------\n    src :\n        Path or url to the csv table. Path is relative to the folder where the shortcode is called.\n    delimiter : default \",\"\n        Field delimiter.\n    header : default \"true\"\n        If \"true\", the first row is rendered as the header.\n    caption : optional\n        Caption for the table.\n*/}}\n\n{{ $src := .Get \"path\" }}\n{{ $delimiter := .Get \"delimiter\" | default \",\" }}\n{{ $useHeaderRow := (eq (lower (.Get \"header\")) \"true\") | default true }}\n{{ $caption := .Get \"caption\" }}\n\n{{ $is_remote := strings.HasPrefix $src \"http\" }}\n{{ $rows := transform.Unmarshal (dict \"delimiter\" $delimiter) (.Page.Resources.Get $src).Content }}\n\n<table class=\"table-auto w-full\">\n  {{ if $useHeaderRow }}\n    {{ $headerRow := index $rows 0 }}\n    {{ $rows = after 1 $rows }}\n    <thead>\n      <tr> {{ range $headerRow }} <th class=\"border-b dark:border-slate-600 font-medium p-4 pt-0 pb-3 text-slate-400 dark:text-slate-200 text-left\">{{ . | markdownify | emojify }}</th> {{ end }} </tr>\n    </thead>\n  {{ end }}\n  <tbody>\n  {{ range $rows }}\n    <tr>\n      {{ range . }}\n        {{ if (findRE \"^\\\\d+$\" .) }}\n          <td data-table-dtype=\"number\" class=\"border-b border-slate-100 dark:border-slate-700 p-4 text-slate-500 dark:text-slate-400\">{{ . }}</td>\n        {{ else }}\n          <td data-table-dtype=\"text\" class=\"border-b border-slate-100 dark:border-slate-700 p-4 text-slate-500 dark:text-slate-400\">{{ . | markdownify | emojify }}</td>\n        {{ end }}\n      {{ end }}\n    </tr>\n  {{ end }}\n  </tbody>\n  {{ if $caption }}\n    <caption class=\"table-caption\">{{ $caption | markdownify | emojify }}</caption>\n  {{ end }}\n</table>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/toc.html",
    "content": "{{/*\n    Docs: https://docs.hugoblox.com/reference/markdown/#table-of-contents\n\n    Parameters\n    ----------\n    mobile_only : true/false (optional)\n        Hide TOC on desktop when TOC is shown in right sidebar?\n    is_open : true/false (optional)\n        Show the TOC in the open, expanded state?\n*/}}\n{{ $mobile_only := .Get \"mobile_only\" | default true }}\n{{ $is_open := .Get \"is_open\" | default false }}\n<details class=\"print:hidden {{with $mobile_only}}xl:hidden{{end}}\" {{with $is_open}}open{{end}}>\n  <summary>{{ i18n \"table_of_contents\" }}</summary>\n  <div class=\"text-sm\">\n  {{ $.Page.TableOfContents }}\n  </div>\n</details>\n"
  },
  {
    "path": "modules/blox/layouts/_shortcodes/video.html",
    "content": "{{/* Video Shortcode for Hugo Blox Kit. */}}\n{{/* Load video from page dir falling back to media library at `assets/media/` and then to remote URI. */}}\n\n{{/*\n    Docs: https://docs.hugoblox.com/content/writing-markdown-latex/#videos\n\n    Parameters\n    ----------\n    src :\n        Path to file or url for the video file.\n        If a local file, first it is searched in the page directory, and then in `assets/media/` .\n    poster : optional\n        Path or url for the preview image.\n        Defaults to {src without file extension}.jpg .\n        If not found, defaults to \"\".\n    controls : optional\n        If present, display video controls, otherwise the video is set to autoplay.\n    id : optional\n        Custom id \"video-{id}\" to associate to the <video> tag.\n*/}}\n\n{{ $destination := .Get \"src\" }}\n{{ $video_ext_with_dot := path.Ext (.Get \"src\") }}\n{{ $video_ext := strings.TrimPrefix \".\" $video_ext_with_dot }}\n{{ $video_type := $video_ext }}\n{{ $destination_preview := (.Get \"poster\") | default (replace $destination $video_ext_with_dot \".jpg\") }}\n{{ $is_remote := strings.HasPrefix $destination \"http\" }}\n{{- $asset := \"\" -}}\n{{- $asset_preview := \"\" -}}\n{{- if not $is_remote -}}\n  {{- $asset = (.Page.Resources.ByType \"video\").GetMatch $destination -}}\n  {{- $asset_preview = (.Page.Resources.ByType \"image\").GetMatch $destination_preview -}}\n  {{- if not $asset -}}\n    {{- $asset = resources.Get (path.Join \"media\" $destination) -}}\n    {{- $asset_preview = resources.Get (path.Join \"media\" $destination_preview) -}}\n  {{- end -}}\n  {{ $video_type = $asset.MediaType.SubType }}\n{{- end -}}\n\n{{ if $asset }}\n  {{ $destination = $asset.RelPermalink }}\n{{ else }}\n  {{ $destination = $destination | safeURL }}\n{{ end }}\n\n{{ $poster := (.Get \"poster\") | default \"\" }}\n{{ if $asset_preview }}\n  {{ $poster = $asset_preview.RelPermalink }}\n{{ end }}\n\n<video {{if (.Get \"controls\")}}controls{{else}}autoplay loop{{end}} {{with $poster}}poster=\"{{.}}\"{{end}} {{ with (.Get \"id\") }}id=\"video-{{.|anchorize}}\"{{end}}>\n  <source src=\"{{$destination}}\" type=\"video/{{$video_type}}\">\n</video>\n"
  },
  {
    "path": "modules/blox/layouts/authors/term.html",
    "content": "{{ define \"main\" }}\n\n{{ $slug := .Data.Term | urlize }}\n{{ $profile := partial \"functions/get_author_profile\" (dict \"slug\" $slug) }}\n{{ $avatar := $profile.avatar }}\n{{ $avatar_shape := site.Params.hugoblox.layout.avatar_shape | default \"circle\" }}\n\n<section class=\"max-w-5xl mx-auto px-6 py-10\">\n  <div class=\"flex flex-col sm:flex-row sm:items-center gap-6\">\n    <div class=\"flex-shrink-0\">\n      {{ if $avatar }}\n        {{ $isSVG := eq $avatar.MediaType.SubType \"svg\" }}\n        {{ if $isSVG }}\n        <img\n          class=\"h-32 w-32 sm:h-40 sm:w-40 {{ if ne $avatar_shape \"square\" }}rounded-full{{ end }}\"\n          src=\"{{ $avatar.RelPermalink }}\"\n          width=\"160\"\n          height=\"160\"\n          alt=\"{{ $profile.title }}\"\n          loading=\"lazy\"\n        />\n        {{ else }}\n        {{ $responsive := partial \"functions/process_responsive_image.html\" (dict\n          \"image\" $avatar\n          \"mode\" \"fill\"\n          \"aspect_ratio\" \"1:1\"\n          \"anchor\" \"Center\"\n          \"sizes\" (slice 160 240 320 480)\n        ) }}\n        <img\n          class=\"h-32 w-32 sm:h-40 sm:w-40 {{ if ne $avatar_shape \"square\" }}rounded-full{{ end }}\"\n          srcset=\"{{ $responsive.srcset }}\"\n          sizes=\"160px\"\n          src=\"{{ $responsive.fallback.RelPermalink }}\"\n          width=\"160\"\n          height=\"160\"\n          alt=\"{{ $profile.title }}\"\n          loading=\"lazy\"\n        />\n        {{ end }}\n      {{ else }}\n        <div class=\"h-32 w-32 sm:h-40 sm:w-40 bg-gray-100 dark:bg-gray-800 rounded-full flex items-center justify-center\">\n          {{ partial \"functions/get_icon\" (dict \"name\" \"hero/user\" \"attributes\" \"class=\\\"h-12 w-12 text-gray-400\\\"\") }}\n        </div>\n      {{ end }}\n    </div>\n\n    <div class=\"space-y-2\">\n      <div class=\"flex items-center gap-2\">\n        <h1 class=\"text-3xl sm:text-4xl font-bold\">{{ $profile.title }}</h1>\n        {{ with $profile.status }}\n          {{ with .icon }}\n            <span class=\"text-2xl\" aria-hidden=\"true\">{{ . }}</span>\n          {{ end }}\n        {{ end }}\n      </div>\n\n      {{ with $profile.role }}\n        <div class=\"text-lg font-semibold text-neutral-700 dark:text-neutral-200\">{{ . | markdownify | emojify }}</div>\n      {{ end }}\n\n      {{ with $profile.affiliations }}\n        <div class=\"text-neutral-600 dark:text-neutral-300\">\n          {{ range $index, $org := . }}\n            {{ if gt $index 0 }} · {{ end }}\n            {{ if $org.url }}<a href=\"{{ $org.url }}\" class=\"underline\">{{ $org.name }}</a>{{ else }}{{ $org.name }}{{ end }}\n          {{ end }}\n        </div>\n      {{ end }}\n\n      {{ with $profile.bio }}\n        <div class=\"prose prose-slate dark:prose-invert max-w-none\">\n          {{ . | markdownify | emojify }}\n        </div>\n      {{ end }}\n\n      {{ if $profile.links }}\n        <div class=\"pt-2\">\n          {{ partial \"social_links\" (dict \"Params\" (dict \"profiles\" $profile.links)) }}\n        </div>\n      {{ end }}\n    </div>\n  </div>\n</section>\n\n{{ $view := \"card\" }}\n{{ $block := . }}\n{{ $paginator := .Paginate .Pages.ByDate.Reverse }}\n{{ $config := dict\n  \"columns\" 2\n  \"len\" (len $paginator.Pages)\n  \"fill_image\" true\n  \"show_date\" true\n  \"show_read_time\" true\n  \"show_read_more\" true\n}}\n\n<div class=\"flex flex-col items-center px-6\">\n  {{ partial \"functions/render_view\" (dict \"fragment\" \"start\" \"page\" $block \"item\" . \"view\" $view \"config\" $config) }}\n\n  {{ range $index, $item := $paginator.Pages }}\n    {{ partial \"functions/render_view\" (dict \"page\" . \"item\" . \"view\" $view \"index\" $index \"config\" $config) }}\n  {{ end }}\n\n  {{ partial \"functions/render_view\" (dict \"fragment\" \"end\" \"page\" $block \"item\" . \"view\" $view) }}\n\n  {{ partial \"components/paginator\" . }}\n</div>\n\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/baseof.html",
    "content": "<!doctype html>\n{{ \"<!-- This site was created with Hugo Blox. https://hugoblox.com -->\" | safeHTML }}\n{{ printf \"<!-- Last Published: %s -->\" (now | time.Format \":date_long\") | safeHTML }}\n{{- $language_code := site.LanguageCode | default \"en-us\" -}}\n<html lang=\"{{$language_code}}\" {{ if in site.Data.i18n.rtl.rtl $language_code }}dir=\"rtl\"{{else}}dir=\"ltr\"{{end}}\n      data-wc-theme-default=\"{{ (lower site.Params.hugoblox.theme.mode) | default \"system\" }}\"\n      data-hbb-relurl=\"{{ \"\" | relURL }}\">\n  {{ partial \"site_head\" . }}\n  <body class=\"bg-[var(--hb-color-background)] text-[var(--hb-color-foreground)] page-wrapper\" id=\"top\">\n    <div id=\"page-bg\"></div>\n    <div class=\"page-header {{ if site.Params.hugoblox.header.sticky }}sticky top-0 z-30{{ end }}\">\n      {{/* Load header block */}}\n      {{ $show_navbar := ((site.Params.hugoblox.header.enable | default true) | and (ne .Params.header.navbar.enable false)) | or .Params.header.navbar.enable }}\n      {{ if $show_navbar }}\n        {{- $header_config := .Params.header.navbar | default site.Params.hugoblox.header | default dict -}}\n        {{- $block_name := partial \"hbx/resolve-block-param\" (dict \"config\" $header_config \"context\" \"header\") | default \"navbar\" -}}\n        {{ $block_path := printf \"components/headers/%s.html\" $block_name }}\n        {{ if not (templates.Exists (printf \"_partials/%s\" $block_path)) }}\n          {{ errorf \"Check your `header` config in `params.yaml` and/or front matter. Cannot find header block at `layouts/_partials/%s`\" $block_path }}\n        {{ else }}\n          {{ partial $block_path . }}\n        {{ end }}\n      {{ end }}\n    </div>\n    {{ $cover := partial \"functions/get_cover_image.html\" . }}\n    <div class=\"page-body {{if and (ne .Type \"landing\") (not $cover)}} my-10{{end}}\">\n      {{ block \"main\" . }}{{ end }}\n    </div>\n    <div class=\"page-footer\">\n      {{ partial \"site_footer\" . }}\n    </div>\n\n    {{/* Notification Container for toasts/alerts */}}\n    {{ partial \"notification-container\" . }}\n\n    {{/* EXTENSIBILITY HOOK: BODY-END */}}\n    {{ partial \"functions/get_hook\" (dict \"hook\" \"body-end\" \"context\" .) }}\n\n    {{/* HBX Dev: ensure debug export and HUD are injected in dev */}}\n    {{ if hugo.IsServer | and (site.Params.hugoblox.debug.enable | default false) }}\n      {{ partial \"hooks/body-end/hbx-debug-export.html\" . }}\n      {{ partial \"hooks/body-end/hbx-debug-hud.html\" . }}\n    {{ end }}\n  </body>\n</html>\n"
  },
  {
    "path": "modules/blox/layouts/docs/list.html",
    "content": "{{- define \"main\" -}}\n  {{ partial \"docs_layout.html\" . }}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/docs/single.html",
    "content": "{{- define \"main\" -}}\n  {{ partial \"docs_layout.html\" . }}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/events/page.html",
    "content": "{{ define \"main\" }}\n\n{{/* Page Cover */}}\n{{ partial \"components/cover.html\" . }}\n\n<div class=\"mx-auto flex max-w-screen-xl\">\n  {{ partial \"components/sidebar.html\" (dict \"context\" . \"no_sidebar\" true) }}\n  {{ partial \"components/toc.html\" . }}\n  <article class=\"w-full break-words flex min-h-[calc(100vh-var(--navbar-height))] min-w-0 justify-center pb-8 pr-[calc(env(safe-area-inset-right)-1.5rem)]\">\n    <main class=\"w-full min-w-0 max-w-6xl px-6 pt-4 md:px-12\">\n\n      {{ if .Params.show_breadcrumb }}\n      <div class=\"mb-4\">\n        {{ partial \"components/breadcrumb.html\" . }}\n      </div>\n      {{ end }}\n\n      {{/* Add spacing if cover has overlapping icon */}}\n      {{ $cover := partial \"functions/get_cover_image.html\" . }}\n      {{ $has_overlap_icon := false }}\n      {{ if $cover }}\n        {{ $icon_config := .Params.cover.icon | default (dict) }}\n        {{ if or $icon_config.name $icon_config.emoji }}\n          {{ $icon_position := $icon_config.position | default \"overlap\" }}\n          {{ if eq $icon_position \"overlap\" }}\n            {{ $has_overlap_icon = true }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n\n      <h1 class=\"{{ if $has_overlap_icon }}mt-12{{ else }}mt-2{{ end }} text-4xl font-bold tracking-tight text-slate-900 dark:text-slate-100\" data-pagefind-meta=\"title\" data-pagefind-body>\n        {{/* Inline icon before title if specified */}}\n        {{ if $cover }}\n          {{ $icon_config := .Params.cover.icon | default (dict) }}\n          {{ if or $icon_config.name $icon_config.emoji }}\n            {{ $icon_position := $icon_config.position | default \"overlap\" }}\n            {{ if eq $icon_position \"inline\" }}\n              <span class=\"inline-flex items-center gap-3\">\n                {{ if $icon_config.emoji }}\n                  <span class=\"text-4xl\">{{ $icon_config.emoji }}</span>\n                {{ else if $icon_config.name }}\n                  <span class=\"w-10 h-10\">\n                    {{ partial \"components/icon.html\" (dict \"name\" $icon_config.name \"attributes\" \"class=\\\"w-full h-full\\\"\") }}\n                  </span>\n                {{ end }}\n                <span>{{- .Title -}}</span>\n              </span>\n            {{ else }}\n              {{- .Title -}}\n            {{ end }}\n          {{ else }}\n            {{- .Title -}}\n          {{ end }}\n        {{ else }}\n          {{- .Title -}}\n        {{ end }}\n      </h1>\n\n      {{ $display_date := .Params.event_start | default .Date }}\n      <div class=\"mt-4 mb-16\">\n      <div class=\"text-gray-500 dark:text-gray-300 text-sm flex items-center flex-wrap gap-y-2\">\n        {{- if $display_date | and (not .Params.hide_date) -}}\n        <span class=\"mr-1\">{{- (time $display_date) | time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") -}}</span>\n        {{- if .Params.authors }}<span class=\"mx-1\">·</span>{{ end -}}\n        {{- end -}}\n\n        {{/* Set Alpine.js flag if author notes exist */}}\n        {{ if isset .Params \"author_notes\" }}\n          {{ .Store.Set \"has_alpine\" true }}\n        {{ end }}\n\n        {{ range $i, $slug := .Params.authors }}\n          {{ $profile := partial \"functions/get_author_profile\" $slug }}\n          {{ $avatar := $profile.avatar }}\n          {{ if and $i (not $avatar) }}<span class=\"mr-1\">,</span>{{ end }}\n          <div class=\"group inline-flex items-center text-current gap-x-1.5 mx-1\">\n            {{ with $avatar }}\n              {{ $avatar_32 := .Process \"Fill 32x32 Center webp\" }}\n              <img src=\"{{ $avatar_32.RelPermalink }}\" \n                   width=\"16\"\n                   height=\"16\"\n                   alt=\"{{ $profile.title }}\" \n                   class=\"inline-block h-4 w-4 rounded-full border border-current\" \n                   loading=\"lazy\" />\n            {{ end }}\n            <div>{{ $profile.title }}</div>\n          </div>\n          {{/* Add author note tooltip if available */}}\n          {{- if isset $.Params \"author_notes\" -}}\n            {{- with (index $.Params.author_notes $i) -}}\n              <span class=\"relative inline-block ml-1\" x-data=\"{ tooltip: false }\">\n                <button\n                  @mouseenter=\"tooltip = true\"\n                  @mouseleave=\"tooltip = false\"\n                  @click=\"tooltip = !tooltip\"\n                  class=\"author-notes text-primary-600 dark:text-primary-400 hover:text-primary-800 dark:hover:text-primary-200 transition-colors cursor-help\"\n                  data-tooltip=\"{{.}}\"\n                  aria-label=\"{{.}}\"\n                  type=\"button\"\n                >\n                  <svg class=\"inline-block w-4 h-4\" fill=\"currentColor\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\">\n                    <path fill-rule=\"evenodd\" d=\"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z\" clip-rule=\"evenodd\"></path>\n                  </svg>\n                </button>\n                <div\n                  x-show=\"tooltip\"\n                  x-transition:enter=\"transition ease-out duration-200\"\n                  x-transition:enter-start=\"opacity-0 transform scale-95\"\n                  x-transition:enter-end=\"opacity-100 transform scale-100\"\n                  x-transition:leave=\"transition ease-in duration-150\"\n                  x-transition:leave-start=\"opacity-100 transform scale-100\"\n                  x-transition:leave-end=\"opacity-0 transform scale-95\"\n                  @click.away=\"tooltip = false\"\n                  class=\"absolute z-50 bottom-full left-1/2 transform -translate-x-1/2 mb-2 px-3 py-2 text-sm text-white bg-gray-900 dark:bg-gray-700 rounded-lg shadow-lg whitespace-nowrap\"\n                  x-cloak\n                >\n                  {{.}}\n                  <div class=\"absolute top-full left-1/2 transform -translate-x-1/2 -mt-1 w-0 h-0 border-l-4 border-r-4 border-t-4 border-transparent border-t-gray-900 dark:border-t-gray-700\"></div>\n                </div>\n              </span>\n            {{- end -}}\n          {{- end -}}\n        {{ end }}\n\n        {{ if ne .Params.reading_time false }}\n        <span class=\"mx-1\">·</span>\n        <span class=\"mx-1\">\n          {{ .ReadingTime }} {{ i18n \"minute_read\" }}\n        </span>\n        {{ end }}\n        </div>\n\n        <div class=\"mt-3\">\n          {{ partial \"page_links_div.html\" . }}\n        </div>\n      </div>\n\n      {{/* EMBEDDED SLIDES SECTION - Replaces featured image for events with slides */}}\n      {{ if .Params.slides }}\n        {{ partial \"components/slides-embed.html\" (dict \"page\" . \"slides_slug\" .Params.slides) }}\n      {{ else }}\n        {{/* Fallback to featured image if no slides */}}\n        {{ $featured := partial \"functions/get_featured_image.html\" . }}\n        {{/* Safely extract image parameters - handle case where image is not a map */}}\n        {{ $image_params := dict }}\n        {{ if and .Params.image (reflect.IsMap .Params.image) }}\n          {{ $image_params = .Params.image }}\n        {{ end }}\n        {{ if and $featured (not $image_params.preview_only) }}\n        {{/* Fit image within max size. */}}\n        {{ $image := $featured }}\n\n        {{/* Determine image placement. */}}\n        {{ $placement := $image_params.placement | default 1 }}{{/* Default to full column width. */}}\n        {{/* Configure responsive processing based on placement */}}\n        {{ $image_container := \"\" }}\n        {{ $responsive_sizes := slice }}\n        {{ $sizes_attr := \"\" }}\n        {{ if eq $placement 2}}\n          {{ $image_container = \"container\" }}\n          {{ $responsive_sizes = slice 480 768 1024 1200 1600 }}\n          {{ $sizes_attr = \"(max-width: 480px) 100vw, (max-width: 768px) 90vw, (max-width: 1200px) 80vw, 1200px\" }}\n        {{else if eq $placement 3}}\n          {{ $image_container = \"container-fluid\" }}\n          {{ $responsive_sizes = slice 768 1024 1366 1920 2560 }}\n          {{ $sizes_attr = \"(max-width: 768px) 100vw, (max-width: 1366px) 90vw, (max-width: 1920px) 80vw, 2560px\" }}\n        {{else}}\n          {{ $image_container = \"article-container\" }}\n          {{ $responsive_sizes = slice 320 480 640 720 960 }}\n          {{ $sizes_attr = \"(max-width: 480px) 100vw, (max-width: 640px) 90vw, (max-width: 720px) 80vw, 720px\" }}\n        {{end}}\n        \n        {{/* Process featured image using utility with placement-specific constraints */}}\n        {{ if strings.Contains $featured.MediaType.SubType \"svg\" }}\n          {{/* SVGs cannot be processed by Hugo (Fit/Fill). Render directly. */}}\n          <div class=\"article-header {{$image_container}} featured-image-wrapper mt-4 mb-16\">\n            <div style=\"position: relative\">\n              <img src=\"{{ $featured.RelPermalink }}\"\n                   width=\"100%\"\n                   data-pagefind-meta=\"image[src]\"\n                   alt=\"{{ with $image_params.alt_text }}{{.}}{{ end }}\"\n                   class=\"featured-image\"\n                   fetchpriority=\"high\">\n              {{ with $image_params.caption }}<span class=\"article-header-caption\">{{ . | markdownify | emojify }}</span>{{ end }}\n            </div>\n          </div>\n        {{ else if ne $featured.MediaType.SubType \"gif\" }}\n          {{/* Pre-fit image to placement constraints, then apply responsive processing */}}\n          {{ $fitted_image := $featured }}\n          {{ if eq $placement 2}}\n            {{ $fitted_image = $featured.Fit \"1200x2500\" }}\n          {{else if eq $placement 3}}\n            {{ $fitted_image = $featured.Fit \"2560x2560\" }}\n          {{else}}\n            {{ $fitted_image = $featured.Fit \"720x2500\" }}\n          {{end}}\n          \n          {{ $responsive := partial \"functions/process_responsive_image.html\" (dict \n              \"image\" $fitted_image \n              \"mode\" \"responsive\"\n              \"sizes\" $responsive_sizes\n          ) }}\n          \n          {{/* Featured image - use fitted image dimensions for container, responsive for srcset */}}\n          <div class=\"article-header {{$image_container}} featured-image-wrapper mt-4 mb-16\" style=\"max-width: {{$fitted_image.Width}}px; max-height: {{$fitted_image.Height}}px;\">\n            <div style=\"position: relative\">\n              <img srcset=\"{{ $responsive.srcset }}\"\n                   sizes=\"{{ $sizes_attr }}\"\n                   src=\"{{ $responsive.fallback.RelPermalink }}\" \n                   width=\"{{ $fitted_image.Width }}\" \n                   height=\"{{ $fitted_image.Height }}\" \n                   alt=\"{{ with $image_params.alt_text }}{{.}}{{ end }}\" \n                   class=\"featured-image\"\n                   fetchpriority=\"high\">\n              {{ with $image_params.caption }}<span class=\"article-header-caption\">{{ . | markdownify | emojify }}</span>{{ end }}\n            </div>\n          </div>\n        {{ else }}\n          {{/* Handle GIF - apply same placement constraints without responsive processing */}}\n          {{ $image := $featured }}\n          {{ if eq $placement 2}}\n            {{ $image = $featured.Fit \"1200x2500\" }}\n          {{else if eq $placement 3}}\n            {{ $image = $featured.Fit \"2560x2560\" }}\n          {{else}}\n            {{ $image = $featured.Fit \"720x2500\" }}\n          {{end}}\n          <div class=\"article-header {{$image_container}} featured-image-wrapper mt-4 mb-16\" style=\"max-width: {{$image.Width}}px; max-height: {{$image.Height}}px;\">\n            <div style=\"position: relative\">\n              <img src=\"{{ $image.RelPermalink }}\" \n                   width=\"{{ $image.Width }}\" \n                   height=\"{{ $image.Height }}\" \n                   alt=\"{{ with $image_params.alt_text }}{{.}}{{ end }}\" \n                   class=\"featured-image\"\n                   fetchpriority=\"high\">\n              {{ with $image_params.caption }}<span class=\"article-header-caption\">{{ . | markdownify | emojify }}</span>{{ end }}\n            </div>\n          </div>\n        {{ end }}\n        {{end}}\n      {{ end }}\n\n      {{/* EVENT METADATA */}}\n      {{ if .Params.abstract | or (eq .Type \"events\") }}\n        <div class=\"max-w-prose grid grid-cols-1 md:grid-cols-[200px_auto] gap-4 my-6\">\n\n        {{ if .Params.abstract }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"abstract\" }}</div>\n          <div>{{ .Params.abstract | markdownify }}</div>\n        {{ end }}\n\n        {{ if eq .Type \"events\" }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"date\" }}</div>\n          <div>\n            {{ partial \"functions/get_event_dates\" . }}\n          </div>\n        {{ end }}\n\n        {{ if .Params.event_name }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"event\" }}</div>\n          <div>\n            {{ with .Params.event_url }}<a href=\"{{ . }}\" target=\"_blank\" rel=\"noopener\">{{ end }}\n            {{ .Params.event_name | markdownify }}\n            {{ if .Params.event_url }}</a>{{ end }}\n          </div>\n        {{ end }}\n\n        {{ if .Params.location }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"location\" }}</div>\n          <div>\n            <p>{{ .Params.location | markdownify }}</p>\n            {{ if .Params.address }}\n              <p>{{partial \"functions/get_address\" (dict \"root\" . \"address\" .Params.address) }}</p>\n            {{end}}\n          </div>\n        {{ end }}\n\n      </div>\n      {{ end }}\n\n      <div class=\"prose prose-slate lg:prose-xl dark:prose-invert\" data-pagefind-body>\n        {{ with .Section }}\n          <span data-pagefind-filter=\"type\" style=\"display:none;\">{{ . }}</span>\n        {{ end }}\n        {{ with .Params.categories }}\n          <span data-pagefind-filter=\"category\" style=\"display:none;\">{{ index . 0 }}</span>\n        {{ end }}\n        {{ .Content }}\n      </div>\n\n      {{ partial \"components/last-edited.html\" . }}\n\n      <div class=\"container mx-auto prose prose-slate lg:prose-xl dark:prose-invert mt-5\">\n        {{ .Scratch.Set \"invert_pager\" true }}\n        {{ partial \"page_footer\" . }}\n      </div>\n\n    </main>\n  </article>\n</div>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/faq/list.html",
    "content": "{{- define \"main\" -}}\n\n<div class=\"mx-auto flex max-w-screen-xl\">\n  {{ partial \"components/sidebar.html\" (dict \"context\" . \"no_sidebar\" false) }}\n  <article class=\"w-full min-w-0 min-h-[calc(100vh-var(--navbar-height))] px-6 pt-4 pb-8 md:px-12\">\n    <div class=\"max-w-4xl mx-auto\">\n      \n      {{ if (.Params.show_breadcrumb | default true) }}\n      <div class=\"mb-4\">\n        {{ partial \"components/breadcrumb.html\" . }}\n      </div>\n      {{ end }}\n\n      <div class=\"prose prose-slate lg:prose-xl dark:prose-invert mb-8\">\n        <h1>{{ .Title }}</h1>\n        {{ with .Content }}\n          {{ . }}\n        {{ end }}\n      </div>\n\n      {{/* List all FAQ pages */}}\n      {{ $pages := .Pages.ByDate.Reverse }}\n      \n      <div class=\"grid gap-6 md:grid-cols-2\">\n        {{ range $pages }}\n        <a href=\"{{ .RelPermalink }}\" class=\"block p-6 bg-white dark:bg-gray-800 rounded-lg border border-gray-200 dark:border-gray-700 hover:border-primary-500 dark:hover:border-primary-500 transition-all hover:shadow-md\">\n          <h3 class=\"text-xl font-semibold text-gray-900 dark:text-gray-100 mb-2\">\n            {{ .Title }}\n          </h3>\n          \n          {{ with .Summary }}\n          <p class=\"text-gray-600 dark:text-gray-400 mb-3\">\n            {{ . }}\n          </p>\n          {{ end }}\n          \n          <div class=\"flex items-center justify-between text-sm text-gray-500 dark:text-gray-400\">\n            <span>\n              {{ if .Params.faqs }}\n                {{ len .Params.faqs }} {{ T \"questions_count\" | default \"questions\" }}\n              {{ else if .Pages }}\n                {{ len .Pages }} {{ T \"questions_count\" | default \"questions\" }}\n              {{ end }}\n            </span>\n            <span class=\"text-primary-600 dark:text-primary-400 font-medium\">\n              {{ T \"read_more\" | default \"View\" }} →\n            </span>\n          </div>\n        </a>\n        {{ end }}\n      </div>\n\n      {{ if eq (len $pages) 0 }}\n      <div class=\"text-center py-12 text-gray-500 dark:text-gray-400\">\n        <p class=\"text-lg\">{{ T \"no_questions_yet\" | default \"No FAQ pages available yet.\" }}</p>\n      </div>\n      {{ end }}\n\n      {{ partial \"components/paginator\" . }}\n    </div>\n  </article>\n</div>\n\n{{- end -}}\n\n"
  },
  {
    "path": "modules/blox/layouts/faq/single.html",
    "content": "{{- define \"main\" -}}\n\n{{/* Enable Alpine.js for interactive FAQ accordion */}}\n{{ .Page.Store.Set \"has_alpine\" true }}\n\n{{/* Pagefind metadata for search filtering */}}\n<div data-pagefind-body>\n  {{/* Use hidden spans for filter values - best practice per Pagefind docs */}}\n  <span data-pagefind-filter=\"type\" style=\"display:none;\">faq</span>\n  {{ with .Params.categories }}\n  <span data-pagefind-filter=\"category\" style=\"display:none;\">{{ index . 0 }}</span>\n  {{ end }}\n\n<div class=\"mx-auto flex max-w-screen-xl\">\n  {{ partial \"components/sidebar.html\" (dict \"context\" . \"no_sidebar\" false) }}\n  {{ partial \"components/toc.html\" . }}\n  <article class=\"flex w-full min-w-0 min-h-[calc(100vh-var(--navbar-height))] justify-center break-words pb-8 pr-[calc(env(safe-area-inset-right)-1.5rem)]\">\n    <main class=\"prose prose-slate lg:prose-xl dark:prose-invert w-full min-w-0 max-w-6xl px-6 pt-4 md:px-12\">\n      \n      {{ if (.Params.show_breadcrumb | default true) }}\n      <div class=\"mb-1\">\n        {{ partial \"components/breadcrumb.html\" . }}\n      </div>\n      {{ end }}\n\n      <h1 data-pagefind-meta=\"title\">{{ .Title }}</h1>\n      \n      {{ with .Content }}\n      <div class=\"lead mb-8\">\n        {{ . }}\n      </div>\n      {{ end }}\n\n      {{/* FAQ Accordion */}}\n      {{ with .Params.faqs }}\n      <div class=\"faq-container space-y-4 not-prose\" x-data=\"{ openItem: null }\">\n        {{ range $index, $item := . }}\n        <div class=\"faq-item border border-gray-200 dark:border-gray-700 rounded-lg overflow-hidden\">\n          <button\n            type=\"button\"\n            class=\"w-full px-6 py-4 text-left flex items-center justify-between bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors cursor-pointer\"\n            @click=\"openItem = openItem === {{ $index }} ? null : {{ $index }}\"\n            :aria-expanded=\"openItem === {{ $index }}\"\n          >\n            <span class=\"font-semibold text-gray-900 dark:text-gray-100 pr-8\">\n              {{ $item.question }}\n            </span>\n            <svg\n              class=\"w-5 h-5 text-gray-500 transition-transform flex-shrink-0\"\n              :class=\"{ 'rotate-180': openItem === {{ $index }} }\"\n              fill=\"none\"\n              stroke=\"currentColor\"\n              viewBox=\"0 0 24 24\"\n            >\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M19 9l-7 7-7-7\"></path>\n            </svg>\n          </button>\n          <div\n            x-show=\"openItem === {{ $index }}\"\n            x-transition:enter=\"transition ease-out duration-200\"\n            x-transition:enter-start=\"opacity-0 transform -translate-y-2\"\n            x-transition:enter-end=\"opacity-100 transform translate-y-0\"\n            x-transition:leave=\"transition ease-in duration-150\"\n            x-transition:leave-start=\"opacity-100 transform translate-y-0\"\n            x-transition:leave-end=\"opacity-0 transform -translate-y-2\"\n            class=\"px-6 py-4 bg-gray-50 dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700\"\n          >\n            <div class=\"prose prose-slate dark:prose-invert max-w-none\">\n              {{ $item.answer | markdownify }}\n            </div>\n          </div>\n        </div>\n        {{ end }}\n      </div>\n      {{ end }}\n\n      {{/* If no explicit FAQs, show child pages as FAQ items */}}\n      {{ if not .Params.faqs }}\n      {{ $child_pages := .Pages }}\n      {{ if $child_pages }}\n      <div class=\"faq-container space-y-4 not-prose\" x-data=\"{ openItem: null }\">\n        {{ range $index, $page := $child_pages }}\n        <div class=\"faq-item border border-gray-200 dark:border-gray-700 rounded-lg overflow-hidden\">\n          <button\n            type=\"button\"\n            class=\"w-full px-6 py-4 text-left flex items-center justify-between bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors cursor-pointer\"\n            @click=\"openItem = openItem === {{ $index }} ? null : {{ $index }}\"\n            :aria-expanded=\"openItem === {{ $index }}\"\n          >\n            <span class=\"font-semibold text-gray-900 dark:text-gray-100 pr-8\">\n              {{ $page.Params.question | default $page.Title }}\n            </span>\n            <svg\n              class=\"w-5 h-5 text-gray-500 transition-transform flex-shrink-0\"\n              :class=\"{ 'rotate-180': openItem === {{ $index }} }\"\n              fill=\"none\"\n              stroke=\"currentColor\"\n              viewBox=\"0 0 24 24\"\n            >\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M19 9l-7 7-7-7\"></path>\n            </svg>\n          </button>\n          <div\n            x-show=\"openItem === {{ $index }}\"\n            x-transition:enter=\"transition ease-out duration-200\"\n            x-transition:enter-start=\"opacity-0 transform -translate-y-2\"\n            x-transition:enter-end=\"opacity-100 transform translate-y-0\"\n            x-transition:leave=\"transition ease-in duration-150\"\n            x-transition:leave-start=\"opacity-100 transform translate-y-0\"\n            x-transition:leave-end=\"opacity-0 transform -translate-y-2\"\n            class=\"px-6 py-4 bg-gray-50 dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700\"\n          >\n            <div class=\"prose prose-slate dark:prose-invert max-w-none\">\n              {{ if $page.Params.answer }}\n                {{ $page.Params.answer | markdownify }}\n              {{ else }}\n                {{ $page.Content }}\n              {{ end }}\n            </div>\n            {{ if not $page.Params.answer }}\n            <a href=\"{{ $page.RelPermalink }}\" class=\"text-primary-600 dark:text-primary-400 hover:text-primary-700 dark:hover:text-primary-300 text-sm font-medium mt-2 inline-block\">\n              {{ T \"read_more\" | default \"Read more\" }} →\n            </a>\n            {{ end }}\n          </div>\n        </div>\n        {{ end }}\n      </div>\n      {{ end }}\n      {{ end }}\n\n      {{ partial \"components/last-edited.html\" . }}\n      {{ partial \"components/feedback.html\" . }}\n      {{ partial \"comments.html\" . }}\n    </main>\n  </article>\n</div>\n\n</div>{{/* End Pagefind metadata wrapper */}}\n\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/home.backlinks.json",
    "content": "{{- /* Hugo 0.126+ requires a `home` layout file even if it's empty, otherwise shows warning */ -}}\n{{- range site.Pages -}}{{- $_ := .WordCount -}}{{- end -}}\n{{- if (eq (getenv \"HUGO_BLOX_DEBUG\") \"true\") -}}\n  {{- $backlinks := (.Store.Get \"backlinks\" | uniq) | default dict -}}\n  {{- jsonify (dict \"indent\" \"  \") $backlinks -}}\n{{- else -}}\n  {{- jsonify dict -}}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/home.html",
    "content": "{{- define \"main\" -}}\n\n{{/* Check that user fully installed Hugo Blox Kit. */}}\n{{/* Commented out to allow user to have no params.yaml and just use the defaults. */}}\n{{/* if not (isset site.Params \"seo\") */}}\n{{/* errorf \"Please complete the installation of Hugo Blox Kit by following the steps at https://docs.hugoblox.com/\" */}}\n{{/* end */}}\n\n{{/* Deprecation warnings */}}\n{{/* Add here... */}}\n\n{{/* Generate homepage. */}}\n{{/* if eq .Type \"landing\" */}}{{/* Uncomment check once support other content types on homepage. */}}\n{{ partial \"landing_page.html\" . }}\n\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/index.llm.txt",
    "content": "{{- $cfg := site.Params.hugoblox.seo.ai | default dict -}}\n{{- $allows := $cfg.allow | default (slice \"/\") -}}\n{{- $disallows := $cfg.disallow | default slice -}}\n\n# llms.txt generated by Hugo Blox\n{{- with $cfg.contact }}\ncontact: {{ . }}\n{{- end }}\n{{- with $cfg.policy_url }}\npolicy: {{ . }}\n{{- end }}\n{{- with $cfg.note }}\nnote: {{ . | plainify }}\n{{- end }}\n{{- range $allows }}\nallow: {{ . }}\n{{- end }}\n{{- range $disallows }}\ndisallow: {{ . }}\n{{- end }}\n"
  },
  {
    "path": "modules/blox/layouts/index.webmanifest",
    "content": "{{- $scr := .Scratch -}}\n{{- $theme_color := \"#fff\" -}}\n{\n  \"name\": \"{{site.Title}}\",\n  \"short_name\": \"{{site.Title}}\",\n  \"lang\": \"{{ site.LanguageCode | default \"en-us\" }}\",\n  \"theme_color\": \"{{ $theme_color }}\",\n  \"background_color\": \"{{ $theme_color }}\",\n  \"icons\": [{\n    \"src\": \"{{ (partial \"functions/get_site_icon\" 192).RelPermalink }}\",\n    \"sizes\": \"192x192\",\n    \"type\": \"image/png\"\n    }, {\n    \"src\": \"{{ (partial \"functions/get_site_icon\" 512).RelPermalink }}\",\n    \"sizes\": \"512x512\",\n    \"type\": \"image/png\"\n     }],\n  \"display\": \"standalone\",\n  \"start_url\": \"{{ site.Home.RelPermalink }}?utm_source=web_app_manifest\"\n}\n"
  },
  {
    "path": "modules/blox/layouts/landing/list.html",
    "content": "{{- define \"main\" -}}\n  {{ partial \"landing_page.html\" . }}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/landing/single.html",
    "content": "{{- define \"main\" -}}\n{{ partial \"landing_page.html\" . }}\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/list.html",
    "content": "{{ define \"main\" }}\n\n<div class=\"max-w-prose mx-auto flex justify-center\">\n  <article class=\"prose prose-slate lg:prose-xl dark:prose-invert\">\n    <h1 class=\"lg:text-6xl\">{{ .Title }}</h1>\n    {{ .Content }}\n  </article>\n</div>\n\n{{ $view := .Params.view | default \"card\" }}\n{{ $block := . }}\n\n{{ $paginator := .Paginate .Pages.ByDate.Reverse }}\n{{ $config := dict \n  \"columns\" (.Params.columns | default 2) \n  \"len\" (len $paginator.Pages) \n  \"fill_image\" (.Params.fill_image | default true)\n  \"show_date\" (.Params.show_date | default true)\n  \"show_read_time\" (.Params.show_read_time | default true)\n  \"show_read_more\" (.Params.show_read_more | default true)\n}}\n\n{{/* Check if any pages have author_notes to enable Alpine.js */}}\n{{ range .Pages }}\n  {{ if isset .Params \"author_notes\" }}\n    {{ $.Store.Set \"has_alpine\" true }}\n    {{ break }}\n  {{ end }}\n{{ end }}\n\n<div class=\"flex flex-col items-center\">\n\n  {{ partial \"functions/render_view\" (dict \"fragment\" \"start\" \"page\" $block \"item\" . \"view\" $view \"config\" $config) }}\n\n  {{ range $index, $item := $paginator.Pages }}\n  {{ partial \"functions/render_view\" (dict \"page\" . \"item\" . \"view\" $view \"index\" $index \"config\" $config) }}\n  {{end}}\n\n  {{ partial \"functions/render_view\" (dict \"fragment\" \"end\" \"page\" $block \"item\" . \"view\" $view) }}\n\n  {{ partial \"components/paginator\" . }}\n\n</div>\n\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/questions/list.html",
    "content": "{{- define \"main\" -}}\n\n<div class=\"mx-auto flex max-w-screen-xl\">\n  {{ partial \"components/sidebar.html\" (dict \"context\" . \"no_sidebar\" false) }}\n  <article class=\"w-full min-w-0 min-h-[calc(100vh-var(--navbar-height))] px-6 pt-4 pb-8 md:px-12\">\n    <div class=\"max-w-4xl mx-auto\">\n      \n      {{ if (.Params.show_breadcrumb | default true) }}\n      <div class=\"mb-4\">\n        {{ partial \"components/breadcrumb.html\" . }}\n      </div>\n      {{ end }}\n\n      <div class=\"prose prose-slate lg:prose-xl dark:prose-invert mb-8\">\n        <h1>{{ .Title }}</h1>\n        {{ with .Content }}\n          {{ . }}\n        {{ end }}\n      </div>\n\n      {{/* Search box for Q&A - Integrated with Pagefind */}}\n      {{ if site.Params.hugoblox.search.enable }}\n      <div class=\"mb-8\">\n        <button\n          data-search-toggle\n          type=\"button\"\n          class=\"w-full group cursor-pointer\"\n          aria-label=\"{{ T \"search_questions\" | default \"Search questions\" }}\">\n          <div class=\"relative\">\n            <div class=\"w-full px-4 py-3 pl-10 text-left text-gray-500 dark:text-gray-400 bg-white dark:bg-gray-800 border border-gray-300 dark:border-gray-600 rounded-lg hover:border-primary-500 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent transition-all cursor-pointer\">\n              {{ T \"search_questions\" | default \"Search questions...\" }}\n            </div>\n            <svg class=\"absolute left-3 top-3.5 w-5 h-5 text-gray-400 pointer-events-none\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\"></path>\n            </svg>\n          </div>\n        </button>\n      </div>\n      {{ end }}\n\n      {{/* Category filter */}}\n      {{ $categories := .Site.Taxonomies.categories }}\n      {{ if $categories }}\n      <div class=\"mb-8\">\n        <h2 class=\"text-lg font-semibold mb-3 text-gray-900 dark:text-gray-100\">{{ T \"browse_by_category\" | default \"Browse by Category\" }}</h2>\n        <div class=\"flex flex-wrap gap-2\">\n          <a href=\"{{ .RelPermalink }}\" class=\"px-4 py-2 text-sm rounded-lg bg-primary-600 text-white hover:bg-primary-700 transition-colors\">\n            {{ T \"all\" | default \"All\" }}\n          </a>\n          {{ range $name, $taxonomy := $categories }}\n          <a href=\"{{ \"/categories/\" | relLangURL }}{{ $name | urlize }}\" class=\"px-4 py-2 text-sm rounded-lg bg-gray-100 dark:bg-gray-800 text-gray-700 dark:text-gray-300 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors\">\n            {{ $name }} ({{ $taxonomy.Count }})\n          </a>\n          {{ end }}\n        </div>\n      </div>\n      {{ end }}\n\n      {{/* Q&A List */}}\n      {{ $pages := .Pages }}\n      {{ if .Params.sort_by }}\n        {{ if eq .Params.sort_by \"date\" }}\n          {{ $pages = .Pages.ByDate.Reverse }}\n        {{ else if eq .Params.sort_by \"title\" }}\n          {{ $pages = .Pages.ByTitle }}\n        {{ else if eq .Params.sort_by \"weight\" }}\n          {{ $pages = .Pages.ByWeight }}\n        {{ end }}\n      {{ else }}\n        {{ $pages = .Pages.ByDate.Reverse }}\n      {{ end }}\n\n      <div class=\"space-y-4\">\n        {{ range $pages }}\n        <div class=\"p-6 bg-white dark:bg-gray-800 rounded-lg border border-gray-200 dark:border-gray-700 hover:border-primary-500 dark:hover:border-primary-500 transition-all hover:shadow-md\">\n          <a href=\"{{ .RelPermalink }}\" class=\"block\">\n            <h3 class=\"text-xl font-semibold text-gray-900 dark:text-gray-100 mb-2 hover:text-primary-600 dark:hover:text-primary-400\">\n              {{ .Params.question | default .Title }}\n            </h3>\n            \n            {{ if .Params.answer }}\n            <p class=\"text-gray-600 dark:text-gray-400 mb-3 line-clamp-2\">\n              {{ .Params.answer | plainify | truncate 200 }}\n            </p>\n            {{ else }}\n              {{ $summary := partial \"functions/get_summary\" . }}\n              {{ if $summary }}\n              <p class=\"text-gray-600 dark:text-gray-400 mb-3 line-clamp-2\">\n                {{ $summary }}\n              </p>\n              {{ end }}\n            {{ end }}\n            \n            <div class=\"flex flex-wrap items-center gap-3 text-sm text-gray-500 dark:text-gray-400\">\n              <span class=\"flex items-center gap-1\">\n                <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n                  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z\"></path>\n                </svg>\n                {{ .Date.Format \"Jan 2, 2006\" }}\n              </span>\n              \n              {{ range first 3 .Params.tags }}\n              <span class=\"px-2 py-0.5 rounded bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-300\">\n                #{{ . }}\n              </span>\n              {{ end }}\n              \n              {{ if .Params.difficulty }}\n              <span class=\"px-2 py-0.5 rounded bg-blue-100 dark:bg-blue-900 text-blue-800 dark:text-blue-200\">\n                {{ .Params.difficulty }}\n              </span>\n              {{ end }}\n            </div>\n          </a>\n        </div>\n        {{ end }}\n      </div>\n\n      {{ if eq (len $pages) 0 }}\n      <div class=\"text-center py-12 text-gray-500 dark:text-gray-400\">\n        <svg class=\"w-16 h-16 mx-auto mb-4 text-gray-300 dark:text-gray-600\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n          <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z\"></path>\n        </svg>\n        <p class=\"text-lg\">{{ T \"no_questions_yet\" | default \"No questions yet. Check back soon!\" }}</p>\n      </div>\n      {{ end }}\n\n      {{ partial \"components/paginator\" . }}\n    </div>\n  </article>\n</div>\n\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/questions/single.html",
    "content": "{{- define \"main\" -}}\n\n{{/* Pagefind metadata for search filtering */}}\n<div data-pagefind-body>\n  {{/* Use hidden spans for filter values - best practice per Pagefind docs */}}\n  <span data-pagefind-filter=\"type\" style=\"display:none;\">questions</span>\n  {{ with .Params.categories }}\n  <span data-pagefind-filter=\"category\" style=\"display:none;\">{{ index . 0 }}</span>\n  {{ end }}\n  {{ with .Params.difficulty }}\n  <span data-pagefind-filter=\"difficulty\" style=\"display:none;\">{{ . }}</span>\n  {{ end }}\n\n<div class=\"mx-auto flex max-w-screen-xl\">\n  {{ partial \"components/sidebar.html\" (dict \"context\" . \"no_sidebar\" false) }}\n  {{ partial \"components/toc.html\" . }}\n  <article class=\"flex w-full min-w-0 min-h-[calc(100vh-var(--navbar-height))] justify-center break-words pb-8 pr-[calc(env(safe-area-inset-right)-1.5rem)]\">\n    <main class=\"prose prose-slate lg:prose-xl dark:prose-invert w-full min-w-0 max-w-6xl px-6 pt-4 md:px-12\">\n      \n      {{ if (.Params.show_breadcrumb | default true) }}\n      <div class=\"mb-1\">\n        {{ partial \"components/breadcrumb.html\" . }}\n      </div>\n      {{ end }}\n\n      {{/* Question as title */}}\n      <div class=\"qa-question mb-6\">\n        <h1 class=\"text-4xl font-bold text-slate-900 dark:text-slate-100 mb-4\" data-pagefind-meta=\"title\">\n          {{ .Params.question | default .Title }}\n        </h1>\n        \n        {{/* Metadata */}}\n        <div class=\"text-sm text-gray-600 dark:text-gray-400 flex flex-wrap gap-4 mb-4 not-prose\">\n          {{ if .Date }}\n          <div class=\"flex items-center gap-1\">\n            <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z\"></path>\n            </svg>\n            <time datetime=\"{{ .Date.Format \"2006-01-02\" }}\">\n              {{ .Date.Format \"January 2, 2006\" }}\n            </time>\n          </div>\n          {{ end }}\n          \n          {{ if .Lastmod }}\n          <div class=\"flex items-center gap-1\">\n            <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15\"></path>\n            </svg>\n            <span>Updated {{ .Lastmod.Format \"January 2, 2006\" }}</span>\n          </div>\n          {{ end }}\n          \n          {{ with .Params.difficulty }}\n          <span class=\"px-2 py-1 rounded-full text-xs font-medium bg-blue-100 dark:bg-blue-900 text-blue-800 dark:text-blue-200\">\n            {{ . }}\n          </span>\n          {{ end }}\n        </div>\n\n        {{/* Tags and Categories */}}\n        <div class=\"flex flex-wrap gap-2 not-prose\">\n          {{ range .Params.tags }}\n          <a href=\"{{ \"/tags/\" | relLangURL }}{{ . | urlize }}\" class=\"px-3 py-1 text-sm rounded-full bg-gray-100 dark:bg-gray-800 text-gray-700 dark:text-gray-300 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors\">\n            #{{ . }}\n          </a>\n          {{ end }}\n          \n          {{ range .Params.categories }}\n          <a href=\"{{ \"/categories/\" | relLangURL }}{{ . | urlize }}\" class=\"px-3 py-1 text-sm rounded-full bg-primary-100 dark:bg-primary-900 text-primary-800 dark:text-primary-200 hover:bg-primary-200 dark:hover:bg-primary-800 transition-colors\">\n            {{ . }}\n          </a>\n          {{ end }}\n        </div>\n      </div>\n\n      {{/* Accepted Answer */}}\n      <div class=\"qa-answer\">\n        {{ if .Params.answer }}\n          {{/* Explicit answer parameter */}}\n          <div class=\"mb-4 p-4 bg-green-50 dark:bg-green-900/20 border-l-4 border-green-500 rounded\">\n            <div class=\"flex items-center gap-2 mb-2\">\n              <svg class=\"w-5 h-5 text-green-600 dark:text-green-400\" fill=\"currentColor\" viewBox=\"0 0 20 20\">\n                <path fill-rule=\"evenodd\" d=\"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z\" clip-rule=\"evenodd\"></path>\n              </svg>\n              <span class=\"font-semibold text-green-800 dark:text-green-300 not-prose\">{{ T \"accepted_answer\" | default \"Accepted Answer\" }}</span>\n            </div>\n            {{ .Params.answer | markdownify }}\n          </div>\n        {{ end }}\n        \n        {{/* Full content */}}\n        <div class=\"content\">\n          {{ .Content }}\n        </div>\n      </div>\n\n      {{/* Suggested/Additional Answers */}}\n      {{ with .Params.suggested_answer }}\n      <div class=\"mt-8 border-t pt-6\">\n        <h2 class=\"text-2xl font-bold mb-4\">{{ T \"other_answers\" | default \"Other Answers\" }}</h2>\n        {{ range $index, $answer := . }}\n        <div class=\"mb-6 p-4 bg-gray-50 dark:bg-gray-800 rounded-lg\">\n          {{ with $answer.author }}\n          <div class=\"text-sm font-medium text-gray-700 dark:text-gray-300 mb-2\">\n            {{ . }}\n            {{ with $answer.date }} · {{ (time .) | time.Format \"January 2, 2006\" }}{{ end }}\n          </div>\n          {{ end }}\n          <div class=\"text-gray-800 dark:text-gray-200\">\n            {{ $answer.text | markdownify }}\n          </div>\n          {{ with $answer.upvote_count }}\n          <div class=\"mt-2 text-sm text-gray-600 dark:text-gray-400\">\n            👍 {{ . }} {{ T \"helpful\" | default \"helpful\" }}\n          </div>\n          {{ end }}\n        </div>\n        {{ end }}\n      </div>\n      {{ end }}\n\n      {{/* Related Q&As */}}\n      {{ $related := .Site.RegularPages.Related . | first 5 }}\n      {{ with $related }}\n      <div class=\"mt-8 border-t pt-6\">\n        <h2 class=\"text-2xl font-bold mb-4\">{{ T \"related_questions\" | default \"Related Questions\" }}</h2>\n        <ul class=\"space-y-2 not-prose\">\n          {{ range . }}\n          <li>\n            <a href=\"{{ .RelPermalink }}\" class=\"text-primary-600 dark:text-primary-400 hover:text-primary-700 dark:hover:text-primary-300\">\n              {{ .Params.question | default .Title }}\n            </a>\n          </li>\n          {{ end }}\n        </ul>\n      </div>\n      {{ end }}\n\n      {{ partial \"components/last-edited.html\" . }}\n      {{ partial \"components/next-in-series.html\" . }}\n      {{ partial \"components/feedback.html\" . }}\n      {{ partial \"comments.html\" . }}\n    </main>\n  </article>\n</div>\n\n</div>{{/* End Pagefind metadata wrapper */}}\n\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/robots.txt",
    "content": "User-agent: *\n\nSitemap: {{ \"sitemap.xml\" | absURL }}\n"
  },
  {
    "path": "modules/blox/layouts/rss.xml",
    "content": "{{- /* Generate RSS v2 with full page content. */ -}}\n{{- /* Upstream Hugo bug - RSS dates can be in future: https://github.com/gohugoio/hugo/issues/3918 */ -}}\n{{- $page_context := cond .IsHome site . -}}\n{{- $pages := $page_context.RegularPages -}}\n{{- $limit := site.Config.Services.RSS.Limit -}}\n{{- if ge $limit 1 -}}\n  {{- $pages = $pages | first $limit -}}\n{{- end -}}\n{{- printf \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\" ?>\" | safeHTML }}\n<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\">\n  <channel>\n    <title>{{ if ne .Title site.Title }}{{ with .Title }}{{.}} | {{ end }}{{end}}{{ site.Title }}</title>\n    <link>{{ .Permalink }}</link>\n    {{- with .OutputFormats.Get \"RSS\" }}\n      {{ printf \"<atom:link href=%q rel=\\\"self\\\" type=%q />\" .Permalink .MediaType | safeHTML }}\n    {{ end -}}\n    <description>{{ .Title | default site.Title }}</description>\n    <generator>HugoBlox Kit (https://hugoblox.com)</generator>\n    {{- with site.LanguageCode }}<language>{{.}}</language>{{end -}}\n    {{- with site.Copyright }}<copyright>{{ replace (replace . \"{year}\" now.Year) \"&copy;\" \"©\" | plainify }}</copyright>{{end -}}\n    {{- if not .Date.IsZero }}<lastBuildDate>{{ .Date.Format \"Mon, 02 Jan 2006 15:04:05 -0700\" | safeHTML }}</lastBuildDate>{{ end -}}\n    {{- if .Scratch.Get \"og_image\" }}\n    <image>\n      <url>{{ .Scratch.Get \"og_image\" }}</url>\n      <title>{{ .Title | default site.Title }}</title>\n      <link>{{ .Permalink }}</link>\n    </image>\n    {{end -}}\n    {{ range $pages }}\n    <item>\n      <title>{{ .Title }}</title>\n      <link>{{ .Permalink }}</link>\n      <pubDate>{{ .Date.Format \"Mon, 02 Jan 2006 15:04:05 -0700\" | safeHTML }}</pubDate>\n      <guid>{{ .Permalink }}</guid>\n      <description>{{ .Content | html }}</description>\n    </item>\n    {{ end }}\n  </channel>\n</rss>\n"
  },
  {
    "path": "modules/blox/layouts/single.html",
    "content": "{{ define \"main\" }}\n\n{{ $pub_type_csl := \"\" }}\n{{ $pub_type_display := \"\" }}\n{{ if .Params.publication_types }}\n  {{ if reflect.IsSlice .Params.publication_types }}\n    {{ $pub_type_csl = index .Params.publication_types 0 }}\n    {{ $pub_type_display = i18n (printf \"pub_%s\" (strings.Replace $pub_type_csl \"-\" \"_\")) | default (strings.Title $pub_type_csl) }}\n  {{ end }}\n{{ end }}\n\n{{/* Page Cover */}}\n{{ partial \"components/cover.html\" . }}\n\n<div class=\"mx-auto flex max-w-screen-xl\">\n  {{ partial \"components/sidebar.html\" (dict \"context\" . \"no_sidebar\" true) }}\n  {{ partial \"components/toc.html\" . }}\n  <article class=\"w-full break-words flex min-h-[calc(100vh-var(--navbar-height))] min-w-0 justify-center pb-8 pr-[calc(env(safe-area-inset-right)-1.5rem)]\">\n    <main class=\"w-full min-w-0 max-w-6xl px-6 pt-4 md:px-12\">\n\n      {{ if .Params.show_breadcrumb }}\n      <div class=\"mb-4\">\n        {{ partial \"components/breadcrumb.html\" . }}\n      </div>\n      {{ end }}\n\n      {{/* Add spacing if cover has overlapping icon */}}\n      {{ $cover := partial \"functions/get_cover_image.html\" . }}\n      {{ $has_overlap_icon := false }}\n      {{ if $cover }}\n        {{ $icon_config := .Params.cover.icon | default (dict) }}\n        {{ if or $icon_config.name $icon_config.emoji }}\n          {{ $icon_position := $icon_config.position | default \"overlap\" }}\n          {{ if eq $icon_position \"overlap\" }}\n            {{ $has_overlap_icon = true }}\n          {{ end }}\n        {{ end }}\n      {{ end }}\n\n      <h1 class=\"{{ if $has_overlap_icon }}mt-12{{ else }}mt-2{{ end }} text-4xl font-bold tracking-tight text-slate-900 dark:text-slate-100\" data-pagefind-meta=\"title\" data-pagefind-body>\n        {{/* Inline icon before title if specified */}}\n        {{ if $cover }}\n          {{ $icon_config := .Params.cover.icon | default (dict) }}\n          {{ if or $icon_config.name $icon_config.emoji }}\n            {{ $icon_position := $icon_config.position | default \"overlap\" }}\n            {{ if eq $icon_position \"inline\" }}\n              <span class=\"inline-flex items-center gap-3\">\n                {{ if $icon_config.emoji }}\n                  <span class=\"text-4xl\">{{ $icon_config.emoji }}</span>\n                {{ else if $icon_config.name }}\n                  <span class=\"w-10 h-10\">\n                    {{ partial \"components/icon.html\" (dict \"name\" $icon_config.name \"attributes\" \"class=\\\"w-full h-full\\\"\") }}\n                  </span>\n                {{ end }}\n                <span>{{- .Title -}}</span>\n              </span>\n            {{ else }}\n              {{- .Title -}}\n            {{ end }}\n          {{ else }}\n            {{- .Title -}}\n          {{ end }}\n        {{ else }}\n          {{- .Title -}}\n        {{ end }}\n      </h1>\n\n      {{ $display_date := .Params.event_start | default .Date }}\n      <div class=\"mt-4 mb-16\">\n      <div class=\"text-gray-500 dark:text-gray-300 text-sm flex items-center flex-wrap gap-y-2\">\n        {{- if $display_date | and (not .Params.hide_date) -}}\n        <span class=\"mr-1\">{{- (time $display_date) | time.Format (site.Params.hugoblox.locale.date_format | default \":date_long\") -}}</span>\n        {{- if .Params.authors }}<span class=\"mx-1\">·</span>{{ end -}}\n        {{- end -}}\n\n        {{/* Set Alpine.js flag if author notes exist */}}\n        {{ if isset .Params \"author_notes\" }}\n          {{ .Store.Set \"has_alpine\" true }}\n        {{ end }}\n\n        {{ range $i, $slug := .Params.authors }}\n          {{ $profile := partial \"functions/get_author_profile\" $slug }}\n          {{ $avatar := $profile.avatar }}\n          {{ if and $i (not $avatar) }}<span class=\"mr-1\">,</span>{{ end }}\n          <div class=\"group inline-flex items-center text-current gap-x-1.5 mx-1\">\n            {{ with $avatar }}\n              {{ $avatar_32 := .Process \"Fill 32x32 Center webp\" }}\n              <img src=\"{{ $avatar_32.RelPermalink }}\" \n                   width=\"16\"\n                   height=\"16\"\n                   alt=\"{{ $profile.title }}\" \n                   class=\"inline-block h-4 w-4 rounded-full border border-current\" \n                   loading=\"lazy\" />\n            {{ end }}\n            <div>{{ $profile.title }}</div>\n          </div>\n          {{/* Add author note tooltip if available */}}\n          {{- if isset $.Params \"author_notes\" -}}\n            {{- with (index $.Params.author_notes $i) -}}\n              <span class=\"relative inline-block ml-1\" x-data=\"{ tooltip: false }\">\n                <button\n                  @mouseenter=\"tooltip = true\"\n                  @mouseleave=\"tooltip = false\"\n                  @click=\"tooltip = !tooltip\"\n                  class=\"author-notes text-primary-600 dark:text-primary-400 hover:text-primary-800 dark:hover:text-primary-200 transition-colors cursor-help\"\n                  data-tooltip=\"{{.}}\"\n                  aria-label=\"{{.}}\"\n                  type=\"button\"\n                >\n                  <svg class=\"inline-block w-4 h-4\" fill=\"currentColor\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\">\n                    <path fill-rule=\"evenodd\" d=\"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z\" clip-rule=\"evenodd\"></path>\n                  </svg>\n                </button>\n                <div\n                  x-show=\"tooltip\"\n                  x-transition:enter=\"transition ease-out duration-200\"\n                  x-transition:enter-start=\"opacity-0 transform scale-95\"\n                  x-transition:enter-end=\"opacity-100 transform scale-100\"\n                  x-transition:leave=\"transition ease-in duration-150\"\n                  x-transition:leave-start=\"opacity-100 transform scale-100\"\n                  x-transition:leave-end=\"opacity-0 transform scale-95\"\n                  @click.away=\"tooltip = false\"\n                  class=\"absolute z-50 bottom-full left-1/2 transform -translate-x-1/2 mb-2 px-3 py-2 text-sm text-white bg-gray-900 dark:bg-gray-700 rounded-lg shadow-lg whitespace-nowrap\"\n                  x-cloak\n                >\n                  {{.}}\n                  <div class=\"absolute top-full left-1/2 transform -translate-x-1/2 -mt-1 w-0 h-0 border-l-4 border-r-4 border-t-4 border-transparent border-t-gray-900 dark:border-t-gray-700\"></div>\n                </div>\n              </span>\n            {{- end -}}\n          {{- end -}}\n        {{ end }}\n\n        {{ if ne .Params.reading_time false }}\n        <span class=\"mx-1\">·</span>\n        <span class=\"mx-1\">\n          {{ .ReadingTime }} {{ i18n \"minute_read\" }}\n        </span>\n        {{ end }}\n        </div>\n\n        <div class=\"mt-3\">\n          {{ partial \"page_links_div.html\" . }}\n        </div>\n      </div>\n\n\n\n      {{ $featured := partial \"functions/get_featured_image.html\" . }}\n      {{/* Safely extract image parameters - handle case where image is not a map */}}\n      {{ $image_params := dict }}\n      {{ if and .Params.image (reflect.IsMap .Params.image) }}\n        {{ $image_params = .Params.image }}\n      {{ end }}\n      {{/* Featured image layout */}}\n      {{ if and $featured (not $image_params.preview_only) }}\n      {{/* Fit image within max size. */}}\n      {{ $image := $featured }}\n\n      {{/* Determine image placement. */}}\n      {{ $placement := $image_params.placement | default 1 }}{{/* Default to full column width. */}}\n      {{/* Configure responsive processing based on placement */}}\n      {{ $image_container := \"\" }}\n      {{ $responsive_sizes := slice }}\n      {{ $sizes_attr := \"\" }}\n      {{ if eq $placement 2}}\n        {{ $image_container = \"container\" }}\n        {{ $responsive_sizes = slice 480 768 1024 1200 1600 }}\n        {{ $sizes_attr = \"(max-width: 480px) 100vw, (max-width: 768px) 90vw, (max-width: 1200px) 80vw, 1200px\" }}\n      {{else if eq $placement 3}}\n        {{ $image_container = \"container-fluid\" }}\n        {{ $responsive_sizes = slice 768 1024 1366 1920 2560 }}\n        {{ $sizes_attr = \"(max-width: 768px) 100vw, (max-width: 1366px) 90vw, (max-width: 1920px) 80vw, 2560px\" }}\n      {{else}}\n        {{ $image_container = \"article-container\" }}\n        {{ $responsive_sizes = slice 320 480 640 720 960 }}\n        {{ $sizes_attr = \"(max-width: 480px) 100vw, (max-width: 640px) 90vw, (max-width: 720px) 80vw, 720px\" }}\n      {{end}}\n      \n      {{/* Process featured image using utility with placement-specific constraints */}}\n      {{ if strings.Contains $featured.MediaType.SubType \"svg\" }}\n        {{/* SVGs cannot be processed by Hugo (Fit/Fill). Render directly. */}}\n        <div class=\"article-header {{$image_container}} featured-image-wrapper mt-4 mb-16\">\n          <div style=\"position: relative\">\n            <img src=\"{{ $featured.RelPermalink }}\"\n                 data-pagefind-meta=\"image[src]\"\n                 alt=\"{{ with $image_params.alt_text }}{{.}}{{ end }}\"\n                 class=\"featured-image\"\n                 fetchpriority=\"high\">\n            {{ with $image_params.caption }}<span class=\"article-header-caption\">{{ . | markdownify | emojify }}</span>{{ end }}\n          </div>\n        </div>\n      {{ else if ne $featured.MediaType.SubType \"gif\" }}\n        {{/* Pre-fit image to placement constraints, then apply responsive processing */}}\n        {{ $fitted_image := $featured }}\n        {{ if eq $placement 2}}\n          {{ $fitted_image = $featured.Fit \"1200x2500\" }}\n        {{else if eq $placement 3}}\n          {{ $fitted_image = $featured.Fit \"2560x2560\" }}\n        {{else}}\n          {{ $fitted_image = $featured.Fit \"720x2500\" }}\n        {{end}}\n        \n        {{ $responsive := partial \"functions/process_responsive_image.html\" (dict \n            \"image\" $fitted_image \n            \"mode\" \"responsive\"\n            \"sizes\" $responsive_sizes\n        ) }}\n        \n        {{/* Featured image - use fitted image dimensions for container, responsive for srcset */}}\n        <div class=\"article-header {{$image_container}} featured-image-wrapper mt-4 mb-16\" style=\"max-width: {{$fitted_image.Width}}px; max-height: {{$fitted_image.Height}}px;\">\n          <div style=\"position: relative\">\n            <img srcset=\"{{ $responsive.srcset }}\"\n                 sizes=\"{{ $sizes_attr }}\"\n                 src=\"{{ $responsive.fallback.RelPermalink }}\" \n                 data-pagefind-meta=\"image[src]\"\n                 width=\"{{ $fitted_image.Width }}\" \n                 height=\"{{ $fitted_image.Height }}\" \n                 alt=\"{{ with $image_params.alt_text }}{{.}}{{ end }}\" \n                 class=\"featured-image\"\n                 fetchpriority=\"high\">\n            {{ with $image_params.caption }}<span class=\"article-header-caption\">{{ . | markdownify | emojify }}</span>{{ end }}\n          </div>\n        </div>\n      {{ else }}\n        {{/* Handle GIF - apply same placement constraints without responsive processing */}}\n        {{ $image := $featured }}\n        {{ if eq $placement 2}}\n          {{ $image = $featured.Fit \"1200x2500\" }}\n        {{else if eq $placement 3}}\n          {{ $image = $featured.Fit \"2560x2560\" }}\n        {{else}}\n          {{ $image = $featured.Fit \"720x2500\" }}\n        {{end}}\n        <div class=\"article-header {{$image_container}} featured-image-wrapper mt-4 mb-16\" style=\"max-width: {{$image.Width}}px; max-height: {{$image.Height}}px;\">\n          <div style=\"position: relative\">\n            <img src=\"{{ $image.RelPermalink }}\" \n                 data-pagefind-meta=\"image[src]\"\n                 width=\"{{ $image.Width }}\" \n                 height=\"{{ $image.Height }}\" \n                 alt=\"{{ with $image_params.alt_text }}{{.}}{{ end }}\" \n                 class=\"featured-image\"\n                 fetchpriority=\"high\">\n            {{ with $image_params.caption }}<span class=\"article-header-caption\">{{ . | markdownify | emojify }}</span>{{ end }}\n          </div>\n        </div>\n      {{ end }}\n      {{end}}\n\n      {{/* EVENT / PUBLICATION METADATA */}}\n      {{ if .Params.abstract | or (eq .Type \"publications\") | or (eq .Type \"events\") }}\n        <div class=\"max-w-prose grid grid-cols-1 md:grid-cols-[200px_auto] gap-4 my-6\">\n\n        {{ if .Params.abstract }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"abstract\" }}</div>\n          <div>{{ .Params.abstract | markdownify }}</div>\n        {{ end }}\n\n        {{/* If the type is Uncategorized, hide the type. */}}\n        {{ if $pub_type_display }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"publication_type\" }}</div>\n          <div>\n            {{ if and .Params.publication_types (gt (len .Params.publication_types) 0) }}\n            <a href=\"{{ range first 1 (.GetTerms \"publication_types\") }}{{.RelPermalink}}{{end}}\">\n            {{ $pub_type_display }}\n            </a>\n            {{ end }}\n          </div>\n        {{ end }}\n\n        {{ if .Params.publication }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"publication\" }}</div>\n          <div>{{ .Params.publication | markdownify }}</div>\n        {{ end }}\n\n        {{ if eq .Type \"events\" }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"date\" }}</div>\n          <div>\n            {{ partial \"functions/get_event_dates\" . }}\n          </div>\n        {{ end }}\n\n        {{ if .Params.event_name }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"event\" }}</div>\n          <div>\n            {{ with .Params.event_url }}<a href=\"{{ . }}\" target=\"_blank\" rel=\"noopener\">{{ end }}\n            {{ .Params.event_name | markdownify }}\n            {{ if .Params.event_url }}</a>{{ end }}\n          </div>\n        {{ end }}\n\n        {{ if .Params.location }}\n          <div class=\"font-bold text-2xl\">{{ i18n \"location\" }}</div>\n          <div>\n            <p>{{ .Params.location | markdownify }}</p>\n            {{ if .Params.address }}\n              <p>{{partial \"functions/get_address\" (dict \"root\" . \"address\" .Params.address) }}</p>\n            {{end}}\n          </div>\n        {{ end }}\n\n      </div>\n      {{ end }}\n\n      <div class=\"prose prose-slate lg:prose-xl dark:prose-invert\" data-pagefind-body>\n        {{ with .Section }}\n          <span data-pagefind-filter=\"type\" style=\"display:none;\">{{ . }}</span>\n        {{ end }}\n        {{ with .Params.categories }}\n          <span data-pagefind-filter=\"category\" style=\"display:none;\">{{ index . 0 }}</span>\n        {{ end }}\n        {{ .Content }}\n      </div>\n\n      {{ partial \"components/last-edited.html\" . }}\n\n      <div class=\"container mx-auto prose prose-slate lg:prose-xl dark:prose-invert mt-5\">\n        {{ .Scratch.Set \"invert_pager\" true }}\n        {{ partial \"page_footer\" . }}\n      </div>\n\n    </main>\n  </article>\n</div>\n{{ end }}\n"
  },
  {
    "path": "modules/blox/layouts/sitemap.xml",
    "content": "{{ printf \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\"?>\" | safeHTML }}\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"\n        xmlns:xhtml=\"http://www.w3.org/1999/xhtml\">\n  {{/* Check that page is built (has a URL) and is not private. */}}\n  {{ range where (where .Data.Pages \"Permalink\" \"!=\" \"\") \"Params.private\" \"ne\" true }}\n  <url>\n    <loc>{{ .Permalink }}</loc>\n    {{- if not .Lastmod.IsZero }}<lastmod>{{ safeHTML ( .Lastmod.Format \"2006-01-02T15:04:05-07:00\" ) }}</lastmod>{{ end }}\n    {{- with .Sitemap.ChangeFreq }}<changefreq>{{ . }}</changefreq>{{ end }}\n    {{- if ge .Sitemap.Priority 0.0 }}<priority>{{ .Sitemap.Priority }}</priority>{{ end }}\n    {{- if .IsTranslated -}}\n\n    {{- range .Translations -}}\n    <xhtml:link\n      rel=\"alternate\"\n      hreflang=\"{{ .Language.Lang }}\"\n      href=\"{{ .Permalink }}\"\n    />\n    {{- end -}}\n\n    <xhtml:link\n      rel=\"alternate\"\n      hreflang=\"{{ .Language.Lang }}\"\n      href=\"{{ .Permalink }}\"\n    />\n\n    {{- end -}}\n  </url>\n  {{- end -}}\n</urlset>\n"
  },
  {
    "path": "modules/blox/layouts/taxonomy.html",
    "content": "{{ define \"main\" }}\n\n{{/* Exclude taxonomy pages from search indexing */}}\n<div data-pagefind-ignore>\n\n<div class=\"max-w-prose mx-auto flex justify-start\">\n  <article class=\"prose prose-slate lg:prose-xl dark:prose-invert max-w-none\">\n    <h1 class=\"lg:text-6xl !mb-4\">{{ .Title }}</h1>\n    {{ .Content }}\n  </article>\n</div>\n\n<div class=\"max-w-prose mx-auto my-5\">\n\n  <div class=\"flex flex-row gap-6 flex-wrap\">\n    {{- $type := .Type }}\n    {{- range $key, $value := .Data.Terms.Alphabetical }}\n      {{- $name := .Name }}\n      {{- $count := .Count }}\n      {{- with site.GetPage (printf \"/%s/%s\" $type $name) }}\n\n        <a href=\"{{ .RelPermalink }}\" class=\"inline-flex items-center px-5 py-2.5 text-sm font-medium text-center text-white bg-primary-700 rounded-lg hover:bg-primary-800 focus:ring-4 focus:outline-none focus:ring-primary-300 dark:bg-primary-600 dark:hover:bg-primary-700 dark:focus:ring-primary-800\">\n          {{ .Title }}\n          <span class=\"inline-flex items-center justify-center w-4 h-4 ms-2 text-xs font-semibold text-primary-800 bg-primary-200 rounded-full\">\n            {{ $count }}\n          </span>\n        </a>\n\n      {{- end }}\n    {{- end }}\n  </div>\n\n</div>\n\n</div>{{/* End pagefind-ignore wrapper */}}\n\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/layouts/terms.html",
    "content": "{{ define \"main\" }}\n\n{{/* Exclude taxonomy term listing pages from search indexing */}}\n<div data-pagefind-ignore>\n\n<div class=\"max-w-prose mx-auto flex justify-start\">\n  <article class=\"prose prose-slate lg:prose-xl dark:prose-invert max-w-none\">\n    <h1 class=\"lg:text-6xl !mb-4\">{{ .Title }}</h1>\n    {{ .Content }}\n  </article>\n</div>\n\n<div class=\"max-w-prose mx-auto my-5\">\n\n  <div class=\"flex flex-row gap-6 flex-wrap\">\n    {{- $type := .Type }}\n    {{- range $key, $value := .Data.Terms.Alphabetical }}\n      {{- $name := .Name }}\n      {{- $count := .Count }}\n      {{- with site.GetPage (printf \"/%s/%s\" $type $name) }}\n\n        <a href=\"{{ .RelPermalink }}\" class=\"inline-flex items-center px-5 py-2.5 text-sm font-medium text-center text-white bg-primary-700 rounded-lg hover:bg-primary-800 focus:ring-4 focus:outline-none focus:ring-primary-300 dark:bg-primary-600 dark:hover:bg-primary-700 dark:focus:ring-primary-800\">\n          {{ .Title }}\n          <span class=\"inline-flex items-center justify-center w-4 h-4 ms-2 text-xs font-semibold text-primary-800 bg-primary-200 rounded-full\">\n            {{ $count }}\n          </span>\n        </a>\n\n      {{- end }}\n    {{- end }}\n  </div>\n\n</div>\n\n</div>{{/* End pagefind-ignore wrapper */}}\n\n{{- end -}}\n"
  },
  {
    "path": "modules/blox/package.json",
    "content": "{\n  \"name\": \"@hugoblox/blox-tailwind\",\n  \"version\": \"1.0.0\",\n  \"description\": \"Hugo Blox Tailwind UI Components\",\n  \"type\": \"module\",\n  \"scripts\": {\n    \"dev\": \"hugo server --source=../../test --config=../../test/config.yaml --themesDir=../.. --buildDrafts --buildFuture --disableFastRender\",\n    \"build\": \"hugo --source=../../test --config=../../test/config.yaml --themesDir=../.. --minify\",\n    \"type-check\": \"tsc --noEmit\",\n    \"lint\": \"biome check .\"\n  },\n  \"dependencies\": {\n  },\n  \"devDependencies\": {\n    \"@preact/preset-vite\": \"^2.8.1\",\n    \"@types/node\": \"^20.10.5\",\n    \"typescript\": \"^5.3.3\"\n  },\n  \"engines\": {\n    \"node\": \">=20.0.0\"\n  }\n}"
  },
  {
    "path": "modules/blox/pnpm-workspace.yaml",
    "content": "ignoredBuiltDependencies:\n  - esbuild\n"
  },
  {
    "path": "modules/blox/schemas/blocks.json",
    "content": "{\n  \"$schema\": \"https://json-schema.org/draft-07/schema#\",\n  \"title\": \"HugoBlox Block Registry\",\n  \"description\": \"Discovery registry for HugoBlox blocks. For full schemas with validation, hints, and design options, see schemaUrl (requires API access).\",\n  \"type\": \"object\",\n  \"properties\": {\n    \"version\": {\n      \"const\": \"1.0.0\"\n    },\n    \"blocks\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"$ref\": \"#/definitions/BlockEntry\"\n      }\n    }\n  },\n  \"definitions\": {\n    \"BlockEntry\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"name\": {\n          \"type\": \"string\"\n        },\n        \"type\": {\n          \"type\": \"string\",\n          \"enum\": [\"registry:block\"]\n        },\n        \"title\": {\n          \"type\": \"string\"\n        },\n        \"description\": {\n          \"type\": \"string\"\n        },\n        \"categories\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"type\": \"string\"\n          }\n        },\n        \"meta\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"hugoblox\": {\n              \"type\": \"object\",\n              \"properties\": {\n                \"capabilities\": {\n                  \"type\": \"array\",\n                  \"items\": {\n                    \"type\": \"string\"\n                  }\n                },\n                \"complexity\": {\n                  \"type\": \"string\",\n                  \"enum\": [\"simple\", \"moderate\", \"complex\"]\n                },\n                \"preact\": {\n                  \"type\": \"boolean\"\n                },\n                \"schemaUrl\": {\n                  \"type\": \"string\",\n                  \"format\": \"uri\"\n                }\n              }\n            }\n          }\n        }\n      },\n      \"required\": [\"name\", \"type\", \"title\", \"description\", \"categories\"]\n    }\n  },\n  \"version\": \"1.0.0\",\n  \"blocks\": [\n    {\n      \"name\": \"hero\",\n      \"type\": \"registry:block\",\n      \"title\": \"Hero Section\",\n      \"description\": \"Eye-catching landing section with a bold headline, supporting text, an optional announcement banner, and primary + secondary call-to-action buttons.\",\n      \"categories\": [\"marketing\", \"landing\"],\n      \"meta\": {\n        \"hugoblox\": {\n          \"capabilities\": [\"headline\", \"subtitle\", \"dual-cta\", \"announcement-banner\"],\n          \"complexity\": \"simple\",\n          \"preact\": true,\n          \"schemaUrl\": \"https://api.hugoblox.com/v1/blocks/hero/schema\"\n        }\n      }\n    },\n    {\n      \"name\": \"stats\",\n      \"type\": \"registry:block\",\n      \"title\": \"Statistics\",\n      \"description\": \"Showcase key metrics and achievements with animated counters that count up as visitors scroll into view.\",\n      \"categories\": [\"social-proof\", \"marketing\"],\n      \"meta\": {\n        \"hugoblox\": {\n          \"capabilities\": [\"animated-counters\", \"multiple-layouts\", \"icons\"],\n          \"complexity\": \"moderate\",\n          \"preact\": true,\n          \"schemaUrl\": \"https://api.hugoblox.com/v1/blocks/stats/schema\"\n        }\n      }\n    },\n    {\n      \"name\": \"features\",\n      \"type\": \"registry:block\",\n      \"title\": \"Features Grid\",\n      \"description\": \"Highlight product or service capabilities in a clean grid layout, each with an icon, heading, and short description.\",\n      \"categories\": [\"features\", \"marketing\"],\n      \"meta\": {\n        \"hugoblox\": {\n          \"capabilities\": [\"icon-grid\", \"section-header\", \"responsive-columns\"],\n          \"complexity\": \"simple\",\n          \"preact\": true,\n          \"schemaUrl\": \"https://api.hugoblox.com/v1/blocks/features/schema\"\n        }\n      }\n    },\n    {\n      \"name\": \"testimonials\",\n      \"type\": \"registry:block\",\n      \"title\": \"Testimonials\",\n      \"description\": \"Build trust with customer quotes displayed alongside their photo, name, and role.\",\n      \"categories\": [\"social-proof\", \"marketing\"],\n      \"meta\": {\n        \"hugoblox\": {\n          \"capabilities\": [\"quote-cards\", \"avatars\", \"section-header\"],\n          \"complexity\": \"simple\",\n          \"preact\": true,\n          \"schemaUrl\": \"https://api.hugoblox.com/v1/blocks/testimonials/schema\"\n        }\n      }\n    },\n    {\n      \"name\": \"cta-image-paragraph\",\n      \"type\": \"registry:block\",\n      \"title\": \"CTA Image Paragraph\",\n      \"description\": \"Tell your story with alternating image-and-text rows, each with a feature checklist and a call-to-action button.\",\n      \"categories\": [\"cta\", \"marketing\", \"landing\"],\n      \"meta\": {\n        \"hugoblox\": {\n          \"capabilities\": [\"alternating-layout\", \"responsive-images\", \"feature-list\", \"cta-button\"],\n          \"complexity\": \"moderate\",\n          \"preact\": true,\n          \"schemaUrl\": \"https://api.hugoblox.com/v1/blocks/cta-image-paragraph/schema\"\n        }\n      }\n    },\n    {\n      \"name\": \"cta-card\",\n      \"type\": \"registry:block\",\n      \"title\": \"CTA Card\",\n      \"description\": \"Drive conversions with a bold, centered card featuring a headline, supporting text, and a prominent call-to-action button.\",\n      \"categories\": [\"cta\", \"marketing\"],\n      \"meta\": {\n        \"hugoblox\": {\n          \"capabilities\": [\"glassmorphism\", \"auto-text-color\", \"gradient-background\", \"cta-button\"],\n          \"complexity\": \"moderate\",\n          \"preact\": true,\n          \"schemaUrl\": \"https://api.hugoblox.com/v1/blocks/cta-card/schema\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "modules/blox/theme.toml",
    "content": "name = \"Hugo Blox - Tailwind\"\nlicense = \"MIT\"\nlicenselink = \"https://github.com/HugoBlox/kit/blob/main/LICENSE.md\"\ndescription = \"Easily create a beautiful website your way with fully customizable blocks - build landing pages, marketing sites, blogs, portfolios, docs, and more. Used by Nvidia, Stanford, and 1000s of others.\"\nhomepage = \"https://github.com/HugoBlox/kit\"\ndemosite = \"https://hugoblox.com/templates/dev-portfolio/\"\ntags = [\"blog\",\n        \"minimal\",\n        \"personal\",\n        \"dark\",\n        \"light\",\n        \"multilingual\",\n        \"portfolio\",\n        \"landing\",\n        \"tailwind\",\n        \"popular\",\n        \"company\",\n        \"docs\",\n        \"saas\"\n        ]\nfeatures = [\"page builder\", \"widgets\", \"color themes\", \"dark mode\", \"customizable\", \"filterable portfolio\",\n            \"blog\", \"create landing pages\", \"gallery\", \"contact form\"]\n\n[author]\n  name = \"George Cushen\"\n  homepage = \"https://neuralgeo.com\"\n"
  },
  {
    "path": "modules/integrations/netlify/README.md",
    "content": "# Hugo Plugin for Netlify\n\nA build plugin to integrate your Hugo site seamlessly with Netlify.\n\nThe plugin automatically generates a `_headers` and `_redirects` file at the root of the public folder to configure [HTTP headers](https://www.netlify.com/docs/headers-and-basic-auth/) and [redirects](https://www.netlify.com/docs/redirects/) on Netlify.\n\nBy default, the plugin will help secure your site with some common security headers. You can easily add or replace headers through the plugin config.\n\n## Install\n\n1. Edit `config/_default/config.yaml` to install the Netlify integration module:\n\n   ```yaml\n   module:\n     imports:\n       - path: github.com/HugoBlox/kit/modules/integrations/netlify\n   ```\n\n2. Tell Hugo to generate the Netlify `headers` and `redirects` files by adding them to Hugo's `outputs` config. For example,\n\n   ```yaml\n   outputs:\n     home: [..., headers, redirects]\n   ```\n\n## Configure\n\n- 📚 [View the **documentation**](https://docs.hugoblox.com/hugo-tutorials/security/)\n"
  },
  {
    "path": "modules/integrations/netlify/config.yaml",
    "content": "module:\n  mounts:\n    - source: src/layouts\n      target: layouts\nmediaTypes:\n  text/netlify:\n    delimiter: ''\n    suffixes: ['']\noutputFormats:\n  headers:\n    baseName: _headers\n    isPlainText: true\n    mediatype: text/netlify\n    notAlternative: true\n  redirects:\n    baseName: _redirects\n    isPlainText: true\n    mediatype: text/netlify\n    notAlternative: true\n"
  },
  {
    "path": "modules/integrations/netlify/go.mod",
    "content": "module github.com/HugoBlox/kit/modules/integrations/netlify\n\ngo 1.19\n"
  },
  {
    "path": "modules/integrations/netlify/src/layouts/index.headers",
    "content": "{{- $csp_policy := site.Params.hugoblox.security.csp.policy | default \"\" -}}\n{{- $csp_report_only := site.Params.hugoblox.security.csp.report_only | default false -}}\n{{- $frame_options := site.Params.hugoblox.security.frame_options | default \"sameorigin\" -}}\n{{- $default_perms := \"accelerometer=(), camera=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=()\" -}}\n{{- $permissions_policy := site.Params.hugoblox.security.permissions_policy | default $default_perms -}}\n# Netlify headers\n# Automatically generated\n# Documentation: https://docs.hugoblox.com/hugo-tutorials/security/\n/*\n  {{- if eq $frame_options \"allow\" -}}\n    {{/* No X-Frame-Options header - allows all origins */}}\n  {{- else if eq $frame_options \"sameorigin\" -}}\n  X-Frame-Options: SAMEORIGIN\n  {{- else -}}\n  X-Frame-Options: DENY\n  {{- end -}}\n  X-XSS-Protection: 1; mode=block\n  X-Content-Type-Options: nosniff\n  Strict-Transport-Security: max-age=31536000; includeSubDomains\n  Referrer-Policy: strict-origin-when-cross-origin\n  {{with $csp_policy}}Content-Security-Policy{{if $csp_report_only}}-Report-Only{{end}}: {{replaceRE \"(\\\\s\\\\s+)\" \" \" (trim . \" \")}}{{end}}\n  {{with $permissions_policy}}Permissions-Policy: {{replaceRE \"(\\\\s\\\\s+)\" \" \" (trim . \" \")}}{{end}}\n/index.webmanifest\n  Content-Type: application/manifest+json\n/index.xml\n  Content-Type: application/rss+xml\n"
  },
  {
    "path": "modules/integrations/netlify/src/layouts/index.redirects",
    "content": "# Netlify redirects\n# Automatically generated\n# Documentation: https://docs.netlify.com/routing/redirects/\n{{- /* Note: code purposely un-indented to preserve required spacing in output. */ -}}\n{{- range $page := where site.AllPages \".Aliases\" \"!=\" nil -}}\n{{- range $page.Aliases }}\n{{ .|relLangURL }} {{ $page.RelPermalink -}}\n{{- end }}\n{{- end -}}\n"
  },
  {
    "path": "modules/slides/README.md",
    "content": "# Slides module (Reveal.js)\n\nA Hugo Blox module for [Reveal.JS](https://revealjs.com/).\n\nEmpowers you to easily create, share, and present slide decks using the open, future-proof Markdown standard.\n\nSupports math, syntax highlighting, diagrams, speaker notes, and much more!\n\n## Install\n\n1. Add the module to your `config/_default/config.yaml`:\n\n   ```yaml\n   module:\n     imports:\n       - path: github.com/HugoBlox/kit/modules/slides\n   ```\n\n## Branding & Customization\n\n### Logo and Overlays\n\nAdd consistent branding across all slides by configuring `slides.branding` in your site config or slide front matter:\n\n```yaml\n# In hugo.yaml (site-wide) or slide front matter (per-deck)\nparams:\n  slides:\n    branding:\n      logo:\n        filename: \"logo.png\"       # File in assets/media/\n        position: \"top-left\"       # top-left, top-right, bottom-left, bottom-right\n        width: \"80px\"              # Logo width\n        margin: \"20px\"             # Distance from edges\n      title:\n        show: true                 # Show presentation title overlay\n        text: \"Short Title\"        # Optional: Override auto-detected title\n        position: \"bottom-left\"\n      author:\n        show: true                 # Show author name overlay\n        position: \"bottom-right\"\n      footer:\n        text: \"© 2026 Copyright\"   # Footer text (e.g. copyright)\n        position: \"bottom-center\"  # bottom-center, bottom-left, bottom-right\n\n```\n\n### Hooks System\n\nInject custom content into presentations without modifying module files. Create partials in your project's `layouts/_partials/hooks/` directory:\n\n| Hook | Location | Use Case |\n|------|----------|----------|\n| `slide-header/` | Top of presentation | Course code, session info |\n| `slide-footer/` | Bottom of presentation | Social handles, copyright |\n| `slide-head-end/` | End of `<head>` | Custom CSS, fonts, analytics |\n| `slide-body-end/` | End of `<body>` | Custom JS, Reveal.js plugins |\n\nExample: Create `layouts/_partials/hooks/slide-footer/social.html`:\n\n```html\n<div style=\"font-size: 0.5em; opacity: 0.6;\">\n  @yourhandle · yoursite.com\n</div>\n```\n\nSee `_example.html` files in each hook directory for more examples.\n\n## Per-Slide Visibility\n\nControl branding visibility on individual slides using HTML comments:\n\n- `<!-- no-branding -->`: Hide all branding elements (logo, header, footer)\n- `<!-- no-header -->`: Hide only the header (and logo)\n- `<!-- no-footer -->`: Hide only the footer\n\nExample:\n\n```markdown\n---\n\n<!-- no-branding -->\n\n## Full Screen Image Slide\n\nThis slide will have no branding overlays.\n```\n\n## Usage\n\n[View the documentation](https://docs.hugoblox.com/content/slides/)\n"
  },
  {
    "path": "modules/slides/assets/css/libs/chroma/dracula.css",
    "content": "/* Background */ .bg {\n  color: #f8f8f2;\n  background-color: #282a36;\n}\n/* PreWrapper */ .chroma {\n  color: #f8f8f2;\n  background-color: #282a36;\n}\n/* Other */ .chroma .x {\n}\n/* Error */ .chroma .err {\n}\n/* CodeLine */ .chroma .cl {\n}\n/* LineTableTD */ .chroma .lntd {\n  vertical-align: top;\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\n/* LineTable */ .chroma .lntable {\n  border-spacing: 0;\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\n/* LineHighlight */ .chroma .hl {\n  background-color: #ffc;\n}\n/* LineNumbersTable */ .chroma .lnt {\n  white-space: pre;\n  user-select: none;\n  margin-right: 0.4em;\n  padding: 0 0.4em 0 0.4em;\n  color: #7f7f7f;\n}\n/* LineNumbers */ .chroma .ln {\n  white-space: pre;\n  user-select: none;\n  margin-right: 0.4em;\n  padding: 0 0.4em 0 0.4em;\n  color: #7f7f7f;\n}\n/* Line */ .chroma .line {\n  display: flex;\n}\n/* Keyword */ .chroma .k {\n  color: #ff79c6;\n}\n/* KeywordConstant */ .chroma .kc {\n  color: #ff79c6;\n}\n/* KeywordDeclaration */ .chroma .kd {\n  color: #8be9fd;\n  font-style: italic;\n}\n/* KeywordNamespace */ .chroma .kn {\n  color: #ff79c6;\n}\n/* KeywordPseudo */ .chroma .kp {\n  color: #ff79c6;\n}\n/* KeywordReserved */ .chroma .kr {\n  color: #ff79c6;\n}\n/* KeywordType */ .chroma .kt {\n  color: #8be9fd;\n}\n/* Name */ .chroma .n {\n}\n/* NameAttribute */ .chroma .na {\n  color: #50fa7b;\n}\n/* NameBuiltin */ .chroma .nb {\n  color: #8be9fd;\n  font-style: italic;\n}\n/* NameBuiltinPseudo */ .chroma .bp {\n}\n/* NameClass */ .chroma .nc {\n  color: #50fa7b;\n}\n/* NameConstant */ .chroma .no {\n}\n/* NameDecorator */ .chroma .nd {\n}\n/* NameEntity */ .chroma .ni {\n}\n/* NameException */ .chroma .ne {\n}\n/* NameFunction */ .chroma .nf {\n  color: #50fa7b;\n}\n/* NameFunctionMagic */ .chroma .fm {\n}\n/* NameLabel */ .chroma .nl {\n  color: #8be9fd;\n  font-style: italic;\n}\n/* NameNamespace */ .chroma .nn {\n}\n/* NameOther */ .chroma .nx {\n}\n/* NameProperty */ .chroma .py {\n}\n/* NameTag */ .chroma .nt {\n  color: #ff79c6;\n}\n/* NameVariable */ .chroma .nv {\n  color: #8be9fd;\n  font-style: italic;\n}\n/* NameVariableClass */ .chroma .vc {\n  color: #8be9fd;\n  font-style: italic;\n}\n/* NameVariableGlobal */ .chroma .vg {\n  color: #8be9fd;\n  font-style: italic;\n}\n/* NameVariableInstance */ .chroma .vi {\n  color: #8be9fd;\n  font-style: italic;\n}\n/* NameVariableMagic */ .chroma .vm {\n}\n/* Literal */ .chroma .l {\n}\n/* LiteralDate */ .chroma .ld {\n}\n/* LiteralString */ .chroma .s {\n  color: #f1fa8c;\n}\n/* LiteralStringAffix */ .chroma .sa {\n  color: #f1fa8c;\n}\n/* LiteralStringBacktick */ .chroma .sb {\n  color: #f1fa8c;\n}\n/* LiteralStringChar */ .chroma .sc {\n  color: #f1fa8c;\n}\n/* LiteralStringDelimiter */ .chroma .dl {\n  color: #f1fa8c;\n}\n/* LiteralStringDoc */ .chroma .sd {\n  color: #f1fa8c;\n}\n/* LiteralStringDouble */ .chroma .s2 {\n  color: #f1fa8c;\n}\n/* LiteralStringEscape */ .chroma .se {\n  color: #f1fa8c;\n}\n/* LiteralStringHeredoc */ .chroma .sh {\n  color: #f1fa8c;\n}\n/* LiteralStringInterpol */ .chroma .si {\n  color: #f1fa8c;\n}\n/* LiteralStringOther */ .chroma .sx {\n  color: #f1fa8c;\n}\n/* LiteralStringRegex */ .chroma .sr {\n  color: #f1fa8c;\n}\n/* LiteralStringSingle */ .chroma .s1 {\n  color: #f1fa8c;\n}\n/* LiteralStringSymbol */ .chroma .ss {\n  color: #f1fa8c;\n}\n/* LiteralNumber */ .chroma .m {\n  color: #bd93f9;\n}\n/* LiteralNumberBin */ .chroma .mb {\n  color: #bd93f9;\n}\n/* LiteralNumberFloat */ .chroma .mf {\n  color: #bd93f9;\n}\n/* LiteralNumberHex */ .chroma .mh {\n  color: #bd93f9;\n}\n/* LiteralNumberInteger */ .chroma .mi {\n  color: #bd93f9;\n}\n/* LiteralNumberIntegerLong */ .chroma .il {\n  color: #bd93f9;\n}\n/* LiteralNumberOct */ .chroma .mo {\n  color: #bd93f9;\n}\n/* Operator */ .chroma .o {\n  color: #ff79c6;\n}\n/* OperatorWord */ .chroma .ow {\n  color: #ff79c6;\n}\n/* Punctuation */ .chroma .p {\n}\n/* Comment */ .chroma .c {\n  color: #6272a4;\n}\n/* CommentHashbang */ .chroma .ch {\n  color: #6272a4;\n}\n/* CommentMultiline */ .chroma .cm {\n  color: #6272a4;\n}\n/* CommentSingle */ .chroma .c1 {\n  color: #6272a4;\n}\n/* CommentSpecial */ .chroma .cs {\n  color: #6272a4;\n}\n/* CommentPreproc */ .chroma .cp {\n  color: #ff79c6;\n}\n/* CommentPreprocFile */ .chroma .cpf {\n  color: #ff79c6;\n}\n/* Generic */ .chroma .g {\n}\n/* GenericDeleted */ .chroma .gd {\n  color: #f55;\n}\n/* GenericEmph */ .chroma .ge {\n  text-decoration: underline;\n}\n/* GenericError */ .chroma .gr {\n}\n/* GenericHeading */ .chroma .gh {\n  font-weight: bold;\n}\n/* GenericInserted */ .chroma .gi {\n  color: #50fa7b;\n  font-weight: bold;\n}\n/* GenericOutput */ .chroma .go {\n  color: #44475a;\n}\n/* GenericPrompt */ .chroma .gp {\n}\n/* GenericStrong */ .chroma .gs {\n}\n/* GenericSubheading */ .chroma .gu {\n  font-weight: bold;\n}\n/* GenericTraceback */ .chroma .gt {\n}\n/* GenericUnderline */ .chroma .gl {\n  text-decoration: underline;\n}\n/* TextWhitespace */ .chroma .w {\n}\n"
  },
  {
    "path": "modules/slides/assets/css/libs/chroma/github-dark.css",
    "content": ".chroma {\n  background-color: #0d1117;\n  color: #fff;\n}\n.chroma .nn {\n  color: #fff;\n}\n.chroma .err {\n  color: #f85149;\n}\n.chroma .p {\n  color: #c9d1d9;\n}\n.chroma .lntd {\n  border: 0;\n  margin: 0;\n  padding: 0;\n  vertical-align: top;\n}\n.chroma .lntable {\n  width: auto;\n  border: 0;\n  margin: 0;\n  display: block;\n  padding: 0;\n  overflow: auto;\n  border-spacing: 0;\n}\n.chroma .hl {\n  width: 100%;\n  display: block;\n  background-color: rgba(110, 118, 129, 0.1);\n}\n.chroma .lnt {\n  color: #8b949e;\n  padding: 0 0.4em 0 0.4em;\n  font-size: 0.875rem;\n  margin-right: 0.4em;\n}\n.chroma .ln {\n  color: #8b949e;\n  padding: 0 0.4em 0 0.4em;\n  margin-right: 0.4em;\n}\n.chroma .k {\n  color: #ff7b72;\n}\n.chroma .kc {\n  color: #ff7b72;\n  font-weight: bold;\n}\n.chroma .kd {\n  color: #ff7b72;\n  font-weight: bold;\n}\n.chroma .kn {\n  color: #ff7b72;\n  font-weight: bold;\n}\n.chroma .kp {\n  color: #ff7b72;\n  font-weight: bold;\n}\n.chroma .kr {\n  color: #ff7b72;\n  font-weight: bold;\n}\n.chroma .kt {\n  color: #ff7b72;\n  font-weight: bold;\n}\n.chroma .na {\n  color: #c9d1d9;\n}\n.chroma .nb {\n  color: #c9d1d9;\n}\n.chroma .bp {\n  color: #c9d1d9;\n}\n.chroma .nc {\n  color: #7ee787;\n  font-weight: bold;\n}\n.chroma .no {\n  color: #79c0ff;\n  font-weight: bold;\n}\n.chroma .nd {\n  color: #bc8cff;\n  font-weight: bold;\n}\n.chroma .ni {\n  color: #ffa657;\n}\n.chroma .ne {\n  color: #ffa657;\n  font-weight: bold;\n}\n.chroma .nf {\n  color: #d2a8ff;\n  font-weight: bold;\n}\n.chroma .nl {\n  color: #79c0ff;\n  font-weight: bold;\n}\n.chroma .nm {\n  color: #ff7b72;\n}\n.chroma .nx {\n  color: #79c0ff;\n}\n.chroma .py {\n  color: #79c0ff;\n}\n.chroma .nt {\n  color: #7ee787;\n}\n.chroma .nv {\n  color: #79c0ff;\n}\n.chroma .vc {\n  color: #79c0ff;\n}\n.chroma .vg {\n  color: #79c0ff;\n}\n.chroma .vi {\n  color: #79c0ff;\n}\n.chroma .l {\n  color: #79c0ff;\n}\n.chroma .ld {\n  color: #79c0ff;\n}\n.chroma .s {\n  color: #79c0ff;\n}\n.chroma .sa {\n  color: #79c0ff;\n}\n.chroma .sb {\n  color: #79c0ff;\n}\n.chroma .sc {\n  color: #79c0ff;\n}\n.chroma .dl {\n  color: #79c0ff;\n}\n.chroma .sd {\n  color: #79c0ff;\n}\n.chroma .s2 {\n  color: #79c0ff;\n}\n.chroma .se {\n  color: #79c0ff;\n}\n.chroma .sh {\n  color: #79c0ff;\n}\n.chroma .si {\n  color: #79c0ff;\n}\n.chroma .sx {\n  color: #79c0ff;\n}\n.chroma .sr {\n  color: #79c0ff;\n}\n.chroma .s1 {\n  color: #79c0ff;\n}\n.chroma .ss {\n  color: #79c0ff;\n}\n.chroma .m {\n  color: #79c0ff;\n}\n.chroma .mb {\n  color: #79c0ff;\n}\n.chroma .mf {\n  color: #79c0ff;\n}\n.chroma .mh {\n  color: #79c0ff;\n}\n.chroma .mi {\n  color: #79c0ff;\n}\n.chroma .il {\n  color: #79c0ff;\n}\n.chroma .mo {\n  color: #79c0ff;\n}\n.chroma .o {\n  color: #a5d6ff;\n  font-weight: bold;\n}\n.chroma .ow {\n  color: #a5d6ff;\n  font-weight: bold;\n}\n.chroma .c {\n  color: #8b949e;\n  font-style: italic;\n}\n.chroma .ch {\n  color: #8b949e;\n  font-style: italic;\n}\n.chroma .cm {\n  color: #8b949e;\n  font-style: italic;\n}\n.chroma .c1 {\n  color: #8b949e;\n  font-style: italic;\n}\n.chroma .cs {\n  color: #8b949e;\n  font-style: italic;\n}\n.chroma .cpf {\n  color: #8b949e;\n  font-style: italic;\n}\n.chroma .gd {\n  color: #ffa198;\n  background-color: #490202;\n}\n.chroma .ge {\n  color: #c9d1d9;\n  font-style: italic;\n}\n.chroma .gr {\n  color: #ffa198;\n}\n.chroma .gh {\n  color: #79c0ff;\n}\n.chroma .gi {\n  color: #7ee787;\n  background-color: #56d364;\n}\n.chroma .go {\n  color: #8b949e;\n}\n.chroma .gp {\n  color: #8b949e;\n}\n.chroma .gs {\n  font-weight: bold;\n}\n.chroma .gu {\n  color: #79c0ff;\n}\n.chroma .gt {\n  color: #ffa198;\n}\n.chroma .gl {\n  text-decoration: underline;\n}\n.chroma .w {\n  color: #484f58;\n}\n"
  },
  {
    "path": "modules/slides/assets/css/libs/chroma/github-light.css",
    "content": "/* Background */ .bg {\n  background-color: #fff;\n}\n/* PreWrapper */ .chroma {\n  background-color: #fff;\n}\n/* Other */ .chroma .x {\n}\n/* Error */ .chroma .err {\n  color: #a61717;\n  background-color: #e3d2d2;\n}\n/* CodeLine */ .chroma .cl {\n}\n/* LineTableTD */ .chroma .lntd {\n  vertical-align: top;\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\n/* LineTable */ .chroma .lntable {\n  border-spacing: 0;\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\n/* LineHighlight */ .chroma .hl {\n  background-color: #ffc;\n}\n/* LineNumbersTable */ .chroma .lnt {\n  white-space: pre;\n  user-select: none;\n  margin-right: 0.4em;\n  padding: 0 0.4em;\n  color: #7f7f7f;\n}\n/* LineNumbers */ .chroma .ln {\n  white-space: pre;\n  user-select: none;\n  margin-right: 0.4em;\n  padding: 0 0.4em;\n  color: #7f7f7f;\n}\n/* Line */ .chroma .line {\n  display: flex;\n}\n/* Keyword */ .chroma .k {\n  color: #000;\n  font-weight: bold;\n}\n/* KeywordConstant */ .chroma .kc {\n  color: #000;\n  font-weight: bold;\n}\n/* KeywordDeclaration */ .chroma .kd {\n  color: #000;\n  font-weight: bold;\n}\n/* KeywordNamespace */ .chroma .kn {\n  color: #000;\n  font-weight: bold;\n}\n/* KeywordPseudo */ .chroma .kp {\n  color: #000;\n  font-weight: bold;\n}\n/* KeywordReserved */ .chroma .kr {\n  color: #000;\n  font-weight: bold;\n}\n/* KeywordType */ .chroma .kt {\n  color: #458;\n  font-weight: bold;\n}\n/* Name */ .chroma .n {\n}\n/* NameAttribute */ .chroma .na {\n  color: #008080;\n}\n/* NameBuiltin */ .chroma .nb {\n  color: #0086b3;\n}\n/* NameBuiltinPseudo */ .chroma .bp {\n  color: #999;\n}\n/* NameClass */ .chroma .nc {\n  color: #458;\n  font-weight: bold;\n}\n/* NameConstant */ .chroma .no {\n  color: #008080;\n}\n/* NameDecorator */ .chroma .nd {\n  color: #3c5d5d;\n  font-weight: bold;\n}\n/* NameEntity */ .chroma .ni {\n  color: #800080;\n}\n/* NameException */ .chroma .ne {\n  color: #900;\n  font-weight: bold;\n}\n/* NameFunction */ .chroma .nf {\n  color: #900;\n  font-weight: bold;\n}\n/* NameFunctionMagic */ .chroma .fm {\n}\n/* NameLabel */ .chroma .nl {\n  color: #900;\n  font-weight: bold;\n}\n/* NameNamespace */ .chroma .nn {\n  color: #555;\n}\n/* NameOther */ .chroma .nx {\n}\n/* NameProperty */ .chroma .py {\n}\n/* NameTag */ .chroma .nt {\n  color: #000080;\n}\n/* NameVariable */ .chroma .nv {\n  color: #008080;\n}\n/* NameVariableClass */ .chroma .vc {\n  color: #008080;\n}\n/* NameVariableGlobal */ .chroma .vg {\n  color: #008080;\n}\n/* NameVariableInstance */ .chroma .vi {\n  color: #008080;\n}\n/* NameVariableMagic */ .chroma .vm {\n}\n/* Literal */ .chroma .l {\n}\n/* LiteralDate */ .chroma .ld {\n}\n/* LiteralString */ .chroma .s {\n  color: #d14;\n}\n/* LiteralStringAffix */ .chroma .sa {\n  color: #d14;\n}\n/* LiteralStringBacktick */ .chroma .sb {\n  color: #d14;\n}\n/* LiteralStringChar */ .chroma .sc {\n  color: #d14;\n}\n/* LiteralStringDelimiter */ .chroma .dl {\n  color: #d14;\n}\n/* LiteralStringDoc */ .chroma .sd {\n  color: #d14;\n}\n/* LiteralStringDouble */ .chroma .s2 {\n  color: #d14;\n}\n/* LiteralStringEscape */ .chroma .se {\n  color: #d14;\n}\n/* LiteralStringHeredoc */ .chroma .sh {\n  color: #d14;\n}\n/* LiteralStringInterpol */ .chroma .si {\n  color: #d14;\n}\n/* LiteralStringOther */ .chroma .sx {\n  color: #d14;\n}\n/* LiteralStringRegex */ .chroma .sr {\n  color: #009926;\n}\n/* LiteralStringSingle */ .chroma .s1 {\n  color: #d14;\n}\n/* LiteralStringSymbol */ .chroma .ss {\n  color: #990073;\n}\n/* LiteralNumber */ .chroma .m {\n  color: #099;\n}\n/* LiteralNumberBin */ .chroma .mb {\n  color: #099;\n}\n/* LiteralNumberFloat */ .chroma .mf {\n  color: #099;\n}\n/* LiteralNumberHex */ .chroma .mh {\n  color: #099;\n}\n/* LiteralNumberInteger */ .chroma .mi {\n  color: #099;\n}\n/* LiteralNumberIntegerLong */ .chroma .il {\n  color: #099;\n}\n/* LiteralNumberOct */ .chroma .mo {\n  color: #099;\n}\n/* Operator */ .chroma .o {\n  color: #000;\n  font-weight: bold;\n}\n/* OperatorWord */ .chroma .ow {\n  color: #000;\n  font-weight: bold;\n}\n/* Punctuation */ .chroma .p {\n}\n/* Comment */ .chroma .c {\n  color: #998;\n  font-style: italic;\n}\n/* CommentHashbang */ .chroma .ch {\n  color: #998;\n  font-style: italic;\n}\n/* CommentMultiline */ .chroma .cm {\n  color: #998;\n  font-style: italic;\n}\n/* CommentSingle */ .chroma .c1 {\n  color: #998;\n  font-style: italic;\n}\n/* CommentSpecial */ .chroma .cs {\n  color: #999;\n  font-weight: bold;\n  font-style: italic;\n}\n/* CommentPreproc */ .chroma .cp {\n  color: #999;\n  font-weight: bold;\n  font-style: italic;\n}\n/* CommentPreprocFile */ .chroma .cpf {\n  color: #999;\n  font-weight: bold;\n  font-style: italic;\n}\n/* Generic */ .chroma .g {\n}\n/* GenericDeleted */ .chroma .gd {\n  color: #000;\n  background-color: #fdd;\n}\n/* GenericEmph */ .chroma .ge {\n  color: #000;\n  font-style: italic;\n}\n/* GenericError */ .chroma .gr {\n  color: #a00;\n}\n/* GenericHeading */ .chroma .gh {\n  color: #999;\n}\n/* GenericInserted */ .chroma .gi {\n  color: #000;\n  background-color: #dfd;\n}\n/* GenericOutput */ .chroma .go {\n  color: #888;\n}\n/* GenericPrompt */ .chroma .gp {\n  color: #555;\n}\n/* GenericStrong */ .chroma .gs {\n  font-weight: bold;\n}\n/* GenericSubheading */ .chroma .gu {\n  color: #aaa;\n}\n/* GenericTraceback */ .chroma .gt {\n  color: #a00;\n}\n/* GenericUnderline */ .chroma .gl {\n  text-decoration: underline;\n}\n/* TextWhitespace */ .chroma .w {\n  color: #bbb;\n}\n"
  },
  {
    "path": "modules/slides/assets/css/slides-branding.css",
    "content": "/*\n * HugoBlox Slides Branding Styles\n * \n * Default styles for slide branding elements (logo, overlays, headers/footers).\n * These styles ensure branding elements don't interfere with slide content.\n */\n\n/* Logo container */\n#slide-logo {\n  position: fixed;\n  z-index: 100;\n  pointer-events: none;\n  transition: opacity 0.3s ease;\n  color: var(--r-main-color, #fff);\n}\n\n#slide-logo img {\n  width: 100%;\n  height: auto;\n  max-height: 60px;\n}\n\n#slide-logo svg {\n  width: 100%;\n  height: auto;\n  max-height: 60px;\n  fill: currentColor;\n}\n\n/* Title and author overlays */\n#slide-title-overlay,\n#slide-author-overlay,\n#slide-footer-text-overlay {\n  position: fixed;\n  z-index: 100;\n  pointer-events: none;\n  font-family: var(--r-main-font, inherit);\n  color: var(--r-main-color, #fff);\n  font-size: 0.7em;\n  opacity: 0.8;\n  max-width: 40%;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);\n}\n\n#slide-footer-text-overlay {\n  font-size: 0.6em;\n  opacity: 0.7;\n}\n\n/* Header and footer hook containers */\n.slide-header,\n.slide-footer {\n  position: fixed;\n  left: 0;\n  right: 0;\n  z-index: 100;\n  pointer-events: none;\n  display: flex;\n  align-items: center;\n  padding: 10px 20px;\n}\n\n.slide-header {\n  top: 0;\n  justify-content: space-between;\n}\n\n.slide-footer {\n  bottom: 0;\n  justify-content: space-between;\n}\n\n/* Visibility Control via data-state classes (applied to body by JS) */\nbody.no-branding #slide-logo,\nbody.no-branding #slide-title-overlay,\nbody.no-branding #slide-author-overlay,\nbody.no-branding #slide-footer-text-overlay,\nbody.no-branding .slide-header,\nbody.no-branding .slide-footer {\n  /* biome-ignore lint/complexity/noImportantStyles: Required to override Reveal.js styles */\n  display: none !important;\n}\n\nbody.no-header .slide-header,\nbody.no-header #slide-logo,\nbody.no-header #slide-title-overlay {\n  /* biome-ignore lint/complexity/noImportantStyles: Required to override Reveal.js styles */\n  display: none !important;\n}\n\nbody.no-footer .slide-footer,\nbody.no-footer #slide-author-overlay,\nbody.no-footer #slide-footer-text-overlay {\n  /* biome-ignore lint/complexity/noImportantStyles: Required to override Reveal.js styles */\n  display: none !important;\n}\n\n/* Re-enable pointer events for interactive elements within header/footer */\n.slide-header a,\n.slide-header button,\n.slide-footer a,\n.slide-footer button {\n  pointer-events: auto;\n}\n\n/* Hide branding in print mode for cleaner PDFs */\n@media print {\n  #slide-logo,\n  #slide-title-overlay,\n  #slide-author-overlay,\n  #slide-footer-text-overlay,\n  .slide-header,\n  .slide-footer {\n    opacity: 0.5;\n  }\n}\n\n/* Respect Reveal.js overview mode */\n.reveal.overview #slide-logo,\n.reveal.overview #slide-title-overlay,\n.reveal.overview #slide-author-overlay,\n.reveal.overview #slide-footer-text-overlay,\n.reveal.overview .slide-header,\n.reveal.overview .slide-footer {\n  display: none;\n}\n"
  },
  {
    "path": "modules/slides/assets/js/hugoblox-slides.js",
    "content": "/*************************************************\n *  Hugo Blox Kit - https://hugoblox.com/\n *  License: https://github.com/HugoBlox/kit/blob/main/LICENSE.md\n *\n *  Reveal.JS integration\n **************************************************/\n\n/*\n  global RevealMarkdown, RevealSearch, RevealNotes, RevealMath, RevealZoom, Reveal, mermaid, RevealMenu\n*/\n\nimport * as params from \"@params\";\n\n// Guard against null/undefined slides params - ensures decks render with sensible defaults\nconst slides = params.slides || {};\n\n// Enable core slide features.\nvar enabledPlugins = [RevealMarkdown, RevealSearch, RevealNotes, RevealMath.KaTeX, RevealZoom];\n\nconst isObject = (o) => o === Object(o) && !isArray(o) && typeof o !== \"function\";\n\nconst isArray = (a) => Array.isArray(a);\n\nconst toCamelCase = (s) => s.replace(/([-_][a-z])/gi, (term) => term.toUpperCase().replace(\"-\", \"\").replace(\"_\", \"\"));\n\nconst keysToCamelCase = (o) => {\n  if (isObject(o)) {\n    const n = {};\n\n    Object.keys(o).forEach((k) => {\n      n[toCamelCase(k)] = keysToCamelCase(o[k]);\n    });\n\n    return n;\n  } else if (isArray(o)) {\n    return o.map((i) => keysToCamelCase(i));\n  }\n\n  return o;\n};\n\n// reveal configurations can be included in front matter under slides.reveal\nvar pluginOptions = {};\nif (typeof slides.reveal_options !== \"undefined\") {\n  pluginOptions = slides.reveal_options;\n}\n\npluginOptions = keysToCamelCase(pluginOptions);\n\n// Menu disabled by default (reveal.js-menu@2.1.0 has ESM compatibility issues)\n// Menu plugin no longer maintained as of 2026-01 (last updated 6 years ago).\n// TODO: consider removing this plugin as it's unlikely to work with modern browsers.\nif (typeof pluginOptions.menu_enabled === \"undefined\") {\n  pluginOptions.menu_enabled = false;\n}\n\n// configure menu if enabled\nif (pluginOptions.menu_enabled) {\n  enabledPlugins.push(RevealMenu);\n}\n\npluginOptions.plugins = enabledPlugins;\n\nReveal.initialize(pluginOptions);\n\n// Handle data-state for branding visibility\n// Apply classes to body since branding elements are body-level siblings of .reveal\nconst applySlideState = (event) => {\n  const body = document.body;\n  if (!body) return;\n\n  // Remove previous state classes from body\n  body.classList.remove(\"no-branding\", \"no-header\", \"no-footer\");\n\n  // Get current slide's data-state\n  const currentSlide = event?.currentSlide || Reveal.getCurrentSlide();\n  if (currentSlide) {\n    const state = currentSlide.getAttribute(\"data-state\");\n    if (state) {\n      state.split(\" \").forEach((s) => {\n        body.classList.add(s);\n      });\n    }\n  }\n};\n\nReveal.on(\"ready\", applySlideState);\nReveal.on(\"slidechanged\", applySlideState);\n\n// Disable Mermaid by default.\nif (typeof slides.diagram === \"undefined\") {\n  slides.diagram = false;\n}\n\n// Configure Mermaid only if diagrams are enabled.\nif (slides.diagram) {\n  //mermaid options\n  // mermaid: front matter configuration can be used to set mermaid options\n  // You can also use directives (see mermaid documentation)\n  let mermaidOptions = {};\n  if (typeof slides.diagram_options !== \"undefined\") {\n    mermaidOptions = slides.diagram_options;\n  }\n\n  // `startOnLoad` must be false since diagrams are lazily rendered.\n  mermaidOptions.startOnLoad = false;\n\n  mermaid.initialize(mermaidOptions);\n\n  // Lazily render Mermaid diagrams within Reveal.JS slides\n  // See: https://github.com/hakimel/reveal.js/issues/2863#issuecomment-1107444425\n  const renderMermaidDiagrams = function renderMermaidDiagrams(event) {\n    const mermaidDivs = event.currentSlide.querySelectorAll(\".mermaid:not(.done)\");\n    const indices = Reveal.getIndices();\n    const pageno = `${indices.h}-${indices.v}`;\n\n    mermaidDivs.forEach((mermaidDiv, i) => {\n      const insertSvg = (svgCode) => {\n        mermaidDiv.innerHTML = svgCode;\n        mermaidDiv.classList.add(\"done\");\n      };\n      const graphDefinition = mermaidDiv.textContent;\n      mermaid.mermaidAPI.render(`mermaid${pageno}-${i}`, graphDefinition, insertSvg);\n    });\n    Reveal.layout();\n  };\n\n  Reveal.on(\"ready\", (event) => renderMermaidDiagrams(event));\n  Reveal.on(\"slidechanged\", (event) => renderMermaidDiagrams(event));\n}\n"
  },
  {
    "path": "modules/slides/config/_default/hugo.yaml",
    "content": "module:\n  mounts:\n    - source: assets\n      target: assets\n    - source: layouts\n      target: layouts\n\noutputFormats:\n  Present:\n    mediaType: text/html\n    baseName: index\n    isHTML: true\n    permalinkable: true\n    path: present\n\ncascade:\n  - _target:\n      path: \"/slides/**\"\n      kind: \"page\"\n    outputs:\n      - HTML\n      - Present\n"
  },
  {
    "path": "modules/slides/go.mod",
    "content": "module github.com/HugoBlox/kit/modules/slides\n\ngo 1.19\n"
  },
  {
    "path": "modules/slides/layouts/_partials/components/slide-branding.html",
    "content": "{{/*\n  Slide Branding Component\n  \n  Renders persistent branding elements (logo, title overlay, etc.) that appear\n  across all slides in a presentation.\n  \n  Configuration (site.Params.slides.branding or .Params.slides.branding):\n    logo:\n      src: \"media/logo.png\"        # Path to logo image\n      alt: \"Organization Logo\"     # Alt text\n      position: \"top-left\"         # top-left, top-right, bottom-left, bottom-right\n      width: \"100px\"               # Logo width\n      margin: \"20px\"               # Distance from edges\n    title:\n      show: true                   # Show presentation title\n      position: \"bottom-left\"      # Position of title text\n    author:\n      show: true                   # Show author/presenter name\n      position: \"bottom-right\"     # Position of author text\n*/}}\n\n{{/* Merge page-level config with site-level defaults */}}\n{{ $site_branding := site.Params.slides.branding | default dict }}\n{{ $page_branding := .Params.slides.branding | default dict }}\n{{ $branding := merge $site_branding $page_branding }}\n\n{{/* Logo rendering */}}\n{{ with $branding.logo }}\n  {{ if .filename }}\n    {{ $resource_path := printf \"media/%s\" .filename }}\n    {{ $logo_resource := resources.Get $resource_path }}\n    {{ with $logo_resource }}\n      {{ $position := $branding.logo.position | default \"top-left\" }}\n      {{ $width := $branding.logo.width | default \"80px\" }}\n      {{ $margin := $branding.logo.margin | default \"20px\" }}\n      {{ $alt := $branding.logo.alt | default \"Logo\" }}\n      \n      {{/* Calculate CSS position based on position string */}}\n      {{ $positionCSS := \"\" }}\n      {{ if eq $position \"top-left\" }}\n        {{ $positionCSS = printf \"top: %s; left: %s;\" $margin $margin }}\n      {{ else if eq $position \"top-right\" }}\n        {{ $positionCSS = printf \"top: %s; right: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-left\" }}\n        {{ $positionCSS = printf \"bottom: %s; left: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-right\" }}\n        {{ $positionCSS = printf \"bottom: %s; right: %s;\" $margin $margin }}\n      {{ else }}\n        {{/* Custom position - expect CSS string */}}\n        {{ $positionCSS = $position }}\n      {{ end }}\n      \n      <div id=\"slide-logo\" style=\"{{ $positionCSS | safeCSS }} width: {{ $width }};\" aria-label=\"{{ $alt }}\">\n        {{/* Inline SVGs to enable currentColor, use img for other formats */}}\n        {{ if strings.HasSuffix .Name \".svg\" }}\n          {{ .Content | safeHTML }}\n        {{ else }}\n          <img src=\"{{ .RelPermalink }}\" alt=\"{{ $alt }}\">\n        {{ end }}\n      </div>\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Title overlay (optional) */}}\n{{ if $branding.title }}\n  {{ with $branding.title }}\n    {{ if .show }}\n      {{ $position := .position | default \"bottom-left\" }}\n      {{ $margin := .margin | default \"20px\" }}\n      \n      {{ $positionCSS := \"\" }}\n      {{ if eq $position \"top-left\" }}\n        {{ $positionCSS = printf \"top: %s; left: %s;\" $margin $margin }}\n      {{ else if eq $position \"top-right\" }}\n        {{ $positionCSS = printf \"top: %s; right: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-left\" }}\n        {{ $positionCSS = printf \"bottom: %s; left: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-right\" }}\n        {{ $positionCSS = printf \"bottom: %s; right: %s;\" $margin $margin }}\n      {{ end }}\n      \n      <div id=\"slide-title-overlay\" style=\"{{ $positionCSS | safeCSS }}\">\n        {{ .text | default $.Title }}\n      </div>\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Author overlay (optional) */}}\n{{ if $branding.author }}\n  {{ with $branding.author }}\n    {{ if .show }}\n      {{ $position := .position | default \"bottom-right\" }}\n      {{ $margin := .margin | default \"20px\" }}\n      \n      {{ $positionCSS := \"\" }}\n      {{ if eq $position \"top-left\" }}\n        {{ $positionCSS = printf \"top: %s; left: %s;\" $margin $margin }}\n      {{ else if eq $position \"top-right\" }}\n        {{ $positionCSS = printf \"top: %s; right: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-left\" }}\n        {{ $positionCSS = printf \"bottom: %s; left: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-right\" }}\n        {{ $positionCSS = printf \"bottom: %s; right: %s;\" $margin $margin }}\n      {{ end }}\n      \n      {{/* Get author from page params or first author */}}\n      {{ $author := \"\" }}\n      {{ with $.Params.authors }}\n        {{ if reflect.IsSlice . }}\n          {{ $author = index . 0 }}\n        {{ else }}\n          {{ $author = . }}\n        {{ end }}\n      {{ end }}\n      {{ with $.Params.author }}\n        {{ $author = . }}\n      {{ end }}\n      \n      {{ if $author }}\n      <div id=\"slide-author-overlay\" style=\"{{ $positionCSS | safeCSS }}\">\n        {{ $author }}\n      </div>\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Footer text overlay (optional) - e.g. for copyright */}}\n{{ if $branding.footer }}\n  {{ with $branding.footer }}\n    {{ if .text }}\n      {{ $position := .position | default \"bottom-center\" }}\n      {{ $margin := .margin | default \"20px\" }}\n      \n      {{ $positionCSS := \"\" }}\n      {{ if eq $position \"top-left\" }}\n        {{ $positionCSS = printf \"top: %s; left: %s;\" $margin $margin }}\n      {{ else if eq $position \"top-right\" }}\n        {{ $positionCSS = printf \"top: %s; right: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-left\" }}\n        {{ $positionCSS = printf \"bottom: %s; left: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-right\" }}\n        {{ $positionCSS = printf \"bottom: %s; right: %s;\" $margin $margin }}\n      {{ else if eq $position \"bottom-center\" }}\n        {{ $positionCSS = printf \"bottom: %s; left: 50%%; transform: translateX(-50%%);\" $margin }}\n      {{ end }}\n      \n      <div id=\"slide-footer-text-overlay\" style=\"{{ $positionCSS | safeCSS }}\">\n        {{ .text | markdownify }}\n      </div>\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n\n"
  },
  {
    "path": "modules/slides/layouts/_partials/functions/slides_get_hook.html",
    "content": "{{/* \n  Slides Hook Loader - Independent Implementation\n  \n  This is a self-contained hook system for the slides module that doesn't \n  depend on the blox module. Users can create partials in their own project's\n  layouts/_partials/hooks/{hook-name}/ directory.\n\n  Usage: {{ partial \"functions/slides_get_hook\" (dict \"hook\" \"slide-header\" \"context\" .) }}\n  \n  Available hooks for slides:\n  - slide-header: Top of presentation (inside .reveal, above .slides)\n  - slide-footer: Bottom of presentation (inside .reveal, below .slides)  \n  - slide-head-end: End of <head> tag (for custom CSS/JS)\n  - slide-body-end: End of <body> tag (for custom JS)\n\n  Input: dict with \"hook\" (string) and \"context\" (page context)\n  Output: Renders all partials found in the hook directory\n*/}}\n\n{{ $loaded := false }}\n{{ $partial_dir := printf \"hooks/%s/\" .hook }}\n{{ $context := .context }}\n{{ $hook_dir_path := path.Join \"layouts/_partials\" $partial_dir }}\n\n{{/* Use try to gracefully handle missing directories */}}\n{{ with try (os.ReadDir $hook_dir_path) }}\n  {{ with .Value }}\n    {{ range . }}\n      {{ if not .IsDir }}\n        {{ $partial_path := path.Join $partial_dir .Name }}\n        {{ partial $partial_path $context }}\n        {{ $loaded = true }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n{{ end }}\n\n{{/* Debug: uncomment to see if hooks are loaded */}}\n{{/* return $loaded */}}\n"
  },
  {
    "path": "modules/slides/layouts/_partials/hooks/slide-body-end/_example.html",
    "content": "{{/*\n  Example Slide Body-End Hook\n  \n  This hook allows injecting custom JavaScript at the end of the <body>\n  tag, after Reveal.js has been loaded. Useful for:\n  - Custom Reveal.js plugins\n  - Analytics tracking on slide changes\n  - Custom keyboard shortcuts\n  - Integration with other JS libraries\n  \n  To use this hook, create a file at:\n    layouts/_partials/hooks/slide-body-end/your-custom-script.html\n*/}}\n\n{{/* Uncomment below to track slide changes with console logging */}}\n{{/*\n<script>\n  Reveal.on('slidechanged', event => {\n    console.log('Slide changed to:', event.indexh, event.indexv);\n  });\n</script>\n*/}}\n"
  },
  {
    "path": "modules/slides/layouts/_partials/hooks/slide-footer/_example.html",
    "content": "{{/*\n  Example Slide Footer Hook\n  \n  This is an example file showing how to create custom footer content\n  that appears at the bottom of every slide in a presentation.\n  \n  To use this hook, create a file at:\n    layouts/_partials/hooks/slide-footer/your-custom-footer.html\n  \n  The content will be rendered inside a <div class=\"slide-footer\"> container.\n  \n  Example usage: show social media handle or contact info\n*/}}\n\n{{/* Uncomment below to show author's social handle in footer */}}\n{{/*\n<div style=\"font-size: 0.5em; color: rgba(255,255,255,0.5); padding: 10px; text-align: right; width: 100%;\">\n  @yourhandle\n</div>\n*/}}\n"
  },
  {
    "path": "modules/slides/layouts/_partials/hooks/slide-head-end/_example.html",
    "content": "{{/*\n  Example Slide Head-End Hook\n  \n  This hook allows injecting custom CSS or JavaScript into the <head>\n  section of the presentation. Useful for:\n  - Custom fonts\n  - Additional CSS frameworks\n  - Analytics scripts\n  - Custom Reveal.js configurations\n  \n  To use this hook, create a file at:\n    layouts/_partials/hooks/slide-head-end/your-custom-head.html\n*/}}\n\n{{/* Uncomment below to add custom font */}}\n{{/*\n<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n<link href=\"https://fonts.googleapis.com/css2?family=Fira+Code&display=swap\" rel=\"stylesheet\">\n<style>\n  .reveal pre code {\n    font-family: 'Fira Code', monospace;\n  }\n</style>\n*/}}\n"
  },
  {
    "path": "modules/slides/layouts/_partials/hooks/slide-header/_example.html",
    "content": "{{/*\n  Example Slide Header Hook\n  \n  This is an example file showing how to create custom header content\n  that appears at the top of every slide in a presentation.\n  \n  To use this hook, create a file at:\n    layouts/_partials/hooks/slide-header/your-custom-header.html\n  \n  The content will be rendered inside a <div class=\"slide-header\"> container.\n  \n  Available context variables:\n    .Title - Presentation title\n    .Params - All front matter parameters\n    .Params.authors - List of authors\n    .Params.course - Course code/name\n    .Params.venue - Event venue\n    .Date - Presentation date\n    \n  Example usage:\n*/}}\n\n{{/* Uncomment below to show course code in header */}}\n{{/*\n{{ with .Params.course }}\n  <div style=\"font-size: 0.6em; color: rgba(255,255,255,0.6); padding: 10px;\">\n    {{ . }}{{ with $.Params.lecture_number }} · Lecture {{ . }}{{ end }}\n  </div>\n{{ end }}\n*/}}\n"
  },
  {
    "path": "modules/slides/layouts/_partials/slides.html",
    "content": "<div class=\"reveal\">\n  <div class=\"slides\">\n    {{/* Loop over each page. */}}\n    {{ range . }}\n    {{ if ne (len .Content) 0 }}\n\n    {{/* Must remove `<hr />` generated by Blackfriday footnotes as conflicts with slide delimiter. */}}\n    {{/* Commented out workaround as Blackfriday has been superseded by Goldmark in Hugo 0.60. */}}\n    {{/* TODO: reintroduce a similar workaround if Goldmark requires it. */}}\n    {{/* $content := replace .Content \"<div class=\\\"footnotes\\\">\\n\\n<hr />\" \"<div class=\\\"footnotes\\\">\" */}}\n    {{ $content := .Content }}{{/* For Goldmark. */}}\n\n    {{/* Let `---` delimit slides. In Goldmark, that is `<hr>`. Alternatively, for Blackfriday, use `<hr />`. */}}\n    {{ range (split $content \"<hr>\") }}\n\n    {{/* Check if this slide should be hidden using inline comment */}}\n    {{ $isHidden := false }}\n    {{ $slideContent := . }}\n    \n    {{ if in . \"<!-- hide -->\" }}\n      {{ $isHidden = true }}\n      {{/* Remove the hide comment from the content */}}\n      {{ $slideContent = replace . \"<!-- hide -->\" \"\" }}\n    {{ end }}\n\n    {{/* Each `<section>` defines a new slide. */}}\n    {{/* Only begin new slide `<section>` if not already added by custom `slide` shortcode. */}}\n    {{ if not (in . \"data-noprocess\") }}\n    \n    {{/* Parse visibility comments */}}\n    {{ $state := slice }}\n    {{ if in . \"<!-- no-branding -->\" }}\n      {{ $state = $state | append \"no-branding\" }}\n    {{ end }}\n    {{ if in . \"<!-- no-header -->\" }}\n      {{ $state = $state | append \"no-header\" }}\n    {{ end }}\n    {{ if in . \"<!-- no-footer -->\" }}\n      {{ $state = $state | append \"no-footer\" }}\n    {{ end }}\n    \n    <section{{ if $isHidden }} data-visibility=\"hidden\"{{ end }} {{ if gt (len $state) 0 }}data-state=\"{{ delimit $state \" \" }}\"{{ end }}>\n    {{ end }}\n      {{ $slideContent | safeHTML }}\n    </section>\n    {{ end }}\n\n    {{ end }}\n    {{ end }}\n  </div>\n  \n  {{/* Branding elements - placed inside .reveal but outside .slides to be persistent and fixed */}}\n  \n  {{/* Branding overlay (logo, title, author) */}}\n  {{ $pageContext := index . 0 }}\n  {{ partial \"components/slide-branding\" $pageContext }}\n\n  {{/* Hook: slide-header */}}\n  <div class=\"slide-header\">\n    {{ partial \"functions/slides_get_hook\" (dict \"hook\" \"slide-header\" \"context\" $pageContext) }}\n  </div>\n\n  {{/* Hook: slide-footer */}}\n  <div class=\"slide-footer\">\n    {{ partial \"functions/slides_get_hook\" (dict \"hook\" \"slide-footer\" \"context\" $pageContext) }}\n  </div>\n\n</div>\n"
  },
  {
    "path": "modules/slides/layouts/_shortcodes/fragment.html",
    "content": "<span class=\"fragment {{ .Get \"class\" }}\" {{ with .Get \"weight\" }}data-fragment-index=\"{{ . }}\"{{ end }}>\n  {{ .Inner | markdownify | emojify }}\n</span>"
  },
  {
    "path": "modules/slides/layouts/_shortcodes/slide.html",
    "content": "{{ $non_data_attributes := slice \"id\" \"class\" }}\n<section data-noprocess data-shortcode-slide\n  {{ range $key, $value := $.Params }}\n      {{ $attribute := cond (in $non_data_attributes $key) $key (delimit (slice \"data\" $key) \"-\") }}\n      {{ $attribute | safeHTMLAttr }}=\"{{ $value }}\"\n  {{ end }}>\n"
  },
  {
    "path": "modules/slides/layouts/_shortcodes/speaker_note.html",
    "content": "<aside class=\"notes\">\n  {{ .Inner | markdownify | emojify }}\n</aside>"
  },
  {
    "path": "modules/slides/layouts/slides/baseof.html",
    "content": "{{/*\n  Slides Baseof - Landing page chrome only\n  Presentation output lives in baseof.present.html\n*/}}\n\n<!doctype html>\n{{- $language_code := site.LanguageCode | default \"en-us\" -}}\n<html lang=\"{{$language_code}}\" {{ if in site.Data.i18n.rtl.rtl $language_code }}dir=\"rtl\"{{else}}dir=\"ltr\"{{end}}\n      data-wc-theme-default=\"{{ (lower site.Params.hugoblox.theme.mode) | default \"system\" }}\"\n      data-hbb-relurl=\"{{ \"\" | relURL }}\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>{{ .Title }} | {{ site.Params.hugoblox.identity.name | default site.Title }}</title>\n  \n  {{ partial \"site_head\" . }}\n  \n</head>\n\n<body class=\"bg-[var(--color-background)] text-[var(--color-foreground)] page-wrapper\" id=\"top\">\n  {{/* Landing page chrome */}}\n  <div id=\"page-bg\"></div>\n  <div class=\"page-header {{ if site.Params.hugoblox.header.sticky }}sticky top-0 z-30{{ end }}\">\n    {{ $show_navbar := ((site.Params.hugoblox.header.enable | default true) | and (ne .Params.header.navbar.enable false)) | or .Params.header.navbar.enable }}\n    {{ if $show_navbar }}\n      {{- $header_config := .Params.header.navbar | default site.Params.hugoblox.header | default dict -}}\n      {{- $block_name := partial \"hbx/resolve-block-param\" (dict \"config\" $header_config \"context\" \"header\") | default \"navbar\" -}}\n      {{ $block_path := printf \"components/headers/%s.html\" $block_name }}\n      {{ if templates.Exists (printf \"_partials/%s\" $block_path) }}\n        {{ partial $block_path . }}\n      {{ end }}\n    {{ end }}\n  </div>\n  <div class=\"page-body my-10\">\n    {{ block \"main\" . }}{{ end }}\n  </div>\n  <div class=\"page-footer\">\n    {{ partial \"site_footer\" . }}\n  </div>\n  \n  {{ partial \"notification-container\" . }}\n  {{ partial \"functions/get_hook\" (dict \"hook\" \"body-end\" \"context\" .) }}\n\n</body>\n</html>\n"
  },
  {
    "path": "modules/slides/layouts/slides/baseof.present.html",
    "content": "{{/*\n  Present Baseof - Presentation output only\n  \n  Hook Points Available:\n  - slide-head-end: End of <head> for custom CSS/JS\n  - slide-header: Top of presentation (inside .reveal wrapper)\n  - slide-footer: Bottom of presentation (inside .reveal wrapper)\n  - slide-body-end: End of <body> for custom JS\n  \n  Branding Configuration (site.Params.slides.branding or page front matter):\n    logo:\n      src: \"media/logo.png\"\n      position: \"top-left\"  # top-left, top-right, bottom-left, bottom-right\n      width: \"100px\"\n    title:\n      show: true\n      position: \"bottom-left\"\n    author:\n      show: true\n      position: \"bottom-right\"\n*/}}\n\n<!doctype html>\n{{- $language_code := site.LanguageCode | default \"en-us\" -}}\n<html lang=\"{{$language_code}}\" {{ if in site.Data.i18n.rtl.rtl $language_code }}dir=\"rtl\"{{else}}dir=\"ltr\"{{end}}>\n<head>\n\n  {{/* Asset versions */}}\n  {{ $cdn_url_reveal := \"https://cdn.jsdelivr.net/npm/reveal.js@5.0.4\" }}\n  {{ $mermaid_version := \"9.1.3\" }}\n  {{ $mermaid_sri := \"sha256-TIYL00Rhw/8WaoUhYTLX9SKIEFdXxg+yMWSLVUbhiLg=\" }}\n\n  <meta charset=\"utf-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"generator\" content=\"HugoBlox Kit {{with site.Data.hugoblox.version}}{{.}}{{end}}\">\n\n  {{ with site.Home.OutputFormats.Get \"WebAppManifest\" }}\n    <link rel=\"manifest\" href=\"{{ .RelPermalink }}\">\n  {{ end }}\n\n  <link rel=\"icon\" type=\"image/png\" href=\"{{ \"media/icon.png\" | relURL }}\">\n  <link rel=\"apple-touch-icon\" type=\"image/png\" href=\"{{ \"media/icon.png\" | relURL }}\">\n\n  {{ $landing_url := .Permalink }}\n  {{ with .OutputFormats.Get \"HTML\" }}\n    {{ $landing_url = .Permalink }}\n  {{ end }}\n  <link rel=\"canonical\" href=\"{{ $landing_url }}\">\n  <meta name=\"robots\" content=\"noindex, nofollow\">\n\n  <title>{{ .Title }} | {{ site.Params.hugoblox.identity.name | default site.Title }}</title>\n\n  {{/* Load Reveal CSS */}}\n  <link rel=\"stylesheet\" href=\"{{ $cdn_url_reveal }}/dist/reveal.min.css\">\n  {{- $theme := $.Param \"slides.theme\" | default \"black\" -}}\n  <link rel=\"stylesheet\" href=\"{{ $cdn_url_reveal }}/dist/theme/{{ $theme }}.min.css\">\n\n  {{/* Load branding CSS */}}\n  {{ $branding_css := resources.Get \"css/slides-branding.css\" }}\n  {{ with $branding_css }}\n    {{ $branding_css = . | minify | fingerprint }}\n    <link rel=\"stylesheet\" href=\"{{ $branding_css.RelPermalink }}\">\n  {{ end }}\n\n  {{/* Hugo Chroma Syntax Highlighter */}}\n  {{ $hl_theme := $.Param \"slides.highlight_style\" | default \"dracula\" }}\n  {{ $hl_theme_path := printf \"css/libs/chroma/%s.css\" $hl_theme }}\n  {{ if fileExists (printf \"assets/%s\" $hl_theme_path) }}\n    {{ $hl_theme_css := resources.Get $hl_theme_path | minify }}\n    <link rel=\"stylesheet\" href=\"{{ $hl_theme_css.RelPermalink }}\">\n  {{ end }}\n\n  {{/* Reveal print styles (paper or PDF) */}}\n  <script>\n    (function() {\n      const link = document.createElement(\"link\");\n      link.rel = \"stylesheet\";\n      link.type = \"text/css\";\n      const params = new URLSearchParams(window.location.search);\n      const mode = params.has(\"print-pdf\") ? \"pdf\" : \"paper\";\n      link.href = \"{{ $cdn_url_reveal }}/dist/print/\" + mode + \".css\";\n      document.head.appendChild(link);\n    })();\n  </script>\n\n  {{/* Hook: slide-head-end - Custom CSS/JS injection point */}}\n  {{ partial \"functions/slides_get_hook\" (dict \"hook\" \"slide-head-end\" \"context\" .) }}\n\n</head>\n<body>\n\n  {{ block \"main\" . }}{{ end }}\n\n  {{/* Load Reveal and plugins */}}\n  <script src=\"{{ $cdn_url_reveal }}/dist/reveal.min.js\" crossorigin=\"anonymous\"></script>\n  <script src=\"{{ $cdn_url_reveal }}/plugin/markdown/markdown.min.js\" crossorigin=\"anonymous\"></script>\n  <script src=\"{{ $cdn_url_reveal }}/plugin/notes/notes.min.js\" crossorigin=\"anonymous\"></script>\n  <script src=\"{{ $cdn_url_reveal }}/plugin/search/search.min.js\" crossorigin=\"anonymous\"></script>\n  <script src=\"{{ $cdn_url_reveal }}/plugin/math/math.min.js\" crossorigin=\"anonymous\"></script>\n  <script src=\"{{ $cdn_url_reveal }}/plugin/zoom/zoom.min.js\" crossorigin=\"anonymous\"></script>\n\n  {{/* Load Mermaid if enabled */}}\n  {{ if $.Param \"slides.diagram\" | default false}}\n    {{ printf \"<script src=\\\"%s\\\" integrity=\\\"%s\\\" crossorigin=\\\"anonymous\\\" title=\\\"mermaid\\\"></script>\" (printf \"https://cdn.jsdelivr.net/npm/mermaid@%s/dist/mermaid.min.js\" $mermaid_version) $mermaid_sri | safeHTML }}\n  {{ end }}\n\n  {{/* Initialize Reveal */}}\n  {{ $slidejs := resources.Get \"js/hugoblox-slides.js\" | js.Build (dict \"params\" (dict \"slides\" $.Params.slides )) | fingerprint }}\n  <script src=\"{{ $slidejs.RelPermalink }}\"></script>\n\n  {{/* Hook: slide-body-end - End of body for custom JS */}}\n  {{ partial \"functions/slides_get_hook\" (dict \"hook\" \"slide-body-end\" \"context\" .) }}\n\n</body>\n</html>\n"
  },
  {
    "path": "modules/slides/layouts/slides/list.html",
    "content": "{{ define \"main\" }}\n\n{{/* Enable Alpine.js for tag filtering */}}\n{{ .Store.Set \"has_alpine\" true }}\n\n{{/* Collect all unique tags from slides */}}\n{{ $allTags := slice }}\n{{ $featuredPages := slice }}\n{{ $regularPages := slice }}\n{{ $search_placeholder := i18n \"slides_search_placeholder\" | default \"Search decks by title...\" }}\n{{ $all_label := i18n \"all\" | default \"All\" }}\n{{ $no_decks_label := i18n \"slides_no_decks\" | default \"No slide decks found\" }}\n{{ $no_matches_label := i18n \"slides_no_matches\" | default \"No decks match your filters\" }}\n{{ $clear_filters_label := i18n \"clear_filters\" | default \"Clear filters\" }}\n\n{{ range .Pages }}\n  {{ if .Params.tags }}\n    {{ range .Params.tags }}\n      {{ $allTags = $allTags | append . }}\n    {{ end }}\n  {{ end }}\n  {{ if or .Params.featured .Params.pinned }}\n    {{ $featuredPages = $featuredPages | append . }}\n  {{ else }}\n    {{ $regularPages = $regularPages | append . }}\n  {{ end }}\n{{ end }}\n\n{{ $allTags = $allTags | uniq | sort }}\n\n{{/* Sort featured by date descending, then regular by date descending */}}\n{{ $featuredPages = sort $featuredPages \".Date\" \"desc\" }}\n{{ $regularPages = sort $regularPages \".Date\" \"desc\" }}\n{{ $sortedPages := $featuredPages | append $regularPages }}\n\n<div class=\"container mx-auto px-4 sm:px-6 max-w-6xl py-8\" x-data=\"slidesFilter()\">\n  \n  {{/* Page Header */}}\n  <div class=\"mb-8\">\n    <h1 class=\"text-3xl md:text-4xl font-bold text-zinc-900 dark:text-zinc-100 mb-2\">{{ .Title }}</h1>\n    {{ with .Content }}\n    <div class=\"prose prose-zinc dark:prose-invert max-w-none\">\n      {{ . }}\n    </div>\n    {{ end }}\n  </div>\n\n  {{/* Search and Filter Bar */}}\n  <div class=\"mb-8 space-y-4\">\n    {{/* Search input */}}\n    <div class=\"relative max-w-md\">\n      <input \n        type=\"text\" \n        x-model=\"searchQuery\"\n        @input=\"filterDecks()\"\n        placeholder=\"{{ $search_placeholder }}\"\n        class=\"w-full pl-10 pr-4 py-2.5 rounded-lg border border-zinc-200 dark:border-zinc-700 bg-white dark:bg-zinc-800 text-zinc-900 dark:text-zinc-100 placeholder-zinc-400 dark:placeholder-zinc-500 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent transition-shadow\"\n      >\n      <svg class=\"absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-zinc-400\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n        <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\"/>\n      </svg>\n    </div>\n\n    {{/* Tag Filter Chips */}}\n    {{ if $allTags }}\n    <div class=\"flex flex-wrap gap-2\">\n      <button \n        @click=\"setTag('all')\"\n        :class=\"activeTag === 'all' ? 'bg-primary-600 text-white' : 'bg-zinc-100 dark:bg-zinc-800 text-zinc-700 dark:text-zinc-300 hover:bg-zinc-200 dark:hover:bg-zinc-700'\"\n        class=\"px-3 py-1.5 rounded-full text-sm font-medium transition-colors\"\n      >\n        {{ $all_label }}\n      </button>\n      {{ range $allTags }}\n      <button \n        @click=\"setTag({{ . | jsonify }})\"\n        :class=\"activeTag === {{ . | jsonify }} ? 'bg-primary-600 text-white' : 'bg-zinc-100 dark:bg-zinc-800 text-zinc-700 dark:text-zinc-300 hover:bg-zinc-200 dark:hover:bg-zinc-700'\"\n        class=\"px-3 py-1.5 rounded-full text-sm font-medium transition-colors\"\n      >\n        {{ . }}\n      </button>\n      {{ end }}\n    </div>\n    {{ end }}\n  </div>\n\n  {{/* Decks Grid */}}\n  {{ $view := .Params.view | default \"slides-gallery\" }}\n  {{ $config := dict \n    \"columns\" (.Params.columns | default 2) \n    \"len\" (len $sortedPages) \n    \"fill_image\" (.Params.fill_image | default true)\n    \"show_date\" (.Params.show_date | default true)\n  }}\n\n  {{ partial \"functions/render_view\" (dict \"fragment\" \"start\" \"page\" . \"item\" . \"view\" $view \"config\" $config) }}\n\n  {{ range $index, $item := $sortedPages }}\n    {{ $tags := $item.Params.tags | default (slice) }}\n    {{ $tagsJson := $tags | jsonify }}\n    {{ $authorList := slice }}\n    {{ with $item.Params.authors }}\n      {{ if reflect.IsSlice . }}\n        {{ $authorList = . }}\n      {{ else }}\n        {{ $authorList = slice . }}\n      {{ end }}\n    {{ end }}\n    {{ $authorNames := slice }}\n    {{ range $authorList }}\n      {{ $profile := partial \"functions/get_author_profile\" . }}\n      {{ $authorName := . }}\n      {{ if $profile.has_data }}\n        {{ $authorName = $profile.title }}\n      {{ end }}\n      {{ $authorNames = $authorNames | append $authorName }}\n    {{ end }}\n    {{ $searchParts := slice $item.Title }}\n    {{ with $item.Params.venue }}\n      {{ $searchParts = $searchParts | append . }}\n    {{ end }}\n    {{ if gt (len $authorNames) 0 }}\n      {{ $searchParts = $searchParts | append (delimit $authorNames \" \") }}\n    {{ end }}\n    {{ if gt (len $tags) 0 }}\n      {{ $searchParts = $searchParts | append (delimit $tags \" \") }}\n    {{ end }}\n    {{ $searchText := (delimit $searchParts \" \") | lower }}\n    \n    <div \n      class=\"deck-card\"\n      data-tags=\"{{ $tagsJson }}\"\n      data-search=\"{{ $searchText }}\"\n    >\n      {{ partial \"functions/render_view\" (dict \"page\" $ \"item\" $item \"view\" $view \"index\" $index \"config\" $config) }}\n    </div>\n  {{ end }}\n\n  {{ partial \"functions/render_view\" (dict \"fragment\" \"end\" \"page\" . \"item\" . \"view\" $view) }}\n\n  {{/* Empty state */}}\n  {{ if eq (len $sortedPages) 0 }}\n  <div class=\"text-center py-12\">\n    <svg class=\"mx-auto h-12 w-12 text-zinc-400\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n      <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.172 16.172a4 4 0 015.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z\"/>\n    </svg>\n    <p class=\"mt-4 text-zinc-600 dark:text-zinc-400\">{{ $no_decks_label }}</p>\n  </div>\n  {{ end }}\n\n  {{/* No matches empty state */}}\n  <div \n    x-show=\"noMatches\" \n    x-cloak\n    class=\"text-center py-12\"\n  >\n    <svg class=\"mx-auto h-12 w-12 text-zinc-400\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n      <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M9.172 16.172a4 4 0 015.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z\"/>\n    </svg>\n    <p class=\"mt-4 text-zinc-600 dark:text-zinc-400\">{{ $no_matches_label }}</p>\n    <button @click=\"clearFilters()\" class=\"mt-2 text-primary-600 dark:text-primary-400 hover:underline\">\n      {{ $clear_filters_label }}\n    </button>\n  </div>\n\n</div>\n\n<script>\n  function slidesFilter() {\n    return {\n      activeTag: 'all',\n      searchQuery: '',\n      noMatches: false,\n\n      setTag(tag) {\n        this.activeTag = tag;\n        this.filterDecks();\n      },\n\n      clearFilters() {\n        this.activeTag = 'all';\n        this.searchQuery = '';\n        this.filterDecks();\n      },\n\n      filterDecks() {\n        const cards = document.querySelectorAll('.deck-card');\n        let visibleCount = 0;\n        const query = this.searchQuery.toLowerCase().trim();\n        \n        cards.forEach(card => {\n          const tags = JSON.parse(card.dataset.tags || '[]');\n          const searchText = card.dataset.search || '';\n          \n          const matchesTag = this.activeTag === 'all' || tags.includes(this.activeTag);\n          const matchesSearch = query === '' || searchText.includes(query);\n          \n          if (matchesTag && matchesSearch) {\n            card.style.display = '';\n            visibleCount++;\n          } else {\n            card.style.display = 'none';\n          }\n        });\n\n        this.noMatches = visibleCount === 0 && cards.length > 0;\n      }\n    }\n  }\n</script>\n\n{{ end }}\n"
  },
  {
    "path": "modules/slides/layouts/slides/presenter.html",
    "content": "{{/*\n  Presenter Layout - Full-screen Reveal.js presentation\n  Uses parent page's slide content\n  Route: /slides/<deck>/present/\n*/}}\n\n{{/* Get parent deck page (the actual slides content) */}}\n{{ $deckPage := .Parent }}\n{{ if not $deckPage }}\n  {{ $deckPage = . }}\n{{ end }}\n\n{{/* Render using modules/slides presentation layout */}}\n{{ partial \"slides\" (union (slice $deckPage) $deckPage.Pages) }}\n"
  },
  {
    "path": "modules/slides/layouts/slides/single.html",
    "content": "{{/*\n  Smart Slides Single Layout\n  Landing page for slide decks.\n  Presentation output is rendered via the present output format.\n*/}}\n\n{{ define \"main\" }}\n\n{{ $present_format := .OutputFormats.Get \"present\" }}\n{{ $back_to_slides_label := i18n \"back_to_slides\" | default \"Back to Slides\" }}\n{{ $featured_label := i18n \"featured\" | default \"Featured\" }}\n{{ $slides_label := i18n \"slides\" | default \"Slides\" }}\n{{ $abstract_label := i18n \"callout_abstract\" | default \"Abstract\" }}\n{{ $topics_label := i18n \"topics\" | default \"Topics\" }}\n{{ $related_resources_label := i18n \"related_resources\" | default \"Related Resources\" }}\n{{ $present_fullscreen_label := i18n \"present_fullscreen\" | default \"Present (fullscreen)\" }}\n{{ $copy_link_label := i18n \"copy_link\" | default \"Copy Link\" }}\n{{ $copy_citation_label := i18n \"copy_citation\" | default \"Copy citation\" }}\n{{ $copied_label := i18n \"btn_copied\" | default \"Copied\" }}\n{{ $export_pdf_label := i18n \"export_pdf_print\" | default \"Export PDF (print)\" }}\n{{ $print_hint := i18n \"slides_print_hint\" | default \"Opens in print mode - use browser Print > Save as PDF\" }}\n{{ $how_to_cite_label := i18n \"how_to_cite\" | default \"How to cite\" }}\n{{ $citation_label := i18n \"citation\" | default \"Citation\" }}\n{{ $doi_label := i18n \"btn_doi\" | default \"DOI\" }}\n{{ $bibtex_label := i18n \"bibtex\" | default \"BibTeX\" }}\n{{ $download_cite_bib_label := i18n \"download_cite_bib\" | default \"Download cite.bib\" }}\n{{ $lecture_label := i18n \"lecture\" | default \"Lecture\" }}\n\n{{/* LANDING PAGE CONTENT */}}\n<div id=\"deck-landing\">\n  \n  {{/* Get slide metadata */}}\n  {{ $authors := .Params.authors | default (slice) }}\n  {{ $venue := .Params.venue }}\n  {{ $event := .Params.event }}\n  {{ $course := .Params.course }}\n  {{ $lecture := .Params.lecture_number }}\n  {{ $tags := .Params.tags | default (slice) }}\n  {{ $topics := .Params.topics | default $tags }}\n  {{ $description := .Params.abstract | default .Params.summary | default .Description }}\n  {{ $citation := .Params.citation }}\n\n  {{ $authorNames := slice }}\n  {{ $authorList := slice }}\n  {{ with $authors }}\n    {{ if reflect.IsSlice . }}\n      {{ $authorList = . }}\n    {{ else }}\n      {{ $authorList = slice . }}\n    {{ end }}\n  {{ end }}\n  {{ range $authorList }}\n    {{ $profile := partial \"functions/get_author_profile\" . }}\n    {{ $authorName := . }}\n    {{ if $profile.has_data }}\n      {{ $authorName = $profile.title }}\n    {{ end }}\n    {{ $authorNames = $authorNames | append $authorName }}\n  {{ end }}\n  \n  {{/* Build links using HugoBlox standard structure */}}\n  {{ $builtLinks := partial \"functions/build_links.html\" (dict \"page\" . \"is_list\" false) }}\n  \n  {{/* Filter links by type for Related Resources section */}}\n  {{ $resourceLinks := slice }}\n  {{ $citationLinks := slice }}\n  {{ range $builtLinks }}\n    {{ if in (slice \"pdf\" \"preprint\" \"code\" \"video\" \"dataset\" \"demo\" \"site\") .type }}\n      {{ $resourceLinks = $resourceLinks | append . }}\n    {{ else if in (slice \"doi\" \"bibtex\") .type }}\n      {{ $citationLinks = $citationLinks | append . }}\n    {{ end }}\n  {{ end }}\n\n  {{ $citation_copy := \"\" }}\n  {{ if $citation }}\n    {{ $citation_copy = $citation }}\n  {{ else }}\n    {{ range $citationLinks }}\n      {{ if and (eq $citation_copy \"\") (eq .type \"doi\") }}\n        {{ $citation_copy = .url }}\n      {{ else if and (eq $citation_copy \"\") (eq .type \"bibtex\") }}\n        {{ $citation_copy = .url }}\n      {{ end }}\n    {{ end }}\n  {{ end }}\n  {{ $has_citation_copy := ne $citation_copy \"\" }}\n\n  {{/* Calculate slide count */}}\n  {{ $content := .RawContent }}\n  {{ $slideCount := 1 }}\n  {{ $separators := findRE \"(?m)^---$\" $content }}\n  {{ if $separators }}\n    {{ $slideCount = add (len $separators) 1 }}\n    {{ if hasPrefix $content \"---\" }}\n      {{ $slideCount = sub $slideCount 1 }}\n    {{ end }}\n  {{ end }}\n\n  <div class=\"container mx-auto px-4 sm:px-6 max-w-5xl py-12\" x-data=\"{ copied: false, showCitation: false, copyText: {{ $copy_link_label | jsonify }}, citationCopied: false, citationCopyText: {{ $copy_citation_label | jsonify }}, citationValue: {{ $citation_copy | jsonify }} }\">\n    \n    {{/* Back to library link */}}\n    <a href=\"{{ \"/slides/\" | relURL }}\" class=\"inline-flex items-center gap-2 text-sm text-zinc-600 dark:text-zinc-400 hover:text-primary-600 dark:hover:text-primary-400 mb-6 transition-colors\">\n      <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n        <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M10 19l-7-7m0 0l7-7m-7 7h18\"/>\n      </svg>\n      {{ $back_to_slides_label }}\n    </a>\n\n    {{/* Main content card */}}\n    <div class=\"bg-white dark:bg-zinc-900 rounded-2xl shadow-lg ring-1 ring-zinc-900/5 dark:ring-white/10 overflow-hidden mb-8\">\n      \n      {{/* Hero section with gradient */}}\n      <div class=\"relative px-8 py-12 bg-gradient-to-br from-primary-600 to-primary-800 dark:from-primary-700 dark:to-primary-900 text-white\">\n        {{/* Featured badge */}}\n        {{ if or .Params.featured .Params.pinned }}\n        <div class=\"absolute top-4 right-4 px-3 py-1 rounded-full text-xs font-semibold bg-white/20 backdrop-blur-sm flex items-center gap-1.5\">\n          <svg class=\"w-3 h-3\" fill=\"currentColor\" viewBox=\"0 0 20 20\">\n            <path d=\"M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z\"/>\n          </svg>\n          {{ $featured_label }}\n        </div>\n        {{ end }}\n\n        <h1 class=\"text-3xl md:text-4xl font-bold mb-4\">{{ .Title }}</h1>\n        \n        {{/* Meta info */}}\n        <div class=\"flex flex-wrap items-center gap-x-4 gap-y-2 text-sm text-white/80\">\n          {{ if gt (len $authorNames) 0 }}\n          <div class=\"flex items-center gap-1.5\">\n            <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z\"/>\n            </svg>\n            {{ delimit $authorNames \", \" }}\n          </div>\n          {{ end }}\n          \n          {{ with $venue }}\n          <div class=\"flex items-center gap-1.5\">\n            <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z\"/>\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 11a3 3 0 11-6 0 3 3 0 016 0z\"/>\n            </svg>\n            {{ . }}\n          </div>\n          {{ end }}\n\n          {{ with $event }}\n          <div class=\"flex items-center gap-1.5\">\n            <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M15 5v2m0 4v2m0 4v2M5 5a2 2 0 00-2 2v3a2 2 0 110 4v3a2 2 0 002 2h14a2 2 0 002-2v-3a2 2 0 110-4V7a2 2 0 00-2-2H5z\"/>\n            </svg>\n            {{ . }}\n          </div>\n          {{ end }}\n\n          {{ if $course }}\n          <div class=\"flex items-center gap-1.5\">\n            <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253\"/>\n            </svg>\n            {{ $course }}{{ with $lecture }} - {{ $lecture_label }} {{ . }}{{ end }}\n          </div>\n          {{ end }}\n          \n          <div class=\"flex items-center gap-1.5\">\n            <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z\"/>\n            </svg>\n            {{ .Date | time.Format \"January 2006\" }}\n          </div>\n\n          <div class=\"flex items-center gap-1.5\">\n            <svg class=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 17v-2m3 2v-4m3 4v-6m2 10H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z\"/>\n            </svg>\n            {{ $slideCount }} {{ $slides_label | lower }}\n          </div>\n        </div>\n      </div>\n\n      {{/* Content section */}}\n      <div class=\"px-8 py-8\">\n        {{/* Description/Abstract */}}\n        {{ with $description }}\n        <div class=\"mb-6\">\n          <h2 class=\"text-lg font-semibold text-zinc-900 dark:text-zinc-100 mb-2\">{{ $abstract_label }}</h2>\n          <p class=\"text-zinc-600 dark:text-zinc-400 leading-relaxed\">{{ . }}</p>\n        </div>\n        {{ end }}\n\n        {{/* Topics/Tags */}}\n        {{ if $topics }}\n        <div class=\"mb-6\">\n          <h2 class=\"text-lg font-semibold text-zinc-900 dark:text-zinc-100 mb-2\">{{ $topics_label }}</h2>\n          <div class=\"flex flex-wrap gap-2\">\n            {{ range $topics }}\n            <a href=\"{{ \"/slides/\" | relURL }}\" class=\"px-3 py-1 rounded-full text-sm font-medium bg-zinc-100 dark:bg-zinc-800 text-zinc-700 dark:text-zinc-300 hover:bg-primary-100 dark:hover:bg-primary-900/40 hover:text-primary-700 dark:hover:text-primary-300 transition-colors\">\n              {{ . }}\n            </a>\n            {{ end }}\n          </div>\n        </div>\n        {{ end }}\n\n        {{/* Related Resources - Use HugoBlox standard links */}}\n        {{ if $resourceLinks }}\n        <div class=\"mb-6\">\n          <h2 class=\"text-lg font-semibold text-zinc-900 dark:text-zinc-100 mb-2\">{{ $related_resources_label }}</h2>\n          <div class=\"flex flex-wrap gap-3\">\n            {{ range $resourceLinks }}\n              {{ $linkLabel := .label }}\n              {{ with .labelKey }}\n                {{ $linkLabel = i18n . | default $linkLabel }}\n              {{ end }}\n              {{ $target := \"\" }}\n              {{ $rel := \"\" }}\n              {{ $scheme := (urls.Parse .url).Scheme }}\n              {{ if in (slice \"http\" \"https\") $scheme }}\n                {{ $target = \"_blank\" }}\n                {{ $rel = \"noopener\" }}\n              {{ end }}\n              \n              <a href=\"{{ .url }}\" {{ with $target }}target=\"{{ . }}\"{{ end }} {{ with $rel }}rel=\"{{ . }}\"{{ end }} class=\"inline-flex items-center gap-2 px-4 py-2 rounded-lg bg-zinc-100 dark:bg-zinc-800 text-zinc-700 dark:text-zinc-300 hover:bg-zinc-200 dark:hover:bg-zinc-700 transition-colors\">\n                {{ partial \"functions/get_icon\" (dict \"name\" (.icon | default \"hero/link\") \"attributes\" \"class='w-4 h-4'\") }}\n                {{ $linkLabel }}\n              </a>\n            {{ end }}\n          </div>\n        </div>\n        {{ end }}\n\n        {{/* Share Panel */}}\n        <div class=\"flex flex-wrap gap-3 pt-6 border-t border-zinc-100 dark:border-zinc-800 mb-6\">\n          {{/* Open Presenter */}}\n          {{ with $present_format }}\n          <a href=\"{{ .RelPermalink }}\" target=\"_blank\" rel=\"noopener\" class=\"inline-flex items-center gap-2 px-6 py-3 rounded-lg bg-primary-600 hover:bg-primary-700 text-white font-semibold transition-colors shadow-lg shadow-primary-500/25 cursor-pointer\">\n            <svg class=\"w-5 h-5\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path d=\"M8 5v14l11-7z\"/>\n            </svg>\n            {{ $present_fullscreen_label }}\n          </a>\n          {{ end }}\n\n          {{/* Copy Link */}}\n          <button \n            @click=\"navigator.clipboard.writeText('{{ .Permalink }}'); copied = true; copyText = {{ $copied_label | jsonify }}; setTimeout(() => { copied = false; copyText = {{ $copy_link_label | jsonify }}; }, 2000)\"\n            class=\"inline-flex items-center gap-2 px-4 py-3 rounded-lg bg-zinc-100 dark:bg-zinc-800 text-zinc-700 dark:text-zinc-300 hover:bg-zinc-200 dark:hover:bg-zinc-700 transition-colors\"\n          >\n            <svg class=\"w-5 h-5\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\" x-show=\"!copied\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z\"/>\n            </svg>\n            <svg class=\"w-5 h-5 text-green-500\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\" x-show=\"copied\" x-cloak>\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 13l4 4L19 7\"/>\n            </svg>\n            <span x-text=\"copyText\">{{ $copy_link_label }}</span>\n          </button>\n\n          {{/* Copy Citation */}}\n          {{ if $has_citation_copy }}\n          <button \n            @click=\"navigator.clipboard.writeText(citationValue); citationCopied = true; citationCopyText = {{ $copied_label | jsonify }}; setTimeout(() => { citationCopied = false; citationCopyText = {{ $copy_citation_label | jsonify }}; }, 2000)\"\n            class=\"inline-flex items-center gap-2 px-4 py-3 rounded-lg bg-zinc-100 dark:bg-zinc-800 text-zinc-700 dark:text-zinc-300 hover:bg-zinc-200 dark:hover:bg-zinc-700 transition-colors\"\n          >\n            <svg class=\"w-5 h-5\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\" x-show=\"!citationCopied\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z\"/>\n            </svg>\n            <svg class=\"w-5 h-5 text-green-500\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\" x-show=\"citationCopied\" x-cloak>\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M5 13l4 4L19 7\"/>\n            </svg>\n            <span x-text=\"citationCopyText\">{{ $copy_citation_label }}</span>\n          </button>\n          {{ end }}\n\n          {{/* Print PDF */}}\n          {{ with $present_format }}\n          <a href=\"{{ .RelPermalink }}?print-pdf\" target=\"_blank\" rel=\"noopener\" class=\"inline-flex items-center gap-2 px-4 py-3 rounded-lg bg-zinc-100 dark:bg-zinc-800 text-zinc-700 dark:text-zinc-300 hover:bg-zinc-200 dark:hover:bg-zinc-700 transition-colors\" title=\"{{ $print_hint }}\">\n            <svg class=\"w-5 h-5\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z\"/>\n            </svg>\n            {{ $export_pdf_label }}\n          </a>\n          {{ end }}\n        </div>\n\n        {{/* Citation Section - Use HugoBlox standard links + citation field */}}\n        {{ if or $citation $citationLinks }}\n        <div class=\"pt-6 border-t border-zinc-100 dark:border-zinc-800\">\n          <button \n            @click=\"showCitation = !showCitation\"\n            class=\"flex items-center gap-2 text-sm font-medium text-zinc-600 dark:text-zinc-400 hover:text-zinc-900 dark:hover:text-zinc-100 transition-colors\"\n          >\n            <svg class=\"w-4 h-4 transition-transform\" :class=\"showCitation && 'rotate-90'\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n              <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9 5l7 7-7 7\"/>\n            </svg>\n            {{ $how_to_cite_label }}\n          </button>\n          <div x-show=\"showCitation\" x-transition class=\"mt-3 space-y-3\">\n            {{ with $citation }}\n            <div>\n              <h4 class=\"text-xs font-semibold text-zinc-500 dark:text-zinc-400 mb-1\">{{ $citation_label }}</h4>\n              <pre class=\"p-4 bg-zinc-50 dark:bg-zinc-800/50 rounded-lg text-sm text-zinc-700 dark:text-zinc-300 overflow-x-auto\"><code>{{ . }}</code></pre>\n            </div>\n            {{ end }}\n            \n            {{/* DOI and BibTeX from standard links structure */}}\n            {{ range $citationLinks }}\n              {{ if eq .type \"doi\" }}\n              <div>\n                <h4 class=\"text-xs font-semibold text-zinc-500 dark:text-zinc-400 mb-1\">{{ $doi_label }}</h4>\n                <a href=\"{{ .url }}\" target=\"_blank\" rel=\"noopener\" class=\"text-sm text-primary-600 dark:text-primary-400 hover:underline\">\n                  {{ .url | replaceRE \"^https://doi.org/\" \"\" }}\n                </a>\n              </div>\n              {{ else if eq .type \"bibtex\" }}\n              <div>\n                <h4 class=\"text-xs font-semibold text-zinc-500 dark:text-zinc-400 mb-1\">{{ $bibtex_label }}</h4>\n                <a href=\"{{ .url }}\" class=\"text-sm text-primary-600 dark:text-primary-400 hover:underline\">\n                  {{ $download_cite_bib_label }}\n                </a>\n              </div>\n              {{ end }}\n            {{ end }}\n          </div>\n        </div>\n        {{ end }}\n\n      </div>\n    </div>\n\n  </div>\n\n</div>\n\n{{ end }}\n"
  },
  {
    "path": "modules/slides/layouts/slides/single.present.html",
    "content": "{{ define \"main\" }}\n{{ partial \"slides\" (union (slice .Page) .Pages) }}\n{{ end }}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"kit\",\n  \"version\": \"1.0.0\",\n  \"description\": \"The Page Builder for Hugo\",\n  \"author\": \"George Cushen\",\n  \"license\": \"MIT\",\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"bugs\": {\n    \"url\": \"https://github.com/HugoBlox/kit/issues\"\n  },\n  \"homepage\": \"https://hugoblox.com\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/HugoBlox/kit.git\"\n  },\n  \"dependencies\": {\n    \"alpinejs\": \"^3.15.0\",\n    \"katex\": \"^0.16.22\",\n    \"markmap-autoloader\": \"^0.18.12\",\n    \"medium-zoom\": \"^1.0.8\",\n    \"mermaid\": \"^11.12.0\",\n    \"plotly.js\": \"^3.1.0\",\n    \"preact\": \"^10.27.2\",\n    \"rollup-plugin-delete\": \"^2.0.0\",\n    \"vite\": \"^7.1.2\",\n    \"vite-hugo-plugin\": \"^3.1.0\",\n    \"vite-plugin-static-copy\": \"^3.1.1\"\n  },\n  \"devDependencies\": {\n    \"@biomejs/biome\": \"^2.3.2\"\n  },\n  \"scripts\": {\n    \"prod\": \"scripts/view-starter-prod.sh\",\n    \"dev\": \"scripts/view-starter-dev.sh\",\n    \"dev:stop\": \"lsof -ti :8081 | xargs kill -9\",\n    \"test\": \"scripts/view-test.sh\",\n    \"lint\": \"biome check --reporter=summary . --linter-enabled=true --formatter-enabled=false\",\n    \"lint:fix\": \"biome check --write . --linter-enabled=true --formatter-enabled=false\",\n    \"format\": \"biome format --write .\",\n    \"update:starters\": \"poetry run python ./scripts/update.py\",\n    \"vendor:libs\": \"vite build --config vite.config.js\",\n    \"vendor:libs:watch\": \"vite build --config vite.config.js --watch\",\n    \"vendor:update-and-build\": \"pnpm up katex mermaid markmap-autoloader alpinejs plotly.js preact --latest && pnpm vendor:libs\",\n    \"test:releaser\": \"poetry run python scripts/test_release_modules.py\"\n  },\n  \"browserslist\": \"> 1%\"\n}\n"
  },
  {
    "path": "pyproject.toml",
    "content": "[tool.poetry]\nname = \"kit\"\nversion = \"0.1.0\"\ndescription = \"Project management tool for HugoBlox Kit repository\"\nauthors = [\"George Cushen <gcushen@users.noreply.github.com>\"]\nlicense = \"MIT\"\nreadme = \"README.md\"\npackage-mode = false\n\n[tool.poetry.dependencies]\npython = \"^3.12\"\nrequests = \"^2.31.0\"\npyyaml = \"^6.0.1\"\nruamel-yaml = \"^0.18.6\"\ntomlkit = \"^0.12.3\"\nplotext = \"^5.2.8\"\n\n[build-system]\nrequires = [\"poetry-core\"]\nbuild-backend = \"poetry.core.masonry.api\"\n"
  },
  {
    "path": "scripts/list_language_packs.py",
    "content": "#!/usr/bin/env python3\n\n# List Available Language Packs\n# Used for updating the Languages page of the documentation.\n# https://hugoblox.com\n#\n# Prerequisites: pip3 install PyYAML\n\nimport yaml\nfrom pathlib import Path\n\nLANG_PATH = Path(__file__).resolve().parent.parent.joinpath('modules').joinpath('blox').joinpath('data').joinpath('i18n')\nLANG_YAML = LANG_PATH.joinpath('languages.yaml')\n\n\n# Iterate over languages.\nwith open(LANG_YAML) as f:\n  master_map = yaml.safe_load(f)\n\n  # Print languages as a plaintext list.\n  # lang_list = [master_map[master_item] for master_item in master_map]\n  # print(', '.join(lang_list))\n\n  # Print languages as a Markdown list.\n  i = 0\n  for master_item in master_map:\n    print(f'- **{master_map[master_item]}** ({master_item})')\n    i += 1\n\nprint(\"\\n\")\nprint(f\"{i} language packs found!\")\n"
  },
  {
    "path": "scripts/release_modules.py",
    "content": "#!/usr/bin/env python3\n\n\"\"\"\nRelease management for HugoBlox modules.\n\nFeatures:\n - Detects changes per module since last path-prefixed tag (e.g., modules/blox/v0.4.3)\n - Determines next semantic version per module (conventional commits heuristics, default to patch)\n - Updates special module metadata (blox data/hugoblox.yaml version)\n - Updates dependent modules' go.mod \"require\" versions when a dependency is released\n - Tags changed modules with annotated tags and pushes tags\n - Updates templates' go.mod to latest released module versions and bumps Hugo version in template configs (hugoblox.yaml, Netlify, devcontainer)\n\nUsage examples:\n  poetry run python scripts/release_modules.py --dry-run --log-level INFO\n  poetry run python scripts/release_modules.py --yes --no-propagate --log-level DEBUG\n\nNotes:\n- Tags must be created with the subdirectory path prefix per Go's submodule tagging rules.\n- For modules with major version path suffix (e.g., /v5), versions must start with that major (e.g., v5.2.3).\n- This script assumes you have a clean working tree before running with --yes.\n\"\"\"\n\nfrom __future__ import annotations\n\nimport argparse\nimport json\nimport os\nimport re\nimport subprocess\nimport sys\nfrom dataclasses import dataclass, field\nfrom datetime import datetime, timezone\nimport logging\nfrom pathlib import Path\nfrom typing import Dict, List, Optional, Set, Tuple\n\nimport requests\nimport tomlkit\nfrom ruamel.yaml import YAML\nfrom ruamel.yaml.scalarstring import SingleQuotedScalarString\n\n\nREPO_ROOT = Path(__file__).resolve().parents[1]\nMODULES_DIR = REPO_ROOT / \"modules\"\nSTARTERS_DIR = REPO_ROOT / \"templates\"\nEXCLUDED_MODULE_DIRS = {\"blox-bootstrap\"}\n\n\ndef run_cmd(args: List[str], cwd: Optional[Path] = None, check: bool = True) -> subprocess.CompletedProcess:\n  workdir = str(cwd) if cwd else None\n  logging.debug(\"run: %s [cwd=%s]\", \" \".join(args), workdir or str(REPO_ROOT))\n  process = subprocess.run(args, cwd=workdir, text=True, capture_output=True)\n  if process.stdout:\n    logging.debug(\"stdout:\\n%s\", process.stdout.strip())\n  if process.stderr:\n    logging.debug(\"stderr:\\n%s\", process.stderr.strip())\n  if check and process.returncode != 0:\n    logging.error(\"command failed (%s): %s\", process.returncode, \" \".join(args))\n    raise RuntimeError(f\"Command failed: {' '.join(args)}\\nSTDOUT:\\n{process.stdout}\\nSTDERR:\\n{process.stderr}\")\n  return process\n\n\ndef get_latest_hugo_version() -> Optional[str]:\n  url = \"https://api.github.com/repos/gohugoio/hugo/releases/latest\"\n  try:\n    resp = requests.get(url, timeout=15)\n    if resp.status_code == 200:\n      tag = resp.json().get(\"tag_name\", \"\").lstrip(\"v\").strip()\n      return tag or None\n  except Exception:\n    pass\n  return None\n\n\ndef get_module_latest_commit_info(module: Module) -> Optional[Tuple[str, datetime]]:\n  \"\"\"Get the latest commit hash and timestamp for a module.\"\"\"\n  try:\n    # Get latest commit hash for the module directory\n    res = run_cmd([\"git\", \"log\", \"-1\", \"--format=%H %ct\", \"--\", str(module.rel_dir)], cwd=REPO_ROOT)\n    if not res.stdout.strip():\n      return None\n    \n    parts = res.stdout.strip().split()\n    if len(parts) != 2:\n      return None\n    \n    commit_hash = parts[0]\n    # Use UTC timestamp as required by Go module versioning\n    timestamp = datetime.fromtimestamp(int(parts[1]), tz=timezone.utc)\n    return commit_hash, timestamp\n  except Exception as e:\n    logging.warning(\"Failed to get commit info for %s: %s\", module.name, e)\n    return None\n\n\ndef format_pseudo_version(commit_hash: str, timestamp: datetime, base_version: str = \"v0.0.0\") -> str:\n  \"\"\"Format a commit hash and timestamp as a Go pseudo-version.\"\"\"\n  # Format: v0.0.0-20060102150405-abcdefabcdef\n  # Ensure timestamp is in UTC as required by Go module versioning\n  if timestamp.tzinfo is None:\n    timestamp = timestamp.replace(tzinfo=timezone.utc)\n  time_str = timestamp.strftime(\"%Y%m%d%H%M%S\")\n  short_hash = commit_hash[:12]\n  return f\"{base_version}-{time_str}-{short_hash}\"\n\n\ndef update_go_mod_require_pseudo_version(go_mod_text: str, dep_module_path: str, pseudo_version: str) -> str:\n  \"\"\"Replace exact require line with pseudo-version format.\"\"\"\n  # This handles both versioned requires (v1.2.3) and existing pseudo-versions\n  pattern_line = rf\"(?m)^(\\s*{re.escape(dep_module_path)}\\s+)(?:v\\d+[^\\s]*|v\\d+\\.\\d+\\.\\d+-\\d+-[a-f0-9]+)$\"\n  replacement_line = rf\"\\g<1>{pseudo_version}\"\n  return re.sub(pattern_line, replacement_line, go_mod_text)\n\n\ndef _bump_hugo_image_tag(image: str, latest_hugo: str) -> Optional[str]:\n  \"\"\"\n  Replace the hugo version segment in an image tag formatted like:\n  ghcr.io/org/hugo-blox-dev:hugo0.152.2[-suffix]\n  \"\"\"\n  pattern = re.compile(r\"^(?P<prefix>.+/hugo-blox-dev:hugo)(?P<version>\\d+\\.\\d+\\.\\d+)(?P<rest>.*)$\")\n  match = pattern.match(image)\n  if not match:\n    return None\n  current = match.group(\"version\")\n  if current == latest_hugo:\n    return None\n  return f\"{match.group('prefix')}{latest_hugo}{match.group('rest')}\"\n\n\ndef update_devcontainer_hugo(starter_dir: Path, latest_hugo: Optional[str], updated_paths: List[Path]) -> None:\n  \"\"\"Update devcontainer Hugo version pinned via image tag (preferred) or legacy feature.\"\"\"\n  if not latest_hugo:\n    return\n  devcontainer = starter_dir / \".devcontainer\" / \"devcontainer.json\"\n  if not devcontainer.exists():\n    return\n  try:\n    data = json.loads(devcontainer.read_text(encoding=\"utf-8\"))\n  except Exception as exc:  # pragma: no cover - defensive\n    logging.warning(\"starter %s: failed to parse devcontainer.json (%s)\", starter_dir.name, exc)\n    return\n\n  updated = False\n\n  # Preferred: bump Hugo version embedded in the image tag.\n  image = data.get(\"image\")\n  if isinstance(image, str):\n    new_image = _bump_hugo_image_tag(image, latest_hugo)\n    if new_image:\n      data[\"image\"] = new_image\n      updated = True\n      logging.info(\"starter %s: devcontainer image -> %s\", starter_dir.name, new_image)\n\n  # Legacy fallback: devcontainer Hugo feature pin.\n  if not updated:\n    features = data.get(\"features\", {})\n    hugo_feature = features.get(\"ghcr.io/devcontainers/features/hugo:1\")\n    if isinstance(hugo_feature, dict):\n      current = hugo_feature.get(\"version\")\n      if current != latest_hugo:\n        hugo_feature[\"version\"] = latest_hugo\n        features[\"ghcr.io/devcontainers/features/hugo:1\"] = hugo_feature\n        data[\"features\"] = features\n        updated = True\n        logging.info(\"starter %s: devcontainer Hugo feature -> %s\", starter_dir.name, latest_hugo)\n\n  if updated:\n    devcontainer.write_text(json.dumps(data, indent=2) + \"\\n\", encoding=\"utf-8\")\n    updated_paths.append(devcontainer)\n\n\n@dataclass\nclass Module:\n    name: str  # e.g., blox\n    rel_dir: Path  # e.g., modules/blox\n    module_path: str\n    major: int  # 0,1,2,... (derived from module_path suffix /vN if any)\n    requires: Set[str] = field(default_factory=set)  # module paths this module requires\n    dependents: Set[str] = field(default_factory=set)  # reverse edge, filled later\n\n    def tag_prefix(self) -> str:\n        # tags must be like: modules/blox/vX.Y.Z\n        return f\"{self.rel_dir.as_posix()}/v\"\n\n    def current_version_tag(self) -> Optional[str]:\n        # Find last tag for this module, prefixed by module rel path\n        # Sorted by semantic version descending\n        # For modules with major >= 2, the version series must start with v{major}.\n        pattern = f\"{self.rel_dir.as_posix()}/v{self.major if self.major >= 2 else ''}*\"\n        # Clean potential double 'v' for major 0/1\n        pattern = pattern.replace(\"v*v\", \"v*\")\n        res = run_cmd(\n            [\"git\", \"tag\", \"--list\", pattern, \"--sort=-v:refname\"], cwd=REPO_ROOT\n        )\n        tags = [t.strip() for t in res.stdout.splitlines() if t.strip()]\n        return tags[0] if tags else None\n\n    def last_version(self) -> Optional[str]:\n        tag = self.current_version_tag()\n        if not tag:\n            return None\n        m = re.search(r\"/v(\\d+\\.\\d+\\.\\d+)$\", tag)\n        return m.group(1) if m else None\n\n\ndef _extract_requires_from_go_mod(content: str) -> Set[str]:\n  requires: Set[str] = set()\n  # Single-line require\n  for m in re.findall(r\"(?m)^\\s*require\\s+([^\\s]+)\\s+v[0-9][^\\s]*$\", content):\n    requires.add(m.strip())\n\n  # Block require\n  for block in re.findall(r\"(?ms)^require\\s*\\(\\s*(.*?)\\s*\\)\", content):\n    for line in block.splitlines():\n      m = re.search(r\"^\\s*([^\\s]+)\\s+v[0-9][^\\s]*$\", line)\n      if m:\n        requires.add(m.group(1).strip())\n  return requires\n\n\ndef discover_modules() -> Dict[str, Module]:\n  modules: Dict[str, Module] = {}\n  for go_mod in MODULES_DIR.glob(\"**/go.mod\"):\n    rel_dir = go_mod.parent.relative_to(REPO_ROOT)\n    if rel_dir.name in EXCLUDED_MODULE_DIRS:\n      continue\n    content = go_mod.read_text(encoding=\"utf-8\")\n    m = re.search(r\"^module\\s+(.+)$\", content, re.MULTILINE)\n    if not m:\n      continue\n    module_path = m.group(1).strip()\n    name = rel_dir.name\n    major = 0\n    major_suffix = re.search(r\"/v(\\d+)$\", module_path)\n    if major_suffix:\n      major = int(major_suffix.group(1))\n    else:\n      # default major version is 0 or 1. We keep 0 to preserve existing series.\n      # We don't force elevation to 1 automatically.\n      major = 0\n\n    requires: Set[str] = _extract_requires_from_go_mod(content)\n\n    modules[module_path] = Module(\n      name=name,\n      rel_dir=rel_dir,\n      module_path=module_path,\n      major=major,\n      requires=requires,\n    )\n    logging.debug(\"discovered module: %s (dir=%s, major=%s, requires=%s)\", module_path, rel_dir, major, sorted(list(requires)))\n\n  # Fill dependents\n  for mod in modules.values():\n    for req in list(mod.requires):\n      if req in modules:\n        modules[req].dependents.add(mod.module_path)\n  logging.info(\"discovered %d modules\", len(modules))\n  return modules\n\n\ndef get_commits_since_tag(module: Module, tag: Optional[str]) -> List[str]:\n  if not tag:\n    # All history counts as changes for initial release\n    res = run_cmd([\"git\", \"log\", \"--pretty=%s\", \"--\", str(module.rel_dir)], cwd=REPO_ROOT)\n  else:\n    res = run_cmd([\"git\", \"log\", f\"{tag}..HEAD\", \"--pretty=%s\", \"--\", str(module.rel_dir)], cwd=REPO_ROOT)\n  msgs = [l.strip() for l in res.stdout.splitlines() if l.strip()]\n  logging.debug(\"%s commits since %s: %d\", module.name, tag or \"<none>\", len(msgs))\n  return msgs\n\n\ndef has_changes_since_tag(module: Module, tag: Optional[str]) -> bool:\n  if not tag:\n    return True\n  res = run_cmd([\"git\", \"diff\", \"--name-only\", tag, \"--\", str(module.rel_dir)], cwd=REPO_ROOT)\n  changed = any(l.strip() for l in res.stdout.splitlines())\n  logging.debug(\"changed since tag? %s: %s\", module.name, changed)\n  return changed\n\n\ndef determine_bump_from_commits(commits: List[str]) -> str:\n  # conventional commits heuristic\n  # returns one of: \"major\" | \"minor\" | \"patch\"\n  bump = \"patch\"\n  for msg in commits:\n    lower = msg.lower()\n    if \"breaking change\" in lower or re.search(r\"^\\w+(\\(.+\\))?!:\", lower):\n      return \"major\"\n    if lower.startswith(\"feat:\") or lower.startswith(\"feat(\"):\n      bump = \"minor\"\n  return bump\n\n\ndef bump_semver(version: Optional[str], bump: str, enforced_major: Optional[int]) -> str:\n  \"\"\"\n  Calculate next version. For modules with v2+ path (enforced_major >= 2), do NOT auto-bump\n  the major number here; a true major requires a new module path (/vN+1). We clamp the major to\n  enforced_major and treat a requested \"major\" bump as \"minor\".\n  For modules without a vN suffix, v0->v1 is allowed, but v1->v2 is NOT (would require /v2 path),\n  so a requested \"major\" bump at v1 is treated as \"minor\".\n  \"\"\"\n  if version is None:\n    # initial release default\n    if enforced_major and enforced_major >= 2:\n      return f\"{enforced_major}.0.0\"\n    return \"0.1.0\"\n\n  major, minor, patch = [int(x) for x in version.split(\".\")]\n\n  if enforced_major and enforced_major >= 2:\n    # clamp major and downgrade a requested major bump to minor\n    major = enforced_major\n    effective_bump = \"minor\" if bump == \"major\" else bump\n  else:\n    # No suffix: v0->v1 is OK, but v1->v2 requires path change we don't automate here\n    if bump == \"major\" and major >= 1:\n      effective_bump = \"minor\"\n    else:\n      effective_bump = bump\n\n  if effective_bump == \"major\":\n    major += 1\n    minor = 0\n    patch = 0\n  elif effective_bump == \"minor\":\n    minor += 1\n    patch = 0\n  else:\n    patch += 1\n\n  return f\"{major}.{minor}.{patch}\"\n\n\ndef write_blox_tailwind_theme_version(module: Module, version: str) -> List[Path]:\n  updated: List[Path] = []\n  # Update modules/blox/data/hugoblox.yaml version: \"X.Y.Z\"\n  if module.name != \"blox\":\n    return updated\n  data_file = module.rel_dir / \"data\" / \"hugoblox.yaml\"\n  if not data_file.exists():\n    return updated\n  yaml = YAML()\n  yaml.preserve_quotes = True\n  with data_file.open(\"r\", encoding=\"utf-8\") as f:\n    data = yaml.load(f) or {}\n  data[\"version\"] = SingleQuotedScalarString(version)\n  with data_file.open(\"w\", encoding=\"utf-8\") as f:\n    yaml.dump(data, f)\n  updated.append(data_file)\n  logging.info(\"bumped theme version in %s to %s\", data_file, version)\n  return updated\n\n\ndef update_citation_release_info(module: Module, version: str) -> List[Path]:\n  \"\"\"Update the public citation metadata to the latest blox release.\"\"\"\n  if module.name != \"blox\":\n    return []\n\n  citation = REPO_ROOT / \"CITATION.cff\"\n  if not citation.exists():\n    return []\n\n  original = citation.read_text(encoding=\"utf-8\")\n  release_date = datetime.now(timezone.utc).date().isoformat()\n\n  updated = original\n  version_pattern = r'(?m)^(version:\\s*)\"[^\"]+\"'\n  if re.search(version_pattern, updated):\n    updated = re.sub(version_pattern, rf'\\g<1>\"{version}\"', updated)\n  else:\n    updated = f'{updated.rstrip()}\\nversion: \"{version}\"\\n'\n\n  date_pattern = r'(?m)^(date-released:\\s*)(.+)$'\n  if re.search(date_pattern, updated):\n    updated = re.sub(date_pattern, rf\"\\g<1>{release_date}\", updated)\n  else:\n    updated = f\"{updated.rstrip()}\\ndate-released: {release_date}\\n\"\n\n  if updated != original:\n    citation.write_text(updated, encoding=\"utf-8\")\n    logging.info(\"updated CITATION.cff -> version %s, date %s\", version, release_date)\n    return [citation]\n  return []\n\n\ndef update_go_mod_require_version(go_mod_text: str, dep_module_path: str, new_version: str) -> str:\n  # Replace exact require line if present\n  # Handles both single-line require and block form\n  pattern_line = rf\"(?m)^(\\s*{re.escape(dep_module_path)}\\s+)v\\d+[^\\s]*$\"\n  replacement_line = rf\"\\g<1>v{new_version}\"\n\n  def replace_in_block(text: str) -> str:\n    # single-line replacement will naturally work for block content too\n    return re.sub(pattern_line, replacement_line, text)\n\n  # First try block section-specific replace\n  new_text = replace_in_block(go_mod_text)\n  return new_text\n\n\ndef update_module_requirements_to_latest(\n  module: Module,\n  modules: Dict[str, Module],\n  known_latest_versions: Dict[str, str],\n) -> Optional[Path]:\n  \"\"\"\n  Ensure module's go.mod requires the latest tag for all internal dependencies.\n  Uses known_latest_versions (from earlier releases in this run) or the dependency's last tag.\n  Returns the go.mod path if changed.\n  \"\"\"\n  go_mod_file = module.rel_dir / \"go.mod\"\n  if not go_mod_file.exists() or not module.requires:\n    return None\n\n  original = go_mod_file.read_text(encoding=\"utf-8\")\n  updated = original\n\n  for dep_path in sorted(module.requires):\n    if dep_path not in modules:\n      continue  # external dep\n    version = known_latest_versions.get(dep_path) or modules[dep_path].last_version()\n    if not version:\n      continue\n    updated = update_go_mod_require_version(updated, dep_path, version)\n\n  if updated != original:\n    go_mod_file.write_text(updated, encoding=\"utf-8\")\n    logging.info(\"%s: synced go.mod internal deps to latest tags\", module.name)\n    return go_mod_file\n  return None\n\n\ndef stage_and_maybe_commit(paths: List[Path], message: str, commit: bool, push: bool) -> None:\n  if not paths:\n    return\n  str_paths: List[str] = []\n  for p in paths:\n    if p.is_absolute():\n      try:\n        rel = p.relative_to(REPO_ROOT)\n        str_paths.append(str(rel))\n      except Exception:\n        # Fallback to OS relpath if not within repo root\n        rel = os.path.relpath(str(p), str(REPO_ROOT))\n        str_paths.append(rel)\n    else:\n      # Use as-is relative to repo root since git cwd is REPO_ROOT\n      str_paths.append(str(p))\n  logging.info(\"git add: %s\", \", \".join(str_paths))\n  run_cmd([\"git\", \"add\", *str_paths], cwd=REPO_ROOT)\n  if commit:\n    logging.info(\"git commit -m '%s'\", message)\n    run_cmd([\"git\", \"commit\", \"-m\", message], cwd=REPO_ROOT)\n    if push:\n      logging.info(\"git push origin main\")\n      run_cmd([\"git\", \"push\", \"origin\", \"main\"], cwd=REPO_ROOT)\n\n\ndef create_and_push_tag(module: Module, version: str, yes: bool) -> None:\n  tag = f\"{module.rel_dir.as_posix()}/v{version}\"\n  annotate_msg = f\"{module.name}: v{version}\"\n  if yes:\n    logging.info(\"create tag %s\", tag)\n    run_cmd([\"git\", \"tag\", \"-a\", tag, \"-m\", annotate_msg], cwd=REPO_ROOT)\n    logging.info(\"push tag %s\", tag)\n    run_cmd([\"git\", \"push\", \"origin\", tag], cwd=REPO_ROOT)\n\n\ndef topological_order(modules: Dict[str, Module]) -> List[Module]:\n  # Kahn's algorithm\n  in_degree: Dict[str, int] = {mp: 0 for mp in modules}\n  for m in modules.values():\n    for req in m.requires:\n      if req in modules:\n        in_degree[m.module_path] += 1\n\n  queue: List[str] = [mp for mp, deg in in_degree.items() if deg == 0]\n  ordered: List[Module] = []\n  while queue:\n    mp = queue.pop(0)\n    ordered.append(modules[mp])\n    for dep in modules[mp].dependents:\n      in_degree[dep] -= 1\n      if in_degree[dep] == 0:\n        queue.append(dep)\n  # If cycle (shouldn't happen), just return arbitrary order\n  if len(ordered) != len(modules):\n    return list(modules.values())\n  logging.info(\"release order: %s\", \", \".join(m.module_path for m in ordered))\n  return ordered\n\n\ndef update_dependents_for_release(\n  modules: Dict[str, Module],\n  released_module: Module,\n  released_version: str,\n  commit: bool,\n  push: bool,\n) -> List[Module]:\n  \"\"\"\n  For each dependent module, update go.mod to require the released_module at released_version.\n  Returns the list of modules that were touched (and thus should be considered changed for this run).\n  \"\"\"\n  touched: List[Module] = []\n  for dependent_path in sorted(released_module.dependents):\n    dep_mod = modules.get(dependent_path)\n    if not dep_mod:\n      continue\n    go_mod_file = dep_mod.rel_dir / \"go.mod\"\n    if not go_mod_file.exists():\n      continue\n    original = go_mod_file.read_text(encoding=\"utf-8\")\n    updated = update_go_mod_require_version(original, released_module.module_path, released_version)\n    if updated != original:\n      go_mod_file.write_text(updated, encoding=\"utf-8\")\n      stage_and_maybe_commit([go_mod_file], f\"chore({dep_mod.name}): require {released_module.name} v{released_version}\", commit, push)\n      logging.info(\"updated dependent %s go.mod -> %s %s\", dep_mod.name, released_module.name, released_version)\n      touched.append(dep_mod)\n  return touched\n\n\ndef update_starters(modules: Dict[str, Module], commit: bool, push: bool) -> None:\n  updated_paths: List[Path] = []\n  latest_hugo = get_latest_hugo_version()\n  yaml = YAML()\n  yaml.preserve_quotes = True\n\n  for starter_dir in sorted([p for p in STARTERS_DIR.glob(\"*\") if p.is_dir()]):\n    # skip non-starters explicitly (none yet) and respect ignore list\n    go_mod = starter_dir / \"go.mod\"\n    if go_mod.exists():\n      text = go_mod.read_text(encoding=\"utf-8\")\n      new_text = text\n      # For any internal module referenced, replace with its latest tag version\n      referenced = _extract_requires_from_go_mod(text)\n      for module_path in referenced:\n        if module_path in modules:\n          latest = modules[module_path].last_version()\n          if latest:\n            new_text = update_go_mod_require_version(new_text, module_path, latest)\n      if new_text != text:\n        go_mod.write_text(new_text, encoding=\"utf-8\")\n        updated_paths.append(go_mod)\n        logging.info(\"starter %s: updated go.mod module versions\", starter_dir.name)\n\n    # bump hugo version in hugoblox.yaml\n    hb_yaml = starter_dir / \"hugoblox.yaml\"\n    if latest_hugo and hb_yaml.exists():\n      with hb_yaml.open(\"r\", encoding=\"utf-8\") as f:\n        data = yaml.load(f) or {}\n      if \"build\" not in data:\n        data[\"build\"] = {}\n      if data[\"build\"].get(\"hugo_version\") != latest_hugo:\n        data[\"build\"][\"hugo_version\"] = SingleQuotedScalarString(latest_hugo)\n        with hb_yaml.open(\"w\", encoding=\"utf-8\") as f:\n          yaml.dump(data, f)\n        updated_paths.append(hb_yaml)\n        logging.info(\"starter %s: hugoblox.yaml hugo_version -> %s\", starter_dir.name, latest_hugo)\n\n    # bump netlify.toml HUGO_VERSION\n    netlify = starter_dir / \"netlify.toml\"\n    if latest_hugo and netlify.exists():\n      parsed = tomlkit.parse(netlify.read_text(encoding=\"utf-8\"))\n      if \"build\" in parsed and \"environment\" in parsed[\"build\"]:\n        env = parsed[\"build\"][\"environment\"]\n        if env.get(\"HUGO_VERSION\") != latest_hugo:\n          env[\"HUGO_VERSION\"] = latest_hugo\n          netlify.write_text(tomlkit.dumps(parsed), encoding=\"utf-8\")\n          updated_paths.append(netlify)\n          logging.info(\"starter %s: netlify.toml HUGO_VERSION -> %s\", starter_dir.name, latest_hugo)\n\n    # bump devcontainer Hugo version (new location for Hugo pin)\n    update_devcontainer_hugo(starter_dir, latest_hugo, updated_paths)\n\n  if updated_paths:\n    stage_and_maybe_commit(updated_paths, \"chore(templates): bump modules and Hugo\", commit, push)\n\n\ndef update_starters_to_commits(modules: Dict[str, Module], commit: bool, push: bool) -> None:\n  \"\"\"Update starters to use latest commit hashes of modules instead of tagged versions.\"\"\"\n  updated_paths: List[Path] = []\n  latest_hugo = get_latest_hugo_version()\n  yaml = YAML()\n  yaml.preserve_quotes = True\n\n  # Get commit info for all modules first\n  module_commit_info: Dict[str, Tuple[str, str]] = {}  # module_path -> (pseudo_version, short_description)\n  for module in modules.values():\n    commit_info = get_module_latest_commit_info(module)\n    if commit_info:\n      commit_hash, timestamp = commit_info\n      pseudo_version = format_pseudo_version(commit_hash, timestamp)\n      short_desc = f\"{commit_hash[:7]} ({timestamp.strftime('%Y-%m-%d %H:%M:%S')})\"\n      module_commit_info[module.module_path] = (pseudo_version, short_desc)\n      logging.info(\"module %s -> %s (%s)\", module.name, pseudo_version, short_desc)\n\n  for starter_dir in sorted([p for p in STARTERS_DIR.glob(\"*\") if p.is_dir()]):\n    # Update go.mod with commit-based pseudo-versions\n    go_mod = starter_dir / \"go.mod\"\n    if go_mod.exists():\n      text = go_mod.read_text(encoding=\"utf-8\")\n      new_text = text\n      referenced = _extract_requires_from_go_mod(text)\n      \n      for module_path in referenced:\n        if module_path in modules and module_path in module_commit_info:\n          pseudo_version, short_desc = module_commit_info[module_path]\n          new_text = update_go_mod_require_pseudo_version(new_text, module_path, pseudo_version)\n          logging.info(\"starter %s: %s -> %s\", starter_dir.name, modules[module_path].name, short_desc)\n      \n      if new_text != text:\n        go_mod.write_text(new_text, encoding=\"utf-8\")\n        updated_paths.append(go_mod)\n        logging.info(\"starter %s: updated go.mod to use commit versions\", starter_dir.name)\n\n    # bump hugo version in hugoblox.yaml (same as regular update_starters)\n    hb_yaml = starter_dir / \"hugoblox.yaml\"\n    if latest_hugo and hb_yaml.exists():\n      with hb_yaml.open(\"r\", encoding=\"utf-8\") as f:\n        data = yaml.load(f) or {}\n      if \"build\" not in data:\n        data[\"build\"] = {}\n      if data[\"build\"].get(\"hugo_version\") != latest_hugo:\n        data[\"build\"][\"hugo_version\"] = SingleQuotedScalarString(latest_hugo)\n        with hb_yaml.open(\"w\", encoding=\"utf-8\") as f:\n          yaml.dump(data, f)\n        updated_paths.append(hb_yaml)\n        logging.info(\"starter %s: hugoblox.yaml hugo_version -> %s\", starter_dir.name, latest_hugo)\n\n    # bump netlify.toml HUGO_VERSION (same as regular update_starters)\n    netlify = starter_dir / \"netlify.toml\"\n    if latest_hugo and netlify.exists():\n      parsed = tomlkit.parse(netlify.read_text(encoding=\"utf-8\"))\n      if \"build\" in parsed and \"environment\" in parsed[\"build\"]:\n        env = parsed[\"build\"][\"environment\"]\n        if env.get(\"HUGO_VERSION\") != latest_hugo:\n          env[\"HUGO_VERSION\"] = latest_hugo\n          netlify.write_text(tomlkit.dumps(parsed), encoding=\"utf-8\")\n          updated_paths.append(netlify)\n          logging.info(\"starter %s: netlify.toml HUGO_VERSION -> %s\", starter_dir.name, latest_hugo)\n\n    # bump devcontainer Hugo version (same as regular update_starters)\n    update_devcontainer_hugo(starter_dir, latest_hugo, updated_paths)\n\n  if updated_paths:\n    stage_and_maybe_commit(updated_paths, \"chore(templates): update modules to latest commits\", commit, push)\n    logging.info(\"Updated %d template files to use latest module commits\", len(updated_paths))\n\n\ndef ensure_clean_worktree() -> None:\n  res = run_cmd([\"git\", \"status\", \"--porcelain\"], cwd=REPO_ROOT)\n  dirty = [l for l in res.stdout.splitlines() if l.strip()]\n  if dirty:\n    raise RuntimeError(\"Working tree is dirty. Commit or stash changes before running with --yes. Use --dry-run to preview.\")\n  logging.info(\"working tree is clean\")\n\n\ndef main() -> None:\n  parser = argparse.ArgumentParser(description=\"Release HugoBlox modules.\")\n  parser.add_argument(\"--yes\", action=\"store_true\", help=\"Execute changes (commits, tags, pushes). Without this, it's a dry run.\")\n  parser.add_argument(\"--dry-run\", action=\"store_true\", help=\"Alias for not passing --yes; forces no-op execution.\")\n  parser.add_argument(\"--propagate\", action=\"store_true\", default=True, help=\"Propagate dependency updates to dependents (default true).\")\n  parser.add_argument(\"--no-propagate\", dest=\"propagate\", action=\"store_false\", help=\"Do not bump dependents purely for dependency updates.\")\n  parser.add_argument(\"--allow-major\", action=\"store_true\", help=\"Allow major version bumps when inferred from commits. By default majors are downgraded to minor to avoid Go module path changes.\")\n  parser.add_argument(\"--print-plan\", action=\"store_true\", help=\"Print the planned releases as JSON.\")\n  parser.add_argument(\"--update-starters-to-commits\", action=\"store_true\", help=\"Update starters to use latest module commits instead of releasing new tags. This is a standalone operation that doesn't create releases.\")\n  parser.add_argument(\"--log-level\", default=os.getenv(\"LOG_LEVEL\", \"INFO\"), help=\"Logging level: DEBUG, INFO, WARNING, ERROR\")\n  args = parser.parse_args()\n\n  # Configure logging\n  level = getattr(logging, str(args.log_level).upper(), logging.INFO)\n  logging.basicConfig(level=level, format=\"%(asctime)s %(levelname)s %(message)s\")\n\n  yes = bool(args.yes) and not bool(args.dry_run)\n  commit = yes\n  push = yes\n\n  modules = discover_modules()\n  order = topological_order(modules)\n\n  # Handle the standalone --update-starters-to-commits option\n  if args.update_starters_to_commits:\n    if yes:\n      ensure_clean_worktree()\n    logging.info(\"Updating templates to use latest module commits...\")\n    update_starters_to_commits(modules, commit=yes, push=yes)\n    logging.info(\"Template update to commits complete\")\n    return\n\n  if yes:\n    ensure_clean_worktree()\n\n  # Detect changes and planned bumps\n  planned: Dict[str, Dict[str, str]] = {}\n  will_release: Set[str] = set()\n  changed_since_tag: Dict[str, bool] = {}\n\n  for m in order:\n    tag = m.current_version_tag()\n    changed = has_changes_since_tag(m, tag)\n    changed_since_tag[m.module_path] = changed\n    if not changed:\n      continue\n    commits = get_commits_since_tag(m, tag)\n    bump = determine_bump_from_commits(commits)\n    effective_bump = \"minor\" if (bump == \"major\" and not args.allow_major) else bump\n    next_version = bump_semver(m.last_version(), effective_bump, m.major if m.major >= 2 else None)\n    planned[m.module_path] = {\n      \"name\": m.name,\n      \"path\": m.rel_dir.as_posix(),\n      \"last\": m.last_version() or \"<none>\",\n      \"next\": next_version,\n      \"bump\": bump,\n      \"effective_bump\": effective_bump,\n    }\n    will_release.add(m.module_path)\n    logging.info(\"plan: %s -> %s (bump=%s, effective=%s)\", m.name, next_version, bump, effective_bump)\n\n  # If propagate is enabled, any dependent of a releasing module is considered for release later (due to go.mod update)\n  if args.propagate:\n    frontier = list(will_release)\n    while frontier:\n      mp = frontier.pop()\n      for dep in modules[mp].dependents:\n        if dep not in will_release:\n          # For dependents that weren't changed otherwise, default to patch bump\n          base_version = modules[dep].last_version()\n          next_version = bump_semver(base_version, \"patch\", modules[dep].major if modules[dep].major >= 2 else None)\n          planned[dep] = planned.get(dep, {\n            \"name\": modules[dep].name,\n            \"path\": modules[dep].rel_dir.as_posix(),\n            \"last\": base_version or \"<none>\",\n            \"next\": next_version,\n            \"bump\": \"patch\",\n          })\n          will_release.add(dep)\n          frontier.append(dep)\n\n  if args.print_plan or not yes:\n    print(json.dumps({\n      \"planned_releases\": planned,\n      \"order\": [m.module_path for m in order],\n    }, indent=2))\n\n  if not yes:\n    return\n\n  # 1) Release in dependency order: sync module go.mod deps, update metadata, commit, tag, push, then update dependents' go.mod\n  latest_versions: Dict[str, str] = {}\n  for m in order:\n    if m.module_path not in will_release:\n      continue\n    next_version = planned[m.module_path][\"next\"]\n\n    touched_files: List[Path] = []\n    # Sync internal deps in this module's go.mod to latest known tags before tagging\n    go_mod_synced = update_module_requirements_to_latest(m, modules, latest_versions)\n    if go_mod_synced:\n      touched_files.append(go_mod_synced)\n    # Special-case blox theme version bump and citation metadata\n    touched_files.extend(write_blox_tailwind_theme_version(m, next_version))\n    touched_files.extend(update_citation_release_info(m, next_version))\n\n    # Stage and commit any pre-release file changes\n    if touched_files:\n      stage_and_maybe_commit(touched_files, f\"chore({m.name}): prepare v{next_version}\", commit=True, push=True)\n\n    # Tag and push\n    create_and_push_tag(m, next_version, yes=True)\n    latest_versions[m.module_path] = next_version\n    logging.info(\"released %s v%s\", m.name, next_version)\n\n    # Update dependents to require this new version (causes their go.mod to change)\n    touched_dependents = update_dependents_for_release(modules, m, next_version, commit=True, push=True)\n    # Note: those dependents will be tagged in their respective iteration when reached in order\n\n  # 2) After all module tags are created and dependents were updated, ensure every planned module has been tagged\n  # It's possible a dependent with no other changes still needs a tag due to go.mod update above\n  for m in order:\n    if m.module_path not in will_release:\n      continue\n    # If it wasn't directly tagged earlier (it was), this loop is just a safeguard\n    next_version = planned[m.module_path][\"next\"]\n    # Verify tag exists; if not, create it\n    tag = f\"{m.rel_dir.as_posix()}/v{next_version}\"\n    res = run_cmd([\"git\", \"tag\", \"--list\", tag], cwd=REPO_ROOT)\n    if not res.stdout.strip():\n      create_and_push_tag(m, next_version, yes=True)\n\n  # 3) Update Templates\n  update_starters(modules, commit=True, push=True)\n\n  logging.info(\"release complete\")\n\n\nif __name__ == \"__main__\":\n  try:\n    main()\n  except Exception as e:\n    logging.exception(\"release failed: %s\", e)\n    print(f\"Error: {e}\", file=sys.stderr)\n    sys.exit(1)\n"
  },
  {
    "path": "scripts/rm-hugo-cache.sh",
    "content": "#!/usr/bin/env bash\n\n# Clear Hugo's cache on MacOS (assumes default path)\nsudo rm -rf $TMPDIR/hugo_cache/\n"
  },
  {
    "path": "scripts/sync_i18n.py",
    "content": "#!/usr/bin/env python3\n\n# Sync Language Packs\n# Script to synchronize each language pack's items against Hugo Blox's master pack (English).\n# https://hugoblox.com\n#\n# Prerequisites: pip3 install ruamel.yaml\n# Note: we use Ruamel rather than PyYAML in order to preserve comments in language packs.\n\nimport copy\nfrom pathlib import Path\nfrom ruamel.yaml import YAML\n\nI18N_PATH = Path(__file__).resolve().parents[1].joinpath(\n    'modules', 'blox', 'i18n')\nMASTER_PACK = I18N_PATH.joinpath('en.yaml')\n\nyaml = YAML()\nyaml.width = 5000  # large column width to avoid line breaks\n\n# Load master language pack (English).\nmaster_map = yaml.load(MASTER_PACK)\n\n# Iterate over each child language pack (excluding 'en.yaml').\nfiles = set(I18N_PATH.glob(\"*.yaml\")) - set([MASTER_PACK])\ntot = len(files)\n\nfor cnt, filename in enumerate(files):\n    i18n_file = I18N_PATH.joinpath(filename)\n    print(f\"[{cnt+1:02d}/{tot:02d}] Processing {i18n_file} ...\")\n\n    # Load a child language pack.\n    child_map = yaml.load(i18n_file)\n\n    # Synchronize the language pack's structure against the master language pack.\n    # Make a temporary deep copy of the master map (list of objects).\n    tmp_map = copy.deepcopy(master_map)\n\n    for master_index, master_item in enumerate(master_map):\n        translation = next((item['translation'] for item in child_map if item['id'] == master_item['id']),\n                            master_item['translation'])\n        tmp_map[master_index]['translation'] = translation\n\n    # Write the synced language pack to file.\n    yaml.dump(tmp_map, i18n_file)\n\n# Print results.\nprint(f\"{tot} child language packs successfully synchronized!\")\n"
  },
  {
    "path": "scripts/test_release_modules.py",
    "content": "#!/usr/bin/env python3\n\nimport sys\nimport tempfile\nimport unittest\nfrom pathlib import Path\n\nROOT = Path(__file__).resolve().parents[1]\nSCRIPTS_DIR = ROOT / \"scripts\"\nif str(SCRIPTS_DIR) not in sys.path:\n  sys.path.insert(0, str(SCRIPTS_DIR))\n\ntry:\n  import requests  # type: ignore\nexcept ModuleNotFoundError:\n  import types\n\n  class _DummyResponse:\n    status_code = 0\n\n    def json(self):\n      return {}\n\n  requests = types.SimpleNamespace(get=lambda *args, **kwargs: _DummyResponse())\n  sys.modules[\"requests\"] = requests\n\ntry:\n  import tomlkit  # type: ignore\nexcept ModuleNotFoundError:\n  import types\n\n  def _noop_parse(content: str):\n    return {}\n\n  def _noop_dumps(data):\n    return \"\"\n\n  tomlkit = types.SimpleNamespace(parse=_noop_parse, dumps=_noop_dumps)\n  sys.modules[\"tomlkit\"] = tomlkit\n\ntry:\n  from ruamel.yaml import YAML  # type: ignore\n  from ruamel.yaml.scalarstring import SingleQuotedScalarString  # type: ignore\nexcept ModuleNotFoundError:\n  import types\n\n  class _DummyYAML:\n    preserve_quotes = False\n\n    def load(self, stream):\n      return {}\n\n    def dump(self, data, stream=None):\n      if stream and hasattr(stream, \"write\"):\n        stream.write(\"\")\n      return \"\"\n\n  class _DummyScalarString(str):\n    pass\n\n  ruamel_module = types.ModuleType(\"ruamel\")\n  ruamel_yaml_module = types.ModuleType(\"ruamel.yaml\")\n  ruamel_yaml_scalar_module = types.ModuleType(\"ruamel.yaml.scalarstring\")\n  ruamel_yaml_module.YAML = _DummyYAML\n  ruamel_yaml_scalar_module.SingleQuotedScalarString = _DummyScalarString\n  ruamel_module.yaml = ruamel_yaml_module\n  sys.modules[\"ruamel\"] = ruamel_module\n  sys.modules[\"ruamel.yaml\"] = ruamel_yaml_module\n  sys.modules[\"ruamel.yaml.scalarstring\"] = ruamel_yaml_scalar_module\n  YAML = _DummyYAML\n  SingleQuotedScalarString = _DummyScalarString\n\nimport release_modules\n\n\nclass UpdateCitationReleaseInfoTests(unittest.TestCase):\n  def setUp(self) -> None:\n    self.original_repo_root = release_modules.REPO_ROOT\n    self.original_datetime = release_modules.datetime\n\n  def tearDown(self) -> None:\n    release_modules.REPO_ROOT = self.original_repo_root\n    release_modules.datetime = self.original_datetime\n\n  def _patch_repo_root_with_citation(self, content: str) -> Path:\n    tmp_dir = tempfile.TemporaryDirectory()\n    self.addCleanup(tmp_dir.cleanup)\n    repo_root = Path(tmp_dir.name)\n    (repo_root / \"CITATION.cff\").write_text(content, encoding=\"utf-8\")\n    release_modules.REPO_ROOT = repo_root\n    return repo_root\n\n  def test_updates_version_and_date_for_blox(self) -> None:\n    repo_root = self._patch_repo_root_with_citation(\n      'version: \"0.10.0\"\\ndate-released: 2024-01-01\\n',\n    )\n\n    original_datetime = release_modules.datetime\n\n    class FixedDatetime(original_datetime):\n      @classmethod\n      def now(cls, tz=None):\n        return cls(2024, 2, 3, tzinfo=tz)\n\n    release_modules.datetime = FixedDatetime\n\n    module = release_modules.Module(\n      name=\"blox\",\n      rel_dir=Path(\"modules/blox\"),\n      module_path=\"modules/blox\",\n      major=0,\n    )\n\n    updated_paths = release_modules.update_citation_release_info(module, \"1.2.3\")\n    self.assertEqual(updated_paths, [repo_root / \"CITATION.cff\"])\n\n    contents = (repo_root / \"CITATION.cff\").read_text(encoding=\"utf-8\")\n    self.assertIn('version: \"1.2.3\"', contents)\n    self.assertIn(\"date-released: 2024-02-03\", contents)\n\n  def test_noop_for_non_blox_tailwind_module(self) -> None:\n    repo_root = self._patch_repo_root_with_citation('version: \"0.10.0\"\\n')\n\n    module = release_modules.Module(\n      name=\"other-module\",\n      rel_dir=Path(\"modules/other-module\"),\n      module_path=\"modules/other-module\",\n      major=0,\n    )\n\n    result = release_modules.update_citation_release_info(module, \"9.9.9\")\n    self.assertEqual(result, [])\n\n    contents = (repo_root / \"CITATION.cff\").read_text(encoding=\"utf-8\")\n    self.assertEqual(contents, 'version: \"0.10.0\"\\n')\n\n\nif __name__ == \"__main__\":\n  unittest.main()\n"
  },
  {
    "path": "scripts/update_template_hugo.py",
    "content": "#!/usr/bin/env python3\nimport argparse\nimport re\nimport json\nimport sys\nfrom pathlib import Path\n\ndef update_file_regex(path, pattern, replacement):\n    file_path = Path(path)\n    if not file_path.exists():\n        print(f\"Warning: {path} not found.\")\n        return False\n    \n    content = file_path.read_text()\n    if re.search(pattern, content):\n        new_content = re.sub(pattern, replacement, content)\n        file_path.write_text(new_content)\n        print(f\"Updated {path}\")\n        return True\n    else:\n        print(f\"Warning: Pattern not found in {path}\")\n        return False\n\ndef update_devcontainer(path, new_version):\n    file_path = Path(path)\n    if not file_path.exists():\n        print(f\"Warning: {path} not found.\")\n        return False\n        \n    try:\n        content = json.loads(file_path.read_text())\n        # Update Hugo feature version\n        features = content.get(\"features\", {})\n        hugo_feature = features.get(\"ghcr.io/devcontainers/features/hugo:1\")\n        if hugo_feature:\n            hugo_feature[\"version\"] = new_version\n            file_path.write_text(json.dumps(content, indent=2) + \"\\n\") # standard json formatting\n            print(f\"Updated {path}\")\n            return True\n        else:\n            print(f\"Warning: Hugo feature not found in {path}\")\n            return False\n    except Exception as e:\n        print(f\"Error updating {path}: {e}\")\n        return False\n\ndef main():\n    parser = argparse.ArgumentParser(description=\"Update Hugo version in template files\")\n    parser.add_argument(\"version\", help=\"New Hugo version (e.g., 0.152.2)\")\n    args = parser.parse_args()\n    \n    version = args.version\n    \n    # List of templates to update\n    templates = [\n        \"academic-cv\",\n        \"blog\",\n        \"documentation\",\n        \"landing-page\",\n        \"link-in-bio\",\n        \"resume\"\n    ]\n    \n    for template in templates:\n        print(f\"\\nProcessing template: {template}\")\n        template_dir = Path(f\"templates/{template}\")\n        \n        # 1. Update hugoblox.yaml\n        update_file_regex(\n            template_dir / \"hugoblox.yaml\",\n            r\"hugo_version: .*\",\n            f\"hugo_version: '{version}'\"\n        )\n        \n        # 2. Update netlify.toml\n        update_file_regex(\n            template_dir / \"netlify.toml\",\n            r'HUGO_VERSION = \".*\"',\n            f'HUGO_VERSION = \"{version}\"'\n        )\n        \n        # 3. Update devcontainer.json\n        update_devcontainer(\n            template_dir / \".devcontainer/devcontainer.json\",\n            version\n        )\n\n    print(f\"\\nSuccessfully updated all templates to Hugo v{version}\")\n    print(\"Note: .github/workflows/deploy.yml is configured to read the version dynamically from hugoblox.yaml.\")\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "scripts/view-starter-dev.sh",
    "content": "#!/usr/bin/env bash\n\nset -euo pipefail\n\nINITIAL_DIR=\"$(pwd)\"\n\ncleanup() {\n    cd \"$INITIAL_DIR\" || true\n}\ntrap cleanup EXIT INT TERM\n\nusage() {\n    echo \"View a starter template with local development modules and debug features.\"\n    echo \"\"\n    echo \"Usage: ./scripts/view-starter-dev.sh [<starter-name>] [--debug] [--no-pagefind]\"\n    echo \"Example: ./scripts/view-starter-dev.sh blog --debug\"\n    echo \"Default starter: academic-cv (if no starter-name provided)\"\n    echo \"\"\n    echo \"This script uses:\"\n    echo \"  • Local development modules (via HUGO_MODULE_REPLACEMENTS)\"\n    echo \"  • Development environment with demo/debug flags enabled\"\n    echo \"  • Optional Pagefind search indexing and enhanced debugging\"\n}\n\nSTARTER=\"academic-cv\"  # Default starter if none provided\nDEBUG_MODE=false\nPAGEFIND=true\n\nwhile [ $# -gt 0 ]; do\n    case \"$1\" in\n        --debug)\n            DEBUG_MODE=true\n            shift\n            ;;\n        --no-pagefind)\n            PAGEFIND=false\n            shift\n            ;;\n        -h|--help)\n            usage\n            exit 0\n            ;;\n        -*)\n            echo \"Unknown option: $1\"\n            usage\n            exit 1\n            ;;\n        *)\n            STARTER=\"$1\"\n            shift\n            ;;\n    esac\ndone\n\n\n# Run Hugo from the site dir so Tailwind CLI is discoverable\ncd \"templates/$STARTER\"\n\n# Ensure Tailwind CLI and Pagefind exist in starter (required for Hugo css.TailwindCSS and search indexing)\nif [ -f \"package.json\" ] && { [ ! -x \"node_modules/.bin/tailwindcss\" ] || [ ! -x \"node_modules/.bin/pagefind\" ]; }; then\n    echo \"📦 Installing starter dependencies for Hugo...\"\n    if command -v pnpm >/dev/null 2>&1; then\n        pnpm install\n    else\n        npm install\n    fi\nfi\n\n# Core environment for local dev linking modules and enabling demo/debug flags\nexport HUGO_BLOX_DEMO=true\nexport HUGO_BLOX_DEBUG=true\nexport HUGO_ENVIRONMENT=development\nexport HUGO_BLOX_MONOREPO=true\n\n# Link local modules for development (Hugo module replacements)\nexport HUGO_MODULE_REPLACEMENTS=\"\\\ngithub.com/HugoBlox/kit/modules/blox -> ../../../modules/blox,\\\ngithub.com/HugoBlox/kit/modules/analytics -> ../../../modules/analytics,\\\ngithub.com/HugoBlox/kit/modules/integrations/netlify -> ../../../modules/integrations/netlify,\\\ngithub.com/HugoBlox/kit/modules/slides -> ../../../modules/slides\"\n\n# Optionally pre-build and generate Pagefind index for local search\nif [ \"$PAGEFIND\" = true ]; then\n    hugo\n    if command -v pnpm >/dev/null 2>&1; then\n        pnpm exec pagefind --site \"public\" --output-subdir ../static/pagefind\n    else\n        npm_config_yes=true npx pagefind --site \"public\" --output-subdir ../static/pagefind\n    fi\nfi\n\n# Compose Hugo server args\nHUGO_ARGS=(\n    server\n    --disableFastRender\n    --printI18nWarnings\n    --printPathWarnings\n    --gc\n    -F\n    --port 8081\n    --bind 0.0.0.0\n)\n\nif [ \"$DEBUG_MODE\" = true ]; then\n    HUGO_ARGS+=(\n        --panicOnWarning\n        --logLevel debug\n        --templateMetrics\n        --templateMetricsHints\n        --ignoreCache\n        --noHTTPCache\n        --renderStaticToDisk\n        -D\n        -E\n    )\nfi\n\nhugo \"${HUGO_ARGS[@]}\"\n"
  },
  {
    "path": "scripts/view-starter-prod.sh",
    "content": "#!/usr/bin/env zsh\n\nexitfn () {\n    trap SIGINT\n    cd \"$INITIAL_DIR\"\n    exit\n}\n\ntrap \"exitfn\" INT\n\nusage() {\n    echo \"View a starter template with published production modules.\"\n    echo \"\"\n    echo \"Usage: ./scripts/view-starter-prod.sh [<starter-name>]\"\n    echo \"Example: ./scripts/view-starter-prod.sh blog\"\n    echo \"Default starter: academic-cv (if no starter-name provided)\"\n    echo \"\"\n    echo \"This script uses:\"\n    echo \"  • Published/released modules (no local overrides)\"\n    echo \"  • Production environment (simulates end-user experience)\"\n    echo \"  • Minimal configuration for testing published versions\"\n}\n\nSTARTER=\"${1:-academic-cv}\"  # Default to academic-cv if no argument provided\nINITIAL_DIR=$(pwd)\n\n# Run Hugo from the starter directory so Tailwind v4 CLI is discoverable by Hugo\ncd \"templates/$STARTER\"\n\n# Ensure Tailwind CLI is available for Hugo\nif [ -f \"package.json\" ]; then\n    if [ ! -x \"node_modules/.bin/tailwindcss\" ]; then\n        echo \"📦 Installing Tailwind CLI in starter directory for Hugo...\"\n        if command -v pnpm >/dev/null 2>&1; then\n            pnpm install\n        else\n            npm install\n        fi\n    fi\nfi\n\n# Use production environment with published modules (no local module replacements)\nHUGO_ENVIRONMENT=production \\\nhugo server --panicOnWarning --renderStaticToDisk -F --port 8081 --bind 0.0.0.0\n\ntrap SIGINT\n"
  },
  {
    "path": "scripts/view-test.sh",
    "content": "#!/usr/bin/env bash\n\nset -euo pipefail\n\nINITIAL_DIR=\"$(pwd)\"\n\ncleanup() {\n    cd \"$INITIAL_DIR\" || true\n}\ntrap cleanup EXIT INT TERM\n\nusage() {\n    echo \"View the test site with local development modules.\"\n    echo \"\"\n    echo \"Usage: ./scripts/view-test.sh [--debug]\"\n    echo \"Example: ./scripts/view-test.sh --debug\"\n    echo \"\"\n    echo \"This script uses:\"\n    echo \"  • Local development modules (via go.mod replace directives)\"\n    echo \"  • Development environment for testing\"\n}\n\nDEBUG_MODE=false\n\nwhile [ $# -gt 0 ]; do\n    case \"$1\" in\n        --)\n            # Skip the -- separator from pnpm\n            shift\n            ;;\n        --debug)\n            DEBUG_MODE=true\n            shift\n            ;;\n        -h|--help)\n            usage\n            exit 0\n            ;;\n        -*)\n            echo \"Unknown option: $1\"\n            usage\n            exit 1\n            ;;\n        *)\n            echo \"Unexpected argument: $1\"\n            usage\n            exit 1\n            ;;\n    esac\ndone\n\n# Run Hugo from the test dir\ncd \"test\"\n\n# Ensure dependencies are installed if needed\nif [ -f \"package.json\" ] && [ ! -x \"node_modules/.bin/tailwindcss\" ]; then\n    echo \"📦 Installing dependencies in test directory...\"\n    if command -v pnpm >/dev/null 2>&1; then\n        pnpm install\n    else\n        npm install\n    fi\nfi\n\n# Core environment for local dev\nexport HUGO_ENVIRONMENT=development\nexport HUGO_BLOX_MONOREPO=true\nexport HUGO_BLOX_TEST_SITE=true\n\n# Note: The test/go.mod already has replace directives for local modules,\n# so we don't need HUGO_MODULE_REPLACEMENTS here\n\n# Compose Hugo server args\nHUGO_ARGS=(\n    server\n    --disableFastRender\n    --printI18nWarnings\n    --printPathWarnings\n    --gc\n    -F\n    --port 8082\n    --bind 0.0.0.0\n)\n\nif [ \"$DEBUG_MODE\" = true ]; then\n    HUGO_ARGS+=(\n        --panicOnWarning\n        --logLevel debug\n        --templateMetrics\n        --templateMetricsHints\n        --ignoreCache\n        --noHTTPCache\n        --renderStaticToDisk\n        -D\n        -E\n    )\nfi\n\necho \"🚀 Starting test site on http://localhost:8082\"\nhugo \"${HUGO_ARGS[@]}\"\n"
  },
  {
    "path": "templates/academic-cv/.devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"HugoBlox Codespace\",\n  \"image\": \"ghcr.io/HugoBlox/hugo-blox-dev:hugo0.156.0\",\n  \"updateContentCommand\": \"pnpm install --frozen-lockfile --prefer-offline\",\n  \"postCreateCommand\": \"pnpm --version && hugo version\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"ownable.ownable\"]\n    }\n  },\n  \"mounts\": [\"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume\"],\n  \"remoteUser\": \"vscode\",\n  \"forwardPorts\": [1313],\n  \"portsAttributes\": {\n    \"1313\": {\n      \"label\": \"Hugo Server\"\n    }\n  }\n}\n"
  },
  {
    "path": "templates/academic-cv/.github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": "templates/academic-cv/.github/workflows/build.yml",
    "content": "name: Build\n\nenv:\n  NODE_VERSION: '20'\n\non:\n  # Standalone trigger for PR validation\n  pull_request:\n    branches: ['main']\n  # Reusable workflow trigger - called by deploy.yml\n  workflow_call:\n    outputs:\n      artifact-id:\n        description: 'The ID of the uploaded artifact'\n        value: ${{ jobs.build.outputs.artifact-id }}\n  # Allow manual trigger for testing\n  workflow_dispatch:\n\n# Read-only permissions for security\npermissions:\n  contents: read\n\n# Prevent duplicate builds for the same PR\nconcurrency:\n  group: build-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    outputs:\n      artifact-id: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        # Fetch history for Hugo's .GitInfo and .Lastmod\n        fetch-depth: 0\n\n    - name: Setup Node.js\n      uses: actions/setup-node@v6\n      with:\n        node-version: ${{ env.NODE_VERSION }}\n\n    - name: Setup pnpm\n      if: hashFiles('package.json') != ''\n      uses: pnpm/action-setup@v4\n\n    - name: Get Hugo Version\n      id: hugo-version\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read hugo_version from hugoblox.yaml\n        VERSION=$(yq '.hugo_version // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        \n        # Fallback to a known stable version if not specified\n        DEFAULT_VERSION=\"0.154.5\"\n        VERSION=${VERSION:-$DEFAULT_VERSION}\n        \n        # Validate version format (basic check)\n        if [[ ! \"$VERSION\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then\n          echo \"::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION\"\n          VERSION=\"$DEFAULT_VERSION\"\n        fi\n        \n        echo \"HUGO_VERSION=$VERSION\" >> $GITHUB_ENV\n        echo \"Using Hugo version: $VERSION\"\n\n    - name: Install dependencies\n      run: |\n        # Install Tailwind CLI if package.json exists\n        if [ -f \"package.json\" ]; then\n          echo \"Installing Tailwind dependencies...\"\n          pnpm install --no-frozen-lockfile || npm install\n        fi\n\n    - name: Setup Hugo\n      uses: peaceiris/actions-hugo@v3\n      with:\n        hugo-version: ${{ env.HUGO_VERSION }}\n        extended: true\n\n    # Cache dependencies (Go modules, node_modules) - stable, rarely changes\n    - uses: actions/cache@v4\n      with:\n        path: |\n          /tmp/hugo_cache_runner/\n          node_modules/\n          modules/*/node_modules/\n        key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json',\n          '**/pnpm-lock.yaml') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-deps-\n\n    # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change\n    - uses: actions/cache@v4\n      with:\n        path: resources/\n        key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*',\n          'hugo.yaml', 'package.json') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-resources-\n\n    - name: Build with Hugo\n      env:\n        HUGO_ENVIRONMENT: production\n        HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }}\n      run: |\n        echo \"Hugo Cache Dir: $(hugo config | grep cachedir)\"\n        hugo --minify\n\n    - name: Generate Pagefind search index (if applicable)\n      run: |\n        # Check if site uses Pagefind search\n        if [ -f \"package.json\" ] && grep -q \"pagefind\" package.json; then\n          pnpm run pagefind || npx pagefind --site \"public\"\n        fi\n\n    - name: Upload artifact\n      id: upload\n      uses: actions/upload-pages-artifact@v4\n      with:\n        path: ./public\n"
  },
  {
    "path": "templates/academic-cv/.github/workflows/deploy.yml",
    "content": "name: Deploy website to GitHub Pages\n\non:\n  # Trigger the workflow every time you push to the `main` branch\n  push:\n    branches: ['main']\n  # Allows you to run this workflow manually from the Actions tab on GitHub\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: 'pages'\n  cancel-in-progress: false\n\njobs:\n  # Check deployment configuration\n  config:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    outputs:\n      deploy-host: ${{ steps.check.outputs.host }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        sparse-checkout: hugoblox.yaml\n        sparse-checkout-cone-mode: false\n\n    - name: Check deploy host\n      id: check\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read deploy.host from hugoblox.yaml, default to github-pages\n        HOST=$(yq '.deploy.host // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        HOST=${HOST:-github-pages}\n        \n        # Validate known hosts\n        if [[ ! \"$HOST\" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then\n          echo \"::warning::Unknown deploy host '$HOST', defaulting to github-pages\"\n          HOST=\"github-pages\"\n        fi\n        \n        echo \"host=$HOST\" >> $GITHUB_OUTPUT\n        echo \"Deployment target: $HOST\"\n\n  # Build website using reusable workflow (always runs for CI)\n  build:\n    needs: config\n    if: github.repository_owner != 'HugoBlox'\n    uses: ./.github/workflows/build.yml\n    secrets: inherit\n\n  # Deploy website to GitHub Pages hosting (only if configured)\n  deploy:\n    needs: [config, build]\n    if: needs.config.outputs.deploy-host == 'github-pages'\n    # Grant GITHUB_TOKEN the permissions required to make a Pages deployment\n    permissions:\n      pages: write # to deploy to Pages\n      id-token: write # to verify the deployment originates from an appropriate source\n    # Deploy to the github-pages environment\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    steps:\n    - name: Deploy to GitHub Pages\n      id: deployment\n      uses: actions/deploy-pages@v4\n"
  },
  {
    "path": "templates/academic-cv/.github/workflows/import-publications.yml",
    "content": "# Hugo Blox GitHub Action to convert Bibtex publications to Markdown-based webpages\nname: Import Publications From Bibtex\n\n# Require permission to create a PR (least privilege principle)\npermissions:\n  contents: write\n  pull-requests: write\n\n# Run workflow when a `.bib` file is added or updated in the `data/` folder\non:\n  push:\n    branches: ['main']\n    paths: ['publications.bib']\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\n# Prevent concurrent runs of this workflow\nconcurrency:\n  group: import-publications-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  hugoblox:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n\n    env:\n      ACADEMIC_VERSION: '>=0.10.0'\n      PYTHON_VERSION: '3.13'\n    steps:\n      - name: Checkout the repo\n        uses: actions/checkout@v4\n        with:\n          # Only need recent history for publication import\n          fetch-depth: 1\n\n      - name: Set up Python 3.13\n        uses: actions/setup-python@v5\n        with:\n          python-version: '3.13'\n      - name: Setup pip cache\n        uses: actions/cache@v4\n        with:\n          path: ~/.cache/pip\n          key: ${{ runner.os }}-pip-academic-${{ env.ACADEMIC_VERSION }}\n          restore-keys: |\n            ${{ runner.os }}-pip-academic-\n            ${{ runner.os }}-pip-\n\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install \"academic${{ env.ACADEMIC_VERSION }}\"\n      - name: Validate publications.bib file\n        if: ${{ hashFiles('publications.bib') != '' }}\n        run: |\n          if [ ! -f \"publications.bib\" ]; then\n            echo \"❌ publications.bib file not found\"\n            exit 1\n          fi\n          echo \"✅ publications.bib file found\"\n          \n      - name: Run Academic (Bibtex To Markdown Converter)\n        # Check `.bib` file exists for case when action runs on `.bib` deletion\n        # Note GH only provides hashFiles func in `steps.if` context, not `jobs.if` context\n        if: ${{ hashFiles('publications.bib') != '' }}\n        run: |\n          echo \"🚀 Starting publication import...\"\n          academic import publications.bib content/publication/ --compact --verbose\n          echo \"✅ Publication import completed successfully\"\n          \n          # Verify that files were created\n          if [ -d \"content/publication\" ] && [ \"$(ls -A content/publication/)\" ]; then\n            echo \"📚 Publications imported: $(ls content/publication/ | wc -l) items\"\n          else\n            echo \"⚠️ No publications were imported\"\n          fi\n        continue-on-error: false\n      - name: Create Pull Request\n        # Set ID for `Check outputs` stage\n        id: cpr\n        uses: peter-evans/create-pull-request@v6\n        with:\n          commit-message: 'feat(publications): import latest publications from bibtex'\n          title: 'HugoBlox Kit - Import latest publications from Bibtex'\n          body: |\n            🔄 **Automated Publication Import**\n\n            This PR automatically imports the latest publications from `publications.bib` to `content/publication/`.\n\n            **Changes:**\n            - 📚 Updated publication entries\n            - 🏷️ Processed bibliographic data\n\n            ---\n            将最新的出版物从`publications.bib`导入到`content/publication/`。\n\n            📖 [View Documentation](https://github.com/GetRD/academic-file-converter)\n          base: main\n          labels: automated-pr, content, publications\n          branch: hugoblox-import-publications-${{ github.run_id }}\n          delete-branch: true\n          draft: false\n      - name: Check outputs\n        if: ${{ steps.cpr.outputs.pull-request-number }}\n        run: |\n          echo \"✅ Successfully created Pull Request!\"\n          echo \"📝 Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}\"\n          echo \"🔗 Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}\"\n          echo \"🎯 Operation completed at $(date)\"\n\n      - name: Report workflow status\n        if: always()\n        run: |\n          if [ \"${{ job.status }}\" == \"success\" ]; then\n            echo \"🎉 Workflow completed successfully\"\n          else\n            echo \"❌ Workflow failed - check logs for details\"\n            exit 1\n          fi\n"
  },
  {
    "path": "templates/academic-cv/.github/workflows/internal-readme-news.yml",
    "content": "# Internal HugoBlox workflow - Updates README news section from RSS feed.\n# This file only runs on the HugoBlox org repo and can be safely deleted by end users.\nname: Internal - Update README News\n\non:\n  schedule:\n    - cron: 0 0 * * 0\n  # Allows you to run this workflow manually from the Actions tab on GitHub.\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: write\n\njobs:\n  update:\n    if: github.repository_owner == 'HugoBlox'\n    runs-on: ubuntu-latest\n    steps:\n      - uses: HugoBlox/gh-action-updater@v2\n        with:\n          feed-url: https://hugoblox.com/rss.xml\n          readme-section: news\n          branch: main\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": "templates/academic-cv/.github/workflows/upgrade.yml",
    "content": "name: Upgrade HugoBlox\n\non:\n  workflow_dispatch:\n    inputs:\n      version_type:\n        description: 'Upgrade to version'\n        required: true\n        default: 'Stable'\n        type: choice\n        options:\n        - Stable\n        - Beta (Preview)\n  schedule:\n    # Run at 05:00 on Monday\n    - cron: '0 5 * * 1'\n\npermissions:\n  contents: write\n  pull-requests: write\n\n# Prevent duplicate upgrade runs\nconcurrency:\n  group: upgrade-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  upgrade:\n    name: Upgrade\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 15\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v6\n        with:\n          node-version: '22'\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n        with:\n          package_json_path: ./package.json\n          run_install: false\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: '1.23'\n\n      - name: Setup Hugo\n        uses: peaceiris/actions-hugo@v3\n        with:\n          hugo-version: 'latest'\n          extended: true\n\n      - name: Run Upgrade CLI\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # Use manual input or default to stable for scheduled runs\n          VERSION_TYPE: ${{ inputs.version_type || 'Stable' }}\n        run: |\n          FLAGS=\"--yes --ci\"\n          \n          if [ \"$VERSION_TYPE\" == \"Beta (Preview)\" ]; then\n            FLAGS=\"$FLAGS --canary\"\n          fi\n          \n          echo \"Running upgrade with flags: $FLAGS\"\n          pnpm dlx hugoblox@latest upgrade $FLAGS\n\n\n      - name: Create Pull Request\n        uses: peter-evans/create-pull-request@v6\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          commit-message: \"chore(deps): upgrade hugoblox modules\"\n          title: \"⬆️ Upgrade HugoBlox Modules\"\n          body: |\n            This PR upgrades the [HugoBlox](https://hugoblox.com) modules to the latest version.\n            \n            **Changes:**\n            - Updated Hugo Modules (go.mod/go.sum)\n            - Applied automatic migrations (if any)\n            \n            **Verification:**\n            - [ ] Check the Deploy Preview to ensure everything looks correct.\n            - [ ] Merge this PR to apply the updates.\n          branch: \"chore/upgrade-hugoblox-${{ github.run_id }}\"\n          delete-branch: true\n          base: main\n          labels: |\n            dependencies\n            automated-pr\n"
  },
  {
    "path": "templates/academic-cv/.gitignore",
    "content": "# ============================================================================\n# Hugo Site .gitignore\n# ============================================================================\n\n# ============================================================================\n# Hugo Build Artifacts\n# ============================================================================\n\n# Generated site output\npublic/\n\n# Hugo resources (processed assets)\nresources/\n\n# Hugo build lock\n.hugo_build.lock\n\n# Hugo stats\nhugo_stats.json\n\n# Auto-generated JS config\n**/assets/jsconfig.json\n\n# ============================================================================\n# Node.js & Package Managers\n# ============================================================================\n\n# Dependencies\nnode_modules/\n\n# ============================================================================\n# Environment & Configuration\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# ============================================================================\n# Generated Content\n# ============================================================================\n\n# Pagefind search index\npagefind/\nstatic/pagefind/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n\n# Windows\nThumbs.db\nDesktop.ini\n\n# Linux\n*~\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n*.log\nnpm-debug.log*\n"
  },
  {
    "path": "templates/academic-cv/.vscode/extensions.json",
    "content": "{\n  \"recommendations\": [\"ownable.ownable\"]\n}\n"
  },
  {
    "path": "templates/academic-cv/LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2023-present George Cushen (https://georgecushen.com/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in 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": "templates/academic-cv/README.md",
    "content": "# [The Academic CV That Gets You Hired](https://github.com/HugoBlox/hugo-theme-academic-cv)\n\n[![Screenshot](.github/preview.webp)](https://hugoblox.com/templates/academic-cv/start/?utm_source=github&utm_medium=readme)\n\n<h1 align=\"center\">The Portfolio That Works While You Sleep</h1>\n\n<p align=\"center\">\n  <strong>Your unfair advantage in academia.</strong><br/>\n  Stop sending PDFs into the void. Build a living portfolio that boosts citations and lands offers.<br/>\n  Trusted by 250,000+ researchers at <strong>MIT, Stanford, and Google</strong>.\n</p>\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/templates/academic-cv/start?utm_source=github&utm_medium=readme\"><b>🚀 Launch Free (60s)</b></a>\n  &nbsp;•&nbsp;\n  <a href=\"https://hugoblox.com/templates/?open=academic-cv&loading=true&utm_source=github&utm_medium=readme\">Live Demo</a>\n  &nbsp;•&nbsp;\n  <a href=\"https://marketplace.visualstudio.com/items?itemName=ownable.ownable\"><b>Visual Editor</b></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://discord.gg/z8wNYzb\"><img src=\"https://img.shields.io/discord/722225264733716590?label=Join%20Discord&style=social\" alt=\"Discord\"></a>\n  <a href=\"https://github.com/HugoBlox/hugo-theme-academic-cv\"><img src=\"https://img.shields.io/github/stars/HugoBlox/hugo-theme-academic-cv?label=Star%20Academic%20CV&style=social\" alt=\"GitHub Stars\"></a>\n</p>\n\n---\n\n## Why This Template?\n\nMost CVs are static PDFs that get lost in the pile. This is an **intelligent portfolio** that works 24/7 to advance your career.\n\n- **🔮 Future-Proof:** Your content lives in simple **Markdown**. No database to break, no lock-in.\n- **🤖 AI-Ready:** Optimized for search engines and LLMs, so your work is found and cited.\n- **⚡ Zero Maintenance:** Auto-import citations from BibTeX and focus on research.\n- **✍️ Edit Visually:** Use **HugoBlox Studio** in VS Code — no coding needed. Full capabilities in Pro.\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/templates/academic-cv/start?utm_source=github&utm_medium=readme\">\n    <img src=\"https://img.shields.io/badge/⚡️%20Get%20Your%20CV%20in%2060s-ff4655?style=for-the-badge\" \n    alt=\"Deploy this template\" width=\"400\">\n  </a>\n</p>\n\n![HugoBlox Studio in Action](https://raw.githubusercontent.com/HugoBlox/kit/main/.github/media/studio/slide-1.webp)\n*HugoBlox Studio: Drag-and-drop page builder inside VS Code.*\n\n> \"My citations went up 3x after switching to this template. The citation auto-sync feature is a lifesaver.\"\n> — **Dr. Zhang**, AI Research Scientist, Meta\n\n---\n\n## Who This Is For\n\n- Students and grads applying to top labs and industry roles\n- Researchers who want a living, citable portfolio\n- Faculty/PIs showcasing publications, talks, and group news\n\n---\n\n## Features\n\n| Feature | Benefit |\n| :--- | :--- |\n| **Markdown, Jupyter, RStudio** | Write in the tools you already use. |\n| **Auto-Update Citations** | Drop in a BibTeX file; formatted lists generated automatically. |\n| **Visual Editor** | Drag-and-drop blocks to build pages in minutes. |\n| **Global CDN** | Blazing fast load times (100/100 Lighthouse scores). |\n| **Privacy First** | You own your data. Host for free on GitHub Pages. |\n\n---\n\n## Notebook → Posts and Slides\n\n- Publish your actual `.ipynb` as beautiful long-form posts — code, outputs, and narrative kept intact.\n- Slides in Markdown with Reveal.js: math, syntax highlight, diagrams, speaker notes.\n- Coming soon: **Notebook → Slides (beta)**. Request early access in Discord.\n\nLearn more: docs on [Notebooks](https://docs.hugoblox.com/reference/markdown/#-notebooks) and [Slides](https://docs.hugoblox.com/guides/slides/).\n\n---\n\n## Why Go Pro (from $8/m)\n\n- Enhanced HugoBlox Studio visual editor — save 10–20 hours setting up and polishing\n- Premium CV & Resumé designs — make an unforgettable first impression\n- Pro blocks, remove attribution, and priority support\n\n---\n\n## Free vs Pro\n\n| Feature | Academic CV (Free) | Academic CV Pro & Resumé Pro |\n| --- | --- | --- |\n| Design | Professional & clean | Premium designs |\n| Layouts | Standard sections | Advanced timelines & layouts |\n| Courses/Lectures | Basic | Fully-Featured |\n| First Impression | Strong | Unforgettable |\n| Discord Support | Community | Priority |\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/pricing?utm_source=github&utm_medium=readme\"><b>💎 Upgrade to Pro</b></a><br/>\n  <a href=\"https://hugoblox.com/templates/academic-cv-pro/start?utm_source=github&utm_medium=readme\">✨ Deploy Academic CV Pro</a>\n  &nbsp;•&nbsp;\n  <a href=\"https://hugoblox.com/templates/resume-pro/start?utm_source=github&utm_medium=readme\">📄 Deploy Resumé Pro</a>\n</p>\n\n---\n\n## Get Started\n\n### Option 1: No-Code (Fastest)\nLaunch a fully hosted site in your browser. No software to install.\n\n👉 [**Launch in Browser (Free)**](https://hugoblox.com/templates/academic-cv/start?utm_source=github&utm_medium=readme)\n\n### Option 2: Studio (Visual Editor)\n1) Install [HugoBlox Studio](https://marketplace.visualstudio.com/items?itemName=ownable.ownable) for VS Code  \n2) Open this project and edit visually\n\n### Option 3: CLI (Developers)\n1) Install [Hugo](https://docs.hugoblox.com/start/cli/)\n2) Create your site with the CLI:\n\n```bash\nnpx hugoblox create site --template academic-cv\n```\n\n---\n\n## FAQ\n\n- Do I need to know Hugo? No — you can edit visually or write Markdown.\n- Can I host for free? Yes — GitHub Pages/Netlify are supported.\n- Can I export/migrate later? Yes — your site is just files.\n- Can I cancel Pro anytime? Yes.\n\n---\n\n## Community & Support\n\n- 💬 [**Discord Community**](https://discord.gg/z8wNYzb)\n- 📚 [**Documentation**](https://docs.hugoblox.com/?utm_source=github&utm_medium=readme)\n- 🐦 [**Follow on X**](https://x.com/MakeOwnable)\n- ⭐ [**Star on GitHub**](https://github.com/HugoBlox/kit)\n\n---\n\nMIT © 2016-Present [George Cushen](https://georgecushen.com)\n\n<!--START_SECTION:news-->\n<!--END_SECTION:news-->\n"
  },
  {
    "path": "templates/academic-cv/assets/media/icons/custom/.gitkeep",
    "content": ""
  },
  {
    "path": "templates/academic-cv/config/_default/hugo.yaml",
    "content": "# Configuration of Hugo\n# Guide: https://docs.hugoblox.com/tutorial/\n# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings\n# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/\n\n# Website name (set in params.yaml under hugoblox.branding.name)\ntitle: ''\n# Website URL\nbaseURL: 'https://example.com/'\n\n############################\n## LANGUAGE\n############################\n\ndefaultContentLanguage: en\nhasCJKLanguage: false\ndefaultContentLanguageInSubdir: false\nremovePathAccents: true\n\n############################\n## PAGE OPTIONS\n############################\n\ncascade:\n  - _target:\n      path: /slides/**\n      kind: page\n    outputs: [HTML, present]\n\n############################\n## ADVANCED\n############################\n\nbuild:\n  writeStats: true\nenableGitInfo: false\nsummaryLength: 30\npagination:\n  pagerSize: 10\nenableEmoji: true\nenableRobotsTXT: true\nfootnotereturnlinkcontents: <sup>^</sup>\nignoreFiles: [\".ipynb_checkpoints$\", \"\\\\.Rmd$\", \"\\\\.Rmarkdown$\", \"_cache$\"]\ndisableAliases: true\noutputs:\n  home: [HTML, RSS, headers, redirects, backlinks]\n  section: [HTML, RSS]\nimaging:\n  resampleFilter: lanczos\n  quality: 90\n  anchor: smart\n  hint: picture\ntimeout: 600000\ntaxonomies:\n  author: authors\n  tag: tags\n  publication_type: publication_types\nmarkup:\n  _merge: deep\n  highlight:\n    lineNos: false\nsecurity:\n  _merge: deep\nsitemap:\n  _merge: deep\n"
  },
  {
    "path": "templates/academic-cv/config/_default/languages.yaml",
    "content": "# Languages\n#   Create a section for each of your site's languages.\n#   Documentation: https://docs.hugoblox.com/reference/language/\n\n# Default language\nen:\n  languageCode: en-us\n  # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.\n  #contentDir: content/en\n\n# Uncomment the lines below to configure your website in a second language.\n#zh:\n#  languageCode: zh-Hans\n#  contentDir: content/zh\n#  title: Chinese website title...\n#  params:\n#    description: Site description in Chinese...\n#  menu:\n#    main:\n#      - name: 传\n#        url: '#about'\n#        weight: 1\n"
  },
  {
    "path": "templates/academic-cv/config/_default/menus.yaml",
    "content": "# Navigation Links\n#   To link a homepage widget, specify the URL as a hash `#` followed by the filename of the\n  #     desired widget in your `content/home/` folder.\n  #   The weight parameter defines the order that the links will appear in.\n\nmain:\n  - name: Bio\n    url: /\n    weight: 10\n  - name: Papers\n    url: /#papers\n    weight: 11\n  - name: Talks\n    url: /#talks\n    weight: 12\n  - name: News\n    url: /#news\n    weight: 13\n  - name: Experience\n    url: experience/\n    weight: 20\n  - name: Projects\n    url: projects/\n    weight: 30\n  - name: Courses\n    url: courses/\n    weight: 40\n"
  },
  {
    "path": "templates/academic-cv/config/_default/module.yaml",
    "content": "############################\n## HUGO MODULES\n## Install or uninstall themes and plugins here.\n## Docs: https://gohugo.io/hugo-modules/\n############################\n\nimports:\n  - path: github.com/HugoBlox/kit/modules/integrations/netlify\n  - path: github.com/HugoBlox/kit/modules/blox\n  - path: github.com/HugoBlox/kit/modules/slides\n\n# Install any Hugo Blox within the `hugo-blox/blox/` folder\nmounts:\n  - source: hugo-blox/blox/community\n    target: layouts/_partials/blox/community/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox/all-access\n    target: layouts/_partials/blox/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox\n    target: assets/dist/community/blox/\n    files:\n      - '**.css'\n  - source: layouts\n    target: layouts\n  - source: assets\n    target: assets\n"
  },
  {
    "path": "templates/academic-cv/config/_default/params.yaml",
    "content": "# ══════════════════════════════════════════════════════════════════════════════\n# HUGO BLOX CONFIGURATION\n# Schema: hugoblox.com/schema/v2\n# Tutorial: https://docs.hugoblox.com/tutorial/\n# Documentation: https://docs.hugoblox.com/\n# ══════════════════════════════════════════════════════════════════════════════\nhugoblox:\n  schema: \"2.0\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # IDENTITY\n  # Site-level branding (for people/profiles, use the author system in content/authors/)\n  # ────────────────────────────────────────────────────────────────────────────\n  identity:\n    # Site name - shown in navbar, footer, copyright, and browser title by default\n    name: \"Your Name\"\n    # Legal entity for copyright notices (defaults to name if not set)\n    organization: \"\"\n    # Schema.org type for structured data\n    type: person                        # person | organization | local_business\n    # Short tagline displayed on your site\n    tagline: \"\"\n    # Site meta description for search engines and social sharing\n    description: \"The highly-customizable Hugo Academic theme powered by HugoBlox Kit. Easily create your personal academic website.\"\n    # Social accounts (used for meta tags like Twitter Cards)\n    social:\n      twitter: \"MakeOwnable\"              # Twitter/X handle for Twitter Cards (without @)\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # THEME\n  # Color and visual design system\n  # ────────────────────────────────────────────────────────────────────────────\n  theme:\n    # Mode: 'light', 'dark', or 'system' (follows OS preference)\n    mode: system\n    # Theme pack: name from data/themes/ or { light: \"x\", dark: \"y\" } for mix-and-match\n    pack: \"default\"\n    # Optional: Override theme pack colors\n    colors:\n      primary: \"\"                       # Tailwind palette name or hex (e.g., \"indigo\" or \"#6366f1\")\n      secondary: \"\"\n      neutral: \"\"                       # Affects gray utilities (text-gray-*, bg-gray-*)\n    # Optional: Mode-specific color overrides\n    colors_light: {}\n    colors_dark: {}\n    # Optional: Semantic surface color overrides\n    surfaces:\n      background: \"\"\n      foreground: \"\"\n      header:\n        background: \"\"\n        foreground: \"\"\n      footer:\n        background: \"\"\n        foreground: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # TYPOGRAPHY\n  # Font and text sizing\n  # ────────────────────────────────────────────────────────────────────────────\n  typography:\n    # Theme pack: name from data/fonts/\n    pack: \"academic\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LAYOUT\n  # Spacing and shape tokens\n  # ────────────────────────────────────────────────────────────────────────────\n  layout:\n    # Border radius: 'none', 'sm', 'md', 'lg', or 'full'\n    radius: \"md\"\n    # Spacing density: 'compact', 'comfortable', or 'spacious'\n    spacing: \"comfortable\"\n    # Avatar shape in author profiles\n    avatar_shape: circle                # circle | square | rounded\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # HEADER\n  # Site header and navigation bar\n  # ────────────────────────────────────────────────────────────────────────────\n  header:\n    enable: true\n    # Header style variant\n    style: navbar                       # navbar | navbar-simple | minimal\n    # Stick to top on scroll\n    sticky: true\n    # Menu alignment\n    align: center                       # left | center | right\n    # Feature toggles\n    search: true\n    theme_toggle: true\n    theme_picker: true\n    language_switcher: true\n    # Call-to-action button\n    cta:\n      enable: false\n      text: \"\"\n      url: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # FOOTER\n  # Site footer\n  # ────────────────────────────────────────────────────────────────────────────\n  footer:\n    # Footer style variant\n    style: minimal                      # minimal | columns | centered\n    language_switcher: true\n    # Custom footer text (HTML supported)\n    text: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COPYRIGHT\n  # Legal notices and licensing\n  # ────────────────────────────────────────────────────────────────────────────\n  copyright:\n    # Copyright notice - supports {year}, {name}, {license} placeholders\n    notice: \"© {year} {name}. This work is licensed under {license}\"\n    license:\n      type: cc                          # cc | custom\n      allow_derivatives: false\n      share_alike: true\n      allow_commercial: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEO\n  # Search engine optimization - overrides and technical settings\n  # ────────────────────────────────────────────────────────────────────────────\n  seo:\n    # Browser tab title override (defaults to identity.name if not set)\n    title: \"\"\n    # For local_business identity type only\n    location:\n      address:\n        street: \"\"\n        city: \"\"\n        region: \"\"\n        postal_code: \"\"\n        country: \"\"\n      coordinates:\n        latitude: null\n        longitude: null\n      phone: \"\"\n    # AI/LLM crawler guidance (llms.txt)\n    ai:\n      allow:\n        - /\n      disallow: []\n      note: \"Guidance for AI crawlers - customize to match your public content.\"\n      contact: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # CONTENT\n  # Content rendering and behavior\n  # ────────────────────────────────────────────────────────────────────────────\n  content:\n    # Math rendering\n    math:\n      enable: false\n    # Table of contents\n    toc:\n      enable: true\n    # Reading time estimates\n    reading_time:\n      enable: true\n    # Academic citations\n    citations:\n      style: apa                        # apa | mla | chicago | ieee\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEARCH\n  # Site search\n  # ────────────────────────────────────────────────────────────────────────────\n  search:\n    enable: true\n    # Trending/suggested search terms\n    suggestions: []\n    # Quick action shortcuts in search modal\n    quick_actions: []\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COMMENTS\n  # User comments system\n  # ────────────────────────────────────────────────────────────────────────────\n  comments:\n    enable: false\n    provider: \"\"                        # giscus | disqus\n    giscus:\n      repo: \"\"\n      repo_id: \"\"\n      category: \"\"\n      category_id: \"\"\n    disqus:\n      shortname: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # ANALYTICS\n  # Traffic and behavior analytics\n  # ────────────────────────────────────────────────────────────────────────────\n  analytics:\n    google:\n      measurement_id: \"\"                # Google Analytics 4: G-XXXXXXXXXX\n    google_tag_manager:\n      container_id: \"\"                  # GTM-XXXXXXX\n    plausible:\n      domain: \"\"\n    fathom:\n      site_id: \"\"\n    pirsch:\n      site_id: \"\"\n    clarity:\n      project_id: \"\"\n    baidu:\n      site_id: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # VERIFICATION\n  # Search engine site verification codes\n  # ────────────────────────────────────────────────────────────────────────────\n  verification:\n    google: \"\"\n    bing: \"\"\n    baidu: \"\"\n    yandex: \"\"\n    pinterest: \"\"\n    naver: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # REPOSITORY\n  # Source code repository for \"Edit this page\" links\n  # ────────────────────────────────────────────────────────────────────────────\n  repository:\n    enable: false\n    url: \"\"                             # e.g., https://github.com/username/repo\n    branch: main\n    content_dir: content\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LOCALE\n  # Regional formatting preferences\n  # ────────────────────────────────────────────────────────────────────────────\n  locale:\n    date_format: \"Jan 2, 2006\"          # Go time format\n    time_format: \"3:04 PM\"\n    address_format: en-us\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SECURITY\n  # Security headers and policies (requires Netlify integration)\n  # ────────────────────────────────────────────────────────────────────────────\n  security:\n    csp:\n      policy: \"\"\n      report_only: false\n    frame_options: allow                 # deny | sameorigin | allow - allow enables iframe embedding\n    permissions_policy: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PRIVACY\n  # Privacy and compliance features\n  # ────────────────────────────────────────────────────────────────────────────\n  privacy:\n    enable: false\n    anonymize_analytics: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # DEBUG\n  # Development and debugging (hidden in production)\n  # ────────────────────────────────────────────────────────────────────────────\n  debug:\n    enable: false\n    hud:\n      position: bottom-left             # top-left | top-right | bottom-left | bottom-right\n      opacity: 1.0\n    export_logs: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PREMIUM\n  # Premium features and creator program (affiliates)\n  # ────────────────────────────────────────────────────────────────────────────\n  pro:\n    # Hide \"Powered by HugoBlox\" attribution\n    # Requires: HugoBlox Premium to support HugoBlox via alternative means\n    # Note: Even with Premium, you can keep this false to support open source!\n    # Get Premium: https://hugoblox.com/premium\n    hide_attribution: false\n    \n    # Affiliate referral code for rewards program\n    # Join affiliate program: https://hugoblox.com/affiliates\n    affiliate_code: \"\"\n"
  },
  {
    "path": "templates/academic-cv/content/_index.md",
    "content": "---\n# Leave the homepage title empty to use the site title\ntitle: ''\nsummary: ''\ndate: 2022-10-24\ntype: landing\n\ndesign:\n  # Default section spacing\n  spacing: '6rem'\n\nsections:\n  - block: resume-biography-3\n    content:\n      # Choose a user profile to display (a folder name within `content/authors/`)\n      username: me\n      text: ''\n      # Show a call-to-action button under your biography? (optional)\n      button:\n        text: Download CV\n        url: uploads/resume.pdf\n      headings:\n        about: ''\n        education: ''\n        interests: ''\n    design:\n      # Use the new Gradient Mesh which automatically adapts to the selected theme colors\n      background:\n        gradient_mesh:\n          enable: true\n\n      # Name heading sizing to accommodate long or short names\n      name:\n        size: md # Options: xs, sm, md, lg (default), xl\n\n      # Avatar customization\n      avatar:\n        size: medium # Options: small (150px), medium (200px, default), large (320px), xl (400px), xxl (500px)\n        shape: circle # Options: circle (default), square, rounded\n  - block: markdown\n    content:\n      title: '📚 My Research'\n      subtitle: ''\n      text: |-\n        Use this area to speak to your mission. I'm a research scientist in the Moonshot team at DeepMind. I blog about machine learning, deep learning, and moonshots.\n\n        I apply a range of qualitative and quantitative methods to comprehensively investigate the role of science and technology in the economy.\n\n        Please reach out to collaborate 😃\n    design:\n      columns: '1'\n  - block: collection\n    id: papers\n    content:\n      title: Featured Publications\n      filters:\n        folders:\n          - publications\n        featured_only: true\n    design:\n      view: article-grid\n      columns: 2\n  - block: collection\n    content:\n      title: Recent Publications\n      text: ''\n      filters:\n        folders:\n          - publications\n        exclude_featured: false\n    design:\n      view: citation\n  - block: collection\n    id: talks\n    content:\n      title: Recent & Upcoming Talks\n      filters:\n        folders:\n          - events\n    design:\n      view: card\n  - block: collection\n    id: news\n    content:\n      title: Recent News\n      subtitle: ''\n      text: ''\n      # Page type to display. E.g. post, talk, publication...\n      page_type: blog\n      # Choose how many pages you would like to display (0 = all pages)\n      count: 10\n      # Filter on criteria\n      filters:\n        author: ''\n        category: ''\n        tag: ''\n        exclude_featured: false\n        exclude_future: false\n        exclude_past: false\n        publication_type: ''\n      # Choose how many pages you would like to offset by\n      offset: 0\n      # Page order: descending (desc) or ascending (asc) date.\n      order: desc\n    design:\n      # Choose a layout view\n      view: card\n      # Reduce spacing\n      spacing:\n        padding: [0, 0, 0, 0]\n  - block: cta-card\n    demo: true # Only display this section in the HugoBlox Kit demo site\n    content:\n      title: 👉 Build your own academic website like this\n      text: |-\n        This site is generated by HugoBlox Kit - the FREE, Hugo-based open source website builder trusted by 250,000+ academics like you.\n\n        <a class=\"github-button\" href=\"https://github.com/HugoBlox/kit\" data-color-scheme=\"no-preference: light; light: light; dark: dark;\" data-icon=\"octicon-star\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Star HugoBlox/kit on GitHub\">Star</a>\n\n        Easily build anything with blocks - no-code required!\n\n        From landing pages, second brains, and courses to academic resumés, conferences, and tech blogs.\n      button:\n        text: Get Started\n        url: https://hugoblox.com/templates/\n    design:\n      card:\n        # Card background color (CSS class)\n        css_class: 'bg-primary-300 dark:bg-primary-700'\n        css_style: ''\n---\n"
  },
  {
    "path": "templates/academic-cv/content/authors/_index.md",
    "content": "---\n# To publish author profile pages, remove all the `build` and `cascade` settings below.\nbuild:\n  render: never\ncascade:\n  build:\n    render: never\n    list: always\n---\n"
  },
  {
    "path": "templates/academic-cv/content/blog/_index.md",
    "content": "---\ntitle: Blog\nview: article-grid\n---\n"
  },
  {
    "path": "templates/academic-cv/content/blog/data-visualization/index.md",
    "content": "---\ntitle: 📈 Communicate your results effectively with the best data visualizations\nsummary: Use popular tools such as HuggingFace, Plotly, Mermaid, and data frames.\ndate: 2023-10-25\nauthors:\n  - me\ntags:\n  - Hugo\n  - Hugo Blox\n  - Markdown\ncover:\n  image: \"https://images.unsplash.com/photo-1557682250-33bd709cbe85?q=80&w=2560\"\n  position:\n    x: 50\n    y: 40\n  overlay:\n    enabled: true\n    type: \"gradient\"\n    opacity: 0.4\n    gradient: \"bottom\"\n  fade:\n    enabled: true\n    height: \"80px\"\n  icon:\n    name: \"✨\"\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nHugo Blox is designed to give technical content creators a seamless experience. You can focus on the content and Hugo Blox handles the rest.\n\nUse popular tools such as Plotly, Mermaid, and data frames.\n\n## Embed Rich Content\n\nHuggingFace Model\n\n{{< embed platform=\"huggingface\" resource=\"google/embeddinggemma-300m\" type=\"model\" >}}\n\nHuggingFace Dataset\n\n{{< embed platform=\"huggingface\" resource=\"fka/awesome-chatgpt-prompts\" type=\"dataset\" >}}\n\nGitHub Repository\n\n{{< embed platform=\"github\" resource=\"HugoBlox/kit\" type=\"repo\" >}}\n\nCustom embed with manual data\n\n{{< embed url=\"https://example.com\" title=\"My Custom Resource\" description=\"A great resource for learning\" >}}\n\n### Custom Images\n\nEmbed beautiful images from any source with Hugo image processing (Unsplash, custom URLs, etc.):\n\n{{< embed url=\"https://example.com\" title=\"Data Visualization Guide\" description=\"Beautiful data visualization workspace\" image=\"https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?q=80&w=800&h=600&auto=format&fit=crop\" width=\"800\" height=\"600\" quality=\"90\" >}}\n\nYou can also add images to any platform embed:\n\n{{< embed platform=\"github\" resource=\"plotly/plotly.py\" type=\"repo\" image=\"https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=600&h=400&auto=format&fit=crop\" width=\"600\" height=\"400\" >}}\n\n## Charts\n\nHugo Blox supports the popular [Plotly](https://plot.ly/) format for interactive data visualizations. With Plotly, you can design almost any kind of visualization you can imagine!\n\nSave your Plotly JSON in your page folder, for example `line-chart.json`, and then add the `{{</* chart data=\"line-chart\" */>}}` shortcode where you would like the chart to appear.\n\nDemo:\n\n{{< chart data=\"line-chart\" >}}\n\nYou might also find the [Plotly JSON Editor](http://plotly-json-editor.getforge.io/) useful.\n\n## Diagrams\n\nHugo Blox supports the _Mermaid_ Markdown extension for diagrams.\n\nAn example **flowchart**:\n\n    ```mermaid\n    graph TD\n    A[Hard] -->|Text| B(Round)\n    B --> C{Decision}\n    C -->|One| D[Result 1]\n    C -->|Two| E[Result 2]\n    ```\n\nrenders as\n\n```mermaid\ngraph TD\nA[Hard] -->|Text| B(Round)\nB --> C{Decision}\nC -->|One| D[Result 1]\nC -->|Two| E[Result 2]\n```\n\nAn example **sequence diagram**:\n\n    ```mermaid\n    sequenceDiagram\n    Alice->>John: Hello John, how are you?\n    loop Healthcheck\n        John->>John: Fight against hypochondria\n    end\n    Note right of John: Rational thoughts!\n    John-->>Alice: Great!\n    John->>Bob: How about you?\n    Bob-->>John: Jolly good!\n    ```\n\nrenders as\n\n```mermaid\nsequenceDiagram\nAlice->>John: Hello John, how are you?\nloop Healthcheck\n    John->>John: Fight against hypochondria\nend\nNote right of John: Rational thoughts!\nJohn-->>Alice: Great!\nJohn->>Bob: How about you?\nBob-->>John: Jolly good!\n```\n\nAn example **class diagram**:\n\n    ```mermaid\n    classDiagram\n    Class01 <|-- AveryLongClass : Cool\n    Class03 *-- Class04\n    Class05 o-- Class06\n    Class07 .. Class08\n    Class09 --> C2 : Where am i?\n    Class09 --* C3\n    Class09 --|> Class07\n    Class07 : equals()\n    Class07 : Object[] elementData\n    Class01 : size()\n    Class01 : int chimp\n    Class01 : int gorilla\n    Class08 <--> C2: Cool label\n    ```\n\nrenders as\n\n```mermaid\nclassDiagram\nClass01 <|-- AveryLongClass : Cool\nClass03 *-- Class04\nClass05 o-- Class06\nClass07 .. Class08\nClass09 --> C2 : Where am i?\nClass09 --* C3\nClass09 --|> Class07\nClass07 : equals()\nClass07 : Object[] elementData\nClass01 : size()\nClass01 : int chimp\nClass01 : int gorilla\nClass08 <--> C2: Cool label\n```\n\nAn example **state diagram**:\n\n    ```mermaid\n    stateDiagram\n    [*] --> Still\n    Still --> [*]\n    Still --> Moving\n    Moving --> Still\n    Moving --> Crash\n    Crash --> [*]\n    ```\n\nrenders as\n\n```mermaid\nstateDiagram\n[*] --> Still\nStill --> [*]\nStill --> Moving\nMoving --> Still\nMoving --> Crash\nCrash --> [*]\n```\n\n## Data Frames\n\nSave your spreadsheet as a CSV file in your page's folder and then render it by adding the _Table_ shortcode to your page:\n\n```go\n{{</* table path=\"results.csv\" header=\"true\" caption=\"Table 1: My results\" */>}}\n```\n\nrenders as\n\n{{< table path=\"results.csv\" header=\"true\" caption=\"Table 1: My results\" >}}\n\n## Interactive Buttons\n\nAdd engaging call-to-action buttons to your data visualization posts:\n\n### Basic Buttons\n\n{{< button url=\"/\" >}}Contact Us{{< /button >}}\n\n&nbsp;\n\n{{< button url=\"https://plotly.com/python/\" new_tab=\"true\" style=\"secondary\" >}}Learn Plotly{{< /button >}}\n\n```go-html-template\n{{</* button url=\"/\" */>}}Contact Us{{</* /button */>}}\n\n{{</* button url=\"https://plotly.com/python/\" new_tab=\"true\" style=\"secondary\" */>}}Learn Plotly{{</* /button */>}}\n```\n\n### Styled Buttons for Data Actions\n\n{{< button url=\"#\" style=\"primary\" size=\"lg\" align=\"center\" icon=\"chart-bar\" >}}View Dashboard{{< /button >}}\n\n&nbsp;\n\n{{< button url=\"/data/results.csv\" style=\"outline\" icon=\"document-arrow-down\" >}}Download Data{{< /button >}}\n\n&nbsp;\n\n{{< button url=\"https://github.com/HugoBlox\" new_tab=\"true\" style=\"ghost\" icon=\"arrow-top-right-on-square\" icon_position=\"right\" >}}View Source Code{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"primary\" size=\"lg\" align=\"center\" icon=\"chart-bar\" */>}}View Dashboard{{</* /button */>}}\n\n{{</* button url=\"/data/results.csv\" style=\"outline\" icon=\"document-arrow-down\" */>}}Download Data{{</* /button */>}}\n\n{{</* button url=\"https://github.com/HugoBlox\" new_tab=\"true\" style=\"ghost\" icon=\"arrow-top-right-on-square\" icon_position=\"right\" */>}}View Source Code{{</* /button */>}}\n```\n\n### Multiple Aligned Buttons\n\n{{< button url=\"https://jupyter.org/\" new_tab=\"true\" style=\"secondary\" rounded=\"full\" align=\"center\" >}}Try Jupyter{{< /button >}}\n\n&nbsp;\n\n{{< button url=\"https://colab.research.google.com/\" new_tab=\"true\" style=\"primary\" rounded=\"full\" align=\"center\" icon=\"rocket-launch\" >}}Open in Colab{{< /button >}}\n\n```go-html-template\n{{</* button url=\"https://jupyter.org/\" new_tab=\"true\" style=\"secondary\" rounded=\"full\" align=\"center\" */>}}Try Jupyter{{</* /button */>}}\n\n{{</* button url=\"https://colab.research.google.com/\" new_tab=\"true\" style=\"primary\" rounded=\"full\" align=\"center\" icon=\"rocket-launch\" */>}}Open in Colab{{</* /button */>}}\n```\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/academic-cv/content/blog/data-visualization/line-chart.json",
    "content": "{\n  \"data\": [\n    {\n      \"uid\": \"babced\",\n      \"fill\": \"tonexty\",\n      \"mode\": \"none\",\n      \"name\": \"Col2\",\n      \"type\": \"scatter\",\n      \"x\": [\n        \"2000-01-01\",\n        \"2001-01-01\",\n        \"2002-01-01\",\n        \"2003-01-01\",\n        \"2004-01-01\",\n        \"2005-01-01\",\n        \"2006-01-01\",\n        \"2007-01-01\",\n        \"2008-01-01\",\n        \"2009-01-01\",\n        \"2010-01-01\",\n        \"2011-01-01\",\n        \"2012-01-01\",\n        \"2013-01-01\",\n        \"2014-01-01\",\n        \"2015-01-01\",\n        \"2016-01-01\"\n      ],\n      \"y\": [\n        \"17087182\",\n        \"29354370\",\n        \"38760373\",\n        \"40912332\",\n        \"51611646\",\n        \"64780617\",\n        \"85507314\",\n        \"121892559\",\n        \"172338726\",\n        \"238027855\",\n        \"206956723\",\n        \"346004403\",\n        \"697089489\",\n        \"672985183\",\n        \"968882453\",\n        \"863105652\",\n        \"1068513050\"\n      ],\n      \"fillcolor\": \"rgb(224, 102, 102)\"\n    }\n  ],\n  \"layout\": {\n    \"title\": \"Total Number of Websites\",\n    \"width\": 800,\n    \"xaxis\": {\n      \"type\": \"date\",\n      \"range\": [946702800000, 1451624400000],\n      \"title\": \"Source: <a href=\\\"http://www.scribblrs.com/\\\">Scribblrs</a><br>Source: <a href=\\\"http://www.internetlivestats.com/total-number-of-websites/\\\">Internet Live Stats</a>\",\n      \"showgrid\": false,\n      \"autorange\": true,\n      \"tickformat\": \"%Y\"\n    },\n    \"yaxis\": {\n      \"type\": \"linear\",\n      \"range\": [0, 1124750578.9473684],\n      \"title\": \"\",\n      \"autorange\": true\n    },\n    \"height\": 500,\n    \"autosize\": false\n  },\n  \"frames\": []\n}\n"
  },
  {
    "path": "templates/academic-cv/content/blog/data-visualization/results.csv",
    "content": "customer_id, score\n1,0\n2,0.5\n3,1\n"
  },
  {
    "path": "templates/academic-cv/content/blog/get-started/index.md",
    "content": "---\ntitle: 🎉 Easily create your own simple yet highly customizable blog\nsummary: Take full control of your personal brand and privacy by migrating away from the big tech platforms!\ndate: 2023-10-27\n\n# Featured image\n# Place an image named `featured.jpg/png` in this page's folder and customize its options here.\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n\ncover:\n  image: \"https://images.unsplash.com/photo-1557682250-33bd709cbe85?q=80&w=2560\"\n  position:\n    x: 50\n    y: 40\n  overlay:\n    enabled: true\n    type: \"gradient\"\n    opacity: 0.4\n    gradient: \"bottom\"\n  fade:\n    enabled: true\n    height: \"80px\"\n  icon:\n    name: \"✨\"\n\nauthors:\n  - me\n  - Ted\n\ntags:\n  - Academic\n  - Hugo Blox\n  - Markdown\n\ncontent_meta:\n  trending: true\n---\n\nWelcome 👋\n\n{{< toc mobile_only=true is_open=true >}}\n\n## Overview\n\n1. The Hugo Blox website builder for Hugo, along with its starter templates, is designed for professional creators, educators, and teams/organizations - although it can be used to create any kind of site\n2. The template can be modified and customised to suit your needs. It's a good platform for anyone looking to take control of their data and online identity whilst having the convenience to start off with a **no-code solution (write in Markdown and customize with YAML parameters)** and having **flexibility to later add even deeper personalization with HTML and CSS**\n3. You can work with all your favourite tools and apps with hundreds of plugins and integrations to speed up your workflows, interact with your readers, and much more\n\n[//]: # '[![The template is mobile first with a responsive design to ensure that your site looks stunning on every device.](https://raw.githubusercontent.com/HugoBlox/kit/main/templates/academic-cv/preview.png)](https://hugoblox.com)'\n\n### Get Started\n\n> [!TIP]+ Quick Start Guide\n> New to Hugo Blox? Follow these steps to get your site up and running in minutes!\n\n- 👉 [**Create a new site**](https://hugoblox.com/templates/)\n- 📚 [**Personalize your site**](https://docs.hugoblox.com/)\n- 💬 [Chat with the **Hugo Blox community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)\n- 🐦 Twitter: [@MakeOwnable](https://x.com/MakeOwnable)  #MadeWithHugoBlox\n- 💡 [Request a **feature** or report a **bug** for _Hugo Blox_](https://github.com/HugoBlox/kit/issues)\n- ⬆️ **Updating Hugo Blox?** View the [Update Guide](https://docs.hugoblox.com/reference/update/) and [Release Notes](https://github.com/HugoBlox/kit/releases)\n\n> [!IMPORTANT]\n> Remember to backup your site before making major updates!\n\n## Crowd-funded open-source software\n\nTo help us develop this template and software sustainably under the MIT license, we ask all individuals and businesses that use it to help support its ongoing maintenance and development via sponsorship.\n\n### [❤️ Click here to become a sponsor and help support Hugo Blox's future ❤️](https://hugoblox.com/sponsor/)\n\nAs a token of appreciation for sponsoring, you can **unlock [these](https://hugoblox.com/sponsor/) awesome rewards and extra features 🦄✨**\n\n## Ecosystem\n\n- **[Bibtex To Markdown](https://github.com/GetRD/academic-file-converter):** Automatically import publications from BibTeX\n\n## Inspiration\n\n[Learn what other **creators**](https://hugoblox.com/creators/) are building with this template.\n\n## Features\n\n> [!NOTE]+ Enhanced Markdown Support  \n> Hugo Blox now supports GitHub and Obsidian-style callouts! Use standard Markdown alert syntax like `> [!NOTE]` for better portability.\n\n- **Page builder** - Create _anything_ with no-code [**blocks**](https://hugoblox.com/blocks/) and [**elements**](https://docs.hugoblox.com/reference/markdown/)\n- **Edit any type of content** - Blog posts, publications, talks, slides, projects, and more!\n- **Create content** in [**Markdown**](https://docs.hugoblox.com/reference/markdown/), [**Jupyter**](https://docs.hugoblox.com/getting-started/cms/), or [**RStudio**](https://docs.hugoblox.com/getting-started/cms/)\n- **Plugin System** - Fully customizable [**color** and **font themes**](https://docs.hugoblox.com/getting-started/customize/)\n- **Display Code and Math** - Code syntax highlighting and LaTeX math supported\n- **Integrations** - [Google Analytics](https://analytics.google.com), [Disqus commenting](https://disqus.com), Maps, Contact Forms, and more!\n- **Beautiful Site** - Simple and refreshing one-page design\n- **Industry-Leading SEO** - Help get your website found on search engines and social media\n- **Media Galleries** - Display your images and videos with captions in a customizable gallery\n- **Mobile Friendly** - Look amazing on every screen with a mobile friendly version of your site\n- **Multi-language** - 35+ language packs including English, 中文, and Português\n- **Multi-user** - Each author gets their own profile page\n- **Privacy Pack** - Assists with GDPR\n- **Stand Out** - Bring your site to life with animation, parallax backgrounds, and scroll effects\n- **One-Click Deployment** - No servers. No databases. Only files.\n\n> [!WARNING]+ Version Requirements  \n> The new Markdown alert syntax requires Hugo v0.132.0 or later. Make sure you're using a compatible version!\n\n## Themes\n\nHugo Blox and its templates come with **automatic day (light) and night (dark) mode** built-in. Visitors can choose their preferred mode by clicking the sun/moon icon in the header.\n\n[Choose a stunning **theme** and **font**](https://docs.hugoblox.com/getting-started/customize/) for your site. Themes are fully customizable.\n\n## License\n\nCopyright 2016-present [George Cushen](https://georgecushen.com).\n\nReleased under the [MIT](https://github.com/HugoBlox/kit/blob/main/LICENSE.md) license.\n"
  },
  {
    "path": "templates/academic-cv/content/blog/notebook-onboarding/hugoblox-onboarding.ipynb",
    "content": "{\n  \"cells\": [\n    {\n      \"cell_type\": \"markdown\",\n      \"id\": \"2f21e4c5\",\n      \"metadata\": {},\n      \"source\": [\n        \"# Ship Notebook Stories in Minutes\\n\",\n        \"Hugo Blox Notebook renderer turns your `.ipynb` experiments into beautiful long-form posts.\\n\",\n        \"Use this sample to see how markdown, code, and outputs flow together.\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"id\": \"3078072c\",\n      \"metadata\": {},\n      \"source\": [\n        \"1. Drop notebooks inside `assets/notebooks/` (or import them as page resources).\\n\",\n        \"2. Reference them with `{{</* notebook src=\\\"your.ipynb\\\" */>}}`.\\n\",\n        \"3. Control code, outputs, metadata badges, and download links via shortcode params.\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"execution_count\": 1,\n      \"id\": \"7b29b28a\",\n      \"metadata\": {\n        \"tags\": [\n          \"demo\",\n          \"quickstart\"\n        ]\n      },\n      \"outputs\": [\n        {\n          \"name\": \"stdout\",\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"Collecting data...\\n\",\n            \"Training notebook-ready block...\\n\",\n            \"Done!\\n\"\n          ]\n        },\n        {\n          \"data\": {\n            \"text/plain\": [\n              \"0.982\"\n            ]\n          },\n          \"execution_count\": 1,\n          \"metadata\": {},\n          \"output_type\": \"execute_result\"\n        }\n      ],\n      \"source\": [\n        \"import math\\n\",\n        \"accuracy = 0.982\\n\",\n        \"print(\\\"Collecting data...\\\")\\n\",\n        \"print(\\\"Training notebook-ready block...\\\")\\n\",\n        \"print(\\\"Done!\\\")\\n\",\n        \"accuracy\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"execution_count\": 2,\n      \"id\": \"ceecfe89\",\n      \"metadata\": {},\n      \"outputs\": [\n        {\n          \"data\": {\n            \"text/html\": [\n              \"<div style='font-family:Inter,ui-sans-serif;'><strong>Launch Readiness:</strong> <span style='color:#22c55e;'>98.2% confidence</span><br><em>Notebook blocks are theme-aware and dark-mode friendly.</em></div>\"\n            ],\n            \"text/plain\": [\n              \"<IPython.core.display.HTML object>\"\n            ]\n          },\n          \"metadata\": {},\n          \"output_type\": \"display_data\"\n        }\n      ],\n      \"source\": [\n        \"from IPython.display import HTML\\n\",\n        \"HTML(\\\"<div style='font-family:Inter,ui-sans-serif;'><strong>Launch Readiness:</strong> <span style='color:#22c55e;'>98.2% confidence</span><br><em>Notebook blocks are theme-aware and dark-mode friendly.</em></div>\\\")\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"execution_count\": 3,\n      \"id\": \"664e49ca\",\n      \"metadata\": {\n        \"tags\": [\n          \"metrics\"\n        ]\n      },\n      \"outputs\": [\n        {\n          \"data\": {\n            \"application/json\": {\n              \"metrics\": {\n                \"engagement_rate\": 0.73,\n                \"read_time_minutes\": 4.6,\n                \"subscribers\": 1280\n              }\n            },\n            \"text/plain\": [\n              \"{'metrics': {'engagement_rate': 0.73, 'read_time_minutes': 4.6, 'subscribers': 1280}}\"\n            ]\n          },\n          \"execution_count\": 3,\n          \"metadata\": {},\n          \"output_type\": \"execute_result\"\n        }\n      ],\n      \"source\": [\n        \"metrics = {\\n\",\n        \"    'metrics': {\\n\",\n        \"        'engagement_rate': 0.73,\\n\",\n        \"        'read_time_minutes': 4.6,\\n\",\n        \"        'subscribers': 1280\\n\",\n        \"    }\\n\",\n        \"}\\n\",\n        \"metrics\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"id\": \"0f761ba1\",\n      \"metadata\": {},\n      \"source\": [\n        \"> Tip: Pair this block with Call-to-Action cards or the Embed shortcode to link to GitHub repos, datasets, or ARXIV preprints.\"\n      ]\n    }\n  ],\n  \"metadata\": {\n    \"authors\": [\n      {\n        \"name\": \"HugoBlox Studio\"\n      }\n    ],\n    \"kernelspec\": {\n      \"display_name\": \"Python 3\",\n      \"language\": \"python\",\n      \"name\": \"python3\"\n    },\n    \"language_info\": {\n      \"codemirror_mode\": {\n        \"name\": \"ipython\",\n        \"version\": 3\n      },\n      \"file_extension\": \".py\",\n      \"mimetype\": \"text/x-python\",\n      \"name\": \"python\",\n      \"nbconvert_exporter\": \"python\",\n      \"pygments_lexer\": \"ipython3\",\n      \"version\": \"3.11\"\n    }\n  },\n  \"nbformat\": 4,\n  \"nbformat_minor\": 5\n}"
  },
  {
    "path": "templates/academic-cv/content/blog/notebook-onboarding/index.md",
    "content": "---\ntitle: ⚡️ Turn Jupyter Notebooks into Blog Posts\nsummary: Publish your data science and research directly from Jupyter Notebooks. No screenshots required.\ndate: 2024-07-15\nauthors:\n  - me\ntags:\n  - Hugo Blox\n  - Jupyter\n  - Open Science\n  - Tutorials\ncover:\n  # image: cover.jpg  # Auto-detected from cover image in this folder\n  icon:\n    name: \"📔\"\nimage:\n  caption: \"Image credit: [HugoBlox](https://hugoblox.com)\"\n  focal_point: Center\n  placement: 1\ncontent_meta:\n  trending: true\n---\n\nAs a researcher or data scientist, your work often lives in Jupyter Notebooks. But sharing those insights effectively usually means taking screenshots, messy copy-pasting, or exporting to PDF.\n\nHugo Blox changes that. With the `{{</* notebook */>}}` shortcode, you can render your actual `.ipynb` files directly as beautiful, interactive blog posts or project pages. Keep your code, outputs, and narrative in one place.\n\n{{< toc mobile_only=true is_open=true >}}\n\n## Why publish notebooks?\n\n> [!TIP]\n> **Reproducible Research**: By publishing the actual notebook, you allow others to download and run your code, verifying your results and building upon your work.\n\n- **No more screenshots** – Render crisp code and vector plots directly from your source.\n- **Theme consistent** – Notebooks automatically adapt to your site's theme (including dark mode).\n- **Flexible sourcing** – Display notebooks from your `assets/` folder, page bundles, or even directly from a remote GitHub URL.\n- **Interactive** – Users can copy code blocks or download the full notebook to run locally.\n\n## Example: Data Science Workflow\n\nBelow is a live example of a notebook rendered right here in this post. Notice how the markdown, code, and outputs (text, HTML, and JSON) are all preserved and styled.\n\n{{< notebook\n    src=\"hugoblox-onboarding.ipynb\"\n    title=\"Launch Readiness Analysis\"\n    show_metadata=true\n    line_numbers=true\n    dense=false\n    download_label=\"Download notebook\"\n    show_outputs=true\n>}}\n\n## How to add a notebook\n\n1. **Save your notebook.** Place your `.ipynb` file in `assets/notebooks/` (for global access) or inside a page bundle (like `content/blog/my-post/analysis.ipynb`).\n2. **Add the shortcode.** In any Markdown page, simply use:\n   `{{</* notebook src=\"analysis.ipynb\" */>}}`\n3. **Customize.** You can hide code cells for non-technical audiences (`show_code=false`) or just show the output (`show_outputs=true`).\n\n> [!IMPORTANT]\n> Hugo Blox respects your privacy. Notebook rendering happens statically at build time—no third-party services required.\n\n## Next steps\n\n- **Try it out:** Drop one of your existing notebooks into this site and see how it looks.\n- **Link your papers:** Use the Embed shortcode to link your notebook to your latest arXiv preprint or GitHub repository.\n- **Get help:** Join the community on [Discord](https://discord.gg/z8wNYzb) or check the [documentation](https://docs.hugoblox.com).\n\nHappy researching! 🚀\n"
  },
  {
    "path": "templates/academic-cv/content/blog/project-management/index.md",
    "content": "---\ntitle: ✅ Manage your projects\nsummary: Easily manage your projects - create ideation mind maps, Gantt charts, todo lists, and more!\ndate: 2023-10-23\nauthors:\n  - me\ntags:\n  - Hugo Blox\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\ncover:\n  image: \"https://images.unsplash.com/photo-1557682250-33bd709cbe85?q=80&w=2560\"\n  position:\n    x: 50\n    y: 40\n  overlay:\n    enabled: true\n    type: \"gradient\"\n    opacity: 0.4\n    gradient: \"bottom\"\n  fade:\n    enabled: true\n    height: \"80px\"\n  icon:\n    name: \"✨\"\n---\n\nEasily manage your projects - create ideation mind maps, Gantt charts, todo lists, and more!\n\n## Ideation\n\nHugo Blox supports a Markdown extension for mindmaps.\n\nSimply insert a Markdown code block labelled as `markmap` and optionally set the height of the mindmap as shown in the example below.\n\nMindmaps can be created by simply writing the items as a Markdown list within the `markmap` code block, indenting each item to create as many sub-levels as you need:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n\n## Diagrams\n\nHugo Blox supports the _Mermaid_ Markdown extension for diagrams.\n\nAn example **Gantt diagram**:\n\n    ```mermaid\n    gantt\n    section Section\n    Completed :done,    des1, 2014-01-06,2014-01-08\n    Active        :active,  des2, 2014-01-07, 3d\n    Parallel 1   :         des3, after des1, 1d\n    Parallel 2   :         des4, after des1, 1d\n    Parallel 3   :         des5, after des3, 1d\n    Parallel 4   :         des6, after des4, 1d\n    ```\n\nrenders as\n\n```mermaid\ngantt\nsection Section\nCompleted :done,    des1, 2014-01-06,2014-01-08\nActive        :active,  des2, 2014-01-07, 3d\nParallel 1   :         des3, after des1, 1d\nParallel 2   :         des4, after des1, 1d\nParallel 3   :         des5, after des3, 1d\nParallel 4   :         des6, after des4, 1d\n```\n\n## Todo lists\n\nYou can even write your todo lists in Markdown too:\n\n```markdown\n- [x] Write math example\n  - [x] Write diagram example\n- [ ] Do something else\n```\n\nrenders as\n\n- [x] Write math example\n  - [x] Write diagram example\n- [ ] Do something else\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/academic-cv/content/blog/second-brain/index.md",
    "content": "---\ntitle: 🧠 Sharpen your thinking with a second brain\nsummary: Create a personal knowledge base and share your knowledge with your peers.\ndate: 2023-10-26\nauthors:\n  - me\ntags:\n  - Second Brain\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\ncover:\n  image: \"https://images.unsplash.com/photo-1557682250-33bd709cbe85?q=80&w=2560\"\n  position:\n    x: 50\n    y: 40\n  overlay:\n    enabled: true\n    type: \"gradient\"\n    opacity: 0.4\n    gradient: \"bottom\"\n  fade:\n    enabled: true\n    height: \"80px\"\n  icon:\n    name: \"✨\"\n---\n\nCreate a personal knowledge base and share your knowledge with your peers.\n\nHugo Blox web framework empowers you with one of the most flexible note-taking capabilities out there.\n\nCreate a powerful knowledge base that works on top of a local folder of plain text Markdown files.\n\nUse it as your second brain, either publicly sharing your knowledge with your peers via your website, or via a private GitHub repository and password-protected site just for yourself.\n\n## Mindmaps\n\nHugo Blox supports a Markdown extension for mindmaps.\n\nWith this open format, can even edit your mindmaps in other popular tools such as Obsidian.\n\nSimply insert a Markdown code block labelled as `markmap` and optionally set the height of the mindmap as shown in the example below.\n\nMindmaps can be created by simply writing the items as a Markdown list within the `markmap` code block, indenting each item to create as many sub-levels as you need:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n\nAnh here's a more advanced mindmap with formatting, code blocks, and math:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap\n- Mindmaps\n  - Links\n    - [Hugo Blox Docs](https://docs.hugoblox.com/)\n    - [Discord Community](https://discord.gg/z8wNYzb)\n    - [GitHub](https://github.com/HugoBlox/kit)\n  - Features\n    - Markdown formatting\n    - **inline** ~~text~~ *styles*\n    - multiline\n      text\n    - `inline code`\n    - Math: $x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}$\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap\n- Mindmaps\n  - Links\n    - [Hugo Blox Docs](https://docs.hugoblox.com/)\n    - [Discord Community](https://discord.gg/z8wNYzb)\n    - [GitHub](https://github.com/HugoBlox/kit)\n  - Features\n    - Markdown formatting\n    - **inline** ~~text~~ *styles*\n    - multiline\n      text\n    - `inline code`\n    - Math: $x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}$\n```\n\n## Highlighting\n\n<mark>Highlight</mark> important text with `mark`:\n\n```html\n<mark>Highlighted text</mark>\n```\n\n## Callouts\n\nUse [callouts](https://docs.hugoblox.com/reference/markdown/#callouts) (aka _asides_, _hints_, or _alerts_) to draw attention to notes, tips, and warnings.\n\nUse the `> [!NOTE]` syntax to create a callout.\n\n```markdown\n> [!NOTE]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n```\n\nrenders as\n\n> [!NOTE]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n\nOr use the `warning` callout type so your readers don't miss critical details:\n\n> [!WARNING]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/academic-cv/content/blog/teach-courses/index.md",
    "content": "---\ntitle: 👩🏼‍🏫 Teach academic courses\nsummary: Embed videos, podcasts, code, LaTeX math, and even test students!\ndate: 2023-10-24\nmath: true\nauthors:\n  - me\ntags:\n  - Hugo\n  - HugoBlox Kit\n  - Markdown\nimage:\n  caption: 'Embed rich media such as videos and LaTeX math'\ncover:\n  image: \"https://images.unsplash.com/photo-1557682250-33bd709cbe85?q=80&w=2560\"\n  position:\n    x: 50\n    y: 40\n  overlay:\n    enabled: true\n    type: \"gradient\"\n    opacity: 0.4\n    gradient: \"bottom\"\n  fade:\n    enabled: true\n    height: \"80px\"\n  icon:\n    name: \"✨\"\n---\n\n[HugoBlox Kit](https://hugoblox.com) is designed to give technical content creators a seamless experience. You can focus on the content and the HugoBlox Kit which this template is built upon handles the rest.\n\n**Embed videos, podcasts, code, LaTeX math, and even test students!**\n\nOn this page, you'll find some examples of the types of technical content that can be rendered with Hugo Blox.\n\n## Citation\n\nHere's an example of citing a publication using the cite shortcode:\n\n{{< cite page=\"/publications/preprint\" view=\"citation\" >}}\n\nYou can also use the default view by omitting the view parameter:\n\n{{< cite page=\"/publications/conference-paper\" >}}\n\n## Video\n\nTeach your course by sharing videos with your students. Choose from one of the following approaches:\n\n**Youtube**:\n\n    {{</* youtube D2vj0WcvH5c */>}}\n\n{{< youtube D2vj0WcvH5c >}}\n\n**Bilibili**:\n\n    {{</* bilibili BV1WV4y1r7DF */>}}\n\n\n**Video file**\n\nVideos may be added to a page by either placing them in your `assets/media/` media library or in your [page's folder](https://gohugo.io/content-management/page-bundles/), and then embedding them with the _video_ shortcode:\n\n    {{</* video src=\"my_video.mp4\" controls=\"yes\" */>}}\n\n## Podcast\n\nYou can add a podcast or music to a page by placing the MP3 file in the page's folder or the media library folder and then embedding the audio on your page with the _audio_ shortcode:\n\n    {{</* audio src=\"ambient-piano.mp3\" */>}}\n\nTry it out:\n\n{{< audio src=\"ambient-piano.mp3\" >}}\n\n## Test students\n\nProvide a simple yet fun self-assessment by revealing the solutions to challenges with the `spoiler` shortcode:\n\n```markdown\n{{</* spoiler text=\"👉 Click to view the solution\" */>}}\nYou found me!\n{{</* /spoiler */>}}\n```\n\nrenders as\n\n{{< spoiler text=\"👉 Click to view the solution\" >}} You found me 🎉 {{< /spoiler >}}\n\n## Math\n\nHugoBlox Kit supports a Markdown extension for $\\LaTeX$ math. Enable math by setting the `math: true` option in your page's front matter, or enable math for your entire site by toggling math in your `config/_default/params.yaml` file:\n\n```yaml\nfeatures:\n  math:\n    enable: true\n```\n\nTo render _inline_ or _block_ math, wrap your LaTeX math with `$...$` or `$$...$$`, respectively.\n\nExample **math block**:\n\n```latex\n$$\n\\gamma_{n} = \\frac{ \\left | \\left (\\mathbf x_{n} - \\mathbf x_{n-1} \\right )^T \\left [\\nabla F (\\mathbf x_{n}) - \\nabla F (\\mathbf x_{n-1}) \\right ] \\right |}{\\left \\|\\nabla F(\\mathbf{x}_{n}) - \\nabla F(\\mathbf{x}_{n-1}) \\right \\|^2}\n$$\n```\n\nrenders as\n\n$$\\gamma_{n} = \\frac{ \\left | \\left (\\mathbf x_{n} - \\mathbf x_{n-1} \\right )^T \\left [\\nabla F (\\mathbf x_{n}) - \\nabla F (\\mathbf x_{n-1}) \\right ] \\right |}{\\left \\|\\nabla F(\\mathbf{x}_{n}) - \\nabla F(\\mathbf{x}_{n-1}) \\right \\|^2}$$\n\nExample **inline math** `$\\nabla F(\\mathbf{x}_{n})$` renders as $\\nabla F(\\mathbf{x}_{n})$.\n\nExample **multi-line math** using the math linebreak (`\\\\`):\n\n```latex\n$$f(k;p_{0}^{*}) = \\begin{cases}p_{0}^{*} & \\text{if }k=1, \\\\\n1-p_{0}^{*} & \\text{if }k=0.\\end{cases}$$\n```\n\nrenders as\n\n$$\nf(k;p_{0}^{*}) = \\begin{cases}p_{0}^{*} & \\text{if }k=1, \\\\\n1-p_{0}^{*} & \\text{if }k=0.\\end{cases}\n$$\n\n## Code\n\nHugoBlox Kit utilises Hugo's Markdown extension for highlighting code syntax. The code theme can be selected in the `config/_default/params.yaml` file.\n\n\n    ```python\n    import pandas as pd\n    data = pd.read_csv(\"data.csv\")\n    data.head()\n    ```\n\nrenders as\n\n```python\nimport pandas as pd\ndata = pd.read_csv(\"data.csv\")\ndata.head()\n```\n\n## Inline Images\n\n```go\n{{</* icon name=\"python\" */>}} Python\n```\n\nrenders as\n\n{{< icon name=\"python\" >}} Python\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/academic-cv/content/courses/_index.md",
    "content": "---\ntitle: Courses\nsummary: My courses\ntype: landing\n\ncascade:\n  - target:\n      path: '{/courses/*/**}'\n    type: docs\n    params:\n      show_breadcrumb: true\n\nsections:\n  - block: collection\n    id: courses\n    content:\n      title: Courses\n      filters:\n        tag: Course\n        kinds:\n          - section\n    design:\n      view: article-grid\n      show_read_time: false\n      show_date: false\n      show_read_more: false\n      columns: 1\n---\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/_index.md",
    "content": "---\nlinkTitle: Hugo Blox\ntitle: Learn Hugo Blox in 10 minutes!\ndate: 2025-09-24\ntype: docs\n\ntags:\n  - Hugo Blox\n  - Course\n\ncontent_meta:\n  content_type: 'Course'\n  difficulty: 'Beginner'\n  prerequisites: ['Markdown']\n  trending: false\n---\n\n👋 Welcome to your shiny new site. Ready to learn more?\n\n<!--more-->\n\nThis course provides a brief introduction to creating and editing your site with Hugo Blox. For full documentation, refer to the [Hugo Blox Documentation](https://docs.hugoblox.com/).\n\n## Next\n\n{{< cards >}}\n  {{< card url=\"getting-started\" title=\"Get Started\" icon=\"document-text\" subtitle=\"Setup your new site in just 5 minutes!\" >}}\n{{< /cards >}}\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/getting-started.md",
    "content": "---\ntitle: Getting Started\ndate: 2024-02-17\nweight: 1\ntype: docs\n---\n\n## Quick Start from Template\n\n{{% steps %}}\n\n### Create a site\n\n[Click to choose your starting template](https://hugoblox.com/templates)\n\n### Configure your new site\n\n[Configure your site name, description, and menu.](https://docs.hugoblox.com/tutorial/blog/)\n\n### Add your content\n\n[Edit the homepage and add your documentation pages.](https://docs.hugoblox.com/tutorial/blog/)\n\n### Publish your site\n\nYour site will automatically publish ~1-5 minutes after you commit (save) changes to files in your GitHub repository.\n\n{{% /steps %}}\n\n## Next\n\nLet's customize your new site:\n\n{{< cards >}}\n  {{< card url=\"../guide/project-structure\" title=\"Project Structure\" icon=\"document-duplicate\" >}}\n  {{< card url=\"../guide/configuration\" title=\"Configuration\" icon=\"adjustments-vertical\" >}}\n  {{< card url=\"../guide/formatting\" title=\"Create content\" icon=\"document-duplicate\" >}}\n{{< /cards >}}\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/_index.md",
    "content": "---\ntitle: Guide\nweight: 2\nsidebar:\n  open: true\n---\n\n{{< cards >}}\n  {{< card url=\"formatting\" title=\"Formatting\" icon=\"document-duplicate\" >}}\n  {{< card url=\"project-structure\" title=\"Project Structure\" icon=\"document-duplicate\" >}}\n  {{< card url=\"configuration\" title=\"Configuration\" icon=\"adjustments-vertical\" >}}\n{{< /cards >}}\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/configuration.md",
    "content": "---\ntitle: Configuration\nweight: 2\n---\n\nThe configuration of your site can be found in `config/_default/`.\n\n<!--more-->\n\n## Full Documentation\n\nSee https://docs.hugoblox.com/getting-started/customize/\n\n## Navigation\n\n### Menu\n\nSee https://docs.hugoblox.com/getting-started/customize/#menu-items\n\n## Left Sidebar\n\nLinks are automatically generated from the structure of your content directory. Simply add a folder to nest a page.\n\n### Extra Links\n\nAdditional links can be added under the `sidebar` section of your `config/_default/menus.yaml`:\n\n```yaml\nmenu:\n  sidebar:\n    - name: \"Need help?\"\n      params:\n        type: separator\n      weight: 1\n    - name: \"A page\"\n      pageRef: \"/page-filename-here\"\n      weight: 2\n    - name: \"An external link ↗\"\n      url: \"https://hugoblox.com\"\n      weight: 3\n```\n\n## Right Sidebar\n\nA table of contents is automatically generated from the headings your Markdown file.\n\nIt can optionally be disabled by setting `toc: false` in the front matter of a page:\n\n```yaml\n---\ntitle: My Page\ntoc: false\n---\n```\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/formatting/_index.md",
    "content": "---\ntitle: Formatting\n---\n\nWrite rich, engaging content with Markdown and re-usable Hugo Blox components (shortcodes):\n\n{{< cards >}}\n  {{< card url=\"button\" title=\"Button\" icon=\"cursor-arrow-rays\" >}}\n  {{< card url=\"callout\" title=\"Callout\" icon=\"warning\" >}}\n  {{< card url=\"cards\" title=\"Cards\" icon=\"card\" >}}\n  {{< card url=\"toggle\" title=\"Spoiler\" icon=\"chevron-right\" >}}\n  {{< card url=\"steps\" title=\"Steps\" icon=\"one\" >}}\n{{< /cards >}}\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/formatting/button.md",
    "content": "---\ntitle: Buttons\nlinkTitle: Buttons\n---\n\nA modern, customizable button shortcode with gradient styling, icons, and smart link handling.\n\n<!--more-->\n\n## Basic Usage\n\n{{< button url=\"/contact\" >}}Contact Us{{< /button >}}\n\n{{< button url=\"https://example.com\" new_tab=\"true\" style=\"secondary\" >}}Visit External Site{{< /button >}}\n\nThe above buttons are created with:\n\n```go-html-template\n{{</* button url=\"/contact\" */>}}Contact Us{{</* /button */>}}\n\n{{</* button url=\"https://example.com\" new_tab=\"true\" style=\"secondary\" */>}}Visit External Site{{</* /button */>}}\n```\n\n## Style Variants\n\n### Primary (Default)\n\n{{< button url=\"#\" style=\"primary\" >}}Primary Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"primary\" */>}}Primary Button{{</* /button */>}}\n```\n\n### Secondary\n\n{{< button url=\"#\" style=\"secondary\" >}}Secondary Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"secondary\" */>}}Secondary Button{{</* /button */>}}\n```\n\n### Outline\n\n{{< button url=\"#\" style=\"outline\" >}}Outline Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"outline\" */>}}Outline Button{{</* /button */>}}\n```\n\n### Ghost\n\n{{< button url=\"#\" style=\"ghost\" >}}Ghost Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"ghost\" */>}}Ghost Button{{</* /button */>}}\n```\n\n## Sizes\n\n### Small\n\n{{< button url=\"#\" size=\"sm\" >}}Small Button{{< /button >}}\n\n### Medium (Default)\n\n{{< button url=\"#\" size=\"md\" >}}Medium Button{{< /button >}}\n\n### Large\n\n{{< button url=\"#\" size=\"lg\" >}}Large Button{{< /button >}}\n\n### Extra Large\n\n{{< button url=\"#\" size=\"xl\" >}}Extra Large{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" size=\"sm\" */>}}Small Button{{</* /button */>}}\n{{</* button url=\"#\" size=\"md\" */>}}Medium Button{{</* /button */>}}\n{{</* button url=\"#\" size=\"lg\" */>}}Large Button{{</* /button */>}}\n{{</* button url=\"#\" size=\"xl\" */>}}Extra Large{{</* /button */>}}\n```\n\n## Alignment\n\n### Left (Default)\n\n{{< button url=\"#\" align=\"left\" >}}Left Aligned{{< /button >}}\n\n### Center\n\n{{< button url=\"#\" align=\"center\" >}}Center Aligned{{< /button >}}\n\n### Right\n\n{{< button url=\"#\" align=\"right\" >}}Right Aligned{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" align=\"left\" */>}}Left Aligned{{</* /button */>}}\n{{</* button url=\"#\" align=\"center\" */>}}Center Aligned{{</* /button */>}}\n{{</* button url=\"#\" align=\"right\" */>}}Right Aligned{{</* /button */>}}\n```\n\n## With Icons\n\n### Icon Before Text\n\n{{< button url=\"#\" icon=\"arrow-down-tray\" >}}Download{{< /button >}}\n\n### Icon After Text\n\n{{< button url=\"#\" icon=\"arrow-right\" icon_position=\"right\" >}}Continue{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" icon=\"arrow-down-tray\" */>}}Download{{</* /button */>}}\n{{</* button url=\"#\" icon=\"arrow-right\" icon_position=\"right\" */>}}Continue{{</* /button */>}}\n```\n\n## Rounded Corners\n\n### Small Radius\n\n{{< button url=\"#\" rounded=\"sm\" >}}Small Radius{{< /button >}}\n\n### Medium Radius (Default)\n\n{{< button url=\"#\" rounded=\"md\" >}}Medium Radius{{< /button >}}\n\n### Large Radius\n\n{{< button url=\"#\" rounded=\"lg\" >}}Large Radius{{< /button >}}\n\n### Pill Shape\n\n{{< button url=\"#\" rounded=\"full\" >}}Pill Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" rounded=\"sm\" */>}}Small Radius{{</* /button */>}}\n{{</* button url=\"#\" rounded=\"md\" */>}}Medium Radius{{</* /button */>}}\n{{</* button url=\"#\" rounded=\"lg\" */>}}Large Radius{{</* /button */>}}\n{{</* button url=\"#\" rounded=\"full\" */>}}Pill Button{{</* /button */>}}\n```\n\n## Advanced Examples\n\n### Call-to-Action Button\n\n{{< button url=\"/signup\" style=\"primary\" size=\"lg\" align=\"center\" icon=\"rocket-launch\" >}}Get Started Today{{< /button >}}\n\n```go-html-template\n{{</* button url=\"/signup\" style=\"primary\" size=\"lg\" align=\"center\" icon=\"rocket-launch\" */>}}Get Started Today{{</* /button */>}}\n```\n\n### External Link with New Tab\n\n{{< button url=\"https://github.com/hugo-blox/kit\" new_tab=\"true\" style=\"outline\" icon=\"arrow-top-right-on-square\" icon_position=\"right\" >}}View on GitHub{{< /button >}}\n\n```go-html-template\n{{</* button url=\"https://github.com/hugo-blox/kit\" new_tab=\"true\" style=\"outline\" icon=\"arrow-top-right-on-square\" icon_position=\"right\" */>}}View on GitHub{{</* /button */>}}\n```\n\n### Download Button\n\n{{< button url=\"/files/document.pdf\" style=\"secondary\" icon=\"document-arrow-down\" rounded=\"full\" >}}Download PDF{{< /button >}}\n\n```go-html-template\n{{</* button url=\"/files/document.pdf\" style=\"secondary\" icon=\"document-arrow-down\" rounded=\"full\" */>}}Download PDF{{</* /button */>}}\n```\n\n## Parameters\n\n| Parameter       | Type    | Default       | Description                                                 |\n| --------------- | ------- | ------------- | ----------------------------------------------------------- |\n| `url`           | string  | `#`           | **Required.** Button destination URL (internal or external) |\n| `text`          | string  | Inner content | Button text (overrides shortcode content)                   |\n| `new_tab`       | boolean | `false`       | Whether to open link in new tab                             |\n| `style`         | string  | `primary`     | Button style: `primary`, `secondary`, `outline`, `ghost`    |\n| `size`          | string  | `md`          | Button size: `sm`, `md`, `lg`, `xl`                         |\n| `align`         | string  | `left`        | Button alignment: `left`, `center`, `right`                 |\n| `icon`          | string  | -             | Icon name from [Hero Icons](https://heroicons.com/)         |\n| `icon_position` | string  | `left`        | Icon position: `left`, `right`                              |\n| `rounded`       | string  | `md`          | Border radius: `sm`, `md`, `lg`, `xl`, `full`               |\n| `disabled`      | boolean | `false`       | Whether button should be disabled                           |\n\n## Security Features\n\nThe button shortcode automatically handles security for external links:\n\n- **External links** get `rel=\"noreferrer\"` attribute\n- **External links opening in new tab** get `rel=\"noopener noreferrer\"`\n- **Internal links opening in new tab** get `rel=\"noopener\"`\n\nThis ensures safe navigation while maintaining functionality.\n\n## Accessibility\n\nThe button shortcode includes built-in accessibility features:\n\n- Proper `role=\"button\"` attribute\n- `aria-label` support\n- Keyboard focus indicators\n- High contrast focus rings\n- Disabled state handling\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/formatting/callout.md",
    "content": "---\ntitle: Callouts\nlinkTitle: Callouts\n---\n\nHugo Blox supports GitHub and Obsidian-style Markdown callouts for maximum compatibility and content portability.\n\nCallouts are a useful feature to draw attention to important or related content such as notes, hints, or warnings in your articles.\n\n<!--more-->\n\n## Usage\n\n### Basic Callout Types\n\nHugo Blox supports all 15+ callout types from [Obsidian's documentation](https://help.obsidian.md/callouts):\n\n**Information & Notes:**\n\n```markdown\n> [!NOTE]  \n> This is a note callout with important information that users should know.\n```\n\n> [!NOTE]\n> This is a note callout with important information that users should know.\n\n```markdown\n> [!INFO]\n> Alternative info callout - same styling as NOTE.\n```\n\n> [!INFO]\n> Alternative info callout - same styling as NOTE.\n\n```markdown\n> [!ABSTRACT]\n> Use for abstracts, summaries, or TL;DR sections.\n```\n\n> [!ABSTRACT]\n> Use for abstracts, summaries, or TL;DR sections.\n\n**Actions & Tasks:**\n\n```markdown\n> [!TODO]\n> This is something that needs to be done.\n```\n\n> [!TODO]\n> This is something that needs to be done.\n\n```markdown\n> [!TIP]\n> Here's a helpful tip to make your workflow more efficient!\n```\n\n> [!TIP]\n> Here's a helpful tip to make your workflow more efficient!\n\n```markdown\n> [!SUCCESS]\n> Great job! This operation completed successfully.\n```\n\n> [!SUCCESS]\n> Great job! This operation completed successfully.\n\n**Questions & Interactive:**\n\n```markdown\n> [!QUESTION]\n> What do you think about this approach? Let us know!\n```\n\n> [!QUESTION]\n> What do you think about this approach? Let us know!\n\n```markdown\n> [!EXAMPLE]\n> Here's a practical example of how to implement this feature.\n```\n\n> [!EXAMPLE]\n> Here's a practical example of how to implement this feature.\n\n```markdown\n> [!QUOTE]\n> \"The best way to predict the future is to invent it.\" - Alan Kay\n```\n\n> [!QUOTE]\n> \"The best way to predict the future is to invent it.\" - Alan Kay\n\n**Warnings & Errors:**\n\n```markdown\n> [!WARNING]\n> Be careful! This action might have unexpected consequences.\n```\n\n> [!WARNING]\n> Be careful! This action might have unexpected consequences.\n\n```markdown\n> [!CAUTION]\n> Danger! This operation is irreversible and could cause data loss.\n```\n\n> [!CAUTION]\n> Danger! This operation is irreversible and could cause data loss.\n\n```markdown\n> [!IMPORTANT]\n> This is critical information that users must understand to proceed.\n```\n\n> [!IMPORTANT]\n> This is critical information that users must understand to proceed.\n\n```markdown\n> [!DANGER]\n> This is extremely dangerous - proceed with extreme caution!\n```\n\n> [!DANGER]\n> This is extremely dangerous - proceed with extreme caution!\n\n```markdown\n> [!FAILURE]\n> This operation failed. Check your configuration and try again.\n```\n\n> [!FAILURE]\n> This operation failed. Check your configuration and try again.\n\n```markdown\n> [!BUG]\n> Known issue: This feature doesn't work properly in Safari < 14.\n```\n\n> [!BUG]\n> Known issue: This feature doesn't work properly in Safari < 14.\n\n### Custom Titles\n\nYou can customize the title of any callout:\n\n```markdown\n> [!WARNING]+ Custom Warning Title\n> This warning has a custom title instead of just \"Warning\".\n```\n\n> [!WARNING]+ Custom Warning Title  \n> This warning has a custom title instead of just \"Warning\".\n\n### Legacy Syntax (Deprecated)\n\nThe old shortcode syntax still works but shows a deprecation warning:\n\n```markdown\n{{</* callout note */>}}\nThis still works but is deprecated. Use the Markdown syntax above!\n{{</* /callout */>}}\n```\n\n### CSS Customization\n\nHugo Blox generates callouts with semantic CSS classes and data attributes, making customization easy. Each callout has:\n\n- Base class: `.callout`\n- Type-specific data attribute: `data-callout=\"note\"`\n- Component classes: `.callout-icon`, `.callout-title`, `.callout-content`, `.callout-body`\n\n**Custom CSS Example** (add to your `assets/css/custom.css`):\n\n```css\n/* Customize NOTE callouts */\n.callout[data-callout=\"note\"] {\n  border-left-width: 8px;\n  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);\n}\n\n/* Make SUCCESS callouts pulse */\n.callout[data-callout=\"success\"] {\n  animation: pulse 2s infinite;\n}\n\n/* Custom icon styling */\n.callout-icon svg {\n  transition: transform 0.2s;\n}\n\n.callout:hover .callout-icon svg {\n  transform: scale(1.1);\n}\n\n/* Dark mode overrides */\n@media (prefers-color-scheme: dark) {\n  .callout[data-callout=\"warning\"] {\n    background-color: rgb(92 25 2);\n    border-color: rgb(245 158 11);\n  }\n}\n```\n\nThis approach matches [Obsidian's CSS customization system](https://help.obsidian.md/callouts), ensuring your styles work across platforms.\n\n### Benefits of the New Syntax\n\n- **Portable**: Works with GitHub, Obsidian, and other Markdown editors\n- **Standard**: Uses widely-adopted Markdown callout syntax  \n- **Clean**: No Hugo-specific shortcodes needed\n- **Future-proof**: Supported by the latest Hugo versions (0.132.0+)\n- **Customizable**: Semantic CSS classes and data attributes for easy styling\n- **Complete**: All 15+ Obsidian callout types supported\n- **Multilingual**: Callout titles are automatically translated based on your site's language (and can be customized in the language packs)\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/formatting/cards.md",
    "content": "---\ntitle: Cards\nlinkTitle: Cards\n---\n\nA Hugo extension to create cards. Cards can be shown as links or as plain text.\n\n## Usage\n\n{{< cards >}}\n  {{< card url=\"../\" title=\"Learn Shortcodes\" icon=\"academic-cap\" >}}\n  {{< card url=\"\" title=\"A card without an icon or link\" >}}\n{{< /cards >}}\n\nis rendered by:\n\n```\n{{</* cards */>}}\n  {{</* card url=\"../callout\" title=\"Callout\" icon=\"academic-cap\" */>}}\n  {{</* card url=\"\" title=\"A card without an icon\" */>}}\n{{</* /cards */>}}\n```\n\n## Options\n\n| Parameter  | Description                                                            |\n|------------|------------------------------------------------------------------------|\n| `icon`     | Name of the icon. Defaults to [Hero Icon Pack](https://heroicons.com/) |\n| `title`    | Title heading for the card.                                            |\n| `subtitle` | Subtitle heading (supports Markdown).                                  |\n| `url`      | URL                                                                    |\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/formatting/media.md",
    "content": "---\ntitle: Embed Media\nsummary: Easily embed audio and video media in Hugo sites\ndate: 2023-10-24\n---\n\n[HugoBlox Kit](https://hugoblox.com) is designed to give technical content creators a seamless experience. You can focus on the content and the HugoBlox Kit which this template is built upon handles the rest.\n\n**Embed videos, podcasts, code, LaTeX math, and even test students!**\n\nOn this page, you'll find some examples of the types of technical content that can be rendered with Hugo Blox.\n\n## Video\n\nTeach your course by sharing videos with your students. Choose from one of the following approaches:\n\n{{< youtube D2vj0WcvH5c >}}\n\n**Youtube**:\n\n    {{</* youtube w7Ft2ymGmfc */>}}\n\n**Bilibili**:\n\n    {{</* bilibili id=\"BV1WV4y1r7DF\" */>}}\n\n**Video file**\n\nVideos may be added to a page by either placing them in your `assets/media/` media library or in your [page's folder](https://gohugo.io/content-management/page-bundles/), and then embedding them with the _video_ shortcode:\n\n    {{</* video src=\"my_video.mp4\" controls=\"yes\" */>}}\n\n## Podcast\n\nYou can add a podcast or music to a page by placing the MP3 file in the page's folder or the media library folder and then embedding the audio on your page with the _audio_ shortcode:\n\n    {{</* audio src=\"ambient-piano.mp3\" */>}}\n\nTry it out:\n\n{{< audio src=\"ambient-piano.mp3\" >}}\n\n## Test students\n\nProvide a simple yet fun self-assessment by revealing the solutions to challenges with the `spoiler` shortcode:\n\n```markdown\n{{</* spoiler text=\"👉 Click to view the solution\" */>}}\nYou found me!\n{{</* /spoiler */>}}\n```\n\nrenders as\n\n{{< spoiler text=\"👉 Click to view the solution\" >}} You found me 🎉 {{< /spoiler >}}\n\n## Math\n\nHugoBlox Kit supports a Markdown extension for $\\LaTeX$ math. You can enable this feature by toggling the `math` option in your `config/_default/params.yaml` file.\n\nTo render _inline_ or _block_ math, wrap your LaTeX math with `{{</* math */>}}$...${{</* /math */>}}` or `{{</* math */>}}$$...$${{</* /math */>}}`, respectively.\n\n> [!NOTE]\n> We wrap the LaTeX math in the Hugo Blox _math_ shortcode to prevent Hugo rendering our math as Markdown. This callout now uses the standard Markdown alert syntax!\n\nExample **math block**:\n\n```latex\n{{</* math */>}}\n$$\n\\gamma_{n} = \\frac{ \\left | \\left (\\mathbf x_{n} - \\mathbf x_{n-1} \\right )^T \\left [\\nabla F (\\mathbf x_{n}) - \\nabla F (\\mathbf x_{n-1}) \\right ] \\right |}{\\left \\|\\nabla F(\\mathbf{x}_{n}) - \\nabla F(\\mathbf{x}_{n-1}) \\right \\|^2}\n$$\n{{</* /math */>}}\n```\n\nrenders as\n\n{{< math >}}\n$$\\gamma_{n} = \\frac{ \\left | \\left (\\mathbf x_{n} - \\mathbf x_{n-1} \\right )^T \\left [\\nabla F (\\mathbf x_{n}) - \\nabla F (\\mathbf x_{n-1}) \\right ] \\right |}{\\left \\|\\nabla F(\\mathbf{x}_{n}) - \\nabla F(\\mathbf{x}_{n-1}) \\right \\|^2}$$\n{{< /math >}}\n\nExample **inline math** `{{</* math */>}}$\\nabla F(\\mathbf{x}_{n})${{</* /math */>}}` renders as {{< math >}}$\\nabla F(\\mathbf{x}_{n})${{< /math >}}.\n\nExample **multi-line math** using the math linebreak (`\\\\`):\n\n```latex\n{{</* math */>}}\n$$f(k;p_{0}^{*}) = \\begin{cases}p_{0}^{*} & \\text{if }k=1, \\\\\n1-p_{0}^{*} & \\text{if }k=0.\\end{cases}$$\n{{</* /math */>}}\n```\n\nrenders as\n\n{{< math >}}\n\n$$\nf(k;p_{0}^{*}) = \\begin{cases}p_{0}^{*} & \\text{if }k=1, \\\\\n1-p_{0}^{*} & \\text{if }k=0.\\end{cases}\n$$\n\n{{< /math >}}\n\n## Code\n\nHugoBlox Kit utilises Hugo's Markdown extension for highlighting code syntax. The code theme can be selected in the `config/_default/params.yaml` file.\n\n    ```python\n    import pandas as pd\n    data = pd.read_csv(\"data.csv\")\n    data.head()\n    ```\n\nrenders as\n\n```python\nimport pandas as pd\ndata = pd.read_csv(\"data.csv\")\ndata.head()\n```\n\n## Inline Images\n\n```go\n{{</* icon name=\"python\" */>}} Python\n```\n\nrenders as\n\n{{< icon name=\"python\" >}} Python\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/formatting/steps.md",
    "content": "---\ntitle: Steps\nlinkTitle: Steps\n---\n\nDisplay a series of steps, such as for a tutorial.\n\n## Example\n\n{{% steps %}}\n\n### Step 1\n\nThe first step here...\n\n### Step 2\n\nThe second step here...\n\n### Step 3\n\nThe third step here...\n\n{{% /steps %}}\n\n\n## Usage\n\nUse the Markdown level-3 headings to represent step titles within the `steps` shortcode:\n\n```\n{{%/* steps */%}}\n\n### Step 1\n\nThe first step here...\n\n### Step 2\n\nThe second step here...\n\n### Step 3\n\nThe third step here...\n\n{{%/* /steps */%}}\n```\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/formatting/toggle.md",
    "content": "---\ntitle: Spoilers\n---\n\nA Hugo shortcode to toggle collapsible content.\n\n<!--more-->\n\n## Example\n\n{{< spoiler text=\"Click to view the spoiler\" >}}\nYou found me!\n\nMarkdown is **supported**.\n{{< /spoiler >}}\n\n## Usage\n\n````\n{{</* spoiler text=\"Click to view the spoiler\" */>}}\n\nThis is the content of the details.\n\nMarkdown is **supported**.\n\n{{</* /spoiler */>}}\n````\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/guide/project-structure.md",
    "content": "---\ntitle: Project Structure\nweight: 1\n---\n\n## Folder Structure\n\nThere are **4 main folders for Hugo-based sites**:\n\n- `content/` for your Markdown-formatted content files (homepage, etc.)\n  - `_index.md` the homepage (**Hugo requires that the homepage and archive pages have an underscore prefix**)\n- `assets/`\n  - `media/` for your media files (images, videos)\n    - `icons/custom/` upload any custom SVG icons you want to use\n- `config/_default/` for your site configuration files\n  - `hugo.yaml` to configure Hugo (site title, URL, Hugo options, setup per-folder page features)\n  - `module.yaml` to install or uninstall Hugo themes and plugins\n  - `params.yaml` to configure Hugo Blox options (SEO, analytics, site features)\n  - `menus.yaml` to configure your menu links (if the menu is enabled in `params.yaml`)\n  - `languages.yaml` to configure your site's language or to set language-specific options in a multilingual site\n- `static/uploads/` for any files you want visitors to download, such as a PDF\n- `go.mod` sets the version of Hugo themes/plugins which your site uses\n\n\n## Hugo File Naming Convention\n\nHugo gives us two options to name standard page files: as `TITLE/index.md` or `TITLE.md` where `TITLE` is your page name.\n\nThe page name should be lowercase and using hyphens (`-`) instead of spaces.\n\nBoth approaches result in the same output, so you can choose your preferred approach to naming and organizing files. A benefit to the folder-based approach is that all your page's files (such as images) are self-contained within the page's folder, so it's more portable if you wish to share the original Markdown page with someone.\n\nThe homepage is a special case as **Hugo requires the homepage and listing pages to be named** `_index.md`.\n\n## Docs Navigation\n\nThe docs navigation is automatically generated based on the content in the `docs/` folder and is sorted alphabetically.\n\nThe order of pages can be changed by adding the `weight` parameter in the front matter of your Markdown files.\n\nIn the example below, the `example.md` page will appear before the `test.md` page as it has a lower `weight`:\n\nPage `example.md`:\n\n```yaml\n---\ntitle: My Example\nweight: 1\n---\n```\n\nPage `test.md`:\n\n```yaml\n---\ntitle: My Test\nweight: 2\n---\n```\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/reference/_index.md",
    "content": "---\nlinkTitle: Reference\ntitle: Reference\n---\n\nThis section covers reference docs.\n\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/reference/customization.md",
    "content": "---\ntitle: Customizing Hugo\nlinkTitle: Customization\nweight: 1\n---\n\nView the full docs at https://docs.hugoblox.com/getting-started/customize/\n"
  },
  {
    "path": "templates/academic-cv/content/courses/hugo-blox/reference/i18n.md",
    "content": "---\ntitle: Internationalization (i18n)\n---\n\nHugo Blox enables you to easily edit the interface text as well as translating your site into multiple languages using Hugo's [multilingual](https://gohugo.io/content-management/multilingual/) feature.\n\n<!--more-->\n\nView the full docs at https://docs.hugoblox.com/reference/language/\n"
  },
  {
    "path": "templates/academic-cv/content/events/_index.md",
    "content": "---\ntitle: Recent & Upcoming Talks\ncms_exclude: true\n#url: talk\n\n# View\nview: card\n\n# Optional cover image (relative to `assets/media/` folder).\nimage:\n  caption: ''\n  filename: ''\n---\n"
  },
  {
    "path": "templates/academic-cv/content/events/example/index.md",
    "content": "---\ntitle: \"Create Beautiful Presentations with Markdown\"\ndate: '2017-01-01T00:00:00Z'\n\nevent_name: HugoBlox Showcase\nevent_url: https://hugoblox.com\n\nlocation: Online & In-Person\naddress:\n  street: 450 Serra Mall\n  city: Stanford\n  region: CA\n  postcode: '94305'\n  country: United States\n\nsummary: Discover how to create stunning, interactive presentations using simple Markdown — no PowerPoint, Keynote, or vendor lock-in required.\nabstract: |\n  Join us to explore HugoBlox's revolutionary Markdown-based slide system. Create beautiful presentations with code syntax highlighting, math equations, animations, and dual-column layouts. Edit your slides in any text editor, version control them with Git, and present them anywhere with just a browser. Experience true presentation freedom.\n\n# Talk start and end times.\nevent_start: '2030-06-01T13:00:00Z'\nevent_end: '2030-06-01T15:00:00Z'\nevent_all_day: false\n\nauthors:\n  - me\n\ntags:\n  - Markdown\n  - Presentations\n  - Open Science\n  - Academic\n\nfeatured: true\n\nimage:\n  caption: 'Presentation freedom with Markdown'\n  focal_point: Right\n\nlinks:\n  - icon: brands/github\n    name: Star on GitHub\n    url: https://github.com/HugoBlox/kit\n  - icon: brands/youtube\n    name: Video Tutorial\n    url: https://www.youtube.com/\n  - icon: book-open\n    name: Documentation\n    url: https://docs.hugoblox.com/guides/slides/\n\n# Link to your Markdown slides\nslides: \"example\"\n\nprojects: []\n---\n\n## 🎯 Why Markdown Slides?\n\n> [!SUCCESS] True Presentation Freedom\n> Unlike PowerPoint or Keynote, your presentations are **future-proof**, **portable**, and completely **under your control**. No proprietary formats, no vendor lock-in, no subscription fees.\n\n### The Problem with Traditional Slides\n\n**PowerPoint & Keynote:**\n- 💸 Expensive licenses or subscriptions\n- 🔒 Proprietary file formats (`.pptx`, `.key`)\n- 💻 Platform-specific (Windows/Mac only)\n- 📦 Large binary files\n- 🚫 Difficult to version control\n- 😰 Lost formatting when sharing\n\n**Google Slides:**\n- ☁️ Requires internet connection\n- 🔐 Data stored on Google's servers\n- 📱 Limited offline editing\n- 🎨 Formatting breaks when exporting\n- 🔗 Dependency on Google's platform\n\n### The Hugo Blox Solution\n\n> [!TIP] **Markdown Changes Everything**\n> Write your presentations in simple, human-readable Markdown. Edit anywhere, present anywhere, own forever.\n\n---\n\n## ✨ What You Get\n\n### 🎨 Professional Design, Zero Effort\n\n- **15+ Built-in Themes** — Black, white, sky, league, and more\n- **Syntax Highlighting** — Beautiful code blocks with 50+ languages\n- **Math Support** — LaTeX equations render perfectly: $E = mc^2$\n- **Responsive** — Looks great on any screen size\n\n### 📝 Write in Plain Text\n\n````markdown\n## My Slide Title\n\n- Point one\n- Point two\n- Point three\n\n```python\ndef hello():\n    return \"World!\"\n```\n\n---\n````\n\nThat's it! No complex UI, no formatting headaches.\n\n### 🔄 Edit Anywhere, Anytime\n\n> [!IMPORTANT] **Zero Lock-In**\n> Your slides are just Markdown files. Edit them in:\n> - **HugoBlox Studio** — Visual editing with live preview\n> - **VS Code** — With Markdown extensions\n> - **Obsidian** — Note-taking app that speaks Markdown\n> - **Typora** — Minimal distraction writing\n> - **Any text editor** — Even Notepad works!\n\n{{< button url=\"https://docs.hugoblox.com/guides/studio/\" text=\"Try HugoBlox Studio\" icon=\"paint-brush\" style=\"secondary\" size=\"md\" new_tab=\"true\" rounded=\"lg\" />}}\n\n### 🎯 Advanced Features\n\n**Dual Column Layouts:**\n```markdown\n<div style=\"display: flex; gap: 2rem;\">\n  <div style=\"flex: 1;\">Column 1</div>\n  <div style=\"flex: 1;\">Column 2</div>\n</div>\n```\n\n**Fragment Animations:**\n```markdown\n{{</* fragment */>}}Appear on click!{{</* /fragment */>}}\n```\n\n**Speaker Notes:**\n```markdown\nNote: Your private notes here\n(visible in presenter view only)\n```\n\n**Vertical Slide Stacks:**\nNavigate down for sub-topics!\n\n---\n\n## 🚀 Getting Started is Easy\n\n> [!EXAMPLE] **Create Your First Slide Deck in 3 Steps**\n\n### Step 1: Create Your Slides\n\nCreate `content/slides/my-talk/index.md`:\n\n```yaml\n---\ntitle: \"My Amazing Talk\"\ntype: slides\nslides:\n  theme: black\n---\n\n# My Amazing Talk\n### Your Name\n\n---\n\n## Main Points\n\n- Point 1\n- Point 2\n- Point 3\n\n---\n\n## Thank You!\n```\n\n### Step 2: Link to Your Event\n\nIn your event page (`content/events/my-event/index.md`):\n\n```yaml\n---\ntitle: \"My Conference Presentation\"\nslides: \"my-talk\"  # References the slides folder name\n---\n```\n\n### Step 3: Present!\n\nYour slides are automatically:\n- ✅ Embedded on the event page\n- ✅ Available in fullscreen mode (click {{< icon name=\"arrows-expand\" >}} button)\n- ✅ Accessible at a direct URL\n- ✅ Keyboard-navigatable (→ ← keys)\n\n{{< button url=\"https://docs.hugoblox.com/guides/slides/\" text=\"Read Full Documentation\" icon=\"book-open\" style=\"outline\" size=\"md\" align=\"center\" />}}\n\n---\n\n## 💎 Why Academics & Researchers Love It\n\n> [!QUOTE]\n> \"I can finally version control my presentations with Git, collaborate using GitHub, and never worry about formatting breaking again. Game changer for reproducible research!\"\n> — *Dr. Xin Liu, MIT*\n\n### Perfect for Research\n\n- **Version Control** — Track every change with Git\n- **Collaboration** — Use GitHub pull requests for slide reviews\n- **Reproducibility** — Slides are plain text, commit them with your code\n- **Open Science** — Share presentations on GitHub, no barriers\n- **Citations** — Include BibTeX references easily\n- **Jupyter Integration** — Embed notebooks and visualizations\n\n### Perfect for Teaching\n\n- **Reusable Content** — Mix and match slides across courses\n- **Student Contributions** — Students can submit slide PRs\n- **Live Coding** — Syntax highlighting for all languages\n- **Interactive Examples** — Embed interactive visualizations\n- **Accessible** — Keyboard navigation, screen reader friendly\n\n---\n\n## 🎬 See It In Action\n\n> [!NOTE]\n> **Try it now!** The slides embedded above demonstrate all these features:\n> - Code highlighting with Python\n> - Mathematical equations with LaTeX  \n> - Dual column layouts (slides 4-6)\n> - Fragment animations\n> - Multiple themes\n> \n> Click the {{< icon name=\"arrows-expand\" >}} **fullscreen button** (top right) to experience presentation mode!\n\n### Live Features to Try\n\n1. **Navigate**: Use arrow keys (→ ←) or click controls\n2. **Fullscreen**: Click the expand button to go fullscreen\n3. **Speaker Notes**: Press `S` to open presenter view (try it!)\n4. **Overview**: Press `ESC` to see all slides at once\n5. **Search**: Press `/` to search slide content\n6. **Zoom**: `Alt+Click` to zoom into details\n\n{{< button url=\"/slides/example/\" text=\"Open Slides in New Tab\" icon=\"external-link\" style=\"ghost\" new_tab=\"true\" />}}\n\n---\n\n## 🆚 Comparison\n\n| Feature | PowerPoint | Google Slides | **Hugo Blox** |\n|---------|-----------|---------------|---------------|\n| **Cost** | $159.99/year | Free* | **Free Forever** |\n| **Format** | Binary (`.pptx`) | Proprietary | **Plain Markdown** |\n| **Version Control** | ❌ Difficult | ❌ Limited | **✅ Git Native** |\n| **Offline Editing** | ✅ Yes | ⚠️ Limited | **✅ Fully Offline** |\n| **Platform Lock-in** | ⚠️ Microsoft | ⚠️ Google | **✅ None** |\n| **Code Highlighting** | ⚠️ Basic | ⚠️ Limited | **✅ 50+ Languages** |\n| **Math Equations** | ⚠️ Clunky | ⚠️ Basic | **✅ Full LaTeX** |\n| **Portability** | ❌ Poor | ❌ Requires Google | **✅ Works Anywhere** |\n| **Future-Proof** | ❌ Format changes | ⚠️ API changes | **✅ Plain Text Forever** |\n| **Open Source** | ❌ No | ❌ No | **✅ Yes** |\n\n> [!SUCCESS]\n> **Hugo Blox wins on freedom, portability, and long-term sustainability.**\n\n---\n\n## 🛠️ Advanced Capabilities\n\n### Code Blocks with Syntax Highlighting\n\n```python\nimport torch\nimport torch.nn as nn\n\nclass Transformer(nn.Module):\n    def __init__(self, d_model=512, nhead=8):\n        super().__init__()\n        self.attention = nn.MultiheadAttention(d_model, nhead)\n    \n    def forward(self, x):\n        return self.attention(x, x, x)[0]\n```\n\n### Mathematical Equations\n\nDisplay equations with LaTeX:\n\n```latex\n$$\n\\nabla \\times \\vec{E} = -\\frac{\\partial \\vec{B}}{\\partial t}\n$$\n\n$$\n\\int_{-\\infty}^{\\infty} e^{-x^2} dx = \\sqrt{\\pi}\n$$\n```\n\n### Dual Column Layouts\n\nPerfect for before/after comparisons, code + explanation, or image + text:\n\n```markdown\n<div style=\"display: flex; gap: 2rem;\">\n  <div style=\"flex: 1;\">Left content</div>\n  <div style=\"flex: 1;\">Right content</div>\n</div>\n```\n\nSee slides 4-6 in the embedded presentation above for live examples!\n\n---\n\n## 🎓 For Educators: Teach the Future\n\n> [!TIP] **Empower Your Students**\n> Teaching with Hugo Blox means teaching modern, transferable skills:\n> - Markdown (used everywhere: GitHub, Notion, Obsidian)\n> - Version control (essential for careers)\n> - Web technologies (HTML, CSS)\n> - Reproducible science practices\n\n### Course Integration\n\n```markdown\ncourses/\n├── ml-101/\n│   ├── lecture-1/\n│   │   ├── index.md (slides)\n│   │   └── notes.md\n│   ├── lecture-2/\n│   │   └── index.md\n│   └── _index.md\n```\n\nEach lecture gets its own slide deck, all version controlled, all editable by students as PRs.\n\n---\n\n## 🌍 Join the Community\n\n> [!IMPORTANT] **Built by Academics, for Academics**\n> Hugo Blox is used by researchers at:\n> - 🎓 Stanford, MIT, Harvard, Oxford, Cambridge\n> - 🏢 Google Research, Meta AI, OpenAI\n> - 🔬 CERN, NASA, NIH\n> - 🌐 Thousands of universities worldwide\n\n{{< button url=\"https://github.com/HugoBlox/kit\" text=\"Star on GitHub\" icon=\"brands/github\" style=\"primary\" size=\"lg\" align=\"center\" rounded=\"full\" />}}\n\n### Get Help & Connect\n\n- 📚 [Documentation](https://docs.hugoblox.com/guides/slides/)\n- 💬 [Discord Community](https://discord.gg/z8wNYzb)\n- 🐛 [GitHub Issues](https://github.com/HugoBlox/kit/issues)\n- 🐦 [Follow @MakeOwnable](https://twitter.com/MakeOwnable)\n\n---\n\n## 🚀 Ready to Create?\n\n> [!SUCCESS] **Start Building Beautiful Presentations Today**\n> No installation required. No account needed. Just Markdown and your creativity.\n\n{{< button url=\"https://docs.hugoblox.com/start/\" text=\"Get Started Now\" icon=\"rocket-launch\" style=\"primary\" size=\"xl\" align=\"center\" rounded=\"full\" />}}\n\n<br>\n\n{{< button url=\"https://docs.hugoblox.com/guides/studio/\" text=\"Try HugoBlox Studio\" icon=\"paint-brush\" style=\"secondary\" size=\"lg\" align=\"center\" rounded=\"lg\" />}}\n\n---\n\n## 📖 Additional Resources\n\n### Templates & Examples\n\n- [Academic Slides Template](https://github.com/HugoBlox/theme-academic-cv)\n\n<!--\n- [Conference Talk Template](https://github.com/HugoBlox/starter-presentation)\n- [Course Lecture Template](https://github.com/HugoBlox/starter-course)\n\n\n### Tutorials\n\n- [Creating Your First Slide Deck](https://docs.hugoblox.com/tutorial/slides/)\n- [Advanced Slide Layouts](https://docs.hugoblox.com/reference/slides/)\n- [Customizing Themes](https://docs.hugoblox.com/customization/)\n- [Using HugoBlox Studio](https://docs.hugoblox.com/studio/)\n-->\n\n### Tips & Tricks\n\n> [!TIP] **Pro Tips for Better Presentations**\n> 1. Keep slides simple — one idea per slide\n> 2. Use dual columns for comparisons\n> 3. Add speaker notes with `Note:` prefix\n> 4. Test presenter view before your talk\n> 5. Use fragments to control pacing\n> 6. Version control your slides with Git\n> 7. Share source files for reproducibility\n\n---\n\n**Have questions?** Check out the [FAQ](https://docs.hugoblox.com/guides/slides/) or [ask the community](https://discord.gg/z8wNYzb)!\n\n**Want to contribute?** Hugo Blox is open source! [Contributions welcome](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md).\n"
  },
  {
    "path": "templates/academic-cv/content/experience.md",
    "content": "---\ntitle: 'Experience'\ndate: 2023-10-24\ntype: landing\n\ndesign:\n  spacing: '5rem'\n\n# Note: `username` refers to the user's folder name in `content/authors/`\n\n# Page sections\nsections:\n  - block: resume-experience\n    content:\n      username: me\n    design:\n      # Hugo date format\n      date_format: 'January 2006'\n      # Education or Experience section first?\n      is_education_first: false\n  - block: resume-skills\n    content:\n      title: Skills & Hobbies\n      username: me\n  - block: resume-awards\n    content:\n      title: Awards\n      username: me\n  - block: resume-languages\n    content:\n      title: Languages\n      username: me\n---\n"
  },
  {
    "path": "templates/academic-cv/content/projects/_index.md",
    "content": "---\ntitle: 'Projects'\ndate: 2024-05-19\ntype: landing\n\ndesign:\n  # Section spacing\n  spacing: '5rem'\n\n# Page sections\nsections:\n  - block: collection\n    content:\n      title: Selected Projects\n      text: I enjoy making things. Here are a selection of projects that I have worked on over the years.\n      filters:\n        folders:\n          - projects\n    design:\n      view: article-grid\n      fill_image: false\n      columns: 3\n      show_date: false\n      show_read_time: false\n      show_read_more: false\n---\n"
  },
  {
    "path": "templates/academic-cv/content/projects/pandas/index.md",
    "content": "---\ntitle: Pandas\ndate: 2023-10-26\nlinks:\n  - type: site\n    url: https://github.com/pandas-dev/pandas\ntags:\n  - Hugo\n  - HugoBlox\n  - Markdown\n---\n\nFlexible and powerful data analysis / manipulation library for Python, providing labeled data structures.\n\n<!--more-->\n"
  },
  {
    "path": "templates/academic-cv/content/projects/pytorch/index.md",
    "content": "---\ntitle: PyTorch\ndate: 2023-10-26\nlinks:\n  - type: site\n    url: https://github.com/pytorch/pytorch\ntags:\n  - Hugo\n  - HugoBlox\n  - Markdown\n---\n\nPyTorch is a Python package that provides tensor computation (like NumPy) with strong GPU acceleration.\n\n<!--more-->\n"
  },
  {
    "path": "templates/academic-cv/content/projects/scikit/index.md",
    "content": "---\ntitle: scikit-learn\ndate: 2023-10-26\nlinks:\n  - type: site\n    url: https://github.com/scikit-learn/scikit-learn\ntags:\n  - Hugo\n  - HugoBlox\n  - Markdown\n---\n\nscikit-learn is a Python module for machine learning built on top of SciPy and is distributed under the 3-Clause BSD license.\n\n<!--more-->\n"
  },
  {
    "path": "templates/academic-cv/content/publications/_index.md",
    "content": "---\ntitle: Publications\ncms_exclude: true\n\n# View.\nview: citation\n\n# Optional header image (relative to `static/media/` folder).\nbanner:\n  caption: ''\n  image: ''\n---\n"
  },
  {
    "path": "templates/academic-cv/content/publications/conference-paper/cite.bib",
    "content": "@inproceedings{example1,\n  title={An example conference paper},\n  author={Bighetti, Nelson and Ford, Robert},\n  booktitle={Source Themes Conference},\n  pages={1--6},\n  year={2013},\n  organization={IEEE}\n}\n"
  },
  {
    "path": "templates/academic-cv/content/publications/conference-paper/index.md",
    "content": "---\ntitle: 'An example conference paper'\n\n# Authors\n# If you created a profile for a user (e.g. the default `me` user), write the username (folder name) here\n# and it will be replaced with their full name and linked to their profile.\nauthors:\n  - me\n  - Robert Ford\n\n# Author notes (optional)\nauthor_notes:\n  - 'Equal contribution'\n  - 'Equal contribution'\n\ndate: '2013-07-01T00:00:00Z'\n\n# Schedule page publish date (NOT publication's date).\npublishDate: '2017-01-01T00:00:00Z'\n\n# Publication type.\n# Accepts a single type but formatted as a YAML list (for Hugo requirements).\n# Enter a publication type from the CSL standard.\npublication_types: ['paper-conference']\n\n# Publication name and optional abbreviated publication name.\npublication: In *HugoBlox Kit Conference*\npublication_short: In *ICW*\n\nabstract: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.\n\n# Summary. An optional shortened abstract.\nsummary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum.\n\ntags:\n  - Large Language Models\n\n# Display this page in the Featured widget?\nfeatured: true\n\n# Standard identifiers for auto-linking\nhugoblox:\n  ids:\n    doi: 10.5555/123456\n\n# Custom links\nlinks:\n  - type: pdf\n    url: \"\"\n  - type: code\n    url: https://github.com/HugoBlox/kit\n  - type: dataset\n    url: https://github.com/HugoBlox/kit\n  - type: slides\n    url: https://www.slideshare.net/\n  - type: source\n    url: https://github.com/HugoBlox/kit\n  - type: video\n    url: https://youtube.com\n\n# Featured image\n# To use, add an image named `featured.jpg/png` to your page's folder.\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/pLCdAaMFLTE)'\n  focal_point: ''\n  preview_only: false\n\n# Associated Projects (optional).\n#   Associate this publication with one or more of your projects.\n#   Simply enter your project's folder or file name without extension.\n#   E.g. `internal-project` references `content/project/internal-project/index.md`.\n#   Otherwise, set `projects: []`.\nprojects:\n  - example\n\n# Slides (optional).\n#   Associate this publication with Markdown slides.\n#   Simply enter your slide deck's filename without extension.\n#   E.g. `slides: \"example\"` references `content/slides/example/index.md`.\n#   Otherwise, set `slides: \"\"`.\nslides: \"\"\n---\n\n> [!NOTE]\n> Click the _Cite_ button above to demo the feature to enable visitors to import publication metadata into their reference management software.\n\n> [!NOTE]\n> Create your slides in Markdown - click the _Slides_ button to check out the example.\n\nAdd the publication's **full text** or **supplementary notes** here. You can use rich formatting such as including [code, math, and images](https://docs.hugoblox.com/content/writing-markdown-latex/).\n"
  },
  {
    "path": "templates/academic-cv/content/publications/journal-article/cite.bib",
    "content": "@article{example2,\n  title = {An example journal article},\n  author={Bighetti, Nelson and Ford, Robert},\n  journal = {Journal of Source Themes},\n  year    = 2015,\n  volume  = 1,\n  number  = 1\n}\n"
  },
  {
    "path": "templates/academic-cv/content/publications/journal-article/index.md",
    "content": "---\ntitle: \"An example journal article\"\nauthors:\n- me\n- Robert Ford\nauthor_notes:\n- \"Equal contribution\"\n- \"Equal contribution\"\ndate: \"2015-09-01T00:00:00Z\"\n\n# Schedule page publish date (NOT publication's date).\npublishDate: \"2017-01-01T00:00:00Z\"\n\n# Publication type.\n# Accepts a single type but formatted as a YAML list (for Hugo requirements).\n# Enter a publication type from the CSL standard.\npublication_types: [\"article-journal\"]\n\n# Publication name and optional abbreviated publication name.\npublication: \"*Journal of Source Themes, 1*(1)\"\npublication_short: \"\"\n\nabstract: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.\n\n# Summary. An optional shortened abstract.\nsummary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum.\n\ntags:\n- Source Themes\nfeatured: false\n\nhugoblox:\n  ids:\n    arxiv: 1512.04133v1\n\nlinks:\n  - type: pdf\n    url: http://arxiv.org/pdf/1512.04133v1\n  - type: code\n    url: https://github.com/HugoBlox/kit\n  - type: dataset\n    url: \"\"\n  - type: poster\n    url: \"\"\n  - type: project\n    url: \"\"\n  - type: slides\n    url: https://www.slideshare.net/\n  - type: source\n    url: \"\"\n  - type: video\n    url: \"\"\n\n# Featured image\n# To use, add an image named `featured.jpg/png` to your page's folder. \nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/jdD8gXaTZsc)'\n  focal_point: \"\"\n  preview_only: false\n\n# Associated Projects (optional).\n#   Associate this publication with one or more of your projects.\n#   Simply enter your project's folder or file name without extension.\n#   E.g. `internal-project` references `content/project/internal-project/index.md`.\n#   Otherwise, set `projects: []`.\nprojects: []\n\n# Slides (optional).\n#   Associate this publication with Markdown slides.\n#   Simply enter your slide deck's filename without extension.\n#   E.g. `slides: \"example\"` references `content/slides/example/index.md`.\n#   Otherwise, set `slides: \"\"`.\nslides: \"\"\n---\n\n> [!NOTE]\n> Click the *Cite* button above to demo the feature to enable visitors to import publication metadata into their reference management software.\n\n> [!NOTE]\n> Create your slides in Markdown - click the *Slides* button to check out the example.\n\nAdd the publication's **full text** or **supplementary notes** here. You can use rich formatting such as including [code, math, and images](https://docs.hugoblox.com/content/writing-markdown-latex/).\n"
  },
  {
    "path": "templates/academic-cv/content/publications/preprint/index.md",
    "content": "---\ntitle: \"An example preprint / working paper\"\nauthors:\n- me\ndate: \"2019-04-07T00:00:00Z\"\n\n# Schedule page publish date (NOT publication's date).\npublishDate: \"2017-01-01T00:00:00Z\"\n\n# Publication type.\n# Accepts a single type but formatted as a YAML list (for Hugo requirements).\n# Enter a publication type from the CSL standard.\npublication_types: [\"article\"]\n\n# Publication name and optional abbreviated publication name.\npublication: \"\"\npublication_short: \"\"\n\nabstract: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.\n\n# Summary. An optional shortened abstract.\nsummary: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum.\n\ntags:\n- Large Language Models\n\nfeatured: true\n\nhugoblox:\n  ids:\n    arxiv: 1512.04133v1\n\nlinks:\n- type: preprint\n  provider: arxiv\n  id: 1512.04133v1\n- type: code\n  url: https://github.com/HugoBlox/kit\n- type: slides\n  url: https://www.slideshare.net/\n- type: dataset\n  url: \"#\"\n- type: poster\n  url: \"#\"\n- type: source\n  url: \"#\"\n- type: video\n  url: https://youtube.com\n- type: custom\n  label: Custom Link\n  url: http://example.org\n\n# Featured image\n# To use, add an image named `featured.jpg/png` to your page's folder. \nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/s9CC2SKySJM)'\n  focal_point: \"\"\n  preview_only: false\n\n# Associated Projects (optional).\n#   Associate this publication with one or more of your projects.\n#   Simply enter your project's folder or file name without extension.\n#   E.g. `internal-project` references `content/project/internal-project/index.md`.\n#   Otherwise, set `projects: []`.\nprojects:\n- internal-project\n\n# Slides (optional).\n#   Associate this publication with Markdown slides.\n#   Simply enter your slide deck's filename without extension.\n#   E.g. `slides: \"example\"` references `content/slides/example/index.md`.\n#   Otherwise, set `slides: \"\"`.\nslides: \"\"\n---\n\nThis work is driven by the results in my [previous paper](/publications/conference-paper/) on LLMs.\n\n> [!NOTE]\n> Create your slides in Markdown - click the *Slides* button to check out the example.\n\nAdd the publication's **full text** or **supplementary notes** here. You can use rich formatting such as including [code, math, and images](https://docs.hugoblox.com/content/writing-markdown-latex/).\n"
  },
  {
    "path": "templates/academic-cv/content/slides/example/index.md",
    "content": "---\ntitle: \"Example Talk: Recent Work\"\ndate: 2024-01-01\n# `type: slides` is inferred from folder, but can be set explicitly:\ntype: slides\nsummary: \"A quick tour of recent research highlights: multimodal LLMs, efficient training, and responsible AI.\"\nslides:\n  theme: black  # Options: black, white, league, beige, sky, night, serif, simple, solarized\n  highlight_style: dracula  # Code syntax highlighting theme\n  diagram: true  # Enable Mermaid diagrams for flowcharts, etc.\n  reveal_options:\n    controls: true      # Show navigation arrows\n    progress: true      # Show progress bar\n    slideNumber: true   # Show slide numbers\n    hash: true          # Update URL when navigating slides\n\n  # BRANDING: Add logo, title overlay, and footer to your presentation\n  # All settings are optional - remove any you don't need\n  branding:\n    # LOGO: Display your organization's logo\n    logo:\n      filename: \"slides-logo.svg\"   # File in assets/media/ folder (SVG recommended for any theme)\n      position: \"top-right\"         # Options: top-left, top-right, bottom-left, bottom-right\n      width: \"50px\"                 # Logo width (height scales automatically)\n      # margin: \"20px\"              # Distance from edge (optional, default: 20px)\n    \n    # TITLE OVERLAY: Show presentation title on every slide\n    title:\n      show: true                    # Set to false to hide\n      position: \"bottom-left\"       # Options: top-left, top-right, bottom-left, bottom-right\n      # text: \"Short Title\"         # Optional: override the page title with custom text\n      # margin: \"20px\"              # Distance from edge (optional)\n    \n    # AUTHOR OVERLAY: Show author name on every slide\n    # author:\n    #   show: true\n    #   position: \"bottom-right\"\n    \n    # FOOTER TEXT: Display copyright, conference name, etc.\n    footer:\n      text: \"© 2026 HugoBlox\"       # Supports Markdown (e.g., links)\n      position: \"bottom-center\"     # Options: top-left, top-right, bottom-left, bottom-right, bottom-center\n---\n\n\n<!-- no-branding -->\n# Example Talk\n### Dr. Alex Johnson · Meta AI\n\n---\n\n## Research Overview\n\n- Multimodal LLMs\n- Efficient training\n- Responsible AI\n\n---\n\n## Code & Math\n\n```python\ndef score(x: int) -> int:\n    return x * x\n```\n\n$$\nE = mc^2\n$$\n\n---\n\n## Dual Column Layout\n\n<div class=\"r-hstack\">\n\n<div style=\"flex: 1; padding-right: 1rem;\">\n\n### Left Column\n\n- Point A\n- Point B  \n- Point C\n\n</div>\n\n<div style=\"flex: 1; padding-left: 1rem;\">\n\n### Right Column\n\n- Detail 1\n- Detail 2\n- Detail 3\n\n</div>\n\n</div>\n\n---\n\n<!-- Alternative: Asymmetric columns -->\n\n<div style=\"display: flex; gap: 2rem;\">\n\n<div style=\"flex: 2;\">\n\n### Main Content (2/3 width)\n\nThis column takes up twice the space of the right column.\n\n```python\ndef example():\n    return \"code works too\"\n```\n\n</div>\n\n<div style=\"flex: 1;\">\n\n### Sidebar (1/3 width)\n\n> **Note**  \n> Key points in smaller column\n\n</div>\n\n</div>\n\n---\n\n## Image + Text Layout\n\n<div class=\"r-hstack\" style=\"align-items: center;\">\n\n<div style=\"flex: 1;\">\n\n![](https://images.unsplash.com/photo-1708011271954-c0d2b3155ded?w=400&dpr=2&h=400&auto=format&fit=crop&q=60&ixid=M3wxMjA3fDB8MXxzZWFyY2h8MTh8fG1hdGhlbWF0aWNzfGVufDB8fHx8MTc2NTYzNTEzMHww&ixlib=rb-4.1.0)\n\n</div>\n\n<div style=\"flex: 1; padding-left: 2rem;\">\n\n### Results\n\n- 95% accuracy\n- 10x faster inference\n- Lower memory usage\n\n{{< fragment >}}**Breakthrough!**{{< /fragment >}}\n\n</div>\n\n</div>\n\n---\n\n## Speaker Notes\n\nPress **S** to open presenter view with notes!\n\nThis slide has hidden speaker notes below.\n\nNote:\n- This is a **speaker note** (only visible in presenter view)\n- Press `S` key to open presenter console\n- Perfect for remembering key talking points\n- Can include reminders, timing, references\n- Supports **Markdown** formatting too!\n\n---\n\n## Progressive Reveals\n\nContent appears step-by-step:\n\n{{< fragment >}}First point appears{{< /fragment >}}\n\n{{< fragment >}}Then the second point{{< /fragment >}}\n\n{{< fragment >}}Finally the conclusion{{< /fragment >}}\n\n{{< fragment class=\"highlight-red\" >}}This one can be **highlighted**!{{< /fragment >}}\n\nNote:\nUse fragments to control pacing and maintain audience attention. Each fragment appears on click.\n\n---\n\n## Diagrams with Mermaid\n\n```mermaid\ngraph LR\n    A[Research Question] --> B{Hypothesis}\n    B -->|Valid| C[Experiment]\n    B -->|Invalid| D[Revise]\n    C --> E[Analyze Data]\n    E --> F{Significant?}\n    F -->|Yes| G[Publish]\n    F -->|No| D\n```\n\nPerfect for: Workflows, architectures, processes\n\nNote:\nMermaid diagrams are created from simple text. They're version-controllable and edit anywhere!\n\n---\n\n## Research Results\n\n| Model | Accuracy | Speed | Memory |\n|-------|----------|-------|--------|\n| Baseline | 87.3% | 1.0x | 2GB |\n| Ours (v1) | 92.1% | 1.5x | 1.8GB |\n| **Ours (v2)** | **95.8%** | **2.3x** | **1.2GB** |\n\n> **Key Finding:** 8.5% improvement over baseline with 40% memory reduction\n\nNote:\nTables are perfect for comparative results. Markdown tables are simple and version-control friendly.\n\n---\n\n{{< slide background-color=\"#1e3a8a\" >}}\n\n## Custom Backgrounds\n\nThis slide has a **blue background**!\n\nYou can customize:\n- Background colors\n- Background images\n- Gradients\n- Videos (yes, really!)\n\nUse `{{</* slide background-color=\"#hex\" */>}}`\n\n---\n\n## Vertical Navigation\n\n**There's more content below! ⬇️**\n\nPress the **Down Arrow** to see substeps.\n\nNote:\nThis demonstrates Reveal.js's vertical slide feature. Great for optional details or deep dives.\n\n---\n\n{{< slide id=\"substep-1\" >}}\n\n### Substep 1: Details\n\nThis is additional content in a vertical stack.\n\nNavigate down for more, or right to skip to next topic →\n\n---\n\n{{< slide id=\"substep-2\" >}}\n\n### Substep 2: More Details\n\nEven more detailed information.\n\nPress **Up Arrow** to go back, or **Right Arrow** to continue.\n\n---\n\n## Citations & Quotes\n\n> \"The best way to predict the future is to invent it.\"\n> \n> — Alan Kay\n\nOr reference research:\n\n> Recent work by Smith et al. (2024) demonstrates that Markdown-based slides improve reproducibility by 78% compared to proprietary formats[^1].\n\n[^1]: Smith, J. et al. (2024). *Open Science Presentations*. Nature Methods.\n\n---\n\n## Media: YouTube Videos\n\n{{< youtube dQw4w9WgXcQ >}}\n\nNote:\nEmbed YouTube videos with just the video ID. Perfect for demos, tutorials, or interviews.\n\n---\n\n## Media: All Options\n\nEmbed various media types with simple shortcodes:\n\n- **YouTube**: `{{</* youtube VIDEO_ID */>}}`\n- **Bilibili**: `{{</* bilibili id=\"BV1...\" */>}}`\n- **Local videos**: `{{</* video src=\"file.mp4\" controls=\"yes\" */>}}`\n- **Audio**: `{{</* audio src=\"file.mp3\" */>}}`\n\nPerfect for demos, interviews, tutorials, or podcasts!\n\nNote:\nAll media types work seamlessly in slides. Just use the appropriate shortcode.\n\n---\n\n## Interactive Elements\n\nTry these keyboard shortcuts:\n\n- `→` `←` : Navigate slides\n- `↓` `↑` : Vertical navigation  \n- `S` : Speaker notes\n- `F` : Fullscreen\n- `O` : Overview mode\n- `/` : Search\n- `ESC` : Exit modes\n\n---\n<!-- hide -->\n## Hidden Slide Demo (Inline Comment)\n\nThis slide is hidden using the `<!-- hide -->` comment method.\n\nPerfect for:\n- Speaker-only content\n- Backup slides\n- Work-in-progress content\n\nNote:\nThis slide won't appear in the presentation but remains in source for reference.\n\n---\n\n## Thanks\n\n### Questions?\n\n- 🌐 Website: [hugoblox.com](https://hugoblox.com)\n- 🐦 X/Twitter: [@MakeOwnable](https://twitter.com/MakeOwnable)\n- 💬 Discord: [Join Community](https://discord.gg/z8wNYzb)\n- ⭐ GitHub: [Star us!](https://github.com/HugoBlox/kit)\n\n**All slides created with Markdown** • No vendor lock-in • Edit anywhere\n\nNote:\nThank you for your attention! Feel free to reach out with questions or contributions.\n\n---\n\n## 🎨 Branding Your Slides\n\nAdd your identity to every slide with simple configuration!\n\n**What you can add:**\n\n| Element | Position Options |\n|---------|-----------------|\n| Logo | top-left, top-right, bottom-left, bottom-right |\n| Title | Same as above |\n| Author | Same as above |\n| Footer Text | Same + bottom-center |\n\nEdit the `branding:` section in your slide's front matter (top of file).\n\n---\n\n## 📁 Adding Your Logo\n\n1. Place your logo in `assets/media/` folder\n2. Use SVG format for best results (auto-adapts to any theme!)\n3. Add to front matter:\n\n```yaml\nbranding:\n  logo:\n    filename: \"your-logo.svg\"  # Must be in assets/media/\n    position: \"top-right\"\n    width: \"60px\"\n```\n\n**Tip:** SVGs with `fill=\"currentColor\"` automatically match theme colors!\n\n---\n\n## 📝 Title & Author Overlays\n\nShow presentation title and/or author on every slide:\n\n```yaml\nbranding:\n  title:\n    show: true\n    position: \"bottom-left\"\n    text: \"Short Title\"  # Optional: override long page title\n  \n  author:\n    show: true\n    position: \"bottom-right\"\n```\n\nAuthor is auto-detected from page front matter (`author:` or `authors:`).\n\n---\n\n## 📄 Footer Text\n\nAdd copyright, conference name, or any persistent text:\n\n```yaml\nbranding:\n  footer:\n    text: \"© 2024 Your Name · ICML 2024\"\n    position: \"bottom-center\"\n```\n\n**Tip:** Supports Markdown! Use `[Link](url)` for clickable links.\n\n---\n\n<!-- no-branding -->\n\n## 🔇 Hiding Branding Per-Slide\n\nSometimes you want a clean slide (title slides, full-screen images).\n\nAdd this comment at the **start** of your slide content:\n\n```markdown\n<!-- no-branding -->\n## My Clean Slide\n\nContent here...\n```\n\n☝️ **This slide uses `<!-- no-branding -->`** — notice no logo or overlays!\n\n---\n\n<!-- no-header -->\n\n## 🔇 Selective Hiding\n\nHide just the header (logo + title):\n\n```markdown\n<!-- no-header -->\n```\n\nOr just the footer (author + footer text):\n\n```markdown\n<!-- no-footer -->\n```\n\n☝️ **This slide uses `<!-- no-header -->`** — footer still visible below!\n\n---\n\n<!-- no-footer -->\n\n## ✅ Quick Reference\n\n| Comment | Hides |\n|---------|-------|\n| `<!-- no-branding -->` | Everything (logo, title, author, footer) |\n| `<!-- no-header -->` | Logo + Title overlay |\n| `<!-- no-footer -->` | Author + Footer text |\n\n☝️ **This slide uses `<!-- no-footer -->`** — logo still visible above!\n\n---\n\n## 🚀 Get Started\n\n1. Copy this example's front matter as a starting point\n2. Replace logo with yours in `assets/media/`\n3. Customize positions and text\n4. Use `<!-- no-branding -->` for special slides\n\n**Pro tip:** Set site-wide defaults in `config/_default/params.yaml` under `slides.branding`!\n\n"
  },
  {
    "path": "templates/academic-cv/data/authors/me.yaml",
    "content": "schema: hugoblox/author/v1\nslug: me\nis_owner: true\nname:\n  display: Dr. Alex Johnson\n  given: Alex\n  family: Johnson\n  alternate: ''  # Example: 王伟\n  pronunciation: ''  # Example: Wáng Wěi\n  pronouns: he/him\npostnominals:\n  - PhD\n  - MIEEE\nstatus:\n  icon: \"☕️\"\nrole: Senior AI Research Scientist\nbio: |\n  Alex Johnson is a Senior AI Research Scientist at Meta AI. His research\n  has been published in top conferences like NeurIPS and ICML, with over\n  10,000 citations. Alex is passionate about pushing the boundaries of AI\n  while ensuring ethical development.\n\naffiliations:\n  - name: Meta AI\n    url: https://ai.meta.com/\n\nlinks:\n  - icon: at-symbol\n    url: mailto:alex.johnson@example.com\n    label: E-mail Me\n  - icon: brands/x\n    url: https://x.com/example\n  - icon: brands/github\n    url: https://github.com/example\n  - icon: brands/linkedin\n    url: https://www.linkedin.com/in/example/\n  - icon: academicons/google-scholar\n    url: https://scholar.google.com/citations?user=example\n  - icon: academicons/orcid\n    url: https://orcid.org/0000-0002-1825-0097\n\ninterests:\n  - Large Language Models\n  - Computer Vision\n  - Reinforcement Learning\n  - AI Ethics\n\neducation:\n  - degree: PhD Computer Science\n    institution: Stanford University\n    start: 2015-09-01\n    end: 2019-06-30\n    summary: |\n      Thesis on scaling laws for neural language models. Published 5 papers in NeurIPS and ICML.\n    button:\n      text: Download dissertation\n      url: /resume.pdf\n      icon: hero/arrow-down-tray\n  - degree: MS Computer Science\n    institution: Carnegie Mellon University\n    start: 2013-09-01\n    end: 2015-05-31\n  - degree: BS Computer Science\n    institution: MIT\n    start: 2009-09-01\n    end: 2013-05-31\n\nexperience:\n  - role: Senior AI Research Scientist\n    org: Meta AI\n    start: 2020-01-01\n    summary: |\n      Leading research on multimodal AI systems. Contributed to Llama 2 and other open-source models.\n    button:\n      text: View portfolio\n      url: /\n      icon: hero/arrow-down-tray\n  - role: AI Research Intern\n    org: OpenAI\n    start: 2019-06-01\n    end: 2019-12-31\n    summary: |\n      Worked on GPT-3 scaling. Co-authored paper on prompt engineering.\n\nskills:\n  - name: Technical Skills\n    items:\n      - label: Python\n        level: 5\n      - label: Machine Learning\n        level: 5\n      - label: Cloud Computing\n        level: 4\n  - name: Research & Communication\n    items:\n      - label: Academic Writing\n        level: 5\n      - label: Conference Presentations\n        level: 4\n      - label: Grant Proposals\n        level: 4\n\nlanguages:\n  - name: English\n    level: 5\n    label: Native\n  - name: Spanish\n    level: 4\n    label: Fluent\n\nawards:\n  - title: Best Paper Award\n    awarder: NeurIPS\n    date: \"2022-12-01\"\n    summary: Awarded for groundbreaking work on efficient training of large models.\n    icon: hero/trophy\n"
  },
  {
    "path": "templates/academic-cv/go.mod",
    "content": "module github.com/HugoBlox/kit/templates/academic-cv\n\ngo 1.19\n\nrequire (\n\tgithub.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652\n\tgithub.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c\n\tgithub.com/HugoBlox/kit/modules/slides v0.0.0-20260219151239-9965378d1853\n)\n"
  },
  {
    "path": "templates/academic-cv/hugoblox.yaml",
    "content": "build:\n  hugo_version: '0.156.0'\ndeploy:\n  # Deployment target: github-pages, netlify, vercel, cloudflare, or none\n  host: 'github-pages'\ntemplate:\n  id: \"academic-cv\"\n  name: \"Academic CV\"\n"
  },
  {
    "path": "templates/academic-cv/layouts/_partials/hooks/head-end/github-button.html",
    "content": "<script async defer src=\"https://buttons.github.io/buttons.js\"></script>\n"
  },
  {
    "path": "templates/academic-cv/netlify.toml",
    "content": "[build]\n  command = \"\"\"\n    set -e\n    echo \"=== Starting Blog build process ===\"\n    echo \"Node version: $(node --version)\"\n    echo \"pnpm version: $(pnpm --version)\"\n    echo \"Hugo version: $(hugo version)\"\n    echo \"Go version: $(go version || echo 'Go not available')\"\n    \n    echo \"=== Installing dependencies ===\"\n    pnpm install --verbose --no-frozen-lockfile\n    \n    echo \"=== Running Hugo build ===\"\n    hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings\n    \n    echo \"=== Running Pagefind indexing ===\"\n    pnpm run pagefind\n    \n    echo \"=== Build completed successfully ===\"\n  \"\"\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.156.0\"\n  GO_VERSION = \"1.21.5\"\n  NODE_VERSION = \"22\"\n  # Netlify runs an implicit install step; ensure it never enforces frozen lockfiles\n  PNPM_FLAGS = \"--no-frozen-lockfile\"\n  HUGO_ENABLEGITINFO = \"true\"\n  HUGO_LOG_I18N_WARNINGS = \"true\"\n  HUGO_LOG_WARNINGS = \"true\"\n  FORCE_COLOR = \"1\"\n  PNPM_LOG_LEVEL = \"debug\"\n\n[context.production.environment]\n  HUGO_ENV = \"production\"\n\n[context.deploy-preview]\n  command = \"\"\"\n    set -e\n    echo \"=== Deploy Preview Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[context.branch-deploy]\n  command = \"\"\"\n    set -e\n    echo \"=== Branch Deploy Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[[plugins]]\n  package = \"netlify-plugin-hugo-cache-resources\"\n  [plugins.inputs]\n    debug = true\n"
  },
  {
    "path": "templates/academic-cv/package.json",
    "content": "{\n  \"name\": \"hugo-blox-academic-cv-starter\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"description\": \"Academic CV starter template for Hugo Blox with Tailwind CSS v4\",\n  \"scripts\": {\n    \"dev\": \"hugo server --disableFastRender\",\n    \"build\": \"hugo --minify && pnpm run pagefind\",\n    \"pagefind\": \"pagefind --site public\"\n  },\n  \"dependencies\": {\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.10\",\n    \"pagefind\": \"^1.4.0\",\n    \"preact\": \"^10.27.2\",\n    \"tailwindcss\": \"^4.1.12\"\n  }\n}\n"
  },
  {
    "path": "templates/data-science-blog/.devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"HugoBlox Codespace\",\n  \"image\": \"ghcr.io/HugoBlox/hugo-blox-dev:hugo0.156.0\",\n  \"updateContentCommand\": \"pnpm install --frozen-lockfile --prefer-offline\",\n  \"postCreateCommand\": \"pnpm --version && hugo version\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"ownable.ownable\"]\n    }\n  },\n  \"mounts\": [\"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume\"],\n  \"remoteUser\": \"vscode\",\n  \"forwardPorts\": [1313],\n  \"portsAttributes\": {\n    \"1313\": {\n      \"label\": \"Hugo Server\"\n    }\n  }\n}\n"
  },
  {
    "path": "templates/data-science-blog/.github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": "templates/data-science-blog/.github/workflows/build.yml",
    "content": "name: Build\n\nenv:\n  NODE_VERSION: '20'\n\non:\n  # Standalone trigger for PR validation\n  pull_request:\n    branches: ['main']\n  # Reusable workflow trigger - called by deploy.yml\n  workflow_call:\n    outputs:\n      artifact-id:\n        description: 'The ID of the uploaded artifact'\n        value: ${{ jobs.build.outputs.artifact-id }}\n  # Allow manual trigger for testing\n  workflow_dispatch:\n\n# Read-only permissions for security\npermissions:\n  contents: read\n\n# Prevent duplicate builds for the same PR\nconcurrency:\n  group: build-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    outputs:\n      artifact-id: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        # Fetch history for Hugo's .GitInfo and .Lastmod\n        fetch-depth: 0\n\n    - name: Setup Node.js\n      uses: actions/setup-node@v6\n      with:\n        node-version: ${{ env.NODE_VERSION }}\n\n    - name: Setup pnpm\n      if: hashFiles('package.json') != ''\n      uses: pnpm/action-setup@v4\n\n    - name: Get Hugo Version\n      id: hugo-version\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read hugo_version from hugoblox.yaml\n        VERSION=$(yq '.hugo_version // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        \n        # Fallback to a known stable version if not specified\n        DEFAULT_VERSION=\"0.154.5\"\n        VERSION=${VERSION:-$DEFAULT_VERSION}\n        \n        # Validate version format (basic check)\n        if [[ ! \"$VERSION\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then\n          echo \"::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION\"\n          VERSION=\"$DEFAULT_VERSION\"\n        fi\n        \n        echo \"HUGO_VERSION=$VERSION\" >> $GITHUB_ENV\n        echo \"Using Hugo version: $VERSION\"\n\n    - name: Install dependencies\n      run: |\n        # Install Tailwind CLI if package.json exists\n        if [ -f \"package.json\" ]; then\n          echo \"Installing Tailwind dependencies...\"\n          pnpm install --no-frozen-lockfile || npm install\n        fi\n\n    - name: Setup Hugo\n      uses: peaceiris/actions-hugo@v3\n      with:\n        hugo-version: ${{ env.HUGO_VERSION }}\n        extended: true\n\n    # Cache dependencies (Go modules, node_modules) - stable, rarely changes\n    - uses: actions/cache@v4\n      with:\n        path: |\n          /tmp/hugo_cache_runner/\n          node_modules/\n          modules/*/node_modules/\n        key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json',\n          '**/pnpm-lock.yaml') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-deps-\n\n    # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change\n    - uses: actions/cache@v4\n      with:\n        path: resources/\n        key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*',\n          'hugo.yaml', 'package.json') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-resources-\n\n    - name: Build with Hugo\n      env:\n        HUGO_ENVIRONMENT: production\n        HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }}\n      run: |\n        echo \"Hugo Cache Dir: $(hugo config | grep cachedir)\"\n        hugo --minify\n\n    - name: Generate Pagefind search index (if applicable)\n      run: |\n        # Check if site uses Pagefind search\n        if [ -f \"package.json\" ] && grep -q \"pagefind\" package.json; then\n          pnpm run pagefind || npx pagefind --site \"public\"\n        fi\n\n    - name: Upload artifact\n      id: upload\n      uses: actions/upload-pages-artifact@v4\n      with:\n        path: ./public\n"
  },
  {
    "path": "templates/data-science-blog/.github/workflows/deploy.yml",
    "content": "name: Deploy website to GitHub Pages\n\non:\n  # Trigger the workflow every time you push to the `main` branch\n  push:\n    branches: ['main']\n  # Allows you to run this workflow manually from the Actions tab on GitHub\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: 'pages'\n  cancel-in-progress: false\n\njobs:\n  # Check deployment configuration\n  config:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    outputs:\n      deploy-host: ${{ steps.check.outputs.host }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        sparse-checkout: hugoblox.yaml\n        sparse-checkout-cone-mode: false\n\n    - name: Check deploy host\n      id: check\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read deploy.host from hugoblox.yaml, default to github-pages\n        HOST=$(yq '.deploy.host // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        HOST=${HOST:-github-pages}\n        \n        # Validate known hosts\n        if [[ ! \"$HOST\" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then\n          echo \"::warning::Unknown deploy host '$HOST', defaulting to github-pages\"\n          HOST=\"github-pages\"\n        fi\n        \n        echo \"host=$HOST\" >> $GITHUB_OUTPUT\n        echo \"Deployment target: $HOST\"\n\n  # Build website using reusable workflow (always runs for CI)\n  build:\n    needs: config\n    if: github.repository_owner != 'HugoBlox'\n    uses: ./.github/workflows/build.yml\n    secrets: inherit\n\n  # Deploy website to GitHub Pages hosting (only if configured)\n  deploy:\n    needs: [config, build]\n    if: needs.config.outputs.deploy-host == 'github-pages'\n    # Grant GITHUB_TOKEN the permissions required to make a Pages deployment\n    permissions:\n      pages: write # to deploy to Pages\n      id-token: write # to verify the deployment originates from an appropriate source\n    # Deploy to the github-pages environment\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    steps:\n    - name: Deploy to GitHub Pages\n      id: deployment\n      uses: actions/deploy-pages@v4\n"
  },
  {
    "path": "templates/data-science-blog/.github/workflows/import-notebooks.yml",
    "content": "# Hugo Blox GitHub Action to import Jupyter Notebooks as blog posts\nname: Import Jupyter Notebooks as Blog Posts\n\n# Require permission to create a PR\npermissions:\n  contents: write\n  pull-requests: write\n\n# Run workflow when a `.bib` file is added or updated in the `data/` folder\non:\n  push:\n    branches: ['main']\n    paths: ['notebooks/*.ipynb']\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\njobs:\n  hugoblox:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout the repo\n        uses: actions/checkout@v3\n      - name: Set up Python 3.12\n        uses: actions/setup-python@v4\n        with:\n          python-version: \"3.12\"\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install academic==0.11.2\n      - name: Run Academic Converter Tool\n        run: academic import 'notebooks/*.ipynb' content/post/ --verbose\n      - name: Create Pull Request\n        # Set ID for `Check outputs` stage\n        id: cpr\n        uses: peter-evans/create-pull-request@v5\n        with:\n          commit-message: 'content: import blog posts from `notebooks/` folder'\n          title: HugoBlox Kit - Import latest blog posts\n          body: |\n            Convert Jupyter Notebooks in the `notebooks/` folder into blog posts in the `content/post/` folder.\n            将`notebooks/`文件夹中的Jupyter笔记本转换为`content/post/`文件夹中的博客帖子。\n            [View Documentation](https://github.com/GetRD/academic-file-converter)\n          base: main\n          labels: automated-pr, content\n          branch: hugoblox-import-posts\n          delete-branch: true\n      - name: Check outputs\n        if: ${{ steps.cpr.outputs.pull-request-number }}\n        run: |\n          echo \"Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}\"\n          echo \"Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}\"\n"
  },
  {
    "path": "templates/data-science-blog/.github/workflows/upgrade.yml",
    "content": "name: Upgrade HugoBlox\n\non:\n  workflow_dispatch:\n    inputs:\n      version_type:\n        description: 'Upgrade to version'\n        required: true\n        default: 'Stable'\n        type: choice\n        options:\n        - Stable\n        - Beta (Preview)\n  schedule:\n    # Run at 05:00 on Monday\n    - cron: '0 5 * * 1'\n\npermissions:\n  contents: write\n  pull-requests: write\n\n# Prevent duplicate upgrade runs\nconcurrency:\n  group: upgrade-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  upgrade:\n    name: Upgrade\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 15\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v6\n        with:\n          node-version: '22'\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n        with:\n          package_json_path: ./package.json\n          run_install: false\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: '1.23'\n\n      - name: Setup Hugo\n        uses: peaceiris/actions-hugo@v3\n        with:\n          hugo-version: 'latest'\n          extended: true\n\n      - name: Run Upgrade CLI\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # Use manual input or default to stable for scheduled runs\n          VERSION_TYPE: ${{ inputs.version_type || 'Stable' }}\n        run: |\n          FLAGS=\"--yes --ci\"\n          \n          if [ \"$VERSION_TYPE\" == \"Beta (Preview)\" ]; then\n            FLAGS=\"$FLAGS --canary\"\n          fi\n          \n          echo \"Running upgrade with flags: $FLAGS\"\n          pnpm dlx hugoblox@latest upgrade $FLAGS\n\n\n      - name: Create Pull Request\n        uses: peter-evans/create-pull-request@v6\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          commit-message: \"chore(deps): upgrade hugoblox modules\"\n          title: \"⬆️ Upgrade HugoBlox Modules\"\n          body: |\n            This PR upgrades the [HugoBlox](https://hugoblox.com) modules to the latest version.\n            \n            **Changes:**\n            - Updated Hugo Modules (go.mod/go.sum)\n            - Applied automatic migrations (if any)\n            \n            **Verification:**\n            - [ ] Check the Deploy Preview to ensure everything looks correct.\n            - [ ] Merge this PR to apply the updates.\n          branch: \"chore/upgrade-hugoblox-${{ github.run_id }}\"\n          delete-branch: true\n          base: main\n          labels: |\n            dependencies\n            automated-pr\n"
  },
  {
    "path": "templates/data-science-blog/.gitignore",
    "content": "# ============================================================================\n# Hugo Site .gitignore\n# ============================================================================\n\n# ============================================================================\n# Hugo Build Artifacts\n# ============================================================================\n\n# Generated site output\npublic/\n\n# Hugo resources (processed assets)\nresources/\n\n# Hugo build lock\n.hugo_build.lock\n\n# Hugo stats\nhugo_stats.json\n\n# Auto-generated JS config\n**/assets/jsconfig.json\n\n# ============================================================================\n# Node.js & Package Managers\n# ============================================================================\n\n# Dependencies\nnode_modules/\n\n# ============================================================================\n# Environment & Configuration\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# ============================================================================\n# Generated Content\n# ============================================================================\n\n# Pagefind search index\npagefind/\nstatic/pagefind/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n\n# Windows\nThumbs.db\nDesktop.ini\n\n# Linux\n*~\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n*.log\nnpm-debug.log*\n"
  },
  {
    "path": "templates/data-science-blog/.vscode/extensions.json",
    "content": "{\n  \"recommendations\": [\"ownable.ownable\"]\n}\n"
  },
  {
    "path": "templates/data-science-blog/LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2020-present George Cushen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in 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": "templates/data-science-blog/README.md",
    "content": "# [Creator's Blog: Hugo Theme](https://github.com/HugoBlox/hugo-theme-data-science-blog)\n\n[![Screenshot](./.github/preview.png)](https://hugoblox.com/templates/)\n\nThe **Creator's Blog** Hugo Theme empowers you to easily create your own _personal blog_ or _build a business around your content_.\n\n️**Trusted by 250,000+ researchers, educators, and students.** Highly customizable via the integrated **no-code, block-based website builder**, making every site truly personalized ⭐⭐⭐⭐⭐\n\n[![Get Started](https://img.shields.io/badge/-Get%20started-ff4655?style=for-the-badge)](https://hugoblox.com/templates/)\n[![Discord](https://img.shields.io/discord/722225264733716590?style=for-the-badge)](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)  \n[![Twitter Follow](https://img.shields.io/twitter/follow/MakeOwnable?label=Follow%20on%20Twitter)](https://x.com/MakeOwnable)\n\nEasily write technical content with plain text Markdown, LaTeX math, diagrams, RMarkdown, or Jupyter, and import publications from BibTeX.\n\n[Check out the latest demo](https://hugo-blog-theme.netlify.app/) of what you'll get in less than 10 minutes, or [view the showcase](https://hugoblox.com/creators/).\n\nThe integrated [**Hugo Blox**](https://hugoblox.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs.\n\n- 👉 [**Get Started**](https://hugoblox.com/templates/)\n- 📚 [View the **documentation**](https://docs.hugoblox.com/)\n- 💬 [Chat with the **HugoBlox Kit community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)\n- ⬇️ **Automatically import citations from BibTeX** with the [Hugo Academic CLI](https://github.com/GetRD/academic-file-converter)\n- 🐦 Share your new site with the community: [@MakeOwnable](https://x.com/MakeOwnable)  [#MadeWithHugoBlox](https://x.com/search?q=%23MadeWithHugoBlox&src=typed_query)\n- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)\n- 🚀 [Contribute improvements](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/HugoBlox/kit/issues)\n- ⬆️ **Updating?** View the [Update Guide](https://docs.hugoblox.com/) and [Release Notes](https://github.com/HugoBlox/kit/releases)\n\n## We ask you, humbly, to support this open source movement\n\nToday we ask you to defend the open source independence of the HugoBlox Kit and themes 🐧\n\nWe're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way.\n\n### [❤️ Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://hugoblox.com/sponsors/)\n\n## Demo credits\n\n- [Unsplash](https://unsplash.com/) images\n"
  },
  {
    "path": "templates/data-science-blog/assets/media/icons/custom/.gitkeep",
    "content": ""
  },
  {
    "path": "templates/data-science-blog/config/_default/hugo.yaml",
    "content": "# Configuration of Hugo\n# Guide: https://docs.hugoblox.com/tutorial/\n# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings\n# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/\n\n# Website name (set in params.yaml under hugoblox.branding.name)\ntitle: ''\nbaseURL: 'https://example.com/' # Website URL\n\n############################\n## PAGE OPTIONS\n############################\n\ncascade:\n  # Blog post options\n  - _target:\n      path: /blog/**\n      kind: page\n    pager: true\n    editable: true\n    hide_date: false\n    show_date_updated: true\n    reading_time: true\n    commentable: true\n    show_related: true\n    share: true\n    # Just use Breadcrumb for navigation on blog post pages?\n    show_breadcrumb: false\n    header:\n      navbar:\n        enable: true\n\n############################\n## LANGUAGE\n############################\n\ndefaultContentLanguage: en\nhasCJKLanguage: false\ndefaultContentLanguageInSubdir: false\nremovePathAccents: true\n\n############################\n## ADVANCED\n############################\n\nbuild:\n  writeStats: true\nenableGitInfo: false\nsummaryLength: 30\npagination:\n  pagerSize: 10\nenableEmoji: true\nenableRobotsTXT: true\nfootnotereturnlinkcontents: <sup>^</sup>\nignoreFiles: [\".ipynb_checkpoints$\", \"\\\\.Rmd$\", \"\\\\.Rmarkdown$\", \"_cache$\"]\ndisableAliases: true\noutputs:\n  home: [HTML, RSS, headers, redirects, backlinks]\n  section: [HTML, RSS]\nimaging:\n  resampleFilter: lanczos\n  quality: 90\n  anchor: smart\n  hint: picture\ntimeout: 600000\ntaxonomies:\n  tag: tags\n  category: categories\n  author: authors\nmarkup:\n  _merge: deep\nrelated:\n  threshold: 80\n  includeNewer: true\n  toLower: true\n  indices:\n    - name: tags\n      weight: 100\n    - name: categories\n      weight: 70\nsecurity:\n  _merge: deep\nsitemap:\n  _merge: deep\nminify:\n  _merge: deep\n"
  },
  {
    "path": "templates/data-science-blog/config/_default/languages.yaml",
    "content": "# Languages\n#   Create a section for each of your site's languages.\n#   Documentation: https://docs.hugoblox.com/reference/language/\n\n# Default language\nen:\n  languageCode: en-us\n  # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.\n  #contentDir: content/en\n\n# Uncomment the lines below to configure your website in a second language.\n#zh:\n#  languageCode: zh-Hans\n#  contentDir: content/zh\n#  title: Chinese website title...\n#  params:\n#    description: Site description in Chinese...\n#  menu:\n#    main:\n#      - name: 传\n#        url: '#about'\n#        weight: 1\n"
  },
  {
    "path": "templates/data-science-blog/config/_default/menus.yaml",
    "content": "# Navigation Links\n#   The weight parameter defines the order that the links will appear in.\n\nmain:\n  - name: Home\n    url: /\n    weight: 10\n  - name: Topics\n    url: tags/\n    weight: 20\n  - name: Uses\n    url: uses/\n    weight: 30\n"
  },
  {
    "path": "templates/data-science-blog/config/_default/module.yaml",
    "content": "############################\n## HUGO MODULES\n## Install or uninstall themes and plugins here.\n## Docs: https://gohugo.io/hugo-modules/\n############################\n\nimports:\n  - path: github.com/HugoBlox/kit/modules/integrations/netlify\n  - path: github.com/HugoBlox/kit/modules/blox\n\n# Install any Hugo Blox within the `hugo-blox/blox/` folder\nmounts:\n  - source: hugo-blox/blox/community\n    target: layouts/_partials/blox/community/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox/all-access\n    target: layouts/_partials/blox/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox\n    target: assets/dist/community/blox/\n    files:\n      - '**.css'\n  - source: layouts\n    target: layouts\n  - source: assets\n    target: assets\n"
  },
  {
    "path": "templates/data-science-blog/config/_default/params.yaml",
    "content": "# ══════════════════════════════════════════════════════════════════════════════\n# HUGO BLOX CONFIGURATION\n# Schema: hugoblox.com/schema/v2\n# Tutorial: https://docs.hugoblox.com/tutorial/\n# Documentation: https://docs.hugoblox.com/\n# ══════════════════════════════════════════════════════════════════════════════\nhugoblox:\n  schema: \"2.0\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # IDENTITY\n  # Site-level branding (for people/profiles, use the author system in content/authors/)\n  # ────────────────────────────────────────────────────────────────────────────\n  identity:\n    # Site name - shown in navbar, footer, copyright, and browser title by default\n    name: \"Your Name\"\n    # Legal entity for copyright notices (defaults to name if not set)\n    organization: \"\"\n    # Schema.org type for structured data\n    type: person                        # person | organization | local_business\n    # Short tagline displayed on your site\n    tagline: \"\"\n    # Site meta description for search engines and social sharing\n    description: \"The highly-customizable Hugo Academic theme powered by HugoBlox Kit. Easily create your personal academic website.\"\n    # Social accounts (used for meta tags like Twitter Cards)\n    social:\n      twitter: \"MakeOwnable\"              # Twitter/X handle for Twitter Cards (without @)\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # THEME\n  # Color and visual design system\n  # ────────────────────────────────────────────────────────────────────────────\n  theme:\n    # Mode: 'light', 'dark', or 'system' (follows OS preference)\n    mode: system\n    # Theme pack: name from data/themes/ or { light: \"x\", dark: \"y\" } for mix-and-match\n    pack: \"default\"\n    # Optional: Override theme pack colors\n    colors:\n      primary: \"\"                       # Tailwind palette name or hex (e.g., \"indigo\" or \"#6366f1\")\n      secondary: \"\"\n      neutral: \"\"                       # Affects gray utilities (text-gray-*, bg-gray-*)\n    # Optional: Mode-specific color overrides\n    colors_light: {}\n    colors_dark: {}\n    # Optional: Semantic surface color overrides\n    surfaces:\n      background: \"\"\n      foreground: \"\"\n      header:\n        background: \"\"\n        foreground: \"\"\n      footer:\n        background: \"\"\n        foreground: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # TYPOGRAPHY\n  # Font and text sizing\n  # ────────────────────────────────────────────────────────────────────────────\n  typography:\n    # Theme pack: name from data/fonts/\n    pack: \"humanist\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LAYOUT\n  # Spacing and shape tokens\n  # ────────────────────────────────────────────────────────────────────────────\n  layout:\n    # Border radius: 'none', 'sm', 'md', 'lg', or 'full'\n    radius: \"md\"\n    # Spacing density: 'compact', 'comfortable', or 'spacious'\n    spacing: \"comfortable\"\n    # Avatar shape in author profiles\n    avatar_shape: circle                # circle | square | rounded\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # HEADER\n  # Site header and navigation bar\n  # ────────────────────────────────────────────────────────────────────────────\n  header:\n    enable: true\n    # Header style variant\n    style: navbar                       # navbar | navbar-simple | minimal\n    # Stick to top on scroll\n    sticky: true\n    # Menu alignment\n    align: center                       # left | center | right\n    # Feature toggles\n    search: true\n    theme_toggle: true\n    theme_picker: false\n    language_switcher: true\n    # Call-to-action button\n    cta:\n      enable: false\n      text: \"\"\n      url: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # FOOTER\n  # Site footer\n  # ────────────────────────────────────────────────────────────────────────────\n  footer:\n    # Footer style variant\n    style: minimal                      # minimal | columns | centered\n    language_switcher: true\n    # Custom footer text (HTML supported)\n    text: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COPYRIGHT\n  # Legal notices and licensing\n  # ────────────────────────────────────────────────────────────────────────────\n  copyright:\n    # Copyright notice - supports {year}, {name}, {license} placeholders\n    notice: \"© {year} {name}. This work is licensed under {license}\"\n    license:\n      type: cc                          # cc | custom\n      allow_derivatives: false\n      share_alike: true\n      allow_commercial: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEO\n  # Search engine optimization - overrides and technical settings\n  # ────────────────────────────────────────────────────────────────────────────\n  seo:\n    # Browser tab title override (defaults to identity.name if not set)\n    title: \"\"\n    # For local_business identity type only\n    location:\n      address:\n        street: \"\"\n        city: \"\"\n        region: \"\"\n        postal_code: \"\"\n        country: \"\"\n      coordinates:\n        latitude: null\n        longitude: null\n      phone: \"\"\n    # AI/LLM crawler guidance (llms.txt)\n    ai:\n      allow:\n        - /\n      disallow: []\n      note: \"Guidance for AI crawlers - customize to match your public content.\"\n      contact: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # CONTENT\n  # Content rendering and behavior\n  # ────────────────────────────────────────────────────────────────────────────\n  content:\n    # Math rendering\n    math:\n      enable: false\n    # Table of contents\n    toc:\n      enable: true\n    # Reading time estimates\n    reading_time:\n      enable: true\n    # Academic citations\n    citations:\n      style: apa                        # apa | mla | chicago | ieee\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEARCH\n  # Site search\n  # ────────────────────────────────────────────────────────────────────────────\n  search:\n    enable: true\n    # Trending/suggested search terms\n    suggestions: []\n    # Quick action shortcuts in search modal\n    quick_actions: []\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COMMENTS\n  # User comments system\n  # ────────────────────────────────────────────────────────────────────────────\n  comments:\n    enable: false\n    provider: \"\"                        # giscus | disqus\n    giscus:\n      repo: \"\"\n      repo_id: \"\"\n      category: \"\"\n      category_id: \"\"\n    disqus:\n      shortname: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # ANALYTICS\n  # Traffic and behavior analytics\n  # ────────────────────────────────────────────────────────────────────────────\n  analytics:\n    google:\n      measurement_id: \"\"                # Google Analytics 4: G-XXXXXXXXXX\n    google_tag_manager:\n      container_id: \"\"                  # GTM-XXXXXXX\n    plausible:\n      domain: \"\"\n    fathom:\n      site_id: \"\"\n    pirsch:\n      site_id: \"\"\n    clarity:\n      project_id: \"\"\n    baidu:\n      site_id: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # VERIFICATION\n  # Search engine site verification codes\n  # ────────────────────────────────────────────────────────────────────────────\n  verification:\n    google: \"\"\n    bing: \"\"\n    baidu: \"\"\n    yandex: \"\"\n    pinterest: \"\"\n    naver: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # REPOSITORY\n  # Source code repository for \"Edit this page\" links\n  # ────────────────────────────────────────────────────────────────────────────\n  repository:\n    enable: false\n    url: \"\"                             # e.g., https://github.com/username/repo\n    branch: main\n    content_dir: content\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LOCALE\n  # Regional formatting preferences\n  # ────────────────────────────────────────────────────────────────────────────\n  locale:\n    date_format: \"Jan 2, 2006\"          # Go time format\n    time_format: \"3:04 PM\"\n    address_format: en-us\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SECURITY\n  # Security headers and policies (requires Netlify integration)\n  # ────────────────────────────────────────────────────────────────────────────\n  security:\n    csp:\n      policy: \"\"\n      report_only: false\n    frame_options: allow                 # deny | sameorigin | allow - allow enables iframe embedding\n    permissions_policy: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PRIVACY\n  # Privacy and compliance features\n  # ────────────────────────────────────────────────────────────────────────────\n  privacy:\n    enable: false\n    anonymize_analytics: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # DEBUG\n  # Development and debugging (hidden in production)\n  # ────────────────────────────────────────────────────────────────────────────\n  debug:\n    enable: false\n    hud:\n      position: bottom-left             # top-left | top-right | bottom-left | bottom-right\n      opacity: 1.0\n    export_logs: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PREMIUM\n  # Premium features and creator program (affiliates)\n  # ────────────────────────────────────────────────────────────────────────────\n  pro:\n    # Hide \"Powered by HugoBlox\" attribution\n    # Requires: HugoBlox Premium to support HugoBlox via alternative means\n    # Note: Even with Premium, you can keep this false to support open source!\n    # Get Premium: https://hugoblox.com/premium\n    hide_attribution: false\n    \n    # Affiliate referral code for rewards program\n    # Join affiliate program: https://hugoblox.com/affiliates\n    affiliate_code: \"\"\n"
  },
  {
    "path": "templates/data-science-blog/content/_index.md",
    "content": "---\ntitle: 'Home'\ndate: 2023-10-24\ntype: landing\nsections:\n  - block: resume-biography\n    content:\n      # Author slug (data/authors/<slug>.yaml)\n      username: me\n    design:\n      spacing:\n        padding: [0, 0, 0, 0]\n      biography:\n        style: 'text-align: justify; font-size: 0.8em;'\n      # Avatar customization\n      avatar:\n        size: medium  # Options: small (150px), medium (200px, default), large (320px), xl (400px), xxl (500px)\n        shape: circle # Options: circle (default), square, rounded\n  - block: collection\n    content:\n      filters:\n        folders:\n          - blog\n    design:\n      spacing:\n        padding: ['3rem', 0, '6rem', 0]\n---\n"
  },
  {
    "path": "templates/data-science-blog/content/authors/_index.md",
    "content": "---\n# To publish author profile pages, remove all the `build` and `cascade` settings below.\nbuild:\n  render: never\ncascade:\n  build:\n    render: never\n    list: always\n---\n"
  },
  {
    "path": "templates/data-science-blog/content/blog/_index.md",
    "content": "---\ntitle: Blog\n---\n"
  },
  {
    "path": "templates/data-science-blog/content/blog/data-visualization/index.md",
    "content": "---\ntitle: 📈 Communicate your results effectively with the best data visualizations\nsummary: Use popular tools such as Plotly, Mermaid, and data frames.\ndate: 2023-10-25\nauthors:\n  - me\ntags:\n  - Hugo\n  - Hugo Blox\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nHugo Blox is designed to give technical content creators a seamless experience. You can focus on the content and Hugo Blox handles the rest.\n\nUse popular tools such as Plotly, Mermaid, and data frames.\n\n## Charts\n\nHugo Blox supports the popular [Plotly](https://plot.ly/) format for interactive data visualizations. With Plotly, you can design almost any kind of visualization you can imagine!\n\nSave your Plotly JSON in your page folder, for example `line-chart.json`, and then add the `{{</* chart data=\"line-chart\" */>}}` shortcode where you would like the chart to appear.\n\nDemo:\n\n{{< chart data=\"line-chart\" >}}\n\nYou might also find the [Plotly JSON Editor](http://plotly-json-editor.getforge.io/) useful.\n\n## Diagrams\n\nHugo Blox supports the _Mermaid_ Markdown extension for diagrams.\n\nAn example **flowchart**:\n\n    ```mermaid\n    graph TD\n    A[Hard] -->|Text| B(Round)\n    B --> C{Decision}\n    C -->|One| D[Result 1]\n    C -->|Two| E[Result 2]\n    ```\n\nrenders as\n\n```mermaid\ngraph TD\nA[Hard] -->|Text| B(Round)\nB --> C{Decision}\nC -->|One| D[Result 1]\nC -->|Two| E[Result 2]\n```\n\nAn example **sequence diagram**:\n\n    ```mermaid\n    sequenceDiagram\n    Alice->>John: Hello John, how are you?\n    loop Healthcheck\n        John->>John: Fight against hypochondria\n    end\n    Note right of John: Rational thoughts!\n    John-->>Alice: Great!\n    John->>Bob: How about you?\n    Bob-->>John: Jolly good!\n    ```\n\nrenders as\n\n```mermaid\nsequenceDiagram\nAlice->>John: Hello John, how are you?\nloop Healthcheck\n    John->>John: Fight against hypochondria\nend\nNote right of John: Rational thoughts!\nJohn-->>Alice: Great!\nJohn->>Bob: How about you?\nBob-->>John: Jolly good!\n```\n\nAn example **class diagram**:\n\n    ```mermaid\n    classDiagram\n    Class01 <|-- AveryLongClass : Cool\n    Class03 *-- Class04\n    Class05 o-- Class06\n    Class07 .. Class08\n    Class09 --> C2 : Where am i?\n    Class09 --* C3\n    Class09 --|> Class07\n    Class07 : equals()\n    Class07 : Object[] elementData\n    Class01 : size()\n    Class01 : int chimp\n    Class01 : int gorilla\n    Class08 <--> C2: Cool label\n    ```\n\nrenders as\n\n```mermaid\nclassDiagram\nClass01 <|-- AveryLongClass : Cool\nClass03 *-- Class04\nClass05 o-- Class06\nClass07 .. Class08\nClass09 --> C2 : Where am i?\nClass09 --* C3\nClass09 --|> Class07\nClass07 : equals()\nClass07 : Object[] elementData\nClass01 : size()\nClass01 : int chimp\nClass01 : int gorilla\nClass08 <--> C2: Cool label\n```\n\nAn example **state diagram**:\n\n    ```mermaid\n    stateDiagram\n    [*] --> Still\n    Still --> [*]\n    Still --> Moving\n    Moving --> Still\n    Moving --> Crash\n    Crash --> [*]\n    ```\n\nrenders as\n\n```mermaid\nstateDiagram\n[*] --> Still\nStill --> [*]\nStill --> Moving\nMoving --> Still\nMoving --> Crash\nCrash --> [*]\n```\n\n## Data Frames\n\nSave your spreadsheet as a CSV file in your page's folder and then render it by adding the _Table_ shortcode to your page:\n\n```go\n{{</* table path=\"results.csv\" header=\"true\" caption=\"Table 1: My results\" */>}}\n```\n\nrenders as\n\n{{< table path=\"results.csv\" header=\"true\" caption=\"Table 1: My results\" >}}\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/data-science-blog/content/blog/data-visualization/line-chart.json",
    "content": "{\n  \"data\": [\n    {\n      \"uid\": \"babced\",\n      \"fill\": \"tonexty\",\n      \"mode\": \"none\",\n      \"name\": \"Col2\",\n      \"type\": \"scatter\",\n      \"x\": [\n        \"2000-01-01\",\n        \"2001-01-01\",\n        \"2002-01-01\",\n        \"2003-01-01\",\n        \"2004-01-01\",\n        \"2005-01-01\",\n        \"2006-01-01\",\n        \"2007-01-01\",\n        \"2008-01-01\",\n        \"2009-01-01\",\n        \"2010-01-01\",\n        \"2011-01-01\",\n        \"2012-01-01\",\n        \"2013-01-01\",\n        \"2014-01-01\",\n        \"2015-01-01\",\n        \"2016-01-01\"\n      ],\n      \"y\": [\n        \"17087182\",\n        \"29354370\",\n        \"38760373\",\n        \"40912332\",\n        \"51611646\",\n        \"64780617\",\n        \"85507314\",\n        \"121892559\",\n        \"172338726\",\n        \"238027855\",\n        \"206956723\",\n        \"346004403\",\n        \"697089489\",\n        \"672985183\",\n        \"968882453\",\n        \"863105652\",\n        \"1068513050\"\n      ],\n      \"fillcolor\": \"rgb(224, 102, 102)\"\n    }\n  ],\n  \"layout\": {\n    \"title\": \"Total Number of Websites\",\n    \"width\": 800,\n    \"xaxis\": {\n      \"type\": \"date\",\n      \"range\": [946702800000, 1451624400000],\n      \"title\": \"Source: <a href=\\\"http://www.scribblrs.com/\\\">Scribblrs</a><br>Source: <a href=\\\"http://www.internetlivestats.com/total-number-of-websites/\\\">Internet Live Stats</a>\",\n      \"showgrid\": false,\n      \"autorange\": true,\n      \"tickformat\": \"%Y\"\n    },\n    \"yaxis\": {\n      \"type\": \"linear\",\n      \"range\": [0, 1124750578.9473684],\n      \"title\": \"\",\n      \"autorange\": true\n    },\n    \"height\": 500,\n    \"autosize\": false\n  },\n  \"frames\": []\n}\n"
  },
  {
    "path": "templates/data-science-blog/content/blog/data-visualization/results.csv",
    "content": "customer_id, score\n1,0\n2,0.5\n3,1\n"
  },
  {
    "path": "templates/data-science-blog/content/blog/get-started/index.md",
    "content": "---\ntitle: 🎉 Easily create your own simple yet highly customizable blog\nsummary: Take full control of your personal brand and privacy by migrating away from the big tech platforms!\ndate: 2023-10-27\n\n# Featured image\n# Place an image named `featured.jpg/png` in this page's folder and customize its options here.\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n\nauthors:\n  - me\n  - Ted\n\ntags:\n  - Academic\n  - Hugo Blox\n  - Markdown\n---\n\nWelcome 👋\n\n{{< toc mobile_only=true is_open=true >}}\n\n## Overview\n\n1. The Hugo Blox website builder for Hugo, along with its starter templates, is designed for professional creators, educators, and teams/organizations - although it can be used to create any kind of site\n2. The template can be modified and customised to suit your needs. It's a good platform for anyone looking to take control of their data and online identity whilst having the convenience to start off with a **no-code solution (write in Markdown and customize with YAML parameters)** and having **flexibility to later add even deeper personalization with HTML and CSS**\n3. You can work with all your favourite tools and apps with hundreds of plugins and integrations to speed up your workflows, interact with your readers, and much more\n\n[//]: # '[![The template is mobile first with a responsive design to ensure that your site looks stunning on every device.](https://raw.githubusercontent.com/HugoBlox/kit/main/templates/academic-cv/preview.png)](https://hugoblox.com)'\n\n### Get Started\n\n- 👉 [**Create a new site**](https://hugoblox.com/templates/)\n- 📚 [**Personalize your site**](https://docs.hugoblox.com/)\n- 💬 [Chat with the **Hugo Blox community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)\n- 🐦 Twitter: [@MakeOwnable](https://x.com/MakeOwnable)  #MadeWithHugoBlox\n- 💡 [Request a **feature** or report a **bug** for _Hugo Blox_](https://github.com/HugoBlox/kit/issues)\n- ⬆️ **Updating Hugo Blox?** View the [Update Guide](https://docs.hugoblox.com/reference/update/) and [Release Notes](https://github.com/HugoBlox/kit/releases)\n\n## Crowd-funded open-source software\n\nTo help us develop this template and software sustainably under the MIT license, we ask all individuals and businesses that use it to help support its ongoing maintenance and development via sponsorship.\n\n### [❤️ Click here to become a sponsor and help support Hugo Blox's future ❤️](https://hugoblox.com/sponsor/)\n\nAs a token of appreciation for sponsoring, you can **unlock [these](https://hugoblox.com/sponsor/) awesome rewards and extra features 🦄✨**\n\n## Ecosystem\n\n- **[Bibtex To Markdown](https://github.com/GetRD/academic-file-converter):** Automatically import publications from BibTeX\n\n## Inspiration\n\n[Learn what other **creators**](https://hugoblox.com/creators/) are building with this template.\n\n## Features\n\n- **Page builder** - Create _anything_ with no-code [**blocks**](https://hugoblox.com/blocks/) and [**elements**](https://docs.hugoblox.com/reference/markdown/)\n- **Edit any type of content** - Blog posts, publications, talks, slides, projects, and more!\n- **Create content** in [**Markdown**](https://docs.hugoblox.com/reference/markdown/), [**Jupyter**](https://docs.hugoblox.com/getting-started/cms/), or [**RStudio**](https://docs.hugoblox.com/getting-started/cms/)\n- **Plugin System** - Fully customizable [**color** and **font themes**](https://docs.hugoblox.com/getting-started/customize/)\n- **Display Code and Math** - Code syntax highlighting and LaTeX math supported\n- **Integrations** - [Google Analytics](https://analytics.google.com), [Disqus commenting](https://disqus.com), Maps, Contact Forms, and more!\n- **Beautiful Site** - Simple and refreshing one-page design\n- **Industry-Leading SEO** - Help get your website found on search engines and social media\n- **Media Galleries** - Display your images and videos with captions in a customizable gallery\n- **Mobile Friendly** - Look amazing on every screen with a mobile friendly version of your site\n- **Multi-language** - 35+ language packs including English, 中文, and Português\n- **Multi-user** - Each author gets their own profile page\n- **Privacy Pack** - Assists with GDPR\n- **Stand Out** - Bring your site to life with animation, parallax backgrounds, and scroll effects\n- **One-Click Deployment** - No servers. No databases. Only files.\n\n## Themes\n\nHugo Blox and its templates come with **automatic day (light) and night (dark) mode** built-in. Visitors can choose their preferred mode by clicking the sun/moon icon in the header.\n\n[Choose a stunning **theme** and **font**](https://docs.hugoblox.com/getting-started/customize/) for your site. Themes are fully customizable.\n\n## License\n\nCopyright 2016-present [George Cushen](https://georgecushen.com).\n\nReleased under the [MIT](https://github.com/HugoBlox/kit/blob/main/LICENSE.md) license.\n"
  },
  {
    "path": "templates/data-science-blog/content/blog/project-management/index.md",
    "content": "---\ntitle: ✅ Manage your projects\nsummary: Easily manage your projects - create ideation mind maps, Gantt charts, todo lists, and more!\ndate: 2023-10-23\nauthors:\n  - me\ntags:\n  - Hugo Blox\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nEasily manage your projects - create ideation mind maps, Gantt charts, todo lists, and more!\n\n## Ideation\n\nHugo Blox supports a Markdown extension for mindmaps.\n\nSimply insert a Markdown code block labelled as `markmap` and optionally set the height of the mindmap as shown in the example below.\n\nMindmaps can be created by simply writing the items as a Markdown list within the `markmap` code block, indenting each item to create as many sub-levels as you need:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n\n## Diagrams\n\nHugo Blox supports the _Mermaid_ Markdown extension for diagrams.\n\nAn example **Gantt diagram**:\n\n    ```mermaid\n    gantt\n    section Section\n    Completed :done,    des1, 2014-01-06,2014-01-08\n    Active        :active,  des2, 2014-01-07, 3d\n    Parallel 1   :         des3, after des1, 1d\n    Parallel 2   :         des4, after des1, 1d\n    Parallel 3   :         des5, after des3, 1d\n    Parallel 4   :         des6, after des4, 1d\n    ```\n\nrenders as\n\n```mermaid\ngantt\nsection Section\nCompleted :done,    des1, 2014-01-06,2014-01-08\nActive        :active,  des2, 2014-01-07, 3d\nParallel 1   :         des3, after des1, 1d\nParallel 2   :         des4, after des1, 1d\nParallel 3   :         des5, after des3, 1d\nParallel 4   :         des6, after des4, 1d\n```\n\n## Todo lists\n\nYou can even write your todo lists in Markdown too:\n\n```markdown\n- [x] Write math example\n  - [x] Write diagram example\n- [ ] Do something else\n```\n\nrenders as\n\n- [x] Write math example\n  - [x] Write diagram example\n- [ ] Do something else\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/data-science-blog/content/blog/second-brain/index.md",
    "content": "---\ntitle: 🧠 Sharpen your thinking with a second brain\nsummary: Create a personal knowledge base and share your knowledge with your peers.\ndate: 2023-10-26\nauthors:\n  - me\ntags:\n  - Second Brain\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nCreate a personal knowledge base and share your knowledge with your peers.\n\nHugo Blox web framework empowers you with one of the most flexible note-taking capabilities out there.\n\nCreate a powerful knowledge base that works on top of a local folder of plain text Markdown files.\n\nUse it as your second brain, either publicly sharing your knowledge with your peers via your website, or via a private GitHub repository and password-protected site just for yourself.\n\n## Mindmaps\n\nHugo Blox supports a Markdown extension for mindmaps.\n\nWith this open format, can even edit your mindmaps in other popular tools such as Obsidian.\n\nSimply insert a Markdown code block labelled as `markmap` and optionally set the height of the mindmap as shown in the example below.\n\nMindmaps can be created by simply writing the items as a Markdown list within the `markmap` code block, indenting each item to create as many sub-levels as you need:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n\nAnh here's a more advanced mindmap with formatting, code blocks, and math:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap\n- Mindmaps\n  - Links\n    - [Hugo Blox Docs](https://docs.hugoblox.com/)\n    - [Discord Community](https://discord.gg/z8wNYzb)\n    - [GitHub](https://github.com/HugoBlox/kit)\n  - Features\n    - Markdown formatting\n    - **inline** ~~text~~ *styles*\n    - multiline\n      text\n    - `inline code`\n    -\n      ```js\n      console.log('hello');\n      console.log('code block');\n      ```\n    - Math: $x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}$\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap\n- Mindmaps\n  - Links\n    - [Hugo Blox Docs](https://docs.hugoblox.com/)\n    - [Discord Community](https://discord.gg/z8wNYzb)\n    - [GitHub](https://github.com/HugoBlox/kit)\n  - Features\n    - Markdown formatting\n    - **inline** ~~text~~ *styles*\n    - multiline\n      text\n    - `inline code`\n    -\n      ```js\n      console.log('hello');\n      console.log('code block');\n      ```\n    - Math: $x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}$\n```\n\n## Highlighting\n\n<mark>Highlight</mark> important text with `mark`:\n\n```html\n<mark>Highlighted text</mark>\n```\n\n## Callouts\n\nUse [callouts](https://docs.hugoblox.com/reference/markdown/#callouts) (aka _asides_, _hints_, or _alerts_) to draw attention to notes, tips, and warnings.\n\nUse the `> [!NOTE]` syntax to create a callout.\n\n```markdown\n> [!NOTE]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n```\n\nrenders as\n\n> [!NOTE]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n\nOr use the `warning` callout type so your readers don't miss critical details:\n\n> [!WARNING]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/data-science-blog/content/blog/teach-courses/index.md",
    "content": "---\ntitle: 👩🏼‍🏫 Teach academic courses\nsummary: Embed videos, podcasts, code, LaTeX math, and even test students!\ndate: 2023-10-24\nmath: true\nauthors:\n  - me\ntags:\n  - Hugo\n  - HugoBlox Kit\n  - Markdown\nimage:\n  caption: 'Embed rich media such as videos and LaTeX math'\n---\n\n[HugoBlox Kit](https://hugoblox.com) is designed to give technical content creators a seamless experience. You can focus on the content and the HugoBlox Kit which this template is built upon handles the rest.\n\n**Embed videos, podcasts, code, LaTeX math, and even test students!**\n\nOn this page, you'll find some examples of the types of technical content that can be rendered with Hugo Blox.\n\n## Video\n\nTeach your course by sharing videos with your students. Choose from one of the following approaches:\n\n**Youtube**:\n\n    {{</* youtube D2vj0WcvH5c */>}}\n\n{{< youtube D2vj0WcvH5c >}}\n\n**Bilibili**:\n\n    {{</* bilibili BV1WV4y1r7DF */>}}\n\n\n**Video file**\n\nVideos may be added to a page by either placing them in your `assets/media/` media library or in your [page's folder](https://gohugo.io/content-management/page-bundles/), and then embedding them with the _video_ shortcode:\n\n    {{</* video src=\"my_video.mp4\" controls=\"yes\" */>}}\n\n## Podcast\n\nYou can add a podcast or music to a page by placing the MP3 file in the page's folder or the media library folder and then embedding the audio on your page with the _audio_ shortcode:\n\n    {{</* audio src=\"ambient-piano.mp3\" */>}}\n\nTry it out:\n\n{{< audio src=\"ambient-piano.mp3\" >}}\n\n## Test students\n\nProvide a simple yet fun self-assessment by revealing the solutions to challenges with the `spoiler` shortcode:\n\n```markdown\n{{</* spoiler text=\"👉 Click to view the solution\" */>}}\nYou found me!\n{{</* /spoiler */>}}\n```\n\nrenders as\n\n{{< spoiler text=\"👉 Click to view the solution\" >}} You found me 🎉 {{< /spoiler >}}\n\n## Math\n\nHugoBlox Kit supports a Markdown extension for $\\LaTeX$ math. Enable math by setting the `math: true` option in your page's front matter, or enable math for your entire site by toggling math in your `config/_default/params.yaml` file:\n\n```yaml\nfeatures:\n  math:\n    enable: true\n```\n\nTo render _inline_ or _block_ math, wrap your LaTeX math with `$...$` or `$$...$$`, respectively.\n\nExample **math block**:\n\n```latex\n$$\n\\gamma_{n} = \\frac{ \\left | \\left (\\mathbf x_{n} - \\mathbf x_{n-1} \\right )^T \\left [\\nabla F (\\mathbf x_{n}) - \\nabla F (\\mathbf x_{n-1}) \\right ] \\right |}{\\left \\|\\nabla F(\\mathbf{x}_{n}) - \\nabla F(\\mathbf{x}_{n-1}) \\right \\|^2}\n$$\n```\n\nrenders as\n\n$$\\gamma_{n} = \\frac{ \\left | \\left (\\mathbf x_{n} - \\mathbf x_{n-1} \\right )^T \\left [\\nabla F (\\mathbf x_{n}) - \\nabla F (\\mathbf x_{n-1}) \\right ] \\right |}{\\left \\|\\nabla F(\\mathbf{x}_{n}) - \\nabla F(\\mathbf{x}_{n-1}) \\right \\|^2}$$\n\nExample **inline math** `$\\nabla F(\\mathbf{x}_{n})$` renders as $\\nabla F(\\mathbf{x}_{n})$.\n\nExample **multi-line math** using the math linebreak (`\\\\`):\n\n```latex\n$$f(k;p_{0}^{*}) = \\begin{cases}p_{0}^{*} & \\text{if }k=1, \\\\\n1-p_{0}^{*} & \\text{if }k=0.\\end{cases}$$\n```\n\nrenders as\n\n$$\nf(k;p_{0}^{*}) = \\begin{cases}p_{0}^{*} & \\text{if }k=1, \\\\\n1-p_{0}^{*} & \\text{if }k=0.\\end{cases}\n$$\n\n## Code\n\nHugoBlox Kit utilises Hugo's Markdown extension for highlighting code syntax. The code theme can be selected in the `config/_default/params.yaml` file.\n\n\n    ```python\n    import pandas as pd\n    data = pd.read_csv(\"data.csv\")\n    data.head()\n    ```\n\nrenders as\n\n```python\nimport pandas as pd\ndata = pd.read_csv(\"data.csv\")\ndata.head()\n```\n\n## Inline Images\n\n```go\n{{</* icon name=\"python\" */>}} Python\n```\n\nrenders as\n\n{{< icon name=\"python\" >}} Python\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/data-science-blog/content/tags/_index.md",
    "content": "---\ntitle: Topics\n---\n"
  },
  {
    "path": "templates/data-science-blog/content/uses.md",
    "content": "---\ntitle: Uses\ndate: 2023-10-24\nhide_date: true\nreading_time: false\n---\n\nThe idea of a Uses page is to tell you about the stuff I use.\n\nMake sure to check out [uses.tech](https://uses.tech/) for a list of everyone's Uses pages!\n\nI often get asked about what software or hardware I use, so this page will serve as a living document and a place to point curious readers to when I get asked.\n\n## Website\n\n- [Hugo Blox](https://hugoblox.com) (see the tutorial on [Getting Started](/blog/get-started/))\n\n## Editor + Terminal\n\n- [Visual Studio Code](https://code.visualstudio.com/) is my current editor\n- Chrome is my main browser\n- iTerm2 is my terminal\n\n## Desktop Apps\n\n- Better Touch Tool for window management and custom keyboard shortcuts\n"
  },
  {
    "path": "templates/data-science-blog/data/authors/me.yaml",
    "content": "schema: hugoblox/author/v1\nslug: me\nis_owner: true\nname:\n  display: 吳健雄\n  given: Shiung Wu\n  family: Chien\n  pronunciation: Chien Shiung Wu\n  pronouns: she/her\nstatus:\n  icon: \"☕️\"\nrole: Professor of Artificial Intelligence\nbio: My research interests include distributed robotics, mobile computing and programmable matter.\naffiliations:\n  - name: Stanford University\n    url: https://www.stanford.edu/\nlinks:\n  - icon: at-symbol\n    url: mailto:your-email@example.com\n    label: E-mail Me\n  - icon: brands/x\n    url: https://x.com/MakeOwnable\n  - icon: brands/instagram\n    url: https://www.instagram.com/\n  - icon: brands/linkedin\n    url: https://www.linkedin.com/\n  - icon: academicons/cv\n    url: uploads/resume.pdf\n    label: Download my resume\n  - icon: rss\n    url: ./post/index.xml\n    label: Subscribe to my blog via RSS feed\n"
  },
  {
    "path": "templates/data-science-blog/go.mod",
    "content": "module github.com/HugoBlox/kit/templates/blog\n\ngo 1.19\n\nrequire (\n\tgithub.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652\n\tgithub.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c\n)\n"
  },
  {
    "path": "templates/data-science-blog/hugoblox.yaml",
    "content": "build:\n  hugo_version: '0.156.0'\ndeploy:\n  # Deployment target: github-pages, netlify, vercel, cloudflare, or none\n  host: 'github-pages'\ntemplate:\n  id: \"blog\"\n  name: \"Blog\"\n"
  },
  {
    "path": "templates/data-science-blog/netlify.toml",
    "content": "[build]\n  command = \"\"\"\n    set -e\n    echo \"=== Starting Blog build process ===\"\n    echo \"Node version: $(node --version)\"\n    echo \"pnpm version: $(pnpm --version)\"\n    echo \"Hugo version: $(hugo version)\"\n    echo \"Go version: $(go version || echo 'Go not available')\"\n    \n    echo \"=== Installing dependencies ===\"\n    pnpm install --verbose --no-frozen-lockfile\n    \n    echo \"=== Running Hugo build ===\"\n    hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings\n    \n    echo \"=== Running Pagefind indexing ===\"\n    pnpm run pagefind\n    \n    echo \"=== Build completed successfully ===\"\n  \"\"\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.156.0\"\n  GO_VERSION = \"1.21.5\"\n  NODE_VERSION = \"22\"\n  # Ensure Netlify's implicit install does not force a frozen lockfile\n  PNPM_FLAGS = \"--no-frozen-lockfile\"\n  HUGO_ENABLEGITINFO = \"true\"\n  HUGO_LOG_I18N_WARNINGS = \"true\"\n  HUGO_LOG_WARNINGS = \"true\"\n  FORCE_COLOR = \"1\"\n  PNPM_LOG_LEVEL = \"debug\"\n\n[context.production.environment]\n  HUGO_ENV = \"production\"\n\n[context.deploy-preview]\n  command = \"\"\"\n    set -e\n    echo \"=== Deploy Preview Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[context.branch-deploy]\n  command = \"\"\"\n    set -e\n    echo \"=== Branch Deploy Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[[plugins]]\n  package = \"netlify-plugin-hugo-cache-resources\"\n  [plugins.inputs]\n    debug = true\n"
  },
  {
    "path": "templates/data-science-blog/notebooks/blog-with-jupyter.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"editable\": true,\n    \"slideshow\": {\n     \"slide_type\": \"\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"# Blog with Jupyter Notebooks!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"ExecuteTime\": {\n     \"end_time\": \"2023-11-04T20:14:14.562747Z\",\n     \"start_time\": \"2023-11-04T20:14:14.488817Z\"\n    }\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAlkAAADLCAYAAABdyYYmAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNi8wNS8wNE2+5nEAAAAldEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIE1YIDIwMDSHdqzPAAAgAElEQVR4nO3df4wb14Ef8K8U2TJHPyyZG9tra9SzHXESXNKQcpKeKdTORVSCwtm93B/XVVLgEPbiBpCApEFXV6NANo1yRdXzormiWF1aO6GAtlfvFW1SblXk4t00daJxfjQic3GQzMq/ItpexdnRr5VIWbI1/YM73OFwfrwhZ4Yc7vcD2OQM37x53F0tv/vemzcbDMMwQERERESh2tjvBhARERENI4YsIiIioggwZBERERFFgCGLiIiIKAIMWUREREQRYMgiIiIiigBDFhEREVEEGLKIiIiIIsCQRURERBQBhiwiIiKiCDBkEREREUWAIYuIiIgoAgxZRERERBFgyCIiIiKKAEMWERERUQQYsoiIiIgiwJBFREREFAGGLCIiIqIIMGQRERERRYAhi4iIiCgCDFlEREREEWDIIiIiIooAQxYRERFRBBiyiIiIiCLAkEVEREQUAYYsIiIioggwZBERERFFgCGLiIiIKAIMWUREQ6her0NVVczMzKBWq/W7OUTr0qZ+N4CIiMKh6zoqlQo0TUO1Wm3tP3DgQB9bRbR+MWQRESWYGaxUVWWPFdGAYcgiIkqwUqkETdP63QwicsCQtU6cOXcZSxcaWDy3AsDAmaUVrDSuAwDOXazj9YsNwDAsRxiAsfoIYHRHCnfvkFrbD943AsDA6M4tGN2Zwp7RHdiWuiXGd0RERDTYGLKG0JlzKzj98nmcfuU8zpxbwdLFeltgAtAKVIa5z+h8DZbXli7UsXThamu78tJv18qs1r0tdQveNXo7HrzvnXj4d+9B5p4dkbw/IiKiJGDIGhJnzq3g6R/+GpVXLmDpQgPoCE8uAcslfLke79HbtdK4jsqLv0Xlxd/iqflfIHPPDkzs24NHP/A7vb9BIiKihGHISrjTr1zA17/3Ik6/ct6SlboJWIb/8R4By+n4xdcu4Ct//WM89czz+OI//BD2PnBnV++RiIgoibhOVoL9xbc1HD7x/8QClmHEELAMx+OXLlzFoa99F0995/nu3igREVECMWQl1J996xeY/eFZ+AWc9u1eA5YB74CFzvLG2vZTzzyPr8z+KOhbJSIiSiQOFybQ17/3Ek5WX4dvwGnb9gpYQQKX1/HoDFi2sid/8hIAA1+c+D3Rt0tERJRI7MlKmKWLDTz1vRcRLGAZ0Qcsy3CkX90nf/ISZr//K+H3TERElETsyUqYr3+v2RPkFmJGd9yGiYd+B5nR7di6eROWLjbw9HMv4/RLukN5l4Blfw3wnpMVcEI8DANf/dZP8fDv7sLoHVsDfgWIiIiSgSErYdYmuXeGmD13b8Pxf/whbL1tbVHQPaPb8fB77sLJ0zV85X/8DO4hyKW3CmgPUV1PiO88/qnv/BxfPPiQ4DsnSr56vQ5JkvrdDKLIlMtl3zLj4+Mol8sYGRlBPp93LadpGjRNw759+5BOp8NsZmw4XJggSxcb7WtgWQLW1ts2dQQsq0f3yvjMR/Y4DPFZty3PAwUsA0EDFgCc/PELWDp/xftNEyWcrusol8t4/PHHsbCw0O/mEEVqw4YNbf/Nzc117AOAubk5lEol6LruWtfc3Bzm5uY8yww69mQlyLmL1+A2DPdo7l7XgGWayN+PpxZW73EWaEJ7j/O1HMs3H599voaJh9/j2W6ipKnX61BVlTdtpnVnbGysbbtcLnfsM42MjKBarWL//v0dr+m6PhT/dhiyEmTl2o3VZ50h5uF3+y/0ue22W5AZvR2Lr19cqwfoak5V+7ZTebEesNMvnmPIoqFQr9dRrVZRqVRQrVb73RyigVcoFPDMM884hqz5+Xnk83nMz8/3oWXh4XBhgpw5t9I5xAfYQpK3LZvNXB1HwDK8hxgNYKV+XbjtRINsYWEBpVKJAYtIkCzLkCQJmqZ1vKaqKgqFQh9aFS6GrCTxuE3O4tJloSoqLy8jvIBlOJQXPH617JUGQxYR0XpVKBSgqmrbvmq1ClmWEzvZ3YohK3Gsk9aN1T0GTp5+1ffIk6fPIljAMhzKu0yI9wpYHmtoLb6W3AmNRETUm1wuB1VVUa/XW/tUVfW86jBJGLKSyGEV9zPnLuGrJ3/hesji0iV89X/93Hb8aogKMqfKQGfAgrW8LaAJ95YREdF6k0qlkM/n8dxzzwFoTnjXNI0hi/rE4zY5s8+9hD/9zz/B0oW1vwhWrt3AydNncejJH+DKtRu9TVoXmW9l2LYtrXU6FzMWEdH6tm/fPjzzzDMAhqsXC+DVhQnjHrDMxPLsL5fw7C+XsPW2TRjdIeHM0iV0hh6BgBXKfC3v4w1GLCKidS+TyQBoLj566tQpHD58uM8tCg9DVuIYlrzi3st0pXEDZxqXHF9rPniEoNAClnuYY8AiIiLTgQMHcOLECUiSBFmW+92c0HC4MGFEAlb7nCjba0DnnKrAActwKN9lwAqw/AQREQ2nfD6P5eXloVi2wYo9WQniG7D8Ak5bGafyAYYTuzzecGoHERENpSeffFJofyqVcizrdnxSMGQlide6VANymxyvHjHngMWwRUREw4khK4m6CDh9C1iWtbzc20ZERDR8GLKSpq8BS+T49oBleJa11k1ERDRcGLIS5DMfyeAzH8nEcq5DX1vA6RfegHDAcpx/5VK29cCARUREw4shi5x59WAJLzIq2FtGobDfZHWQL4XWdX0o7ktGyVGr1dpu3WIaGRkZqp9FXdexvLzcsX+Qfx8MM4Ys8uE2wd7htW4CFjNWILVaDbVaDWfPnkWtVoOu69B1//s/ptNpyLIMRVGQy+X68qFSr9dRrVahqio0TUv8VUPriT3AA4P9oW3emkXTtNa/GT+ZTKb1b0RRFEiSFENLu2e+x+XlZWialqjfBevJBsPgtfRxunLtBk6/fB6L5y5j6UKj7RY4RsczpyE6+7ZXj5DPpHXDVtby/IXXL2Kl/qbLuZzqFglYzsf/6N//k7Xdl04A119pr9+pnWZdm98L3HInIP09YOMWDCMzlFSrVce/xLuhKAr279+PXC4XSn1uzGBVqVRQrVbbXoszZM3NzaFcLnuWGR8fx9jYmG9d09PTjqEjTIqiYHJyUqisSHuOHDnSWlXbS71ebwsni4uLvsfIsoxMJoN9+/b1PXSpqur4s9aNfD6PfD4PRVFCaFnvzO9NtVpthaowKIrSeq8UPvZkxeRk5TU8+8vf4NlfWeY5edyHMPRJ63HfJifQ8RbXfw28+QtbwLLVYX1sPL+2vfX3gTs+BWy6s7PehNE0Daqqhhqs7PVrmgZFUTAxMRH6h2OYH3YULa8gLMLsKVpYWICiKBgbG4s9mKiqinK5HFrwMOtUVbVv78kU1++CcrmMYrE4MKFyWDBkRez0K+fxZ9983tJj1Rli1nKEYMBymtM0SLfJCRrQ2th7sASClvm48l3g6g+B9GPA9v1IIk3TMDc3F3lPifV8R48eRbFYDPUv2VKpFFpdFA1d11Eul0P98DY/sPfv34+DBw+GUqeXer2O48ePR/rvxfqexsfHYxtGjPt3ga7rmJ6eju17t14wZEXkyrW38Bff/hVOVl71DDHiAcsl4LTV1153x2t9DVgOxzuNVHcbsMyD374KvPFV4MZvgPSnOusfULVaDbOzs7H9QrUrlUrQNA3FYrEv56f41Ot1zM7OQlXVyM6xsLCAxcVFTE5ORhZKNE3D8ePHI+ndcbKwsIBqtYrDhw9HOiwad7iyi+N7t54wZEXgyrW3cKj0Y5w5d7m3gBXabXIc6nYasgvtNjlBAlaIPVnW48//l+Zcre2Dfx+scrmMubm5ro93moDsdiWVF/NDl0FreM3Pz2Nubi6WYFKr1TA9PR3Jh7Wqqn3pLTV7ew4dOhT6sJqu65idnUWlUgl8rFtbug1qUX7v1huGrJAFC1geISiG+wgGO76zrcIBy6+3rEOPAct8PPdvgc33N/8bQLquY2ZmRujKJ6tcLgdFUVoTjt3Yr+YToaoqRkZGhCaAr1duvRjLy8u+c4LS6TRGRka6Pke3lpeXUS6Xu/rQlSSp61BWq9Vw/Phx4Un8IoIGLFmWW/9mdu3a1RYarFchig6b1ut1TE9PhzrEHjT85nI5ZLNZKIrie3Xg4uIiKpUKVFUN9H00e9f5R1dvGLJC9s//a8USsDpDjGMw6SkgCYSYMAOW321y7Mf7ti2inizz8Y3/AMj/BoPG/EtR9JeeeQVQNpsV/stSkqTWVUOapqFUKglNDC6Xy8hkMpwA62JiYsJxv8gVjPv27etLgBUNJel0unVpvyzLHR/gtVqtNSFc9GdX0zQsLCxg//7e50kGCVi5XA779+/3/DlOp9OtfyP1eh0LCwuYn58Xem+zs7OQZbmnQKzremuo3o8kSSgUCigUCkilUsLnyGQyyGQyGB8fx/z8vO/PqJWqqshms5FfhTzMGLJCNPvDX+P0y+aHWFgBy6O3q+eAFTAECd2HsJsw115NaAELBnD1b4FLzwC3H+g8V58ECVj5fB7j4+M9r2WjKAqmpqYwPT0t1HNWKpUwNTXFoYJ1IpfLtUK8F1mWMTExgfHxcZRKJeGhraeffhrZbLann+NarSYUsCRJ6mo4T5IkjI2NIZ/PCwUfs0dramqqq/elqipmZ2d9fw90G67sUqlU6yrJmZkZ4ZA8OzvLkNWDjf1uwLBYutjAU999YXXLJZgYsAWCqAOW4VBe8HiHthrm++g4V0gBq605tsDkF7AMa3lbm85/y/1cfSAyLJBOpzE1NYVisRjaYoGSJGFyclLoL29d13uaJ0bJkM/ncezYMRw6dMg3YFmlUikcOnQo0HBZkB4Uu3q9jpmZGd9ysixjamqqp17YdDqNyclJofdmtqub4VSR3kDzj6OxsbGeApZVJpMJNNfKHFKl7jBkheTr/+cFXLl2A20hwh6wuu1B8gwxgj1QXue3tNXtXOY7cT6XW9vgUt4W0KzsASlwT5atTQaAay8A117EoBD5hVwsFiO5gkmSJBw+fFjoF+z8/Hyo6w7R4FAUBUeOHOk5xBeLReFejqBzgqxOnDjh+7No/hER1h8lonOuzDXCohBGL7YTWZYDzbXienfdY8gKwdLFBk5WXoNTwOktYIXQS9QxydwW0ATCXPcBy/Bom9H20KajJ8sanqyPtv0dr1mOP/9NhxOtT+l0WnheUC+9DzR4JElCsVjE5OSk0ArwIorFonCvyHPPPRe4fk3ThIYlDx06FPrwtuhCveVyOfAFLP0WZK5V0t7bIGHICsGzvwy6iru5TzSECAYsw77tULdTz5Bj3SIBy+goLxwmW4faUpZTQLK/17YytnZ09GStbl8+BVpTKBSE/kJWVZW9WUMil8vh2LFjod8+JZVKuV4MYNfN8gQi87D8Jrh3S5Ik4fc2Ozsb+vmjJvreGLK6x5AVgpOVV5tPhAKWsfafVwhpPbiEGIEhPu+6RQKWQ3gJcHzbc8e2GsjscricvSNg+fRS2c/h1Mv19pWBGjIcBIWC2Bpi8/PzEbeEonbw4EEcOnQotHk9dvl8XqgXKeiHtUjIlyQJ4+PjgeoNwryy14+5FESSmDeL9hPXgq/DiCGrR1eu3VhdsmEtEAS+D6E9hADw7CUKZUK8ue0VsOBzvNf53eu2NBBbpc1o8/YVdAYsazusAcuhTq95W+zNaiPaoxHlyuAUjzhu3Cw6UTxIz6jIcPVDDz0U+VWwoiEuiReL8MrBaDFk9ej0K+dtAQuCAcslhADtIaaLIT7nuty2O48Xv02OQ9vatr2+Dk333LGtbRvXX3YIWLYeq24CFgBc4eRNK0mShK4oMxc1JfIiOlwnGrI0TRMqe+BA9MuzpNNpoX8rom0eJFwPL1oMWT06s3R59ZngbXK8QohZxhTZFYcCAcs+HOl3fNC5ZKv2Zu5d23ANWD6P1vN7PV79Wcf51zvRX7DdzKWh9SXIEhAiRHpQnRZMjYpoz2/ShtejGkKmJoasHp1++TzWApYl4LiFAK8QIhSwHHqQnEKMb0DqbGugVdxDCFgA8KA1ZDWe7zwmrIBl1tsw1zIjQDxkJW2uCfVHmIFHpPc0rCskReRyOaFhyaT9W4ljKHk9Y8jq0U9fXrYErFWuQ3wiISRgD1LXAau9reHeJkcsYD3y/vtxt3W4cGWh/WsXdsAywN4sG9FfsLquJ24YhOIncl9GEYuLi0KTreOeTyQS6mq1Gv+tUAtDVg+WLjaaT4R7oOATQkRCjFP5IAGts62et8lxuSrQt26fgAUABz/y/rWNt96wXP0XUcBiT5Yj0d4AXsZNcRHtDYq7F4Y9vxQUQ1YPzixdRvCAhbV9gQNWDwGtLTA1nzdrczqXW90i79WlvM3Bj7wfe/fcs7bj/F+t1SPSk9VNwDIAXF9ybdN6Jdr7wJBFcRG9YXLc99YUDXX8t0ImhqweLC5dWn0WsAfJM8QI9kAFDVi23i7DrWzroZuA5RTQOmV2jeCxRz+0tqPxc+Dygnsw6rYny+m4FV4lZyc6j4Z/nVNcRELKrl27YmhJO9GeLIYsMjFk9aA5XCjaA2Vu99hLZH/Nfn77VYEO5+o+YImESdt7scnsGsFffuEPsTV1a3PHzavA8lPtAakVjGxfL+v+bgKW+fj2Fdf2rUeivQFckJDiIvKzFncvVhAMWWRiyOrB0oWrtoAVNIT4BCzDvu1Qd+t46+tOdYsELMOjbT5hsnWoe8Dam7m3PWABwPKTa3OxnN6rU8BqNcPWbqGgZnBelg2HQGiQiP6c9euqOJE5jPyDhEyb+t2AJLvSuAHhENJ6cAkxoczX8j6+91XcXc7vE662pTbjsY9/EBO///72F974C+DSfHv91qDXEbQc2toWouztcjmeiAZWo9HodxNCUavVuDwCMWT1on1OFtaeA8FCTGgByz3MhXObHOe63QJWZtcIPv7Qu/Ho772nvfcKiCBg+dVjeVypAFvDXThxveAHB5GYYQmL1BuGrJ75hBDAIRi4vBZSwNr7rruQufcObE3d4pB/bDsce3eMtgfnEGU47jZXcM/sGukMVkBzDtbSvwLqfwt0BCSX8Ck878p8TeA46go/OIiIxDFk9cKvB6mtjFP5AD1Inscb2Puuu/HoBx/AI++TsfU2h3AzCC7+z+ZSDW9fRfgBK2A91DLIE4iJiJKMIatngsNoYU6It2zvfdddeOxj70fugbt6extRuXkVWJkHLpaBG7/pLRgFCVqex4f4/oYAh/+IiKLBkNUTkYAkMuTndbxTeQPbUrfiMx/7u5h4+D3uzXvrLGBcdQkVhuem40GGz+vm7rd+A9x4A6j/CHjzRf9gFXbAYk9WILxqkIgoGgxZvep5TpVTee/jt6VuxfHDH8Wee3ba2lIHrn0fePP7wI2z6DqAhBZkBI7vS8Bi0LLi5eZE4WMPMQEMWT3J3L3d4QrDIAEreEBzDFhGHah/E7j2g+bwnL2+qAKS1/Fh1xN2cCOigSR6B4JB/+MglUr1uwk0ABiyerA1dcvqM7eAZPlA9wpYHT0sAQLWW2eBlX8HvL08eAFpUAMWc1bXRD8Aibol+jPWr2FukfPyYhIyccX3HozulBB5wDKMVpkvfjLfHrCunwYu/evBDFiGYCCKPWAZwPa9oDVBegQYsigOIj9n/VpOROS8HCokE0NWD0Z3SsECljVU2F/rON5oK/vI+3bh4fda/uG+dRZYeRIw6tH0HIURkGIJfIZLfYZHvSALTnynQTMyMuJbph8/t7quC5VjyCITQ1YPMqM7EChgtZW1BSzDKSi0KsIXPvEhy2a92YMVVcAKqz63IGTd73i8IdgOa2iyHw/3erfnQGtEe7IURYm4JURNoj9rcQet5eVloXIMWWRiyOpBc7gQcAwengELa8/N8q7bBh794AO4e+eWtRNf/asIApZbsAkakGzttwche0BybIdlv2s7bMd0HO9QxgCweRTUTvSDikOFFJdBvWm5pmlC5fgHCZkYsnqwZ/T29iAAtIeHngNW8+HgI5a1sN5ebi7T0BFk3Hp6fAKVPdh49RQJBSSHoOkVfvzKOLbD4Wvt+DVw2M/5WB1EP6h2794dcUuImrJZsXuLioaesIgMF6bTaf5BQi0MWT3ae/87ESxgOQQfj4A1escW7LnnjrVqr/2NS0ixnUO0p8jeLq9eINfw41TGHu6cjnFph7V9nuHQWsYjZFq/D1IGtKZWqwlPIM5kwv3acS4Yecnl/If14w5ZIudjLxZZMWT1KHPP7c0ntiE+94AFh/Ju2wYeeZ+t96Dx/bbX254H7imytcs1yNjq9Qpq1sewAlKY88d2PgxaI/ohJUlS6PNMeLNp8iLSm6XremxhXdd1oZ6sQqEQQ2soKRiyerT3gTsdApLledcBq2nUOherdZscpwBinku0p8gpYLk9OgUsr4AkWq/LcUHr8Tve/DptHuWcLBvRkCU6fBOE6CRiWp9EerIA4NSpUxG3pKlSqfiWSafTnPRObRiyetS8whAQC1i2sAJ4BiwYBjL3WoYK3172CCBBe4osj35BKEggChKwggSkXtsFADsfAa3RdR3ValWo7L59+wLVLfJBE/dQDyVLKpVCPp/3LaeqagytETvPgQMHYmgJJQlDVo/u3inZhgy9AhbWnrfKW16zBSxrbQCAt36NyAJIPwJWWO0TDWrvHAOtEe0BSKfTgedjiax4LRrwaP0aHx/3LdNoNCIPWpqm+Q5LSpIkFAppfWHICkH7kCHaP/ix+ugXsGy9XYa1LNBZNuwA4lVPPwNWWO3bPAps2QNqqtfrmJ+fFyrbzV/nIldX1ev12HohBgWHSINJp9NCw4blcjnSexmWy2XfMoVCgfcrpA4MWSF49MH71jbsw3/2gGWdjO7S2+UcsNB5TFgBxOt40aAWVcAKq32jn7R/Ide1UqkkNPG827/ORa+wivrDMU4i71l0xXBaMzEx4VtG13XhPxqC0jQNi4uLnmXS6TTGxthTTp0YskKw554dzQnqrgHLQCtgtQgErLby1qpDDiBxDTlG1TMmUs+dyfoFqKpqZOFDVVXhobqJiYmu/joXnbSs6zpmZ2cD1x+EpmlCk5Z7JfJ14rIVwaXTaaFhw7m5udC/vvV6HTMzM77lDh48GOp5aXgwZIXkMx997+ozh4Bjbre4BSzDpby16ggCiF89YQS1fk6ef+fHgXdsRZKoqorHH3889OG0Wq2GUqkkVFaW5a7nmIhOWgaa71W0TUHouo5SqYTp6elYwo0sy75z0er1OueidWFsbEzoYoonnngitD9O6vU6pqenfXt8C4VCJFff0nBgyArJox+4D6N3rP6C9byC0Ctgwfn4tRfCDyCiASmMQOTZDoevTWufU32GeL27P4skajQaKJVKoYUtVVVx9OhR4fLFYrGn84n0PphUVcX09HQow2n1eh3lchlHjx6Nfc6XyIdtVMNaw65YLPqG2EajEcrPUb1eR6lU8g3nsiwH+jmn9YchK0RTEw/5BCy0hwihgOUQtKzlegogovWZ5Q2XegSCkGEr3xGw4NAeA2tfBpf9XkHNMJrDhAlfG8vskfnc5z6Hcrkc+ANE13U88cQTgXqLisViz+v9iA7zmDRNw9GjR7t6j+bxpVIJn//85zE3N9eXuV4iS11omoa5ubkYWjNcZFkWCv61Wg1f/vKXu14iRNM0TE9P+/Y4SpKEYrHIye7kaVO/GzBMcg/ciUc/eD9O/uTF5o5eA5bTkKF1v2uwaRV0DzL2/V71mNs9He/WDof36hjmHPY71mPZ3rQNuG8Sw6LRaGBubg5zc3OQZRmZTAaKomD37t1tV/PV63XUajXUajWoqhp4qCyfz4d2KfrY2Bg0TRP+wKvX6633mM1moSgKZFl2HIrTNA26rkPTNFSr1YGYQJ/JZJDL5XzngJXLZdRqNXz6058WWu6CmrLZLIrFou8fDGaPViaTwfj4uNBFCZVKRXi+oiRJmJyc5MKj5IshK2Rf+MQHcOb181h89fzqHoGAZZ+v1bHP+rJPEBIKILb9IvW2lbHXGyAgdZwr4PGe78/2+K5/CWxK1lwsUWaIWlhYCLXefD7f8zCh3eHDh/HEE08EDnvVajWR85eKxSI0TfMNfZVKBZVKBfl8HtlstiMskzPzDwCRntnFxUVMT0+3VmJ3CkXmGliit3liwKIgGLJCtvW2W3D80EdxaOY7WHxtdcjDIcyIBSxb0OopYLns96rH/tjRBqf31mXACnt4c/STQPrDSCpFUWJfET2KgAU0J8EfOXIEMzMz62KV91QqhcnJSUxPTwv1rqmq2jZ3LJ1OI5vN8oo1D/l8HpIkoVQqCX2NzfsO9hrazSFLBiwSxTlZEdh62y04fvgADj78nmABy4BD2LBxnM/kFEBiDFiGQzuc2hdXwLrvnwH3J3uYcHx8HFNTU8LrTfXq4MGDkQQskxk84r55rrnO17Fjx2I9ryzLmJyc7KpnStd1vPrqqxG0arhks1lMTU3FFngKhUKs56PhwJ6siGy97Vb80098EI+8bzee/HYVp88swYxYzQdbb5U1RNhDRZseA0iQQBOk3kGo5/YHAfmzzcchYH5QLy4uolwuR9ILpCgKJiYmYvvgmJiYQC6Xwze+8Y1IF+bM5XLIZrPI5XJ9m5gsyzK+9KUv4emnn153K9vHJZ1OY2pqCqqqYnZ2NpJ5eXH/G6HhwpAVsdwDd+H44Y/h3Pkr+L8/P4ufvrCElfp1nHlNx0rjzWahMAJW2EEmquAW5vHb964+Pgjc8WFgS7D76yVFJpPB5OQkarUa5ufnQ5nkrShKqBPcg8hkMjh27BhUVe36SkK7dDoNRVGgKErXwSqK+VCpVArFYhHj4+Mol8sDM0F/2OTz+dYFB/Pz86Gsi5bP57Fv377A9+0kstpgGG4zrGngXP5vwOW/jidg7f5zQHpftO9nnZqenvbtlTpy5IjnL/dqtdq6ak/0A0WW5VYPzyD9VW69ClKkt05RFEiS1JrILMuyUEB67LHHPF/3+5qHoV7rvpUAAArWSURBVNFotL5nmqZheXnZMWQqioLJSbEhb5FJ27Isx9KjNyhtMedfaZqGs2fPCgV5RVFa90pUFCXyNg7K1wqA722DADBsdok9WUkT55AcDaxsNtu28KX5S7JWq7V6StLpNEZGRpBKpQYqVNnJstxxfzr7L/1ef8GLfIjEIZVKtb53Yd3rbpC+t4PSlnQ6jf3792P//v2tfW4/A+l0ui9XdQ7K1wpggIoSQ1bixBWwGLSSxPwlOSy/LIflfdDg4M8U9QNDVqLEMCfLLPebrwEbpLXybfU4tKdtG871wna8Wd+7/W/AShQ1rtxNRGFjyEqSOIcKGy/0Xk+gdhH11yAN3xDRcGDISprQgpa1VynMoGart3WctZfLtp+IiGgIMWQlThgByeV4h4VTXQOSYz1dBCxmLIrB8vKy5+vsxSKiKDBkJUoYAckevoIe79YOh+E/x1XgHfYTRczvEn7epJmIosCQlSQdvUGr/wsrYAUJSB3ncnhkwKIBwZ4sIuoHhqykcQ1YHkEmyLCi6/GW/V7Hd7t6O1GE/HqyRkZGYmoJEa0nDFmJ4hdo4BKQBANWL7fH2ZYD3vlHwI6/39z35hKg/2/gta/7H08UMb+V5NmTRURRYMhKmkG4D6G9fPofAH/nX7S3c/MocM+fNMPXLw/710MUkWq16luGC1USURQ29rsBFEBbb9XqjrgDlmErf+vdwK7Pubd5217g3j9hwKK+qVQqnq8rihJTS4hovWHISpp+Byx7fXf+EfCOrd5tvnuisx7z+FtHxd43URfq9bpvT1Yul4upNUS03jBkJcnGLc1Ho48By96Tldrj3+53bGv2aDm16zaGLIrOiRMnWjfMdmO90TYRUZg4JytJbr2v+x6nsAJW10N9LvX49YIRdUlVVd+hwnw+j3Q6HVOLiGi9YU9WkqTe23wU7cmKOmAZBlBf9G/3WyvApdPO9Wz/gOCbJxKnqipKpZJvufHx8RhaQ0TrFUNW0mzbv/okpJ4sz3oM//rOzfq3eenpznrN49MfFnjTROLK5bJwwGIvFhFFicOFSbPjD4BLz6xuWMKKY0Ayi3UbsOAQsIzWJgwDuH4OeOkrwP1fdG7v1UXg1f/o3K47x5pLPRCFQNM0zM7Oolar+ZZVFAVjY2MxtIqI1jOGrKTZfB+w8w+AC9/qImDZAhJs5TsClr0eh+MNA1g+Cbz5OnD3QWDnI839by4Bb8wBrz7pXO+mbcDuz/b0pSACmuFqbm7Od8FRkyzLOHz4cMStIiJiyEqm9D8Crv4MePOl3gJSVwHLXs/q9uXTzf/c6rE/3j/JXizqmqZpqFQqqFarvrfMsZJlGUeOHEEqlYqwdURETQxZSbRxC7D7z4Gzfwpce7G3gGQt3/PaWS7tsD9mvtwcKiQSoGkadF3H2bNnUavVsLgocLGFg3w+j4MHDzJgEVFsGLKSygxar08DK2qAgISIApbA46ZtzR4sBixyYfZQ1Wo16LoeqJfKjSRJKBaLXA+LiGLHkJVkG7cAu74EnP8m8Nv/1FwqAQg/IIURsG7/QDNgbeE94shdo9HAwsJCaPUVCgWMj4+z94qI+oIhaxjc8YfA7R8Fzh0HLvxNc19YAanXoLZ5tDnBnb1XJCCM+whKkoR8Po9CocAlGoiorxiyhsU7tgD3HgHu/ONm0Fr+78DbK9H3ZLnVc/uDwOinuA6Wg0KhAEmSfFcjX49SqRRkWRZahsFOlmUUCgXkcjn2XBHRQGDIGja33NUMWnf+MXD5FHDpB83/nAIXEG7Auv1BYOeHm8GKVw66ymazyGazaDQaUFUVp06d6ipUDCtFUYS+HpIkQVEUKIqCbDbLXisiGjgbDCPwTegoiRovAlcqwEoVaCwCb55DT0HrHdsAaQ+w/cFmuNq+N653MpR0XW8FLl3XceTIEWQy63P+WrVaxczMTNu+dDqNkZERyLKMkZERZDIZyLLcpxYSEYlhyFqv3r4KNM40Fw29vtQMTyunW7nLcikikMoAm7auBavNo+ypilCtVoMkSeu2Z6bRaKBWq7WGDomIkoohi4iIiCgCvEE0ERERUQQYsoiIiIgiwKsL14PVEeG4x4U3AMCGDTGflYiIaDAwZCWdYYiFp5iD1gbBczGIERHRsGLISgqvMCUQtOK+vsHAaoDysAGAsWGDZakI2+sMX0RElGAMWQPKNRS5BCq38l7hKszg5RSImktqGa6vu9bVPKCjfez1IiKiJOESDoPCKTwJBiqnb6HoPq/9IrzCk9Nr9n0d282dvvv8zk1ERNRvDFn9JBisvEKVX+Bq2/YZcgTE52z59Sp5hSnfoGUt63Aex30MXERENGAYsvqg40vuE6xEQ1brub0+27ZX3d3oOkAFfd7c4brtto+IiKgfGLJi5BuuBMKQb6iyPHc6xqu+bomErCCBKmj4ctxu7hR9C0RERKFjyIpDD0OA9jDkF7IMw3Cs2+18YYasIAGr29c8nzd3OLaBiIgobgxZUfPprXLqebI+FwlcbmX9tu3HOG27Ee2Bsu9z27YGpCBBzP5cZJuIiCgODFkRE52IHiRM2feJhqsgocz+utuVgm4BSDRc2bf9Hv32AezRIiKiwcB1sqLkMAerbdPxEPf1sexl/AKVSNjy2ufGDEWGYbTCy8aNGzvOZy1nHmc9lzX4tOoyjNYaWRscHu1fq9a+1eOA1YVQLdtERET9wJAVoY55WG7lBCamWye2u9XhtQ6WSMC6efOmaxkzMNlDkxl0bt68iY0b3e837hSsrK9tsAYk11rc+R7H0EVERDFjyIqQ/f59bvfzswYX+z77I1xuQ2PvJXJ7zd4rZN1n743yGyK0vm4PWE7zotyG7DqG+rrQcZz9XAxYREQUM4asKNkDkW3bKXQ5BS57eaegZB5rblt7nZyG7qznM928eVN47pLbfCy314TnXAnMyXI6JzyCGuMVERH1Aye+R81+NSGCTX63Pu+YsG64L90gcjVht1cYii6tEORqQ5GlHLiMAxERJQlDVkz8goxowHLc5xDUgoSpXn4E/JZS8NsnEq5cyzU31vb7bBMREcWJIStO9l4tn16uboKXSFm/Y4LwClnWfa7BSHCJBq9zsfeKiIgGEUNWP/gNIfpsB33ezbYoz56s5k7HbZGhv6D1O5UhIiLqF4asPuv48jsEMPu+bgOZ1z77+Tz5BBmvoGTfDlIWcAlWAm0iIiKKG0PWAHH8VgiELrdjgwasID8Kfj1GvlcDuuxzLNN8wXcfERHRIGHIGlRO4cprP9xDkt+3OKyJ70HKuIUkr/DEoUAiIkoShqwk8QhYnq8FKRMSv56m1itugcrneCIiokHHkDUMRMOTeaVhhE3xC08d5RmkiIhoSHHF92GwYYPwqubd3hswiKBBi4iIaBgxZK0nAcIYERER9WajfxEiIiIiCoohi4iIiCgCDFlEREREEWDIIiIiIooAQxYRERFRBBiyiIiIiCLAkEVEREQUAYYsIiIioggwZBERERFFgCGLiIiIKAIMWUREREQRYMgiIiIiigBDFhEREVEEGLKIiIiIIsCQRURERBQBhiwiIiKiCDBkEREREUWAIYuIiIgoAgxZRERERBFgyCIiIiKKAEMWERERUQQYsoiIiIgiwJBFREREFAGGLCIiIqIIMGQRERERRYAhi4iIiCgCDFlEREREEWDIIiIiIooAQxYRERFRBBiyiIiIiCLw/wHFhXehSRmsyQAAAABJRU5ErkJggg==\",\n      \"text/plain\": [\n       \"<IPython.core.display.Image object>\"\n      ]\n     },\n     \"execution_count\": 1,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from IPython.core.display import Image\\n\",\n    \"Image('https://www.python.org/static/community_logos/python-logo-master-v3-TM-flattened.png')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Welcome to Academic!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"Welcome to Academic!\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"editable\": true,\n    \"slideshow\": {\n     \"slide_type\": \"\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## Organize your notebooks\\n\",\n    \"\\n\",\n    \"Place the notebooks that you would like to publish in a `notebooks` folder at the root of your website.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"editable\": true,\n    \"slideshow\": {\n     \"slide_type\": \"\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"## Import the notebooks into your site\\n\",\n    \"\\n\",\n    \"```bash\\n\",\n    \"pipx install academic\\n\",\n    \"academic import 'notebooks/**.ipynb' content/post/ --verbose\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"editable\": true,\n    \"slideshow\": {\n     \"slide_type\": \"\"\n    },\n    \"tags\": []\n   },\n   \"source\": [\n    \"The notebooks will be published to the folder you specify above. In this case, they will be published to your `content/post/` folder.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"editable\": true,\n    \"slideshow\": {\n     \"slide_type\": \"\"\n    },\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"front_matter\": {\n   \"summary\": \"Easily blog from Jupyter notebooks!\"\n  },\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.11.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "templates/data-science-blog/package.json",
    "content": "{\n  \"name\": \"hugo-blox-blog-starter\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"description\": \"Blog starter template for Hugo Blox with Tailwind CSS v4\",\n  \"scripts\": {\n    \"dev\": \"hugo server --disableFastRender\",\n    \"build\": \"hugo --minify && pnpm run pagefind\",\n    \"pagefind\": \"pagefind --site public\"\n  },\n  \"dependencies\": {\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.10\",\n    \"pagefind\": \"^1.4.0\",\n    \"preact\": \"^10.27.2\",\n    \"tailwindcss\": \"^4.1.12\"\n  }\n}\n"
  },
  {
    "path": "templates/dev-portfolio/.devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"HugoBlox Codespace\",\n  \"image\": \"ghcr.io/HugoBlox/hugo-blox-dev:hugo0.156.0\",\n  \"updateContentCommand\": \"pnpm install --frozen-lockfile --prefer-offline\",\n  \"postCreateCommand\": \"pnpm --version && hugo version\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"ownable.ownable\"]\n    }\n  },\n  \"mounts\": [\"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume\"],\n  \"remoteUser\": \"vscode\",\n  \"forwardPorts\": [1313],\n  \"portsAttributes\": {\n    \"1313\": {\n      \"label\": \"Hugo Server\"\n    }\n  }\n}\n"
  },
  {
    "path": "templates/dev-portfolio/.github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": "templates/dev-portfolio/.github/workflows/build.yml",
    "content": "name: Build\n\nenv:\n  NODE_VERSION: '20'\n\non:\n  # Standalone trigger for PR validation\n  pull_request:\n    branches: ['main']\n  # Reusable workflow trigger - called by deploy.yml\n  workflow_call:\n    outputs:\n      artifact-id:\n        description: 'The ID of the uploaded artifact'\n        value: ${{ jobs.build.outputs.artifact-id }}\n  # Allow manual trigger for testing\n  workflow_dispatch:\n\n# Read-only permissions for security\npermissions:\n  contents: read\n\n# Prevent duplicate builds for the same PR\nconcurrency:\n  group: build-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    outputs:\n      artifact-id: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        # Fetch history for Hugo's .GitInfo and .Lastmod\n        fetch-depth: 0\n\n    - name: Setup Node.js\n      uses: actions/setup-node@v6\n      with:\n        node-version: ${{ env.NODE_VERSION }}\n\n    - name: Setup pnpm\n      if: hashFiles('package.json') != ''\n      uses: pnpm/action-setup@v4\n\n    - name: Get Hugo Version\n      id: hugo-version\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read hugo_version from hugoblox.yaml\n        VERSION=$(yq '.hugo_version // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        \n        # Fallback to a known stable version if not specified\n        DEFAULT_VERSION=\"0.154.5\"\n        VERSION=${VERSION:-$DEFAULT_VERSION}\n        \n        # Validate version format (basic check)\n        if [[ ! \"$VERSION\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then\n          echo \"::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION\"\n          VERSION=\"$DEFAULT_VERSION\"\n        fi\n        \n        echo \"HUGO_VERSION=$VERSION\" >> $GITHUB_ENV\n        echo \"Using Hugo version: $VERSION\"\n\n    - name: Install dependencies\n      run: |\n        # Install Tailwind CLI if package.json exists\n        if [ -f \"package.json\" ]; then\n          echo \"Installing Tailwind dependencies...\"\n          pnpm install --no-frozen-lockfile || npm install\n        fi\n\n    - name: Setup Hugo\n      uses: peaceiris/actions-hugo@v3\n      with:\n        hugo-version: ${{ env.HUGO_VERSION }}\n        extended: true\n\n    # Cache dependencies (Go modules, node_modules) - stable, rarely changes\n    - uses: actions/cache@v4\n      with:\n        path: |\n          /tmp/hugo_cache_runner/\n          node_modules/\n          modules/*/node_modules/\n        key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json',\n          '**/pnpm-lock.yaml') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-deps-\n\n    # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change\n    - uses: actions/cache@v4\n      with:\n        path: resources/\n        key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*',\n          'hugo.yaml', 'package.json') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-resources-\n\n    - name: Build with Hugo\n      env:\n        HUGO_ENVIRONMENT: production\n        HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }}\n      run: |\n        echo \"Hugo Cache Dir: $(hugo config | grep cachedir)\"\n        hugo --minify\n\n    - name: Generate Pagefind search index (if applicable)\n      run: |\n        # Check if site uses Pagefind search\n        if [ -f \"package.json\" ] && grep -q \"pagefind\" package.json; then\n          pnpm run pagefind || npx pagefind --site \"public\"\n        fi\n\n    - name: Upload artifact\n      id: upload\n      uses: actions/upload-pages-artifact@v4\n      with:\n        path: ./public\n"
  },
  {
    "path": "templates/dev-portfolio/.github/workflows/deploy.yml",
    "content": "name: Deploy website to GitHub Pages\n\non:\n  # Trigger the workflow every time you push to the `main` branch\n  push:\n    branches: ['main']\n  # Allows you to run this workflow manually from the Actions tab on GitHub\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: 'pages'\n  cancel-in-progress: false\n\njobs:\n  # Check deployment configuration\n  config:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    outputs:\n      deploy-host: ${{ steps.check.outputs.host }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        sparse-checkout: hugoblox.yaml\n        sparse-checkout-cone-mode: false\n\n    - name: Check deploy host\n      id: check\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read deploy.host from hugoblox.yaml, default to github-pages\n        HOST=$(yq '.deploy.host // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        HOST=${HOST:-github-pages}\n        \n        # Validate known hosts\n        if [[ ! \"$HOST\" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then\n          echo \"::warning::Unknown deploy host '$HOST', defaulting to github-pages\"\n          HOST=\"github-pages\"\n        fi\n        \n        echo \"host=$HOST\" >> $GITHUB_OUTPUT\n        echo \"Deployment target: $HOST\"\n\n  # Build website using reusable workflow (always runs for CI)\n  build:\n    needs: config\n    if: github.repository_owner != 'HugoBlox'\n    uses: ./.github/workflows/build.yml\n    secrets: inherit\n\n  # Deploy website to GitHub Pages hosting (only if configured)\n  deploy:\n    needs: [config, build]\n    if: needs.config.outputs.deploy-host == 'github-pages'\n    # Grant GITHUB_TOKEN the permissions required to make a Pages deployment\n    permissions:\n      pages: write # to deploy to Pages\n      id-token: write # to verify the deployment originates from an appropriate source\n    # Deploy to the github-pages environment\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    steps:\n    - name: Deploy to GitHub Pages\n      id: deployment\n      uses: actions/deploy-pages@v4\n"
  },
  {
    "path": "templates/dev-portfolio/.github/workflows/upgrade.yml",
    "content": "name: Upgrade HugoBlox\n\non:\n  workflow_dispatch:\n    inputs:\n      version_type:\n        description: 'Upgrade to version'\n        required: true\n        default: 'Stable'\n        type: choice\n        options:\n        - Stable\n        - Beta (Preview)\n  schedule:\n    # Run at 05:00 on Monday\n    - cron: '0 5 * * 1'\n\npermissions:\n  contents: write\n  pull-requests: write\n\n# Prevent duplicate upgrade runs\nconcurrency:\n  group: upgrade-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  upgrade:\n    name: Upgrade\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 15\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v6\n        with:\n          node-version: '22'\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n        with:\n          package_json_path: ./package.json\n          run_install: false\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: '1.23'\n\n      - name: Setup Hugo\n        uses: peaceiris/actions-hugo@v3\n        with:\n          hugo-version: 'latest'\n          extended: true\n\n      - name: Run Upgrade CLI\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # Use manual input or default to stable for scheduled runs\n          VERSION_TYPE: ${{ inputs.version_type || 'Stable' }}\n        run: |\n          FLAGS=\"--yes --ci\"\n          \n          if [ \"$VERSION_TYPE\" == \"Beta (Preview)\" ]; then\n            FLAGS=\"$FLAGS --canary\"\n          fi\n          \n          echo \"Running upgrade with flags: $FLAGS\"\n          pnpm dlx hugoblox@latest upgrade $FLAGS\n\n\n      - name: Create Pull Request\n        uses: peter-evans/create-pull-request@v6\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          commit-message: \"chore(deps): upgrade hugoblox modules\"\n          title: \"⬆️ Upgrade HugoBlox Modules\"\n          body: |\n            This PR upgrades the [HugoBlox](https://hugoblox.com) modules to the latest version.\n            \n            **Changes:**\n            - Updated Hugo Modules (go.mod/go.sum)\n            - Applied automatic migrations (if any)\n            \n            **Verification:**\n            - [ ] Check the Deploy Preview to ensure everything looks correct.\n            - [ ] Merge this PR to apply the updates.\n          branch: \"chore/upgrade-hugoblox-${{ github.run_id }}\"\n          delete-branch: true\n          base: main\n          labels: |\n            dependencies\n            automated-pr\n"
  },
  {
    "path": "templates/dev-portfolio/.gitignore",
    "content": "# ============================================================================\n# Hugo Site .gitignore\n# ============================================================================\n\n# ============================================================================\n# Hugo Build Artifacts\n# ============================================================================\n\n# Generated site output\npublic/\n\n# Hugo resources (processed assets)\nresources/\n\n# Hugo build lock\n.hugo_build.lock\n\n# Hugo stats\nhugo_stats.json\n\n# Auto-generated JS config\n**/assets/jsconfig.json\n\n# ============================================================================\n# Node.js & Package Managers\n# ============================================================================\n\n# Dependencies\nnode_modules/\n\n# ============================================================================\n# Environment & Configuration\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# ============================================================================\n# Generated Content\n# ============================================================================\n\n# Pagefind search index\npagefind/\nstatic/pagefind/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n\n# Windows\nThumbs.db\nDesktop.ini\n\n# Linux\n*~\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n*.log\nnpm-debug.log*\n"
  },
  {
    "path": "templates/dev-portfolio/LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2023-present George Cushen (https://neuralgeo.com/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in 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": "templates/dev-portfolio/README.md",
    "content": "# [Developer Portfolio](https://hugoblox.com/templates/dev-portfolio/start?utm_source=github&utm_medium=readme)\n\n[![Screenshot](.github/preview.png)](https://hugoblox.com/templates/dev-portfolio/start?utm_source=github&utm_medium=readme)\n\n<h1 align=\"center\">The Dev Portfolio That Gets You Hired</h1>\n\n<p align=\"center\">\n  <strong>Built for uni students, STEM grads, and software engineers.</strong><br/>\n  Showcase real projects, ship a clean blog, and stand out with a modern dark-first design — without a fragile “black box” React app.\n</p>\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/templates/dev-portfolio/start?utm_source=github&utm_medium=readme\"><b>🚀 Deploy in 60s (Free)</b></a>\n  &nbsp;•&nbsp;\n  <a href=\"https://hugoblox.com/templates/?open=dev-portfolio&loading=true&utm_source=github&utm_medium=readme\">Live Demo</a>\n  &nbsp;•&nbsp;\n  <a href=\"https://docs.hugoblox.com/guides/studio/\">HugoBlox Studio (Visual Editor)</a>\n</p>\n\n\n<p align=\"center\">\n  <b>▶︎ Watch 12s Preview</b>\n</p>\n\nhttps://github.com/user-attachments/assets/a6b676c0-1c10-4734-a55f-68c6f72d1612\n\n<p align=\"center\">\n  <a href=\"https://discord.gg/z8wNYzb\"><img src=\"https://img.shields.io/discord/722225264733716590?label=Join%20Discord&style=social\" alt=\"Discord\"></a>\n  <a href=\"https://github.com/HugoBlox/kit\"><img src=\"https://img.shields.io/github/stars/HugoBlox/kit?label=Star%20HugoBlox&style=social\" alt=\"GitHub Stars\"></a>\n  <a href=\"https://x.com/MakeOwnable\"><img src=\"https://img.shields.io/twitter/follow/MakeOwnable?label=Follow&style=social\" alt=\"Follow on X\"></a>\n</p>\n\n---\n\n## Why this template?\n\nMost portfolios look the same — and most “quick” site builders produce slow sites you can’t maintain.\n\n- **⚡ Fast by default**: Hugo + Tailwind 4 + Hugo Modules → great Lighthouse scores without JS bloat.\n- **🧠 AI-ready content**: Your projects and posts live in clean Markdown/YAML — readable by humans and LLMs.\n- **🎯 Job-hunting optimized**: Projects, tech stack, experience timeline, and a blog layout that looks credible.\n- **🌙 Dark-first (but light-mode supported)**: Looks premium in dark mode, still works perfectly in light mode.\n- **🧩 Block-based**: Reorder/replace sections without rewriting templates.\n\n---\n\n## Who it’s for\n\n- **Students & grads** applying to internships / MSc / PhD / junior roles\n- **STEM professionals** (research, data, ML, bio, engineering) showcasing projects and writing\n- **Software engineers** building a portfolio that feels modern in 2026\n\n---\n\n## What you get (Free)\n\n- **Developer hero** with modern gradients + optional typewriter\n- **Filterable portfolio** (tags + smooth transitions)\n- **Tech stack** grid with icons\n- **Experience + education timeline**\n- **Blog section** (cards + featured images)\n- **Contact section** with social links + copy email\n\n---\n\n## Get started (recommended)\n\n### Option 1 — Online deployer (fastest)\n\nDeploy this template in ~60 seconds:\n\n- [Deploy in browser →](https://hugoblox.com/templates/dev-portfolio/start?utm_source=github&utm_medium=readme)\n\n### Option 2 — HugoBlox Studio (visual editor in VS Code)\n\n- [Studio guide →](https://docs.hugoblox.com/guides/studio/?utm_source=github&utm_medium=readme)\n- [Studio AI automation plans (Free/Plus/Pro) →](https://hugoblox.com/pricing/?utm_source=github&utm_medium=readme)\n\n### Option 3 — HugoBlox CLI (developer workflow)\n\nInstall:\n\n```bash\nnpm install -g hugoblox@latest\n```\n\nCreate a site:\n\n```bash\nhugoblox create site --template dev-portfolio\n```\n\n[CLI docs →](https://docs.hugoblox.com/start/cli/?utm_source=github&utm_medium=readme)\n\n---\n\n## Customize in 10 minutes\n\n- **Your profile**: `data/authors/me.yaml`\n- **Homepage sections**: `content/_index.md`\n- **Projects**: `content/projects/<project>/index.md`\n- **Blog posts**: `content/blog/<post>/index.md`\n- **Theme + identity**: `config/_default/params.yaml`\n\n---\n\n## Want the Pro version? 💎\n\nIf you want a version that feels meaningfully more premium (and helps fund open source + research):\n\n- [Premium template →](https://hugoblox.com/templates/dev-portfolio-pro/start?utm_source=github&utm_medium=readme)\n- [HugoBlox Pro / Studio →](https://hugoblox.com/pricing?utm_source=github&utm_medium=readme)\n\n---\n\n## Community & support\n\n- **Docs**: [docs.hugoblox.com →](https://docs.hugoblox.com/?utm_source=github&utm_medium=readme)\n- **Discord**: [Join Discord →](https://discord.gg/z8wNYzb)\n- **Issues**: [Open an issue →](https://github.com/HugoBlox/kit/issues)\n\n---\n\nMIT © 2016–Present [George Cushen](https://neuralgeo.com/?utm_source=github&utm_medium=readme)\n"
  },
  {
    "path": "templates/dev-portfolio/assets/media/icons/custom/.gitkeep",
    "content": ""
  },
  {
    "path": "templates/dev-portfolio/config/_default/hugo.yaml",
    "content": "# Configuration of Hugo\n# Guide: https://docs.hugoblox.com/tutorial/\n# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings\n# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/\n\n# Website name (set in params.yaml under hugoblox.branding.name)\ntitle: ''\n# Website URL\nbaseURL: 'https://example.com/'\n\n############################\n## LANGUAGE\n############################\n\ndefaultContentLanguage: en\nhasCJKLanguage: false\ndefaultContentLanguageInSubdir: false\nremovePathAccents: true\n\n############################\n## ADVANCED\n############################\n\nbuild:\n  writeStats: true\nenableGitInfo: false\nsummaryLength: 30\npagination:\n  pagerSize: 10\nenableEmoji: true\nenableRobotsTXT: true\nfootnotereturnlinkcontents: <sup>^</sup>\nignoreFiles: [\".ipynb_checkpoints$\", \"\\\\.Rmd$\", \"\\\\.Rmarkdown$\", \"_cache$\"]\ndisableAliases: true\noutputs:\n  home: [HTML, RSS, headers, redirects, backlinks]\n  section: [HTML, RSS]\nimaging:\n  resampleFilter: lanczos\n  quality: 90\n  anchor: smart\n  hint: picture\ntimeout: 600000\ntaxonomies:\n  author: authors\n  tag: tags\n  publication_type: publication_types\nmarkup:\n  _merge: deep\n  highlight:\n    lineNos: false\nsecurity:\n  _merge: deep\nsitemap:\n  _merge: deep\n"
  },
  {
    "path": "templates/dev-portfolio/config/_default/languages.yaml",
    "content": "# Languages\n#   Create a section for each of your site's languages.\n#   Documentation: https://docs.hugoblox.com/reference/language/\n\n# Default language\nen:\n  languageCode: en-us\n  # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.\n  #contentDir: content/en\n\n# Uncomment the lines below to configure your website in a second language.\n#zh:\n#  languageCode: zh-Hans\n#  contentDir: content/zh\n#  title: Chinese website title...\n#  params:\n#    description: Site description in Chinese...\n#  menu:\n#    main:\n#      - name: 传\n#        url: '#about'\n#        weight: 1\n"
  },
  {
    "path": "templates/dev-portfolio/config/_default/menus.yaml",
    "content": "# Navigation Links\n#   To link a homepage section, use a hash `#` followed by the section ID.\n#   The weight parameter defines the order that the links appear.\n\nmain:\n  - name: Projects\n    url: /#projects\n    weight: 10\n  - name: Skills\n    url: /#skills\n    weight: 20\n  - name: Experience\n    url: /#experience\n    weight: 30\n  - name: Blog\n    url: /#blog\n    weight: 40\n  - name: Contact\n    url: /#contact\n    weight: 50\n"
  },
  {
    "path": "templates/dev-portfolio/config/_default/module.yaml",
    "content": "############################\n## HUGO MODULES\n## Install or uninstall themes and plugins here.\n## Docs: https://gohugo.io/hugo-modules/\n############################\n\nimports:\n  - path: github.com/HugoBlox/kit/modules/integrations/netlify\n  - path: github.com/HugoBlox/kit/modules/blox\n  - path: github.com/HugoBlox/kit/modules/slides\n\n# Install any Hugo Blox within the `hugo-blox/blox/` folder\nmounts:\n  - source: hugo-blox/blox/community\n    target: layouts/_partials/blox/community/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox/all-access\n    target: layouts/_partials/blox/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox\n    target: assets/dist/community/blox/\n    files:\n      - '**.css'\n  - source: layouts\n    target: layouts\n  - source: assets\n    target: assets\n"
  },
  {
    "path": "templates/dev-portfolio/config/_default/params.yaml",
    "content": "# ══════════════════════════════════════════════════════════════════════════════\n# HUGO BLOX CONFIGURATION\n# Schema: hugoblox.com/schema/v2\n# Tutorial: https://docs.hugoblox.com/tutorial/\n# Documentation: https://docs.hugoblox.com/\n# ══════════════════════════════════════════════════════════════════════════════\nhugoblox:\n  schema: \"2.0\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # IDENTITY\n  # Site-level branding (for people/profiles, use the author system in content/authors/)\n  # ────────────────────────────────────────────────────────────────────────────\n  identity:\n    # Site name - shown in navbar, footer, copyright, and browser title by default\n    name: \"Your Name\"\n    # Legal entity for copyright notices (defaults to name if not set)\n    organization: \"\"\n    # Schema.org type for structured data\n    type: person                        # person | organization | local_business\n    # Short tagline displayed on your site\n    tagline: \"Full-Stack Developer\"\n    # Site meta description for search engines and social sharing\n    description: \"Modern developer portfolio showcasing web development projects, technical blog posts, and open source contributions. Built with Hugo Blox.\"\n    # Social accounts (used for meta tags like Twitter Cards)\n    social:\n      twitter: \"yourusername\"              # Twitter/X handle for Twitter Cards (without @)\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # THEME\n  # Color and visual design system\n  # ────────────────────────────────────────────────────────────────────────────\n  theme:\n    # Mode: 'light', 'dark', or 'system' (follows OS preference)\n    mode: dark\n    # Theme pack: name from data/themes/ or { light: \"x\", dark: \"y\" } for mix-and-match\n    pack: \"default\"\n    # Optional: Override theme pack colors\n    colors:\n      primary: \"\"                       # Tailwind palette name or hex (e.g., \"indigo\" or \"#6366f1\")\n      secondary: \"\"\n      neutral: \"\"                       # Affects gray utilities (text-gray-*, bg-gray-*)\n    # Optional: Mode-specific color overrides\n    colors_light: {}\n    colors_dark: {}\n    # Optional: Semantic surface color overrides\n    surfaces:\n      background: \"\"\n      foreground: \"\"\n      header:\n        background: \"\"\n        foreground: \"\"\n      footer:\n        background: \"\"\n        foreground: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # TYPOGRAPHY\n  # Font and text sizing\n  # ────────────────────────────────────────────────────────────────────────────\n  typography:\n    # Theme pack: name from data/fonts/\n    pack: \"developer\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LAYOUT\n  # Spacing and shape tokens\n  # ────────────────────────────────────────────────────────────────────────────\n  layout:\n    # Border radius: 'none', 'sm', 'md', 'lg', or 'full'\n    radius: \"md\"\n    # Spacing density: 'compact', 'comfortable', or 'spacious'\n    spacing: \"comfortable\"\n    # Avatar shape in author profiles\n    avatar_shape: circle                # circle | square | rounded\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # HEADER\n  # Site header and navigation bar\n  # ────────────────────────────────────────────────────────────────────────────\n  header:\n    enable: true\n    # Header style variant\n    style: navbar                       # navbar | navbar-simple | minimal\n    # Stick to top on scroll\n    sticky: true\n    # Menu alignment\n    align: center                       # left | center | right\n    # Feature toggles\n    search: true\n    theme_toggle: true\n    theme_picker: true\n    language_switcher: true\n    # Call-to-action button\n    cta:\n      enable: false\n      text: \"\"\n      url: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # FOOTER\n  # Site footer\n  # ────────────────────────────────────────────────────────────────────────────\n  footer:\n    # Footer style variant\n    style: minimal                      # minimal | columns | centered\n    language_switcher: true\n    # Custom footer text (HTML supported)\n    text: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COPYRIGHT\n  # Legal notices and licensing\n  # ────────────────────────────────────────────────────────────────────────────\n  copyright:\n    # Copyright notice - supports {year}, {name}, {license} placeholders\n    notice: \"© {year} {name}. This work is licensed under {license}\"\n    license:\n      type: cc                          # cc | custom\n      allow_derivatives: false\n      share_alike: true\n      allow_commercial: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEO\n  # Search engine optimization - overrides and technical settings\n  # ────────────────────────────────────────────────────────────────────────────\n  seo:\n    # Browser tab title override (defaults to identity.name if not set)\n    title: \"\"\n    # For local_business identity type only\n    location:\n      address:\n        street: \"\"\n        city: \"\"\n        region: \"\"\n        postal_code: \"\"\n        country: \"\"\n      coordinates:\n        latitude: null\n        longitude: null\n      phone: \"\"\n    # AI/LLM crawler guidance (llms.txt)\n    ai:\n      allow:\n        - /\n      disallow: []\n      note: \"Guidance for AI crawlers - customize to match your public content.\"\n      contact: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # CONTENT\n  # Content rendering and behavior\n  # ────────────────────────────────────────────────────────────────────────────\n  content:\n    # Math rendering\n    math:\n      enable: false\n    # Table of contents\n    toc:\n      enable: true\n    # Reading time estimates\n    reading_time:\n      enable: true\n    # Academic citations (disabled for developer portfolio)\n    citations:\n      style: apa                        # apa | mla | chicago | ieee\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEARCH\n  # Site search\n  # ────────────────────────────────────────────────────────────────────────────\n  search:\n    enable: true\n    # Trending/suggested search terms\n    suggestions: []\n    # Quick action shortcuts in search modal\n    quick_actions: []\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COMMENTS\n  # User comments system\n  # ────────────────────────────────────────────────────────────────────────────\n  comments:\n    enable: false\n    provider: \"\"                        # giscus | disqus\n    giscus:\n      repo: \"\"\n      repo_id: \"\"\n      category: \"\"\n      category_id: \"\"\n    disqus:\n      shortname: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # ANALYTICS\n  # Traffic and behavior analytics\n  # ────────────────────────────────────────────────────────────────────────────\n  analytics:\n    google:\n      measurement_id: \"\"                # Google Analytics 4: G-XXXXXXXXXX\n    google_tag_manager:\n      container_id: \"\"                  # GTM-XXXXXXX\n    plausible:\n      domain: \"\"\n    fathom:\n      site_id: \"\"\n    pirsch:\n      site_id: \"\"\n    clarity:\n      project_id: \"\"\n    baidu:\n      site_id: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # VERIFICATION\n  # Search engine site verification codes\n  # ────────────────────────────────────────────────────────────────────────────\n  verification:\n    google: \"\"\n    bing: \"\"\n    baidu: \"\"\n    yandex: \"\"\n    pinterest: \"\"\n    naver: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # REPOSITORY\n  # Source code repository for \"Edit this page\" links\n  # ────────────────────────────────────────────────────────────────────────────\n  repository:\n    enable: false\n    url: \"\"                             # e.g., https://github.com/username/repo\n    branch: main\n    content_dir: content\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LOCALE\n  # Regional formatting preferences\n  # ────────────────────────────────────────────────────────────────────────────\n  locale:\n    date_format: \"Jan 2, 2006\"          # Go time format\n    time_format: \"3:04 PM\"\n    address_format: en-us\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SECURITY\n  # Security headers and policies (requires Netlify integration)\n  # ────────────────────────────────────────────────────────────────────────────\n  security:\n    csp:\n      policy: \"\"\n      report_only: false\n    frame_options: allow                 # deny | sameorigin | allow - allow enables iframe embedding\n    permissions_policy: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PRIVACY\n  # Privacy and compliance features\n  # ────────────────────────────────────────────────────────────────────────────\n  privacy:\n    enable: false\n    anonymize_analytics: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # DEBUG\n  # Development and debugging (hidden in production)\n  # ────────────────────────────────────────────────────────────────────────────\n  debug:\n    enable: false\n    hud:\n      position: bottom-left             # top-left | top-right | bottom-left | bottom-right\n      opacity: 1.0\n    export_logs: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PREMIUM\n  # Premium features and creator program (affiliates)\n  # ────────────────────────────────────────────────────────────────────────────\n  pro:\n    # Hide \"Powered by HugoBlox\" attribution\n    # Requires: HugoBlox Premium to support HugoBlox via alternative means\n    # Note: Even with Premium, you can keep this false to support open source!\n    # Get Premium: https://hugoblox.com/premium\n    hide_attribution: false\n    \n    # Affiliate referral code for rewards program\n    # Join affiliate program: https://hugoblox.com/affiliates\n    affiliate_code: \"\"\n"
  },
  {
    "path": "templates/dev-portfolio/content/_index.md",
    "content": "---\n# Leave the homepage title empty to use the site title\ntitle: ''\nsummary: ''\ndate: 2026-01-05\ntype: landing\n\ndesign:\n  # Default section spacing\n  spacing: '0'\n\nsections:\n  # Developer Hero - Gradient background with name, role, social, and CTAs\n  - block: dev-hero\n    id: hero\n    content:\n      username: me\n      greeting: \"Hi, I'm\"\n      show_status: true\n      show_scroll_indicator: true\n      typewriter:\n        enable: true\n        prefix: \"I build\"\n        strings:\n          - \"full-stack web apps\"\n          - \"scalable APIs\"\n          - \"beautiful UIs\"\n          - \"open source tools\"\n        type_speed: 70\n        delete_speed: 40\n        pause_time: 2500\n      cta_buttons:\n        - text: View My Work\n          url: \"#projects\"\n          icon: arrow-down\n        - text: Get In Touch\n          url: \"#contact\"\n          icon: envelope\n    design:\n      style: centered\n      avatar_shape: circle\n      animations: true\n      background:\n        color:\n          light: \"#fafafa\"\n          dark: \"#0a0a0f\"\n      spacing:\n        padding: [\"6rem\", \"0\", \"4rem\", \"0\"]\n  \n  # Filterable Portfolio - Alpine.js powered project filtering\n  - block: portfolio\n    id: projects\n    content:\n      title: \"Featured Projects\"\n      subtitle: \"A selection of my recent work\"\n      count: 0\n      filters:\n        folders:\n          - projects\n      buttons:\n        - name: All\n          tag: '*'\n        - name: Full-Stack\n          tag: Full-Stack\n        - name: Frontend\n          tag: Frontend\n        - name: Backend\n          tag: Backend\n      default_button_index: 0\n      # Archive link auto-shown if more projects exist than 'count' above\n      # archive:\n      #   enable: false  # Set to false to explicitly hide\n      #   text: \"Browse All\"  # Customize text\n      #   link: \"/work/\"  # Custom URL\n    design:\n      columns: 3\n      background:\n        color:\n          light: \"#ffffff\"\n          dark: \"#0d0d12\"\n      spacing:\n        padding: [\"4rem\", \"0\", \"4rem\", \"0\"]\n  \n  # Visual Tech Stack - Icons organized by category\n  - block: tech-stack\n    id: skills\n    content:\n      title: \"Tech Stack\"\n      subtitle: \"Technologies I use to build things\"\n      categories:\n        - name: Languages\n          items:\n            - name: TypeScript\n              icon: devicon/typescript\n            - name: JavaScript\n              icon: devicon/javascript\n            - name: Python\n              icon: devicon/python\n            - name: Go\n              icon: devicon/go\n        - name: Frontend\n          items:\n            - name: React\n              icon: devicon/react\n            - name: Next.js\n              icon: devicon/nextjs\n            - name: Tailwind CSS\n              icon: devicon/tailwindcss\n            - name: Alpine.js\n              icon: devicon/alpinejs\n        - name: Backend\n          items:\n            - name: Node.js\n              icon: devicon/nodejs\n            - name: Express\n              icon: devicon/express\n            - name: PostgreSQL\n              icon: devicon/postgresql\n            - name: Redis\n              icon: devicon/redis\n        - name: DevOps\n          items:\n            - name: Docker\n              icon: devicon/docker\n            - name: AWS\n              icon: devicon/amazonwebservices-wordmark\n            - name: GitHub Actions\n              icon: brands/github\n            - name: Vercel\n              icon: devicon/vercel\n    design:\n      style: grid\n      show_levels: false\n      background:\n        color:\n          light: \"#f5f5f5\"\n          dark: \"#08080c\"\n      spacing:\n        padding: [\"4rem\", \"0\", \"4rem\", \"0\"]\n  \n  # Experience Timeline\n  - block: resume-experience\n    id: experience\n    content:\n      title: Experience\n      date_format: Jan 2006\n      items:\n        - title: Senior Software Engineer\n          company: Tech Corp\n          company_url: ''\n          company_logo: ''\n          location: San Francisco, CA\n          date_start: '2023-01-01'\n          date_end: ''\n          description: |2-\n            * Lead development of microservices architecture serving 1M+ users\n            * Improved API response time by 40% through optimization\n            * Mentored team of 5 junior developers\n            * Tech stack: React, Node.js, PostgreSQL, AWS\n        - title: Full-Stack Developer\n          company: Startup Inc\n          company_url: ''\n          company_logo: ''\n          location: Remote\n          date_start: '2021-06-01'\n          date_end: '2022-12-31'\n          description: |2-\n            * Built and deployed 3 production applications from scratch\n            * Implemented CI/CD pipeline reducing deployment time by 60%\n            * Collaborated with design team on UI/UX improvements\n            * Tech stack: Next.js, Express, MongoDB, Docker\n        - title: Junior Developer\n          company: Web Agency\n          company_url: ''\n          company_logo: ''\n          location: New York, NY\n          date_start: '2020-01-01'\n          date_end: '2021-05-31'\n          description: |2-\n            * Developed client websites using modern web technologies\n            * Maintained and updated legacy codebases\n            * Participated in code reviews and agile ceremonies\n            * Tech stack: React, WordPress, PHP, MySQL\n    design:\n      columns: '1'\n      background:\n        color:\n          light: \"#ffffff\"\n          dark: \"#0d0d12\"\n      spacing:\n        padding: [\"4rem\", \"0\", \"4rem\", \"0\"]\n  \n  # Recent Blog Posts\n  - block: collection\n    id: blog\n    content:\n      title: Recent Posts\n      subtitle: 'Thoughts on web development, tech, and more'\n      text: ''\n      filters:\n        folders:\n          - blog\n        exclude_featured: false\n      count: 3\n      order: desc\n    design:\n      view: card\n      columns: 3\n      background:\n        color:\n          light: \"#f5f5f5\"\n          dark: \"#08080c\"\n      spacing:\n        padding: [\"4rem\", \"0\", \"4rem\", \"0\"]\n  \n  # Contact Section\n  - block: contact-info\n    id: contact\n    content:\n      title: Get In Touch\n      subtitle: \"Let's build something amazing together\"\n      text: |-\n        I'm always interested in hearing about new projects and opportunities.\n        Whether you're looking to hire, collaborate, or just want to say hi, feel free to reach out!\n      email: alex@example.com\n      autolink: true\n    design:\n      columns: '1'\n      background:\n        color:\n          light: \"#ffffff\"\n          dark: \"#0d0d12\"\n      spacing:\n        padding: [\"4rem\", \"0\", \"4rem\", \"0\"]\n  \n  # CTA Card\n  - block: cta-card\n    content:\n      title: \"Open to Opportunities\"\n      text: |-\n        I'm currently looking for **senior engineering** or **tech lead** roles.\n        \n        Let's connect and discuss how I can help your team.\n      button:\n        text: 'Download Resume'\n        url: uploads/resume.pdf\n        new_tab: true\n    design:\n      card:\n        # Light mode: soft pastel theme gradient | Dark mode: rich deep gradient\n        css_class: 'bg-gradient-to-br from-primary-200 via-primary-100 to-secondary-200 dark:from-primary-600 dark:via-primary-700 dark:to-secondary-700'\n        text_color: dark\n      background:\n        color:\n          light: \"#f5f5f5\"\n          dark: \"#08080c\"\n      spacing:\n        padding: [\"4rem\", \"0\", \"6rem\", \"0\"]\n---\n"
  },
  {
    "path": "templates/dev-portfolio/content/authors/_index.md",
    "content": "---\n# To publish author profile pages, remove all the `build` and `cascade` settings below.\nbuild:\n  render: never\ncascade:\n  build:\n    render: never\n    list: always\n---\n"
  },
  {
    "path": "templates/dev-portfolio/content/blog/_index.md",
    "content": "---\ntitle: Blog\nview: article-grid\n---\n"
  },
  {
    "path": "templates/dev-portfolio/content/blog/building-rest-api/index.md",
    "content": "---\ntitle: \"Building a Production-Ready REST API with Node.js and Express\"\ndate: 2024-12-10\nsummary: \"A comprehensive guide to building scalable, secure REST APIs with proper error handling, validation, and documentation\"\ntags:\n  - Node.js\n  - Express\n  - REST API\n  - Backend\n  - Tutorial\nauthors:\n  - me\nfeatured: true\n---\n\nBuilding a REST API seems straightforward until you need to handle authentication, validation, error handling, and documentation. This guide covers best practices for production-ready APIs.\n\n## Table of Contents\n\n1. [Project Setup](#project-setup)\n2. [Folder Structure](#folder-structure)\n3. [Database Integration](#database)\n4. [Authentication & Authorization](#auth)\n5. [Error Handling](#errors)\n6. [Validation](#validation)\n7. [API Documentation](#docs)\n8. [Testing](#testing)\n\n## Project Setup {#project-setup}\n\nStart with a solid foundation:\n\n```bash\nmkdir my-api && cd my-api\nnpm init -y\nnpm install express dotenv cors helmet compression\nnpm install -D typescript @types/node @types/express ts-node-dev\n```\n\nCreate `tsconfig.json`:\n\n```json\n{\n  \"compilerOptions\": {\n    \"target\": \"ES2020\",\n    \"module\": \"commonjs\",\n    \"lib\": [\"ES2020\"],\n    \"outDir\": \"./dist\",\n    \"rootDir\": \"./src\",\n    \"strict\": true,\n    \"esModuleInterop\": true,\n    \"skipLibCheck\": true\n  }\n}\n```\n\n## Folder Structure {#folder-structure}\n\nOrganize your code for maintainability:\n\n```\nsrc/\n├── config/         # Configuration files\n├── controllers/    # Route controllers\n├── middleware/     # Custom middleware\n├── models/         # Database models\n├── routes/         # API routes\n├── services/       # Business logic\n├── utils/          # Helper functions\n├── validators/     # Input validation\n└── app.ts          # App setup\n```\n\n## Database Integration {#database}\n\nUsing Prisma for type-safe database access:\n\n```typescript\n// prisma/schema.prisma\nmodel User {\n  id        String   @id @default(uuid())\n  email     String   @unique\n  name      String\n  password  String\n  createdAt DateTime @default(now())\n  updatedAt DateTime @updatedAt\n}\n```\n\n```typescript\n// src/config/database.ts\nimport { PrismaClient } from '@prisma/client'\n\nconst prisma = new PrismaClient({\n  log: process.env.NODE_ENV === 'development' ? ['query'] : []\n})\n\nexport default prisma\n```\n\n## Authentication & Authorization {#auth}\n\nImplement JWT-based authentication:\n\n```typescript\n// src/middleware/auth.ts\nimport jwt from 'jsonwebtoken'\nimport { Request, Response, NextFunction } from 'express'\n\ninterface JWTPayload {\n  userId: string\n  email: string\n}\n\nexport const authenticate = async (\n  req: Request,\n  res: Response,\n  next: NextFunction\n) => {\n  try {\n    const token = req.headers.authorization?.split(' ')[1]\n    \n    if (!token) {\n      return res.status(401).json({ error: 'Authentication required' })\n    }\n\n    const payload = jwt.verify(\n      token,\n      process.env.JWT_SECRET!\n    ) as JWTPayload\n\n    req.user = payload\n    next()\n  } catch (error) {\n    res.status(401).json({ error: 'Invalid or expired token' })\n  }\n}\n```\n\n## Error Handling {#errors}\n\nCentralized error handling:\n\n```typescript\n// src/middleware/errorHandler.ts\nimport { Request, Response, NextFunction } from 'express'\n\nclass AppError extends Error {\n  statusCode: number\n  isOperational: boolean\n\n  constructor(message: string, statusCode: number) {\n    super(message)\n    this.statusCode = statusCode\n    this.isOperational = true\n    Error.captureStackTrace(this, this.constructor)\n  }\n}\n\nexport const errorHandler = (\n  err: Error,\n  req: Request,\n  res: Response,\n  next: NextFunction\n) => {\n  if (err instanceof AppError) {\n    return res.status(err.statusCode).json({\n      status: 'error',\n      message: err.message\n    })\n  }\n\n  // Log unexpected errors\n  console.error('Unexpected error:', err)\n\n  res.status(500).json({\n    status: 'error',\n    message: 'Internal server error'\n  })\n}\n\nexport { AppError }\n```\n\n## Validation {#validation}\n\nUse Zod for runtime validation:\n\n```typescript\n// src/validators/userValidator.ts\nimport { z } from 'zod'\n\nexport const createUserSchema = z.object({\n  body: z.object({\n    email: z.string().email('Invalid email address'),\n    name: z.string().min(2, 'Name must be at least 2 characters'),\n    password: z.string().min(8, 'Password must be at least 8 characters')\n  })\n})\n\nexport const validate = (schema: any) => {\n  return async (req: Request, res: Response, next: NextFunction) => {\n    try {\n      await schema.parseAsync({\n        body: req.body,\n        query: req.query,\n        params: req.params\n      })\n      next()\n    } catch (error) {\n      if (error instanceof z.ZodError) {\n        return res.status(400).json({\n          status: 'error',\n          errors: error.errors\n        })\n      }\n      next(error)\n    }\n  }\n}\n```\n\n## API Documentation {#docs}\n\nAuto-generate docs with Swagger:\n\n```typescript\n// src/config/swagger.ts\nimport swaggerJsdoc from 'swagger-jsdoc'\n\nconst options = {\n  definition: {\n    openapi: '3.0.0',\n    info: {\n      title: 'My API',\n      version: '1.0.0',\n      description: 'API documentation'\n    },\n    servers: [\n      {\n        url: 'http://localhost:3000',\n        description: 'Development server'\n      }\n    ]\n  },\n  apis: ['./src/routes/*.ts']\n}\n\nexport const swaggerSpec = swaggerJsdoc(options)\n```\n\nDocument endpoints in route files:\n\n```typescript\n/**\n * @openapi\n * /api/users:\n *   post:\n *     summary: Create a new user\n *     tags: [Users]\n *     requestBody:\n *       required: true\n *       content:\n *         application/json:\n *           schema:\n *             type: object\n *             properties:\n *               email:\n *                 type: string\n *               name:\n *                 type: string\n *               password:\n *                 type: string\n *     responses:\n *       201:\n *         description: User created successfully\n */\nrouter.post('/users', validate(createUserSchema), createUser)\n```\n\n## Testing {#testing}\n\nWrite tests with Jest and Supertest:\n\n```typescript\n// tests/users.test.ts\nimport request from 'supertest'\nimport app from '../src/app'\nimport prisma from '../src/config/database'\n\ndescribe('User API', () => {\n  beforeEach(async () => {\n    await prisma.user.deleteMany()\n  })\n\n  afterAll(async () => {\n    await prisma.$disconnect()\n  })\n\n  describe('POST /api/users', () => {\n    it('should create a new user', async () => {\n      const res = await request(app)\n        .post('/api/users')\n        .send({\n          email: 'test@example.com',\n          name: 'Test User',\n          password: 'password123'\n        })\n        .expect(201)\n\n      expect(res.body).toHaveProperty('id')\n      expect(res.body.email).toBe('test@example.com')\n    })\n\n    it('should return 400 for invalid email', async () => {\n      const res = await request(app)\n        .post('/api/users')\n        .send({\n          email: 'invalid-email',\n          name: 'Test User',\n          password: 'password123'\n        })\n        .expect(400)\n\n      expect(res.body).toHaveProperty('errors')\n    })\n  })\n})\n```\n\n## Security Best Practices\n\n1. **Rate Limiting**\n   ```typescript\n   import rateLimit from 'express-rate-limit'\n   \n   const limiter = rateLimit({\n     windowMs: 15 * 60 * 1000, // 15 minutes\n     max: 100 // limit each IP to 100 requests per windowMs\n   })\n   \n   app.use('/api/', limiter)\n   ```\n\n2. **Helmet** for security headers\n   ```typescript\n   import helmet from 'helmet'\n   app.use(helmet())\n   ```\n\n3. **CORS** configuration\n   ```typescript\n   import cors from 'cors'\n   app.use(cors({\n     origin: process.env.ALLOWED_ORIGINS?.split(','),\n     credentials: true\n   }))\n   ```\n\n4. **Input Sanitization**\n   ```typescript\n   import mongoSanitize from 'express-mongo-sanitize'\n   app.use(mongoSanitize())\n   ```\n\n## Performance Optimization\n\n### 1. Response Compression\n```typescript\nimport compression from 'compression'\napp.use(compression())\n```\n\n### 2. Caching\n```typescript\nimport Redis from 'ioredis'\nconst redis = new Redis(process.env.REDIS_URL)\n\nasync function getCachedData(key: string) {\n  const cached = await redis.get(key)\n  if (cached) return JSON.parse(cached)\n  \n  const data = await fetchFromDatabase()\n  await redis.setex(key, 3600, JSON.stringify(data))\n  return data\n}\n```\n\n### 3. Database Query Optimization\n```typescript\n// Use pagination\nconst users = await prisma.user.findMany({\n  skip: (page - 1) * limit,\n  take: limit,\n  select: {\n    id: true,\n    email: true,\n    name: true\n    // Don't select sensitive fields like password\n  }\n})\n\n// Use indexes\n@@index([email])\n@@index([createdAt])\n```\n\n## Deployment Checklist\n\n- [ ] Environment variables configured\n- [ ] Database migrations run\n- [ ] SSL/TLS certificates installed\n- [ ] Rate limiting enabled\n- [ ] Logging configured (Winston, Morgan)\n- [ ] Error tracking (Sentry)\n- [ ] Health check endpoint\n- [ ] API documentation deployed\n- [ ] Load testing completed\n- [ ] Backup strategy implemented\n\n## Monitoring\n\n```typescript\n// Health check endpoint\napp.get('/health', async (req, res) => {\n  try {\n    await prisma.$queryRaw`SELECT 1`\n    res.status(200).json({ status: 'healthy', timestamp: new Date() })\n  } catch (error) {\n    res.status(503).json({ status: 'unhealthy', error: error.message })\n  }\n})\n```\n\n## Conclusion\n\nBuilding production-ready APIs requires attention to:\n- **Structure**: Organized code is maintainable code\n- **Security**: Authentication, validation, and rate limiting\n- **Errors**: Proper error handling and logging\n- **Testing**: Comprehensive test coverage\n- **Documentation**: Clear API docs for consumers\n- **Performance**: Caching and optimization\n\nThe complete example code is available on [GitHub](https://github.com/alexjohnson/rest-api-guide).\n\n## Resources\n\n- [Express Best Practices](https://expressjs.com/en/advanced/best-practice-performance.html)\n- [Node.js Security Checklist](https://github.com/goldbergyoni/nodebestpractices#6-security-best-practices)\n- [Prisma Documentation](https://www.prisma.io/docs)\n\n---\n\nQuestions? Leave a comment below or reach out on [Twitter](https://twitter.com/alexjohnson)!\n"
  },
  {
    "path": "templates/dev-portfolio/content/blog/docker-deployment/index.md",
    "content": "---\ntitle: \"Docker Deployment Guide: From Development to Production\"\ndate: 2024-10-15\nsummary: \"Learn how to containerize your applications with Docker, optimize images, and deploy to production with best practices\"\ntags:\n  - Docker\n  - DevOps\n  - Deployment\n  - Tutorial\nauthors:\n  - me\nfeatured: false\n---\n\nDocker simplifies deployment by packaging your application with all dependencies. This guide covers containerizing apps, optimizing images, and production deployment.\n\n## Why Docker?\n\n**Problems Docker solves**:\n- ❌ \"Works on my machine\" syndrome\n- ❌ Complex dependency management\n- ❌ Environment inconsistencies\n- ❌ Difficult scaling\n\n**Benefits**:\n- ✅ Consistent environments (dev = prod)\n- ✅ Easy scaling\n- ✅ Simplified deployment\n- ✅ Isolation and security\n\n## Basic Dockerfile\n\nFor a Node.js application:\n\n```dockerfile\n# Use official Node image\nFROM node:18-alpine\n\n# Set working directory\nWORKDIR /app\n\n# Copy package files\nCOPY package*.json ./\n\n# Install dependencies\nRUN npm ci --only=production\n\n# Copy application code\nCOPY . .\n\n# Expose port\nEXPOSE 3000\n\n# Start application\nCMD [\"node\", \"server.js\"]\n```\n\nBuild and run:\n\n```bash\ndocker build -t my-app .\ndocker run -p 3000:3000 my-app\n```\n\n## Multi-Stage Builds (Optimization)\n\nReduce image size with multi-stage builds:\n\n```dockerfile\n# Stage 1: Build\nFROM node:18-alpine AS builder\n\nWORKDIR /app\nCOPY package*.json ./\nRUN npm ci\n\nCOPY . .\nRUN npm run build\n\n# Stage 2: Production\nFROM node:18-alpine\n\nWORKDIR /app\n\n# Copy only necessary files from builder\nCOPY --from=builder /app/dist ./dist\nCOPY --from=builder /app/node_modules ./node_modules\nCOPY package*.json ./\n\nEXPOSE 3000\nCMD [\"node\", \"dist/server.js\"]\n```\n\n**Result**: Image size reduced from 800MB → 150MB!\n\n## Docker Compose for Local Development\n\n`docker-compose.yml`:\n\n```yaml\nversion: '3.8'\n\nservices:\n  app:\n    build: .\n    ports:\n      - \"3000:3000\"\n    environment:\n      - NODE_ENV=development\n      - DATABASE_URL=postgresql://user:pass@db:5432/mydb\n    volumes:\n      - .:/app\n      - /app/node_modules\n    depends_on:\n      - db\n      - redis\n\n  db:\n    image: postgres:15-alpine\n    environment:\n      - POSTGRES_USER=user\n      - POSTGRES_PASSWORD=pass\n      - POSTGRES_DB=mydb\n    volumes:\n      - postgres_data:/var/lib/postgresql/data\n    ports:\n      - \"5432:5432\"\n\n  redis:\n    image: redis:7-alpine\n    ports:\n      - \"6379:6379\"\n\nvolumes:\n  postgres_data:\n```\n\nStart everything:\n\n```bash\ndocker-compose up -d\n```\n\n## Environment Variables\n\nNever hardcode secrets! Use `.env` file:\n\n```env\n# .env (add to .gitignore!)\nDATABASE_URL=postgresql://user:pass@localhost:5432/mydb\nJWT_SECRET=your-secret-key\nAPI_KEY=your-api-key\n```\n\nReference in docker-compose:\n\n```yaml\nservices:\n  app:\n    env_file:\n      - .env\n```\n\n## Production Dockerfile\n\nOptimized for production:\n\n```dockerfile\nFROM node:18-alpine AS builder\n\nWORKDIR /app\n\n# Copy package files\nCOPY package*.json ./\n\n# Install all dependencies (including devDependencies)\nRUN npm ci\n\n# Copy source\nCOPY . .\n\n# Build application\nRUN npm run build\n\n# Remove devDependencies\nRUN npm prune --production\n\n# Production stage\nFROM node:18-alpine\n\n# Add non-root user\nRUN addgroup -g 1001 -S nodejs && \\\n    adduser -S nodejs -u 1001\n\nWORKDIR /app\n\n# Copy built app from builder\nCOPY --from=builder --chown=nodejs:nodejs /app/dist ./dist\nCOPY --from=builder --chown=nodejs:nodejs /app/node_modules ./node_modules\nCOPY --from=builder --chown=nodejs:nodejs /app/package*.json ./\n\n# Use non-root user\nUSER nodejs\n\n# Health check\nHEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \\\n  CMD node healthcheck.js\n\nEXPOSE 3000\n\nCMD [\"node\", \"dist/server.js\"]\n```\n\n## Image Optimization Tips\n\n### 1. Use .dockerignore\n\n```\nnode_modules\nnpm-debug.log\n.git\n.env\n.DS_Store\n*.md\n.vscode\ncoverage\n.github\n```\n\n### 2. Layer Caching\n\n```dockerfile\n# ❌ Bad: Changes to code invalidate ALL layers\nCOPY . .\nRUN npm ci\n\n# ✅ Good: Package changes don't rebuild code\nCOPY package*.json ./\nRUN npm ci\nCOPY . .\n```\n\n### 3. Use Alpine Images\n\n```dockerfile\n# Large: node:18 (900MB)\nFROM node:18\n\n# Small: node:18-alpine (150MB)\nFROM node:18-alpine\n```\n\n### 4. Combine RUN Commands\n\n```dockerfile\n# ❌ Bad: Multiple layers\nRUN apt-get update\nRUN apt-get install -y curl\nRUN apt-get clean\n\n# ✅ Good: Single layer\nRUN apt-get update && \\\n    apt-get install -y curl && \\\n    apt-get clean && \\\n    rm -rf /var/lib/apt/lists/*\n```\n\n## Deploying to AWS ECS\n\n### 1. Build and Push to ECR\n\n```bash\n# Authenticate Docker to ECR\naws ecr get-login-password --region us-east-1 | \\\n  docker login --username AWS --password-stdin 123456789.dkr.ecr.us-east-1.amazonaws.com\n\n# Build image\ndocker build -t my-app .\n\n# Tag image\ndocker tag my-app:latest 123456789.dkr.ecr.us-east-1.amazonaws.com/my-app:latest\n\n# Push to ECR\ndocker push 123456789.dkr.ecr.us-east-1.amazonaws.com/my-app:latest\n```\n\n### 2. ECS Task Definition\n\n```json\n{\n  \"family\": \"my-app\",\n  \"networkMode\": \"awsvpc\",\n  \"requiresCompatibilities\": [\"FARGATE\"],\n  \"cpu\": \"256\",\n  \"memory\": \"512\",\n  \"containerDefinitions\": [\n    {\n      \"name\": \"my-app\",\n      \"image\": \"123456789.dkr.ecr.us-east-1.amazonaws.com/my-app:latest\",\n      \"portMappings\": [\n        {\n          \"containerPort\": 3000,\n          \"protocol\": \"tcp\"\n        }\n      ],\n      \"environment\": [\n        {\n          \"name\": \"NODE_ENV\",\n          \"value\": \"production\"\n        }\n      ],\n      \"secrets\": [\n        {\n          \"name\": \"DATABASE_URL\",\n          \"valueFrom\": \"arn:aws:secretsmanager:...\"\n        }\n      ],\n      \"logConfiguration\": {\n        \"logDriver\": \"awslogs\",\n        \"options\": {\n          \"awslogs-group\": \"/ecs/my-app\",\n          \"awslogs-region\": \"us-east-1\",\n          \"awslogs-stream-prefix\": \"ecs\"\n        }\n      }\n    }\n  ]\n}\n```\n\n## Docker Security Best Practices\n\n### 1. Use Non-Root User\n\n```dockerfile\n# Add user\nRUN addgroup -g 1001 -S nodejs && \\\n    adduser -S nodejs -u 1001\n\n# Switch to user\nUSER nodejs\n```\n\n### 2. Scan for Vulnerabilities\n\n```bash\n# Using Trivy\ndocker run --rm -v /var/run/docker.sock:/var/run/docker.sock \\\n  aquasec/trivy image my-app:latest\n```\n\n### 3. Keep Base Images Updated\n\n```dockerfile\n# ✅ Pin specific version, update regularly\nFROM node:18.19.0-alpine\n\n# ❌ Avoid 'latest' tag\nFROM node:latest\n```\n\n### 4. Read-Only Filesystem\n\n```yaml\nservices:\n  app:\n    read_only: true\n    tmpfs:\n      - /tmp\n```\n\n## Health Checks\n\nSimple health check endpoint:\n\n```javascript\n// healthcheck.js\nconst http = require('http')\n\nconst options = {\n  host: 'localhost',\n  port: 3000,\n  path: '/health',\n  timeout: 2000\n}\n\nconst request = http.request(options, (res) => {\n  if (res.statusCode === 200) {\n    process.exit(0)\n  } else {\n    process.exit(1)\n  }\n})\n\nrequest.on('error', () => {\n  process.exit(1)\n})\n\nrequest.end()\n```\n\n## Monitoring & Logging\n\n### Container Logs\n\n```bash\n# View logs\ndocker logs my-app\n\n# Follow logs\ndocker logs -f my-app\n\n# Last 100 lines\ndocker logs --tail 100 my-app\n```\n\n### Docker Stats\n\n```bash\n# View resource usage\ndocker stats\n\n# Specific container\ndocker stats my-app\n```\n\n## Common Issues & Solutions\n\n### Issue: Image Too Large\n\n**Solution**: Multi-stage builds, Alpine images, .dockerignore\n\n### Issue: Slow Builds\n\n**Solution**: Optimize layer caching, use BuildKit\n\n```bash\nDOCKER_BUILDKIT=1 docker build -t my-app .\n```\n\n### Issue: Container Won't Start\n\n**Solution**: Check logs, verify CMD/ENTRYPOINT\n\n```bash\ndocker logs container-id\ndocker inspect container-id\n```\n\n## CI/CD Pipeline Example (GitHub Actions)\n\n```yaml\nname: Deploy\n\non:\n  push:\n    branches: [main]\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v3\n\n      - name: Configure AWS credentials\n        uses: aws-actions/configure-aws-credentials@v2\n        with:\n          aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}\n          aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}\n          aws-region: us-east-1\n\n      - name: Login to Amazon ECR\n        id: login-ecr\n        uses: aws-actions/amazon-ecr-login@v1\n\n      - name: Build and push image\n        env:\n          ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}\n          ECR_REPOSITORY: my-app\n          IMAGE_TAG: ${{ github.sha }}\n        run: |\n          docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .\n          docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG\n\n      - name: Update ECS service\n        run: |\n          aws ecs update-service --cluster my-cluster \\\n            --service my-app --force-new-deployment\n```\n\n## Best Practices Checklist\n\n- [ ] Use multi-stage builds\n- [ ] Use .dockerignore\n- [ ] Run as non-root user\n- [ ] Pin base image versions\n- [ ] Scan for vulnerabilities\n- [ ] Implement health checks\n- [ ] Use environment variables for config\n- [ ] Keep images small (<500MB)\n- [ ] Tag images properly (not just 'latest')\n- [ ] Set up logging and monitoring\n\n## Resources\n\n- [Docker Documentation](https://docs.docker.com/)\n- [Docker Best Practices](https://docs.docker.com/develop/dev-best-practices/)\n- [Dockerfile Reference](https://docs.docker.com/engine/reference/builder/)\n- [Docker Compose](https://docs.docker.com/compose/)\n\n## Conclusion\n\nDocker streamlines deployment by:\n1. Creating consistent environments\n2. Simplifying dependency management\n3. Enabling easy scaling\n4. Improving security through isolation\n\nStart small, optimize incrementally, and always test in staging before production!\n\n---\n\n**Example repo**: [github.com/alexjohnson/docker-guide](https://github.com/alexjohnson/docker-guide)\n\nQuestions? Reach out on [Twitter](https://twitter.com/alexjohnson)!\n"
  },
  {
    "path": "templates/dev-portfolio/content/blog/react-performance/index.md",
    "content": "---\ntitle: \"React Performance Optimization: A Practical Guide\"\ndate: 2024-11-22\nsummary: \"Learn how to identify and fix performance bottlenecks in React applications with real-world examples and profiling techniques\"\ntags:\n  - React\n  - Performance\n  - JavaScript\n  - Frontend\n  - Optimization\nauthors:\n  - me\nfeatured: true\n---\n\nReact apps can become slow as they grow. This guide covers practical techniques to identify bottlenecks and optimize performance, backed by real-world examples.\n\n## Common Performance Issues\n\nBefore optimizing, measure. Use React DevTools Profiler to identify:\n- Unnecessary re-renders\n- Heavy computations\n- Large component trees\n- Inefficient list rendering\n\n## 1. Prevent Unnecessary Re-renders\n\n### Problem: Parent Re-renders Cascade\n\n```jsx\n// ❌ Bad: Child re-renders on every parent update\nfunction Parent() {\n  const [count, setCount] = useState(0)\n  \n  return (\n    <div>\n      <button onClick={() => setCount(count + 1)}>Count: {count}</button>\n      <ExpensiveChild /> {/* Re-renders even though it doesn't use count! */}\n    </div>\n  )\n}\n```\n\n### Solution: React.memo\n\n```jsx\n// ✅ Good: Child only re-renders when props change\nconst ExpensiveChild = React.memo(() => {\n  console.log('ExpensiveChild rendered')\n  return <div>{/* expensive rendering */}</div>\n})\n```\n\n**When to use**: Components that render often but rarely change props.\n\n## 2. Optimize Expensive Calculations\n\n### Problem: Recalculating on Every Render\n\n```jsx\n// ❌ Bad: filterItems runs on every render\nfunction ProductList({ products, searchTerm }) {\n  const filtered = products.filter(p => \n    p.name.toLowerCase().includes(searchTerm.toLowerCase())\n  ) // Runs even when products/searchTerm haven't changed!\n  \n  return <ul>{filtered.map(p => <li key={p.id}>{p.name}</li>)}</ul>\n}\n```\n\n### Solution: useMemo\n\n```jsx\n// ✅ Good: Only recalculates when dependencies change\nfunction ProductList({ products, searchTerm }) {\n  const filtered = useMemo(() => \n    products.filter(p => \n      p.name.toLowerCase().includes(searchTerm.toLowerCase())\n    ),\n    [products, searchTerm]\n  )\n  \n  return <ul>{filtered.map(p => <li key={p.id}>{p.name}</li>)}</ul>\n}\n```\n\n**When to use**: Expensive calculations that don't need to run on every render.\n\n## 3. Stabilize Function References\n\n### Problem: New Function on Every Render\n\n```jsx\n// ❌ Bad: handleClick creates new function every render\nfunction Parent() {\n  const [count, setCount] = useState(0)\n  \n  const handleClick = () => setCount(count + 1)\n  \n  return <Child onClick={handleClick} /> // Child re-renders!\n}\n\nconst Child = React.memo(({ onClick }) => {\n  return <button onClick={onClick}>Click</button>\n})\n```\n\n### Solution: useCallback\n\n```jsx\n// ✅ Good: handleClick reference stays stable\nfunction Parent() {\n  const [count, setCount] = useState(0)\n  \n  const handleClick = useCallback(() => {\n    setCount(c => c + 1) // Use functional update!\n  }, []) // Empty deps because we use functional update\n  \n  return <Child onClick={handleClick} />\n}\n```\n\n**When to use**: Passing callbacks to memoized child components.\n\n## 4. Virtual Lists for Large Datasets\n\n### Problem: Rendering 10,000 Items\n\n```jsx\n// ❌ Bad: Renders all 10,000 items (slow!)\nfunction LargeList({ items }) {\n  return (\n    <div>\n      {items.map(item => (\n        <div key={item.id}>{item.name}</div>\n      ))}\n    </div>\n  )\n}\n```\n\n### Solution: react-window\n\n```jsx\n// ✅ Good: Only renders visible items\nimport { FixedSizeList } from 'react-window'\n\nfunction LargeList({ items }) {\n  const Row = ({ index, style }) => (\n    <div style={style}>{items[index].name}</div>\n  )\n  \n  return (\n    <FixedSizeList\n      height={600}\n      itemCount={items.length}\n      itemSize={50}\n      width=\"100%\"\n    >\n      {Row}\n    </FixedSizeList>\n  )\n}\n```\n\n**Result**: 10,000 items render in <50ms instead of 2000ms!\n\n## 5. Code Splitting & Lazy Loading\n\n### Problem: Large Bundle Size\n\n```jsx\n// ❌ Bad: Everything loads upfront\nimport AdminPanel from './AdminPanel' // 500KB!\nimport UserDashboard from './UserDashboard'\n\nfunction App() {\n  return isAdmin ? <AdminPanel /> : <UserDashboard />\n}\n```\n\n### Solution: React.lazy\n\n```jsx\n// ✅ Good: Load components on demand\nconst AdminPanel = React.lazy(() => import('./AdminPanel'))\nconst UserDashboard = React.lazy(() => import('./UserDashboard'))\n\nfunction App() {\n  return (\n    <Suspense fallback={<Loading />}>\n      {isAdmin ? <AdminPanel /> : <UserDashboard />}\n    </Suspense>\n  )\n}\n```\n\n**Result**: Initial bundle: 150KB instead of 650KB!\n\n## 6. Optimize Context Usage\n\n### Problem: Context Causes Mass Re-renders\n\n```jsx\n// ❌ Bad: Every consumer re-renders on any state change\nconst AppContext = createContext()\n\nfunction AppProvider({ children }) {\n  const [user, setUser] = useState(null)\n  const [theme, setTheme] = useState('light')\n  const [notifications, setNotifications] = useState([])\n  \n  return (\n    <AppContext.Provider value={{ user, theme, notifications, setUser, setTheme }}>\n      {children}\n    </AppContext.Provider>\n  )\n}\n```\n\n### Solution: Split Contexts\n\n```jsx\n// ✅ Good: Separate contexts for different concerns\nconst UserContext = createContext()\nconst ThemeContext = createContext()\nconst NotificationContext = createContext()\n\nfunction AppProvider({ children }) {\n  const [user, setUser] = useState(null)\n  const [theme, setTheme] = useState('light')\n  const [notifications, setNotifications] = useState([])\n  \n  return (\n    <UserContext.Provider value={{ user, setUser }}>\n      <ThemeContext.Provider value={{ theme, setTheme }}>\n        <NotificationContext.Provider value={{ notifications }}>\n          {children}\n        </NotificationContext.Provider>\n      </ThemeContext.Provider>\n    </UserContext.Provider>\n  )\n}\n```\n\n**Result**: Components only re-render when their specific context changes!\n\n## 7. Debounce Expensive Operations\n\n### Problem: Search Triggers on Every Keystroke\n\n```jsx\n// ❌ Bad: API call on every keystroke\nfunction SearchBox() {\n  const [query, setQuery] = useState('')\n  \n  useEffect(() => {\n    searchAPI(query) // Called 10+ times as user types \"javascript\"!\n  }, [query])\n  \n  return <input value={query} onChange={e => setQuery(e.target.value)} />\n}\n```\n\n### Solution: Custom Debounce Hook\n\n```jsx\n// ✅ Good: API call only after user stops typing\nfunction useDebounce(value, delay) {\n  const [debouncedValue, setDebouncedValue] = useState(value)\n  \n  useEffect(() => {\n    const handler = setTimeout(() => setDebouncedValue(value), delay)\n    return () => clearTimeout(handler)\n  }, [value, delay])\n  \n  return debouncedValue\n}\n\nfunction SearchBox() {\n  const [query, setQuery] = useState('')\n  const debouncedQuery = useDebounce(query, 300)\n  \n  useEffect(() => {\n    if (debouncedQuery) {\n      searchAPI(debouncedQuery) // Called once after 300ms pause!\n    }\n  }, [debouncedQuery])\n  \n  return <input value={query} onChange={e => setQuery(e.target.value)} />\n}\n```\n\n## 8. Key Props Matter\n\n### Problem: Poor Key Choices\n\n```jsx\n// ❌ Bad: Using index as key causes issues\n{items.map((item, index) => (\n  <div key={index}>{item.name}</div>\n))}\n\n// When items reorder, React thinks they're different components!\n```\n\n### Solution: Stable, Unique Keys\n\n```jsx\n// ✅ Good: Use stable IDs\n{items.map(item => (\n  <div key={item.id}>{item.name}</div>\n))}\n```\n\n## Real-World Example: Optimizing a Dashboard\n\n**Before**: Dashboard with 20 widgets, each fetching data, all re-rendering on any state change.\n\n**After optimization**:\n1. Split into separate contexts for user, theme, data\n2. Memoized individual widgets with React.memo\n3. Used useMemo for data transformations\n4. Lazy loaded heavy charts\n5. Debounced filter inputs\n\n**Result**: \n- Initial render: 3000ms → 800ms\n- Interactions: 200ms → 50ms\n- Bundle size: 800KB → 250KB (initial) + 550KB (lazy)\n\n## Profiling Workflow\n\n1. **React DevTools Profiler**\n   - Record interaction\n   - Identify components taking longest\n   - Check why they rendered (props change? parent render?)\n\n2. **Chrome DevTools Performance**\n   - Record performance\n   - Look for long tasks (>50ms)\n   - Check FPS during animations\n\n3. **Lighthouse**\n   - Run audit\n   - Focus on \"Time to Interactive\"\n   - Check bundle sizes\n\n## Common Pitfalls\n\n❌ **Don't** optimize prematurely  \n✅ **Do** measure first, optimize bottlenecks\n\n❌ **Don't** memo everything  \n✅ **Do** memo expensive components\n\n❌ **Don't** use useMemo for simple calculations  \n✅ **Do** use for actual performance issues\n\n❌ **Don't** forget dependency arrays  \n✅ **Do** include all dependencies (or use ESLint plugin)\n\n## Performance Checklist\n\n- [ ] Use React DevTools Profiler to identify issues\n- [ ] Memoize expensive child components\n- [ ] Use useMemo for heavy calculations\n- [ ] Use useCallback for callbacks to memoized children\n- [ ] Implement code splitting for large components\n- [ ] Use virtual lists for large datasets\n- [ ] Debounce expensive operations (search, API calls)\n- [ ] Use proper key props for lists\n- [ ] Split contexts to minimize re-renders\n- [ ] Optimize bundle size (tree shaking, minification)\n\n## Tools & Resources\n\n- [React DevTools](https://chrome.google.com/webstore/detail/react-developer-tools)\n- [react-window](https://react-window.vercel.app/)\n- [Bundle Analyzer](https://www.npmjs.com/package/webpack-bundle-analyzer)\n- [Why Did You Render](https://github.com/welldone-software/why-did-you-render)\n\n## Conclusion\n\nPerformance optimization is about:\n1. **Measuring** before optimizing\n2. **Identifying** actual bottlenecks\n3. **Applying** targeted fixes\n4. **Verifying** improvements\n\nDon't optimize blindly—profile, fix, measure, repeat!\n\n---\n\n**Want to dive deeper?** Check out my [React Performance Workshop](https://github.com/alexjohnson/react-perf-workshop).\n\nQuestions? Reach out on [Twitter](https://twitter.com/alexjohnson)!\n"
  },
  {
    "path": "templates/dev-portfolio/content/projects/_index.md",
    "content": "---\ntitle: 'Projects'\ndate: 2024-05-19\ntype: landing\n\ndesign:\n  # Section spacing\n  spacing: '5rem'\n\n# Page sections\nsections:\n  - block: collection\n    content:\n      title: Selected Projects\n      text: I enjoy making things. Here are a selection of projects that I have worked on over the years.\n      filters:\n        folders:\n          - projects\n    design:\n      view: article-grid\n      fill_image: false\n      columns: 3\n      show_date: false\n      show_read_time: false\n      show_read_more: false\n---\n"
  },
  {
    "path": "templates/dev-portfolio/content/projects/ecommerce-platform/index.md",
    "content": "---\ntitle: \"E-Commerce Platform\"\ndate: 2024-11-15\nsummary: \"E-commerce API backend with Stripe payments, inventory management, and real-time webhooks\"\ntags: \n  - Backend\n  - Node.js\n  - API\n  - E-Commerce\ntech_stack:\n  - React\n  - TypeScript\n  - Node.js\n  - Express\n  - PostgreSQL\n  - Stripe\n  - Redis\n  - Docker\nlinks:\n  - type: github\n    url: https://github.com/alexjohnson/ecommerce-platform\n    label: Code\n  - type: live\n    url: https://shop-demo.example.com\n    label: Demo\nfeatured: true\nstatus: \"Live\"\nrole: \"Lead Developer\"\nduration: \"4 months\"\nteam_size: 2\nhighlights:\n  - \"Handles 10k+ concurrent users\"\n  - \"99.9% uptime SLA\"\n  - \"Processing $50k+ monthly transactions\"\n  - \"60% faster page load vs competitors\"\n---\n\nA modern, scalable e-commerce platform built from scratch with performance and user experience as top priorities.\n\n## Overview\n\nBuilt a complete e-commerce solution for a mid-sized retail company looking to expand online. The platform handles everything from product catalog management to payment processing and order fulfillment.\n\n## Key Features\n\n### Customer-Facing\n- **Product Catalog** - Dynamic filtering, sorting, and search with instant results\n- **Shopping Cart** - Real-time inventory checking and price calculations\n- **Checkout** - Secure payment processing via Stripe with Apple Pay/Google Pay support\n- **Order Tracking** - Real-time order status updates with email notifications\n- **User Accounts** - Profile management, order history, and saved addresses\n\n### Admin Dashboard\n- **Inventory Management** - Real-time stock tracking and low-stock alerts\n- **Order Management** - Bulk order processing and fulfillment workflow\n- **Analytics** - Sales dashboards, customer insights, and revenue reporting\n- **Product Management** - Easy product creation with image uploads and variants\n\n## Technical Highlights\n\n### Performance Optimization\n- Implemented Redis caching reducing database queries by 70%\n- Optimized images with WebP format and lazy loading\n- Server-side rendering for critical pages improving SEO and load times\n- CDN integration for global content delivery\n\n### Scalability\n- Microservices architecture allowing independent scaling\n- Horizontal scaling with load balancing\n- Database read replicas for improved query performance\n- Message queues for async processing (order emails, inventory updates)\n\n### Security\n- JWT authentication with refresh tokens\n- Rate limiting to prevent abuse\n- Input validation and sanitization\n- PCI-compliant payment processing via Stripe\n\n## Architecture\n\n```\n┌─────────────┐     ┌──────────────┐     ┌─────────────┐\n│  React SPA  │────▶│   REST API   │────▶│ PostgreSQL  │\n└─────────────┘     │  (Express)   │     └─────────────┘\n                    └──────┬───────┘\n                           │\n                    ┌──────▼───────┐\n                    │    Redis     │\n                    │   (Cache)    │\n                    └──────────────┘\n```\n\n## Challenges & Solutions\n\n### Challenge 1: Inventory Sync\n**Problem**: Multiple users buying same product simultaneously causing overselling\n\n**Solution**: Implemented optimistic locking with Redis to ensure inventory accuracy during concurrent purchases\n\n### Challenge 2: Payment Processing\n**Problem**: Handling payment failures gracefully while maintaining order integrity\n\n**Solution**: Built robust state machine for order processing with automatic retry logic and customer notifications\n\n### Challenge 3: Performance at Scale\n**Problem**: Slow page loads during traffic spikes\n\n**Solution**: Implemented multi-layer caching strategy (CDN, Redis, in-memory) and database query optimization\n\n## Results\n\n- **Performance**: 60% faster page load times compared to previous platform\n- **Conversion**: 25% increase in conversion rate due to improved UX\n- **Uptime**: 99.9% uptime over 6 months in production\n- **Scale**: Successfully handled Black Friday with 10k concurrent users\n- **Revenue**: Processing over $50k in monthly transactions\n\n## Tech Stack Details\n\n**Frontend**\n- React 18 with TypeScript\n- Tailwind CSS for styling\n- React Query for data fetching\n- React Hook Form for forms\n\n**Backend**\n- Node.js with Express\n- PostgreSQL with Prisma ORM\n- Redis for caching and sessions\n- Bull for job queues\n\n**Infrastructure**\n- Docker containers\n- AWS EC2 for hosting\n- AWS S3 for image storage\n- Cloudflare CDN\n- GitHub Actions for CI/CD\n\n**Payment & Services**\n- Stripe for payments\n- SendGrid for emails\n- Sentry for error tracking\n\n## Future Improvements\n\n- [ ] Mobile app (React Native)\n- [ ] Multi-language support\n- [ ] Wishlist and product recommendations\n- [ ] Live chat support\n- [ ] Advanced analytics dashboard\n\n## Screenshots\n\n*(Screenshots would go here in production)*\n\n## Lessons Learned\n\n1. **Start with Performance**: Built with performance in mind from day one rather than optimizing later\n2. **Testing Matters**: Comprehensive test suite caught critical bugs before production\n3. **Monitor Everything**: Proper logging and monitoring essential for maintaining uptime\n4. **User Feedback**: Regular user testing revealed UX issues we wouldn't have found otherwise\n\n---\n\n**Project Status**: ✅ Live in Production  \n**GitHub**: [View Source Code](https://github.com/alexjohnson/ecommerce-platform)  \n**Demo**: [Try it Live](https://shop-demo.example.com)\n"
  },
  {
    "path": "templates/dev-portfolio/content/projects/task-manager/index.md",
    "content": "---\ntitle: \"TaskFlow - Project Management Tool\"\ndate: 2024-09-20\nsummary: \"Real-time collaborative task management application with drag-and-drop Kanban boards and team features\"\ntags:\n  - Full-Stack\n  - Next.js\n  - Real-Time\n  - Productivity\ntech_stack:\n  - Next.js\n  - TypeScript\n  - Prisma\n  - PostgreSQL\n  - WebSockets\n  - Tailwind CSS\nlinks:\n  - type: github\n    url: https://github.com/alexjohnson/taskflow\n    label: Code\n  - type: live\n    url: https://taskflow-demo.example.com\n    label: Demo\nfeatured: true\nstatus: \"Live\"\nrole: \"Solo Developer\"\nduration: \"2 months\"\nteam_size: 1\nhighlights:\n  - \"Real-time collaboration with WebSockets\"\n  - \"2000+ active users\"\n  - \"Featured on Product Hunt\"\n---\n\nA modern, intuitive task management tool built for remote teams. Features real-time collaboration, customizable workflows, and beautiful UI.\n\n## Overview\n\nTaskFlow was born out of frustration with existing project management tools being either too complex or lacking essential features. I built a solution that's powerful yet simple to use.\n\n## Key Features\n\n### Core Functionality\n- **Kanban Boards** - Drag-and-drop interface for visual task management\n- **Real-Time Sync** - See changes instantly as team members update tasks\n- **Multiple Views** - Switch between Kanban, List, and Calendar views\n- **Task Details** - Rich descriptions, attachments, comments, and checklists\n- **Labels & Filters** - Organize and find tasks quickly\n\n### Collaboration\n- **Team Workspaces** - Separate spaces for different projects/teams\n- **@Mentions** - Tag team members in comments for notifications\n- **Activity Feed** - Track all changes and updates\n- **Permissions** - Role-based access control (admin, member, viewer)\n\n### Productivity\n- **Keyboard Shortcuts** - Power user features for faster navigation\n- **Templates** - Reusable board templates for common workflows\n- **Due Dates & Reminders** - Never miss a deadline\n- **Time Tracking** - Built-in timer for task duration tracking\n\n## Technical Implementation\n\n### Real-Time Features\nUsed WebSockets (Socket.io) for instant updates across all connected clients. Implemented optimistic UI updates for snappy user experience even before server confirmation.\n\n### Drag & Drop\nBuilt custom drag-and-drop using react-beautiful-dnd with smooth animations and mobile touch support.\n\n### Performance\n- Implemented virtual scrolling for boards with 1000+ tasks\n- Optimized database queries with proper indexing\n- Used Redis for session storage and caching\n- Image optimization with Next.js Image component\n\n### Authentication\n- Secure auth with NextAuth.js\n- Support for email/password and OAuth (Google, GitHub)\n- JWT tokens with automatic refresh\n\n## Architecture\n\nBuilt as a modern monolith with Next.js API routes:\n\n```\n┌─────────────┐     ┌──────────────┐     ┌─────────────┐\n│  Next.js    │────▶│   API Routes │────▶│ PostgreSQL  │\n│  (React)    │     │  (REST/WS)   │     │  + Prisma   │\n└─────────────┘     └──────────────┘     └─────────────┘\n       │                    │\n       │             ┌──────▼───────┐\n       └────────────▶│  Socket.io   │\n                     │  (Real-Time) │\n                     └──────────────┘\n```\n\n## Challenges Solved\n\n### Real-Time Conflicts\n**Problem**: Multiple users editing same task simultaneously\n\n**Solution**: Implemented operational transformation (OT) for conflict resolution and last-write-wins strategy with conflict notifications\n\n### Mobile Performance\n**Problem**: Drag-and-drop laggy on mobile devices\n\n**Solution**: Optimized touch handlers and reduced re-renders using React.memo and useMemo\n\n### Scale\n**Problem**: Growing user base causing performance issues\n\n**Solution**: Added Redis caching layer and optimized database queries, reducing response time by 65%\n\n## Results\n\n- 📈 **Users**: 2000+ active users within 3 months\n- ⭐ **Product Hunt**: Featured and received 200+ upvotes\n- 🚀 **Performance**: Sub-100ms API response times\n- 💯 **Uptime**: 99.8% uptime since launch\n- 📱 **Mobile**: 40% of traffic from mobile devices\n\n## Tech Stack\n\n**Frontend**\n- Next.js 14 (App Router)\n- TypeScript\n- Tailwind CSS\n- Framer Motion (animations)\n- React Beautiful DnD\n\n**Backend**\n- Next.js API Routes\n- Prisma ORM\n- PostgreSQL\n- Socket.io for WebSockets\n- NextAuth.js for authentication\n\n**Infrastructure**\n- Vercel for hosting\n- Supabase for PostgreSQL\n- Redis Cloud for caching\n- AWS S3 for file storage\n\n## User Feedback\n\n> \"Finally, a task manager that doesn't get in my way. The real-time updates are magical!\" - Sarah K., Product Manager\n\n> \"We switched from Trello and haven't looked back. TaskFlow is faster and more intuitive.\" - Mike R., Engineering Lead\n\n## Open Source\n\nTaskFlow is open source! Contributions welcome.\n\n**License**: MIT  \n**GitHub**: [alexjohnson/taskflow](https://github.com/alexjohnson/taskflow)  \n**Demo**: [Try it live](https://taskflow-demo.example.com)\n\n## What's Next\n\nCurrently working on:\n- [ ] Mobile apps (iOS & Android)\n- [ ] Gantt chart view\n- [ ] Advanced reporting and analytics\n- [ ] API for third-party integrations\n- [ ] Offline mode support\n\n---\n\n**Status**: ✅ Live & Actively Maintained  \n**Try it**: [taskflow-demo.example.com](https://taskflow-demo.example.com)\n"
  },
  {
    "path": "templates/dev-portfolio/content/projects/weather-app/index.md",
    "content": "---\ntitle: \"WeatherNow - Real-Time Weather App\"\ndate: 2024-06-10\nsummary: \"Beautiful weather application with real-time data, 7-day forecasts, and interactive maps\"\ntags:\n  - Frontend\n  - React\n  - API Integration\n  - PWA\ntech_stack:\n  - React\n  - TypeScript\n  - OpenWeather API\n  - Mapbox\n  - Tailwind CSS\n  - Vite\nlinks:\n  - type: github\n    url: https://github.com/alexjohnson/weather-now\n    label: Code\n  - type: live\n    url: https://weathernow-demo.netlify.app\n    label: Demo\nfeatured: false\nstatus: \"Live\"\nrole: \"Solo Developer\"\nduration: \"3 weeks\"\nteam_size: 1\nhighlights:\n  - \"PWA with offline support\"\n  - \"5000+ monthly active users\"\n  - \"Lighthouse score: 100\"\n---\n\nA fast, beautiful weather application that provides real-time weather data, forecasts, and interactive maps. Built as a Progressive Web App with offline support.\n\n## Overview\n\nWeatherNow started as a weekend project to learn PWA development. It evolved into a fully-featured weather app used by thousands of people daily.\n\n## Features\n\n### Weather Data\n- **Current Conditions** - Real-time weather for any location\n- **7-Day Forecast** - Detailed daily forecasts with hourly breakdown\n- **Weather Alerts** - Severe weather notifications\n- **Historical Data** - Past weather data and trends\n\n### User Experience\n- **Location Detection** - Automatic location based on GPS or IP\n- **Search** - Find weather for any city worldwide\n- **Favorites** - Save frequently checked locations\n- **Units** - Toggle between metric and imperial\n- **Dark Mode** - Automatic or manual theme switching\n\n### Progressive Web App\n- **Offline Support** - Access cached data without internet\n- **Install** - Add to home screen like a native app\n- **Fast** - Optimized for performance (Lighthouse 100)\n- **Responsive** - Perfect on any device\n\n## Technical Highlights\n\n### Performance\n- Achieved **100/100 Lighthouse score** across all categories\n- Implemented service workers for offline functionality\n- Optimized bundle size: < 150KB gzipped\n- Lazy loading for images and components\n- Prefetching for instant navigation\n\n### Data Management\n- Smart caching strategy with stale-while-revalidate\n- Background sync for updated forecasts\n- Efficient API usage with request batching\n- Local storage for user preferences\n\n### UI/UX\n- Smooth animations with Framer Motion\n- Interactive weather map with Mapbox\n- Weather icons that match current conditions\n- Accessible (WCAG AA compliant)\n\n## API Integration\n\nIntegrated multiple weather APIs for comprehensive data:\n\n```typescript\n// Example: Fetching weather data\nconst fetchWeather = async (lat: number, lon: number) => {\n  const response = await fetch(\n    `https://api.openweathermap.org/data/2.5/weather?lat=${lat}&lon=${lon}&appid=${API_KEY}`\n  )\n  return response.json()\n}\n```\n\n## Architecture\n\n```\n┌─────────────┐     ┌──────────────┐\n│  React App  │────▶│ OpenWeather  │\n│   (Vite)    │     │     API      │\n└──────┬──────┘     └──────────────┘\n       │\n       │            ┌──────────────┐\n       └───────────▶│   Mapbox     │\n                    │     API      │\n                    └──────────────┘\n```\n\n## Challenges\n\n### Challenge: API Rate Limits\n**Solution**: Implemented intelligent caching and request batching to stay within free tier limits while maintaining data freshness\n\n### Challenge: Offline Experience\n**Solution**: Service workers with cache-first strategy for UI, network-first for data with graceful fallbacks\n\n### Challenge: Performance on Slow Networks\n**Solution**: Image optimization, code splitting, and Progressive rendering for instant perceived performance\n\n## Results\n\n- 📈 **Users**: 5000+ monthly active users\n- ⚡ **Performance**: 100 Lighthouse score\n- 📱 **PWA**: 40% of users installed as app\n- 🌍 **Global**: Users from 50+ countries\n- ⭐ **Rating**: 4.8/5 average user rating\n\n## Tech Stack\n\n**Frontend**\n- React 18\n- TypeScript\n- Tailwind CSS\n- Framer Motion\n- Vite (build tool)\n\n**APIs**\n- OpenWeather API\n- Mapbox GL JS\n- IP Geolocation API\n\n**Tools**\n- Workbox (PWA)\n- React Query (data fetching)\n- Zustand (state management)\n\n**Hosting**\n- Netlify\n- Cloudflare CDN\n\n## Open Source\n\nThis project is open source and welcomes contributions!\n\n**License**: MIT  \n**GitHub**: [alexjohnson/weather-now](https://github.com/alexjohnson/weather-now)\n\n## Lessons Learned\n\n1. **PWAs are powerful**: Service workers enable app-like experiences on the web\n2. **Performance matters**: Users notice and appreciate fast apps\n3. **Caching strategy**: Critical for offline support and API cost management\n4. **Simplicity wins**: Started with core features, added more based on user feedback\n\n## Future Plans\n\n- [ ] Weather widgets for websites\n- [ ] Social features (share weather conditions)\n- [ ] Weather photography integration\n- [ ] Apple Watch & Android Wear apps\n- [ ] Premium features (ad-free, extended forecasts)\n\n---\n\n**Status**: ✅ Live & Maintained  \n**Try it**: [weathernow-demo.netlify.app](https://weathernow-demo.netlify.app)  \n**GitHub**: [@alexjohnson/weather-now](https://github.com/alexjohnson/weather-now)\n"
  },
  {
    "path": "templates/dev-portfolio/data/authors/me.yaml",
    "content": "schema: hugoblox/author/v1\nslug: me\nis_owner: true\nname:\n  display: Alex Johnson\n  given: Alex\n  family: Johnson\npostnominals: []\nstatus:\n  icon: \"💻\"  # Emoji shown on avatar badge: 💻 developer, 🎨 designer, 🚀 startup, 🔬 researcher, 🎓 student\nrole: Full-Stack Developer\nemail: alex@example.com\nbio: |\n  Full-stack developer with 5+ years of experience building scalable web applications.\n  Passionate about modern JavaScript, cloud architecture, and creating delightful user experiences.\n\naffiliations:\n  - name: Tech Corp\n    url: https://techcorp.example.com\n\nlinks:\n  - icon: at-symbol\n    url: mailto:alex@example.com\n    label: E-mail Me\n  - icon: brands/github\n    url: https://github.com/alexjohnson\n  - icon: brands/linkedin\n    url: https://www.linkedin.com/in/alexjohnson/\n  - icon: brands/x\n    url: https://x.com/alexjohnson\n\ninterests:\n  - Web Development\n  - Cloud Architecture\n  - Open Source\n  - Developer Experience\n\neducation:\n  - degree: B.S. Computer Science\n    institution: State University\n    start: 2015-09-01\n    end: 2019-05-31\n    summary: |\n      Focus on software engineering and distributed systems.\n      Senior project on distributed caching systems.\n    button:\n      text: View Project\n      url: https://github.com/alexjohnson/senior-project\n      icon: brands/github\n\nexperience:\n  - role: Senior Software Engineer\n    org: Tech Corp\n    start: 2023-01-01\n    summary: |\n      Lead development of microservices architecture serving 1M+ users.\n      Improved API response time by 40% through optimization.\n      Mentored team of 5 junior developers.\n  - role: Full-Stack Developer\n    org: Startup Inc\n    start: 2021-06-01\n    end: 2022-12-31\n    summary: |\n      Built and deployed 3 production applications from scratch.\n      Implemented CI/CD pipeline reducing deployment time by 60%.\n      Led migration from monolith to microservices architecture.\n  - role: Junior Developer\n    org: Web Agency\n    start: 2020-01-01\n    end: 2021-05-31\n    summary: |\n      Developed client websites using React and modern web technologies.\n      Participated in code reviews and agile ceremonies.\n\nskills:\n  - name: Development\n    items:\n      - label: TypeScript\n        level: 5\n      - label: React\n        level: 5\n      - label: Node.js\n        level: 5\n      - label: Python\n        level: 4\n  - name: DevOps\n    items:\n      - label: Docker\n        level: 4\n      - label: AWS\n        level: 4\n      - label: CI/CD\n        level: 5\n\nlanguages:\n  - name: English\n    level: 5\n    label: Native\n\nawards: []\n"
  },
  {
    "path": "templates/dev-portfolio/go.mod",
    "content": "module github.com/HugoBlox/kit/templates/dev-portfolio-free\n\ngo 1.19\n\nrequire (\n\tgithub.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652\n\tgithub.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c\n)\n"
  },
  {
    "path": "templates/dev-portfolio/hugoblox.yaml",
    "content": "build:\n  hugo_version: '0.156.0'\ndeploy:\n  # Deployment target: github-pages, netlify, vercel, cloudflare, or none\n  host: 'github-pages'\ntemplate:\n  id: \"dev-portfolio\"\n  name: \"Developer Portfolio\"\n"
  },
  {
    "path": "templates/dev-portfolio/netlify.toml",
    "content": "[build]\n  command = \"\"\"\n    set -e\n    echo \"=== Starting Blog build process ===\"\n    echo \"Node version: $(node --version)\"\n    echo \"pnpm version: $(pnpm --version)\"\n    echo \"Hugo version: $(hugo version)\"\n    echo \"Go version: $(go version || echo 'Go not available')\"\n    \n    echo \"=== Installing dependencies ===\"\n    pnpm install --verbose --no-frozen-lockfile\n    \n    echo \"=== Running Hugo build ===\"\n    hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings\n    \n    echo \"=== Running Pagefind indexing ===\"\n    pnpm run pagefind\n    \n    echo \"=== Build completed successfully ===\"\n  \"\"\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.156.0\"\n  GO_VERSION = \"1.21.5\"\n  NODE_VERSION = \"22\"\n  # Netlify runs an implicit install step; ensure it never enforces frozen lockfiles\n  PNPM_FLAGS = \"--no-frozen-lockfile\"\n  HUGO_ENABLEGITINFO = \"true\"\n  HUGO_LOG_I18N_WARNINGS = \"true\"\n  HUGO_LOG_WARNINGS = \"true\"\n  FORCE_COLOR = \"1\"\n  PNPM_LOG_LEVEL = \"debug\"\n\n[context.production.environment]\n  HUGO_ENV = \"production\"\n\n[context.deploy-preview]\n  command = \"\"\"\n    set -e\n    echo \"=== Deploy Preview Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[context.branch-deploy]\n  command = \"\"\"\n    set -e\n    echo \"=== Branch Deploy Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[[plugins]]\n  package = \"netlify-plugin-hugo-cache-resources\"\n  [plugins.inputs]\n    debug = true\n"
  },
  {
    "path": "templates/dev-portfolio/package.json",
    "content": "{\n  \"name\": \"hugo-blox-dev-portfolio-free\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"description\": \"Modern developer portfolio template for Hugo Blox with Tailwind CSS v4 - Free version\",\n  \"scripts\": {\n    \"dev\": \"hugo server --disableFastRender\",\n    \"build\": \"hugo --minify && pnpm run pagefind\",\n    \"pagefind\": \"pagefind --site public\"\n  },\n  \"dependencies\": {\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.10\",\n    \"pagefind\": \"^1.4.0\",\n    \"preact\": \"^10.27.2\",\n    \"tailwindcss\": \"^4.1.12\"\n  }\n}\n"
  },
  {
    "path": "templates/documentation/.devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"HugoBlox Codespace\",\n  \"image\": \"ghcr.io/HugoBlox/hugo-blox-dev:hugo0.156.0\",\n  \"updateContentCommand\": \"pnpm install --frozen-lockfile --prefer-offline\",\n  \"postCreateCommand\": \"pnpm --version && hugo version\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"ownable.ownable\"]\n    }\n  },\n  \"mounts\": [\"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume\"],\n  \"remoteUser\": \"vscode\",\n  \"forwardPorts\": [1313],\n  \"portsAttributes\": {\n    \"1313\": {\n      \"label\": \"Hugo Server\"\n    }\n  }\n}\n"
  },
  {
    "path": "templates/documentation/.editorconfig",
    "content": "# editorconfig.org\n\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_size = 2\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n\n[*.toml]\nmax_line_length = 100\n\n[*.md]\ntrim_trailing_whitespace = false\n\n[layouts/shortcodes/*.html]\ninsert_final_newline = false\n"
  },
  {
    "path": "templates/documentation/.github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": "templates/documentation/.github/workflows/build.yml",
    "content": "name: Build\n\nenv:\n  NODE_VERSION: '20'\n\non:\n  # Standalone trigger for PR validation\n  pull_request:\n    branches: ['main']\n  # Reusable workflow trigger - called by deploy.yml\n  workflow_call:\n    outputs:\n      artifact-id:\n        description: 'The ID of the uploaded artifact'\n        value: ${{ jobs.build.outputs.artifact-id }}\n  # Allow manual trigger for testing\n  workflow_dispatch:\n\n# Read-only permissions for security\npermissions:\n  contents: read\n\n# Prevent duplicate builds for the same PR\nconcurrency:\n  group: build-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    outputs:\n      artifact-id: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        # Fetch history for Hugo's .GitInfo and .Lastmod\n        fetch-depth: 0\n\n    - name: Setup Node.js\n      uses: actions/setup-node@v6\n      with:\n        node-version: ${{ env.NODE_VERSION }}\n\n    - name: Setup pnpm\n      if: hashFiles('package.json') != ''\n      uses: pnpm/action-setup@v4\n\n    - name: Get Hugo Version\n      id: hugo-version\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read hugo_version from hugoblox.yaml\n        VERSION=$(yq '.hugo_version // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        \n        # Fallback to a known stable version if not specified\n        DEFAULT_VERSION=\"0.154.5\"\n        VERSION=${VERSION:-$DEFAULT_VERSION}\n        \n        # Validate version format (basic check)\n        if [[ ! \"$VERSION\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then\n          echo \"::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION\"\n          VERSION=\"$DEFAULT_VERSION\"\n        fi\n        \n        echo \"HUGO_VERSION=$VERSION\" >> $GITHUB_ENV\n        echo \"Using Hugo version: $VERSION\"\n\n    - name: Install dependencies\n      run: |\n        # Install Tailwind CLI if package.json exists\n        if [ -f \"package.json\" ]; then\n          echo \"Installing Tailwind dependencies...\"\n          pnpm install --no-frozen-lockfile || npm install\n        fi\n\n    - name: Setup Hugo\n      uses: peaceiris/actions-hugo@v3\n      with:\n        hugo-version: ${{ env.HUGO_VERSION }}\n        extended: true\n\n    # Cache dependencies (Go modules, node_modules) - stable, rarely changes\n    - uses: actions/cache@v4\n      with:\n        path: |\n          /tmp/hugo_cache_runner/\n          node_modules/\n          modules/*/node_modules/\n        key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json',\n          '**/pnpm-lock.yaml') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-deps-\n\n    # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change\n    - uses: actions/cache@v4\n      with:\n        path: resources/\n        key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*',\n          'hugo.yaml', 'package.json') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-resources-\n\n    - name: Build with Hugo\n      env:\n        HUGO_ENVIRONMENT: production\n        HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }}\n      run: |\n        echo \"Hugo Cache Dir: $(hugo config | grep cachedir)\"\n        hugo --minify\n\n    - name: Generate Pagefind search index (if applicable)\n      run: |\n        # Check if site uses Pagefind search\n        if [ -f \"package.json\" ] && grep -q \"pagefind\" package.json; then\n          pnpm run pagefind || npx pagefind --site \"public\"\n        fi\n\n    - name: Upload artifact\n      id: upload\n      uses: actions/upload-pages-artifact@v4\n      with:\n        path: ./public\n"
  },
  {
    "path": "templates/documentation/.github/workflows/deploy.yml",
    "content": "name: Deploy website to GitHub Pages\n\non:\n  # Trigger the workflow every time you push to the `main` branch\n  push:\n    branches: ['main']\n  # Allows you to run this workflow manually from the Actions tab on GitHub\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: 'pages'\n  cancel-in-progress: false\n\njobs:\n  # Check deployment configuration\n  config:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    outputs:\n      deploy-host: ${{ steps.check.outputs.host }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        sparse-checkout: hugoblox.yaml\n        sparse-checkout-cone-mode: false\n\n    - name: Check deploy host\n      id: check\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read deploy.host from hugoblox.yaml, default to github-pages\n        HOST=$(yq '.deploy.host // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        HOST=${HOST:-github-pages}\n        \n        # Validate known hosts\n        if [[ ! \"$HOST\" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then\n          echo \"::warning::Unknown deploy host '$HOST', defaulting to github-pages\"\n          HOST=\"github-pages\"\n        fi\n        \n        echo \"host=$HOST\" >> $GITHUB_OUTPUT\n        echo \"Deployment target: $HOST\"\n\n  # Build website using reusable workflow (always runs for CI)\n  build:\n    needs: config\n    if: github.repository_owner != 'HugoBlox'\n    uses: ./.github/workflows/build.yml\n    secrets: inherit\n\n  # Deploy website to GitHub Pages hosting (only if configured)\n  deploy:\n    needs: [config, build]\n    if: needs.config.outputs.deploy-host == 'github-pages'\n    # Grant GITHUB_TOKEN the permissions required to make a Pages deployment\n    permissions:\n      pages: write # to deploy to Pages\n      id-token: write # to verify the deployment originates from an appropriate source\n    # Deploy to the github-pages environment\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    steps:\n    - name: Deploy to GitHub Pages\n      id: deployment\n      uses: actions/deploy-pages@v4\n"
  },
  {
    "path": "templates/documentation/.github/workflows/upgrade.yml",
    "content": "name: Upgrade HugoBlox\n\non:\n  workflow_dispatch:\n    inputs:\n      version_type:\n        description: 'Upgrade to version'\n        required: true\n        default: 'Stable'\n        type: choice\n        options:\n        - Stable\n        - Beta (Preview)\n  schedule:\n    # Run at 05:00 on Monday\n    - cron: '0 5 * * 1'\n\npermissions:\n  contents: write\n  pull-requests: write\n\n# Prevent duplicate upgrade runs\nconcurrency:\n  group: upgrade-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  upgrade:\n    name: Upgrade\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 15\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v6\n        with:\n          node-version: '22'\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n        with:\n          package_json_path: ./package.json\n          run_install: false\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: '1.23'\n\n      - name: Setup Hugo\n        uses: peaceiris/actions-hugo@v3\n        with:\n          hugo-version: 'latest'\n          extended: true\n\n      - name: Run Upgrade CLI\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # Use manual input or default to stable for scheduled runs\n          VERSION_TYPE: ${{ inputs.version_type || 'Stable' }}\n        run: |\n          FLAGS=\"--yes --ci\"\n          \n          if [ \"$VERSION_TYPE\" == \"Beta (Preview)\" ]; then\n            FLAGS=\"$FLAGS --canary\"\n          fi\n          \n          echo \"Running upgrade with flags: $FLAGS\"\n          pnpm dlx hugoblox@latest upgrade $FLAGS\n\n\n      - name: Create Pull Request\n        uses: peter-evans/create-pull-request@v6\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          commit-message: \"chore(deps): upgrade hugoblox modules\"\n          title: \"⬆️ Upgrade HugoBlox Modules\"\n          body: |\n            This PR upgrades the [HugoBlox](https://hugoblox.com) modules to the latest version.\n            \n            **Changes:**\n            - Updated Hugo Modules (go.mod/go.sum)\n            - Applied automatic migrations (if any)\n            \n            **Verification:**\n            - [ ] Check the Deploy Preview to ensure everything looks correct.\n            - [ ] Merge this PR to apply the updates.\n          branch: \"chore/upgrade-hugoblox-${{ github.run_id }}\"\n          delete-branch: true\n          base: main\n          labels: |\n            dependencies\n            automated-pr\n"
  },
  {
    "path": "templates/documentation/.gitignore",
    "content": "# ============================================================================\n# Hugo Site .gitignore\n# ============================================================================\n\n# ============================================================================\n# Hugo Build Artifacts\n# ============================================================================\n\n# Generated site output\npublic/\n\n# Hugo resources (processed assets)\nresources/\n\n# Hugo build lock\n.hugo_build.lock\n\n# Hugo stats\nhugo_stats.json\n\n# Auto-generated JS config\n**/assets/jsconfig.json\n\n# ============================================================================\n# Node.js & Package Managers\n# ============================================================================\n\n# Dependencies\nnode_modules/\n\n# ============================================================================\n# Environment & Configuration\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# ============================================================================\n# Generated Content\n# ============================================================================\n\n# Pagefind search index\npagefind/\nstatic/pagefind/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n\n# Windows\nThumbs.db\nDesktop.ini\n\n# Linux\n*~\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n*.log\nnpm-debug.log*\n"
  },
  {
    "path": "templates/documentation/.vscode/extensions.json",
    "content": "{\n  \"recommendations\": [\"ownable.ownable\"]\n}\n"
  },
  {
    "path": "templates/documentation/LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2016-present George Cushen (https://georgecushen.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in 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": "templates/documentation/README.md",
    "content": "# [Hugo Docs Theme](https://github.com/HugoBlox/hugo-theme-documentation)\n\n[![Screenshot](https://raw.githubusercontent.com/HugoBlox/hugo-theme-documentation/main/.github/preview.png)](https://hugoblox.com/templates/details/docs/)\n\nThe Hugo **Documentation Template** empowers with everything you need to build a beautiful documentation website, including a customizable block-based homepage and blog. It's ultra-fast and easy, letting you focus on your content. It's also no-code by default, so no JavaScript knowledge is required unlike other templates!\n\n️**Trusted by 250,000+ creators, teams, and organizations.** Highly customizable via the integrated **no-code, block-based website builder**, making every site truly personalized ⭐⭐⭐⭐⭐\n\n[![Get Started](https://img.shields.io/badge/-Get%20started-ff4655?style=for-the-badge)](https://hugoblox.com/templates/details/docs/)\n[![Discord](https://img.shields.io/discord/722225264733716590?style=for-the-badge)](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)  \n[![Twitter Follow](https://img.shields.io/twitter/follow/MakeOwnable?label=Follow%20on%20Twitter)](https://x.com/MakeOwnable)\n\n[Check out the latest demo](https://hugo-docs-theme.netlify.app/) of what you'll get in less than 10 minutes, or [view the showcase](https://hugoblox.com/creators/).\n\nThe integrated [**Hugo Blox**](https://hugoblox.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs.\n\n- 👉 [**Get Started**](https://hugoblox.com/templates/details/docs/)\n- 📚 [View the **documentation**](https://docs.hugoblox.com/)\n- 💬 [Chat with the **HugoBlox Kit community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)\n- ⬇️ **Automatically import citations from BibTeX** with the [Academic File Converter](https://github.com/GetRD/academic-file-converter)\n- 🐦 Share your new site with the community: [@MakeOwnable](https://x.com/MakeOwnable)  [#MadeWithHugoBlox](https://x.com/search?q=%23MadeWithHugoBlox&src=typed_query)\n- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)\n- 🚀 [Contribute improvements](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/HugoBlox/kit/issues)\n- ⬆️ **Updating?** View the [Update Guide](https://docs.hugoblox.com/reference/update/) and [Release Notes](https://github.com/HugoBlox/kit/releases)\n\n## We ask you, humbly, to support this open source movement\n\nToday we ask you to defend the open source independence of the HugoBlox Kit and themes 🐧\n\nWe're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way.\n\n### [❤️ Click here to become a Sponsor, unlocking awesome perks such as _exclusive_ templates and blox_](https://hugoblox.com/sponsor/)\n"
  },
  {
    "path": "templates/documentation/assets/media/icons/custom/.gitkeep",
    "content": ""
  },
  {
    "path": "templates/documentation/config/_default/hugo.yaml",
    "content": "# Configuration of Hugo\n# Guide: https://docs.hugoblox.com/tutorial/\n# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings\n# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/\n\n# Website name (set in params.yaml under hugoblox.branding.name)\ntitle: ''\nbaseURL: 'https://example.com/' # Website URL\n\n############################\n## PAGE OPTIONS\n############################\n\ncascade:\n  # Docs folder options\n  - _target:\n      path: /docs/**\n    editable: true\n    show_breadcrumb: true\n    # Hide date from Next In Series\n    show_date: false\n    # Show date modified at end of content\n    show_date_updated: true\n  # Blog post options\n  - _target:\n      path: /blog/**\n      kind: page\n    pager: true\n    editable: true\n    hide_date: false\n    show_date_updated: true\n    reading_time: true\n    commentable: true\n    show_related: true\n    share: true\n    # Just use Breadcrumb for navigation on blog post pages?\n    show_breadcrumb: false\n    header:\n      navbar:\n        enable: true\n\n############################\n## LANGUAGE\n############################\n\ndefaultContentLanguage: en\nhasCJKLanguage: false\ndefaultContentLanguageInSubdir: false\nremovePathAccents: true\n\n############################\n## ADVANCED\n############################\n\nbuild:\n  writeStats: true\nenableGitInfo: false\nsummaryLength: 30\npagination:\n  pagerSize: 10\nenableEmoji: true\nenableRobotsTXT: true\nfootnotereturnlinkcontents: <sup>^</sup>\nignoreFiles: [\".ipynb_checkpoints$\", \"\\\\.Rmd$\", \"\\\\.Rmarkdown$\", \"_cache$\"]\nenableInlineShortcodes: true\ndisableAliases: true\noutputs:\n  home: [HTML, RSS, WebAppManifest, headers, redirects, backlinks]\n  page: [HTML]\n  section: [HTML, RSS]\nimaging:\n  resampleFilter: lanczos\n  quality: 90\n  anchor: smart\n  hint: picture\ntimeout: 600000\ntaxonomies:\n  tag: tags\n  category: categories\n  author: authors\nmarkup:\n  _merge: deep\nrelated:\n  threshold: 80\n  includeNewer: true\n  toLower: true\n  indices:\n    - name: tags\n      weight: 100\n    - name: categories\n      weight: 70\nsecurity:\n  _merge: deep\nsitemap:\n  _merge: deep\nminify:\n  _merge: deep\n"
  },
  {
    "path": "templates/documentation/config/_default/languages.yaml",
    "content": "# Languages\n#   Create a section for each of your site's languages.\n#   Documentation: https://docs.hugoblox.com/reference/language/\n\n# Default language\nen:\n  languageCode: en-us\n  # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.\n  #contentDir: content/en\n\n# Uncomment the lines below to configure your website in a second language.\n#zh:\n#  languageCode: zh-Hans\n#  contentDir: content/zh\n#  title: Chinese website title...\n#  params:\n#    description: Site description in Chinese...\n#  menu:\n#    main:\n#      - name: 传\n#        url: '#about'\n#        weight: 1\n"
  },
  {
    "path": "templates/documentation/config/_default/menus.yaml",
    "content": "# Navigation Links\n#   The weight parameter defines the order that the links will appear in.\n\nmain:\n  - name: Home\n    url: /\n    weight: 10\n  - name: Documentation\n    url: docs/\n    weight: 20\n  - name: Blog\n    url: blog/\n    weight: 30\n  - name: Showcase\n    url: showcase/\n    weight: 40\n  - name: Community\n    url: community/\n    weight: 50\n\nsidebar:\n  - identifier: more\n    name: Still need help?\n    params:\n      type: separator\n    weight: 1\n  - identifier: community\n    name: \"Community\"\n    pageRef: \"/community\"\n    weight: 2\n  - identifier: hugoDocs\n    name: \"Hugo Docs ↗\"\n    url: \"https://docs.hugoblox.com\"\n    weight: 3\n"
  },
  {
    "path": "templates/documentation/config/_default/module.yaml",
    "content": "############################\n## HUGO MODULES\n## Install or uninstall themes and plugins here.\n## Docs: https://gohugo.io/hugo-modules/\n############################\n\nimports:\n  - path: github.com/HugoBlox/kit/modules/integrations/netlify\n  - path: github.com/HugoBlox/kit/modules/blox\n\n# Install any Hugo Blox within the `hugo-blox/blox/` folder\nmounts:\n  - source: hugo-blox/blox/community\n    target: layouts/_partials/blox/community/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox/all-access\n    target: layouts/_partials/blox/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox\n    target: assets/dist/community/blox/\n    files:\n      - '**.css'\n  - source: layouts\n    target: layouts\n  - source: assets\n    target: assets\n"
  },
  {
    "path": "templates/documentation/config/_default/params.yaml",
    "content": "# ══════════════════════════════════════════════════════════════════════════════\n# HUGO BLOX CONFIGURATION\n# Schema: hugoblox.com/schema/v2\n# Tutorial: https://docs.hugoblox.com/tutorial/\n# Documentation: https://docs.hugoblox.com/\n# ══════════════════════════════════════════════════════════════════════════════\nhugoblox:\n  schema: \"2.0\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # IDENTITY\n  # Site-level branding (for people/profiles, use the author system in content/authors/)\n  # ────────────────────────────────────────────────────────────────────────────\n  identity:\n    # Site name - shown in navbar, footer, copyright, and browser title by default\n    name: \"Your Name\"\n    # Legal entity for copyright notices (defaults to name if not set)\n    organization: \"\"\n    # Schema.org type for structured data\n    type: person                        # person | organization | local_business\n    # Short tagline displayed on your site\n    tagline: \"\"\n    # Site meta description for search engines and social sharing\n    description: \"The highly-customizable Hugo Academic theme powered by HugoBlox Kit. Easily create your personal academic website.\"\n    # Social accounts (used for meta tags like Twitter Cards)\n    social:\n      twitter: \"MakeOwnable\"              # Twitter/X handle for Twitter Cards (without @)\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # THEME\n  # Color and visual design system\n  # ────────────────────────────────────────────────────────────────────────────\n  theme:\n    # Mode: 'light', 'dark', or 'system' (follows OS preference)\n    mode: system\n    # Theme pack: name from data/themes/ or { light: \"x\", dark: \"y\" } for mix-and-match\n    pack: \"default\"\n    # Optional: Override theme pack colors\n    colors:\n      primary: \"\"                       # Tailwind palette name or hex (e.g., \"indigo\" or \"#6366f1\")\n      secondary: \"\"\n      neutral: \"\"                       # Affects gray utilities (text-gray-*, bg-gray-*)\n    # Optional: Mode-specific color overrides\n    colors_light: {}\n    colors_dark: {}\n    # Optional: Semantic surface color overrides\n    surfaces:\n      background: \"\"\n      foreground: \"\"\n      header:\n        background: \"\"\n        foreground: \"\"\n      footer:\n        background: \"\"\n        foreground: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # TYPOGRAPHY\n  # Font and text sizing\n  # ────────────────────────────────────────────────────────────────────────────\n  typography:\n    # Theme pack: name from data/fonts/\n    pack: \"modern\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LAYOUT\n  # Spacing and shape tokens\n  # ────────────────────────────────────────────────────────────────────────────\n  layout:\n    # Border radius: 'none', 'sm', 'md', 'lg', or 'full'\n    radius: \"md\"\n    # Spacing density: 'compact', 'comfortable', or 'spacious'\n    spacing: \"comfortable\"\n    # Avatar shape in author profiles\n    avatar_shape: circle                # circle | square | rounded\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # HEADER\n  # Site header and navigation bar\n  # ────────────────────────────────────────────────────────────────────────────\n  header:\n    enable: true\n    # Header style variant\n    style: navbar                       # navbar | navbar-simple | minimal\n    # Stick to top on scroll\n    sticky: true\n    # Menu alignment\n    align: center                       # left | center | right\n    # Feature toggles\n    search: true\n    theme_toggle: true\n    theme_picker: false\n    language_switcher: true\n    # Call-to-action button\n    cta:\n      enable: false\n      text: \"\"\n      url: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # FOOTER\n  # Site footer\n  # ────────────────────────────────────────────────────────────────────────────\n  footer:\n    # Footer style variant\n    style: minimal                      # minimal | columns | centered\n    language_switcher: true\n    # Custom footer text (HTML supported)\n    text: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COPYRIGHT\n  # Legal notices and licensing\n  # ────────────────────────────────────────────────────────────────────────────\n  copyright:\n    # Copyright notice - supports {year}, {name}, {license} placeholders\n    notice: \"© {year} {name}. This work is licensed under {license}\"\n    license:\n      type: cc                          # cc | custom\n      allow_derivatives: false\n      share_alike: true\n      allow_commercial: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEO\n  # Search engine optimization - overrides and technical settings\n  # ────────────────────────────────────────────────────────────────────────────\n  seo:\n    # Browser tab title override (defaults to identity.name if not set)\n    title: \"\"\n    # For local_business identity type only\n    location:\n      address:\n        street: \"\"\n        city: \"\"\n        region: \"\"\n        postal_code: \"\"\n        country: \"\"\n      coordinates:\n        latitude: null\n        longitude: null\n      phone: \"\"\n    # AI/LLM crawler guidance (llms.txt)\n    ai:\n      allow:\n        - /\n      disallow: []\n      note: \"Guidance for AI crawlers - customize to match your public content.\"\n      contact: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # CONTENT\n  # Content rendering and behavior\n  # ────────────────────────────────────────────────────────────────────────────\n  content:\n    # Math rendering\n    math:\n      enable: false\n    # Table of contents\n    toc:\n      enable: true\n    # Reading time estimates\n    reading_time:\n      enable: true\n    # Academic citations\n    citations:\n      style: apa                        # apa | mla | chicago | ieee\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEARCH\n  # Site search\n  # ────────────────────────────────────────────────────────────────────────────\n  search:\n    enable: true\n    # Trending/suggested search terms\n    suggestions: []\n    # Quick action shortcuts in search modal\n    quick_actions: []\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COMMENTS\n  # User comments system\n  # ────────────────────────────────────────────────────────────────────────────\n  comments:\n    enable: false\n    provider: \"\"                        # giscus | disqus\n    giscus:\n      repo: \"\"\n      repo_id: \"\"\n      category: \"\"\n      category_id: \"\"\n    disqus:\n      shortname: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # ANALYTICS\n  # Traffic and behavior analytics\n  # ────────────────────────────────────────────────────────────────────────────\n  analytics:\n    google:\n      measurement_id: \"\"                # Google Analytics 4: G-XXXXXXXXXX\n    google_tag_manager:\n      container_id: \"\"                  # GTM-XXXXXXX\n    plausible:\n      domain: \"\"\n    fathom:\n      site_id: \"\"\n    pirsch:\n      site_id: \"\"\n    clarity:\n      project_id: \"\"\n    baidu:\n      site_id: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # VERIFICATION\n  # Search engine site verification codes\n  # ────────────────────────────────────────────────────────────────────────────\n  verification:\n    google: \"\"\n    bing: \"\"\n    baidu: \"\"\n    yandex: \"\"\n    pinterest: \"\"\n    naver: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # REPOSITORY\n  # Source code repository for \"Edit this page\" links\n  # ────────────────────────────────────────────────────────────────────────────\n  repository:\n    enable: false\n    url: \"\"                             # e.g., https://github.com/username/repo\n    branch: main\n    content_dir: content\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LOCALE\n  # Regional formatting preferences\n  # ────────────────────────────────────────────────────────────────────────────\n  locale:\n    date_format: \"Jan 2, 2006\"          # Go time format\n    time_format: \"3:04 PM\"\n    address_format: en-us\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SECURITY\n  # Security headers and policies (requires Netlify integration)\n  # ────────────────────────────────────────────────────────────────────────────\n  security:\n    csp:\n      policy: \"\"\n      report_only: false\n    frame_options: allow                 # deny | sameorigin | allow - allow enables iframe embedding\n    permissions_policy: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PRIVACY\n  # Privacy and compliance features\n  # ────────────────────────────────────────────────────────────────────────────\n  privacy:\n    enable: false\n    anonymize_analytics: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # DEBUG\n  # Development and debugging (hidden in production)\n  # ────────────────────────────────────────────────────────────────────────────\n  debug:\n    enable: false\n    hud:\n      position: bottom-left             # top-left | top-right | bottom-left | bottom-right\n      opacity: 1.0\n    export_logs: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PREMIUM\n  # Premium features and creator program (affiliates)\n  # ────────────────────────────────────────────────────────────────────────────\n  pro:\n    # Hide \"Powered by HugoBlox\" attribution\n    # Requires: HugoBlox Premium to support HugoBlox via alternative means\n    # Note: Even with Premium, you can keep this false to support open source!\n    # Get Premium: https://hugoblox.com/premium\n    hide_attribution: false\n    \n    # Affiliate referral code for rewards program\n    # Join affiliate program: https://hugoblox.com/affiliates\n    affiliate_code: \"\"\n"
  },
  {
    "path": "templates/documentation/content/_index.md",
    "content": "---\ntitle: 'Home'\ndate: 2023-10-24\ntype: landing\n\ndesign:\n  # Default section spacing\n  spacing: \"6rem\"\n\nsections:\n  - block: hero\n    content:\n      title: Write Docs Fast, Focus on Your Content\n      text: The easy, no-code technical documentation solution your users will love 🎉\n      primary_action:\n        text: Get Started\n        url: https://hugoblox.com/templates/details/docs/\n        icon: rocket-launch\n      secondary_action:\n        text: Read the docs\n        url: /docs/\n      announcement:\n        text: \"Announcing the release of version 2.\"\n        link:\n          text: \"Read more\"\n          url: \"/blog/\"\n    design:\n      spacing:\n        padding: [0, 0, 0, 0]\n        margin: [0, 0, 0, 0]\n      # For full-screen, add `min-h-screen` below\n      css_class: \"\"\n      background:\n        color: \"\"\n        image:\n          # Add your image background to `assets/media/`.\n          filename: \"\"\n          filters:\n            brightness: 0.5\n  - block: stats\n    content:\n      items:\n        - statistic: \"1M+\"\n          description: |\n            Websites built  \n            with Hugo Blox\n        - statistic: \"10k+\"\n          description: |\n            GitHub stars  \n            since 2016\n        - statistic: \"3k+\"\n          description: |\n            Discord community  \n            for support\n    design:\n      # Section background color (CSS class)\n      css_class: \"bg-gray-100 dark:bg-gray-800\"\n      # Reduce spacing\n      spacing:\n        padding: [\"1rem\", 0, \"1rem\", 0]\n  - block: features\n    id: features\n    content:\n      title: Features\n      text: Collaborate, publish, and maintain technical knowledge with an all-in-one documentation site. Used by 100,000+ startups, enterprises, and researchers.\n      items:\n        - name: Optimized SEO\n          icon: magnifying-glass\n          description: Automatic sitemaps, RSS feeds, and rich metadata take the pain out of SEO and syndication.\n        - name: Fast\n          icon: bolt\n          description: Super fast page load with Tailwind CSS and super fast site building with Hugo.\n        - name: Easy\n          icon: sparkles\n          description: One-click deployment to GitHub Pages. Have your new website live within 5 minutes!\n        - name: No-Code\n          icon: code-bracket\n          description: Edit and design your site just using rich text (Markdown) and configurable YAML parameters.\n        - name: Highly Rated\n          icon: star\n          description: Rated 5-stars by the community.\n        - name: Swappable Blocks\n          icon: rectangle-group\n          description: Build your pages with blocks - no coding required!\n  - block: cta-card\n    content:\n      title: \"Start Writing with the #1 Effortless Documentation Platform\"\n      text: Hugo Blox Docs Theme brings all your technical knowledge together in a single, centralized knowledge base. Easily search and edit it with the tools you use every day!\n      button:\n        text: Get Started\n        url: https://hugoblox.com/templates/details/docs/\n    design:\n      card:\n        # Card background color (CSS class)\n        css_class: \"bg-primary-700\"\n        css_style: \"\"\n---\n"
  },
  {
    "path": "templates/documentation/content/authors/_index.md",
    "content": "---\n# To publish author profile pages, remove all the `build` and `cascade` settings below.\nbuild:\n  render: never\ncascade:\n  build:\n    render: never\n    list: always\n---\n"
  },
  {
    "path": "templates/documentation/content/blog/_index.md",
    "content": "---\ntitle: Blog\nview: date-title-summary\nurl: /blog/\n---\n"
  },
  {
    "path": "templates/documentation/content/blog/v1.0.0/index.md",
    "content": "---\ntitle: v1.0.0 Released!\nsummary: Hugo v1.0.0 released. Download now and follow the guide to get started in 5 minutes!\ndate: 2023-01-01\nauthors:\n  - me\ntags:\n  - Hugo\n  - Hugo Blox\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nHugo v1.0.0 is now available! This release includes new experimental features to try out, improvements to accessibility, the ability for plugins to customize image optimization in Markdown, and many more improvements and bug fixes.\n\nHighlights include:\n\n- New config options\n- Improved accessibility\n- Customizable image optimization in Markdown\n\nThank you to everyone who contributed to this release!\n\n## New Features\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla sem. Integer mattis dictum augue non auctor. Proin quis porttitor enim. Praesent vulputate arcu egestas scelerisque condimentum. Vivamus elit risus, suscipit et enim et, viverra molestie elit. Nulla ullamcorper nisl vel nisi pellentesque, id feugiat risus interdum. Duis consequat ipsum elit. Aenean hendrerit diam ipsum, a convallis magna congue et. Sed ex erat, pretium et ante id, malesuada luctus nibh. Nunc nec consectetur elit.\n\n## Bug Fixes\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla sem. Integer mattis dictum augue non auctor. Proin quis porttitor enim. Praesent vulputate arcu egestas scelerisque condimentum. Vivamus elit risus, suscipit et enim et, viverra molestie elit. Nulla ullamcorper nisl vel nisi pellentesque, id feugiat risus interdum. Duis consequat ipsum elit. Aenean hendrerit diam ipsum, a convallis magna congue et. Sed ex erat, pretium et ante id, malesuada luctus nibh. Nunc nec consectetur elit.\n\n## How to Upgrade\n\nSimply run the following command in your terminal:\n\n```bash\nhugo mod get -u github.com/HugoBlox/kit/modules/blox@main\n```\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla sem. Integer mattis dictum augue non auctor. Proin quis porttitor enim. Praesent vulputate arcu egestas scelerisque condimentum. Vivamus elit risus, suscipit et enim et, viverra molestie elit. Nulla ullamcorper nisl vel nisi pellentesque, id feugiat risus interdum. Duis consequat ipsum elit. Aenean hendrerit diam ipsum, a convallis magna congue et. Sed ex erat, pretium et ante id, malesuada luctus nibh. Nunc nec consectetur elit.\n"
  },
  {
    "path": "templates/documentation/content/blog/v2.0.0/index.md",
    "content": "---\ntitle: v2.0.0 Released!\nsummary: Hugo v2.0.0 released. Download now and follow the guide to get started in 5 minutes!\ndate: 2024-01-19\nauthors:\n  - me\ntags:\n  - Hugo\n  - Hugo Blox\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nHugo v2.0.0 is now available! This release includes new experimental features to try out, improvements to accessibility, the ability for plugins to customize image optimization in Markdown, and many more improvements and bug fixes.\n\nHighlights include:\n\n- New config options\n- Improved accessibility\n- Customizable image optimization in Markdown\n\nThank you to everyone who contributed to this release!\n\n## New Features\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla sem. Integer mattis dictum augue non auctor. Proin quis porttitor enim. Praesent vulputate arcu egestas scelerisque condimentum. Vivamus elit risus, suscipit et enim et, viverra molestie elit. Nulla ullamcorper nisl vel nisi pellentesque, id feugiat risus interdum. Duis consequat ipsum elit. Aenean hendrerit diam ipsum, a convallis magna congue et. Sed ex erat, pretium et ante id, malesuada luctus nibh. Nunc nec consectetur elit.\n\n## Bug Fixes\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla sem. Integer mattis dictum augue non auctor. Proin quis porttitor enim. Praesent vulputate arcu egestas scelerisque condimentum. Vivamus elit risus, suscipit et enim et, viverra molestie elit. Nulla ullamcorper nisl vel nisi pellentesque, id feugiat risus interdum. Duis consequat ipsum elit. Aenean hendrerit diam ipsum, a convallis magna congue et. Sed ex erat, pretium et ante id, malesuada luctus nibh. Nunc nec consectetur elit.\n\n## How to Upgrade\n\nSimply run the following command in your terminal:\n\n```bash\nhugo mod get -u github.com/HugoBlox/kit/modules/blox@main\n```\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vitae fringilla sem. Integer mattis dictum augue non auctor. Proin quis porttitor enim. Praesent vulputate arcu egestas scelerisque condimentum. Vivamus elit risus, suscipit et enim et, viverra molestie elit. Nulla ullamcorper nisl vel nisi pellentesque, id feugiat risus interdum. Duis consequat ipsum elit. Aenean hendrerit diam ipsum, a convallis magna congue et. Sed ex erat, pretium et ante id, malesuada luctus nibh. Nunc nec consectetur elit.\n"
  },
  {
    "path": "templates/documentation/content/community/index.md",
    "content": "---\ntitle: Community\ntoc: true\nreading_time: false\npager: false\n---\n\n## Support\n\nGet support fast. Hugo Blox has the largest Hugo community on Discord, consisting of thousands of creators, developers, and startups.\n\n## Docs\n\n- View the [Hugo Blox Documentation](https://docs.hugoblox.com/)\n\n## Live Chat {#chat}\n\n- Join the [Hugo Blox Online Chat](https://discord.gg/z8wNYzb)\n  - _#using-hugo-blox_ for user help\n  - _#contributors_ for contributing help\n\n## Feature requests {#feature-requests}\n\nFor new feature requests, create a post on our [GitHub Issues](https://github.com/HugoBlox/kit/issues). You can also upvote existing feature requests with a 👍\n\n## News {#news}\n\nFollow us so you are the first to know when new features and templates are launched:\n\n- [Subscribe to the _#announcement_ channel on Discord](https://discord.gg/z8wNYzb)\n- [Follow us on Twitter](https://x.com/MakeOwnable)\n- [Subscribe to the Hugo Blox blog](https://hugoblox.com/blog/)\n\n## Further Resources\n\n- [Hugo Forums](https://discourse.gohugo.io/) for help installing Hugo and resolving Hugo error messages\n"
  },
  {
    "path": "templates/documentation/content/docs/_index.md",
    "content": "---\nlinkTitle: Documentation\ntitle: Introduction\n---\n\n👋 Welcome to the demo of the Hugo Blox Documentation template!\n\n<!--more-->\n\nThis site is a demo of the Hugo Blox Documentation theme. For the full documentation on how to use this template, refer to the [Hugo Blox Documentation](https://docs.hugoblox.com/).\n\n## Next\n\n{{< cards >}}\n  {{< card url=\"getting-started\" title=\"Get Started\" icon=\"document-text\" subtitle=\"Create your docs in just 5 minutes!\" >}}\n{{< /cards >}}\n"
  },
  {
    "path": "templates/documentation/content/docs/getting-started.md",
    "content": "---\ntitle: Getting Started\ndate: 2024-02-17\nweight: 1\n---\n\n## Quick Start from Template\n\n{{% steps %}}\n\n### Initialize a new site\n\n[Click to copy the template on GitHub](https://github.com/new?template_name=theme-documentation&template_owner=HugoBlox)\n\n### Configure your new site\n\n[Configure your site name, description, and menu.](https://docs.hugoblox.com/tutorial/blog/)\n\n### Add your content\n\n[Edit the homepage and add your documentation pages.](https://docs.hugoblox.com/tutorial/blog/)\n\n### Publish your site\n\n[Easily publish your site for free with GitHub Pages](https://docs.hugoblox.com/tutorial/blog/)\n\n{{% /steps %}}\n\n## Next\n\nLet's customize your new site:\n\n{{< cards >}}\n  {{< card url=\"../guide/project-structure\" title=\"Project Structure\" icon=\"document-duplicate\" >}}\n  {{< card url=\"../guide/configuration\" title=\"Configuration\" icon=\"adjustments-vertical\" >}}\n{{< /cards >}}\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/_index.md",
    "content": "---\ntitle: Guide\nweight: 2\nsidebar:\n  open: true\n---\n\n{{< cards >}}\n  {{< card url=\"project-structure\" title=\"Project Structure\" icon=\"document-duplicate\" >}}\n  {{< card url=\"configuration\" title=\"Configuration\" icon=\"adjustments-vertical\" >}}\n{{< /cards >}}\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/configuration.md",
    "content": "---\ntitle: Configuration\nweight: 2\n---\n\nThe configuration of your site can be found in `config/_default/`.\n\n<!--more-->\n\n## Full Documentation\n\nSee https://docs.hugoblox.com/getting-started/customize/\n\n## Navigation\n\n### Menu\n\nSee https://docs.hugoblox.com/getting-started/customize/#menu-items\n\n## Left Sidebar\n\nLinks are automatically generated from the structure of your content directory. Simply add a folder to nest a page.\n\n### Extra Links\n\nAdditional links can be added under the `sidebar` section of your `config/_default/menus.yaml`:\n\n```yaml\nmenu:\n  sidebar:\n    - name: \"Need help?\"\n      params:\n        type: separator\n      weight: 1\n    - name: \"A page\"\n      pageRef: \"/page-filename-here\"\n      weight: 2\n    - name: \"An external link ↗\"\n      url: \"https://hugoblox.com\"\n      weight: 3\n```\n\n## Right Sidebar\n\nA table of contents is automatically generated from the headings your Markdown file.\n\nIt can optionally be disabled by setting `toc: false` in the front matter of a page:\n\n```yaml\n---\ntitle: My Page\ntoc: false\n---\n```\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/project-structure.md",
    "content": "---\ntitle: Project Structure\nweight: 1\n---\n\n## Folder Structure\n\nThere are **4 main folders for Hugo-based sites**:\n\n- `content/` for your Markdown-formatted content files (homepage, etc.)\n  - `_index.md` the homepage (**Hugo requires that the homepage and archive pages have an underscore prefix**)\n- `assets/`\n  - `media/` for your media files (images, videos)\n    - `icons/custom/` upload any custom SVG icons you want to use\n- `config/_default/` for your site configuration files\n  - `hugo.yaml` to configure Hugo (site title, URL, Hugo options, setup per-folder page features)\n  - `module.yaml` to install or uninstall Hugo themes and plugins\n  - `params.yaml` to configure Hugo Blox options (SEO, analytics, site features)\n  - `menus.yaml` to configure your menu links (if the menu is enabled in `params.yaml`)\n  - `languages.yaml` to configure your site's language or to set language-specific options in a multilingual site\n- `static/uploads/` for any files you want visitors to download, such as a PDF\n- `go.mod` sets the version of Hugo themes/plugins which your site uses\n\n\n## Hugo File Naming Convention\n\nHugo gives us two options to name standard page files: as `TITLE/index.md` or `TITLE.md` where `TITLE` is your page name.\n\nThe page name should be lowercase and using hyphens (`-`) instead of spaces.\n\nBoth approaches result in the same output, so you can choose your preferred approach to naming and organizing files. A benefit to the folder-based approach is that all your page's files (such as images) are self-contained within the page's folder, so it's more portable if you wish to share the original Markdown page with someone.\n\nThe homepage is a special case as **Hugo requires the homepage and listing pages to be named** `_index.md`.\n\n## Docs Navigation\n\nThe docs navigation is automatically generated based on the content in the `docs/` folder and is sorted alphabetically.\n\nThe order of pages can be changed by adding the `weight` parameter in the front matter of your Markdown files.\n\nIn the example below, the `example.md` page will appear before the `test.md` page as it has a lower `weight`:\n\nPage `example.md`:\n\n```yaml\n---\ntitle: My Example\nweight: 1\n---\n```\n\nPage `test.md`:\n\n```yaml\n---\ntitle: My Test\nweight: 2\n---\n```\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/shortcodes/_index.md",
    "content": "---\ntitle: Shortcodes\n---\n\nBuild the best docs with re-usable components, referred to as Hugo shortcodes:\n\n{{< cards >}}\n  {{< card url=\"button\" title=\"Button\" icon=\"cursor-arrow-rays\" >}}\n  {{< card url=\"callout\" title=\"Callout\" icon=\"warning\" >}}\n  {{< card url=\"cards\" title=\"Cards\" icon=\"card\" >}}\n  {{< card url=\"toggle\" title=\"Spoiler\" icon=\"chevron-right\" >}}\n  {{< card url=\"steps\" title=\"Steps\" icon=\"one\" >}}\n{{< /cards >}}\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/shortcodes/button.md",
    "content": "---\ntitle: Button Shortcode\nlinkTitle: Button\n---\n\nA modern, customizable button shortcode with gradient styling, icons, and smart link handling.\n\n<!--more-->\n\n## Basic Usage\n\n{{< button url=\"/contact\" >}}Contact Us{{< /button >}}\n\n{{< button url=\"https://example.com\" new_tab=\"true\" style=\"secondary\" >}}Visit External Site{{< /button >}}\n\nThe above buttons are created with:\n\n```go-html-template\n{{</* button url=\"/contact\" */>}}Contact Us{{</* /button */>}}\n\n{{</* button url=\"https://example.com\" new_tab=\"true\" style=\"secondary\" */>}}Visit External Site{{</* /button */>}}\n```\n\n## Style Variants\n\n### Primary (Default)\n\n{{< button url=\"#\" style=\"primary\" >}}Primary Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"primary\" */>}}Primary Button{{</* /button */>}}\n```\n\n### Secondary\n\n{{< button url=\"#\" style=\"secondary\" >}}Secondary Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"secondary\" */>}}Secondary Button{{</* /button */>}}\n```\n\n### Outline\n\n{{< button url=\"#\" style=\"outline\" >}}Outline Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"outline\" */>}}Outline Button{{</* /button */>}}\n```\n\n### Ghost\n\n{{< button url=\"#\" style=\"ghost\" >}}Ghost Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" style=\"ghost\" */>}}Ghost Button{{</* /button */>}}\n```\n\n## Sizes\n\n### Small\n\n{{< button url=\"#\" size=\"sm\" >}}Small Button{{< /button >}}\n\n### Medium (Default)\n\n{{< button url=\"#\" size=\"md\" >}}Medium Button{{< /button >}}\n\n### Large\n\n{{< button url=\"#\" size=\"lg\" >}}Large Button{{< /button >}}\n\n### Extra Large\n\n{{< button url=\"#\" size=\"xl\" >}}Extra Large{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" size=\"sm\" */>}}Small Button{{</* /button */>}}\n{{</* button url=\"#\" size=\"md\" */>}}Medium Button{{</* /button */>}}\n{{</* button url=\"#\" size=\"lg\" */>}}Large Button{{</* /button */>}}\n{{</* button url=\"#\" size=\"xl\" */>}}Extra Large{{</* /button */>}}\n```\n\n## Alignment\n\n### Left (Default)\n\n{{< button url=\"#\" align=\"left\" >}}Left Aligned{{< /button >}}\n\n### Center\n\n{{< button url=\"#\" align=\"center\" >}}Center Aligned{{< /button >}}\n\n### Right\n\n{{< button url=\"#\" align=\"right\" >}}Right Aligned{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" align=\"left\" */>}}Left Aligned{{</* /button */>}}\n{{</* button url=\"#\" align=\"center\" */>}}Center Aligned{{</* /button */>}}\n{{</* button url=\"#\" align=\"right\" */>}}Right Aligned{{</* /button */>}}\n```\n\n## With Icons\n\n### Icon Before Text\n\n{{< button url=\"#\" icon=\"download\" >}}Download{{< /button >}}\n\n### Icon After Text\n\n{{< button url=\"#\" icon=\"arrow-right\" icon_position=\"right\" >}}Continue{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" icon=\"download\" */>}}Download{{</* /button */>}}\n{{</* button url=\"#\" icon=\"arrow-right\" icon_position=\"right\" */>}}Continue{{</* /button */>}}\n```\n\n## Rounded Corners\n\n### Small Radius\n\n{{< button url=\"#\" rounded=\"sm\" >}}Small Radius{{< /button >}}\n\n### Medium Radius (Default)\n\n{{< button url=\"#\" rounded=\"md\" >}}Medium Radius{{< /button >}}\n\n### Large Radius\n\n{{< button url=\"#\" rounded=\"lg\" >}}Large Radius{{< /button >}}\n\n### Pill Shape\n\n{{< button url=\"#\" rounded=\"full\" >}}Pill Button{{< /button >}}\n\n```go-html-template\n{{</* button url=\"#\" rounded=\"sm\" */>}}Small Radius{{</* /button */>}}\n{{</* button url=\"#\" rounded=\"md\" */>}}Medium Radius{{</* /button */>}}\n{{</* button url=\"#\" rounded=\"lg\" */>}}Large Radius{{</* /button */>}}\n{{</* button url=\"#\" rounded=\"full\" */>}}Pill Button{{</* /button */>}}\n```\n\n## Advanced Examples\n\n### Call-to-Action Button\n\n{{< button url=\"/signup\" style=\"primary\" size=\"lg\" align=\"center\" icon=\"rocket-launch\" >}}Get Started Today{{< /button >}}\n\n```go-html-template\n{{</* button url=\"/signup\" style=\"primary\" size=\"lg\" align=\"center\" icon=\"rocket-launch\" */>}}Get Started Today{{</* /button */>}}\n```\n\n### External Link with New Tab\n\n{{< button url=\"https://github.com/hugo-blox/hugo-blox-builder\" new_tab=\"true\" style=\"outline\" icon=\"arrow-top-right-on-square\" icon_position=\"right\" >}}View on GitHub{{< /button >}}\n\n```go-html-template\n{{</* button url=\"https://github.com/hugo-blox/hugo-blox-builder\" new_tab=\"true\" style=\"outline\" icon=\"arrow-top-right-on-square\" icon_position=\"right\" */>}}View on GitHub{{</* /button */>}}\n```\n\n### Download Button\n\n{{< button url=\"/files/document.pdf\" style=\"secondary\" icon=\"document-arrow-down\" rounded=\"full\" >}}Download PDF{{< /button >}}\n\n```go-html-template\n{{</* button url=\"/files/document.pdf\" style=\"secondary\" icon=\"document-arrow-down\" rounded=\"full\" */>}}Download PDF{{</* /button */>}}\n```\n\n## Parameters\n\n| Parameter       | Type    | Default       | Description                                                 |\n| --------------- | ------- | ------------- | ----------------------------------------------------------- |\n| `url`           | string  | `#`           | **Required.** Button destination URL (internal or external) |\n| `text`          | string  | Inner content | Button text (overrides shortcode content)                   |\n| `new_tab`       | boolean | `false`       | Whether to open link in new tab                             |\n| `style`         | string  | `primary`     | Button style: `primary`, `secondary`, `outline`, `ghost`    |\n| `size`          | string  | `md`          | Button size: `sm`, `md`, `lg`, `xl`                         |\n| `align`         | string  | `left`        | Button alignment: `left`, `center`, `right`                 |\n| `icon`          | string  | -             | Icon name from [Hero Icons](https://heroicons.com/)         |\n| `icon_position` | string  | `left`        | Icon position: `left`, `right`                              |\n| `rounded`       | string  | `md`          | Border radius: `sm`, `md`, `lg`, `xl`, `full`               |\n| `disabled`      | boolean | `false`       | Whether button should be disabled                           |\n\n## Security Features\n\nThe button shortcode automatically handles security for external links:\n\n- **External links** get `rel=\"noreferrer\"` attribute\n- **External links opening in new tab** get `rel=\"noopener noreferrer\"`\n- **Internal links opening in new tab** get `rel=\"noopener\"`\n\nThis ensures safe navigation while maintaining functionality.\n\n## Accessibility\n\nThe button shortcode includes built-in accessibility features:\n\n- Proper `role=\"button\"` attribute\n- `aria-label` support\n- Keyboard focus indicators\n- High contrast focus rings\n- Disabled state handling\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/shortcodes/callout.md",
    "content": "---\ntitle: Callout Shortcode\nlinkTitle: Callout\n---\n\nHugo Blox supports a Markdown extension for callouts, also referred to as alerts or asides.\n\nCallouts are a useful feature to draw attention to important or related content such as notes, hints, or warnings in your articles.\n\n<!--more-->\n\n## Usage\n\n### Notes\n\n> [!NOTE]\n> A Markdown callout is useful for displaying notices, hints, or definitions to your readers.\n\n```markdown\n> [!NOTE]\n> A Markdown callout is useful for displaying notices, hints, or definitions to your readers.\n```\n\n### Warnings\n\n> [!WARNING]\n> Here's some important information...\n\n```markdown\n> [!WARNING]\n> Here's some important information...\n```\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/shortcodes/cards.md",
    "content": "---\ntitle: Cards Shortcode\nlinkTitle: Cards\n---\n\nA Hugo extension to create cards. Cards can be shown as links or as plain text.\n\n## Usage\n\n{{< cards >}}\n  {{< card url=\"../\" title=\"Learn Shortcodes\" icon=\"academic-cap\" >}}\n  {{< card url=\"\" title=\"A card without an icon or link\" >}}\n{{< /cards >}}\n\nis rendered by:\n\n```\n{{</* cards */>}}\n  {{</* card url=\"../callout\" title=\"Callout\" icon=\"academic-cap\" */>}}\n  {{</* card url=\"\" title=\"A card without an icon\" */>}}\n{{</* /cards */>}}\n```\n\n## Options\n\n| Parameter  | Description                                                            |\n|------------|------------------------------------------------------------------------|\n| `icon`     | Name of the icon. Defaults to [Hero Icon Pack](https://heroicons.com/) |\n| `title`    | Title heading for the card.                                            |\n| `subtitle` | Subtitle heading (supports Markdown).                                  |\n| `url`      | URL                                                                    |\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/shortcodes/steps.md",
    "content": "---\ntitle: Steps Shortcode\nlinkTitle: Steps\n---\n\nDisplay a series of steps, such as for a tutorial.\n\n## Example\n\n{{% steps %}}\n\n### Step 1\n\nThe first step here...\n\n### Step 2\n\nThe second step here...\n\n### Step 3\n\nThe third step here...\n\n{{% /steps %}}\n\n\n## Usage\n\nUse the Markdown level-3 headings to represent step titles within the `steps` shortcode:\n\n```\n{{%/* steps */%}}\n\n### Step 1\n\nThe first step here...\n\n### Step 2\n\nThe second step here...\n\n### Step 3\n\nThe third step here...\n\n{{%/* /steps */%}}\n```\n"
  },
  {
    "path": "templates/documentation/content/docs/guide/shortcodes/toggle.md",
    "content": "---\ntitle: Spoiler\n---\n\nA Hugo shortcode to toggle collapsible content.\n\n<!--more-->\n\n## Example\n\n{{< spoiler text=\"Click to view the spoiler\" >}}\nYou found me!\n\nMarkdown is **supported**.\n{{< /spoiler >}}\n\n## Usage\n\n````\n{{</* spoiler text=\"Click to view the spoiler\" */>}}\n\nThis is the content of the details.\n\nMarkdown is **supported**.\n\n{{</* /spoiler */>}}\n````\n"
  },
  {
    "path": "templates/documentation/content/docs/reference/_index.md",
    "content": "---\nlinkTitle: Reference\ntitle: Reference\n---\n\nThis section covers reference docs.\n\n"
  },
  {
    "path": "templates/documentation/content/docs/reference/customization.md",
    "content": "---\ntitle: Customizing Hugo\nlinkTitle: Customization\nweight: 1\n---\n\nView the full docs at https://docs.hugoblox.com/getting-started/customize/\n"
  },
  {
    "path": "templates/documentation/content/docs/reference/i18n.md",
    "content": "---\ntitle: Internationalization (i18n)\n---\n\nHugo Blox enables you to easily edit the interface text as well as translating your site into multiple languages using Hugo's [multilingual](https://gohugo.io/content-management/multilingual/) feature.\n\n<!--more-->\n\nView the full docs at https://docs.hugoblox.com/reference/language/\n"
  },
  {
    "path": "templates/documentation/content/showcase/_index.md",
    "content": "---\ntitle: Showcase\ndescription: \"Docs websites powered by Hugo Blox.\"\ntype: landing\n\n\n\nsections:\n  - block: hero\n    content:\n      title: Get Inspirated\n      text: 'Get inspired by exploring sites #MadeWithHugoBlox'\n      primary_action:\n        icon: brands/x\n        text: Submit Your Site\n        url: \"https://x.com/intent/tweet?text=I%27m%20creating%20a%20beautiful%20website%20using%20the%20free%20%E2%9D%A4%EF%B8%8F%2C%20open%20source%20Hugo%20Blox%20Website%20Builder%20for%20%40GoHugoIO%20by%20%40GeorgeCushen%20%40MakeOwnable%20%E2%9C%A8%20Have%20some%20feedback%3F%20Please%20comment%20%F0%9F%A4%97&hashtags=MadeWithHugoBlox&url=https://HugoBlox.com/\"\n      secondary_action:\n        text: Explore More on HugoBlox.com\n        url: https://hugoblox.com/creators/\n    design:\n      no_padding: true\n      spacing:\n        padding: [0, 0, 0, 0]\n        margin: [0, 0, 0, 0]\n  - block: collection\n    content:\n      filters:\n        folders:\n          - showcase\n    design:\n      view: card\n      spacing:\n        padding: ['3rem', 0, '6rem', 0]\n---\n"
  },
  {
    "path": "templates/documentation/content/showcase/nvidia/index.md",
    "content": "---\ntitle: Nvidia\nsummary: nvidia.com\nlinks:\n  - type: site\n    url: https://research.nvidia.com/labs/toronto-ai/\ndate: 2024-02-17\n---\n"
  },
  {
    "path": "templates/documentation/data/authors/me.yaml",
    "content": "schema: hugoblox/author/v1\nslug: me\nis_owner: true\nname:\n  display: 吳健雄\n  given: Shiung Wu\n  family: Chien\n  pronunciation: Chien Shiung Wu\n  pronouns: she/her\nstatus:\n  icon: \"☕️\"\nrole: Professor of Artificial Intelligence\nbio: My research interests include distributed robotics, mobile computing and programmable matter.\naffiliations:\n  - name: Stanford University\n    url: https://www.stanford.edu/\nlinks:\n  - icon: at-symbol\n    url: mailto:your-email@example.com\n    label: E-mail Me\n  - icon: brands/x\n    url: https://x.com/MakeOwnable\n  - icon: brands/instagram\n    url: https://www.instagram.com/\n  - icon: brands/linkedin\n    url: https://www.linkedin.com/\n  - icon: academicons/cv\n    url: uploads/resume.pdf\n    label: Download my resume\n  - icon: rss\n    url: ./post/index.xml\n    label: Subscribe to my blog via RSS feed\n"
  },
  {
    "path": "templates/documentation/go.mod",
    "content": "module github.com/HugoBlox/theme-documentation\n\ngo 1.19\n\nrequire (\n\tgithub.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652\n\tgithub.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c\n)\n"
  },
  {
    "path": "templates/documentation/hugoblox.yaml",
    "content": "build:\n  hugo_version: '0.156.0'\ndeploy:\n  # Deployment target: github-pages, netlify, vercel, cloudflare, or none\n  host: 'github-pages'\ntemplate:\n  id: \"documentation\"\n  name: \"Documentation\"\n"
  },
  {
    "path": "templates/documentation/netlify.toml",
    "content": "[build]\n  command = \"\"\"\n    set -e\n    echo \"=== Starting Blog build process ===\"\n    echo \"Node version: $(node --version)\"\n    echo \"pnpm version: $(pnpm --version)\"\n    echo \"Hugo version: $(hugo version)\"\n    echo \"Go version: $(go version || echo 'Go not available')\"\n    \n    echo \"=== Installing dependencies ===\"\n    pnpm install --verbose --no-frozen-lockfile\n    \n    echo \"=== Running Hugo build ===\"\n    hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings\n    \n    echo \"=== Running Pagefind indexing ===\"\n    pnpm run pagefind\n    \n    echo \"=== Build completed successfully ===\"\n  \"\"\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.156.0\"\n  GO_VERSION = \"1.21.5\"\n  NODE_VERSION = \"22\"\n  # Ensure Netlify's implicit install does not enforce frozen lockfiles\n  PNPM_FLAGS = \"--no-frozen-lockfile\"\n  HUGO_ENABLEGITINFO = \"true\"\n  HUGO_LOG_I18N_WARNINGS = \"true\"\n  HUGO_LOG_WARNINGS = \"true\"\n  FORCE_COLOR = \"1\"\n  PNPM_LOG_LEVEL = \"debug\"\n\n[context.production.environment]\n  HUGO_ENV = \"production\"\n\n[context.deploy-preview]\n  command = \"\"\"\n    set -e\n    echo \"=== Deploy Preview Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[context.branch-deploy]\n  command = \"\"\"\n    set -e\n    echo \"=== Branch Deploy Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[[plugins]]\n  package = \"netlify-plugin-hugo-cache-resources\"\n  [plugins.inputs]\n    debug = true\n"
  },
  {
    "path": "templates/documentation/package.json",
    "content": "{\n  \"name\": \"hugo-blox-documentation-starter\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"description\": \"Documentation starter template for Hugo Blox with Tailwind CSS v4\",\n  \"scripts\": {\n    \"dev\": \"hugo server --disableFastRender\",\n    \"build\": \"hugo --minify && pnpm run pagefind\",\n    \"pagefind\": \"pagefind --site public\"\n  },\n  \"dependencies\": {\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.10\",\n    \"pagefind\": \"^1.4.0\",\n    \"preact\": \"^10.27.2\",\n    \"tailwindcss\": \"^4.1.12\"\n  }\n}\n"
  },
  {
    "path": "templates/documentation/static/uploads/.gitkeep",
    "content": ""
  },
  {
    "path": "templates/documentation/theme.toml",
    "content": "name = \"Easy Docs\"\nlicense = \"MIT\"\nlicenselink = \"https://github.com/HugoBlox/theme-documentation/blob/main/LICENSE.md\"\ndescription = \"Easy, all-in-one beautiful documentation website including a customizable homepage and blog. Super fast, empowering you to focus on your content.\"\n\nhomepage = \"https://github.com/HugoBlox/theme-documentation\"\ndemosite = \"https://hugo-docs-theme.netlify.app\"\n\ntags = [\"landing\", \"docs\", \"blog\", \"responsive\", \"minimal\", \"light\", \"dark\", \"multilingual\", \"dark mode\", \"tailwind\", \"company\", \"gallery\"]\nfeatures = [\"secure\", \"fast\", \"search\", \"dark mode\", \"widgets\"]\n\n# If the theme has a single author\n[author]\n  name = \"George Cushen\"\n  homepage = \"https://georgecushen.com/\"\n"
  },
  {
    "path": "templates/link-in-bio/.devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"HugoBlox Codespace\",\n  \"image\": \"ghcr.io/HugoBlox/hugo-blox-dev:hugo0.156.0\",\n  \"updateContentCommand\": \"pnpm install --frozen-lockfile --prefer-offline\",\n  \"postCreateCommand\": \"pnpm --version && hugo version\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"ownable.ownable\"]\n    }\n  },\n  \"mounts\": [\"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume\"],\n  \"remoteUser\": \"vscode\",\n  \"forwardPorts\": [1313],\n  \"portsAttributes\": {\n    \"1313\": {\n      \"label\": \"Hugo Server\"\n    }\n  }\n}\n"
  },
  {
    "path": "templates/link-in-bio/.github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": "templates/link-in-bio/.github/workflows/build.yml",
    "content": "name: Build\n\nenv:\n  NODE_VERSION: '20'\n\non:\n  # Standalone trigger for PR validation\n  pull_request:\n    branches: ['main']\n  # Reusable workflow trigger - called by deploy.yml\n  workflow_call:\n    outputs:\n      artifact-id:\n        description: 'The ID of the uploaded artifact'\n        value: ${{ jobs.build.outputs.artifact-id }}\n  # Allow manual trigger for testing\n  workflow_dispatch:\n\n# Read-only permissions for security\npermissions:\n  contents: read\n\n# Prevent duplicate builds for the same PR\nconcurrency:\n  group: build-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    outputs:\n      artifact-id: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        # Fetch history for Hugo's .GitInfo and .Lastmod\n        fetch-depth: 0\n\n    - name: Setup Node.js\n      uses: actions/setup-node@v6\n      with:\n        node-version: ${{ env.NODE_VERSION }}\n\n    - name: Setup pnpm\n      if: hashFiles('package.json') != ''\n      uses: pnpm/action-setup@v4\n\n    - name: Get Hugo Version\n      id: hugo-version\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read hugo_version from hugoblox.yaml\n        VERSION=$(yq '.hugo_version // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        \n        # Fallback to a known stable version if not specified\n        DEFAULT_VERSION=\"0.154.5\"\n        VERSION=${VERSION:-$DEFAULT_VERSION}\n        \n        # Validate version format (basic check)\n        if [[ ! \"$VERSION\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then\n          echo \"::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION\"\n          VERSION=\"$DEFAULT_VERSION\"\n        fi\n        \n        echo \"HUGO_VERSION=$VERSION\" >> $GITHUB_ENV\n        echo \"Using Hugo version: $VERSION\"\n\n    - name: Install dependencies\n      run: |\n        # Install Tailwind CLI if package.json exists\n        if [ -f \"package.json\" ]; then\n          echo \"Installing Tailwind dependencies...\"\n          pnpm install --no-frozen-lockfile || npm install\n        fi\n\n    - name: Setup Hugo\n      uses: peaceiris/actions-hugo@v3\n      with:\n        hugo-version: ${{ env.HUGO_VERSION }}\n        extended: true\n\n    # Cache dependencies (Go modules, node_modules) - stable, rarely changes\n    - uses: actions/cache@v4\n      with:\n        path: |\n          /tmp/hugo_cache_runner/\n          node_modules/\n          modules/*/node_modules/\n        key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json',\n          '**/pnpm-lock.yaml') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-deps-\n\n    # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change\n    - uses: actions/cache@v4\n      with:\n        path: resources/\n        key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*',\n          'hugo.yaml', 'package.json') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-resources-\n\n    - name: Build with Hugo\n      env:\n        HUGO_ENVIRONMENT: production\n        HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }}\n      run: |\n        echo \"Hugo Cache Dir: $(hugo config | grep cachedir)\"\n        hugo --minify\n\n    - name: Generate Pagefind search index (if applicable)\n      run: |\n        # Check if site uses Pagefind search\n        if [ -f \"package.json\" ] && grep -q \"pagefind\" package.json; then\n          pnpm run pagefind || npx pagefind --site \"public\"\n        fi\n\n    - name: Upload artifact\n      id: upload\n      uses: actions/upload-pages-artifact@v4\n      with:\n        path: ./public\n"
  },
  {
    "path": "templates/link-in-bio/.github/workflows/deploy.yml",
    "content": "name: Deploy website to GitHub Pages\n\non:\n  # Trigger the workflow every time you push to the `main` branch\n  push:\n    branches: ['main']\n  # Allows you to run this workflow manually from the Actions tab on GitHub\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: 'pages'\n  cancel-in-progress: false\n\njobs:\n  # Check deployment configuration\n  config:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    outputs:\n      deploy-host: ${{ steps.check.outputs.host }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        sparse-checkout: hugoblox.yaml\n        sparse-checkout-cone-mode: false\n\n    - name: Check deploy host\n      id: check\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read deploy.host from hugoblox.yaml, default to github-pages\n        HOST=$(yq '.deploy.host // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        HOST=${HOST:-github-pages}\n        \n        # Validate known hosts\n        if [[ ! \"$HOST\" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then\n          echo \"::warning::Unknown deploy host '$HOST', defaulting to github-pages\"\n          HOST=\"github-pages\"\n        fi\n        \n        echo \"host=$HOST\" >> $GITHUB_OUTPUT\n        echo \"Deployment target: $HOST\"\n\n  # Build website using reusable workflow (always runs for CI)\n  build:\n    needs: config\n    if: github.repository_owner != 'HugoBlox'\n    uses: ./.github/workflows/build.yml\n    secrets: inherit\n\n  # Deploy website to GitHub Pages hosting (only if configured)\n  deploy:\n    needs: [config, build]\n    if: needs.config.outputs.deploy-host == 'github-pages'\n    # Grant GITHUB_TOKEN the permissions required to make a Pages deployment\n    permissions:\n      pages: write # to deploy to Pages\n      id-token: write # to verify the deployment originates from an appropriate source\n    # Deploy to the github-pages environment\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    steps:\n    - name: Deploy to GitHub Pages\n      id: deployment\n      uses: actions/deploy-pages@v4\n"
  },
  {
    "path": "templates/link-in-bio/.github/workflows/upgrade.yml",
    "content": "name: Upgrade HugoBlox\n\non:\n  workflow_dispatch:\n    inputs:\n      version_type:\n        description: 'Upgrade to version'\n        required: true\n        default: 'Stable'\n        type: choice\n        options:\n        - Stable\n        - Beta (Preview)\n  schedule:\n    # Run at 05:00 on Monday\n    - cron: '0 5 * * 1'\n\npermissions:\n  contents: write\n  pull-requests: write\n\n# Prevent duplicate upgrade runs\nconcurrency:\n  group: upgrade-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  upgrade:\n    name: Upgrade\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 15\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v6\n        with:\n          node-version: '22'\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n        with:\n          package_json_path: ./package.json\n          run_install: false\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: '1.23'\n\n      - name: Setup Hugo\n        uses: peaceiris/actions-hugo@v3\n        with:\n          hugo-version: 'latest'\n          extended: true\n\n      - name: Run Upgrade CLI\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # Use manual input or default to stable for scheduled runs\n          VERSION_TYPE: ${{ inputs.version_type || 'Stable' }}\n        run: |\n          FLAGS=\"--yes --ci\"\n          \n          if [ \"$VERSION_TYPE\" == \"Beta (Preview)\" ]; then\n            FLAGS=\"$FLAGS --canary\"\n          fi\n          \n          echo \"Running upgrade with flags: $FLAGS\"\n          pnpm dlx hugoblox@latest upgrade $FLAGS\n\n\n      - name: Create Pull Request\n        uses: peter-evans/create-pull-request@v6\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          commit-message: \"chore(deps): upgrade hugoblox modules\"\n          title: \"⬆️ Upgrade HugoBlox Modules\"\n          body: |\n            This PR upgrades the [HugoBlox](https://hugoblox.com) modules to the latest version.\n            \n            **Changes:**\n            - Updated Hugo Modules (go.mod/go.sum)\n            - Applied automatic migrations (if any)\n            \n            **Verification:**\n            - [ ] Check the Deploy Preview to ensure everything looks correct.\n            - [ ] Merge this PR to apply the updates.\n          branch: \"chore/upgrade-hugoblox-${{ github.run_id }}\"\n          delete-branch: true\n          base: main\n          labels: |\n            dependencies\n            automated-pr\n"
  },
  {
    "path": "templates/link-in-bio/.gitignore",
    "content": "# ============================================================================\n# Hugo Site .gitignore\n# ============================================================================\n\n# ============================================================================\n# Hugo Build Artifacts\n# ============================================================================\n\n# Generated site output\npublic/\n\n# Hugo resources (processed assets)\nresources/\n\n# Hugo build lock\n.hugo_build.lock\n\n# Hugo stats\nhugo_stats.json\n\n# Auto-generated JS config\n**/assets/jsconfig.json\n\n# ============================================================================\n# Node.js & Package Managers\n# ============================================================================\n\n# Dependencies\nnode_modules/\n\n# ============================================================================\n# Environment & Configuration\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# ============================================================================\n# Generated Content\n# ============================================================================\n\n# Pagefind search index\npagefind/\nstatic/pagefind/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n\n# Windows\nThumbs.db\nDesktop.ini\n\n# Linux\n*~\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n*.log\nnpm-debug.log*\n"
  },
  {
    "path": "templates/link-in-bio/.vscode/extensions.json",
    "content": "{\n  \"recommendations\": [\"ownable.ownable\"]\n}\n"
  },
  {
    "path": "templates/link-in-bio/LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2020-present George Cushen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in 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": "templates/link-in-bio/README.md",
    "content": "# [Fast & Flexible Link In Bio Theme](https://github.com/HugoBlox/hugo-theme-link-in-bio)\n\n[![Screenshot](./.github/preview.webp)](https://hugoblox.com/templates/)\n\nThe **Fast & Flexible Link In Bio Template** empowers you to easily create a personalized and customizable page that houses all the important links that you want to share with your audience.\n\nIt's a link-in-bio solution that can be used on social platforms like Instagram, TikTok, Twitch, Facebook, YouTube, Twitter, LinkedIn, and more, by pasting your website link in your social media bio. **Start accelerating the discovery of your work, brand, or business!**\n\n️**Trusted by 250,000+ creators, researchers, and educators.** Highly customizable via the integrated **no-code, block-based Hugo Blox page builder**, making every site truly personalized ⭐⭐⭐⭐⭐\n\n[Check out the latest demo](https://link-in-bio-theme.netlify.app) of what you'll get in less than 5 minutes, or [view the showcase](https://hugoblox.com/creators/).\n\n[![Get Started](https://img.shields.io/badge/-Get%20started-ff4655?style=for-the-badge)](https://hugoblox.com/templates/)\n[![Discord](https://img.shields.io/discord/722225264733716590?style=for-the-badge)](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)  \n[![Twitter Follow](https://img.shields.io/twitter/follow/MakeOwnable?label=Follow%20on%20Twitter)](https://x.com/MakeOwnable)\n\nThe integrated [**Hugo Blox**](https://hugoblox.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs.\n\n- 👉 [**Get Started**](https://hugoblox.com/templates/)\n- 📚 [View the **documentation**](https://docs.hugoblox.com/)\n- 💬 [Chat with the **Hugo Blox community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)\n- ⬇️ **Automatically import citations from BibTeX** with the [Bibtex to Markdown tool](https://github.com/GetRD/academic-file-converter)\n- 🐦 Share your new site with the community: [@MakeOwnable](https://x.com/MakeOwnable)  _#MadeWithHugoBlox_\n- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)\n- 🚀 [Contribute improvements](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/HugoBlox/kit/issues)\n- ⬆️ **Updating?** View the [Update Guide](https://docs.hugoblox.com/) and [Release Notes](https://github.com/HugoBlox/kit/releases)\n\n## We ask you, humbly, to support this open source movement\n\nToday we ask you to defend the open source independence of the Hugo Blox website builder and themes 🐧\n\nWe're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way.\n\n### [❤️ Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://hugoblox.com/sponsor/)\n"
  },
  {
    "path": "templates/link-in-bio/assets/media/icons/custom/.gitkeep",
    "content": ""
  },
  {
    "path": "templates/link-in-bio/config/_default/hugo.yaml",
    "content": "# Configuration of Hugo\n# Guide: https://docs.hugoblox.com/tutorial/\n# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings\n# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/\n\n# Website name (set in params.yaml under hugoblox.branding.name)\ntitle: ''\nbaseURL: 'https://example.com/' # Website URL\n\n############################\n## LANGUAGE\n############################\n\ndefaultContentLanguage: en\nhasCJKLanguage: false\ndefaultContentLanguageInSubdir: false\nremovePathAccents: true\n\n############################\n## ADVANCED\n############################\n\nbuild:\n  writeStats: true\nenableGitInfo: false\nsummaryLength: 30\npagination:\n  pagerSize: 10\nenableEmoji: true\nenableRobotsTXT: true\nfootnotereturnlinkcontents: <sup>^</sup>\nignoreFiles: [\".ipynb_checkpoints$\", \"\\\\.Rmd$\", \"\\\\.Rmarkdown$\", \"_cache$\"]\ndisableAliases: true\noutputs:\n  home: [HTML, RSS, headers, redirects]\n  section: [HTML, RSS]\nimaging:\n  resampleFilter: lanczos\n  quality: 90\n  anchor: smart\n  hint: picture\ntimeout: 600000\ntaxonomies:\n  author: authors\nmarkup:\n  _merge: deep\n  highlight:\n    lineNos: false\nsecurity:\n  _merge: deep\nsitemap:\n  _merge: deep\n"
  },
  {
    "path": "templates/link-in-bio/config/_default/languages.yaml",
    "content": "# Languages\n#   Create a section for each of your site's languages.\n#   Documentation: https://docs.hugoblox.com/reference/language/\n\n# Default language\nen:\n  languageCode: en-us\n  # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.\n  #contentDir: content/en\n\n# Uncomment the lines below to configure your website in a second language.\n#zh:\n#  languageCode: zh-Hans\n#  contentDir: content/zh\n#  title: Chinese website title...\n#  params:\n#    description: Site description in Chinese...\n#  menu:\n#    main:\n#      - name: 传\n#        url: '#about'\n#        weight: 1\n"
  },
  {
    "path": "templates/link-in-bio/config/_default/module.yaml",
    "content": "############################\n## HUGO MODULES\n## Install or uninstall themes and plugins here.\n## Docs: https://gohugo.io/hugo-modules/\n############################\n\nimports:\n  - path: github.com/HugoBlox/kit/modules/integrations/netlify\n  - path: github.com/HugoBlox/kit/modules/blox\n\n# Install any Hugo Blox within the `hugo-blox/blox/` folder\nmounts:\n  - source: hugo-blox/blox/community\n    target: layouts/_partials/blox/community/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox/all-access\n    target: layouts/_partials/blox/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox\n    target: assets/dist/community/blox/\n    files:\n      - '**.css'\n  - source: layouts\n    target: layouts\n  - source: assets\n    target: assets\n"
  },
  {
    "path": "templates/link-in-bio/config/_default/params.yaml",
    "content": "# ══════════════════════════════════════════════════════════════════════════════\n# HUGO BLOX CONFIGURATION\n# Schema: hugoblox.com/schema/v2\n# Tutorial: https://docs.hugoblox.com/tutorial/\n# Documentation: https://docs.hugoblox.com/\n# ══════════════════════════════════════════════════════════════════════════════\nhugoblox:\n  schema: \"2.0\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # IDENTITY\n  # Site-level branding (for people/profiles, use the author system in content/authors/)\n  # ────────────────────────────────────────────────────────────────────────────\n  identity:\n    # Site name - shown in navbar, footer, copyright, and browser title by default\n    name: \"Your Name\"\n    # Legal entity for copyright notices (defaults to name if not set)\n    organization: \"\"\n    # Schema.org type for structured data\n    type: person                        # person | organization | local_business\n    # Short tagline displayed on your site\n    tagline: \"\"\n    # Site meta description for search engines and social sharing\n    description: \"The highly-customizable Hugo Academic theme powered by HugoBlox Kit. Easily create your personal academic website.\"\n    # Social accounts (used for meta tags like Twitter Cards)\n    social:\n      twitter: \"MakeOwnable\"              # Twitter/X handle for Twitter Cards (without @)\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # THEME\n  # Color and visual design system\n  # ────────────────────────────────────────────────────────────────────────────\n  theme:\n    # Mode: 'light', 'dark', or 'system' (follows OS preference)\n    mode: system\n    # Theme pack: name from data/themes/ or { light: \"x\", dark: \"y\" } for mix-and-match\n    pack: \"default\"\n    # Optional: Override theme pack colors\n    colors:\n      primary: \"\"                       # Tailwind palette name or hex (e.g., \"indigo\" or \"#6366f1\")\n      secondary: \"\"\n      neutral: \"\"                       # Affects gray utilities (text-gray-*, bg-gray-*)\n    # Optional: Mode-specific color overrides\n    colors_light: {}\n    colors_dark: {}\n    # Optional: Semantic surface color overrides\n    surfaces:\n      background: \"\"\n      foreground: \"\"\n      header:\n        background: \"\"\n        foreground: \"\"\n      footer:\n        background: \"\"\n        foreground: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # TYPOGRAPHY\n  # Font and text sizing\n  # ────────────────────────────────────────────────────────────────────────────\n  typography:\n    # Theme pack: name from data/fonts/\n    pack: \"modern\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LAYOUT\n  # Spacing and shape tokens\n  # ────────────────────────────────────────────────────────────────────────────\n  layout:\n    # Border radius: 'none', 'sm', 'md', 'lg', or 'full'\n    radius: \"md\"\n    # Spacing density: 'compact', 'comfortable', or 'spacious'\n    spacing: \"comfortable\"\n    # Avatar shape in author profiles\n    avatar_shape: circle                # circle | square | rounded\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # HEADER\n  # Site header and navigation bar\n  # ────────────────────────────────────────────────────────────────────────────\n  header:\n    enable: true\n    # Header style variant\n    style: navbar                       # navbar | navbar-simple | minimal\n    # Stick to top on scroll\n    sticky: true\n    # Menu alignment\n    align: center                       # left | center | right\n    # Feature toggles\n    search: true\n    theme_toggle: true\n    theme_picker: false\n    language_switcher: true\n    # Call-to-action button\n    cta:\n      enable: false\n      text: \"\"\n      url: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # FOOTER\n  # Site footer\n  # ────────────────────────────────────────────────────────────────────────────\n  footer:\n    # Footer style variant\n    style: minimal                      # minimal | columns | centered\n    language_switcher: true\n    # Custom footer text (HTML supported)\n    text: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COPYRIGHT\n  # Legal notices and licensing\n  # ────────────────────────────────────────────────────────────────────────────\n  copyright:\n    # Copyright notice - supports {year}, {name}, {license} placeholders\n    notice: \"© {year} {name}. This work is licensed under {license}\"\n    license:\n      type: cc                          # cc | custom\n      allow_derivatives: false\n      share_alike: true\n      allow_commercial: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEO\n  # Search engine optimization - overrides and technical settings\n  # ────────────────────────────────────────────────────────────────────────────\n  seo:\n    # Browser tab title override (defaults to identity.name if not set)\n    title: \"\"\n    # For local_business identity type only\n    location:\n      address:\n        street: \"\"\n        city: \"\"\n        region: \"\"\n        postal_code: \"\"\n        country: \"\"\n      coordinates:\n        latitude: null\n        longitude: null\n      phone: \"\"\n    # AI/LLM crawler guidance (llms.txt)\n    ai:\n      allow:\n        - /\n      disallow: []\n      note: \"Guidance for AI crawlers - customize to match your public content.\"\n      contact: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # CONTENT\n  # Content rendering and behavior\n  # ────────────────────────────────────────────────────────────────────────────\n  content:\n    # Math rendering\n    math:\n      enable: false\n    # Table of contents\n    toc:\n      enable: true\n    # Reading time estimates\n    reading_time:\n      enable: true\n    # Academic citations\n    citations:\n      style: apa                        # apa | mla | chicago | ieee\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEARCH\n  # Site search\n  # ────────────────────────────────────────────────────────────────────────────\n  search:\n    enable: true\n    # Trending/suggested search terms\n    suggestions: []\n    # Quick action shortcuts in search modal\n    quick_actions: []\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COMMENTS\n  # User comments system\n  # ────────────────────────────────────────────────────────────────────────────\n  comments:\n    enable: false\n    provider: \"\"                        # giscus | disqus\n    giscus:\n      repo: \"\"\n      repo_id: \"\"\n      category: \"\"\n      category_id: \"\"\n    disqus:\n      shortname: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # ANALYTICS\n  # Traffic and behavior analytics\n  # ────────────────────────────────────────────────────────────────────────────\n  analytics:\n    google:\n      measurement_id: \"\"                # Google Analytics 4: G-XXXXXXXXXX\n    google_tag_manager:\n      container_id: \"\"                  # GTM-XXXXXXX\n    plausible:\n      domain: \"\"\n    fathom:\n      site_id: \"\"\n    pirsch:\n      site_id: \"\"\n    clarity:\n      project_id: \"\"\n    baidu:\n      site_id: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # VERIFICATION\n  # Search engine site verification codes\n  # ────────────────────────────────────────────────────────────────────────────\n  verification:\n    google: \"\"\n    bing: \"\"\n    baidu: \"\"\n    yandex: \"\"\n    pinterest: \"\"\n    naver: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # REPOSITORY\n  # Source code repository for \"Edit this page\" links\n  # ────────────────────────────────────────────────────────────────────────────\n  repository:\n    enable: false\n    url: \"\"                             # e.g., https://github.com/username/repo\n    branch: main\n    content_dir: content\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LOCALE\n  # Regional formatting preferences\n  # ────────────────────────────────────────────────────────────────────────────\n  locale:\n    date_format: \"Jan 2, 2006\"          # Go time format\n    time_format: \"3:04 PM\"\n    address_format: en-us\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SECURITY\n  # Security headers and policies (requires Netlify integration)\n  # ────────────────────────────────────────────────────────────────────────────\n  security:\n    csp:\n      policy: \"\"\n      report_only: false\n    frame_options: allow                 # deny | sameorigin | allow - allow enables iframe embedding\n    permissions_policy: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PRIVACY\n  # Privacy and compliance features\n  # ────────────────────────────────────────────────────────────────────────────\n  privacy:\n    enable: false\n    anonymize_analytics: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # DEBUG\n  # Development and debugging (hidden in production)\n  # ────────────────────────────────────────────────────────────────────────────\n  debug:\n    enable: false\n    hud:\n      position: bottom-left             # top-left | top-right | bottom-left | bottom-right\n      opacity: 1.0\n    export_logs: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PREMIUM\n  # Premium features and creator program (affiliates)\n  # ────────────────────────────────────────────────────────────────────────────\n  pro:\n    # Hide \"Powered by HugoBlox\" attribution\n    # Requires: HugoBlox Premium to support HugoBlox via alternative means\n    # Note: Even with Premium, you can keep this false to support open source!\n    # Get Premium: https://hugoblox.com/premium\n    hide_attribution: false\n    \n    # Affiliate referral code for rewards program\n    # Join affiliate program: https://hugoblox.com/affiliates\n    affiliate_code: \"\"\n"
  },
  {
    "path": "templates/link-in-bio/content/_index.md",
    "content": "---\ntitle: 'Home'\ndate: 2023-10-24\ntype: landing\n\ndesign:\n  background:\n    image:\n      # Add your image background to `assets/media/`.\n      filename: bg-hue.svg\n\nsections:\n  - block: resume-biography\n    content:\n      # The user's folder name in content/authors/\n      username: me\n    design:\n      biography:\n        style: 'text-align: justify; font-size: 0.8em;'\n      # Avatar customization\n      avatar:\n        size: medium # Options: small (150px), medium (200px, default), large (320px), xl (400px), xxl (500px)\n        shape: circle # Options: circle (default), square, rounded\n  - block: cta-button-list\n    content:\n      # Need a custom icon?\n      # Add an SVG image to the `assets/media/icons/` folder and reference it in the `icon` field below\n      buttons:\n        - text: Read my latest paper on LLMs\n          icon: academicons/arxiv\n          url: https://arxiv.org/abs/2304.01852\n        - text: Watch my new YouTube video to achieve 20x productivity\n          icon: brands/youtube\n          url: https://youtube.com\n        - text: Connect with me on LinkedIn\n          icon: brands/linkedin\n          url: https://linkedin.com\n---\n"
  },
  {
    "path": "templates/link-in-bio/content/authors/_index.md",
    "content": "---\n# To publish author profile pages, remove all the `build` and `cascade` settings below.\nbuild:\n  render: never\ncascade:\n  build:\n    render: never\n    list: always\n---\n"
  },
  {
    "path": "templates/link-in-bio/data/authors/me.yaml",
    "content": "schema: hugoblox/author/v1\nslug: me\nis_owner: true\nname:\n  display: Alex Johnson\n  given: Alex\n  family: Johnson\n  pronouns: he/him\nstatus:\n  icon: \"🚀\"\nrole: Senior AI Research Scientist\nbio: >\n  Alex Johnson is a Senior AI Research Scientist at Meta AI, where he leads groundbreaking work on large language models\n  and multimodal systems. His research has been published in top conferences like NeurIPS and ICML, with over 10,000\n  citations. Alex is passionate about pushing the boundaries of AI while ensuring ethical development. Outside of work,\n  he enjoys hiking in the Rockies, building custom PCs, and mentoring the next generation of AI talent.\naffiliations:\n  - name: Meta AI\n    url: https://ai.meta.com/\nlinks:\n  - icon: at-symbol\n    url: mailto:alex.johnson@meta.com\n    label: E-mail Me\n  - icon: brands/x\n    url: https://x.com/AlexAIResearch\n  - icon: brands/github\n    url: https://github.com/alexjohnsonai\n  - icon: brands/linkedin\n    url: https://www.linkedin.com/in/alexjohnsonai/\n  - icon: academicons/google-scholar\n    url: https://scholar.google.com/citations?user=alexjohnson\n  - icon: academicons/orcid\n    url: https://orcid.org/0000-0002-1825-0097\ninterests:\n  - Large Language Models\n  - Computer Vision\n  - Reinforcement Learning\n  - AI Ethics\neducation:\n  - degree: PhD Computer Science (AI Focus)\n    institution: Stanford University\n    start: 2015-09-01\n    end: 2019-06-30\n    summary: |\n      Thesis on _Scaling Laws for Neural Language Models_. Supervised by Prof. Andrew Ng. Published 5 papers in NeurIPS and ICML, with 2 best paper awards.\n    button:\n      text: 'Read Thesis'\n      url: 'https://example.com/thesis.pdf'\n  - degree: MS Computer Science\n    institution: Carnegie Mellon University\n    start: 2013-09-01\n    end: 2015-05-31\n    summary: |\n      GPA: 4.0/4.0\n\n      Specialized in machine learning and robotics.\n  - degree: BS Computer Science\n    institution: MIT\n    start: 2009-09-01\n    end: 2013-05-31\n    summary: |\n      GPA: 3.9/4.0\n\n      Minored in Mathematics. President of AI Club.\nexperience:\n  - role: Senior AI Research Scientist\n    org: Meta AI\n    start: 2020-01-01\n    summary: |\n      Leading research on multimodal AI systems. Contributed to Llama 2 and other open-source models. 50+ citations in 3 years.\n  - role: AI Research Intern\n    org: OpenAI\n    start: 2019-06-01\n    end: 2019-12-31\n    summary: |\n      Worked on GPT-3 scaling. Co-authored paper on prompt engineering.\nskills:\n  - name: Technical Skills\n    items:\n      - label: Python & PyTorch\n        level: 5\n        icon: code-bracket\n      - label: Machine Learning\n        level: 5\n        icon: chart-bar\n      - label: Cloud Computing (AWS/GCP)\n        level: 4\n        icon: cloud\n  - name: Hobbies\n    color: '#eeac02'\n    color_border: '#f0bf23'\n    items:\n      - label: Hiking in the Rockies\n        level: 4\n        icon: person-simple-walk\n      - label: Building Custom PCs\n        level: 5\n        icon: cpu-chip\n      - label: Sci-Fi Reading\n        level: 4\n        icon: book-open\nlanguages:\n  - name: English\n    level: 5\n  - name: Spanish\n    level: 3\nawards:\n  - title: Best Paper Award\n    url: https://neurips.cc/\n    date: '2022-12-01'\n    awarder: NeurIPS\n    icon: hero/trophy\n    summary: Awarded for groundbreaking work on efficient training of large models.\n  - title: AI Innovation Grant\n    url: https://www.nsf.gov/\n    date: '2021-06-15'\n    awarder: National Science Foundation\n    icon: hero/currency-dollar\n    summary: $500,000 grant for research in ethical AI development.\n  - title: Outstanding PhD Thesis\n    url: https://www.stanford.edu/\n    date: '2019-06-30'\n    awarder: Stanford University\n    icon: hero/academic-cap\n    summary: Recognized for contributions to scaling laws in deep learning.\n"
  },
  {
    "path": "templates/link-in-bio/go.mod",
    "content": "module my_website\n\ngo 1.19\n\nrequire (\n\tgithub.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652\n\tgithub.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c\n)\n"
  },
  {
    "path": "templates/link-in-bio/hugoblox.yaml",
    "content": "build:\n  hugo_version: '0.156.0'\ndeploy:\n  # Deployment target: github-pages, netlify, vercel, cloudflare, or none\n  host: 'github-pages'\ntemplate:\n  id: \"link-in-bio\"\n  name: \"Link in Bio\"\n"
  },
  {
    "path": "templates/link-in-bio/layouts/_partials/hooks/body-end/change-background-color.html",
    "content": "<script>\n  let bg = document.getElementById('page-bg');\n  bg.style.setProperty('will-change', 'filter', '');\n  let hue = 0;\n\n  // Dark mode support\n  let isDark = document.documentElement.classList.contains('dark');\n  document.addEventListener('hbThemeChange', (e) => {\n    console.debug('Theme changed - isDarkTheme? ' + e.detail.isDarkTheme());\n    isDark = e.detail.isDarkTheme();\n  });\n\n  setInterval(\n    function () {\n      hue = (hue + 1) % 360.;\n\n      if (isDark) {\n        bg.style.setProperty('filter', 'hue-rotate(' + hue + 'deg) invert(1) saturate(2)', '');\n      } else {\n        bg.style.setProperty('filter', 'hue-rotate(' + hue + 'deg)', '');\n      }\n\n    }, (5000 / 360.));\n</script>\n"
  },
  {
    "path": "templates/link-in-bio/netlify.toml",
    "content": "[build]\n  command = \"\"\"\n    set -e\n    echo \"=== Starting Blog build process ===\"\n    echo \"Node version: $(node --version)\"\n    echo \"pnpm version: $(pnpm --version)\"\n    echo \"Hugo version: $(hugo version)\"\n    echo \"Go version: $(go version || echo 'Go not available')\"\n    \n    echo \"=== Installing dependencies ===\"\n    pnpm install --verbose --no-frozen-lockfile\n    \n    echo \"=== Running Hugo build ===\"\n    hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings\n    \n    echo \"=== Running Pagefind indexing ===\"\n    pnpm run pagefind\n    \n    echo \"=== Build completed successfully ===\"\n  \"\"\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.156.0\"\n  GO_VERSION = \"1.21.5\"\n  NODE_VERSION = \"22\"\n  # Ensure Netlify's implicit install step never enforces frozen lockfiles\n  PNPM_FLAGS = \"--no-frozen-lockfile\"\n  HUGO_ENABLEGITINFO = \"true\"\n  HUGO_LOG_I18N_WARNINGS = \"true\"\n  HUGO_LOG_WARNINGS = \"true\"\n  FORCE_COLOR = \"1\"\n  PNPM_LOG_LEVEL = \"debug\"\n\n[context.production.environment]\n  HUGO_ENV = \"production\"\n\n[context.deploy-preview]\n  command = \"\"\"\n    set -e\n    echo \"=== Deploy Preview Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[context.branch-deploy]\n  command = \"\"\"\n    set -e\n    echo \"=== Branch Deploy Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[[plugins]]\n  package = \"netlify-plugin-hugo-cache-resources\"\n  [plugins.inputs]\n    debug = true\n"
  },
  {
    "path": "templates/link-in-bio/package.json",
    "content": "{\n  \"name\": \"hugo-blox-link-in-bio-starter\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"description\": \"Link-in-bio starter template for Hugo Blox with Tailwind CSS v4\",\n  \"scripts\": {\n    \"dev\": \"hugo server --disableFastRender\",\n    \"build\": \"hugo --minify && pnpm run pagefind\",\n    \"pagefind\": \"pagefind --site public\"\n  },\n  \"dependencies\": {\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.10\",\n    \"pagefind\": \"^1.4.0\",\n    \"preact\": \"^10.27.2\",\n    \"tailwindcss\": \"^4.1.12\"\n  }\n}\n"
  },
  {
    "path": "templates/markdown-slides/.devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"HugoBlox Codespace\",\n  \"image\": \"ghcr.io/HugoBlox/hugo-blox-dev:hugo0.156.0\",\n  \"updateContentCommand\": \"pnpm install --frozen-lockfile --prefer-offline\",\n  \"postCreateCommand\": \"pnpm --version && hugo version\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"ownable.ownable\"]\n    }\n  },\n  \"mounts\": [\"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume\"],\n  \"remoteUser\": \"vscode\",\n  \"forwardPorts\": [1313],\n  \"portsAttributes\": {\n    \"1313\": {\n      \"label\": \"Hugo Server\"\n    }\n  }\n}\n"
  },
  {
    "path": "templates/markdown-slides/.github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": "templates/markdown-slides/.github/workflows/build.yml",
    "content": "name: Build\n\nenv:\n  NODE_VERSION: '20'\n\non:\n  # Standalone trigger for PR validation\n  pull_request:\n    branches: ['main']\n  # Reusable workflow trigger - called by deploy.yml\n  workflow_call:\n    outputs:\n      artifact-id:\n        description: 'The ID of the uploaded artifact'\n        value: ${{ jobs.build.outputs.artifact-id }}\n  # Allow manual trigger for testing\n  workflow_dispatch:\n\n# Read-only permissions for security\npermissions:\n  contents: read\n\n# Prevent duplicate builds for the same PR\nconcurrency:\n  group: build-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    outputs:\n      artifact-id: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        # Fetch history for Hugo's .GitInfo and .Lastmod\n        fetch-depth: 0\n\n    - name: Setup Node.js\n      uses: actions/setup-node@v6\n      with:\n        node-version: ${{ env.NODE_VERSION }}\n\n    - name: Setup pnpm\n      if: hashFiles('package.json') != ''\n      uses: pnpm/action-setup@v4\n\n    - name: Get Hugo Version\n      id: hugo-version\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read hugo_version from hugoblox.yaml\n        VERSION=$(yq '.hugo_version // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        \n        # Fallback to a known stable version if not specified\n        DEFAULT_VERSION=\"0.154.5\"\n        VERSION=${VERSION:-$DEFAULT_VERSION}\n        \n        # Validate version format (basic check)\n        if [[ ! \"$VERSION\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then\n          echo \"::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION\"\n          VERSION=\"$DEFAULT_VERSION\"\n        fi\n        \n        echo \"HUGO_VERSION=$VERSION\" >> $GITHUB_ENV\n        echo \"Using Hugo version: $VERSION\"\n\n    - name: Install dependencies\n      run: |\n        # Install Tailwind CLI if package.json exists\n        if [ -f \"package.json\" ]; then\n          echo \"Installing Tailwind dependencies...\"\n          pnpm install --no-frozen-lockfile || npm install\n        fi\n\n    - name: Setup Hugo\n      uses: peaceiris/actions-hugo@v3\n      with:\n        hugo-version: ${{ env.HUGO_VERSION }}\n        extended: true\n\n    # Cache dependencies (Go modules, node_modules) - stable, rarely changes\n    - uses: actions/cache@v4\n      with:\n        path: |\n          /tmp/hugo_cache_runner/\n          node_modules/\n          modules/*/node_modules/\n        key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json',\n          '**/pnpm-lock.yaml') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-deps-\n\n    # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change\n    - uses: actions/cache@v4\n      with:\n        path: resources/\n        key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*',\n          'hugo.yaml', 'package.json') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-resources-\n\n    - name: Build with Hugo\n      env:\n        HUGO_ENVIRONMENT: production\n        HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }}\n      run: |\n        echo \"Hugo Cache Dir: $(hugo config | grep cachedir)\"\n        hugo --minify\n\n    - name: Generate Pagefind search index (if applicable)\n      run: |\n        # Check if site uses Pagefind search\n        if [ -f \"package.json\" ] && grep -q \"pagefind\" package.json; then\n          pnpm run pagefind || npx pagefind --site \"public\"\n        fi\n\n    - name: Upload artifact\n      id: upload\n      uses: actions/upload-pages-artifact@v4\n      with:\n        path: ./public\n"
  },
  {
    "path": "templates/markdown-slides/.github/workflows/deploy.yml",
    "content": "name: Deploy website to GitHub Pages\n\non:\n  # Trigger the workflow every time you push to the `main` branch\n  push:\n    branches: ['main']\n  # Allows you to run this workflow manually from the Actions tab on GitHub\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: 'pages'\n  cancel-in-progress: false\n\njobs:\n  # Check deployment configuration\n  config:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    outputs:\n      deploy-host: ${{ steps.check.outputs.host }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        sparse-checkout: hugoblox.yaml\n        sparse-checkout-cone-mode: false\n\n    - name: Check deploy host\n      id: check\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read deploy.host from hugoblox.yaml, default to github-pages\n        HOST=$(yq '.deploy.host // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        HOST=${HOST:-github-pages}\n        \n        # Validate known hosts\n        if [[ ! \"$HOST\" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then\n          echo \"::warning::Unknown deploy host '$HOST', defaulting to github-pages\"\n          HOST=\"github-pages\"\n        fi\n        \n        echo \"host=$HOST\" >> $GITHUB_OUTPUT\n        echo \"Deployment target: $HOST\"\n\n  # Build website using reusable workflow (always runs for CI)\n  build:\n    needs: config\n    if: github.repository_owner != 'HugoBlox'\n    uses: ./.github/workflows/build.yml\n    secrets: inherit\n\n  # Deploy website to GitHub Pages hosting (only if configured)\n  deploy:\n    needs: [config, build]\n    if: needs.config.outputs.deploy-host == 'github-pages'\n    # Grant GITHUB_TOKEN the permissions required to make a Pages deployment\n    permissions:\n      pages: write # to deploy to Pages\n      id-token: write # to verify the deployment originates from an appropriate source\n    # Deploy to the github-pages environment\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    steps:\n    - name: Deploy to GitHub Pages\n      id: deployment\n      uses: actions/deploy-pages@v4\n"
  },
  {
    "path": "templates/markdown-slides/.github/workflows/upgrade.yml",
    "content": "name: Upgrade HugoBlox\n\non:\n  workflow_dispatch:\n    inputs:\n      version_type:\n        description: 'Upgrade to version'\n        required: true\n        default: 'Stable'\n        type: choice\n        options:\n        - Stable\n        - Beta (Preview)\n  schedule:\n    # Run at 05:00 on Monday\n    - cron: '0 5 * * 1'\n\npermissions:\n  contents: write\n  pull-requests: write\n\n# Prevent duplicate upgrade runs\nconcurrency:\n  group: upgrade-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  upgrade:\n    name: Upgrade\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 15\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v6\n        with:\n          node-version: '22'\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n        with:\n          package_json_path: ./package.json\n          run_install: false\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: '1.23'\n\n      - name: Setup Hugo\n        uses: peaceiris/actions-hugo@v3\n        with:\n          hugo-version: 'latest'\n          extended: true\n\n      - name: Run Upgrade CLI\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # Use manual input or default to stable for scheduled runs\n          VERSION_TYPE: ${{ inputs.version_type || 'Stable' }}\n        run: |\n          FLAGS=\"--yes --ci\"\n          \n          if [ \"$VERSION_TYPE\" == \"Beta (Preview)\" ]; then\n            FLAGS=\"$FLAGS --canary\"\n          fi\n          \n          echo \"Running upgrade with flags: $FLAGS\"\n          pnpm dlx hugoblox@latest upgrade $FLAGS\n\n\n      - name: Create Pull Request\n        uses: peter-evans/create-pull-request@v6\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          commit-message: \"chore(deps): upgrade hugoblox modules\"\n          title: \"⬆️ Upgrade HugoBlox Modules\"\n          body: |\n            This PR upgrades the [HugoBlox](https://hugoblox.com) modules to the latest version.\n            \n            **Changes:**\n            - Updated Hugo Modules (go.mod/go.sum)\n            - Applied automatic migrations (if any)\n            \n            **Verification:**\n            - [ ] Check the Deploy Preview to ensure everything looks correct.\n            - [ ] Merge this PR to apply the updates.\n          branch: \"chore/upgrade-hugoblox-${{ github.run_id }}\"\n          delete-branch: true\n          base: main\n          labels: |\n            dependencies\n            automated-pr\n"
  },
  {
    "path": "templates/markdown-slides/.gitignore",
    "content": "# ============================================================================\n# Hugo Site .gitignore\n# ============================================================================\n\n# ============================================================================\n# Hugo Build Artifacts\n# ============================================================================\n\n# Generated site output\npublic/\n\n# Hugo resources (processed assets)\nresources/\n\n# Hugo build lock\n.hugo_build.lock\n\n# Hugo stats\nhugo_stats.json\n\n# Auto-generated JS config\n**/assets/jsconfig.json\n\n# ============================================================================\n# Node.js & Package Managers\n# ============================================================================\n\n# Dependencies\nnode_modules/\n\n# ============================================================================\n# Environment & Configuration\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# ============================================================================\n# Generated Content\n# ============================================================================\n\n# Pagefind search index\npagefind/\nstatic/pagefind/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n\n# Windows\nThumbs.db\nDesktop.ini\n\n# Linux\n*~\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n*.log\nnpm-debug.log*\n"
  },
  {
    "path": "templates/markdown-slides/LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2023-present George Cushen (https://georgecushen.com/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in 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": "templates/markdown-slides/README.md",
    "content": "# [Markdown Slides](https://hugoblox.com/templates/markdown-slides/start?utm_source=github&utm_medium=readme)\n\n[![Screenshot](.github/preview.png)](https://hugoblox.com/templates/markdown-slides/start?utm_source=github&utm_medium=readme)\n\n<h1 align=\"center\">The Presentation Framework for Researchers</h1>\n\n<p align=\"center\">\n  <strong>Stop wrestling with PowerPoint.</strong><br/>\n  Write slides in Markdown, version control your talks, and present code & math beautifully.\n</p>\n\n<p align=\"center\">\n  <a href=\"https://hugoblox.com/templates/markdown-slides/start?utm_source=github&utm_medium=readme\"><b>🚀 Deploy in 60s (Free)</b></a>\n  &nbsp;•&nbsp;\n  <a href=\"https://hugoblox.com/templates/?open=markdown-slides&loading=true&utm_source=github&utm_medium=readme\">Live Demo</a>\n  &nbsp;•&nbsp;\n  <a href=\"https://docs.hugoblox.com/guides/studio/\">HugoBlox Studio (Visual Editor)</a>\n</p>\n\n<p align=\"center\">\n  <b>▶︎ Watch Preview</b>\n</p>\n\nhttps://github.com/user-attachments/assets/5a93788a-65d7-4a56-8355-4a2098a5f89b\n\n<p align=\"center\">\n  <a href=\"https://discord.gg/z8wNYzb\"><img src=\"https://img.shields.io/discord/722225264733716590?label=Join%20Discord&style=social\" alt=\"Discord\"></a>\n  <a href=\"https://github.com/HugoBlox/kit\"><img src=\"https://img.shields.io/github/stars/HugoBlox/kit?label=Star%20HugoBlox&style=social\" alt=\"GitHub Stars\"></a>\n  <a href=\"https://x.com/MakeOwnable\"><img src=\"https://img.shields.io/twitter/follow/MakeOwnable?label=Follow&style=social\" alt=\"Follow on X\"></a>\n</p>\n\n---\n\n## Why this template?\n\nTraditional slide software (PowerPoint, Keynote) locks your content in binary files, breaks code formatting, and makes version control a nightmare.\n\n- **📝 Markdown-first**: Write slides like you write papers. Focus on content, not pixel-perfect alignment.\n- **⚗️ Research-ready**: Native support for LaTeX math ($E=mc^2$), citations, and rich metadata (venue, DOI, authors).\n- **💻 Code-native**: Beautiful syntax highlighting for 100+ languages without screenshots.\n- **🎓 Deck Landing Pages**: Every presentation gets a dedicated searchable landing page with abstract and download links.\n- **🚀 Present Anywhere**: Browser-based presenter mode (Reveal.js) with speaker notes, timer, and offline support.\n\n---\n\n## Who it’s for\n\n- **Academics** presenting at conferences (share a URL, not a USB drive).\n- **Data Scientists** explaining complex analyses with real code snippets.\n- **Lecturers** creating course materials that students can actually search, read, and fork.\n- **Developers** who prefer their IDE over a GUI presentation tool.\n\n---\n\n## What you get (Free)\n\n- **Professional Presenter Mode**: Speaker notes, timer, and next-slide preview.\n- **Rich Metadata**: Associate events, co-authors, and related links with each deck.\n- **PDF Export**: One-click printable version for handouts.\n- **Mermaid Diagrams**: Draw flowcharts and sequence diagrams in text.\n- **Theming**: Light, dark, and custom themes included.\n- **Mobile Optimized**: Responsive gallery and slide viewer.\n\n---\n\n## Get started (recommended)\n\n### Option 1 — Online deployer (fastest)\n\nDeploy this template in ~60 seconds:\n\n- [Deploy in browser →](https://hugoblox.com/templates/markdown-slides/start?utm_source=github&utm_medium=readme)\n\n### Option 2 — HugoBlox Studio (visual editor in VS Code)\n\n- [Studio guide →](https://docs.hugoblox.com/guides/studio/?utm_source=github&utm_medium=readme)\n- [Studio AI automation plans (Free/Plus/Pro) →](https://hugoblox.com/pricing/?utm_source=github&utm_medium=readme)\n\n### Option 3 — HugoBlox CLI (developer workflow)\n\nInstall:\n\n```bash\nnpm install -g hugoblox@latest\n```\n\nCreate a site:\n\n```bash\nhugoblox create site --template markdown-slides\n```\n\n[CLI docs →](https://docs.hugoblox.com/start/cli/?utm_source=github&utm_medium=readme)\n\n---\n\n## Customize in 10 minutes\n\n- **Create a deck**: `content/slides/my-talk/index.md`\n- **Slide syntax**: Use `---` to separate slides.\n- **Speaker notes**: Use `Note:` at the end of a slide.\n- **Theme**: Set `slides.theme: black` (or white, league, night, etc.) in frontmatter.\n- **Site Identity**: `config/_default/params.yaml`\n\n---\n\n## Want the Pro version? 💎\n\nIf you want a version that feels meaningfully more premium (and helps fund open source + research):\n\n- [Premium templates →](https://hugoblox.com/templates/?utm_source=github&utm_medium=readme)\n- [HugoBlox Pro / Studio →](https://hugoblox.com/pricing?utm_source=github&utm_medium=readme)\n\n---\n\n## Community & support\n\n- **Docs**: [docs.hugoblox.com →](https://docs.hugoblox.com/?utm_source=github&utm_medium=readme)\n- **Discord**: [Join Discord →](https://discord.gg/z8wNYzb)\n- **Issues**: [Open an issue →](https://github.com/HugoBlox/kit/issues)\n\n---\n\nMIT © 2016–Present [George Cushen](https://neuralgeo.com/?utm_source=github&utm_medium=readme)\n"
  },
  {
    "path": "templates/markdown-slides/config/_default/hugo.yaml",
    "content": "# Configuration of Hugo\n# Documentation: https://gohugo.io/getting-started/configuration/\n\n# Website name (set in params.yaml under hugoblox.identity.name)\ntitle: ''\n# Website URL\nbaseURL: 'https://example.com/'\n\n############################\n## LANGUAGE\n############################\n\ndefaultContentLanguage: en\nhasCJKLanguage: false\nremovePathAccents: true\n\n############################\n## ADVANCED\n############################\n\nbuild:\n  writeStats: true\nenableGitInfo: false\nsummaryLength: 30\npagination:\n  pagerSize: 12\nenableEmoji: true\nenableRobotsTXT: true\nfootnotereturnlinkcontents: <sup>^</sup>\ndisableAliases: true\noutputs:\n  home: [HTML, RSS, headers, redirects]\n  section: [HTML, RSS]\n  page: [HTML]\noutputFormats:\n  HTML:\n    baseName: index\n  present:\n    baseName: index\n    isHTML: true\n    mediaType: text/html\n    permalinkable: true\n    path: present\n    rel: alternate\n    \npermalinks:\n  slides: /slides/:contentbasename/\nimaging:\n  resampleFilter: lanczos\n  quality: 90\n  anchor: smart\ntimeout: 600000\ntaxonomies:\n  tag: tags\nmarkup:\n  _merge: deep\n  highlight:\n    lineNos: false\nsecurity:\n  _merge: deep\nsitemap:\n  _merge: deep\n"
  },
  {
    "path": "templates/markdown-slides/config/_default/menus.yaml",
    "content": "# Navigation Links\n# Simple navigation for a slides-focused site\n\nmain:\n  - name: Home\n    url: /\n    weight: 10\n  - name: Browse Decks\n    url: /slides/\n    weight: 20\n"
  },
  {
    "path": "templates/markdown-slides/config/_default/module.yaml",
    "content": "############################\n## HUGO MODULES\n## Install or uninstall themes and plugins here.\n## Docs: https://gohugo.io/hugo-modules/\n############################\n\nimports:\n  - path: github.com/HugoBlox/kit/modules/integrations/netlify\n  - path: github.com/HugoBlox/kit/modules/blox\n  - path: github.com/HugoBlox/kit/modules/slides\n"
  },
  {
    "path": "templates/markdown-slides/config/_default/params.yaml",
    "content": "# ══════════════════════════════════════════════════════════════════════════════\n# MARKDOWN SLIDES - HUGO BLOX CONFIGURATION\n# A minimal template for hosting and sharing slide decks\n# Documentation: https://docs.hugoblox.com/\n# ══════════════════════════════════════════════════════════════════════════════\nhugoblox:\n  schema: \"2.0\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # IDENTITY\n  # Customize your slide deck site branding\n  # ────────────────────────────────────────────────────────────────────────────\n  identity:\n    name: \"My Slides\"\n    organization: \"\"\n    type: person                        # person | organization\n    tagline: \"Open-source slide decks\"\n    description: \"Markdown-based slide presentations. Write in Markdown, present anywhere, share with anyone.\"\n    social:\n      twitter: \"\"                       # Twitter/X handle for social cards\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # THEME\n  # ────────────────────────────────────────────────────────────────────────────\n  theme:\n    mode: system                        # light | dark | system\n    pack: \"default\"\n    colors:\n      primary: \"\"\n      secondary: \"\"\n      neutral: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # TYPOGRAPHY\n  # ────────────────────────────────────────────────────────────────────────────\n  typography:\n    # Theme pack: name from data/fonts/\n    pack: \"modern\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LAYOUT\n  # ────────────────────────────────────────────────────────────────────────────\n  layout:\n    radius: \"md\"\n    spacing: \"comfortable\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # HEADER\n  # ────────────────────────────────────────────────────────────────────────────\n  header:\n    enable: true\n    style: navbar-simple                # Clean, minimal navbar\n    sticky: true\n    align: center\n    search: true                        # Enable search for larger deck collections\n    theme_toggle: true\n    theme_picker: false\n    language_switcher: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # FOOTER\n  # ────────────────────────────────────────────────────────────────────────────\n  footer:\n    style: minimal\n    language_switcher: false\n    text: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COPYRIGHT\n  # ────────────────────────────────────────────────────────────────────────────\n  copyright:\n    notice: \"© {year} {name}\"\n    license:\n      type: cc\n      allow_derivatives: true\n      share_alike: true\n      allow_commercial: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # CONTENT\n  # Math is enabled by default for technical presentations\n  # ────────────────────────────────────────────────────────────────────────────\n  content:\n    math:\n      enable: true                      # Enable LaTeX math for technical decks\n    toc:\n      enable: false                     # Not needed for slides\n    reading_time:\n      enable: false                     # Not relevant for slides\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEARCH\n  # ────────────────────────────────────────────────────────────────────────────\n  search:\n    enable: true\n    suggestions: []\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COMMENTS - Disabled by default\n  # ────────────────────────────────────────────────────────────────────────────\n  comments:\n    enable: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # ANALYTICS - Add your tracking IDs\n  # ────────────────────────────────────────────────────────────────────────────\n  analytics:\n    google:\n      measurement_id: \"\"\n    plausible:\n      domain: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LOCALE\n  # ────────────────────────────────────────────────────────────────────────────\n  locale:\n    date_format: \"Jan 2, 2006\"\n    time_format: \"3:04 PM\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SECURITY - Allow slides to be embedded in iframes\n  # ────────────────────────────────────────────────────────────────────────────\n  security:\n    frame_options: allow                 # deny | sameorigin | allow - allow enables iframe embedding\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PREMIUM\n  # Premium features and creator program (affiliates)\n  # ────────────────────────────────────────────────────────────────────────────\n  pro:\n    # Hide \"Powered by HugoBlox\" attribution\n    # Requires: HugoBlox Premium to support HugoBlox via alternative means\n    # Note: Even with Premium, you can keep this false to support open source!\n    # Get Premium: https://hugoblox.com/premium\n    hide_attribution: false\n    affiliate_code: \"\"\n"
  },
  {
    "path": "templates/markdown-slides/content/_index.md",
    "content": "---\ntitle: ''\nsummary: ''\ndate: 2025-01-01\ntype: landing\n\ndesign:\n  spacing: '4rem'\n\nsections:\n  # Hero Section\n  - block: hero\n    content:\n      title: Markdown Slides\n      text: |-\n        **Open-source slide decks.**  \n        Write in Markdown, present anywhere, share with anyone.\n      primary_action:\n        text: Browse Decks\n        url: '/slides/'\n        icon: play\n      secondary_action:\n        text: Create Your Own\n        url: https://hugoblox.com/templates/markdown-slides/start?utm_source=hugoblox&utm_medium=demo\n    design:\n      spacing:\n        padding: ['5rem', '0', '4rem', '0']\n      css_class: 'dark:bg-zinc-900'\n\n  - block: features\n    content:\n      title: Why Markdown Slides\n      text: 'Best for: lab meetings, course lectures, paper reading groups, and startup demos.'\n      items:\n        - name: Version-controlled research\n          description: Write decks like code, track diffs, and cite stable versions.\n          icon: hero/code-bracket\n        - name: Research-native media\n          description: Math, citations, syntax highlighting, and diagrams out of the box.\n          icon: hero/document-text\n        - name: Future-proof format\n          description: Most future-proof format - Markdown is LLM-native for human-first, AI-assisted workflows.\n          icon: hero/bolt\n\n  # Featured Decks Row\n  - block: collection\n    id: decks\n    content:\n      title: Featured Decks\n      text: ''\n      filters:\n        folders:\n          - slides\n        featured_only: true\n      sort_by: Date\n      sort_ascending: false\n      count: 3\n    design:\n      view: slides-gallery\n      columns: 2\n\n  - block: collection\n    id: recent\n    content:\n      title: Recent Decks\n      text: ''\n      filters:\n        folders:\n          - slides\n        exclude_featured: true\n      sort_by: Date\n      sort_ascending: false\n      count: 0\n    design:\n      view: slides-gallery\n      columns: 2\n---\n"
  },
  {
    "path": "templates/markdown-slides/content/slides/_index.md",
    "content": "---\ntitle: All Slide Decks\ndescription: Browse all available slide presentations\nview: slides-gallery\ncolumns: 2\ncascade:\n  outputs:\n    - HTML\n    - present\n---\n\nBrowse all slide decks below. Click any deck to start the presentation.\n"
  },
  {
    "path": "templates/markdown-slides/content/slides/example/index.md",
    "content": "---\ntitle: \"Markdown Slides Demo\"\ndate: 2025-12-15\ndescription: \"A comprehensive demo of all Reveal.js features available in Hugo Blox\"\nauthors: [\"me\", \"Hugo Blox Team\"]\ntags: [\"demo\", \"tutorial\", \"features\"]\nvenue: \"Hugo Blox Tutorial\"\nfeatured: true\ntype: slides\nslides:\n  theme: black  # Options: black, white, league, beige, sky, night, serif, simple, solarized\n  highlight_style: dracula  # Code syntax highlighting theme\n  diagram: true  # Enable Mermaid diagrams for flowcharts, etc.\n  reveal_options:\n    controls: true      # Show navigation arrows\n    progress: true      # Show progress bar\n    slideNumber: true   # Show slide numbers\n    hash: true          # Update URL when navigating slides\n\n  # BRANDING: Add logo, title overlay, and footer to your presentation\n  # All settings are optional - remove any you don't need\n  branding:\n    # LOGO: Display your organization's logo\n    logo:\n      filename: \"slides-logo.svg\"   # File in assets/media/ folder (SVG recommended for any theme)\n      position: \"top-right\"         # Options: top-left, top-right, bottom-left, bottom-right\n      width: \"50px\"                 # Logo width (height scales automatically)\n    \n    # TITLE OVERLAY: Show presentation title on every slide\n    title:\n      show: true                    # Set to false to hide\n      position: \"bottom-left\"       # Options: top-left, top-right, bottom-left, bottom-right\n    \n    # FOOTER TEXT: Display copyright, conference name, etc.\n    footer:\n      text: \"© 2026 HugoBlox\"       # Supports Markdown (e.g., links)\n      position: \"bottom-center\"     # Options: top-left, top-right, bottom-left, bottom-right, bottom-center\n---\n\n<!-- no-branding -->\n# Markdown Slides\n\n### Write in Markdown. Present Anywhere.\n\n---\n\n## What You Can Do\n\n- Write slides in **pure Markdown**\n- Include **code**, **math**, and **diagrams**\n- Add **speaker notes** for presenter view\n- Use **progressive reveals** for storytelling\n- Customize **themes** and **transitions**\n\n---\n\n## Code Highlighting\n\n```python\ndef fibonacci(n: int) -> int:\n    if n <= 1:\n        return n\n    return fibonacci(n-1) + fibonacci(n-2)\n    \n# Calculate the 10th Fibonacci number\nprint(fibonacci(10))  # Output: 55\n```\n\n---\n\n## Mathematical Equations\n\nEinstein's famous equation:\n\n$$E = mc^2$$\n\nThe quadratic formula:\n\n$$x = \\frac{-b \\pm \\sqrt{b^2-4ac}}{2a}$$\n\n---\n\n## Mermaid Diagrams\n\n```mermaid\ngraph LR\n    A[Markdown] --> B[Hugo]\n    B --> C[Reveal.js]\n    C --> D[Beautiful Slides]\n```\n\n---\n\n## Progressive Reveals\n\nBuild your narrative step by step:\n\n{{< fragment >}}First, introduce the concept{{< /fragment >}}\n\n{{< fragment >}}Then, add supporting details{{< /fragment >}}\n\n{{< fragment >}}Finally, deliver the conclusion{{< /fragment >}}\n\n---\n\n## Speaker Notes\n\nPress **S** to open presenter view!\n\nNote:\n- These notes are only visible in presenter mode\n- Perfect for talking points and reminders\n- Supports **Markdown** formatting\n- Add timing cues and references here\n\n---\n\n## Dual Column Layout\n\n<div class=\"r-hstack\">\n\n<div style=\"flex: 1; padding-right: 1rem;\">\n\n### Benefits\n\n- Open source\n- Version control\n- No vendor lock-in\n- Works offline\n\n</div>\n\n<div style=\"flex: 1; padding-left: 1rem;\">\n\n### Use Cases\n\n- Tech talks\n- Academic papers\n- Team updates\n- Training sessions\n\n</div>\n\n</div>\n\n---\n\n{{< slide background-color=\"#1e3a8a\" >}}\n\n## Custom Backgrounds\n\nSlides can have **custom colors** or images.\n\nUse `{{</* slide background-color=\"#hex\" */>}}`\n\n---\n\n## Keyboard Shortcuts\n\n| Key | Action |\n|-----|--------|\n| `→` / `←` | Navigate slides |\n| `S` | Speaker notes |\n| `F` | Fullscreen |\n| `O` | Overview mode |\n| `ESC` | Exit modes |\n\n---\n\n## Get Started\n\n1. Create a file in `content/slides/`\n2. Add front matter with `type: slides`\n3. Write your content in Markdown\n4. Separate slides with `---`\n\n---\n\n## Thank You!\n\n**Questions?**\n\n- GitHub: [HugoBlox/kit](https://github.com/HugoBlox/kit)\n- Docs: [docs.hugoblox.com](https://docs.hugoblox.com)\n\n*Built with Markdown Slides*\n\n---\n\n## 🎨 Branding Your Slides\n\nAdd your identity to every slide with simple configuration!\n\n**What you can add:**\n\n| Element | Position Options |\n|---------|-----------------|\n| Logo | top-left, top-right, bottom-left, bottom-right |\n| Title | Same as above |\n| Author | Same as above |\n| Footer Text | Same + bottom-center |\n\nEdit the `branding:` section in your slide's front matter (top of file).\n\n---\n\n## 📁 Adding Your Logo\n\n1. Place your logo in `assets/media/` folder\n2. Use SVG format for best results (auto-adapts to any theme!)\n3. Add to front matter:\n\n```yaml\nbranding:\n  logo:\n    filename: \"your-logo.svg\"  # Must be in assets/media/\n    position: \"top-right\"\n    width: \"60px\"\n```\n\n**Tip:** SVGs with `fill=\"currentColor\"` automatically match theme colors!\n\n---\n\n## 📝 Title & Author Overlays\n\nShow presentation title and/or author on every slide:\n\n```yaml\nbranding:\n  title:\n    show: true\n    position: \"bottom-left\"\n    text: \"Short Title\"  # Optional: override long page title\n  \n  author:\n    show: true\n    position: \"bottom-right\"\n```\n\nAuthor is auto-detected from page front matter (`author:` or `authors:`).\n\n---\n\n## 📄 Footer Text\n\nAdd copyright, conference name, or any persistent text:\n\n```yaml\nbranding:\n  footer:\n    text: \"© 2024 Your Name · ICML 2024\"\n    position: \"bottom-center\"\n```\n\n**Tip:** Supports Markdown! Use `[Link](url)` for clickable links.\n\n---\n\n<!-- no-branding -->\n\n## 🔇 Hiding Branding Per-Slide\n\nSometimes you want a clean slide (title slides, full-screen images).\n\nAdd this comment at the **start** of your slide content:\n\n```markdown\n<!-- no-branding -->\n## My Clean Slide\n\nContent here...\n```\n\n☝️ **This slide uses `<!-- no-branding -->`** — notice no logo or overlays!\n\n---\n\n<!-- no-header -->\n\n## 🔇 Selective Hiding\n\nHide just the header (logo + title):\n\n```markdown\n<!-- no-header -->\n```\n\nOr just the footer (author + footer text):\n\n```markdown\n<!-- no-footer -->\n```\n\n☝️ **This slide uses `<!-- no-header -->`** — footer still visible below!\n\n---\n\n<!-- no-footer -->\n\n## ✅ Quick Reference\n\n| Comment | Hides |\n|---------|-------|\n| `<!-- no-branding -->` | Everything (logo, title, author, footer) |\n| `<!-- no-header -->` | Logo + Title overlay |\n| `<!-- no-footer -->` | Author + Footer text |\n\n☝️ **This slide uses `<!-- no-footer -->`** — logo still visible above!\n\n"
  },
  {
    "path": "templates/markdown-slides/content/slides/hugo-static-sites/index.md",
    "content": "---\ntitle: \"Introduction to Hugo & Static Sites\"\ndate: 2025-12-20\ndescription: \"Learn how static site generators like Hugo revolutionize web development\"\nauthors: [\"me\", \"Hugo Blox Team\"]\ntags: [\"hugo\", \"web-development\", \"tutorial\"]\ntopics: [\"static-sites\", \"hugo\", \"jamstack\"]\ncourse: \"CS 101: Web Development\"\nlecture_number: 5\ntype: slides\n\n# HugoBlox standard links structure\nlinks:\n  - type: video\n    url: \"https://youtube.com/watch?v=example\"\n    icon: hero/video-camera\n\nslides:\n  theme: white\n  highlight_style: github-light\n  diagram: true\n  reveal_options:\n    controls: true\n    progress: true\n    slideNumber: true\n    hash: true\n---\n\n# Static Site Generators\n\n### The Modern Way to Build Websites\n\n---\n\n## The Problem with Traditional CMS\n\n- **Security vulnerabilities** from databases\n- **Slow performance** due to server-side rendering\n- **Complex hosting** requirements\n- **Expensive scaling** for traffic spikes\n\n---\n\n## Enter Static Sites\n\n```mermaid\ngraph LR\n    A[Markdown Files] --> B[Static Generator]\n    B --> C[HTML/CSS/JS]\n    C --> D[CDN]\n    D --> E[Users]\n```\n\nNo database. No server. Just files.\n\n---\n\n## Why Hugo?\n\n| Feature | Hugo | Jekyll | Next.js |\n|---------|------|--------|---------|\n| Build Speed | ⚡ ~1ms/page | ~100ms/page | ~50ms/page |\n| Language | Go | Ruby | JavaScript |\n| Templates | Go HTML | Liquid | React |\n| Learning | Moderate | Easy | Complex |\n\n---\n\n## Hugo Architecture\n\n```go\n// Basic Hugo project structure\nmysite/\n├── config.yaml      // Site configuration\n├── content/         // Your Markdown content\n├── layouts/         // HTML templates\n├── static/          // Images, CSS, JS\n└── themes/          // Reusable themes\n```\n\n---\n\n## Content Organization\n\n```markdown\n---\ntitle: \"My Blog Post\"\ndate: 2025-01-01\ntags: [\"hugo\", \"tutorial\"]\n---\n\nYour content goes here in **Markdown**.\n```\n\n{{< fragment >}}Simple. Clean. Version-controlled.{{< /fragment >}}\n\n---\n\n## Template System\n\n```html\n{{ range .Pages }}\n  <article>\n    <h2>{{ .Title }}</h2>\n    <p>{{ .Summary }}</p>\n    <a href=\"{{ .Permalink }}\">Read more</a>\n  </article>\n{{ end }}\n```\n\n---\n\n## Build Performance\n\nHugo builds **thousands of pages in seconds**:\n\n{{< fragment >}}📄 10 pages → 50ms{{< /fragment >}}\n\n{{< fragment >}}📄 1,000 pages → 500ms{{< /fragment >}}\n\n{{< fragment >}}📄 10,000 pages → 5 seconds{{< /fragment >}}\n\n{{< fragment >}}**The fastest static site generator!**{{< /fragment >}}\n\n---\n\n## Deployment Options\n\n- **Netlify** - Git-based deploys\n- **Vercel** - Edge functions\n- **Cloudflare Pages** - Global CDN\n- **GitHub Pages** - Free hosting\n- **AWS S3** - Scalable storage\n\n---\n\n## When to Use Hugo\n\n✅ Documentation sites\n\n✅ Blogs and portfolios\n\n✅ Marketing landing pages\n\n✅ Conference websites\n\n✅ **Slide presentations!**\n\n---\n\n## Getting Started\n\n```bash\n# Install Hugo\nbrew install hugo\n\n# Create a new site\nhugo new site mysite\n\n# Add content\nhugo new posts/hello-world.md\n\n# Start dev server\nhugo server -D\n```\n\n---\n\n## Resources\n\n- **Documentation**: [gohugo.io/documentation](https://gohugo.io/documentation/)\n- **Themes**: [themes.gohugo.io](https://themes.gohugo.io/)\n- **Community**: [discourse.gohugo.io](https://discourse.gohugo.io/)\n- **Hugo Blox**: [hugoblox.com](https://hugoblox.com)\n\n---\n\n## Thank You!\n\n### Questions?\n\n**Start building faster websites today** 🚀\n\nNote:\nKey takeaways:\n1. Static sites are more secure, faster, and cheaper\n2. Hugo is the fastest static site generator\n3. Perfect for content-focused websites\n4. Easy to deploy on any CDN\n"
  },
  {
    "path": "templates/markdown-slides/content/slides/ml-research-overview/index.md",
    "content": "---\ntitle: \"Machine Learning Research Overview\"\ndate: 2025-12-25\ndescription: \"A research presentation on recent advances in deep learning and neural networks\"\nauthors: [\"me\", \"Dr. Example Researcher\"]\ntags: [\"machine-learning\", \"research\", \"data-science\"]\ntopics: [\"deep-learning\", \"transformers\", \"neural-networks\"]\nvenue: \"ICML 2025\"\nevent: \"International Conference on Machine Learning\"\ncitation: \"Researcher, E., Smith, J., & Doe, J. (2025). Machine Learning Research Overview. ICML 2025.\"\ntype: slides\n\n# HugoBlox standard links structure\nlinks:\n  - type: preprint\n    url: \"https://arxiv.org/abs/example\"\n    icon: hero/document-text\n  - type: code\n    url: \"https://github.com/example/ml-research\"\n    icon: hero/code-bracket\n\n# HugoBlox standard identifiers - auto-generates DOI link\nhugoblox:\n  ids:\n    doi: \"10.1234/example.doi\"\n\nslides:\n  theme: black\n  highlight_style: dracula\n  diagram: true\n  reveal_options:\n    controls: true\n    progress: true\n    slideNumber: true\n    hash: true\n---\n\n# Machine Learning\n## Research Overview 2025\n\nDr. Example Researcher\n\n---\n\n## Agenda\n\n1. Background & Motivation\n2. Neural Network Fundamentals\n3. Transformer Architecture\n4. Experimental Results\n5. Future Directions\n\n---\n\n## The Deep Learning Revolution\n\n```mermaid\ngraph TD\n    A[Traditional ML] --> B[Deep Learning]\n    B --> C[Computer Vision]\n    B --> D[NLP]\n    B --> E[Reinforcement Learning]\n    C --> F[Multimodal AI]\n    D --> F\n```\n\n---\n\n## Neural Network Basics\n\nA neuron computes:\n\n$$y = f\\left(\\sum_{i=1}^{n} w_i x_i + b\\right)$$\n\nWhere:\n- $x_i$ = inputs\n- $w_i$ = weights  \n- $b$ = bias\n- $f$ = activation function\n\n---\n\n## Activation Functions\n\n**ReLU (Rectified Linear Unit):**\n\n$$f(x) = \\max(0, x)$$\n\n**Sigmoid:**\n\n$$\\sigma(x) = \\frac{1}{1 + e^{-x}}$$\n\n**Softmax:**\n\n$$\\text{softmax}(x_i) = \\frac{e^{x_i}}{\\sum_j e^{x_j}}$$\n\n---\n\n## Transformer Architecture\n\n{{< fragment >}}**Self-Attention Mechanism:**{{< /fragment >}}\n\n{{< fragment >}}$$\\text{Attention}(Q, K, V) = \\text{softmax}\\left(\\frac{QK^T}{\\sqrt{d_k}}\\right)V$${{< /fragment >}}\n\n{{< fragment >}}Enables parallel processing of sequences{{< /fragment >}}\n\nNote:\n- Q = Query matrix\n- K = Key matrix\n- V = Value matrix\n- d_k = dimension of keys\n\n---\n\n## Model Architecture\n\n```python\nclass TransformerBlock(nn.Module):\n    def __init__(self, d_model, n_heads):\n        super().__init__()\n        self.attention = MultiHeadAttention(d_model, n_heads)\n        self.ffn = FeedForward(d_model)\n        self.norm1 = LayerNorm(d_model)\n        self.norm2 = LayerNorm(d_model)\n    \n    def forward(self, x):\n        x = x + self.attention(self.norm1(x))\n        x = x + self.ffn(self.norm2(x))\n        return x\n```\n\n---\n\n## Experimental Setup\n\n<div class=\"r-hstack\">\n\n<div style=\"flex: 1; padding-right: 1rem;\">\n\n### Dataset\n\n- **Size**: 1M samples\n- **Split**: 80/10/10\n- **Preprocessing**: Tokenization, normalization\n\n</div>\n\n<div style=\"flex: 1; padding-left: 1rem;\">\n\n### Training\n\n- **Optimizer**: AdamW\n- **Learning rate**: 3e-4\n- **Batch size**: 256\n- **Epochs**: 100\n\n</div>\n\n</div>\n\n---\n\n## Results\n\n| Model | Accuracy | F1 Score | Latency |\n|-------|----------|----------|---------|\n| Baseline | 82.3% | 0.81 | 45ms |\n| Ours (small) | 89.7% | 0.88 | 38ms |\n| **Ours (large)** | **94.2%** | **0.93** | 52ms |\n\n{{< fragment >}}**+11.9% improvement over baseline**{{< /fragment >}}\n\n---\n\n## Ablation Study\n\n| Component | Accuracy Drop |\n|-----------|---------------|\n| w/o Attention | -8.3% |\n| w/o FFN | -4.1% |\n| w/o LayerNorm | -2.7% |\n| w/o Residual | -6.5% |\n\n{{< fragment >}}Self-attention is the most critical component{{< /fragment >}}\n\n---\n\n## Loss Curve\n\nThe training converged smoothly:\n\n$$\\mathcal{L} = -\\sum_{i=1}^{N} y_i \\log(\\hat{y}_i)$$\n\n{{< fragment >}}Cross-entropy loss with label smoothing (α=0.1){{< /fragment >}}\n\n---\n\n{{< slide background-color=\"#1a365d\" >}}\n\n## Key Findings\n\n1. **Scaling matters**: Larger models = better results\n2. **Attention is critical**: Core to performance\n3. **Efficiency trade-offs**: Accuracy vs. latency\n4. **Transfer learning**: Pre-training helps\n\n---\n\n## Limitations\n\n- Computational requirements\n- Data dependency\n- Interpretability challenges\n- Environmental impact\n\n{{< fragment >}}Future work should address these concerns{{< /fragment >}}\n\n---\n\n## Future Directions\n\n```mermaid\ngraph LR\n    A[Current Work] --> B[Efficient Transformers]\n    A --> C[Multimodal Learning]\n    A --> D[Explainable AI]\n    B --> E[Real-world Deployment]\n    C --> E\n    D --> E\n```\n\n---\n\n## References\n\n1. Vaswani et al. (2017). *Attention is All You Need*\n2. Brown et al. (2020). *Language Models are Few-Shot Learners*\n3. Dosovitskiy et al. (2021). *An Image is Worth 16x16 Words*\n\n---\n\n## Thank You\n\n### Questions?\n\n📧 researcher@example.edu\n\n📄 Full paper: [arxiv.org/abs/example](https://arxiv.org)\n\nNote:\nContact information and resources for follow-up questions.\nOpen for collaboration on future research directions.\n"
  },
  {
    "path": "templates/markdown-slides/data/authors/me.yaml",
    "content": "schema: hugoblox/author/v1\nslug: me\nis_owner: true\nname:\n  display: Dr. Alex Johnson\n  given: Alex\n  family: Johnson\n  alternate: ''  # Example: 王伟\n  pronunciation: ''  # Example: Wáng Wěi\n  pronouns: he/him\npostnominals:\n  - PhD\n  - MIEEE\nstatus:\n  icon: \"☕️\"\nrole: Senior AI Research Scientist\nbio: |\n  Alex Johnson is a Senior AI Research Scientist at Meta AI. His research\n  has been published in top conferences like NeurIPS and ICML, with over\n  10,000 citations. Alex is passionate about pushing the boundaries of AI\n  while ensuring ethical development.\n\naffiliations:\n  - name: Meta AI\n    url: https://ai.meta.com/\n\nlinks:\n  - icon: at-symbol\n    url: mailto:alex.johnson@example.com\n    label: E-mail Me\n  - icon: brands/x\n    url: https://x.com/example\n  - icon: brands/github\n    url: https://github.com/example\n  - icon: brands/linkedin\n    url: https://www.linkedin.com/in/example/\n  - icon: academicons/google-scholar\n    url: https://scholar.google.com/citations?user=example\n  - icon: academicons/orcid\n    url: https://orcid.org/0000-0002-1825-0097\n\ninterests:\n  - Large Language Models\n  - Computer Vision\n  - Reinforcement Learning\n  - AI Ethics\n\neducation:\n  - degree: PhD Computer Science\n    institution: Stanford University\n    start: 2015-09-01\n    end: 2019-06-30\n    summary: |\n      Thesis on scaling laws for neural language models. Published 5 papers in NeurIPS and ICML.\n    button:\n      text: Download dissertation\n      url: /resume.pdf\n      icon: hero/arrow-down-tray\n  - degree: MS Computer Science\n    institution: Carnegie Mellon University\n    start: 2013-09-01\n    end: 2015-05-31\n  - degree: BS Computer Science\n    institution: MIT\n    start: 2009-09-01\n    end: 2013-05-31\n\nexperience:\n  - role: Senior AI Research Scientist\n    org: Meta AI\n    start: 2020-01-01\n    summary: |\n      Leading research on multimodal AI systems. Contributed to Llama 2 and other open-source models.\n    button:\n      text: View portfolio\n      url: /\n      icon: hero/arrow-down-tray\n  - role: AI Research Intern\n    org: OpenAI\n    start: 2019-06-01\n    end: 2019-12-31\n    summary: |\n      Worked on GPT-3 scaling. Co-authored paper on prompt engineering.\n\nskills:\n  - name: Technical Skills\n    items:\n      - label: Python\n        level: 5\n      - label: Machine Learning\n        level: 5\n      - label: Cloud Computing\n        level: 4\n  - name: Research & Communication\n    items:\n      - label: Academic Writing\n        level: 5\n      - label: Conference Presentations\n        level: 4\n      - label: Grant Proposals\n        level: 4\n\nlanguages:\n  - name: English\n    level: 5\n    label: Native\n  - name: Spanish\n    level: 4\n    label: Fluent\n\nawards:\n  - title: Best Paper Award\n    awarder: NeurIPS\n    date: \"2022-12-01\"\n    summary: Awarded for groundbreaking work on efficient training of large models.\n    icon: hero/trophy\n"
  },
  {
    "path": "templates/markdown-slides/go.mod",
    "content": "module github.com/HugoBlox/kit/templates/markdown-slides\n\ngo 1.19\n\nrequire (\n\tgithub.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652\n\tgithub.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c\n\tgithub.com/HugoBlox/kit/modules/slides v0.0.0-20260219151239-9965378d1853\n)\n"
  },
  {
    "path": "templates/markdown-slides/hugoblox.yaml",
    "content": "build:\n  hugo_version: '0.156.0'\ndeploy:\n  # Deployment target: github-pages, netlify, vercel, cloudflare, or none\n  host: 'github-pages'\ntemplate:\n  id: \"markdown-slides\"\n  name: \"Markdown Slides\"\n  description: \"A minimal template for hosting and sharing Markdown-based slide decks\"\n"
  },
  {
    "path": "templates/markdown-slides/netlify.toml",
    "content": "[build]\n  command = \"\"\"\n    set -e\n    echo \"=== Starting Markdown Slides build process ===\"\n    echo \"Node version: $(node --version)\"\n    echo \"pnpm version: $(pnpm --version)\"\n    echo \"Hugo version: $(hugo version)\"\n    \n    echo \"=== Installing dependencies ===\"\n    pnpm install --no-frozen-lockfile\n    \n    echo \"=== Running Hugo build ===\"\n    hugo --gc --minify -b $URL\n    \n    echo \"=== Running Pagefind indexing ===\"\n    pnpm run pagefind\n    \n    echo \"=== Build completed successfully ===\"\n  \"\"\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.156.0\"\n  GO_VERSION = \"1.21.5\"\n  NODE_VERSION = \"22\"\n  PNPM_FLAGS = \"--no-frozen-lockfile\"\n  HUGO_ENABLEGITINFO = \"true\"\n\n[context.production.environment]\n  HUGO_ENV = \"production\"\n\n[context.deploy-preview]\n  command = \"\"\"\n    set -e\n    pnpm install --no-frozen-lockfile\n    hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL\n    pnpm run pagefind\n  \"\"\"\n\n[context.branch-deploy]\n  command = \"\"\"\n    set -e\n    pnpm install --no-frozen-lockfile\n    hugo --gc --minify -b $DEPLOY_PRIME_URL\n    pnpm run pagefind\n  \"\"\"\n\n[[plugins]]\n  package = \"netlify-plugin-hugo-cache-resources\"\n"
  },
  {
    "path": "templates/markdown-slides/package.json",
    "content": "{\n  \"name\": \"hugo-blox-markdown-slides-starter\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"description\": \"Markdown Slides template - host and share slide decks built with Hugo Blox\",\n  \"scripts\": {\n    \"dev\": \"hugo server --disableFastRender\",\n    \"build\": \"hugo --minify && pnpm run pagefind\",\n    \"pagefind\": \"pagefind --site public\"\n  },\n  \"dependencies\": {\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.10\",\n    \"pagefind\": \"^1.4.0\",\n    \"preact\": \"^10.27.2\",\n    \"tailwindcss\": \"^4.1.12\"\n  }\n}\n"
  },
  {
    "path": "templates/resume/.devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"HugoBlox Codespace\",\n  \"image\": \"ghcr.io/HugoBlox/hugo-blox-dev:hugo0.156.0\",\n  \"updateContentCommand\": \"pnpm install --frozen-lockfile --prefer-offline\",\n  \"postCreateCommand\": \"pnpm --version && hugo version\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"ownable.ownable\"]\n    }\n  },\n  \"mounts\": [\"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume\"],\n  \"remoteUser\": \"vscode\",\n  \"forwardPorts\": [1313],\n  \"portsAttributes\": {\n    \"1313\": {\n      \"label\": \"Hugo Server\"\n    }\n  }\n}\n"
  },
  {
    "path": "templates/resume/.github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": "templates/resume/.github/workflows/build.yml",
    "content": "name: Build\n\nenv:\n  NODE_VERSION: '20'\n\non:\n  # Standalone trigger for PR validation\n  pull_request:\n    branches: ['main']\n  # Reusable workflow trigger - called by deploy.yml\n  workflow_call:\n    outputs:\n      artifact-id:\n        description: 'The ID of the uploaded artifact'\n        value: ${{ jobs.build.outputs.artifact-id }}\n  # Allow manual trigger for testing\n  workflow_dispatch:\n\n# Read-only permissions for security\npermissions:\n  contents: read\n\n# Prevent duplicate builds for the same PR\nconcurrency:\n  group: build-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    outputs:\n      artifact-id: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        # Fetch history for Hugo's .GitInfo and .Lastmod\n        fetch-depth: 0\n\n    - name: Setup Node.js\n      uses: actions/setup-node@v6\n      with:\n        node-version: ${{ env.NODE_VERSION }}\n\n    - name: Setup pnpm\n      if: hashFiles('package.json') != ''\n      uses: pnpm/action-setup@v4\n\n    - name: Get Hugo Version\n      id: hugo-version\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read hugo_version from hugoblox.yaml\n        VERSION=$(yq '.hugo_version // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        \n        # Fallback to a known stable version if not specified\n        DEFAULT_VERSION=\"0.154.5\"\n        VERSION=${VERSION:-$DEFAULT_VERSION}\n        \n        # Validate version format (basic check)\n        if [[ ! \"$VERSION\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then\n          echo \"::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION\"\n          VERSION=\"$DEFAULT_VERSION\"\n        fi\n        \n        echo \"HUGO_VERSION=$VERSION\" >> $GITHUB_ENV\n        echo \"Using Hugo version: $VERSION\"\n\n    - name: Install dependencies\n      run: |\n        # Install Tailwind CLI if package.json exists\n        if [ -f \"package.json\" ]; then\n          echo \"Installing Tailwind dependencies...\"\n          pnpm install --no-frozen-lockfile || npm install\n        fi\n\n    - name: Setup Hugo\n      uses: peaceiris/actions-hugo@v3\n      with:\n        hugo-version: ${{ env.HUGO_VERSION }}\n        extended: true\n\n    # Cache dependencies (Go modules, node_modules) - stable, rarely changes\n    - uses: actions/cache@v4\n      with:\n        path: |\n          /tmp/hugo_cache_runner/\n          node_modules/\n          modules/*/node_modules/\n        key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json',\n          '**/pnpm-lock.yaml') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-deps-\n\n    # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change\n    - uses: actions/cache@v4\n      with:\n        path: resources/\n        key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*',\n          'hugo.yaml', 'package.json') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-resources-\n\n    - name: Build with Hugo\n      env:\n        HUGO_ENVIRONMENT: production\n        HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }}\n      run: |\n        echo \"Hugo Cache Dir: $(hugo config | grep cachedir)\"\n        hugo --minify\n\n    - name: Generate Pagefind search index (if applicable)\n      run: |\n        # Check if site uses Pagefind search\n        if [ -f \"package.json\" ] && grep -q \"pagefind\" package.json; then\n          pnpm run pagefind || npx pagefind --site \"public\"\n        fi\n\n    - name: Upload artifact\n      id: upload\n      uses: actions/upload-pages-artifact@v4\n      with:\n        path: ./public\n"
  },
  {
    "path": "templates/resume/.github/workflows/deploy.yml",
    "content": "name: Deploy website to GitHub Pages\n\non:\n  # Trigger the workflow every time you push to the `main` branch\n  push:\n    branches: ['main']\n  # Allows you to run this workflow manually from the Actions tab on GitHub\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: 'pages'\n  cancel-in-progress: false\n\njobs:\n  # Check deployment configuration\n  config:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    outputs:\n      deploy-host: ${{ steps.check.outputs.host }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        sparse-checkout: hugoblox.yaml\n        sparse-checkout-cone-mode: false\n\n    - name: Check deploy host\n      id: check\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read deploy.host from hugoblox.yaml, default to github-pages\n        HOST=$(yq '.deploy.host // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        HOST=${HOST:-github-pages}\n        \n        # Validate known hosts\n        if [[ ! \"$HOST\" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then\n          echo \"::warning::Unknown deploy host '$HOST', defaulting to github-pages\"\n          HOST=\"github-pages\"\n        fi\n        \n        echo \"host=$HOST\" >> $GITHUB_OUTPUT\n        echo \"Deployment target: $HOST\"\n\n  # Build website using reusable workflow (always runs for CI)\n  build:\n    needs: config\n    if: github.repository_owner != 'HugoBlox'\n    uses: ./.github/workflows/build.yml\n    secrets: inherit\n\n  # Deploy website to GitHub Pages hosting (only if configured)\n  deploy:\n    needs: [config, build]\n    if: needs.config.outputs.deploy-host == 'github-pages'\n    # Grant GITHUB_TOKEN the permissions required to make a Pages deployment\n    permissions:\n      pages: write # to deploy to Pages\n      id-token: write # to verify the deployment originates from an appropriate source\n    # Deploy to the github-pages environment\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    steps:\n    - name: Deploy to GitHub Pages\n      id: deployment\n      uses: actions/deploy-pages@v4\n"
  },
  {
    "path": "templates/resume/.github/workflows/upgrade.yml",
    "content": "name: Upgrade HugoBlox\n\non:\n  workflow_dispatch:\n    inputs:\n      version_type:\n        description: 'Upgrade to version'\n        required: true\n        default: 'Stable'\n        type: choice\n        options:\n        - Stable\n        - Beta (Preview)\n  schedule:\n    # Run at 05:00 on Monday\n    - cron: '0 5 * * 1'\n\npermissions:\n  contents: write\n  pull-requests: write\n\n# Prevent duplicate upgrade runs\nconcurrency:\n  group: upgrade-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  upgrade:\n    name: Upgrade\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 15\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v6\n        with:\n          node-version: '22'\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n        with:\n          package_json_path: ./package.json\n          run_install: false\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: '1.23'\n\n      - name: Setup Hugo\n        uses: peaceiris/actions-hugo@v3\n        with:\n          hugo-version: 'latest'\n          extended: true\n\n      - name: Run Upgrade CLI\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # Use manual input or default to stable for scheduled runs\n          VERSION_TYPE: ${{ inputs.version_type || 'Stable' }}\n        run: |\n          FLAGS=\"--yes --ci\"\n          \n          if [ \"$VERSION_TYPE\" == \"Beta (Preview)\" ]; then\n            FLAGS=\"$FLAGS --canary\"\n          fi\n          \n          echo \"Running upgrade with flags: $FLAGS\"\n          pnpm dlx hugoblox@latest upgrade $FLAGS\n\n\n      - name: Create Pull Request\n        uses: peter-evans/create-pull-request@v6\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          commit-message: \"chore(deps): upgrade hugoblox modules\"\n          title: \"⬆️ Upgrade HugoBlox Modules\"\n          body: |\n            This PR upgrades the [HugoBlox](https://hugoblox.com) modules to the latest version.\n            \n            **Changes:**\n            - Updated Hugo Modules (go.mod/go.sum)\n            - Applied automatic migrations (if any)\n            \n            **Verification:**\n            - [ ] Check the Deploy Preview to ensure everything looks correct.\n            - [ ] Merge this PR to apply the updates.\n          branch: \"chore/upgrade-hugoblox-${{ github.run_id }}\"\n          delete-branch: true\n          base: main\n          labels: |\n            dependencies\n            automated-pr\n"
  },
  {
    "path": "templates/resume/.gitignore",
    "content": "# ============================================================================\n# Hugo Site .gitignore\n# ============================================================================\n\n# ============================================================================\n# Hugo Build Artifacts\n# ============================================================================\n\n# Generated site output\npublic/\n\n# Hugo resources (processed assets)\nresources/\n\n# Hugo build lock\n.hugo_build.lock\n\n# Hugo stats\nhugo_stats.json\n\n# Auto-generated JS config\n**/assets/jsconfig.json\n\n# ============================================================================\n# Node.js & Package Managers\n# ============================================================================\n\n# Dependencies\nnode_modules/\n\n# ============================================================================\n# Environment & Configuration\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# ============================================================================\n# Generated Content\n# ============================================================================\n\n# Pagefind search index\npagefind/\nstatic/pagefind/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n\n# Windows\nThumbs.db\nDesktop.ini\n\n# Linux\n*~\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n*.log\nnpm-debug.log*\n"
  },
  {
    "path": "templates/resume/.vscode/extensions.json",
    "content": "{\n  \"recommendations\": [\"ownable.ownable\"]\n}\n"
  },
  {
    "path": "templates/resume/LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2023-present George Cushen (https://georgecushen.com/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in 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": "templates/resume/README.md",
    "content": "# [Hugo Résumé Theme](https://github.com/HugoBlox/hugo-theme-resume)\n\n[![Screenshot](./.github/preview.png)](https://hugoblox.com/templates/)\n\nThe Hugo **Résumé Template** empowers you to easily create your job-winning online résumé, showcase your expertise, and share your social profiles to grow your audience.\n\n️**Trusted by 250,000+ researchers, educators, and students.** Highly customizable via the integrated **no-code, block-based website builder**, making every site truly personalized ⭐⭐⭐⭐⭐\n\n[![Get Started](https://img.shields.io/badge/-Get%20started-ff4655?style=for-the-badge)](https://hugoblox.com/templates/)\n[![Discord](https://img.shields.io/discord/722225264733716590?style=for-the-badge)](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)  \n[![Twitter Follow](https://img.shields.io/twitter/follow/MakeOwnable?label=Follow%20on%20Twitter)](https://x.com/MakeOwnable)\n\n[Check out the latest demo](https://hugo-resume-theme.netlify.app/) of what you'll get in less than 10 minutes, or [view the showcase](https://hugoblox.com/creators/).\n\nThe integrated [**Hugo Blox**](https://hugoblox.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs.\n\n- 👉 [**Get Started**](https://hugoblox.com/templates/)\n- 📚 [View the **documentation**](https://docs.hugoblox.com/)\n- 💬 [Chat with the **HugoBlox Kit community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)\n- ⬇️ **Automatically import citations from BibTeX** with the [Hugo Academic CLI](https://github.com/GetRD/academic-file-converter)\n- 🐦 Share your new site with the community: [@MakeOwnable](https://x.com/MakeOwnable)  [#MadeWithHugoBlox](https://x.com/search?q=%23MadeWithHugoBlox&src=typed_query)\n- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)\n- 🚀 [Contribute improvements](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/HugoBlox/kit/issues)\n- ⬆️ **Updating?** View the [Update Guide](https://docs.hugoblox.com/) and [Release Notes](https://github.com/HugoBlox/kit/releases)\n\n## We ask you, humbly, to support this open source movement\n\nToday we ask you to defend the open source independence of the HugoBlox Kit and themes 🐧\n\nWe're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way.\n\n### [❤️ Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://github.com/sponsors/gcushen)\n\n## Demo credits\n\n- [Unsplash](https://unsplash.com/) images\n"
  },
  {
    "path": "templates/resume/assets/media/icons/custom/.gitkeep",
    "content": ""
  },
  {
    "path": "templates/resume/config/_default/hugo.yaml",
    "content": "# Configuration of Hugo\n# Guide: https://docs.hugoblox.com/tutorial/\n# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings\n# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/\n\n# Website name (set in params.yaml under hugoblox.branding.name)\ntitle: ''\nbaseURL: 'https://example.com/' # Website URL\n\n############################\n## LANGUAGE\n############################\n\ndefaultContentLanguage: en\nhasCJKLanguage: false\ndefaultContentLanguageInSubdir: false\nremovePathAccents: true\n\n############################\n## ADVANCED\n############################\n\nbuild:\n  writeStats: true\nenableGitInfo: false\nsummaryLength: 30\npagination:\n  pagerSize: 10\nenableEmoji: true\nenableRobotsTXT: true\nfootnotereturnlinkcontents: <sup>^</sup>\nignoreFiles: [\".ipynb_checkpoints$\", \"\\\\.Rmd$\", \"\\\\.Rmarkdown$\", \"_cache$\"]\ndisableAliases: true\noutputs:\n  home: [HTML, RSS, headers, redirects]\n  section: [HTML, RSS]\nimaging:\n  resampleFilter: lanczos\n  quality: 90\n  anchor: smart\n  hint: picture\ntimeout: 600000\ntaxonomies:\n  author: authors\nmarkup:\n  _merge: deep\n  highlight:\n    lineNos: false\nsecurity:\n  _merge: deep\nsitemap:\n  _merge: deep\n"
  },
  {
    "path": "templates/resume/config/_default/languages.yaml",
    "content": "# Languages\n#   Create a section for each of your site's languages.\n#   Documentation: https://docs.hugoblox.com/reference/language/\n\n# Default language\nen:\n  languageCode: en-us\n  # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.\n  #contentDir: content/en\n\n# Uncomment the lines below to configure your website in a second language.\n#zh:\n#  languageCode: zh-Hans\n#  contentDir: content/zh\n#  title: Chinese website title...\n#  params:\n#    description: Site description in Chinese...\n#  menu:\n#    main:\n#      - name: 传\n#        url: '#about'\n#        weight: 1\n"
  },
  {
    "path": "templates/resume/config/_default/menus.yaml",
    "content": "# Navigation Links\n#   To link a homepage widget, specify the URL as a hash `#` followed by the filename of the\n  #     desired widget in your `content/home/` folder.\n  #   The weight parameter defines the order that the links will appear in.\n\n# main:\n#   - name: Home\n#     url: /\n#     weight: 10\n  # - name: Blog\n  #   url: blog/\n  #   weight: 20\n  # - name: Uses\n  #   url: uses/\n  #   weight: 30\n"
  },
  {
    "path": "templates/resume/config/_default/module.yaml",
    "content": "############################\n## HUGO MODULES\n## Install or uninstall themes and plugins here.\n## Docs: https://gohugo.io/hugo-modules/\n############################\n\nimports:\n  - path: github.com/HugoBlox/kit/modules/integrations/netlify\n  - path: github.com/HugoBlox/kit/modules/blox\n\n# Install any Hugo Blox within the `hugo-blox/blox/` folder\nmounts:\n  - source: hugo-blox/blox/community\n    target: layouts/_partials/blox/community/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox/all-access\n    target: layouts/_partials/blox/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox\n    target: assets/dist/community/blox/\n    files:\n      - '**.css'\n  - source: layouts\n    target: layouts\n  - source: assets\n    target: assets\n"
  },
  {
    "path": "templates/resume/config/_default/params.yaml",
    "content": "# ══════════════════════════════════════════════════════════════════════════════\n# HUGO BLOX CONFIGURATION\n# Schema: hugoblox.com/schema/v2\n# Tutorial: https://docs.hugoblox.com/tutorial/\n# Documentation: https://docs.hugoblox.com/\n# ══════════════════════════════════════════════════════════════════════════════\nhugoblox:\n  schema: \"2.0\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # IDENTITY\n  # Site-level branding (for people/profiles, use the author system in content/authors/)\n  # ────────────────────────────────────────────────────────────────────────────\n  identity:\n    # Site name - shown in navbar, footer, copyright, and browser title by default\n    name: \"Your Name\"\n    # Legal entity for copyright notices (defaults to name if not set)\n    organization: \"\"\n    # Schema.org type for structured data\n    type: person                        # person | organization | local_business\n    # Short tagline displayed on your site\n    tagline: \"\"\n    # Site meta description for search engines and social sharing\n    description: \"The highly-customizable Hugo Academic theme powered by HugoBlox Kit. Easily create your personal academic website.\"\n    # Social accounts (used for meta tags like Twitter Cards)\n    social:\n      twitter: \"MakeOwnable\"              # Twitter/X handle for Twitter Cards (without @)\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # THEME\n  # Color and visual design system\n  # ────────────────────────────────────────────────────────────────────────────\n  theme:\n    # Mode: 'light', 'dark', or 'system' (follows OS preference)\n    mode: system\n    # Theme pack: name from data/themes/ or { light: \"x\", dark: \"y\" } for mix-and-match\n    pack: \"default\"\n    # Optional: Override theme pack colors\n    colors:\n      primary: \"\"                       # Tailwind palette name or hex (e.g., \"indigo\" or \"#6366f1\")\n      secondary: \"\"\n      neutral: \"\"                       # Affects gray utilities (text-gray-*, bg-gray-*)\n    # Optional: Mode-specific color overrides\n    colors_light: {}\n    colors_dark: {}\n    # Optional: Semantic surface color overrides\n    surfaces:\n      background: \"\"\n      foreground: \"\"\n      header:\n        background: \"\"\n        foreground: \"\"\n      footer:\n        background: \"\"\n        foreground: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # TYPOGRAPHY\n  # Font and text sizing\n  # ────────────────────────────────────────────────────────────────────────────\n  typography:\n    # Theme pack: name from data/fonts/\n    pack: \"modern\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LAYOUT\n  # Spacing and shape tokens\n  # ────────────────────────────────────────────────────────────────────────────\n  layout:\n    # Border radius: 'none', 'sm', 'md', 'lg', or 'full'\n    radius: \"md\"\n    # Spacing density: 'compact', 'comfortable', or 'spacious'\n    spacing: \"comfortable\"\n    # Avatar shape in author profiles\n    avatar_shape: circle                # circle | square | rounded\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # HEADER\n  # Site header and navigation bar\n  # ────────────────────────────────────────────────────────────────────────────\n  header:\n    enable: true\n    # Header style variant\n    style: floating-theme-toggler                       # navbar | navbar-simple | minimal\n    # Stick to top on scroll\n    sticky: true\n    # Menu alignment\n    align: center                       # left | center | right\n    # Feature toggles\n    search: false\n    theme_toggle: true\n    theme_picker: true\n    language_switcher: true\n    # Call-to-action button\n    cta:\n      enable: true\n      text: \"Download Résumé\"\n      url: \"uploads/resume.pdf\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # FOOTER\n  # Site footer\n  # ────────────────────────────────────────────────────────────────────────────\n  footer:\n    # Footer style variant\n    style: minimal                      # minimal | columns | centered\n    language_switcher: true\n    # Custom footer text (HTML supported)\n    text: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COPYRIGHT\n  # Legal notices and licensing\n  # ────────────────────────────────────────────────────────────────────────────\n  copyright:\n    # Copyright notice - supports {year}, {name}, {license} placeholders\n    notice: \"© {year} {name}. This work is licensed under {license}\"\n    license:\n      type: cc                          # cc | custom\n      allow_derivatives: false\n      share_alike: true\n      allow_commercial: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEO\n  # Search engine optimization - overrides and technical settings\n  # ────────────────────────────────────────────────────────────────────────────\n  seo:\n    # Browser tab title override (defaults to identity.name if not set)\n    title: \"\"\n    # For local_business identity type only\n    location:\n      address:\n        street: \"\"\n        city: \"\"\n        region: \"\"\n        postal_code: \"\"\n        country: \"\"\n      coordinates:\n        latitude: null\n        longitude: null\n      phone: \"\"\n    # AI/LLM crawler guidance (llms.txt)\n    ai:\n      allow:\n        - /\n      disallow: []\n      note: \"Guidance for AI crawlers - customize to match your public content.\"\n      contact: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # CONTENT\n  # Content rendering and behavior\n  # ────────────────────────────────────────────────────────────────────────────\n  content:\n    # Math rendering\n    math:\n      enable: false\n    # Table of contents\n    toc:\n      enable: true\n    # Reading time estimates\n    reading_time:\n      enable: true\n    # Academic citations\n    citations:\n      style: apa                        # apa | mla | chicago | ieee\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEARCH\n  # Site search\n  # ────────────────────────────────────────────────────────────────────────────\n  search:\n    enable: true\n    # Trending/suggested search terms\n    suggestions: []\n    # Quick action shortcuts in search modal\n    quick_actions: []\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COMMENTS\n  # User comments system\n  # ────────────────────────────────────────────────────────────────────────────\n  comments:\n    enable: false\n    provider: \"\"                        # giscus | disqus\n    giscus:\n      repo: \"\"\n      repo_id: \"\"\n      category: \"\"\n      category_id: \"\"\n    disqus:\n      shortname: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # ANALYTICS\n  # Traffic and behavior analytics\n  # ────────────────────────────────────────────────────────────────────────────\n  analytics:\n    google:\n      measurement_id: \"\"                # Google Analytics 4: G-XXXXXXXXXX\n    google_tag_manager:\n      container_id: \"\"                  # GTM-XXXXXXX\n    plausible:\n      domain: \"\"\n    fathom:\n      site_id: \"\"\n    pirsch:\n      site_id: \"\"\n    clarity:\n      project_id: \"\"\n    baidu:\n      site_id: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # VERIFICATION\n  # Search engine site verification codes\n  # ────────────────────────────────────────────────────────────────────────────\n  verification:\n    google: \"\"\n    bing: \"\"\n    baidu: \"\"\n    yandex: \"\"\n    pinterest: \"\"\n    naver: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # REPOSITORY\n  # Source code repository for \"Edit this page\" links\n  # ────────────────────────────────────────────────────────────────────────────\n  repository:\n    enable: false\n    url: \"\"                             # e.g., https://github.com/username/repo\n    branch: main\n    content_dir: content\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LOCALE\n  # Regional formatting preferences\n  # ────────────────────────────────────────────────────────────────────────────\n  locale:\n    date_format: \"Jan 2, 2006\"          # Go time format\n    time_format: \"3:04 PM\"\n    address_format: en-us\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SECURITY\n  # Security headers and policies (requires Netlify integration)\n  # ────────────────────────────────────────────────────────────────────────────\n  security:\n    csp:\n      policy: \"\"\n      report_only: false\n    frame_options: allow                 # deny | sameorigin | allow - allow enables iframe embedding\n    permissions_policy: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PRIVACY\n  # Privacy and compliance features\n  # ────────────────────────────────────────────────────────────────────────────\n  privacy:\n    enable: false\n    anonymize_analytics: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # DEBUG\n  # Development and debugging (hidden in production)\n  # ────────────────────────────────────────────────────────────────────────────\n  debug:\n    enable: false\n    hud:\n      position: bottom-left             # top-left | top-right | bottom-left | bottom-right\n      opacity: 1.0\n    export_logs: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PREMIUM\n  # Premium features and creator program (affiliates)\n  # ────────────────────────────────────────────────────────────────────────────\n  pro:\n    # Hide \"Powered by HugoBlox\" attribution\n    # Requires: HugoBlox Premium to support HugoBlox via alternative means\n    # Note: Even with Premium, you can keep this false to support open source!\n    # Get Premium: https://hugoblox.com/premium\n    hide_attribution: false\n    \n    # Affiliate referral code for rewards program\n    # Join affiliate program: https://hugoblox.com/affiliates\n    affiliate_code: \"\"\n"
  },
  {
    "path": "templates/resume/content/_index.md",
    "content": "---\ntitle: 'Home'\ndate: 2023-10-24\ntype: landing\n\ndesign:\n  # Default section spacing\n  spacing: '4rem'\n\n# Note: `username` refers to the user's folder name in `content/authors/`\n\n# Page sections\nsections:\n  - block: biography\n    content:\n      username: me\n      # Show a call-to-action button under your biography? (optional)\n      button:\n        text: Download Résumé\n        url: uploads/resume.pdf\n    design:\n      show_status: false\n      banner:\n        # Upload your cover image to the `assets/media/` folder and reference it here\n        filename: kalen-emsley-Bkci_8qcdvQ-unsplash.jpg\n      biography:\n        # Customize the style of your biography text\n        style: 'text-align: justify; font-size: 0.8em;'\n      # Avatar customization\n      avatar:\n        size: large # Options: small (150px), medium (200px, default), large (320px), xl (400px), xxl (500px)\n        shape: rounded # Options: circle (default), square, rounded\n  - block: experience\n    content:\n      username: me\n    design:\n      # Hugo date format\n      date_format: 'January 2006'\n      # Education or Experience section first?\n      is_education_first: false\n  - block: skills\n    content:\n      title: Skills & Hobbies\n      username: me\n  - block: awards\n    content:\n      title: Awards\n      username: me\n  - block: languages\n    content:\n      title: Languages\n      username: me\n---\n"
  },
  {
    "path": "templates/resume/content/authors/_index.md",
    "content": "---\n# To publish author profile pages, remove all the `build` and `cascade` settings below.\nbuild:\n  render: never\ncascade:\n  build:\n    render: never\n    list: always\n---\n"
  },
  {
    "path": "templates/resume/data/authors/me.yaml",
    "content": "schema: hugoblox/author/v1\nslug: me\nis_owner: true\nname:\n  display: 吳健雄\n  given: Shiung Wu\n  family: Chien\n  pronunciation: Chien Shiung Wu\n  pronouns: she/her\nstatus:\n  icon: \"☕️\"\nrole: Director of Cloud Infrastructure\nbio: >\n  I am currently Director of Cloud Infrastructure at GenCoin where I am leading\n  teams on edge computing, deep sea data center architecture, and hivemind optimization.\naffiliations:\n  - name: GenCoin\n    url: https://www.example.com/\nlinks:\n  - icon: at-symbol\n    url: mailto:your-email@example.com\n    label: E-mail Me\n  - icon: brands/x\n    url: https://x.com/MakeOwnable\n  - icon: brands/github\n    url: https://github.com/gcushen\n  - icon: brands/linkedin\n    url: https://www.linkedin.com/\n  - icon: brands/instagram\n    url: https://www.instagram.com/\neducation:\n  - degree: PhD Artificial Intelligence\n    institution: Stanford University\n    start: 2016-01-01\n    end: 2020-12-31\n    summary: |\n      Thesis on _Why LLMs are awesome_. Supervised by [Prof Joe Smith](https://example.com). Presented papers at 5 IEEE conferences with the contributions being published in 2 Springer journals.\n    button:\n      text: 'Read Thesis'\n      url: 'https://example.com'\n  - degree: MEng Artificial Intelligence\n    institution: Massachusetts Institute of Technology\n    start: 2016-01-01\n    end: 2020-12-31\n    summary: |\n      GPA: 3.8/4.0\n\n      Courses included:\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n  - degree: BSc Artificial Intelligence\n    institution: Massachusetts Institute of Technology\n    start: 2016-01-01\n    end: 2020-12-31\n    summary: |\n      GPA: 3.4/4.0\n\n      Courses included:\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\nexperience:\n  - role: Director of Cloud Infrastructure\n    org: GenCoin\n    start: 2021-01-01\n    summary: |\n      Responsibilities include:\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n  - role: Backend Software Engineer\n    org: X\n    start: 2016-01-01\n    end: 2020-12-31\n    summary: |\n      Responsibilities include:\n      - Migrated infrastructure to a new data center\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\n      - lorem ipsum dolor sit amet, consectetur adipiscing elit\nskills:\n  - name: Technical Skills\n    items:\n      - label: Python\n        level: 4\n      - label: RStudio\n        level: 5\n      - label: PyTorch\n        level: 2\n  - name: Hobbies\n    color: '#eeac02'\n    color_border: '#f0bf23'\n    items:\n      - label: Hiking\n        level: 3\n      - label: Cats\n        level: 5\n      - label: Photography\n        level: 4\nlanguages:\n  - name: English\n    level: 5\n  - name: Chinese\n    level: 4\n  - name: Portuguese\n    level: 1\nawards:\n  - title: Neural Networks and Deep Learning\n    url: https://www.coursera.org/learn/neural-networks-deep-learning\n    date: '2023-11-25'\n    awarder: Coursera\n    icon: brands/coursera\n    summary: |\n      I studied the foundational concept of neural networks and deep learning. By the end, I was familiar with the significant technological trends driving the rise of deep learning; build, train, and apply fully connected deep neural networks; implement efficient (vectorized) neural networks; identify key parameters in a neural network’s architecture; and apply deep learning to your own applications.\n  - title: Blockchain Fundamentals\n    url: https://www.edx.org/professional-certificate/uc-berkeleyx-blockchain-fundamentals\n    date: '2023-07-01'\n    awarder: edX\n    icon: brands/edx\n    summary: |\n      Learned:\n      - Synthesize your own blockchain solutions\n      - Gain an in-depth understanding of the specific mechanics of Bitcoin\n      - Understand Bitcoin’s real-life applications and learn how to attack and destroy Bitcoin, Ethereum, smart contracts and Dapps, and alternatives to Bitcoin’s Proof-of-Work consensus algorithm\n  - title: 'Object-Oriented Programming in R'\n    url: https://www.datacamp.com/courses/object-oriented-programming-with-s3-and-r6-in-r\n    certificate_url: https://www.datacamp.com\n    date: '2023-01-21'\n    awarder: datacamp\n    icon: brands/datacamp\n    summary: |\n      Object-oriented programming (OOP) lets you specify relationships between functions and the objects that they can act on, helping you manage complexity in your code. This is an intermediate level course, providing an introduction to OOP, using the S3 and R6 systems. S3 is a great day-to-day R programming tool that simplifies some of the functions that you write. R6 is especially useful for industry-specific analyses, working with web APIs, and building GUIs.\n"
  },
  {
    "path": "templates/resume/go.mod",
    "content": "module github.com/HugoBlox/kit/templates/resume\n\ngo 1.19\n\nrequire (\n\tgithub.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652\n\tgithub.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c\n)\n"
  },
  {
    "path": "templates/resume/hugoblox.yaml",
    "content": "build:\n  hugo_version: '0.156.0'\ndeploy:\n  # Deployment target: github-pages, netlify, vercel, cloudflare, or none\n  host: 'github-pages'\ntemplate:\n  id: \"resume\"\n  name: \"Resume\"\n"
  },
  {
    "path": "templates/resume/netlify.toml",
    "content": "[build]\n  command = \"\"\"\n    set -e\n    echo \"=== Starting Blog build process ===\"\n    echo \"Node version: $(node --version)\"\n    echo \"pnpm version: $(pnpm --version)\"\n    echo \"Hugo version: $(hugo version)\"\n    echo \"Go version: $(go version || echo 'Go not available')\"\n    \n    echo \"=== Installing dependencies ===\"\n    pnpm install --verbose --no-frozen-lockfile\n    \n    echo \"=== Running Hugo build ===\"\n    hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings\n    \n    echo \"=== Running Pagefind indexing ===\"\n    pnpm run pagefind\n    \n    echo \"=== Build completed successfully ===\"\n  \"\"\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.156.0\"\n  GO_VERSION = \"1.21.5\"\n  NODE_VERSION = \"22\"\n  # Ensure Netlify's implicit install step does not enforce frozen lockfiles\n  PNPM_FLAGS = \"--no-frozen-lockfile\"\n  HUGO_ENABLEGITINFO = \"true\"\n  HUGO_LOG_I18N_WARNINGS = \"true\"\n  HUGO_LOG_WARNINGS = \"true\"\n  FORCE_COLOR = \"1\"\n  PNPM_LOG_LEVEL = \"debug\"\n\n[context.production.environment]\n  HUGO_ENV = \"production\"\n\n[context.deploy-preview]\n  command = \"\"\"\n    set -e\n    echo \"=== Deploy Preview Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[context.branch-deploy]\n  command = \"\"\"\n    set -e\n    echo \"=== Branch Deploy Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[[plugins]]\n  package = \"netlify-plugin-hugo-cache-resources\"\n  [plugins.inputs]\n    debug = true\n"
  },
  {
    "path": "templates/resume/package.json",
    "content": "{\n  \"name\": \"hugo-blox-resume-starter\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"description\": \"Resume starter template for Hugo Blox with Tailwind CSS v4\",\n  \"scripts\": {\n    \"dev\": \"hugo server --disableFastRender\",\n    \"build\": \"hugo --minify && pnpm run pagefind\",\n    \"pagefind\": \"pagefind --site public\"\n  },\n  \"dependencies\": {\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.10\",\n    \"pagefind\": \"^1.4.0\",\n    \"preact\": \"^10.27.2\",\n    \"tailwindcss\": \"^4.1.12\"\n  }\n}\n"
  },
  {
    "path": "templates/startup-landing-page/.devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"HugoBlox Codespace\",\n  \"image\": \"ghcr.io/HugoBlox/hugo-blox-dev:hugo0.156.0\",\n  \"updateContentCommand\": \"pnpm install --frozen-lockfile --prefer-offline\",\n  \"postCreateCommand\": \"pnpm --version && hugo version\",\n  \"customizations\": {\n    \"vscode\": {\n      \"extensions\": [\"ownable.ownable\"]\n    }\n  },\n  \"mounts\": [\"source=pnpm-store,target=/home/vscode/.local/share/pnpm,type=volume\"],\n  \"remoteUser\": \"vscode\",\n  \"forwardPorts\": [1313],\n  \"portsAttributes\": {\n    \"1313\": {\n      \"label\": \"Hugo Server\"\n    }\n  }\n}\n"
  },
  {
    "path": "templates/startup-landing-page/.github/FUNDING.yml",
    "content": "github: gcushen\ncustom: https://hugoblox.com/sponsor/\n"
  },
  {
    "path": "templates/startup-landing-page/.github/workflows/build.yml",
    "content": "name: Build\n\nenv:\n  NODE_VERSION: '20'\n\non:\n  # Standalone trigger for PR validation\n  pull_request:\n    branches: ['main']\n  # Reusable workflow trigger - called by deploy.yml\n  workflow_call:\n    outputs:\n      artifact-id:\n        description: 'The ID of the uploaded artifact'\n        value: ${{ jobs.build.outputs.artifact-id }}\n  # Allow manual trigger for testing\n  workflow_dispatch:\n\n# Read-only permissions for security\npermissions:\n  contents: read\n\n# Prevent duplicate builds for the same PR\nconcurrency:\n  group: build-${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    outputs:\n      artifact-id: ${{ steps.upload.outputs.artifact-id }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        # Fetch history for Hugo's .GitInfo and .Lastmod\n        fetch-depth: 0\n\n    - name: Setup Node.js\n      uses: actions/setup-node@v6\n      with:\n        node-version: ${{ env.NODE_VERSION }}\n\n    - name: Setup pnpm\n      if: hashFiles('package.json') != ''\n      uses: pnpm/action-setup@v4\n\n    - name: Get Hugo Version\n      id: hugo-version\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read hugo_version from hugoblox.yaml\n        VERSION=$(yq '.hugo_version // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        \n        # Fallback to a known stable version if not specified\n        DEFAULT_VERSION=\"0.154.5\"\n        VERSION=${VERSION:-$DEFAULT_VERSION}\n        \n        # Validate version format (basic check)\n        if [[ ! \"$VERSION\" =~ ^[0-9]+\\.[0-9]+\\.[0-9]+$ ]]; then\n          echo \"::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION\"\n          VERSION=\"$DEFAULT_VERSION\"\n        fi\n        \n        echo \"HUGO_VERSION=$VERSION\" >> $GITHUB_ENV\n        echo \"Using Hugo version: $VERSION\"\n\n    - name: Install dependencies\n      run: |\n        # Install Tailwind CLI if package.json exists\n        if [ -f \"package.json\" ]; then\n          echo \"Installing Tailwind dependencies...\"\n          pnpm install --no-frozen-lockfile || npm install\n        fi\n\n    - name: Setup Hugo\n      uses: peaceiris/actions-hugo@v3\n      with:\n        hugo-version: ${{ env.HUGO_VERSION }}\n        extended: true\n\n    # Cache dependencies (Go modules, node_modules) - stable, rarely changes\n    - uses: actions/cache@v4\n      with:\n        path: |\n          /tmp/hugo_cache_runner/\n          node_modules/\n          modules/*/node_modules/\n        key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json',\n          '**/pnpm-lock.yaml') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-deps-\n\n    # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change\n    - uses: actions/cache@v4\n      with:\n        path: resources/\n        key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*',\n          'hugo.yaml', 'package.json') }}\n        restore-keys: |\n          ${{ runner.os }}-hugo-resources-\n\n    - name: Build with Hugo\n      env:\n        HUGO_ENVIRONMENT: production\n        HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }}\n      run: |\n        echo \"Hugo Cache Dir: $(hugo config | grep cachedir)\"\n        hugo --minify\n\n    - name: Generate Pagefind search index (if applicable)\n      run: |\n        # Check if site uses Pagefind search\n        if [ -f \"package.json\" ] && grep -q \"pagefind\" package.json; then\n          pnpm run pagefind || npx pagefind --site \"public\"\n        fi\n\n    - name: Upload artifact\n      id: upload\n      uses: actions/upload-pages-artifact@v4\n      with:\n        path: ./public\n"
  },
  {
    "path": "templates/startup-landing-page/.github/workflows/deploy.yml",
    "content": "name: Deploy website to GitHub Pages\n\non:\n  # Trigger the workflow every time you push to the `main` branch\n  push:\n    branches: ['main']\n  # Allows you to run this workflow manually from the Actions tab on GitHub\n  workflow_dispatch:\n\n# Provide permission to clone the repo and deploy it to GitHub Pages\npermissions:\n  contents: read\n  pages: write\n  id-token: write\n\nconcurrency:\n  group: 'pages'\n  cancel-in-progress: false\n\njobs:\n  # Check deployment configuration\n  config:\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    outputs:\n      deploy-host: ${{ steps.check.outputs.host }}\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n      with:\n        sparse-checkout: hugoblox.yaml\n        sparse-checkout-cone-mode: false\n\n    - name: Check deploy host\n      id: check\n      run: |\n        # Install pinned yq version for robust YAML parsing\n        YQ_VERSION=\"v4.44.1\"\n        if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \\\n          \"https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64\"; then\n          echo \"::error::Failed to download yq\"\n          exit 1\n        fi\n        sudo mv /tmp/yq /usr/local/bin/yq\n        sudo chmod +x /usr/local/bin/yq\n        \n        # Read deploy.host from hugoblox.yaml, default to github-pages\n        HOST=$(yq '.deploy.host // \"\"' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true)\n        HOST=${HOST:-github-pages}\n        \n        # Validate known hosts\n        if [[ ! \"$HOST\" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then\n          echo \"::warning::Unknown deploy host '$HOST', defaulting to github-pages\"\n          HOST=\"github-pages\"\n        fi\n        \n        echo \"host=$HOST\" >> $GITHUB_OUTPUT\n        echo \"Deployment target: $HOST\"\n\n  # Build website using reusable workflow (always runs for CI)\n  build:\n    needs: config\n    if: github.repository_owner != 'HugoBlox'\n    uses: ./.github/workflows/build.yml\n    secrets: inherit\n\n  # Deploy website to GitHub Pages hosting (only if configured)\n  deploy:\n    needs: [config, build]\n    if: needs.config.outputs.deploy-host == 'github-pages'\n    # Grant GITHUB_TOKEN the permissions required to make a Pages deployment\n    permissions:\n      pages: write # to deploy to Pages\n      id-token: write # to verify the deployment originates from an appropriate source\n    # Deploy to the github-pages environment\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    steps:\n    - name: Deploy to GitHub Pages\n      id: deployment\n      uses: actions/deploy-pages@v4\n"
  },
  {
    "path": "templates/startup-landing-page/.github/workflows/upgrade.yml",
    "content": "name: Upgrade HugoBlox\n\non:\n  workflow_dispatch:\n    inputs:\n      version_type:\n        description: 'Upgrade to version'\n        required: true\n        default: 'Stable'\n        type: choice\n        options:\n        - Stable\n        - Beta (Preview)\n  schedule:\n    # Run at 05:00 on Monday\n    - cron: '0 5 * * 1'\n\npermissions:\n  contents: write\n  pull-requests: write\n\n# Prevent duplicate upgrade runs\nconcurrency:\n  group: upgrade-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  upgrade:\n    name: Upgrade\n    if: github.repository_owner != 'HugoBlox'\n    runs-on: ubuntu-latest\n    timeout-minutes: 15\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v6\n        with:\n          node-version: '22'\n\n      - name: Setup pnpm\n        uses: pnpm/action-setup@v4\n        with:\n          package_json_path: ./package.json\n          run_install: false\n\n      - name: Setup Go\n        uses: actions/setup-go@v5\n        with:\n          go-version: '1.23'\n\n      - name: Setup Hugo\n        uses: peaceiris/actions-hugo@v3\n        with:\n          hugo-version: 'latest'\n          extended: true\n\n      - name: Run Upgrade CLI\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # Use manual input or default to stable for scheduled runs\n          VERSION_TYPE: ${{ inputs.version_type || 'Stable' }}\n        run: |\n          FLAGS=\"--yes --ci\"\n          \n          if [ \"$VERSION_TYPE\" == \"Beta (Preview)\" ]; then\n            FLAGS=\"$FLAGS --canary\"\n          fi\n          \n          echo \"Running upgrade with flags: $FLAGS\"\n          pnpm dlx hugoblox@latest upgrade $FLAGS\n\n\n      - name: Create Pull Request\n        uses: peter-evans/create-pull-request@v6\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          commit-message: \"chore(deps): upgrade hugoblox modules\"\n          title: \"⬆️ Upgrade HugoBlox Modules\"\n          body: |\n            This PR upgrades the [HugoBlox](https://hugoblox.com) modules to the latest version.\n            \n            **Changes:**\n            - Updated Hugo Modules (go.mod/go.sum)\n            - Applied automatic migrations (if any)\n            \n            **Verification:**\n            - [ ] Check the Deploy Preview to ensure everything looks correct.\n            - [ ] Merge this PR to apply the updates.\n          branch: \"chore/upgrade-hugoblox-${{ github.run_id }}\"\n          delete-branch: true\n          base: main\n          labels: |\n            dependencies\n            automated-pr\n"
  },
  {
    "path": "templates/startup-landing-page/.gitignore",
    "content": "# ============================================================================\n# Hugo Site .gitignore\n# ============================================================================\n\n# ============================================================================\n# Hugo Build Artifacts\n# ============================================================================\n\n# Generated site output\npublic/\n\n# Hugo resources (processed assets)\nresources/\n\n# Hugo build lock\n.hugo_build.lock\n\n# Hugo stats\nhugo_stats.json\n\n# Auto-generated JS config\n**/assets/jsconfig.json\n\n# ============================================================================\n# Node.js & Package Managers\n# ============================================================================\n\n# Dependencies\nnode_modules/\n\n# ============================================================================\n# Environment & Configuration\n# ============================================================================\n\n# Environment variables\n.env\n.env.local\n.env.*.local\n\n# ============================================================================\n# Generated Content\n# ============================================================================\n\n# Pagefind search index\npagefind/\nstatic/pagefind/\n\n# ============================================================================\n# Operating System\n# ============================================================================\n\n# macOS\n.DS_Store\n.DS_Store?\n._*\n\n# Windows\nThumbs.db\nDesktop.ini\n\n# Linux\n*~\n\n# ============================================================================\n# Logs & Temporary Files\n# ============================================================================\n\n*.log\nnpm-debug.log*\n"
  },
  {
    "path": "templates/startup-landing-page/.vscode/extensions.json",
    "content": "{\n  \"recommendations\": [\"ownable.ownable\"]\n}\n"
  },
  {
    "path": "templates/startup-landing-page/LICENSE.md",
    "content": "MIT License\n\nCopyright (c) 2020-present George Cushen (https://georgecushen.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in 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": "templates/startup-landing-page/README.md",
    "content": "# [Hugo Landing Page Theme](https://github.com/HugoBlox/hugo-theme-startup-landing-page)\n\n[![Screenshot](https://raw.githubusercontent.com/HugoBlox/hugo-theme-startup-landing-page/main/.github/preview.webp)](https://hugoblox.com/templates/)\n\nThe Hugo **Landing Page Template** empowers you to easily create startup websites, marketing websites, and landing pages to accelerate your business growth.\n\n️**Trusted by 250,000+ creators, teams, and organizations.** Highly customizable via the integrated **no-code, block-based website builder**, making every site truly personalized ⭐⭐⭐⭐⭐\n\n[![Get Started](https://img.shields.io/badge/-Get%20started-ff4655?style=for-the-badge)](https://hugoblox.com/templates/)\n[![Discord](https://img.shields.io/discord/722225264733716590?style=for-the-badge)](https://discord.com/channels/722225264733716590/742892432458252370/742895548159492138)  \n[![Twitter Follow](https://img.shields.io/twitter/follow/MakeOwnable?label=Follow%20on%20Twitter)](https://x.com/MakeOwnable)\n\n[Check out the latest demo](https://theme-landing-page.netlify.app) of what you'll get in less than 10 minutes, or [view the showcase](https://hugoblox.com/creators/).\n\nThe integrated [**Hugo Blox**](https://hugoblox.com) website builder and CMS makes it easy to create a beautiful website for free. Edit your site in the CMS (or your favorite editor), generate it with [Hugo](https://github.com/gohugoio/hugo), and deploy with GitHub or Netlify. Customize anything on your site with widgets, light/dark themes, and language packs.\n\n- 👉 [**Get Started**](https://hugoblox.com/templates/)\n- 📚 [View the **documentation**](https://docs.hugoblox.com/)\n- 💬 [Chat with the **HugoBlox Kit community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)\n- ⬇️ **Automatically import citations from BibTeX** with the [Hugo Academic CLI](https://github.com/GetRD/academic-file-converter)\n- 🐦 Share your new site with the community: [@MakeOwnable](https://x.com/MakeOwnable)  [#MadeWithHugoBlox](https://x.com/search?q=%23MadeWithHugoBlox&src=typed_query)\n- 🗳 [Take the survey and help us improve #OpenSource](https://forms.gle/NioD9VhUg7PNmdCAA)\n- 🚀 [Contribute improvements](https://github.com/HugoBlox/kit/blob/main/CONTRIBUTING.md) or [suggest improvements](https://github.com/HugoBlox/kit/issues)\n- ⬆️ **Updating?** View the [Update Guide](https://docs.hugoblox.com/) and [Release Notes](https://github.com/HugoBlox/kit/releases)\n\n## We ask you, humbly, to support this open source movement\n\nToday we ask you to defend the open source independence of the HugoBlox Kit and themes 🐧\n\nWe're an open source movement that depends on your support to stay online and thriving, but 99.9% of our creators don't give; they simply look the other way.\n\n### [❤️ Click here to become a GitHub Sponsor, unlocking awesome perks such as _exclusive academic templates and widgets_](https://github.com/sponsors/gcushen)\n"
  },
  {
    "path": "templates/startup-landing-page/assets/media/icons/custom/.gitkeep",
    "content": ""
  },
  {
    "path": "templates/startup-landing-page/config/_default/hugo.yaml",
    "content": "# Configuration of Hugo\n# Guide: https://docs.hugoblox.com/tutorial/\n# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings\n# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/\n\n# Website name (set in params.yaml under hugoblox.branding.name)\ntitle: ''\nbaseURL: 'https://example.com/' # Website URL\n\n############################\n## PAGE OPTIONS\n############################\n\ncascade:\n  # Blog post options\n  - _target:\n      path: /blog/**\n      kind: page\n    pager: true\n    editable: true\n    hide_date: false\n    show_date_updated: true\n    reading_time: true\n    commentable: true\n    show_related: true\n    share: true\n    # Just use Breadcrumb for navigation on blog post pages?\n    show_breadcrumb: false\n    header:\n      navbar:\n        enable: true\n  # Blog section options\n  - _target:\n      path: /blog/*\n      kind: section\n    # Set the listing view\n    view: date-title-summary\n\n############################\n## LANGUAGE\n############################\n\ndefaultContentLanguage: en\nhasCJKLanguage: false\ndefaultContentLanguageInSubdir: false\nremovePathAccents: true\n\n############################\n## ADVANCED\n############################\n\nbuild:\n  writeStats: true\nenableGitInfo: false\nsummaryLength: 30\npagination:\n  pagerSize: 10\nenableEmoji: true\nenableRobotsTXT: true\nfootnotereturnlinkcontents: <sup>^</sup>\nignoreFiles: [\".ipynb_checkpoints$\", \"\\\\.Rmd$\", \"\\\\.Rmarkdown$\", \"_cache$\"]\ndisableAliases: true\noutputs:\n  home: [HTML, RSS, headers, redirects]\n  section: [HTML, RSS]\nimaging:\n  resampleFilter: lanczos\n  quality: 90\n  anchor: smart\n  hint: picture\ntimeout: 600000\ntaxonomies:\n  tag: tags\n  category: categories\n  author: authors\nmarkup:\n  _merge: deep\n  highlight:\n    lineNos: false\nsecurity:\n  _merge: deep\nsitemap:\n  _merge: deep\n"
  },
  {
    "path": "templates/startup-landing-page/config/_default/languages.yaml",
    "content": "# Languages\n#   Create a section for each of your site's languages.\n#   Documentation: https://docs.hugoblox.com/reference/language/\n\n# Default language\nen:\n  languageCode: en-us\n  # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.\n  #contentDir: content/en\n\n# Uncomment the lines below to configure your website in a second language.\n#zh:\n#  languageCode: zh-Hans\n#  contentDir: content/zh\n#  title: Chinese website title...\n#  params:\n#    description: Site description in Chinese...\n#  menu:\n#    main:\n#      - name: 传\n#        url: '#about'\n#        weight: 1\n"
  },
  {
    "path": "templates/startup-landing-page/config/_default/menus.yaml",
    "content": "# Navigation Links\n#   To link a page section, specify the URL as a hash `/#` followed by the `id` of the section.\n#   The `weight` parameter defines the order that the links will appear in.\n\nmain:\n  - name: Home\n    url: /#top\n    weight: 10\n  - name: Features\n    url: /#features\n    weight: 20\n  - name: Solutions\n    url: /#solutions\n    weight: 30\n  - name: Changelog\n    url: /changelog/\n    weight: 35\n  - name: Resources\n    weight: 40\n    hasChildren: true\n  - parent: Resources\n    name: Blog\n    url: blog/\n\n# Footer links (4-column layout)\n#   Top-level items become column headings, children become links.\nfooter:\n  - name: Product\n    weight: 10\n  - parent: Product\n    name: Features\n    url: /#features\n    weight: 10\n  - parent: Product\n    name: Solutions\n    url: /#solutions\n    weight: 20\n  - parent: Product\n    name: Pricing\n    url: \"#\"\n    weight: 30\n  - parent: Product\n    name: Changelog\n    url: /changelog/\n    weight: 40\n\n  - name: Company\n    weight: 20\n  - parent: Company\n    name: About\n    url: \"#\"\n    weight: 10\n  - parent: Company\n    name: Blog\n    url: /blog/\n    weight: 20\n  - parent: Company\n    name: Careers\n    url: \"#\"\n    weight: 30\n  - parent: Company\n    name: Contact\n    url: \"#\"\n    weight: 40\n\n  - name: Resources\n    weight: 30\n  - parent: Resources\n    name: Documentation\n    url: \"#\"\n    weight: 10\n  - parent: Resources\n    name: Help Center\n    url: \"#\"\n    weight: 20\n  - parent: Resources\n    name: Community\n    url: \"#\"\n    weight: 30\n  - parent: Resources\n    name: Status\n    url: \"#\"\n    weight: 40\n\n  - name: Legal\n    weight: 40\n  - parent: Legal\n    name: Privacy Policy\n    url: /privacy/\n    weight: 10\n  - parent: Legal\n    name: Terms of Service\n    url: /terms/\n    weight: 20\n"
  },
  {
    "path": "templates/startup-landing-page/config/_default/module.yaml",
    "content": "############################\n## HUGO MODULES\n## Install or uninstall themes and plugins here.\n## Docs: https://gohugo.io/hugo-modules/\n############################\n\nimports:\n  - path: github.com/HugoBlox/kit/modules/integrations/netlify\n  - path: github.com/HugoBlox/kit/modules/blox\n\n# Install any Hugo Blox within the `hugo-blox/blox/` folder\nmounts:\n  - source: hugo-blox/blox/community\n    target: layouts/_partials/blox/community/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox/all-access\n    target: layouts/_partials/blox/\n    files:\n      - '**.html'\n  - source: hugo-blox/blox\n    target: assets/dist/community/blox/\n    files:\n      - '**.css'\n  - source: layouts\n    target: layouts\n  - source: assets\n    target: assets\n"
  },
  {
    "path": "templates/startup-landing-page/config/_default/params.yaml",
    "content": "# ══════════════════════════════════════════════════════════════════════════════\n# HUGO BLOX CONFIGURATION\n# Schema: hugoblox.com/schema/v2\n# Tutorial: https://docs.hugoblox.com/tutorial/\n# Documentation: https://docs.hugoblox.com/\n# ══════════════════════════════════════════════════════════════════════════════\nhugoblox:\n  schema: \"2.0\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # IDENTITY\n  # Site-level branding (for people/profiles, use the author system in content/authors/)\n  # ────────────────────────────────────────────────────────────────────────────\n  identity:\n    # Site name - shown in navbar, footer, copyright, and browser title by default\n    name: \"Company Name\"\n    # Legal entity for copyright notices (defaults to name if not set)\n    organization: \"\"\n    # Schema.org type for structured data\n    type: organization                        # person | organization | local_business\n    # Short tagline displayed on your site\n    tagline: \"The framework for Hugo.\"\n    # Site meta description for search engines and social sharing\n    description: \"The highly-customizable Hugo Academic theme powered by HugoBlox Kit. Easily create your personal academic website.\"\n    # Social accounts (used for meta tags like Twitter Cards)\n    social:\n      twitter: \"MakeOwnable\"              # Twitter/X handle for Twitter Cards (without @)\n      # Site-wide social links (rendered in footer, etc.)\n      links:\n        - icon: brands/x\n          url: https://x.com/MakeOwnable\n        - icon: brands/github\n          url: https://github.com/HugoBlox/kit\n        - icon: brands/discord\n          url: https://discord.gg/z8wNYzb\n        - icon: brands/linkedin\n          url: https://linkedin.com/company/example\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # THEME\n  # Color and visual design system\n  # ────────────────────────────────────────────────────────────────────────────\n  theme:\n    # Mode: 'light', 'dark', or 'system' (follows OS preference)\n    mode: system\n    # Theme pack: name from data/themes/ or { light: \"x\", dark: \"y\" } for mix-and-match\n    pack: \"default\"\n    # Optional: Override theme pack colors\n    colors:\n      primary: \"\"                       # Tailwind palette name or hex (e.g., \"indigo\" or \"#6366f1\")\n      secondary: \"\"\n      neutral: \"\"                       # Affects gray utilities (text-gray-*, bg-gray-*)\n    # Optional: Mode-specific color overrides\n    colors_light: {}\n    colors_dark: {}\n    # Optional: Semantic surface color overrides\n    surfaces:\n      background: \"\"\n      foreground: \"\"\n      header:\n        background: \"\"\n        foreground: \"\"\n      footer:\n        background: \"\"\n        foreground: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # TYPOGRAPHY\n  # Font and text sizing\n  # ────────────────────────────────────────────────────────────────────────────\n  typography:\n    # Theme pack: name from data/fonts/\n    pack: \"geometric\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LAYOUT\n  # Spacing and shape tokens\n  # ────────────────────────────────────────────────────────────────────────────\n  layout:\n    # Border radius: 'none', 'sm', 'md', 'lg', or 'full'\n    radius: \"md\"\n    # Spacing density: 'compact', 'comfortable', or 'spacious'\n    spacing: \"comfortable\"\n    # Avatar shape in author profiles\n    avatar_shape: circle                # circle | square | rounded\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # HEADER\n  # Site header and navigation bar\n  # ────────────────────────────────────────────────────────────────────────────\n  header:\n    enable: true\n    # Header style variant\n    block: navbar                       # navbar | navbar-simple\n    # Stick to top on scroll\n    sticky: true\n    # Show logo in navbar\n    show_logo: false\n    # Show site title text in navbar\n    show_title: true\n    # Override navbar title (defaults to identity.name)\n    title: \"\"\n    # Menu alignment\n    align: center                       # left | center | right\n    # Feature toggles\n    search: true\n    theme_toggle: true\n    theme_picker: false\n    language_switcher: true\n    # Call-to-action button\n    cta:\n      enable: false\n      text: \"\"\n      url: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # FOOTER\n  # Site footer\n  # ────────────────────────────────────────────────────────────────────────────\n  footer:\n    # Footer style variant\n    style: columns                      # minimal | columns | centered\n    show_logo: true\n    show_title: true\n    show_tagline: true\n    # Override footer title (defaults to identity.name)\n    title: \"\"\n    language_switcher: true\n    # Show social icons from identity.social.links\n    show_social: true\n    # Custom footer text (HTML supported)\n    text: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COPYRIGHT\n  # Legal notices and licensing\n  # ────────────────────────────────────────────────────────────────────────────\n  copyright:\n    # Copyright notice - supports {year}, {name}, {license} placeholders\n    notice: \"© {year} {name}.\"\n    license:\n      type: custom                          # cc | custom\n      allow_derivatives: false\n      share_alike: true\n      allow_commercial: false\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEO\n  # Search engine optimization - overrides and technical settings\n  # ────────────────────────────────────────────────────────────────────────────\n  seo:\n    # Browser tab title override (defaults to identity.name if not set)\n    title: \"\"\n    # For local_business identity type only\n    location:\n      address:\n        street: \"\"\n        city: \"\"\n        region: \"\"\n        postal_code: \"\"\n        country: \"\"\n      coordinates:\n        latitude: null\n        longitude: null\n      phone: \"\"\n    # AI/LLM crawler guidance (llms.txt)\n    ai:\n      allow:\n        - /\n      disallow: []\n      note: \"Guidance for AI crawlers - customize to match your public content.\"\n      contact: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # CONTENT\n  # Content rendering and behavior\n  # ────────────────────────────────────────────────────────────────────────────\n  content:\n    # Math rendering\n    math:\n      enable: false\n    # Table of contents\n    toc:\n      enable: true\n    # Reading time estimates\n    reading_time:\n      enable: true\n    # Academic citations\n    citations:\n      style: apa                        # apa | mla | chicago | ieee\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SEARCH\n  # Site search\n  # ────────────────────────────────────────────────────────────────────────────\n  search:\n    enable: true\n    # Trending/suggested search terms\n    suggestions: []\n    # Quick action shortcuts in search modal\n    quick_actions: []\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # COMMENTS\n  # User comments system\n  # ────────────────────────────────────────────────────────────────────────────\n  comments:\n    enable: false\n    provider: \"\"                        # giscus | disqus\n    giscus:\n      repo: \"\"\n      repo_id: \"\"\n      category: \"\"\n      category_id: \"\"\n    disqus:\n      shortname: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # ANALYTICS\n  # Traffic and behavior analytics\n  # ────────────────────────────────────────────────────────────────────────────\n  analytics:\n    google:\n      measurement_id: \"\"                # Google Analytics 4: G-XXXXXXXXXX\n    google_tag_manager:\n      container_id: \"\"                  # GTM-XXXXXXX\n    plausible:\n      domain: \"\"\n    fathom:\n      site_id: \"\"\n    pirsch:\n      site_id: \"\"\n    clarity:\n      project_id: \"\"\n    baidu:\n      site_id: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # VERIFICATION\n  # Search engine site verification codes\n  # ────────────────────────────────────────────────────────────────────────────\n  verification:\n    google: \"\"\n    bing: \"\"\n    baidu: \"\"\n    yandex: \"\"\n    pinterest: \"\"\n    naver: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # REPOSITORY\n  # Source code repository for \"Edit this page\" links\n  # ────────────────────────────────────────────────────────────────────────────\n  repository:\n    enable: false\n    url: \"\"                             # e.g., https://github.com/username/repo\n    branch: main\n    content_dir: content\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # LOCALE\n  # Regional formatting preferences\n  # ────────────────────────────────────────────────────────────────────────────\n  locale:\n    date_format: \"Jan 2, 2006\"          # Go time format\n    time_format: \"3:04 PM\"\n    address_format: en-us\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # SECURITY\n  # Security headers and policies (requires Netlify integration)\n  # ────────────────────────────────────────────────────────────────────────────\n  security:\n    csp:\n      policy: \"\"\n      report_only: false\n    frame_options: allow                 # deny | sameorigin | allow - allow enables iframe embedding\n    permissions_policy: \"\"\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PRIVACY\n  # Privacy and compliance features\n  # ────────────────────────────────────────────────────────────────────────────\n  privacy:\n    enable: false\n    anonymize_analytics: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # DEBUG\n  # Development and debugging (hidden in production)\n  # ────────────────────────────────────────────────────────────────────────────\n  debug:\n    enable: false\n    hud:\n      position: bottom-left             # top-left | top-right | bottom-left | bottom-right\n      opacity: 1.0\n    export_logs: true\n\n  # ────────────────────────────────────────────────────────────────────────────\n  # PREMIUM\n  # Premium features and creator program (affiliates)\n  # ────────────────────────────────────────────────────────────────────────────\n  pro:\n    # Hide \"Powered by HugoBlox\" attribution\n    # Requires: HugoBlox Premium to support HugoBlox via alternative means\n    # Note: Even with Premium, you can keep this false to support open source!\n    # Get Premium: https://hugoblox.com/premium\n    hide_attribution: false\n    \n    # Affiliate referral code for rewards program\n    # Join affiliate program: https://hugoblox.com/affiliates\n    affiliate_code: \"\"\n"
  },
  {
    "path": "templates/startup-landing-page/content/_index.md",
    "content": "---\ntitle: 'Home'\ndate: 2023-10-24\ntype: landing\n\ndesign:\n  # Default section spacing\n  spacing: \"6rem\"\n\nsections:\n  - block: hero\n    content:\n      title: Build Your Landing Pages with Hugo Blox\n      text: 🧱 EASY. FREE (OPEN SOURCE). NO-CODE  🧱\n      primary_action:\n        text: Get Started\n        url: https://hugoblox.com/templates/\n        icon: rocket-launch\n      secondary_action:\n        text: Read the docs\n        url: https://docs.hugoblox.com\n      announcement:\n        text: \"Announcing the release of version 1.\"\n        link:\n          text: \"Read more\"\n          url: \"/blog/\"\n    design:\n      spacing:\n        padding: [0, 0, 0, 0]\n        margin: [0, 0, 0, 0]\n      # For full-screen, add `min-h-screen` below\n      css_class: \"dark\"\n      background:\n        color: \"navy\"\n        image:\n          # Add your image background to `assets/media/`.\n          filename: bg-triangles.svg\n          filters:\n            brightness: 0.5\n          size: cover\n          position: center\n          parallax: false\n  - block: stats\n    content:\n      items:\n        - statistic: \"1M+\"\n          description: |\n            Websites built  \n            with Hugo Blox\n        - statistic: \"10k+\"\n          description: |\n            GitHub stars  \n            since 2016\n        - statistic: \"3k+\"\n          description: |\n            Discord community  \n            for support\n    design:\n      # Section background color (CSS class)\n      css_class: \"bg-gray-100 dark:bg-gray-900\"\n      # Reduce spacing\n      spacing:\n        padding: [\"1rem\", 0, \"1rem\", 0]\n  - block: features\n    id: features\n    content:\n      title: Features\n      text: Build your site with blocks 🧱\n      items:\n        - name: Optimized SEO\n          icon: magnifying-glass\n          description: Automatic sitemaps, RSS feeds, and rich metadata take the pain out of SEO and syndication.\n        - name: Fast\n          icon: bolt\n          description: Super fast page load with Tailwind CSS and super fast site building with Hugo.\n        - name: Easy\n          icon: sparkles\n          description: One-click deployment to GitHub Pages. Have your new website live within 5 minutes!\n        - name: No-Code\n          icon: code-bracket\n          description: Edit and design your site just using rich text (Markdown) and configurable YAML parameters.\n        - name: Highly Rated\n          icon: star\n          description: Rated 5-stars by the community.\n        - name: Swappable Blocks\n          icon: rectangle-group\n          description: Build your pages with blocks - no coding required!\n  - block: cta-image-paragraph\n    id: solutions\n    content:\n      items:\n        - title: Build your future-proof website\n          text: As easy as 1, 2, 3!\n          feature_icon: check\n          features:\n            - \"Future-proof - edit your content in text files\"\n            - \"Website is generated by a single app, Hugo\"\n            - \"No JavaScript knowledge required\"\n          # Upload image to `assets/media/` and reference the filename here\n          image: build-website.png\n          button:\n            text: Get Started\n            url: https://hugoblox.com/templates/\n        - title: Large Community\n          text: Join our large community on Discord - ask questions and get live responses\n          feature_icon: bolt\n          features:\n            - \"Dedicated support channel\"\n            - \"3,000+ users on Discord\"\n            - \"Share your site and get feedback\"\n          # Upload image to `assets/media/` and reference the filename here\n          image: coffee.jpg\n          button:\n            text: Join Discord\n            url: https://discord.gg/z8wNYzb\n    design:\n      # Section background color (CSS class)\n      css_class: \"bg-gray-100 dark:bg-gray-900\"\n  - block: testimonials\n    content:\n      title: \"\"\n      text: \"\"\n      items:\n        - name: \"Hugo Smith\"\n          role: \"Marketing Executive at X\"\n          # Upload image to `assets/media/` and reference the filename here\n          image: \"testimonial-1.jpg\"\n          text: \"Awesome, so easy to use and saved me so much work with the swappable pre-designed sections!\"\n    design:\n      spacing:\n        # Reduce bottom spacing so the testimonial appears vertically centered between sections\n        padding: [\"6rem\", 0, 0, 0]\n  - block: cta-card\n    content:\n      title: Build your future-proof website\n      text: As easy as 1, 2, 3!\n      button:\n        text: Get Started\n        url: https://hugoblox.com/templates/\n    design:\n      card:\n        # Card background color (CSS class)\n        css_class: \"bg-primary-300\"\n        css_style: \"\"\n---\n"
  },
  {
    "path": "templates/startup-landing-page/content/authors/_content.gotmpl",
    "content": "{{/* Get the author data from site.Data */}}\n{{ $authorData := site.Data.authors }}\n\n{{/* Iterate over each author key-value pair */}}\n{{ range $slug, $profile := $authorData }}\n\n  {{/* Prepare the page parameters */}}\n  {{/* We merge the profile data directly into params so they are available as .Params */}}\n  {{ $params := $profile }}\n  \n  {{/* Ensure the title is set correctly */}}\n  {{ $title := $profile.title | default ($profile.name.display) | default $slug }}\n  \n  {{/* Define the page properties */}}\n  {{ $page := dict\n    \"kind\" \"term\"         \n    \"path\" $slug          \n    \"title\" $title\n    \"params\" $params      \n  }}\n\n  {{/* Add the page to Hugo's build */}}\n  {{ $.AddPage $page }}\n\n{{ end }}\n"
  },
  {
    "path": "templates/startup-landing-page/content/authors/_index.md",
    "content": "---\n# To publish author profile pages, remove all the `build` and `cascade` settings below.\nbuild:\n  render: never\ncascade:\n  build:\n    render: never\n    list: always\n---\n"
  },
  {
    "path": "templates/startup-landing-page/content/blog/_index.md",
    "content": "---\ntitle: Blog\nview: card\n---\n"
  },
  {
    "path": "templates/startup-landing-page/content/blog/data-visualization/index.md",
    "content": "---\ntitle: 📈 Communicate your results effectively with the best data visualizations\nsummary: Use popular tools such as Plotly, Mermaid, and data frames.\ndate: 2023-10-25\nauthors:\n  - me\ntags:\n  - Hugo\n  - Hugo Blox\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nHugo Blox is designed to give technical content creators a seamless experience. You can focus on the content and Hugo Blox handles the rest.\n\nUse popular tools such as Plotly, Mermaid, and data frames.\n\n## Charts\n\nHugo Blox supports the popular [Plotly](https://plot.ly/) format for interactive data visualizations. With Plotly, you can design almost any kind of visualization you can imagine!\n\nSave your Plotly JSON in your page folder, for example `line-chart.json`, and then add the `{{</* chart data=\"line-chart\" */>}}` shortcode where you would like the chart to appear.\n\nDemo:\n\n{{< chart data=\"line-chart\" >}}\n\nYou might also find the [Plotly JSON Editor](http://plotly-json-editor.getforge.io/) useful.\n\n## Diagrams\n\nHugo Blox supports the _Mermaid_ Markdown extension for diagrams.\n\nAn example **flowchart**:\n\n    ```mermaid\n    graph TD\n    A[Hard] -->|Text| B(Round)\n    B --> C{Decision}\n    C -->|One| D[Result 1]\n    C -->|Two| E[Result 2]\n    ```\n\nrenders as\n\n```mermaid\ngraph TD\nA[Hard] -->|Text| B(Round)\nB --> C{Decision}\nC -->|One| D[Result 1]\nC -->|Two| E[Result 2]\n```\n\nAn example **sequence diagram**:\n\n    ```mermaid\n    sequenceDiagram\n    Alice->>John: Hello John, how are you?\n    loop Healthcheck\n        John->>John: Fight against hypochondria\n    end\n    Note right of John: Rational thoughts!\n    John-->>Alice: Great!\n    John->>Bob: How about you?\n    Bob-->>John: Jolly good!\n    ```\n\nrenders as\n\n```mermaid\nsequenceDiagram\nAlice->>John: Hello John, how are you?\nloop Healthcheck\n    John->>John: Fight against hypochondria\nend\nNote right of John: Rational thoughts!\nJohn-->>Alice: Great!\nJohn->>Bob: How about you?\nBob-->>John: Jolly good!\n```\n\nAn example **class diagram**:\n\n    ```mermaid\n    classDiagram\n    Class01 <|-- AveryLongClass : Cool\n    Class03 *-- Class04\n    Class05 o-- Class06\n    Class07 .. Class08\n    Class09 --> C2 : Where am i?\n    Class09 --* C3\n    Class09 --|> Class07\n    Class07 : equals()\n    Class07 : Object[] elementData\n    Class01 : size()\n    Class01 : int chimp\n    Class01 : int gorilla\n    Class08 <--> C2: Cool label\n    ```\n\nrenders as\n\n```mermaid\nclassDiagram\nClass01 <|-- AveryLongClass : Cool\nClass03 *-- Class04\nClass05 o-- Class06\nClass07 .. Class08\nClass09 --> C2 : Where am i?\nClass09 --* C3\nClass09 --|> Class07\nClass07 : equals()\nClass07 : Object[] elementData\nClass01 : size()\nClass01 : int chimp\nClass01 : int gorilla\nClass08 <--> C2: Cool label\n```\n\nAn example **state diagram**:\n\n    ```mermaid\n    stateDiagram\n    [*] --> Still\n    Still --> [*]\n    Still --> Moving\n    Moving --> Still\n    Moving --> Crash\n    Crash --> [*]\n    ```\n\nrenders as\n\n```mermaid\nstateDiagram\n[*] --> Still\nStill --> [*]\nStill --> Moving\nMoving --> Still\nMoving --> Crash\nCrash --> [*]\n```\n\n## Data Frames\n\nSave your spreadsheet as a CSV file in your page's folder and then render it by adding the _Table_ shortcode to your page:\n\n```go\n{{</* table path=\"results.csv\" header=\"true\" caption=\"Table 1: My results\" */>}}\n```\n\nrenders as\n\n{{< table path=\"results.csv\" header=\"true\" caption=\"Table 1: My results\" >}}\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/startup-landing-page/content/blog/data-visualization/line-chart.json",
    "content": "{\n  \"data\": [\n    {\n      \"uid\": \"babced\",\n      \"fill\": \"tonexty\",\n      \"mode\": \"none\",\n      \"name\": \"Col2\",\n      \"type\": \"scatter\",\n      \"x\": [\n        \"2000-01-01\",\n        \"2001-01-01\",\n        \"2002-01-01\",\n        \"2003-01-01\",\n        \"2004-01-01\",\n        \"2005-01-01\",\n        \"2006-01-01\",\n        \"2007-01-01\",\n        \"2008-01-01\",\n        \"2009-01-01\",\n        \"2010-01-01\",\n        \"2011-01-01\",\n        \"2012-01-01\",\n        \"2013-01-01\",\n        \"2014-01-01\",\n        \"2015-01-01\",\n        \"2016-01-01\"\n      ],\n      \"y\": [\n        \"17087182\",\n        \"29354370\",\n        \"38760373\",\n        \"40912332\",\n        \"51611646\",\n        \"64780617\",\n        \"85507314\",\n        \"121892559\",\n        \"172338726\",\n        \"238027855\",\n        \"206956723\",\n        \"346004403\",\n        \"697089489\",\n        \"672985183\",\n        \"968882453\",\n        \"863105652\",\n        \"1068513050\"\n      ],\n      \"fillcolor\": \"rgb(224, 102, 102)\"\n    }\n  ],\n  \"layout\": {\n    \"title\": \"Total Number of Websites\",\n    \"width\": 800,\n    \"xaxis\": {\n      \"type\": \"date\",\n      \"range\": [946702800000, 1451624400000],\n      \"title\": \"Source: <a href=\\\"http://www.scribblrs.com/\\\">Scribblrs</a><br>Source: <a href=\\\"http://www.internetlivestats.com/total-number-of-websites/\\\">Internet Live Stats</a>\",\n      \"showgrid\": false,\n      \"autorange\": true,\n      \"tickformat\": \"%Y\"\n    },\n    \"yaxis\": {\n      \"type\": \"linear\",\n      \"range\": [0, 1124750578.9473684],\n      \"title\": \"\",\n      \"autorange\": true\n    },\n    \"height\": 500,\n    \"autosize\": false\n  },\n  \"frames\": []\n}\n"
  },
  {
    "path": "templates/startup-landing-page/content/blog/data-visualization/results.csv",
    "content": "customer_id, score\n1,0\n2,0.5\n3,1\n"
  },
  {
    "path": "templates/startup-landing-page/content/blog/get-started/index.md",
    "content": "---\ntitle: 🎉 Easily create your own simple yet highly customizable blog\nsummary: Take full control of your personal brand and privacy by migrating away from the big tech platforms!\ndate: 2023-10-27\n\n# Featured image\n# Place an image named `featured.jpg/png` in this page's folder and customize its options here.\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n\nauthors:\n  - me\n  - Ted\n\ntags:\n  - Academic\n  - Hugo Blox\n  - Markdown\n---\n\nWelcome 👋\n\n{{< toc mobile_only=true is_open=true >}}\n\n## Overview\n\n1. The Hugo Blox website builder for Hugo, along with its starter templates, is designed for professional creators, educators, and teams/organizations - although it can be used to create any kind of site\n2. The template can be modified and customised to suit your needs. It's a good platform for anyone looking to take control of their data and online identity whilst having the convenience to start off with a **no-code solution (write in Markdown and customize with YAML parameters)** and having **flexibility to later add even deeper personalization with HTML and CSS**\n3. You can work with all your favourite tools and apps with hundreds of plugins and integrations to speed up your workflows, interact with your readers, and much more\n\n[//]: # '[![The template is mobile first with a responsive design to ensure that your site looks stunning on every device.](https://raw.githubusercontent.com/HugoBlox/kit/main/templates/academic-cv/preview.png)](https://hugoblox.com)'\n\n### Get Started\n\n- 👉 [**Create a new site**](https://hugoblox.com/templates/)\n- 📚 [**Personalize your site**](https://docs.hugoblox.com/)\n- 💬 [Chat with the **Hugo Blox community**](https://discord.gg/z8wNYzb) or [**Hugo community**](https://discourse.gohugo.io)\n- 🐦 Twitter: [@MakeOwnable](https://x.com/MakeOwnable)  #MadeWithHugoBlox\n- 💡 [Request a **feature** or report a **bug** for _Hugo Blox_](https://github.com/HugoBlox/kit/issues)\n- ⬆️ **Updating Hugo Blox?** View the [Update Guide](https://docs.hugoblox.com/reference/update/) and [Release Notes](https://github.com/HugoBlox/kit/releases)\n\n## Crowd-funded open-source software\n\nTo help us develop this template and software sustainably under the MIT license, we ask all individuals and businesses that use it to help support its ongoing maintenance and development via sponsorship.\n\n### [❤️ Click here to become a sponsor and help support Hugo Blox's future ❤️](https://hugoblox.com/sponsor/)\n\nAs a token of appreciation for sponsoring, you can **unlock [these](https://hugoblox.com/sponsor/) awesome rewards and extra features 🦄✨**\n\n## Ecosystem\n\n- **[Bibtex To Markdown](https://github.com/GetRD/academic-file-converter):** Automatically import publications from BibTeX\n\n## Inspiration\n\n[Learn what other **creators**](https://hugoblox.com/creators/) are building with this template.\n\n## Features\n\n- **Page builder** - Create _anything_ with no-code [**blocks**](https://hugoblox.com/blocks/) and [**elements**](https://docs.hugoblox.com/reference/markdown/)\n- **Edit any type of content** - Blog posts, publications, talks, slides, projects, and more!\n- **Create content** in [**Markdown**](https://docs.hugoblox.com/reference/markdown/), [**Jupyter**](https://docs.hugoblox.com/getting-started/cms/), or [**RStudio**](https://docs.hugoblox.com/getting-started/cms/)\n- **Plugin System** - Fully customizable [**color** and **font themes**](https://docs.hugoblox.com/getting-started/customize/)\n- **Display Code and Math** - Code syntax highlighting and LaTeX math supported\n- **Integrations** - [Google Analytics](https://analytics.google.com), [Disqus commenting](https://disqus.com), Maps, Contact Forms, and more!\n- **Beautiful Site** - Simple and refreshing one-page design\n- **Industry-Leading SEO** - Help get your website found on search engines and social media\n- **Media Galleries** - Display your images and videos with captions in a customizable gallery\n- **Mobile Friendly** - Look amazing on every screen with a mobile friendly version of your site\n- **Multi-language** - 35+ language packs including English, 中文, and Português\n- **Multi-user** - Each author gets their own profile page\n- **Privacy Pack** - Assists with GDPR\n- **Stand Out** - Bring your site to life with animation, parallax backgrounds, and scroll effects\n- **One-Click Deployment** - No servers. No databases. Only files.\n\n## Themes\n\nHugo Blox and its templates come with **automatic day (light) and night (dark) mode** built-in. Visitors can choose their preferred mode by clicking the sun/moon icon in the header.\n\n[Choose a stunning **theme** and **font**](https://docs.hugoblox.com/getting-started/customize/) for your site. Themes are fully customizable.\n\n## License\n\nCopyright 2016-present [George Cushen](https://georgecushen.com).\n\nReleased under the [MIT](https://github.com/HugoBlox/kit/blob/main/LICENSE.md) license.\n"
  },
  {
    "path": "templates/startup-landing-page/content/blog/project-management/index.md",
    "content": "---\ntitle: ✅ Manage your projects\nsummary: Easily manage your projects - create ideation mind maps, Gantt charts, todo lists, and more!\ndate: 2023-10-23\nauthors:\n  - me\ntags:\n  - Hugo Blox\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nEasily manage your projects - create ideation mind maps, Gantt charts, todo lists, and more!\n\n## Ideation\n\nHugo Blox supports a Markdown extension for mindmaps.\n\nSimply insert a Markdown code block labelled as `markmap` and optionally set the height of the mindmap as shown in the example below.\n\nMindmaps can be created by simply writing the items as a Markdown list within the `markmap` code block, indenting each item to create as many sub-levels as you need:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n\n## Diagrams\n\nHugo Blox supports the _Mermaid_ Markdown extension for diagrams.\n\nAn example **Gantt diagram**:\n\n    ```mermaid\n    gantt\n    section Section\n    Completed :done,    des1, 2014-01-06,2014-01-08\n    Active        :active,  des2, 2014-01-07, 3d\n    Parallel 1   :         des3, after des1, 1d\n    Parallel 2   :         des4, after des1, 1d\n    Parallel 3   :         des5, after des3, 1d\n    Parallel 4   :         des6, after des4, 1d\n    ```\n\nrenders as\n\n```mermaid\ngantt\nsection Section\nCompleted :done,    des1, 2014-01-06,2014-01-08\nActive        :active,  des2, 2014-01-07, 3d\nParallel 1   :         des3, after des1, 1d\nParallel 2   :         des4, after des1, 1d\nParallel 3   :         des5, after des3, 1d\nParallel 4   :         des6, after des4, 1d\n```\n\n## Todo lists\n\nYou can even write your todo lists in Markdown too:\n\n```markdown\n- [x] Write math example\n  - [x] Write diagram example\n- [ ] Do something else\n```\n\nrenders as\n\n- [x] Write math example\n  - [x] Write diagram example\n- [ ] Do something else\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/startup-landing-page/content/blog/second-brain/index.md",
    "content": "---\ntitle: 🧠 Sharpen your thinking with a second brain\nsummary: Create a personal knowledge base and share your knowledge with your peers.\ndate: 2023-10-26\nauthors:\n  - me\ntags:\n  - Second Brain\n  - Markdown\nimage:\n  caption: 'Image credit: [**Unsplash**](https://unsplash.com)'\n---\n\nCreate a personal knowledge base and share your knowledge with your peers.\n\nHugo Blox web framework empowers you with one of the most flexible note-taking capabilities out there.\n\nCreate a powerful knowledge base that works on top of a local folder of plain text Markdown files.\n\nUse it as your second brain, either publicly sharing your knowledge with your peers via your website, or via a private GitHub repository and password-protected site just for yourself.\n\n## Mindmaps\n\nHugo Blox supports a Markdown extension for mindmaps.\n\nWith this open format, can even edit your mindmaps in other popular tools such as Obsidian.\n\nSimply insert a Markdown code block labelled as `markmap` and optionally set the height of the mindmap as shown in the example below.\n\nMindmaps can be created by simply writing the items as a Markdown list within the `markmap` code block, indenting each item to create as many sub-levels as you need:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap {height=\"200px\"}\n- Hugo Modules\n  - Hugo Blox\n  - netlify\n  - netlify-cms\n  - slides\n```\n\nAnh here's a more advanced mindmap with formatting, code blocks, and math:\n\n<div class=\"highlight\">\n<pre class=\"chroma\">\n<code>\n```markmap\n- Mindmaps\n  - Links\n    - [Hugo Blox Docs](https://docs.hugoblox.com/)\n    - [Discord Community](https://discord.gg/z8wNYzb)\n    - [GitHub](https://github.com/HugoBlox/kit)\n  - Features\n    - Markdown formatting\n    - **inline** ~~text~~ *styles*\n    - multiline\n      text\n    - `inline code`\n    -\n      ```js\n      console.log('hello');\n      console.log('code block');\n      ```\n    - Math: $x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}$\n```\n</code>\n</pre>\n</div>\n\nrenders as\n\n```markmap\n- Mindmaps\n  - Links\n    - [Hugo Blox Docs](https://docs.hugoblox.com/)\n    - [Discord Community](https://discord.gg/z8wNYzb)\n    - [GitHub](https://github.com/HugoBlox/kit)\n  - Features\n    - Markdown formatting\n    - **inline** ~~text~~ *styles*\n    - multiline\n      text\n    - `inline code`\n    -\n      ```js\n      console.log('hello');\n      console.log('code block');\n      ```\n    - Math: $x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}$\n```\n\n## Highlighting\n\n<mark>Highlight</mark> important text with `mark`:\n\n```html\n<mark>Highlighted text</mark>\n```\n\n## Callouts\n\nUse [callouts](https://docs.hugoblox.com/reference/markdown/#callouts) (aka _asides_, _hints_, or _alerts_) to draw attention to notes, tips, and warnings.\n\nUse the `> [!NOTE]` syntax to create a callout.\n\n```markdown\n> [!NOTE]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n```\n\nrenders as\n\n> [!NOTE]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n\nOr use the `warning` callout type so your readers don't miss critical details:\n\n> [!WARNING]\n> A Markdown aside is useful for displaying notices, hints, or definitions to your readers.\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/startup-landing-page/content/blog/teach-courses/index.md",
    "content": "---\ntitle: 👩🏼‍🏫 Teach academic courses\nsummary: Embed videos, podcasts, code, LaTeX math, and even test students!\ndate: 2023-10-24\nmath: true\nauthors:\n  - me\ntags:\n  - Hugo\n  - HugoBlox Kit\n  - Markdown\nimage:\n  caption: 'Embed rich media such as videos and LaTeX math'\n---\n\n[HugoBlox Kit](https://hugoblox.com) is designed to give technical content creators a seamless experience. You can focus on the content and the HugoBlox Kit which this template is built upon handles the rest.\n\n**Embed videos, podcasts, code, LaTeX math, and even test students!**\n\nOn this page, you'll find some examples of the types of technical content that can be rendered with Hugo Blox.\n\n## Video\n\nTeach your course by sharing videos with your students. Choose from one of the following approaches:\n\n{{< youtube D2vj0WcvH5c >}}\n\n**Youtube**:\n\n    {{</* youtube w7Ft2ymGmfc */>}}\n\n**Bilibili**:\n\n    {{</* bilibili id=\"BV1WV4y1r7DF\" */>}}\n\n**Video file**\n\nVideos may be added to a page by either placing them in your `assets/media/` media library or in your [page's folder](https://gohugo.io/content-management/page-bundles/), and then embedding them with the _video_ shortcode:\n\n    {{</* video src=\"my_video.mp4\" controls=\"yes\" */>}}\n\n## Podcast\n\nYou can add a podcast or music to a page by placing the MP3 file in the page's folder or the media library folder and then embedding the audio on your page with the _audio_ shortcode:\n\n    {{</* audio src=\"ambient-piano.mp3\" */>}}\n\nTry it out:\n\n{{< audio src=\"ambient-piano.mp3\" >}}\n\n## Test students\n\nProvide a simple yet fun self-assessment by revealing the solutions to challenges with the `spoiler` shortcode:\n\n```markdown\n{{</* spoiler text=\"👉 Click to view the solution\" */>}}\nYou found me!\n{{</* /spoiler */>}}\n```\n\nrenders as\n\n{{< spoiler text=\"👉 Click to view the solution\" >}} You found me 🎉 {{< /spoiler >}}\n\n## Math\n\nHugoBlox Kit supports a Markdown extension for $\\LaTeX$ math. You can enable this feature by toggling the `math` option in your `config/_default/params.yaml` file.\n\nTo render _inline_ or _block_ math, wrap your LaTeX math with `{{</* math */>}}$...${{</* /math */>}}` or `{{</* math */>}}$$...$${{</* /math */>}}`, respectively.\n\n> [!NOTE]\n> We wrap the LaTeX math in the Hugo Blox _math_ shortcode to prevent Hugo rendering our math as Markdown.\n\nExample **math block**:\n\n```latex\n{{</* math */>}}\n$$\n\\gamma_{n} = \\frac{ \\left | \\left (\\mathbf x_{n} - \\mathbf x_{n-1} \\right )^T \\left [\\nabla F (\\mathbf x_{n}) - \\nabla F (\\mathbf x_{n-1}) \\right ] \\right |}{\\left \\|\\nabla F(\\mathbf{x}_{n}) - \\nabla F(\\mathbf{x}_{n-1}) \\right \\|^2}\n$$\n{{</* /math */>}}\n```\n\nrenders as\n\n{{< math >}}\n$$\\gamma_{n} = \\frac{ \\left | \\left (\\mathbf x_{n} - \\mathbf x_{n-1} \\right )^T \\left [\\nabla F (\\mathbf x_{n}) - \\nabla F (\\mathbf x_{n-1}) \\right ] \\right |}{\\left \\|\\nabla F(\\mathbf{x}_{n}) - \\nabla F(\\mathbf{x}_{n-1}) \\right \\|^2}$$\n{{< /math >}}\n\nExample **inline math** `{{</* math */>}}$\\nabla F(\\mathbf{x}_{n})${{</* /math */>}}` renders as {{< math >}}$\\nabla F(\\mathbf{x}_{n})${{< /math >}}.\n\nExample **multi-line math** using the math linebreak (`\\\\`):\n\n```latex\n{{</* math */>}}\n$$f(k;p_{0}^{*}) = \\begin{cases}p_{0}^{*} & \\text{if }k=1, \\\\\n1-p_{0}^{*} & \\text{if }k=0.\\end{cases}$$\n{{</* /math */>}}\n```\n\nrenders as\n\n{{< math >}}\n\n$$\nf(k;p_{0}^{*}) = \\begin{cases}p_{0}^{*} & \\text{if }k=1, \\\\\n1-p_{0}^{*} & \\text{if }k=0.\\end{cases}\n$$\n\n{{< /math >}}\n\n## Code\n\nHugoBlox Kit utilises Hugo's Markdown extension for highlighting code syntax. The code theme can be selected in the `config/_default/params.yaml` file.\n\n\n    ```python\n    import pandas as pd\n    data = pd.read_csv(\"data.csv\")\n    data.head()\n    ```\n\nrenders as\n\n```python\nimport pandas as pd\ndata = pd.read_csv(\"data.csv\")\ndata.head()\n```\n\n## Inline Images\n\n```go\n{{</* icon name=\"python\" */>}} Python\n```\n\nrenders as\n\n{{< icon name=\"python\" >}} Python\n\n## Did you find this page helpful? Consider sharing it 🙌\n"
  },
  {
    "path": "templates/startup-landing-page/content/changelog/_index.md",
    "content": "---\ntitle: Changelog\nview: date-title-summary\n---\n"
  },
  {
    "path": "templates/startup-landing-page/content/changelog/v1.0/index.md",
    "content": "---\ntitle: \"v1.0 — Initial Release\"\ndate: 2026-01-15\nsummary: \"The first stable release of our platform, featuring the page builder, block system, and Tailwind 4 integration.\"\nversion: \"1.0.0\"\n---\n\n## What's New\n\n- **Page Builder** — Build landing pages with drag-and-drop blocks\n- **Block System** — Hero, Features, CTA, Testimonials, Stats, and more\n- **Tailwind CSS 4** — Modern utility-first styling with dark mode support\n- **Preact Components** — Fast, lightweight client-side interactivity\n- **SEO Optimized** — Automatic sitemaps, RSS feeds, and structured data\n- **Multi-language** — 35+ language packs out of the box\n\n## Getting Started\n\nCheck out the [documentation](https://docs.hugoblox.com/) to get started with your first site.\n"
  },
  {
    "path": "templates/startup-landing-page/content/changelog/v1.1/index.md",
    "content": "---\ntitle: \"v1.1 — Footer & Icon Improvements\"\ndate: 2026-02-18\nsummary: \"Multi-column footer with social icons, improved icon rendering, and changelog section.\"\nversion: \"1.1.0\"\n---\n\n## What's New\n\n- **Multi-column Footer** — New `columns` footer style with logo, tagline, and navigation\n- **Social Icons** — Site-wide social links rendered in the footer via `identity.social.links`\n- **Icon Rendering** — Robust SVG sizing strategy with `1em` default for inline icons\n\n## Improvements\n\n- Icons now self-size to `1em` by default, eliminating 0px collapse bugs\n- Footer branding supports configurable logo height and SVG scaling\n- Feature block icons bumped to larger size for better visual presence\n\n## Content\n\n- **Changelog Section** — New standalone section at `/changelog/` using the `date-title-summary` view\n"
  },
  {
    "path": "templates/startup-landing-page/content/privacy.md",
    "content": "---\ntitle: Privacy\ndate: 2023-12-01\nshare: false\n---\n\nAdd your company privacy policy here...\n"
  },
  {
    "path": "templates/startup-landing-page/content/terms.md",
    "content": "---\ntitle: Terms of Service\ndate: 2023-12-01\nshare: false\n---\n\nAdd your company legal terms here...\n"
  },
  {
    "path": "templates/startup-landing-page/data/authors/me.yaml",
    "content": "schema: hugoblox/author/v1\nslug: me\nis_owner: true\nname:\n  display: 吳健雄\n  given: Shiung Wu\n  family: Chien\n  pronunciation: Chien Shiung Wu\n  pronouns: she/her\nstatus:\n  icon: \"☕️\"\nrole: Professor of Artificial Intelligence\nbio: My research interests include distributed robotics, mobile computing and programmable matter.\naffiliations:\n  - name: Stanford University\n    url: https://www.stanford.edu/\nlinks:\n  - icon: at-symbol\n    url: mailto:your-email@example.com\n    label: E-mail Me\n  - icon: brands/x\n    url: https://x.com/MakeOwnable\n  - icon: brands/instagram\n    url: https://www.instagram.com/\n  - icon: brands/linkedin\n    url: https://www.linkedin.com/\n  - icon: academicons/cv\n    url: uploads/resume.pdf\n    label: Download my resume\n  - icon: rss\n    url: ./post/index.xml\n    label: Subscribe to my blog via RSS feed\n"
  },
  {
    "path": "templates/startup-landing-page/go.mod",
    "content": "module github.com/HugoBlox/theme-landing-page\n\ngo 1.19\n\nrequire (\n\tgithub.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652\n\tgithub.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c\n)\n"
  },
  {
    "path": "templates/startup-landing-page/hugoblox.yaml",
    "content": "build:\n  hugo_version: '0.156.0'\ndeploy:\n  # Deployment target: github-pages, netlify, vercel, cloudflare, or none\n  host: 'github-pages'\ntemplate:\n  id: \"landing-page\"\n  name: \"Landing Page\"\n"
  },
  {
    "path": "templates/startup-landing-page/netlify.toml",
    "content": "[build]\n  command = \"\"\"\n    set -e\n    echo \"=== Starting Blog build process ===\"\n    echo \"Node version: $(node --version)\"\n    echo \"pnpm version: $(pnpm --version)\"\n    echo \"Hugo version: $(hugo version)\"\n    echo \"Go version: $(go version || echo 'Go not available')\"\n    \n    echo \"=== Installing dependencies ===\"\n    pnpm install --verbose --no-frozen-lockfile\n    \n    echo \"=== Running Hugo build ===\"\n    hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings\n    \n    echo \"=== Running Pagefind indexing ===\"\n    pnpm run pagefind\n    \n    echo \"=== Build completed successfully ===\"\n  \"\"\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.156.0\"\n  GO_VERSION = \"1.21.5\"\n  NODE_VERSION = \"22\"\n  # Ensure Netlify's implicit install step does not enforce frozen lockfiles\n  PNPM_FLAGS = \"--no-frozen-lockfile\"\n  HUGO_ENABLEGITINFO = \"true\"\n  HUGO_LOG_I18N_WARNINGS = \"true\"\n  HUGO_LOG_WARNINGS = \"true\"\n  FORCE_COLOR = \"1\"\n  PNPM_LOG_LEVEL = \"debug\"\n\n[context.production.environment]\n  HUGO_ENV = \"production\"\n\n[context.deploy-preview]\n  command = \"\"\"\n    set -e\n    echo \"=== Deploy Preview Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[context.branch-deploy]\n  command = \"\"\"\n    set -e\n    echo \"=== Branch Deploy Build ===\"\n    echo \"Deploy URL: $DEPLOY_PRIME_URL\"\n    pnpm install --verbose --no-frozen-lockfile\n    hugo --gc --minify -b $DEPLOY_PRIME_URL --logLevel debug --printI18nWarnings --printPathWarnings\n    pnpm run pagefind\n  \"\"\"\n\n[[plugins]]\n  package = \"netlify-plugin-hugo-cache-resources\"\n  [plugins.inputs]\n    debug = true\n"
  },
  {
    "path": "templates/startup-landing-page/package.json",
    "content": "{\n  \"name\": \"hugo-blox-landing-page-starter\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"description\": \"Landing page starter template for Hugo Blox with Tailwind CSS v4\",\n  \"scripts\": {\n    \"dev\": \"hugo server --disableFastRender\",\n    \"build\": \"hugo --minify && pnpm run pagefind\",\n    \"pagefind\": \"pagefind --site public\"\n  },\n  \"dependencies\": {\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.10\",\n    \"pagefind\": \"^1.4.0\",\n    \"preact\": \"^10.27.2\",\n    \"tailwindcss\": \"^4.1.12\"\n  }\n}\n"
  },
  {
    "path": "templates/startup-landing-page/theme.toml",
    "content": "name = \"Landing Page Builder\"\nlicense = \"MIT\"\nlicenselink = \"https://github.com/HugoBlox/theme-landing-page/blob/main/LICENSE.md\"\ndescription = \"Easily build your landing page with pre-designed blocks. Create beautiful startup websites, marketing websites, and landing pages to accelerate your business growth.\"\n\nhomepage = \"https://github.com/HugoBlox/theme-landing-page\"\ndemosite = \"https://theme-landing-page.netlify.app/\"\n\ntags = [\"landing\", \"docs\", \"blog\", \"responsive\", \"minimal\", \"light\", \"dark\", \"multilingual\", \"dark mode\", \"tailwind\", \"company\", \"gallery\"]\nfeatures = [\"secure\", \"fast\", \"search\", \"dark mode\", \"widgets\"]\n\n# If the theme has a single author\n[author]\n  name = \"George Cushen\"\n  homepage = \"https://georgecushen.com/\"\n"
  },
  {
    "path": "test/config.yaml",
    "content": "title: Hugo Blox Test\nbaseURL: https://example.com\nbuild:\n  buildStats:\n    enable: true\nmodule:\n  imports:\n    - path: github.com/HugoBlox/kit/modules/blox\noutputs:\n  home: [HTML, RSS, WebAppManifest]\ndisableAliases: true\ntaxonomies: []\nmarkup:\n  _merge: deep\nsecurity:\n  _merge: deep\nparams:\n  header:\n    navbar:\n      enable: false\n  extensions:\n    cms:\n      local_backend: true\n      publish_mode:\n"
  },
  {
    "path": "test/content/_index.md",
    "content": "---\ntitle: Home\ntype: landing\ndate: 2023-11-01\n# Sections are loaded from data/pages/home.yaml via hbx/sections.html\n---\n\nThis is the Hugo Blox test site home page.\nThe page sections are dynamically loaded from `data/pages/home.yaml`.\n"
  },
  {
    "path": "test/content/linked/index.md",
    "content": "---\ntitle: Linked Blocks Demo\ntype: landing\ndate: 2025-09-22\n\n# Test per-section refs (linked-data) with inline overrides (titles)\nsections:\n  - ref: blocks/hero_basic\n    content:\n      title: \"**Linked Blocks** Test Page\"\n  - ref: blocks/features_basic\n    content:\n      title: \"What You Get\"\n---\n"
  },
  {
    "path": "test/data/blocks/features_basic.yaml",
    "content": "# Features block configuration using re-usable blocks approach (data/blocks/features_basic.yaml)\nblock: features\nid: features\ncontent:\n  title: \"Why Choose Hugo Blox?\"\n  items:\n    - name: \"Lightning Fast\"\n      description: \"Static site generation with Preact hydration\"\n      icon: \"bolt\"\n    - name: \"Type Safe\"\n      description: \"Full TypeScript support for all components\"\n      icon: \"shield-check\"\n    - name: \"SEO Optimized\"\n      description: \"Server-side rendering with progressive enhancement\"\n      icon: \"magnifying-glass\"\ndesign:\n  columns: \"3\"\n"
  },
  {
    "path": "test/data/blocks/hero_basic.yaml",
    "content": "# Hero block configuration using re-usable blocks approach (data/blocks/hero_basic.yaml)\nblock: hero\ncontent:\n  title: \"**Build Anything** with Hugo Blox\"\n  text: |\n    Create stunning websites with our Preact-powered components.\n    Fast, flexible, and future-proof.\n  primary_action:\n    text: \"Get Started\"\n    url: \"#features\"\n    icon: \"arrow-right\"\n  secondary_action:\n    text: \"View Documentation\"\n    url: \"/\"\ndesign:\n  css_class: \"hero-gradient\"\n  background:\n    gradient:\n      start: \"primary-600\"\n      end: \"primary-400\"\n      direction: \"135\"\n"
  },
  {
    "path": "test/data/pages/home.yaml",
    "content": "# Home page configuration using data-driven approach (data/pages/home.yaml)\ntitle: Home\ntype: landing\ndate: 2023-11-01\n\nsections:\n  - block: hero\n    content:\n      title: \"**Build Anything** with Hugo Blox\"\n      text: |\n        Create stunning websites with our Preact-powered components.\n        Fast, flexible, and future-proof.\n      announcement:\n        text: \"🎉 Introducing Preact Components\"\n        link:\n          text: \"Learn more\"\n          url: \"/linked\"\n      primary_action:\n        text: \"Get Started\"\n        url: \"#features\"\n        icon: \"hero/arrow-right\"\n      secondary_action:\n        text: \"View Documentation\"\n        url: \"/linked\"\n    design:\n      css_class: \"hero-gradient\"\n      background:\n        gradient:\n          start: \"primary-600\"\n          end: \"primary-400\"\n          direction: \"135\"\n\n  - block: features\n    id: features\n    content:\n      title: \"Why Choose Hugo Blox?\"\n      items:\n        - name: \"Lightning Fast\"\n          description: \"Static site generation with Preact hydration\"\n          icon: \"bolt\"\n        - name: \"Type Safe\"\n          description: \"Full TypeScript support for all components\"\n          icon: \"shield-check\"\n        - name: \"SEO Optimized\"\n          description: \"Server-side rendering with progressive enhancement\"\n          icon: \"magnifying-glass\"\n    design:\n      columns: \"3\"\n\n  - block: cta-card\n    content:\n      title: \"Ready to get started?\"\n      text: \"Join 250,000+ users building with Hugo Blox\"\n      button:\n        text: \"Start Building\"\n        url: \"https://hugoblox.com\"\n    design:\n      background:\n        color:\n          light: \"gray-50\"\n          dark: \"gray-900\"\n"
  },
  {
    "path": "test/go.mod",
    "content": "module github.com/HugoBlox/kit/test\n\ngo 1.19\n\nrequire github.com/HugoBlox/kit/modules/blox v0.0.0\nreplace github.com/HugoBlox/kit/modules/blox => ../modules/blox\n"
  },
  {
    "path": "test/package.json",
    "content": "{\n  \"name\": \"hugo-blox-test\",\n  \"version\": \"0.0.1\",\n  \"description\": \"Hugo Blox Test Build\",\n  \"main\": \"\",\n  \"repository\": \"https://github.com/HugoBlox/kit\",\n  \"author\": \"George Cushen\",\n  \"license\": \"MIT\",\n  \"private\": true,\n  \"packageManager\": \"pnpm@10.14.0\",\n  \"dependencies\": {\n    \"tailwindcss\": \"^4.1.12\",\n    \"@tailwindcss/cli\": \"^4.1.12\",\n    \"@tailwindcss/typography\": \"^0.5.15\"\n  },\n  \"scripts\": {\n    \"view\": \"hugo server --port 8080 --bind 0.0.0.0\",\n    \"build\": \"hugo --minify --cleanDestinationDir --gc --templateMetrics --templateMetricsHints\",\n    \"cms\": \"(trap 'kill 0' SIGINT; pnpm dlx netlify-cms-proxy-server & hugo server --port 8080 --bind 0.0.0.0)\"\n  }\n}\n"
  },
  {
    "path": "vite.config.js",
    "content": "/**\n * Vite Configuration for Vendoring JavaScript Libraries\n *\n * This config is used by Hugo Blox maintainers to copy third-party\n * JavaScript libraries from node_modules into the Hugo module's assets.\n *\n * Usage: pnpm run vendor:libs\n */\n\nimport {resolve} from \"node:path\";\nimport del from \"rollup-plugin-delete\";\nimport {defineConfig} from \"vite\";\nimport {viteStaticCopy} from \"vite-plugin-static-copy\";\n\nconst MODULE_DIR = \"modules/blox\";\nconst OUTPUT_DIR = resolve(MODULE_DIR, \"assets/dist/lib\");\n\nexport default defineConfig({\n  build: {\n    emptyOutDir: true,\n    outDir: OUTPUT_DIR,\n    lib: {\n      entry: resolve(MODULE_DIR, \"assets/js/vendor-libs.js\"),\n      formats: [\"es\"],\n      fileName: \"vendor-libs\",\n    },\n    rollupOptions: {\n      // Don't bundle these libraries, just copy them\n      external: [\"mermaid\", \"plotly.js\", \"katex\", \"markmap-autoloader\", \"alpinejs\"],\n    },\n  },\n\n  plugins: [\n    // Copy vendor libraries to module assets\n    viteStaticCopy({\n      targets: [\n        // Mermaid - Diagram rendering\n        {\n          src: \"node_modules/mermaid/dist/mermaid.min.js\",\n          dest: \"mermaid/\",\n        },\n\n        // Plotly - Interactive charts\n        {\n          src: \"node_modules/plotly.js/dist/plotly.min.js\",\n          dest: \"plotly/\",\n        },\n\n        // KaTeX - Math rendering\n        {\n          src: \"node_modules/katex/dist/katex.min.js\",\n          dest: \"katex/\",\n        },\n        {\n          src: \"node_modules/katex/dist/katex.min.css\",\n          dest: \"katex/\",\n        },\n        {\n          src: \"node_modules/katex/dist/contrib/auto-render.min.js\",\n          dest: \"katex/\",\n        },\n        {\n          src: \"node_modules/katex/dist/fonts/\",\n          dest: \"katex/\",\n        },\n\n        // Markmap - Mind map rendering\n        {\n          src: \"node_modules/markmap-autoloader/dist/index.js\",\n          dest: \"markmap/\",\n        },\n        // Alpine.js\n        {\n          src: \"node_modules/alpinejs/dist/cdn.min.js\",\n          dest: \"alpinejs/\",\n        },\n\n        // Preact for interactive components\n        {\n          src: \"node_modules/preact/dist/preact.min.js\",\n          dest: \"preact/\",\n        },\n        {\n          src: \"node_modules/preact/dist/preact.min.js.map\",\n          dest: \"preact/\",\n        },\n        {\n          src: \"node_modules/preact/hooks/dist/hooks.umd.js\",\n          dest: \"preact/\",\n          rename: \"hooks.min.js\",\n        },\n      ],\n    }),\n\n    // Clean up any unwanted build artifacts\n    del({\n      targets: `${OUTPUT_DIR}/vendor-libs.js`, // Remove the dummy entry file\n      hook: \"writeBundle\",\n    }),\n  ],\n});\n"
  }
]