[
  {
    "path": ".github/FUNDING.yml",
    "content": "github: [tjdevries, Conni2461, fdschmidt93, jamestrew]\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.yml",
    "content": "name: Bug report\ndescription: Report a problem with Telescope\nlabels: [bug]\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Before reporting: search [existing issues](https://github.com/nvim-telescope/telescope.nvim/issues) and make sure that both Telescope and its dependencies are updated to the latest version.\n  - type: textarea\n    attributes:\n      label: \"Description\"\n      description: \"A short description of the problem you are reporting.\"\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: \"Neovim version\"\n      description: \"Output of `nvim --version`\"\n      render: markdown\n      placeholder: |\n        NVIM v0.6.0-dev+209-g0603eba6e\n        Build type: Release\n        LuaJIT 2.1.0-beta3\n    validations:\n      required: true\n  - type: input\n    attributes:\n      label: \"Operating system and version\"\n      placeholder: \"macOS 11.5\"\n    validations:\n      required: true\n  - type: input\n    attributes:\n      label: \"Telescope version / branch / rev\"\n      placeholder: \"telescope 0.1.0\"\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: \"checkhealth telescope\"\n      description: \"Output of `:checkhealth telescope`\"\n      render: markdown\n      placeholder: |\n        health#telescope#check\n        ========================================================================\n        ## Checking for required plugins\n          - OK: plenary installed.\n          - OK: nvim-treesitter installed.\n\n        ## Checking external dependencies\n          - OK: rg: found ripgrep 13.0.0\n          - OK: fd: found fd 8.2.1\n\n        ## ===== Installed extensions =====\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: \"Steps to reproduce\"\n      description: \"Steps to reproduce using the minimal config provided below.\"\n      placeholder: |\n        1. `nvim -nu minimal.lua`\n        2. ...\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: \"Expected behavior\"\n      description: \"A description of the behavior you expected:\"\n  - type: textarea\n    attributes:\n      label: \"Actual behavior\"\n      description: \"Observed behavior (may optionally include logs, images, or videos).\"\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: \"Minimal config\"\n      description: \"Minimal(!) configuration necessary to reproduce the issue. Save this as `minimal.lua` and run with `nvim -nu minimal.lua`. If _absolutely_ necessary, add plugins and config options from your `init.lua` at the indicated lines.\"\n      render: Lua\n      value: |\n        local root = vim.fn.fnamemodify(\"./.repro\", \":p\")\n\n        -- set stdpaths to use .repro\n        for _, name in ipairs { \"config\", \"data\", \"state\", \"cache\" } do\n          vim.env[(\"XDG_%s_HOME\"):format(name:upper())] = root .. \"/\" .. name\n        end\n\n        -- bootstrap lazy\n        local lazypath = root .. \"/plugins/lazy.nvim\"\n        if not vim.uv.fs_stat(lazypath) then\n          vim.fn.system {\n            \"git\",\n            \"clone\",\n            \"--filter=blob:none\",\n            \"https://github.com/folke/lazy.nvim.git\",\n            lazypath,\n          }\n        end\n        vim.opt.runtimepath:prepend(lazypath)\n\n        -- install plugins\n        local plugins = {\n          {\n            \"nvim-telescope/telescope.nvim\",\n            dependencies = {\n              \"nvim-lua/plenary.nvim\",\n            },\n            config = function()\n              -- ADD INIT.LUA SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE\n              require(\"telescope\").setup {}\n            end,\n          },\n        }\n\n        require(\"lazy\").setup(plugins, {\n          root = root .. \"/plugins\",\n        })\n    validations:\n      required: true\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: false\ncontact_links:\n   - name: Question\n     url: https://https://github.com/nvim-telescope/telescope.nvim/discussions\n     about: Usage questions, support requests, and general discussions\n\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: enhancement\nassignees: ''\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "# Description\n\nPlease include a summary of the change and which issue is fixed. Please also\ninclude relevant motivation and context\n\nFixes # (issue)\n\n## Type of change\n\nPlease delete options that are not relevant.\n\n- Bug fix (non-breaking change which fixes an issue)\n- New feature (non-breaking change which adds functionality)\n- Breaking change (fix or feature that would cause existing functionality to not work as expected)\n- This change requires a documentation update\n\n# How Has This Been Tested?\n\nPlease describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list relevant details about your configuration\n\n- [ ] Test A\n- [ ] Test B\n\n**Configuration**:\n* Neovim version (nvim --version):\n* Operating system and version:\n\n# Checklist:\n\n- [ ] My code follows the style guidelines of this project (stylua)\n- [ ] I have performed a self-review of my own code\n- [ ] I have commented my code, particularly in hard-to-understand areas\n- [ ] I have made corresponding changes to the documentation (lua annotations)\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: \"weekly\"\n    commit-message:\n      prefix: \"ci\"\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: Tests\n\non:\n  push:\n    branches:\n      - \"master\"\n  pull_request:\n    branches:\n      - \"master\"\n  workflow_dispatch:\n\njobs:\n  unit_tests:\n    name: unit tests\n    runs-on: ${{ matrix.os }}\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ubuntu-latest, macos-latest, windows-latest]\n        rev: [nightly, stable, v0.10.4]\n        include:\n          - os: ubuntu-latest\n            install-rg: sudo apt-get update && sudo apt-get install -y ripgrep\n          - os: macos-latest\n            install-rg: brew update && brew install ripgrep\n          - os: windows-latest\n            install-rg: choco install ripgrep\n\n    steps:\n      - uses: actions/checkout@v6\n\n      - uses: rhysd/action-setup-vim@v1\n        with:\n          neovim: true\n          version: ${{ matrix.rev }}\n\n      - name: Prepare\n        run: |\n          ${{ matrix.install-rg }}\n          rg --version\n\n          git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ../plenary.nvim\n          git clone --depth 1 https://github.com/nvim-tree/nvim-web-devicons ../nvim-web-devicons\n\n      - name: Run tests\n        run: |\n          nvim --version\n          make test\n"
  },
  {
    "path": ".github/workflows/docgen.yml",
    "content": "name: Generate docs\n\non:\n  pull_request:\n    branches:\n      - master\n  workflow_dispatch:\n\njobs:\n  build-sources:\n    name: Generate docs\n    runs-on: ${{ matrix.os }}\n    strategy:\n      fail-fast: false\n      matrix:\n        include:\n          - os: ubuntu-latest\n            url: https://github.com/neovim/neovim/releases/download/v0.9.5/nvim-linux64.tar.gz\n    steps:\n      - uses: actions/checkout@v6\n      - run: date +%F > todays-date\n      - name: Restore cache for today's nightly.\n        uses: actions/cache@v5\n        with:\n          path: _neovim\n          key: ${{ runner.os }}-${{ matrix.url }}-${{ hashFiles('todays-date') }}\n\n      - name: Prepare\n        run: |\n          test -d _neovim || {\n            mkdir -p _neovim\n            curl -sL ${{ matrix.url }} | tar xzf - --strip-components=1 -C \"${PWD}/_neovim\"\n          }\n          mkdir -p ~/.local/share/nvim/site/pack/vendor/start\n          git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim\n          git clone https://github.com/tjdevries/tree-sitter-lua ~/.local/share/nvim/site/pack/vendor/start/tree-sitter-lua\n          ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start\n\n      - name: Build parser\n        run: |\n          # We have to build the parser every single time to keep up with parser changes\n          cd ~/.local/share/nvim/site/pack/vendor/start/tree-sitter-lua\n          git checkout 86f74dfb69c570f0749b241f8f5489f8f50adbea\n          make dist\n          cd -\n\n      - name: Generating docs\n        run: |\n          export PATH=\"${PWD}/_neovim/bin:${PATH}\"\n          export VIM=\"${PWD}/_neovim/share/nvim/runtime\"\n          nvim --version\n          make docgen\n\n      # inspired by nvim-lspconfigs\n      - name: Update documentation\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          COMMIT_MSG: |\n            [docgen] Update doc/telescope.txt\n            skip-checks: true\n        run: |\n          git config user.email \"actions@github\"\n          git config user.name \"Github Actions\"\n          git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git\n          git add doc/\n          # Only commit and push if we have changes\n          git diff --quiet && git diff --staged --quiet || (git commit -m \"${COMMIT_MSG}\"; git push origin HEAD:${GITHUB_REF})\n"
  },
  {
    "path": ".github/workflows/lint.yml",
    "content": "name: Linting and style checking\n\non:\n  push:\n    branches:\n      - \"master\"\n  pull_request:\n    branches:\n      - \"master\"\n  workflow_dispatch:\n\njobs:\n  luacheck:\n    name: Luacheck\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n\n      - name: Prepare\n        run: |\n          sudo apt-get update\n          sudo apt-get install -y luarocks\n          sudo luarocks install luacheck\n\n      - name: Lint\n        run: sudo make lint\n\n  stylua:\n    name: stylua\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: JohnnyMorganz/stylua-action@v4\n        with:\n          token: ${{ secrets.GITHUB_TOKEN }}\n          version: latest\n          # CLI arguments\n          args: --color always --check lua/\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: \"release\"\non:\n  push:\n    tags:\n      - '*'\n  workflow_dispatch:\n\njobs:\n  luarocks-upload:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - name: LuaRocks Upload\n        uses: lumen-oss/luarocks-tag-release@v7\n        env:\n          LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}\n        with:\n          summary: \"Find, Filter, Preview, Pick. All lua, all the time.\"\n          detailed_description: |\n            A highly extendable fuzzy finder over lists.\n            Built on the latest awesome features from neovim core.\n            Telescope is centered around modularity, allowing for easy customization.\n          dependencies: |\n            plenary.nvim\n          copy_directories: |\n            doc\n            ftplugin\n            plugin\n            scripts\n            autoload\n            data\n"
  },
  {
    "path": ".gitignore",
    "content": "build/\ndoc/tags\n\n.luacheckcache\n"
  },
  {
    "path": ".luacheckrc",
    "content": "-- Rerun tests only if their modification time changed.\ncache = true\n\nstd = luajit\ncodes = true\n\nself = false\n\n-- Glorious list of warnings: https://luacheck.readthedocs.io/en/stable/warnings.html\nignore = {\n  \"212\", -- Unused argument, In the case of callback function, _arg_name is easier to understand than _, so this option is set to off.\n  \"122\", -- Indirectly setting a readonly global\n}\n\nglobals = {\n  \"_\",\n  \"TelescopeGlobalState\",\n  \"_TelescopeConfigurationValues\",\n  \"_TelescopeConfigurationPickers\",\n}\n\n-- Global objects defined by the C code\nread_globals = {\n  \"vim\",\n}\n\nfiles = {\n  [\"lua/telescope/builtin/init.lua\"] = {\n    ignore = {\n      \"631\", -- allow line len > 120\n    }\n  },\n}\n"
  },
  {
    "path": ".stylua.toml",
    "content": "column_width = 120\nline_endings = \"Unix\"\nindent_type = \"Spaces\"\nindent_width = 2\nquote_style = \"AutoPreferDouble\"\ncall_parentheses = \"None\"\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\nThanks for taking the time to submit code to Telescope if you're reading this!\nWe love having new contributors and love seeing the Neovim community come around this plugin and keep making it better.\n\nAt this time, we are content with the number and functionality of the pickers we offer built\nin with Telescope and so we are currently not accepting new pickers\n(see this [issue](https://github.com/nvim-telescope/telescope.nvim/issues/1228) for a discussion on this).\n\nWe are also conservative with integrating picker specific actions and features.\nIf you're still interested in filling a particular picker need, we encourage packaging it up as its own Telescope extension.\nRead our [Bundling as extension](https://github.com/nvim-telescope/telescope.nvim/blob/master/developers.md#bundling-as-extension) guide here for more info on this.\nSee other Telescope extensions (and add yours) [here](https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions).\n\nThat said, we welcome bug fixes, documentation improvements and non-picker specific features.\nIf you're submitting a new feature, it is a good idea to create an issue first to gauge interest and feasibility.\n\nTo learn how we go about writing documentation for this project, keep reading below!\n\n## Documentation with treesitter\n\nWe are generating docs based on the tree sitter syntax tree. TJ wrote a grammar that includes the documentation in this syntax tree so we can do take this function header documentation and transform it into vim documentation. All documentation that is part of the returning module will be exported. For example:\n\n```lua\nlocal m = {}\n\n--- Test Header\n--@return 1: Returns always 1\nfunction m.a() -- or m:a()\n  return 1\nend\n\n--- Documentation\nfunction m.__b() -- or m:__b()\n  return 2\nend\n\n--- Documentation\nlocal c = function()\n  return 2\nend\n\nreturn m\n```\n\nThis will export function `a` with header documentation and the return value. Module function `b` and local function `c` will not be exported.\n\nFor a more in-depth look at how to write documentation take a look at this guide: [how to](https://github.com/tjdevries/tree-sitter-lua/blob/master/HOWTO.md)\nThis guide contains all annotations and we will update it when we add new annotations.\n\n## What is missing?\n\nThe docgen has some problems on which people can work. This would happen in [tree-sitter-lua](https://github.com/tjdevries/tree-sitter-lua) and documentation of some modules here.\nI would suggest we are documenting lua/telescope/builtin/init.lua rather than the files itself. We can use that init.lua file as \"header\" file, so we are not cluttering the other files.\nHow to help out with documentation:\n\n## Auto-updates from CI\n\nThe easy way would be:\n\n- write some docs\n- commit, push and create draft PR\n- wait a minute until the CI generates a new commit with the changes\n- Look at this commit and the changes\n- Modify documentation until its perfect. You can do `git commit --amend` and `git push --force` to remove the github ci commit again\n\n## Generate on your local machine\n\nThe other option would be setting up <https://github.com/tjdevries/tree-sitter-lua>\n\n- Install Treesitter, either with package manager or with github release\n- Install plugin as usual\n- cd to plugin\n- `mkdir -p build parser` sadly those don't exist\n- `make build_parser`\n- `ln -s ../build/parser.so parser/lua.so` We need the shared object in parser/ so it gets picked up by neovim. Either copy or symbolic link\n- Make sure that nvim-treesitter lua parser is not installed and also delete the lua queries in that repository. `queries/lua/*`. If you are not doing that you will have a bad time!\n- cd into this project\n- Write doc\n- Run `make docgen`\n- Repeat last two steps\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020-2021 nvim-telescope\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": "Makefile",
    "content": ".PHONY: test lint docgen\n\ntest:\n\tnvim --headless --noplugin -u scripts/minimal_init.vim -c \"PlenaryBustedDirectory lua/tests/automated/ { minimal_init = './scripts/minimal_init.vim' }\"\n\nlint:\n\tluacheck lua/telescope\n\ndocgen:\n\tnvim --headless --noplugin -u scripts/minimal_init.vim -c \"luafile ./scripts/gendocs.lua\" -c 'qa'\n"
  },
  {
    "path": "README.md",
    "content": "# telescope.nvim\n\n[![LuaRocks](https://img.shields.io/luarocks/v/Conni2461/telescope.nvim?logo=lua&color=purple)](https://luarocks.org/modules/Conni2461/telescope.nvim)\n\nGaze deeply into unknown regions using the power of the moon.\n\n## What Is Telescope?\n\n`telescope.nvim` is a highly extendable fuzzy finder over lists. Built on the\nlatest awesome features from `neovim` core. Telescope is centered around\nmodularity, allowing for easy customization.\n\nCommunity driven builtin [pickers](#pickers), [sorters](#sorters) and\n[previewers](#previewers).\n\n![Preview](https://i.imgur.com/TTTja6t.gif)\n<sub>For more showcases of Telescope, please visit the [Showcase\nsection](https://github.com/nvim-telescope/telescope.nvim/wiki/Showcase) in the\nTelescope Wiki</sub>\n\n## Telescope Table of Contents\n\n- [Getting Started](#getting-started)\n- [Usage](#usage)\n- [Customization](#customization)\n- [Default Mappings](#default-mappings)\n- [Pickers](#pickers)\n- [Previewers](#previewers)\n- [Sorters](#sorters)\n- [Layout](#layout-display)\n- [Themes](#themes)\n- [Commands](#vim-commands)\n- [Autocmds](#autocmds)\n- [Extensions](#extensions)\n- [API](#api)\n- [Media](#media)\n- [Contributing](#contributing)\n- [Changelog](https://github.com/nvim-telescope/telescope.nvim/blob/master/doc/telescope_changelog.txt)\n\n## Getting Started\n\nThis section should guide you to run your first builtin pickers.\n\n[Neovim (>v0.10.4)](https://github.com/neovim/neovim/releases/tag/v0.10.4) or the\nlatest neovim nightly commit is required for `telescope.nvim` to work.\nThe neovim version also needs to be compiled with LuaJIT; PUC Lua is not fully supported,\nboth for performance reasons and because extensions may rely on FFI.\n\n### Required dependencies\n\n- [nvim-lua/plenary.nvim](https://github.com/nvim-lua/plenary.nvim) is required.\n\n### Suggested dependencies\n\n- [BurntSushi/ripgrep](https://github.com/BurntSushi/ripgrep) is required for\n  `live_grep` and `grep_string` and is the first priority for `find_files`.\n\nWe also strongly suggest installing a native telescope sorter to significantly improve\nsorting performance:\n* [telescope-fzf-native.nvim](https://github.com/nvim-telescope/telescope-fzf-native.nvim)\nor\n* [telescope-fzy-native.nvim](https://github.com/nvim-telescope/telescope-fzy-native.nvim).\nFor more information and a performance benchmark take a look at the\n[Extensions](https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions)\nwiki.\n\n### Optional dependencies\n\n- [sharkdp/fd](https://github.com/sharkdp/fd) (finder)\n- [devicons](https://github.com/nvim-tree/nvim-web-devicons) (icons)\n\n### Installation\n\nWe recommend pinning to the latest release\n[tag](https://github.com/nvim-telescope/telescope.nvim/tags),\ne.g. using [lazy.nvim](https://github.com/folke/lazy.nvim)\n\n```lua\n{\n    'nvim-telescope/telescope.nvim', version = '*',\n    dependencies = {\n        'nvim-lua/plenary.nvim',\n        -- optional but recommended\n        { 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' },\n    }\n}\n```\n\n### Checkhealth\n\nMake sure you call `:checkhealth telescope` after installing telescope to ensure\neverything is set up correctly.\n\nAfter this setup you can continue reading here or switch to `:help telescope`\nto get an understanding of how to use Telescope and how to configure it.\n\n## Usage\n\nTry the command `:Telescope find_files`\nto see if `telescope.nvim` is installed correctly.\n\n```lua\nlocal builtin = require('telescope.builtin')\nvim.keymap.set('n', '<leader>ff', builtin.find_files, { desc = 'Telescope find files' })\nvim.keymap.set('n', '<leader>fg', builtin.live_grep, { desc = 'Telescope live grep' })\nvim.keymap.set('n', '<leader>fb', builtin.buffers, { desc = 'Telescope buffers' })\nvim.keymap.set('n', '<leader>fh', builtin.help_tags, { desc = 'Telescope help tags' })\n```\n\nSee [builtin pickers](#pickers) for a list of all builtin functions.\n\n## Customization\n\nThis section should help you explore available options to configure and\ncustomize your `telescope.nvim`.\n\nUnlike most vim plugins, `telescope.nvim` can be customized by either applying\ncustomizations globally, or individually per picker.\n\n- **Global Customization** affecting all pickers can be done through the main\n  `setup()` method (see defaults below)\n- **Individual Customization** affecting a single picker by passing `opts` to\n  builtin pickers (e.g. `builtin.find_files(opts)`) see\n  [Configuration recipes](https://github.com/nvim-telescope/telescope.nvim/wiki/Configuration-Recipes)\n  wiki page for ideas.\n\n### Telescope setup structure\n\n```lua\nrequire('telescope').setup{\n  defaults = {\n    -- Default configuration for telescope goes here:\n    -- config_key = value,\n    mappings = {\n      i = {\n        -- map actions.which_key to <C-h> (default: <C-/>)\n        -- actions.which_key shows the mappings for your picker,\n        -- e.g. git_{create, delete, ...}_branch for the git_branches picker\n        [\"<C-h>\"] = \"which_key\"\n      }\n    }\n  },\n  pickers = {\n    -- Default configuration for builtin pickers goes here:\n    -- picker_name = {\n    --   picker_config_key = value,\n    --   ...\n    -- }\n    -- Now the picker_config_key will be applied every time you call this\n    -- builtin picker\n  },\n  extensions = {\n    -- Your extension configuration goes here:\n    -- extension_name = {\n    --   extension_config_key = value,\n    -- }\n    -- please take a look at the readme of the extension you want to configure\n  }\n}\n```\n\nTo look at what default configuration options exist please read: `:help\ntelescope.setup()`. For picker specific `opts` please read: `:help\ntelescope.builtin`.\n\nTo embed the above code snippet in a `.vim` file\n(for example in `after/plugin/telescope.nvim.vim`),\nwrap it in `lua << EOF code-snippet EOF`:\n\n```lua\nlua << EOF\nrequire('telescope').setup{\n  -- ...\n}\nEOF\n```\n\n## Default Mappings\n\nMappings are fully customizable.\nMany familiar mapping patterns are set up as defaults.\n\n| Mappings       | Action                                                    |\n| -------------- | --------------------------------------------------------- |\n| `<C-n>/<Down>` | Next item                                                 |\n| `<C-p>/<Up>`   | Previous item                                             |\n| `j/k`          | Next/previous (in normal mode)                            |\n| `H/M/L`        | Select High/Middle/Low (in normal mode)                   |\n| `gg/G`         | Select the first/last item (in normal mode)               |\n| `<CR>`         | Confirm selection                                         |\n| `<C-x>`        | Go to file selection as a split                           |\n| `<C-v>`        | Go to file selection as a vsplit                          |\n| `<C-t>`        | Go to a file in a new tab                                 |\n| `<C-u>`        | Scroll up in preview window                               |\n| `<C-d>`        | Scroll down in preview window                             |\n| `<C-f>`        | Scroll left in preview window                             |\n| `<C-k>`        | Scroll right in preview window                            |\n| `<M-f>`        | Scroll left in results window                             |\n| `<M-k>`        | Scroll right in results window                            |\n| `<C-/>`        | Show mappings for picker actions (insert mode)            |\n| `?`            | Show mappings for picker actions (normal mode)            |\n| `<C-c>`        | Close telescope (insert mode)                             |\n| `<Esc>`        | Close telescope (in normal mode)                          |\n| `<Tab>`        | Toggle selection and move to next selection               |\n| `<S-Tab>`      | Toggle selection and move to prev selection               |\n| `<C-q>`        | Send all items not filtered to quickfixlist (qflist)      |\n| `<M-q>`        | Send all selected items to qflist                         |\n| `<C-r><C-w>`   | Insert cword in original window into prompt (insert mode) |\n| `<C-r><C-a>`   | Insert cWORD in original window into prompt (insert mode) |\n| `<C-r><C-f>`   | Insert cfile in original window into prompt (insert mode) |\n| `<C-r><C-l>`   | Insert cline in original window into prompt (insert mode) |\n\nTo see the full list of mappings, check out `lua/telescope/mappings.lua` and the\n`default_mappings` table.\n\n**Tip**: you can use `<C-/>` and `?` in insert and normal mode, respectively, to show the actions mapped to your picker.\n\nMuch like [builtin pickers](#pickers), there are a number of\n[actions](https://github.com/nvim-telescope/telescope.nvim/blob/master/lua/telescope/actions/init.lua)\nyou can pick from to remap your telescope buffer mappings, or create a new\ncustom action:\n\n```lua\n-- Built-in actions\nlocal transform_mod = require('telescope.actions.mt').transform_mod\n\n-- or create your custom action\nlocal my_cool_custom_action = transform_mod({\n  x = function(prompt_bufnr)\n    print(\"This function ran after another action. Prompt_bufnr: \" .. prompt_bufnr)\n    -- Enter your function logic here. You can take inspiration from lua/telescope/actions.lua\n  end,\n})\n```\n\nTo remap telescope mappings, please read `:help telescope.defaults.mappings`.\nTo do picker specific mappings, its suggested to do this with the `pickers`\ntable in `telescope.setup`. Each picker accepts a `mappings` table like its\nexplained in `:help telescope.defaults.mappings`.\n\n## Pickers\n\nBuilt-in functions. Ready to be bound to any key you like.\n\n### File Pickers\n\n| Functions             | Description                                                                                                                                                              |\n| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| `builtin.find_files`  | Lists files in your current working directory, respects .gitignore                                                                                                       |\n| `builtin.git_files`   | Fuzzy search through the output of `git ls-files` command, respects .gitignore                                                                                           |\n| `builtin.grep_string` | Searches for the string under your cursor or selection in your current working directory                                                                                 |\n| `builtin.live_grep`   | Search for a string in your current working directory and get results live as you type, respects .gitignore. (Requires [ripgrep](https://github.com/BurntSushi/ripgrep)) |\n\n### Vim Pickers\n\n| Functions                           | Description                                                                                                                                                 |\n| ----------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `builtin.buffers`                   | Lists open buffers in current neovim instance                                                                                                               |\n| `builtin.oldfiles`                  | Lists previously open files                                                                                                                                 |\n| `builtin.commands`                  | Lists available plugin/user commands and runs them on `<cr>`                                                                                                |\n| `builtin.tags`                      | Lists tags in current directory with tag location file preview (users are required to run ctags -R to generate tags or update when introducing new changes) |\n| `builtin.command_history`           | Lists commands that were executed recently, and reruns them on `<cr>`                                                                                       |\n| `builtin.search_history`            | Lists searches that were executed recently, and reruns them on `<cr>`                                                                                       |\n| `builtin.help_tags`                 | Lists available help tags and opens a new window with the relevant help info on `<cr>`                                                                      |\n| `builtin.man_pages`                 | Lists manpage entries, opens them in a help window on `<cr>`                                                                                                |\n| `builtin.marks`                     | Lists vim marks and their value                                                                                                                             |\n| `builtin.colorscheme`               | Lists available colorschemes and applies them on `<cr>`                                                                                                     |\n| `builtin.quickfix`                  | Lists items in the quickfix list                                                                                                                            |\n| `builtin.quickfixhistory`           | Lists all quickfix lists in your history and open them with `builtin.quickfix` or quickfix window                                                           |\n| `builtin.loclist`                   | Lists items from the current window's location list                                                                                                         |\n| `builtin.jumplist`                  | Lists Jump List entries                                                                                                                                     |\n| `builtin.vim_options`               | Lists vim options, allows you to edit the current value on `<cr>`                                                                                           |\n| `builtin.registers`                 | Lists vim registers, pastes the contents of the register on `<cr>`                                                                                          |\n| `builtin.autocommands`              | Lists vim autocommands and goes to their declaration on `<cr>`                                                                                              |\n| `builtin.spell_suggest`             | Lists spelling suggestions for the current word under the cursor, replaces word with selected suggestion on `<cr>`                                          |\n| `builtin.keymaps`                   | Lists normal mode keymappings                                                                                                                               |\n| `builtin.filetypes`                 | Lists all available filetypes                                                                                                                               |\n| `builtin.highlights`                | Lists all available highlights                                                                                                                              |\n| `builtin.current_buffer_fuzzy_find` | Live fuzzy search inside of the currently open buffer                                                                                                       |\n| `builtin.current_buffer_tags`       | Lists all of the tags for the currently open buffer, with a preview                                                                                         |\n| `builtin.resume`                    | Lists the results incl. multi-selections of the previous picker                                                                                             |\n| `builtin.pickers`                   | Lists the previous pickers incl. multi-selections (see `:h telescope.defaults.cache_picker`)                                                                |\n\n### Neovim LSP Pickers\n\n| Functions                               | Description                                                                                                                |\n| --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |\n| `builtin.lsp_references`                | Lists LSP references for word under the cursor                                                                             |\n| `builtin.lsp_incoming_calls`            | Lists LSP incoming calls for word under the cursor                                                                         |\n| `builtin.lsp_outgoing_calls`            | Lists LSP outgoing calls for word under the cursor                                                                         |\n| `builtin.lsp_document_symbols`          | Lists LSP document symbols in the current buffer                                                                           |\n| `builtin.lsp_workspace_symbols`         | Lists LSP document symbols in the current workspace                                                                        |\n| `builtin.lsp_dynamic_workspace_symbols` | Dynamically Lists LSP for all workspace symbols                                                                            |\n| `builtin.diagnostics`                   | Lists Diagnostics for all open buffers or a specific buffer. Use option `bufnr=0` for current buffer.                      |\n| `builtin.lsp_implementations`           | Goto the implementation of the word under the cursor if there's only one, otherwise show all options in Telescope          |\n| `builtin.lsp_definitions`               | Goto the definition of the word under the cursor, if there's only one, otherwise show all options in Telescope             |\n| `builtin.lsp_type_definitions`          | Goto the definition of the type of the word under the cursor, if there's only one, otherwise show all options in Telescope |\n\n### Git Pickers\n\n| Functions                    | Description                                                                                                                                                                                           |\n| ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `builtin.git_commits`        | Lists git commits with diff preview, checkout action `<cr>`, reset mixed `<C-r>m`, reset soft `<C-r>s` and reset hard `<C-r>h`                                                                        |\n| `builtin.git_bcommits`       | Lists buffer's git commits with diff preview and checks them out on `<cr>`                                                                                                                            |\n| `builtin.git_bcommits_range` | Lists buffer's git commits in a range of lines. Use options `from` and `to` to specify the range. In visual mode, lists commits for the selected lines                                                |\n| `builtin.git_branches`       | Lists all branches with log preview, checkout action `<cr>`, track action `<C-t>`, rebase action`<C-r>`, create action `<C-a>`, switch action `<C-s>`, delete action `<C-d>` and merge action `<C-y>` |\n| `builtin.git_status`         | Lists current changes per file with diff preview and add action. (Multi-selection still WIP)                                                                                                          |\n| `builtin.git_stash`          | Lists stash items in current repository with ability to apply them on `<cr>`                                                                                                                          |\n\n### Treesitter Picker\n\n| Functions            | Description                                       |\n| -------------------- | ------------------------------------------------- |\n| `builtin.treesitter` | Lists Function names, variables, ... using treesitter [`locals` queries](https://github.com/nvim-treesitter/nvim-treesitter/blob/main/CONTRIBUTING.md#locals) |\n\n### Lists Picker\n\n| Functions          | Description                                                                                                                                                                               |\n| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `builtin.planets`  | Use the telescope...                                                                                                                                                                      |\n| `builtin.builtin`  | Lists Built-in pickers and run them on `<cr>`.                                                                                                                                            |\n| `builtin.reloader` | Lists Lua modules and reload them on `<cr>`.                                                                                                                                              |\n| `builtin.symbols`  | Lists symbols inside a file `data/telescope-sources/*.json` found in your rtp. More info and symbol sources can be found [here](https://github.com/nvim-telescope/telescope-symbols.nvim) |\n\n## Previewers\n\n| Previewers                          | Description                                               |\n| ----------------------------------- | --------------------------------------------------------- |\n| `previewers.vim_buffer_cat.new`     | Default previewer for files. Uses vim buffers             |\n| `previewers.vim_buffer_vimgrep.new` | Default previewer for grep and similar. Uses vim buffers  |\n| `previewers.vim_buffer_qflist.new`  | Default previewer for qflist. Uses vim buffers            |\n| `previewers.cat.new`                | Terminal previewer for files. Uses `cat`/`bat`            |\n| `previewers.vimgrep.new`            | Terminal previewer for grep and similar. Uses `cat`/`bat` |\n| `previewers.qflist.new`             | Terminal previewer for qflist. Uses `cat`/`bat`           |\n\nThe default previewers are from now on `vim_buffer_` previewers. They use vim\nbuffers for displaying files and use tree-sitter or regex for file highlighting.\n\nThese previewers are using `vim.filetype` to guess the filetype for the\nselected file. The guessing is done by inspecting the filename, the head of the\nfile(shebang) and the tail of the file (modeline). If you have trouble with\nfiletype detection you should read `:help vim.filetype`.\n\nWe need to do it manually because we can't determine the filetype in the\ntraditional way: We don't do `bufload` and instead read the file asynchronously\nwith `vim.uv.fs_` and attach only a highlighter; otherwise the speed of the\npreviewer would slow down considerably.\n\nIf you want to configure the `vim_buffer_` previewer (e.g. you want the line to wrap), do this:\n\n```lua\nvim.api.nvim_create_autocmd(\"User\", {\n  pattern = \"TelescopePreviewerLoaded\",\n  callback = function(args)\n    if args.data.filetype ~= \"help\" then\n      vim.wo.number = true\n    elseif args.data.bufname:match(\"*.csv\") then\n      vim.wo.wrap = false\n    end\n  end,\n})\n```\n\nA data field is passed to the callback, which contains the filetype and the buffer name.\n\n```lua\n{\n  title: string, # preview window title\n  filetype: string,\n  bufname: string,\n}\n```\n\n## Sorters\n\n| Sorters                            | Description                                                     |\n| ---------------------------------- | --------------------------------------------------------------- |\n| `sorters.get_fuzzy_file`           | Telescope's default sorter for files                            |\n| `sorters.get_generic_fuzzy_sorter` | Telescope's default sorter for everything else                  |\n| `sorters.get_levenshtein_sorter`   | Using Levenshtein distance algorithm (don't use :D)             |\n| `sorters.get_fzy_sorter`           | Using fzy algorithm                                             |\n| `sorters.fuzzy_with_index_bias`    | Used to list stuff with consideration to when the item is added |\n\nA `Sorter` is called by the `Picker` on each item returned by the `Finder`. It\nreturns a number, which is equivalent to the \"distance\" between the current\n`prompt` and the `entry` returned by a `finder`.\n\n## Layout (display)\n\nLayout can be configured by choosing a specific `layout_strategy` and\nspecifying a particular `layout_config` for that strategy.\nFor more details on available strategies and configuration options,\nsee `:help telescope.layout`.\n\nSome options for configuring sizes in layouts are \"resolvable\". This means that\nthey can take different forms, and will be interpreted differently according to\nwhich form they take.\nFor example, if we wanted to set the `width` of a picker using the `vertical`\nlayout strategy to 50% of the screen width, we would specify that width\nas `0.5`, but if we wanted to specify the `width` to be exactly 80\ncharacters wide, we would specify it as `80`.\nFor more details on resolving sizes, see `:help telescope.resolve`.\n\nAs an example, if we wanted to specify the layout strategy and width,\nbut only for this instance, we could do something like:\n\n```lua\nrequire('telescope.builtin').find_files({layout_strategy='vertical',layout_config={width=0.5}})\n```\n\nIf we wanted to change the width for every time we use the `vertical`\nlayout strategy, we could add the following to our `setup()` call:\n\n```lua\nrequire('telescope').setup({\n  defaults = {\n    layout_config = {\n      vertical = { width = 0.5 }\n      -- other layout configuration here\n    },\n    -- other defaults configuration here\n  },\n  -- other configuration values here\n})\n```\n\n## Themes\n\nCommon groups of settings can be set up to allow for themes.\nWe have some built in themes but are looking for more cool options.\n\n![dropdown](https://i.imgur.com/SorAcXv.png)\n\n| Themes                | Description                                                                                 |\n| --------------------- | ------------------------------------------------------------------------------------------- |\n| `themes.get_dropdown` | A list like centered list. [dropdown](https://i.imgur.com/SorAcXv.png)                      |\n| `themes.get_cursor`   | [A cursor relative list.](https://github.com/nvim-telescope/telescope.nvim/pull/878)        |\n| `themes.get_ivy`      | Bottom panel overlay. [Ivy #771](https://github.com/nvim-telescope/telescope.nvim/pull/771) |\n\nTo use a theme, simply append it to a builtin function:\n\n```vim\nnnoremap <Leader>f :lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({}))<cr>\n\" Change an option\nnnoremap <Leader>f :lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({ winblend = 10 }))<cr>\n```\n\nOr use with a command:\n\n```vim\nTelescope find_files theme=dropdown\n```\n\nOr you can configure it in the pickers table in `telescope.setup`:\n\n```lua\nrequire('telescope').setup{\n  defaults = {\n    -- ...\n  },\n  pickers = {\n    find_files = {\n      theme = \"dropdown\",\n    }\n  },\n  extensions = {\n    -- ...\n  }\n}\n```\n\nThemes should work with every `telescope.builtin` function. If you wish to make\na theme, check out `lua/telescope/themes.lua`.\n\n## Vim Commands\n\nAll `telescope.nvim` functions are wrapped in `vim` commands for easy access,\ntab completions and setting options.\n\n```vim\n\" Show all builtin pickers\n:Telescope\n\n\" Tab completion\n:Telescope |<tab>\n:Telescope find_files\n\n\" Setting options\n:Telescope find_files prompt_prefix=🔍\n\n\" If the option accepts a Lua table as its value, you can use, to connect each\n\" command string, e.g.: find_command, vimgrep_arguments are both options that\n\" accept a Lua table as a value. So, you can configure them on the command line\n\"like so:\n:Telescope find_files find_command=rg,--ignore,--hidden,--files prompt_prefix=🔍\n```\n\nfor more information and how to realize more complex commands please read\n`:help telescope.command`.\n\n## Autocmds\n\nTelescope user autocmds:\n\n| Event                           | Description                                             |\n| ------------------------------- | ------------------------------------------------------- |\n| `User TelescopeFindPre`         | Do it before Telescope creates all the floating windows |\n| `User TelescopePreviewerLoaded` | Do it after Telescope previewer window is created       |\n| `User TelescopeResumePost`      | Do it after Telescope resume action is fully completed  |\n\n## Extensions\n\nTelescope provides the capabilities to create & register extensions, which\nimproves telescope in a variety of ways.\n\nSome extensions provide integration with external tools, outside of the scope of\n`builtins`. Others provide performance enhancements by using compiled C and\ninterfacing directly with Lua over LuaJIT's FFI library.\n\nA list of community extensions can be found in the\n[Extensions](https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions)\nwiki. Always read the README of the extension you want to install, but here is a\ngeneral overview of how most extensions work.\n\n### Loading extensions\n\nTo load an extension, use the `load_extension` function as shown in the example\nbelow:\n\n```lua\n-- This will load fzy_native and have it override the default file sorter\nrequire('telescope').load_extension('fzy_native')\n```\n\nYou may skip explicitly loading extensions (they will then be lazy-loaded), but\ntab completions will not be available right away.\n\n### Accessing pickers from extensions\n\nPickers from extensions are added to the `:Telescope` command under their\nrespective name. For example:\n\n```vim\n\" Run the `configurations` picker from nvim-dap\nTelescope dap configurations\n```\n\nThey can also be called directly from Lua:\n\n```lua\n-- Run the `configurations` picker from nvim-dap\nrequire('telescope').extensions.dap.configurations()\n```\n\n## API\n\nFor writing your own picker and for information about the API please read the\n[Developers Documentation](developers.md).\n\n## Media\n\n- [What is Telescope? (Video)](https://www.twitch.tv/teej_dv/clip/RichDistinctPlumberPastaThat)\n- [More advanced configuration (Video)](https://www.twitch.tv/videos/756229115)\n- [telescope.nvim 0.1 reflection (Video)](https://www.youtube.com/watch?v=3WEAjCXFiiM)\n- [Why Telescope? (Video)](https://www.youtube.com/watch?v=8SqFt5h2Lsg)\n- [Telescope and Nvim 0.5 Intro (Video)](https://www.youtube.com/watch?v=guxLXcG1kzQ)\n\n## Contributing\n\nAll contributions are welcome! Just open a pull request.\nPlease read [CONTRIBUTING.md](./CONTRIBUTING.md)\n\n## Related Projects\n\n- [snacks.picker](https://github.com/folke/snacks.nvim/blob/main/docs/picker.md)\n- [mini.pick](https://github.com/nvim-mini/mini.pick)\n- [fzf-lua](https://github.com/ibhagwan/fzf-lua)\n- [fzf.vim](https://github.com/junegunn/fzf.vim)\n- [denite.nvim](https://github.com/Shougo/denite.nvim)\n- [vim-clap](https://github.com/liuchengxu/vim-clap)\n"
  },
  {
    "path": "data/memes/planets/earth",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;103;48;5;236m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;103;48;5;236m▓\u001b[38;5;104;48;5;234m▒\u001b[38;5;69;48;5;234m▒\u001b[38;5;69;48;5;234m▒\u001b[38;5;62;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;233m░\u001b[38;5;61;48;5;235m▒\u001b[38;5;69;48;5;236m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;60;48;5;240m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;60;48;5;239m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;60;48;5;238m▓\u001b[38;5;61;48;5;236m▓\u001b[38;5;69;48;5;236m▓\u001b[38;5;69;48;5;236m▓\u001b[38;5;69;48;5;236m▓\u001b[38;5;69;48;5;235m▓\u001b[38;5;104;48;5;234m▒\u001b[38;5;61;48;5;235m▒\u001b[38;5;62;48;5;233m▒\u001b[38;5;104;48;5;234m▒\u001b[38;5;62;48;5;234m▒\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;233m░\u001b[38;5;69;48;5;236m▒\u001b[38;5;69;48;5;235m▒\u001b[38;5;103;48;5;237m▓\u001b[38;5;103;48;5;238m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;61;48;5;237m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;69;48;5;102m▓\u001b[38;5;60;48;5;102m▓\u001b[38;5;60;48;5;245m▓\u001b[38;5;60;48;5;244m▓\u001b[38;5;60;48;5;244m▓\u001b[38;5;60;48;5;243m▓\u001b[38;5;60;48;5;244m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;59m▓\u001b[38;5;60;48;5;240m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;60;48;5;238m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;103;48;5;237m▓\u001b[38;5;60;48;5;240m▓\u001b[38;5;103;48;5;237m▓\u001b[38;5;104;48;5;234m▒\u001b[38;5;104;48;5;234m▒\u001b[38;5;61;48;5;234m▒\u001b[38;5;62;48;5;233m▒\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;233m \u001b[38;5;27;48;5;236m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;102m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;60;48;5;247m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;68;48;5;103m▓\u001b[38;5;60;48;5;243m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;60;48;5;245m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;27;48;5;239m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;236m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;69;48;5;235m▒\u001b[38;5;68;48;5;238m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;60;48;5;238m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;61;48;5;234m▒\u001b[38;5;61;48;5;235m▒\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;238m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;239m▒\u001b[38;5;69;48;5;109m▓\u001b[38;5;69;48;5;67m▓\u001b[38;5;68;48;5;60m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;69;48;5;102m▓\u001b[38;5;68;48;5;244m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;68;48;5;244m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;60;48;5;244m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;26;48;5;245m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;60;48;5;248m▓\u001b[38;5;69;48;5;246m▓\u001b[38;5;60;48;5;244m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;60;48;5;238m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;60;48;5;238m▓\u001b[38;5;60;48;5;242m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;69;48;5;235m▒\u001b[38;5;69;48;5;236m▒\u001b[38;5;61;48;5;236m▓\u001b[38;5;60;48;5;59m▓\u001b[38;5;60;48;5;239m▓\u001b[38;5;104;48;5;234m▒\u001b[38;5;104;48;5;234m▒\u001b[38;5;69;48;5;235m▓\u001b[38;5;62;48;5;233m▒\u001b[38;5;62;48;5;233m▒\u001b[38;5;69;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;249m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;33;48;5;66m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;69;48;5;145m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;27;48;5;243m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;69;48;5;249m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;69;48;5;243m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;69;48;5;246m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;69;48;5;246m▓\u001b[38;5;69;48;5;245m▓\u001b[38;5;60;48;5;246m▓\u001b[38;5;60;48;5;247m▓\u001b[38;5;69;48;5;245m▓\u001b[38;5;69;48;5;59m▓\u001b[38;5;60;48;5;102m▓\u001b[38;5;69;48;5;236m▒\u001b[38;5;104;48;5;235m▒\u001b[38;5;69;48;5;238m▓\u001b[38;5;68;48;5;242m▓\u001b[38;5;61;48;5;236m▓\u001b[38;5;69;48;5;233m \u001b[38;5;69;48;5;234m░\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;69;48;5;234m▒\u001b[38;5;69;48;5;236m▒\u001b[38;5;61;48;5;235m▒\u001b[38;5;104;48;5;233m▒\u001b[38;5;104;48;5;233m▒\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;62;48;5;234m▒\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;69;48;5;252m▓\u001b[38;5;69;48;5;249m▓\u001b[38;5;68;48;5;245m▓\u001b[38;5;69;48;5;145m▓\u001b[38;5;68;48;5;245m▓\u001b[38;5;68;48;5;248m▓\u001b[38;5;66;48;5;242m▓\u001b[38;5;69;48;5;145m▓\u001b[38;5;69;48;5;252m▓\u001b[38;5;27;48;5;235m▓\u001b[38;5;39;48;5;244m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;24;48;5;239m▓\u001b[38;5;25;48;5;59m▓\u001b[38;5;32;48;5;239m▓\u001b[38;5;27;48;5;102m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;61;48;5;238m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;236m▓\u001b[38;5;60;48;5;237m▓\u001b[38;5;60;48;5;240m▓\u001b[38;5;69;48;5;236m▒\u001b[38;5;45;48;5;236m▓\u001b[38;5;103;48;5;240m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;69;48;5;59m▓\u001b[38;5;60;48;5;59m▓\u001b[38;5;61;48;5;236m▒\u001b[38;5;104;48;5;234m▒\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;235m▒\u001b[38;5;61;48;5;235m▓\u001b[38;5;61;48;5;234m▒\u001b[38;5;69;48;5;233m░\u001b[38;5;62;48;5;233m░\u001b[38;5;62;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;67m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;146m▒\u001b[38;5;69;48;5;146m▒\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;146m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;103;48;5;67m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;67m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;250m▓\u001b[38;5;26;48;5;7m▓\u001b[38;5;66;48;5;240m▓\u001b[38;5;42;48;5;243m▓\u001b[38;5;72;48;5;238m▓\u001b[38;5;108;48;5;235m▓\u001b[38;5;35;48;5;243m▓\u001b[38;5;68;48;5;251m▓\u001b[38;5;69;48;5;250m▓\u001b[38;5;60;48;5;252m▓\u001b[38;5;69;48;5;188m▓\u001b[38;5;69;48;5;252m▓\u001b[38;5;67;48;5;145m▓\u001b[38;5;42;48;5;240m▓\u001b[38;5;84;48;5;242m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;237m▒\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;104;48;5;235m▒\u001b[38;5;24;48;5;235m▓\u001b[38;5;25;48;5;242m▓\u001b[38;5;27;48;5;240m▓\u001b[38;5;32;48;5;237m▓\u001b[38;5;68;48;5;239m▓\u001b[38;5;68;48;5;238m▓\u001b[38;5;25;48;5;234m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;235m▒\u001b[38;5;62;48;5;233m░\u001b[38;5;69;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;110m▓\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;104;48;5;17m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;146;48;5;146m▒\u001b[38;5;146;48;5;252m▓\u001b[38;5;69;48;5;145m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;26;48;5;248m▓\u001b[38;5;68;48;5;188m▓\u001b[38;5;68;48;5;7m▓\u001b[38;5;72;48;5;239m▓\u001b[38;5;25;48;5;253m▓\u001b[38;5;66;48;5;249m▓\u001b[38;5;42;48;5;102m▓\u001b[38;5;26;48;5;252m▓\u001b[38;5;27;48;5;253m▓\u001b[38;5;27;48;5;253m▓\u001b[38;5;24;48;5;250m▓\u001b[38;5;68;48;5;244m▓\u001b[38;5;72;48;5;241m▓\u001b[38;5;27;48;5;188m▓\u001b[38;5;71;48;5;234m▓\u001b[38;5;84;48;5;234m▓\u001b[38;5;76;48;5;234m▒\u001b[38;5;84;48;5;240m▓\u001b[38;5;65;48;5;236m▓\u001b[38;5;119;48;5;236m▓\u001b[38;5;43;48;5;242m▓\u001b[38;5;68;48;5;60m▒\u001b[38;5;26;48;5;66m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;39;48;5;59m▓\u001b[38;5;66;48;5;238m▓\u001b[38;5;66;48;5;239m▓\u001b[38;5;25;48;5;246m▓\u001b[38;5;25;48;5;239m▓\u001b[38;5;31;48;5;239m▓\u001b[38;5;17;48;5;233m \u001b[38;5;69;48;5;236m▒\u001b[38;5;111;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;233m░\u001b[38;5;61;48;5;236m▓\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;62;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;104;48;5;24m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;103;48;5;61m▓\u001b[38;5;103;48;5;248m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;104;48;5;238m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;237m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;243m▓\u001b[38;5;26;48;5;253m▓\u001b[38;5;84;48;5;247m▓\u001b[38;5;65;48;5;244m▓\u001b[38;5;69;48;5;251m▓\u001b[38;5;69;48;5;254m▓\u001b[38;5;45;48;5;188m▓\u001b[38;5;69;48;5;254m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;190;48;5;244m▓\u001b[38;5;148;48;5;237m▓\u001b[38;5;76;48;5;234m▒\u001b[38;5;113;48;5;236m▓\u001b[38;5;65;48;5;59m▓\u001b[38;5;107;48;5;234m▒\u001b[38;5;113;48;5;233m▒\u001b[38;5;65;48;5;236m▓\u001b[38;5;65;48;5;239m▓\u001b[38;5;41;48;5;243m▓\u001b[38;5;65;48;5;236m▓\u001b[38;5;76;48;5;238m▓\u001b[38;5;65;48;5;241m▓\u001b[38;5;47;48;5;59m▓\u001b[38;5;65;48;5;240m▓\u001b[38;5;32;48;5;240m▓\u001b[38;5;78;48;5;235m▓\u001b[38;5;42;48;5;236m▓\u001b[38;5;43;48;5;235m▓\u001b[38;5;25;48;5;239m▓\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;236m▒\u001b[38;5;61;48;5;237m▓\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;146m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;69;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;4m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;61;48;5;103m▓\u001b[38;5;61;48;5;60m▒\u001b[38;5;103;48;5;146m▓\u001b[38;5;146;48;5;104m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;110m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;253m▓\u001b[38;5;39;48;5;251m▓\u001b[38;5;72;48;5;247m▓\u001b[38;5;221;48;5;240m▓\u001b[38;5;70;48;5;102m▓\u001b[38;5;76;48;5;244m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;94;48;5;241m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;148;48;5;242m▓\u001b[38;5;149;48;5;239m▓\u001b[38;5;107;48;5;237m▒\u001b[38;5;65;48;5;145m▓\u001b[38;5;76;48;5;236m▓\u001b[38;5;17;48;5;232m \u001b[38;5;66;48;5;251m▓\u001b[38;5;65;48;5;243m▓\u001b[38;5;31;48;5;237m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;32;48;5;188m▓\u001b[38;5;67;48;5;251m▓\u001b[38;5;84;48;5;245m▓\u001b[38;5;84;48;5;59m▓\u001b[38;5;119;48;5;237m▓\u001b[38;5;84;48;5;236m▓\u001b[38;5;65;48;5;236m▓\u001b[38;5;35;48;5;59m▓\u001b[38;5;78;48;5;236m▓\u001b[38;5;26;48;5;60m▓\u001b[38;5;17;48;5;233m \u001b[38;5;69;48;5;234m░\u001b[38;5;17;48;5;233m \u001b[38;5;69;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;103;48;5;238m▓\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;69;48;5;4m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;69;48;5;4m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;146;48;5;146m▒\u001b[38;5;69;48;5;254m▒\u001b[38;5;103;48;5;146m▓\u001b[38;5;62;48;5;189m▒\u001b[38;5;60;48;5;103m▓\u001b[38;5;146;48;5;188m▓\u001b[38;5;69;48;5;251m▓\u001b[38;5;69;48;5;255m▒\u001b[38;5;84;48;5;253m▓\u001b[38;5;99;48;5;254m▓\u001b[38;5;69;48;5;255m▓\u001b[38;5;119;48;5;251m▓\u001b[38;5;67;48;5;231m▓\u001b[38;5;101;48;5;248m▓\u001b[38;5;190;48;5;246m▓\u001b[38;5;94;48;5;59m▓\u001b[38;5;221;48;5;240m▓\u001b[38;5;178;48;5;238m▓\u001b[38;5;154;48;5;235m▒\u001b[38;5;148;48;5;237m▒\u001b[38;5;112;48;5;250m▓\u001b[38;5;118;48;5;235m▒\u001b[38;5;70;48;5;235m▒\u001b[38;5;118;48;5;234m░\u001b[38;5;84;48;5;249m▓\u001b[38;5;42;48;5;253m▓\u001b[38;5;119;48;5;145m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;109;48;5;237m▓\u001b[38;5;68;48;5;240m▓\u001b[38;5;119;48;5;237m▓\u001b[38;5;107;48;5;236m▓\u001b[38;5;119;48;5;237m▓\u001b[38;5;114;48;5;233m▒\u001b[38;5;84;48;5;234m▓\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m \u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;61;48;5;236m▒\u001b[38;5;69;48;5;238m▓\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;233m \u001b[38;5;62;48;5;24m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;104;48;5;60m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;146;48;5;104m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;146m▒\u001b[38;5;103;48;5;248m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;69;48;5;189m▒\u001b[38;5;103;48;5;248m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;188m▓\u001b[38;5;69;48;5;252m▓\u001b[38;5;69;48;5;255m░\u001b[38;5;69;48;5;189m▒\u001b[38;5;69;48;5;252m▓\u001b[38;5;65;48;5;247m▓\u001b[38;5;101;48;5;250m▓\u001b[38;5;136;48;5;102m▓\u001b[38;5;130;48;5;59m▓\u001b[38;5;179;48;5;239m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;143;48;5;239m▓\u001b[38;5;143;48;5;236m▒\u001b[38;5;136;48;5;144m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;178;48;5;239m▒\u001b[38;5;186;48;5;237m▒\u001b[38;5;190;48;5;236m▒\u001b[38;5;154;48;5;236m▒\u001b[38;5;149;48;5;235m▒\u001b[38;5;76;48;5;234m░\u001b[38;5;118;48;5;234m░\u001b[38;5;70;48;5;234m░\u001b[38;5;107;48;5;65m▓\u001b[38;5;70;48;5;239m▓\u001b[38;5;69;48;5;17m \u001b[38;5;107;48;5;244m▓\u001b[38;5;65;48;5;243m▓\u001b[38;5;25;48;5;23m░\u001b[38;5;74;48;5;251m▓\u001b[38;5;43;48;5;248m▓\u001b[38;5;41;48;5;244m▓\u001b[38;5;33;48;5;235m▒\u001b[38;5;69;48;5;237m▒\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;60;48;5;60m▓\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m░\u001b[38;5;61;48;5;236m▒\u001b[38;5;60;48;5;243m▓\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;4m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;61;48;5;104m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;104;48;5;4m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;69;48;5;110m▓\u001b[38;5;146;48;5;252m▒\u001b[38;5;146;48;5;252m▒\u001b[38;5;103;48;5;60m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;240m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;146;48;5;254m▒\u001b[38;5;60;48;5;103m▓\u001b[38;5;103;48;5;248m▓\u001b[38;5;17;48;5;17m \u001b[38;5;214;48;5;239m▓\u001b[38;5;190;48;5;234m░\u001b[38;5;172;48;5;101m▓\u001b[38;5;179;48;5;240m▓\u001b[38;5;94;48;5;59m▓\u001b[38;5;187;48;5;187m▒\u001b[38;5;143;48;5;238m▒\u001b[38;5;178;48;5;237m▒\u001b[38;5;179;48;5;101m▓\u001b[38;5;144;48;5;239m▓\u001b[38;5;144;48;5;101m▓\u001b[38;5;143;48;5;239m▓\u001b[38;5;143;48;5;237m▒\u001b[38;5;154;48;5;234m░\u001b[38;5;112;48;5;234m░\u001b[38;5;112;48;5;234m░\u001b[38;5;118;48;5;234m░\u001b[38;5;70;48;5;237m▒\u001b[38;5;112;48;5;235m▒\u001b[38;5;118;48;5;238m▓\u001b[38;5;107;48;5;236m▒\u001b[38;5;76;48;5;240m▓\u001b[38;5;84;48;5;251m▓\u001b[38;5;43;48;5;250m▓\u001b[38;5;69;48;5;254m▓\u001b[38;5;32;48;5;252m▓\u001b[38;5;68;48;5;188m▓\u001b[38;5;69;48;5;251m▓\u001b[38;5;60;48;5;249m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;60;48;5;243m▓\u001b[38;5;60;48;5;59m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;103;48;5;240m▓\u001b[38;5;62;48;5;234m▒\u001b[38;5;104;48;5;235m▒\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;104;48;5;24m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;4m▒\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;69;48;5;147m▒\u001b[38;5;69;48;5;4m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;103;48;5;103m▓\u001b[38;5;146;48;5;146m▓\u001b[38;5;104;48;5;188m▒\u001b[38;5;146;48;5;252m▒\u001b[38;5;146;48;5;252m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;146;48;5;146m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;61;48;5;238m▒\u001b[38;5;17;48;5;17m \u001b[38;5;65;48;5;102m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;214;48;5;95m▓\u001b[38;5;130;48;5;180m▒\u001b[38;5;179;48;5;236m▒\u001b[38;5;106;48;5;233m \u001b[38;5;101;48;5;101m▓\u001b[38;5;144;48;5;240m▓\u001b[38;5;143;48;5;240m▒\u001b[38;5;190;48;5;59m▓\u001b[38;5;220;48;5;238m▒\u001b[38;5;220;48;5;238m▒\u001b[38;5;149;48;5;235m░\u001b[38;5;112;48;5;236m▒\u001b[38;5;118;48;5;233m \u001b[38;5;112;48;5;102m▓\u001b[38;5;118;48;5;102m▓\u001b[38;5;118;48;5;239m▓\u001b[38;5;118;48;5;247m▓\u001b[38;5;72;48;5;188m▓\u001b[38;5;67;48;5;254m▓\u001b[38;5;65;48;5;252m▓\u001b[38;5;74;48;5;252m▓\u001b[38;5;66;48;5;7m▓\u001b[38;5;26;48;5;109m▓\u001b[38;5;60;48;5;249m▓\u001b[38;5;60;48;5;245m▓\u001b[38;5;104;48;5;236m▒\u001b[38;5;60;48;5;60m▓\u001b[38;5;60;48;5;245m▓\u001b[38;5;61;48;5;236m▒\u001b[38;5;62;48;5;234m░\u001b[38;5;61;48;5;238m▓\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m░\u001b[38;5;62;48;5;234m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;62;48;5;233m▒\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;69;48;5;4m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;61;48;5;60m▒\u001b[38;5;61;48;5;103m▓\u001b[38;5;69;48;5;110m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;146;48;5;253m▒\u001b[38;5;60;48;5;60m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;146;48;5;252m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;103;48;5;251m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;146;48;5;188m▒\u001b[38;5;103;48;5;103m▓\u001b[38;5;61;48;5;238m▓\u001b[38;5;61;48;5;60m▓\u001b[38;5;69;48;5;252m▓\u001b[38;5;190;48;5;59m▓\u001b[38;5;130;48;5;144m▒\u001b[38;5;208;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;202;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;178;48;5;240m▓\u001b[38;5;130;48;5;240m▓\u001b[38;5;136;48;5;95m▓\u001b[38;5;220;48;5;58m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;143;48;5;58m▒\u001b[38;5;191;48;5;65m▓\u001b[38;5;191;48;5;238m▓\u001b[38;5;154;48;5;236m▒\u001b[38;5;154;48;5;247m▓\u001b[38;5;70;48;5;101m▓\u001b[38;5;149;48;5;188m▓\u001b[38;5;113;48;5;246m▓\u001b[38;5;113;48;5;250m▓\u001b[38;5;118;48;5;240m▓\u001b[38;5;118;48;5;240m▓\u001b[38;5;107;48;5;236m▓\u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;234m░\u001b[38;5;61;48;5;238m▓\u001b[38;5;61;48;5;237m▓\u001b[38;5;60;48;5;247m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;61;48;5;235m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;62;48;5;233m▒\u001b[38;5;62;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;4m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;18m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;69;48;5;4m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;62;48;5;110m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;61;48;5;61m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;146;48;5;104m▒\u001b[38;5;146;48;5;146m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;248m▓\u001b[38;5;62;48;5;189m▒\u001b[38;5;103;48;5;146m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;60;48;5;247m▓\u001b[38;5;104;48;5;189m▒\u001b[38;5;103;48;5;146m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;103;48;5;254m▓\u001b[38;5;146;48;5;255m▒\u001b[38;5;69;48;5;250m▓\u001b[38;5;94;48;5;230m▒\u001b[38;5;130;48;5;230m░\u001b[38;5;223;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;130;48;5;187m▒\u001b[38;5;172;48;5;144m▓\u001b[38;5;202;48;5;180m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;208;48;5;95m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;144;48;5;241m▓\u001b[38;5;190;48;5;59m▓\u001b[38;5;64;48;5;237m▒\u001b[38;5;112;48;5;239m▓\u001b[38;5;112;48;5;241m▓\u001b[38;5;70;48;5;242m▓\u001b[38;5;118;48;5;247m▓\u001b[38;5;154;48;5;59m▓\u001b[38;5;149;48;5;238m▓\u001b[38;5;112;48;5;65m▓\u001b[38;5;112;48;5;237m▓\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;62;48;5;234m▒\u001b[38;5;17;48;5;233m \u001b[38;5;104;48;5;235m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;104;48;5;236m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;234m▒\u001b[38;5;62;48;5;234m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;61;48;5;61m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;104;48;5;238m▒\u001b[38;5;61;48;5;60m▒\u001b[38;5;61;48;5;60m▒\u001b[38;5;104;48;5;17m▒\u001b[38;5;69;48;5;255m▒\u001b[38;5;104;48;5;189m▒\u001b[38;5;69;48;5;146m▓\u001b[38;5;146;48;5;146m▒\u001b[38;5;146;48;5;146m▒\u001b[38;5;103;48;5;146m▓\u001b[38;5;103;48;5;248m▓\u001b[38;5;103;48;5;251m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;103;48;5;252m▓\u001b[38;5;60;48;5;102m▓\u001b[38;5;61;48;5;236m▒\u001b[38;5;146;48;5;253m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;06;48;5;187m▒\u001b[38;5;190;48;5;248m▓\u001b[38;5;190;48;5;245m▓\u001b[38;5;136;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;214;48;5;101m▓\u001b[38;5;179;48;5;95m▒\u001b[38;5;221;48;5;95m▒\u001b[38;5;220;48;5;239m▓\u001b[38;5;185;48;5;58m░\u001b[38;5;190;48;5;239m▓\u001b[38;5;220;48;5;144m▓\u001b[38;5;50;48;5;115m▓\u001b[38;5;29;48;5;240m▒\u001b[38;5;149;48;5;235m░\u001b[38;5;35;48;5;23m▒\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;24;48;5;23m░\u001b[38;5;149;48;5;235m▒\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;234m░\u001b[38;5;62;48;5;234m▒\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;104m▒\u001b[38;5;61;48;5;61m▓\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;61;48;5;60m▒\u001b[38;5;104;48;5;146m▒\u001b[38;5;62;48;5;189m▒\u001b[38;5;69;48;5;251m▓\u001b[38;5;111;48;5;231m \u001b[38;5;103;48;5;188m▓\u001b[38;5;146;48;5;251m▓\u001b[38;5;60;48;5;249m▓\u001b[38;5;69;48;5;255m▒\u001b[38;5;103;48;5;252m▓\u001b[38;5;60;48;5;244m▓\u001b[38;5;146;48;5;254m▓\u001b[38;5;99;48;5;103m▓\u001b[38;5;99;48;5;244m▓\u001b[38;5;60;48;5;251m▓\u001b[38;5;230;48;5;231m \u001b[38;5;25;48;5;243m▓\u001b[38;5;45;48;5;109m▒\u001b[38;5;70;48;5;22m░\u001b[38;5;58;48;5;234m░\u001b[38;5;221;48;5;101m▓\u001b[38;5;214;48;5;101m▓\u001b[38;5;221;48;5;223m░\u001b[38;5;221;48;5;180m▒\u001b[38;5;221;48;5;137m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;233m \u001b[38;5;81;48;5;31m░\u001b[38;5;111;48;5;17m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m░\u001b[38;5;61;48;5;237m▒\u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;62;48;5;234m▒\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m░\u001b[38;5;62;48;5;233m░\u001b[38;5;62;48;5;233m▒\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;104;48;5;61m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;61;48;5;61m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;104;48;5;60m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;255m \u001b[38;5;32;48;5;231m \u001b[38;5;103;48;5;146m▓\u001b[38;5;146;48;5;188m▒\u001b[38;5;60;48;5;103m▓\u001b[38;5;61;48;5;60m▓\u001b[38;5;104;48;5;237m▒\u001b[38;5;60;48;5;60m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;60;48;5;248m▓\u001b[38;5;103;48;5;254m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;99;48;5;255m▓\u001b[38;5;05;48;5;247m▓\u001b[38;5;134;48;5;102m▓\u001b[38;5;26;48;5;66m▓\u001b[38;5;68;48;5;242m▓\u001b[38;5;99;48;5;242m▓\u001b[38;5;143;48;5;239m▒\u001b[38;5;106;48;5;234m \u001b[38;5;220;48;5;95m▓\u001b[38;5;94;48;5;144m▓\u001b[38;5;179;48;5;138m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;70;48;5;235m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;233m \u001b[38;5;112;48;5;237m▒\u001b[38;5;118;48;5;237m▒\u001b[38;5;84;48;5;243m▓\u001b[38;5;69;48;5;236m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;104;48;5;236m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;104;48;5;236m▒\u001b[38;5;103;48;5;146m▓\u001b[38;5;103;48;5;239m▓\u001b[38;5;61;48;5;237m▓\u001b[38;5;104;48;5;236m▒\u001b[38;5;104;48;5;235m▒\u001b[38;5;69;48;5;234m▒\u001b[38;5;62;48;5;234m░\u001b[38;5;104;48;5;234m▒\u001b[38;5;69;48;5;232m \u001b[38;5;61;48;5;235m▓\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;233m \u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;189m░\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;4;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;61;48;5;60m▒\u001b[38;5;146;48;5;104m▓\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m░\u001b[38;5;104;48;5;17m▒\u001b[38;5;104;48;5;17m▒\u001b[38;5;104;48;5;236m▒\u001b[38;5;60;48;5;60m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;99;48;5;59m▓\u001b[38;5;60;48;5;251m▓\u001b[38;5;91;48;5;246m▓\u001b[38;5;96;48;5;102m▓\u001b[38;5;96;48;5;245m▓\u001b[38;5;56;48;5;246m▓\u001b[38;5;56;48;5;243m▓\u001b[38;5;99;48;5;243m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;149;48;5;236m▒\u001b[38;5;191;48;5;238m▒\u001b[38;5;179;48;5;101m▓\u001b[38;5;190;48;5;242m▓\u001b[38;5;190;48;5;58m▒\u001b[38;5;17;48;5;233m \u001b[38;5;61;48;5;237m▒\u001b[38;5;231;48;5;231m▓\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;107;48;5;65m▓\u001b[38;5;82;48;5;246m▓\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;69;48;5;237m▒\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;61;48;5;237m▒\u001b[38;5;60;48;5;60m▓\u001b[38;5;60;48;5;244m▓\u001b[38;5;61;48;5;237m▓\u001b[38;5;61;48;5;238m▓\u001b[38;5;62;48;5;17m▒\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;189;48;5;189m░\u001b[38;5;189;48;5;189m \u001b[38;5;27;48;5;255m \u001b[38;5;69;48;5;61m▒\u001b[38;5;61;48;5;61m▓\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;61;48;5;103m▓\u001b[38;5;104;48;5;60m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;17m░\u001b[38;5;104;48;5;237m▒\u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;17m░\u001b[38;5;61;48;5;238m▓\u001b[38;5;103;48;5;240m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;99;48;5;103m▓\u001b[38;5;99;48;5;240m▓\u001b[38;5;99;48;5;243m▓\u001b[38;5;99;48;5;245m▓\u001b[38;5;98;48;5;244m▓\u001b[38;5;56;48;5;243m▓\u001b[38;5;99;48;5;60m▓\u001b[38;5;99;48;5;239m▓\u001b[38;5;103;48;5;238m▓\u001b[38;5;154;48;5;58m░\u001b[38;5;154;48;5;237m▒\u001b[38;5;64;48;5;236m░\u001b[38;5;191;48;5;58m░\u001b[38;5;190;48;5;241m▓\u001b[38;5;143;48;5;239m▓\u001b[38;5;61;48;5;236m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;17;48;5;17m \u001b[38;5;26;48;5;60m▓\u001b[38;5;65;48;5;248m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;111;48;5;231m \u001b[38;5;69;48;5;255m░\u001b[38;5;60;48;5;243m▓\u001b[38;5;104;48;5;236m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;17m░\u001b[38;5;61;48;5;238m▒\u001b[38;5;61;48;5;238m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;104;48;5;17m▒\u001b[38;5;61;48;5;238m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;235m▒\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;234m░\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;69;48;5;110m▒\u001b[38;5;27;48;5;255m \u001b[38;5;69;48;5;67m▒\u001b[38;5;117;48;5;231m \u001b[38;5;69;48;5;189m \u001b[38;5;69;48;5;103m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;61;48;5;61m▓\u001b[38;5;62;48;5;4m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;103;48;5;60m▓\u001b[38;5;62;48;5;17m░\u001b[38;5;61;48;5;238m▒\u001b[38;5;104;48;5;236m▒\u001b[38;5;61;48;5;238m▓\u001b[38;5;103;48;5;240m▓\u001b[38;5;103;48;5;239m▓\u001b[38;5;103;48;5;240m▓\u001b[38;5;103;48;5;240m▓\u001b[38;5;60;48;5;246m▓\u001b[38;5;103;48;5;239m▓\u001b[38;5;60;48;5;238m▓\u001b[38;5;103;48;5;238m▓\u001b[38;5;104;48;5;17m▒\u001b[38;5;62;48;5;235m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;69;48;5;237m▒\u001b[38;5;118;48;5;65m▓\u001b[38;5;76;48;5;236m▓\u001b[38;5;32;48;5;237m▒\u001b[38;5;107;48;5;239m▓\u001b[38;5;82;48;5;242m▓\u001b[38;5;65;48;5;252m▓\u001b[38;5;107;48;5;248m▓\u001b[38;5;84;48;5;247m▓\u001b[38;5;119;48;5;247m▓\u001b[38;5;99;48;5;255m▓\u001b[38;5;103;48;5;252m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;103;48;5;60m▓\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m \u001b[38;5;69;48;5;102m▓\u001b[38;5;45;48;5;245m▓\u001b[38;5;68;48;5;234m▒\u001b[38;5;43;48;5;244m▓\u001b[38;5;32;48;5;241m▓\u001b[38;5;25;48;5;239m▓\u001b[38;5;39;48;5;235m▓\u001b[38;5;25;48;5;237m▓\u001b[38;5;26;48;5;235m▓\u001b[38;5;26;48;5;234m▒\u001b[38;5;25;48;5;17m░\u001b[38;5;17;48;5;232m \u001b[38;5;62;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;68m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;69;48;5;67m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;4;48;5;17m░\u001b[38;5;104;48;5;4m▒\u001b[38;5;61;48;5;60m▓\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;104;48;5;238m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;104;48;5;252m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;104;48;5;236m▒\u001b[38;5;103;48;5;252m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;61;48;5;237m▓\u001b[38;5;104;48;5;236m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;104;48;5;235m▒\u001b[38;5;61;48;5;236m▒\u001b[38;5;103;48;5;60m▓\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;64;48;5;243m▓\u001b[38;5;119;48;5;250m▓\u001b[38;5;62;48;5;17m▒\u001b[38;5;61;48;5;237m▒\u001b[38;5;104;48;5;17m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;103;48;5;60m▓\u001b[38;5;65;48;5;241m▓\u001b[38;5;41;48;5;102m▓\u001b[38;5;42;48;5;245m▓\u001b[38;5;66;48;5;248m▓\u001b[38;5;41;48;5;237m▓\u001b[38;5;31;48;5;238m▓\u001b[38;5;67;48;5;241m▓\u001b[38;5;67;48;5;237m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;26;48;5;240m▓\u001b[38;5;26;48;5;236m▓\u001b[38;5;26;48;5;236m▒\u001b[38;5;110;48;5;233m▒\u001b[38;5;27;48;5;232m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;18m░\u001b[38;5;62;48;5;24m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;104;48;5;60m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;153;48;5;255m \u001b[38;5;69;48;5;146m▒\u001b[38;5;111;48;5;255m \u001b[38;5;61;48;5;103m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;61;48;5;60m▓\u001b[38;5;17;48;5;17m░\u001b[38;5;104;48;5;238m▒\u001b[38;5;103;48;5;61m▓\u001b[38;5;17;48;5;17m░\u001b[38;5;68;48;5;255m▒\u001b[38;5;61;48;5;238m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;104;48;5;237m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;104;48;5;237m▒\u001b[38;5;104;48;5;17m▒\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;61;48;5;60m▓\u001b[38;5;17;48;5;233m \u001b[38;5;104;48;5;17m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;17m▒\u001b[38;5;27;48;5;189m░\u001b[38;5;69;48;5;17m░\u001b[38;5;104;48;5;237m▒\u001b[38;5;68;48;5;255m░\u001b[38;5;69;48;5;188m▓\u001b[38;5;65;48;5;249m▓\u001b[38;5;17;48;5;17m░\u001b[38;5;69;48;5;248m▓\u001b[38;5;79;48;5;244m▓\u001b[38;5;45;48;5;244m▓\u001b[38;5;43;48;5;145m▓\u001b[38;5;66;48;5;59m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;69;48;5;249m▓\u001b[38;5;26;48;5;240m▓\u001b[38;5;67;48;5;240m▓\u001b[38;5;27;48;5;239m▓\u001b[38;5;26;48;5;237m▓\u001b[38;5;110;48;5;234m▒\u001b[38;5;26;48;5;234m▒\u001b[38;5;69;48;5;233m▒\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;147m░\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;24m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;69;48;5;4m▒\u001b[38;5;104;48;5;239m▒\u001b[38;5;69;48;5;189m \u001b[38;5;189;48;5;255m \u001b[38;5;104;48;5;189m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;69;48;5;231m \u001b[38;5;104;48;5;146m▒\u001b[38;5;61;48;5;239m▒\u001b[38;5;61;48;5;237m▒\u001b[38;5;103;48;5;103m▓\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;146;48;5;188m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;103;48;5;248m▓\u001b[38;5;17;48;5;17m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;17m▒\u001b[38;5;104;48;5;237m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;66;48;5;102m▓\u001b[38;5;66;48;5;239m▓\u001b[38;5;45;48;5;239m▓\u001b[38;5;67;48;5;242m▓\u001b[38;5;68;48;5;244m▓\u001b[38;5;32;48;5;242m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;102m▓\u001b[38;5;69;48;5;244m▓\u001b[38;5;26;48;5;234m▒\u001b[38;5;26;48;5;234m▒\u001b[38;5;69;48;5;234m▒\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;146m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;69;48;5;60m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;61m▒\u001b[38;5;4;48;5;17m░\u001b[38;5;104;48;5;60m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;69;48;5;67m▓\u001b[38;5;62;48;5;4m░\u001b[38;5;104;48;5;4m▒\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;146m▓\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;104;48;5;237m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;60;48;5;60m▓\u001b[38;5;61;48;5;238m▒\u001b[38;5;103;48;5;146m▓\u001b[38;5;146;48;5;146m▓\u001b[38;5;103;48;5;248m▓\u001b[38;5;146;48;5;146m▓\u001b[38;5;146;48;5;252m▒\u001b[38;5;69;48;5;189m▒\u001b[38;5;60;48;5;103m▓\u001b[38;5;17;48;5;17m░\u001b[38;5;103;48;5;146m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;103;48;5;248m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;145m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;146;48;5;146m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;103m▒\u001b[38;5;66;48;5;102m▓\u001b[38;5;69;48;5;145m▓\u001b[38;5;27;48;5;246m▓\u001b[38;5;68;48;5;248m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;26;48;5;235m▒\u001b[38;5;26;48;5;234m▒\u001b[38;5;26;48;5;234m▒\u001b[38;5;69;48;5;234m▒\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;67m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;18m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;69;48;5;4m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;61;48;5;61m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;104;48;5;110m▒\u001b[38;5;62;48;5;147m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;4;48;5;17m░\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;104m▒\u001b[38;5;61;48;5;103m▓\u001b[38;5;146;48;5;146m▒\u001b[38;5;104;48;5;188m▒\u001b[38;5;146;48;5;103m▓\u001b[38;5;62;48;5;17m░\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;61m▓\u001b[38;5;17;48;5;17m░\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;17;48;5;17m \u001b[38;5;103;48;5;146m▓\u001b[38;5;69;48;5;189m▒\u001b[38;5;103;48;5;61m▓\u001b[38;5;17;48;5;17m \u001b[38;5;104;48;5;238m▒\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m░\u001b[38;5;69;48;5;67m▓\u001b[38;5;17;48;5;17m \u001b[38;5;69;48;5;238m▒\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;4m░\u001b[38;5;69;48;5;249m▓\u001b[38;5;68;48;5;103m▓\u001b[38;5;33;48;5;247m▓\u001b[38;5;39;48;5;239m▓\u001b[38;5;27;48;5;245m▓\u001b[38;5;33;48;5;239m▓\u001b[38;5;33;48;5;60m▓\u001b[38;5;110;48;5;235m▒\u001b[38;5;33;48;5;236m▒\u001b[38;5;110;48;5;235m▒\u001b[38;5;26;48;5;235m▒\u001b[38;5;69;48;5;235m▒\u001b[38;5;69;48;5;234m▒\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;189m \u001b[38;5;69;48;5;61m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;104;48;5;24m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;4;48;5;4m░\u001b[38;5;4;48;5;17m░\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;17m▒\u001b[38;5;4;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;61;48;5;103m▒\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;61;48;5;103m▓\u001b[38;5;146;48;5;146m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;103;48;5;248m▓\u001b[38;5;61;48;5;60m▓\u001b[38;5;61;48;5;60m▓\u001b[38;5;69;48;5;110m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;104;48;5;146m▒\u001b[38;5;103;48;5;60m▓\u001b[38;5;146;48;5;110m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;17;48;5;17m \u001b[38;5;69;48;5;146m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;69;48;5;250m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;27;48;5;247m▓\u001b[38;5;68;48;5;248m▓\u001b[38;5;32;48;5;236m▒\u001b[38;5;25;48;5;235m▒\u001b[38;5;25;48;5;236m▒\u001b[38;5;26;48;5;236m▒\u001b[38;5;110;48;5;235m▒\u001b[38;5;27;48;5;236m▒\u001b[38;5;69;48;5;235m▒\u001b[38;5;69;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;61;48;5;61m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;62;48;5;25m▒\u001b[38;5;61;48;5;61m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;62;48;5;4m░\u001b[38;5;104;48;5;60m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;104;48;5;24m▒\u001b[38;5;4;48;5;17m░\u001b[38;5;69;48;5;67m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;4;48;5;17m░\u001b[38;5;4;48;5;17m░\u001b[38;5;61;48;5;60m▒\u001b[38;5;61;48;5;103m▓\u001b[38;5;62;48;5;4m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;103;48;5;61m▓\u001b[38;5;62;48;5;17m▒\u001b[38;5;146;48;5;104m▒\u001b[38;5;146;48;5;146m▒\u001b[38;5;61;48;5;103m▓\u001b[38;5;104;48;5;60m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;103;48;5;61m▓\u001b[38;5;146;48;5;104m▒\u001b[38;5;61;48;5;60m▒\u001b[38;5;146;48;5;104m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;146;48;5;146m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;68;48;5;24m░\u001b[38;5;69;48;5;240m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;27;48;5;66m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;26;48;5;235m▒\u001b[38;5;26;48;5;235m▒\u001b[38;5;68;48;5;235m▒\u001b[38;5;68;48;5;235m▒\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;68m▒\u001b[38;5;69;48;5;189m \u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;104;48;5;104m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;69;48;5;110m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;4;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;61;48;5;103m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;61;48;5;60m▓\u001b[38;5;69;48;5;146m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;61;48;5;103m▓\u001b[38;5;61;48;5;60m▓\u001b[38;5;69;48;5;146m▒\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;61;48;5;60m▓\u001b[38;5;146;48;5;146m▒\u001b[38;5;146;48;5;146m▒\u001b[38;5;146;48;5;146m▒\u001b[38;5;146;48;5;146m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;146;48;5;146m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;61m▓\u001b[38;5;57;48;5;239m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;146m▒\u001b[38;5;189;48;5;189m \u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;68m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;111m░\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;60m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;62;48;5;104m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;62;48;5;4m▒\u001b[38;5;69;48;5;67m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;146;48;5;104m▒\u001b[38;5;62;48;5;153m░\u001b[38;5;146;48;5;104m▒\u001b[38;5;69;48;5;146m▒\u001b[38;5;104;48;5;146m▒\u001b[38;5;62;48;5;189m▒\u001b[38;5;62;48;5;189m░\u001b[38;5;104;48;5;146m▒\u001b[38;5;104;48;5;146m▒\u001b[38;5;69;48;5;67m▓\u001b[38;5;146;48;5;104m▓\u001b[38;5;69;48;5;103m▒\u001b[38;5;69;48;5;239m▒\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;110m▓\u001b[38;5;69;48;5;146m▒\u001b[38;5;69;48;5;110m▓\u001b[38;5;146;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;99;48;5;59m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;69;48;5;234m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;233m░\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;153m░\u001b[38;5;69;48;5;110m▒\u001b[38;5;69;48;5;110m▒\u001b[38;5;69;48;5;68m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;67m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;62;48;5;146m▒\u001b[38;5;146;48;5;104m▒\u001b[38;5;104;48;5;110m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;104;48;5;110m▒\u001b[38;5;146;48;5;104m▒\u001b[38;5;69;48;5;110m▒\u001b[38;5;61;48;5;103m▓\u001b[38;5;61;48;5;61m▓\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;146;48;5;104m▒\u001b[38;5;69;48;5;103m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;103m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;60;48;5;60m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;67m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;104;48;5;62m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;146m▒\u001b[38;5;62;48;5;110m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;61;48;5;61m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;60m▒\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;233m░\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;61;48;5;61m▒\u001b[38;5;69;48;5;103m▒\u001b[38;5;69;48;5;110m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;69;48;5;67m▒\u001b[38;5;62;48;5;24m▒\u001b[38;5;104;48;5;60m▒\u001b[38;5;69;48;5;67m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/jupiter",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;17m \u001b[38;5;69;48;5;25m░\u001b[38;5;111;48;5;26m░\u001b[38;5;111;48;5;26m░\u001b[38;5;75;48;5;75m \u001b[38;5;26;48;5;32m░\u001b[38;5;39;48;5;75m \u001b[38;5;32;48;5;75m \u001b[38;5;45;48;5;117m \u001b[38;5;45;48;5;87m \u001b[38;5;111;48;5;26m░\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;25m▒\u001b[38;5;45;48;5;81m \u001b[38;5;69;48;5;62m▒\u001b[38;5;61;48;5;239m▒\u001b[38;5;104;48;5;24m▒\u001b[38;5;61;48;5;60m▒\u001b[38;5;61;48;5;60m▒\u001b[38;5;62;48;5;62m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;69;48;5;68m░\u001b[38;5;26;48;5;75m░\u001b[38;5;33;48;5;111m \u001b[38;5;68;48;5;68m▒\u001b[38;5;81;48;5;117m \u001b[38;5;75;48;5;75m░\u001b[38;5;104;48;5;61m▒\u001b[38;5;68;48;5;68m░\u001b[38;5;195;48;5;195m \u001b[38;5;111;48;5;69m░\u001b[38;5;69;48;5;62m░\u001b[38;5;61;48;5;239m▓\u001b[38;5;103;48;5;238m▓\u001b[38;5;103;48;5;237m▓\u001b[38;5;104;48;5;17m▒\u001b[38;5;69;48;5;0m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;232m▓\u001b[38;5;107;48;5;233m▓\u001b[38;5;148;48;5;234m▓\u001b[38;5;101;48;5;235m▓\u001b[38;5;60;48;5;236m▓\u001b[38;5;61;48;5;239m▓\u001b[38;5;61;48;5;61m▒\u001b[38;5;69;48;5;62m▒\u001b[38;5;32;48;5;74m░\u001b[38;5;33;48;5;75m░\u001b[38;5;61;48;5;61m▒\u001b[38;5;103;48;5;60m▓\u001b[38;5;62;48;5;68m▒\u001b[38;5;104;48;5;62m▒\u001b[38;5;69;48;5;69m░\u001b[38;5;69;48;5;68m▒\u001b[38;5;69;48;5;68m▒\u001b[38;5;26;48;5;111m \u001b[38;5;69;48;5;68m▒\u001b[38;5;104;48;5;62m▒\u001b[38;5;69;48;5;68m▒\u001b[38;5;68;48;5;68m░\u001b[38;5;104;48;5;62m▒\u001b[38;5;69;48;5;67m▒\u001b[38;5;62;48;5;68m░\u001b[38;5;60;48;5;60m▓\u001b[38;5;99;48;5;60m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;69;48;5;239m▓\u001b[38;5;112;48;5;237m▓\u001b[38;5;191;48;5;236m▓\u001b[38;5;106;48;5;234m▓\u001b[38;5;190;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;144;48;5;233m▓\u001b[38;5;190;48;5;234m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;220;48;5;235m▓\u001b[38;5;101;48;5;236m▓\u001b[38;5;220;48;5;236m▓\u001b[38;5;136;48;5;237m▓\u001b[38;5;220;48;5;237m▓\u001b[38;5;220;48;5;239m▓\u001b[38;5;08;48;5;238m▓\u001b[38;5;204;48;5;239m▓\u001b[38;5;99;48;5;240m▓\u001b[38;5;55;48;5;239m▓\u001b[38;5;56;48;5;241m▓\u001b[38;5;99;48;5;60m▓\u001b[38;5;60;48;5;243m▓\u001b[38;5;103;48;5;97m▓\u001b[38;5;60;48;5;244m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;99;48;5;97m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;67m▓\u001b[38;5;99;48;5;243m▓\u001b[38;5;60;48;5;60m▓\u001b[38;5;99;48;5;60m▓\u001b[38;5;99;48;5;243m▓\u001b[38;5;56;48;5;242m▓\u001b[38;5;68;48;5;60m▓\u001b[38;5;96;48;5;242m▓\u001b[38;5;190;48;5;240m▓\u001b[38;5;148;48;5;239m▓\u001b[38;5;148;48;5;238m▓\u001b[38;5;106;48;5;239m▓\u001b[38;5;191;48;5;238m▓\u001b[38;5;191;48;5;238m▓\u001b[38;5;154;48;5;237m▓\u001b[38;5;190;48;5;236m▓\u001b[38;5;148;48;5;235m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;191;48;5;232m▒\u001b[38;5;178;48;5;233m▓\u001b[38;5;94;48;5;234m▓\u001b[38;5;221;48;5;235m▓\u001b[38;5;136;48;5;236m▓\u001b[38;5;179;48;5;236m▓\u001b[38;5;179;48;5;237m▓\u001b[38;5;178;48;5;237m▓\u001b[38;5;214;48;5;237m▓\u001b[38;5;136;48;5;239m▓\u001b[38;5;178;48;5;239m▓\u001b[38;5;220;48;5;239m▓\u001b[38;5;221;48;5;240m▓\u001b[38;5;179;48;5;59m▓\u001b[38;5;172;48;5;59m▓\u001b[38;5;172;48;5;59m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;130;48;5;59m▓\u001b[38;5;172;48;5;241m▓\u001b[38;5;94;48;5;242m▓\u001b[38;5;94;48;5;241m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;136;48;5;240m▓\u001b[38;5;178;48;5;240m▓\u001b[38;5;94;48;5;59m▓\u001b[38;5;101;48;5;239m▓\u001b[38;5;190;48;5;242m▓\u001b[38;5;101;48;5;241m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;220;48;5;242m▓\u001b[38;5;190;48;5;240m▓\u001b[38;5;178;48;5;241m▓\u001b[38;5;190;48;5;241m▓\u001b[38;5;220;48;5;241m▓\u001b[38;5;148;48;5;59m▓\u001b[38;5;220;48;5;240m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;190;48;5;240m▓\u001b[38;5;190;48;5;240m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;106;48;5;238m▓\u001b[38;5;190;48;5;238m▓\u001b[38;5;190;48;5;237m▓\u001b[38;5;190;48;5;236m▓\u001b[38;5;190;48;5;234m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;64;48;5;233m▓\u001b[38;5;143;48;5;234m▓\u001b[38;5;94;48;5;235m▓\u001b[38;5;130;48;5;235m▓\u001b[38;5;130;48;5;236m▓\u001b[38;5;172;48;5;237m▓\u001b[38;5;172;48;5;238m▓\u001b[38;5;94;48;5;239m▓\u001b[38;5;94;48;5;239m▓\u001b[38;5;178;48;5;239m▓\u001b[38;5;172;48;5;239m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;221;48;5;240m▓\u001b[38;5;179;48;5;241m▓\u001b[38;5;179;48;5;240m▓\u001b[38;5;179;48;5;95m▓\u001b[38;5;178;48;5;242m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;178;48;5;242m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;94;48;5;95m▓\u001b[38;5;220;48;5;240m▓\u001b[38;5;94;48;5;95m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;94;48;5;102m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;94;48;5;242m▓\u001b[38;5;220;48;5;242m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;190;48;5;241m▓\u001b[38;5;101;48;5;243m▓\u001b[38;5;220;48;5;241m▓\u001b[38;5;190;48;5;59m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;70;48;5;59m▓\u001b[38;5;190;48;5;238m▓\u001b[38;5;190;48;5;237m▓\u001b[38;5;148;48;5;236m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;64;48;5;233m▓\u001b[38;5;144;48;5;234m▓\u001b[38;5;101;48;5;236m▓\u001b[38;5;214;48;5;237m▓\u001b[38;5;178;48;5;238m▓\u001b[38;5;179;48;5;238m▓\u001b[38;5;179;48;5;239m▓\u001b[38;5;130;48;5;239m▓\u001b[38;5;172;48;5;239m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;06;48;5;240m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;208;48;5;95m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;179;48;5;95m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;136;48;5;243m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;136;48;5;59m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;136;48;5;101m▓\u001b[38;5;220;48;5;102m▓\u001b[38;5;136;48;5;245m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;101;48;5;244m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;136;48;5;101m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;101;48;5;241m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;143;48;5;239m▓\u001b[38;5;190;48;5;238m▓\u001b[38;5;148;48;5;237m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;233m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;172;48;5;236m▓\u001b[38;5;130;48;5;237m▓\u001b[38;5;136;48;5;239m▓\u001b[38;5;130;48;5;239m▓\u001b[38;5;130;48;5;240m▓\u001b[38;5;172;48;5;59m▓\u001b[38;5;172;48;5;241m▓\u001b[38;5;179;48;5;95m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;208;48;5;101m▓\u001b[38;5;208;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;208;48;5;101m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;208;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;179;48;5;144m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;179;48;5;144m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;221;48;5;245m▓\u001b[38;5;94;48;5;245m▓\u001b[38;5;136;48;5;245m▓\u001b[38;5;94;48;5;137m▓\u001b[38;5;179;48;5;137m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;214;48;5;101m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;136;48;5;242m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;144;48;5;239m▓\u001b[38;5;144;48;5;238m▓\u001b[38;5;190;48;5;236m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;234m▓\u001b[38;5;220;48;5;235m▓\u001b[38;5;221;48;5;237m▓\u001b[38;5;179;48;5;237m▓\u001b[38;5;136;48;5;239m▓\u001b[38;5;208;48;5;238m▓\u001b[38;5;130;48;5;59m▓\u001b[38;5;214;48;5;59m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;130;48;5;240m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;243m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;208;48;5;137m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;130;48;5;95m▒\u001b[38;5;130;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;179;48;5;95m▒\u001b[38;5;172;48;5;137m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;94;48;5;240m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;214;48;5;101m▓\u001b[38;5;214;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;101;48;5;241m▓\u001b[38;5;136;48;5;95m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;144;48;5;240m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;148;48;5;238m▓\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;232m▒\u001b[38;5;191;48;5;234m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;101;48;5;236m▓\u001b[38;5;179;48;5;237m▓\u001b[38;5;06;48;5;238m▓\u001b[38;5;06;48;5;238m▓\u001b[38;5;202;48;5;239m▓\u001b[38;5;173;48;5;240m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;208;48;5;244m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;137;48;5;102m▓\u001b[38;5;137;48;5;245m▓\u001b[38;5;130;48;5;245m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;202;48;5;102m▓\u001b[38;5;179;48;5;138m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;208;48;5;138m▓\u001b[38;5;137;48;5;138m▓\u001b[38;5;137;48;5;144m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;130;48;5;180m▒\u001b[38;5;208;48;5;144m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;130;48;5;144m▓\u001b[38;5;137;48;5;144m▓\u001b[38;5;137;48;5;180m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;179;48;5;137m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;94;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;221;48;5;102m▓\u001b[38;5;130;48;5;144m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;178;48;5;246m▓\u001b[38;5;179;48;5;245m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;190;48;5;238m▒\u001b[38;5;190;48;5;238m▒\u001b[38;5;94;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;233m▓\u001b[38;5;148;48;5;234m▓\u001b[38;5;101;48;5;236m▓\u001b[38;5;220;48;5;237m▓\u001b[38;5;172;48;5;239m▓\u001b[38;5;130;48;5;239m▓\u001b[38;5;208;48;5;240m▓\u001b[38;5;130;48;5;59m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;208;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▒\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▒\u001b[38;5;172;48;5;144m▒\u001b[38;5;130;48;5;144m▓\u001b[38;5;130;48;5;144m▓\u001b[38;5;172;48;5;144m▒\u001b[38;5;06;48;5;144m▓\u001b[38;5;179;48;5;144m▒\u001b[38;5;130;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;130;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;130;48;5;144m▓\u001b[38;5;172;48;5;144m▒\u001b[38;5;172;48;5;144m▓\u001b[38;5;130;48;5;144m▒\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;137m▒\u001b[38;5;179;48;5;144m▓\u001b[38;5;179;48;5;144m▓\u001b[38;5;179;48;5;144m▓\u001b[38;5;214;48;5;144m▓\u001b[38;5;94;48;5;144m▓\u001b[38;5;94;48;5;137m▓\u001b[38;5;220;48;5;137m▓\u001b[38;5;136;48;5;137m▓\u001b[38;5;136;48;5;137m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;144;48;5;240m▓\u001b[38;5;220;48;5;239m▓\u001b[38;5;222;48;5;234m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;84;48;5;232m▓\u001b[38;5;84;48;5;235m▓\u001b[38;5;86;48;5;237m▓\u001b[38;5;66;48;5;238m▓\u001b[38;5;45;48;5;240m▓\u001b[38;5;66;48;5;241m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;69;48;5;243m▓\u001b[38;5;99;48;5;243m▓\u001b[38;5;57;48;5;244m▓\u001b[38;5;57;48;5;245m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;204;48;5;246m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;173;48;5;247m▓\u001b[38;5;202;48;5;247m▓\u001b[38;5;137;48;5;247m▓\u001b[38;5;173;48;5;248m▓\u001b[38;5;130;48;5;247m▓\u001b[38;5;208;48;5;248m▓\u001b[38;5;137;48;5;248m▓\u001b[38;5;202;48;5;247m▓\u001b[38;5;248;48;5;247m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;250;48;5;249m▓\u001b[38;5;209;48;5;249m▓\u001b[38;5;209;48;5;250m▓\u001b[38;5;173;48;5;249m▓\u001b[38;5;209;48;5;251m▓\u001b[38;5;95;48;5;251m▓\u001b[38;5;202;48;5;251m▓\u001b[38;5;202;48;5;251m▓\u001b[38;5;204;48;5;7m▓\u001b[38;5;209;48;5;251m▓\u001b[38;5;221;48;5;251m▓\u001b[38;5;202;48;5;252m▓\u001b[38;5;202;48;5;253m▓\u001b[38;5;137;48;5;252m▓\u001b[38;5;06;48;5;188m▓\u001b[38;5;179;48;5;188m▓\u001b[38;5;97;48;5;188m▓\u001b[38;5;132;48;5;188m▓\u001b[38;5;99;48;5;188m▓\u001b[38;5;60;48;5;251m▓\u001b[38;5;92;48;5;252m▓\u001b[38;5;69;48;5;188m▓\u001b[38;5;68;48;5;252m▓\u001b[38;5;69;48;5;253m▓\u001b[38;5;60;48;5;253m▓\u001b[38;5;69;48;5;252m▓\u001b[38;5;27;48;5;251m▓\u001b[38;5;69;48;5;146m▓\u001b[38;5;68;48;5;249m▓\u001b[38;5;67;48;5;250m▓\u001b[38;5;33;48;5;249m▓\u001b[38;5;67;48;5;145m▓\u001b[38;5;27;48;5;145m▓\u001b[38;5;27;48;5;248m▓\u001b[38;5;67;48;5;109m▓\u001b[38;5;26;48;5;103m▓\u001b[38;5;27;48;5;103m▓\u001b[38;5;26;48;5;245m▓\u001b[38;5;67;48;5;244m▓\u001b[38;5;32;48;5;242m▓\u001b[38;5;65;48;5;240m▓\u001b[38;5;216;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;65;48;5;234m▓\u001b[38;5;43;48;5;236m▓\u001b[38;5;25;48;5;238m▓\u001b[38;5;25;48;5;239m▓\u001b[38;5;68;48;5;59m▓\u001b[38;5;69;48;5;242m▓\u001b[38;5;68;48;5;243m▓\u001b[38;5;69;48;5;243m▓\u001b[38;5;60;48;5;102m▓\u001b[38;5;60;48;5;245m▓\u001b[38;5;60;48;5;246m▓\u001b[38;5;60;48;5;246m▓\u001b[38;5;99;48;5;247m▓\u001b[38;5;60;48;5;247m▓\u001b[38;5;99;48;5;248m▓\u001b[38;5;99;48;5;145m▓\u001b[38;5;56;48;5;145m▓\u001b[38;5;60;48;5;249m▓\u001b[38;5;54;48;5;145m▓\u001b[38;5;96;48;5;249m▓\u001b[38;5;01;48;5;250m▓\u001b[38;5;08;48;5;7m▓\u001b[38;5;197;48;5;249m▓\u001b[38;5;09;48;5;252m▓\u001b[38;5;60;48;5;251m▓\u001b[38;5;99;48;5;252m▓\u001b[38;5;06;48;5;253m▓\u001b[38;5;97;48;5;188m▓\u001b[38;5;99;48;5;254m▓\u001b[38;5;56;48;5;253m▓\u001b[38;5;57;48;5;255m▓\u001b[38;5;98;48;5;255m▓\u001b[38;5;97;48;5;255m▓\u001b[38;5;99;48;5;255m▓\u001b[38;5;99;48;5;254m▓\u001b[38;5;69;48;5;231m \u001b[38;5;62;48;5;255m▒\u001b[38;5;189;48;5;231m \u001b[38;5;69;48;5;231m \u001b[38;5;189;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;189;48;5;189m \u001b[38;5;69;48;5;255m░\u001b[38;5;69;48;5;231m \u001b[38;5;69;48;5;231m \u001b[38;5;189;48;5;231m \u001b[38;5;62;48;5;255m░\u001b[38;5;104;48;5;189m▒\u001b[38;5;68;48;5;253m▓\u001b[38;5;69;48;5;188m▓\u001b[38;5;27;48;5;251m▓\u001b[38;5;27;48;5;252m▓\u001b[38;5;26;48;5;251m▓\u001b[38;5;68;48;5;146m▓\u001b[38;5;33;48;5;250m▓\u001b[38;5;25;48;5;250m▓\u001b[38;5;68;48;5;146m▒\u001b[38;5;68;48;5;146m▓\u001b[38;5;26;48;5;145m▓\u001b[38;5;69;48;5;110m▓\u001b[38;5;101;48;5;246m▓\u001b[38;5;220;48;5;102m▓\u001b[38;5;149;48;5;245m▓\u001b[38;5;26;48;5;244m▓\u001b[38;5;41;48;5;243m▓\u001b[38;5;64;48;5;242m▓\u001b[38;5;25;48;5;59m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;154;48;5;232m▒\u001b[38;5;144;48;5;234m▓\u001b[38;5;214;48;5;235m▓\u001b[38;5;173;48;5;236m▓\u001b[38;5;101;48;5;238m▓\u001b[38;5;137;48;5;239m▓\u001b[38;5;209;48;5;239m▓\u001b[38;5;209;48;5;241m▓\u001b[38;5;130;48;5;59m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;221;48;5;244m▓\u001b[38;5;209;48;5;242m▓\u001b[38;5;202;48;5;244m▓\u001b[38;5;173;48;5;101m▓\u001b[38;5;202;48;5;102m▓\u001b[38;5;202;48;5;95m▓\u001b[38;5;137;48;5;138m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;131m▒\u001b[38;5;209;48;5;94m▒\u001b[38;5;202;48;5;137m▓\u001b[38;5;137;48;5;137m▒\u001b[38;5;172;48;5;180m▒\u001b[38;5;06;48;5;180m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;130;48;5;180m▒\u001b[38;5;130;48;5;144m▓\u001b[38;5;06;48;5;144m▓\u001b[38;5;130;48;5;144m▓\u001b[38;5;130;48;5;180m▒\u001b[38;5;172;48;5;137m▒\u001b[38;5;214;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;137;48;5;138m▓\u001b[38;5;180;48;5;137m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;172;48;5;180m▒\u001b[38;5;172;48;5;187m▒\u001b[38;5;172;48;5;181m▒\u001b[38;5;130;48;5;180m▒\u001b[38;5;130;48;5;138m▓\u001b[38;5;172;48;5;181m▒\u001b[38;5;179;48;5;144m▓\u001b[38;5;130;48;5;144m▓\u001b[38;5;172;48;5;137m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;130;48;5;137m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;130;48;5;131m▒\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;221;48;5;144m▓\u001b[38;5;179;48;5;137m▓\u001b[38;5;94;48;5;137m▓\u001b[38;5;172;48;5;101m▒\u001b[38;5;94;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;136;48;5;101m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;94;48;5;240m▓\u001b[38;5;221;48;5;240m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;190;48;5;236m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;221;48;5;233m▓\u001b[38;5;136;48;5;235m▓\u001b[38;5;209;48;5;236m▓\u001b[38;5;209;48;5;235m▓\u001b[38;5;06;48;5;237m▓\u001b[38;5;06;48;5;238m▓\u001b[38;5;173;48;5;238m▓\u001b[38;5;209;48;5;238m▓\u001b[38;5;202;48;5;240m▓\u001b[38;5;209;48;5;239m▒\u001b[38;5;202;48;5;94m▒\u001b[38;5;209;48;5;95m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;173;48;5;95m▒\u001b[38;5;173;48;5;95m▒\u001b[38;5;209;48;5;94m▒\u001b[38;5;06;48;5;94m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▒\u001b[38;5;130;48;5;180m▒\u001b[38;5;208;48;5;138m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;131m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;202;48;5;137m▒\u001b[38;5;06;48;5;173m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;202;48;5;180m▒\u001b[38;5;06;48;5;173m▒\u001b[38;5;130;48;5;181m▓\u001b[38;5;06;48;5;94m░\u001b[38;5;202;48;5;94m░\u001b[38;5;173;48;5;94m░\u001b[38;5;173;48;5;95m▒\u001b[38;5;06;48;5;131m▒\u001b[38;5;202;48;5;94m▒\u001b[38;5;06;48;5;94m▒\u001b[38;5;202;48;5;94m░\u001b[38;5;209;48;5;94m░\u001b[38;5;173;48;5;130m░\u001b[38;5;202;48;5;130m░\u001b[38;5;180;48;5;130m░\u001b[38;5;180;48;5;131m▒\u001b[38;5;06;48;5;94m▒\u001b[38;5;06;48;5;94m▒\u001b[38;5;173;48;5;94m░\u001b[38;5;209;48;5;88m░\u001b[38;5;173;48;5;94m░\u001b[38;5;202;48;5;94m░\u001b[38;5;173;48;5;94m░\u001b[38;5;06;48;5;94m▒\u001b[38;5;202;48;5;94m▒\u001b[38;5;209;48;5;94m▒\u001b[38;5;06;48;5;94m░\u001b[38;5;06;48;5;130m░\u001b[38;5;130;48;5;94m░\u001b[38;5;208;48;5;94m▒\u001b[38;5;130;48;5;94m░\u001b[38;5;172;48;5;94m▒\u001b[38;5;180;48;5;94m▒\u001b[38;5;130;48;5;94m▒\u001b[38;5;180;48;5;94m▒\u001b[38;5;137;48;5;240m▒\u001b[38;5;208;48;5;95m▓\u001b[38;5;179;48;5;239m▓\u001b[38;5;221;48;5;239m▓\u001b[38;5;204;48;5;239m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;150;48;5;232m▒\u001b[38;5;119;48;5;234m▓\u001b[38;5;178;48;5;236m▓\u001b[38;5;136;48;5;237m▓\u001b[38;5;179;48;5;237m▓\u001b[38;5;178;48;5;239m▓\u001b[38;5;137;48;5;239m▓\u001b[38;5;172;48;5;241m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;202;48;5;240m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;178;48;5;240m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;221;48;5;95m▓\u001b[38;5;190;48;5;65m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;172;48;5;95m▒\u001b[38;5;130;48;5;95m▓\u001b[38;5;208;48;5;137m▒\u001b[38;5;208;48;5;94m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;204;48;5;138m▓\u001b[38;5;209;48;5;246m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;179;48;5;144m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;172;48;5;59m▓\u001b[38;5;209;48;5;249m▓\u001b[38;5;95;48;5;251m▓\u001b[38;5;172;48;5;181m▓\u001b[38;5;172;48;5;137m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;137;48;5;95m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;94;48;5;94m▒\u001b[38;5;221;48;5;95m▒\u001b[38;5;221;48;5;94m▒\u001b[38;5;70;48;5;65m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;130;48;5;137m▒\u001b[38;5;137;48;5;95m▒\u001b[38;5;06;48;5;95m▒\u001b[38;5;130;48;5;95m▒\u001b[38;5;172;48;5;95m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;137m▒\u001b[38;5;130;48;5;101m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;179;48;5;137m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;136;48;5;101m▓\u001b[38;5;221;48;5;95m▒\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;95m▒\u001b[38;5;214;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;148;48;5;241m▓\u001b[38;5;154;48;5;242m▓\u001b[38;5;148;48;5;241m▓\u001b[38;5;190;48;5;240m▓\u001b[38;5;220;48;5;240m▓\u001b[38;5;214;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;84;48;5;233m▓\u001b[38;5;112;48;5;235m▓\u001b[38;5;190;48;5;236m▓\u001b[38;5;190;48;5;238m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;209;48;5;242m▓\u001b[38;5;94;48;5;242m▓\u001b[38;5;130;48;5;95m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;94;48;5;242m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;220;48;5;244m▓\u001b[38;5;148;48;5;243m▓\u001b[38;5;101;48;5;245m▓\u001b[38;5;178;48;5;245m▓\u001b[38;5;136;48;5;245m▓\u001b[38;5;220;48;5;245m▓\u001b[38;5;220;48;5;246m▓\u001b[38;5;172;48;5;246m▓\u001b[38;5;94;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;137;48;5;247m▓\u001b[38;5;94;48;5;247m▓\u001b[38;5;06;48;5;250m▓\u001b[38;5;94;48;5;250m▓\u001b[38;5;137;48;5;7m▓\u001b[38;5;221;48;5;180m▒\u001b[38;5;221;48;5;179m▒\u001b[38;5;136;48;5;144m▒\u001b[38;5;136;48;5;180m▒\u001b[38;5;136;48;5;144m▓\u001b[38;5;172;48;5;181m▓\u001b[38;5;221;48;5;144m▓\u001b[38;5;179;48;5;180m▒\u001b[38;5;172;48;5;223m░\u001b[38;5;172;48;5;181m▒\u001b[38;5;178;48;5;137m▓\u001b[38;5;221;48;5;180m▒\u001b[38;5;94;48;5;180m▒\u001b[38;5;94;48;5;144m▓\u001b[38;5;178;48;5;144m▓\u001b[38;5;107;48;5;248m▓\u001b[38;5;179;48;5;180m▒\u001b[38;5;179;48;5;144m▓\u001b[38;5;179;48;5;251m▓\u001b[38;5;172;48;5;187m▒\u001b[38;5;137;48;5;181m▓\u001b[38;5;94;48;5;181m▓\u001b[38;5;136;48;5;181m▓\u001b[38;5;214;48;5;187m▓\u001b[38;5;130;48;5;187m▒\u001b[38;5;179;48;5;223m▒\u001b[38;5;172;48;5;249m▓\u001b[38;5;29;48;5;247m▓\u001b[38;5;101;48;5;144m▓\u001b[38;5;72;48;5;247m▓\u001b[38;5;101;48;5;145m▓\u001b[38;5;70;48;5;247m▓\u001b[38;5;119;48;5;247m▓\u001b[38;5;84;48;5;247m▓\u001b[38;5;84;48;5;247m▓\u001b[38;5;65;48;5;145m▓\u001b[38;5;107;48;5;249m▓\u001b[38;5;154;48;5;247m▓\u001b[38;5;65;48;5;245m▓\u001b[38;5;50;48;5;245m▓\u001b[38;5;81;48;5;244m▓\u001b[38;5;81;48;5;244m▓\u001b[38;5;84;48;5;242m▓\u001b[38;5;69;48;5;241m▓\u001b[38;5;190;48;5;58m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;113;48;5;233m▓\u001b[38;5;84;48;5;235m▓\u001b[38;5;84;48;5;237m▓\u001b[38;5;113;48;5;238m▓\u001b[38;5;107;48;5;240m▓\u001b[38;5;101;48;5;241m▓\u001b[38;5;72;48;5;242m▓\u001b[38;5;43;48;5;241m▓\u001b[38;5;45;48;5;243m▓\u001b[38;5;179;48;5;244m▓\u001b[38;5;190;48;5;102m▓\u001b[38;5;197;48;5;102m▓\u001b[38;5;137;48;5;245m▓\u001b[38;5;101;48;5;245m▓\u001b[38;5;148;48;5;245m▓\u001b[38;5;221;48;5;246m▓\u001b[38;5;137;48;5;144m▓\u001b[38;5;137;48;5;181m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;136;48;5;144m▓\u001b[38;5;220;48;5;144m▓\u001b[38;5;136;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;94;48;5;187m▒\u001b[38;5;172;48;5;187m▒\u001b[38;5;179;48;5;187m▒\u001b[38;5;130;48;5;181m▓\u001b[38;5;179;48;5;187m▓\u001b[38;5;94;48;5;181m▓\u001b[38;5;220;48;5;250m▓\u001b[38;5;94;48;5;223m▒\u001b[38;5;179;48;5;224m░\u001b[38;5;101;48;5;252m▓\u001b[38;5;190;48;5;255m▒\u001b[38;5;220;48;5;252m▓\u001b[38;5;220;48;5;253m▓\u001b[38;5;94;48;5;230m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;94;48;5;230m▒\u001b[38;5;220;48;5;230m \u001b[38;5;231;48;5;231m▓\u001b[38;5;190;48;5;255m▓\u001b[38;5;179;48;5;255m▒\u001b[38;5;231;48;5;231m▓\u001b[38;5;106;48;5;255m▒\u001b[38;5;187;48;5;255m▓\u001b[38;5;221;48;5;254m▓\u001b[38;5;70;48;5;251m▓\u001b[38;5;149;48;5;252m▓\u001b[38;5;45;48;5;109m▓\u001b[38;5;38;48;5;188m▓\u001b[38;5;113;48;5;249m▓\u001b[38;5;119;48;5;250m▓\u001b[38;5;101;48;5;7m▓\u001b[38;5;82;48;5;248m▓\u001b[38;5;154;48;5;248m▓\u001b[38;5;119;48;5;248m▓\u001b[38;5;84;48;5;248m▓\u001b[38;5;65;48;5;248m▓\u001b[38;5;113;48;5;247m▓\u001b[38;5;26;48;5;247m▓\u001b[38;5;39;48;5;248m▓\u001b[38;5;74;48;5;247m▓\u001b[38;5;33;48;5;246m▓\u001b[38;5;31;48;5;246m▓\u001b[38;5;26;48;5;102m▓\u001b[38;5;25;48;5;66m▓\u001b[38;5;31;48;5;242m▓\u001b[38;5;32;48;5;241m▓\u001b[38;5;190;48;5;238m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;70;48;5;233m▓\u001b[38;5;112;48;5;235m▓\u001b[38;5;112;48;5;237m▓\u001b[38;5;112;48;5;238m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;190;48;5;241m▓\u001b[38;5;79;48;5;242m▓\u001b[38;5;84;48;5;242m▓\u001b[38;5;149;48;5;244m▓\u001b[38;5;221;48;5;102m▓\u001b[38;5;94;48;5;102m▓\u001b[38;5;172;48;5;246m▓\u001b[38;5;179;48;5;246m▓\u001b[38;5;179;48;5;138m▓\u001b[38;5;179;48;5;138m▓\u001b[38;5;220;48;5;245m▓\u001b[38;5;179;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;180m▓\u001b[38;5;172;48;5;180m▒\u001b[38;5;172;48;5;180m▓\u001b[38;5;179;48;5;180m▓\u001b[38;5;94;48;5;181m▓\u001b[38;5;179;48;5;181m▓\u001b[38;5;94;48;5;187m▒\u001b[38;5;179;48;5;187m▒\u001b[38;5;221;48;5;224m░\u001b[38;5;179;48;5;181m▓\u001b[38;5;172;48;5;181m▓\u001b[38;5;222;48;5;224m░\u001b[38;5;222;48;5;224m░\u001b[38;5;172;48;5;224m░\u001b[38;5;230;48;5;230m \u001b[38;5;230;48;5;230m \u001b[38;5;94;48;5;230m▒\u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;94;48;5;253m▒\u001b[38;5;178;48;5;253m▒\u001b[38;5;144;48;5;187m▓\u001b[38;5;148;48;5;253m▓\u001b[38;5;119;48;5;255m▒\u001b[38;5;82;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;50;48;5;249m▓\u001b[38;5;76;48;5;188m▓\u001b[38;5;190;48;5;255m░\u001b[38;5;190;48;5;254m▓\u001b[38;5;136;48;5;231m░\u001b[38;5;220;48;5;255m▓\u001b[38;5;191;48;5;255m▓\u001b[38;5;190;48;5;255m▓\u001b[38;5;190;48;5;253m▓\u001b[38;5;106;48;5;252m▓\u001b[38;5;84;48;5;247m▓\u001b[38;5;190;48;5;188m▓\u001b[38;5;112;48;5;7m▓\u001b[38;5;119;48;5;249m▓\u001b[38;5;119;48;5;250m▓\u001b[38;5;119;48;5;249m▓\u001b[38;5;50;48;5;145m▓\u001b[38;5;42;48;5;248m▓\u001b[38;5;43;48;5;247m▓\u001b[38;5;38;48;5;247m▓\u001b[38;5;74;48;5;246m▓\u001b[38;5;25;48;5;245m▓\u001b[38;5;67;48;5;244m▓\u001b[38;5;38;48;5;243m▓\u001b[38;5;27;48;5;242m▓\u001b[38;5;191;48;5;237m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;70;48;5;233m▓\u001b[38;5;112;48;5;235m▓\u001b[38;5;191;48;5;237m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;178;48;5;241m▓\u001b[38;5;221;48;5;242m▓\u001b[38;5;220;48;5;243m▓\u001b[38;5;136;48;5;244m▓\u001b[38;5;214;48;5;244m▓\u001b[38;5;136;48;5;102m▓\u001b[38;5;101;48;5;245m▓\u001b[38;5;221;48;5;246m▓\u001b[38;5;06;48;5;247m▓\u001b[38;5;06;48;5;145m▓\u001b[38;5;69;48;5;247m▓\u001b[38;5;26;48;5;247m▓\u001b[38;5;42;48;5;247m▓\u001b[38;5;39;48;5;248m▓\u001b[38;5;81;48;5;249m▓\u001b[38;5;84;48;5;249m▓\u001b[38;5;202;48;5;252m▓\u001b[38;5;78;48;5;250m▓\u001b[38;5;190;48;5;252m▓\u001b[38;5;179;48;5;252m▓\u001b[38;5;220;48;5;188m▓\u001b[38;5;79;48;5;250m▓\u001b[38;5;99;48;5;254m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;221;48;5;254m▓\u001b[38;5;230;48;5;231m \u001b[38;5;149;48;5;255m▓\u001b[38;5;86;48;5;254m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;69;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;31;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;66;48;5;254m▓\u001b[38;5;152;48;5;152m▓\u001b[38;5;116;48;5;255m▒\u001b[38;5;41;48;5;253m▓\u001b[38;5;109;48;5;255m▓\u001b[38;5;45;48;5;188m▓\u001b[38;5;32;48;5;189m▒\u001b[38;5;74;48;5;189m▒\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;32;48;5;195m░\u001b[38;5;32;48;5;189m▒\u001b[38;5;32;48;5;195m░\u001b[38;5;32;48;5;195m \u001b[38;5;74;48;5;152m▓\u001b[38;5;32;48;5;146m▓\u001b[38;5;25;48;5;152m▒\u001b[38;5;110;48;5;152m▒\u001b[38;5;26;48;5;152m▒\u001b[38;5;26;48;5;152m▒\u001b[38;5;33;48;5;152m▒\u001b[38;5;25;48;5;146m▓\u001b[38;5;33;48;5;146m▓\u001b[38;5;27;48;5;146m▓\u001b[38;5;33;48;5;145m▓\u001b[38;5;67;48;5;109m▓\u001b[38;5;26;48;5;103m▓\u001b[38;5;26;48;5;103m▓\u001b[38;5;26;48;5;66m▓\u001b[38;5;25;48;5;66m▓\u001b[38;5;68;48;5;242m▓\u001b[38;5;76;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;143;48;5;233m▒\u001b[38;5;178;48;5;235m▓\u001b[38;5;214;48;5;236m▓\u001b[38;5;172;48;5;237m▓\u001b[38;5;172;48;5;238m▓\u001b[38;5;202;48;5;239m▓\u001b[38;5;202;48;5;59m▓\u001b[38;5;06;48;5;240m▓\u001b[38;5;137;48;5;59m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;208;48;5;101m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;130;48;5;95m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;180;48;5;173m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;208;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;172;48;5;137m▒\u001b[38;5;214;48;5;101m▓\u001b[38;5;172;48;5;101m▒\u001b[38;5;172;48;5;101m▓\u001b[38;5;208;48;5;137m▓\u001b[38;5;137;48;5;137m▒\u001b[38;5;172;48;5;137m▒\u001b[38;5;130;48;5;95m▒\u001b[38;5;172;48;5;95m▒\u001b[38;5;172;48;5;101m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;208;48;5;137m▒\u001b[38;5;130;48;5;179m▒\u001b[38;5;180;48;5;179m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;172;48;5;101m▒\u001b[38;5;130;48;5;101m▓\u001b[38;5;214;48;5;101m▓\u001b[38;5;179;48;5;95m▒\u001b[38;5;179;48;5;95m▒\u001b[38;5;179;48;5;95m▒\u001b[38;5;221;48;5;94m▒\u001b[38;5;221;48;5;101m▒\u001b[38;5;214;48;5;137m▒\u001b[38;5;214;48;5;95m▒\u001b[38;5;94;48;5;101m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;136;48;5;95m▓\u001b[38;5;178;48;5;242m▓\u001b[38;5;221;48;5;241m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;190;48;5;240m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;233m▒\u001b[38;5;144;48;5;234m▓\u001b[38;5;179;48;5;235m▓\u001b[38;5;130;48;5;236m▓\u001b[38;5;06;48;5;237m▓\u001b[38;5;209;48;5;238m▓\u001b[38;5;204;48;5;239m▓\u001b[38;5;204;48;5;239m▓\u001b[38;5;204;48;5;240m▓\u001b[38;5;95;48;5;240m▓\u001b[38;5;204;48;5;240m▓\u001b[38;5;95;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;209;48;5;240m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;173;48;5;95m▓\u001b[38;5;173;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;173;48;5;131m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;138;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;173;48;5;95m▒\u001b[38;5;209;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;138;48;5;95m▓\u001b[38;5;173;48;5;95m▓\u001b[38;5;130;48;5;251m▓\u001b[38;5;173;48;5;181m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;202;48;5;144m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;173;48;5;95m▒\u001b[38;5;173;48;5;95m▒\u001b[38;5;172;48;5;137m▓\u001b[38;5;202;48;5;244m▓\u001b[38;5;137;48;5;180m▒\u001b[38;5;209;48;5;181m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;179;48;5;144m▓\u001b[38;5;214;48;5;144m▓\u001b[38;5;130;48;5;187m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;94;48;5;144m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;172;48;5;144m▒\u001b[38;5;130;48;5;179m▒\u001b[38;5;130;48;5;173m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;130;48;5;137m▒\u001b[38;5;172;48;5;137m▒\u001b[38;5;172;48;5;137m▒\u001b[38;5;172;48;5;137m▒\u001b[38;5;214;48;5;137m▒\u001b[38;5;214;48;5;101m▒\u001b[38;5;179;48;5;101m▓\u001b[38;5;94;48;5;95m▓\u001b[38;5;94;48;5;95m▓\u001b[38;5;136;48;5;95m▓\u001b[38;5;220;48;5;95m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;143;48;5;237m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;233m▓\u001b[38;5;220;48;5;235m▓\u001b[38;5;172;48;5;236m▓\u001b[38;5;130;48;5;237m▓\u001b[38;5;137;48;5;238m▓\u001b[38;5;209;48;5;239m▓\u001b[38;5;130;48;5;59m▓\u001b[38;5;137;48;5;241m▓\u001b[38;5;173;48;5;59m▓\u001b[38;5;173;48;5;95m▓\u001b[38;5;173;48;5;95m▓\u001b[38;5;173;48;5;240m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;202;48;5;137m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;208;48;5;138m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;137;48;5;180m▓\u001b[38;5;01;48;5;248m▓\u001b[38;5;202;48;5;181m▓\u001b[38;5;179;48;5;223m░\u001b[38;5;06;48;5;179m░\u001b[38;5;06;48;5;144m▓\u001b[38;5;130;48;5;181m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;95;48;5;247m▓\u001b[38;5;172;48;5;180m▒\u001b[38;5;173;48;5;138m▓\u001b[38;5;230;48;5;230m \u001b[38;5;180;48;5;137m▒\u001b[38;5;179;48;5;180m▒\u001b[38;5;172;48;5;181m▓\u001b[38;5;179;48;5;181m▓\u001b[38;5;130;48;5;137m▒\u001b[38;5;66;48;5;246m▓\u001b[38;5;136;48;5;144m▓\u001b[38;5;180;48;5;180m▒\u001b[38;5;130;48;5;101m▓\u001b[38;5;179;48;5;138m▓\u001b[38;5;130;48;5;181m▒\u001b[38;5;172;48;5;181m▓\u001b[38;5;137;48;5;251m▓\u001b[38;5;221;48;5;180m▓\u001b[38;5;94;48;5;138m▓\u001b[38;5;130;48;5;95m▒\u001b[38;5;208;48;5;94m▒\u001b[38;5;130;48;5;94m▒\u001b[38;5;130;48;5;94m▒\u001b[38;5;130;48;5;95m▒\u001b[38;5;130;48;5;95m▒\u001b[38;5;130;48;5;95m▒\u001b[38;5;130;48;5;94m▒\u001b[38;5;130;48;5;95m▒\u001b[38;5;137;48;5;240m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;172;48;5;240m▓\u001b[38;5;178;48;5;239m▓\u001b[38;5;209;48;5;239m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;232m \u001b[38;5;190;48;5;234m▓\u001b[38;5;220;48;5;235m▓\u001b[38;5;101;48;5;237m▓\u001b[38;5;221;48;5;237m▓\u001b[38;5;220;48;5;239m▓\u001b[38;5;06;48;5;239m▓\u001b[38;5;209;48;5;59m▓\u001b[38;5;202;48;5;241m▓\u001b[38;5;202;48;5;59m▓\u001b[38;5;209;48;5;59m▓\u001b[38;5;202;48;5;59m▓\u001b[38;5;173;48;5;95m▓\u001b[38;5;173;48;5;95m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;202;48;5;101m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;202;48;5;101m▓\u001b[38;5;202;48;5;246m▓\u001b[38;5;173;48;5;95m▓\u001b[38;5;137;48;5;138m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;202;48;5;95m▓\u001b[38;5;202;48;5;137m▓\u001b[38;5;173;48;5;137m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;144m▓\u001b[38;5;173;48;5;137m▓\u001b[38;5;06;48;5;179m▒\u001b[38;5;202;48;5;95m▒\u001b[38;5;173;48;5;95m▒\u001b[38;5;173;48;5;180m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;130;48;5;187m▒\u001b[38;5;06;48;5;138m▓\u001b[38;5;173;48;5;95m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;208;48;5;137m▓\u001b[38;5;130;48;5;179m▒\u001b[38;5;214;48;5;187m▒\u001b[38;5;137;48;5;95m▓\u001b[38;5;214;48;5;137m▓\u001b[38;5;172;48;5;181m▒\u001b[38;5;179;48;5;143m▒\u001b[38;5;222;48;5;136m \u001b[38;5;172;48;5;136m \u001b[38;5;172;48;5;172m \u001b[38;5;172;48;5;172m \u001b[38;5;172;48;5;136m░\u001b[38;5;172;48;5;136m░\u001b[38;5;178;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;136;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;136;48;5;101m▓\u001b[38;5;179;48;5;95m▓\u001b[38;5;221;48;5;95m▓\u001b[38;5;220;48;5;242m▓\u001b[38;5;148;48;5;241m▓\u001b[38;5;101;48;5;239m▓\u001b[38;5;221;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;112;48;5;233m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;190;48;5;237m▓\u001b[38;5;190;48;5;238m▓\u001b[38;5;191;48;5;238m▓\u001b[38;5;179;48;5;240m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;190;48;5;242m▓\u001b[38;5;97;48;5;244m▓\u001b[38;5;221;48;5;102m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;96;48;5;246m▓\u001b[38;5;172;48;5;246m▓\u001b[38;5;130;48;5;246m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;137;48;5;246m▓\u001b[38;5;178;48;5;247m▓\u001b[38;5;137;48;5;144m▓\u001b[38;5;137;48;5;144m▓\u001b[38;5;172;48;5;249m▓\u001b[38;5;179;48;5;249m▓\u001b[38;5;172;48;5;7m▓\u001b[38;5;130;48;5;187m▓\u001b[38;5;94;48;5;145m▓\u001b[38;5;137;48;5;181m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;180m▒\u001b[38;5;179;48;5;144m▓\u001b[38;5;172;48;5;181m▓\u001b[38;5;179;48;5;144m▓\u001b[38;5;220;48;5;246m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;180m▒\u001b[38;5;214;48;5;187m▒\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;208;48;5;95m▒\u001b[38;5;130;48;5;144m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;208;48;5;144m▓\u001b[38;5;172;48;5;137m▒\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;172;48;5;130m░\u001b[38;5;172;48;5;138m▓\u001b[38;5;214;48;5;144m▓\u001b[38;5;136;48;5;137m▓\u001b[38;5;221;48;5;245m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;136;48;5;101m▓\u001b[38;5;220;48;5;245m▓\u001b[38;5;101;48;5;102m▓\u001b[38;5;148;48;5;244m▓\u001b[38;5;148;48;5;242m▓\u001b[38;5;106;48;5;241m▓\u001b[38;5;70;48;5;240m▓\u001b[38;5;143;48;5;236m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;107;48;5;233m▓\u001b[38;5;112;48;5;235m▓\u001b[38;5;119;48;5;236m▓\u001b[38;5;64;48;5;238m▓\u001b[38;5;106;48;5;240m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;94;48;5;243m▓\u001b[38;5;136;48;5;243m▓\u001b[38;5;94;48;5;102m▓\u001b[38;5;178;48;5;242m▓\u001b[38;5;130;48;5;247m▓\u001b[38;5;94;48;5;245m▓\u001b[38;5;204;48;5;247m▓\u001b[38;5;208;48;5;245m▓\u001b[38;5;172;48;5;247m▓\u001b[38;5;214;48;5;101m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;202;48;5;138m▓\u001b[38;5;06;48;5;145m▓\u001b[38;5;130;48;5;144m▓\u001b[38;5;208;48;5;249m▓\u001b[38;5;06;48;5;249m▓\u001b[38;5;130;48;5;181m▓\u001b[38;5;172;48;5;250m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;06;48;5;251m▓\u001b[38;5;06;48;5;252m▓\u001b[38;5;137;48;5;7m▓\u001b[38;5;94;48;5;249m▓\u001b[38;5;172;48;5;180m▓\u001b[38;5;179;48;5;181m▓\u001b[38;5;172;48;5;144m▒\u001b[38;5;130;48;5;251m▓\u001b[38;5;179;48;5;143m▒\u001b[38;5;190;48;5;249m▓\u001b[38;5;220;48;5;7m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;179;48;5;187m▒\u001b[38;5;214;48;5;187m▓\u001b[38;5;172;48;5;181m▒\u001b[38;5;130;48;5;144m▓\u001b[38;5;220;48;5;145m▓\u001b[38;5;220;48;5;7m▓\u001b[38;5;172;48;5;138m▓\u001b[38;5;179;48;5;137m▒\u001b[38;5;214;48;5;137m▓\u001b[38;5;101;48;5;145m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;221;48;5;137m▓\u001b[38;5;220;48;5;144m▓\u001b[38;5;221;48;5;101m▒\u001b[38;5;190;48;5;246m▓\u001b[38;5;101;48;5;246m▓\u001b[38;5;190;48;5;245m▓\u001b[38;5;149;48;5;245m▓\u001b[38;5;220;48;5;242m▓\u001b[38;5;119;48;5;244m▓\u001b[38;5;47;48;5;243m▓\u001b[38;5;82;48;5;241m▓\u001b[38;5;191;48;5;240m▓\u001b[38;5;190;48;5;236m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;107;48;5;232m▓\u001b[38;5;107;48;5;234m▓\u001b[38;5;119;48;5;235m▓\u001b[38;5;94;48;5;236m▒\u001b[38;5;221;48;5;237m▓\u001b[38;5;220;48;5;239m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;149;48;5;243m▓\u001b[38;5;221;48;5;243m▓\u001b[38;5;172;48;5;244m▓\u001b[38;5;202;48;5;102m▓\u001b[38;5;06;48;5;244m▓\u001b[38;5;06;48;5;245m▓\u001b[38;5;94;48;5;245m▓\u001b[38;5;06;48;5;246m▓\u001b[38;5;137;48;5;246m▓\u001b[38;5;173;48;5;246m▓\u001b[38;5;173;48;5;247m▓\u001b[38;5;173;48;5;248m▓\u001b[38;5;137;48;5;247m▓\u001b[38;5;202;48;5;247m▓\u001b[38;5;06;48;5;144m▓\u001b[38;5;130;48;5;247m▓\u001b[38;5;208;48;5;247m▓\u001b[38;5;137;48;5;144m▓\u001b[38;5;06;48;5;144m▓\u001b[38;5;130;48;5;145m▓\u001b[38;5;172;48;5;145m▓\u001b[38;5;130;48;5;249m▓\u001b[38;5;221;48;5;145m▓\u001b[38;5;130;48;5;145m▓\u001b[38;5;130;48;5;249m▓\u001b[38;5;172;48;5;144m▓\u001b[38;5;221;48;5;249m▓\u001b[38;5;130;48;5;145m▓\u001b[38;5;172;48;5;145m▓\u001b[38;5;172;48;5;249m▓\u001b[38;5;221;48;5;145m▓\u001b[38;5;214;48;5;145m▓\u001b[38;5;214;48;5;144m▓\u001b[38;5;94;48;5;145m▓\u001b[38;5;172;48;5;247m▓\u001b[38;5;178;48;5;144m▓\u001b[38;5;101;48;5;249m▓\u001b[38;5;136;48;5;145m▓\u001b[38;5;101;48;5;248m▓\u001b[38;5;220;48;5;248m▓\u001b[38;5;148;48;5;247m▓\u001b[38;5;101;48;5;247m▓\u001b[38;5;101;48;5;247m▓\u001b[38;5;101;48;5;246m▓\u001b[38;5;76;48;5;245m▓\u001b[38;5;107;48;5;245m▓\u001b[38;5;119;48;5;102m▓\u001b[38;5;119;48;5;244m▓\u001b[38;5;66;48;5;243m▓\u001b[38;5;41;48;5;242m▓\u001b[38;5;65;48;5;241m▓\u001b[38;5;65;48;5;240m▓\u001b[38;5;222;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;112;48;5;234m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;101;48;5;235m▓\u001b[38;5;172;48;5;237m▓\u001b[38;5;94;48;5;238m▓\u001b[38;5;220;48;5;239m▓\u001b[38;5;172;48;5;241m▓\u001b[38;5;221;48;5;240m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;221;48;5;242m▓\u001b[38;5;179;48;5;242m▓\u001b[38;5;221;48;5;242m▓\u001b[38;5;178;48;5;242m▓\u001b[38;5;214;48;5;101m▓\u001b[38;5;94;48;5;243m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;94;48;5;245m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;130;48;5;138m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;179;48;5;245m▓\u001b[38;5;101;48;5;243m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;172;48;5;245m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;172;48;5;137m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;190;48;5;243m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;221;48;5;245m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;221;48;5;101m▓\u001b[38;5;220;48;5;243m▓\u001b[38;5;221;48;5;244m▓\u001b[38;5;178;48;5;101m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;220;48;5;243m▓\u001b[38;5;101;48;5;101m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;101;48;5;243m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;220;48;5;241m▓\u001b[38;5;112;48;5;242m▓\u001b[38;5;112;48;5;242m▓\u001b[38;5;154;48;5;240m▓\u001b[38;5;149;48;5;239m▓\u001b[38;5;79;48;5;239m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;107;48;5;232m▓\u001b[38;5;112;48;5;234m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;190;48;5;236m▓\u001b[38;5;178;48;5;237m▓\u001b[38;5;220;48;5;238m▓\u001b[38;5;136;48;5;240m▓\u001b[38;5;136;48;5;240m▓\u001b[38;5;137;48;5;59m▓\u001b[38;5;137;48;5;59m▓\u001b[38;5;137;48;5;242m▓\u001b[38;5;137;48;5;242m▓\u001b[38;5;137;48;5;243m▓\u001b[38;5;202;48;5;243m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;137;48;5;59m▓\u001b[38;5;173;48;5;244m▓\u001b[38;5;173;48;5;245m▓\u001b[38;5;214;48;5;243m▓\u001b[38;5;137;48;5;244m▓\u001b[38;5;137;48;5;244m▓\u001b[38;5;137;48;5;102m▓\u001b[38;5;130;48;5;245m▓\u001b[38;5;172;48;5;245m▓\u001b[38;5;179;48;5;247m▓\u001b[38;5;06;48;5;247m▓\u001b[38;5;130;48;5;246m▓\u001b[38;5;130;48;5;102m▓\u001b[38;5;137;48;5;138m▓\u001b[38;5;130;48;5;245m▓\u001b[38;5;130;48;5;246m▓\u001b[38;5;130;48;5;246m▓\u001b[38;5;137;48;5;245m▓\u001b[38;5;130;48;5;247m▓\u001b[38;5;172;48;5;247m▓\u001b[38;5;172;48;5;246m▓\u001b[38;5;214;48;5;245m▓\u001b[38;5;130;48;5;101m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;32;48;5;145m▓\u001b[38;5;27;48;5;109m▓\u001b[38;5;94;48;5;101m▓\u001b[38;5;136;48;5;102m▓\u001b[38;5;172;48;5;243m▓\u001b[38;5;178;48;5;242m▓\u001b[38;5;35;48;5;246m▓\u001b[38;5;31;48;5;246m▓\u001b[38;5;65;48;5;242m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;68;48;5;242m▓\u001b[38;5;84;48;5;240m▓\u001b[38;5;76;48;5;239m▓\u001b[38;5;41;48;5;238m▓\u001b[38;5;220;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;149;48;5;232m▓\u001b[38;5;190;48;5;234m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;220;48;5;236m▓\u001b[38;5;101;48;5;237m▓\u001b[38;5;94;48;5;238m▓\u001b[38;5;172;48;5;238m▓\u001b[38;5;130;48;5;239m▓\u001b[38;5;130;48;5;240m▓\u001b[38;5;137;48;5;240m▓\u001b[38;5;130;48;5;59m▓\u001b[38;5;209;48;5;241m▓\u001b[38;5;173;48;5;242m▓\u001b[38;5;06;48;5;242m▓\u001b[38;5;125;48;5;240m▓\u001b[38;5;204;48;5;242m▓\u001b[38;5;06;48;5;241m▓\u001b[38;5;06;48;5;59m▓\u001b[38;5;130;48;5;242m▓\u001b[38;5;202;48;5;243m▓\u001b[38;5;94;48;5;241m▓\u001b[38;5;179;48;5;244m▓\u001b[38;5;202;48;5;95m▓\u001b[38;5;130;48;5;242m▓\u001b[38;5;137;48;5;241m▓\u001b[38;5;130;48;5;59m▓\u001b[38;5;214;48;5;242m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;172;48;5;243m▓\u001b[38;5;179;48;5;101m▓\u001b[38;5;220;48;5;242m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;172;48;5;243m▓\u001b[38;5;172;48;5;243m▓\u001b[38;5;172;48;5;101m▓\u001b[38;5;06;48;5;242m▓\u001b[38;5;208;48;5;95m▓\u001b[38;5;06;48;5;241m▓\u001b[38;5;202;48;5;95m▓\u001b[38;5;137;48;5;241m▓\u001b[38;5;214;48;5;241m▓\u001b[38;5;137;48;5;241m▓\u001b[38;5;172;48;5;59m▓\u001b[38;5;202;48;5;241m▓\u001b[38;5;190;48;5;241m▓\u001b[38;5;202;48;5;241m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;68;48;5;240m▓\u001b[38;5;119;48;5;239m▓\u001b[38;5;82;48;5;237m▓\u001b[38;5;220;48;5;234m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;119;48;5;232m▓\u001b[38;5;190;48;5;234m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;112;48;5;236m▓\u001b[38;5;107;48;5;237m▓\u001b[38;5;107;48;5;238m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;209;48;5;239m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;72;48;5;242m▓\u001b[38;5;69;48;5;242m▓\u001b[38;5;60;48;5;243m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;221;48;5;243m▓\u001b[38;5;244;48;5;243m▓\u001b[38;5;179;48;5;244m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;65;48;5;245m▓\u001b[38;5;172;48;5;102m▓\u001b[38;5;101;48;5;244m▓\u001b[38;5;172;48;5;244m▓\u001b[38;5;137;48;5;102m▓\u001b[38;5;221;48;5;243m▓\u001b[38;5;06;48;5;243m▓\u001b[38;5;130;48;5;243m▓\u001b[38;5;06;48;5;243m▓\u001b[38;5;172;48;5;243m▓\u001b[38;5;220;48;5;244m▓\u001b[38;5;220;48;5;242m▓\u001b[38;5;190;48;5;242m▓\u001b[38;5;06;48;5;243m▓\u001b[38;5;172;48;5;242m▓\u001b[38;5;68;48;5;244m▓\u001b[38;5;45;48;5;243m▓\u001b[38;5;74;48;5;243m▓\u001b[38;5;43;48;5;242m▓\u001b[38;5;45;48;5;242m▓\u001b[38;5;27;48;5;241m▓\u001b[38;5;32;48;5;241m▓\u001b[38;5;32;48;5;241m▓\u001b[38;5;29;48;5;240m▓\u001b[38;5;113;48;5;238m▓\u001b[38;5;84;48;5;238m▓\u001b[38;5;06;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;232m \u001b[38;5;186;48;5;233m▒\u001b[38;5;144;48;5;234m▓\u001b[38;5;144;48;5;235m▓\u001b[38;5;101;48;5;236m▓\u001b[38;5;136;48;5;236m▓\u001b[38;5;101;48;5;237m▓\u001b[38;5;221;48;5;238m▓\u001b[38;5;101;48;5;238m▓\u001b[38;5;221;48;5;239m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;220;48;5;240m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;221;48;5;241m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;220;48;5;59m▓\u001b[38;5;101;48;5;241m▓\u001b[38;5;101;48;5;241m▓\u001b[38;5;94;48;5;241m▓\u001b[38;5;179;48;5;241m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;101;48;5;59m▓\u001b[38;5;101;48;5;242m▓\u001b[38;5;94;48;5;242m▓\u001b[38;5;220;48;5;241m▓\u001b[38;5;190;48;5;241m▓\u001b[38;5;190;48;5;241m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;148;48;5;241m▓\u001b[38;5;112;48;5;241m▓\u001b[38;5;191;48;5;240m▓\u001b[38;5;70;48;5;240m▓\u001b[38;5;70;48;5;240m▓\u001b[38;5;149;48;5;239m▓\u001b[38;5;119;48;5;239m▓\u001b[38;5;154;48;5;238m▓\u001b[38;5;191;48;5;236m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;136;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;190;48;5;233m▓\u001b[38;5;191;48;5;234m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;190;48;5;235m▓\u001b[38;5;190;48;5;236m▓\u001b[38;5;149;48;5;237m▓\u001b[38;5;84;48;5;237m▓\u001b[38;5;190;48;5;237m▓\u001b[38;5;190;48;5;238m▓\u001b[38;5;190;48;5;238m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;101;48;5;239m▓\u001b[38;5;101;48;5;239m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;190;48;5;239m▓\u001b[38;5;190;48;5;240m▓\u001b[38;5;190;48;5;240m▓\u001b[38;5;101;48;5;240m▓\u001b[38;5;94;48;5;240m▓\u001b[38;5;94;48;5;240m▓\u001b[38;5;112;48;5;239m▓\u001b[38;5;70;48;5;239m▓\u001b[38;5;119;48;5;239m▓\u001b[38;5;107;48;5;239m▓\u001b[38;5;119;48;5;239m▓\u001b[38;5;119;48;5;238m▓\u001b[38;5;43;48;5;238m▓\u001b[38;5;119;48;5;237m▓\u001b[38;5;76;48;5;237m▓\u001b[38;5;118;48;5;235m▓\u001b[38;5;143;48;5;234m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;25;48;5;232m▒\u001b[38;5;32;48;5;233m▓\u001b[38;5;66;48;5;234m▓\u001b[38;5;42;48;5;234m▓\u001b[38;5;79;48;5;234m▓\u001b[38;5;78;48;5;235m▓\u001b[38;5;84;48;5;235m▓\u001b[38;5;65;48;5;235m▓\u001b[38;5;65;48;5;235m▓\u001b[38;5;65;48;5;236m▓\u001b[38;5;65;48;5;236m▓\u001b[38;5;113;48;5;236m▓\u001b[38;5;65;48;5;236m▓\u001b[38;5;84;48;5;236m▓\u001b[38;5;84;48;5;237m▓\u001b[38;5;35;48;5;237m▓\u001b[38;5;86;48;5;236m▓\u001b[38;5;42;48;5;237m▓\u001b[38;5;45;48;5;236m▓\u001b[38;5;45;48;5;236m▓\u001b[38;5;32;48;5;236m▓\u001b[38;5;45;48;5;236m▓\u001b[38;5;50;48;5;235m▓\u001b[38;5;84;48;5;234m▓\u001b[38;5;107;48;5;233m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;121;48;5;0m \u001b[38;5;78;48;5;232m▒\u001b[38;5;43;48;5;232m▓\u001b[38;5;42;48;5;233m▓\u001b[38;5;42;48;5;233m▓\u001b[38;5;43;48;5;233m▓\u001b[38;5;41;48;5;233m▓\u001b[38;5;119;48;5;232m▒\u001b[38;5;22;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/mars",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;52m \u001b[38;5;174;48;5;236m▒\u001b[38;5;209;48;5;181m▒\u001b[38;5;204;48;5;52m░\u001b[38;5;204;48;5;234m▒\u001b[38;5;220;48;5;230m \u001b[38;5;220;48;5;229m \u001b[38;5;230;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;172;48;5;223m▒\u001b[38;5;230;48;5;231m \u001b[38;5;209;48;5;94m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;52m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;204;48;5;52m░\u001b[38;5;204;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;204;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;216;48;5;52m░\u001b[38;5;209;48;5;130m▒\u001b[38;5;174;48;5;131m▒\u001b[38;5;06;48;5;209m \u001b[38;5;130;48;5;172m░\u001b[38;5;88;48;5;88m \u001b[38;5;204;48;5;88m▒\u001b[38;5;172;48;5;223m░\u001b[38;5;06;48;5;224m \u001b[38;5;220;48;5;230m \u001b[38;5;202;48;5;06m░\u001b[38;5;204;48;5;1m░\u001b[38;5;07;48;5;00m░\u001b[38;5;124;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;52m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;1m░\u001b[38;5;204;48;5;88m░\u001b[38;5;124;48;5;124m░\u001b[38;5;00;48;5;124m░\u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;196;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;196m░\u001b[38;5;209;48;5;196m \u001b[38;5;204;48;5;52m░\u001b[38;5;01;48;5;52m░\u001b[38;5;175;48;5;235m▒\u001b[38;5;204;48;5;236m▓\u001b[38;5;204;48;5;1m░\u001b[38;5;07;48;5;52m░\u001b[38;5;204;48;5;52m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m \u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;88m \u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;00m░\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;1m░\u001b[38;5;204;48;5;1m \u001b[38;5;204;48;5;88m \u001b[38;5;124;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;89m▒\u001b[38;5;204;48;5;52m░\u001b[38;5;08;48;5;52m▒\u001b[38;5;204;48;5;52m░\u001b[38;5;204;48;5;52m░\u001b[38;5;204;48;5;1m░\u001b[38;5;204;48;5;1m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;00m░\u001b[38;5;88;48;5;88m \u001b[38;5;204;48;5;124m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;1m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;238m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▓\u001b[38;5;204;48;5;235m▒\u001b[38;5;08;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;08;48;5;236m▒\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;196;48;5;00m░\u001b[38;5;196;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;204;48;5;124m░\u001b[38;5;1;48;5;52m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;07;48;5;88m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;202m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m░\u001b[38;5;07;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;1m░\u001b[38;5;197;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▓\u001b[38;5;204;48;5;234m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;238m▒\u001b[38;5;204;48;5;125m░\u001b[38;5;204;48;5;238m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;204;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;07;48;5;124m▒\u001b[38;5;00;48;5;124m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;88;48;5;88m \u001b[38;5;00;48;5;00m \u001b[38;5;196;48;5;196m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;174;48;5;236m▒\u001b[38;5;204;48;5;238m▓\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;234m▒\u001b[38;5;131;48;5;236m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;237m▓\u001b[38;5;204;48;5;237m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;204;48;5;1m░\u001b[38;5;204;48;5;88m▒\u001b[38;5;209;48;5;124m░\u001b[38;5;07;48;5;124m▒\u001b[38;5;204;48;5;89m▒\u001b[38;5;124;48;5;88m░\u001b[38;5;00;48;5;00m░\u001b[38;5;52;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m░\u001b[38;5;216;48;5;202m░\u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m░\u001b[38;5;07;48;5;124m░\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;237m▒\u001b[38;5;204;48;5;234m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;08;48;5;235m▒\u001b[38;5;08;48;5;237m▓\u001b[38;5;08;48;5;235m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;237m▓\u001b[38;5;204;48;5;237m▒\u001b[38;5;174;48;5;1m▒\u001b[38;5;196;48;5;00m░\u001b[38;5;07;48;5;06m░\u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;131m▒\u001b[38;5;204;48;5;88m▒\u001b[38;5;07;48;5;124m░\u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;06m░\u001b[38;5;52;48;5;52m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;06m░\u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m░\u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;130;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;00;48;5;00m░\u001b[38;5;88;48;5;88m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;131;48;5;236m▒\u001b[38;5;131;48;5;236m▒\u001b[38;5;204;48;5;238m▒\u001b[38;5;174;48;5;238m▒\u001b[38;5;209;48;5;202m░\u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;124m░\u001b[38;5;209;48;5;07m░\u001b[38;5;204;48;5;88m▒\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;06m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;52m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;06m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;208;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;196m \u001b[38;5;00;48;5;00m░\u001b[38;5;204;48;5;124m▒\u001b[38;5;196;48;5;196m░\u001b[38;5;209;48;5;00m░\u001b[38;5;204;48;5;88m▒\u001b[38;5;204;48;5;52m▒\u001b[38;5;174;48;5;238m▒\u001b[38;5;174;48;5;95m▒\u001b[38;5;07;48;5;88m▒\u001b[38;5;174;48;5;131m▒\u001b[38;5;07;48;5;88m░\u001b[38;5;07;48;5;88m░\u001b[38;5;07;48;5;124m░\u001b[38;5;07;48;5;00m░\u001b[38;5;196;48;5;00m░\u001b[38;5;07;48;5;00m░\u001b[38;5;07;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;196;48;5;00m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;202m░\u001b[38;5;216;48;5;202m░\u001b[38;5;216;48;5;202m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;216;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;130;48;5;208m \u001b[38;5;208;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;124;48;5;88m░\u001b[38;5;209;48;5;130m░\u001b[38;5;00;48;5;00m \u001b[38;5;07;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;07;48;5;00m░\u001b[38;5;07;48;5;124m░\u001b[38;5;07;48;5;88m░\u001b[38;5;204;48;5;88m▒\u001b[38;5;174;48;5;95m▒\u001b[38;5;07;48;5;1m░\u001b[38;5;204;48;5;124m▒\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;88m▒\u001b[38;5;174;48;5;1m▒\u001b[38;5;07;48;5;52m▒\u001b[38;5;07;48;5;124m░\u001b[38;5;196;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;07;48;5;130m░\u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;06m░\u001b[38;5;202;48;5;202m░\u001b[38;5;52;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;209;48;5;06m \u001b[38;5;06;48;5;202m \u001b[38;5;216;48;5;06m \u001b[38;5;202;48;5;06m \u001b[38;5;196;48;5;196m░\u001b[38;5;06;48;5;216m \u001b[38;5;209;48;5;1m░\u001b[38;5;204;48;5;52m▒\u001b[38;5;174;48;5;131m▒\u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;196;48;5;00m░\u001b[38;5;07;48;5;131m▒\u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m░\u001b[38;5;07;48;5;124m▒\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;06m░\u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;06m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;233m \u001b[38;5;06;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;208;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;208;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;208;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;06m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;88m░\u001b[38;5;209;48;5;00m░\u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m░\u001b[38;5;216;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m░\u001b[38;5;196;48;5;06m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;196;48;5;196m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;216;48;5;209m \u001b[38;5;209;48;5;124m \u001b[38;5;07;48;5;88m░\u001b[38;5;124;48;5;124m░\u001b[38;5;209;48;5;130m \u001b[38;5;216;48;5;06m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;202m \u001b[38;5;208;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;208;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;208m░\u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m \u001b[38;5;07;48;5;124m▒\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;130m░\u001b[38;5;209;48;5;130m░\u001b[38;5;216;48;5;06m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;196m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;208;48;5;208m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;130;48;5;214m \u001b[38;5;196;48;5;06m░\u001b[38;5;209;48;5;202m░\u001b[38;5;06;48;5;208m \u001b[38;5;07;48;5;124m░\u001b[38;5;07;48;5;52m░\u001b[38;5;07;48;5;06m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;124m \u001b[38;5;204;48;5;238m▒\u001b[38;5;209;48;5;130m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;07m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;216;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;208;48;5;208m \u001b[38;5;216;48;5;06m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;06m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;06;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m░\u001b[38;5;209;48;5;06m \u001b[38;5;07;48;5;00m░\u001b[38;5;203;48;5;07m░\u001b[38;5;204;48;5;88m▒\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;88m░\u001b[38;5;204;48;5;1m▒\u001b[38;5;174;48;5;237m▒\u001b[38;5;209;48;5;130m▒\u001b[38;5;52;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;06m░\u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;202m░\u001b[38;5;215;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;208;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;209m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m░\u001b[38;5;07;48;5;07m▒\u001b[38;5;174;48;5;237m▒\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;237m▒\u001b[38;5;209;48;5;95m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;216;48;5;202m░\u001b[38;5;202;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;06m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;209;48;5;88m \u001b[38;5;216;48;5;06m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;06m \u001b[38;5;173;48;5;58m▒\u001b[38;5;00;48;5;00m \u001b[38;5;06;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;88;48;5;88m \u001b[38;5;06;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;124m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;204;48;5;238m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;209;48;5;124m░\u001b[38;5;07;48;5;88m▒\u001b[38;5;204;48;5;238m▒\u001b[38;5;209;48;5;52m▒\u001b[38;5;173;48;5;130m░\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;00m░\u001b[38;5;06;48;5;06m \u001b[38;5;06;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;202;48;5;06m░\u001b[38;5;215;48;5;208m \u001b[38;5;216;48;5;06m \u001b[38;5;202;48;5;06m \u001b[38;5;208;48;5;208m \u001b[38;5;202;48;5;06m \u001b[38;5;216;48;5;202m░\u001b[38;5;124;48;5;124m \u001b[38;5;216;48;5;06m░\u001b[38;5;208;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;204;48;5;1m▒\u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m░\u001b[38;5;204;48;5;52m░\u001b[38;5;07;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;216;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;124m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;124m▒\u001b[38;5;07;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;204;48;5;239m▓\u001b[38;5;204;48;5;1m░\u001b[38;5;07;48;5;88m▒\u001b[38;5;209;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;209;48;5;130m░\u001b[38;5;209;48;5;130m░\u001b[38;5;209;48;5;1m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;07;48;5;52m░\u001b[38;5;209;48;5;06m░\u001b[38;5;202;48;5;202m░\u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;06m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;202;48;5;202m \u001b[38;5;130;48;5;208m \u001b[38;5;209;48;5;06m \u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;06m \u001b[38;5;209;48;5;00m \u001b[38;5;06;48;5;06m \u001b[38;5;208;48;5;208m \u001b[38;5;208;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;00m░\u001b[38;5;1;48;5;1m \u001b[38;5;204;48;5;125m▒\u001b[38;5;204;48;5;238m▓\u001b[38;5;204;48;5;1m▒\u001b[38;5;07;48;5;52m░\u001b[38;5;204;48;5;1m▒\u001b[38;5;204;48;5;89m▒\u001b[38;5;07;48;5;52m▒\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;00;48;5;124m░\u001b[38;5;07;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;204;48;5;124m▒\u001b[38;5;174;48;5;131m▒\u001b[38;5;1;48;5;1m░\u001b[38;5;07;48;5;1m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;07;48;5;1m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;204;48;5;236m▒\u001b[38;5;204;48;5;52m░\u001b[38;5;07;48;5;124m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m░\u001b[38;5;06;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;06m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;203m \u001b[38;5;204;48;5;00m░\u001b[38;5;204;48;5;236m▒\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;95m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;197;48;5;236m▒\u001b[38;5;173;48;5;237m▓\u001b[38;5;07;48;5;88m▒\u001b[38;5;209;48;5;130m▒\u001b[38;5;124;48;5;124m░\u001b[38;5;07;48;5;00m░\u001b[38;5;216;48;5;209m░\u001b[38;5;88;48;5;88m░\u001b[38;5;204;48;5;88m░\u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;07;48;5;52m▒\u001b[38;5;204;48;5;88m░\u001b[38;5;07;48;5;06m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;08;48;5;236m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;209;48;5;52m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;88m░\u001b[38;5;204;48;5;52m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;88m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;236m▓\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;237m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;204;48;5;237m▒\u001b[38;5;204;48;5;237m▒\u001b[38;5;131;48;5;95m▒\u001b[38;5;174;48;5;238m▒\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;238m▒\u001b[38;5;204;48;5;88m▒\u001b[38;5;204;48;5;124m░\u001b[38;5;88;48;5;88m░\u001b[38;5;07;48;5;124m░\u001b[38;5;88;48;5;88m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;88m░\u001b[38;5;204;48;5;88m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;124;48;5;124m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;124m░\u001b[38;5;07;48;5;52m░\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;235m▒\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;52m░\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;204;48;5;236m▒\u001b[38;5;204;48;5;1m░\u001b[38;5;204;48;5;1m░\u001b[38;5;02;48;5;234m▒\u001b[38;5;197;48;5;235m▒\u001b[38;5;204;48;5;236m▓\u001b[38;5;204;48;5;235m▓\u001b[38;5;204;48;5;238m▓\u001b[38;5;138;48;5;238m▓\u001b[38;5;204;48;5;237m▒\u001b[38;5;204;48;5;239m▓\u001b[38;5;204;48;5;238m▒\u001b[38;5;174;48;5;237m▒\u001b[38;5;07;48;5;52m▒\u001b[38;5;204;48;5;52m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;209;48;5;52m░\u001b[38;5;204;48;5;89m▒\u001b[38;5;124;48;5;124m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;130m▒\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;07;48;5;124m░\u001b[38;5;204;48;5;131m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;1;48;5;1m░\u001b[38;5;07;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;204;48;5;88m░\u001b[38;5;07;48;5;52m░\u001b[38;5;174;48;5;237m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;07;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;204;48;5;88m▒\u001b[38;5;204;48;5;237m▒\u001b[38;5;204;48;5;237m▒\u001b[38;5;204;48;5;238m▓\u001b[38;5;204;48;5;238m▓\u001b[38;5;204;48;5;239m▒\u001b[38;5;204;48;5;95m▒\u001b[38;5;204;48;5;239m▒\u001b[38;5;204;48;5;237m▒\u001b[38;5;204;48;5;239m▒\u001b[38;5;174;48;5;131m▒\u001b[38;5;204;48;5;88m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;124m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;07;48;5;124m░\u001b[38;5;209;48;5;00m \u001b[38;5;196;48;5;06m░\u001b[38;5;88;48;5;88m \u001b[38;5;07;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;204;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;00;48;5;124m░\u001b[38;5;00;48;5;124m░\u001b[38;5;00;48;5;124m░\u001b[38;5;204;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;204;48;5;1m░\u001b[38;5;204;48;5;125m▒\u001b[38;5;204;48;5;1m▒\u001b[38;5;07;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;06m░\u001b[38;5;1;48;5;1m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;233m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;124m░\u001b[38;5;124;48;5;88m░\u001b[38;5;204;48;5;88m░\u001b[38;5;07;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;06m░\u001b[38;5;196;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m░\u001b[38;5;216;48;5;06m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/mercury",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;06;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;208;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m░\u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;202;48;5;94m░\u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;233m \u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;209;48;5;1m \u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;209;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;208;48;5;172m░\u001b[38;5;216;48;5;1m \u001b[38;5;180;48;5;130m░\u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;209;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;94m░\u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;208;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;232m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;130;48;5;130m \u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;1m \u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;216;48;5;1m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;208;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;172;48;5;172m░\u001b[38;5;216;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;208;48;5;130m░\u001b[38;5;216;48;5;94m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;208;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;209;48;5;88m \u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;209;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;233m \u001b[38;5;06;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;130m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;215;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;172;48;5;214m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;06m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;214m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;06m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;172;48;5;178m░\u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;208;48;5;172m░\u001b[38;5;216;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;52m \u001b[38;5;06;48;5;94m░\u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;130;48;5;130m░\u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;216;48;5;94m \u001b[38;5;130;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;222;48;5;214m░\u001b[38;5;06;48;5;130m░\u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;130m \u001b[38;5;202;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;216;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;216;48;5;52m \u001b[38;5;216;48;5;52m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;06m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;94m░\u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;52m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;172;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;52m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;202;48;5;94m░\u001b[38;5;216;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;52m \u001b[38;5;179;48;5;178m░\u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;88m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;209;48;5;1m \u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;94m \u001b[38;5;130;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;172m░\u001b[38;5;94;48;5;221m \u001b[38;5;222;48;5;214m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;216;48;5;88m \u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m░\u001b[38;5;209;48;5;52m \u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;94m░\u001b[38;5;209;48;5;232m \u001b[38;5;216;48;5;232m \u001b[38;5;214;48;5;232m \u001b[38;5;209;48;5;52m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;52m \u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;221;48;5;221m \u001b[38;5;130;48;5;130m░\u001b[38;5;214;48;5;215m░\u001b[38;5;222;48;5;214m░\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;178m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;172;48;5;172m░\u001b[38;5;179;48;5;172m░\u001b[38;5;214;48;5;215m░\u001b[38;5;94;48;5;221m \u001b[38;5;94;48;5;221m \u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;215m \u001b[38;5;215;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;136m░\u001b[38;5;222;48;5;215m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;202;48;5;130m \u001b[38;5;209;48;5;52m \u001b[38;5;130;48;5;172m░\u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;202;48;5;94m \u001b[38;5;208;48;5;130m░\u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;52m \u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;94;48;5;221m \u001b[38;5;221;48;5;221m \u001b[38;5;136;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;215m░\u001b[38;5;222;48;5;215m░\u001b[38;5;222;48;5;178m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;136m░\u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;215m░\u001b[38;5;222;48;5;215m░\u001b[38;5;94;48;5;221m \u001b[38;5;130;48;5;172m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;208;48;5;130m░\u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;94m░\u001b[38;5;209;48;5;1m \u001b[38;5;215;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;94;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;221;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;172;48;5;215m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;221m \u001b[38;5;94;48;5;215m░\u001b[38;5;172;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;208;48;5;130m░\u001b[38;5;222;48;5;178m░\u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;06m░\u001b[38;5;172;48;5;178m░\u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;222;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;220;48;5;222m \u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;221;48;5;221m \u001b[38;5;222;48;5;178m░\u001b[38;5;130;48;5;130m \u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;214m░\u001b[38;5;222;48;5;215m \u001b[38;5;94;48;5;215m░\u001b[38;5;214;48;5;215m \u001b[38;5;221;48;5;221m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;178m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;202;48;5;1m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;215m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;214m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;94m \u001b[38;5;94;48;5;221m \u001b[38;5;214;48;5;215m░\u001b[38;5;94;48;5;221m \u001b[38;5;221;48;5;221m \u001b[38;5;214;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;178m░\u001b[38;5;179;48;5;178m░\u001b[38;5;222;48;5;178m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;52;48;5;52m \u001b[38;5;202;48;5;94m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;172;48;5;178m░\u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;172;48;5;215m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m \u001b[38;5;172;48;5;178m░\u001b[38;5;222;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;06;48;5;94m \u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m░\u001b[38;5;216;48;5;94m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;136m░\u001b[38;5;130;48;5;130m \u001b[38;5;222;48;5;215m░\u001b[38;5;94;48;5;221m░\u001b[38;5;220;48;5;228m \u001b[38;5;228;48;5;228m \u001b[38;5;214;48;5;215m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;215m░\u001b[38;5;222;48;5;214m░\u001b[38;5;222;48;5;214m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;130m░\u001b[38;5;172;48;5;215m░\u001b[38;5;06;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;06m░\u001b[38;5;172;48;5;172m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;214;48;5;179m░\u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;130m \u001b[38;5;216;48;5;94m░\u001b[38;5;216;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;130;48;5;06m░\u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;222;48;5;215m░\u001b[38;5;178;48;5;221m \u001b[38;5;179;48;5;178m░\u001b[38;5;94;48;5;221m░\u001b[38;5;179;48;5;178m░\u001b[38;5;221;48;5;221m \u001b[38;5;178;48;5;221m \u001b[38;5;220;48;5;228m \u001b[38;5;178;48;5;222m \u001b[38;5;94;48;5;221m \u001b[38;5;222;48;5;215m░\u001b[38;5;130;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;179;48;5;172m░\u001b[38;5;222;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;179;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;220;48;5;228m \u001b[38;5;222;48;5;178m░\u001b[38;5;222;48;5;215m░\u001b[38;5;220;48;5;222m \u001b[38;5;220;48;5;222m \u001b[38;5;222;48;5;214m░\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;222;48;5;214m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;06m░\u001b[38;5;214;48;5;178m░\u001b[38;5;228;48;5;228m \u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;179;48;5;172m░\u001b[38;5;214;48;5;214m░\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;221m \u001b[38;5;172;48;5;214m░\u001b[38;5;222;48;5;215m░\u001b[38;5;214;48;5;215m░\u001b[38;5;222;48;5;214m░\u001b[38;5;172;48;5;178m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;178m░\u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;214;48;5;215m░\u001b[38;5;130;48;5;130m \u001b[38;5;222;48;5;178m░\u001b[38;5;215;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;214;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;221;48;5;221m \u001b[38;5;136;48;5;221m \u001b[38;5;220;48;5;228m \u001b[38;5;221;48;5;221m \u001b[38;5;178;48;5;221m \u001b[38;5;136;48;5;221m \u001b[38;5;221;48;5;221m \u001b[38;5;214;48;5;214m░\u001b[38;5;172;48;5;215m░\u001b[38;5;222;48;5;215m░\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;215;48;5;130m░\u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;216;48;5;1m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;214;48;5;221m \u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;215m░\u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;214m░\u001b[38;5;94;48;5;221m░\u001b[38;5;179;48;5;178m░\u001b[38;5;214;48;5;215m░\u001b[38;5;222;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;178;48;5;221m \u001b[38;5;172;48;5;178m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;178m░\u001b[38;5;222;48;5;178m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;94;48;5;221m \u001b[38;5;172;48;5;214m░\u001b[38;5;214;48;5;221m \u001b[38;5;220;48;5;228m \u001b[38;5;214;48;5;215m░\u001b[38;5;222;48;5;178m░\u001b[38;5;222;48;5;215m░\u001b[38;5;94;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;222;48;5;215m░\u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;214m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;214;48;5;178m░\u001b[38;5;222;48;5;214m░\u001b[38;5;222;48;5;214m░\u001b[38;5;222;48;5;214m░\u001b[38;5;178;48;5;221m \u001b[38;5;94;48;5;215m░\u001b[38;5;208;48;5;130m \u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;215m░\u001b[38;5;136;48;5;221m \u001b[38;5;94;48;5;221m \u001b[38;5;94;48;5;215m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;94m \u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;214m░\u001b[38;5;130;48;5;06m░\u001b[38;5;172;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;214;48;5;215m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;208;48;5;172m░\u001b[38;5;172;48;5;178m░\u001b[38;5;130;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;208;48;5;130m \u001b[38;5;222;48;5;136m░\u001b[38;5;172;48;5;172m░\u001b[38;5;136;48;5;221m \u001b[38;5;179;48;5;178m░\u001b[38;5;94;48;5;179m░\u001b[38;5;214;48;5;221m \u001b[38;5;94;48;5;221m \u001b[38;5;222;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;214;48;5;215m \u001b[38;5;222;48;5;215m░\u001b[38;5;130;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;222;48;5;214m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;215m░\u001b[38;5;179;48;5;178m░\u001b[38;5;214;48;5;214m░\u001b[38;5;222;48;5;215m░\u001b[38;5;222;48;5;178m░\u001b[38;5;130;48;5;172m░\u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;222;48;5;214m░\u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;214;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;215m░\u001b[38;5;94;48;5;221m \u001b[38;5;222;48;5;215m░\u001b[38;5;130;48;5;172m░\u001b[38;5;221;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;216;48;5;52m \u001b[38;5;216;48;5;1m \u001b[38;5;06;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;208;48;5;130m░\u001b[38;5;222;48;5;215m \u001b[38;5;179;48;5;178m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;172;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;222;48;5;214m░\u001b[38;5;130;48;5;172m░\u001b[38;5;222;48;5;178m░\u001b[38;5;215;48;5;130m \u001b[38;5;202;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;208;48;5;06m░\u001b[38;5;208;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;202;48;5;94m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;215m \u001b[38;5;221;48;5;221m \u001b[38;5;222;48;5;215m░\u001b[38;5;222;48;5;214m░\u001b[38;5;94;48;5;221m \u001b[38;5;222;48;5;215m░\u001b[38;5;136;48;5;221m \u001b[38;5;220;48;5;222m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;06m░\u001b[38;5;215;48;5;130m░\u001b[38;5;222;48;5;214m░\u001b[38;5;179;48;5;178m░\u001b[38;5;222;48;5;215m░\u001b[38;5;172;48;5;178m░\u001b[38;5;222;48;5;215m░\u001b[38;5;222;48;5;214m░\u001b[38;5;214;48;5;215m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;130;48;5;06m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;215m░\u001b[38;5;214;48;5;214m░\u001b[38;5;222;48;5;215m░\u001b[38;5;222;48;5;178m░\u001b[38;5;214;48;5;215m░\u001b[38;5;179;48;5;172m░\u001b[38;5;221;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;215m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;214;48;5;215m░\u001b[38;5;222;48;5;178m░\u001b[38;5;94;48;5;221m░\u001b[38;5;130;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;214m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;172;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;179;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;172m░\u001b[38;5;202;48;5;94m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;94;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;94;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;179;48;5;178m░\u001b[38;5;214;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;172m░\u001b[38;5;221;48;5;221m \u001b[38;5;172;48;5;214m░\u001b[38;5;222;48;5;215m░\u001b[38;5;222;48;5;178m░\u001b[38;5;94;48;5;215m░\u001b[38;5;222;48;5;215m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;215m \u001b[38;5;222;48;5;178m░\u001b[38;5;222;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;130;48;5;172m░\u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;1m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;130;48;5;06m░\u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;94m \u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;214;48;5;215m░\u001b[38;5;179;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;214;48;5;215m░\u001b[38;5;179;48;5;178m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;222;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;179;48;5;178m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;06m░\u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;88m \u001b[38;5;172;48;5;172m░\u001b[38;5;216;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;06;48;5;94m░\u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;222;48;5;215m░\u001b[38;5;06;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;172;48;5;136m░\u001b[38;5;172;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;216;48;5;94m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;222;48;5;215m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;222;48;5;215m░\u001b[38;5;130;48;5;130m░\u001b[38;5;222;48;5;172m░\u001b[38;5;222;48;5;178m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;209;48;5;52m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;130m \u001b[38;5;216;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;06;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m░\u001b[38;5;216;48;5;88m \u001b[38;5;180;48;5;173m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;52m \u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;179;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;222;48;5;214m░\u001b[38;5;172;48;5;172m░\u001b[38;5;172;48;5;215m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;215;48;5;06m░\u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;88m \u001b[38;5;215;48;5;130m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;130;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;215;48;5;130m \u001b[38;5;130;48;5;130m \u001b[38;5;208;48;5;130m \u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;130;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;208;48;5;130m░\u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;94m░\u001b[38;5;216;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;06;48;5;130m░\u001b[38;5;202;48;5;94m░\u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m░\u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;130;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;209;48;5;1m \u001b[38;5;208;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;172m░\u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m░\u001b[38;5;130;48;5;172m░\u001b[38;5;130;48;5;130m░\u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;172;48;5;172m░\u001b[38;5;130;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;88m \u001b[38;5;215;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;216;48;5;1m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;130;48;5;130m░\u001b[38;5;208;48;5;130m░\u001b[38;5;208;48;5;172m░\u001b[38;5;130;48;5;06m░\u001b[38;5;130;48;5;172m░\u001b[38;5;172;48;5;172m░\u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m░\u001b[38;5;208;48;5;130m░\u001b[38;5;130;48;5;06m░\u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;88m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m░\u001b[38;5;215;48;5;130m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;94m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;209;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;209;48;5;52m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;172;48;5;172m░\u001b[38;5;215;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;94m░\u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m░\u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m░\u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;209;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;216;48;5;52m \u001b[38;5;216;48;5;52m \u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;94m \u001b[38;5;208;48;5;06m░\u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;202;48;5;94m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;216;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;1m \u001b[38;5;202;48;5;94m \u001b[38;5;172;48;5;172m░\u001b[38;5;202;48;5;94m \u001b[38;5;216;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;209;48;5;1m \u001b[38;5;06;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;202;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;215;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m \u001b[38;5;215;48;5;130m \u001b[38;5;216;48;5;94m \u001b[38;5;216;48;5;88m \u001b[38;5;202;48;5;94m \u001b[38;5;06;48;5;130m \u001b[38;5;06;48;5;130m░\u001b[38;5;209;48;5;233m \u001b[38;5;209;48;5;233m \u001b[38;5;215;48;5;130m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/moon",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;247;48;5;246m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;145;48;5;145m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;188;48;5;252m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;252;48;5;251m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;241;48;5;240m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;240;48;5;239m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;240;48;5;239m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;247;48;5;246m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;249;48;5;145m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;244;48;5;243m▓\u001b[38;5;243;48;5;242m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;249;48;5;145m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;250;48;5;249m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;241;48;5;241m▓\u001b[38;5;244;48;5;243m▓\u001b[38;5;244;48;5;243m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;242;48;5;242m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;238;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;241;48;5;241m▓\u001b[38;5;243;48;5;242m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;249;48;5;145m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;240;48;5;239m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;241;48;5;241m▓\u001b[38;5;247;48;5;246m▓\u001b[38;5;145;48;5;145m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;145;48;5;248m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;250;48;5;249m▓\u001b[38;5;253;48;5;188m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;240;48;5;239m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;238;48;5;237m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;242;48;5;242m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;243;48;5;242m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;250;48;5;249m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;249;48;5;145m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;239;48;5;238m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;242;48;5;242m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;239;48;5;238m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;247;48;5;246m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;238;48;5;237m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;238;48;5;237m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;242;48;5;242m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;250;48;5;249m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;248;48;5;247m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;234;48;5;234m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;239;48;5;238m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;243;48;5;242m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;145;48;5;248m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;145;48;5;248m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;243;48;5;242m▓\u001b[38;5;249;48;5;145m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;145;48;5;248m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;236;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;239;48;5;238m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;243;48;5;242m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;240;48;5;239m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;244;48;5;243m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;145;48;5;145m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;235;48;5;234m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;188;48;5;188m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;242;48;5;241m▓\u001b[38;5;243;48;5;242m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;145;48;5;248m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;250;48;5;249m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;238;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;248;48;5;247m▓\u001b[38;5;249;48;5;145m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;188;48;5;188m▓\u001b[38;5;242;48;5;242m▓\u001b[38;5;240;48;5;240m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;239;48;5;239m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;247;48;5;246m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;243;48;5;242m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;237;48;5;236m▓\u001b[38;5;237;48;5;237m▓\u001b[38;5;236;48;5;236m▓\u001b[38;5;238;48;5;238m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;248;48;5;247m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;145;48;5;145m▓\u001b[38;5;243;48;5;243m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;246;48;5;246m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;247;48;5;246m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;188;48;5;188m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;255;48;5;255m▓\u001b[38;5;253;48;5;188m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;145;48;5;248m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;252;48;5;251m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;248;48;5;247m▓\u001b[38;5;249;48;5;145m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;244;48;5;244m▓\u001b[38;5;102;48;5;102m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;252;48;5;251m▓\u001b[38;5;253;48;5;188m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;249;48;5;145m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;145;48;5;248m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;145;48;5;248m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;188;48;5;252m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;245;48;5;245m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;145;48;5;145m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;251;48;5;251m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;241;48;5;59m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;235;48;5;235m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;7;48;5;250m▓\u001b[38;5;248;48;5;248m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;253;48;5;253m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;252;48;5;252m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;7;48;5;7m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;250;48;5;250m▓\u001b[38;5;247;48;5;247m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;249;48;5;249m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/neptune",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;99;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;233m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;19m▒\u001b[38;5;62;48;5;25m▒\u001b[38;5;62;48;5;25m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;25m░\u001b[38;5;62;48;5;25m▒\u001b[38;5;62;48;5;25m▒\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;25m░\u001b[38;5;62;48;5;19m▒\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;25m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;25m▒\u001b[38;5;62;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;21;48;5;27m░\u001b[38;5;21;48;5;63m░\u001b[38;5;21;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;21;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m▒\u001b[38;5;62;48;5;25m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;17m \u001b[38;5;62;48;5;25m▒\u001b[38;5;62;48;5;26m▒\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;62m░\u001b[38;5;62;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;21;48;5;27m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;62;48;5;26m▒\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m▒\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;25m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;62;48;5;25m░\u001b[38;5;62;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;62;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m▒\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;62m░\u001b[38;5;62;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;21;48;5;62m░\u001b[38;5;69;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;233m \u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;62m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;62;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;27;48;5;69m \u001b[38;5;27;48;5;69m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;62m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;27;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;62m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;234m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;4m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;62m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;27;48;5;69m \u001b[38;5;25;48;5;75m \u001b[38;5;45;48;5;123m \u001b[38;5;45;48;5;123m \u001b[38;5;123;48;5;123m \u001b[38;5;39;48;5;117m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;62m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;63;48;5;63m \u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;4m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;111;48;5;69m \u001b[38;5;111;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;4m░\u001b[38;5;69;48;5;24m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;69m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;24m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;111;48;5;233m \u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;24m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;62m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;62m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;62m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;63m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;18m▒\u001b[38;5;69;48;5;24m▒\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;63m \u001b[38;5;69;48;5;27m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;62;48;5;19m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;25m▒\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;111;48;5;234m░\u001b[38;5;69;48;5;4m░\u001b[38;5;69;48;5;24m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;233m \u001b[38;5;69;48;5;18m▒\u001b[38;5;69;48;5;24m░\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;19m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;69;48;5;17m \u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;4m░\u001b[38;5;69;48;5;18m▒\u001b[38;5;69;48;5;4m░\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;24m░\u001b[38;5;69;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;26m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;62;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;69;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;26m░\u001b[38;5;69;48;5;26m░\u001b[38;5;62;48;5;26m░\u001b[38;5;69;48;5;26m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;17m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;4m░\u001b[38;5;69;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m▒\u001b[38;5;69;48;5;4m░\u001b[38;5;69;48;5;4m░\u001b[38;5;62;48;5;18m░\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;69;48;5;19m░\u001b[38;5;69;48;5;18m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m▒\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;25m░\u001b[38;5;69;48;5;19m░\u001b[38;5;62;48;5;19m░\u001b[38;5;69;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m░\u001b[38;5;62;48;5;18m▒\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m▒\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m░\u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m \u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;4m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m▒\u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;69;48;5;233m \u001b[38;5;69;48;5;17m \u001b[38;5;69;48;5;17m \u001b[38;5;69;48;5;17m \u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;62;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;69;48;5;17m░\u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/pluto",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;06;48;5;236m▒\u001b[38;5;137;48;5;138m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;208;48;5;237m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;137;48;5;138m▒\u001b[38;5;137;48;5;144m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;180;48;5;179m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;208;48;5;137m▒\u001b[38;5;208;48;5;137m▒\u001b[38;5;208;48;5;137m▒\u001b[38;5;208;48;5;137m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;137;48;5;137m▓\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;187m▒\u001b[38;5;180;48;5;187m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m░\u001b[38;5;06;48;5;180m░\u001b[38;5;06;48;5;180m░\u001b[38;5;06;48;5;216m░\u001b[38;5;06;48;5;223m \u001b[38;5;06;48;5;216m░\u001b[38;5;215;48;5;216m░\u001b[38;5;06;48;5;180m░\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;179m▒\u001b[38;5;180;48;5;179m▒\u001b[38;5;180;48;5;179m▒\u001b[38;5;208;48;5;137m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;137;48;5;239m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;180;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m \u001b[38;5;208;48;5;222m░\u001b[38;5;223;48;5;223m░\u001b[38;5;215;48;5;216m░\u001b[38;5;180;48;5;180m░\u001b[38;5;06;48;5;222m░\u001b[38;5;06;48;5;222m░\u001b[38;5;06;48;5;223m \u001b[38;5;06;48;5;222m░\u001b[38;5;180;48;5;180m░\u001b[38;5;06;48;5;216m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;179m▒\u001b[38;5;180;48;5;179m▒\u001b[38;5;208;48;5;137m▒\u001b[38;5;06;48;5;174m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;180;48;5;238m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;06;48;5;138m▒\u001b[38;5;06;48;5;144m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;130;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;06;48;5;216m░\u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;223;48;5;222m░\u001b[38;5;215;48;5;216m░\u001b[38;5;06;48;5;216m░\u001b[38;5;223;48;5;222m \u001b[38;5;06;48;5;222m░\u001b[38;5;223;48;5;223m \u001b[38;5;06;48;5;216m░\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;239m▒\u001b[38;5;180;48;5;237m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;235m░\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;223;48;5;223m░\u001b[38;5;208;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;06;48;5;222m░\u001b[38;5;172;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;180;48;5;180m░\u001b[38;5;223;48;5;222m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;138m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;238m▒\u001b[38;5;06;48;5;239m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;223;48;5;223m░\u001b[38;5;208;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;180;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;216m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;181m▒\u001b[38;5;137;48;5;138m▒\u001b[38;5;137;48;5;138m▒\u001b[38;5;137;48;5;144m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;237m▒\u001b[38;5;06;48;5;237m▒\u001b[38;5;215;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;237m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;187m▒\u001b[38;5;06;48;5;144m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;208;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;172;48;5;224m \u001b[38;5;223;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;06;48;5;174m▒\u001b[38;5;130;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;223;48;5;223m░\u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;138m▒\u001b[38;5;06;48;5;138m▒\u001b[38;5;137;48;5;138m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;208;48;5;58m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;180;48;5;181m▒\u001b[38;5;130;48;5;223m \u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;180;48;5;181m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m \u001b[38;5;172;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;180;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;180;48;5;239m▒\u001b[38;5;137;48;5;238m▒\u001b[38;5;06;48;5;235m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;240m▒\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;223m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;181m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;222m░\u001b[38;5;223;48;5;222m░\u001b[38;5;208;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;223;48;5;223m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;137;48;5;239m▒\u001b[38;5;180;48;5;237m▒\u001b[38;5;06;48;5;238m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;239m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;138m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;223m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;187m▒\u001b[38;5;137;48;5;144m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;208;48;5;216m░\u001b[38;5;208;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;138m▒\u001b[38;5;06;48;5;138m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;239m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;239m▒\u001b[38;5;06;48;5;238m▒\u001b[38;5;06;48;5;237m▒\u001b[38;5;216;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;237m▒\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;144m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;181m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;95m▓\u001b[38;5;137;48;5;144m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;222m░\u001b[38;5;06;48;5;179m▒\u001b[38;5;223;48;5;223m \u001b[38;5;06;48;5;222m░\u001b[38;5;223;48;5;216m░\u001b[38;5;208;48;5;180m▒\u001b[38;5;208;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;174m▒\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;138m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;137;48;5;180m▒\u001b[38;5;137;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;239m▒\u001b[38;5;208;48;5;234m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;238m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;202;48;5;138m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;130;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;223;48;5;216m░\u001b[38;5;137;48;5;137m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;138m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;138m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;180;48;5;180m▒\u001b[38;5;130;48;5;180m▒\u001b[38;5;137;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;239m▒\u001b[38;5;06;48;5;239m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;236m▒\u001b[38;5;202;48;5;235m▒\u001b[38;5;06;48;5;237m▒\u001b[38;5;130;48;5;237m▒\u001b[38;5;208;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;137;48;5;95m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;172;48;5;223m \u001b[38;5;06;48;5;222m░\u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;223;48;5;223m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▒\u001b[38;5;06;48;5;138m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;217m░\u001b[38;5;06;48;5;137m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;138m▒\u001b[38;5;137;48;5;138m▒\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;237m▒\u001b[38;5;208;48;5;238m▒\u001b[38;5;209;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;233m \u001b[38;5;06;48;5;235m▒\u001b[38;5;180;48;5;235m▒\u001b[38;5;137;48;5;239m▓\u001b[38;5;06;48;5;236m▒\u001b[38;5;202;48;5;240m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;238m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;223;48;5;223m░\u001b[38;5;208;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;180;48;5;216m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;223;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;208;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;137;48;5;137m▒\u001b[38;5;137;48;5;95m▒\u001b[38;5;137;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;58m▒\u001b[38;5;180;48;5;237m▒\u001b[38;5;137;48;5;239m▒\u001b[38;5;208;48;5;234m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;180;48;5;235m▒\u001b[38;5;06;48;5;233m \u001b[38;5;06;48;5;235m▒\u001b[38;5;06;48;5;237m▓\u001b[38;5;06;48;5;239m▓\u001b[38;5;06;48;5;239m▒\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;208;48;5;222m░\u001b[38;5;06;48;5;223m░\u001b[38;5;208;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;130;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;208;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;222m░\u001b[38;5;223;48;5;222m░\u001b[38;5;223;48;5;223m░\u001b[38;5;180;48;5;180m░\u001b[38;5;223;48;5;223m \u001b[38;5;208;48;5;223m░\u001b[38;5;130;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m░\u001b[38;5;137;48;5;137m▓\u001b[38;5;137;48;5;95m▒\u001b[38;5;137;48;5;144m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;234m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;232m \u001b[38;5;202;48;5;233m \u001b[38;5;202;48;5;233m \u001b[38;5;06;48;5;233m \u001b[38;5;06;48;5;233m░\u001b[38;5;06;48;5;234m░\u001b[38;5;06;48;5;239m▒\u001b[38;5;06;48;5;234m \u001b[38;5;208;48;5;238m▒\u001b[38;5;137;48;5;95m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;223;48;5;223m \u001b[38;5;06;48;5;223m \u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;223;48;5;222m░\u001b[38;5;180;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;95m▒\u001b[38;5;216;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;173;48;5;234m▒\u001b[38;5;216;48;5;233m \u001b[38;5;209;48;5;233m \u001b[38;5;216;48;5;233m \u001b[38;5;202;48;5;233m \u001b[38;5;216;48;5;233m \u001b[38;5;52;48;5;232m \u001b[38;5;06;48;5;236m▒\u001b[38;5;06;48;5;237m▒\u001b[38;5;06;48;5;235m▒\u001b[38;5;209;48;5;233m \u001b[38;5;208;48;5;58m▒\u001b[38;5;06;48;5;58m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;208;48;5;223m░\u001b[38;5;223;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;222m░\u001b[38;5;06;48;5;223m░\u001b[38;5;223;48;5;222m░\u001b[38;5;223;48;5;223m░\u001b[38;5;208;48;5;223m░\u001b[38;5;208;48;5;223m░\u001b[38;5;180;48;5;223m░\u001b[38;5;180;48;5;223m░\u001b[38;5;06;48;5;181m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;137;48;5;138m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;95m▒\u001b[38;5;137;48;5;240m▒\u001b[38;5;216;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;173;48;5;233m▒\u001b[38;5;209;48;5;233m \u001b[38;5;209;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;216;48;5;233m \u001b[38;5;202;48;5;233m \u001b[38;5;209;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;06;48;5;233m \u001b[38;5;202;48;5;233m \u001b[38;5;216;48;5;233m \u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;223m░\u001b[38;5;180;48;5;223m░\u001b[38;5;180;48;5;222m░\u001b[38;5;180;48;5;222m░\u001b[38;5;208;48;5;216m░\u001b[38;5;208;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;223m░\u001b[38;5;06;48;5;181m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;180m▒\u001b[38;5;137;48;5;144m▒\u001b[38;5;137;48;5;180m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;208;48;5;137m▓\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;239m▒\u001b[38;5;180;48;5;58m▒\u001b[38;5;216;48;5;233m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;233m \u001b[38;5;202;48;5;233m \u001b[38;5;209;48;5;233m \u001b[38;5;216;48;5;233m \u001b[38;5;06;48;5;235m▒\u001b[38;5;202;48;5;233m \u001b[38;5;06;48;5;236m▒\u001b[38;5;209;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;52;48;5;232m \u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;239m▒\u001b[38;5;06;48;5;95m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;06;48;5;138m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;06;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;144m▒\u001b[38;5;137;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;239m▓\u001b[38;5;215;48;5;234m░\u001b[38;5;06;48;5;235m░\u001b[38;5;208;48;5;236m▒\u001b[38;5;52;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;173;48;5;234m▒\u001b[38;5;202;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;06;48;5;234m▒\u001b[38;5;202;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;209;48;5;232m \u001b[38;5;216;48;5;233m \u001b[38;5;216;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;216;48;5;233m \u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;144m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;138m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;180;48;5;180m▒\u001b[38;5;137;48;5;180m▒\u001b[38;5;137;48;5;144m▒\u001b[38;5;06;48;5;137m▒\u001b[38;5;137;48;5;101m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;202;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;215;48;5;235m░\u001b[38;5;209;48;5;232m \u001b[38;5;209;48;5;232m \u001b[38;5;209;48;5;232m \u001b[38;5;52;48;5;232m \u001b[38;5;202;48;5;233m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;06;48;5;240m▓\u001b[38;5;202;48;5;237m▓\u001b[38;5;180;48;5;235m▒\u001b[38;5;06;48;5;234m░\u001b[38;5;137;48;5;237m▓\u001b[38;5;180;48;5;236m▒\u001b[38;5;208;48;5;239m▓\u001b[38;5;137;48;5;238m▒\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;138m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;137;48;5;239m▒\u001b[38;5;06;48;5;238m▒\u001b[38;5;06;48;5;236m▒\u001b[38;5;06;48;5;235m░\u001b[38;5;06;48;5;236m▒\u001b[38;5;215;48;5;234m░\u001b[38;5;130;48;5;233m \u001b[38;5;202;48;5;233m \u001b[38;5;216;48;5;233m \u001b[38;5;216;48;5;232m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;232m \u001b[38;5;137;48;5;240m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;137;48;5;101m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;06;48;5;237m▒\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;101m▓\u001b[38;5;06;48;5;137m▓\u001b[38;5;06;48;5;95m▓\u001b[38;5;137;48;5;240m▒\u001b[38;5;06;48;5;238m▒\u001b[38;5;06;48;5;237m▒\u001b[38;5;06;48;5;237m▒\u001b[38;5;208;48;5;236m▒\u001b[38;5;06;48;5;233m \u001b[38;5;209;48;5;232m \u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;06;48;5;233m▒\u001b[38;5;173;48;5;237m▒\u001b[38;5;202;48;5;239m▒\u001b[38;5;137;48;5;95m▓\u001b[38;5;137;48;5;95m▓\u001b[38;5;208;48;5;95m▓\u001b[38;5;137;48;5;239m▓\u001b[38;5;06;48;5;239m▓\u001b[38;5;202;48;5;239m▓\u001b[38;5;06;48;5;237m▒\u001b[38;5;06;48;5;237m▒\u001b[38;5;06;48;5;239m▓\u001b[38;5;202;48;5;236m▒\u001b[38;5;173;48;5;233m░\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/saturn",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;200;48;5;234m▓\u001b[38;5;204;48;5;232m▓\u001b[38;5;197;48;5;233m▓\u001b[38;5;08;48;5;232m▓\u001b[38;5;197;48;5;232m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;209;48;5;233m▓\u001b[38;5;138;48;5;234m▓\u001b[38;5;209;48;5;235m▓\u001b[38;5;220;48;5;235m▒\u001b[38;5;130;48;5;234m▓\u001b[38;5;197;48;5;233m▓\u001b[38;5;125;48;5;233m▒\u001b[38;5;132;48;5;232m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;138;48;5;233m▓\u001b[38;5;130;48;5;235m▒\u001b[38;5;143;48;5;239m▒\u001b[38;5;52;48;5;0m \u001b[38;5;94;48;5;233m \u001b[38;5;136;48;5;235m▒\u001b[38;5;52;48;5;0m \u001b[38;5;209;48;5;233m▒\u001b[38;5;06;48;5;234m▓\u001b[38;5;08;48;5;233m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;234m▓\u001b[38;5;143;48;5;239m▓\u001b[38;5;208;48;5;232m \u001b[38;5;186;48;5;58m▒\u001b[38;5;185;48;5;58m▒\u001b[38;5;186;48;5;58m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;185;48;5;58m▒\u001b[38;5;186;48;5;58m▒\u001b[38;5;221;48;5;232m \u001b[38;5;172;48;5;234m▓\u001b[38;5;204;48;5;232m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;0m \u001b[38;5;172;48;5;236m▒\u001b[38;5;209;48;5;233m▒\u001b[38;5;186;48;5;58m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;214;48;5;235m▒\u001b[38;5;220;48;5;58m░\u001b[38;5;94;48;5;235m▒\u001b[38;5;179;48;5;237m▒\u001b[38;5;94;48;5;235m▒\u001b[38;5;185;48;5;58m▒\u001b[38;5;136;48;5;236m▒\u001b[38;5;130;48;5;236m▓\u001b[38;5;130;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;232m \u001b[38;5;185;48;5;236m▒\u001b[38;5;222;48;5;233m \u001b[38;5;178;48;5;58m▒\u001b[38;5;172;48;5;236m▒\u001b[38;5;209;48;5;236m▓\u001b[38;5;209;48;5;233m▒\u001b[38;5;209;48;5;234m▓\u001b[38;5;209;48;5;234m▓\u001b[38;5;131;48;5;234m▒\u001b[38;5;06;48;5;236m▓\u001b[38;5;136;48;5;235m░\u001b[38;5;220;48;5;240m▓\u001b[38;5;178;48;5;233m░\u001b[38;5;214;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;220;48;5;237m▒\u001b[38;5;136;48;5;236m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;179;48;5;236m▒\u001b[38;5;173;48;5;233m▒\u001b[38;5;204;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;07;48;5;232m░\u001b[38;5;202;48;5;234m▒\u001b[38;5;221;48;5;237m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;208;48;5;232m \u001b[38;5;94;48;5;234m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;220;48;5;237m▒\u001b[38;5;178;48;5;236m▒\u001b[38;5;220;48;5;236m░\u001b[38;5;172;48;5;235m▒\u001b[38;5;197;48;5;232m▒\u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;209;48;5;233m▒\u001b[38;5;172;48;5;236m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;208;48;5;232m \u001b[38;5;221;48;5;234m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;220;48;5;235m▒\u001b[38;5;178;48;5;235m▒\u001b[38;5;136;48;5;236m░\u001b[38;5;173;48;5;234m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;220;48;5;234m▒\u001b[38;5;107;48;5;65m▓\u001b[38;5;26;48;5;66m▓\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;61m▒\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;25;48;5;239m▓\u001b[38;5;69;48;5;238m▓\u001b[38;5;104;48;5;234m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;220;48;5;235m▒\u001b[38;5;180;48;5;233m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;208;48;5;234m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;103;48;5;236m▓\u001b[38;5;60;48;5;103m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;104;48;5;104m▒\u001b[38;5;105;48;5;105m \u001b[38;5;104;48;5;104m▒\u001b[38;5;99;48;5;103m▒\u001b[38;5;98;48;5;97m▓\u001b[38;5;98;48;5;97m▓\u001b[38;5;98;48;5;97m▒\u001b[38;5;56;48;5;103m▓\u001b[38;5;97;48;5;103m▓\u001b[38;5;172;48;5;247m▓\u001b[38;5;60;48;5;247m▓\u001b[38;5;103;48;5;103m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;103;48;5;60m▓\u001b[38;5;99;48;5;239m▓\u001b[38;5;99;48;5;236m▒\u001b[38;5;99;48;5;235m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;221;48;5;233m░\u001b[38;5;222;48;5;233m \u001b[38;5;220;48;5;58m▒\u001b[38;5;172;48;5;234m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;97;48;5;238m▓\u001b[38;5;56;48;5;60m▓\u001b[38;5;96;48;5;96m▓\u001b[38;5;132;48;5;96m▓\u001b[38;5;08;48;5;138m▓\u001b[38;5;55;48;5;97m▓\u001b[38;5;98;48;5;98m▒\u001b[38;5;99;48;5;141m \u001b[38;5;92;48;5;97m▓\u001b[38;5;05;48;5;133m▓\u001b[38;5;128;48;5;97m▓\u001b[38;5;05;48;5;96m▓\u001b[38;5;91;48;5;97m▓\u001b[38;5;05;48;5;97m▓\u001b[38;5;197;48;5;96m▓\u001b[38;5;178;48;5;180m▒\u001b[38;5;95;48;5;248m▓\u001b[38;5;56;48;5;103m▓\u001b[38;5;93;48;5;245m▓\u001b[38;5;56;48;5;60m▓\u001b[38;5;56;48;5;60m▓\u001b[38;5;57;48;5;240m▓\u001b[38;5;98;48;5;236m▓\u001b[38;5;99;48;5;234m▒\u001b[38;5;99;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;204;48;5;232m░\u001b[38;5;178;48;5;238m▓\u001b[38;5;178;48;5;58m▒\u001b[38;5;94;48;5;235m▒\u001b[38;5;204;48;5;0m \u001b[38;5;126;48;5;233m▒\u001b[38;5;204;48;5;95m▓\u001b[38;5;209;48;5;95m▓\u001b[38;5;131;48;5;131m▒\u001b[38;5;174;48;5;07m▒\u001b[38;5;204;48;5;174m▒\u001b[38;5;200;48;5;132m▓\u001b[38;5;93;48;5;97m▒\u001b[38;5;56;48;5;141m░\u001b[38;5;139;48;5;133m▓\u001b[38;5;01;48;5;132m▒\u001b[38;5;01;48;5;132m▓\u001b[38;5;197;48;5;138m▒\u001b[38;5;125;48;5;132m▓\u001b[38;5;08;48;5;175m▒\u001b[38;5;204;48;5;132m▓\u001b[38;5;179;48;5;179m░\u001b[38;5;179;48;5;180m▒\u001b[38;5;200;48;5;245m▓\u001b[38;5;200;48;5;244m▓\u001b[38;5;200;48;5;96m▓\u001b[38;5;200;48;5;241m▓\u001b[38;5;89;48;5;241m▓\u001b[38;5;96;48;5;238m▓\u001b[38;5;56;48;5;235m▓\u001b[38;5;56;48;5;233m▒\u001b[38;5;92;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;143;48;5;239m▒\u001b[38;5;190;48;5;101m▒\u001b[38;5;136;48;5;238m▒\u001b[38;5;202;48;5;232m▒\u001b[38;5;08;48;5;233m▒\u001b[38;5;209;48;5;131m▒\u001b[38;5;209;48;5;131m▒\u001b[38;5;209;48;5;07m▒\u001b[38;5;209;48;5;07m▒\u001b[38;5;209;48;5;173m░\u001b[38;5;01;48;5;132m▒\u001b[38;5;91;48;5;97m▒\u001b[38;5;93;48;5;134m▒\u001b[38;5;206;48;5;133m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;204;48;5;174m▒\u001b[38;5;204;48;5;174m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;180;48;5;179m▒\u001b[38;5;221;48;5;221m░\u001b[38;5;209;48;5;138m▓\u001b[38;5;198;48;5;138m▓\u001b[38;5;197;48;5;96m▓\u001b[38;5;01;48;5;95m▓\u001b[38;5;132;48;5;95m▓\u001b[38;5;95;48;5;59m▓\u001b[38;5;91;48;5;237m▓\u001b[38;5;97;48;5;235m▓\u001b[38;5;56;48;5;233m▒\u001b[38;5;99;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;84;48;5;65m▓\u001b[38;5;80;48;5;152m▒\u001b[38;5;148;48;5;237m▓\u001b[38;5;185;48;5;3m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;209;48;5;234m▒\u001b[38;5;125;48;5;232m▒\u001b[38;5;131;48;5;131m▒\u001b[38;5;209;48;5;131m▒\u001b[38;5;209;48;5;07m▒\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;173m░\u001b[38;5;204;48;5;07m▒\u001b[38;5;206;48;5;132m▒\u001b[38;5;55;48;5;98m▒\u001b[38;5;126;48;5;09m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;209;48;5;173m▒\u001b[38;5;221;48;5;221m░\u001b[38;5;208;48;5;180m▒\u001b[38;5;132;48;5;138m▓\u001b[38;5;132;48;5;96m▓\u001b[38;5;01;48;5;95m▓\u001b[38;5;01;48;5;59m▓\u001b[38;5;01;48;5;240m▓\u001b[38;5;02;48;5;238m▓\u001b[38;5;56;48;5;236m▓\u001b[38;5;56;48;5;233m▒\u001b[38;5;91;48;5;232m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;45;48;5;152m▒\u001b[38;5;195;48;5;195m \u001b[38;5;32;48;5;195m \u001b[38;5;97;48;5;103m▓\u001b[38;5;186;48;5;3m▒\u001b[38;5;220;48;5;101m▒\u001b[38;5;172;48;5;236m▒\u001b[38;5;204;48;5;0m \u001b[38;5;209;48;5;52m▒\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;209m░\u001b[38;5;07;48;5;07m░\u001b[38;5;01;48;5;132m▒\u001b[38;5;91;48;5;97m▒\u001b[38;5;176;48;5;176m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;07;48;5;07m▒\u001b[38;5;07;48;5;07m▒\u001b[38;5;07;48;5;07m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;180;48;5;173m░\u001b[38;5;214;48;5;179m░\u001b[38;5;204;48;5;138m▓\u001b[38;5;125;48;5;138m▓\u001b[38;5;198;48;5;96m▓\u001b[38;5;02;48;5;59m▓\u001b[38;5;03;48;5;240m▓\u001b[38;5;171;48;5;238m▓\u001b[38;5;98;48;5;236m▓\u001b[38;5;61;48;5;234m▒\u001b[38;5;99;48;5;232m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;113;48;5;239m▓\u001b[38;5;159;48;5;195m░\u001b[38;5;38;48;5;195m \u001b[38;5;195;48;5;195m \u001b[38;5;27;48;5;255m▒\u001b[38;5;92;48;5;139m▓\u001b[38;5;136;48;5;240m▒\u001b[38;5;186;48;5;101m▒\u001b[38;5;221;48;5;58m▒\u001b[38;5;174;48;5;232m▒\u001b[38;5;209;48;5;233m░\u001b[38;5;209;48;5;07m▒\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;203m░\u001b[38;5;209;48;5;203m░\u001b[38;5;209;48;5;203m░\u001b[38;5;204;48;5;07m▒\u001b[38;5;02;48;5;132m▒\u001b[38;5;92;48;5;98m▒\u001b[38;5;01;48;5;08m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;174;48;5;07m▒\u001b[38;5;174;48;5;07m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;08m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;174;48;5;131m▒\u001b[38;5;130;48;5;215m░\u001b[38;5;208;48;5;179m▒\u001b[38;5;89;48;5;96m▓\u001b[38;5;96;48;5;96m▓\u001b[38;5;96;48;5;96m▓\u001b[38;5;171;48;5;239m▓\u001b[38;5;55;48;5;238m▓\u001b[38;5;98;48;5;236m▓\u001b[38;5;99;48;5;235m▒\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;107;48;5;65m▓\u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;195m \u001b[38;5;116;48;5;195m▒\u001b[38;5;156;48;5;231m \u001b[38;5;195;48;5;231m \u001b[38;5;182;48;5;182m▓\u001b[38;5;199;48;5;96m▓\u001b[38;5;186;48;5;143m▒\u001b[38;5;220;48;5;3m▒\u001b[38;5;06;48;5;235m▒\u001b[38;5;200;48;5;232m▒\u001b[38;5;209;48;5;131m▒\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;203m░\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;209m░\u001b[38;5;204;48;5;07m░\u001b[38;5;197;48;5;131m▒\u001b[38;5;176;48;5;133m▒\u001b[38;5;176;48;5;134m▒\u001b[38;5;08;48;5;08m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;08;48;5;131m▒\u001b[38;5;131;48;5;131m▒\u001b[38;5;130;48;5;179m▒\u001b[38;5;209;48;5;138m▓\u001b[38;5;134;48;5;96m▓\u001b[38;5;93;48;5;60m▓\u001b[38;5;56;48;5;240m▓\u001b[38;5;98;48;5;237m▒\u001b[38;5;99;48;5;236m▒\u001b[38;5;104;48;5;234m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;64;48;5;235m▒\u001b[38;5;50;48;5;152m▒\u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;231m \u001b[38;5;195;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;178;48;5;231m \u001b[38;5;204;48;5;252m▓\u001b[38;5;139;48;5;96m▓\u001b[38;5;221;48;5;240m▒\u001b[38;5;220;48;5;136m▒\u001b[38;5;136;48;5;58m▒\u001b[38;5;204;48;5;232m░\u001b[38;5;52;48;5;52m░\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;203m░\u001b[38;5;209;48;5;203m░\u001b[38;5;204;48;5;07m▒\u001b[38;5;198;48;5;131m▒\u001b[38;5;92;48;5;97m▒\u001b[38;5;206;48;5;09m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;197;48;5;131m▒\u001b[38;5;197;48;5;95m▒\u001b[38;5;01;48;5;95m▓\u001b[38;5;204;48;5;95m▓\u001b[38;5;130;48;5;137m▓\u001b[38;5;199;48;5;96m▓\u001b[38;5;98;48;5;60m▒\u001b[38;5;99;48;5;239m▒\u001b[38;5;99;48;5;237m▒\u001b[38;5;99;48;5;235m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;109;48;5;109m▓\u001b[38;5;80;48;5;195m▒\u001b[38;5;195;48;5;195m \u001b[38;5;231;48;5;231m▓\u001b[38;5;195;48;5;231m \u001b[38;5;130;48;5;230m \u001b[38;5;173;48;5;255m░\u001b[38;5;204;48;5;224m▒\u001b[38;5;03;48;5;175m▒\u001b[38;5;197;48;5;95m▓\u001b[38;5;220;48;5;143m▒\u001b[38;5;220;48;5;101m▒\u001b[38;5;94;48;5;236m▒\u001b[38;5;54;48;5;233m▓\u001b[38;5;209;48;5;131m▒\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;203m░\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;203m░\u001b[38;5;204;48;5;07m░\u001b[38;5;197;48;5;131m▒\u001b[38;5;176;48;5;96m▒\u001b[38;5;134;48;5;134m▒\u001b[38;5;206;48;5;132m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;08;48;5;95m▒\u001b[38;5;198;48;5;95m▓\u001b[38;5;126;48;5;95m▒\u001b[38;5;200;48;5;59m▓\u001b[38;5;133;48;5;240m▒\u001b[38;5;200;48;5;240m▓\u001b[38;5;204;48;5;240m▓\u001b[38;5;93;48;5;240m▓\u001b[38;5;99;48;5;238m▒\u001b[38;5;99;48;5;236m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;98;48;5;235m▓\u001b[38;5;45;48;5;152m▓\u001b[38;5;45;48;5;195m░\u001b[38;5;116;48;5;255m▒\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;137;48;5;254m▒\u001b[38;5;222;48;5;230m \u001b[38;5;204;48;5;255m \u001b[38;5;02;48;5;182m▒\u001b[38;5;133;48;5;133m▓\u001b[38;5;130;48;5;239m▒\u001b[38;5;185;48;5;100m▒\u001b[38;5;136;48;5;58m▒\u001b[38;5;174;48;5;233m▒\u001b[38;5;204;48;5;234m▒\u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;07m░\u001b[38;5;07;48;5;07m░\u001b[38;5;209;48;5;07m░\u001b[38;5;203;48;5;203m░\u001b[38;5;204;48;5;07m▒\u001b[38;5;198;48;5;131m▒\u001b[38;5;129;48;5;97m▒\u001b[38;5;92;48;5;97m▒\u001b[38;5;200;48;5;96m▒\u001b[38;5;01;48;5;95m▒\u001b[38;5;199;48;5;95m▒\u001b[38;5;03;48;5;95m▒\u001b[38;5;133;48;5;59m▒\u001b[38;5;171;48;5;60m▒\u001b[38;5;92;48;5;60m▒\u001b[38;5;56;48;5;60m▒\u001b[38;5;98;48;5;239m▒\u001b[38;5;99;48;5;237m▒\u001b[38;5;62;48;5;17m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;98;48;5;235m▓\u001b[38;5;25;48;5;145m▓\u001b[38;5;32;48;5;189m▒\u001b[38;5;109;48;5;253m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;182;48;5;231m▓\u001b[38;5;202;48;5;224m░\u001b[38;5;224;48;5;224m░\u001b[38;5;209;48;5;224m▒\u001b[38;5;133;48;5;139m▒\u001b[38;5;200;48;5;95m▓\u001b[38;5;220;48;5;137m▒\u001b[38;5;186;48;5;137m▒\u001b[38;5;179;48;5;237m▒\u001b[38;5;125;48;5;232m \u001b[38;5;07;48;5;52m░\u001b[38;5;07;48;5;07m▒\u001b[38;5;07;48;5;07m▒\u001b[38;5;07;48;5;07m▒\u001b[38;5;07;48;5;07m▒\u001b[38;5;07;48;5;07m░\u001b[38;5;204;48;5;131m▒\u001b[38;5;03;48;5;5m▒\u001b[38;5;56;48;5;61m▒\u001b[38;5;56;48;5;98m▒\u001b[38;5;91;48;5;96m▒\u001b[38;5;133;48;5;96m▓\u001b[38;5;133;48;5;240m▒\u001b[38;5;171;48;5;240m▒\u001b[38;5;56;48;5;54m▒\u001b[38;5;98;48;5;54m▒\u001b[38;5;99;48;5;238m▒\u001b[38;5;99;48;5;237m▒\u001b[38;5;98;48;5;234m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;55;48;5;234m▒\u001b[38;5;69;48;5;243m▓\u001b[38;5;25;48;5;188m▒\u001b[38;5;45;48;5;254m▒\u001b[38;5;84;48;5;255m░\u001b[38;5;195;48;5;231m \u001b[38;5;195;48;5;231m \u001b[38;5;204;48;5;188m▓\u001b[38;5;216;48;5;224m \u001b[38;5;204;48;5;224m░\u001b[38;5;206;48;5;182m▓\u001b[38;5;133;48;5;97m▓\u001b[38;5;204;48;5;238m▓\u001b[38;5;220;48;5;136m▒\u001b[38;5;94;48;5;58m▒\u001b[38;5;180;48;5;235m▒\u001b[38;5;204;48;5;233m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;174;48;5;07m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;07m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;01;48;5;95m▒\u001b[38;5;128;48;5;60m▒\u001b[38;5;98;48;5;61m▒\u001b[38;5;99;48;5;62m▒\u001b[38;5;56;48;5;60m▒\u001b[38;5;57;48;5;60m▒\u001b[38;5;98;48;5;60m▒\u001b[38;5;99;48;5;238m▒\u001b[38;5;104;48;5;237m▒\u001b[38;5;99;48;5;235m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;55;48;5;232m░\u001b[38;5;98;48;5;236m▓\u001b[38;5;69;48;5;248m▓\u001b[38;5;74;48;5;189m▒\u001b[38;5;27;48;5;7m▓\u001b[38;5;195;48;5;231m \u001b[38;5;195;48;5;231m \u001b[38;5;111;48;5;255m \u001b[38;5;02;48;5;251m▓\u001b[38;5;07;48;5;224m▒\u001b[38;5;199;48;5;253m▒\u001b[38;5;139;48;5;139m▓\u001b[38;5;171;48;5;96m▓\u001b[38;5;172;48;5;95m▓\u001b[38;5;220;48;5;100m▒\u001b[38;5;178;48;5;58m▒\u001b[38;5;202;48;5;234m▒\u001b[38;5;175;48;5;233m▒\u001b[38;5;204;48;5;95m▒\u001b[38;5;204;48;5;131m▒\u001b[38;5;204;48;5;95m▒\u001b[38;5;204;48;5;95m▒\u001b[38;5;204;48;5;95m▒\u001b[38;5;197;48;5;95m▒\u001b[38;5;200;48;5;240m▒\u001b[38;5;55;48;5;240m▒\u001b[38;5;98;48;5;60m▒\u001b[38;5;99;48;5;61m▒\u001b[38;5;104;48;5;61m▒\u001b[38;5;104;48;5;237m▒\u001b[38;5;99;48;5;235m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;57;48;5;234m▒\u001b[38;5;103;48;5;238m▓\u001b[38;5;68;48;5;109m▓\u001b[38;5;68;48;5;189m░\u001b[38;5;68;48;5;146m▓\u001b[38;5;31;48;5;195m░\u001b[38;5;195;48;5;195m \u001b[38;5;189;48;5;189m \u001b[38;5;134;48;5;252m▓\u001b[38;5;200;48;5;188m▓\u001b[38;5;05;48;5;182m▓\u001b[38;5;93;48;5;140m▓\u001b[38;5;54;48;5;60m▓\u001b[38;5;136;48;5;101m▒\u001b[38;5;220;48;5;143m▒\u001b[38;5;221;48;5;58m▒\u001b[38;5;215;48;5;233m░\u001b[38;5;126;48;5;233m▒\u001b[38;5;08;48;5;239m▓\u001b[38;5;01;48;5;238m▒\u001b[38;5;01;48;5;238m▒\u001b[38;5;125;48;5;238m▒\u001b[38;5;206;48;5;238m▒\u001b[38;5;133;48;5;239m▓\u001b[38;5;92;48;5;238m▒\u001b[38;5;99;48;5;238m▒\u001b[38;5;99;48;5;236m▒\u001b[38;5;99;48;5;234m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;98;48;5;233m▒\u001b[38;5;103;48;5;238m▓\u001b[38;5;69;48;5;103m▓\u001b[38;5;68;48;5;146m▒\u001b[38;5;69;48;5;146m▒\u001b[38;5;26;48;5;189m▒\u001b[38;5;27;48;5;189m \u001b[38;5;62;48;5;146m▒\u001b[38;5;99;48;5;146m▓\u001b[38;5;99;48;5;146m▒\u001b[38;5;99;48;5;146m▒\u001b[38;5;98;48;5;140m▒\u001b[38;5;134;48;5;239m▓\u001b[38;5;220;48;5;137m▒\u001b[38;5;220;48;5;143m▒\u001b[38;5;179;48;5;239m▒\u001b[38;5;174;48;5;233m▒\u001b[38;5;176;48;5;233m▒\u001b[38;5;200;48;5;236m▓\u001b[38;5;05;48;5;237m▒\u001b[38;5;92;48;5;236m▒\u001b[38;5;98;48;5;236m▒\u001b[38;5;99;48;5;235m▒\u001b[38;5;99;48;5;234m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;180;48;5;233m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;99;48;5;241m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;99;48;5;233m▒\u001b[38;5;61;48;5;238m▓\u001b[38;5;69;48;5;61m▓\u001b[38;5;69;48;5;67m▓\u001b[38;5;69;48;5;104m▒\u001b[38;5;69;48;5;110m▒\u001b[38;5;69;48;5;104m▒\u001b[38;5;146;48;5;104m▒\u001b[38;5;146;48;5;104m▒\u001b[38;5;69;48;5;103m▓\u001b[38;5;104;48;5;98m▒\u001b[38;5;130;48;5;238m▓\u001b[38;5;143;48;5;101m▓\u001b[38;5;220;48;5;101m▒\u001b[38;5;172;48;5;237m▒\u001b[38;5;173;48;5;232m▒\u001b[38;5;54;48;5;232m▒\u001b[38;5;56;48;5;233m░\u001b[38;5;98;48;5;232m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;211;48;5;0m \u001b[38;5;137;48;5;234m▓\u001b[38;5;209;48;5;237m▓\u001b[38;5;222;48;5;233m \u001b[38;5;94;48;5;235m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;99;48;5;232m░\u001b[38;5;99;48;5;235m▒\u001b[38;5;104;48;5;236m▒\u001b[38;5;104;48;5;236m▒\u001b[38;5;104;48;5;236m▒\u001b[38;5;104;48;5;236m▒\u001b[38;5;104;48;5;235m▒\u001b[38;5;99;48;5;235m▒\u001b[38;5;130;48;5;234m▓\u001b[38;5;204;48;5;234m▓\u001b[38;5;220;48;5;94m▒\u001b[38;5;130;48;5;237m▓\u001b[38;5;174;48;5;233m▒\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;204;48;5;232m \u001b[38;5;131;48;5;235m▓\u001b[38;5;214;48;5;236m▒\u001b[38;5;179;48;5;238m▓\u001b[38;5;220;48;5;237m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;202;48;5;234m▓\u001b[38;5;130;48;5;232m \u001b[38;5;220;48;5;58m▒\u001b[38;5;130;48;5;237m▒\u001b[38;5;131;48;5;234m▓\u001b[38;5;211;48;5;232m \u001b[38;5;204;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;204;48;5;232m▒\u001b[38;5;06;48;5;235m▒\u001b[38;5;136;48;5;58m░\u001b[38;5;220;48;5;238m▒\u001b[38;5;220;48;5;239m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;179;48;5;234m▒\u001b[38;5;06;48;5;234m▒\u001b[38;5;186;48;5;3m▒\u001b[38;5;172;48;5;237m▒\u001b[38;5;208;48;5;234m▒\u001b[38;5;125;48;5;233m▒\u001b[38;5;197;48;5;232m \u001b[38;5;204;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;204;48;5;232m░\u001b[38;5;209;48;5;234m▒\u001b[38;5;172;48;5;236m▒\u001b[38;5;136;48;5;58m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;186;48;5;58m▒\u001b[38;5;202;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;179;48;5;233m▒\u001b[38;5;172;48;5;236m▓\u001b[38;5;220;48;5;101m▓\u001b[38;5;220;48;5;58m▒\u001b[38;5;172;48;5;237m▒\u001b[38;5;173;48;5;235m▒\u001b[38;5;204;48;5;234m▓\u001b[38;5;131;48;5;234m▓\u001b[38;5;138;48;5;235m▓\u001b[38;5;06;48;5;236m▒\u001b[38;5;94;48;5;236m▒\u001b[38;5;185;48;5;58m░\u001b[38;5;221;48;5;233m \u001b[38;5;185;48;5;58m░\u001b[38;5;05;48;5;232m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;233m▓\u001b[38;5;08;48;5;237m▓\u001b[38;5;94;48;5;235m▒\u001b[38;5;185;48;5;3m▒\u001b[38;5;179;48;5;239m▒\u001b[38;5;178;48;5;58m░\u001b[38;5;221;48;5;240m▒\u001b[38;5;220;48;5;94m▒\u001b[38;5;179;48;5;237m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;186;48;5;106m▒\u001b[38;5;94;48;5;233m░\u001b[38;5;136;48;5;236m▓\u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;08;48;5;232m▒\u001b[38;5;198;48;5;234m▓\u001b[38;5;180;48;5;234m▒\u001b[38;5;220;48;5;240m▒\u001b[38;5;186;48;5;3m▒\u001b[38;5;220;48;5;58m▒\u001b[38;5;185;48;5;58m░\u001b[38;5;186;48;5;3m▒\u001b[38;5;185;48;5;100m▒\u001b[38;5;222;48;5;232m \u001b[38;5;186;48;5;58m▒\u001b[38;5;138;48;5;234m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;204;48;5;233m▓\u001b[38;5;137;48;5;234m▓\u001b[38;5;95;48;5;235m▓\u001b[38;5;204;48;5;232m \u001b[38;5;211;48;5;232m░\u001b[38;5;01;48;5;232m░\u001b[38;5;204;48;5;233m▒\u001b[38;5;143;48;5;101m▒\u001b[38;5;209;48;5;235m▓\u001b[38;5;209;48;5;233m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;204;48;5;232m▓\u001b[38;5;204;48;5;233m▓\u001b[38;5;09;48;5;234m▓\u001b[38;5;209;48;5;235m▓\u001b[38;5;214;48;5;235m▓\u001b[38;5;173;48;5;235m▓\u001b[38;5;197;48;5;234m▓\u001b[38;5;197;48;5;233m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;175;48;5;0m▒\u001b[38;5;03;48;5;233m▓\u001b[38;5;02;48;5;232m▓\u001b[38;5;197;48;5;233m▓\u001b[38;5;204;48;5;234m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/uranus",
    "content": "\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;111;48;5;232m \u001b[38;5;26;48;5;232m \u001b[38;5;33;48;5;232m \u001b[38;5;26;48;5;232m \u001b[38;5;111;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;33;48;5;233m \u001b[38;5;39;48;5;235m░\u001b[38;5;81;48;5;238m▒\u001b[38;5;32;48;5;240m▓\u001b[38;5;69;48;5;243m▓\u001b[38;5;99;48;5;245m▓\u001b[38;5;96;48;5;247m▓\u001b[38;5;02;48;5;139m▓\u001b[38;5;132;48;5;248m▓\u001b[38;5;132;48;5;145m▓\u001b[38;5;197;48;5;181m▓\u001b[38;5;125;48;5;145m▓\u001b[38;5;125;48;5;248m▓\u001b[38;5;09;48;5;247m▓\u001b[38;5;171;48;5;245m▓\u001b[38;5;60;48;5;242m▓\u001b[38;5;25;48;5;239m▓\u001b[38;5;39;48;5;235m▒\u001b[38;5;75;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;32;48;5;234m░\u001b[38;5;81;48;5;237m▒\u001b[38;5;39;48;5;240m▓\u001b[38;5;32;48;5;66m▓\u001b[38;5;68;48;5;245m▓\u001b[38;5;54;48;5;247m▓\u001b[38;5;198;48;5;249m▓\u001b[38;5;204;48;5;181m▓\u001b[38;5;174;48;5;188m▒\u001b[38;5;07;48;5;224m▒\u001b[38;5;209;48;5;224m░\u001b[38;5;209;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;224;48;5;224m░\u001b[38;5;07;48;5;224m░\u001b[38;5;204;48;5;224m▒\u001b[38;5;204;48;5;181m▒\u001b[38;5;204;48;5;181m▓\u001b[38;5;125;48;5;248m▓\u001b[38;5;134;48;5;245m▓\u001b[38;5;33;48;5;240m▓\u001b[38;5;74;48;5;235m░\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;26;48;5;233m \u001b[38;5;39;48;5;236m░\u001b[38;5;39;48;5;239m▒\u001b[38;5;74;48;5;60m▓\u001b[38;5;39;48;5;66m▓\u001b[38;5;81;48;5;66m▓\u001b[38;5;81;48;5;247m▓\u001b[38;5;125;48;5;250m▓\u001b[38;5;204;48;5;252m▓\u001b[38;5;174;48;5;224m▒\u001b[38;5;209;48;5;224m░\u001b[38;5;202;48;5;255m \u001b[38;5;06;48;5;255m \u001b[38;5;130;48;5;230m \u001b[38;5;172;48;5;230m \u001b[38;5;208;48;5;230m \u001b[38;5;130;48;5;230m \u001b[38;5;130;48;5;230m \u001b[38;5;06;48;5;255m \u001b[38;5;216;48;5;224m \u001b[38;5;216;48;5;224m \u001b[38;5;202;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;224;48;5;224m \u001b[38;5;204;48;5;224m▒\u001b[38;5;204;48;5;181m▒\u001b[38;5;197;48;5;249m▓\u001b[38;5;92;48;5;245m▓\u001b[38;5;25;48;5;238m▓\u001b[38;5;26;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;27;48;5;232m \u001b[38;5;74;48;5;236m▒\u001b[38;5;39;48;5;23m▒\u001b[38;5;32;48;5;60m▓\u001b[38;5;74;48;5;66m▓\u001b[38;5;24;48;5;66m▓\u001b[38;5;38;48;5;67m▓\u001b[38;5;81;48;5;109m▓\u001b[38;5;31;48;5;145m▓\u001b[38;5;96;48;5;251m▓\u001b[38;5;209;48;5;254m▓\u001b[38;5;216;48;5;255m░\u001b[38;5;06;48;5;255m \u001b[38;5;172;48;5;255m \u001b[38;5;214;48;5;231m \u001b[38;5;136;48;5;231m \u001b[38;5;220;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;136;48;5;231m \u001b[38;5;136;48;5;231m \u001b[38;5;178;48;5;231m \u001b[38;5;221;48;5;231m \u001b[38;5;172;48;5;255m \u001b[38;5;172;48;5;230m \u001b[38;5;214;48;5;230m \u001b[38;5;172;48;5;230m \u001b[38;5;06;48;5;230m \u001b[38;5;209;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;224;48;5;224m░\u001b[38;5;204;48;5;252m▒\u001b[38;5;204;48;5;181m▓\u001b[38;5;200;48;5;246m▓\u001b[38;5;25;48;5;239m▓\u001b[38;5;27;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;25;48;5;234m░\u001b[38;5;74;48;5;238m▒\u001b[38;5;32;48;5;60m▓\u001b[38;5;81;48;5;66m▒\u001b[38;5;24;48;5;66m▓\u001b[38;5;74;48;5;67m▓\u001b[38;5;81;48;5;73m▓\u001b[38;5;38;48;5;73m▒\u001b[38;5;38;48;5;109m▒\u001b[38;5;81;48;5;146m▓\u001b[38;5;25;48;5;252m▓\u001b[38;5;254;48;5;254m▓\u001b[38;5;202;48;5;255m░\u001b[38;5;172;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;221;48;5;231m \u001b[38;5;136;48;5;231m \u001b[38;5;221;48;5;231m \u001b[38;5;94;48;5;230m \u001b[38;5;172;48;5;230m \u001b[38;5;130;48;5;230m \u001b[38;5;202;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;224;48;5;224m░\u001b[38;5;204;48;5;252m▒\u001b[38;5;01;48;5;181m▓\u001b[38;5;60;48;5;243m▓\u001b[38;5;32;48;5;235m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;33;48;5;235m▒\u001b[38;5;32;48;5;239m▒\u001b[38;5;32;48;5;60m▓\u001b[38;5;81;48;5;66m▒\u001b[38;5;81;48;5;67m▒\u001b[38;5;39;48;5;67m▓\u001b[38;5;81;48;5;73m▒\u001b[38;5;31;48;5;73m▒\u001b[38;5;45;48;5;74m▒\u001b[38;5;45;48;5;74m▒\u001b[38;5;31;48;5;116m▒\u001b[38;5;81;48;5;152m▒\u001b[38;5;24;48;5;254m▒\u001b[38;5;45;48;5;255m▓\u001b[38;5;223;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;178;48;5;231m \u001b[38;5;221;48;5;231m \u001b[38;5;172;48;5;230m \u001b[38;5;06;48;5;230m \u001b[38;5;209;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;174;48;5;224m▒\u001b[38;5;08;48;5;181m▓\u001b[38;5;91;48;5;246m▓\u001b[38;5;74;48;5;237m▒\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;33;48;5;234m░\u001b[38;5;25;48;5;239m▓\u001b[38;5;32;48;5;60m▓\u001b[38;5;39;48;5;66m▒\u001b[38;5;81;48;5;67m▒\u001b[38;5;81;48;5;67m▒\u001b[38;5;38;48;5;73m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;38;48;5;74m▒\u001b[38;5;38;48;5;74m▒\u001b[38;5;45;48;5;74m░\u001b[38;5;38;48;5;80m░\u001b[38;5;31;48;5;117m░\u001b[38;5;24;48;5;153m░\u001b[38;5;39;48;5;195m░\u001b[38;5;31;48;5;195m \u001b[38;5;195;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;220;48;5;231m \u001b[38;5;220;48;5;231m \u001b[38;5;221;48;5;230m \u001b[38;5;172;48;5;230m \u001b[38;5;06;48;5;230m \u001b[38;5;209;48;5;224m \u001b[38;5;07;48;5;224m▒\u001b[38;5;08;48;5;181m▓\u001b[38;5;56;48;5;245m▓\u001b[38;5;74;48;5;236m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;111;48;5;233m \u001b[38;5;32;48;5;238m▒\u001b[38;5;33;48;5;60m▓\u001b[38;5;25;48;5;60m▓\u001b[38;5;39;48;5;66m▒\u001b[38;5;81;48;5;67m▒\u001b[38;5;38;48;5;37m▒\u001b[38;5;45;48;5;38m░\u001b[38;5;38;48;5;74m▒\u001b[38;5;31;48;5;74m░\u001b[38;5;38;48;5;80m░\u001b[38;5;45;48;5;80m░\u001b[38;5;45;48;5;80m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;117m░\u001b[38;5;31;48;5;153m \u001b[38;5;45;48;5;195m \u001b[38;5;45;48;5;195m \u001b[38;5;195;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;220;48;5;231m \u001b[38;5;221;48;5;231m \u001b[38;5;172;48;5;255m \u001b[38;5;130;48;5;230m \u001b[38;5;216;48;5;224m \u001b[38;5;209;48;5;224m \u001b[38;5;204;48;5;252m▒\u001b[38;5;01;48;5;249m▓\u001b[38;5;69;48;5;60m▓\u001b[38;5;25;48;5;233m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;33;48;5;234m░\u001b[38;5;32;48;5;239m▒\u001b[38;5;67;48;5;60m▓\u001b[38;5;74;48;5;66m▓\u001b[38;5;74;48;5;67m▓\u001b[38;5;31;48;5;67m▒\u001b[38;5;31;48;5;73m▒\u001b[38;5;38;48;5;74m▒\u001b[38;5;38;48;5;38m░\u001b[38;5;38;48;5;74m░\u001b[38;5;31;48;5;80m░\u001b[38;5;31;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;117m \u001b[38;5;38;48;5;117m \u001b[38;5;45;48;5;159m \u001b[38;5;45;48;5;195m \u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;178;48;5;231m \u001b[38;5;172;48;5;255m \u001b[38;5;202;48;5;255m \u001b[38;5;209;48;5;224m \u001b[38;5;174;48;5;224m▒\u001b[38;5;08;48;5;181m▓\u001b[38;5;97;48;5;246m▓\u001b[38;5;32;48;5;237m▒\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;32;48;5;236m▒\u001b[38;5;74;48;5;239m▒\u001b[38;5;25;48;5;60m▓\u001b[38;5;25;48;5;66m▓\u001b[38;5;81;48;5;67m▒\u001b[38;5;81;48;5;73m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;38;48;5;74m▒\u001b[38;5;38;48;5;38m░\u001b[38;5;45;48;5;38m░\u001b[38;5;38;48;5;45m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;45;48;5;81m░\u001b[38;5;45;48;5;81m░\u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;195m \u001b[38;5;195;48;5;231m \u001b[38;5;45;48;5;159m \u001b[38;5;45;48;5;159m \u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;230;48;5;231m \u001b[38;5;230;48;5;231m \u001b[38;5;94;48;5;231m \u001b[38;5;222;48;5;231m \u001b[38;5;06;48;5;255m \u001b[38;5;209;48;5;224m \u001b[38;5;204;48;5;224m▒\u001b[38;5;08;48;5;181m▓\u001b[38;5;129;48;5;246m▓\u001b[38;5;26;48;5;240m▓\u001b[38;5;69;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;25;48;5;236m▒\u001b[38;5;24;48;5;23m▒\u001b[38;5;74;48;5;60m▒\u001b[38;5;32;48;5;66m▓\u001b[38;5;74;48;5;67m▓\u001b[38;5;81;48;5;73m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;38;48;5;38m░\u001b[38;5;45;48;5;38m░\u001b[38;5;45;48;5;45m \u001b[38;5;38;48;5;45m░\u001b[38;5;38;48;5;45m░\u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;45m \u001b[38;5;38;48;5;81m \u001b[38;5;31;48;5;117m \u001b[38;5;38;48;5;117m \u001b[38;5;45;48;5;117m \u001b[38;5;45;48;5;123m \u001b[38;5;45;48;5;123m \u001b[38;5;159;48;5;159m \u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;195m \u001b[38;5;195;48;5;231m \u001b[38;5;195;48;5;231m \u001b[38;5;195;48;5;231m \u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;231;48;5;231m▓\u001b[38;5;230;48;5;231m \u001b[38;5;222;48;5;231m \u001b[38;5;130;48;5;231m \u001b[38;5;202;48;5;255m \u001b[38;5;216;48;5;255m░\u001b[38;5;209;48;5;224m▒\u001b[38;5;204;48;5;251m▓\u001b[38;5;134;48;5;145m▓\u001b[38;5;69;48;5;245m▓\u001b[38;5;33;48;5;240m▓\u001b[38;5;111;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;33;48;5;235m▒\u001b[38;5;39;48;5;23m▒\u001b[38;5;31;48;5;24m▒\u001b[38;5;81;48;5;30m▒\u001b[38;5;39;48;5;67m▒\u001b[38;5;24;48;5;67m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;45;48;5;38m░\u001b[38;5;38;48;5;38m░\u001b[38;5;38;48;5;39m░\u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;117m \u001b[38;5;45;48;5;123m \u001b[38;5;45;48;5;159m \u001b[38;5;45;48;5;195m \u001b[38;5;45;48;5;195m \u001b[38;5;45;48;5;195m \u001b[38;5;24;48;5;195m \u001b[38;5;117;48;5;195m░\u001b[38;5;25;48;5;255m▒\u001b[38;5;32;48;5;255m▒\u001b[38;5;27;48;5;255m▓\u001b[38;5;98;48;5;254m▓\u001b[38;5;204;48;5;254m▓\u001b[38;5;96;48;5;188m▓\u001b[38;5;96;48;5;251m▓\u001b[38;5;26;48;5;145m▓\u001b[38;5;32;48;5;246m▓\u001b[38;5;32;48;5;66m▓\u001b[38;5;33;48;5;239m▓\u001b[38;5;69;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;26;48;5;234m▒\u001b[38;5;39;48;5;23m▒\u001b[38;5;31;48;5;23m▒\u001b[38;5;38;48;5;24m░\u001b[38;5;31;48;5;31m░\u001b[38;5;24;48;5;67m▒\u001b[38;5;24;48;5;73m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;74m░\u001b[38;5;38;48;5;38m░\u001b[38;5;38;48;5;44m░\u001b[38;5;38;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;81m░\u001b[38;5;45;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;117m░\u001b[38;5;31;48;5;117m░\u001b[38;5;81;48;5;117m░\u001b[38;5;81;48;5;152m▒\u001b[38;5;39;48;5;152m▒\u001b[38;5;81;48;5;152m▒\u001b[38;5;81;48;5;152m▒\u001b[38;5;39;48;5;146m▓\u001b[38;5;74;48;5;109m▓\u001b[38;5;39;48;5;109m▓\u001b[38;5;81;48;5;67m▓\u001b[38;5;32;48;5;66m▓\u001b[38;5;25;48;5;60m▓\u001b[38;5;26;48;5;237m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;25;48;5;236m▒\u001b[38;5;81;48;5;23m░\u001b[38;5;31;48;5;24m░\u001b[38;5;45;48;5;6m \u001b[38;5;38;48;5;31m \u001b[38;5;38;48;5;31m░\u001b[38;5;39;48;5;74m▒\u001b[38;5;81;48;5;74m▒\u001b[38;5;38;48;5;74m░\u001b[38;5;31;48;5;74m░\u001b[38;5;38;48;5;45m░\u001b[38;5;38;48;5;45m░\u001b[38;5;38;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;81m \u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;81m░\u001b[38;5;45;48;5;81m░\u001b[38;5;45;48;5;44m░\u001b[38;5;45;48;5;80m░\u001b[38;5;45;48;5;80m░\u001b[38;5;45;48;5;80m░\u001b[38;5;38;48;5;74m▒\u001b[38;5;38;48;5;74m▒\u001b[38;5;31;48;5;73m▒\u001b[38;5;24;48;5;109m▓\u001b[38;5;74;48;5;67m▓\u001b[38;5;39;48;5;66m▓\u001b[38;5;25;48;5;66m▓\u001b[38;5;33;48;5;240m▓\u001b[38;5;27;48;5;233m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;232m░\u001b[38;5;32;48;5;237m▒\u001b[38;5;81;48;5;23m░\u001b[38;5;38;48;5;24m░\u001b[38;5;45;48;5;30m \u001b[38;5;45;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;38;48;5;37m░\u001b[38;5;81;48;5;74m▒\u001b[38;5;81;48;5;74m▒\u001b[38;5;31;48;5;74m░\u001b[38;5;38;48;5;44m░\u001b[38;5;38;48;5;45m░\u001b[38;5;38;48;5;45m░\u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;45m \u001b[38;5;38;48;5;45m \u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m \u001b[38;5;45;48;5;81m \u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;81m░\u001b[38;5;38;48;5;80m░\u001b[38;5;38;48;5;80m░\u001b[38;5;38;48;5;74m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;81;48;5;74m▒\u001b[38;5;39;48;5;73m▓\u001b[38;5;39;48;5;67m▓\u001b[38;5;39;48;5;67m▓\u001b[38;5;74;48;5;66m▓\u001b[38;5;33;48;5;240m▓\u001b[38;5;26;48;5;235m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;62;48;5;233m▒\u001b[38;5;32;48;5;237m▒\u001b[38;5;31;48;5;23m░\u001b[38;5;38;48;5;24m \u001b[38;5;38;48;5;30m \u001b[38;5;38;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;38;48;5;31m \u001b[38;5;38;48;5;38m░\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;74m░\u001b[38;5;31;48;5;74m░\u001b[38;5;38;48;5;38m░\u001b[38;5;45;48;5;44m░\u001b[38;5;38;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m \u001b[38;5;38;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;38;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;45;48;5;45m░\u001b[38;5;38;48;5;45m░\u001b[38;5;38;48;5;44m░\u001b[38;5;38;48;5;74m░\u001b[38;5;38;48;5;74m░\u001b[38;5;38;48;5;74m░\u001b[38;5;38;48;5;74m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;73m▒\u001b[38;5;39;48;5;67m▒\u001b[38;5;39;48;5;67m▓\u001b[38;5;39;48;5;66m▓\u001b[38;5;74;48;5;60m▒\u001b[38;5;25;48;5;240m▓\u001b[38;5;68;48;5;236m▒\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;26;48;5;236m▒\u001b[38;5;81;48;5;23m▒\u001b[38;5;38;48;5;24m░\u001b[38;5;38;48;5;24m \u001b[38;5;38;48;5;30m \u001b[38;5;45;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;45;48;5;37m \u001b[38;5;45;48;5;38m░\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;74m░\u001b[38;5;31;48;5;74m░\u001b[38;5;38;48;5;38m░\u001b[38;5;38;48;5;44m░\u001b[38;5;38;48;5;38m░\u001b[38;5;38;48;5;38m░\u001b[38;5;45;48;5;45m░\u001b[38;5;38;48;5;38m░\u001b[38;5;38;48;5;38m░\u001b[38;5;38;48;5;38m░\u001b[38;5;45;48;5;38m░\u001b[38;5;38;48;5;38m░\u001b[38;5;45;48;5;38m░\u001b[38;5;38;48;5;38m░\u001b[38;5;45;48;5;38m░\u001b[38;5;38;48;5;38m░\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;73m▒\u001b[38;5;81;48;5;67m▒\u001b[38;5;81;48;5;67m▒\u001b[38;5;39;48;5;67m▒\u001b[38;5;32;48;5;66m▓\u001b[38;5;33;48;5;60m▓\u001b[38;5;67;48;5;239m▓\u001b[38;5;69;48;5;235m▒\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;104;48;5;233m▒\u001b[38;5;25;48;5;237m▒\u001b[38;5;81;48;5;23m▒\u001b[38;5;38;48;5;24m░\u001b[38;5;38;48;5;24m \u001b[38;5;38;48;5;30m \u001b[38;5;38;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;38;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;45;48;5;37m \u001b[38;5;45;48;5;38m░\u001b[38;5;38;48;5;38m░\u001b[38;5;81;48;5;74m▒\u001b[38;5;81;48;5;74m▒\u001b[38;5;81;48;5;74m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;38;48;5;74m░\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;74m░\u001b[38;5;31;48;5;74m▒\u001b[38;5;81;48;5;74m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;31;48;5;74m▒\u001b[38;5;81;48;5;73m▒\u001b[38;5;24;48;5;67m▒\u001b[38;5;39;48;5;67m▒\u001b[38;5;24;48;5;67m▒\u001b[38;5;39;48;5;66m▓\u001b[38;5;25;48;5;66m▓\u001b[38;5;33;48;5;60m▓\u001b[38;5;26;48;5;60m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;104;48;5;234m▒\u001b[38;5;67;48;5;237m▒\u001b[38;5;39;48;5;23m▒\u001b[38;5;31;48;5;24m░\u001b[38;5;38;48;5;24m \u001b[38;5;38;48;5;24m \u001b[38;5;38;48;5;30m \u001b[38;5;38;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;38;48;5;31m \u001b[38;5;38;48;5;31m \u001b[38;5;45;48;5;31m \u001b[38;5;38;48;5;31m░\u001b[38;5;81;48;5;73m▒\u001b[38;5;24;48;5;73m▒\u001b[38;5;74;48;5;73m▒\u001b[38;5;32;48;5;73m▒\u001b[38;5;32;48;5;73m▒\u001b[38;5;32;48;5;67m▓\u001b[38;5;32;48;5;67m▓\u001b[38;5;32;48;5;67m▓\u001b[38;5;33;48;5;67m▓\u001b[38;5;33;48;5;67m▓\u001b[38;5;25;48;5;66m▓\u001b[38;5;67;48;5;66m▓\u001b[38;5;26;48;5;60m▓\u001b[38;5;27;48;5;240m▓\u001b[38;5;69;48;5;237m▓\u001b[38;5;17;48;5;232m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m \u001b[38;5;61;48;5;235m▒\u001b[38;5;25;48;5;237m▒\u001b[38;5;81;48;5;23m▒\u001b[38;5;81;48;5;23m░\u001b[38;5;81;48;5;24m░\u001b[38;5;38;48;5;24m \u001b[38;5;31;48;5;24m \u001b[38;5;38;48;5;6m \u001b[38;5;38;48;5;6m \u001b[38;5;45;48;5;30m \u001b[38;5;38;48;5;30m \u001b[38;5;38;48;5;30m \u001b[38;5;38;48;5;30m \u001b[38;5;45;48;5;30m \u001b[38;5;38;48;5;30m░\u001b[38;5;31;48;5;30m░\u001b[38;5;31;48;5;6m▒\u001b[38;5;39;48;5;24m▒\u001b[38;5;74;48;5;24m▒\u001b[38;5;32;48;5;60m▒\u001b[38;5;74;48;5;240m▒\u001b[38;5;25;48;5;238m▒\u001b[38;5;27;48;5;237m▒\u001b[38;5;69;48;5;234m▒\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;232m░\u001b[38;5;69;48;5;234m▒\u001b[38;5;27;48;5;236m▒\u001b[38;5;33;48;5;237m▒\u001b[38;5;32;48;5;23m▒\u001b[38;5;39;48;5;23m▒\u001b[38;5;24;48;5;23m▒\u001b[38;5;81;48;5;23m▒\u001b[38;5;81;48;5;23m░\u001b[38;5;81;48;5;23m░\u001b[38;5;24;48;5;23m▒\u001b[38;5;24;48;5;23m▒\u001b[38;5;74;48;5;23m▒\u001b[38;5;32;48;5;23m▒\u001b[38;5;26;48;5;237m▒\u001b[38;5;27;48;5;235m▒\u001b[38;5;69;48;5;233m▒\u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[0m\n\u001b[0m\n"
  },
  {
    "path": "data/memes/planets/venus",
    "content": "\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;23;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;52;48;5;232m \u001b[38;5;209;48;5;1m░\u001b[38;5;209;48;5;88m░\u001b[38;5;209;48;5;88m \u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m░\u001b[38;5;1;48;5;1m░\u001b[38;5;1;48;5;52m░\u001b[38;5;07;48;5;52m░\u001b[38;5;52;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;22;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;27;48;5;232m \u001b[38;5;52;48;5;0m \u001b[38;5;06;48;5;52m \u001b[38;5;209;48;5;130m▒\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m░\u001b[38;5;00;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;88m \u001b[38;5;209;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;204;48;5;52m▒\u001b[38;5;52;48;5;0m \u001b[38;5;22;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;209;48;5;130m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;88m \u001b[38;5;07;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;235m▒\u001b[38;5;52;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;75;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;22;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;204;48;5;232m \u001b[38;5;209;48;5;1m░\u001b[38;5;209;48;5;130m░\u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;00;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;07;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;0m \u001b[38;5;69;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;52m \u001b[38;5;124;48;5;124m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;124m░\u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;07;48;5;1m▒\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;124;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;52;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;69;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;88m░\u001b[38;5;209;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m░\u001b[38;5;1;48;5;1m░\u001b[38;5;209;48;5;52m \u001b[38;5;88;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;52m \u001b[38;5;1;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;88m░\u001b[38;5;52;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;209;48;5;52m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;1m░\u001b[38;5;124;48;5;88m░\u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;204;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;52m░\u001b[38;5;88;48;5;88m░\u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;00m░\u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;07;48;5;131m▒\u001b[38;5;117;48;5;0m \u001b[38;5;171;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;204;48;5;233m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;204;48;5;1m░\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;130m░\u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m░\u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m░\u001b[38;5;88;48;5;88m░\u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;52;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;22;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;1m \u001b[38;5;124;48;5;124m░\u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;209;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;88m▒\u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;204;48;5;233m░\u001b[38;5;52;48;5;52m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;07m▒\u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;06m░\u001b[38;5;196;48;5;202m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;52;48;5;233m \u001b[38;5;17;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;69;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;23;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;88;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;1m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;1m░\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;130m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;1m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;233m \u001b[38;5;209;48;5;52m▒\u001b[38;5;174;48;5;232m▒\u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;209;48;5;52m \u001b[38;5;88;48;5;88m░\u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;174;48;5;235m▒\u001b[38;5;52;48;5;232m \u001b[38;5;209;48;5;233m░\u001b[38;5;209;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m░\u001b[38;5;52;48;5;52m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;52m░\u001b[38;5;52;48;5;232m \u001b[38;5;209;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;88m░\u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m░\u001b[38;5;204;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;233m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;204;48;5;232m░\u001b[38;5;204;48;5;234m▒\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;52m░\u001b[38;5;07;48;5;233m░\u001b[38;5;07;48;5;232m▒\u001b[38;5;204;48;5;233m▒\u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;232m \u001b[38;5;08;48;5;233m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;52;48;5;232m \u001b[38;5;69;48;5;232m▒\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;00m░\u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;233m \u001b[38;5;209;48;5;1m░\u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;233m \u001b[38;5;52;48;5;233m \u001b[38;5;07;48;5;52m░\u001b[38;5;209;48;5;88m \u001b[38;5;88;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;1m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;130m░\u001b[38;5;52;48;5;52m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;52m▒\u001b[38;5;204;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;202m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;75;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;117;48;5;0m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;06m░\u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;1;48;5;1m \u001b[38;5;07;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;124m░\u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;1m░\u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;88m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;07;48;5;52m░\u001b[38;5;52;48;5;232m \u001b[38;5;52;48;5;232m \u001b[38;5;216;48;5;234m \u001b[38;5;209;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;1m░\u001b[38;5;209;48;5;124m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;1m \u001b[38;5;209;48;5;130m░\u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;52;48;5;52m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;124;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;124m░\u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;1m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;1m░\u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;234m░\u001b[38;5;204;48;5;232m░\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;52m \u001b[38;5;52;48;5;233m \u001b[38;5;1;48;5;52m░\u001b[38;5;88;48;5;88m \u001b[38;5;202;48;5;208m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m░\u001b[38;5;52;48;5;52m \u001b[38;5;07;48;5;88m▒\u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;53;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;52;48;5;232m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m░\u001b[38;5;204;48;5;52m \u001b[38;5;200;48;5;233m▓\u001b[38;5;209;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m░\u001b[38;5;1;48;5;1m \u001b[38;5;204;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;00m \u001b[38;5;06;48;5;06m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;06m░\u001b[38;5;52;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;52m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m░\u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m░\u001b[38;5;202;48;5;209m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;124m \u001b[38;5;222;48;5;221m \u001b[38;5;172;48;5;215m \u001b[38;5;208;48;5;208m \u001b[38;5;222;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;216;48;5;06m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;130;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;52;48;5;52m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;69;48;5;0m \u001b[38;5;209;48;5;52m▒\u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;07m░\u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;06m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;06m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m░\u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m \u001b[38;5;202;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;202;48;5;06m \u001b[38;5;202;48;5;202m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;06m \u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;221;48;5;221m \u001b[38;5;172;48;5;172m░\u001b[38;5;221;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;215;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;06;48;5;202m \u001b[38;5;130;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;209;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;00;48;5;124m░\u001b[38;5;209;48;5;00m \u001b[38;5;52;48;5;52m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;75;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;202;48;5;202m░\u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;06m \u001b[38;5;215;48;5;208m░\u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;222;48;5;214m \u001b[38;5;136;48;5;221m \u001b[38;5;178;48;5;221m \u001b[38;5;94;48;5;221m \u001b[38;5;94;48;5;214m \u001b[38;5;178;48;5;221m \u001b[38;5;136;48;5;221m \u001b[38;5;172;48;5;214m \u001b[38;5;208;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;208m \u001b[38;5;221;48;5;220m \u001b[38;5;227;48;5;227m \u001b[38;5;227;48;5;227m \u001b[38;5;215;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;06;48;5;208m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;124m \u001b[38;5;52;48;5;233m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;52;48;5;232m \u001b[38;5;1;48;5;52m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;196;48;5;00m░\u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;130;48;5;208m \u001b[38;5;222;48;5;214m \u001b[38;5;136;48;5;221m \u001b[38;5;227;48;5;227m \u001b[38;5;136;48;5;220m \u001b[38;5;220;48;5;221m \u001b[38;5;94;48;5;178m░\u001b[38;5;220;48;5;221m \u001b[38;5;178;48;5;221m \u001b[38;5;214;48;5;136m \u001b[38;5;220;48;5;221m \u001b[38;5;178;48;5;221m \u001b[38;5;172;48;5;208m░\u001b[38;5;220;48;5;221m \u001b[38;5;136;48;5;220m \u001b[38;5;130;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;172;48;5;215m \u001b[38;5;130;48;5;172m \u001b[38;5;172;48;5;214m░\u001b[38;5;172;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;221;48;5;220m \u001b[38;5;136;48;5;220m \u001b[38;5;220;48;5;221m \u001b[38;5;214;48;5;214m \u001b[38;5;222;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;130;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;06m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;52;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;111;48;5;232m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m░\u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;215;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;94;48;5;214m \u001b[38;5;214;48;5;214m \u001b[38;5;208;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m░\u001b[38;5;136;48;5;221m \u001b[38;5;136;48;5;221m \u001b[38;5;221;48;5;220m \u001b[38;5;220;48;5;221m \u001b[38;5;221;48;5;221m \u001b[38;5;202;48;5;06m \u001b[38;5;06;48;5;202m \u001b[38;5;130;48;5;214m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;202m░\u001b[38;5;06;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;214;48;5;215m \u001b[38;5;130;48;5;214m \u001b[38;5;209;48;5;06m \u001b[38;5;215;48;5;208m \u001b[38;5;172;48;5;214m░\u001b[38;5;136;48;5;221m \u001b[38;5;136;48;5;220m░\u001b[38;5;227;48;5;227m \u001b[38;5;94;48;5;214m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;130;48;5;208m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;124;48;5;124m \u001b[38;5;1;48;5;1m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;52;48;5;232m \u001b[38;5;209;48;5;124m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;06m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;208;48;5;208m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;208m \u001b[38;5;222;48;5;214m \u001b[38;5;215;48;5;208m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m░\u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;202m \u001b[38;5;202;48;5;06m \u001b[38;5;220;48;5;221m \u001b[38;5;220;48;5;221m \u001b[38;5;172;48;5;214m \u001b[38;5;136;48;5;220m \u001b[38;5;172;48;5;214m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;172;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;130;48;5;208m \u001b[38;5;172;48;5;214m \u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;06m \u001b[38;5;07;48;5;88m▒\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m░\u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;07;48;5;52m░\u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;233m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m░\u001b[38;5;209;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;00;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;06m \u001b[38;5;06;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;216;48;5;202m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;130m░\u001b[38;5;52;48;5;52m \u001b[38;5;204;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;00m \u001b[38;5;202;48;5;06m \u001b[38;5;130;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;222;48;5;214m \u001b[38;5;172;48;5;214m \u001b[38;5;06;48;5;202m \u001b[38;5;130;48;5;215m \u001b[38;5;209;48;5;06m \u001b[38;5;06;48;5;202m \u001b[38;5;172;48;5;214m \u001b[38;5;94;48;5;214m \u001b[38;5;172;48;5;208m \u001b[38;5;202;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;208;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;232m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m░\u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;233m \u001b[38;5;204;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;06m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;209;48;5;130m░\u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;06m░\u001b[38;5;209;48;5;06m░\u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;06m \u001b[38;5;172;48;5;214m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;215;48;5;208m \u001b[38;5;208;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;06;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;216;48;5;202m \u001b[38;5;52;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;23;48;5;0m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m░\u001b[38;5;1;48;5;1m \u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m \u001b[38;5;88;48;5;1m░\u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;202m░\u001b[38;5;216;48;5;202m░\u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;00m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;215;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;130;48;5;208m \u001b[38;5;216;48;5;202m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;52;48;5;232m \u001b[38;5;23;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;42;48;5;0m \u001b[38;5;52;48;5;233m \u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;52m░\u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;52m░\u001b[38;5;52;48;5;52m░\u001b[38;5;1;48;5;1m░\u001b[38;5;07;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;1;48;5;1m░\u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;06;48;5;208m \u001b[38;5;06;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;216;48;5;202m \u001b[38;5;06;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;202;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;52;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;23;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;23;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;07;48;5;1m░\u001b[38;5;52;48;5;52m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;06m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;1;48;5;1m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;06m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;209;48;5;06m \u001b[38;5;216;48;5;202m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;204;48;5;88m░\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;99;48;5;0m \u001b[38;5;22;48;5;0m \u001b[38;5;07;48;5;1m▒\u001b[38;5;209;48;5;124m░\u001b[38;5;196;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;1;48;5;1m \u001b[38;5;209;48;5;06m░\u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;216;48;5;202m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;196;48;5;00m░\u001b[38;5;1;48;5;1m░\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;99;48;5;0m \u001b[38;5;47;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;209;48;5;130m░\u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;06m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;00;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;1m░\u001b[38;5;204;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;24;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;07;48;5;124m▒\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;202m░\u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;204;48;5;1m░\u001b[38;5;52;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;69;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;23;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;209;48;5;94m▒\u001b[38;5;209;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;202m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;204;48;5;52m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;52;48;5;0m \u001b[38;5;209;48;5;1m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;196m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;202m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m░\u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;124m░\u001b[38;5;88;48;5;88m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;88;48;5;88m \u001b[38;5;88;48;5;88m \u001b[38;5;204;48;5;233m░\u001b[38;5;52;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;232m \u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;232m \u001b[38;5;07;48;5;130m▒\u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;209;48;5;00m░\u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m░\u001b[38;5;209;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m░\u001b[38;5;1;48;5;1m░\u001b[38;5;52;48;5;232m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;52;48;5;0m \u001b[38;5;52;48;5;232m \u001b[38;5;52;48;5;52m░\u001b[38;5;07;48;5;124m░\u001b[38;5;00;48;5;00m░\u001b[38;5;209;48;5;00m░\u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;124;48;5;124m \u001b[38;5;00;48;5;00m \u001b[38;5;00;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;209;48;5;00m \u001b[38;5;124;48;5;124m░\u001b[38;5;07;48;5;124m░\u001b[38;5;52;48;5;52m \u001b[38;5;52;48;5;233m \u001b[38;5;52;48;5;0m \u001b[38;5;0;48;5;0m▓\u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[38;5;17;48;5;0m \u001b[0m\n\u001b[0m\n\n"
  },
  {
    "path": "developers.md",
    "content": "# Developers\n\n- [Introduction](#introduction)\n- [Guide to your first Picker](#guide-to-your-first-picker)\n  - [Requires](#requires)\n  - [First Picker](#first-picker)\n  - [Replacing Actions](#replacing-actions)\n  - [Entry Maker](#entry-maker)\n  - [Oneshot job](#oneshot-job)\n  - [Previewer](#previewer)\n  - [More examples](#more-examples)\n  - [Bundling as Extension](#bundling-as-extension)\n- [Technical](#technical)\n  - [picker](#picker)\n  - [finders](#finders)\n  - [actions](#actions)\n  - [previewers](#previewers)\n\n## Introduction\n\nSo you want to develop your own picker and/or extension for telescope? Then you\nare in the right place! This file will first present an introduction on how to\ndo this. After that, this document will present a technical explanation of\npickers, finders, actions and the previewer. Should you now yet have an idea of\nthe general telescope architecture and its components, it is first recommend to\nfamiliarize yourself with the architectural flow-chart that is provided in\nvim docs (`:h telescope.nvim`). You can find more information in specific help\npages and we will probably move some of the technical stuff to our vim help docs\nin the future.\n\nThis guide is mainly for telescope so it will assume that you already have some knowledge of the Lua\nprogramming language. If not then you can find information for Lua here:\n- [Lua 5.1 Manual](https://www.lua.org/manual/5.1/)\n- [Getting started using Lua in Neovim](https://github.com/nanotee/nvim-lua-guide)\n\n## Guide to your first Picker\n\nTo guide you along the way to your first picker we will open an empty lua\nscratch file, in which we will develop the picker and run it each time using\n`:luafile %`. Later we will bundle this file as an extension.\n\n### Requires\n\nThe most important includes are the following modules:\n```lua\nlocal pickers = require \"telescope.pickers\"\nlocal finders = require \"telescope.finders\"\nlocal conf = require(\"telescope.config\").values\n```\n\n- `pickers`: main module which is used to create a new picker.\n- `finders`: provides interfaces to fill the picker with items.\n- `config`: `values` table which holds the user's configuration.\nSo to make it easier we access this table directly in `conf`.\n\n### First Picker\n\nWe will now make the simplest color picker. (We will approach this example step by step,\nyou will still need to have the previous requires section above this code.)\n\n```lua\n-- our picker function: colors\nlocal colors = function(opts)\n  opts = opts or {}\n  pickers.new(opts, {\n    prompt_title = \"colors\",\n    finder = finders.new_table {\n      results = { \"red\", \"green\", \"blue\" }\n    },\n    sorter = conf.generic_sorter(opts),\n  }):find()\nend\n\n-- to execute the function\ncolors()\n```\n\nRunning this code with `:luafile %` should open a telescope picker with the entries `red`,\n`green`, `blue`. Selecting a color and pressing enter will open a new file. In this case\nit's not what we want, so we will address this after explaining this snippet.\n\nWe will define a new function `colors` which accepts a table `opts`. This is good\npractice because now the user can change how telescope behaves by passing in their\nown `opts` table when calling `colors`.\n\nFor example the user can pass in a configuration in `opts` which allows them to change\nthe theme used for the picker. To allow this, we make sure to pass the `opts` table\nas the first argument to `pickers.new`. The second argument is a table\nwhich defines the default behavior of the picker.\n\nWe have defined a `prompt_title` but this isn't required. This will default to use\nthe text `Prompt` if not set.\n\n`finder` is a required field that needs to be set to the result of a `finders`\nfunction. In this case we take `new_table` which allows us to define a static\nset of values, `results`, which is an array of elements, in this case our colors\nas strings. It doesn't have to be an array of strings, it can also be an array of\ntables. More on this later.\n\n`sorter` on the other hand is not a required field but it's good practice to\ndefine it, because the default value will set it to `empty()`, meaning no sorter\nis attached and you can't filter the results. Good practice is to set the sorter\nto either `conf.generic_sorter(opts)` or `conf.file_sorter(opts)`.\n\nSetting it to a value from `conf` will respect the user's configuration, so if a user has set-up\n`fzf-native` as the sorter then this decision will be respected and the `fzf-native` sorter\nwill be attached. It's also suggested to pass in `opts` here because the sorter\ncould make use of it. As an example the fzf sorter can be configured to be case\nsensitive or insensitive. A user can set-up a default behavior and then alter\nthis behavior with the `opts` table.\n\nAfter the picker is defined you need to call `find()` to actually start the\npicker.\n\n### Replacing Actions\n\nNow calling `colors()` will result in the opening of telescope with the values:\n`red`, `green` and `blue`. The default theme isn't optimal for this picker so we\nwant to change it and thanks to the acceptance of `opts` we can. We will replace\nthe last line with the following to open the picker with the `dropdown` theme.\n\n```lua\ncolors(require(\"telescope.themes\").get_dropdown{})\n```\n\nNow let's address the issue that selecting a color opens a new buffer. For that\nwe need to replace the default select action. The benefit of replacing rather than\nmapping a new function to `<CR>` is that it will respect the user's configuration. So\nif a user has remapped `select_default` to another key then this decision will\nbe respected and it works as expected for the user.\n\nTo make this work we need more requires at the top of the file.\n\n```lua\nlocal actions = require \"telescope.actions\"\nlocal action_state = require \"telescope.actions.state\"\n```\n\n- `actions`: holds all actions that can be mapped by a user. We also need it to\n  access the default action so we can replace it. Also see `:help\n  telescope.actions`\n\n- `action_state`: gives us a few utility functions we can use to get the\n  current picker, current selection or current line. Also see `:help\n  telescope.actions.state`\n\nSo let's replace the default action. For that we need to define a new key value\npair in our table that we pass into `pickers.new`, for example after `sorter`.\n\n```lua\n    attach_mappings = function(prompt_bufnr, map)\n      actions.select_default:replace(function()\n        actions.close(prompt_bufnr)\n        local selection = action_state.get_selected_entry()\n        -- print(vim.inspect(selection))\n        vim.api.nvim_put({ selection[1] }, \"\", false, true)\n      end)\n      return true\n    end,\n```\n\nWe do this by setting the `attach_mappings` key to a function. This function\nneeds to return either `true` or `false`. If it returns false it means that only\nthe actions defined in the function should be attached. In this case it would\nremove the default actions to move the selected item in the picker,\n`move_selection_{next,previous}`. So in most cases you'll want to return `true`.\nIf the function does not return anything then an error is thrown.\n\nThe `attach_mappings` function has two parameters, `prompt_bufnr` is the buffer number\nof the prompt buffer, which we can use to get the pickers object and `map` is a function\nwe can use to map actions or functions to arbitrary key sequences.\n\nNow we are replacing `select_default` the default action, which is mapped to `<CR>`\nby default. To do this we need to call `actions.select_default:replace` and\npass in a new function.\n\nIn this new function we first close the picker with `actions.close` and then\nget the `selection` with `action_state`. It's important\nto notice that you can still get the selection and current prompt input\n(`action_state.get_current_line()`) with `action_state` even after the picker is\nclosed.\n\nYou can look at the selection with `print(vim.inspect(selection))` and see that it differs from our input\n(string), this is because internally we pack it into a table with different\nkeys. You can specify this behavior and we'll talk about that in the next\nsection. Now all that is left is to do something with the selection we have. In\nthis case we just put the text in the current buffer with `vim.api.nvim_put`.\n\n### Entry Maker\n\nEntry maker is a function used to transform an item from the finder to an\ninternal entry table, which has a few required keys. It allows us to display\none string but match something completely different. It also allows us to set\nan absolute path when working with files (so the file will always be found)\nand a relative file path for display and sorting. This means the relative file\npath doesn't even need to be valid in the context of the current working directory.\n\nWe will now try to define our entry maker for our example by providing an\n`entry_maker` to `finders.new_table` and changing our table to be a little bit\nmore interesting. We will end up with the following new code for `finders.new_table`:\n\n```lua\n    finder = finders.new_table {\n      results = {\n        { \"red\", \"#ff0000\" },\n        { \"green\", \"#00ff00\" },\n        { \"blue\", \"#0000ff\" },\n      },\n      entry_maker = function(entry)\n        return {\n          value = entry,\n          display = entry[1],\n          ordinal = entry[1],\n        }\n      end\n    },\n```\n\nWith the new snippet, we no longer have an array of strings but an array of\ntables. Each table has a color name and the color's hex value.\n\n`entry_maker` is a function that will receive each table and then we can set the\nvalues we need. It's best practice to have a `value` reference to the\noriginal entry, that way we will always have access to the complete table in our\naction.\n\nThe `display` key is required and is either a string or a `function(tbl)`,\nwhere `tbl` is the table returned by `entry_maker`. So in this example `tbl` would\ngive our `display` function access to `value` and `ordinal`.\n\nIf our picker will have a lot of values it's suggested to use a function for `display`,\nespecially if you are modifying the text to display. This way the function will only be executed\nfor the entries being displayed. For an example of an entry maker take a look at\n`lua/telescope/make_entry.lua`.\n\nA good way to make your `display` more like a table is to use a `displayer` which can be found in\n`lua/telescope/pickers/entry_display.lua`. A simpler example of `displayer` is the\nfunction `gen_from_git_commits` in `make_entry.lua`.\n\nThe `ordinal` is also required, which is used for sorting. As already mentioned\nthis allows us to have different display and sorting values. This allows `display`\nto be more complex with icons and special indicators but `ordinal` could be a simpler\nsorting key.\n\nThere are other important keys which can be set, but do not make sense in the\ncurrent context as we are not dealing with files:\n- `path`: to set the absolute path of the file to make sure it's always found\n- `lnum`: to specify a line number in the file. This will allow the\n  `conf.grep_previewer` to show that line and the default action to jump to\n  that line.\n\n### Previewer\n\nWe will not write a previewer for this picker because it isn't required for\nbasic colors and is a more advanced topic. It's already well documented in `:help\ntelescope.previewers` so you can read this section if you want to write your\nown `previewer`. If you want a file previewer without columns you should\ndefault to `conf.file_previewer` or `conf.grep_previewer`.\n\n### Oneshot Job\n\nThe `oneshot_job` finder can be used to have an asynchronous external process which will\nfind results and call `entry_maker` for each entry. An example usage would be\n`find`.\n\n```lua\nfinder = finders.new_oneshot_job({ \"find\" }, opts ),\n```\n\n### More examples\n\nA good way to find more examples is to look into the [lua/telescope/builtin](https://github.com/nvim-telescope/telescope.nvim/tree/master/lua/telescope/builtin)\ndirectory which contains all of the builtin pickers. Another way to find more examples\nis to take a look at the [extension wiki page](https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions)\nas this provides many extensions people have already written which use these concepts.\n\nIf you still have any questions after reading this guide please open a\n[Discussion](https://github.com/nvim-telescope/telescope.nvim/discussions).\n\n### Bundling as extension\n\nIf you now want to bundle your picker as extension, so it is available as\npicker via the `:Telescope` command, the following has to be done.\n\nStructure your plugin as follows, so it can be found by telescope:\n\n```\n.\n└── lua\n    ├── plugin_name             # Your actual plugin code\n    │   ├── init.lua\n    │   └── some_file.lua\n    └── telescope\n        └── _extensions         # The underscore is significant\n            └─ plugin_name.lua  # Init and register your extension\n```\n\nThe `lua/telescope/_extensions/plugin_name.lua` file needs to return the\nfollowing: (see `:help telescope.register_extension`)\n\n```lua\nreturn require(\"telescope\").register_extension {\n  setup = function(ext_config, config)\n    -- access extension config and user config\n  end,\n  exports = {\n    stuff = require(\"plugin_name\").stuff\n  },\n}\n```\n\nThe setup function can be used to access the extension config and setup\nextension specific global configuration. You also have access to the user\ntelescope default config, so you can override specific internal function. For\nexample sorters if you have an extension that provides a replacement sorter,\nlike\n[telescope-fzf-native](https://github.com/nvim-telescope/telescope-fzf-native.nvim).\n\nThe exports table declares the exported pickers that can then be accessed via\n`Telescope plugin_name stuff`. If you only provide one export it is suggested\nthat you name the key like the plugin, so you can access it with `Telescope\nplugin_name`.\n\n\n## Technical\n\n### Picker\n\nThis section is an overview of how custom pickers can be created and configured.\n\n```lua\n-- lua/telescope/pickers.lua\nPicker:new{\n  prompt_title            = \"\",\n  finder                  = FUNCTION, -- see lua/telescope/finders.lua\n  sorter                  = FUNCTION, -- see lua/telescope/sorters.lua\n  previewer               = FUNCTION, -- see lua/telescope/previewers/previewer.lua\n  selection_strategy      = \"reset\", -- follow, reset, row\n  border                  = {},\n  borderchars             = {\"─\", \"│\", \"─\", \"│\", \"┌\", \"┐\", \"┘\", \"└\"},\n  default_selection_index = 1, -- Change the index of the initial selection row\n}\n```\n\n### Finders\n<!-- TODO what are finders -->\n```lua\n-- lua/telescope/finders.lua\nFinder:new{\n  entry_maker     = function(line) end,\n  fn_command      = function() { command = \"\", args  = { \"ls-files\" } } end,\n  static          = false,\n  maximum_results = false\n}\n```\n\n### Actions\n\n#### Overriding actions/action_set\n\nHow to override what different functions / keys do.\n\nTODO: Talk about what actions vs actions sets are\n\n##### Relevant Files\n\n- `lua/telescope/actions/init.lua`\n    - The most \"user-facing\" of the files, which has the builtin actions that we provide\n- `lua/telescope/actions/set.lua`\n    - The second most \"user-facing\" of the files. This provides actions that are consumed by several builtin actions, which allows for only overriding ONE item, instead of copying the same configuration / function several times.\n- `lua/telescope/actions/state.lua`\n    - Provides APIs for interacting with the state of telescope from within actions.\n    - These are useful for writing your own actions and interacting with telescope\n- `lua/telescope/actions/mt.lua`\n    - You probably don't need to look at this, but it defines the behavior of actions.\n\n##### `:replace(function)`\n\nDirectly override an action with a new function\n\n```lua\nlocal actions = require('telescope.actions')\nactions.select_default:replace(git_checkout_function)\n```\n\n##### `:replace_if(conditional, function)`\n\nOverride an action only when `conditional` returns true.\n\n```lua\nlocal action_set = require('telescope.actions.set')\naction_set.select:replace_if(\n  function()\n    return action_state.get_selected_entry().path:sub(-1) == os_sep\n  end, function(_, type)\n    -- type is { \"default\", \"horizontal\", \"vertical\", \"tab\" }\n    local path = actions.get_selected_entry().path\n    action_state.get_current_picker(prompt_bufnr):refresh(gen_new_finder(new_cwd), { reset_prompt = true})\n  end\n)\n```\n\n##### `:replace_map(configuration)`\n\n```lua\nlocal action_set = require('telescope.actions.set')\n-- Use functions as keys to map to which function to execute when called.\naction_set.select:replace_map {\n  [function(e) return e > 0 end] = function(e) return (e / 10) end,\n  [function(e) return e == 0 end] = function(e) return (e + 10) end,\n}\n```\n\n### Previewers\n\nSee `:help telescope.previewers`\n"
  },
  {
    "path": "doc/secret.txt",
    "content": "================================================================================\n                                                      *telescope.theprimeagen*\n\nTo The Viewers: ~\n\nOh why hello, I didn't see you there. So nice of you to join us. The Primeagen\nmust have sent you here.\n\nThe places you want to look for help are: (you can do `:help <name>` below)\n    - |telescope.nvim|\n    - |telescope.setup|\n    - |telescope.builtin|\n    - |telescope.layout|\n    - |telescope.actions|\n\nI hope you enjoy telescope & Neovim. May your programming always be fun and\nyour vimming be quick.\n\n\n\nTo The Primeagen: ~\n\nCyrnfr ernq guvf uryc znahny orsber pnyyvat zr ng 3 NZ jvgu gryrfpbcr\nrzretrapvrf. V xabj ynfg gvzr jr fnirq gur ragver fgernzvat vaqhfgel, ohg\nV unir n lbhat fba jub xrrcf zr hc ng avtug nyy ol uvzfrys. OGJ, unir lbh\npbafvqrerq fraqvat culfvpny QIQf sbe znkvzhz dhnyvgl naq rneyl npprff gb arj\npbagrag? Vg frrzf yvxr vg pbhyq or n cerggl pbby vqrn.\n\n#FunzryrffFrysCebzbgvba: uggcf://tvguho.pbz/fcbafbef/gwqrievrf\n\n\n vim:tw=78:ts=8:ft=help:norl:\n"
  },
  {
    "path": "doc/telescope.txt",
    "content": "================================================================================\nINTRODUCTION                                                    *telescope.nvim*\n\nTelescope.nvim is a plugin for fuzzy finding and neovim. It helps you search,\nfilter, find and pick things in Lua.\n\nGetting started with telescope:\n  1. Run `:checkhealth telescope` to make sure everything is installed.\n  2. Evaluate it is working with `:Telescope find_files` or `:lua\n     require(\"telescope.builtin\").find_files()`\n  3. Put a `require(\"telescope\").setup()` call somewhere in your neovim config.\n  4. Read |telescope.setup| to check what config keys are available and what\n     you can put inside the setup call\n  5. Read |telescope.builtin| to check which builtin pickers are offered and\n     what options these implement\n  6. Profit\n\nThe below flow chart illustrates a simplified telescope architecture:\n┌───────────────────────────────────────────────────────────┐\n│      ┌────────┐                                           │\n│      │ Multi  │                                ┌───────+  │\n│      │ Select │    ┌───────┐                   │ Entry │  │\n│      └─────┬──*    │ Entry │    ┌────────+     │ Maker │  │\n│            │   ┌───│Manager│────│ Sorter │┐    └───┬───*  │\n│            ▼   ▼   └───────*    └────────┘│        │      │\n│            1────────┐                 2───┴──┐     │      │\n│      ┌─────│ Picker │                 │Finder│◀────┘      │\n│      ▼     └───┬────┘                 └──────*            │\n│ ┌────────┐     │       3────────+         ▲               │\n│ │Selected│     └───────│ Prompt │─────────┘               │\n│ │ Entry  │             └───┬────┘                         │\n│ └────────*             ┌───┴────┐  ┌────────┐  ┌────────┐ │\n│     │  ▲    4─────────┐│ Prompt │  │(Attach)│  │Actions │ │\n│     ▼  └──▶ │ Results ││ Buffer │◀─┤Mappings│◀─┤User Fn │ │\n│5─────────┐  └─────────┘└────────┘  └────────┘  └────────┘ │\n││Previewer│                                                │\n│└─────────┘                   telescope.nvim architecture  │\n└───────────────────────────────────────────────────────────┘\n\n  + The `Entry Maker` at least defines\n    - value: \"raw\" result of the finder\n    - ordinal: string to be sorted derived from value\n    - display: line representation of entry in results buffer\n\n  * The finder, entry manager, selected entry, and multi selections\n    comprises `entries` constructed by the `Entry Maker` from\n    raw results of the finder (`value`s)\n\n Primary components:\n  1 Picker: central UI dedicated to varying use cases\n            (finding files, grepping, diagnostics, etc.)\n            see :h telescope.builtin\n  2 Finder: pipe or interactively generates results to pick over\n  3 Prompt: user input that triggers the finder which sorts results\n            in order into the entry manager\n  4 Results: listed entries scored by sorter from finder results\n  5 Previewer: preview of context of selected entry\n               see :h telescope.previewers\n\nA practical introduction into telescope customization is our `developers.md`\n(top-level of repo) and `:h telescope.actions` that showcase how to access\ninformation about the state of the picker (current selection, etc.).\nTo find out more:\nhttps://github.com/nvim-telescope/telescope.nvim\n\n  :h telescope.setup\n  :h telescope.command\n  :h telescope.builtin\n  :h telescope.themes\n  :h telescope.layout\n  :h telescope.resolve\n  :h telescope.actions\n  :h telescope.actions.state\n  :h telescope.actions.set\n  :h telescope.actions.utils\n  :h telescope.actions.generate\n  :h telescope.actions.history\n  :h telescope.previewers\n\ntelescope.setup({opts})                                    *telescope.setup()*\n    Setup function to be run by user. Configures the defaults, pickers and\n    extensions of telescope.\n\n    Usage:\n    >\n    require('telescope').setup{\n      defaults = {\n        -- Default configuration for telescope goes here:\n        -- config_key = value,\n        -- ..\n      },\n      pickers = {\n        -- Default configuration for builtin pickers goes here:\n        -- picker_name = {\n        --   picker_config_key = value,\n        --   ...\n        -- }\n        -- Now the picker_config_key will be applied every time you call this\n        -- builtin picker\n      },\n      extensions = {\n        -- Your extension configuration goes here:\n        -- extension_name = {\n        --   extension_config_key = value,\n        -- }\n        -- please take a look at the readme of the extension you want to configure\n      }\n    }\n<\n\n\n    Valid keys for {opts.defaults}\n\n                                      *telescope.defaults.sorting_strategy*\n    sorting_strategy: ~\n        Determines the direction \"better\" results are sorted towards.\n\n        Available options are:\n        - \"descending\" (default)\n        - \"ascending\"\n\n                                    *telescope.defaults.selection_strategy*\n    selection_strategy: ~\n        Determines how the cursor acts after each sort iteration.\n\n        Available options are:\n        - \"reset\" (default)\n        - \"follow\"\n        - \"row\"\n        - \"closest\"\n        - \"none\"\n\n                                       *telescope.defaults.scroll_strategy*\n    scroll_strategy: ~\n        Determines what happens if you try to scroll past the view of the\n        picker.\n\n        Available options are:\n        - \"cycle\" (default)\n        - \"limit\"\n\n                                       *telescope.defaults.layout_strategy*\n    layout_strategy: ~\n        Determines the default layout of Telescope pickers.\n        See |telescope.layout| for details of the available strategies.\n\n        Default: 'horizontal'\n\n                                         *telescope.defaults.create_layout*\n    create_layout: ~\n        Configure the layout of Telescope pickers.\n        See |telescope.pickers.layout| for details.\n\n        Default: 'nil'\n\n                                         *telescope.defaults.layout_config*\n    layout_config: ~\n        Determines the default configuration values for layout strategies.\n        See |telescope.layout| for details of the configurations options for\n        each strategy.\n\n        Allows setting defaults for all strategies as top level options and\n        for overriding for specific options.\n        For example, the default values below set the default width to 80% of\n        the screen width for all strategies except 'center', which has width\n        of 50% of the screen width.\n\n        Default: {\n          bottom_pane = {\n            height = 25,\n            preview_cutoff = 120,\n            prompt_position = \"top\"\n          },\n          center = {\n            height = 0.4,\n            preview_cutoff = 40,\n            prompt_position = \"top\",\n            width = 0.5\n          },\n          cursor = {\n            height = 0.9,\n            preview_cutoff = 40,\n            width = 0.8\n          },\n          horizontal = {\n            height = 0.9,\n            preview_cutoff = 120,\n            prompt_position = \"bottom\",\n            width = 0.8\n          },\n          vertical = {\n            height = 0.9,\n            preview_cutoff = 40,\n            prompt_position = \"bottom\",\n            width = 0.8\n          }\n        }\n\n\n                                     *telescope.defaults.cycle_layout_list*\n    cycle_layout_list: ~\n        Determines the layouts to cycle through when using `actions.layout.cycle_layout_next`\n        and `actions.layout.cycle_layout_prev`.\n        Should be a list of \"layout setups\".\n        Each \"layout setup\" can take one of two forms:\n        1. string\n            This is interpreted as the name of a `layout_strategy`\n        2. table\n            A table with possible keys `layout_strategy`, `layout_config` and `previewer`\n\n        Default: { \"horizontal\", \"vertical\" }\n\n\n                                              *telescope.defaults.winblend*\n    winblend: ~\n        Configure winblend for telescope floating windows. See |winblend| for\n        more information. Type can be a number or a function returning a\n        number\n\n        Default: function() return vim.o.winblend end\n\n                                          *telescope.defaults.wrap_results*\n    wrap_results: ~\n        Word wrap the search results\n\n        Default: false\n\n                                         *telescope.defaults.prompt_prefix*\n    prompt_prefix: ~\n        The character(s) that will be shown in front of Telescope's prompt.\n\n        Default: '> '\n\n                                       *telescope.defaults.selection_caret*\n    selection_caret: ~\n        The character(s) that will be shown in front of the current selection.\n\n        Default: '> '\n\n                                          *telescope.defaults.entry_prefix*\n    entry_prefix: ~\n        Prefix in front of each result entry. Current selection not included.\n\n        Default: '  '\n\n                                            *telescope.defaults.multi_icon*\n    multi_icon: ~\n        Symbol to add in front of a multi-selected result entry.\n        Replaces final character of |telescope.defaults.selection_caret| and\n        |telescope.defaults.entry_prefix| as appropriate.\n        To have no icon, set to the empty string.\n\n        Default: '+'\n\n                                          *telescope.defaults.initial_mode*\n    initial_mode: ~\n        Determines in which mode telescope starts. Valid Keys:\n        `insert` and `normal`.\n\n        Default: \"insert\"\n\n                                                *telescope.defaults.border*\n    border: ~\n        Boolean defining if borders are added to Telescope windows.\n\n        Default: true\n\n                                          *telescope.defaults.path_display*\n    path_display: ~\n        Determines how file paths are displayed.\n\n        path_display can be set to an array with a combination of:\n        - \"hidden\"          hide file names\n        - \"tail\"            only display the file name, and not the path\n        - \"absolute\"        display absolute paths\n        - \"smart\"           remove as much from the path as possible to only show\n                            the difference between the displayed paths.\n                            Warning: The nature of the algorithm might have a negative\n                            performance impact!\n        - \"shorten\"         only display the first character of each directory in\n                            the path\n        - \"truncate\"        truncates the start of the path when the whole path will\n                            not fit. To increase the gap between the path and the edge,\n                            set truncate to number `truncate = 3`\n        - \"filename_first\"  shows filenames first and then the directories\n\n        You can also specify the number of characters of each directory name\n        to keep by setting `path_display.shorten = num`.\n          e.g. for a path like\n            `alpha/beta/gamma/delta.txt`\n          setting `path_display.shorten = 1` will give a path like:\n            `a/b/g/delta.txt`\n          Similarly, `path_display.shorten = 2` will give a path like:\n            `al/be/ga/delta.txt`\n\n        You can also further customise the shortening behaviour by\n        setting `path_display.shorten = { len = num, exclude = list }`,\n        where `len` acts as above, and `exclude` is a list of positions\n        that are not shortened. Negative numbers in the list are considered\n        relative to the end of the path.\n          e.g. for a path like\n            `alpha/beta/gamma/delta.txt`\n          setting `path_display.shorten = { len = 1, exclude = {1, -1} }`\n          will give a path like:\n            `alpha/b/g/delta.txt`\n          setting `path_display.shorten = { len = 2, exclude = {2, -2} }`\n          will give a path like:\n            `al/beta/gamma/de`\n\n        path_display can also be set to 'filename_first' to put the filename\n        in front.\n\n          path_display = {\n            \"filename_first\"\n          },\n\n        The directory structure can be reversed as follows:\n\n          path_display = {\n            filename_first = {\n                reverse_directories = true\n            }\n          },\n\n        path_display can also be set to 'hidden' string to hide file names\n\n        path_display can also be set to a function for custom formatting of\n        the path display with the following signature\n\n        Signature: fun(opts: table, path: string): string, table?\n\n        The optional table is an list of positions and highlight groups to\n        set the highlighting of the return path string.\n\n        Example:\n\n            -- Format path as \"file.txt (path\\to\\file\\)\"\n            path_display = function(opts, path)\n              local tail = require(\"telescope.utils\").path_tail(path)\n              return string.format(\"%s (%s)\", tail, path)\n            end,\n\n            -- Format path and add custom highlighting\n            path_display = function(opts, path)\n              local tail = require(\"telescope.utils\").path_tail(path)\n              path = string.format(\"%s (%s)\", tail, path)\n\n              local highlights = {\n                {\n                  {\n                    0, -- highlight start position\n                    #path, -- highlight end position\n                  },\n                  \"Comment\", -- highlight group name\n                },\n              }\n\n              return path, highlights\n            end\n\n        Default: {}\n\n                                           *telescope.defaults.borderchars*\n    borderchars: ~\n        Set the borderchars of telescope floating windows. It has to be a\n        table of 8 string values.\n\n        Default: { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"╯\", \"╰\" }\n\n                                       *telescope.defaults.get_status_text*\n    get_status_text: ~\n        A function that determines what the virtual text looks like.\n        Signature: function(picker) -> str\n\n        Default: function that shows current count / all\n\n                                         *telescope.defaults.hl_result_eol*\n    hl_result_eol: ~\n        Changes if the highlight for the selected item in the results\n        window is always the full width of the window\n\n        Default: true\n\n                                 *telescope.defaults.dynamic_preview_title*\n    dynamic_preview_title: ~\n        Will change the title of the preview window dynamically, where it\n        is supported. For example, the preview window's title could show up as\n        the full filename.\n\n        Default: false\n\n                                         *telescope.defaults.results_title*\n    results_title: ~\n        Defines the default title of the results window. A false value\n        can be used to hide the title altogether.\n\n        Default: \"Results\"\n\n                                          *telescope.defaults.prompt_title*\n    prompt_title: ~\n        Defines the default title of the prompt window. A false value\n        can be used to hide the title altogether. Most of the times builtins\n        define a prompt_title which will be preferred over this default.\n\n        Default: \"Prompt\"\n\n                                              *telescope.defaults.mappings*\n    mappings: ~\n        Your mappings to override telescope's default mappings.\n\n        See: ~\n            |telescope.mappings|\n\n\n                                      *telescope.defaults.default_mappings*\n    default_mappings: ~\n        Not recommended to use except for advanced users.\n\n        Will allow you to completely remove all of telescope's default maps\n        and use your own.\n\n        Default: nil\n\n\n                                               *telescope.defaults.history*\n    history: ~\n        This field handles the configuration for prompt history.\n        By default it is a table, with default values (more below).\n        To disable history, set it to false.\n\n        Currently mappings still need to be added, Example:\n          mappings = {\n            i = {\n              [\"<C-Down>\"] = require('telescope.actions').cycle_history_next,\n              [\"<C-Up>\"] = require('telescope.actions').cycle_history_prev,\n            },\n          },\n\n        Fields:\n          - path:       The path to the telescope history as string.\n                        Default: stdpath(\"data\")/telescope_history\n          - limit:      The amount of entries that will be written in the\n                        history.\n                        Warning: If limit is set to nil it will grow unbound.\n                        Default: 100\n          - handler:    A lua function that implements the history.\n                        This is meant as a developer setting for extensions to\n                        override the history handling, e.g.,\n                        https://github.com/nvim-telescope/telescope-smart-history.nvim,\n                        which allows context sensitive (cwd + picker) history.\n\n                        Default:\n                        require('telescope.actions.history').get_simple_history\n          - cycle_wrap: Indicates whether the cycle_history_next and\n                        cycle_history_prev functions should wrap around to the\n                        beginning or end of the history entries on reaching\n                        their respective ends\n                        Default: false\n\n                                          *telescope.defaults.cache_picker*\n    cache_picker: ~\n        This field handles the configuration for picker caching.\n        By default it is a table, with default values (more below).\n        To disable caching, set it to false.\n\n        Caching preserves all previous multi selections and results and\n        therefore may result in slowdown or increased RAM occupation\n        if too many pickers (`cache_picker.num_pickers`) or entries\n        ('cache_picker.limit_entries`) are cached.\n\n        Fields:\n          - num_pickers:          The number of pickers to be cached.\n                                  Set to -1 to preserve all pickers of your\n                                  session. If passed to a picker, the cached\n                                  pickers with indices larger than\n                                  `cache_picker.num_pickers` will be cleared.\n                                  Default: 1\n          - limit_entries:        The amount of entries that will be saved for\n                                  each picker.\n                                  Default: 1000\n          - ignore_empty_prompt:  If true, the picker will not be cached if\n                                  the prompt is empty (i.e., no text has been\n                                  typed at the time of closing the prompt).\n                                  Default: false\n\n\n                                               *telescope.defaults.preview*\n    preview: ~\n        This field handles the global configuration for previewers.\n        By default it is a table, with default values (more below).\n        To disable previewing, set it to false. If you have disabled previewers\n        globally, but want to opt in to previewing for single pickers, you will have to\n        pass `preview = true` or `preview = {...}` (your config) to the `opts` of\n        your picker.\n\n        Fields:\n          - check_mime_type:  Use `file` if available to try to infer whether the\n                              file to preview is a binary if filetype\n                              detection fails.\n                              Windows users get `file` from:\n                              https://github.com/julian-r/file-windows\n                              Set to false to attempt to preview any mime type.\n                              Default: true for all OS excl. Windows\n          - filesize_limit:   The maximum file size in MB attempted to be previewed.\n                              Set to false to attempt to preview any file size.\n                              Default: 25\n          - highlight_limit:  The maximum file size in MB attempted to be highlighted.\n                              Set to false to attempt to highlight any file size.\n                              Default: 1\n          - timeout:          Timeout the previewer if the preview did not\n                              complete within `timeout` milliseconds.\n                              Set to false to not timeout preview.\n                              Default: 250\n          - hook(s):          Function(s) that takes `(filepath, bufnr, opts)`, where opts\n                              exposes winid and ft (filetype).\n                              Available hooks (in order of priority):\n                              {filetype, mime, filesize, timeout}_hook\n                              Important: the filetype_hook must return true or false\n                              to indicate whether to continue (true) previewing or not (false),\n                              respectively.\n                              Two examples:\n                              local putils = require(\"telescope.previewers.utils\")\n                              ... -- preview is called in telescope.setup { ... }\n                                preview = {\n                                  -- 1) Do not show previewer for certain files\n                                  filetype_hook = function(filepath, bufnr, opts)\n                                    -- you could analogously check opts.ft for filetypes\n                                    local excluded = vim.tbl_filter(function(ending)\n                                      return filepath:match(ending)\n                                    end, {\n                                      \".*%.csv\",\n                                      \".*%.toml\",\n                                    })\n                                    if not vim.tbl_isempty(excluded) then\n                                      putils.set_preview_message(\n                                        bufnr,\n                                        opts.winid,\n                                        string.format(\"I don't like %s files!\",\n                                        excluded[1]:sub(5, -1))\n                                      )\n                                      return false\n                                    end\n                                    return true\n                                  end,\n                                  -- 2) Truncate lines to preview window for too large files\n                                  filesize_hook = function(filepath, bufnr, opts)\n                                    local path = require(\"plenary.path\"):new(filepath)\n                                    -- opts exposes winid\n                                    local height = vim.api.nvim_win_get_height(opts.winid)\n                                    local lines = vim.split(path:head(height), \"[\\r]?\\n\")\n                                    vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, lines)\n                                  end,\n                                }\n                              The configuration recipes for relevant examples.\n                              Note: we use vim.filetype filetype detection,\n                                    so if you have troubles with files not\n                                    highlighting correctly, please read\n                                    |vim.filetype|\n                              Default: nil\n          - treesitter:       Determines whether the previewer performs treesitter\n                              highlighting, which falls back to regex-based highlighting.\n                              `true`: treesitter highlighting for all available filetypes\n                              `false`: regex-based highlighting for all filetypes\n                              `table`: may contain the following keys:\n                                  - enable boolean|table: if boolean, enable ts\n                                                          highlighting for all supported\n                                                          filetypes.\n                                                          if table, ts highlighting is only\n                                                            enabled for given filetypes.\n                                  - disable table: list of filetypes for which ts highlighting\n                                                   is not used if `enable = true`.\n                              Default: true\n          - msg_bg_fillchar:  Character to fill background of unpreviewable buffers with\n                              Default: \"╱\"\n          - hide_on_startup:  Hide previewer when picker starts. Previewer can be toggled\n                              with actions.layout.toggle_preview.\n                              Default: false\n          - ls_short:         Determines whether to use the `--short` flag for the `ls`\n                              command when previewing directories. Otherwise will result\n                              to using `--long`.\n                              Default: false\n\n\n                                     *telescope.defaults.vimgrep_arguments*\n    vimgrep_arguments: ~\n        Defines the command that will be used for `live_grep` and `grep_string`\n        pickers.\n        Hint: Make sure that color is currently set to `never` because we do\n        not yet interpret color codes\n        Hint 2: Make sure that these options are in your changes arguments:\n          \"--no-heading\", \"--with-filename\", \"--line-number\", \"--column\"\n        because we need them so the ripgrep output is in the correct format.\n\n        Default: {\n          \"rg\",\n          \"--color=never\",\n          \"--no-heading\",\n          \"--with-filename\",\n          \"--line-number\",\n          \"--column\",\n          \"--smart-case\"\n        }\n\n                                              *telescope.defaults.use_less*\n    use_less: ~\n        Boolean if less should be enabled in term_previewer (deprecated and\n        currently no longer used in the builtin pickers).\n\n        Default: true\n\n                                               *telescope.defaults.set_env*\n    set_env: ~\n        Set an environment for term_previewer. A table of key values:\n        Example: { COLORTERM = \"truecolor\", ... }\n        Hint: Empty table is not allowed.\n\n        Default: nil\n\n                                        *telescope.defaults.color_devicons*\n    color_devicons: ~\n        Boolean if devicons should be enabled or not. If set to false, the\n        text highlight group is used.\n        Hint: Coloring only works if |termguicolors| is enabled.\n\n        Default: true\n\n                                           *telescope.defaults.file_sorter*\n    file_sorter: ~\n        A function pointer that specifies the file_sorter. This sorter will\n        be used for find_files, git_files and similar.\n        Hint: If you load a native sorter, you don't need to change this value,\n        the native sorter will override it anyway.\n\n        Default: require(\"telescope.sorters\").get_fzy_sorter\n\n                                        *telescope.defaults.generic_sorter*\n    generic_sorter: ~\n        A function pointer to the generic sorter. The sorter that should be\n        used for everything that is not a file.\n        Hint: If you load a native sorter, you don't need to change this value,\n        the native sorter will override it anyway.\n\n        Default: require(\"telescope.sorters\").get_fzy_sorter\n\n                                      *telescope.defaults.prefilter_sorter*\n    prefilter_sorter: ~\n        This points to a wrapper sorter around the generic_sorter that is able\n        to do prefiltering.\n        It's usually used for lsp_*_symbols and lsp_*_diagnostics\n\n        Default: require(\"telescope.sorters\").prefilter\n\n                                              *telescope.defaults.tiebreak*\n    tiebreak: ~\n        A function that determines how to break a tie when two entries have\n        the same score.\n        Having a function that always returns false would keep the entries in\n        the order they are found, so existing_entry before current_entry.\n        Vice versa always returning true would place the current_entry\n        before the existing_entry.\n\n        Signature: function(current_entry, existing_entry, prompt) -> boolean\n\n        Default: function that breaks the tie based on the length of the\n                 entry's ordinal\n\n                                  *telescope.defaults.file_ignore_patterns*\n    file_ignore_patterns: ~\n        A table of lua regex that define the files that should be ignored.\n        Example: { \"^scratch/\" } -- ignore all files in scratch directory\n        Example: { \"%.npz\" } -- ignore all npz files\n        See: https://www.lua.org/manual/5.1/manual.html#5.4.1 for more\n        information about lua regex\n        Note: `file_ignore_patterns` will be used in all pickers that have a\n        file associated. This might lead to the problem that lsp_ pickers\n        aren't displaying results because they might be ignored by\n        `file_ignore_patterns`. For example, setting up node_modules as ignored\n        will never show node_modules in any results, even if you are\n        interested in lsp_ results.\n\n        If you only want `file_ignore_patterns` for `find_files` and\n        `grep_string`/`live_grep` it is suggested that you setup `gitignore`\n        and have fd and or ripgrep installed because both tools will not show\n        `gitignore`d files on default.\n\n        Default: nil\n\n                                  *telescope.defaults.get_selection_window*\n    get_selection_window: ~\n          Function that takes function(picker, entry) and returns a window id.\n          The window ID will be used to decide what window the chosen file will\n          be opened in and the cursor placed in upon leaving the picker.\n\n          Default: `function() return 0 end`\n\n\n                                         *telescope.defaults.git_worktrees*\n    git_worktrees: ~\n        A table of arrays of detached working trees with keys `gitdir` and `toplevel`.\n        Used to pass `--git-dir` and `--work-tree` flags to git commands when telescope fails\n        to infer the top-level directory of a given working tree based on cwd.\n        Example:\n        git_worktrees = {\n          {\n            toplevel = vim.env.HOME,\n            gitdir = vim.env.HOME .. '/.cfg'\n          }\n        }\n\n        Default: nil\n\n\n                                        *telescope.defaults.file_previewer*\n    file_previewer: ~\n        Function pointer to the default file_previewer. It is mostly used\n        for find_files, git_files and similar.\n        You can change this function pointer to either use your own\n        previewer or use the command-line program bat as the previewer:\n          require(\"telescope.previewers\").cat.new\n\n        Default: require(\"telescope.previewers\").vim_buffer_cat.new\n\n                                        *telescope.defaults.grep_previewer*\n    grep_previewer: ~\n        Function pointer to the default vim_grep previewer. It is mostly\n        used for live_grep, grep_string and similar.\n        You can change this function pointer to either use your own\n        previewer or use the command-line program bat as the previewer:\n          require(\"telescope.previewers\").vimgrep.new\n\n        Default: require(\"telescope.previewers\").vim_buffer_vimgrep.new\n\n                                      *telescope.defaults.qflist_previewer*\n    qflist_previewer: ~\n        Function pointer to the default qflist previewer. It is mostly\n        used for qflist, loclist and lsp.\n        You can change this function pointer to either use your own\n        previewer or use the command-line program bat as the previewer:\n          require(\"telescope.previewers\").qflist.new\n\n        Default: require(\"telescope.previewers\").vim_buffer_qflist.new\n\n                                *telescope.defaults.buffer_previewer_maker*\n    buffer_previewer_maker: ~\n        Developer option that defines the underlining functionality\n        of the buffer previewer.\n        For interesting configuration examples take a look at\n        https://github.com/nvim-telescope/telescope.nvim/wiki/Configuration-Recipes\n\n        Default: require(\"telescope.previewers\").buffer_previewer_maker\n\n    Parameters: ~\n        {opts} (table)  Configuration opts. Keys: defaults, pickers,\n                        extensions\n\n\ntelescope.load_extension({name})                  *telescope.load_extension()*\n    Load an extension.\n    - Notes:\n      - Loading triggers ext setup via the config passed in |telescope.setup|\n\n\n    Parameters: ~\n        {name} (string)  Name of the extension\n\n\ntelescope.register_extension({mod})           *telescope.register_extension()*\n    Register an extension. To be used by plugin authors.\n\n\n    Parameters: ~\n        {mod} (table)  Module\n\n\ntelescope.extensions()                                *telescope.extensions()*\n    Use telescope.extensions to reference any extensions within your\n    configuration.\n    While the docs currently generate this as a function, it's actually a\n    table. Sorry.\n\n\n\n\n================================================================================\nCOMMAND                                                      *telescope.command*\n\nTelescope commands can be called through two apis, the lua api and the viml\napi.\n\nThe lua api is the more direct way to interact with Telescope, as you directly\ncall the lua functions that Telescope defines. It can be called in a lua file\nusing commands like:\n`require(\"telescope.builtin\").find_files({hidden=true, layout_config={prompt_position=\"top\"}})`\nIf you want to use this api from a vim file you should prepend `lua` to the\ncommand, as below:\n`lua require(\"telescope.builtin\").find_files({hidden=true, layout_config={prompt_position=\"top\"}})`\nIf you want to use this api from a neovim command line you should prepend\n`:lua` to the command, as below:\n`:lua require(\"telescope.builtin\").find_files({hidden=true, layout_config={prompt_position=\"top\"}})`\n\nThe viml api is more indirect, as first the command must be parsed to the\nrelevant lua equivalent, which brings some limitations. The viml api can be\ncalled using commands like:\n`:Telescope find_files hidden=true layout_config={\"prompt_position\":\"top\"}`\nThis involves setting options using an `=` and using viml syntax for lists and\ndictionaries when the corresponding lua function requires a table.\n\nOne limitation of the viml api is that there can be no spaces in any of the\noptions. For example, if you want to use the `cwd` option for `find_files` to\nspecify that you only want to search within the folder `/foo bar/subfolder/`\nyou could not do that using the viml api, as the path name contains a space.\nSimilarly, you could NOT set the `prompt_position` to `\"top\"` using the\nfollowing command:\n`:Telescope find_files layout_config={ \"prompt_position\" : \"top\" }`\nas there are spaces in the option.\n\n\n\n================================================================================\nBUILTIN                                                      *telescope.builtin*\n\nTelescope Builtins is a collection of community maintained pickers to support\ncommon workflows. It can be used as reference when writing PRs, Telescope\nextensions, your own custom pickers, or just as a discovery tool for all of the\namazing pickers already shipped with Telescope!\n\nAny of these functions can just be called directly by doing:\n\n:lua require('telescope.builtin').$NAME_OF_PICKER()\n\nTo use any of Telescope's default options or any picker-specific options, call\nyour desired picker by passing a lua table to the picker with all of the\noptions you want to use. Here's an example with the live_grep picker:\n\n>\n  :lua require('telescope.builtin').live_grep({\n    prompt_title = 'find string in open buffers...',\n    grep_open_files = true\n  })\n  -- or with dropdown theme\n  :lua require('telescope.builtin').find_files(require('telescope.themes').get_dropdown{\n    previewer = false\n  })\n<\n\nbuiltin.live_grep({opts})                      *telescope.builtin.live_grep()*\n    Search for a string and get results live as you type, respects .gitignore\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}                 (string)          root dir to search from\n                                                (default: cwd, use\n                                                utils.buffer_dir() to search\n                                                relative to open buffer)\n        {grep_open_files}     (boolean)         if true, restrict search to\n                                                open files only, mutually\n                                                exclusive with `search_dirs`\n        {search_dirs}         (table)           directory/directories/files to\n                                                search, mutually exclusive\n                                                with `grep_open_files`\n        {glob_pattern}        (string|table)    argument to be used with\n                                                `--glob`, e.g. \"*.toml\", can\n                                                use the opposite \"!*.toml\"\n        {type_filter}         (string)          argument to be used with\n                                                `--type`, e.g. \"rust\", see `rg\n                                                --type-list`\n        {additional_args}     (function|table)  additional arguments to be\n                                                passed on. Can be fn(opts) ->\n                                                tbl\n        {max_results}         (number)          define a upper result value\n        {disable_coordinates} (boolean)         don't show the line & row\n                                                numbers (default: false)\n        {file_encoding}       (string)          file encoding for the entry &\n                                                previewer\n\n\nbuiltin.grep_string({opts})                  *telescope.builtin.grep_string()*\n    Searches for the string under your cursor or the visual selection in your\n    current working directory\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}                 (string)          root dir to search from\n                                                (default: cwd, use\n                                                utils.buffer_dir() to search\n                                                relative to open buffer)\n        {search}              (string)          the query to search\n        {grep_open_files}     (boolean)         if true, restrict search to\n                                                open files only, mutually\n                                                exclusive with `search_dirs`\n        {search_dirs}         (table)           directory/directories/files to\n                                                search, mutually exclusive\n                                                with `grep_open_files`\n        {use_regex}           (boolean)         if true, special characters\n                                                won't be escaped, allows for\n                                                using regex (default: false)\n        {word_match}          (string)          can be set to `-w` to enable\n                                                exact word matches\n        {additional_args}     (function|table)  additional arguments to be\n                                                passed on. Can be fn(opts) ->\n                                                tbl\n        {disable_coordinates} (boolean)         don't show the line and row\n                                                numbers (default: false)\n        {only_sort_text}      (boolean)         only sort the text, not the\n                                                file, line or row (default:\n                                                false)\n        {file_encoding}       (string)          file encoding for the entry &\n                                                previewer\n\n\nbuiltin.find_files({opts})                    *telescope.builtin.find_files()*\n    Search for files (respecting .gitignore)\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}                 (string)          root dir to search from\n                                                (default: cwd, use\n                                                utils.buffer_dir() to search\n                                                relative to open buffer)\n        {find_command}        (function|table)  cmd to use for the search. Can\n                                                be a fn(opts) -> tbl (default:\n                                                autodetect)\n        {file_entry_encoding} (string)          encoding of output of\n                                                `find_command`\n        {follow}              (boolean)         if true, follows symlinks\n                                                (i.e. uses `-L` flag for the\n                                                `find` command) (default:\n                                                false)\n        {hidden}              (boolean)         determines whether to show\n                                                hidden files or not (default:\n                                                false)\n        {no_ignore}           (boolean)         show files ignored by\n                                                .gitignore, .ignore, etc.\n                                                (default: false)\n        {no_ignore_parent}    (boolean)         show files ignored by\n                                                .gitignore, .ignore, etc. in\n                                                parent dirs. (default: false)\n        {search_dirs}         (table)           directory/directories/files to\n                                                search\n        {search_file}         (string)          specify a filename to search\n                                                for\n        {file_encoding}       (string)          file encoding for the\n                                                previewer\n\n\nbuiltin.fd()                                          *telescope.builtin.fd()*\n    This is an alias for the `find_files` picker\n\n\n\nbuiltin.treesitter()                          *telescope.builtin.treesitter()*\n    Lists function names, variables, and other symbols from treesitter queries\n    Requires parser and `locals` queries for the current buffer in\n    `runtimepath`, see |vim.treesitter-parsers|, |vim.treesitter.query|, and\n    https://github.com/nvim-treesitter/nvim-treesitter/blob/main/CONTRIBUTING.md#locals\n\n    - Default keymaps:\n      - `<C-l>`: show autocompletion menu to prefilter your query by kind of ts\n        node you want to see (i.e. `:var:`)\n\n\n    Options: ~\n        {show_line}         (boolean)       if true, shows the row:column that\n                                            the result is found at (default:\n                                            true)\n        {bufnr}             (number)        specify the buffer number where\n                                            treesitter should run. (default:\n                                            current buffer)\n        {symbol_width}      (number)        defines the width of the symbol\n                                            section (default: 25)\n        {symbols}           (string|table)  filter results by symbol kind(s)\n        {ignore_symbols}    (string|table)  list of symbols to ignore\n        {symbol_highlights} (table)         string -> string. Matches symbol\n                                            with hl_group\n        {file_encoding}     (string)        file encoding for the previewer\n\n\nbuiltin.current_buffer_fuzzy_find({opts}) *telescope.builtin.current_buffer_fuzzy_find()*\n    Live fuzzy search inside of the currently open buffer\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {skip_empty_lines}     (boolean)  if true we don't display empty lines\n                                          (default: false)\n        {results_ts_highlight} (boolean)  highlight result entries with\n                                          treesitter (default: true)\n        {file_encoding}        (string)   file encoding for the previewer\n\n\nbuiltin.tags({opts})                                *telescope.builtin.tags()*\n    Lists tags in current directory with tag location file preview (users are\n    required to run ctags -R to generate tags or update when introducing new\n    changes)\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}            (string)   root dir to search from (default: cwd, use\n                                    utils.buffer_dir() to search relative to\n                                    open buffer)\n        {ctags_file}     (string)   specify a particular ctags file to use\n        {show_line}      (boolean)  if true, shows the content of the line the\n                                    tag is found on in the picker (default:\n                                    true)\n        {show_kind}      (boolean)  if true and kind info is available, show\n                                    the kind of the tag (default: true)\n        {only_sort_tags} (boolean)  if true we will only sort tags (default:\n                                    false)\n        {fname_width}    (number)   defines the width of the filename section\n                                    (default: 30)\n\n\nbuiltin.current_buffer_tags({opts})  *telescope.builtin.current_buffer_tags()*\n    Lists all of the tags for the currently open buffer, with a preview\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}            (string)   root dir to search from (default: cwd, use\n                                    utils.buffer_dir() to search relative to\n                                    open buffer)\n        {ctags_file}     (string)   specify a particular ctags file to use\n        {show_line}      (boolean)  if true, shows the content of the line the\n                                    tag is found on in the picker (default:\n                                    true)\n        {show_kind}      (boolean)  if true and kind info is available, show\n                                    the kind of the tag (default: true)\n        {only_sort_tags} (boolean)  if true we will only sort tags (default:\n                                    false)\n        {fname_width}    (number)   defines the width of the filename section\n                                    (default: 30)\n\n\nbuiltin.git_files({opts})                      *telescope.builtin.git_files()*\n    Fuzzy search for files tracked by Git. This command lists the output of the\n    `git ls-files` command, respects .gitignore\n    - Default keymaps:\n      - `<cr>`: opens the currently selected file\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}                (string)   specify the path of the repo\n        {use_file_path}      (boolean)  if we should use the current buffer\n                                        git root (default: false)\n        {use_git_root}       (boolean)  if we should use git root as cwd or\n                                        the cwd (important for submodule)\n                                        (default: true)\n        {show_untracked}     (boolean)  if true, adds `--others` flag to\n                                        command and shows untracked files\n                                        (default: false)\n        {recurse_submodules} (boolean)  if true, adds the\n                                        `--recurse-submodules` flag to command\n                                        (default: false)\n        {git_command}        (table)    command that will be executed.\n                                        {\"git\",\"ls-files\",\"--exclude-standard\",\"--cached\"}\n        {file_encoding}      (string)   file encoding for the previewer\n\n\nbuiltin.git_commits({opts})                  *telescope.builtin.git_commits()*\n    Lists commits for current directory with diff preview\n    - Default keymaps:\n      - `<cr>`: checks out the currently selected commit\n      - `<C-r>m`: resets current branch to selected commit using mixed mode\n      - `<C-r>s`: resets current branch to selected commit using soft mode\n      - `<C-r>h`: resets current branch to selected commit using hard mode\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}           (string)   specify the path of the repo\n        {use_file_path} (boolean)  if we should use the current buffer git\n                                   root (default: false)\n        {use_git_root}  (boolean)  if we should use git root as cwd or the cwd\n                                   (important for submodule) (default: true)\n        {git_command}   (table)    command that will be executed.\n                                   {\"git\",\"log\",\"--pretty=oneline\",\"--abbrev-commit\",\"--\",\".\"}\n\n\nbuiltin.git_bcommits({opts})                *telescope.builtin.git_bcommits()*\n    Lists commits for current buffer with diff preview\n    - Default keymaps or your overridden `select_` keys:\n      - `<cr>`: checks out the currently selected commit\n      - `<c-v>`: opens a diff in a vertical split\n      - `<c-x>`: opens a diff in a horizontal split\n      - `<c-t>`: opens a diff in a new tab\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}           (string)   specify the path of the repo\n        {use_file_path} (boolean)  if we should use the current buffer git\n                                   root (default: false)\n        {use_git_root}  (boolean)  if we should use git root as cwd or the cwd\n                                   (important for submodule) (default: true)\n        {current_file}  (string)   specify the current file that should be\n                                   used for bcommits (default: current buffer)\n        {git_command}   (table)    command that will be executed.\n                                   {\"git\",\"log\",\"--pretty=oneline\",\"--abbrev-commit\"}\n\n\nbuiltin.git_bcommits_range({opts})    *telescope.builtin.git_bcommits_range()*\n    Lists commits for a range of lines in the current buffer with diff preview\n    In visual mode, lists commits for the selected lines With operator mode\n    enabled, lists commits inside the text object/motion\n    - Default keymaps or your overridden `select_` keys:\n      - `<cr>`: checks out the currently selected commit\n      - `<c-v>`: opens a diff in a vertical split\n      - `<c-x>`: opens a diff in a horizontal split\n      - `<c-t>`: opens a diff in a new tab\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}          (string)   specify the path of the repo\n        {use_git_root} (boolean)  if we should use git root as cwd or the cwd\n                                  (important for submodule) (default: true)\n        {current_file} (string)   specify the current file that should be used\n                                  for bcommits (default: current buffer)\n        {git_command}  (table)    command that will be executed. the last\n                                  element must be \"-L\".\n                                  {\"git\",\"log\",\"--pretty=oneline\",\"--abbrev-commit\",\"--no-patch\",\"-L\"}\n        {from}         (number)   the first line number in the range (default:\n                                  current line)\n        {to}           (number)   the last line number in the range (default:\n                                  the value of `from`)\n        {operator}     (boolean)  select lines in operator-pending mode\n                                  (default: false)\n\n\nbuiltin.git_branches({opts})                *telescope.builtin.git_branches()*\n    List branches for current directory, with output from `git log --oneline`\n    shown in the preview window\n    - Default keymaps:\n      - `<cr>`: checks out the currently selected branch\n      - `<C-t>`: tracks currently selected branch\n      - `<C-r>`: rebases currently selected branch\n      - `<C-a>`: creates a new branch, with confirmation prompt before creation\n      - `<C-d>`: deletes the currently selected branch, with confirmation\n        prompt before deletion\n      - `<C-y>`: merges the currently selected branch, with confirmation prompt\n        before deletion\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}                           (string)   specify the path of the\n                                                   repo\n        {use_file_path}                 (boolean)  if we should use the\n                                                   current buffer git root\n                                                   (default: false)\n        {use_git_root}                  (boolean)  if we should use git root\n                                                   as cwd or the cwd\n                                                   (important for submodule)\n                                                   (default: true)\n        {show_remote_tracking_branches} (boolean)  show remote tracking\n                                                   branches like origin/main\n                                                   (default: true)\n        {pattern}                       (string)   specify the pattern to\n                                                   match all refs\n\n\nbuiltin.git_status({opts})                    *telescope.builtin.git_status()*\n    Lists git status for current directory\n    - Default keymaps:\n      - `<Tab>`: stages or unstages the currently selected file\n      - `<cr>`: opens the currently selected file\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}           (string)   specify the path of the repo\n        {use_file_path} (boolean)  if we should use the current buffer git\n                                   root (default: false)\n        {use_git_root}  (boolean)  if we should use git root as cwd or the cwd\n                                   (important for submodule) (default: true)\n        {git_icons}     (table)    string -> string. Matches name with icon\n                                   (see source code, make_entry.lua\n                                   git_icon_defaults)\n        {expand_dir}    (boolean)  pass flag `-uall` to show files in\n                                   untracked directories (default: true)\n\n\nbuiltin.git_stash({opts})                      *telescope.builtin.git_stash()*\n    Lists stash items in current repository\n    - Default keymaps:\n      - `<cr>`: runs `git apply` for currently selected stash\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}           (string)   specify the path of the repo\n        {use_file_path} (boolean)  if we should use the current buffer git\n                                   root (default: false)\n        {use_git_root}  (boolean)  if we should use git root as cwd or the cwd\n                                   (important for submodule) (default: true)\n        {show_branch}   (boolean)  if we should display the branch name for\n                                   git stash entries (default: true)\n\n\nbuiltin.builtin({opts})                          *telescope.builtin.builtin()*\n    Lists all of the community maintained pickers built into Telescope\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {include_extensions} (boolean)  if true will show the pickers of the\n                                        installed extensions (default: false)\n        {use_default_opts}   (boolean)  if the selected picker should use its\n                                        default options (default: false)\n\n\nbuiltin.resume({opts})                            *telescope.builtin.resume()*\n    Opens the previous picker in the identical state (incl. multi selections)\n    - Notes:\n      - Requires `cache_picker` in setup or when having invoked pickers, see\n        |telescope.defaults.cache_picker|\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cache_index} (number)  what picker to resume, where 1 denotes most\n                                recent (default: 1)\n\n\nbuiltin.pickers({opts})                          *telescope.builtin.pickers()*\n    Opens a picker over previously cached pickers in their preserved states\n    (incl. multi selections)\n    - Default keymaps:\n      - `<C-x>`: delete the selected cached picker\n    - Notes:\n      - Requires `cache_picker` in setup or when having invoked pickers, see\n        |telescope.defaults.cache_picker|\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.planets({opts})                          *telescope.builtin.planets()*\n    Use the telescope...\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {show_pluto} (boolean)  we love Pluto (default: false, because its a\n                                hidden feature)\n        {show_moon}  (boolean)  we love the Moon (default: false, because its\n                                a hidden feature)\n\n\nbuiltin.symbols({opts})                          *telescope.builtin.symbols()*\n    Lists symbols inside of `data/telescope-sources/*.json` found in your\n    runtime path or found in `stdpath(\"data\")/telescope/symbols/*.json`. The\n    second path can be customized. We provide a couple of default symbols which\n    can be found in https://github.com/nvim-telescope/telescope-symbols.nvim.\n    This repos README also provides more information about the format in which\n    the symbols have to be.\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {symbol_path} (string)  specify the second path. Default:\n                                `stdpath(\"data\")/telescope/symbols/*.json`\n        {sources}     (table)   specify a table of sources you want to load\n                                this time\n\n\nbuiltin.commands({opts})                        *telescope.builtin.commands()*\n    Lists available plugin/user commands and runs them on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {show_buf_command} (boolean)  show buf local command (Default: true)\n\n\nbuiltin.quickfix({opts})                        *telescope.builtin.quickfix()*\n    Lists items in the quickfix list, jumps to location on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {show_line} (boolean)  show results text (default: true)\n        {trim_text} (boolean)  trim results text (default: false)\n        {nr}        (number)   specify the quickfix list number\n\n\nbuiltin.quickfixhistory({opts})          *telescope.builtin.quickfixhistory()*\n    Lists all quickfix lists in your history and open them with\n    `builtin.quickfix`. It seems that neovim only keeps the full history for 10\n    lists\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.loclist({opts})                          *telescope.builtin.loclist()*\n    Lists items from the current window's location list, jumps to location on\n    `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {show_line} (boolean)  show results text (default: true)\n        {trim_text} (boolean)  trim results text (default: false)\n\n\nbuiltin.oldfiles({opts})                        *telescope.builtin.oldfiles()*\n    Lists previously open files, opens on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}           (string)   specify a working directory to filter\n                                   oldfiles by\n        {only_cwd}      (boolean)  show only files in the cwd (default: false)\n        {cwd_only}      (boolean)  alias for only_cwd\n        {file_encoding} (string)   file encoding for the previewer\n\n\nbuiltin.command_history({opts})          *telescope.builtin.command_history()*\n    Lists commands that were executed recently, and reruns them on `<cr>`\n    - Default keymaps:\n      - `<C-e>`: open the command line with the text of the currently selected\n        result populated in it\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {filter_fn} (function)  filter fn(cmd:string). true if the history\n                                command should be presented.\n\n\nbuiltin.search_history({opts})            *telescope.builtin.search_history()*\n    Lists searches that were executed recently, and reruns them on `<cr>`\n    - Default keymaps:\n      - `<C-e>`: open a search window with the text of the currently selected\n        search result populated in it\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.vim_options({opts})                  *telescope.builtin.vim_options()*\n    Lists vim options, allows you to edit the current value on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.help_tags({opts})                      *telescope.builtin.help_tags()*\n    Lists available help tags and opens a new window with the relevant help\n    info on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {lang}     (string)   specify language (default: vim.o.helplang)\n        {fallback} (boolean)  fallback to en if language isn't installed\n                              (default: true)\n\n\nbuiltin.man_pages({opts})                      *telescope.builtin.man_pages()*\n    Lists manpage entries, opens them in a help window on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {sections} (table)     a list of sections to search, use `{ \"ALL\" }`\n                               to search in all sections (default: { \"1\" })\n        {man_cmd}  (function)  that returns the man command. (Default:\n                               `apropos \"\"` on linux, `apropos \" \"` on macos)\n\n\nbuiltin.reloader({opts})                        *telescope.builtin.reloader()*\n    Lists lua modules and reloads them on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {column_len} (number)  define the max column len for the module name\n                               (default: dynamic, longest module name)\n\n\nbuiltin.buffers({opts})                          *telescope.builtin.buffers()*\n    Lists open buffers in current neovim instance, opens selected buffer on\n    `<cr>`\n    - Default keymaps:\n      - `<M-d>`: delete the currently selected buffer\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {cwd}                   (string)    specify a working directory to\n                                            filter buffers list by\n        {show_all_buffers}      (boolean)   if true, show all buffers,\n                                            including unloaded buffers\n                                            (default: true)\n        {ignore_current_buffer} (boolean)   if true, don't show the current\n                                            buffer in the list (default:\n                                            false)\n        {only_cwd}              (boolean)   if true, only show buffers in the\n                                            current working directory\n                                            (default: false)\n        {cwd_only}              (boolean)   alias for only_cwd\n        {sort_lastused}         (boolean)   Sorts current and last buffer to\n                                            the top and selects the lastused\n                                            (default: false)\n        {sort_mru}              (boolean)   Sorts all buffers after most\n                                            recent used. Not just the current\n                                            and last one (default: false)\n        {bufnr_width}           (number)    Defines the width of the buffer\n                                            numbers in front of the filenames \n                                            (default: dynamic)\n        {file_encoding}         (string)    file encoding for the previewer\n        {sort_buffers}          (function)  sort fn(bufnr_a, bufnr_b). true if\n                                            bufnr_a should go first. Runs\n                                            after sorting by most recent (if\n                                            specified)\n        {select_current}        (boolean)   select current buffer (default:\n                                            false)\n\n\nbuiltin.colorscheme({opts})                  *telescope.builtin.colorscheme()*\n    Lists available colorschemes and applies them on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {colors}          (table)    a list of additional colorschemes to\n                                     explicitly make available to telescope\n                                     (default: {})\n        {enable_preview}  (boolean)  if true, will preview the selected color\n        {ignore_builtins} (boolean)  if true, builtin colorschemes are not\n                                     listed\n\n\nbuiltin.marks({opts})                              *telescope.builtin.marks()*\n    Lists vim marks and their value, jumps to the mark on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {file_encoding} (string)  file encoding for the previewer\n        {mark_type}     (string)  filter marks by type (default: \"all\",\n                                  options: \"all\"|\"global\"|\"local\")\n\n\nbuiltin.registers({opts})                      *telescope.builtin.registers()*\n    Lists vim registers, pastes the contents of the register on `<cr>`\n    - Default keymaps:\n      - `<C-e>`: edit the contents of the currently selected register\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.keymaps({opts})                          *telescope.builtin.keymaps()*\n    Lists normal mode keymappings, runs the selected keymap on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {modes}      (table)     a list of short-named keymap modes to search\n                                 (default: { \"n\", \"i\", \"c\", \"x\" })\n        {show_plug}  (boolean)   if true, the keymaps for which the lhs\n                                 contains \"<Plug>\" are also shown (default:\n                                 true)\n        {only_buf}   (boolean)   if true, only show the buffer-local keymaps\n                                 (default: false)\n        {lhs_filter} (function)  filter(lhs:string) -> boolean. true for\n                                 keymap.lhs if the keymap should be shown\n                                 (optional)\n        {filter}     (function)  filter(km:keymap) -> boolean. true for the\n                                 keymap if it should be shown (optional)\n\n\nbuiltin.filetypes({opts})                      *telescope.builtin.filetypes()*\n    Lists all available filetypes, sets currently open buffer's filetype to\n    selected filetype in Telescope on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.highlights({opts})                    *telescope.builtin.highlights()*\n    Lists all available highlights\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.autocommands({opts})                *telescope.builtin.autocommands()*\n    Lists vim autocommands and goes to their declaration on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.spell_suggest({opts})              *telescope.builtin.spell_suggest()*\n    Lists spelling suggestions for the current word under the cursor, replaces\n    word with selected suggestion on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n\nbuiltin.tagstack({opts})                        *telescope.builtin.tagstack()*\n    Lists the tag stack for the current window, jumps to tag on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {show_line} (boolean)  show results text (default: true)\n        {trim_text} (boolean)  trim results text (default: false)\n\n\nbuiltin.jumplist({opts})                        *telescope.builtin.jumplist()*\n    Lists items from Vim's jumplist, jumps to location on `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {show_line} (boolean)  show results text (default: true)\n        {trim_text} (boolean)  trim results text (default: false)\n\n\nbuiltin.lsp_references({opts})            *telescope.builtin.lsp_references()*\n    Lists LSP references for word under the cursor, jumps to reference on\n    `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {include_declaration}  (boolean)  include symbol declaration in the\n                                          lsp references (default: true)\n        {include_current_line} (boolean)  include current line (default:\n                                          false)\n        {jump_type}            (string)   how to goto reference if there is\n                                          only one and the definition file is\n                                          different from the current file,\n                                          values: \"tab\", \"tab drop\", \"split\",\n                                          \"vsplit\", \"never\"\n        {show_line}            (boolean)  show results text (default: true)\n        {trim_text}            (boolean)  trim results text (default: false)\n        {reuse_win}            (boolean)  jump to existing window if buffer is\n                                          already opened (default: false)\n        {file_encoding}        (string)   file encoding for the previewer\n\n\nbuiltin.lsp_incoming_calls({opts})    *telescope.builtin.lsp_incoming_calls()*\n    Lists LSP incoming calls for word under the cursor, jumps to reference on\n    `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {show_line}     (boolean)  show results text (default: true)\n        {trim_text}     (boolean)  trim results text (default: false)\n        {file_encoding} (string)   file encoding for the previewer\n\n\nbuiltin.lsp_outgoing_calls({opts})    *telescope.builtin.lsp_outgoing_calls()*\n    Lists LSP outgoing calls for word under the cursor, jumps to reference on\n    `<cr>`\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {show_line}     (boolean)  show results text (default: true)\n        {trim_text}     (boolean)  trim results text (default: false)\n        {file_encoding} (string)   file encoding for the previewer\n\n\nbuiltin.lsp_definitions({opts})          *telescope.builtin.lsp_definitions()*\n    Goto the definition of the word under the cursor, if there's only one,\n    otherwise show all options in Telescope\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {jump_type}     (string)   how to goto definition if there is only one\n                                   and the definition file is different from\n                                   the current file, values: \"tab\", \"tab\n                                   drop\", \"split\", \"vsplit\", \"never\"\n        {show_line}     (boolean)  show results text (default: true)\n        {trim_text}     (boolean)  trim results text (default: false)\n        {reuse_win}     (boolean)  jump to existing window if buffer is\n                                   already opened (default: false)\n        {file_encoding} (string)   file encoding for the previewer\n\n\nbuiltin.lsp_type_definitions({opts}) *telescope.builtin.lsp_type_definitions()*\n    Goto the definition of the type of the word under the cursor, if there's\n    only one, otherwise show all options in Telescope\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {jump_type}     (string)   how to goto definition if there is only one\n                                   and the definition file is different from\n                                   the current file, values: \"tab\", \"tab\n                                   drop\", \"split\", \"vsplit\", \"never\"\n        {show_line}     (boolean)  show results text (default: true)\n        {trim_text}     (boolean)  trim results text (default: false)\n        {reuse_win}     (boolean)  jump to existing window if buffer is\n                                   already opened (default: false)\n        {file_encoding} (string)   file encoding for the previewer\n\n\nbuiltin.lsp_implementations({opts})  *telescope.builtin.lsp_implementations()*\n    Goto the implementation of the word under the cursor if there's only one,\n    otherwise show all options in Telescope\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {jump_type}     (string)   how to goto implementation if there is only\n                                   one and the definition file is different\n                                   from the current file, values: \"tab\", \"tab\n                                   drop\", \"split\", \"vsplit\", \"never\"\n        {show_line}     (boolean)  show results text (default: true)\n        {trim_text}     (boolean)  trim results text (default: false)\n        {reuse_win}     (boolean)  jump to existing window if buffer is\n                                   already opened (default: false)\n        {file_encoding} (string)   file encoding for the previewer\n\n\nbuiltin.lsp_document_symbols({opts}) *telescope.builtin.lsp_document_symbols()*\n    Lists LSP document symbols in the current buffer\n    - Default keymaps:\n      - `<C-l>`: show autocompletion menu to prefilter your query by type of\n        symbol you want to see (i.e. `:variable:`)\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {fname_width}       (number)        defines the width of the filename\n                                            section (default: 30)\n        {symbol_width}      (number)        defines the width of the symbol\n                                            section (default: 25)\n        {symbol_type_width} (number)        defines the width of the symbol\n                                            type section (default: 8)\n        {show_line}         (boolean)       if true, shows the content of the\n                                            line the tag is found on (default:\n                                            false)\n        {symbols}           (string|table)  filter results by symbol kind(s)\n        {ignore_symbols}    (string|table)  list of symbols to ignore\n        {symbol_highlights} (table)         string -> string. Matches symbol\n                                            with hl_group\n        {file_encoding}     (string)        file encoding for the previewer\n\n\nbuiltin.lsp_workspace_symbols({opts}) *telescope.builtin.lsp_workspace_symbols()*\n    Lists LSP document symbols in the current workspace\n    - Default keymaps:\n      - `<C-l>`: show autocompletion menu to prefilter your query by type of\n        symbol you want to see (i.e. `:variable:`)\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {query}             (string)        for what to query the workspace\n                                            (default: \"\")\n        {fname_width}       (number)        defines the width of the filename\n                                            section (default: 30)\n        {symbol_width}      (number)        defines the width of the symbol\n                                            section (default: 25)\n        {symbol_type_width} (number)        defines the width of the symbol\n                                            type section (default: 8)\n        {show_line}         (boolean)       if true, shows the content of the\n                                            line the tag is found on (default:\n                                            false)\n        {symbols}           (string|table)  filter results by symbol kind(s)\n        {ignore_symbols}    (string|table)  list of symbols to ignore\n        {symbol_highlights} (table)         string -> string. Matches symbol\n                                            with hl_group\n        {file_encoding}     (string)        file encoding for the previewer\n\n\nbuiltin.lsp_dynamic_workspace_symbols({opts}) *telescope.builtin.lsp_dynamic_workspace_symbols()*\n    Dynamically lists LSP for all workspace symbols\n    - Default keymaps:\n      - `<C-l>`: show autocompletion menu to prefilter your query by type of\n        symbol you want to see (i.e. `:variable:`), only works after refining\n        to fuzzy search using <C-space>\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {fname_width}       (number)        defines the width of the filename\n                                            section (default: 30)\n        {show_line}         (boolean)       if true, shows the content of the\n                                            line the symbol is found on\n                                            (default: false)\n        {symbols}           (string|table)  filter results by symbol kind(s)\n        {ignore_symbols}    (string|table)  list of symbols to ignore\n        {symbol_highlights} (table)         string -> string. Matches symbol\n                                            with hl_group\n        {file_encoding}     (string)        file encoding for the previewer\n\n\nbuiltin.diagnostics({opts})                  *telescope.builtin.diagnostics()*\n    Lists diagnostics\n    - Fields:\n      - `All severity flags can be passed as `string` or `number` as per\n        `:vim.diagnostic.severity:`\n    - Default keymaps:\n      - `<C-l>`: show autocompletion menu to prefilter your query with the\n        diagnostic you want to see (i.e. `:warning:`)\n    - sort_by option:\n      - \"buffer\": order by bufnr (prioritizing current bufnr), severity, lnum\n      - \"severity\": order by severity, bufnr (prioritizing current bufnr), lnum\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to the picker\n\n    Options: ~\n        {bufnr}               (number|nil)      Buffer number to get\n                                                diagnostics from. Use 0 for\n                                                current buffer or nil for all\n                                                buffers\n        {severity}            (string|number)   filter diagnostics by severity\n                                                name (string) or id (number)\n        {severity_limit}      (string|number)   keep diagnostics equal or more\n                                                severe wrt severity name\n                                                (string) or id (number)\n        {severity_bound}      (string|number)   keep diagnostics equal or less\n                                                severe wrt severity name\n                                                (string) or id (number)\n        {root_dir}            (string|boolean)  if set to string, get\n                                                diagnostics only for buffers\n                                                under this dir otherwise cwd\n        {no_unlisted}         (boolean)         if true, get diagnostics only\n                                                for listed buffers\n        {no_sign}             (boolean)         hide DiagnosticSigns from\n                                                Results (default: false)\n        {line_width}          (string|number)   set length of diagnostic entry\n                                                text in Results. Use 'full'\n                                                for full untruncated text\n        {namespace}           (number)          limit your diagnostics to a\n                                                specific namespace\n        {disable_coordinates} (boolean)         don't show the line & row\n                                                numbers (default: false)\n        {sort_by}             (string)          sort order of the diagnostics\n                                                results; see above notes\n                                                (default: \"buffer\")\n\n\n\n================================================================================\nTHEMES                                                        *telescope.themes*\n\nThemes are ways to combine several elements of styling together.\n\nThey are helpful for managing the several different UI aspects for telescope\nand provide a simple interface for users to get a particular \"style\" of picker.\n\nthemes.get_dropdown()                        *telescope.themes.get_dropdown()*\n    Dropdown style theme.\n\n    Usage:\n    >\n        local opts = {...} -- picker options\n        local builtin = require('telescope.builtin')\n        local themes = require('telescope.themes')\n        builtin.find_files(themes.get_dropdown(opts))\n<\n\n\n\nthemes.get_cursor()                            *telescope.themes.get_cursor()*\n    Cursor style theme.\n\n    Usage:\n    >\n        local opts = {...} -- picker options\n        local builtin = require('telescope.builtin')\n        local themes = require('telescope.themes')\n        builtin.find_files(themes.get_cursor(opts))\n<\n\n\n\nthemes.get_ivy()                                  *telescope.themes.get_ivy()*\n    Ivy style theme.\n\n    Usage:\n    >\n        local opts = {...} -- picker options\n        local builtin = require('telescope.builtin')\n        local themes = require('telescope.themes')\n        builtin.find_files(themes.get_ivy(opts))\n<\n\n\n\n\n================================================================================\nMAPPINGS                                                    *telescope.mappings*\n\n|telescope.mappings| is used to configure the keybindings within a telescope\npicker. These key binds are only local to the picker window and will be cleared\nonce you exit the picker.\n\nWe provide multiple configuration options to make it easy for you to adjust\ntelescope's default key bindings and create your own custom key binds.\n\nTo see many of the builtin actions that you can use as values for this table,\nsee |telescope.actions|\n\nFormat is:\n>\n  {\n    mode = { ..keys }\n  }\n<\n\nwhere {mode} is the one character letter for a mode ('i' for insert, 'n' for\nnormal).\n\nFor example:\n>\n  mappings = {\n    i = {\n      [\"<esc>\"] = require('telescope.actions').close,\n    },\n  }\n<\n\nTo disable a keymap, put `[map] = false`\nFor example:\n>\n  {\n    ...,\n    [\"<C-n>\"] = false,\n    ...,\n  }\n<\n\nTo override behavior of a key, simply set the value to be a function (either by\nrequiring an action or by writing your own function)\n>\n  {\n    ...,\n    [\"<C-i>\"] = require('telescope.actions').select_default,\n    ...,\n  }\n<\n\nIf the function you want is part of `telescope.actions`, then you can simply\nsupply the function name as a string. For example, the previous option is\nequivalent to:\n>\n  {\n    ...,\n    [\"<C-i>\"] = \"select_default\",\n    ...,\n  }\n<\n\nYou can also add other mappings using tables with `type = \"command\"`. For\nexample:\n>\n  {\n    ...,\n    [\"jj\"] = { \"<esc>\", type = \"command\" },\n    [\"kk\"] = { \"<cmd>echo \\\"Hello, World!\\\"<cr>\", type = \"command\" },)\n    ...,\n  }\n<\n\nYou can also add additional options for mappings of any type (\"action\" and\n\"command\"). For example:\n>\n  {\n    ...,\n    [\"<C-j>\"] = {\n      actions.move_selection_next, type = \"action\",\n      opts = { nowait = true, silent = true }\n    },\n    ...,\n  }\n<\n\nThere are three main places you can configure |telescope.mappings|. These are\nordered from the lowest priority to the highest priority.\n\n1. |telescope.defaults.mappings|\n2. In the |telescope.setup()| table, inside a picker with a given name, use the\n   `mappings` key\n>\n  require(\"telescope\").setup {\n    pickers = {\n      find_files = {\n        mappings = {\n          n = {\n            [\"kj\"] = \"close\",\n          },\n        },\n      },\n    },\n  }\n<\n3. `attach_mappings` function for a particular picker.\n>\n  require(\"telescope.builtin\").find_files {\n    attach_mappings = function(_, map)\n      map(\"i\", \"asdf\", function(_prompt_bufnr)\n        print \"You typed asdf\"\n      end)\n\n      map({\"i\", \"n\"}, \"<C-r>\", function(_prompt_bufnr)\n        print \"You typed <C-r>\"\n      end, { desc = \"desc for which key\"})\n\n      -- needs to return true if you want to map default_mappings and\n      -- false if not\n      return true\n    end,\n  }\n<\n\n\n================================================================================\nLAYOUT                                                *telescope.pickers.layout*\n\nThe telescope pickers layout can be configured using the\n|telescope.defaults.create_layout| option.\n\nParameters: ~\n  - picker : A Picker object.\n\nReturn: ~\n  - layout : instance of `TelescopeLayout` class.\n\nExample: ~\n>\nlocal Layout = require \"telescope.pickers.layout\"\n\nrequire(\"telescope\").setup {\n  create_layout = function(picker)\n    local function create_window(enter, width, height, row, col, title)\n      local bufnr = vim.api.nvim_create_buf(false, true)\n      local winid = vim.api.nvim_open_win(bufnr, enter, {\n        style = \"minimal\",\n        relative = \"editor\",\n        width = width,\n        height = height,\n        row = row,\n        col = col,\n        border = \"single\",\n        title = title,\n      })\n\n      vim.wo[winid].winhighlight = \"Normal:Normal\"\n\n      return Layout.Window {\n        bufnr = bufnr,\n        winid = winid,\n      }\n    end\n\n    local function destory_window(window)\n      if window then\n        if vim.api.nvim_win_is_valid(window.winid) then\n          vim.api.nvim_win_close(window.winid, true)\n        end\n        if vim.api.nvim_buf_is_valid(window.bufnr) then\n          vim.api.nvim_buf_delete(window.bufnr, { force = true })\n        end\n      end\n    end\n\n    local layout = Layout {\n      picker = picker,\n      mount = function(self)\n        self.results = create_window(false, 40, 20, 0, 0, \"Results\")\n        self.preview = create_window(false, 40, 23, 0, 42, \"Preview\")\n        self.prompt = create_window(true, 40, 1, 22, 0, \"Prompt\")\n      end,\n      unmount = function(self)\n        destory_window(self.results)\n        destory_window(self.preview)\n        destory_window(self.prompt)\n      end,\n      update = function(self) end,\n    }\n\n    return layout\n  end,\n}\n<\n\nTelescopeWindowBorder.config                    *TelescopeWindowBorder.config*\n\n\n    Fields: ~\n        {bufnr}        (integer)\n        {winid}        (integer|nil)\n        {change_title} (nil|function)  (self: TelescopeWindowBorder, title:\n                                       string, pos?:\n                                       \"NW\"|\"N\"|\"NE\"|\"SW\"|\"S\"|\"SE\"):nil\n\n\nTelescopeWindowBorder                                  *TelescopeWindowBorder*\n\n\n    Fields: ~\n        {bufnr} (integer|nil)\n        {winid} (integer|nil)\n\n\nTelescopeWindow.config                                *TelescopeWindow.config*\n\n\n    Fields: ~\n        {bufnr}  (integer)\n        {winid}  (integer|nil)\n        {border} (TelescopeWindowBorder.config|nil)\n\n\nTelescopeWindow                                              *TelescopeWindow*\n\n\n    Fields: ~\n        {border} (TelescopeWindowBorder)\n        {bufnr}  (integer)\n        {winid}  (integer)\n\n\nTelescopeLayout.config                                *TelescopeLayout.config*\n\n\n    Fields: ~\n        {mount}   (function)             (self: TelescopeLayout):nil\n        {unmount} (function)             (self: TelescopeLayout):nil\n        {update}  (function)             (self: TelescopeLayout):nil\n        {prompt}  (TelescopeWindow|nil)\n        {results} (TelescopeWindow|nil)\n        {preview} (TelescopeWindow|nil)\n\n\nTelescopeLayout                                              *TelescopeLayout*\n\n\n    Fields: ~\n        {prompt}  (TelescopeWindow)\n        {results} (TelescopeWindow)\n        {preview} (TelescopeWindow|nil)\n\n\nLayout:mount()                              *telescope.pickers.layout:mount()*\n    Create the layout. This needs to ensure the required properties are\n    populated.\n\n\n\nLayout:unmount()                          *telescope.pickers.layout:unmount()*\n    Destroy the layout. This is responsible for performing clean-up, for\n    example:\n     - deleting buffers\n     - closing windows\n     - clearing autocmds\n\n\n\nLayout:update()                            *telescope.pickers.layout:update()*\n    Refresh the layout. This is called when, for example, vim is resized.\n\n\n\n\n================================================================================\nLAYOUT                                                        *telescope.layout*\n\nThe layout of telescope pickers can be adjusted using the\n|telescope.defaults.layout_strategy| and |telescope.defaults.layout_config|\noptions. For example, the following configuration changes the default layout\nstrategy and the default size of the picker:\n>\n  require('telescope').setup{\n    defaults = {\n      layout_strategy = 'vertical',\n      layout_config = { height = 0.95 },\n    },\n  }\n<\n\n\n────────────────────────────────────────────────────────────────────────────────\n\nLayout strategies are different functions to position telescope.\n\nAll layout strategies are functions with the following signature:\n\n>\n  function(picker, columns, lines, layout_config)\n    -- Do some calculations here...\n    return {\n      preview = preview_configuration,\n      results = results_configuration,\n      prompt = prompt_configuration,\n    }\n  end\n<\n\n  Parameters: ~\n    - picker        : A Picker object. (docs coming soon)\n    - columns       : (number) Columns in the vim window\n    - lines         : (number) Lines in the vim window\n    - layout_config : (table) The configuration values specific to the picker.\n\nThis means you can create your own layout strategy if you want! Just be aware\nfor now that we may change some APIs or interfaces, so they may break if you\ncreate your own.\n\nA good method for creating your own would be to copy one of the strategies that\nmost resembles what you want from\n\"./lua/telescope/pickers/layout_strategies.lua\" in the telescope repo.\n\n\nlayout_strategies.horizontal()                 *telescope.layout.horizontal()*\n    Horizontal layout has two columns, one for the preview and one for the\n    prompt and results.\n\n    ┌──────────────────────────────────────────────────┐\n    │                                                  │\n    │    ┌───────────────────┐┌───────────────────┐    │\n    │    │                   ││                   │    │\n    │    │                   ││                   │    │\n    │    │                   ││                   │    │\n    │    │      Results      ││                   │    │\n    │    │                   ││      Preview      │    │\n    │    │                   ││                   │    │\n    │    │                   ││                   │    │\n    │    └───────────────────┘│                   │    │\n    │    ┌───────────────────┐│                   │    │\n    │    │      Prompt       ││                   │    │\n    │    └───────────────────┘└───────────────────┘    │\n    │                                                  │\n    └──────────────────────────────────────────────────┘\n\n    `picker.layout_config` shared options:\n      - anchor:\n        - Which edge/corner to pin the picker to\n        - See |resolver.resolve_anchor_pos()|\n      - anchor_padding:\n        - Specifies an amount of additional padding around the anchor\n        - Values should be a positive integer\n      - height:\n        - How tall to make Telescope's entire layout\n        - See |resolver.resolve_height()|\n      - mirror: Flip the location of the results/prompt and preview windows\n      - prompt_position:\n        - Where to place prompt window.\n        - Available Values: 'bottom', 'top'\n      - scroll_speed: The number of lines to scroll through the previewer\n      - width:\n        - How wide to make Telescope's entire layout\n        - See |resolver.resolve_width()|\n\n    `picker.layout_config` unique options:\n      - preview_cutoff: When columns are less than this value, the preview will be disabled\n      - preview_width:\n        - Change the width of Telescope's preview window\n        - See |resolver.resolve_width()|\n\n\nlayout_strategies.center()                         *telescope.layout.center()*\n    Centered layout with a combined block of the prompt and results aligned to\n    the middle of the screen. The preview window is then placed in the\n    remaining space above or below, according to `anchor` or `mirror`.\n    Particularly useful for creating dropdown menus (see |telescope.themes| and\n    |themes.get_dropdown()|).\n\n    Note that vertical anchoring, i.e. `anchor` containing `\"N\"` or `\"S\"`, will\n    override `mirror` config. For `\"N\"` anchoring preview will be placed below\n    prompt/result block. For `\"S\"` anchoring preview will be placed above\n    prompt/result block. For horizontal only anchoring preview will be placed\n    according to `mirror` config, default is above the prompt/result block.\n\n    ┌──────────────────────────────────────────────────┐\n    │    ┌────────────────────────────────────────┐    │\n    │    │                 Preview                │    │\n    │    │                 Preview                │    │\n    │    └────────────────────────────────────────┘    │\n    │    ┌────────────────────────────────────────┐    │\n    │    │                 Prompt                 │    │\n    │    ├────────────────────────────────────────┤    │\n    │    │                 Result                 │    │\n    │    │                 Result                 │    │\n    │    └────────────────────────────────────────┘    │\n    │                                                  │\n    │                                                  │\n    │                                                  │\n    │                                                  │\n    └──────────────────────────────────────────────────┘\n\n    `picker.layout_config` shared options:\n      - anchor:\n        - Which edge/corner to pin the picker to\n        - See |resolver.resolve_anchor_pos()|\n      - anchor_padding:\n        - Specifies an amount of additional padding around the anchor\n        - Values should be a positive integer\n      - height:\n        - How tall to make Telescope's entire layout\n        - See |resolver.resolve_height()|\n      - mirror: Flip the location of the results/prompt and preview windows\n      - prompt_position:\n        - Where to place prompt window.\n        - Available Values: 'bottom', 'top'\n      - scroll_speed: The number of lines to scroll through the previewer\n      - width:\n        - How wide to make Telescope's entire layout\n        - See |resolver.resolve_width()|\n\n    `picker.layout_config` unique options:\n      - preview_cutoff: When lines are less than this value, the preview will be disabled\n\n\nlayout_strategies.cursor()                         *telescope.layout.cursor()*\n    Cursor layout dynamically positioned below the cursor if possible. If there\n    is no place below the cursor it will be placed above.\n\n    ┌──────────────────────────────────────────────────┐\n    │                                                  │\n    │   █                                              │\n    │   ┌──────────────┐┌─────────────────────┐        │\n    │   │    Prompt    ││      Preview        │        │\n    │   ├──────────────┤│      Preview        │        │\n    │   │    Result    ││      Preview        │        │\n    │   │    Result    ││      Preview        │        │\n    │   └──────────────┘└─────────────────────┘        │\n    │                                         █        │\n    │                                                  │\n    │                                                  │\n    │                                                  │\n    │                                                  │\n    │                                                  │\n    └──────────────────────────────────────────────────┘\n\n    `picker.layout_config` shared options:\n      - height:\n        - How tall to make Telescope's entire layout\n        - See |resolver.resolve_height()|\n      - scroll_speed: The number of lines to scroll through the previewer\n      - width:\n        - How wide to make Telescope's entire layout\n        - See |resolver.resolve_width()|\n\n    `picker.layout_config` unique options:\n      - preview_cutoff: When columns are less than this value, the preview will be disabled\n      - preview_width:\n        - Change the width of Telescope's preview window\n        - See |resolver.resolve_width()|\n\n\nlayout_strategies.vertical()                     *telescope.layout.vertical()*\n    Vertical layout stacks the items on top of each other. Particularly useful\n    with thinner windows.\n\n    ┌──────────────────────────────────────────────────┐\n    │                                                  │\n    │    ┌────────────────────────────────────────┐    │\n    │    │                 Preview                │    │\n    │    │                 Preview                │    │\n    │    │                 Preview                │    │\n    │    └────────────────────────────────────────┘    │\n    │    ┌────────────────────────────────────────┐    │\n    │    │                 Result                 │    │\n    │    │                 Result                 │    │\n    │    └────────────────────────────────────────┘    │\n    │    ┌────────────────────────────────────────┐    │\n    │    │                 Prompt                 │    │\n    │    └────────────────────────────────────────┘    │\n    │                                                  │\n    └──────────────────────────────────────────────────┘\n\n    `picker.layout_config` shared options:\n      - anchor:\n        - Which edge/corner to pin the picker to\n        - See |resolver.resolve_anchor_pos()|\n      - anchor_padding:\n        - Specifies an amount of additional padding around the anchor\n        - Values should be a positive integer\n      - height:\n        - How tall to make Telescope's entire layout\n        - See |resolver.resolve_height()|\n      - mirror: Flip the location of the results/prompt and preview windows\n      - prompt_position:\n        - Where to place prompt window.\n        - Available Values: 'bottom', 'top'\n      - scroll_speed: The number of lines to scroll through the previewer\n      - width:\n        - How wide to make Telescope's entire layout\n        - See |resolver.resolve_width()|\n\n    `picker.layout_config` unique options:\n      - preview_cutoff: When lines are less than this value, the preview will be disabled\n      - preview_height:\n        - Change the height of Telescope's preview window\n        - See |resolver.resolve_height()|\n\n\nlayout_strategies.flex()                             *telescope.layout.flex()*\n    Flex layout swaps between `horizontal` and `vertical` strategies based on\n    the window width\n     - Supports |layout_strategies.vertical| or |layout_strategies.horizontal|\n       features\n\n\n    `picker.layout_config` shared options:\n      - anchor:\n        - Which edge/corner to pin the picker to\n        - See |resolver.resolve_anchor_pos()|\n      - anchor_padding:\n        - Specifies an amount of additional padding around the anchor\n        - Values should be a positive integer\n      - height:\n        - How tall to make Telescope's entire layout\n        - See |resolver.resolve_height()|\n      - mirror: Flip the location of the results/prompt and preview windows\n      - prompt_position:\n        - Where to place prompt window.\n        - Available Values: 'bottom', 'top'\n      - scroll_speed: The number of lines to scroll through the previewer\n      - width:\n        - How wide to make Telescope's entire layout\n        - See |resolver.resolve_width()|\n\n    `picker.layout_config` unique options:\n      - flip_columns: The number of columns required to move to horizontal mode\n      - flip_lines: The number of lines required to move to horizontal mode\n      - horizontal: Options to pass when switching to horizontal layout\n      - vertical: Options to pass when switching to vertical layout\n\n\nlayout_strategies.bottom_pane()               *telescope.layout.bottom_pane()*\n    Bottom pane can be used to create layouts similar to \"ivy\".\n\n    For an easy ivy configuration, see |themes.get_ivy()|\n\n\n\n\n================================================================================\nRESOLVE                                                      *telescope.resolve*\n\nProvides \"resolver functions\" to allow more customisable inputs for options.\n\nresolver.resolve_height()                 *telescope.resolve.resolve_height()*\n    Converts input to a function that returns the height. The input must take\n    one of five forms:\n    1. 0 <= number < 1\n       This means total height as a percentage.\n    2. 1 <= number\n       This means total height as a fixed number.\n    3. function\n       Must have signature: function(self, max_columns, max_lines): number\n    4. table of the form: { val, max = ..., min = ... }\n       val has to be in the first form 0 <= val < 1 and only one is given, \n       `min` or `max` as fixed number\n    5. table of the form: {padding = `foo`}\n       where `foo` has one of the previous three forms.\n       The height is then set to be the remaining space after padding. For\n       example, if the window has height 50, and the input is {padding = 5}, \n       the height returned will be `40 = 50 - 2*5`\n\n    The returned function will have signature: function(self, max_columns,\n    max_lines): number\n\n\n\nresolver.resolve_width()                   *telescope.resolve.resolve_width()*\n    Converts input to a function that returns the width. The input must take\n    one of five forms:\n    1. 0 <= number < 1\n       This means total width as a percentage.\n    2. 1 <= number\n       This means total width as a fixed number.\n    3. function\n       Must have signature: function(self, max_columns, max_lines): number\n    4. table of the form: { val, max = ..., min = ... }\n       val has to be in the first form 0 <= val < 1 and only one is given, \n       `min` or `max` as fixed number\n    5. table of the form: {padding = `foo`}\n       where `foo` has one of the previous three forms.\n       The width is then set to be the remaining space after padding. For\n       example, if the window has width 100, and the input is {padding = 5}, \n       the width returned will be `90 = 100 - 2*5`\n\n    The returned function will have signature: function(self, max_columns,\n    max_lines): number\n\n\n\nresolver.resolve_anchor_pos()         *telescope.resolve.resolve_anchor_pos()*\n    Calculates the adjustment required to move the picker from the middle of\n    the screen to an edge or corner.\n    The `anchor` can be any of the following strings:\n      - \"\", \"CENTER\", \"NW\", \"N\", \"NE\", \"E\", \"SE\", \"S\", \"SW\", \"W\" The anchors\n        have the following meanings:\n      - \"\" or \"CENTER\":\n        the picker will remain in the middle of the screen.\n      - Compass directions:\n        the picker will move to the corresponding edge/corner e.g. \"NW\" -> \"top\n        left corner\", \"E\" -> \"right edge\", \"S\" -> \"bottom edge\"\n\n\n\n\n================================================================================\nMAKE_ENTRY                                                *telescope.make_entry*\n\nEach picker has a finder made up of two parts, the results which are the data\nto be displayed, and the entry_maker. These entry_makers are functions returned\nfrom make_entry functions. These will be referred to as entry_makers in the\nfollowing documentation.\n\nEvery entry maker returns a function that accepts the data to be used for an\nentry. This function will return an entry table (or nil, meaning skip this\nentry) which contains the following important keys:\n- value any: value key can be anything but still required\n- valid bool (optional): is an optional key because it defaults to true but if\n  the key is set to false it will not be displayed by the picker\n- ordinal string: is the text that is used for filtering\n- display string|function: is either a string of the text that is being \n  displayed or a function receiving the entry at a later stage, when the entry \n  is actually being displayed. A function can be useful here if a complex \n  calculation has to be done. `make_entry` can also return a second value - a\n  highlight array which will then apply to the line. Highlight entry in this\n  array has the following signature `{ { start_col, end_col }, hl_group }`\n- filename string (optional): will be interpreted by the default `<cr>` action\n  as open this file\n- bufnr number (optional): will be interpreted by the default `<cr>` action as\n  open this buffer\n- lnum number (optional): lnum value which will be interpreted by the default\n  `<cr>` action as a jump to this line\n- col number (optional): col value which will be interpreted by the default\n  `<cr>` action as a jump to this column\n\nFor more information on easier displaying, see\n|telescope.pickers.entry_display|\n\nTODO: Document something we call `entry_index`\n\n\n================================================================================\nENTRY_DISPLAY                                  *telescope.pickers.entry_display*\n\nEntry Display is used to format each entry shown in the result panel.\n\nEntry Display create() will give us a function based on the configuration of\ncolumn widths we pass into it. We then can use this function n times to return\na string based on structured input.\n\nNote that if you call `create()` inside `make_display` it will be called for\nevery single entry. So it is suggested to do this outside of `make_display` for\nthe best performance.\n\nThe create function will use the column widths passed to it in\nconfiguration.items. Each item in that table is the number of characters in the\ncolumn. It's also possible for the final column to not have a fixed width, this\nwill be shown in the configuration as 'remaining = true'.\n\nAn example of this configuration is shown for the buffers picker:\n>\nlocal displayer = entry_display.create {\n  separator = \" \",\n  items = {\n    { width = opts.bufnr_width },\n    { width = 4 },\n    { width = icon_width },\n    { remaining = true },\n  },\n}\n<\n\nThis shows 4 columns, the first is defined in the opts as the width we'll use\nwhen display_string is the number of the buffer. The second has a fixed width\nof 4 and the third column's width will be decided by the width of the icons we\nuse. The fourth column will use the remaining space. Finally, we have also\ndefined the separator between each column will be the space \" \".\n\nAn example of how the display reference will be used is shown, again for the\nbuffers picker:\n>\nreturn displayer {\n  { entry.bufnr, \"TelescopeResultsNumber\" },\n  { entry.indicator, \"TelescopeResultsComment\" },\n  { icon, hl_group },\n  display_bufname .. \":\" .. entry.lnum,\n}\n<\n\nThere are two types of values each column can have. Either a simple String or a\ntable containing the String as well as the hl_group.\n\nThe displayer can return values, string and an optional highlights. The string\nis all the text to be displayed for this entry as a single string. If parts of\nthe string are to be highlighted they will be described in the highlights\ntable.\n\nFor a better understanding of how create() and displayer are used it's best to\nlook at the code in make_entry.lua.\n\n\n================================================================================\nUTILS                                                          *telescope.utils*\n\nUtilities for writing telescope pickers\n\nutils.str_byteindex()                        *telescope.utils.str_byteindex()*\n\n\n    Return: ~\n        integer\n\n\nutils.path_expand({path})                      *telescope.utils.path_expand()*\n    Hybrid of `vim.fn.expand()` and custom `vim.fs.normalize()`\n\n    Paths starting with '%', '#' or '<' are expanded with `vim.fn.expand()`.\n    Otherwise avoids using `vim.fn.expand()` due to its overly aggressive\n    expansion behavior which can sometimes lead to errors or the creation of\n    non-existent paths when dealing with valid absolute paths.\n\n    Other paths will have '~' and environment variables expanded. Unlike\n    `vim.fs.normalize()`, backslashes are preserved. This has better\n    compatibility with `plenary.path` and also avoids mangling valid Unix paths\n    with literal backslashes.\n\n    Trailing slashes are trimmed. With the exception of root paths. eg. `/` on\n    Unix or `C:\\` on Windows\n\n\n\n    Parameters: ~\n        {path} (string)\n\n    Return: ~\n        string\n\n\nutils.transform_path({opts}, {path})        *telescope.utils.transform_path()*\n    Transform path is a util function that formats a path based on path_display\n    found in `opts` or the default value from config. It is meant to be used in\n    make_entry to have a uniform interface for builtins as well as extensions\n    utilizing the same user configuration Note: It is only supported inside\n    `make_entry`/`make_display` the use of this function outside of telescope\n    might yield to undefined behavior and will not be addressed by us\n\n\n    Parameters: ~\n        {opts} (table)       The opts the users passed into the picker. Might\n                             contains a path_display key\n        {path} (string|nil)  The path that should be formatted\n\n    Return: ~\n        string: path to be displayed\n        table: The transformed path ready to be displayed with the styling\n\n\nutils.has_ts_parser({lang})                  *telescope.utils.has_ts_parser()*\n    Checks if treesitter parser for language is installed\n\n\n    Parameters: ~\n        {lang} (string)\n\n\nutils.notify({funname}, {opts})                     *telescope.utils.notify()*\n    Telescope Wrapper around vim.notify\n\n\n    Parameters: ~\n        {funname} (string)  name of the function that will be\n        {opts}    (table)   opts.level string, opts.msg string, opts.once bool\n\n\n\n================================================================================\nACTIONS                                                      *telescope.actions*\n\nThese functions are useful for people creating their own mappings.\n\nActions can be either normal functions that expect the `prompt_bufnr` as first\nargument (1) or they can be a custom telescope type called \"action\" (2).\n\n(1) The `prompt_bufnr` of a normal function denotes the identifier of your\npicker which can be used to access the picker state. In practice, users most\ncommonly access from both picker and global state via the following:\n>\n  -- for utility functions\n  local action_state = require \"telescope.actions.state\"\n\n  local actions = {}\n  actions.do_stuff = function(prompt_bufnr)\n    local current_picker = action_state.get_current_picker(prompt_bufnr) -- picker state\n    local entry = action_state.get_selected_entry()\n  end\n<\n\nSee |telescope.actions.state| for more information.\n\n(2) To transform a module of functions into a module of \"action\"s, you need to\ndo the following:\n>\n  local transform_mod = require(\"telescope.actions.mt\").transform_mod\n\n  local mod = {}\n  mod.a1 = function(prompt_bufnr)\n    -- your code goes here\n    -- You can access the picker/global state as described above in (1).\n  end\n\n  mod.a2 = function(prompt_bufnr)\n    -- your code goes here\n  end\n  mod = transform_mod(mod)\n\n  -- Now the following is possible. This means that actions a2 will be executed\n  -- after action a1. You can chain as many actions as you want.\n  local action = mod.a1 + mod.a2\n  action(bufnr)\n<\n\nAnother interesting thing to do is that these actions now have functions you\ncan call. These functions include `:replace(f)`, `:replace_if(f, c)`,\n`replace_map(tbl)` and `enhance(tbl)`. More information on these functions can\nbe found in the `developers.md` and `lua/tests/automated/action_spec.lua` file.\n\nactions.move_selection_next({prompt_bufnr}) *telescope.actions.move_selection_next()*\n    Move the selection to the next entry\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.move_selection_previous({prompt_bufnr}) *telescope.actions.move_selection_previous()*\n    Move the selection to the previous entry\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.move_selection_worse({prompt_bufnr}) *telescope.actions.move_selection_worse()*\n    Move the selection to the entry that has a worse score\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.move_selection_better({prompt_bufnr}) *telescope.actions.move_selection_better()*\n    Move the selection to the entry that has a better score\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.move_to_top({prompt_bufnr})          *telescope.actions.move_to_top()*\n    Move to the top of the picker\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.move_to_middle({prompt_bufnr})    *telescope.actions.move_to_middle()*\n    Move to the middle of the picker\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.move_to_bottom({prompt_bufnr})    *telescope.actions.move_to_bottom()*\n    Move to the bottom of the picker\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.add_selection({prompt_bufnr})      *telescope.actions.add_selection()*\n    Add current entry to multi select\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.remove_selection({prompt_bufnr}) *telescope.actions.remove_selection()*\n    Remove current entry from multi select\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.toggle_selection({prompt_bufnr}) *telescope.actions.toggle_selection()*\n    Toggle current entry status for multi select\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.select_all({prompt_bufnr})            *telescope.actions.select_all()*\n    Multi select all entries.\n    - Note: selected entries may include results not visible in the results pop\n      up.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.drop_all({prompt_bufnr})                *telescope.actions.drop_all()*\n    Drop all entries from the current multi selection.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.toggle_all({prompt_bufnr})            *telescope.actions.toggle_all()*\n    Toggle multi selection for all entries.\n    - Note: toggled entries may include results not visible in the results pop\n      up.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.preview_scrolling_up({prompt_bufnr}) *telescope.actions.preview_scrolling_up()*\n    Scroll the preview window up\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.preview_scrolling_down({prompt_bufnr}) *telescope.actions.preview_scrolling_down()*\n    Scroll the preview window down\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.preview_scrolling_left({prompt_bufnr}) *telescope.actions.preview_scrolling_left()*\n    Scroll the preview window to the left\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.preview_scrolling_right({prompt_bufnr}) *telescope.actions.preview_scrolling_right()*\n    Scroll the preview window to the right\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.results_scrolling_up({prompt_bufnr}) *telescope.actions.results_scrolling_up()*\n    Scroll the results window up\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.results_scrolling_down({prompt_bufnr}) *telescope.actions.results_scrolling_down()*\n    Scroll the results window down\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.results_scrolling_left({prompt_bufnr}) *telescope.actions.results_scrolling_left()*\n    Scroll the results window to the left\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.results_scrolling_right({prompt_bufnr}) *telescope.actions.results_scrolling_right()*\n    Scroll the results window to the right\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.center({prompt_bufnr})                    *telescope.actions.center()*\n    Center the cursor in the window, can be used after selecting a file to edit\n    You can just map `actions.select_default + actions.center`\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.select_default({prompt_bufnr})    *telescope.actions.select_default()*\n    Perform default action on selection, usually something like\n    `:edit <selection>`\n\n    i.e. open the selection in the current buffer\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.select_horizontal({prompt_bufnr}) *telescope.actions.select_horizontal()*\n    Perform 'horizontal' action on selection, usually something like\n    `:new <selection>`\n\n    i.e. open the selection in a new horizontal split\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.select_vertical({prompt_bufnr})  *telescope.actions.select_vertical()*\n    Perform 'vertical' action on selection, usually something like\n    `:vnew <selection>`\n\n    i.e. open the selection in a new vertical split\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.select_tab({prompt_bufnr})            *telescope.actions.select_tab()*\n    Perform 'tab' action on selection, usually something like\n    `:tabedit <selection>`\n\n    i.e. open the selection in a new tab\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.select_drop({prompt_bufnr})          *telescope.actions.select_drop()*\n    Perform 'drop' action on selection, usually something like\n    `:drop <selection>`\n\n    i.e. open the selection in a window\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.select_tab_drop({prompt_bufnr})  *telescope.actions.select_tab_drop()*\n    Perform 'tab drop' action on selection, usually something like\n    `:tab drop <selection>`\n\n    i.e. open the selection in a new tab\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.file_edit({prompt_bufnr})              *telescope.actions.file_edit()*\n    Perform file edit on selection, usually something like\n    `:edit <selection>`\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.file_split({prompt_bufnr})            *telescope.actions.file_split()*\n    Perform file split on selection, usually something like\n    `:new <selection>`\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.file_vsplit({prompt_bufnr})          *telescope.actions.file_vsplit()*\n    Perform file vsplit on selection, usually something like\n    `:vnew <selection>`\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.file_tab({prompt_bufnr})                *telescope.actions.file_tab()*\n    Perform file tab on selection, usually something like\n    `:tabedit <selection>`\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.close({prompt_bufnr})                      *telescope.actions.close()*\n    Close the Telescope window, usually used within an action\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions._close({prompt_bufnr})                    *telescope.actions._close()*\n    Close the Telescope window, usually used within an action\n    Deprecated and no longer needed, does the same as\n    |telescope.actions.close|. Might be removed in the future\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.edit_command_line({prompt_bufnr}) *telescope.actions.edit_command_line()*\n    Set a value in the command line and don't run it, making it editable.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.set_command_line({prompt_bufnr}) *telescope.actions.set_command_line()*\n    Set a value in the command line and run it\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.edit_search_line({prompt_bufnr}) *telescope.actions.edit_search_line()*\n    Set a value in the search line and don't search for it, making it editable.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.set_search_line({prompt_bufnr})  *telescope.actions.set_search_line()*\n    Set a value in the search line and search for it\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.edit_register({prompt_bufnr})      *telescope.actions.edit_register()*\n    Edit a register\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.paste_register({prompt_bufnr})    *telescope.actions.paste_register()*\n    Paste the selected register into the buffer\n\n    Note: only meant to be used inside builtin.registers\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.insert_symbol({prompt_bufnr})      *telescope.actions.insert_symbol()*\n    Insert a symbol into the current buffer (while switching to normal mode)\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.insert_symbol_i({prompt_bufnr})  *telescope.actions.insert_symbol_i()*\n    Insert a symbol into the current buffer and keeping the insert mode.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_create_branch({prompt_bufnr}) *telescope.actions.git_create_branch()*\n    Create and checkout a new git branch if it doesn't already exist\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_apply_stash({prompt_bufnr})  *telescope.actions.git_apply_stash()*\n    Applies an existing git stash\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_checkout({prompt_bufnr})        *telescope.actions.git_checkout()*\n    Checkout an existing git branch\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_switch_branch({prompt_bufnr}) *telescope.actions.git_switch_branch()*\n    Switch to git branch.\n    If the branch already exists in local, switch to that. If the branch is\n    only in remote, create new branch tracking remote and switch to new one.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_rename_branch()            *telescope.actions.git_rename_branch()*\n    Action to rename selected git branch\n\n\n\nactions.git_track_branch({prompt_bufnr}) *telescope.actions.git_track_branch()*\n    Tell git to track the currently selected remote branch in Telescope\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_delete_branch({prompt_bufnr}) *telescope.actions.git_delete_branch()*\n    Delete all currently selected branches\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_merge_branch({prompt_bufnr}) *telescope.actions.git_merge_branch()*\n    Merge the currently selected branch\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_rebase_branch({prompt_bufnr}) *telescope.actions.git_rebase_branch()*\n    Rebase to selected git branch\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_reset_mixed({prompt_bufnr})  *telescope.actions.git_reset_mixed()*\n    Reset to selected git commit using mixed mode\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_reset_soft({prompt_bufnr})    *telescope.actions.git_reset_soft()*\n    Reset to selected git commit using soft mode\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_reset_hard({prompt_bufnr})    *telescope.actions.git_reset_hard()*\n    Reset to selected git commit using hard mode\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_checkout_current_buffer({prompt_bufnr}) *telescope.actions.git_checkout_current_buffer()*\n    Checkout a specific file for a given sha\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.git_staging_toggle({prompt_bufnr}) *telescope.actions.git_staging_toggle()*\n    Stage/unstage selected file\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.send_selected_to_qflist({prompt_bufnr}) *telescope.actions.send_selected_to_qflist()*\n    Sends the selected entries to the quickfix list, replacing the previous\n    entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.add_selected_to_qflist({prompt_bufnr}) *telescope.actions.add_selected_to_qflist()*\n    Adds the selected entries to the quickfix list, keeping the previous\n    entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.send_to_qflist({prompt_bufnr})    *telescope.actions.send_to_qflist()*\n    Sends all entries to the quickfix list, replacing the previous entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.add_to_qflist({prompt_bufnr})      *telescope.actions.add_to_qflist()*\n    Adds all entries to the quickfix list, keeping the previous entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.send_selected_to_loclist({prompt_bufnr}) *telescope.actions.send_selected_to_loclist()*\n    Sends the selected entries to the location list, replacing the previous\n    entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.add_selected_to_loclist({prompt_bufnr}) *telescope.actions.add_selected_to_loclist()*\n    Adds the selected entries to the location list, keeping the previous\n    entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.send_to_loclist({prompt_bufnr})  *telescope.actions.send_to_loclist()*\n    Sends all entries to the location list, replacing the previous entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.add_to_loclist({prompt_bufnr})    *telescope.actions.add_to_loclist()*\n    Adds all entries to the location list, keeping the previous entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.smart_send_to_qflist({prompt_bufnr}) *telescope.actions.smart_send_to_qflist()*\n    Sends the selected entries to the quickfix list, replacing the previous\n    entries. If no entry was selected, sends all entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.smart_add_to_qflist({prompt_bufnr}) *telescope.actions.smart_add_to_qflist()*\n    Adds the selected entries to the quickfix list, keeping the previous\n    entries. If no entry was selected, adds all entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.smart_send_to_loclist({prompt_bufnr}) *telescope.actions.smart_send_to_loclist()*\n    Sends the selected entries to the location list, replacing the previous\n    entries. If no entry was selected, sends all entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.smart_add_to_loclist({prompt_bufnr}) *telescope.actions.smart_add_to_loclist()*\n    Adds the selected entries to the location list, keeping the previous\n    entries. If no entry was selected, adds all entries.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.complete_tag({prompt_bufnr})        *telescope.actions.complete_tag()*\n    Open completion menu containing the tags which can be used to filter the\n    results in a faster way\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.cycle_history_next({prompt_bufnr}) *telescope.actions.cycle_history_next()*\n    Cycle to the next search prompt in the history\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.cycle_history_prev({prompt_bufnr}) *telescope.actions.cycle_history_prev()*\n    Cycle to the previous search prompt in the history\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.open_qflist({prompt_bufnr})          *telescope.actions.open_qflist()*\n    Open the quickfix list. It makes sense to use this in combination with one\n    of the send_to_qflist actions `actions.smart_send_to_qflist +\n    actions.open_qflist`\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.open_loclist({prompt_bufnr})        *telescope.actions.open_loclist()*\n    Open the location list. It makes sense to use this in combination with one\n    of the send_to_loclist actions `actions.smart_send_to_qflist +\n    actions.open_qflist`\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.delete_buffer({prompt_bufnr})      *telescope.actions.delete_buffer()*\n    Delete the selected buffer or all the buffers selected using multi\n    selection.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.cycle_previewers_next({prompt_bufnr}) *telescope.actions.cycle_previewers_next()*\n    Cycle to the next previewer if there is one available.\n    This action is not mapped on default.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.cycle_previewers_prev({prompt_bufnr}) *telescope.actions.cycle_previewers_prev()*\n    Cycle to the previous previewer if there is one available.\n    This action is not mapped on default.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.remove_selected_picker({prompt_bufnr}) *telescope.actions.remove_selected_picker()*\n    Removes the selected picker in |builtin.pickers|.\n    This action is not mapped by default and only intended for\n    |builtin.pickers|.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.which_key({prompt_bufnr})              *telescope.actions.which_key()*\n    Display the keymaps of registered actions similar to which-key.nvim.\n\n    - Notes:\n      - The defaults can be overridden via |action_generate.which_key|.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.to_fuzzy_refine({prompt_bufnr})  *telescope.actions.to_fuzzy_refine()*\n    Move from a none fuzzy search to a fuzzy one\n    This action is meant to be used in live_grep and\n    lsp_dynamic_workspace_symbols\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.delete_mark({prompt_bufnr})          *telescope.actions.delete_mark()*\n    Delete the selected mark or all the marks selected using multi selection.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.insert_original_cword({prompt_bufnr}) *telescope.actions.insert_original_cword()*\n    Insert the word under the cursor of the original (pre-Telescope) window\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.insert_original_cWORD({prompt_bufnr}) *telescope.actions.insert_original_cWORD()*\n    Insert the WORD under the cursor of the original (pre-Telescope) window\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.insert_original_cfile({prompt_bufnr}) *telescope.actions.insert_original_cfile()*\n    Insert the file under the cursor of the original (pre-Telescope) window\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\nactions.insert_original_cline({prompt_bufnr}) *telescope.actions.insert_original_cline()*\n    Insert the line under the cursor of the original (pre-Telescope) window\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\n\n================================================================================\nACTIONS_STATE                                          *telescope.actions.state*\n\nFunctions to be used to determine the current state of telescope.\n\nGenerally used from within other |telescope.actions|\n\naction_state.get_selected_entry() *telescope.actions.state.get_selected_entry()*\n    Get the current entry\n\n\n\naction_state.get_current_line()   *telescope.actions.state.get_current_line()*\n    Gets the current line in the search prompt\n\n\n\naction_state.get_current_picker({prompt_bufnr}) *telescope.actions.state.get_current_picker()*\n    Gets the current picker\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\n\n================================================================================\nACTIONS_SET                                              *telescope.actions.set*\n\nTelescope action sets are used to provide an interface for managing actions\nthat all primarily do the same thing, but with slight tweaks.\n\nFor example, when editing files you may want it in the current split, a\nvertical split, etc. Instead of making users have to overwrite EACH of those\nevery time they want to change this behavior, they can instead replace the\n`set` itself and then it will work great and they're done.\n\naction_set.shift_selection({prompt_bufnr}, {change}) *telescope.actions.set.shift_selection()*\n    Move the current selection of a picker {change} rows. Handles not\n    overflowing / underflowing the list.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n        {change}       (number)  The amount to shift the selection by\n\n\naction_set.select({prompt_bufnr}, {type})     *telescope.actions.set.select()*\n    Select the current entry. This is the action set to overwrite common\n    actions by the user.\n\n    By default maps to editing a file.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n        {type}         (string)  The type of selection to make\n\n\naction_set.edit({prompt_bufnr}, {command})      *telescope.actions.set.edit()*\n    Edit a file based on the current selection.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n        {command}      (string)  The command to use to open the file.\n\n\naction_set.scroll_previewer({prompt_bufnr}, {direction}) *telescope.actions.set.scroll_previewer()*\n    Scrolls the previewer up or down. Defaults to a half page scroll, but can\n    be overridden using the `scroll_speed` option in `layout_config`. See\n    |telescope.layout| for more details.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n        {direction}    (number)  The direction of the scrolling\n\n\naction_set.scroll_horizontal_previewer({prompt_bufnr}, {direction}) *telescope.actions.set.scroll_horizontal_previewer()*\n    Scrolls the previewer to the left or right. Defaults to a half page scroll,\n    but can be overridden using the `scroll_speed` option in `layout_config`.\n    See |telescope.layout| for more details.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n        {direction}    (number)  The direction of the scrolling\n\n\naction_set.scroll_results({prompt_bufnr}, {direction}) *telescope.actions.set.scroll_results()*\n    Scrolls the results up or down. Defaults to a half page scroll, but can be\n    overridden using the `scroll_speed` option in `layout_config`. See\n    |telescope.layout| for more details.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n        {direction}    (number)  The direction of the scrolling\n\n\naction_set.scroll_horizontal_results({prompt_bufnr}, {direction}) *telescope.actions.set.scroll_horizontal_results()*\n    Scrolls the results to the left or right. Defaults to a half page scroll,\n    but can be overridden using the `scroll_speed` option in `layout_config`.\n    See |telescope.layout| for more details.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n        {direction}    (number)  The direction of the scrolling\n\n\n\n================================================================================\nACTIONS_LAYOUT                                        *telescope.actions.layout*\n\nThe layout actions are actions to be used to change the layout of a picker.\n\naction_layout.toggle_preview({prompt_bufnr}) *telescope.actions.layout.toggle_preview()*\n    Toggle preview window.\n    - Note: preview window can be toggled even if preview is set to false.\n\n    This action is not mapped by default.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\naction_layout.toggle_prompt_position({prompt_bufnr}) *telescope.actions.layout.toggle_prompt_position()*\n    Toggles the `prompt_position` option between \"top\" and \"bottom\". Checks if\n    `prompt_position` is an option for the current layout.\n\n    This action is not mapped by default.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\naction_layout.toggle_mirror({prompt_bufnr}) *telescope.actions.layout.toggle_mirror()*\n    Toggles the `mirror` option between `true` and `false`. Checks if `mirror`\n    is an option for the current layout.\n\n    This action is not mapped by default.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\naction_layout.cycle_layout_next({prompt_bufnr}) *telescope.actions.layout.cycle_layout_next()*\n    Cycles to the next layout in `cycle_layout_list`.\n\n    This action is not mapped by default.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\naction_layout.cycle_layout_prev({prompt_bufnr}) *telescope.actions.layout.cycle_layout_prev()*\n    Cycles to the previous layout in `cycle_layout_list`.\n\n    This action is not mapped by default.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\n\n================================================================================\nACTIONS_UTILS                                          *telescope.actions.utils*\n\nUtilities to wrap functions around picker selections and entries.\n\nGenerally used from within other |telescope.actions|\n\nutils.map_entries({prompt_bufnr}, {f}) *telescope.actions.utils.map_entries()*\n    Apply `f` to the entries of the current picker.\n    - Notes:\n      - Mapped entries include all currently filtered results, not just the\n        visible ones.\n      - Indices are 1-indexed, whereas rows are 0-indexed.\n    - Warning: `map_entries` has no return value.\n      - The below example showcases how to collect results\n\n    Usage:\n    >\n      local action_state = require \"telescope.actions.state\"\n      local action_utils = require \"telescope.actions.utils\"\n      function entry_value_by_row()\n        local prompt_bufnr = vim.api.nvim_get_current_buf()\n        local current_picker = action_state.get_current_picker(prompt_bufnr)\n        local results = {}\n        action_utils.map_entries(prompt_bufnr, function(entry, index, row)\n          results[row] = entry.value\n        end)\n        return results\n      end\n<\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)    The prompt bufnr\n        {f}            (function)  Function to map onto entries of picker that\n                                   takes (entry, index, row) as viable\n                                   arguments\n\n\nutils.map_selections({prompt_bufnr}, {f}) *telescope.actions.utils.map_selections()*\n    Apply `f` to the multi selections of the current picker and return a table\n    of mapped selections.\n    - Notes:\n      - Mapped selections may include results not visible in the results pop\n        up.\n      - Selected entries are returned in order of their selection.\n    - Warning: `map_selections` has no return value.\n      - The below example showcases how to collect results\n\n    Usage:\n    >\n      local action_state = require \"telescope.actions.state\"\n      local action_utils = require \"telescope.actions.utils\"\n      function selection_by_index()\n        local prompt_bufnr = vim.api.nvim_get_current_buf()\n        local current_picker = action_state.get_current_picker(prompt_bufnr)\n        local results = {}\n        action_utils.map_selections(prompt_bufnr, function(entry, index)\n          results[index] = entry.value\n        end)\n        return results\n      end\n<\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)    The prompt bufnr\n        {f}            (function)  Function to map onto selection of picker\n                                   that takes (selection) as a viable argument\n\n\nutils.get_registered_mappings({prompt_bufnr}) *telescope.actions.utils.get_registered_mappings()*\n    Utility to collect mappings of prompt buffer in array of `{mode, keybind,\n    name}`.\n\n\n    Parameters: ~\n        {prompt_bufnr} (number)  The prompt bufnr\n\n\n\n================================================================================\nACTIONS_GENERATE                                    *telescope.actions.generate*\n\nModule for convenience to override defaults of corresponding\n|telescope.actions| at |telescope.setup()|.\n\nGeneral usage:\n>\n  require(\"telescope\").setup {\n    defaults = {\n      mappings = {\n        n = {\n          [\"?\"] = action_generate.which_key {\n            name_width = 20, -- typically leads to smaller floats\n            max_height = 0.5, -- increase potential maximum height\n            separator = \" > \", -- change sep between mode, keybind, and name\n            close_with_action = false, -- do not close float on action\n          },\n        },\n      },\n    },\n  }\n<\n\naction_generate.which_key({opts})     *telescope.actions.generate.which_key()*\n    Display the keymaps of registered actions similar to which-key.nvim.\n\n    - Floating window:\n      - Appears on the opposite side of the prompt.\n      - Resolves to minimum required number of lines to show hints with `opts`\n        or truncates entries at `max_height`.\n      - Closes automatically on action call and can be disabled with by setting\n        `close_with_action` to false.\n\n\n    Parameters: ~\n        {opts} (table)  options to pass to toggling registered actions\n\n    Fields: ~\n        {max_height}             (number)   % of max. height or no. of rows\n                                            for hints (default: 0.4), see\n                                            |resolver.resolve_height()|\n        {only_show_current_mode} (boolean)  only show keymaps for the current\n                                            mode (default: true)\n        {mode_width}             (number)   fixed width of mode to be shown\n                                            (default: 1)\n        {keybind_width}          (number)   fixed width of keybind to be shown\n                                            (default: 7)\n        {name_width}             (number)   fixed width of action name to be\n                                            shown (default: 30)\n        {column_padding}         (string)   string to split; can be used for\n                                            vertical separator (default: \" \")\n        {mode_hl}                (string)   hl group of mode (default:\n                                            TelescopeResultsConstant)\n        {keybind_hl}             (string)   hl group of keybind (default:\n                                            TelescopeResultsVariable)\n        {name_hl}                (string)   hl group of action name (default:\n                                            TelescopeResultsFunction)\n        {column_indent}          (number)   number of left-most spaces before\n                                            keybinds are shown (default: 4)\n        {line_padding}           (number)   row padding in top and bottom of\n                                            float (default: 1)\n        {separator}              (string)   separator string between mode, key\n                                            bindings, and action (default: \"\n                                            -> \")\n        {close_with_action}      (boolean)  registered action will close\n                                            keymap float (default: true)\n        {normal_hl}              (string)   winhl of \"Normal\" for keymap hints\n                                            floating window (default:\n                                            \"TelescopePrompt\")\n        {border_hl}              (string)   winhl of \"Normal\" for keymap\n                                            borders (default:\n                                            \"TelescopePromptBorder\")\n        {winblend}               (number)   pseudo-transparency of keymap\n                                            hints floating window\n        {zindex}                 (number)   z-index of keymap hints floating\n                                            window (default: 100)\n\n\n\n================================================================================\nPREVIEWERS                                                *telescope.previewers*\n\nProvides a Previewer table that has to be implemented by each previewer. To\nachieve this, this module also provides two wrappers that abstract most of the\nwork and make it really easy to create new previewers.\n  - `previewers.new_termopen_previewer`\n  - `previewers.new_buffer_previewer`\n\nFurthermore, there are a collection of previewers already defined which can be\nused for every picker, as long as the entries of the picker provide the\nnecessary fields. The more important ones are\n  - `previewers.cat`\n  - `previewers.vimgrep`\n  - `previewers.qflist`\n  - `previewers.vim_buffer_cat`\n  - `previewers.vim_buffer_vimgrep`\n  - `previewers.vim_buffer_qflist`\n\nPreviewers can be disabled for any builtin or custom picker by doing :Telescope\nfind_files previewer=false\n\npreviewers.Previewer()                      *telescope.previewers.Previewer()*\n    This is the base table all previewers have to implement. It's possible to\n    write a wrapper for this because most previewers need to have the same keys\n    set. Examples of wrappers are:\n      - `new_buffer_previewer`\n      - `new_termopen_previewer`\n\n    To create a new table do following:\n      - `local new_previewer = Previewer:new(opts)`\n\n    What `:new` expects is listed below\n\n    The interface provides the following set of functions. All of them, besides\n    `new`, will be handled by telescope pickers.\n    - `:new(opts)`\n    - `:preview(entry, status)`\n    - `:teardown()`\n    - `:send_input(input)`\n    - `:scroll_fn(direction)`\n    - `:scroll_horizontal_fn(direction)`\n\n    `Previewer:new()` expects a table as input with following keys:\n      - `setup` function(self): Will be called the first time preview will be \n        called.\n      - `teardown` function(self): Will be called on clean up.\n      - `preview_fn` function(self, entry, status): Will be called each time a\n        new entry was selected.\n      - `title` function(self): Will return the static title of the previewer.\n      - `dynamic_title` function(self, entry): Will return the dynamic title of\n        the previewer. Will only be called when config value\n        dynamic_preview_title is true.\n      - `send_input` function(self, input): This is meant for \n        `termopen_previewer` and it can be used to send input to the terminal \n        application, like less.\n      - `scroll_fn` function(self, direction): Used to make scrolling work.\n      - `scroll_horizontal_fn` function(self, direction): Used to make \n        horizontal scrolling work.\n\n\n\npreviewers.new()                                  *telescope.previewers.new()*\n    A shorthand for creating a new Previewer. The provided table will be\n    forwarded to `Previewer:new(...)`\n\n\n\npreviewers.new_termopen_previewer() *telescope.previewers.new_termopen_previewer()*\n    Is a wrapper around Previewer and helps with creating a new\n    `termopen_previewer`.\n\n    It requires you to specify one table entry `get_command(entry, status)`.\n    This `get_command` function has to return the terminal command that will be\n    executed for each entry. Example:\n    >\n      get_command = function(entry, status)\n        return { 'bat', entry.path }\n      end\n<\n\n    Additionally you can define:\n    - `title` a static title for example \"File Preview\"\n    - `dyn_title(self, entry)` a dynamic title function which gets called when\n      config value `dynamic_preview_title = true`\n    - `env` table: define environment variables to forward to the terminal \n      process. Example:\n      - `{ ['PAGER'] = '', ['MANWIDTH'] = 50 }`\n\n    It's an easy way to get your first previewer going and it integrates well\n    with `bat` and `less`. Providing out of the box scrolling if the command\n    uses less.\n\n    Furthermore, if `env` is not set, it will forward all `config.set_env`\n    environment variables to that terminal process.\n\n\n\npreviewers.cat()                                  *telescope.previewers.cat()*\n    Provides a `termopen_previewer` which has the ability to display files. It\n    will always show the top of the file and has support for `bat`(prioritized)\n    and `cat`. Each entry has to provide either the field `path` or `filename`\n    in order to make this previewer work.\n\n    The preferred way of using this previewer is like this\n    `require('telescope.config').values.cat_previewer` This will respect user\n    configuration and will use `buffer_previewers` in case it's configured that\n    way.\n\n\n\npreviewers.vimgrep()                          *telescope.previewers.vimgrep()*\n    Provides a `termopen_previewer` which has the ability to display files at\n    the provided line. It has support for `bat`(prioritized) and `cat`. Each\n    entry has to provide either the field `path` or `filename` and a `lnum`\n    field in order to make this previewer work.\n\n    The preferred way of using this previewer is like this\n    `require('telescope.config').values.grep_previewer` This will respect user\n    configuration and will use `buffer_previewers` in case it's configured that\n    way.\n\n\n\npreviewers.qflist()                            *telescope.previewers.qflist()*\n    Provides a `termopen_previewer` which has the ability to display files at\n    the provided line or range. It has support for `bat`(prioritized) and\n    `cat`. Each entry has to provide either the field `path` or `filename`,\n    `lnum` and a `start` and `finish` range in order to make this previewer\n    work.\n\n    The preferred way of using this previewer is like this\n    `require('telescope.config').values.qflist_previewer` This will respect\n    user configuration and will use buffer previewers in case it's configured\n    that way.\n\n\n\npreviewers.new_buffer_previewer() *telescope.previewers.new_buffer_previewer()*\n    An interface to instantiate a new `buffer_previewer`. That means that the\n    content actually lives inside a vim buffer which enables us more control\n    over the actual content. For example, we can use `vim.fn.search` to jump to\n    a specific line or reuse buffers/already opened files more easily. This\n    interface is more complex than `termopen_previewer` but offers more\n    flexibility over your content. It was designed to display files but was\n    extended to also display the output of terminal commands.\n\n    In the following options, state table and general tips are mentioned to\n    make your experience with this previewer more seamless.\n\n\n    options:\n      - `define_preview = function(self, entry, status)` (required) Is called\n        for each selected entry, after each selection_move (up or down) and is\n        meant to handle things like reading file, jump to line or attach a\n        highlighter.\n      - `setup = function(self)` (optional) Is called once at the beginning,\n        before the preview for the first entry is displayed. You can return a\n        table of vars that will be available in `self.state` in each\n        `define_preview` call.\n      - `teardown = function(self)` (optional) Will be called at the end, when\n        the picker is being closed and is meant to clean up everything that was\n        allocated by the previewer. The `buffer_previewer` will automatically\n        clean up all created buffers. So you only need to handle things that\n        were introduced by you.\n      - `keep_last_buf = true` (optional) Will not delete the last selected\n        buffer. This would allow you to reuse that buffer in the select action.\n        For example, that buffer can be opened in a new split, rather than\n        recreating that buffer in an action. To access the last buffer number: \n        `require('telescope.state').get_global_key(\"last_preview_bufnr\")`\n      - `get_buffer_by_name = function(self, entry)` Allows you to set a unique\n        name for each buffer. This is used for caching purposes.\n        `self.state.bufname` will be nil if the entry was never loaded or the\n        unique name when it was loaded once. For example, useful if you have\n        one file but multiple entries. This happens for grep and lsp builtins.\n        So to make the cache work only load content if `self.state.bufname ~=\n        entry.your_unique_key`\n      - `title` a static title for example \"File Preview\"\n      - `dyn_title(self, entry)` a dynamic title function which gets called \n        when config value `dynamic_preview_title = true`\n\n    `self.state` table:\n      - `self.state.bufnr` Is the current buffer number, in which you have to\n        write the loaded content. Don't create a buffer yourself, otherwise\n        it's not managed by the buffer_previewer interface and you will\n        probably be better off writing your own interface.\n      - self.state.winid Current window id. Useful if you want to set the\n        cursor to a provided line number.\n      - self.state.bufname Will return the current buffer name, if\n        `get_buffer_by_name` is defined. nil will be returned if the entry was\n        never loaded or when `get_buffer_by_name` is not set.\n\n    Tips:\n      - If you want to display content of a terminal job, use: \n        `require('telescope.previewers.utils').job_maker(cmd, bufnr, opts)`\n          - `cmd` table: for example { 'git', 'diff', entry.value }\n          - `bufnr` number: in which the content will be written\n          - `opts` table: with following keys\n            - `bufname` string: used for cache\n            - `value` string: used for cache\n            - `mode` string: either \"insert\" or \"append\". \"insert\" is default\n            - `env` table: define environment variables. Example:\n              - `{ ['PAGER'] = '', ['MANWIDTH'] = 50 }`\n            - `cwd` string: define current working directory for job\n            - `callback` function(bufnr, content): will be called when job is\n              done. Content will be nil if job is already loaded. So you can do\n              highlighting only the first time the previewer is created for\n              that entry. Use the returned `bufnr` and not `self.state.bufnr`\n              in callback, because state can already be changed at this point\n              in time.\n      - If you want to attach a highlighter use:\n        - `require('telescope.previewers.utils').highlighter(bufnr, ft)`\n          - This will prioritize tree sitter highlighting if available for \n            environment and language.\n        - `require('telescope.previewers.utils').regex_highlighter(bufnr, ft)`\n        - `require('telescope.previewers.utils').ts_highlighter(bufnr, ft)`\n      - If you want to use `vim.fn.search` or similar you need to run it in \n        that specific buffer context. Do\n    >\n          vim.api.nvim_buf_call(bufnr, function()\n            -- for example `search` and `matchadd`\n          end)\n<\n    to achieve that.\n      - If you want to read a file into the buffer it's best to use \n        `buffer_previewer_maker`. But access this function with \n        `require('telescope.config').values.buffer_previewer_maker` because it\n        can be redefined by users.\n\n\n\npreviewers.buffer_previewer_maker({filepath}, {bufnr}, {opts}) *telescope.previewers.buffer_previewer_maker()*\n    A universal way of reading a file into a buffer previewer. It handles async\n    reading, cache, highlighting, displaying directories and provides a\n    callback which can be used, to jump to a line in the buffer.\n\n\n    Parameters: ~\n        {filepath} (string)  String to the filepath, will be expanded\n        {bufnr}    (number)  Where the content will be written\n        {opts}     (table)   keys: `use_ft_detect`, `bufname` and `callback`\n\n\npreviewers.vim_buffer_cat()            *telescope.previewers.vim_buffer_cat()*\n    A previewer that is used to display a file. It uses the `buffer_previewer`\n    interface and won't jump to the line. To integrate this one into your own\n    picker make sure that the field `path` or `filename` is set for each entry.\n    The preferred way of using this previewer is like this\n    `require('telescope.config').values.file_previewer` This will respect user\n    configuration and will use `termopen_previewer` in case it's configured\n    that way.\n\n\n\npreviewers.vim_buffer_vimgrep()    *telescope.previewers.vim_buffer_vimgrep()*\n    A previewer that is used to display a file and jump to the provided line.\n    It uses the `buffer_previewer` interface. To integrate this one into your\n    own picker make sure that the field `path` or `filename` and `lnum` is set\n    in each entry. If the latter is not present, it will default to the first\n    line. Additionally, `lnend`, `col` and `colend` can be set to highlight a\n    text range instead of a single line. All line/column values are 1-indexed.\n    The preferred way of using this previewer is like this\n    `require('telescope.config').values.grep_previewer` This will respect user\n    configuration and will use `termopen_previewer` in case it's configured\n    that way.\n\n\n\npreviewers.vim_buffer_qflist()      *telescope.previewers.vim_buffer_qflist()*\n    Is the same as `vim_buffer_vimgrep` and only exists for consistency with\n    `term_previewers`.\n\n    The preferred way of using this previewer is like this\n    `require('telescope.config').values.qflist_previewer` This will respect\n    user configuration and will use `termopen_previewer` in case it's\n    configured that way.\n\n\n\npreviewers.git_branch_log()            *telescope.previewers.git_branch_log()*\n    A previewer that shows a log of a branch as graph\n\n\n\npreviewers.git_stash_diff()            *telescope.previewers.git_stash_diff()*\n    A previewer that shows a diff of a stash\n\n\n\npreviewers.git_commit_diff_to_parent() *telescope.previewers.git_commit_diff_to_parent()*\n    A previewer that shows a diff of a commit to a parent commit.\n    The run command is `git --no-pager diff SHA^! -- $CURRENT_FILE`\n\n    The current file part is optional. So is only uses it with bcommits.\n\n\n\npreviewers.git_commit_diff_to_head() *telescope.previewers.git_commit_diff_to_head()*\n    A previewer that shows a diff of a commit to head.\n    The run command is `git --no-pager diff --cached $SHA -- $CURRENT_FILE`\n\n    The current file part is optional. So is only uses it with bcommits.\n\n\n\npreviewers.git_commit_diff_as_was() *telescope.previewers.git_commit_diff_as_was()*\n    A previewer that shows a diff of a commit as it was.\n    The run command is `git --no-pager show $SHA:$CURRENT_FILE` or `git\n    --no-pager show $SHA`\n\n\n\npreviewers.git_commit_message()    *telescope.previewers.git_commit_message()*\n    A previewer that shows the commit message of a diff.\n    The run command is `git --no-pager log -n 1 $SHA`\n\n\n\npreviewers.git_file_diff()              *telescope.previewers.git_file_diff()*\n    A previewer that shows the current diff of a file. Used in git_status.\n    The run command is `git --no-pager diff $FILE`\n\n\n\npreviewers.display_content()          *telescope.previewers.display_content()*\n    A deprecated way of displaying content more easily. Was written at a time,\n    where the buffer_previewer interface wasn't present. Nowadays it's easier\n    to just use this. We will keep it around for backwards compatibility\n    because some extensions use it. It doesn't use cache or some other clever\n    tricks.\n\n\n\n\n================================================================================\nHISTORY                                              *telescope.actions.history*\n\nA base implementation of a prompt history that provides a simple history and\ncan be replaced with a custom implementation.\n\nFor example: We provide an extension for a smart history that uses sql.nvim to\nmap histories to metadata, like the calling picker or cwd.\n\nSo you have a history for:\n- find_files project_1\n- grep_string project_1\n- live_grep project_1\n- find_files project_2\n- grep_string project_2\n- live_grep project_2\n- etc\n\nSee https://github.com/nvim-telescope/telescope-smart-history.nvim\n\nhistories.History()                      *telescope.actions.history.History()*\n    Manages prompt history\n\n\n    Fields: ~\n        {enabled}    (boolean)  Will indicate if History is enabled or\n                                disabled\n        {path}       (string)   Will point to the location of the history file\n        {limit}      (string)   Will have the limit of the history. Can be\n                                nil, if limit is disabled.\n        {content}    (table)    History table. Needs to be filled by your own\n                                History implementation\n        {index}      (number)   Used to keep track of the next or previous\n                                index. Default is #content + 1\n        {cycle_wrap} (boolean)  Controls if history will wrap on reaching\n                                beginning or end\n\n\nhistories.History:new({opts})        *telescope.actions.history.History:new()*\n    Create a new History\n\n\n    Parameters: ~\n        {opts} (table)  Defines the behavior of History\n\n    Fields: ~\n        {init}    (function)  Will be called after handling configuration\n                              (required)\n        {append}  (function)  How to append a new prompt item (required)\n        {reset}   (function)  What happens on reset. Will be called when\n                              telescope closes (required)\n        {pre_get} (function)  Will be called before a next or previous item\n                              will be returned (optional)\n\n\nhistories.new()                              *telescope.actions.history.new()*\n    Shorthand to create a new history\n\n\n\nhistories.History:reset()          *telescope.actions.history.History:reset()*\n    Will reset the history index to the default initial state. Will happen\n    after the picker closed\n\n\n\nhistories.History:append({line}, {picker}, {no_reset}) *telescope.actions.history.History:append()*\n    Append a new line to the history\n\n\n    Parameters: ~\n        {line}     (string)   current line that will be appended\n        {picker}   (table)    the current picker object\n        {no_reset} (boolean)  On default it will reset the state at the end.\n                              If you don't want to do this set to true\n\n\nhistories.History:get_next({line}, {picker}) *telescope.actions.history.History:get_next()*\n    Will return the next history item. Can be nil if there are no next items\n\n\n    Parameters: ~\n        {line}   (string)  the current line\n        {picker} (table)   the current picker object\n\n    Return: ~\n        string: the next history item\n\n\nhistories.History:get_prev({line}, {picker}) *telescope.actions.history.History:get_prev()*\n    Will return the previous history item. Can be nil if there are no previous\n    items\n\n\n    Parameters: ~\n        {line}   (string)  the current line\n        {picker} (table)   the current picker object\n\n    Return: ~\n        string: the previous history item\n\n\nhistories.get_simple_history() *telescope.actions.history.get_simple_history()*\n    A simple implementation of history.\n\n    It will keep one unified history across all pickers.\n\n\n\n\n vim:tw=78:ts=8:ft=help:norl:\n"
  },
  {
    "path": "doc/telescope_changelog.txt",
    "content": "================================================================================\n                                                         *telescope.changelog*\n\n# Changelog\n\n                                                     *telescope.changelog-922*\n\nDate: May 17, 2021\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/922\n\nThis is one of our largest breaking changes thus far, so I (TJ) am adding some\ninformation here so that you can more easily update (without having to track\ndown the commit, etc.).\n\nThe goal of these breaking changes is to greatly simplify the way\nconfiguration for layouts happen. This should make it much easier to configure\neach picker, layout_strategy, and more. Please report any bugs or behavior\nthat is broken / confusing upstream and we can try and make the configuration\nbetter.\n\n|telescope.setup()| has changed `layout_defaults` -> `layout_config`.\n    This makes it so that the setup and the pickers share the same key,\n    otherwise it is too confusing which key is for which.\n\n\n`picker:find()` now has different values available for configuring the UI.\n    All configuration for the layout must be passed in the key:\n        `layout_config`.\n\n    Previously, these keys were passed via `picker:find(opts)`, but should be\n    passed via `opts.layout_config` now.\n        - {height}\n        - {width}\n        - {prompt_position}\n        - {preview_cutoff}\n\n    These keys are removed:\n        - {results_height}: This key is no longer valid. Instead, use `height`\n          and the corresponding `preview_*` options for the layout strategy to\n          get the correct results height. This simplifies the configuration\n          for many of the existing strategies.\n\n        - {results_width}: This key actually never did anything. It was\n          leftover from some hacking that I had attempted before. Instead you\n          should be using something like the `preview_width` configuration\n          option for |layout_strategies.horizontal()|\n\n    You should get error messages when you try and use any of the above keys now.\n\n                                                     *telescope.changelog-839*\n\nDate: July 7, 2021\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/839\n\nSmall breaking change regarding `shorten_path` and `hide_filename`.\nThis allows to configure path displays on a global level and offers a way for\nextension developers to make use of the same configuration, offering a better\noverall experience.\n\nThe new way to configure to configure path displays is with:\n    `path_display`: It is a table and accepts multiple values:\n        - \"hidden\"    hide file names\n        - \"tail\"      only display the file name, and not the path\n        - \"absolute\"  display absolute paths\n        - \"shorten\"   only display the first character of each directory in\n                      the path\n    see |telescope.defaults.path_display|\n\nExample would be for a global configuration:\n  require(\"telescope\").setup{\n    defaults = {\n      path_display = {\n        \"shorten\",\n        \"absolute\",\n      },\n    }\n  }\n\nYou can also still pass this to a single builtin call:\n    require(\"telescope.builtin\").find_files {\n      path_display = { \"shorten\" }\n    }\n\nFor extension developers there is a new util function that can be used to\ndisplay a path:\n    local filename = utils.transform_path(opts, entry.filename)\n\n                                                     *telescope.changelog-473*\n\nDate: July 14, 2021\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/473\n\nDeprecation of telescope.path\n\nExtension developers need to move to plenary.path, because we will remove the\ntelescope.path  module soon.\n\nGuide to switch over to plenary.path\n    - separator\n        before: require(\"telescope.path\").separator\n        now:    require(\"plenary.path\").path.sep\n    - home\n        before: require(\"telescope.path\").home\n        now:    require(\"plenary.path\").path.home\n    - make_relative\n        before: require(\"telescope.path\").make_relative(filepath, cwd)\n        now:    require(\"plenary.path\"):new(filepath):make_relative(cwd)\n    - shorten\n        before: require(\"telescope.path\").shorten(filepath)\n        now:    require(\"plenary.path\"):new(filepath):shorten()\n                with optional len, default is 1\n    - normalize\n        before: require(\"telescope.path\").normalize(filepath, cwd)\n        now:    require(\"plenary.path\"):new(filepath):normalize(cwd)\n    - read_file\n        before: require(\"telescope.path\").read_file(filepath)\n        now:    require(\"plenary.path\"):new(filepath):read()\n    - read_file_async\n        before: require(\"telescope.path\").read_file_async(filepath, callback)\n        now:    require(\"plenary.path\"):new(filepath):read(callback)\n\n                                                    *telescope.changelog-1406*\n\nDate: November 4, 2021\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/1406\n\nTelescope requires Neovim release 0.5.1 or a recent nightly\n\nDue to making use of newly implemented extmark features, Telescope now\nrequires users to be on Neovim 0.5.1 (the most recent stable version) or on\nthe LATEST version of Neovim nightly.\n\n\n                                                    *telescope.changelog-1549*\n\nDate: December 10, 2021\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/1549\n\nTelescope requires now Neovim release 0.6.0 or a more recent nightly.\nIf you are running neovim nightly, you need to make sure that you are on the\nLATEST version. Every other commit is not supported. So make sure you build\nthe newest nightly before reporting issues.\n\n\n                                                    *telescope.changelog-1553*\n\nDate: December 10, 2021\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/1553\n\nMove from `vim.lsp.diagnostic` to `vim.diagnostic`.\n\nBecause the newly added `vim.diagnostic` has no longer anything to do with lsp\nwe also decided to rename our diagnostic functions:\n    Telescope lsp_document_diagnostics -> Telescope diagnostics bufnr=0\n    Telescope lsp_workspace_diagnostics -> Telescope diagnostics\nBecause of that the `lsp_*_diagnostics` inside Telescope will be deprecated\nand removed soon. The new `diagnostics` works almost identical to the previous\nfunctions. Note that there is no longer a workspace diagnostics. You can only\nget all diagnostics for all open buffers.\n\n\n                                                    *telescope.changelog-1851*\n\nDate: April 22, 2022\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/1851\n\nTelescope requires now Neovim release 0.7.0 or a more recent nightly.\nIf you are running Neovim nightly, you need to make sure that you are on the\nLATEST version. Every other commit is not supported. So make sure you build\nthe newest nightly before reporting issues.\nIn the future, we will adopt a different release strategy. This release\nstrategy follows the approach that the latest telescope.nvim master will only\nwork with latest Neovim nightly and we will provide tags for specific Neovim\nversions. You can read more about this strategy here:\nhttps://github.com/nvim-telescope/telescope.nvim/issues/1772\n\n\n                                                    *telescope.changelog-1866*\n\nDate: April 25, 2022\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/1866\n\nWe decided to remove both `lsp_code_actions` and `lsp_range_code_actions`.\nCurrently, both functions are highly duplicated code from neovim, with fewer\nfeatures, because it's out of date. So rather that we copy over the required\nchanges to fix some bugs or implement client side code actions, we decided to\nremove both of them and suggest you use `vim.lsp.buf.code_action` and\n`vim.lsp.buf.range_code_action`. The transition to it is easy thanks to\n`vim.ui.select` which allows you to override the select UI. We provide a small\nextension for quite some time that make it easy to use telescope for\n`vim.ui.select`. You can found the code here\nhttps://github.com/nvim-telescope/telescope-ui-select.nvim. It offers the same\ndisplaying as the current version of `lsp_code_actions`. An alternative is\nhttps://github.com/stevearc/dressing.nvim which has support for multiple\ndifferent backends including telescope.\n\n\n                                                    *telescope.changelog-1945*\n\nDate: July 01, 2022\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/1945\n\nThis is our dev branch which contains a lot of PRs, a lot of fixes,\nrefactoring and general quality of life improvements. It also contains new\nfeatures, the most noteworthy are the following (mostly developed by the\ncommunity):\n- feat: none strategy & control attachment (#1867)\n- feat: force buffer delete for terminal and improvements for\n  Picker:delete_selection (#1943)\n- feat(tags): process tagfiles on the fly (#1989)\n- feat(builtin.lsp): implement builtin handlers for\n  lsp.(incoming|outgoing)_calls (#1484)\n- feat: clear previewer if no item is selected (#2004)\n- feat: add min max boundary to width, height resolver (#2002)\n- feat: Add entry_index for entry_makers (#1850)\n- feat: refine with new_table (#1115)\n\nThe last one is one of the most exciting new features, because it allows you\nto go from live_grep into a fuzzy environment with the following mapping\n`<C-Space>`. It's a general interface we now implemented for `live_grep` and\n`lsp_dynamic_workspace_symbols` but it could also be easily implemented for\nother builtins, by us or the user. It's now available for extension developers.\nWe will add documentation in the next couple of days and improve it by adding\nmore options to configure it after the initial 0.1 release.\n\nBut as with all longer development phases, there are also some breaking\nchanges. This is the main reason we moved development to a separate branch, for\nthe past two months. We can't promise that there won't be more breaking\nchanges, but it is the plan that this is the last set of breaking changes prior\nto the 0.1 release on July, 12. We are deeply sorry for the inconvenience. The\nfollowing breaking changes are included in this PR:\n- break(git_files): change `show_untracked` default to false. Can be changed\n  back with `:Telescope git_files show_untracked=true`\n- break: deprecate `utils.get_default` `utils.if_nil`, will be removed prior\n  to 0.1, so if you use it in your config, please move to `vim.F.if_nil`\n- break: drops `ignore_filename` option, use `path_display= { \"hidden\" }`\n  instead\n- break: prefix internal interfaces with __ so\n  `require(\"telescope.builtin.files\").find_files` will show a notify error but\n  still works for now. The error will be removed prior to 0.1! You should use\n  `require(\"telescope.builtin\").find_files` because we wrap all the functions\n  that are exposed in this module.\n- break: defaults.preview.treesitter rework that allows you to either enable a\n  list of languages, or enable all and disable some. Please read\n  `:help telescope.defaults.preview` for more information.\n  Something like this is now possible:\n    >\n    treesitter = {\n      enable = false,\n      -- or\n      enable = { \"c\" },\n      -- disable can be set if enable isn't set\n      disable = { \"perl\", \"javascript\" },\n    },\n<\n\n\n                                                    *telescope.changelog-2499*\n\nDate: May 24, 2023\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/2499\n\nWe decided to bump the minimum Neovim version to 0.9.0, in order to remove a\ncouple of no longer required workarounds. That includes using upstream\ntreesitter implementation in favor of nvim-treesitter.\nIf you still have a requirement for Neovim 0.7 or 0.8, we also have a stable\nbranch 0.1.x (or version, currently 0.1.1) which will not receive this version\nbump and will continue to offer support for older Neovim versions.\n\n\n                                                    *telescope.changelog-2529*\n\nDate: June 09, 2023\nPR: https://github.com/nvim-telescope/telescope.nvim/pull/2529\n\nWe finally removed usage of `plenary.filetype` to determine filetypes for\npreviewing and replaced it with `vim.filetype`. So if you have highlighting\nissues you no longer have to configure `plenary`, but rather read\n|vim.filetype|.\n\n\n vim:tw=78:ts=8:ft=help:norl:\n"
  },
  {
    "path": "ftplugin/TelescopePrompt.lua",
    "content": "-- Don't wrap textwidth things\nvim.opt_local.formatoptions:remove \"t\"\nvim.opt_local.formatoptions:remove \"c\"\n\n-- Don't include `showbreak` when calculating strdisplaywidth\nvim.opt_local.wrap = false\n\n-- There's also no reason to enable textwidth here anyway\nvim.opt_local.textwidth = 0\nvim.opt_local.scrollbind = false\n\nvim.opt_local.signcolumn = \"no\"\n"
  },
  {
    "path": "ftplugin/TelescopeResults.lua",
    "content": "-- Don't have scrolloff, it makes things weird.\nvim.opt_local.scrolloff = 0\nvim.opt_local.scrollbind = false\n\nvim.opt_local.signcolumn = \"no\"\n"
  },
  {
    "path": "lua/telescope/_.lua",
    "content": "local uv = vim.uv\n\nlocal Object = require \"plenary.class\"\nlocal log = require \"plenary.log\"\n\nlocal async = require \"plenary.async\"\nlocal channel = require(\"plenary.async\").control.channel\nlocal utils = require \"telescope.utils\"\n\nlocal M = {}\n\nlocal AsyncJob = {}\nAsyncJob.__index = AsyncJob\n\nfunction AsyncJob.new(opts)\n  local self = setmetatable({}, AsyncJob)\n\n  self.command, self.uv_opts = M.convert_opts(opts)\n\n  self.stdin = opts.stdin or M.NullPipe()\n  self.stdout = opts.stdout or M.NullPipe()\n  self.stderr = opts.stderr or M.NullPipe()\n\n  if opts.cwd and opts.cwd ~= \"\" then\n    self.uv_opts.cwd = utils.path_expand(opts.cwd)\n    -- this is a \"illegal\" hack for windows. E.g. If the git command returns `/` rather than `\\` as delimiter,\n    -- vim.fn.expand might just end up returning an empty string. Weird\n    -- Because empty string is not allowed in libuv the job will not spawn. Solution is we just set it to opts.cwd\n    if self.uv_opts.cwd == \"\" then\n      self.uv_opts.cwd = opts.cwd\n    end\n  end\n\n  self.uv_opts.stdio = {\n    self.stdin.handle,\n    self.stdout.handle,\n    self.stderr.handle,\n  }\n\n  return self\nend\n\nfunction AsyncJob:_for_each_pipe(f, ...)\n  for _, pipe in ipairs { self.stdin, self.stdout, self.stderr } do\n    f(pipe, ...)\n  end\nend\n\nfunction AsyncJob:close(force)\n  if force == nil then\n    force = true\n  end\n\n  self:_for_each_pipe(function(p)\n    p:close(force)\n  end)\n\n  uv.process_kill(self.handle, \"sigterm\")\n\n  log.debug \"[async_job] closed\"\nend\n\nM.spawn = function(opts)\n  local self = AsyncJob.new(opts)\n  self.handle, self.pid = uv.spawn(\n    self.command,\n    self.uv_opts,\n    async.void(function()\n      self:close(false)\n      if not self.handle:is_closing() then\n        self.handle:close()\n      end\n    end)\n  )\n\n  if not self.handle then\n    error(debug.traceback(\"Failed to spawn process: \" .. vim.inspect(self)))\n  end\n\n  return self\nend\n\n---@class uv_pipe_t\n--- A pipe handle from libuv\n---@field read_start function: Start reading\n---@field read_stop function: Stop reading\n---@field close function: Close the handle\n---@field is_closing function: Whether handle is currently closing\n---@field is_active function: Whether the handle is currently reading\n\n---@class BasePipe\n---@field super Object: Always available\n---@field handle uv_pipe_t: A pipe handle\n---@field extend function: Extend\nlocal BasePipe = Object:extend()\n\nfunction BasePipe:new()\n  self.eof_tx, self.eof_rx = channel.oneshot()\nend\n\nfunction BasePipe:close(force)\n  if force == nil then\n    force = true\n  end\n\n  assert(self.handle, \"Must have a pipe to close. Otherwise it's weird!\")\n\n  if self.handle:is_closing() then\n    return\n  end\n\n  -- If we're not forcing the stop, allow waiting for eof\n  -- This ensures that we don't end up with weird race conditions\n  if not force then\n    self.eof_rx()\n  end\n\n  self.handle:read_stop()\n  if not self.handle:is_closing() then\n    self.handle:close()\n  end\n\n  self._closed = true\nend\n\n---@class LinesPipe : BasePipe\nlocal LinesPipe = BasePipe:extend()\n\nfunction LinesPipe:new()\n  LinesPipe.super.new(self)\n  self.handle = uv.new_pipe(false)\nend\n\nfunction LinesPipe:read()\n  local read_tx, read_rx = channel.oneshot()\n\n  self.handle:read_start(function(err, data)\n    assert(not err, err)\n    self.handle:read_stop()\n\n    read_tx(data)\n    if data == nil then\n      self.eof_tx()\n    end\n  end)\n\n  return read_rx()\nend\n\nfunction LinesPipe:iter(schedule, opts)\n  schedule = vim.F.if_nil(schedule, true)\n  local split_char = vim.F.if_nil(opts and opts.split_char, \"\\n\")\n\n  local text = nil\n  local index = nil\n\n  local get_next_text = function(previous)\n    index = nil\n\n    local read = self:read()\n    if previous == nil and read == nil then\n      return\n    end\n\n    read = string.gsub(read or \"\", \"\\r\", \"\")\n    return (previous or \"\") .. read\n  end\n\n  local function next_value()\n    if schedule then\n      async.util.scheduler()\n    end\n\n    if text == nil or (text == \"\" and index == nil) then\n      return nil\n    end\n\n    local start = index\n    index = string.find(text, split_char, index, true)\n\n    if index == nil then\n      text = get_next_text(string.sub(text, start or 1))\n      return next_value()\n    end\n\n    index = index + 1\n\n    return string.sub(text, start or 1, index - 2)\n  end\n\n  text = get_next_text()\n\n  return function()\n    return next_value()\n  end\nend\n\n---@class NullPipe : BasePipe\nlocal NullPipe = BasePipe:extend()\n\nfunction NullPipe:new()\n  NullPipe.super.new(self)\n  self.start = function() end\n  self.read_start = function() end\n  self.close = function() end\n\n  -- This always has eof tx done, so can just call it now\n  self.eof_tx()\nend\n\n---@class ChunkPipe : BasePipe\nlocal ChunkPipe = BasePipe:extend()\n\nfunction ChunkPipe:new()\n  ChunkPipe.super.new(self)\n  self.handle = uv.new_pipe(false)\nend\n\nfunction ChunkPipe:read()\n  local read_tx, read_rx = channel.oneshot()\n\n  self.handle:read_start(function(err, data)\n    assert(not err, err)\n    self.handle:read_stop()\n\n    read_tx(data)\n    if data == nil then\n      self.eof_tx()\n    end\n  end)\n\n  return read_rx()\nend\n\nfunction ChunkPipe:iter()\n  return function()\n    if self._closed then\n      return nil\n    end\n\n    return self:read()\n  end\nend\n\n---@class ErrorPipe : BasePipe\nlocal ErrorPipe = BasePipe:extend()\n\nfunction ErrorPipe:new()\n  ErrorPipe.super.new(self)\n  self.handle = uv.new_pipe(false)\nend\n\nfunction ErrorPipe:start()\n  self.handle:read_start(function(err, data)\n    if not err and not data then\n      return\n    end\n\n    self.handle:read_stop()\n    self.handle:close()\n\n    error(string.format(\"Err: %s, Data: '%s'\", err, data))\n  end)\nend\n\nM.NullPipe = NullPipe\nM.LinesPipe = LinesPipe\nM.ChunkPipe = ChunkPipe\nM.ErrorPipe = ErrorPipe\n\nM.convert_opts = function(o)\n  if not o then\n    error(debug.traceback \"Options are required for Job:new\")\n  end\n\n  local command = o.command\n  if not command then\n    if o[1] then\n      command = o[1]\n    else\n      error(debug.traceback \"'command' is required for Job:new\")\n    end\n  elseif o[1] then\n    error(debug.traceback \"Cannot pass both 'command' and array args\")\n  end\n\n  local args = o.args\n  if not args then\n    if #o > 1 then\n      args = { select(2, unpack(o)) }\n    end\n  end\n\n  local ok, is_exe = pcall(vim.fn.executable, command)\n  if not o.skip_validation and ok and 1 ~= is_exe then\n    error(debug.traceback(command .. \": Executable not found\"))\n  end\n\n  local obj = {}\n\n  obj.args = args\n\n  if o.env then\n    if type(o.env) ~= \"table\" then\n      error(debug.traceback \"'env' has to be a table\")\n    end\n\n    local transform = {}\n    for k, v in pairs(o.env) do\n      if type(k) == \"number\" then\n        table.insert(transform, v)\n      elseif type(k) == \"string\" then\n        table.insert(transform, k .. \"=\" .. tostring(v))\n      end\n    end\n    obj.env = transform\n  end\n\n  return command, obj\nend\n\nreturn M\n"
  },
  {
    "path": "lua/telescope/_extensions/init.lua",
    "content": "local extensions = {}\n\nextensions._loaded = {}\nextensions._config = {}\nextensions._health = {}\n\nlocal load_extension = function(name)\n  local ok, ext = pcall(require, \"telescope._extensions.\" .. name)\n  if not ok then\n    error(string.format(\"'%s' extension doesn't exist or isn't installed: %s\", name, ext))\n  end\n  return ext\nend\n\nextensions.manager = setmetatable({}, {\n  __index = function(t, k)\n    local ext = load_extension(k)\n    t[k] = ext.exports or {}\n    if ext.setup then\n      ext.setup(extensions._config[k] or {}, require(\"telescope.config\").values)\n    end\n    extensions._health[k] = ext.health\n\n    return t[k]\n  end,\n})\n\n--- Register an extension module.\n---\n--- Extensions have several important keys.\n---     - setup:\n---         function(ext_config, config) -> nil\n---\n---         Called when first loading the extension.\n---         The first parameter is the config passed by the user\n---             in telescope setup. The second parameter is the resulting\n---             config.values after applying the users setup defaults.\n---\n---         It is acceptable for a plugin to override values in config,\n---         as some plugins will be installed simply to manage some setup,\n---         install some sorter, etc.\n---\n---     - exports:\n---         table\n---\n---         Only the items in `exports` will be exposed on the  resulting\n---         module that users can access via require('telescope').extensions.foo\n---         Also, any top-level key-value pairs in exports where the value is a function and the\n---         key doesn't start with an underscore will be included when calling the `builtin` picker\n---         with the `include_extensions` option enabled.\n---\n---         Other things in the module will not be accessible. This is the public API\n---         for your extension. Consider not breaking it a lot :laugh:\n---\n--- TODO:\n---     - actions\nextensions.register = function(mod)\n  return mod\nend\n\nextensions.load = function(name)\n  local ext = load_extension(name)\n  if ext.setup then\n    ext.setup(extensions._config[name] or {}, require(\"telescope.config\").values)\n  end\n  return extensions.manager[name]\nend\n\nextensions.set_config = function(extensions_config)\n  extensions._config = extensions_config or {}\nend\n\nreturn extensions\n"
  },
  {
    "path": "lua/telescope/actions/generate.lua",
    "content": "---@tag telescope.actions.generate\n---@config { [\"module\"] = \"telescope.actions.generate\", [\"name\"] = \"ACTIONS_GENERATE\" }\n\n---@brief [[\n--- Module for convenience to override defaults of corresponding |telescope.actions| at |telescope.setup()|.\n---\n--- General usage:\n--- <code>\n---   require(\"telescope\").setup {\n---     defaults = {\n---       mappings = {\n---         n = {\n---           [\"?\"] = action_generate.which_key {\n---             name_width = 20, -- typically leads to smaller floats\n---             max_height = 0.5, -- increase potential maximum height\n---             separator = \" > \", -- change sep between mode, keybind, and name\n---             close_with_action = false, -- do not close float on action\n---           },\n---         },\n---       },\n---     },\n---   }\n--- </code>\n---@brief ]]\n\nlocal actions = require \"telescope.actions\"\nlocal config = require \"telescope.config\"\nlocal action_state = require \"telescope.actions.state\"\nlocal finders = require \"telescope.finders\"\n\nlocal action_generate = {}\n\n--- Display the keymaps of registered actions similar to which-key.nvim.<br>\n--- - Floating window:\n---   - Appears on the opposite side of the prompt.\n---   - Resolves to minimum required number of lines to show hints with `opts` or truncates entries at `max_height`.\n---   - Closes automatically on action call and can be disabled with by setting `close_with_action` to false.\n---@param opts table: options to pass to toggling registered actions\n---@field max_height number: % of max. height or no. of rows for hints (default: 0.4), see |resolver.resolve_height()|\n---@field only_show_current_mode boolean: only show keymaps for the current mode (default: true)\n---@field mode_width number: fixed width of mode to be shown (default: 1)\n---@field keybind_width number: fixed width of keybind to be shown (default: 7)\n---@field name_width number: fixed width of action name to be shown (default: 30)\n---@field column_padding string: string to split; can be used for vertical separator (default: \"  \")\n---@field mode_hl string: hl group of mode (default: TelescopeResultsConstant)\n---@field keybind_hl string: hl group of keybind (default: TelescopeResultsVariable)\n---@field name_hl string: hl group of action name (default: TelescopeResultsFunction)\n---@field column_indent number: number of left-most spaces before keybinds are shown (default: 4)\n---@field line_padding number: row padding in top and bottom of float (default: 1)\n---@field separator string: separator string between mode, key bindings, and action (default: \" -> \")\n---@field close_with_action boolean: registered action will close keymap float (default: true)\n---@field normal_hl string: winhl of \"Normal\" for keymap hints floating window (default: \"TelescopePrompt\")\n---@field border_hl string: winhl of \"Normal\" for keymap borders (default: \"TelescopePromptBorder\")\n---@field winblend number: pseudo-transparency of keymap hints floating window\n---@field zindex number: z-index of keymap hints floating window (default: 100)\naction_generate.which_key = function(opts)\n  local which_key = function(prompt_bufnr)\n    actions.which_key(prompt_bufnr, opts)\n  end\n  return which_key\nend\n\naction_generate.refine = function(prompt_bufnr, opts)\n  opts = opts or {}\n  opts.prompt_to_prefix = vim.F.if_nil(opts.prompt_to_prefix, false)\n  opts.prefix_hl_group = vim.F.if_nil(opts.prompt_hl_group, \"TelescopePromptPrefix\")\n  opts.prompt_prefix = vim.F.if_nil(opts.prompt_prefix, config.values.prompt_prefix)\n  opts.reset_multi_selection = vim.F.if_nil(opts.reset_multi_selection, false)\n  opts.reset_prompt = vim.F.if_nil(opts.reset_prompt, true)\n  opts.sorter = vim.F.if_nil(opts.sorter, config.values.generic_sorter {})\n  local push_history = vim.F.if_nil(opts.push_history, true)\n\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  local current_line = action_state.get_current_line()\n  if push_history then\n    action_state.get_current_history():append(current_line, current_picker)\n  end\n\n  -- title\n  if opts.prompt_title and current_picker.layout.prompt.border then\n    current_picker.layout.prompt.border:change_title(opts.prompt_title)\n  end\n\n  if opts.results_title and current_picker.layout.results.border then\n    current_picker.layout.results.border:change_title(opts.results_title)\n  end\n\n  local results = {}\n  for entry in current_picker.manager:iter() do\n    table.insert(results, entry)\n  end\n\n  -- if opts.sorter == false, keep older sorter\n  if opts.sorter then\n    current_picker.sorter:_destroy()\n    current_picker.sorter = opts.sorter\n    current_picker.sorter:_init()\n  end\n\n  local new_finder = finders.new_table {\n    results = results,\n    entry_maker = function(x)\n      return x\n    end,\n  }\n\n  if not opts.reset_multi_selection and current_line ~= \"\" then\n    opts.multi = current_picker._multi\n  end\n\n  if opts.prompt_to_prefix then\n    local current_prefix = current_picker.prompt_prefix\n    local suffix = current_prefix ~= opts.prompt_prefix and current_prefix or \"\"\n    opts.new_prefix = suffix .. current_line .. \" \" .. opts.prompt_prefix\n  end\n  current_picker:refresh(new_finder, opts)\nend\n\nreturn action_generate\n"
  },
  {
    "path": "lua/telescope/actions/history.lua",
    "content": "local conf = require(\"telescope.config\").values\nlocal Path = require \"plenary.path\"\nlocal utils = require \"telescope.utils\"\n\nlocal uv = vim.uv\n\n---@tag telescope.actions.history\n---@config { [\"module\"] = \"telescope.actions.history\" }\n\n---@brief [[\n--- A base implementation of a prompt history that provides a simple history\n--- and can be replaced with a custom implementation.\n---\n--- For example: We provide an extension for a smart history that uses sql.nvim\n--- to map histories to metadata, like the calling picker or cwd.\n---\n--- So you have a history for:\n--- - find_files  project_1\n--- - grep_string project_1\n--- - live_grep   project_1\n--- - find_files  project_2\n--- - grep_string project_2\n--- - live_grep   project_2\n--- - etc\n---\n--- See https://github.com/nvim-telescope/telescope-smart-history.nvim\n---@brief ]]\n\n-- TODO(conni2461): currently not present in plenary path only sync.\n-- But sync is just unnecessary here\nlocal write_async = function(path, txt, flag)\n  uv.fs_open(path, flag, 438, function(open_err, fd)\n    assert(not open_err, open_err)\n    uv.fs_write(fd, txt, -1, function(write_err)\n      assert(not write_err, write_err)\n      uv.fs_close(fd, function(close_err)\n        assert(not close_err, close_err)\n      end)\n    end)\n  end)\nend\n\nlocal append_async = function(path, txt)\n  write_async(path, txt, \"a\")\nend\n\nlocal histories = {}\n\n--- Manages prompt history\n---@class History @Manages prompt history\n---@field enabled boolean: Will indicate if History is enabled or disabled\n---@field path string: Will point to the location of the history file\n---@field limit string: Will have the limit of the history. Can be nil, if limit is disabled.\n---@field content table: History table. Needs to be filled by your own History implementation\n---@field index number: Used to keep track of the next or previous index. Default is #content + 1\n---@field cycle_wrap boolean: Controls if history will wrap on reaching beginning or end\nhistories.History = {}\nhistories.History.__index = histories.History\n\n--- Create a new History\n---@param opts table: Defines the behavior of History\n---@field init function: Will be called after handling configuration (required)\n---@field append function: How to append a new prompt item (required)\n---@field reset function: What happens on reset. Will be called when telescope closes (required)\n---@field pre_get function: Will be called before a next or previous item will be returned (optional)\nfunction histories.History:new(opts)\n  local obj = {}\n  if conf.history == false or type(conf.history) ~= \"table\" then\n    obj.enabled = false\n    return setmetatable(obj, self)\n  end\n  obj.enabled = true\n  if conf.history.limit then\n    obj.limit = conf.history.limit\n  end\n  obj.path = utils.path_expand(conf.history.path)\n  obj.content = {}\n  obj.index = 1\n  obj.cycle_wrap = conf.history.cycle_wrap\n\n  opts.init(obj)\n  obj._reset = opts.reset\n  obj._append = opts.append\n  obj._pre_get = opts.pre_get\n\n  return setmetatable(obj, self)\nend\n\n--- Shorthand to create a new history\nfunction histories.new(...)\n  return histories.History:new(...)\nend\n\n--- Will reset the history index to the default initial state. Will happen after the picker closed\nfunction histories.History:reset()\n  if not self.enabled then\n    return\n  end\n  self._reset(self)\nend\n\n--- Append a new line to the history\n---@param line string: current line that will be appended\n---@param picker table: the current picker object\n---@param no_reset boolean: On default it will reset the state at the end. If you don't want to do this set to true\nfunction histories.History:append(line, picker, no_reset)\n  if not self.enabled then\n    return\n  end\n  self._append(self, line, picker, no_reset)\nend\n\n--- Will return the next history item. Can be nil if there are no next items\n---@param line string: the current line\n---@param picker table: the current picker object\n---@return string: the next history item\nfunction histories.History:get_next(line, picker)\n  if not self.enabled then\n    utils.notify(\"History:get_next\", {\n      msg = \"You are cycling to next the history item but history is disabled. Read ':help telescope.defaults.history'\",\n      level = \"WARN\",\n    })\n    return false\n  end\n  if self._pre_get then\n    self._pre_get(self, line, picker)\n  end\n\n  local next_idx = self.index + 1\n  if next_idx > #self.content and self.cycle_wrap then\n    next_idx = 1\n  end\n\n  if next_idx <= #self.content then\n    self.index = next_idx\n    return self.content[next_idx]\n  end\n  self.index = #self.content + 1\n  return nil\nend\n\n--- Will return the previous history item. Can be nil if there are no previous items\n---@param line string: the current line\n---@param picker table: the current picker object\n---@return string: the previous history item\nfunction histories.History:get_prev(line, picker)\n  if not self.enabled then\n    utils.notify(\"History:get_prev\", {\n      msg = \"You are cycling to next the history item but history is disabled. Read ':help telescope.defaults.history'\",\n      level = \"WARN\",\n    })\n    return false\n  end\n  if self._pre_get then\n    self._pre_get(self, line, picker)\n  end\n\n  local next_idx = self.index - 1\n  if next_idx < 1 and self.cycle_wrap then\n    next_idx = #self.content\n  end\n\n  if self.index == #self.content + 1 then\n    if line ~= \"\" then\n      self:append(line, picker, true)\n    end\n  end\n  if next_idx >= 1 then\n    self.index = next_idx\n    return self.content[next_idx]\n  end\n  return nil\nend\n\n--- A simple implementation of history.\n---\n--- It will keep one unified history across all pickers.\nhistories.get_simple_history = function()\n  return histories.new {\n    init = function(obj)\n      local p = Path:new(obj.path)\n      if not p:exists() then\n        p:touch { parents = true }\n      end\n\n      obj.content = Path:new(obj.path):readlines()\n      obj.index = #obj.content\n      table.remove(obj.content, obj.index)\n    end,\n    reset = function(self)\n      self.index = #self.content + 1\n    end,\n    append = function(self, line, _, no_reset)\n      if line ~= \"\" then\n        if self.content[#self.content] ~= line then\n          table.insert(self.content, line)\n\n          local len = #self.content\n          if self.limit and len > self.limit then\n            local diff = len - self.limit\n            for i = diff, 1, -1 do\n              table.remove(self.content, i)\n            end\n            write_async(self.path, table.concat(self.content, \"\\n\") .. \"\\n\", \"w\")\n          else\n            append_async(self.path, line .. \"\\n\")\n          end\n        end\n      end\n      if not no_reset then\n        self:reset()\n      end\n    end,\n  }\nend\n\nreturn histories\n"
  },
  {
    "path": "lua/telescope/actions/init.lua",
    "content": "---@tag telescope.actions\n---@config { [\"module\"] = \"telescope.actions\" }\n\n---@brief [[\n--- These functions are useful for people creating their own mappings.\n---\n--- Actions can be either normal functions that expect the `prompt_bufnr` as\n--- first argument (1) or they can be a custom telescope type called \"action\" (2).\n---\n--- (1) The `prompt_bufnr` of a normal function denotes the identifier of your\n--- picker which can be used to access the picker state. In practice, users\n--- most commonly access from both picker and global state via the following:\n--- <code>\n---   -- for utility functions\n---   local action_state = require \"telescope.actions.state\"\n---\n---   local actions = {}\n---   actions.do_stuff = function(prompt_bufnr)\n---     local current_picker = action_state.get_current_picker(prompt_bufnr) -- picker state\n---     local entry = action_state.get_selected_entry()\n---   end\n--- </code>\n---\n--- See |telescope.actions.state| for more information.\n---\n--- (2) To transform a module of functions into a module of \"action\"s, you need\n--- to do the following:\n--- <code>\n---   local transform_mod = require(\"telescope.actions.mt\").transform_mod\n---\n---   local mod = {}\n---   mod.a1 = function(prompt_bufnr)\n---     -- your code goes here\n---     -- You can access the picker/global state as described above in (1).\n---   end\n---\n---   mod.a2 = function(prompt_bufnr)\n---     -- your code goes here\n---   end\n---   mod = transform_mod(mod)\n---\n---   -- Now the following is possible. This means that actions a2 will be executed\n---   -- after action a1. You can chain as many actions as you want.\n---   local action = mod.a1 + mod.a2\n---   action(bufnr)\n--- </code>\n---\n--- Another interesting thing to do is that these actions now have functions you\n--- can call. These functions include `:replace(f)`, `:replace_if(f, c)`,\n--- `replace_map(tbl)` and `enhance(tbl)`. More information on these functions\n--- can be found in the `developers.md` and `lua/tests/automated/action_spec.lua`\n--- file.\n---@brief ]]\n\nlocal api = vim.api\n\nlocal conf = require(\"telescope.config\").values\nlocal state = require \"telescope.state\"\nlocal utils = require \"telescope.utils\"\nlocal popup = require \"plenary.popup\"\nlocal p_scroller = require \"telescope.pickers.scroller\"\n\nlocal action_state = require \"telescope.actions.state\"\nlocal action_utils = require \"telescope.actions.utils\"\nlocal action_set = require \"telescope.actions.set\"\nlocal entry_display = require \"telescope.pickers.entry_display\"\nlocal from_entry = require \"telescope.from_entry\"\n\nlocal transform_mod = require(\"telescope.actions.mt\").transform_mod\nlocal resolver = require \"telescope.config.resolve\"\n\nlocal actions = setmetatable({}, {\n  __index = function(_, k)\n    error(\"Key does not exist for 'telescope.actions': \" .. tostring(k))\n  end,\n})\n\nlocal append_to_history = function(prompt_bufnr)\n  action_state\n    .get_current_history()\n    :append(action_state.get_current_line(), action_state.get_current_picker(prompt_bufnr))\nend\n\n--- Move the selection to the next entry\n---@param prompt_bufnr number: The prompt bufnr\nactions.move_selection_next = function(prompt_bufnr)\n  action_set.shift_selection(prompt_bufnr, 1)\nend\n\n--- Move the selection to the previous entry\n---@param prompt_bufnr number: The prompt bufnr\nactions.move_selection_previous = function(prompt_bufnr)\n  action_set.shift_selection(prompt_bufnr, -1)\nend\n\n--- Move the selection to the entry that has a worse score\n---@param prompt_bufnr number: The prompt bufnr\nactions.move_selection_worse = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  action_set.shift_selection(prompt_bufnr, p_scroller.worse(picker.sorting_strategy))\nend\n\n--- Move the selection to the entry that has a better score\n---@param prompt_bufnr number: The prompt bufnr\nactions.move_selection_better = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  action_set.shift_selection(prompt_bufnr, p_scroller.better(picker.sorting_strategy))\nend\n\n--- Move to the top of the picker\n---@param prompt_bufnr number: The prompt bufnr\nactions.move_to_top = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:set_selection(\n    p_scroller.top(current_picker.sorting_strategy, current_picker.max_results, current_picker.manager:num_results())\n  )\nend\n\n--- Move to the middle of the picker\n---@param prompt_bufnr number: The prompt bufnr\nactions.move_to_middle = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:set_selection(\n    p_scroller.middle(current_picker.sorting_strategy, current_picker.max_results, current_picker.manager:num_results())\n  )\nend\n\n--- Move to the bottom of the picker\n---@param prompt_bufnr number: The prompt bufnr\nactions.move_to_bottom = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:set_selection(\n    p_scroller.bottom(current_picker.sorting_strategy, current_picker.max_results, current_picker.manager:num_results())\n  )\nend\n\n--- Add current entry to multi select\n---@param prompt_bufnr number: The prompt bufnr\nactions.add_selection = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:add_selection(current_picker:get_selection_row())\nend\n\n--- Remove current entry from multi select\n---@param prompt_bufnr number: The prompt bufnr\nactions.remove_selection = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:remove_selection(current_picker:get_selection_row())\nend\n\n--- Toggle current entry status for multi select\n---@param prompt_bufnr number: The prompt bufnr\nactions.toggle_selection = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:toggle_selection(current_picker:get_selection_row())\nend\n\n--- Multi select all entries.\n--- - Note: selected entries may include results not visible in the results pop up.\n---@param prompt_bufnr number: The prompt bufnr\nactions.select_all = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  action_utils.map_entries(prompt_bufnr, function(entry, _, row)\n    if not current_picker._multi:is_selected(entry) then\n      current_picker._multi:add(entry)\n      if current_picker:can_select_row(row) then\n        local caret = current_picker:update_prefix(entry, row)\n        if current_picker._selection_entry == entry and current_picker._selection_row == row then\n          current_picker.highlighter:hi_selection(row, caret:match \"(.*%S)\")\n        end\n        current_picker.highlighter:hi_multiselect(row, current_picker._multi:is_selected(entry))\n      end\n    end\n  end)\n  current_picker:get_status_updater(current_picker.prompt_win, current_picker.prompt_bufnr)()\nend\n\n--- Drop all entries from the current multi selection.\n---@param prompt_bufnr number: The prompt bufnr\nactions.drop_all = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  action_utils.map_entries(prompt_bufnr, function(entry, _, row)\n    current_picker._multi:drop(entry)\n    if current_picker:can_select_row(row) then\n      local caret = current_picker:update_prefix(entry, row)\n      if current_picker._selection_entry == entry and current_picker._selection_row == row then\n        current_picker.highlighter:hi_selection(row, caret:match \"(.*%S)\")\n      end\n      current_picker.highlighter:hi_multiselect(row, current_picker._multi:is_selected(entry))\n    end\n  end)\n  current_picker:get_status_updater(current_picker.prompt_win, current_picker.prompt_bufnr)()\nend\n\n--- Toggle multi selection for all entries.\n--- - Note: toggled entries may include results not visible in the results pop up.\n---@param prompt_bufnr number: The prompt bufnr\nactions.toggle_all = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  action_utils.map_entries(prompt_bufnr, function(entry, _, row)\n    current_picker._multi:toggle(entry)\n    if current_picker:can_select_row(row) then\n      local caret = current_picker:update_prefix(entry, row)\n      if current_picker._selection_entry == entry and current_picker._selection_row == row then\n        current_picker.highlighter:hi_selection(row, caret:match \"(.*%S)\")\n      end\n      current_picker.highlighter:hi_multiselect(row, current_picker._multi:is_selected(entry))\n    end\n  end)\n  current_picker:get_status_updater(current_picker.prompt_win, current_picker.prompt_bufnr)()\nend\n\n--- Scroll the preview window up\n---@param prompt_bufnr number: The prompt bufnr\nactions.preview_scrolling_up = function(prompt_bufnr)\n  action_set.scroll_previewer(prompt_bufnr, -1)\nend\n\n--- Scroll the preview window down\n---@param prompt_bufnr number: The prompt bufnr\nactions.preview_scrolling_down = function(prompt_bufnr)\n  action_set.scroll_previewer(prompt_bufnr, 1)\nend\n\n--- Scroll the preview window to the left\n---@param prompt_bufnr number: The prompt bufnr\nactions.preview_scrolling_left = function(prompt_bufnr)\n  action_set.scroll_horizontal_previewer(prompt_bufnr, -1)\nend\n\n--- Scroll the preview window to the right\n---@param prompt_bufnr number: The prompt bufnr\nactions.preview_scrolling_right = function(prompt_bufnr)\n  action_set.scroll_horizontal_previewer(prompt_bufnr, 1)\nend\n\n--- Scroll the results window up\n---@param prompt_bufnr number: The prompt bufnr\nactions.results_scrolling_up = function(prompt_bufnr)\n  action_set.scroll_results(prompt_bufnr, -1)\nend\n\n--- Scroll the results window down\n---@param prompt_bufnr number: The prompt bufnr\nactions.results_scrolling_down = function(prompt_bufnr)\n  action_set.scroll_results(prompt_bufnr, 1)\nend\n\n--- Scroll the results window to the left\n---@param prompt_bufnr number: The prompt bufnr\nactions.results_scrolling_left = function(prompt_bufnr)\n  action_set.scroll_horizontal_results(prompt_bufnr, -1)\nend\n\n--- Scroll the results window to the right\n---@param prompt_bufnr number: The prompt bufnr\nactions.results_scrolling_right = function(prompt_bufnr)\n  action_set.scroll_horizontal_results(prompt_bufnr, 1)\nend\n\n--- Center the cursor in the window, can be used after selecting a file to edit\n--- You can just map `actions.select_default + actions.center`\n---@param prompt_bufnr number: The prompt bufnr\nactions.center = function(prompt_bufnr)\n  vim.cmd \":normal! zz\"\nend\n\n--- Perform default action on selection, usually something like<br>\n--- `:edit <selection>`\n---\n--- i.e. open the selection in the current buffer\n---@param prompt_bufnr number: The prompt bufnr\nactions.select_default = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    return action_set.select(prompt_bufnr, \"default\")\n  end,\n}\n\n--- Perform 'horizontal' action on selection, usually something like<br>\n---`:new <selection>`\n---\n--- i.e. open the selection in a new horizontal split\n---@param prompt_bufnr number: The prompt bufnr\nactions.select_horizontal = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    return action_set.select(prompt_bufnr, \"horizontal\")\n  end,\n}\n\n--- Perform 'vertical' action on selection, usually something like<br>\n---`:vnew <selection>`\n---\n--- i.e. open the selection in a new vertical split\n---@param prompt_bufnr number: The prompt bufnr\nactions.select_vertical = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    return action_set.select(prompt_bufnr, \"vertical\")\n  end,\n}\n\n--- Perform 'tab' action on selection, usually something like<br>\n---`:tabedit <selection>`\n---\n--- i.e. open the selection in a new tab\n---@param prompt_bufnr number: The prompt bufnr\nactions.select_tab = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    return action_set.select(prompt_bufnr, \"tab\")\n  end,\n}\n\n--- Perform 'drop' action on selection, usually something like<br>\n---`:drop <selection>`\n---\n--- i.e. open the selection in a window\n---@param prompt_bufnr number: The prompt bufnr\nactions.select_drop = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    return action_set.select(prompt_bufnr, \"drop\")\n  end,\n}\n\n--- Perform 'tab drop' action on selection, usually something like<br>\n---`:tab drop <selection>`\n---\n--- i.e. open the selection in a new tab\n---@param prompt_bufnr number: The prompt bufnr\nactions.select_tab_drop = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    return action_set.select(prompt_bufnr, \"tab drop\")\n  end,\n}\n\n-- TODO: consider adding float!\n-- https://github.com/nvim-telescope/telescope.nvim/issues/365\n\n--- Perform file edit on selection, usually something like<br>\n--- `:edit <selection>`\n---@param prompt_bufnr number: The prompt bufnr\nactions.file_edit = function(prompt_bufnr)\n  return action_set.edit(prompt_bufnr, \"edit\")\nend\n\n--- Perform file split on selection, usually something like<br>\n--- `:new <selection>`\n---@param prompt_bufnr number: The prompt bufnr\nactions.file_split = function(prompt_bufnr)\n  return action_set.edit(prompt_bufnr, \"new\")\nend\n\n--- Perform file vsplit on selection, usually something like<br>\n--- `:vnew <selection>`\n---@param prompt_bufnr number: The prompt bufnr\nactions.file_vsplit = function(prompt_bufnr)\n  return action_set.edit(prompt_bufnr, \"vnew\")\nend\n\n--- Perform file tab on selection, usually something like<br>\n--- `:tabedit <selection>`\n---@param prompt_bufnr number: The prompt bufnr\nactions.file_tab = function(prompt_bufnr)\n  return action_set.edit(prompt_bufnr, \"tabedit\")\nend\n\nactions.close_pum = function(_)\n  if 0 ~= vim.fn.pumvisible() then\n    api.nvim_feedkeys(api.nvim_replace_termcodes(\"<c-y>\", true, true, true), \"n\", true)\n  end\nend\n\n--- Close the Telescope window, usually used within an action\n---@param prompt_bufnr number: The prompt bufnr\nactions.close = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  local original_win_id = picker.original_win_id\n  local cursor_valid, original_cursor = pcall(api.nvim_win_get_cursor, original_win_id)\n\n  actions.close_pum(prompt_bufnr)\n\n  require(\"telescope.pickers\").on_close_prompt(prompt_bufnr)\n  pcall(api.nvim_set_current_win, original_win_id)\n  if cursor_valid and api.nvim_get_mode().mode == \"i\" and picker._original_mode ~= \"i\" then\n    pcall(api.nvim_win_set_cursor, original_win_id, { original_cursor[1], original_cursor[2] + 1 })\n  end\nend\n\n--- Close the Telescope window, usually used within an action<br>\n--- Deprecated and no longer needed, does the same as |telescope.actions.close|. Might be removed in the future\n---@deprecated\n---@param prompt_bufnr number: The prompt bufnr\nactions._close = function(prompt_bufnr)\n  actions.close(prompt_bufnr)\nend\n\nlocal set_edit_line = function(prompt_bufnr, fname, prefix, postfix)\n  postfix = vim.F.if_nil(postfix, \"\")\n  postfix = api.nvim_replace_termcodes(postfix, true, false, true)\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection(fname)\n    return\n  end\n  actions.close(prompt_bufnr)\n  api.nvim_feedkeys(prefix .. selection.value .. postfix, \"n\", true)\nend\n\n--- Set a value in the command line and don't run it, making it editable.\n---@param prompt_bufnr number: The prompt bufnr\nactions.edit_command_line = function(prompt_bufnr)\n  set_edit_line(prompt_bufnr, \"actions.edit_command_line\", \":\")\nend\n\n--- Set a value in the command line and run it\n---@param prompt_bufnr number: The prompt bufnr\nactions.set_command_line = function(prompt_bufnr)\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.set_command_line\"\n    return\n  end\n  actions.close(prompt_bufnr)\n  vim.fn.histadd(\"cmd\", selection.value)\n  vim.cmd(selection.value)\nend\n\n--- Set a value in the search line and don't search for it, making it editable.\n---@param prompt_bufnr number: The prompt bufnr\nactions.edit_search_line = function(prompt_bufnr)\n  set_edit_line(prompt_bufnr, \"actions.edit_search_line\", \"/\")\nend\n\n--- Set a value in the search line and search for it\n---@param prompt_bufnr number: The prompt bufnr\nactions.set_search_line = function(prompt_bufnr)\n  set_edit_line(prompt_bufnr, \"actions.set_search_line\", \"/\", \"<CR>\")\nend\n\n--- Edit a register\n---@param prompt_bufnr number: The prompt bufnr\nactions.edit_register = function(prompt_bufnr)\n  local selection = action_state.get_selected_entry()\n  local picker = action_state.get_current_picker(prompt_bufnr)\n\n  vim.fn.inputsave()\n  local updated_value = vim.fn.input(\"Edit [\" .. selection.value .. \"] ❯ \", selection.content)\n  vim.fn.inputrestore()\n  if updated_value ~= selection.content then\n    vim.fn.setreg(selection.value, updated_value)\n    selection.content = updated_value\n  end\n\n  -- update entry in results table\n  -- TODO: find way to redraw finder content\n  for _, v in pairs(picker.finder.results) do\n    if v == selection then\n      v.content = updated_value\n    end\n  end\nend\n\n--- Paste the selected register into the buffer\n---\n--- Note: only meant to be used inside builtin.registers\n---@param prompt_bufnr number: The prompt bufnr\nactions.paste_register = function(prompt_bufnr)\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.paste_register\"\n    return\n  end\n\n  actions.close(prompt_bufnr)\n\n  -- ensure that the buffer can be written to\n  if vim.bo[0].modifiable then\n    api.nvim_paste(selection.content, true, -1)\n  end\nend\n\n--- Insert a symbol into the current buffer (while switching to normal mode)\n---@param prompt_bufnr number: The prompt bufnr\nactions.insert_symbol = function(prompt_bufnr)\n  local symbol = action_state.get_selected_entry().value[1]\n  actions.close(prompt_bufnr)\n  vim.schedule(function()\n    api.nvim_put({ symbol }, \"\", true, true)\n  end)\nend\n\n--- Insert a symbol into the current buffer and keeping the insert mode.\n---@param prompt_bufnr number: The prompt bufnr\nactions.insert_symbol_i = function(prompt_bufnr)\n  local symbol = action_state.get_selected_entry().value[1]\n  actions.close(prompt_bufnr)\n  vim.schedule(function()\n    vim.cmd [[startinsert]]\n    api.nvim_put({ symbol }, \"\", true, true)\n  end)\nend\n\n-- TODO: Think about how to do this.\nactions.insert_value = function(prompt_bufnr)\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.insert_value\"\n    return\n  end\n\n  vim.schedule(function()\n    actions.close(prompt_bufnr)\n  end)\n\n  return selection.value\nend\n\n--- Ask user to confirm an action\n---@param prompt string: The prompt for confirmation\n---@param default_value string: The default value of user input\n---@param yes_values table: List of positive user confirmations ({\"y\", \"yes\"} by default)\n---@return boolean: Whether user confirmed the prompt\nlocal function ask_to_confirm(prompt, default_value, yes_values)\n  yes_values = yes_values or { \"y\", \"yes\" }\n  default_value = default_value or \"\"\n  local confirmation = vim.fn.input(prompt, default_value)\n  confirmation = string.lower(confirmation)\n  if string.len(confirmation) == 0 then\n    return false\n  end\n  for _, v in pairs(yes_values) do\n    if v == confirmation then\n      return true\n    end\n  end\n  return false\nend\n\n--- Create and checkout a new git branch if it doesn't already exist\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_create_branch = function(prompt_bufnr)\n  local cwd = action_state.get_current_picker(prompt_bufnr).cwd\n  local new_branch = action_state.get_current_line()\n\n  if new_branch == \"\" then\n    utils.notify(\"actions.git_create_branch\", {\n      msg = \"Missing the new branch name\",\n      level = \"ERROR\",\n    })\n  else\n    local confirmation = ask_to_confirm(string.format(\"Create new branch '%s'? [y/n]: \", new_branch))\n    if not confirmation then\n      utils.notify(\"actions.git_create_branch\", {\n        msg = string.format(\"branch creation canceled: '%s'\", new_branch),\n        level = \"INFO\",\n      })\n      return\n    end\n\n    actions.close(prompt_bufnr)\n\n    local _, ret, stderr = utils.get_os_command_output({ \"git\", \"checkout\", \"-b\", new_branch }, cwd)\n    if ret == 0 then\n      utils.notify(\"actions.git_create_branch\", {\n        msg = string.format(\"Switched to a new branch: %s\", new_branch),\n        level = \"INFO\",\n      })\n    else\n      utils.notify(\"actions.git_create_branch\", {\n        msg = string.format(\n          \"Error when creating new branch: '%s' Git returned '%s'\",\n          new_branch,\n          table.concat(stderr, \" \")\n        ),\n        level = \"INFO\",\n      })\n    end\n  end\nend\n\n--- Applies an existing git stash\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_apply_stash = function(prompt_bufnr)\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.git_apply_stash\"\n    return\n  end\n  actions.close(prompt_bufnr)\n  local _, ret, stderr = utils.get_os_command_output { \"git\", \"stash\", \"apply\", \"--index\", selection.value }\n  if ret == 0 then\n    utils.notify(\"actions.git_apply_stash\", {\n      msg = string.format(\"applied: '%s' \", selection.value),\n      level = \"INFO\",\n    })\n  else\n    utils.notify(\"actions.git_apply_stash\", {\n      msg = string.format(\"Error when applying: %s. Git returned: '%s'\", selection.value, table.concat(stderr, \" \")),\n      level = \"ERROR\",\n    })\n  end\nend\n\n--- Checkout an existing git branch\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_checkout = function(prompt_bufnr)\n  local cwd = action_state.get_current_picker(prompt_bufnr).cwd\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.git_checkout\"\n    return\n  end\n  actions.close(prompt_bufnr)\n  local _, ret, stderr = utils.get_os_command_output({ \"git\", \"checkout\", selection.value }, cwd)\n  if ret == 0 then\n    utils.notify(\"actions.git_checkout\", {\n      msg = string.format(\"Checked out: %s\", selection.value),\n      level = \"INFO\",\n    })\n    vim.cmd \"checktime\"\n  else\n    utils.notify(\"actions.git_checkout\", {\n      msg = string.format(\n        \"Error when checking out: %s. Git returned: '%s'\",\n        selection.value,\n        table.concat(stderr, \" \")\n      ),\n      level = \"ERROR\",\n    })\n  end\nend\n\n--- Switch to git branch.<br>\n--- If the branch already exists in local, switch to that.\n--- If the branch is only in remote, create new branch tracking remote and switch to new one.\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_switch_branch = function(prompt_bufnr)\n  local cwd = action_state.get_current_picker(prompt_bufnr).cwd\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.git_switch_branch\"\n    return\n  end\n  actions.close(prompt_bufnr)\n  local pattern = \"^refs/remotes/%w+/\"\n  local branch = selection.value\n  if string.match(selection.refname, pattern) then\n    branch = string.gsub(selection.refname, pattern, \"\")\n  end\n  local _, ret, stderr = utils.get_os_command_output({ \"git\", \"switch\", branch }, cwd)\n  if ret == 0 then\n    utils.notify(\"actions.git_switch_branch\", {\n      msg = string.format(\"Switched to: '%s'\", branch),\n      level = \"INFO\",\n    })\n  else\n    utils.notify(\"actions.git_switch_branch\", {\n      msg = string.format(\n        \"Error when switching to: %s. Git returned: '%s'\",\n        selection.value,\n        table.concat(stderr, \" \")\n      ),\n      level = \"ERROR\",\n    })\n  end\nend\n\n--- Action to rename selected git branch\n--- @param prompt_bufnr number: The prompt bufnr\nactions.git_rename_branch = function(prompt_bufnr)\n  local cwd = action_state.get_current_picker(prompt_bufnr).cwd\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.git_rename_branch\"\n    return\n  end\n  -- Keeps the selected branch name for the input that asks for the new branch name\n  local new_branch = vim.fn.input(\"New branch name: \", selection.value)\n  if new_branch == \"\" then\n    utils.notify(\"actions.git_rename_branch\", {\n      msg = \"Missing the new branch name\",\n      level = \"ERROR\",\n    })\n  else\n    actions.close(prompt_bufnr)\n    local _, ret, stderr = utils.get_os_command_output({ \"git\", \"branch\", \"-m\", selection.value, new_branch }, cwd)\n    if ret == 0 then\n      utils.notify(\"actions.git_rename_branch\", {\n        msg = string.format(\"Renamed branch: '%s'\", selection.value),\n        level = \"INFO\",\n      })\n    else\n      utils.notify(\"actions.git_rename_branch\", {\n        msg = string.format(\n          \"Error when renaming branch: %s. Git returned: '%s'\",\n          selection.value,\n          table.concat(stderr, \" \")\n        ),\n        level = \"ERROR\",\n      })\n    end\n  end\nend\n\nlocal function make_git_branch_action(opts)\n  return function(prompt_bufnr)\n    local cwd = action_state.get_current_picker(prompt_bufnr).cwd\n    local selection = action_state.get_selected_entry()\n    if selection == nil then\n      utils.__warn_no_selection(opts.action_name)\n      return\n    end\n\n    local should_confirm = opts.should_confirm\n    if should_confirm then\n      local confirmation = ask_to_confirm(string.format(opts.confirmation_question, selection.value), \"y\")\n      if not confirmation then\n        utils.notify(opts.action_name, {\n          msg = \"action canceled\",\n          level = \"INFO\",\n        })\n        return\n      end\n    end\n\n    actions.close(prompt_bufnr)\n    local _, ret, stderr = utils.get_os_command_output(opts.command(selection.value), cwd)\n    if ret == 0 then\n      utils.notify(opts.action_name, {\n        msg = string.format(opts.success_message, selection.value),\n        level = \"INFO\",\n      })\n    else\n      utils.notify(opts.action_name, {\n        msg = string.format(opts.error_message, selection.value, table.concat(stderr, \" \")),\n        level = \"ERROR\",\n      })\n    end\n  end\nend\n\n--- Tell git to track the currently selected remote branch in Telescope\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_track_branch = make_git_branch_action {\n  should_confirm = false,\n  action_name = \"actions.git_track_branch\",\n  success_message = \"Tracking branch: %s\",\n  error_message = \"Error when tracking branch: %s. Git returned: '%s'\",\n  command = function(branch_name)\n    return { \"git\", \"checkout\", \"--track\", branch_name }\n  end,\n}\n\n--- Delete all currently selected branches\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_delete_branch = function(prompt_bufnr)\n  local confirmation = ask_to_confirm(\"Do you really want to delete the selected branches? [Y/n] \", \"y\")\n  if not confirmation then\n    utils.notify(\"actions.git_delete_branch\", {\n      msg = \"action canceled\",\n      level = \"INFO\",\n    })\n    return\n  end\n\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  local action_name = \"actions.git_delete_branch\"\n  picker:delete_selection(function(selection)\n    local branch = selection.value\n    print(\"Deleting branch \" .. branch)\n    local _, ret, stderr = utils.get_os_command_output({ \"git\", \"branch\", \"-D\", branch }, picker.cwd)\n    if ret == 0 then\n      utils.notify(action_name, {\n        msg = string.format(\"Deleted branch: %s\", branch),\n        level = \"INFO\",\n      })\n    else\n      utils.notify(action_name, {\n        msg = string.format(\"Error when deleting branch: %s. Git returned: '%s'\", branch, table.concat(stderr, \" \")),\n        level = \"ERROR\",\n      })\n    end\n    return ret == 0\n  end)\nend\n\n--- Merge the currently selected branch\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_merge_branch = make_git_branch_action {\n  should_confirm = true,\n  action_name = \"actions.git_merge_branch\",\n  confirmation_question = \"Do you really want to merge branch %s? [Y/n] \",\n  success_message = \"Merged branch: %s\",\n  error_message = \"Error when merging branch: %s. Git returned: '%s'\",\n  command = function(branch_name)\n    return { \"git\", \"merge\", branch_name }\n  end,\n}\n\n--- Rebase to selected git branch\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_rebase_branch = make_git_branch_action {\n  should_confirm = true,\n  action_name = \"actions.git_rebase_branch\",\n  confirmation_question = \"Do you really want to rebase branch %s? [Y/n] \",\n  success_message = \"Rebased branch: %s\",\n  error_message = \"Error when rebasing branch: %s. Git returned: '%s'\",\n  command = function(branch_name)\n    return { \"git\", \"rebase\", branch_name }\n  end,\n}\n\nlocal git_reset_branch = function(prompt_bufnr, mode)\n  local cwd = action_state.get_current_picker(prompt_bufnr).cwd\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.git_reset_branch\"\n    return\n  end\n\n  local confirmation =\n    ask_to_confirm(\"Do you really want to \" .. mode .. \" reset to \" .. selection.value .. \"? [Y/n] \", \"y\")\n  if not confirmation then\n    utils.notify(\"actions.git_reset_branch\", {\n      msg = \"action canceled\",\n      level = \"INFO\",\n    })\n    return\n  end\n\n  actions.close(prompt_bufnr)\n  local _, ret, stderr = utils.get_os_command_output({ \"git\", \"reset\", mode, selection.value }, cwd)\n  if ret == 0 then\n    utils.notify(\"actions.git_rebase_branch\", {\n      msg = string.format(\"Reset to: '%s'\", selection.value),\n      level = \"INFO\",\n    })\n  else\n    utils.notify(\"actions.git_rebase_branch\", {\n      msg = string.format(\"Rest to: %s. Git returned: '%s'\", selection.value, table.concat(stderr, \" \")),\n      level = \"ERROR\",\n    })\n  end\nend\n\n--- Reset to selected git commit using mixed mode\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_reset_mixed = function(prompt_bufnr)\n  git_reset_branch(prompt_bufnr, \"--mixed\")\nend\n\n--- Reset to selected git commit using soft mode\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_reset_soft = function(prompt_bufnr)\n  git_reset_branch(prompt_bufnr, \"--soft\")\nend\n\n--- Reset to selected git commit using hard mode\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_reset_hard = function(prompt_bufnr)\n  git_reset_branch(prompt_bufnr, \"--hard\")\nend\n\n--- Checkout a specific file for a given sha\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_checkout_current_buffer = function(prompt_bufnr)\n  local cwd = action_state.get_current_picker(prompt_bufnr).cwd\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.git_checkout_current_buffer\"\n\n    return\n  end\n  actions.close(prompt_bufnr)\n  utils.get_os_command_output({ \"git\", \"checkout\", selection.value, \"--\", selection.current_file }, cwd)\n  vim.cmd \"checktime\"\nend\n\n--- Stage/unstage selected file\n---@param prompt_bufnr number: The prompt bufnr\nactions.git_staging_toggle = function(prompt_bufnr)\n  local cwd = action_state.get_current_picker(prompt_bufnr).cwd\n  local selection = action_state.get_selected_entry()\n  if selection == nil then\n    utils.__warn_no_selection \"actions.git_staging_toggle\"\n    return\n  end\n  if selection.status:sub(2) == \" \" then\n    utils.get_os_command_output({ \"git\", \"restore\", \"--staged\", selection.value }, cwd)\n  else\n    utils.get_os_command_output({ \"git\", \"add\", selection.value }, cwd)\n  end\nend\n\nlocal entry_to_qf = function(entry)\n  local text = entry.text\n\n  if not text then\n    if type(entry.value) == \"table\" then\n      text = entry.value.text\n    else\n      text = entry.value\n    end\n  end\n\n  return {\n    bufnr = entry.bufnr,\n    filename = from_entry.path(entry, false, false),\n    lnum = vim.F.if_nil(entry.lnum, 1),\n    col = vim.F.if_nil(entry.col, 1),\n    text = text,\n    type = entry.qf_type,\n  }\nend\n\nlocal send_selected_to_qf = function(prompt_bufnr, mode, target)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n\n  local qf_entries = {}\n  for _, entry in ipairs(picker:get_multi_selection()) do\n    table.insert(qf_entries, entry_to_qf(entry))\n  end\n\n  local prompt = picker:_get_prompt()\n  actions.close(prompt_bufnr)\n\n  api.nvim_exec_autocmds(\"QuickFixCmdPre\", {})\n  if target == \"loclist\" then\n    vim.fn.setloclist(picker.original_win_id, qf_entries, mode)\n  else\n    local qf_title = string.format([[%s (%s)]], picker.prompt_title, prompt)\n    vim.fn.setqflist(qf_entries, mode)\n    vim.fn.setqflist({}, \"a\", { title = qf_title })\n  end\n  api.nvim_exec_autocmds(\"QuickFixCmdPost\", {})\nend\n\nlocal send_all_to_qf = function(prompt_bufnr, mode, target)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  local manager = picker.manager\n\n  local qf_entries = {}\n  for entry in manager:iter() do\n    table.insert(qf_entries, entry_to_qf(entry))\n  end\n\n  local prompt = picker:_get_prompt()\n  actions.close(prompt_bufnr)\n\n  api.nvim_exec_autocmds(\"QuickFixCmdPre\", {})\n  local qf_title = string.format([[%s (%s)]], picker.prompt_title, prompt)\n  if target == \"loclist\" then\n    vim.fn.setloclist(picker.original_win_id, qf_entries, mode)\n    vim.fn.setloclist(picker.original_win_id, {}, \"a\", { title = qf_title })\n  else\n    vim.fn.setqflist(qf_entries, mode)\n    vim.fn.setqflist({}, \"a\", { title = qf_title })\n  end\n  api.nvim_exec_autocmds(\"QuickFixCmdPost\", {})\nend\n\n--- Sends the selected entries to the quickfix list, replacing the previous entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.send_selected_to_qflist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    send_selected_to_qf(prompt_bufnr, \" \")\n  end,\n}\n--- Adds the selected entries to the quickfix list, keeping the previous entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.add_selected_to_qflist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    send_selected_to_qf(prompt_bufnr, \"a\")\n  end,\n}\n--- Sends all entries to the quickfix list, replacing the previous entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.send_to_qflist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    send_all_to_qf(prompt_bufnr, \" \")\n  end,\n}\n--- Adds all entries to the quickfix list, keeping the previous entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.add_to_qflist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    send_all_to_qf(prompt_bufnr, \"a\")\n  end,\n}\n--- Sends the selected entries to the location list, replacing the previous entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.send_selected_to_loclist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    send_selected_to_qf(prompt_bufnr, \" \", \"loclist\")\n  end,\n}\n--- Adds the selected entries to the location list, keeping the previous entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.add_selected_to_loclist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    send_selected_to_qf(prompt_bufnr, \"a\", \"loclist\")\n  end,\n}\n--- Sends all entries to the location list, replacing the previous entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.send_to_loclist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    send_all_to_qf(prompt_bufnr, \" \", \"loclist\")\n  end,\n}\n--- Adds all entries to the location list, keeping the previous entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.add_to_loclist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    send_all_to_qf(prompt_bufnr, \"a\", \"loclist\")\n  end,\n}\n\nlocal smart_send = function(prompt_bufnr, mode, target)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  if #picker:get_multi_selection() > 0 then\n    send_selected_to_qf(prompt_bufnr, mode, target)\n  else\n    send_all_to_qf(prompt_bufnr, mode, target)\n  end\nend\n\n--- Sends the selected entries to the quickfix list, replacing the previous entries.\n--- If no entry was selected, sends all entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.smart_send_to_qflist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    smart_send(prompt_bufnr, \" \")\n  end,\n}\n--- Adds the selected entries to the quickfix list, keeping the previous entries.\n--- If no entry was selected, adds all entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.smart_add_to_qflist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    smart_send(prompt_bufnr, \"a\")\n  end,\n}\n--- Sends the selected entries to the location list, replacing the previous entries.\n--- If no entry was selected, sends all entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.smart_send_to_loclist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    smart_send(prompt_bufnr, \" \", \"loclist\")\n  end,\n}\n--- Adds the selected entries to the location list, keeping the previous entries.\n--- If no entry was selected, adds all entries.\n---@param prompt_bufnr number: The prompt bufnr\nactions.smart_add_to_loclist = {\n  pre = append_to_history,\n  action = function(prompt_bufnr)\n    smart_send(prompt_bufnr, \"a\", \"loclist\")\n  end,\n}\n--- Open completion menu containing the tags which can be used to filter the results in a faster way\n---@param prompt_bufnr number: The prompt bufnr\nactions.complete_tag = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  local tags = current_picker.sorter.tags\n  local delimiter = current_picker.sorter._delimiter\n\n  if not tags then\n    utils.notify(\"actions.complete_tag\", {\n      msg = \"No tag pre-filtering set for this picker\",\n      level = \"ERROR\",\n    })\n\n    return\n  end\n\n  -- format tags to match filter_function\n  local prefilter_tags = {}\n  for tag, _ in pairs(tags) do\n    table.insert(prefilter_tags, string.format(\"%s%s%s \", delimiter, tag:lower(), delimiter))\n  end\n\n  local line = action_state.get_current_line()\n  local filtered_tags = {}\n  -- retrigger completion with already selected tag anew\n  -- trim and add space since we can match [[:pattern: ]]  with or without space at the end\n  if vim.tbl_contains(prefilter_tags, vim.trim(line) .. \" \") then\n    filtered_tags = prefilter_tags\n  else\n    -- match tag by substring\n    for _, tag in pairs(prefilter_tags) do\n      local start, _ = tag:find(line)\n      if start then\n        table.insert(filtered_tags, tag)\n      end\n    end\n  end\n\n  if vim.tbl_isempty(filtered_tags) then\n    utils.notify(\"complete_tag\", {\n      msg = \"No matches found\",\n      level = \"INFO\",\n    })\n    return\n  end\n\n  -- incremental completion by substituting string starting from col - #line byte offset\n  local col = api.nvim_win_get_cursor(0)[2] + 1\n  vim.fn.complete(col - #line, filtered_tags)\nend\n\n--- Cycle to the next search prompt in the history\n---@param prompt_bufnr number: The prompt bufnr\nactions.cycle_history_next = function(prompt_bufnr)\n  local history = action_state.get_current_history()\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  local line = action_state.get_current_line()\n\n  local entry = history:get_next(line, current_picker)\n  if entry == false then\n    return\n  end\n\n  current_picker:reset_prompt()\n  if entry ~= nil then\n    current_picker:set_prompt(entry)\n  end\nend\n\n--- Cycle to the previous search prompt in the history\n---@param prompt_bufnr number: The prompt bufnr\nactions.cycle_history_prev = function(prompt_bufnr)\n  local history = action_state.get_current_history()\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  local line = action_state.get_current_line()\n\n  local entry = history:get_prev(line, current_picker)\n  if entry == false then\n    return\n  end\n  if entry ~= nil then\n    current_picker:reset_prompt()\n    current_picker:set_prompt(entry)\n  end\nend\n\n--- Open the quickfix list. It makes sense to use this in combination with one of the send_to_qflist actions\n--- `actions.smart_send_to_qflist + actions.open_qflist`\n---@param prompt_bufnr number: The prompt bufnr\nactions.open_qflist = function(prompt_bufnr)\n  vim.cmd [[botright copen]]\nend\n\n--- Open the location list. It makes sense to use this in combination with one of the send_to_loclist actions\n--- `actions.smart_send_to_qflist + actions.open_qflist`\n---@param prompt_bufnr number: The prompt bufnr\nactions.open_loclist = function(prompt_bufnr)\n  vim.cmd [[lopen]]\nend\n\n--- Delete the selected buffer or all the buffers selected using multi selection.\n---@param prompt_bufnr number: The prompt bufnr\nactions.delete_buffer = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n\n  current_picker:delete_selection(function(selection)\n    local force = vim.bo[selection.bufnr].buftype == \"terminal\"\n    local ok = pcall(api.nvim_buf_delete, selection.bufnr, { force = force })\n\n    -- If the current buffer is deleted, switch to the previous buffer\n    -- according to bdelete behavior\n    if ok and selection.bufnr == current_picker.original_bufnr then\n      if api.nvim_win_is_valid(current_picker.original_win_id) then\n        local jumplist = vim.fn.getjumplist(current_picker.original_win_id)[1]\n        for i = #jumplist, 1, -1 do\n          if jumplist[i].bufnr ~= selection.bufnr and vim.fn.bufloaded(jumplist[i].bufnr) == 1 then\n            api.nvim_win_set_buf(current_picker.original_win_id, jumplist[i].bufnr)\n            current_picker.original_bufnr = jumplist[i].bufnr\n            return ok\n          end\n        end\n\n        -- no more valid buffers in jumplist, create an empty buffer\n        local empty_buf = api.nvim_create_buf(true, true)\n        api.nvim_win_set_buf(current_picker.original_win_id, empty_buf)\n        current_picker.original_bufnr = empty_buf\n        api.nvim_buf_delete(selection.bufnr, { force = true })\n        return ok\n      end\n\n      -- window of the selected buffer got wiped, switch to first valid window\n      local win_id = vim.fn.win_getid(1, current_picker.original_tabpage)\n      current_picker.original_win_id = win_id\n      current_picker.original_bufnr = api.nvim_win_get_buf(win_id)\n    end\n    return ok\n  end)\nend\n\n--- Cycle to the next previewer if there is one available.<br>\n--- This action is not mapped on default.\n---@param prompt_bufnr number: The prompt bufnr\nactions.cycle_previewers_next = function(prompt_bufnr)\n  action_state.get_current_picker(prompt_bufnr):cycle_previewers(1)\nend\n\n--- Cycle to the previous previewer if there is one available.<br>\n--- This action is not mapped on default.\n---@param prompt_bufnr number: The prompt bufnr\nactions.cycle_previewers_prev = function(prompt_bufnr)\n  action_state.get_current_picker(prompt_bufnr):cycle_previewers(-1)\nend\n\n--- Removes the selected picker in |builtin.pickers|.<br>\n--- This action is not mapped by default and only intended for |builtin.pickers|.\n---@param prompt_bufnr number: The prompt bufnr\nactions.remove_selected_picker = function(prompt_bufnr)\n  local curr_picker = action_state.get_current_picker(prompt_bufnr)\n  local curr_entry = action_state.get_selected_entry()\n  local cached_pickers = state.get_global_key \"cached_pickers\"\n\n  if not curr_entry then\n    return\n  end\n\n  local selection_index, _ = utils.list_find(function(v)\n    if curr_entry.value == v.value then\n      return true\n    end\n    return false\n  end, curr_picker.finder.results)\n\n  curr_picker:delete_selection(function()\n    table.remove(cached_pickers, selection_index)\n  end)\n\n  if #cached_pickers == 0 then\n    actions.close(prompt_bufnr)\n  end\nend\n\n--- Display the keymaps of registered actions similar to which-key.nvim.<br>\n--- - Notes:\n---   - The defaults can be overridden via |action_generate.which_key|.\n---@param prompt_bufnr number: The prompt bufnr\nactions.which_key = function(prompt_bufnr, opts)\n  opts = opts or {}\n  opts.max_height = vim.F.if_nil(opts.max_height, 0.4)\n  opts.only_show_current_mode = vim.F.if_nil(opts.only_show_current_mode, true)\n  opts.mode_width = vim.F.if_nil(opts.mode_width, 1)\n  opts.keybind_width = vim.F.if_nil(opts.keybind_width, 7)\n  opts.name_width = vim.F.if_nil(opts.name_width, 30)\n  opts.line_padding = vim.F.if_nil(opts.line_padding, 1)\n  opts.separator = vim.F.if_nil(opts.separator, \" -> \")\n  opts.close_with_action = vim.F.if_nil(opts.close_with_action, true)\n  opts.normal_hl = vim.F.if_nil(opts.normal_hl, \"TelescopePrompt\")\n  opts.border_hl = vim.F.if_nil(opts.border_hl, \"TelescopePromptBorder\")\n  opts.winblend = vim.F.if_nil(opts.winblend, conf.winblend)\n  if type(opts.winblend) == \"function\" then\n    opts.winblend = opts.winblend()\n  end\n  opts.zindex = vim.F.if_nil(opts.zindex, 100)\n  opts.column_padding = vim.F.if_nil(opts.column_padding, \"  \")\n\n  -- Assigning into 'opts.column_indent' would override a number with a string and\n  -- cause issues with subsequent calls, keep a local copy of the string instead\n  local column_indent = table.concat(utils.repeated_table(vim.F.if_nil(opts.column_indent, 4), \" \"))\n\n  -- close on repeated keypress\n  local km_bufs = (function()\n    local ret = {}\n    local bufs = api.nvim_list_bufs()\n    for _, buf in ipairs(bufs) do\n      for _, bufname in ipairs { \"_TelescopeWhichKey\", \"_TelescopeWhichKeyBorder\" } do\n        if string.find(api.nvim_buf_get_name(buf), bufname) then\n          table.insert(ret, buf)\n        end\n      end\n    end\n    return ret\n  end)()\n  if not vim.tbl_isempty(km_bufs) then\n    for _, buf in ipairs(km_bufs) do\n      utils.buf_delete(buf)\n      local win_ids = vim.fn.win_findbuf(buf)\n      for _, win_id in ipairs(win_ids) do\n        pcall(api.nvim_win_close, win_id, true)\n      end\n    end\n    return\n  end\n\n  local displayer = entry_display.create {\n    separator = opts.separator,\n    items = {\n      { width = opts.mode_width },\n      { width = opts.keybind_width },\n      { width = opts.name_width },\n    },\n  }\n\n  local make_display = function(mapping)\n    return displayer {\n      { mapping.mode, vim.F.if_nil(opts.mode_hl, \"TelescopeResultsConstant\") },\n      { mapping.keybind, vim.F.if_nil(opts.keybind_hl, \"TelescopeResultsVariable\") },\n      { mapping.name, vim.F.if_nil(opts.name_hl, \"TelescopeResultsFunction\") },\n    }\n  end\n\n  local mappings = {}\n  local mode = api.nvim_get_mode().mode\n  for _, v in pairs(action_utils.get_registered_mappings(prompt_bufnr)) do\n    if v.desc and v.desc ~= \"which_key\" and v.desc ~= \"nop\" then\n      if not opts.only_show_current_mode or mode == v.mode then\n        table.insert(mappings, { mode = v.mode, keybind = v.keybind, name = v.desc })\n        if v.desc == \"<anonymous>\" then\n          utils.notify(\"actions.which_key\", {\n            msg = \"No name available for anonymous functions.\",\n            level = \"INFO\",\n            once = true,\n          })\n        end\n      end\n    end\n  end\n\n  table.sort(mappings, function(x, y)\n    if x.name < y.name then\n      return true\n    elseif x.name == y.name then\n      -- show normal mode as the standard mode first\n      if x.mode > y.mode then\n        return true\n      else\n        return false\n      end\n    else\n      return false\n    end\n  end)\n\n  local entry_width = #opts.column_padding\n    + opts.mode_width\n    + opts.keybind_width\n    + opts.name_width\n    + (3 * #opts.separator)\n  local num_total_columns = math.floor((vim.o.columns - #column_indent) / entry_width)\n  opts.num_rows =\n    math.min(math.ceil(#mappings / num_total_columns), resolver.resolve_height(opts.max_height)(_, _, vim.o.lines))\n  local total_available_entries = opts.num_rows * num_total_columns\n  local winheight = opts.num_rows + 2 * opts.line_padding\n\n  -- place hints at top or bottom relative to prompt\n  local win_central_row = function(win_nr)\n    return api.nvim_win_get_position(win_nr)[1] + 0.5 * api.nvim_win_get_height(win_nr)\n  end\n  -- TODO(fdschmidt93|l-kershaw): better generalization of where to put which key float\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  local prompt_row = win_central_row(picker.prompt_win)\n  local results_row = win_central_row(picker.results_win)\n  local preview_row = picker.preview_win and win_central_row(picker.preview_win) or results_row\n  local prompt_pos = prompt_row < 0.4 * vim.o.lines\n    or prompt_row < 0.6 * vim.o.lines and results_row + preview_row < vim.o.lines\n\n  local modes = { n = \"Normal\", i = \"Insert\" }\n  local title_mode = opts.only_show_current_mode and modes[mode] .. \" Mode \" or \"\"\n  local title_text = title_mode .. \"Keymaps\"\n  local popup_opts = {\n    relative = \"editor\",\n    enter = false,\n    minwidth = vim.o.columns,\n    maxwidth = vim.o.columns,\n    minheight = winheight,\n    maxheight = winheight,\n    line = prompt_pos == true and vim.o.lines - winheight + 1 or 1,\n    col = 0,\n    border = { prompt_pos and 1 or 0, 0, not prompt_pos and 1 or 0, 0 },\n    borderchars = { prompt_pos and \"─\" or \" \", \"\", not prompt_pos and \"─\" or \" \", \"\", \"\", \"\", \"\", \"\" },\n    noautocmd = true,\n    title = { { text = title_text, pos = prompt_pos and \"N\" or \"S\" } },\n    zindex = opts.zindex,\n  }\n  local km_win_id, km_opts = popup.create(\"\", popup_opts)\n  local km_buf = api.nvim_win_get_buf(km_win_id)\n  api.nvim_buf_set_name(km_buf, \"_TelescopeWhichKey\")\n  api.nvim_buf_set_name(km_opts.border.bufnr, \"_TelescopeTelescopeWhichKeyBorder\")\n  vim.wo[km_win_id].winhl = \"Normal:\" .. opts.normal_hl\n  vim.wo[km_opts.border.win_id].winhl = \"Normal:\" .. opts.border_hl\n  vim.wo[km_win_id].winblend = opts.winblend\n  vim.wo[km_win_id].foldenable = false\n\n  api.nvim_create_autocmd(\"BufLeave\", {\n    buffer = km_buf,\n    once = true,\n    callback = function()\n      pcall(api.nvim_win_close, km_win_id, true)\n      pcall(api.nvim_win_close, km_opts.border.win_id, true)\n      require(\"telescope.utils\").buf_delete(km_buf)\n    end,\n  })\n\n  api.nvim_buf_set_lines(\n    km_buf,\n    0,\n    -1,\n    false,\n    utils.repeated_table(opts.num_rows + 2 * opts.line_padding, column_indent)\n  )\n\n  local keymap_highlights = api.nvim_create_namespace \"telescope_whichkey\"\n  local highlights = {}\n  for index, mapping in ipairs(mappings) do\n    local row = utils.cycle(index, opts.num_rows) - 1 + opts.line_padding\n    local prev_line = api.nvim_buf_get_lines(km_buf, row, row + 1, false)[1]\n    if index == total_available_entries and total_available_entries > #mappings then\n      local new_line = prev_line .. \"...\"\n      api.nvim_buf_set_lines(km_buf, row, row + 1, false, { new_line })\n      break\n    end\n    local display, display_hl = make_display(mapping)\n    local new_line = prev_line .. display .. opts.column_padding -- incl. padding\n    api.nvim_buf_set_lines(km_buf, row, row + 1, false, { new_line })\n    table.insert(highlights, { hl = display_hl, row = row, col = #prev_line })\n  end\n\n  -- highlighting only after line setting as a.nvim_buf_set_lines removes hl otherwise\n  for _, highlight_tbl in pairs(highlights) do\n    local highlight = highlight_tbl.hl\n    local row_ = highlight_tbl.row\n    local col = highlight_tbl.col\n    for _, hl_block in ipairs(highlight) do\n      utils.hl_range(\n        km_buf,\n        keymap_highlights,\n        hl_block[2],\n        { row_, col + hl_block[1][1] },\n        { row_, col + hl_block[1][2] }\n      )\n    end\n  end\n\n  -- if close_with_action is true, close the which_key window when any action is triggered\n  -- otherwise close the window when the prompt buffer is closed\n  local close_event, close_pattern, close_buffer\n  if opts.close_with_action then\n    close_event, close_pattern, close_buffer = \"User\", \"TelescopeKeymap\", nil\n  else\n    close_event, close_pattern, close_buffer = \"BufWinLeave\", nil, prompt_bufnr\n  end\n  -- only set up autocommand after showing preview completed\n  vim.schedule(function()\n    api.nvim_create_autocmd(close_event, {\n      pattern = close_pattern,\n      buffer = close_buffer,\n      once = true,\n      callback = function()\n        vim.schedule(function()\n          pcall(api.nvim_win_close, km_win_id, true)\n          pcall(api.nvim_win_close, km_opts.border.win_id, true)\n          utils.buf_delete(km_buf)\n        end)\n      end,\n    })\n  end)\nend\n\n--- Move from a none fuzzy search to a fuzzy one<br>\n--- This action is meant to be used in live_grep and lsp_dynamic_workspace_symbols\n---@param prompt_bufnr number: The prompt bufnr\nactions.to_fuzzy_refine = function(prompt_bufnr)\n  local line = action_state.get_current_line()\n  local opts = (function()\n    local opts = {\n      sorter = conf.generic_sorter {},\n    }\n\n    local title = action_state.get_current_picker(prompt_bufnr).prompt_title\n    if title == \"Live Grep\" then\n      opts.prefix = \"Find Word\"\n    elseif title == \"LSP Dynamic Workspace Symbols\" then\n      opts.prefix = \"LSP Workspace Symbols\"\n      opts.sorter = conf.prefilter_sorter {\n        tag = \"symbol_type\",\n        sorter = opts.sorter,\n      }\n    else\n      opts.prefix = \"Fuzzy over\"\n    end\n\n    return opts\n  end)()\n\n  require(\"telescope.actions.generate\").refine(prompt_bufnr, {\n    prompt_title = string.format(\"%s (%s)\", opts.prefix, line),\n    sorter = opts.sorter,\n  })\nend\n\n--- Delete the selected mark or all the marks selected using multi selection.\n---@param prompt_bufnr number: The prompt bufnr\nactions.delete_mark = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:delete_selection(function(selection)\n    local bufname = selection.filename\n    local bufnr = vim.fn.bufnr(bufname)\n    local mark = selection.ordinal:sub(1, 1)\n\n    local success\n    if mark:match \"%u\" then\n      success = pcall(api.nvim_del_mark, mark)\n    else\n      success = pcall(api.nvim_buf_del_mark, bufnr, mark)\n    end\n    return success\n  end)\nend\n\n--- Insert the word under the cursor of the original (pre-Telescope) window\n---@param prompt_bufnr number: The prompt bufnr\nactions.insert_original_cword = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:set_prompt(current_picker.original_cword, false)\nend\n\n--- Insert the WORD under the cursor of the original (pre-Telescope) window\n---@param prompt_bufnr number: The prompt bufnr\nactions.insert_original_cWORD = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:set_prompt(current_picker.original_cWORD, false)\nend\n\n--- Insert the file under the cursor of the original (pre-Telescope) window\n---@param prompt_bufnr number: The prompt bufnr\nactions.insert_original_cfile = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:set_prompt(current_picker.original_cfile, false)\nend\n\n--- Insert the line under the cursor of the original (pre-Telescope) window\n---@param prompt_bufnr number: The prompt bufnr\nactions.insert_original_cline = function(prompt_bufnr)\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  current_picker:set_prompt(current_picker.original_cline, false)\nend\n\nactions.nop = function(_) end\n\nactions.mouse_click = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n\n  local pos = vim.fn.getmousepos()\n  if pos.winid == picker.results_win then\n    vim.schedule(function()\n      picker:set_selection(pos.line - 1)\n    end)\n  elseif pos.winid == picker.preview_win then\n    vim.schedule(function()\n      actions.select_default(prompt_bufnr)\n    end)\n  end\n  return \"\"\nend\n\nactions.double_mouse_click = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n\n  local pos = vim.fn.getmousepos()\n  if pos.winid == picker.results_win then\n    vim.schedule(function()\n      picker:set_selection(pos.line - 1)\n      actions.select_default(prompt_bufnr)\n    end)\n  end\n  return \"\"\nend\n\n-- ==================================================\n-- Transforms modules and sets the correct metatables.\n-- ==================================================\nactions = transform_mod(actions)\nreturn actions\n"
  },
  {
    "path": "lua/telescope/actions/layout.lua",
    "content": "---@tag telescope.actions.layout\n---@config { [\"module\"] = \"telescope.actions.layout\", [\"name\"] = \"ACTIONS_LAYOUT\" }\n\n---@brief [[\n--- The layout actions are actions to be used to change the layout of a picker.\n---@brief ]]\n\nlocal action_state = require \"telescope.actions.state\"\nlocal state = require \"telescope.state\"\nlocal layout_strats = require \"telescope.pickers.layout_strategies\"\n\nlocal transform_mod = require(\"telescope.actions.mt\").transform_mod\n\nlocal action_layout = setmetatable({}, {\n  __index = function(_, k)\n    error(\"'telescope.actions.layout' does not have a value: \" .. tostring(k))\n  end,\n})\n\n--- Toggle preview window.\n--- - Note: preview window can be toggled even if preview is set to false.\n---\n--- This action is not mapped by default.\n---@param prompt_bufnr number: The prompt bufnr\naction_layout.toggle_preview = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  local status = state.get_status(picker.prompt_bufnr)\n\n  local preview_winid = status.layout.preview and status.layout.preview.winid\n  if picker.previewer and preview_winid then\n    picker.hidden_previewer = picker.previewer\n    picker.previewer = nil\n  elseif picker.hidden_previewer and not preview_winid then\n    picker.previewer = picker.hidden_previewer\n    picker.hidden_previewer = nil\n  else\n    return\n  end\n  picker:full_layout_update()\nend\n\n-- TODO IMPLEMENT (mentored project available, contact @l-kershaw)\naction_layout.toggle_padding = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  -- if padding ~= 0\n  --    1. Save `height` and `width` of picker\n  --    2. Set both to `{padding = 0}`\n  -- else\n  --    1. Lookup previous `height` and `width` of picker\n  --    2. Set both to previous values\n  picker:full_layout_update()\nend\n\n--- Toggles the `prompt_position` option between \"top\" and \"bottom\".\n--- Checks if `prompt_position` is an option for the current layout.\n---\n--- This action is not mapped by default.\n---@param prompt_bufnr number: The prompt bufnr\naction_layout.toggle_prompt_position = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  picker.layout_config = picker.layout_config or {}\n  picker.layout_config[picker.layout_strategy] = picker.layout_config[picker.layout_strategy] or {}\n  -- flex layout is weird and needs handling separately\n  if picker.layout_strategy == \"flex\" then\n    picker.layout_config.flex.horizontal = picker.layout_config.flex.horizontal or {}\n    picker.layout_config.flex.vertical = picker.layout_config.flex.vertical or {}\n    local old_pos = vim.F.if_nil(\n      picker.layout_config.flex[picker.__flex_strategy].prompt_position,\n      picker.layout_config[picker.__flex_strategy].prompt_position\n    )\n    local new_pos = old_pos == \"top\" and \"bottom\" or \"top\"\n    picker.layout_config[picker.__flex_strategy].prompt_position = new_pos\n    picker.layout_config.flex[picker.__flex_strategy].prompt_position = new_pos\n    picker:full_layout_update()\n  elseif layout_strats._configurations[picker.layout_strategy].prompt_position then\n    if picker.layout_config.prompt_position == \"top\" then\n      picker.layout_config.prompt_position = \"bottom\"\n      picker.layout_config[picker.layout_strategy].prompt_position = \"bottom\"\n    else\n      picker.layout_config.prompt_position = \"top\"\n      picker.layout_config[picker.layout_strategy].prompt_position = \"top\"\n    end\n    picker:full_layout_update()\n  end\nend\n\n--- Toggles the `mirror` option between `true` and `false`.\n--- Checks if `mirror` is an option for the current layout.\n---\n--- This action is not mapped by default.\n---@param prompt_bufnr number: The prompt bufnr\naction_layout.toggle_mirror = function(prompt_bufnr)\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  -- flex layout is weird and needs handling separately\n  if picker.layout_strategy == \"flex\" then\n    picker.layout_config.flex.horizontal = picker.layout_config.flex.horizontal or {}\n    picker.layout_config.flex.vertical = picker.layout_config.flex.vertical or {}\n    local new_mirror = not picker.layout_config.flex[picker.__flex_strategy].mirror\n    picker.layout_config[picker.__flex_strategy].mirror = new_mirror\n    picker.layout_config.flex[picker.__flex_strategy].mirror = new_mirror\n    picker:full_layout_update()\n  elseif layout_strats._configurations[picker.layout_strategy].mirror then\n    picker.layout_config = picker.layout_config or {}\n    local new_mirror = not picker.layout_config.mirror\n    picker.layout_config.mirror = new_mirror\n    picker.layout_config[picker.layout_strategy] = picker.layout_config[picker.layout_strategy] or {}\n    picker.layout_config[picker.layout_strategy].mirror = new_mirror\n    picker:full_layout_update()\n  end\nend\n\n-- Helper function for `cycle_layout_next` and `cycle_layout_prev`.\nlocal get_cycle_layout = function(dir)\n  return function(prompt_bufnr)\n    local picker = action_state.get_current_picker(prompt_bufnr)\n    if picker.__layout_index then\n      picker.__layout_index = ((picker.__layout_index + dir - 1) % #picker.__cycle_layout_list) + 1\n    else\n      picker.__layout_index = 1\n    end\n    local new_layout = picker.__cycle_layout_list[picker.__layout_index]\n    if type(new_layout) == \"string\" then\n      picker.layout_strategy = new_layout\n      picker.layout_config = {}\n      picker.previewer = picker.all_previewers and picker.all_previewers[1] or nil\n    elseif type(new_layout) == \"table\" then\n      picker.layout_strategy = new_layout.layout_strategy\n      picker.layout_config = new_layout.layout_config or {}\n      picker.previewer = (new_layout.previewer == nil and picker.all_previewers[picker.current_previewer_index])\n        or new_layout.previewer\n    else\n      error(\"Not a valid layout setup: \" .. vim.inspect(new_layout) .. \"\\nShould be a string or a table\")\n    end\n\n    picker:full_layout_update()\n  end\nend\n\n--- Cycles to the next layout in `cycle_layout_list`.\n---\n--- This action is not mapped by default.\n---@param prompt_bufnr number: The prompt bufnr\naction_layout.cycle_layout_next = get_cycle_layout(1)\n\n--- Cycles to the previous layout in `cycle_layout_list`.\n---\n--- This action is not mapped by default.\n---@param prompt_bufnr number: The prompt bufnr\naction_layout.cycle_layout_prev = get_cycle_layout(-1)\n\naction_layout = transform_mod(action_layout)\nreturn action_layout\n"
  },
  {
    "path": "lua/telescope/actions/mt.lua",
    "content": "local action_mt = {}\n\n--- Checks all replacement combinations to determine which function to run.\n--- If no replacement can be found, then it will run the original function\nlocal run_replace_or_original = function(replacements, original_func, ...)\n  for _, replacement_map in ipairs(replacements or {}) do\n    for condition, replacement in pairs(replacement_map) do\n      if condition == true or condition(...) then\n        return replacement(...)\n      end\n    end\n  end\n\n  return original_func(...)\nend\n\nlocal append_action_copy = function(new, v, old)\n  table.insert(new, v)\n  new._func[v] = old._func[v]\n  new._static_pre[v] = old._static_pre[v]\n  new._pre[v] = old._pre[v]\n  new._replacements[v] = old._replacements[v]\n  new._static_post[v] = old._static_post[v]\n  new._post[v] = old._post[v]\nend\n\n-- TODO(conni2461): Not a fan of this solution/hack. Needs to be addressed\nlocal all_mts = {}\n\n--TODO(conni2461): It gets worse. This is so bad but because we have now n mts for n actions\n--                 We have to check all actions for relevant mts to set replace and before, after\n--                 Its not bad for performance because its being called on startup when we attach mappings.\n--                 Its just a bad solution\nlocal find_all_relevant_mts = function(action_name, f)\n  for _, mt in ipairs(all_mts) do\n    for fun, _ in pairs(mt._func) do\n      if fun == action_name then\n        f(mt)\n      end\n    end\n  end\nend\n\n--- an action is metatable which allows replacement(prepend or append) of the function\n---@class Action\n---@field _func table<string, function>: the original action function\n---@field _static_pre table<string, function>: will allways run before the function even if its replaced\n---@field _pre table<string, function>: the functions that will run before the action\n---@field _replacements table<string, function>: the function that replaces this action\n---@field _static_post table<string, function>: will allways run after the function even if its replaced\n---@field _post table<string, function>: the functions that will run after the action\naction_mt.create = function()\n  local mt = {\n    __call = function(t, ...)\n      local values = {}\n      for _, action_name in ipairs(t) do\n        if t._static_pre[action_name] then\n          t._static_pre[action_name](...)\n        end\n        if vim.tbl_isempty(t._replacements) and t._pre[action_name] then\n          t._pre[action_name](...)\n        end\n\n        local result = {\n          run_replace_or_original(t._replacements[action_name], t._func[action_name], ...),\n        }\n        for _, res in ipairs(result) do\n          table.insert(values, res)\n        end\n\n        if t._static_post[action_name] then\n          t._static_post[action_name](...)\n        end\n        if vim.tbl_isempty(t._replacements) and t._post[action_name] then\n          t._post[action_name](...)\n        end\n      end\n\n      return unpack(values)\n    end,\n\n    __add = function(lhs, rhs)\n      local new_action = setmetatable({}, action_mt.create())\n      for _, v in ipairs(lhs) do\n        append_action_copy(new_action, v, lhs)\n      end\n\n      for _, v in ipairs(rhs) do\n        append_action_copy(new_action, v, rhs)\n      end\n      new_action.clear = function()\n        lhs.clear()\n        rhs.clear()\n      end\n\n      return new_action\n    end,\n\n    _func = {},\n    _static_pre = {},\n    _pre = {},\n    _replacements = {},\n    _static_post = {},\n    _post = {},\n  }\n\n  mt.__index = mt\n\n  mt.clear = function()\n    mt._pre = {}\n    mt._replacements = {}\n    mt._post = {}\n  end\n\n  --- Replace the reference to the function with a new one temporarily\n  function mt:replace(v)\n    assert(#self == 1, \"Cannot replace an already combined action\")\n\n    return self:replace_map { [true] = v }\n  end\n\n  function mt:replace_if(condition, replacement)\n    assert(#self == 1, \"Cannot replace an already combined action\")\n\n    return self:replace_map { [condition] = replacement }\n  end\n\n  --- Replace table with\n  -- Example:\n  --\n  -- actions.select:replace_map {\n  --   [function() return filetype == 'lua' end] = actions.file_split,\n  --   [function() return filetype == 'other' end] = actions.file_split_edit,\n  -- }\n  function mt:replace_map(tbl)\n    assert(#self == 1, \"Cannot replace an already combined action\")\n\n    local action_name = self[1]\n    find_all_relevant_mts(action_name, function(another)\n      if not another._replacements[action_name] then\n        another._replacements[action_name] = {}\n      end\n\n      table.insert(another._replacements[action_name], 1, tbl)\n    end)\n\n    return self\n  end\n\n  function mt:enhance(opts)\n    assert(#self == 1, \"Cannot enhance already combined actions\")\n\n    local action_name = self[1]\n    find_all_relevant_mts(action_name, function(another)\n      if opts.pre then\n        another._pre[action_name] = opts.pre\n      end\n\n      if opts.post then\n        another._post[action_name] = opts.post\n      end\n    end)\n\n    return self\n  end\n\n  table.insert(all_mts, mt)\n  return mt\nend\n\naction_mt.transform = function(k, mt, _, v)\n  local res = setmetatable({ k }, mt)\n  if type(v) == \"table\" then\n    res._static_pre[k] = v.pre\n    res._static_post[k] = v.post\n    res._func[k] = v.action\n  else\n    res._func[k] = v\n  end\n  return res\nend\n\naction_mt.transform_mod = function(mod)\n  -- Pass the metatable of the module if applicable.\n  --    This allows for custom errors, lookups, etc.\n  local redirect = setmetatable({}, getmetatable(mod) or {})\n\n  for k, v in pairs(mod) do\n    local mt = action_mt.create()\n    redirect[k] = action_mt.transform(k, mt, _, v)\n  end\n\n  redirect._clear = function()\n    for k, v in pairs(redirect) do\n      if k ~= \"_clear\" then\n        pcall(v.clear)\n      end\n    end\n  end\n\n  return redirect\nend\n\naction_mt.clear_all = function()\n  for _, v in ipairs(all_mts) do\n    pcall(v.clear)\n  end\nend\n\nreturn action_mt\n"
  },
  {
    "path": "lua/telescope/actions/set.lua",
    "content": "---@tag telescope.actions.set\n---@config { [\"module\"] = \"telescope.actions.set\", [\"name\"] = \"ACTIONS_SET\" }\n\n---@brief [[\n--- Telescope action sets are used to provide an interface for managing\n--- actions that all primarily do the same thing, but with slight tweaks.\n---\n--- For example, when editing files you may want it in the current split,\n--- a vertical split, etc. Instead of making users have to overwrite EACH\n--- of those every time they want to change this behavior, they can instead\n--- replace the `set` itself and then it will work great and they're done.\n---@brief ]]\n\nlocal api = vim.api\n\nlocal log = require \"telescope.log\"\nlocal Path = require \"plenary.path\"\nlocal state = require \"telescope.state\"\nlocal utils = require \"telescope.utils\"\n\nlocal action_state = require \"telescope.actions.state\"\n\nlocal transform_mod = require(\"telescope.actions.mt\").transform_mod\n\nlocal action_set = setmetatable({}, {\n  __index = function(_, k)\n    error(\"'telescope.actions.set' does not have a value: \" .. tostring(k))\n  end,\n})\n\n--- Move the current selection of a picker {change} rows.\n--- Handles not overflowing / underflowing the list.\n---@param prompt_bufnr number: The prompt bufnr\n---@param change number: The amount to shift the selection by\naction_set.shift_selection = function(prompt_bufnr, change)\n  local count = vim.v.count\n  count = count == 0 and 1 or count\n  count = api.nvim_get_mode().mode == \"n\" and count or 1\n  action_state.get_current_picker(prompt_bufnr):move_selection(change * count)\nend\n\n--- Select the current entry. This is the action set to overwrite common\n--- actions by the user.\n---\n--- By default maps to editing a file.\n---@param prompt_bufnr number: The prompt bufnr\n---@param type string: The type of selection to make\n--          Valid types include: \"default\", \"horizontal\", \"vertical\", \"tabedit\"\naction_set.select = function(prompt_bufnr, type)\n  return action_set.edit(prompt_bufnr, action_state.select_key_to_edit_key(type))\nend\n\n-- goal: currently we have a workaround in actions/init.lua where we do this for all files\n-- action_set.select = {\n--   -- Will not be called if `select_default` is replaced rather than `action_set.select` because we never get here\n--   pre = function(prompt_bufnr)\n--     action_state.get_current_history():append(\n--       action_state.get_current_line(),\n--       action_state.get_current_picker(prompt_bufnr)\n--     )\n--   end,\n--   action = function(prompt_bufnr, type)\n--     return action_set.edit(prompt_bufnr, action_state.select_key_to_edit_key(type))\n--   end\n-- }\n\nlocal edit_buffer\ndo\n  local map = {\n    drop = \"drop\",\n    [\"tab drop\"] = \"tab drop\",\n    edit = \"buffer\",\n    new = \"sbuffer\",\n    vnew = \"vert sbuffer\",\n    [\"leftabove new\"] = \"leftabove sbuffer\",\n    [\"leftabove vnew\"] = \"leftabove vert sbuffer\",\n    [\"rightbelow new\"] = \"rightbelow sbuffer\",\n    [\"rightbelow vnew\"] = \"rightbelow vert sbuffer\",\n    [\"topleft new\"] = \"topleft sbuffer\",\n    [\"topleft vnew\"] = \"topleft vert sbuffer\",\n    [\"botright new\"] = \"botright sbuffer\",\n    [\"botright vnew\"] = \"botright vert sbuffer\",\n    tabedit = \"tab sb\",\n  }\n\n  edit_buffer = function(command, bufnr)\n    local buf_command = map[command]\n    if buf_command == nil then\n      local valid_commands = vim.tbl_map(function(cmd)\n        return string.format(\"%q\", cmd)\n      end, vim.tbl_keys(map))\n      table.sort(valid_commands)\n      error(\n        string.format(\n          \"There was no associated buffer command for %q.\\nValid commands are: %s.\",\n          command,\n          table.concat(valid_commands, \", \")\n        )\n      )\n    end\n    if buf_command ~= \"drop\" and buf_command ~= \"tab drop\" then\n      vim.cmd(string.format(\"%s %d\", buf_command, bufnr))\n    else\n      vim.cmd(string.format(\"%s %s\", buf_command, vim.fn.fnameescape(api.nvim_buf_get_name(bufnr))))\n    end\n  end\nend\n\n--- Edit a file based on the current selection.\n---@param prompt_bufnr number: The prompt bufnr\n---@param command string: The command to use to open the file.\n--      Valid commands are:\n--      - \"edit\"\n--      - \"new\"\n--      - \"vedit\"\n--      - \"tabedit\"\n--      - \"drop\"\n--      - \"tab drop\"\n--      - \"leftabove new\"\n--      - \"leftabove vnew\"\n--      - \"rightbelow new\"\n--      - \"rightbelow vnew\"\n--      - \"topleft new\"\n--      - \"topleft vnew\"\n--      - \"botright new\"\n--      - \"botright vnew\"\naction_set.edit = function(prompt_bufnr, command)\n  local entry = action_state.get_selected_entry()\n\n  if not entry then\n    utils.notify(\"actions.set.edit\", {\n      msg = \"Nothing currently selected\",\n      level = \"WARN\",\n    })\n    return\n  end\n\n  local filename, row, col\n\n  if entry.path or entry.filename then\n    filename = entry.path or entry.filename\n\n    -- TODO: Check for off-by-one\n    row = entry.row or entry.lnum\n    col = entry.col\n  elseif not entry.bufnr then\n    -- TODO: Might want to remove this and force people\n    -- to put stuff into `filename`\n    local value = entry.value\n    if not value then\n      utils.notify(\"actions.set.edit\", {\n        msg = \"Could not do anything with blank line...\",\n        level = \"WARN\",\n      })\n      return\n    end\n\n    if type(value) == \"table\" then\n      value = entry.display\n    end\n\n    local sections = vim.split(value, \":\")\n\n    filename = sections[1]\n    row = tonumber(sections[2])\n    col = tonumber(sections[3])\n  end\n\n  local entry_bufnr = entry.bufnr\n\n  local picker = action_state.get_current_picker(prompt_bufnr)\n  require(\"telescope.pickers\").on_close_prompt(prompt_bufnr)\n  pcall(api.nvim_set_current_win, picker.original_win_id)\n  local win_id = picker.get_selection_window(picker, entry)\n\n  if picker.push_cursor_on_edit then\n    vim.cmd \"normal! m'\"\n  end\n\n  if picker.push_tagstack_on_edit then\n    local from = { vim.fn.bufnr \"%\", vim.fn.line \".\", vim.fn.col \".\", 0 }\n    local items = { { tagname = vim.fn.expand \"<cword>\", from = from } }\n    vim.fn.settagstack(vim.fn.win_getid(), { items = items }, \"t\")\n  end\n\n  if win_id ~= 0 and api.nvim_get_current_win() ~= win_id then\n    api.nvim_set_current_win(win_id)\n  end\n\n  if entry_bufnr then\n    if not vim.bo[entry_bufnr].buflisted then\n      vim.bo[entry_bufnr].buflisted = true\n    end\n    edit_buffer(command, entry_bufnr)\n  else\n    -- check if we didn't pick a different buffer\n    -- prevents restarting lsp server\n    if api.nvim_buf_get_name(0) ~= filename or command ~= \"edit\" then\n      filename = Path:new(filename):normalize(vim.uv.cwd())\n      pcall(vim.cmd, string.format(\"%s %s\", command, vim.fn.fnameescape(filename)))\n    end\n  end\n\n  -- HACK: fixes folding: https://github.com/nvim-telescope/telescope.nvim/issues/699\n  if vim.wo[0][0].foldmethod == \"expr\" then\n    vim.schedule(function()\n      vim.wo[0][0].foldmethod = \"expr\"\n    end)\n  end\n\n  local pos = api.nvim_win_get_cursor(0)\n  if col == nil then\n    if row == pos[1] then\n      col = pos[2] + 1\n    elseif row == nil then\n      row, col = pos[1], pos[2] + 1\n    else\n      col = 1\n    end\n  end\n\n  if row and col then\n    if api.nvim_buf_get_name(0) == filename then\n      vim.cmd [[normal! m']]\n    end\n    local ok, err_msg = pcall(api.nvim_win_set_cursor, 0, { row, col })\n    if not ok then\n      log.debug(\"Failed to move to cursor:\", err_msg, row, col)\n    end\n  end\nend\n\n---@param prompt_bufnr integer\n---@return table? previewer\n---@return number? speed\nlocal __scroll_previewer = function(prompt_bufnr)\n  local previewer = action_state.get_current_picker(prompt_bufnr).previewer\n  local status = state.get_status(prompt_bufnr)\n  local preview_winid = status.layout.preview and status.layout.preview.winid\n\n  -- Check if we actually have a previewer and a preview window\n  if type(previewer) ~= \"table\" or not preview_winid then\n    return\n  end\n\n  local default_speed = api.nvim_win_get_height(preview_winid) / 2\n  local speed = status.picker.layout_config.scroll_speed or default_speed\n  return previewer, speed\nend\n\n--- Scrolls the previewer up or down.\n--- Defaults to a half page scroll, but can be overridden using the `scroll_speed`\n--- option in `layout_config`. See |telescope.layout| for more details.\n---@param prompt_bufnr number: The prompt bufnr\n---@param direction number: The direction of the scrolling\n--      Valid directions include: \"1\", \"-1\"\naction_set.scroll_previewer = function(prompt_bufnr, direction)\n  local previewer, speed = __scroll_previewer(prompt_bufnr)\n  if previewer and previewer.scroll_fn then\n    previewer:scroll_fn(math.floor(speed * direction))\n  end\nend\n\n--- Scrolls the previewer to the left or right.\n--- Defaults to a half page scroll, but can be overridden using the `scroll_speed`\n--- option in `layout_config`. See |telescope.layout| for more details.\n---@param prompt_bufnr number: The prompt bufnr\n---@param direction number: The direction of the scrolling\n--      Valid directions include: \"1\", \"-1\"\naction_set.scroll_horizontal_previewer = function(prompt_bufnr, direction)\n  local previewer, speed = __scroll_previewer(prompt_bufnr)\n  if previewer and previewer.scroll_horizontal_fn then\n    previewer:scroll_horizontal_fn(math.floor(speed * direction))\n  end\nend\n\n--- Scrolls the results up or down.\n--- Defaults to a half page scroll, but can be overridden using the `scroll_speed`\n--- option in `layout_config`. See |telescope.layout| for more details.\n---@param prompt_bufnr number: The prompt bufnr\n---@param direction number: The direction of the scrolling\n--      Valid directions include: \"1\", \"-1\"\naction_set.scroll_results = function(prompt_bufnr, direction)\n  local status = state.get_status(prompt_bufnr)\n  local default_speed = api.nvim_win_get_height(status.layout.results.winid) / 2\n  local speed = status.picker.layout_config.scroll_speed or default_speed\n\n  local input = direction > 0 and [[\u0005]] or [[\u0019]]\n\n  api.nvim_win_call(status.layout.results.winid, function()\n    vim.cmd([[normal! ]] .. math.floor(speed) .. input)\n  end)\n\n  action_set.shift_selection(prompt_bufnr, math.floor(speed) * direction)\nend\n\n--- Scrolls the results to the left or right.\n--- Defaults to a half page scroll, but can be overridden using the `scroll_speed`\n--- option in `layout_config`. See |telescope.layout| for more details.\n---@param prompt_bufnr number: The prompt bufnr\n---@param direction number: The direction of the scrolling\n--      Valid directions include: \"1\", \"-1\"\naction_set.scroll_horizontal_results = function(prompt_bufnr, direction)\n  local status = state.get_status(prompt_bufnr)\n  local default_speed = api.nvim_win_get_height(status.results_win) / 2\n  local speed = status.picker.layout_config.scroll_speed or default_speed\n\n  local input = direction > 0 and [[zl]] or [[zh]]\n\n  api.nvim_win_call(status.results_win, function()\n    vim.cmd([[normal! ]] .. math.floor(speed) .. input)\n  end)\nend\n\n-- ==================================================\n-- Transforms modules and sets the corect metatables.\n-- ==================================================\naction_set = transform_mod(action_set)\nreturn action_set\n"
  },
  {
    "path": "lua/telescope/actions/state.lua",
    "content": "---@tag telescope.actions.state\n---@config { [\"module\"] = \"telescope.actions.state\", [\"name\"] = \"ACTIONS_STATE\" }\n\n---@brief [[\n--- Functions to be used to determine the current state of telescope.\n---\n--- Generally used from within other |telescope.actions|\n---@brief ]]\n\nlocal global_state = require \"telescope.state\"\nlocal conf = require(\"telescope.config\").values\n\nlocal action_state = {}\n\n--- Get the current entry\nfunction action_state.get_selected_entry()\n  return global_state.get_global_key \"selected_entry\"\nend\n\n--- Gets the current line in the search prompt\nfunction action_state.get_current_line()\n  return global_state.get_global_key \"current_line\" or \"\"\nend\n\n--- Gets the current picker\n---@param prompt_bufnr number: The prompt bufnr\nfunction action_state.get_current_picker(prompt_bufnr)\n  return global_state.get_status(prompt_bufnr).picker\nend\n\nlocal select_to_edit_map = {\n  default = \"edit\",\n  horizontal = \"new\",\n  vertical = \"vnew\",\n  tab = \"tabedit\",\n  drop = \"drop\",\n  [\"tab drop\"] = \"tab drop\",\n}\nfunction action_state.select_key_to_edit_key(type)\n  return select_to_edit_map[type]\nend\n\nfunction action_state.get_current_history()\n  local history = global_state.get_global_key \"history\"\n  if not history then\n    if conf.history == false or type(conf.history) ~= \"table\" then\n      history = require(\"telescope.actions.history\").get_simple_history()\n      global_state.set_global_key(\"history\", history)\n    else\n      history = conf.history.handler()\n      global_state.set_global_key(\"history\", history)\n    end\n  end\n\n  return history\nend\n\nreturn action_state\n"
  },
  {
    "path": "lua/telescope/actions/utils.lua",
    "content": "---@tag telescope.actions.utils\n---@config { [\"module\"] = \"telescope.actions.utils\", [\"name\"] = \"ACTIONS_UTILS\" }\n\n---@brief [[\n--- Utilities to wrap functions around picker selections and entries.\n---\n--- Generally used from within other |telescope.actions|\n---@brief ]]\n\nlocal action_state = require \"telescope.actions.state\"\nlocal validate = require(\"telescope.utils\").validate\n\nlocal utils = {}\n\n--- Apply `f` to the entries of the current picker.\n--- - Notes:\n---   - Mapped entries include all currently filtered results, not just the visible ones.\n---   - Indices are 1-indexed, whereas rows are 0-indexed.\n--- - Warning: `map_entries` has no return value.\n---   - The below example showcases how to collect results\n---\n--- Usage:\n--- <code>\n---   local action_state = require \"telescope.actions.state\"\n---   local action_utils = require \"telescope.actions.utils\"\n---   function entry_value_by_row()\n---     local prompt_bufnr = vim.api.nvim_get_current_buf()\n---     local current_picker = action_state.get_current_picker(prompt_bufnr)\n---     local results = {}\n---     action_utils.map_entries(prompt_bufnr, function(entry, index, row)\n---       results[row] = entry.value\n---     end)\n---     return results\n---   end\n--- </code>\n---@param prompt_bufnr number: The prompt bufnr\n---@param f function: Function to map onto entries of picker that takes (entry, index, row) as viable arguments\nfunction utils.map_entries(prompt_bufnr, f)\n  validate(\"f\", f, \"function\")\n\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  local index = 1\n  -- indices are 1-indexed, rows are 0-indexed\n  for entry in current_picker.manager:iter() do\n    local row = current_picker:get_row(index)\n    f(entry, index, row)\n    index = index + 1\n  end\nend\n\n--- Apply `f` to the multi selections of the current picker and return a table of mapped selections.\n--- - Notes:\n---   - Mapped selections may include results not visible in the results pop up.\n---   - Selected entries are returned in order of their selection.\n--- - Warning: `map_selections` has no return value.\n---   - The below example showcases how to collect results\n---\n--- Usage:\n--- <code>\n---   local action_state = require \"telescope.actions.state\"\n---   local action_utils = require \"telescope.actions.utils\"\n---   function selection_by_index()\n---     local prompt_bufnr = vim.api.nvim_get_current_buf()\n---     local current_picker = action_state.get_current_picker(prompt_bufnr)\n---     local results = {}\n---     action_utils.map_selections(prompt_bufnr, function(entry, index)\n---       results[index] = entry.value\n---     end)\n---     return results\n---   end\n--- </code>\n---@param prompt_bufnr number: The prompt bufnr\n---@param f function: Function to map onto selection of picker that takes (selection) as a viable argument\nfunction utils.map_selections(prompt_bufnr, f)\n  validate(\"f\", f, \"function\")\n\n  local current_picker = action_state.get_current_picker(prompt_bufnr)\n  for _, selection in ipairs(current_picker:get_multi_selection()) do\n    f(selection)\n  end\nend\n\n--- Utility to collect mappings of prompt buffer in array of `{mode, keybind, name}`.\n---@param prompt_bufnr number: The prompt bufnr\nfunction utils.get_registered_mappings(prompt_bufnr)\n  local ret = {}\n  for _, mode in ipairs { \"n\", \"i\" } do\n    for _, mapping in ipairs(vim.api.nvim_buf_get_keymap(prompt_bufnr, mode)) do\n      -- ensure only telescope mappings\n      if mapping.desc then\n        if mapping.desc:sub(1, 10) == \"telescope|\" then\n          table.insert(ret, { mode = mode, keybind = mapping.lhs, desc = mapping.desc:sub(11) })\n        elseif mapping.desc:sub(1, 11) == \"telescopej|\" then\n          local fname = utils._get_anon_function_name(vim.json.decode(mapping.desc:sub(12)))\n          fname = fname:lower() == mapping.lhs:lower() and \"<anonymous>\" or fname\n          table.insert(ret, {\n            mode = mode,\n            keybind = mapping.lhs,\n            desc = fname,\n          })\n        end\n      end\n    end\n  end\n  return ret\nend\n\n-- Best effort to infer function names for actions.which_key\nfunction utils._get_anon_function_name(info)\n  local Path = require \"plenary.path\"\n  local fname\n  -- if fn defined in string (ie loadstring) source is string\n  -- if fn defined in file, source is file name prefixed with a `@´\n  local path = Path:new((info.source:gsub(\"@\", \"\")))\n  if not path:exists() then\n    return \"<anonymous>\"\n  end\n  for i, line in ipairs(path:readlines()) do\n    if i == info.linedefined then\n      fname = line\n      break\n    end\n  end\n\n  -- test if assignment or named function, otherwise anon\n  if (fname:match \"=\" == nil) and (fname:match \"function %S+%(\" == nil) then\n    return \"<anonymous>\"\n  else\n    local patterns = {\n      { \"function\", \"\" }, -- remove function\n      { \"local\", \"\" }, -- remove local\n      { \"[%s=]\", \"\" }, -- remove whitespace and =\n      { [=[%[[\"']]=], \"\" }, -- remove left-hand bracket of table assignment\n      { [=[[\"']%]]=], \"\" }, -- remove right-ahnd bracket of table assignment\n      { \"%((.+)%)\", \"\" }, -- remove function arguments\n      { \"(.+)%.\", \"\" }, -- remove TABLE. prefix if available\n    }\n    for _, tbl in ipairs(patterns) do\n      fname = (fname:gsub(tbl[1], tbl[2])) -- make sure only string is returned\n    end\n    -- not sure if this can happen, catch all just in case\n    if fname == nil or fname == \"\" then\n      return \"<anonymous>\"\n    end\n    return fname\n  end\nend\n\nreturn utils\n"
  },
  {
    "path": "lua/telescope/algos/fzy.lua",
    "content": "-- The fzy matching algorithm\n--\n-- by Seth Warn <https://github.com/swarn>\n-- a lua port of John Hawthorn's fzy <https://github.com/jhawthorn/fzy>\n--\n-- > fzy tries to find the result the user intended. It does this by favouring\n-- > matches on consecutive letters and starts of words. This allows matching\n-- > using acronyms or different parts of the path.\" - J Hawthorn\n\nlocal has_path, Path = pcall(require, \"plenary.path\")\nif not has_path then\n  Path = {\n    path = {\n      separator = \"/\",\n    },\n  }\nend\n\nlocal SCORE_GAP_LEADING = -0.005\nlocal SCORE_GAP_TRAILING = -0.005\nlocal SCORE_GAP_INNER = -0.01\nlocal SCORE_MATCH_CONSECUTIVE = 1.0\nlocal SCORE_MATCH_SLASH = 0.9\nlocal SCORE_MATCH_WORD = 0.8\nlocal SCORE_MATCH_CAPITAL = 0.7\nlocal SCORE_MATCH_DOT = 0.6\nlocal SCORE_MAX = math.huge\nlocal SCORE_MIN = -math.huge\nlocal MATCH_MAX_LENGTH = 1024\n\nlocal fzy = {}\n\nfunction fzy.has_match(needle, haystack)\n  needle = string.lower(needle)\n  haystack = string.lower(haystack)\n\n  local j = 1\n  for i = 1, string.len(needle) do\n    j = string.find(haystack, needle:sub(i, i), j, true)\n    if not j then\n      return false\n    else\n      j = j + 1\n    end\n  end\n\n  return true\nend\n\nlocal function is_lower(c)\n  return c:match \"%l\"\nend\n\nlocal function is_upper(c)\n  return c:match \"%u\"\nend\n\nlocal function precompute_bonus(haystack)\n  local match_bonus = {}\n\n  local last_char = Path.path.sep\n  for i = 1, string.len(haystack) do\n    local this_char = haystack:sub(i, i)\n    if last_char == Path.path.sep then\n      match_bonus[i] = SCORE_MATCH_SLASH\n    elseif last_char == \"-\" or last_char == \"_\" or last_char == \" \" then\n      match_bonus[i] = SCORE_MATCH_WORD\n    elseif last_char == \".\" then\n      match_bonus[i] = SCORE_MATCH_DOT\n    elseif is_lower(last_char) and is_upper(this_char) then\n      match_bonus[i] = SCORE_MATCH_CAPITAL\n    else\n      match_bonus[i] = 0\n    end\n\n    last_char = this_char\n  end\n\n  return match_bonus\nend\n\nlocal function compute(needle, haystack, D, M)\n  local match_bonus = precompute_bonus(haystack)\n  local n = string.len(needle)\n  local m = string.len(haystack)\n  local lower_needle = string.lower(needle)\n  local lower_haystack = string.lower(haystack)\n\n  -- Because lua only grants access to chars through substring extraction,\n  -- get all the characters from the haystack once now, to reuse below.\n  local haystack_chars = {}\n  for i = 1, m do\n    haystack_chars[i] = lower_haystack:sub(i, i)\n  end\n\n  for i = 1, n do\n    D[i] = {}\n    M[i] = {}\n\n    local prev_score = SCORE_MIN\n    local gap_score = i == n and SCORE_GAP_TRAILING or SCORE_GAP_INNER\n    local needle_char = lower_needle:sub(i, i)\n\n    for j = 1, m do\n      if needle_char == haystack_chars[j] then\n        local score = SCORE_MIN\n        if i == 1 then\n          score = ((j - 1) * SCORE_GAP_LEADING) + match_bonus[j]\n        elseif j > 1 then\n          local a = M[i - 1][j - 1] + match_bonus[j]\n          local b = D[i - 1][j - 1] + SCORE_MATCH_CONSECUTIVE\n          score = math.max(a, b)\n        end\n        D[i][j] = score\n        prev_score = math.max(score, prev_score + gap_score)\n        M[i][j] = prev_score\n      else\n        D[i][j] = SCORE_MIN\n        prev_score = prev_score + gap_score\n        M[i][j] = prev_score\n      end\n    end\n  end\nend\n\nfunction fzy.score(needle, haystack)\n  local n = string.len(needle)\n  local m = string.len(haystack)\n\n  if n == 0 or m == 0 or m > MATCH_MAX_LENGTH or n > MATCH_MAX_LENGTH then\n    return SCORE_MIN\n  elseif n == m then\n    return SCORE_MAX\n  else\n    local D = {}\n    local M = {}\n    compute(needle, haystack, D, M)\n    return M[n][m]\n  end\nend\n\nfunction fzy.positions(needle, haystack)\n  local n = string.len(needle)\n  local m = string.len(haystack)\n\n  if n == 0 or m == 0 or m > MATCH_MAX_LENGTH or n > MATCH_MAX_LENGTH then\n    return {}\n  elseif n == m then\n    local consecutive = {}\n    for i = 1, n do\n      consecutive[i] = i\n    end\n    return consecutive\n  end\n\n  local D = {}\n  local M = {}\n  compute(needle, haystack, D, M)\n\n  local positions = {}\n  local match_required = false\n  local j = m\n  for i = n, 1, -1 do\n    while j >= 1 do\n      if D[i][j] ~= SCORE_MIN and (match_required or D[i][j] == M[i][j]) then\n        match_required = (i ~= 1) and (j ~= 1) and (M[i][j] == D[i - 1][j - 1] + SCORE_MATCH_CONSECUTIVE)\n        positions[i] = j\n        j = j - 1\n        break\n      else\n        j = j - 1\n      end\n    end\n  end\n\n  return positions\nend\n\n-- If strings a or b are empty or too long, `fzy.score(a, b) == fzy.get_score_min()`.\nfunction fzy.get_score_min()\n  return SCORE_MIN\nend\n\n-- For exact matches, `fzy.score(s, s) == fzy.get_score_max()`.\nfunction fzy.get_score_max()\n  return SCORE_MAX\nend\n\n-- For all strings a and b that\n--  - are not covered by either `fzy.get_score_min()` or fzy.get_score_max()`, and\n--  - are matched, such that `fzy.has_match(a, b) == true`,\n-- then `fzy.score(a, b) > fzy.get_score_floor()` will be true.\nfunction fzy.get_score_floor()\n  return (MATCH_MAX_LENGTH + 1) * SCORE_GAP_INNER\nend\n\nreturn fzy\n"
  },
  {
    "path": "lua/telescope/algos/linked_list.lua",
    "content": "local LinkedList = {}\nLinkedList.__index = LinkedList\n\nfunction LinkedList:new(opts)\n  opts = opts or {}\n  local track_at = opts.track_at\n\n  return setmetatable({\n    size = 0,\n    head = false,\n    tail = false,\n\n    -- track_at: Track at can track a particular node\n    --              Use to keep a node tracked at a particular index\n    --              This greatly decreases looping for checking values at this location.\n    track_at = track_at,\n    _tracked_node = nil,\n    tracked = nil,\n  }, self)\nend\n\nfunction LinkedList:_increment()\n  self.size = self.size + 1\n  return self.size\nend\n\nlocal create_node = function(item)\n  return {\n    item = item,\n  }\nend\n\nfunction LinkedList:append(item)\n  local final_size = self:_increment()\n\n  local node = create_node(item)\n\n  if not self.head then\n    self.head = node\n  end\n\n  if self.tail then\n    self.tail.next = node\n    node.prev = self.tail\n  end\n\n  self.tail = node\n\n  if self.track_at then\n    if final_size == self.track_at then\n      self.tracked = item\n      self._tracked_node = node\n    end\n  end\nend\n\nfunction LinkedList:prepend(item)\n  local final_size = self:_increment()\n  local node = create_node(item)\n\n  if not self.tail then\n    self.tail = node\n  end\n\n  if self.head then\n    self.head.prev = node\n    node.next = self.head\n  end\n\n  self.head = node\n\n  if self.track_at then\n    if final_size == self.track_at then\n      self._tracked_node = self.tail\n    elseif final_size > self.track_at then\n      self._tracked_node = self._tracked_node.prev\n    else\n      return\n    end\n\n    self.tracked = self._tracked_node.item\n  end\nend\n\n-- [a, b, c]\n--  b.prev = a\n--  b.next = c\n--\n--  a.next = b\n--  c.prev = c\n--\n-- insert d after b\n-- [a, b, d, c]\n--\n--  b.next = d\n--  b.prev = a\n--\n-- Place \"item\" after \"node\" (which is at index `index`)\nfunction LinkedList:place_after(index, node, item)\n  local new_node = create_node(item)\n\n  assert(node.prev ~= node)\n  assert(node.next ~= node)\n  local final_size = self:_increment()\n\n  -- Update tail to be the next node.\n  if self.tail == node then\n    self.tail = new_node\n  end\n\n  new_node.prev = node\n  new_node.next = node.next\n\n  node.next = new_node\n\n  if new_node.prev then\n    new_node.prev.next = new_node\n  end\n\n  if new_node.next then\n    new_node.next.prev = new_node\n  end\n\n  if self.track_at then\n    if index == self.track_at then\n      self._tracked_node = new_node\n    elseif index < self.track_at then\n      if final_size == self.track_at then\n        self._tracked_node = self.tail\n      elseif final_size > self.track_at then\n        self._tracked_node = self._tracked_node.prev\n      else\n        return\n      end\n    end\n\n    self.tracked = self._tracked_node.item\n  end\nend\n\nfunction LinkedList:place_before(index, node, item)\n  local new_node = create_node(item)\n\n  assert(node.prev ~= node)\n  assert(node.next ~= node)\n  local final_size = self:_increment()\n\n  -- Update head to be the node we are inserting.\n  if self.head == node then\n    self.head = new_node\n  end\n\n  new_node.prev = node.prev\n  new_node.next = node\n\n  node.prev = new_node\n  -- node.next = node.next\n\n  if new_node.prev then\n    new_node.prev.next = new_node\n  end\n\n  if new_node.next then\n    new_node.next.prev = new_node\n  end\n\n  if self.track_at then\n    if index == self.track_at - 1 then\n      self._tracked_node = node\n    elseif index < self.track_at then\n      if final_size == self.track_at then\n        self._tracked_node = self.tail\n      elseif final_size > self.track_at then\n        self._tracked_node = self._tracked_node.prev\n      else\n        return\n      end\n    end\n\n    self.tracked = self._tracked_node.item\n  end\nend\n\n-- Do you even do this in linked lists...?\n-- function LinkedList:remove(item)\n-- end\n\nfunction LinkedList:iter()\n  local current_node = self.head\n\n  return function()\n    local node = current_node\n    if not node then\n      return nil\n    end\n\n    current_node = current_node.next\n    return node.item\n  end\nend\n\nfunction LinkedList:ipairs()\n  local index = 0\n  local current_node = self.head\n\n  return function()\n    local node = current_node\n    if not node then\n      return nil\n    end\n\n    current_node = current_node.next\n    index = index + 1\n    return index, node.item, node\n  end\nend\n\nfunction LinkedList:truncate(max_results)\n  if max_results >= self.size then\n    return\n  end\n\n  local current_node\n  if max_results < self.size - max_results then\n    local index = 1\n    current_node = self.head\n    while index < max_results do\n      local node = current_node\n      if not node.next then\n        break\n      end\n      current_node = current_node.next\n      index = index + 1\n    end\n    self.size = max_results\n  else\n    current_node = self.tail\n    while self.size > max_results do\n      if current_node.prev == nil then\n        break\n      end\n      current_node = current_node.prev\n      self.size = self.size - 1\n    end\n  end\n  self.tail = current_node\n  self.tail.next = nil\n  if max_results < self.track_at then\n    self.track_at = max_results\n    self.tracked = current_node.item\n    self._tracked_node = current_node\n  end\nend\n\nreturn LinkedList\n"
  },
  {
    "path": "lua/telescope/algos/string_distance.lua",
    "content": "local function min(a, b, c)\n  local min_val = a\n\n  if b < min_val then\n    min_val = b\n  end\n  if c < min_val then\n    min_val = c\n  end\n\n  return min_val\nend\n\n----------------------------------\n--- Levenshtein distance function.\n-- @tparam string s1\n-- @tparam string s2\n-- @treturn number the levenshtein distance\n-- @within Metrics\nreturn function(s1, s2)\n  if s1 == s2 then\n    return 0\n  end\n  if s1:len() == 0 then\n    return s2:len()\n  end\n  if s2:len() == 0 then\n    return s1:len()\n  end\n  if s1:len() < s2:len() then\n    s1, s2 = s2, s1\n  end\n\n  local t = {}\n  for i = 1, #s1 + 1 do\n    t[i] = { i - 1 }\n  end\n\n  for i = 1, #s2 + 1 do\n    t[1][i] = i - 1\n  end\n\n  local cost\n  for i = 2, #s1 + 1 do\n    for j = 2, #s2 + 1 do\n      cost = (s1:sub(i - 1, i - 1) == s2:sub(j - 1, j - 1) and 0) or 1\n      t[i][j] = min(t[i - 1][j] + 1, t[i][j - 1] + 1, t[i - 1][j - 1] + cost)\n    end\n  end\n\n  return t[#s1 + 1][#s2 + 1]\nend\n"
  },
  {
    "path": "lua/telescope/builtin/__diagnostics.lua",
    "content": "local conf = require(\"telescope.config\").values\nlocal finders = require \"telescope.finders\"\nlocal make_entry = require \"telescope.make_entry\"\nlocal pickers = require \"telescope.pickers\"\nlocal utils = require \"telescope.utils\"\n\nlocal diagnostics = {}\n\nlocal sorting_comparator = function(opts)\n  local current_buf = vim.api.nvim_get_current_buf()\n  local comparators = {\n    -- sort results by bufnr (prioritize cur buf), severity, lnum\n    buffer = function(a, b)\n      if a.bufnr == b.bufnr then\n        if a.type == b.type then\n          return a.lnum < b.lnum\n        else\n          return a.type < b.type\n        end\n      else\n        if a.bufnr == current_buf then\n          return true\n        end\n        if b.bufnr == current_buf then\n          return false\n        end\n        return a.bufnr < b.bufnr\n      end\n    end,\n    severity = function(a, b)\n      if a.type < b.type then\n        return true\n      elseif a.type > b.type then\n        return false\n      end\n\n      if a.bufnr == b.bufnr then\n        return a.lnum < b.lnum\n      elseif a.bufnr == current_buf then\n        return true\n      elseif b.bufnr == current_buf then\n        return false\n      else\n        return a.bufnr < b.bufnr\n      end\n    end,\n  }\n\n  local sort_by = vim.F.if_nil(opts.sort_by, \"buffer\")\n  return comparators[sort_by]\nend\n\nlocal convert_diagnostic_type = function(severities, severity)\n  -- convert from string to int\n  if type(severity) == \"string\" then\n    -- make sure that e.g. error is uppercased to ERROR\n    return severities[severity:upper()]\n  end\n  -- otherwise keep original value, incl. nil\n  return severity\nend\n\nlocal diagnostics_to_tbl = function(opts)\n  opts = vim.F.if_nil(opts, {})\n  local items = {}\n  local severities = vim.diagnostic.severity\n\n  opts.severity = convert_diagnostic_type(severities, opts.severity)\n  opts.severity_limit = convert_diagnostic_type(severities, opts.severity_limit)\n  opts.severity_bound = convert_diagnostic_type(severities, opts.severity_bound)\n\n  local diagnosis_opts = { severity = {}, namespace = opts.namespace }\n  if opts.severity ~= nil then\n    if opts.severity_limit ~= nil or opts.severity_bound ~= nil then\n      utils.notify(\"builtin.diagnostics\", {\n        msg = \"Invalid severity parameters. Both a specific severity and a limit/bound is not allowed\",\n        level = \"ERROR\",\n      })\n      return {}\n    end\n    diagnosis_opts.severity = opts.severity\n  else\n    if opts.severity_limit ~= nil then\n      diagnosis_opts.severity[\"min\"] = opts.severity_limit\n    end\n    if opts.severity_bound ~= nil then\n      diagnosis_opts.severity[\"max\"] = opts.severity_bound\n    end\n    if vim.version().minor > 9 and vim.tbl_isempty(diagnosis_opts.severity) then\n      diagnosis_opts.severity = nil\n    end\n  end\n\n  opts.root_dir = opts.root_dir == true and vim.uv.cwd() or opts.root_dir\n\n  local bufnr_name_map = {}\n  local filter_diag = function(diagnostic)\n    if bufnr_name_map[diagnostic.bufnr] == nil then\n      bufnr_name_map[diagnostic.bufnr] = vim.api.nvim_buf_get_name(diagnostic.bufnr)\n    end\n\n    local root_dir_test = not opts.root_dir\n      or string.sub(bufnr_name_map[diagnostic.bufnr], 1, #opts.root_dir) == opts.root_dir\n    local listed_test = not opts.no_unlisted or vim.bo[diagnostic.bufnr].buflisted\n\n    return root_dir_test and listed_test\n  end\n\n  local preprocess_diag = function(diagnostic)\n    return {\n      bufnr = diagnostic.bufnr,\n      filename = bufnr_name_map[diagnostic.bufnr],\n      lnum = diagnostic.lnum + 1,\n      col = diagnostic.col + 1,\n      text = vim.trim(diagnostic.message:gsub(\"[\\n]\", \"\")),\n      type = severities[diagnostic.severity] or severities[1],\n    }\n  end\n\n  for _, d in ipairs(vim.diagnostic.get(opts.bufnr, diagnosis_opts)) do\n    if filter_diag(d) then\n      table.insert(items, preprocess_diag(d))\n    end\n  end\n\n  table.sort(items, sorting_comparator(opts))\n\n  return items\nend\n\ndiagnostics.get = function(opts)\n  if opts.bufnr ~= 0 then\n    opts.bufnr = nil\n  end\n  if type(opts.bufnr) == \"string\" then\n    opts.bufnr = tonumber(opts.bufnr)\n  end\n  if opts.bufnr ~= nil then\n    opts.path_display = vim.F.if_nil(opts.path_display, \"hidden\")\n  end\n\n  local locations = diagnostics_to_tbl(opts)\n\n  if vim.tbl_isempty(locations) then\n    utils.notify(\"builtin.diagnostics\", {\n      msg = \"No diagnostics found\",\n      level = \"INFO\",\n    })\n    return\n  end\n\n  if type(opts.line_width) == \"string\" and opts.line_width ~= \"full\" then\n    utils.notify(\"builtin.diagnostics\", {\n      msg = string.format(\"'%s' is not a valid value for line_width\", opts.line_width),\n      level = \"ERROR\",\n    })\n    return\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = opts.bufnr == nil and \"Workspace Diagnostics\" or \"Document Diagnostics\",\n      finder = finders.new_table {\n        results = locations,\n        entry_maker = opts.entry_maker or make_entry.gen_from_diagnostics(opts),\n      },\n      previewer = conf.qflist_previewer(opts),\n      sorter = conf.prefilter_sorter {\n        tag = \"type\",\n        sorter = conf.generic_sorter(opts),\n      },\n    })\n    :find()\nend\n\nlocal function apply_checks(mod)\n  for k, v in pairs(mod) do\n    mod[k] = function(opts)\n      opts = opts or {}\n      v(opts)\n    end\n  end\n\n  return mod\nend\n\nreturn apply_checks(diagnostics)\n"
  },
  {
    "path": "lua/telescope/builtin/__files.lua",
    "content": "local api = vim.api\n\nlocal action_state = require \"telescope.actions.state\"\nlocal action_set = require \"telescope.actions.set\"\nlocal actions = require \"telescope.actions\"\nlocal finders = require \"telescope.finders\"\nlocal make_entry = require \"telescope.make_entry\"\nlocal pickers = require \"telescope.pickers\"\nlocal previewers = require \"telescope.previewers\"\nlocal sorters = require \"telescope.sorters\"\nlocal utils = require \"telescope.utils\"\nlocal conf = require(\"telescope.config\").values\nlocal log = require \"telescope.log\"\n\nlocal Path = require \"plenary.path\"\n\nlocal flatten = utils.flatten\nlocal filter = vim.tbl_filter\n\nlocal files = {}\n\n---@param s string\n---@return string\nlocal escape_chars = function(s)\n  return (\n    s:gsub(\"[%(|%)|\\\\|%[|%]|%-|%{%}|%?|%+|%*|%^|%$|%.]\", {\n      [\"\\\\\"] = \"\\\\\\\\\",\n      [\"-\"] = \"\\\\-\",\n      [\"(\"] = \"\\\\(\",\n      [\")\"] = \"\\\\)\",\n      [\"[\"] = \"\\\\[\",\n      [\"]\"] = \"\\\\]\",\n      [\"{\"] = \"\\\\{\",\n      [\"}\"] = \"\\\\}\",\n      [\"?\"] = \"\\\\?\",\n      [\"+\"] = \"\\\\+\",\n      [\"*\"] = \"\\\\*\",\n      [\"^\"] = \"\\\\^\",\n      [\"$\"] = \"\\\\$\",\n      [\".\"] = \"\\\\.\",\n    })\n  )\nend\n\nlocal has_rg_program = function(picker_name, program)\n  if vim.fn.executable(program) == 1 then\n    return true\n  end\n\n  utils.notify(picker_name, {\n    msg = string.format(\n      \"'ripgrep', or similar alternative, is a required dependency for the %s picker. \"\n        .. \"Visit https://github.com/BurntSushi/ripgrep#installation for installation instructions.\",\n      picker_name\n    ),\n    level = \"ERROR\",\n  })\n  return false\nend\n\nlocal get_open_filelist = function(grep_open_files, cwd)\n  if not grep_open_files then\n    return nil\n  end\n\n  local bufnrs = filter(function(b)\n    if 1 ~= vim.fn.buflisted(b) then\n      return false\n    end\n    return true\n  end, api.nvim_list_bufs())\n  if not next(bufnrs) then\n    return\n  end\n\n  local filelist = {}\n  for _, bufnr in ipairs(bufnrs) do\n    local file = api.nvim_buf_get_name(bufnr)\n    table.insert(filelist, Path:new(file):make_relative(cwd))\n  end\n  return filelist\nend\n\nlocal opts_contain_invert = function(args)\n  local invert = false\n  local files_with_matches = false\n\n  for _, v in ipairs(args) do\n    if v == \"--invert-match\" then\n      invert = true\n    elseif v == \"--files-with-matches\" or v == \"--files-without-match\" then\n      files_with_matches = true\n    end\n\n    if #v >= 2 and v:sub(1, 1) == \"-\" and v:sub(2, 2) ~= \"-\" then\n      local non_option = false\n      for i = 2, #v do\n        local vi = v:sub(i, i)\n        if vi == \"=\" then -- ignore option -g=xxx\n          break\n        elseif vi == \"g\" or vi == \"f\" or vi == \"m\" or vi == \"e\" or vi == \"r\" or vi == \"t\" or vi == \"T\" then\n          non_option = true\n        elseif non_option == false and vi == \"v\" then\n          invert = true\n        elseif non_option == false and vi == \"l\" then\n          files_with_matches = true\n        end\n      end\n    end\n  end\n  return invert, files_with_matches\nend\n\n-- Special keys:\n--  opts.search_dirs -- list of directory to search in\n--  opts.grep_open_files -- boolean to restrict search to open files\nfiles.live_grep = function(opts)\n  local vimgrep_arguments = opts.vimgrep_arguments or conf.vimgrep_arguments\n  if not has_rg_program(\"live_grep\", vimgrep_arguments[1]) then\n    return\n  end\n  local search_dirs = opts.search_dirs\n  local grep_open_files = opts.grep_open_files\n  opts.cwd = opts.cwd and utils.path_expand(opts.cwd) or vim.uv.cwd()\n\n  local filelist = get_open_filelist(grep_open_files, opts.cwd)\n  if search_dirs then\n    for i, path in ipairs(search_dirs) do\n      search_dirs[i] = utils.path_expand(path)\n    end\n  end\n\n  local additional_args = {}\n  if opts.additional_args ~= nil then\n    if type(opts.additional_args) == \"function\" then\n      additional_args = opts.additional_args(opts)\n    elseif type(opts.additional_args) == \"table\" then\n      additional_args = opts.additional_args\n    end\n  end\n\n  if opts.type_filter then\n    additional_args[#additional_args + 1] = \"--type=\" .. opts.type_filter\n  end\n\n  if type(opts.glob_pattern) == \"string\" then\n    additional_args[#additional_args + 1] = \"--glob=\" .. opts.glob_pattern\n  elseif type(opts.glob_pattern) == \"table\" then\n    for i = 1, #opts.glob_pattern do\n      additional_args[#additional_args + 1] = \"--glob=\" .. opts.glob_pattern[i]\n    end\n  end\n\n  if opts.file_encoding then\n    additional_args[#additional_args + 1] = \"--encoding=\" .. opts.file_encoding\n  end\n\n  local args = flatten { vimgrep_arguments, additional_args }\n  opts.__inverted, opts.__matches = opts_contain_invert(args)\n\n  local live_grepper = finders.new_job(function(prompt)\n    if not prompt or prompt == \"\" then\n      return nil\n    end\n\n    local search_list = {}\n\n    if grep_open_files then\n      search_list = filelist\n    elseif search_dirs then\n      search_list = search_dirs\n    end\n\n    return flatten { args, \"--\", prompt, search_list }\n  end, opts.entry_maker or make_entry.gen_from_vimgrep(opts), opts.max_results, opts.cwd)\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Live Grep\",\n      finder = live_grepper,\n      previewer = conf.grep_previewer(opts),\n      -- TODO: It would be cool to use `--json` output for this\n      -- and then we could get the highlight positions directly.\n      sorter = sorters.highlighter_only(opts),\n      attach_mappings = function(_, map)\n        map(\"i\", \"<c-space>\", actions.to_fuzzy_refine)\n        return true\n      end,\n      push_cursor_on_edit = true,\n    })\n    :find()\nend\n\nfiles.grep_string = function(opts)\n  local vimgrep_arguments = vim.F.if_nil(opts.vimgrep_arguments, conf.vimgrep_arguments)\n  if not has_rg_program(\"grep_string\", vimgrep_arguments[1]) then\n    return\n  end\n  local word\n  local visual = vim.fn.mode() == \"v\"\n\n  if visual == true then\n    local saved_reg = vim.fn.getreg \"v\"\n    vim.cmd [[noautocmd sil norm! \"vy]]\n    local sele = vim.fn.getreg \"v\"\n    vim.fn.setreg(\"v\", saved_reg)\n    word = vim.F.if_nil(opts.search, sele)\n  else\n    word = vim.F.if_nil(opts.search, vim.fn.expand \"<cword>\")\n  end\n\n  word = tostring(word)\n  local search = opts.use_regex and word or escape_chars(word)\n  local search_args = search == \"\" and { \"-v\", \"--\", \"^[[:space:]]*$\" } or { \"--\", search }\n\n  local additional_args = {}\n  if opts.additional_args ~= nil then\n    if type(opts.additional_args) == \"function\" then\n      additional_args = opts.additional_args(opts)\n    elseif type(opts.additional_args) == \"table\" then\n      additional_args = opts.additional_args\n    end\n  end\n\n  if opts.file_encoding then\n    additional_args[#additional_args + 1] = \"--encoding=\" .. opts.file_encoding\n  end\n\n  local args\n  if visual == true then\n    args = flatten {\n      vimgrep_arguments,\n      additional_args,\n      search_args,\n    }\n  else\n    args = flatten {\n      vimgrep_arguments,\n      additional_args,\n      opts.word_match,\n      search_args,\n    }\n  end\n\n  opts.__inverted, opts.__matches = opts_contain_invert(args)\n\n  if opts.grep_open_files then\n    for _, file in ipairs(get_open_filelist(opts.grep_open_files, opts.cwd) or {}) do\n      table.insert(args, file)\n    end\n  elseif opts.search_dirs then\n    for _, path in ipairs(opts.search_dirs) do\n      table.insert(args, utils.path_expand(path))\n    end\n  end\n\n  opts.entry_maker = opts.entry_maker or make_entry.gen_from_vimgrep(opts)\n  pickers\n    .new(opts, {\n      prompt_title = \"Find Word (\" .. word:gsub(\"\\n\", \"\\\\n\") .. \")\",\n      finder = finders.new_oneshot_job(args, opts),\n      previewer = conf.grep_previewer(opts),\n      sorter = conf.generic_sorter(opts),\n      push_cursor_on_edit = true,\n    })\n    :find()\nend\n\nfiles.find_files = function(opts)\n  local find_command = (function()\n    if opts.find_command then\n      if type(opts.find_command) == \"function\" then\n        return opts.find_command(opts)\n      end\n      return opts.find_command\n    elseif 1 == vim.fn.executable \"rg\" then\n      return { \"rg\", \"--files\", \"--color\", \"never\" }\n    elseif 1 == vim.fn.executable \"fd\" then\n      return { \"fd\", \"--type\", \"f\", \"--color\", \"never\" }\n    elseif 1 == vim.fn.executable \"fdfind\" then\n      return { \"fdfind\", \"--type\", \"f\", \"--color\", \"never\" }\n    elseif 1 == vim.fn.executable \"find\" and vim.fn.has \"win32\" == 0 then\n      return { \"find\", \".\", \"-type\", \"f\" }\n    elseif 1 == vim.fn.executable \"where\" then\n      return { \"where\", \"/r\", \".\", \"*\" }\n    end\n  end)()\n\n  if not find_command then\n    utils.notify(\"builtin.find_files\", {\n      msg = \"You need to install either find, fd, or rg\",\n      level = \"ERROR\",\n    })\n    return\n  end\n\n  local command = find_command[1]\n  local hidden = opts.hidden\n  local no_ignore = opts.no_ignore\n  local no_ignore_parent = opts.no_ignore_parent\n  local follow = opts.follow\n  local search_dirs = opts.search_dirs\n  local search_file = opts.search_file\n\n  if search_dirs then\n    for k, v in pairs(search_dirs) do\n      search_dirs[k] = utils.path_expand(v)\n    end\n  end\n\n  if command == \"fd\" or command == \"fdfind\" or command == \"rg\" then\n    if hidden then\n      find_command[#find_command + 1] = \"--hidden\"\n    end\n    if no_ignore then\n      find_command[#find_command + 1] = \"--no-ignore\"\n    end\n    if no_ignore_parent then\n      find_command[#find_command + 1] = \"--no-ignore-parent\"\n    end\n    if follow then\n      find_command[#find_command + 1] = \"-L\"\n    end\n    if search_file then\n      if command == \"rg\" then\n        find_command[#find_command + 1] = \"-g\"\n        find_command[#find_command + 1] = \"*\" .. search_file .. \"*\"\n      else\n        find_command[#find_command + 1] = search_file\n      end\n    end\n    if search_dirs then\n      if command ~= \"rg\" and not search_file then\n        find_command[#find_command + 1] = \".\"\n      end\n      vim.list_extend(find_command, search_dirs)\n    end\n  elseif command == \"find\" then\n    if not hidden then\n      table.insert(find_command, { \"-not\", \"-path\", \"*/.*\" })\n      find_command = flatten(find_command)\n    end\n    if no_ignore ~= nil then\n      log.warn \"The `no_ignore` key is not available for the `find` command in `find_files`.\"\n    end\n    if no_ignore_parent ~= nil then\n      log.warn \"The `no_ignore_parent` key is not available for the `find` command in `find_files`.\"\n    end\n    if follow then\n      table.insert(find_command, 2, \"-L\")\n    end\n    if search_file then\n      table.insert(find_command, \"-name\")\n      table.insert(find_command, \"*\" .. search_file .. \"*\")\n    end\n    if search_dirs then\n      table.remove(find_command, 2)\n      for _, v in pairs(search_dirs) do\n        table.insert(find_command, 2, v)\n      end\n    end\n  elseif command == \"where\" then\n    if hidden ~= nil then\n      log.warn \"The `hidden` key is not available for the Windows `where` command in `find_files`.\"\n    end\n    if no_ignore ~= nil then\n      log.warn \"The `no_ignore` key is not available for the Windows `where` command in `find_files`.\"\n    end\n    if no_ignore_parent ~= nil then\n      log.warn \"The `no_ignore_parent` key is not available for the Windows `where` command in `find_files`.\"\n    end\n    if follow ~= nil then\n      log.warn \"The `follow` key is not available for the Windows `where` command in `find_files`.\"\n    end\n    if search_dirs ~= nil then\n      log.warn \"The `search_dirs` key is not available for the Windows `where` command in `find_files`.\"\n    end\n    if search_file ~= nil then\n      log.warn \"The `search_file` key is not available for the Windows `where` command in `find_files`.\"\n    end\n  end\n\n  if opts.cwd then\n    opts.cwd = utils.path_expand(opts.cwd)\n  end\n\n  opts.entry_maker = opts.entry_maker or make_entry.gen_from_file(opts)\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Find Files\",\n      __locations_input = true,\n      finder = finders.new_oneshot_job(find_command, opts),\n      previewer = conf.grep_previewer(opts),\n      sorter = conf.file_sorter(opts),\n    })\n    :find()\nend\n\n--  TODO: finish docs for opts.show_line\nfiles.treesitter = function(opts)\n  opts.show_line = vim.F.if_nil(opts.show_line, true)\n  local ts = vim.treesitter\n  local ft = vim.bo[opts.bufnr].filetype\n  local lang = ts.language.get_lang(ft)\n\n  if not (lang and ts.language.add(lang)) then\n    utils.notify(\"builtin.treesitter\", {\n      msg = \"No parser for the current buffer\",\n      level = \"ERROR\",\n    })\n    return\n  end\n  local query = ts.query.get(lang, \"locals\")\n  if not query then\n    utils.notify(\"builtin.treesitter\", {\n      msg = \"No locals query for the current buffer\",\n      level = \"ERROR\",\n    })\n    return\n  end\n\n  local parser = assert(ts.get_parser(opts.bufnr))\n  parser:parse()\n  local root = parser:trees()[1]:root()\n\n  local results = {}\n  for id, node, _ in query:iter_captures(root, opts.bufnr) do\n    local kind = query.captures[id]\n\n    if node and vim.startswith(kind, \"local.definition\") then\n      table.insert(results, { kind = kind:gsub(\"^local%.definition\", \"\"):gsub(\"^%.\", \"\"), node = node })\n    end\n  end\n\n  results = utils.filter_symbols(results, opts)\n  if vim.tbl_isempty(results) then\n    -- error message already printed in `utils.filter_symbols`\n    return\n  end\n\n  if vim.tbl_isempty(results) then\n    return\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Treesitter Symbols\",\n      finder = finders.new_table {\n        results = results,\n        entry_maker = opts.entry_maker or make_entry.gen_from_treesitter(opts),\n      },\n      previewer = conf.grep_previewer(opts),\n      sorter = conf.prefilter_sorter {\n        tag = \"kind\",\n        sorter = conf.generic_sorter(opts),\n      },\n      push_cursor_on_edit = true,\n    })\n    :find()\nend\n\nfiles.current_buffer_fuzzy_find = function(opts)\n  -- All actions are on the current buffer\n  local filename = api.nvim_buf_get_name(opts.bufnr)\n  local filetype = vim.bo[opts.bufnr].filetype\n\n  local lines = api.nvim_buf_get_lines(opts.bufnr, 0, -1, false)\n  local lines_with_numbers = {}\n\n  for lnum, line in ipairs(lines) do\n    table.insert(lines_with_numbers, {\n      lnum = lnum,\n      bufnr = opts.bufnr,\n      filename = filename,\n      text = line,\n    })\n  end\n\n  -- TODO(clason): refactor when dropping support for Nvim 0.10 (no option, no filetype fallback)\n  opts.results_ts_highlight = vim.F.if_nil(opts.results_ts_highlight, true)\n  local lang = vim.treesitter.language.get_lang(filetype) or filetype\n  if opts.results_ts_highlight and lang and utils.has_ts_parser(lang) then\n    local parser = vim.treesitter.get_parser(opts.bufnr, lang)\n    local query = vim.treesitter.query.get(lang, \"highlights\")\n    if query then\n      local root = parser:parse()[1]:root()\n\n      local line_highlights = setmetatable({}, {\n        __index = function(t, k)\n          local obj = {}\n          rawset(t, k, obj)\n          return obj\n        end,\n      })\n\n      for id, node in query:iter_captures(root, opts.bufnr, 0, -1) do\n        local hl = \"@\" .. query.captures[id]\n        if hl and type(hl) ~= \"number\" then\n          local row1, col1, row2, col2 = node:range()\n\n          if row1 == row2 then\n            local row = row1 + 1\n\n            for index = col1, col2 do\n              line_highlights[row][index] = hl\n            end\n          else\n            local row = row1 + 1\n            for index = col1, #lines[row] do\n              line_highlights[row][index] = hl\n            end\n\n            while row < row2 + 1 do\n              row = row + 1\n\n              for index = 0, #(lines[row] or {}) do\n                line_highlights[row][index] = hl\n              end\n            end\n          end\n        end\n      end\n\n      opts.line_highlights = line_highlights\n    end\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Current Buffer Fuzzy\",\n      finder = finders.new_table {\n        results = lines_with_numbers,\n        entry_maker = opts.entry_maker or make_entry.gen_from_buffer_lines(opts),\n      },\n      sorter = conf.generic_sorter(opts),\n      previewer = conf.grep_previewer(opts),\n      attach_mappings = function()\n        actions.select_default:replace(function(prompt_bufnr)\n          local selection = action_state.get_selected_entry()\n          if not selection then\n            utils.__warn_no_selection \"builtin.current_buffer_fuzzy_find\"\n            return\n          end\n          local current_picker = action_state.get_current_picker(prompt_bufnr)\n          local searched_for = require(\"telescope.actions.state\").get_current_line()\n\n          ---@type number[] | {start:number, end:number?, highlight:string?}[]\n          local highlights = current_picker.sorter:highlighter(searched_for, selection.ordinal) or {}\n          highlights = vim.tbl_map(function(hl)\n            if type(hl) == \"table\" and hl.start then\n              return hl.start\n            elseif type(hl) == \"number\" then\n              return hl\n            end\n            error \"Invalid higlighter fn\"\n          end, highlights)\n\n          local first_col = 0\n          if #highlights > 0 then\n            first_col = math.min(unpack(highlights)) - 1\n          end\n\n          actions.close(prompt_bufnr)\n          vim.schedule(function()\n            vim.cmd \"normal! m'\"\n            api.nvim_win_set_cursor(0, { selection.lnum, first_col })\n          end)\n        end)\n\n        return true\n      end,\n    })\n    :find()\nend\n\nfiles.tags = function(opts)\n  local tagfiles = opts.ctags_file and { opts.ctags_file } or vim.fn.tagfiles()\n  for i, ctags_file in ipairs(tagfiles) do\n    tagfiles[i] = vim.fn.expand(ctags_file, true)\n  end\n  if vim.tbl_isempty(tagfiles) then\n    utils.notify(\"builtin.tags\", {\n      msg = \"No tags file found. Create one with ctags -R\",\n      level = \"ERROR\",\n    })\n    return\n  end\n  opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_ctags(opts))\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Tags\",\n      finder = finders.new_oneshot_job(flatten { \"cat\", tagfiles }, opts),\n      previewer = previewers.ctags.new(opts),\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function()\n        action_set.select:enhance {\n          post = function()\n            local selection = action_state.get_selected_entry()\n            if not selection then\n              return\n            end\n\n            if selection.scode then\n              -- un-escape / then escape required\n              -- special chars for vim.fn.search()\n              -- ] ~ *\n              local scode = selection.scode:gsub([[\\/]], \"/\"):gsub(\"[%]~*]\", function(x)\n                return \"\\\\\" .. x\n              end)\n\n              vim.cmd \"keepjumps norm! gg\"\n              vim.fn.search(scode)\n              vim.cmd \"norm! zz\"\n            else\n              api.nvim_win_set_cursor(0, { selection.lnum, 0 })\n            end\n          end,\n        }\n        return true\n      end,\n    })\n    :find()\nend\n\nfiles.current_buffer_tags = function(opts)\n  return files.tags(vim.tbl_extend(\"force\", {\n    prompt_title = \"Current Buffer Tags\",\n    only_current_file = true,\n    path_display = \"hidden\",\n  }, opts))\nend\n\nlocal function apply_checks(mod)\n  for k, v in pairs(mod) do\n    mod[k] = function(opts)\n      opts = opts or {}\n\n      v(opts)\n    end\n  end\n\n  return mod\nend\n\nreturn apply_checks(files)\n"
  },
  {
    "path": "lua/telescope/builtin/__git.lua",
    "content": "local api = vim.api\n\nlocal actions = require \"telescope.actions\"\nlocal action_state = require \"telescope.actions.state\"\nlocal finders = require \"telescope.finders\"\nlocal make_entry = require \"telescope.make_entry\"\nlocal operators = require \"telescope.operators\"\nlocal pickers = require \"telescope.pickers\"\nlocal previewers = require \"telescope.previewers\"\nlocal utils = require \"telescope.utils\"\nlocal entry_display = require \"telescope.pickers.entry_display\"\nlocal strings = require \"plenary.strings\"\nlocal Path = require \"plenary.path\"\n\nlocal conf = require(\"telescope.config\").values\nlocal git_command = utils.__git_command\n\nlocal git = {}\n\nlocal get_git_command_output = function(args, opts)\n  return utils.get_os_command_output(git_command(args, opts), opts.cwd)\nend\n\ngit.files = function(opts)\n  if opts.is_bare then\n    utils.notify(\"builtin.git_files\", {\n      msg = \"This operation must be run in a work tree\",\n      level = \"ERROR\",\n    })\n    return\n  end\n\n  local show_untracked = vim.F.if_nil(opts.show_untracked, false)\n  local recurse_submodules = vim.F.if_nil(opts.recurse_submodules, false)\n  if show_untracked and recurse_submodules then\n    utils.notify(\"builtin.git_files\", {\n      msg = \"Git does not support both --others and --recurse-submodules\",\n      level = \"ERROR\",\n    })\n    return\n  end\n\n  -- By creating the entry maker after the cwd options,\n  -- we ensure the maker uses the cwd options when being created.\n  opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_file(opts))\n  opts.git_command = vim.F.if_nil(\n    opts.git_command,\n    git_command({ \"-c\", \"core.quotepath=false\", \"ls-files\", \"--exclude-standard\", \"--cached\" }, opts)\n  )\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Git Files\",\n      __locations_input = true,\n      finder = finders.new_oneshot_job(\n        utils.flatten {\n          opts.git_command,\n          show_untracked and \"--others\" or nil,\n          recurse_submodules and \"--recurse-submodules\" or nil,\n        },\n        opts\n      ),\n      previewer = conf.grep_previewer(opts),\n      sorter = conf.file_sorter(opts),\n    })\n    :find()\nend\n\ngit.commits = function(opts)\n  opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_commits(opts))\n  opts.git_command =\n    vim.F.if_nil(opts.git_command, git_command({ \"log\", \"--pretty=oneline\", \"--abbrev-commit\", \"--\", \".\" }, opts))\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Git Commits\",\n      finder = finders.new_oneshot_job(opts.git_command, opts),\n      previewer = {\n        previewers.git_commit_diff_to_parent.new(opts),\n        previewers.git_commit_diff_to_head.new(opts),\n        previewers.git_commit_diff_as_was.new(opts),\n        previewers.git_commit_message.new(opts),\n      },\n      sorter = conf.file_sorter(opts),\n      attach_mappings = function(_, map)\n        actions.select_default:replace(actions.git_checkout)\n        map({ \"i\", \"n\" }, \"<c-r>m\", actions.git_reset_mixed)\n        map({ \"i\", \"n\" }, \"<c-r>s\", actions.git_reset_soft)\n        map({ \"i\", \"n\" }, \"<c-r>h\", actions.git_reset_hard)\n        return true\n      end,\n    })\n    :find()\nend\n\ngit.stash = function(opts)\n  opts.show_branch = vim.F.if_nil(opts.show_branch, true)\n  opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_stash(opts))\n  opts.git_command = vim.F.if_nil(opts.git_command, git_command({ \"--no-pager\", \"stash\", \"list\" }, opts))\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Git Stash\",\n      finder = finders.new_oneshot_job(opts.git_command, opts),\n      previewer = previewers.git_stash_diff.new(opts),\n      sorter = conf.file_sorter(opts),\n      attach_mappings = function()\n        actions.select_default:replace(actions.git_apply_stash)\n        return true\n      end,\n    })\n    :find()\nend\n\nlocal get_current_buf_line = function(winnr)\n  local lnum = api.nvim_win_get_cursor(winnr)[1]\n  return vim.trim(api.nvim_buf_get_lines(api.nvim_win_get_buf(winnr), lnum - 1, lnum, false)[1])\nend\n\nlocal bcommits_picker = function(opts, title, finder)\n  return pickers.new(opts, {\n    prompt_title = title,\n    finder = finder,\n    previewer = {\n      previewers.git_commit_diff_to_parent.new(opts),\n      previewers.git_commit_diff_to_head.new(opts),\n      previewers.git_commit_diff_as_was.new(opts),\n      previewers.git_commit_message.new(opts),\n    },\n    sorter = conf.file_sorter(opts),\n    attach_mappings = function()\n      actions.select_default:replace(actions.git_checkout_current_buffer)\n      local transfrom_file = function()\n        return opts.current_file and Path:new(opts.current_file):make_relative(opts.cwd) or \"\"\n      end\n\n      local get_buffer_of_orig = function(selection)\n        local value = selection.value .. \":\" .. transfrom_file()\n        local content = utils.get_os_command_output({ \"git\", \"--no-pager\", \"show\", value }, opts.cwd)\n\n        local bufnr = api.nvim_create_buf(false, true)\n        api.nvim_buf_set_lines(bufnr, 0, -1, false, content)\n        api.nvim_buf_set_name(bufnr, \"Original\")\n        return bufnr\n      end\n\n      local vimdiff = function(selection, command)\n        local ft = vim.bo.filetype\n        vim.cmd \"diffthis\"\n\n        local bufnr = get_buffer_of_orig(selection)\n        vim.cmd(string.format(\"%s %s\", command, bufnr))\n        vim.bo.filetype = ft\n        vim.cmd \"diffthis\"\n\n        api.nvim_create_autocmd(\"WinClosed\", {\n          buffer = bufnr,\n          nested = true,\n          once = true,\n          callback = function()\n            api.nvim_buf_delete(bufnr, { force = true })\n          end,\n        })\n      end\n\n      actions.select_vertical:replace(function(prompt_bufnr)\n        actions.close(prompt_bufnr)\n        local selection = action_state.get_selected_entry()\n        vimdiff(selection, \"leftabove vert sbuffer\")\n      end)\n\n      actions.select_horizontal:replace(function(prompt_bufnr)\n        actions.close(prompt_bufnr)\n        local selection = action_state.get_selected_entry()\n        vimdiff(selection, \"belowright sbuffer\")\n      end)\n\n      actions.select_tab:replace(function(prompt_bufnr)\n        actions.close(prompt_bufnr)\n        local selection = action_state.get_selected_entry()\n        vim.cmd(\"tabedit \" .. transfrom_file())\n        vimdiff(selection, \"leftabove vert sbuffer\")\n      end)\n      return true\n    end,\n  })\nend\n\ngit.bcommits = function(opts)\n  opts.current_line = (opts.current_file == nil) and get_current_buf_line(opts.winnr) or nil\n  opts.current_file = vim.F.if_nil(opts.current_file, api.nvim_buf_get_name(opts.bufnr))\n  opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_commits(opts))\n  opts.git_command =\n    vim.F.if_nil(opts.git_command, git_command({ \"log\", \"--pretty=oneline\", \"--abbrev-commit\", \"--follow\" }, opts))\n\n  local title = \"Git BCommits\"\n  local finder = finders.new_oneshot_job(\n    utils.flatten {\n      opts.git_command,\n      opts.current_file,\n    },\n    opts\n  )\n  bcommits_picker(opts, title, finder):find()\nend\n\ngit.bcommits_range = function(opts)\n  opts.current_line = (opts.current_file == nil) and get_current_buf_line(opts.winnr) or nil\n  opts.current_file = vim.F.if_nil(opts.current_file, api.nvim_buf_get_name(opts.bufnr))\n  opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_commits(opts))\n  opts.git_command = vim.F.if_nil(\n    opts.git_command,\n    git_command({ \"log\", \"--pretty=oneline\", \"--abbrev-commit\", \"--no-patch\", \"-L\" }, opts)\n  )\n  local visual = string.find(vim.fn.mode(), \"[vV\u0016]\") ~= nil\n\n  local line_number_first = opts.from\n  local line_number_last = vim.F.if_nil(opts.to, line_number_first)\n  if visual then\n    line_number_first = vim.F.if_nil(line_number_first, vim.fn.line \"v\")\n    line_number_last = vim.F.if_nil(line_number_last, vim.fn.line \".\")\n  elseif opts.operator then\n    opts.operator = false\n    opts.operator_callback = true\n    operators.run_operator(git.bcommits_range, opts)\n    return\n  elseif opts.operator_callback then\n    line_number_first = vim.fn.line \"'[\"\n    line_number_last = vim.fn.line \"']\"\n  elseif line_number_first == nil then\n    line_number_first = vim.F.if_nil(line_number_first, vim.fn.line \".\")\n    line_number_last = vim.F.if_nil(line_number_last, vim.fn.line \".\")\n  end\n  local line_range =\n    string.format(\"%d,%d:%s\", line_number_first, line_number_last, Path:new(opts.current_file):make_relative(opts.cwd))\n\n  local title = \"Git BCommits in range\"\n  local finder = finders.new_oneshot_job(\n    utils.flatten {\n      opts.git_command,\n      line_range,\n    },\n    opts\n  )\n  bcommits_picker(opts, title, finder):find()\nend\n\ngit.branches = function(opts)\n  local format = \"%(HEAD)\"\n    .. \"%(refname)\"\n    .. \"%(authorname)\"\n    .. \"%(upstream:lstrip=2)\"\n    .. \"%(committerdate:format-local:%Y/%m/%d %H:%M:%S)\"\n\n  local output = get_git_command_output(\n    { \"for-each-ref\", \"--perl\", \"--format\", format, \"--sort\", \"-authordate\", opts.pattern },\n    opts\n  )\n\n  local show_remote_tracking_branches = vim.F.if_nil(opts.show_remote_tracking_branches, true)\n\n  local results = {}\n  local widths = {\n    name = 0,\n    authorname = 0,\n    upstream = 0,\n    committerdate = 0,\n  }\n  local unescape_single_quote = function(v)\n    return string.gsub(v, \"\\\\([\\\\'])\", \"%1\")\n  end\n  local parse_line = function(line)\n    local fields = vim.split(string.sub(line, 2, -2), \"''\")\n    local entry = {\n      head = fields[1],\n      refname = unescape_single_quote(fields[2]),\n      authorname = unescape_single_quote(fields[3]),\n      upstream = unescape_single_quote(fields[4]),\n      committerdate = fields[5],\n    }\n    local prefix\n    if vim.startswith(entry.refname, \"refs/remotes/\") then\n      if show_remote_tracking_branches then\n        prefix = \"refs/remotes/\"\n      else\n        return\n      end\n    elseif vim.startswith(entry.refname, \"refs/heads/\") then\n      prefix = \"refs/heads/\"\n    else\n      return\n    end\n    local index = 1\n    if entry.head ~= \"*\" then\n      index = #results + 1\n    end\n\n    entry.name = string.sub(entry.refname, string.len(prefix) + 1)\n    for key, value in pairs(widths) do\n      widths[key] = math.max(value, strings.strdisplaywidth(entry[key] or \"\"))\n    end\n    if string.len(entry.upstream) > 0 then\n      widths.upstream_indicator = 2\n    end\n    table.insert(results, index, entry)\n  end\n  for _, line in ipairs(output) do\n    parse_line(line)\n  end\n  if #results == 0 then\n    return\n  end\n\n  local displayer = entry_display.create {\n    separator = \" \",\n    items = {\n      { width = 1 },\n      { width = widths.name },\n      { width = widths.authorname },\n      { width = widths.upstream_indicator },\n      { width = widths.upstream },\n      { width = widths.committerdate },\n    },\n  }\n\n  local make_display = function(entry)\n    return displayer {\n      { entry.head },\n      { entry.name, \"TelescopeResultsIdentifier\" },\n      { entry.authorname },\n      { string.len(entry.upstream) > 0 and \"=>\" or \"\" },\n      { entry.upstream, \"TelescopeResultsIdentifier\" },\n      { entry.committerdate },\n    }\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Git Branches\",\n      finder = finders.new_table {\n        results = results,\n        entry_maker = function(entry)\n          entry.value = entry.name\n          entry.ordinal = entry.name\n          entry.display = make_display\n          return make_entry.set_default_entry_mt(entry, opts)\n        end,\n      },\n      previewer = previewers.git_branch_log.new(opts),\n      sorter = conf.file_sorter(opts),\n      attach_mappings = function(_, map)\n        actions.select_default:replace(actions.git_checkout)\n        map({ \"i\", \"n\" }, \"<c-t>\", actions.git_track_branch)\n        map({ \"i\", \"n\" }, \"<c-r>\", actions.git_rebase_branch)\n        map({ \"i\", \"n\" }, \"<c-a>\", actions.git_create_branch)\n        map({ \"i\", \"n\" }, \"<c-s>\", actions.git_switch_branch)\n        map({ \"i\", \"n\" }, \"<c-d>\", actions.git_delete_branch)\n        map({ \"i\", \"n\" }, \"<c-y>\", actions.git_merge_branch)\n        return true\n      end,\n    })\n    :find()\nend\n\ngit.status = function(opts)\n  if opts.is_bare then\n    utils.notify(\"builtin.git_status\", {\n      msg = \"This operation must be run in a work tree\",\n      level = \"ERROR\",\n    })\n    return\n  end\n\n  local args = { \"status\", \"-z\", \"--\", \".\" }\n\n  local gen_new_finder = function()\n    if vim.F.if_nil(opts.expand_dir, true) then\n      table.insert(args, #args - 1, \"-uall\")\n    end\n    local git_cmd = git_command(args, opts)\n    opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_status(opts))\n    opts.split_char = \"\\0\"\n    return finders.new_oneshot_job(git_cmd, opts)\n  end\n\n  local initial_finder = gen_new_finder()\n  if not initial_finder then\n    return\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Git Status\",\n      finder = initial_finder,\n      previewer = previewers.git_file_diff.new(opts),\n      sorter = conf.file_sorter(opts),\n      on_complete = {\n        function(self)\n          local prompt = action_state.get_current_line()\n\n          -- HACK: self.manager:num_results() can return 0 despite having results\n          -- due to some async/event loop shenanigans (#3316)\n          local count = 0\n          for _, entry in pairs(self.finder.results) do\n            if entry and entry.valid ~= false then\n              count = count + 1\n            end\n          end\n\n          if count == 0 and prompt == \"\" then\n            utils.notify(\"builtin.git_status\", {\n              msg = \"No changes found\",\n              level = \"INFO\",\n            })\n          end\n        end,\n      },\n      attach_mappings = function(prompt_bufnr, map)\n        actions.git_staging_toggle:enhance {\n          post = function()\n            local picker = action_state.get_current_picker(prompt_bufnr)\n\n            -- temporarily register a callback which keeps selection on refresh\n            local selection = picker:get_selection_row()\n            local callbacks = { unpack(picker._completion_callbacks) } -- shallow copy\n            picker:register_completion_callback(function(self)\n              self:set_selection(selection)\n              self._completion_callbacks = callbacks\n            end)\n\n            -- refresh\n            picker:refresh(gen_new_finder(), { reset_prompt = false })\n          end,\n        }\n\n        map({ \"i\", \"n\" }, \"<tab>\", actions.git_staging_toggle)\n        return true\n      end,\n    })\n    :find()\nend\n\nlocal try_worktrees = function(opts)\n  local worktrees = conf.git_worktrees\n\n  if vim.islist(worktrees) then\n    for _, wt in ipairs(worktrees) do\n      if vim.startswith(opts.cwd, wt.toplevel) then\n        opts.toplevel = wt.toplevel\n        opts.gitdir = wt.gitdir\n        if opts.use_git_root then\n          opts.cwd = wt.toplevel\n        end\n        return\n      end\n    end\n  end\n\n  error(opts.cwd .. \" is not a git directory\")\nend\n\nlocal current_path_toplevel = function()\n  local gitdir = vim.fn.finddir(\".git\", vim.fn.expand \"%:p\" .. \";\")\n  if gitdir == \"\" then\n    return nil\n  end\n  return Path:new(gitdir):parent():absolute()\nend\n\nlocal set_opts_cwd = function(opts)\n  opts.use_git_root = vim.F.if_nil(opts.use_git_root, true)\n  if opts.cwd then\n    opts.cwd = utils.path_expand(opts.cwd)\n  elseif opts.use_file_path then\n    opts.cwd = current_path_toplevel()\n    if not opts.cwd then\n      opts.cwd = vim.fn.expand \"%:p:h\"\n      try_worktrees(opts)\n      return\n    end\n  else\n    opts.cwd = vim.uv.cwd()\n  end\n\n  local toplevel, ret = utils.get_os_command_output({ \"git\", \"rev-parse\", \"--show-toplevel\" }, opts.cwd)\n\n  if ret ~= 0 then\n    local in_worktree = utils.get_os_command_output({ \"git\", \"rev-parse\", \"--is-inside-work-tree\" }, opts.cwd)\n    local in_bare = utils.get_os_command_output({ \"git\", \"rev-parse\", \"--is-bare-repository\" }, opts.cwd)\n\n    if in_worktree[1] ~= \"true\" and in_bare[1] ~= \"true\" then\n      try_worktrees(opts)\n    elseif in_worktree[1] ~= \"true\" and in_bare[1] == \"true\" then\n      opts.is_bare = true\n    end\n  else\n    if opts.use_git_root then\n      opts.cwd = toplevel[1]\n    end\n  end\nend\n\nlocal function apply_checks(mod)\n  for k, v in pairs(mod) do\n    mod[k] = function(opts)\n      opts = vim.F.if_nil(opts, {})\n\n      set_opts_cwd(opts)\n      v(opts)\n    end\n  end\n\n  return mod\nend\n\nreturn apply_checks(git)\n"
  },
  {
    "path": "lua/telescope/builtin/__internal.lua",
    "content": "local api = vim.api\n\nlocal actions = require \"telescope.actions\"\nlocal action_set = require \"telescope.actions.set\"\nlocal action_state = require \"telescope.actions.state\"\nlocal finders = require \"telescope.finders\"\nlocal make_entry = require \"telescope.make_entry\"\nlocal Path = require \"plenary.path\"\nlocal pickers = require \"telescope.pickers\"\nlocal previewers = require \"telescope.previewers\"\nlocal p_window = require \"telescope.pickers.window\"\nlocal state = require \"telescope.state\"\nlocal utils = require \"telescope.utils\"\n\nlocal conf = require(\"telescope.config\").values\n\n-- Makes sure aliased options are set correctly\nlocal function apply_cwd_only_aliases(opts)\n  local has_cwd_only = opts.cwd_only ~= nil\n  local has_only_cwd = opts.only_cwd ~= nil\n\n  if has_only_cwd and not has_cwd_only then\n    -- Internally, use cwd_only\n    opts.cwd_only = opts.only_cwd\n    opts.only_cwd = nil\n  end\n\n  return opts\nend\n\n---@return boolean\nlocal function buf_in_cwd(bufname, cwd)\n  if cwd:sub(-1) ~= Path.path.sep then\n    cwd = cwd .. Path.path.sep\n  end\n  local bufname_prefix = bufname:sub(1, #cwd)\n  return bufname_prefix == cwd\nend\n\nlocal internal = {}\n\ninternal.builtin = function(opts)\n  opts.include_extensions = vim.F.if_nil(opts.include_extensions, false)\n  opts.use_default_opts = vim.F.if_nil(opts.use_default_opts, false)\n\n  local objs = {}\n\n  for k, v in pairs(require \"telescope.builtin\") do\n    local debug_info = debug.getinfo(v)\n    table.insert(objs, {\n      filename = string.sub(debug_info.source, 2),\n      text = k,\n    })\n  end\n\n  local title = \"Telescope Builtin\"\n\n  if opts.include_extensions then\n    title = \"Telescope Pickers\"\n    for ext, funcs in pairs(require(\"telescope\").extensions) do\n      for func_name, func_obj in pairs(funcs) do\n        -- Only include exported functions whose name doesn't begin with an underscore\n        if type(func_obj) == \"function\" and string.sub(func_name, 0, 1) ~= \"_\" then\n          local debug_info = debug.getinfo(func_obj)\n          table.insert(objs, {\n            filename = string.sub(debug_info.source, 2),\n            text = string.format(\"%s : %s\", ext, func_name),\n          })\n        end\n      end\n    end\n  end\n\n  table.sort(objs, function(a, b)\n    return a.text < b.text\n  end)\n\n  opts.bufnr = api.nvim_get_current_buf()\n  opts.winnr = api.nvim_get_current_win()\n  pickers\n    .new(opts, {\n      prompt_title = title,\n      finder = finders.new_table {\n        results = objs,\n        entry_maker = function(entry)\n          return make_entry.set_default_entry_mt({\n            value = entry,\n            text = entry.text,\n            display = entry.text,\n            ordinal = entry.text,\n            filename = entry.filename,\n          }, opts)\n        end,\n      },\n      previewer = previewers.builtin.new(opts),\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(_)\n        actions.select_default:replace(function(prompt_bufnr)\n          local selection = action_state.get_selected_entry()\n          if not selection then\n            utils.__warn_no_selection \"builtin.builtin\"\n            return\n          end\n\n          -- we do this to avoid any surprises\n          opts.include_extensions = nil\n\n          local picker_opts\n          if not opts.use_default_opts then\n            picker_opts = opts\n          end\n\n          actions.close(prompt_bufnr)\n          vim.schedule(function()\n            if string.match(selection.text, \" : \") then\n              -- Call appropriate function from extensions\n              local split_string = vim.split(selection.text, \" : \")\n              local ext = split_string[1]\n              local func = split_string[2]\n              require(\"telescope\").extensions[ext][func](picker_opts)\n            else\n              -- Call appropriate telescope builtin\n              require(\"telescope.builtin\")[selection.text](picker_opts)\n            end\n          end)\n        end)\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.resume = function(opts)\n  opts = opts or {}\n  opts.cache_index = vim.F.if_nil(opts.cache_index, 1)\n\n  local cached_pickers = state.get_global_key \"cached_pickers\"\n  if cached_pickers == nil or vim.tbl_isempty(cached_pickers) then\n    utils.notify(\"builtin.resume\", {\n      msg = \"No cached picker(s).\",\n      level = \"INFO\",\n    })\n    return\n  end\n  local picker = cached_pickers[opts.cache_index]\n  if picker == nil then\n    utils.notify(\"builtin.resume\", {\n      msg = string.format(\"Index too large as there are only '%s' pickers cached\", #cached_pickers),\n      level = \"ERROR\",\n    })\n    return\n  end\n  -- reset layout strategy and get_window_options if default as only one is valid\n  -- and otherwise unclear which was actually set\n  if picker.layout_strategy == conf.layout_strategy then\n    picker.layout_strategy = nil\n  end\n  if picker.get_window_options == p_window.get_window_options then\n    picker.get_window_options = nil\n  end\n  picker.cache_picker.index = opts.cache_index\n\n  -- avoid partial `opts.cache_picker` at picker creation\n  if opts.cache_picker ~= false then\n    picker.cache_picker = vim.tbl_extend(\"keep\", opts.cache_picker or {}, picker.cache_picker)\n  else\n    picker.cache_picker.disabled = true\n  end\n  opts.cache_picker = nil\n  picker.previewer = picker.all_previewers\n  if picker.hidden_previewer then\n    picker.hidden_previewer = nil\n    opts.previewer = vim.F.if_nil(opts.previewer, false)\n  end\n  opts.resumed_picker = true\n  pickers.new(opts, picker):find()\nend\n\ninternal.pickers = function(opts)\n  local cached_pickers = state.get_global_key \"cached_pickers\"\n  if cached_pickers == nil or vim.tbl_isempty(cached_pickers) then\n    utils.notify(\"builtin.pickers\", {\n      msg = \"No cached picker(s).\",\n      level = \"INFO\",\n    })\n    return\n  end\n\n  opts = opts or {}\n\n  -- clear cache picker for immediate pickers.new and pass option to resumed picker\n  if opts.cache_picker ~= nil then\n    opts._cache_picker = opts.cache_picker\n    opts.cache_picker = nil\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Pickers\",\n      finder = finders.new_table {\n        results = cached_pickers,\n        entry_maker = make_entry.gen_from_picker(opts),\n      },\n      previewer = previewers.pickers.new(opts),\n      sorter = conf.generic_sorter(opts),\n      cache_picker = false,\n      attach_mappings = function(_, map)\n        actions.select_default:replace(function(prompt_bufnr)\n          local curr_picker = action_state.get_current_picker(prompt_bufnr)\n          local curr_entry = action_state.get_selected_entry()\n          if not curr_entry then\n            return\n          end\n\n          actions.close(prompt_bufnr)\n\n          local selection_index, _ = utils.list_find(function(v)\n            if curr_entry.value == v.value then\n              return true\n            end\n            return false\n          end, curr_picker.finder.results)\n\n          opts.cache_picker = opts._cache_picker\n          opts[\"cache_index\"] = selection_index\n          opts[\"initial_mode\"] = cached_pickers[selection_index].initial_mode\n          internal.resume(opts)\n        end)\n        map({ \"i\", \"n\" }, \"<C-x>\", actions.remove_selected_picker)\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.planets = function(opts)\n  local show_pluto = opts.show_pluto or false\n  local show_moon = opts.show_moon or false\n\n  local sourced_file = require(\"plenary.debug_utils\").sourced_filepath()\n  local base_directory = vim.fn.fnamemodify(sourced_file, \":h:h:h:h\")\n\n  local globbed_files = vim.fn.globpath(base_directory .. \"/data/memes/planets/\", \"*\", true, true)\n  local acceptable_files = {}\n  for _, v in ipairs(globbed_files) do\n    if (show_pluto or not v:find \"pluto\") and (show_moon or not v:find \"moon\") then\n      table.insert(acceptable_files, vim.fn.fnamemodify(v, \":t\"))\n    end\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Planets\",\n      finder = finders.new_table {\n        results = acceptable_files,\n        entry_maker = function(line)\n          return make_entry.set_default_entry_mt({\n            ordinal = line,\n            display = line,\n            filename = base_directory .. \"/data/memes/planets/\" .. line,\n          }, opts)\n        end,\n      },\n      previewer = previewers.cat.new(opts),\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        actions.select_default:replace(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.planets\"\n            return\n          end\n\n          actions.close(prompt_bufnr)\n          print(\"Enjoy astronomy! You viewed:\", selection.display)\n        end)\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.symbols = function(opts)\n  local initial_mode = vim.fn.mode()\n  local files = api.nvim_get_runtime_file(\"data/telescope-sources/*.json\", true)\n  local data_path = (function()\n    if not opts.symbol_path then\n      return Path:new { vim.fn.stdpath \"data\", \"telescope\", \"symbols\" }\n    else\n      return Path:new { opts.symbol_path }\n    end\n  end)()\n  if data_path:exists() then\n    for _, v in\n      ipairs(vim.fs.find(function(name, _)\n        return name:match \"%.json$\"\n      end, { path = data_path:absolute(), limit = math.huge, type = \"file\" }))\n    do\n      table.insert(files, v)\n    end\n  end\n\n  if #files == 0 then\n    utils.notify(\"builtin.symbols\", {\n      msg = \"No sources found! Check out https://github.com/nvim-telescope/telescope-symbols.nvim \"\n        .. \"for some prebuild symbols or how to create you own symbol source.\",\n      level = \"ERROR\",\n    })\n    return\n  end\n\n  local sources = {}\n  if opts.sources then\n    for _, v in ipairs(files) do\n      for _, s in ipairs(opts.sources) do\n        if v:find(s) then\n          table.insert(sources, v)\n        end\n      end\n    end\n  else\n    sources = files\n  end\n\n  local results = {}\n  for _, source in ipairs(sources) do\n    local data = vim.json.decode(Path:new(source):read())\n    for _, entry in ipairs(data) do\n      table.insert(results, entry)\n    end\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Symbols\",\n      finder = finders.new_table {\n        results = results,\n        entry_maker = function(entry)\n          return make_entry.set_default_entry_mt({\n            value = entry,\n            ordinal = entry[1] .. \" \" .. entry[2],\n            display = entry[1] .. \" \" .. entry[2],\n          }, opts)\n        end,\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(_)\n        if initial_mode == \"i\" then\n          actions.select_default:replace(actions.insert_symbol_i)\n        else\n          actions.select_default:replace(actions.insert_symbol)\n        end\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.commands = function(opts)\n  pickers\n    .new(opts, {\n      prompt_title = \"Commands\",\n      finder = finders.new_table {\n        results = (function()\n          local command_iter = api.nvim_get_commands {}\n          local commands = {}\n\n          for _, cmd in pairs(command_iter) do\n            table.insert(commands, cmd)\n          end\n\n          local need_buf_command = vim.F.if_nil(opts.show_buf_command, true)\n\n          if need_buf_command then\n            local buf_command_iter = api.nvim_buf_get_commands(0, {})\n            buf_command_iter[true] = nil -- remove the redundant entry\n            for _, cmd in pairs(buf_command_iter) do\n              table.insert(commands, cmd)\n            end\n          end\n          return commands\n        end)(),\n\n        entry_maker = opts.entry_maker or make_entry.gen_from_commands(opts),\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        actions.select_default:replace(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.commands\"\n            return\n          end\n\n          actions.close(prompt_bufnr)\n          local val = selection.value\n          local cmd = string.format([[:%s ]], val.name)\n\n          if val.nargs == \"0\" then\n            local cr = api.nvim_replace_termcodes(\"<cr>\", true, false, true)\n            cmd = cmd .. cr\n          end\n          vim.cmd [[stopinsert]]\n          api.nvim_feedkeys(cmd, \"nt\", false)\n        end)\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.quickfix = function(opts)\n  local qf_identifier = opts.id or vim.F.if_nil(opts.nr, \"$\")\n  local locations = vim.fn.getqflist({ [opts.id and \"id\" or \"nr\"] = qf_identifier, items = true }).items\n\n  if vim.tbl_isempty(locations) then\n    utils.notify(\"builtin.quickfix\", { msg = \"No quickfix items\", level = \"INFO\" })\n    return\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Quickfix\",\n      finder = finders.new_table {\n        results = locations,\n        entry_maker = opts.entry_maker or make_entry.gen_from_quickfix(opts),\n      },\n      previewer = conf.qflist_previewer(opts),\n      sorter = conf.generic_sorter(opts),\n    })\n    :find()\nend\n\ninternal.quickfixhistory = function(opts)\n  local qflists = {}\n  for i = 1, 10 do -- (n)vim keeps at most 10 quickfix lists in full\n    -- qf weirdness: id = 0 gets id of quickfix list nr\n    local qflist = vim.fn.getqflist { nr = i, id = 0, title = true, items = true }\n    if not vim.tbl_isempty(qflist.items) then\n      table.insert(qflists, qflist)\n    end\n  end\n  local entry_maker = opts.make_entry\n    or function(entry)\n      return make_entry.set_default_entry_mt({\n        value = entry.title or \"Untitled\",\n        ordinal = entry.title or \"Untitled\",\n        display = entry.title or \"Untitled\",\n        nr = entry.nr,\n        id = entry.id,\n        items = entry.items,\n      }, opts)\n    end\n  local qf_entry_maker = make_entry.gen_from_quickfix(opts)\n  pickers\n    .new(opts, {\n      prompt_title = \"Quickfix History\",\n      finder = finders.new_table {\n        results = qflists,\n        entry_maker = entry_maker,\n      },\n      previewer = previewers.new_buffer_previewer {\n        title = \"Quickfix List Preview\",\n        dyn_title = function(_, entry)\n          return entry.title\n        end,\n\n        get_buffer_by_name = function(_, entry)\n          return \"quickfixlist_\" .. tostring(entry.nr)\n        end,\n\n        define_preview = function(self, entry)\n          if self.state.bufname then\n            return\n          end\n          local entries = vim.tbl_map(function(i)\n            return qf_entry_maker(i):display()\n          end, entry.items)\n          api.nvim_buf_set_lines(self.state.bufnr, 0, -1, false, entries)\n        end,\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(_, map)\n        action_set.select:replace(function(prompt_bufnr)\n          local nr = action_state.get_selected_entry().nr\n          actions.close(prompt_bufnr)\n          internal.quickfix { nr = nr }\n        end)\n\n        map({ \"i\", \"n\" }, \"<C-q>\", function(prompt_bufnr)\n          local nr = action_state.get_selected_entry().nr\n          actions.close(prompt_bufnr)\n          vim.cmd(nr .. \"chistory\")\n          vim.cmd \"botright copen\"\n        end)\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.loclist = function(opts)\n  local locations = vim.fn.getloclist(0)\n  local filenames = {}\n  for _, value in pairs(locations) do\n    local bufnr = value.bufnr\n    if filenames[bufnr] == nil then\n      filenames[bufnr] = api.nvim_buf_get_name(bufnr)\n    end\n    value.filename = filenames[bufnr]\n  end\n\n  if vim.tbl_isempty(locations) then\n    utils.notify(\"builtin.loclist\", { msg = \"No loclist items\", level = \"INFO\" })\n    return\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Loclist\",\n      finder = finders.new_table {\n        results = locations,\n        entry_maker = opts.entry_maker or make_entry.gen_from_quickfix(opts),\n      },\n      previewer = conf.qflist_previewer(opts),\n      sorter = conf.generic_sorter(opts),\n    })\n    :find()\nend\n\ninternal.oldfiles = function(opts)\n  opts = apply_cwd_only_aliases(opts)\n  opts.include_current_session = vim.F.if_nil(opts.include_current_session, true)\n\n  local current_buffer = api.nvim_get_current_buf()\n  local current_file = api.nvim_buf_get_name(current_buffer)\n  local results = {}\n\n  if utils.iswin then -- for slash problem in windows\n    current_file = current_file:gsub(\"/\", \"\\\\\")\n  end\n\n  if opts.include_current_session then\n    for _, buffer in ipairs(utils.split_lines(vim.fn.execute \":buffers! t\")) do\n      local match = tonumber(string.match(buffer, \"%s*(%d+)\"))\n      local open_by_lsp = string.match(buffer, \"line 0$\")\n      if match and not open_by_lsp then\n        local file = api.nvim_buf_get_name(match)\n        if utils.iswin then\n          file = file:gsub(\"/\", \"\\\\\")\n        end\n        if vim.uv.fs_stat(file) and match ~= current_buffer then\n          table.insert(results, file)\n        end\n      end\n    end\n  end\n\n  for _, file in ipairs(vim.v.oldfiles) do\n    if utils.iswin then\n      file = file:gsub(\"/\", \"\\\\\")\n    end\n    local file_stat = vim.uv.fs_stat(file)\n    if file_stat and file_stat.type == \"file\" and not vim.tbl_contains(results, file) and file ~= current_file then\n      table.insert(results, file)\n    end\n  end\n\n  if opts.cwd_only or opts.cwd then\n    local cwd = opts.cwd_only and vim.uv.cwd() or opts.cwd\n    results = vim.tbl_filter(function(file)\n      return buf_in_cwd(file, cwd)\n    end, results)\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Oldfiles\",\n      __locations_input = true,\n      finder = finders.new_table {\n        results = results,\n        entry_maker = opts.entry_maker or make_entry.gen_from_file(opts),\n      },\n      sorter = conf.file_sorter(opts),\n      previewer = conf.grep_previewer(opts),\n    })\n    :find()\nend\n\ninternal.command_history = function(opts)\n  local history_string = vim.fn.execute \"history cmd\"\n  local history_list = utils.split_lines(history_string)\n\n  local results = {}\n  local filter_fn = opts.filter_fn\n\n  for i = #history_list, 3, -1 do\n    local item = history_list[i]\n    local _, finish = string.find(item, \"%d+ +\")\n    local cmd = string.sub(item, finish + 1)\n\n    if filter_fn then\n      if filter_fn(cmd) then\n        table.insert(results, cmd)\n      end\n    else\n      table.insert(results, cmd)\n    end\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Command History\",\n      finder = finders.new_table(results),\n      sorter = conf.generic_sorter(opts),\n\n      attach_mappings = function(_, map)\n        actions.select_default:replace(actions.set_command_line)\n        map({ \"i\", \"n\" }, \"<C-e>\", actions.edit_command_line)\n\n        -- TODO: Find a way to insert the text... it seems hard.\n        -- map('i', '<C-i>', actions.insert_value, { expr = true })\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.search_history = function(opts)\n  local search_string = vim.fn.execute \"history search\"\n  local search_list = utils.split_lines(search_string)\n\n  local results = {}\n  for i = #search_list, 3, -1 do\n    local item = search_list[i]\n    local _, finish = string.find(item, \"%d+ +\")\n    table.insert(results, string.sub(item, finish + 1))\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Search History\",\n      finder = finders.new_table(results),\n      sorter = conf.generic_sorter(opts),\n\n      attach_mappings = function(_, map)\n        actions.select_default:replace(actions.set_search_line)\n        map({ \"i\", \"n\" }, \"<C-e>\", actions.edit_search_line)\n\n        -- TODO: Find a way to insert the text... it seems hard.\n        -- map('i', '<C-i>', actions.insert_value, { expr = true })\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.vim_options = function(opts)\n  local res = {}\n  for _, v in pairs(api.nvim_get_all_options_info()) do\n    local ok, value = pcall(api.nvim_get_option_value, v.name, {})\n    if ok then\n      v.value = value\n      table.insert(res, v)\n    end\n  end\n  table.sort(res, function(left, right)\n    return left.name < right.name\n  end)\n\n  pickers\n    .new(opts, {\n      prompt_title = \"options\",\n      finder = finders.new_table {\n        results = res,\n        entry_maker = opts.entry_maker or make_entry.gen_from_vimoptions(opts),\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function()\n        actions.select_default:replace(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.vim_options\"\n            return\n          end\n\n          local esc = \"\"\n          if vim.fn.mode() == \"i\" then\n            esc = api.nvim_replace_termcodes(\"<esc>\", true, false, true)\n          end\n\n          api.nvim_feedkeys(\n            selection.value.type == \"boolean\" and string.format(\"%s:set %s!\", esc, selection.value.name)\n              or string.format(\"%s:set %s=%s\", esc, selection.value.name, selection.value.value),\n            \"m\",\n            true\n          )\n        end)\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.help_tags = function(opts)\n  opts.lang = vim.F.if_nil(opts.lang, vim.o.helplang)\n  opts.fallback = vim.F.if_nil(opts.fallback, true)\n  opts.file_ignore_patterns = {}\n\n  local langs = vim.split(opts.lang, \",\", { trimempty = true })\n  if opts.fallback and not vim.tbl_contains(langs, \"en\") then\n    table.insert(langs, \"en\")\n  end\n  local langs_map = {}\n  for _, lang in ipairs(langs) do\n    langs_map[lang] = true\n  end\n\n  local tag_files = {}\n  local function add_tag_file(lang, file)\n    if langs_map[lang] then\n      if tag_files[lang] then\n        table.insert(tag_files[lang], file)\n      else\n        tag_files[lang] = { file }\n      end\n    end\n  end\n\n  local help_files = {}\n\n  local rtp = vim.o.runtimepath\n  -- extend the runtime path with all plugins not loaded by lazy.nvim\n  local lazy = package.loaded[\"lazy.core.util\"]\n  if lazy and lazy.get_unloaded_rtp then\n    local paths = lazy.get_unloaded_rtp \"\"\n    if #paths > 0 then\n      rtp = rtp .. \",\" .. table.concat(paths, \",\")\n    end\n  end\n  local all_files = vim.fn.globpath(rtp, \"doc/*\", 1, 1)\n  for _, fullpath in ipairs(all_files) do\n    local file = utils.path_tail(fullpath)\n    if file == \"tags\" then\n      add_tag_file(\"en\", fullpath)\n    elseif file:match \"^tags%-..$\" then\n      local lang = file:sub(-2)\n      add_tag_file(lang, fullpath)\n    else\n      help_files[file] = fullpath\n    end\n  end\n\n  local tags = {}\n  local tags_map = {}\n  local delimiter = string.char(9)\n  for _, lang in ipairs(langs) do\n    for _, file in ipairs(tag_files[lang] or {}) do\n      local lines = utils.split_lines(Path:new(file):read(), { trimempty = true })\n      for _, line in ipairs(lines) do\n        -- TODO: also ignore tagComment starting with ';'\n        if not line:match \"^!_TAG_\" then\n          local fields = vim.split(line, delimiter, { trimempty = true })\n          if #fields == 3 and not tags_map[fields[1]] then\n            if fields[1] ~= \"help-tags\" or fields[2] ~= \"tags\" then\n              table.insert(tags, {\n                name = fields[1],\n                filename = help_files[fields[2]],\n                cmd = fields[3],\n                lang = lang,\n              })\n              tags_map[fields[1]] = true\n            end\n          end\n        end\n      end\n    end\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Help\",\n      finder = finders.new_table {\n        results = tags,\n        entry_maker = function(entry)\n          return make_entry.set_default_entry_mt({\n            value = entry.name .. \"@\" .. entry.lang,\n            display = entry.name,\n            ordinal = entry.name,\n            filename = entry.filename,\n            cmd = entry.cmd,\n          }, opts)\n        end,\n      },\n      previewer = previewers.help.new(opts),\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        action_set.select:replace(function(_, cmd)\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.help_tags\"\n            return\n          end\n\n          actions.close(prompt_bufnr)\n          if cmd == \"default\" or cmd == \"horizontal\" then\n            vim.cmd(\"help \" .. selection.value)\n          elseif cmd == \"vertical\" then\n            vim.cmd(\"vert help \" .. selection.value)\n          elseif cmd == \"tab\" then\n            vim.cmd(\"tab help \" .. selection.value)\n          end\n        end)\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.man_pages = function(opts)\n  opts.sections = vim.F.if_nil(opts.sections, { \"1\" })\n  assert(vim.islist(opts.sections), \"sections should be a list\")\n  opts.man_cmd = utils.get_lazy_default(opts.man_cmd, function()\n    local uname = vim.uv.os_uname()\n    local sysname = string.lower(uname.sysname)\n    if sysname == \"darwin\" then\n      local major_version = tonumber(vim.fn.matchlist(uname.release, [[^\\(\\d\\+\\)\\..*]])[2]) or 0\n      return major_version >= 22 and { \"apropos\", \".\" } or { \"apropos\", \" \" }\n    elseif sysname == \"freebsd\" then\n      return { \"apropos\", \".\" }\n    else\n      return { \"apropos\", \"\" }\n    end\n  end)\n  opts.entry_maker = opts.entry_maker or make_entry.gen_from_apropos(opts)\n  opts.env = { PATH = vim.env.PATH, MANPATH = vim.env.MANPATH }\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Man\",\n      finder = finders.new_oneshot_job(opts.man_cmd, opts),\n      previewer = previewers.man.new(opts),\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        action_set.select:replace(function(_, cmd)\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.man_pages\"\n            return\n          end\n\n          local args = selection.section .. \" \" .. selection.value\n          actions.close(prompt_bufnr)\n          if cmd == \"default\" or cmd == \"horizontal\" then\n            vim.cmd(\"Man \" .. args)\n          elseif cmd == \"vertical\" then\n            vim.cmd(\"vert Man \" .. args)\n          elseif cmd == \"tab\" then\n            vim.cmd(\"tab Man \" .. args)\n          end\n        end)\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.reloader = function(opts)\n  local package_list = vim.tbl_keys(package.loaded)\n\n  -- filter out packages we don't want and track the longest package name\n  local column_len = 0\n  for index, module_name in pairs(package_list) do\n    if\n      type(require(module_name)) ~= \"table\"\n      or module_name:sub(1, 1) == \"_\"\n      or package.searchpath(module_name, package.path) == nil\n    then\n      table.remove(package_list, index)\n    elseif #module_name > column_len then\n      column_len = #module_name\n    end\n  end\n  opts.column_len = vim.F.if_nil(opts.column_len, column_len)\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Packages\",\n      finder = finders.new_table {\n        results = package_list,\n        entry_maker = opts.entry_maker or make_entry.gen_from_packages(opts),\n      },\n      -- previewer = previewers.vim_buffer.new(opts),\n      sorter = conf.generic_sorter(opts),\n\n      attach_mappings = function(prompt_bufnr)\n        actions.select_default:replace(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.reloader\"\n            return\n          end\n\n          actions.close(prompt_bufnr)\n          require(\"plenary.reload\").reload_module(selection.value)\n          utils.notify(\"builtin.reloader\", {\n            msg = string.format(\"[%s] - module reloaded\", selection.value),\n            level = \"INFO\",\n          })\n        end)\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.buffers = function(opts)\n  opts = apply_cwd_only_aliases(opts)\n\n  local bufnrs = vim.tbl_filter(function(bufnr)\n    if 1 ~= vim.fn.buflisted(bufnr) then\n      return false\n    end\n    -- only hide unloaded buffers if opts.show_all_buffers is false, keep them listed if true or nil\n    if opts.show_all_buffers == false and not api.nvim_buf_is_loaded(bufnr) then\n      return false\n    end\n    if opts.ignore_current_buffer and bufnr == api.nvim_get_current_buf() then\n      return false\n    end\n\n    local bufname = api.nvim_buf_get_name(bufnr)\n\n    if opts.cwd_only and not buf_in_cwd(bufname, vim.uv.cwd()) then\n      return false\n    end\n    if not opts.cwd_only and opts.cwd and not buf_in_cwd(bufname, opts.cwd) then\n      return false\n    end\n    return true\n  end, api.nvim_list_bufs())\n\n  if not next(bufnrs) then\n    utils.notify(\"builtin.buffers\", { msg = \"No buffers found with the provided options\", level = \"INFO\" })\n    return\n  end\n\n  if opts.sort_mru then\n    table.sort(bufnrs, function(a, b)\n      return vim.fn.getbufinfo(a)[1].lastused > vim.fn.getbufinfo(b)[1].lastused\n    end)\n  end\n\n  if type(opts.sort_buffers) == \"function\" then\n    table.sort(bufnrs, opts.sort_buffers)\n  end\n\n  local buffers = {}\n  local default_selection_idx = 1\n  for i, bufnr in ipairs(bufnrs) do\n    local flag = bufnr == vim.fn.bufnr \"\" and \"%\" or (bufnr == vim.fn.bufnr \"#\" and \"#\" or \" \")\n\n    if opts.sort_lastused and not opts.ignore_current_buffer and flag == \"#\" then\n      default_selection_idx = 2\n    end\n\n    local element = {\n      bufnr = bufnr,\n      flag = flag,\n      info = vim.fn.getbufinfo(bufnr)[1],\n    }\n\n    if opts.sort_lastused and (flag == \"#\" or flag == \"%\") then\n      local idx = ((buffers[1] ~= nil and buffers[1].flag == \"%\") and 2 or 1)\n      table.insert(buffers, idx, element)\n    else\n      if opts.select_current and flag == \"%\" then\n        default_selection_idx = i\n      end\n      table.insert(buffers, element)\n    end\n  end\n\n  if not opts.bufnr_width then\n    local max_bufnr = math.max(unpack(bufnrs))\n    opts.bufnr_width = #tostring(max_bufnr)\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Buffers\",\n      finder = finders.new_table {\n        results = buffers,\n        entry_maker = opts.entry_maker or make_entry.gen_from_buffer(opts),\n      },\n      previewer = conf.grep_previewer(opts),\n      sorter = conf.generic_sorter(opts),\n      default_selection_index = default_selection_idx,\n      attach_mappings = function(_, map)\n        map({ \"i\", \"n\" }, \"<M-d>\", actions.delete_buffer)\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.colorscheme = function(opts)\n  local before_background = vim.o.background\n  local before_color = api.nvim_exec2(\"colorscheme\", { output = true }).output\n  local need_restore = not not opts.enable_preview\n\n  local colors = opts.colors or { before_color }\n  if not vim.tbl_contains(colors, before_color) then\n    table.insert(colors, 1, before_color)\n  end\n\n  colors = vim.list_extend(\n    colors,\n    vim.tbl_filter(function(color)\n      return not vim.tbl_contains(colors, color)\n    end, vim.fn.getcompletion(\"\", \"color\"))\n  )\n\n  -- if lazy is available, extend the colors list with unloaded colorschemes\n  local lazy = package.loaded[\"lazy.core.util\"]\n  if lazy and lazy.get_unloaded_rtp then\n    local paths = lazy.get_unloaded_rtp \"\"\n    local all_files = vim.fn.globpath(table.concat(paths, \",\"), \"colors/*\", 1, 1)\n    for _, f in ipairs(all_files) do\n      local color = vim.fn.fnamemodify(f, \":t:r\")\n      if not vim.tbl_contains(colors, color) then\n        table.insert(colors, color)\n      end\n    end\n  end\n\n  if opts.ignore_builtins then\n    -- stylua: ignore\n    local builtins = {\n      \"blue\", \"darkblue\", \"default\", \"delek\", \"desert\", \"elflord\", \"evening\",\n      \"habamax\", \"industry\", \"koehler\", \"lunaperche\", \"morning\", \"murphy\",\n      \"pablo\", \"peachpuff\", \"quiet\", \"retrobox\", \"ron\", \"shine\", \"slate\",\n      \"sorbet\", \"torte\", \"unokai\", \"vim\", \"wildcharm\", \"zaibatsu\", \"zellner\",\n    }\n    colors = vim.tbl_filter(function(color)\n      return not vim.tbl_contains(builtins, color)\n    end, colors)\n  end\n\n  local previewer\n  if opts.enable_preview then\n    -- define previewer\n    local bufnr = api.nvim_get_current_buf()\n    local p = api.nvim_buf_get_name(bufnr)\n\n    -- show current buffer content in previewer\n    previewer = previewers.new_buffer_previewer {\n      get_buffer_by_name = function()\n        return p\n      end,\n      define_preview = function(self)\n        if vim.uv.fs_stat(p) then\n          conf.buffer_previewer_maker(p, self.state.bufnr, { bufname = self.state.bufname })\n        else\n          local lines = api.nvim_buf_get_lines(bufnr, 0, -1, false)\n          api.nvim_buf_set_lines(self.state.bufnr, 0, -1, false, lines)\n        end\n      end,\n    }\n  end\n\n  local picker = pickers.new(opts, {\n    prompt_title = \"Change Colorscheme\",\n    finder = finders.new_table {\n      results = colors,\n    },\n    sorter = conf.generic_sorter(opts),\n    previewer = previewer,\n    attach_mappings = function(prompt_bufnr)\n      actions.select_default:replace(function()\n        local selection = action_state.get_selected_entry()\n        if selection == nil then\n          utils.__warn_no_selection \"builtin.colorscheme\"\n          return\n        end\n\n        need_restore = false\n        actions.close(prompt_bufnr)\n        vim.cmd.colorscheme(selection.value)\n      end)\n      return true\n    end,\n    on_complete = {\n      function()\n        local selection = action_state.get_selected_entry()\n        if selection == nil then\n          utils.__warn_no_selection \"builtin.colorscheme\"\n          return\n        end\n        if opts.enable_preview then\n          vim.cmd.colorscheme(selection.value)\n        end\n      end,\n    },\n  })\n\n  if opts.enable_preview then\n    -- rewrite picker.close_windows. restore color if needed\n    local close_windows = picker.close_windows\n    picker.close_windows = function(status)\n      close_windows(status)\n      if need_restore then\n        vim.o.background = before_background\n        vim.cmd.colorscheme(before_color)\n      end\n    end\n\n    -- rewrite picker.set_selection so that color schemes can be previewed when the current\n    -- selection is shifted using the keyboard or if an item is clicked with the mouse\n    local set_selection = picker.set_selection\n    picker.set_selection = function(self, row)\n      set_selection(self, row)\n      local selection = action_state.get_selected_entry()\n      if selection == nil then\n        utils.__warn_no_selection \"builtin.colorscheme\"\n        return\n      end\n      if opts.enable_preview then\n        vim.cmd.colorscheme(selection.value)\n      end\n    end\n  end\n\n  picker:find()\nend\n\ninternal.marks = function(opts)\n  local local_marks = {\n    items = vim.fn.getmarklist(opts.bufnr),\n    name_func = function(_, line)\n      return api.nvim_buf_get_lines(opts.bufnr, line - 1, line, false)[1]\n    end,\n  }\n  local global_marks = {\n    items = vim.fn.getmarklist(),\n    name_func = function(mark, _)\n      -- get buffer name if it is opened, otherwise get file name\n      return api.nvim_get_mark(mark, {})[4]\n    end,\n  }\n  local marks_table = {}\n  local marks_others = {}\n  local bufname = api.nvim_buf_get_name(opts.bufnr)\n  local all_marks = {}\n  opts.mark_type = vim.F.if_nil(opts.mark_type, \"all\")\n  if opts.mark_type == \"all\" then\n    all_marks = { local_marks, global_marks }\n  elseif opts.mark_type == \"local\" then\n    all_marks = { local_marks }\n  elseif opts.mark_type == \"global\" then\n    all_marks = { global_marks }\n  end\n\n  for _, cnf in ipairs(all_marks) do\n    for _, v in ipairs(cnf.items) do\n      -- strip the first single quote character\n      local mark = string.sub(v.mark, 2, 3)\n      local _, lnum, col, _ = unpack(v.pos)\n      local name = cnf.name_func(mark, lnum)\n      -- same format to :marks command\n      local line = string.format(\"%s %6d %4d %s\", mark, lnum, col - 1, name)\n      local row = {\n        line = line,\n        lnum = lnum,\n        col = col,\n        filename = utils.path_expand(v.file or bufname),\n      }\n      -- non alphanumeric marks goes to last\n      if mark:match \"%w\" then\n        table.insert(marks_table, row)\n      else\n        table.insert(marks_others, row)\n      end\n    end\n  end\n  marks_table = vim.fn.extend(marks_table, marks_others)\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Marks\",\n      finder = finders.new_table {\n        results = marks_table,\n        entry_maker = opts.entry_maker or make_entry.gen_from_marks(opts),\n      },\n      previewer = conf.grep_previewer(opts),\n      sorter = conf.generic_sorter(opts),\n      push_cursor_on_edit = true,\n      push_tagstack_on_edit = true,\n    })\n    :find()\nend\n\ninternal.registers = function(opts)\n  local registers_table = { '\"', \"-\", \"#\", \"=\", \"/\", \"*\", \"+\", \":\", \".\", \"%\" }\n\n  -- named\n  for i = 0, 9 do\n    table.insert(registers_table, tostring(i))\n  end\n\n  -- alphabetical\n  for i = 65, 90 do\n    table.insert(registers_table, string.char(i))\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Registers\",\n      finder = finders.new_table {\n        results = registers_table,\n        entry_maker = opts.entry_maker or make_entry.gen_from_registers(opts),\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(_, map)\n        actions.select_default:replace(actions.paste_register)\n        map({ \"i\", \"n\" }, \"<C-e>\", actions.edit_register)\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.keymaps = function(opts)\n  opts.modes = vim.F.if_nil(opts.modes, { \"n\", \"i\", \"c\", \"x\" })\n  opts.show_plug = vim.F.if_nil(opts.show_plug, true)\n  opts.only_buf = vim.F.if_nil(opts.only_buf, false)\n\n  local keymap_encountered = {} -- used to make sure no duplicates are inserted into keymaps_table\n  local keymaps_table = {}\n  local max_len_lhs = 0\n\n  -- helper function to populate keymaps_table and determine max_len_lhs\n  local function extract_keymaps(keymaps)\n    for _, keymap in pairs(keymaps) do\n      local keymap_key = keymap.buffer .. keymap.mode .. keymap.lhs -- should be distinct for every keymap\n      if not keymap_encountered[keymap_key] then\n        keymap_encountered[keymap_key] = true\n        if\n          (opts.show_plug or not string.find(keymap.lhs, \"<Plug>\"))\n          and (not opts.lhs_filter or opts.lhs_filter(keymap.lhs))\n          and (not opts.filter or opts.filter(keymap))\n        then\n          table.insert(keymaps_table, keymap)\n          max_len_lhs = math.max(max_len_lhs, #utils.display_termcodes(keymap.lhs))\n        end\n      end\n    end\n  end\n\n  for _, mode in pairs(opts.modes) do\n    local global = api.nvim_get_keymap(mode)\n    local buf_local = api.nvim_buf_get_keymap(0, mode)\n    if not opts.only_buf then\n      extract_keymaps(global)\n    end\n    extract_keymaps(buf_local)\n  end\n  opts.width_lhs = max_len_lhs + 1\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Key Maps\",\n      finder = finders.new_table {\n        results = keymaps_table,\n        entry_maker = opts.entry_maker or make_entry.gen_from_keymaps(opts),\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        actions.select_default:replace(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.keymaps\"\n            return\n          end\n\n          api.nvim_feedkeys(api.nvim_replace_termcodes(selection.value.lhs, true, false, true), \"t\", true)\n          return actions.close(prompt_bufnr)\n        end)\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.filetypes = function(opts)\n  local filetypes = vim.fn.getcompletion(\"\", \"filetype\")\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Filetypes\",\n      finder = finders.new_table {\n        results = filetypes,\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        actions.select_default:replace(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            print \"[telescope] Nothing currently selected\"\n            return\n          end\n\n          actions.close(prompt_bufnr)\n          vim.cmd(\"setfiletype \" .. selection[1])\n        end)\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.highlights = function(opts)\n  local highlights = vim.fn.getcompletion(\"\", \"highlight\")\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Highlights\",\n      finder = finders.new_table {\n        results = highlights,\n        entry_maker = opts.entry_maker or make_entry.gen_from_highlights(opts),\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        actions.select_default:replace(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.highlights\"\n            return\n          end\n\n          actions.close(prompt_bufnr)\n          vim.cmd(\"hi \" .. selection.value)\n        end)\n        return true\n      end,\n      previewer = previewers.highlights.new(opts),\n    })\n    :find()\nend\n\ninternal.autocommands = function(opts)\n  local autocmds = api.nvim_get_autocmds {}\n  table.sort(autocmds, function(lhs, rhs)\n    return lhs.event < rhs.event\n  end)\n  pickers\n    .new(opts, {\n      prompt_title = \"autocommands\",\n      finder = finders.new_table {\n        results = autocmds,\n        entry_maker = opts.entry_maker or make_entry.gen_from_autocommands(opts),\n      },\n      previewer = previewers.autocommands.new(opts),\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        action_set.select:replace_if(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            return false\n          end\n          local val = selection.value\n          local cb = val.callback\n          if vim.is_callable(cb) then\n            if type(cb) ~= \"string\" then\n              local f = type(cb) == \"function\" and cb or rawget(getmetatable(cb), \"__call\")\n              local info = debug.getinfo(f, \"S\")\n              local file = info.source:match \"^@(.+)\"\n              local lnum = info.linedefined\n              if file and (lnum or 0) > 0 then\n                selection.filename, selection.lnum, selection.col = file, lnum, 1\n                return false\n              end\n            end\n          end\n          local group_name = val.group_name ~= \"<anonymous>\" and val.group_name or \"\"\n          local output =\n            vim.fn.execute(\"verb autocmd \" .. group_name .. \" \" .. val.event .. \" \" .. val.pattern, \"silent\")\n          for line in output:gmatch \"[^\\r\\n]+\" do\n            local source_file = line:match \"Last set from (.*) line %d*$\" or line:match \"Last set from (.*)$\"\n            if source_file and source_file ~= \"Lua\" then\n              selection.filename = source_file\n              local source_lnum = line:match \"line (%d*)$\" or \"1\"\n              selection.lnum = tonumber(source_lnum)\n              selection.col = 1\n              return false\n            end\n          end\n          return true\n        end, function()\n          local selection = action_state.get_selected_entry()\n          actions.close(prompt_bufnr)\n          print(\"You selected autocmd: \" .. vim.inspect(selection.value))\n        end)\n\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.spell_suggest = function(opts)\n  local cursor_word = vim.fn.expand \"<cword>\"\n  local suggestions = vim.fn.spellsuggest(cursor_word)\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Spelling Suggestions\",\n      finder = finders.new_table {\n        results = suggestions,\n      },\n      sorter = conf.generic_sorter(opts),\n      attach_mappings = function(prompt_bufnr)\n        actions.select_default:replace(function()\n          local selection = action_state.get_selected_entry()\n          if selection == nil then\n            utils.__warn_no_selection \"builtin.spell_suggest\"\n            return\n          end\n\n          action_state.get_current_picker(prompt_bufnr)._original_mode = \"i\"\n          actions.close(prompt_bufnr)\n          vim.cmd('normal! \"_ciw' .. selection[1])\n          vim.cmd \"stopinsert\"\n        end)\n        return true\n      end,\n    })\n    :find()\nend\n\ninternal.tagstack = function(opts)\n  opts = opts or {}\n  local tagstack = vim.fn.gettagstack().items\n\n  local tags = {}\n  for i = #tagstack, 1, -1 do\n    local tag = tagstack[i]\n    tag.bufnr = tag.from[1]\n    if api.nvim_buf_is_valid(tag.bufnr) then\n      tags[#tags + 1] = tag\n      tag.filename = vim.fn.bufname(tag.bufnr)\n      tag.lnum = tag.from[2]\n      tag.col = tag.from[3]\n\n      tag.text = api.nvim_buf_get_lines(tag.bufnr, tag.lnum - 1, tag.lnum, false)[1] or \"\"\n    end\n  end\n\n  if vim.tbl_isempty(tags) then\n    utils.notify(\"builtin.tagstack\", {\n      msg = \"No tagstack available\",\n      level = \"WARN\",\n    })\n    return\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"TagStack\",\n      finder = finders.new_table {\n        results = tags,\n        entry_maker = make_entry.gen_from_quickfix(opts),\n      },\n      previewer = conf.qflist_previewer(opts),\n      sorter = conf.generic_sorter(opts),\n    })\n    :find()\nend\n\ninternal.jumplist = function(opts)\n  opts = opts or {}\n  local jumplist = vim.fn.getjumplist()[1]\n\n  -- reverse the list\n  local sorted_jumplist = {}\n  for i = #jumplist, 1, -1 do\n    if api.nvim_buf_is_valid(jumplist[i].bufnr) then\n      jumplist[i].text = api.nvim_buf_get_lines(jumplist[i].bufnr, jumplist[i].lnum - 1, jumplist[i].lnum, false)[1]\n        or \"\"\n      table.insert(sorted_jumplist, jumplist[i])\n    end\n  end\n\n  pickers\n    .new(opts, {\n      prompt_title = \"Jumplist\",\n      finder = finders.new_table {\n        results = sorted_jumplist,\n        entry_maker = make_entry.gen_from_quickfix(opts),\n      },\n      previewer = conf.qflist_previewer(opts),\n      sorter = conf.generic_sorter(opts),\n    })\n    :find()\nend\n\nlocal function apply_checks(mod)\n  for k, v in pairs(mod) do\n    mod[k] = function(opts)\n      opts = opts or {}\n\n      v(opts)\n    end\n  end\n\n  return mod\nend\n\nreturn apply_checks(internal)\n"
  },
  {
    "path": "lua/telescope/builtin/__lsp.lua",
    "content": "---@alias TextDocumentFunction fun(client: lsp.Client): lsp.TextDocumentPositionParams\n\nlocal api = vim.api\nlocal lsp = vim.lsp\n\nlocal channel = require(\"plenary.async.control\").channel\nlocal actions = require \"telescope.actions\"\nlocal sorters = require \"telescope.sorters\"\nlocal conf = require(\"telescope.config\").values\nlocal finders = require \"telescope.finders\"\nlocal make_entry = require \"telescope.make_entry\"\nlocal pickers = require \"telescope.pickers\"\nlocal utils = require \"telescope.utils\"\n\nlocal M = {}\n\nlocal nvim011 = utils.nvim011\n\nlocal function call_hierarchy(opts, method, title, direction, item)\n  lsp.buf_request(opts.bufnr, method, { item = item }, function(err, result)\n    if err then\n      utils.notify(\"lsp.call_hierarchy\", { msg = title .. \": \" .. err.message, level = \"ERROR\" })\n      return\n    end\n\n    if not result or vim.tbl_isempty(result) then\n      return\n    end\n\n    local locations = {}\n    for _, ch_call in pairs(result) do\n      local ch_item = ch_call[direction]\n      for _, rng in pairs(ch_call.fromRanges) do\n        table.insert(locations, {\n          filename = vim.uri_to_fname(ch_item.uri),\n          text = ch_item.name,\n          lnum = rng.start.line + 1,\n          col = rng.start.character + 1,\n        })\n      end\n    end\n\n    pickers\n      .new(opts, {\n        prompt_title = title,\n        finder = finders.new_table {\n          results = locations,\n          entry_maker = opts.entry_maker or make_entry.gen_from_quickfix(opts),\n        },\n        previewer = conf.qflist_previewer(opts),\n        sorter = conf.generic_sorter(opts),\n        push_cursor_on_edit = true,\n        push_tagstack_on_edit = true,\n      })\n      :find()\n  end)\nend\n\nlocal function pick_call_hierarchy_item(call_hierarchy_items)\n  if not call_hierarchy_items or vim.tbl_isempty(call_hierarchy_items) then\n    return\n  end\n  if #call_hierarchy_items == 1 then\n    return call_hierarchy_items[1]\n  end\n  local items = {}\n  for i, item in pairs(call_hierarchy_items) do\n    local entry = item.detail or item.name\n    table.insert(items, string.format(\"%d. %s\", i, entry))\n  end\n  local choice = vim.fn.inputlist(items)\n  if choice < 1 or choice > #items then\n    return\n  end\n  return call_hierarchy_items[choice]\nend\n\n---@param win number|nil: Window handler\n---@param extra lsp.TextDocumentPositionParams|nil: Extra fields in params\n---@return lsp.TextDocumentPositionParams|TextDocumentFunction: Params to send to the server\nlocal function client_position_params(win, extra)\n  win = win or api.nvim_get_current_win()\n  if not nvim011 then\n    local params = lsp.util.make_position_params(win)\n    if extra then\n      params = vim.tbl_extend(\"force\", params, extra)\n    end\n    return params\n  end\n  return function(client)\n    local params = lsp.util.make_position_params(win, client.offset_encoding)\n    if extra then\n      params = vim.tbl_extend(\"force\", params, extra)\n    end\n    return params\n  end\nend\n\nlocal function calls(opts, direction)\n  local params = client_position_params()\n  lsp.buf_request(opts.bufnr, \"textDocument/prepareCallHierarchy\", params, function(err, result)\n    if err then\n      utils.notify(\"lsp.calls\", { msg = err.message, level = \"ERROR\" })\n      return\n    end\n\n    local call_hierarchy_item = pick_call_hierarchy_item(result)\n    if not call_hierarchy_item then\n      return\n    end\n\n    if direction == \"from\" then\n      call_hierarchy(opts, \"callHierarchy/incomingCalls\", \"LSP Incoming Calls\", direction, call_hierarchy_item)\n    else\n      call_hierarchy(opts, \"callHierarchy/outgoingCalls\", \"LSP Outgoing Calls\", direction, call_hierarchy_item)\n    end\n  end)\nend\n\nM.incoming_calls = function(opts)\n  calls(opts, \"from\")\nend\n\nM.outgoing_calls = function(opts)\n  calls(opts, \"to\")\nend\n\n---@alias telescope.lsp.list_or_jump_action\n---| \"textDocument/references\"\n---| \"textDocument/definition\"\n---| \"textDocument/typeDefinition\"\n---| \"textDocument/implementation\"\n\n---@param action telescope.lsp.list_or_jump_action\n---@param items vim.quickfix.entry[]\n---@param opts table\n---@return vim.quickfix.entry[]\nlocal apply_action_handler = function(action, items, opts)\n  if action == \"textDocument/references\" and not opts.include_current_line then\n    local lnum = api.nvim_win_get_cursor(opts.winnr)[1]\n    items = vim.tbl_filter(function(v)\n      return not (v.filename == opts.curr_filepath and v.lnum == lnum)\n    end, items)\n  end\n\n  return items\nend\n\n---@param items vim.quickfix.entry[]\n---@param opts table\n---@return vim.quickfix.entry[]\nlocal function filter_file_ignore_patterns(items, opts)\n  local file_ignore_patterns = vim.F.if_nil(opts.file_ignore_patterns, conf.file_ignore_patterns)\n  file_ignore_patterns = file_ignore_patterns or {}\n  if vim.tbl_isempty(file_ignore_patterns) then\n    return items\n  end\n\n  return vim.tbl_filter(function(item)\n    for _, patt in ipairs(file_ignore_patterns) do\n      if string.match(item.filename, patt) then\n        return false\n      end\n    end\n    return true\n  end, items)\nend\n\n---@param action telescope.lsp.list_or_jump_action\n---@param title string prompt title\n---@param funname string: name of the calling function\n---@param params lsp.TextDocumentPositionParams|(fun(client: lsp.Client, bufnr: integer): table?)\n---@param opts table\nlocal function list_or_jump(action, title, funname, params, opts)\n  opts.reuse_win = vim.F.if_nil(opts.reuse_win, false)\n  opts.curr_filepath = api.nvim_buf_get_name(opts.bufnr)\n\n  lsp.buf_request_all(opts.bufnr, action, params, function(results_per_client)\n    local items = {}\n    local first_encoding\n    local errors = {}\n\n    for client_id, result_or_error in pairs(results_per_client) do\n      local error, result = result_or_error.err, result_or_error.result\n      if error then\n        errors[client_id] = error\n      else\n        if result ~= nil then\n          local locations = {}\n\n          if not vim.islist(result) then\n            vim.list_extend(locations, { result })\n          else\n            vim.list_extend(locations, result)\n          end\n\n          local offset_encoding = lsp.get_client_by_id(client_id).offset_encoding\n\n          if not vim.tbl_isempty(result) then\n            first_encoding = offset_encoding\n          end\n\n          vim.list_extend(items, lsp.util.locations_to_items(locations, offset_encoding))\n        end\n      end\n    end\n\n    for _, error in pairs(errors) do\n      utils.notify(funname, { msg = action .. \" : \" .. error.message, level = \"ERROR\" })\n    end\n\n    items = apply_action_handler(action, items, opts)\n    items = filter_file_ignore_patterns(items, opts)\n\n    if vim.tbl_isempty(items) then\n      utils.notify(funname, {\n        msg = string.format(\"No %s found\", title),\n        level = \"INFO\",\n      })\n      return\n    end\n\n    if #items == 1 and opts.jump_type ~= \"never\" then\n      local item = items[1]\n      if opts.curr_filepath ~= item.filename or not opts.reuse_win then\n        local cmd\n        if opts.jump_type == \"tab\" then\n          cmd = \"tabedit\"\n        elseif opts.jump_type == \"split\" then\n          cmd = \"new\"\n        elseif opts.jump_type == \"vsplit\" then\n          cmd = \"vnew\"\n        elseif opts.jump_type == \"tab drop\" then\n          cmd = \"tab drop\"\n        end\n\n        if cmd then\n          vim.cmd(string.format(\"%s %s\", cmd, item.filename))\n        end\n      end\n\n      lsp.util.show_document(item.user_data, first_encoding, { reuse_win = opts.reuse_win })\n    else\n      pickers\n        .new(opts, {\n          prompt_title = title,\n          finder = finders.new_table {\n            results = items,\n            entry_maker = opts.entry_maker or make_entry.gen_from_quickfix(opts),\n          },\n          previewer = conf.qflist_previewer(opts),\n          sorter = conf.generic_sorter(opts),\n          push_cursor_on_edit = true,\n          push_tagstack_on_edit = true,\n        })\n        :find()\n    end\n  end)\nend\n\nM.references = function(opts)\n  opts.include_current_line = vim.F.if_nil(opts.include_current_line, false)\n  local params = client_position_params(opts.winnr, {\n    context = { includeDeclaration = vim.F.if_nil(opts.include_declaration, true) },\n  })\n  return list_or_jump(\"textDocument/references\", \"LSP References\", \"builtin.lsp_references\", params, opts)\nend\n\nM.definitions = function(opts)\n  local params = client_position_params(opts.winnr)\n  return list_or_jump(\"textDocument/definition\", \"LSP Definitions\", \"builtin.lsp_definitions\", params, opts)\nend\n\nM.type_definitions = function(opts)\n  local params = client_position_params(opts.winnr)\n  return list_or_jump(\n    \"textDocument/typeDefinition\",\n    \"LSP Type Definitions\",\n    \"builtin.lsp_type_definitions\",\n    params,\n    opts\n  )\nend\n\nM.implementations = function(opts)\n  local params = client_position_params(opts.winnr)\n  return list_or_jump(\"textDocument/implementation\", \"LSP Implementations\", \"builtin.lsp_implementations\", params, opts)\nend\n\nlocal symbols_sorter = function(symbols)\n  if vim.tbl_isempty(symbols) then\n    return symbols\n  end\n\n  local current_buf = api.nvim_get_current_buf()\n\n  -- sort adequately for workspace symbols\n  local filename_to_bufnr = {}\n  for _, symbol in ipairs(symbols) do\n    if filename_to_bufnr[symbol.filename] == nil then\n      filename_to_bufnr[symbol.filename] = vim.uri_to_bufnr(vim.uri_from_fname(symbol.filename))\n    end\n    symbol.bufnr = filename_to_bufnr[symbol.filename]\n  end\n\n  table.sort(symbols, function(a, b)\n    if a.bufnr == b.bufnr then\n      return a.lnum < b.lnum\n    end\n    if a.bufnr == current_buf then\n      return true\n    end\n    if b.bufnr == current_buf then\n      return false\n    end\n    return a.bufnr < b.bufnr\n  end)\n\n  return symbols\nend\n\nM.document_symbols = function(opts)\n  local params = client_position_params(opts.winnr)\n  lsp.buf_request(opts.bufnr, \"textDocument/documentSymbol\", params, function(err, result, ctx, _)\n    if err then\n      utils.notify(\"lsp.document_symbols\", { msg = err.message, level = \"ERROR\" })\n      return\n    end\n\n    if not result or vim.tbl_isempty(result) then\n      utils.notify(\"builtin.lsp_document_symbols\", {\n        msg = \"No results from textDocument/documentSymbol\",\n        level = \"INFO\",\n      })\n      return\n    end\n\n    local locations\n    if nvim011 then\n      local client = assert(lsp.get_client_by_id(ctx.client_id))\n      locations = lsp.util.symbols_to_items(result or {}, opts.bufnr, client.offset_encoding) or {}\n    else\n      locations = lsp.util.symbols_to_items(result or {}, opts.bufnr) or {}\n    end\n\n    locations = utils.filter_symbols(locations, opts, symbols_sorter)\n    if vim.tbl_isempty(locations) then\n      -- error message already printed in `utils.filter_symbols`\n      return\n    end\n\n    if vim.tbl_isempty(locations) then\n      utils.notify(\"builtin.lsp_document_symbols\", {\n        msg = \"No document_symbol locations found\",\n        level = \"INFO\",\n      })\n      return\n    end\n\n    opts.path_display = { \"hidden\" }\n    pickers\n      .new(opts, {\n        prompt_title = \"LSP Document Symbols\",\n        finder = finders.new_table {\n          results = locations,\n          entry_maker = opts.entry_maker or make_entry.gen_from_lsp_symbols(opts),\n        },\n        previewer = conf.qflist_previewer(opts),\n        sorter = conf.prefilter_sorter {\n          tag = \"symbol_type\",\n          sorter = conf.generic_sorter(opts),\n        },\n        push_cursor_on_edit = true,\n        push_tagstack_on_edit = true,\n      })\n      :find()\n  end)\nend\n\nM.workspace_symbols = function(opts)\n  local params = { query = opts.query or \"\" }\n  lsp.buf_request(opts.bufnr, \"workspace/symbol\", params, function(err, server_result, ctx, _)\n    if err then\n      utils.notify(\"lsp.workspace_symbols\", { msg = err.message, level = \"ERROR\" })\n      return\n    end\n\n    local locations\n    if nvim011 then\n      local client = assert(lsp.get_client_by_id(ctx.client_id))\n      locations = lsp.util.symbols_to_items(server_result or {}, opts.bufnr, client.offset_encoding) or {}\n    else\n      locations = lsp.util.symbols_to_items(server_result or {}, opts.bufnr) or {}\n    end\n\n    locations = utils.filter_symbols(locations, opts, symbols_sorter)\n    if vim.tbl_isempty(locations) then\n      -- error message already printed in `utils.filter_symbols`\n      return\n    end\n\n    if vim.tbl_isempty(locations) then\n      utils.notify(\"builtin.lsp_workspace_symbols\", {\n        msg = \"No results from workspace/symbol. Maybe try a different query: \"\n          .. \"'Telescope lsp_workspace_symbols query=example'\",\n        level = \"INFO\",\n      })\n      return\n    end\n\n    opts.ignore_filename = vim.F.if_nil(opts.ignore_filename, false)\n\n    pickers\n      .new(opts, {\n        prompt_title = \"LSP Workspace Symbols\",\n        finder = finders.new_table {\n          results = locations,\n          entry_maker = opts.entry_maker or make_entry.gen_from_lsp_symbols(opts),\n        },\n        previewer = conf.qflist_previewer(opts),\n        sorter = conf.prefilter_sorter {\n          tag = \"symbol_type\",\n          sorter = conf.generic_sorter(opts),\n        },\n      })\n      :find()\n  end)\nend\n\nlocal function get_workspace_symbols_requester(bufnr, opts)\n  local cancel = function() end\n\n  return function(prompt)\n    local tx, rx = channel.oneshot()\n    cancel()\n    cancel = lsp.buf_request_all(bufnr, \"workspace/symbol\", { query = prompt }, tx)\n\n    local results = rx() ---@type table<integer, {error: lsp.ResponseError?, result: lsp.WorkspaceSymbol?}>\n    local locations = {} ---@type vim.quickfix.entry[]\n\n    for client_id, client_res in pairs(results) do\n      if client_res.error then\n        utils.notify(\"lsp.workspace_symbols\", { msg = client_res.error.message, level = \"ERROR\" })\n      elseif client_res.result ~= nil then\n        if nvim011 then\n          local client = assert(lsp.get_client_by_id(client_id))\n          vim.list_extend(locations, lsp.util.symbols_to_items(client_res.result, bufnr, client.offset_encoding))\n        else\n          vim.list_extend(locations, lsp.util.symbols_to_items(client_res.result, bufnr))\n        end\n      end\n    end\n\n    if not vim.tbl_isempty(locations) then\n      locations = utils.filter_symbols(locations, opts, symbols_sorter) or {}\n    end\n    return locations\n  end\nend\n\nM.dynamic_workspace_symbols = function(opts)\n  pickers\n    .new(opts, {\n      prompt_title = \"LSP Dynamic Workspace Symbols\",\n      finder = finders.new_dynamic {\n        entry_maker = opts.entry_maker or make_entry.gen_from_lsp_symbols(opts),\n        fn = get_workspace_symbols_requester(opts.bufnr, opts),\n      },\n      previewer = conf.qflist_previewer(opts),\n      sorter = sorters.highlighter_only(opts),\n      attach_mappings = function(_, map)\n        map(\"i\", \"<c-space>\", actions.to_fuzzy_refine)\n        return true\n      end,\n    })\n    :find()\nend\n\nlocal function check_capabilities(method, bufnr)\n  local clients = lsp.get_clients { bufnr = bufnr }\n\n  for _, client in pairs(clients) do\n    if nvim011 then\n      if client:supports_method(method, bufnr) then\n        return true\n      end\n    else\n      if client.supports_method(method, { bufnr = bufnr }) then\n        return true\n      end\n    end\n  end\n\n  if #clients == 0 then\n    utils.notify(\"builtin.lsp_*\", {\n      msg = \"no client attached\",\n      level = \"INFO\",\n    })\n  else\n    utils.notify(\"builtin.lsp_*\", {\n      msg = \"server does not support \" .. method,\n      level = \"INFO\",\n    })\n  end\n  return false\nend\n\nlocal feature_map = {\n  [\"document_symbols\"] = \"textDocument/documentSymbol\",\n  [\"references\"] = \"textDocument/references\",\n  [\"definitions\"] = \"textDocument/definition\",\n  [\"type_definitions\"] = \"textDocument/typeDefinition\",\n  [\"implementations\"] = \"textDocument/implementation\",\n  [\"workspace_symbols\"] = \"workspace/symbol\",\n  [\"incoming_calls\"] = \"callHierarchy/incomingCalls\",\n  [\"outgoing_calls\"] = \"callHierarchy/outgoingCalls\",\n}\n\nlocal function apply_checks(mod)\n  for k, v in pairs(mod) do\n    mod[k] = function(opts)\n      opts = opts or {}\n\n      local method = feature_map[k]\n      if method and not check_capabilities(method, opts.bufnr) then\n        return\n      end\n      v(opts)\n    end\n  end\n\n  return mod\nend\n\nreturn apply_checks(M)\n"
  },
  {
    "path": "lua/telescope/builtin/init.lua",
    "content": "---@tag telescope.builtin\n\n---@config { ['field_heading'] = \"Options\", [\"module\"] = \"telescope.builtin\" }\n\n---@brief [[\n--- Telescope Builtins is a collection of community maintained pickers to support common workflows. It can be used as\n--- reference when writing PRs, Telescope extensions, your own custom pickers, or just as a discovery tool for all of\n--- the amazing pickers already shipped with Telescope!\n---\n--- Any of these functions can just be called directly by doing:\n---\n--- :lua require('telescope.builtin').$NAME_OF_PICKER()\n---\n--- To use any of Telescope's default options or any picker-specific options, call your desired picker by passing a lua\n--- table to the picker with all of the options you want to use. Here's an example with the live_grep picker:\n---\n--- <code>\n---   :lua require('telescope.builtin').live_grep({\n---     prompt_title = 'find string in open buffers...',\n---     grep_open_files = true\n---   })\n---   -- or with dropdown theme\n---   :lua require('telescope.builtin').find_files(require('telescope.themes').get_dropdown{\n---     previewer = false\n---   })\n--- </code>\n---@brief ]]\n\nlocal builtin = {}\n\n-- Ref: https://github.com/tjdevries/lazy.nvim\nlocal function require_on_exported_call(mod)\n  return setmetatable({}, {\n    __index = function(_, picker)\n      return function(...)\n        return require(mod)[picker](...)\n      end\n    end,\n  })\nend\n\n--\n--\n-- File-related Pickers\n--\n--\n\n--- Search for a string and get results live as you type, respects .gitignore\n---@param opts table: options to pass to the picker\n---@field cwd string: root dir to search from (default: cwd, use utils.buffer_dir() to search relative to open buffer)\n---@field grep_open_files boolean: if true, restrict search to open files only, mutually exclusive with `search_dirs`\n---@field search_dirs table: directory/directories/files to search, mutually exclusive with `grep_open_files`\n---@field glob_pattern string|table: argument to be used with `--glob`, e.g. \"*.toml\", can use the opposite \"!*.toml\"\n---@field type_filter string: argument to be used with `--type`, e.g. \"rust\", see `rg --type-list`\n---@field additional_args function|table: additional arguments to be passed on. Can be fn(opts) -> tbl\n---@field max_results number: define a upper result value\n---@field disable_coordinates boolean: don't show the line & row numbers (default: false)\n---@field file_encoding string: file encoding for the entry & previewer\nbuiltin.live_grep = require_on_exported_call(\"telescope.builtin.__files\").live_grep\n\n--- Searches for the string under your cursor or the visual selection in your current working directory\n---@param opts table: options to pass to the picker\n---@field cwd string: root dir to search from (default: cwd, use utils.buffer_dir() to search relative to open buffer)\n---@field search string: the query to search\n---@field grep_open_files boolean: if true, restrict search to open files only, mutually exclusive with `search_dirs`\n---@field search_dirs table: directory/directories/files to search, mutually exclusive with `grep_open_files`\n---@field use_regex boolean: if true, special characters won't be escaped, allows for using regex (default: false)\n---@field word_match string: can be set to `-w` to enable exact word matches\n---@field additional_args function|table: additional arguments to be passed on. Can be fn(opts) -> tbl\n---@field disable_coordinates boolean: don't show the line and row numbers (default: false)\n---@field only_sort_text boolean: only sort the text, not the file, line or row (default: false)\n---@field file_encoding string: file encoding for the entry & previewer\nbuiltin.grep_string = require_on_exported_call(\"telescope.builtin.__files\").grep_string\n\n--- Search for files (respecting .gitignore)\n---@param opts table: options to pass to the picker\n---@field cwd string: root dir to search from (default: cwd, use utils.buffer_dir() to search relative to open buffer)\n---@field find_command function|table: cmd to use for the search. Can be a fn(opts) -> tbl (default: autodetect)\n---@field file_entry_encoding string: encoding of output of `find_command`\n---@field follow boolean: if true, follows symlinks (i.e. uses `-L` flag for the `find` command) (default: false)\n---@field hidden boolean: determines whether to show hidden files or not (default: false)\n---@field no_ignore boolean: show files ignored by .gitignore, .ignore, etc. (default: false)\n---@field no_ignore_parent boolean: show files ignored by .gitignore, .ignore, etc. in parent dirs. (default: false)\n---@field search_dirs table: directory/directories/files to search\n---@field search_file string: specify a filename to search for\n---@field file_encoding string: file encoding for the previewer\nbuiltin.find_files = require_on_exported_call(\"telescope.builtin.__files\").find_files\n\n--- This is an alias for the `find_files` picker\nbuiltin.fd = builtin.find_files\n\n--- Lists function names, variables, and other symbols from treesitter queries\n--- - Default keymaps:\n---   - `<C-l>`: show autocompletion menu to prefilter your query by kind of ts node you want to see (i.e. `:var:`)\n---@field show_line boolean: if true, shows the row:column that the result is found at (default: true)\n---@field bufnr number: specify the buffer number where treesitter should run. (default: current buffer)\n---@field symbol_width number: defines the width of the symbol section (default: 25)\n---@field symbols string|table: filter results by symbol kind(s)\n---@field ignore_symbols string|table: list of symbols to ignore\n---@field symbol_highlights table: string -> string. Matches symbol with hl_group\n---@field file_encoding string: file encoding for the previewer\nbuiltin.treesitter = require_on_exported_call(\"telescope.builtin.__files\").treesitter\n\n--- Live fuzzy search inside of the currently open buffer\n---@param opts table: options to pass to the picker\n---@field skip_empty_lines boolean: if true we don't display empty lines (default: false)\n---@field results_ts_highlight boolean: highlight result entries with treesitter (default: true)\n---@field file_encoding string: file encoding for the previewer\nbuiltin.current_buffer_fuzzy_find = require_on_exported_call(\"telescope.builtin.__files\").current_buffer_fuzzy_find\n\n--- Lists tags in current directory with tag location file preview (users are required to run ctags -R to generate tags\n--- or update when introducing new changes)\n---@param opts table: options to pass to the picker\n---@field cwd string: root dir to search from (default: cwd, use utils.buffer_dir() to search relative to open buffer)\n---@field ctags_file string: specify a particular ctags file to use\n---@field show_line boolean: if true, shows the content of the line the tag is found on in the picker (default: true)\n---@field show_kind boolean: if true and kind info is available, show the kind of the tag (default: true)\n---@field only_sort_tags boolean: if true we will only sort tags (default: false)\n---@field fname_width number: defines the width of the filename section (default: 30)\nbuiltin.tags = require_on_exported_call(\"telescope.builtin.__files\").tags\n\n--- Lists all of the tags for the currently open buffer, with a preview\n---@param opts table: options to pass to the picker\n---@field cwd string: root dir to search from (default: cwd, use utils.buffer_dir() to search relative to open buffer)\n---@field ctags_file string: specify a particular ctags file to use\n---@field show_line boolean: if true, shows the content of the line the tag is found on in the picker (default: true)\n---@field show_kind boolean: if true and kind info is available, show the kind of the tag (default: true)\n---@field only_sort_tags boolean: if true we will only sort tags (default: false)\n---@field fname_width number: defines the width of the filename section (default: 30)\nbuiltin.current_buffer_tags = require_on_exported_call(\"telescope.builtin.__files\").current_buffer_tags\n\n--\n--\n-- Git-related Pickers\n--\n--\n\n--- Fuzzy search for files tracked by Git. This command lists the output of the `git ls-files` command,\n--- respects .gitignore\n--- - Default keymaps:\n---   - `<cr>`: opens the currently selected file\n---@param opts table: options to pass to the picker\n---@field cwd string: specify the path of the repo\n---@field use_file_path boolean: if we should use the current buffer git root (default: false)\n---@field use_git_root boolean: if we should use git root as cwd or the cwd (important for submodule) (default: true)\n---@field show_untracked boolean: if true, adds `--others` flag to command and shows untracked files (default: false)\n---@field recurse_submodules boolean: if true, adds the `--recurse-submodules` flag to command (default: false)\n---@field git_command table: command that will be executed. {\"git\",\"ls-files\",\"--exclude-standard\",\"--cached\"}\n---@field file_encoding string: file encoding for the previewer\nbuiltin.git_files = require_on_exported_call(\"telescope.builtin.__git\").files\n\n--- Lists commits for current directory with diff preview\n--- - Default keymaps:\n---   - `<cr>`: checks out the currently selected commit\n---   - `<C-r>m`: resets current branch to selected commit using mixed mode\n---   - `<C-r>s`: resets current branch to selected commit using soft mode\n---   - `<C-r>h`: resets current branch to selected commit using hard mode\n---@param opts table: options to pass to the picker\n---@field cwd string: specify the path of the repo\n---@field use_file_path boolean: if we should use the current buffer git root (default: false)\n---@field use_git_root boolean: if we should use git root as cwd or the cwd (important for submodule) (default: true)\n---@field git_command table: command that will be executed. {\"git\",\"log\",\"--pretty=oneline\",\"--abbrev-commit\",\"--\",\".\"}\nbuiltin.git_commits = require_on_exported_call(\"telescope.builtin.__git\").commits\n\n--- Lists commits for current buffer with diff preview\n--- - Default keymaps or your overridden `select_` keys:\n---   - `<cr>`: checks out the currently selected commit\n---   - `<c-v>`: opens a diff in a vertical split\n---   - `<c-x>`: opens a diff in a horizontal split\n---   - `<c-t>`: opens a diff in a new tab\n---@param opts table: options to pass to the picker\n---@field cwd string: specify the path of the repo\n---@field use_file_path boolean: if we should use the current buffer git root (default: false)\n---@field use_git_root boolean: if we should use git root as cwd or the cwd (important for submodule) (default: true)\n---@field current_file string: specify the current file that should be used for bcommits (default: current buffer)\n---@field git_command table: command that will be executed. {\"git\",\"log\",\"--pretty=oneline\",\"--abbrev-commit\"}\nbuiltin.git_bcommits = require_on_exported_call(\"telescope.builtin.__git\").bcommits\n\n--- Lists commits for a range of lines in the current buffer with diff preview\n--- In visual mode, lists commits for the selected lines\n--- With operator mode enabled, lists commits inside the text object/motion\n--- - Default keymaps or your overridden `select_` keys:\n---   - `<cr>`: checks out the currently selected commit\n---   - `<c-v>`: opens a diff in a vertical split\n---   - `<c-x>`: opens a diff in a horizontal split\n---   - `<c-t>`: opens a diff in a new tab\n---@param opts table: options to pass to the picker\n---@field cwd string: specify the path of the repo\n---@field use_git_root boolean: if we should use git root as cwd or the cwd (important for submodule) (default: true)\n---@field current_file string: specify the current file that should be used for bcommits (default: current buffer)\n---@field git_command table: command that will be executed. the last element must be \"-L\". {\"git\",\"log\",\"--pretty=oneline\",\"--abbrev-commit\",\"--no-patch\",\"-L\"}\n---@field from number: the first line number in the range (default: current line)\n---@field to number: the last line number in the range (default: the value of `from`)\n---@field operator boolean: select lines in operator-pending mode (default: false)\nbuiltin.git_bcommits_range = require_on_exported_call(\"telescope.builtin.__git\").bcommits_range\n\n--- List branches for current directory, with output from `git log --oneline` shown in the preview window\n--- - Default keymaps:\n---   - `<cr>`: checks out the currently selected branch\n---   - `<C-t>`: tracks currently selected branch\n---   - `<C-r>`: rebases currently selected branch\n---   - `<C-a>`: creates a new branch, with confirmation prompt before creation\n---   - `<C-d>`: deletes the currently selected branch, with confirmation prompt before deletion\n---   - `<C-y>`: merges the currently selected branch, with confirmation prompt before deletion\n---@param opts table: options to pass to the picker\n---@field cwd string: specify the path of the repo\n---@field use_file_path boolean: if we should use the current buffer git root (default: false)\n---@field use_git_root boolean: if we should use git root as cwd or the cwd (important for submodule) (default: true)\n---@field show_remote_tracking_branches boolean: show remote tracking branches like origin/main (default: true)\n---@field pattern string: specify the pattern to match all refs\nbuiltin.git_branches = require_on_exported_call(\"telescope.builtin.__git\").branches\n\n--- Lists git status for current directory\n--- - Default keymaps:\n---   - `<Tab>`: stages or unstages the currently selected file\n---   - `<cr>`: opens the currently selected file\n---@param opts table: options to pass to the picker\n---@field cwd string: specify the path of the repo\n---@field use_file_path boolean: if we should use the current buffer git root (default: false)\n---@field use_git_root boolean: if we should use git root as cwd or the cwd (important for submodule) (default: true)\n---@field git_icons table: string -> string. Matches name with icon (see source code, make_entry.lua git_icon_defaults)\n---@field expand_dir boolean: pass flag `-uall` to show files in untracked directories (default: true)\nbuiltin.git_status = require_on_exported_call(\"telescope.builtin.__git\").status\n\n--- Lists stash items in current repository\n--- - Default keymaps:\n---   - `<cr>`: runs `git apply` for currently selected stash\n---@param opts table: options to pass to the picker\n---@field cwd string: specify the path of the repo\n---@field use_file_path boolean: if we should use the current buffer git root (default: false)\n---@field use_git_root boolean: if we should use git root as cwd or the cwd (important for submodule) (default: true)\n---@field show_branch boolean: if we should display the branch name for git stash entries (default: true)\nbuiltin.git_stash = require_on_exported_call(\"telescope.builtin.__git\").stash\n\n--\n--\n-- Internal and Vim-related Pickers\n--\n--\n\n--- Lists all of the community maintained pickers built into Telescope\n---@param opts table: options to pass to the picker\n---@field include_extensions boolean: if true will show the pickers of the installed extensions (default: false)\n---@field use_default_opts boolean: if the selected picker should use its default options (default: false)\nbuiltin.builtin = require_on_exported_call(\"telescope.builtin.__internal\").builtin\n\n--- Opens the previous picker in the identical state (incl. multi selections)\n--- - Notes:\n---   - Requires `cache_picker` in setup or when having invoked pickers, see |telescope.defaults.cache_picker|\n---@param opts table: options to pass to the picker\n---@field cache_index number: what picker to resume, where 1 denotes most recent (default: 1)\nbuiltin.resume = require_on_exported_call(\"telescope.builtin.__internal\").resume\n\n--- Opens a picker over previously cached pickers in their preserved states (incl. multi selections)\n--- - Default keymaps:\n---   - `<C-x>`: delete the selected cached picker\n--- - Notes:\n---   - Requires `cache_picker` in setup or when having invoked pickers, see |telescope.defaults.cache_picker|\n---@param opts table: options to pass to the picker\nbuiltin.pickers = require_on_exported_call(\"telescope.builtin.__internal\").pickers\n\n--- Use the telescope...\n---@param opts table: options to pass to the picker\n---@field show_pluto boolean: we love Pluto (default: false, because its a hidden feature)\n---@field show_moon boolean: we love the Moon (default: false, because its a hidden feature)\nbuiltin.planets = require_on_exported_call(\"telescope.builtin.__internal\").planets\n\n--- Lists symbols inside of `data/telescope-sources/*.json` found in your runtime path\n--- or found in `stdpath(\"data\")/telescope/symbols/*.json`. The second path can be customized.\n--- We provide a couple of default symbols which can be found in\n--- https://github.com/nvim-telescope/telescope-symbols.nvim. This repos README also provides more\n--- information about the format in which the symbols have to be.\n---@param opts table: options to pass to the picker\n---@field symbol_path string: specify the second path. Default: `stdpath(\"data\")/telescope/symbols/*.json`\n---@field sources table: specify a table of sources you want to load this time\nbuiltin.symbols = require_on_exported_call(\"telescope.builtin.__internal\").symbols\n\n--- Lists available plugin/user commands and runs them on `<cr>`\n---@param opts table: options to pass to the picker\n---@field show_buf_command boolean: show buf local command (Default: true)\nbuiltin.commands = require_on_exported_call(\"telescope.builtin.__internal\").commands\n\n--- Lists items in the quickfix list, jumps to location on `<cr>`\n---@param opts table: options to pass to the picker\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\n---@field nr number: specify the quickfix list number\nbuiltin.quickfix = require_on_exported_call(\"telescope.builtin.__internal\").quickfix\n\n--- Lists all quickfix lists in your history and open them with `builtin.quickfix`. It seems that neovim\n--- only keeps the full history for 10 lists\n---@param opts table: options to pass to the picker\nbuiltin.quickfixhistory = require_on_exported_call(\"telescope.builtin.__internal\").quickfixhistory\n\n--- Lists items from the current window's location list, jumps to location on `<cr>`\n---@param opts table: options to pass to the picker\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\nbuiltin.loclist = require_on_exported_call(\"telescope.builtin.__internal\").loclist\n\n--- Lists previously open files, opens on `<cr>`\n---@param opts table: options to pass to the picker\n---@field cwd string: specify a working directory to filter oldfiles by\n---@field only_cwd boolean: show only files in the cwd (default: false)\n---@field cwd_only boolean: alias for only_cwd\n---@field file_encoding string: file encoding for the previewer\nbuiltin.oldfiles = require_on_exported_call(\"telescope.builtin.__internal\").oldfiles\n\n--- Lists commands that were executed recently, and reruns them on `<cr>`\n--- - Default keymaps:\n---   - `<C-e>`: open the command line with the text of the currently selected result populated in it\n---@param opts table: options to pass to the picker\n---@field filter_fn function: filter fn(cmd:string). true if the history command should be presented.\nbuiltin.command_history = require_on_exported_call(\"telescope.builtin.__internal\").command_history\n\n--- Lists searches that were executed recently, and reruns them on `<cr>`\n--- - Default keymaps:\n---   - `<C-e>`: open a search window with the text of the currently selected search result populated in it\n---@param opts table: options to pass to the picker\nbuiltin.search_history = require_on_exported_call(\"telescope.builtin.__internal\").search_history\n\n--- Lists vim options, allows you to edit the current value on `<cr>`\n---@param opts table: options to pass to the picker\nbuiltin.vim_options = require_on_exported_call(\"telescope.builtin.__internal\").vim_options\n\n--- Lists available help tags and opens a new window with the relevant help info on `<cr>`\n---@param opts table: options to pass to the picker\n---@field lang string: specify language (default: vim.o.helplang)\n---@field fallback boolean: fallback to en if language isn't installed (default: true)\nbuiltin.help_tags = require_on_exported_call(\"telescope.builtin.__internal\").help_tags\n\n--- Lists manpage entries, opens them in a help window on `<cr>`\n---@param opts table: options to pass to the picker\n---@field sections table: a list of sections to search, use `{ \"ALL\" }` to search in all sections (default: { \"1\" })\n---@field man_cmd function: that returns the man command. (Default: `apropos \"\"` on linux, `apropos \" \"` on macos)\nbuiltin.man_pages = require_on_exported_call(\"telescope.builtin.__internal\").man_pages\n\n--- Lists lua modules and reloads them on `<cr>`\n---@param opts table: options to pass to the picker\n---@field column_len number: define the max column len for the module name (default: dynamic, longest module name)\nbuiltin.reloader = require_on_exported_call(\"telescope.builtin.__internal\").reloader\n\n--- Lists open buffers in current neovim instance, opens selected buffer on `<cr>`\n--- - Default keymaps:\n---   - `<M-d>`: delete the currently selected buffer\n---@param opts table: options to pass to the picker\n---@field cwd string: specify a working directory to filter buffers list by\n---@field show_all_buffers boolean: if true, show all buffers, including unloaded buffers (default: true)\n---@field ignore_current_buffer boolean: if true, don't show the current buffer in the list (default: false)\n---@field only_cwd boolean: if true, only show buffers in the current working directory (default: false)\n---@field cwd_only boolean: alias for only_cwd\n---@field sort_lastused boolean: Sorts current and last buffer to the top and selects the lastused (default: false)\n---@field sort_mru boolean: Sorts all buffers after most recent used. Not just the current and last one (default: false)\n---@field bufnr_width number: Defines the width of the buffer numbers in front of the filenames  (default: dynamic)\n---@field file_encoding string: file encoding for the previewer\n---@field sort_buffers function: sort fn(bufnr_a, bufnr_b). true if bufnr_a should go first. Runs after sorting by most recent (if specified)\n---@field select_current boolean: select current buffer (default: false)\nbuiltin.buffers = require_on_exported_call(\"telescope.builtin.__internal\").buffers\n\n--- Lists available colorschemes and applies them on `<cr>`\n---@param opts table: options to pass to the picker\n---@field colors table: a list of additional colorschemes to explicitly make available to telescope (default: {})\n---@field enable_preview boolean: if true, will preview the selected color\n---@field ignore_builtins boolean: if true, builtin colorschemes are not listed\nbuiltin.colorscheme = require_on_exported_call(\"telescope.builtin.__internal\").colorscheme\n\n--- Lists vim marks and their value, jumps to the mark on `<cr>`\n---@param opts table: options to pass to the picker\n---@field file_encoding string: file encoding for the previewer\n---@field mark_type string: filter marks by type (default: \"all\", options: \"all\"|\"global\"|\"local\")\nbuiltin.marks = require_on_exported_call(\"telescope.builtin.__internal\").marks\n\n--- Lists vim registers, pastes the contents of the register on `<cr>`\n--- - Default keymaps:\n---   - `<C-e>`: edit the contents of the currently selected register\n---@param opts table: options to pass to the picker\nbuiltin.registers = require_on_exported_call(\"telescope.builtin.__internal\").registers\n\n--- Lists normal mode keymappings, runs the selected keymap on `<cr>`\n---@param opts table: options to pass to the picker\n---@field modes table: a list of short-named keymap modes to search (default: { \"n\", \"i\", \"c\", \"x\" })\n---@field show_plug boolean: if true, the keymaps for which the lhs contains \"<Plug>\" are also shown (default: true)\n---@field only_buf boolean: if true, only show the buffer-local keymaps (default: false)\n---@field lhs_filter function: filter(lhs:string) -> boolean. true for keymap.lhs if the keymap should be shown (optional)\n---@field filter function: filter(km:keymap) -> boolean. true for the keymap if it should be shown (optional)\nbuiltin.keymaps = require_on_exported_call(\"telescope.builtin.__internal\").keymaps\n\n--- Lists all available filetypes, sets currently open buffer's filetype to selected filetype in Telescope on `<cr>`\n---@param opts table: options to pass to the picker\nbuiltin.filetypes = require_on_exported_call(\"telescope.builtin.__internal\").filetypes\n\n--- Lists all available highlights\n---@param opts table: options to pass to the picker\nbuiltin.highlights = require_on_exported_call(\"telescope.builtin.__internal\").highlights\n\n--- Lists vim autocommands and goes to their declaration on `<cr>`\n---@param opts table: options to pass to the picker\nbuiltin.autocommands = require_on_exported_call(\"telescope.builtin.__internal\").autocommands\n\n--- Lists spelling suggestions for the current word under the cursor, replaces word with selected suggestion on `<cr>`\n---@param opts table: options to pass to the picker\nbuiltin.spell_suggest = require_on_exported_call(\"telescope.builtin.__internal\").spell_suggest\n\n--- Lists the tag stack for the current window, jumps to tag on `<cr>`\n---@param opts table: options to pass to the picker\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\nbuiltin.tagstack = require_on_exported_call(\"telescope.builtin.__internal\").tagstack\n\n--- Lists items from Vim's jumplist, jumps to location on `<cr>`\n---@param opts table: options to pass to the picker\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\nbuiltin.jumplist = require_on_exported_call(\"telescope.builtin.__internal\").jumplist\n\n--\n--\n-- LSP-related Pickers\n--\n--\n\n--- Lists LSP references for word under the cursor, jumps to reference on `<cr>`\n---@param opts table: options to pass to the picker\n---@field include_declaration boolean: include symbol declaration in the lsp references (default: true)\n---@field include_current_line boolean: include current line (default: false)\n---@field jump_type string: how to goto reference if there is only one and the definition file is different from the current file, values: \"tab\", \"tab drop\", \"split\", \"vsplit\", \"never\"\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\n---@field reuse_win boolean: jump to existing window if buffer is already opened (default: false)\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_references = require_on_exported_call(\"telescope.builtin.__lsp\").references\n\n--- Lists LSP incoming calls for word under the cursor, jumps to reference on `<cr>`\n---@param opts table: options to pass to the picker\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_incoming_calls = require_on_exported_call(\"telescope.builtin.__lsp\").incoming_calls\n\n--- Lists LSP outgoing calls for word under the cursor, jumps to reference on `<cr>`\n---@param opts table: options to pass to the picker\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_outgoing_calls = require_on_exported_call(\"telescope.builtin.__lsp\").outgoing_calls\n\n--- Goto the definition of the word under the cursor, if there's only one, otherwise show all options in Telescope\n---@param opts table: options to pass to the picker\n---@field jump_type string: how to goto definition if there is only one and the definition file is different from the current file, values: \"tab\", \"tab drop\", \"split\", \"vsplit\", \"never\"\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\n---@field reuse_win boolean: jump to existing window if buffer is already opened (default: false)\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_definitions = require_on_exported_call(\"telescope.builtin.__lsp\").definitions\n\n--- Goto the definition of the type of the word under the cursor, if there's only one,\n--- otherwise show all options in Telescope\n---@param opts table: options to pass to the picker\n---@field jump_type string: how to goto definition if there is only one and the definition file is different from the current file, values: \"tab\", \"tab drop\", \"split\", \"vsplit\", \"never\"\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\n---@field reuse_win boolean: jump to existing window if buffer is already opened (default: false)\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_type_definitions = require_on_exported_call(\"telescope.builtin.__lsp\").type_definitions\n\n--- Goto the implementation of the word under the cursor if there's only one, otherwise show all options in Telescope\n---@param opts table: options to pass to the picker\n---@field jump_type string: how to goto implementation if there is only one and the definition file is different from the current file, values: \"tab\", \"tab drop\", \"split\", \"vsplit\", \"never\"\n---@field show_line boolean: show results text (default: true)\n---@field trim_text boolean: trim results text (default: false)\n---@field reuse_win boolean: jump to existing window if buffer is already opened (default: false)\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_implementations = require_on_exported_call(\"telescope.builtin.__lsp\").implementations\n\n--- Lists LSP document symbols in the current buffer\n--- - Default keymaps:\n---   - `<C-l>`: show autocompletion menu to prefilter your query by type of symbol you want to see (i.e. `:variable:`)\n---@param opts table: options to pass to the picker\n---@field fname_width number: defines the width of the filename section (default: 30)\n---@field symbol_width number: defines the width of the symbol section (default: 25)\n---@field symbol_type_width number: defines the width of the symbol type section (default: 8)\n---@field show_line boolean: if true, shows the content of the line the tag is found on (default: false)\n---@field symbols string|table: filter results by symbol kind(s)\n---@field ignore_symbols string|table: list of symbols to ignore\n---@field symbol_highlights table: string -> string. Matches symbol with hl_group\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_document_symbols = require_on_exported_call(\"telescope.builtin.__lsp\").document_symbols\n\n--- Lists LSP document symbols in the current workspace\n--- - Default keymaps:\n---   - `<C-l>`: show autocompletion menu to prefilter your query by type of symbol you want to see (i.e. `:variable:`)\n---@param opts table: options to pass to the picker\n---@field query string: for what to query the workspace (default: \"\")\n---@field fname_width number: defines the width of the filename section (default: 30)\n---@field symbol_width number: defines the width of the symbol section (default: 25)\n---@field symbol_type_width number: defines the width of the symbol type section (default: 8)\n---@field show_line boolean: if true, shows the content of the line the tag is found on (default: false)\n---@field symbols string|table: filter results by symbol kind(s)\n---@field ignore_symbols string|table: list of symbols to ignore\n---@field symbol_highlights table: string -> string. Matches symbol with hl_group\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_workspace_symbols = require_on_exported_call(\"telescope.builtin.__lsp\").workspace_symbols\n\n--- Dynamically lists LSP for all workspace symbols\n--- - Default keymaps:\n---   - `<C-l>`: show autocompletion menu to prefilter your query by type of symbol you want to see (i.e. `:variable:`), only works after refining to fuzzy search using <C-space>\n---@param opts table: options to pass to the picker\n---@field fname_width number: defines the width of the filename section (default: 30)\n---@field show_line boolean: if true, shows the content of the line the symbol is found on (default: false)\n---@field symbols string|table: filter results by symbol kind(s)\n---@field ignore_symbols string|table: list of symbols to ignore\n---@field symbol_highlights table: string -> string. Matches symbol with hl_group\n---@field file_encoding string: file encoding for the previewer\nbuiltin.lsp_dynamic_workspace_symbols = require_on_exported_call(\"telescope.builtin.__lsp\").dynamic_workspace_symbols\n\n--\n--\n-- Diagnostics Pickers\n--\n--\n\n--- Lists diagnostics\n--- - Fields:\n---   - `All severity flags can be passed as `string` or `number` as per `:vim.diagnostic.severity:`\n--- - Default keymaps:\n---   - `<C-l>`: show autocompletion menu to prefilter your query with the diagnostic you want to see (i.e. `:warning:`)\n--- - sort_by option:\n---   - \"buffer\": order by bufnr (prioritizing current bufnr), severity, lnum\n---   - \"severity\": order by severity, bufnr (prioritizing current bufnr), lnum\n---@param opts table: options to pass to the picker\n---@field bufnr number|nil: Buffer number to get diagnostics from. Use 0 for current buffer or nil for all buffers\n---@field severity string|number: filter diagnostics by severity name (string) or id (number)\n---@field severity_limit string|number: keep diagnostics equal or more severe wrt severity name (string) or id (number)\n---@field severity_bound string|number: keep diagnostics equal or less severe wrt severity name (string) or id (number)\n---@field root_dir string|boolean: if set to string, get diagnostics only for buffers under this dir otherwise cwd\n---@field no_unlisted boolean: if true, get diagnostics only for listed buffers\n---@field no_sign boolean: hide DiagnosticSigns from Results (default: false)\n---@field line_width string|number: set length of diagnostic entry text in Results. Use 'full' for full untruncated text\n---@field namespace number: limit your diagnostics to a specific namespace\n---@field disable_coordinates boolean: don't show the line & row numbers (default: false)\n---@field sort_by string: sort order of the diagnostics results; see above notes (default: \"buffer\")\nbuiltin.diagnostics = require_on_exported_call(\"telescope.builtin.__diagnostics\").get\n\nlocal apply_config = function(mod)\n  for k, v in pairs(mod) do\n    mod[k] = function(opts)\n      local pickers_conf = require(\"telescope.config\").pickers\n\n      opts = opts or {}\n      opts.bufnr = opts.bufnr or vim.api.nvim_get_current_buf()\n      opts.winnr = opts.winnr or vim.api.nvim_get_current_win()\n      local pconf = pickers_conf[k] or {}\n      local defaults = (function()\n        if pconf.theme then\n          return require(\"telescope.themes\")[\"get_\" .. pconf.theme](pconf)\n        end\n        return vim.deepcopy(pconf)\n      end)()\n\n      if pconf.mappings then\n        defaults.attach_mappings = function(_, map)\n          for mode, tbl in pairs(pconf.mappings) do\n            for key, action in pairs(tbl) do\n              map(mode, key, action)\n            end\n          end\n          return true\n        end\n      end\n\n      if pconf.attach_mappings and opts.attach_mappings then\n        local opts_attach = opts.attach_mappings\n        opts.attach_mappings = function(prompt_bufnr, map)\n          pconf.attach_mappings(prompt_bufnr, map)\n          return opts_attach(prompt_bufnr, map)\n        end\n      end\n\n      if defaults.attach_mappings and opts.attach_mappings then\n        local opts_attach = opts.attach_mappings\n        opts.attach_mappings = function(prompt_bufnr, map)\n          defaults.attach_mappings(prompt_bufnr, map)\n          return opts_attach(prompt_bufnr, map)\n        end\n      end\n\n      v(vim.tbl_extend(\"force\", defaults, opts))\n    end\n  end\n\n  return mod\nend\n\n-- We can't do this in one statement because tree-sitter-lua docgen gets confused if we do\nbuiltin = apply_config(builtin)\nreturn builtin\n"
  },
  {
    "path": "lua/telescope/command.lua",
    "content": "---@tag telescope.command\n---@config { [\"module\"] = \"telescope.command\" }\n\n---@brief [[\n---\n--- Telescope commands can be called through two apis,\n--- the lua api and the viml api.\n---\n--- The lua api is the more direct way to interact with Telescope, as you directly call the\n--- lua functions that Telescope defines.\n--- It can be called in a lua file using commands like:\n--- <pre>\n--- `require(\"telescope.builtin\").find_files({hidden=true, layout_config={prompt_position=\"top\"}})`\n--- </pre>\n--- If you want to use this api from a vim file you should prepend `lua` to the command, as below:\n--- <pre>\n--- `lua require(\"telescope.builtin\").find_files({hidden=true, layout_config={prompt_position=\"top\"}})`\n--- </pre>\n--- If you want to use this api from a neovim command line you should prepend `:lua` to\n--- the command, as below:\n--- <pre>\n--- `:lua require(\"telescope.builtin\").find_files({hidden=true, layout_config={prompt_position=\"top\"}})`\n--- </pre>\n---\n--- The viml api is more indirect, as first the command must be parsed to the relevant lua\n--- equivalent, which brings some limitations.\n--- The viml api can be called using commands like:\n--- <pre>\n--- `:Telescope find_files hidden=true layout_config={\"prompt_position\":\"top\"}`\n--- </pre>\n--- This involves setting options using an `=` and using viml syntax for lists and\n--- dictionaries when the corresponding lua function requires a table.\n---\n--- One limitation of the viml api is that there can be no spaces in any of the options.\n--- For example, if you want to use the `cwd` option for `find_files` to specify that you\n--- only want to search within the folder `/foo bar/subfolder/` you could not do that using the\n--- viml api, as the path name contains a space.\n--- Similarly, you could NOT set the `prompt_position` to `\"top\"` using the following command:\n--- <pre>\n--- `:Telescope find_files layout_config={ \"prompt_position\" : \"top\" }`\n--- </pre>\n--- as there are spaces in the option.\n---\n---@brief ]]\nlocal themes = require \"telescope.themes\"\nlocal builtin = require \"telescope.builtin\"\nlocal extensions = require(\"telescope._extensions\").manager\nlocal config = require \"telescope.config\"\nlocal utils = require \"telescope.utils\"\nlocal command = {}\n\nlocal arg_value = {\n  [\"nil\"] = nil,\n  ['\"\"'] = \"\",\n  ['\"'] = \"\",\n}\n\nlocal bool_type = {\n  [\"false\"] = false,\n  [\"true\"] = true,\n}\n\nlocal split_keywords = {\n  [\"find_command\"] = true,\n  [\"vimgrep_arguments\"] = true,\n  [\"sections\"] = true,\n  [\"search_dirs\"] = true,\n  [\"symbols\"] = true,\n  [\"ignore_symbols\"] = true,\n}\n\n-- convert command line string arguments to\n-- lua number boolean type and nil value\ncommand.convert_user_opts = function(user_opts)\n  local default_opts = config.values\n\n  local _switch = {\n    [\"boolean\"] = function(key, val)\n      if val == \"false\" then\n        user_opts[key] = false\n        return\n      end\n      user_opts[key] = true\n    end,\n    [\"number\"] = function(key, val)\n      user_opts[key] = tonumber(val)\n    end,\n    [\"string\"] = function(key, val)\n      if arg_value[val] ~= nil then\n        user_opts[key] = arg_value[val]\n        return\n      end\n\n      if bool_type[val] ~= nil then\n        user_opts[key] = bool_type[val]\n      end\n    end,\n    [\"table\"] = function(key, val)\n      local ok, eval = pcall(vim.fn.eval, val)\n      if ok then\n        user_opts[key] = eval\n      else\n        local err\n        eval, err = loadstring(\"return \" .. val)\n        if err ~= nil then\n          -- discard invalid lua expression\n          user_opts[key] = nil\n        elseif eval ~= nil then\n          ok, eval = pcall(eval)\n          if ok and type(eval) == \"table\" then\n            -- allow if return a table only\n            user_opts[key] = eval\n          else\n            -- otherwise return nil (allows split check later)\n            -- BUG: this doesn't allow things like `preview=false`, where an\n            -- option supports other types other than the default type\n            -- (`preview` has a default type of table)\n            user_opts[key] = nil\n          end\n        end\n      end\n    end,\n  }\n\n  local _switch_metatable = {\n    __index = function(_, k)\n      utils.notify(\"command\", {\n        msg = string.format(\"Type of '%s' does not match\", k),\n        level = \"WARN\",\n      })\n    end,\n  }\n\n  setmetatable(_switch, _switch_metatable)\n\n  for key, val in pairs(user_opts) do\n    if split_keywords[key] then\n      _switch[\"table\"](key, val)\n      if user_opts[key] == nil then\n        user_opts[key] = vim.split(val, \",\")\n      end\n    elseif default_opts[key] ~= nil then\n      _switch[type(default_opts[key])](key, val)\n    elseif tonumber(val) ~= nil then\n      _switch[\"number\"](key, val)\n    else\n      _switch[\"string\"](key, val)\n    end\n  end\nend\n\n-- receive the viml command args\n-- it should be a table value like\n-- {\n--   cmd = 'find_files',\n--   theme = 'dropdown',\n--   extension_type  = 'command'\n--   opts = {\n--      cwd = '***',\n-- }\nlocal function run_command(args)\n  local user_opts = args or {}\n  if next(user_opts) == nil and not user_opts.cmd then\n    utils.notify(\"command\", {\n      msg = \"Command missing arguments\",\n      level = \"ERROR\",\n    })\n    return\n  end\n\n  local cmd = user_opts.cmd\n  local opts = user_opts.opts or {}\n  local extension_type = user_opts.extension_type or \"\"\n  local theme = user_opts.theme or \"\"\n\n  if next(opts) ~= nil then\n    command.convert_user_opts(opts)\n  end\n\n  if string.len(theme) > 0 then\n    local func = themes[theme] or themes[\"get_\" .. theme]\n    opts = func(opts)\n  end\n\n  if string.len(extension_type) > 0 and extension_type ~= '\"' then\n    extensions[cmd][extension_type](opts)\n    return\n  end\n\n  if builtin[cmd] then\n    builtin[cmd](opts)\n    return\n  end\n\n  if rawget(extensions, cmd) then\n    extensions[cmd][cmd](opts)\n    return\n  end\n\n  local ok = pcall(require(\"telescope\").load_extension, cmd)\n  if ok then\n    extensions[cmd][cmd](opts)\n    return\n  end\n\n  utils.notify(\"run_command\", {\n    msg = \"Unknown command\",\n    level = \"ERROR\",\n  })\nend\n\n-- @Summary get extensions sub command\n-- register extensions dap gh etc.\n-- input in command line `Telescope gh <TAB>`\n-- Returns a list for each extension.\nfunction command.get_extensions_subcommand()\n  local exts = require(\"telescope._extensions\").manager\n  local complete_ext_table = {}\n  for cmd, value in pairs(exts) do\n    if type(value) == \"table\" then\n      local subcmds = {}\n      for key, _ in pairs(value) do\n        table.insert(subcmds, key)\n      end\n      complete_ext_table[cmd] = subcmds\n    end\n  end\n  return complete_ext_table\nend\n\nfunction command.register_keyword(keyword)\n  split_keywords[keyword] = true\nend\n\nfunction command.load_command(cmd, ...)\n  local args = { ... }\n  if cmd == nil then\n    run_command { cmd = \"builtin\" }\n    return\n  end\n\n  local user_opts = {\n    cmd = cmd,\n    opts = {},\n  }\n\n  for _, arg in ipairs(args) do\n    if arg:find(\"=\", 1) == nil then\n      user_opts[\"extension_type\"] = arg\n    else\n      local param = vim.split(arg, \"=\")\n      local key = table.remove(param, 1)\n      param = table.concat(param, \"=\")\n      if key == \"theme\" then\n        user_opts[\"theme\"] = param\n      else\n        user_opts.opts[key] = param\n      end\n    end\n  end\n\n  run_command(user_opts)\nend\n\nreturn command\n"
  },
  {
    "path": "lua/telescope/config/resolve.lua",
    "content": "---@tag telescope.resolve\n---@config { [\"module\"] = \"telescope.resolve\" }\n\n---@brief [[\n--- Provides \"resolver functions\" to allow more customisable inputs for options.\n---@brief ]]\n\n--[[\n\nUltimately boils down to getting `height` and `width` for:\n- prompt\n- preview\n- results\n\nNo matter what you do, I will not make prompt have more than one line (atm)\n\nResult of `resolve` should be a table with:\n\n{\n  preview = {\n    get_width = function(self, max_columns, max_lines) end\n    get_height = function(self, max_columns, max_lines) end\n  },\n\n  result = {\n    get_width = function(self, max_columns, max_lines) end\n    get_height = function(self, max_columns, max_lines) end\n  },\n\n  prompt = {\n    get_width = function(self, max_columns, max_lines) end\n    get_height = function(self, max_columns, max_lines) end\n  },\n\n  total ?\n}\n\n!!NOT IMPLEMENTED YET!!\n\nheight =\n    1. 0 <= number < 1\n        This means total height as a percentage\n\n    2. 1 <= number\n        This means total height as a fixed number\n\n    3. function(picker, columns, lines)\n        -> returns one of the above options\n        return math.min(110, max_rows * .5)\n\n        if columns > 120 then\n            return 110\n        else\n            return 0.6\n        end\n\n    3. {\n        previewer = x,\n        results = x,\n        prompt = x,\n    }, this means I do my best guess I can for these, given your options\n\nwidth =\n    exactly the same, but switch to width\n\n\n{\n    height = 0.5,\n    width = {\n        previewer = 0.25,\n        results = 30,\n    }\n}\n\nhttps://github.com/nvim-lua/telescope.nvim/pull/43\n\nAfter we get layout, we should try and make top-down sorting work.\nThat's the next step to scrolling.\n\n{\n    vertical = {\n    },\n    horizontal = {\n    },\n\n    height = ...\n    width = ...\n}\n\n\n\n--]]\n\nlocal resolver = {}\nlocal _resolve_map = {}\n\nlocal throw_invalid_config_option = function(key, value)\n  error(string.format(\"Invalid configuration option for '%s': '%s'\", key, tostring(value)), 2)\nend\n\n-- Booleans\n_resolve_map[function(val)\n  return val == false\nend] = function(_, val)\n  return function(...)\n    return val\n  end\nend\n\n-- Percentages\n_resolve_map[function(val)\n  return type(val) == \"number\" and val >= 0 and val < 1\nend] = function(selector, val)\n  return function(...)\n    local selected = select(selector, ...)\n    return math.floor(val * selected)\n  end\nend\n\n-- Numbers\n_resolve_map[function(val)\n  return type(val) == \"number\" and val >= 1\nend] = function(selector, val)\n  return function(...)\n    local selected = select(selector, ...)\n    return math.min(val, selected)\n  end\nend\n\n-- function:\n--    Function must have same signature as get_window_layout\n--        function(self, max_columns, max_lines): number\n--\n--    Resulting number is used for this configuration value.\n_resolve_map[function(val)\n  return type(val) == \"function\"\nend] = function(_, val)\n  return val\nend\n\n_resolve_map[function(val)\n  return type(val) == \"table\" and val[\"max\"] ~= nil and val[1] ~= nil and val[1] >= 0 and val[1] < 1\nend] = function(\n  selector,\n  val\n)\n  return function(...)\n    local selected = select(selector, ...)\n    return math.min(math.floor(val[1] * selected), val[\"max\"])\n  end\nend\n\n_resolve_map[function(val)\n  return type(val) == \"table\" and val[\"min\"] ~= nil and val[1] ~= nil and val[1] >= 0 and val[1] < 1\nend] = function(\n  selector,\n  val\n)\n  return function(...)\n    local selected = select(selector, ...)\n    return math.max(math.floor(val[1] * selected), val[\"min\"])\n  end\nend\n\n-- Add padding option\n_resolve_map[function(val)\n  return type(val) == \"table\" and val[\"padding\"] ~= nil\nend] = function(selector, val)\n  local resolve_pad = function(value)\n    for k, v in pairs(_resolve_map) do\n      if k(value) then\n        return v(selector, value)\n      end\n    end\n    throw_invalid_config_option(\"padding\", value)\n  end\n\n  return function(...)\n    local selected = select(selector, ...)\n    local padding = resolve_pad(val[\"padding\"])\n    return math.floor(selected - 2 * padding(...))\n  end\nend\n\n--- Converts input to a function that returns the height.\n--- The input must take one of five forms:\n--- 1. 0 <= number < 1 <br>\n---     This means total height as a percentage.\n--- 2. 1 <= number <br>\n---     This means total height as a fixed number.\n--- 3. function <br>\n---     Must have signature:\n---       function(self, max_columns, max_lines): number\n--- 4. table of the form: { val, max = ..., min = ... } <br>\n---     val has to be in the first form 0 <= val < 1 and only one is given,\n---     `min` or `max` as fixed number\n--- 5. table of the form: {padding = `foo`} <br>\n---     where `foo` has one of the previous three forms. <br>\n---     The height is then set to be the remaining space after padding.\n---     For example, if the window has height 50, and the input is {padding = 5},\n---     the height returned will be `40 = 50 - 2*5`\n---\n--- The returned function will have signature:\n---     function(self, max_columns, max_lines): number\nresolver.resolve_height = function(val)\n  for k, v in pairs(_resolve_map) do\n    if k(val) then\n      return v(3, val)\n    end\n  end\n  throw_invalid_config_option(\"height\", val)\nend\n\n--- Converts input to a function that returns the width.\n--- The input must take one of five forms:\n--- 1. 0 <= number < 1 <br>\n---     This means total width as a percentage.\n--- 2. 1 <= number <br>\n---     This means total width as a fixed number.\n--- 3. function <br>\n---     Must have signature:\n---       function(self, max_columns, max_lines): number\n--- 4. table of the form: { val, max = ..., min = ... } <br>\n---     val has to be in the first form 0 <= val < 1 and only one is given,\n---     `min` or `max` as fixed number\n--- 5. table of the form: {padding = `foo`} <br>\n---     where `foo` has one of the previous three forms. <br>\n---     The width is then set to be the remaining space after padding.\n---     For example, if the window has width 100, and the input is {padding = 5},\n---     the width returned will be `90 = 100 - 2*5`\n---\n--- The returned function will have signature:\n---     function(self, max_columns, max_lines): number\nresolver.resolve_width = function(val)\n  for k, v in pairs(_resolve_map) do\n    if k(val) then\n      return v(2, val)\n    end\n  end\n\n  throw_invalid_config_option(\"width\", val)\nend\n\n--- Calculates the adjustment required to move the picker from the middle of the screen to\n--- an edge or corner. <br>\n--- The `anchor` can be any of the following strings:\n---   - \"\", \"CENTER\", \"NW\", \"N\", \"NE\", \"E\", \"SE\", \"S\", \"SW\", \"W\"\n--- The anchors have the following meanings:\n---   - \"\" or \"CENTER\":<br>\n---     the picker will remain in the middle of the screen.\n---   - Compass directions:<br>\n---     the picker will move to the corresponding edge/corner\n---     e.g. \"NW\" -> \"top left corner\", \"E\" -> \"right edge\", \"S\" -> \"bottom edge\"\nresolver.resolve_anchor_pos = function(anchor, p_width, p_height, max_columns, max_lines, anchor_padding)\n  anchor = anchor:upper()\n  local pos = { 0, 0 }\n  if anchor == \"CENTER\" then\n    return pos\n  end\n  if anchor:find \"W\" then\n    pos[1] = math.ceil((p_width - max_columns) / 2) + anchor_padding\n  elseif anchor:find \"E\" then\n    pos[1] = math.ceil((max_columns - p_width) / 2) - anchor_padding\n  end\n  if anchor:find \"N\" then\n    pos[2] = math.ceil((p_height - max_lines) / 2) + anchor_padding\n  elseif anchor:find \"S\" then\n    pos[2] = math.ceil((max_lines - p_height) / 2) - anchor_padding\n  end\n  return pos\nend\n\n-- duplicate from utils.lua to keep self-contained\n-- Win option always returns a table with preview, results, and prompt.\n-- It handles many different ways. Some examples are as follows:\n--\n-- -- Disable\n-- borderchars = false\n--\n-- -- All three windows share the same\n-- borderchars = { '─', '│', '─', '│', '┌', '┐', '┘', '└'},\n--\n-- -- Each window gets it's own configuration\n-- borderchars = {\n--   preview = {...},\n--   results = {...},\n--   prompt = {...},\n-- }\n--\n-- -- Default to [1] but override with specific items\n-- borderchars = {\n--   {...}\n--   prompt = {...},\n-- }\nresolver.win_option = function(val, default)\n  if type(val) ~= \"table\" or vim.islist(val) then\n    if val == nil then\n      val = default\n    end\n\n    return {\n      preview = val,\n      results = val,\n      prompt = val,\n    }\n  elseif type(val) == \"table\" then\n    assert(not vim.islist(val))\n\n    local val_to_set = val[1]\n    if val_to_set == nil then\n      val_to_set = default\n    end\n\n    return {\n      preview = vim.F.if_nil(val.preview, val_to_set),\n      results = vim.F.if_nil(val.results, val_to_set),\n      prompt = vim.F.if_nil(val.prompt, val_to_set),\n    }\n  end\nend\n\nreturn resolver\n"
  },
  {
    "path": "lua/telescope/config.lua",
    "content": "local strings = require \"plenary.strings\"\nlocal sorters = require \"telescope.sorters\"\nlocal os_sep = require(\"plenary.path\").path.sep\nlocal has_win = vim.fn.has \"win32\" == 1\n\n-- Keep the values around between reloads\n_TelescopeConfigurationValues = _TelescopeConfigurationValues or {}\n_TelescopeConfigurationPickers = _TelescopeConfigurationPickers or {}\n\nlocal function first_non_null(...)\n  local n = select(\"#\", ...)\n  for i = 1, n do\n    local value = select(i, ...)\n\n    if value ~= nil then\n      return value\n    end\n  end\nend\n\n-- A function that creates an amended copy of the `base` table,\n-- by replacing keys at \"level 2\" that match keys in \"level 1\" in `priority`,\n-- and then performs a deep_extend.\n-- May give unexpected results if used with tables of \"depth\"\n-- greater than 2.\nlocal smarter_depth_2_extend = function(priority, base)\n  local result = {}\n  for key, val in pairs(base) do\n    if type(val) ~= \"table\" then\n      result[key] = first_non_null(priority[key], val)\n    else\n      result[key] = {}\n      for k, v in pairs(val) do\n        result[key][k] = first_non_null(priority[k], v)\n      end\n    end\n  end\n  for key, val in pairs(priority) do\n    if type(val) ~= \"table\" then\n      result[key] = first_non_null(val, result[key])\n    else\n      result[key] = vim.tbl_extend(\"keep\", val, result[key] or {})\n    end\n  end\n  return result\nend\n\nlocal resolve_table_opts = function(priority, base)\n  if priority == false or (priority == nil and base == false) then\n    return false\n  end\n  if priority == nil and type(base) == \"table\" then\n    return base\n  end\n  return smarter_depth_2_extend(priority, base)\nend\n\n-- TODO: Add other major configuration points here.\n-- selection_strategy\n\nlocal config = {}\nconfig.smarter_depth_2_extend = smarter_depth_2_extend\nconfig.resolve_table_opts = resolve_table_opts\n\nconfig.values = _TelescopeConfigurationValues\nconfig.descriptions = {}\nconfig.pickers = _TelescopeConfigurationPickers\n\nfunction config.set_pickers(pickers)\n  pickers = vim.F.if_nil(pickers, {})\n\n  for k, v in pairs(pickers) do\n    config.pickers[k] = v\n  end\nend\n\nlocal layout_config_defaults = {\n\n  horizontal = {\n    width = 0.8,\n    height = 0.9,\n    prompt_position = \"bottom\",\n    preview_cutoff = 120,\n  },\n\n  vertical = {\n    width = 0.8,\n    height = 0.9,\n    prompt_position = \"bottom\",\n    preview_cutoff = 40,\n  },\n\n  center = {\n    width = 0.5,\n    height = 0.4,\n    preview_cutoff = 40,\n    prompt_position = \"top\",\n  },\n\n  cursor = {\n    width = 0.8,\n    height = 0.9,\n    preview_cutoff = 40,\n  },\n\n  bottom_pane = {\n    height = 25,\n    prompt_position = \"top\",\n    preview_cutoff = 120,\n  },\n}\n\nlocal layout_config_description = string.format(\n  [[\n    Determines the default configuration values for layout strategies.\n    See |telescope.layout| for details of the configurations options for\n    each strategy.\n\n    Allows setting defaults for all strategies as top level options and\n    for overriding for specific options.\n    For example, the default values below set the default width to 80%% of\n    the screen width for all strategies except 'center', which has width\n    of 50%% of the screen width.\n\n    Default: %s\n]],\n  vim.inspect(layout_config_defaults, { newline = \"\\n    \", indent = \"  \" })\n)\n\n-- A table of all the usual defaults for telescope.\n-- Keys will be the name of the default,\n-- values will be a list where:\n-- - first entry is the value\n-- - second entry is the description of the option\n\nlocal telescope_defaults = {}\nconfig.descriptions_order = {}\nlocal append = function(name, val, doc)\n  telescope_defaults[name] = { val, doc }\n  table.insert(config.descriptions_order, name)\nend\n\nappend(\n  \"sorting_strategy\",\n  \"descending\",\n  [[\n  Determines the direction \"better\" results are sorted towards.\n\n  Available options are:\n  - \"descending\" (default)\n  - \"ascending\"]]\n)\n\nappend(\n  \"selection_strategy\",\n  \"reset\",\n  [[\n  Determines how the cursor acts after each sort iteration.\n\n  Available options are:\n  - \"reset\" (default)\n  - \"follow\"\n  - \"row\"\n  - \"closest\"\n  - \"none\"]]\n)\n\nappend(\n  \"scroll_strategy\",\n  \"cycle\",\n  [[\n  Determines what happens if you try to scroll past the view of the\n  picker.\n\n  Available options are:\n  - \"cycle\" (default)\n  - \"limit\"]]\n)\n\nappend(\n  \"layout_strategy\",\n  \"horizontal\",\n  [[\n  Determines the default layout of Telescope pickers.\n  See |telescope.layout| for details of the available strategies.\n\n  Default: 'horizontal']]\n)\n\nappend(\n  \"create_layout\",\n  nil,\n  [[\n  Configure the layout of Telescope pickers.\n  See |telescope.pickers.layout| for details.\n\n  Default: 'nil']]\n)\n\nappend(\"layout_config\", layout_config_defaults, layout_config_description)\n\nappend(\n  \"cycle_layout_list\",\n  { \"horizontal\", \"vertical\" },\n  [[\n  Determines the layouts to cycle through when using `actions.layout.cycle_layout_next`\n  and `actions.layout.cycle_layout_prev`.\n  Should be a list of \"layout setups\".\n  Each \"layout setup\" can take one of two forms:\n  1. string\n      This is interpreted as the name of a `layout_strategy`\n  2. table\n      A table with possible keys `layout_strategy`, `layout_config` and `previewer`\n\n  Default: { \"horizontal\", \"vertical\" }\n  ]]\n)\n\nappend(\n  \"winblend\",\n  function()\n    return vim.o.winblend\n  end,\n  [[\n  Configure winblend for telescope floating windows. See |winblend| for\n  more information. Type can be a number or a function returning a\n  number\n\n  Default: function() return vim.o.winblend end]]\n)\n\nappend(\n  \"wrap_results\",\n  false,\n  [[\n  Word wrap the search results\n\n  Default: false]]\n)\n\nappend(\n  \"prompt_prefix\",\n  \"> \",\n  [[\n  The character(s) that will be shown in front of Telescope's prompt.\n\n  Default: '> ']]\n)\n\nappend(\n  \"selection_caret\",\n  \"> \",\n  [[\n  The character(s) that will be shown in front of the current selection.\n\n  Default: '> ']]\n)\n\nappend(\n  \"entry_prefix\",\n  \"  \",\n  [[\n  Prefix in front of each result entry. Current selection not included.\n\n  Default: '  ']]\n)\n\nappend(\n  \"multi_icon\",\n  \"+\",\n  [[\n  Symbol to add in front of a multi-selected result entry.\n  Replaces final character of |telescope.defaults.selection_caret| and\n  |telescope.defaults.entry_prefix| as appropriate.\n  To have no icon, set to the empty string.\n\n  Default: '+']]\n)\n\nappend(\n  \"initial_mode\",\n  \"insert\",\n  [[\n  Determines in which mode telescope starts. Valid Keys:\n  `insert` and `normal`.\n\n  Default: \"insert\"]]\n)\n\nappend(\n  \"border\",\n  true,\n  [[\n  Boolean defining if borders are added to Telescope windows.\n\n  Default: true]]\n)\n\nappend(\n  \"path_display\",\n  {},\n  [[\n  Determines how file paths are displayed.\n\n  path_display can be set to an array with a combination of:\n  - \"hidden\"          hide file names\n  - \"tail\"            only display the file name, and not the path\n  - \"absolute\"        display absolute paths\n  - \"smart\"           remove as much from the path as possible to only show\n                      the difference between the displayed paths.\n                      Warning: The nature of the algorithm might have a negative\n                      performance impact!\n  - \"shorten\"         only display the first character of each directory in\n                      the path\n  - \"truncate\"        truncates the start of the path when the whole path will\n                      not fit. To increase the gap between the path and the edge,\n                      set truncate to number `truncate = 3`\n  - \"filename_first\"  shows filenames first and then the directories\n\n  You can also specify the number of characters of each directory name\n  to keep by setting `path_display.shorten = num`.\n    e.g. for a path like\n      `alpha/beta/gamma/delta.txt`\n    setting `path_display.shorten = 1` will give a path like:\n      `a/b/g/delta.txt`\n    Similarly, `path_display.shorten = 2` will give a path like:\n      `al/be/ga/delta.txt`\n\n  You can also further customise the shortening behaviour by\n  setting `path_display.shorten = { len = num, exclude = list }`,\n  where `len` acts as above, and `exclude` is a list of positions\n  that are not shortened. Negative numbers in the list are considered\n  relative to the end of the path.\n    e.g. for a path like\n      `alpha/beta/gamma/delta.txt`\n    setting `path_display.shorten = { len = 1, exclude = {1, -1} }`\n    will give a path like:\n      `alpha/b/g/delta.txt`\n    setting `path_display.shorten = { len = 2, exclude = {2, -2} }`\n    will give a path like:\n      `al/beta/gamma/de`\n\n  path_display can also be set to 'filename_first' to put the filename\n  in front.\n\n    path_display = {\n      \"filename_first\"\n    },\n\n  The directory structure can be reversed as follows:\n\n    path_display = {\n      filename_first = {\n          reverse_directories = true\n      }\n    },\n\n  path_display can also be set to 'hidden' string to hide file names\n\n  path_display can also be set to a function for custom formatting of\n  the path display with the following signature\n\n  Signature: fun(opts: table, path: string): string, table?\n\n  The optional table is an list of positions and highlight groups to\n  set the highlighting of the return path string.\n\n  Example:\n\n      -- Format path as \"file.txt (path\\to\\file\\)\"\n      path_display = function(opts, path)\n        local tail = require(\"telescope.utils\").path_tail(path)\n        return string.format(\"%s (%s)\", tail, path)\n      end,\n\n      -- Format path and add custom highlighting\n      path_display = function(opts, path)\n        local tail = require(\"telescope.utils\").path_tail(path)\n        path = string.format(\"%s (%s)\", tail, path)\n\n        local highlights = {\n          {\n            {\n              0, -- highlight start position\n              #path, -- highlight end position\n            },\n            \"Comment\", -- highlight group name\n          },\n        }\n\n        return path, highlights\n      end\n\n  Default: {}]]\n)\n\nappend(\n  \"borderchars\",\n  { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"╯\", \"╰\" },\n  [[\n  Set the borderchars of telescope floating windows. It has to be a\n  table of 8 string values.\n\n  Default: { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"╯\", \"╰\" }]]\n)\n\nappend(\n  \"get_status_text\",\n  function(self, opts)\n    local multi_select_cnt = #(self:get_multi_selection())\n    local showing_cnt = (self.stats.processed or 0) - (self.stats.filtered or 0)\n    local total_cnt = self.stats.processed or 0\n\n    local status_icon = \"\"\n    local status_text\n    if opts and not opts.completed then\n      status_icon = \"*\"\n    end\n\n    if showing_cnt == 0 and total_cnt == 0 then\n      status_text = status_icon\n    elseif multi_select_cnt == 0 then\n      status_text = string.format(\"%s %s / %s\", status_icon, showing_cnt, total_cnt)\n    else\n      status_text = string.format(\"%s %s / %s / %s\", status_icon, multi_select_cnt, showing_cnt, total_cnt)\n    end\n\n    -- quick workaround for extmark right_align side-scrolling limitation\n    -- https://github.com/nvim-telescope/telescope.nvim/issues/2929\n    local prompt_width = vim.api.nvim_win_get_width(self.prompt_win)\n    local cursor_col = vim.api.nvim_win_get_cursor(self.prompt_win)[2]\n    local prefix_display_width = strings.strdisplaywidth(self.prompt_prefix) --[[@as integer]]\n    local prefix_width = #self.prompt_prefix\n    local prefix_shift = 0\n    if prefix_display_width ~= prefix_width then\n      prefix_shift = prefix_display_width\n    end\n\n    local cursor_occluded = (prompt_width - cursor_col - #status_text + prefix_shift) < 0\n    if cursor_occluded then\n      return \"\"\n    else\n      return status_text\n    end\n  end,\n  [[\n  A function that determines what the virtual text looks like.\n  Signature: function(picker) -> str\n\n  Default: function that shows current count / all]]\n)\n\nappend(\n  \"hl_result_eol\",\n  true,\n  [[\n  Changes if the highlight for the selected item in the results\n  window is always the full width of the window\n\n  Default: true]]\n)\n\nappend(\n  \"dynamic_preview_title\",\n  false,\n  [[\n  Will change the title of the preview window dynamically, where it\n  is supported. For example, the preview window's title could show up as\n  the full filename.\n\n  Default: false]]\n)\n\nappend(\n  \"results_title\",\n  \"Results\",\n  [[\n  Defines the default title of the results window. A false value\n  can be used to hide the title altogether.\n\n  Default: \"Results\"]]\n)\n\nappend(\n  \"prompt_title\",\n  \"Prompt\",\n  [[\n  Defines the default title of the prompt window. A false value\n  can be used to hide the title altogether. Most of the times builtins\n  define a prompt_title which will be preferred over this default.\n\n  Default: \"Prompt\"]]\n)\n\nappend(\n  \"mappings\",\n  {},\n  [[\n  Your mappings to override telescope's default mappings.\n\n  See: ~\n      |telescope.mappings|\n  ]]\n)\n\nappend(\n  \"default_mappings\",\n  nil,\n  [[\n  Not recommended to use except for advanced users.\n\n  Will allow you to completely remove all of telescope's default maps\n  and use your own.\n\n  Default: nil\n  ]]\n)\n\nappend(\n  \"history\",\n  {\n    path = vim.fn.stdpath \"data\" .. os_sep .. \"telescope_history\",\n    limit = 100,\n    handler = function(...)\n      return require(\"telescope.actions.history\").get_simple_history(...)\n    end,\n    cycle_wrap = false,\n  },\n  [[\n  This field handles the configuration for prompt history.\n  By default it is a table, with default values (more below).\n  To disable history, set it to false.\n\n  Currently mappings still need to be added, Example:\n    mappings = {\n      i = {\n        [\"<C-Down>\"] = require('telescope.actions').cycle_history_next,\n        [\"<C-Up>\"] = require('telescope.actions').cycle_history_prev,\n      },\n    },\n\n  Fields:\n    - path:       The path to the telescope history as string.\n                  Default: stdpath(\"data\")/telescope_history\n    - limit:      The amount of entries that will be written in the\n                  history.\n                  Warning: If limit is set to nil it will grow unbound.\n                  Default: 100\n    - handler:    A lua function that implements the history.\n                  This is meant as a developer setting for extensions to\n                  override the history handling, e.g.,\n                  https://github.com/nvim-telescope/telescope-smart-history.nvim,\n                  which allows context sensitive (cwd + picker) history.\n\n                  Default:\n                  require('telescope.actions.history').get_simple_history\n    - cycle_wrap: Indicates whether the cycle_history_next and\n                  cycle_history_prev functions should wrap around to the\n                  beginning or end of the history entries on reaching\n                  their respective ends\n                  Default: false]]\n)\n\nappend(\n  \"cache_picker\",\n  {\n    num_pickers = 1,\n    limit_entries = 1000,\n    ignore_empty_prompt = false,\n  },\n  [[\n    This field handles the configuration for picker caching.\n    By default it is a table, with default values (more below).\n    To disable caching, set it to false.\n\n    Caching preserves all previous multi selections and results and\n    therefore may result in slowdown or increased RAM occupation\n    if too many pickers (`cache_picker.num_pickers`) or entries\n    ('cache_picker.limit_entries`) are cached.\n\n    Fields:\n      - num_pickers:          The number of pickers to be cached.\n                              Set to -1 to preserve all pickers of your\n                              session. If passed to a picker, the cached\n                              pickers with indices larger than\n                              `cache_picker.num_pickers` will be cleared.\n                              Default: 1\n      - limit_entries:        The amount of entries that will be saved for\n                              each picker.\n                              Default: 1000\n      - ignore_empty_prompt:  If true, the picker will not be cached if\n                              the prompt is empty (i.e., no text has been\n                              typed at the time of closing the prompt).\n                              Default: false\n    ]]\n)\n\nappend(\n  \"preview\",\n  {\n    check_mime_type = not has_win,\n    filesize_limit = 25,\n    highlight_limit = 1,\n    timeout = 250,\n    treesitter = true,\n    msg_bg_fillchar = \"╱\",\n    hide_on_startup = false,\n  },\n  [[\n    This field handles the global configuration for previewers.\n    By default it is a table, with default values (more below).\n    To disable previewing, set it to false. If you have disabled previewers\n    globally, but want to opt in to previewing for single pickers, you will have to\n    pass `preview = true` or `preview = {...}` (your config) to the `opts` of\n    your picker.\n\n    Fields:\n      - check_mime_type:  Use `file` if available to try to infer whether the\n                          file to preview is a binary if filetype\n                          detection fails.\n                          Windows users get `file` from:\n                          https://github.com/julian-r/file-windows\n                          Set to false to attempt to preview any mime type.\n                          Default: true for all OS excl. Windows\n      - filesize_limit:   The maximum file size in MB attempted to be previewed.\n                          Set to false to attempt to preview any file size.\n                          Default: 25\n      - highlight_limit:  The maximum file size in MB attempted to be highlighted.\n                          Set to false to attempt to highlight any file size.\n                          Default: 1\n      - timeout:          Timeout the previewer if the preview did not\n                          complete within `timeout` milliseconds.\n                          Set to false to not timeout preview.\n                          Default: 250\n      - hook(s):          Function(s) that takes `(filepath, bufnr, opts)`, where opts\n                          exposes winid and ft (filetype).\n                          Available hooks (in order of priority):\n                          {filetype, mime, filesize, timeout}_hook\n                          Important: the filetype_hook must return true or false\n                          to indicate whether to continue (true) previewing or not (false),\n                          respectively.\n                          Two examples:\n                          local putils = require(\"telescope.previewers.utils\")\n                          ... -- preview is called in telescope.setup { ... }\n                            preview = {\n                              -- 1) Do not show previewer for certain files\n                              filetype_hook = function(filepath, bufnr, opts)\n                                -- you could analogously check opts.ft for filetypes\n                                local excluded = vim.tbl_filter(function(ending)\n                                  return filepath:match(ending)\n                                end, {\n                                  \".*%.csv\",\n                                  \".*%.toml\",\n                                })\n                                if not vim.tbl_isempty(excluded) then\n                                  putils.set_preview_message(\n                                    bufnr,\n                                    opts.winid,\n                                    string.format(\"I don't like %s files!\",\n                                    excluded[1]:sub(5, -1))\n                                  )\n                                  return false\n                                end\n                                return true\n                              end,\n                              -- 2) Truncate lines to preview window for too large files\n                              filesize_hook = function(filepath, bufnr, opts)\n                                local path = require(\"plenary.path\"):new(filepath)\n                                -- opts exposes winid\n                                local height = vim.api.nvim_win_get_height(opts.winid)\n                                local lines = vim.split(path:head(height), \"[\\r]?\\n\")\n                                vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, lines)\n                              end,\n                            }\n                          The configuration recipes for relevant examples.\n                          Note: we use vim.filetype filetype detection,\n                                so if you have troubles with files not\n                                highlighting correctly, please read\n                                |vim.filetype|\n                          Default: nil\n      - treesitter:       Determines whether the previewer performs treesitter\n                          highlighting, which falls back to regex-based highlighting.\n                          `true`: treesitter highlighting for all available filetypes\n                          `false`: regex-based highlighting for all filetypes\n                          `table`: may contain the following keys:\n                              - enable boolean|table: if boolean, enable ts\n                                                      highlighting for all supported\n                                                      filetypes.\n                                                      if table, ts highlighting is only\n                                                        enabled for given filetypes.\n                              - disable table: list of filetypes for which ts highlighting\n                                               is not used if `enable = true`.\n                          Default: true\n      - msg_bg_fillchar:  Character to fill background of unpreviewable buffers with\n                          Default: \"╱\"\n      - hide_on_startup:  Hide previewer when picker starts. Previewer can be toggled\n                          with actions.layout.toggle_preview.\n                          Default: false\n      - ls_short:         Determines whether to use the `--short` flag for the `ls`\n                          command when previewing directories. Otherwise will result\n                          to using `--long`.\n                          Default: false\n    ]]\n)\n\nappend(\n  \"vimgrep_arguments\",\n  { \"rg\", \"--color=never\", \"--no-heading\", \"--with-filename\", \"--line-number\", \"--column\", \"--smart-case\" },\n  [[\n    Defines the command that will be used for `live_grep` and `grep_string`\n    pickers.\n    Hint: Make sure that color is currently set to `never` because we do\n    not yet interpret color codes\n    Hint 2: Make sure that these options are in your changes arguments:\n      \"--no-heading\", \"--with-filename\", \"--line-number\", \"--column\"\n    because we need them so the ripgrep output is in the correct format.\n\n    Default: {\n      \"rg\",\n      \"--color=never\",\n      \"--no-heading\",\n      \"--with-filename\",\n      \"--line-number\",\n      \"--column\",\n      \"--smart-case\"\n    }]]\n)\n\nappend(\n  \"use_less\",\n  true,\n  [[\n  Boolean if less should be enabled in term_previewer (deprecated and\n  currently no longer used in the builtin pickers).\n\n  Default: true]]\n)\n\nappend(\n  \"set_env\",\n  nil,\n  [[\n  Set an environment for term_previewer. A table of key values:\n  Example: { COLORTERM = \"truecolor\", ... }\n  Hint: Empty table is not allowed.\n\n  Default: nil]]\n)\n\nappend(\n  \"color_devicons\",\n  true,\n  [[\n  Boolean if devicons should be enabled or not. If set to false, the\n  text highlight group is used.\n  Hint: Coloring only works if |termguicolors| is enabled.\n\n  Default: true]]\n)\n\nappend(\n  \"file_sorter\",\n  sorters.get_fzy_sorter,\n  [[\n  A function pointer that specifies the file_sorter. This sorter will\n  be used for find_files, git_files and similar.\n  Hint: If you load a native sorter, you don't need to change this value,\n  the native sorter will override it anyway.\n\n  Default: require(\"telescope.sorters\").get_fzy_sorter]]\n)\n\nappend(\n  \"generic_sorter\",\n  sorters.get_fzy_sorter,\n  [[\n  A function pointer to the generic sorter. The sorter that should be\n  used for everything that is not a file.\n  Hint: If you load a native sorter, you don't need to change this value,\n  the native sorter will override it anyway.\n\n  Default: require(\"telescope.sorters\").get_fzy_sorter]]\n)\n\n--TODO(conni2461): Why is this even configurable???\nappend(\n  \"prefilter_sorter\",\n  sorters.prefilter,\n  [[\n  This points to a wrapper sorter around the generic_sorter that is able\n  to do prefiltering.\n  It's usually used for lsp_*_symbols and lsp_*_diagnostics\n\n  Default: require(\"telescope.sorters\").prefilter]]\n)\n\nappend(\n  \"tiebreak\",\n  function(current_entry, existing_entry, _)\n    return #current_entry.ordinal < #existing_entry.ordinal\n  end,\n  [[\n  A function that determines how to break a tie when two entries have\n  the same score.\n  Having a function that always returns false would keep the entries in\n  the order they are found, so existing_entry before current_entry.\n  Vice versa always returning true would place the current_entry\n  before the existing_entry.\n\n  Signature: function(current_entry, existing_entry, prompt) -> boolean\n\n  Default: function that breaks the tie based on the length of the\n           entry's ordinal]]\n)\n\nappend(\n  \"file_ignore_patterns\",\n  nil,\n  [[\n  A table of lua regex that define the files that should be ignored.\n  Example: { \"^scratch/\" } -- ignore all files in scratch directory\n  Example: { \"%.npz\" } -- ignore all npz files\n  See: https://www.lua.org/manual/5.1/manual.html#5.4.1 for more\n  information about lua regex\n  Note: `file_ignore_patterns` will be used in all pickers that have a\n  file associated. This might lead to the problem that lsp_ pickers\n  aren't displaying results because they might be ignored by\n  `file_ignore_patterns`. For example, setting up node_modules as ignored\n  will never show node_modules in any results, even if you are\n  interested in lsp_ results.\n\n  If you only want `file_ignore_patterns` for `find_files` and\n  `grep_string`/`live_grep` it is suggested that you setup `gitignore`\n  and have fd and or ripgrep installed because both tools will not show\n  `gitignore`d files on default.\n\n  Default: nil]]\n)\n\nappend(\n  \"get_selection_window\",\n  function()\n    return 0\n  end,\n  [[\n    Function that takes function(picker, entry) and returns a window id.\n    The window ID will be used to decide what window the chosen file will\n    be opened in and the cursor placed in upon leaving the picker.\n\n    Default: `function() return 0 end`\n  ]]\n)\n\nappend(\n  \"git_worktrees\",\n  nil,\n  [[\n  A table of arrays of detached working trees with keys `gitdir` and `toplevel`.\n  Used to pass `--git-dir` and `--work-tree` flags to git commands when telescope fails\n  to infer the top-level directory of a given working tree based on cwd.\n  Example:\n  git_worktrees = {\n    {\n      toplevel = vim.env.HOME,\n      gitdir = vim.env.HOME .. '/.cfg'\n    }\n  }\n\n  Default: nil\n  ]]\n)\n\nappend(\n  \"file_previewer\",\n  function(...)\n    return require(\"telescope.previewers\").vim_buffer_cat.new(...)\n  end,\n  [[\n    Function pointer to the default file_previewer. It is mostly used\n    for find_files, git_files and similar.\n    You can change this function pointer to either use your own\n    previewer or use the command-line program bat as the previewer:\n      require(\"telescope.previewers\").cat.new\n\n    Default: require(\"telescope.previewers\").vim_buffer_cat.new]]\n)\n\nappend(\n  \"grep_previewer\",\n  function(...)\n    return require(\"telescope.previewers\").vim_buffer_vimgrep.new(...)\n  end,\n  [[\n    Function pointer to the default vim_grep previewer. It is mostly\n    used for live_grep, grep_string and similar.\n    You can change this function pointer to either use your own\n    previewer or use the command-line program bat as the previewer:\n      require(\"telescope.previewers\").vimgrep.new\n\n    Default: require(\"telescope.previewers\").vim_buffer_vimgrep.new]]\n)\n\nappend(\n  \"qflist_previewer\",\n  function(...)\n    return require(\"telescope.previewers\").vim_buffer_qflist.new(...)\n  end,\n  [[\n    Function pointer to the default qflist previewer. It is mostly\n    used for qflist, loclist and lsp.\n    You can change this function pointer to either use your own\n    previewer or use the command-line program bat as the previewer:\n      require(\"telescope.previewers\").qflist.new\n\n    Default: require(\"telescope.previewers\").vim_buffer_qflist.new]]\n)\n\nappend(\n  \"buffer_previewer_maker\",\n  function(...)\n    return require(\"telescope.previewers\").buffer_previewer_maker(...)\n  end,\n  [[\n    Developer option that defines the underlining functionality\n    of the buffer previewer.\n    For interesting configuration examples take a look at\n    https://github.com/nvim-telescope/telescope.nvim/wiki/Configuration-Recipes\n\n    Default: require(\"telescope.previewers\").buffer_previewer_maker]]\n)\n\n-- @param user_defaults table: a table where keys are the names of options,\n--    and values are the ones the user wants\n-- @param tele_defaults table: (optional) a table containing all of the defaults\n--    for telescope [defaults to `telescope_defaults`]\nfunction config.set_defaults(user_defaults, tele_defaults)\n  user_defaults = vim.F.if_nil(user_defaults, {})\n  tele_defaults = vim.F.if_nil(tele_defaults, telescope_defaults)\n\n  local function get(name, default_val)\n    if name == \"layout_config\" then\n      return smarter_depth_2_extend(\n        vim.F.if_nil(user_defaults[name], {}),\n        vim.tbl_deep_extend(\"keep\", vim.F.if_nil(config.values[name], {}), vim.F.if_nil(default_val, {}))\n      )\n    end\n    if name == \"history\" or name == \"cache_picker\" or name == \"preview\" then\n      if user_defaults[name] == false or config.values[name] == false then\n        return false\n      end\n      if user_defaults[name] == true then\n        return vim.F.if_nil(config.values[name], {})\n      end\n\n      return smarter_depth_2_extend(\n        vim.F.if_nil(user_defaults[name], {}),\n        vim.tbl_deep_extend(\"keep\", vim.F.if_nil(config.values[name], {}), vim.F.if_nil(default_val, {}))\n      )\n    end\n    return first_non_null(user_defaults[name], config.values[name], default_val)\n  end\n\n  local function set(name, default_val, description)\n    assert(description, \"Config values must always have a description\")\n\n    config.values[name] = get(name, default_val)\n    config.descriptions[name] = strings.dedent(description)\n  end\n\n  for key, info in pairs(tele_defaults) do\n    set(key, info[1], info[2])\n  end\n\n  local M = {}\n  M.get = get\n  return M\nend\n\nfunction config.clear_defaults()\n  for k, _ in pairs(config.values) do\n    config.values[k] = nil\n  end\nend\n\nconfig.set_defaults()\n\nreturn config\n"
  },
  {
    "path": "lua/telescope/debounce.lua",
    "content": "-- Credit: https://gist.github.com/runiq/31aa5c4bf00f8e0843cd267880117201\n--\n\nlocal M = {}\n\n---Validates args for `throttle()` and  `debounce()`.\n---TODO(clason): remove shim when dropping support for Nvim 0.10\nlocal td_validate = vim.fn.has \"nvim-0.11\" == 1\n    and function(fn, ms)\n      vim.validate(\"fn\", fn, \"function\")\n      vim.validate(\"ms\", ms, function(v)\n        return type(v) == \"number\" and v > 0\n      end, \"number > 0\")\n    end\n  or function(fn, ms)\n    vim.validate {\n      fn = { fn, \"f\" },\n      ms = {\n        ms,\n        function(v)\n          return type(v) == \"number\" and v > 0\n        end,\n        \"number > 0\",\n      },\n    }\n  end\n\n--- Throttles a function on the leading edge. Automatically `schedule_wrap()`s.\n---@param fn fun(...) Function to throttle\n---@param ms number Timeout in ms\n---@return fun(...) wrapped_fn Throttled function\n---@return uv_timer_t timer Remember to call `timer.close()` at the end or you will leak memory!\nfunction M.throttle_leading(fn, ms)\n  td_validate(fn, ms)\n  local timer = vim.uv.new_timer()\n  local running = false\n\n  local function wrapped_fn(...)\n    if not running then\n      timer:start(ms, 0, function()\n        running = false\n      end)\n      running = true\n      pcall(vim.schedule_wrap(fn), select(1, ...))\n    end\n  end\n  return wrapped_fn, timer\nend\n\n--- Throttles a function on the trailing edge. Automatically `schedule_wrap()`s.\n---@param fn fun(...) Function to throttle\n---@param ms number Timeout in ms\n---@param last? boolean Whether to use the arguments of the last call to `fn` within the timeframe.\n--- Default: Use arguments of the first call.\n---@return fun(...) wrapped_fn Throttled function\n---@return uv_timer_t timer Remember to call `timer.close()` at the end or you will leak memory!\nfunction M.throttle_trailing(fn, ms, last)\n  td_validate(fn, ms)\n  local timer = vim.uv.new_timer()\n  local running = false\n\n  local wrapped_fn\n  if not last then\n    function wrapped_fn(...)\n      if not running then\n        local argv = { ... }\n        local argc = select(\"#\", ...)\n\n        timer:start(ms, 0, function()\n          running = false\n          pcall(vim.schedule_wrap(fn), unpack(argv, 1, argc))\n        end)\n        running = true\n      end\n    end\n  else\n    local argv, argc\n    function wrapped_fn(...)\n      argv = { ... }\n      argc = select(\"#\", ...)\n\n      if not running then\n        timer:start(ms, 0, function()\n          running = false\n          pcall(vim.schedule_wrap(fn), unpack(argv, 1, argc))\n        end)\n        running = true\n      end\n    end\n  end\n  return wrapped_fn, timer\nend\n\n--- Debounces a function on the leading edge. Automatically `schedule_wrap()`s.\n---@param fn fun(...) Function to debounce\n---@param ms number Timeout in ms\n---@return fun(...) wrapped_fn Debounced function\n---@return uv_timer_t timer Remember to call `timer.close()` at the end or you will leak memory!\nfunction M.debounce_leading(fn, ms)\n  td_validate(fn, ms)\n  local timer = vim.uv.new_timer()\n  local running = false\n\n  local function wrapped_fn(...)\n    timer:start(ms, 0, function()\n      running = false\n    end)\n\n    if not running then\n      running = true\n      pcall(vim.schedule_wrap(fn), select(1, ...))\n    end\n  end\n  return wrapped_fn, timer\nend\n\n--- Debounces a function on the trailing edge. Automatically `schedule_wrap()`s.\n---@param fn fun(...) Function to debounce\n---@param ms number Timeout in ms\n---@param first? boolean Whether to use the arguments of the first call to `fn` within the timeframe.\n--- Default: Use arguments of the last call.\n---@return fun(...) wrapped_fn Debounced function\n---@return uv_timer_t timer Remember to call `timer.close()` at the end or you will leak memory!\nfunction M.debounce_trailing(fn, ms, first)\n  td_validate(fn, ms)\n  local timer = vim.uv.new_timer()\n  local wrapped_fn\n\n  if not first then\n    function wrapped_fn(...)\n      local argv = { ... }\n      local argc = select(\"#\", ...)\n\n      timer:start(ms, 0, function()\n        pcall(vim.schedule_wrap(fn), unpack(argv, 1, argc))\n      end)\n    end\n  else\n    local argv, argc\n    function wrapped_fn(...)\n      argv = argv or { ... }\n      argc = argc or select(\"#\", ...)\n\n      timer:start(ms, 0, function()\n        pcall(vim.schedule_wrap(fn), unpack(argv, 1, argc))\n      end)\n    end\n  end\n  return wrapped_fn, timer\nend\n\n--- Test deferment methods (`{throttle,debounce}_{leading,trailing}()`).\n---@param bouncer string Bouncer function to test\n---@param ms? number Timeout in ms, default 2000.\n---@param firstlast? boolean Whether to use the 'other' fn call strategy.\nfunction M.test_defer(bouncer, ms, firstlast)\n  local bouncers = {\n    tl = M.throttle_leading,\n    tt = M.throttle_trailing,\n    dl = M.debounce_leading,\n    dt = M.debounce_trailing,\n  }\n\n  local timeout = ms or 2000\n\n  local bounced = bouncers[bouncer](function(i)\n    vim.cmd('echom \"' .. bouncer .. \": \" .. i .. '\"')\n  end, timeout, firstlast)\n\n  for i, _ in ipairs { 1, 2, 3, 4, 5 } do\n    bounced(i)\n    vim.schedule(function()\n      vim.cmd(\"echom \" .. i)\n    end)\n    vim.fn.call(\"wait\", { 1000, \"v:false\" })\n  end\nend\n\nreturn M\n"
  },
  {
    "path": "lua/telescope/entry_manager.lua",
    "content": "local log = require \"telescope.log\"\n\nlocal LinkedList = require \"telescope.algos.linked_list\"\n\nlocal EntryManager = {}\nEntryManager.__index = EntryManager\n\nfunction EntryManager:new(max_results, set_entry, info)\n  log.trace \"Creating entry_manager...\"\n\n  info = info or {}\n  info.looped = 0\n  info.inserted = 0\n  info.find_loop = 0\n\n  -- state contains list of\n  --    { entry, score }\n  --    Stored directly in a table, accessed as [1], [2]\n  set_entry = set_entry or function() end\n\n  return setmetatable({\n    linked_states = LinkedList:new { track_at = max_results },\n    info = info,\n    max_results = max_results,\n    set_entry = set_entry,\n    worst_acceptable_score = math.huge,\n  }, self)\nend\n\nfunction EntryManager:num_results()\n  return self.linked_states.size\nend\n\nfunction EntryManager:get_container(index)\n  local count = 0\n  for val in self.linked_states:iter() do\n    count = count + 1\n\n    if count == index then\n      return val\n    end\n  end\n\n  return {}\nend\n\nfunction EntryManager:get_entry(index)\n  return self:get_container(index)[1]\nend\n\nfunction EntryManager:get_score(index)\n  return self:get_container(index)[2]\nend\n\nfunction EntryManager:get_ordinal(index)\n  return self:get_entry(index).ordinal\nend\n\nfunction EntryManager:find_entry(entry)\n  local info = self.info\n\n  local count = 0\n  for container in self.linked_states:iter() do\n    count = count + 1\n\n    if container[1] == entry then\n      info.find_loop = info.find_loop + count\n\n      return count\n    end\n  end\n\n  info.find_loop = info.find_loop + count\n  return nil\nend\n\nfunction EntryManager:_update_score_from_tracked()\n  local linked = self.linked_states\n\n  if linked.tracked then\n    self.worst_acceptable_score = math.min(self.worst_acceptable_score, linked.tracked[2])\n  end\nend\n\nfunction EntryManager:_insert_container_before(picker, index, linked_node, new_container)\n  self.linked_states:place_before(index, linked_node, new_container)\n  self.set_entry(picker, index, new_container[1], new_container[2], true)\n\n  self:_update_score_from_tracked()\nend\n\nfunction EntryManager:_insert_container_after(picker, index, linked_node, new_container)\n  self.linked_states:place_after(index, linked_node, new_container)\n  self.set_entry(picker, index, new_container[1], new_container[2], true)\n\n  self:_update_score_from_tracked()\nend\n\nfunction EntryManager:_append_container(picker, new_container, should_update)\n  self.linked_states:append(new_container)\n  self.worst_acceptable_score = math.min(self.worst_acceptable_score, new_container[2])\n\n  if should_update then\n    self.set_entry(picker, self.linked_states.size, new_container[1], new_container[2])\n  end\nend\n\nfunction EntryManager:add_entry(picker, score, entry, prompt)\n  score = score or 0\n\n  local max_res = self.max_results\n  local worst_score = self.worst_acceptable_score\n  local size = self.linked_states.size\n\n  local info = self.info\n  info.maxed = info.maxed or 0\n\n  local new_container = { entry, score }\n\n  -- Short circuit for bad scores -- they never need to be displayed.\n  --    Just save them and we'll deal with them later.\n  if score >= worst_score then\n    return self.linked_states:append(new_container)\n  end\n\n  -- Short circuit for first entry.\n  if size == 0 then\n    self.linked_states:prepend(new_container)\n    self.set_entry(picker, 1, entry, score)\n    return\n  end\n\n  for index, container, node in self.linked_states:ipairs() do\n    info.looped = info.looped + 1\n\n    if container[2] > score then\n      return self:_insert_container_before(picker, index, node, new_container)\n    end\n\n    if score < 1 and container[2] == score and picker.tiebreak(entry, container[1], prompt) then\n      return self:_insert_container_before(picker, index, node, new_container)\n    end\n\n    -- Don't add results that are too bad.\n    if index >= max_res then\n      info.maxed = info.maxed + 1\n      return self:_append_container(picker, new_container, false)\n    end\n  end\n\n  if self.linked_states.size >= max_res then\n    self.worst_acceptable_score = math.min(self.worst_acceptable_score, score)\n  end\n\n  return self:_insert_container_after(picker, size + 1, self.linked_states.tail, new_container)\nend\n\nfunction EntryManager:iter()\n  local iterator = self.linked_states:iter()\n  return function()\n    local val = iterator()\n    if val then\n      return val[1]\n    end\n  end\nend\n\nreturn EntryManager\n"
  },
  {
    "path": "lua/telescope/finders/async_job_finder.lua",
    "content": "local async_job = require \"telescope._\"\nlocal LinesPipe = require(\"telescope._\").LinesPipe\n\nlocal make_entry = require \"telescope.make_entry\"\nlocal log = require \"telescope.log\"\n\nreturn function(opts)\n  log.trace(\"Creating async_job:\", opts)\n  local entry_maker = opts.entry_maker or make_entry.gen_from_string(opts)\n\n  local fn_command = function(prompt)\n    local command_list = opts.command_generator(prompt)\n    if command_list == nil then\n      return nil\n    end\n\n    local command = table.remove(command_list, 1)\n\n    local res = {\n      command = command,\n      args = command_list,\n    }\n\n    return res\n  end\n\n  local job\n\n  local callable = function(_, prompt, process_result, process_complete)\n    if job then\n      job:close(true)\n    end\n\n    local job_opts = fn_command(prompt)\n    if not job_opts then\n      process_complete()\n      return\n    end\n\n    local writer = nil\n    -- if job_opts.writer and Job.is_job(job_opts.writer) then\n    --   writer = job_opts.writer\n    if opts.writer then\n      error \"async_job_finder.writer is not yet implemented\"\n      writer = async_job.writer(opts.writer)\n    end\n\n    local stdout = LinesPipe()\n\n    job = async_job.spawn {\n      command = job_opts.command,\n      args = job_opts.args,\n      cwd = job_opts.cwd or opts.cwd,\n      env = job_opts.env or opts.env,\n      writer = writer,\n\n      stdout = stdout,\n    }\n\n    local line_num = 0\n    for line in stdout:iter(true) do\n      line_num = line_num + 1\n      local entry = entry_maker(line)\n      if entry then\n        entry.index = line_num\n      end\n      if process_result(entry) then\n        return\n      end\n    end\n\n    process_complete()\n  end\n\n  return setmetatable({\n    close = function()\n      if job then\n        job:close(true)\n      end\n    end,\n  }, {\n    __call = callable,\n  })\nend\n"
  },
  {
    "path": "lua/telescope/finders/async_oneshot_finder.lua",
    "content": "local async = require \"plenary.async\"\nlocal async_job = require \"telescope._\"\nlocal LinesPipe = require(\"telescope._\").LinesPipe\n\nlocal make_entry = require \"telescope.make_entry\"\n\nlocal await_count = 1000\n\nreturn function(opts)\n  opts = opts or {}\n\n  local entry_maker = opts.entry_maker or make_entry.gen_from_string(opts)\n  local cwd = opts.cwd\n  local env = opts.env\n  local fn_command = assert(opts.fn_command, \"Must pass `fn_command`\")\n\n  local results = vim.F.if_nil(opts.results, {})\n  local num_results = #results\n\n  local job_started = false\n  local job_completed = false\n  local stdout = nil\n\n  local job\n\n  return setmetatable({\n    close = function()\n      if job then\n        job:close()\n      end\n    end,\n    results = results,\n    entry_maker = entry_maker,\n  }, {\n    __call = function(_, prompt, process_result, process_complete)\n      if not job_started then\n        local job_opts = fn_command()\n\n        -- TODO: Handle writers.\n        -- local writer\n        -- if job_opts.writer and Job.is_job(job_opts.writer) then\n        --   writer = job_opts.writer\n        -- elseif job_opts.writer then\n        --   writer = Job:new(job_opts.writer)\n        -- end\n\n        stdout = LinesPipe()\n        job = async_job.spawn {\n          command = job_opts.command,\n          args = job_opts.args,\n          cwd = cwd,\n          env = env,\n\n          stdout = stdout,\n        }\n\n        job_started = true\n      end\n\n      if not job_completed then\n        if not vim.tbl_isempty(results) then\n          for _, v in ipairs(results) do\n            process_result(v)\n          end\n        end\n        for line in stdout:iter(false, { split_char = opts.split_char }) do\n          num_results = num_results + 1\n\n          if num_results % await_count then\n            async.util.scheduler()\n          end\n\n          local entry = entry_maker(line)\n          if entry then\n            entry.index = num_results\n          end\n          results[num_results] = entry\n          process_result(entry)\n        end\n\n        process_complete()\n        job_completed = true\n\n        return\n      end\n\n      local current_count = num_results\n      for index = 1, current_count do\n        -- TODO: Figure out scheduling...\n        if index % await_count then\n          async.util.scheduler()\n        end\n\n        if process_result(results[index]) then\n          break\n        end\n      end\n\n      if job_completed then\n        process_complete()\n      end\n    end,\n  })\nend\n"
  },
  {
    "path": "lua/telescope/finders/async_static_finder.lua",
    "content": "local scheduler = require(\"plenary.async\").util.scheduler\n\nlocal make_entry = require \"telescope.make_entry\"\n\nreturn function(opts)\n  local input_results\n  if vim.islist(opts) then\n    input_results = opts\n  else\n    input_results = opts.results\n  end\n\n  local entry_maker = opts.entry_maker or make_entry.gen_from_string(opts)\n\n  local results = {}\n  for k, v in ipairs(input_results) do\n    local entry = entry_maker(v)\n\n    if entry then\n      entry.index = k\n      table.insert(results, entry)\n    end\n  end\n\n  return setmetatable({\n    results = results,\n    entry_maker = entry_maker,\n    close = function() end,\n  }, {\n    __call = function(_, _, process_result, process_complete)\n      for i, v in ipairs(results) do\n        if process_result(v) then\n          break\n        end\n\n        if i % 1000 == 0 then\n          scheduler()\n        end\n      end\n\n      process_complete()\n    end,\n  })\nend\n"
  },
  {
    "path": "lua/telescope/finders.lua",
    "content": "local Job = require \"plenary.job\"\n\nlocal make_entry = require \"telescope.make_entry\"\nlocal log = require \"telescope.log\"\n\nlocal async_static_finder = require \"telescope.finders.async_static_finder\"\nlocal async_oneshot_finder = require \"telescope.finders.async_oneshot_finder\"\nlocal async_job_finder = require \"telescope.finders.async_job_finder\"\n\nlocal finders = {}\n\nlocal _callable_obj = function()\n  local obj = {}\n\n  obj.__index = obj\n  obj.__call = function(t, ...)\n    return t:_find(...)\n  end\n\n  obj.close = function() end\n\n  return obj\nend\n\n--[[ =============================================================\n\n    JobFinder\n\nUses an external Job to get results. Processes results as they arrive.\n\nFor more information about how Jobs are implemented, checkout 'plenary.job'\n\n-- ============================================================= ]]\nlocal JobFinder = _callable_obj()\n\n--- Create a new finder command\n---\n---@param opts table Keys:\n--     fn_command function The function to call\nfunction JobFinder:new(opts)\n  opts = opts or {}\n\n  assert(not opts.results, \"`results` should be used with finder.new_table\")\n  assert(not opts.static, \"`static` should be used with finder.new_oneshot_job\")\n\n  local obj = setmetatable({\n    entry_maker = opts.entry_maker or make_entry.gen_from_string(opts),\n    fn_command = opts.fn_command,\n    cwd = opts.cwd,\n    writer = opts.writer,\n\n    -- Maximum number of results to process.\n    --  Particularly useful for live updating large queries.\n    maximum_results = opts.maximum_results,\n  }, self)\n\n  return obj\nend\n\nfunction JobFinder:_find(prompt, process_result, process_complete)\n  log.trace \"Finding...\"\n\n  if self.job and not self.job.is_shutdown then\n    log.debug \"Shutting down old job\"\n    self.job:shutdown()\n  end\n\n  local line_num = 0\n  local on_output = function(_, line, _)\n    line_num = line_num + 1\n    if not line or line == \"\" then\n      return\n    end\n\n    local entry\n    if self.entry_maker then\n      entry = self.entry_maker(line)\n      if entry then\n        entry.index = line_num\n      end\n    else\n      entry = line\n    end\n\n    process_result(entry)\n  end\n\n  local opts = self:fn_command(prompt)\n  if not opts then\n    process_complete()\n    return\n  end\n\n  local writer = nil\n  if opts.writer and Job.is_job(opts.writer) then\n    writer = opts.writer\n  elseif opts.writer then\n    writer = Job:new(opts.writer)\n  end\n\n  self.job = Job:new {\n    command = opts.command,\n    args = opts.args,\n    cwd = opts.cwd or self.cwd,\n\n    maximum_results = self.maximum_results,\n\n    writer = writer,\n\n    enable_recording = false,\n\n    on_stdout = on_output,\n    -- on_stderr = on_output,\n\n    on_exit = function()\n      process_complete()\n    end,\n  }\n\n  self.job:start()\nend\n\nlocal DynamicFinder = _callable_obj()\n\nfunction DynamicFinder:new(opts)\n  opts = opts or {}\n\n  assert(not opts.results, \"`results` should be used with finder.new_table\")\n  assert(not opts.static, \"`static` should be used with finder.new_oneshot_job\")\n\n  local obj = setmetatable({\n    curr_buf = opts.curr_buf,\n    fn = opts.fn,\n    entry_maker = opts.entry_maker or make_entry.gen_from_string(opts),\n  }, self)\n\n  return obj\nend\n\nfunction DynamicFinder:_find(prompt, process_result, process_complete)\n  local results = self.fn(prompt)\n\n  local result_num = 0\n  for _, result in ipairs(results) do\n    result_num = result_num + 1\n    local entry = self.entry_maker(result)\n    if entry then\n      entry.index = result_num\n    end\n    if process_result(entry) then\n      return\n    end\n  end\n\n  process_complete()\nend\n\n--- Return a new Finder\n--\n-- Use at your own risk.\n-- This opts dictionary is likely to change, but you are welcome to use it right now.\n-- I will try not to change it needlessly, but I will change it sometimes and I won't feel bad.\nfinders._new = function(opts)\n  assert(not opts.results, \"finder.new is deprecated with `results`. You should use `finder.new_table`\")\n  return JobFinder:new(opts)\nend\n\nfinders.new_async_job = function(opts)\n  if opts.writer then\n    return finders._new(opts)\n  end\n\n  return async_job_finder(opts)\nend\n\nfinders.new_job = function(command_generator, entry_maker, _, cwd)\n  return async_job_finder {\n    command_generator = command_generator,\n    entry_maker = entry_maker,\n    cwd = cwd,\n  }\nend\n\n--- One shot job\n---@param command_list string[]: Command list to execute.\n---@param opts table: stuff\n--         @key entry_maker function Optional: function(line: string) => table\n--         @key cwd string\nfinders.new_oneshot_job = function(command_list, opts)\n  opts = opts or {}\n\n  assert(not opts.results, \"`results` should be used with finder.new_table\")\n\n  command_list = vim.deepcopy(command_list)\n  local command = table.remove(command_list, 1)\n\n  return async_oneshot_finder {\n    entry_maker = opts.entry_maker or make_entry.gen_from_string(opts),\n\n    cwd = opts.cwd,\n    maximum_results = opts.maximum_results,\n    split_char = opts.split_char,\n\n    fn_command = function()\n      return {\n        command = command,\n        args = command_list,\n      }\n    end,\n  }\nend\n\n--- Used to create a finder for a Lua table.\n-- If you only pass a table of results, then it will use that as the entries.\n--\n-- If you pass a table, and then a function, it's used as:\n--  results table, the results to run on\n--  entry_maker function, the function to convert results to entries.\nfinders.new_table = function(t)\n  return async_static_finder(t)\nend\n\n--- Used to create a finder from a function.\n--\n---@param opts table: stuff\n--         @key fn function() => list[string]\n--         @key entry_maker function Optional: function(line: string) => table\nfinders.new_dynamic = function(opts)\n  return DynamicFinder:new(opts)\nend\n\nreturn finders\n"
  },
  {
    "path": "lua/telescope/from_entry.lua",
    "content": "--[[ =============================================================================\n\nGet metadata from entries.\n\nThis file is still WIP, so expect some changes if you're trying to consume these APIs.\n\nThis will provide standard mechanism for accessing information from an entry.\n\n--============================================================================= ]]\nlocal utils = require \"telescope.utils\"\n\nlocal from_entry = {}\n\nfunction from_entry.path(entry, validate, escape)\n  escape = vim.F.if_nil(escape, true)\n  local path = entry.path\n  if path == nil then\n    path = entry.filename\n  end\n  if path == nil then\n    path = entry.value\n  end\n  if path == nil then\n    require(\"telescope.log\").error(string.format(\"Invalid Entry: '%s'\", vim.inspect(entry)))\n    return\n  end\n\n  -- only 0 if neither filereadable nor directory\n  if validate and path ~= \"[No Name]\" then\n    -- We need to expand for filereadable and isdirectory\n    -- TODO(conni2461): we are not going to return the expanded path because\n    --                  this would lead to cache misses in the perviewer.\n    --                  Requires overall refactoring in previewer interface\n    local expanded = utils.path_expand(path)\n    if (vim.fn.filereadable(expanded) + vim.fn.isdirectory(expanded)) == 0 then\n      return\n    end\n  end\n  if escape then\n    return vim.fn.fnameescape(path)\n  end\n  return path\nend\n\nreturn from_entry\n"
  },
  {
    "path": "lua/telescope/health.lua",
    "content": "local health = vim.health\n\nlocal extension_module = require \"telescope._extensions\"\nlocal extension_info = require(\"telescope\").extensions\nlocal is_win = vim.api.nvim_call_function(\"has\", { \"win32\" }) == 1\n\nlocal optional_dependencies = {\n  {\n    finder_name = \"live-grep\",\n    package = {\n      {\n        name = \"rg\",\n        url = \"[BurntSushi/ripgrep](https://github.com/BurntSushi/ripgrep)\",\n        optional = false,\n      },\n    },\n  },\n  {\n    finder_name = \"find-files\",\n    package = {\n      {\n        name = \"fd\",\n        binaries = { \"fdfind\", \"fd\" },\n        url = \"[sharkdp/fd](https://github.com/sharkdp/fd)\",\n        optional = true,\n      },\n    },\n  },\n}\n\nlocal required_plugins = {\n  { lib = \"plenary\", optional = false },\n}\n\nlocal check_binary_installed = function(package)\n  local binaries = package.binaries or { package.name }\n  for _, binary in ipairs(binaries) do\n    local found = vim.fn.executable(binary) == 1\n    if not found and is_win then\n      binary = binary .. \".exe\"\n      found = vim.fn.executable(binary) == 1\n    end\n    if found then\n      local handle = io.popen(binary .. \" --version\")\n      local binary_version = handle:read \"*a\"\n      handle:close()\n      return true, binary_version\n    end\n  end\nend\n\nlocal function lualib_installed(lib_name)\n  local res, _ = pcall(require, lib_name)\n  return res\nend\n\nlocal M = {}\n\nM.check = function()\n  -- Required lua libs\n  health.start \"Checking for required plugins\"\n  for _, plugin in ipairs(required_plugins) do\n    if lualib_installed(plugin.lib) then\n      health.ok(plugin.lib .. \" installed.\")\n    else\n      local lib_not_installed = plugin.lib .. \" not found.\"\n      if plugin.optional then\n        health.warn((\"%s %s\"):format(lib_not_installed, plugin.info))\n      else\n        health.error(lib_not_installed)\n      end\n    end\n  end\n\n  -- external dependencies\n  -- TODO: only perform checks if user has enabled dependency in their config\n  health.start \"Checking external dependencies\"\n\n  for _, opt_dep in pairs(optional_dependencies) do\n    for _, package in ipairs(opt_dep.package) do\n      local installed, version = check_binary_installed(package)\n      if not installed then\n        local err_msg = (\"%s: not found.\"):format(package.name)\n        if package.optional then\n          health.warn((\"%s %s\"):format(err_msg, (\"Install %s for extended capabilities\"):format(package.url)))\n        else\n          health.error(\n            (\"%s %s\"):format(\n              err_msg,\n              (\"`%s` finder will not function without %s installed.\"):format(opt_dep.finder_name, package.url)\n            )\n          )\n        end\n      else\n        local eol = version:find \"\\n\"\n        local ver = eol and version:sub(0, eol - 1) or \"(unknown version)\"\n        health.ok((\"%s: found %s\"):format(package.name, ver))\n      end\n    end\n  end\n\n  -- Extensions\n  health.start \"===== Installed extensions =====\"\n\n  local installed = {}\n  for extension_name, _ in pairs(extension_info) do\n    installed[#installed + 1] = extension_name\n  end\n  table.sort(installed)\n\n  for _, installed_ext in ipairs(installed) do\n    local extension_healthcheck = extension_module._health[installed_ext]\n\n    health.start(string.format(\"Telescope Extension: `%s`\", installed_ext))\n    if extension_healthcheck then\n      extension_healthcheck()\n    else\n      health.info \"No healthcheck provided\"\n    end\n  end\nend\n\nreturn M\n"
  },
  {
    "path": "lua/telescope/init.lua",
    "content": "local _extensions = require \"telescope._extensions\"\n\nlocal telescope = {}\n\n-- TODO(conni2461): also table of contents for tree-sitter-lua\n-- TODO: Add pre to the works\n-- ---@pre [[\n-- ---@pre ]]\n\n---@brief [[\n--- Telescope.nvim is a plugin for fuzzy finding and neovim. It helps you search,\n--- filter, find and pick things in Lua.\n---\n--- Getting started with telescope:\n---   1. Run `:checkhealth telescope` to make sure everything is installed.\n---   2. Evaluate it is working with\n---      `:Telescope find_files` or\n---      `:lua require(\"telescope.builtin\").find_files()`\n---   3. Put a `require(\"telescope\").setup()` call somewhere in your neovim config.\n---   4. Read |telescope.setup| to check what config keys are available and what you can put inside the setup call\n---   5. Read |telescope.builtin| to check which builtin pickers are offered and what options these implement\n---   6. Profit\n---\n---  The below flow chart illustrates a simplified telescope architecture:\n--- <pre>\n--- ┌───────────────────────────────────────────────────────────┐\n--- │      ┌────────┐                                           │\n--- │      │ Multi  │                                ┌───────+  │\n--- │      │ Select │    ┌───────┐                   │ Entry │  │\n--- │      └─────┬──*    │ Entry │    ┌────────+     │ Maker │  │\n--- │            │   ┌───│Manager│────│ Sorter │┐    └───┬───*  │\n--- │            ▼   ▼   └───────*    └────────┘│        │      │\n--- │            1────────┐                 2───┴──┐     │      │\n--- │      ┌─────│ Picker │                 │Finder│◀────┘      │\n--- │      ▼     └───┬────┘                 └──────*            │\n--- │ ┌────────┐     │       3────────+         ▲               │\n--- │ │Selected│     └───────│ Prompt │─────────┘               │\n--- │ │ Entry  │             └───┬────┘                         │\n--- │ └────────*             ┌───┴────┐  ┌────────┐  ┌────────┐ │\n--- │     │  ▲    4─────────┐│ Prompt │  │(Attach)│  │Actions │ │\n--- │     ▼  └──▶ │ Results ││ Buffer │◀─┤Mappings│◀─┤User Fn │ │\n--- │5─────────┐  └─────────┘└────────┘  └────────┘  └────────┘ │\n--- ││Previewer│                                                │\n--- │└─────────┘                   telescope.nvim architecture  │\n--- └───────────────────────────────────────────────────────────┘\n---\n---   + The `Entry Maker` at least defines\n---     - value: \"raw\" result of the finder\n---     - ordinal: string to be sorted derived from value\n---     - display: line representation of entry in results buffer\n---\n---   * The finder, entry manager, selected entry, and multi selections\n---     comprises `entries` constructed by the `Entry Maker` from\n---     raw results of the finder (`value`s)\n---\n---  Primary components:\n---   1 Picker: central UI dedicated to varying use cases\n---             (finding files, grepping, diagnostics, etc.)\n---             see :h telescope.builtin\n---   2 Finder: pipe or interactively generates results to pick over\n---   3 Prompt: user input that triggers the finder which sorts results\n---             in order into the entry manager\n---   4 Results: listed entries scored by sorter from finder results\n---   5 Previewer: preview of context of selected entry\n---                see :h telescope.previewers\n--- </pre>\n---\n---  A practical introduction into telescope customization is our\n---  `developers.md` (top-level of repo) and `:h telescope.actions` that\n---  showcase how to access information about the state of the picker (current\n---  selection, etc.).\n--- <pre>\n--- To find out more:\n--- https://github.com/nvim-telescope/telescope.nvim\n---\n---   :h telescope.setup\n---   :h telescope.command\n---   :h telescope.builtin\n---   :h telescope.themes\n---   :h telescope.layout\n---   :h telescope.resolve\n---   :h telescope.actions\n---   :h telescope.actions.state\n---   :h telescope.actions.set\n---   :h telescope.actions.utils\n---   :h telescope.actions.generate\n---   :h telescope.actions.history\n---   :h telescope.previewers\n--- </pre>\n---@brief ]]\n\n---@tag telescope.nvim\n---@config { [\"name\"] = \"INTRODUCTION\" }\n\n--- Setup function to be run by user. Configures the defaults, pickers and\n--- extensions of telescope.\n---\n--- Usage:\n--- <code>\n--- require('telescope').setup{\n---   defaults = {\n---     -- Default configuration for telescope goes here:\n---     -- config_key = value,\n---     -- ..\n---   },\n---   pickers = {\n---     -- Default configuration for builtin pickers goes here:\n---     -- picker_name = {\n---     --   picker_config_key = value,\n---     --   ...\n---     -- }\n---     -- Now the picker_config_key will be applied every time you call this\n---     -- builtin picker\n---   },\n---   extensions = {\n---     -- Your extension configuration goes here:\n---     -- extension_name = {\n---     --   extension_config_key = value,\n---     -- }\n---     -- please take a look at the readme of the extension you want to configure\n---   }\n--- }\n--- </code>\n---@param opts table: Configuration opts. Keys: defaults, pickers, extensions\n---@eval { [\"description\"] = require('telescope').__format_setup_keys() }\nfunction telescope.setup(opts)\n  opts = opts or {}\n\n  if opts.default then\n    error \"'default' is not a valid value for setup. See 'defaults'\"\n  end\n\n  require(\"telescope.config\").set_defaults(opts.defaults)\n  require(\"telescope.config\").set_pickers(opts.pickers)\n  _extensions.set_config(opts.extensions)\nend\n\n--- Load an extension.\n--- - Notes:\n---   - Loading triggers ext setup via the config passed in |telescope.setup|\n---@param name string: Name of the extension\nfunction telescope.load_extension(name)\n  return _extensions.load(name)\nend\n\n--- Register an extension. To be used by plugin authors.\n---@param mod table: Module\nfunction telescope.register_extension(mod)\n  return _extensions.register(mod)\nend\n\n--- Use telescope.extensions to reference any extensions within your configuration. <br>\n--- While the docs currently generate this as a function, it's actually a table. Sorry.\ntelescope.extensions = require(\"telescope._extensions\").manager\n\ntelescope.__format_setup_keys = function()\n  local names = require(\"telescope.config\").descriptions_order\n  local descriptions = require(\"telescope.config\").descriptions\n\n  local result = { \"<pre>\", \"\", \"Valid keys for {opts.defaults}\" }\n  for _, name in ipairs(names) do\n    local desc = descriptions[name]\n\n    table.insert(result, \"\")\n    table.insert(result, string.format(\"%s*telescope.defaults.%s*\", string.rep(\" \", 70 - 20 - #name), name))\n    table.insert(result, string.format(\"%s: ~\", name))\n    for _, line in ipairs(vim.split(desc, \"\\n\")) do\n      table.insert(result, string.format(\"    %s\", line))\n    end\n  end\n\n  table.insert(result, \"</pre>\")\n  return result\nend\n\nreturn telescope\n"
  },
  {
    "path": "lua/telescope/log.lua",
    "content": "return require(\"plenary.log\").new {\n  plugin = \"telescope\",\n  level = \"info\",\n}\n"
  },
  {
    "path": "lua/telescope/make_entry.lua",
    "content": "---@tag telescope.make_entry\n\n---@brief [[\n---\n--- Each picker has a finder made up of two parts, the results which are the\n--- data to be displayed, and the entry_maker. These entry_makers are functions\n--- returned from make_entry functions. These will be referred to as\n--- entry_makers in the following documentation.\n---\n--- Every entry maker returns a function that accepts the data to be used for\n--- an entry. This function will return an entry table (or nil, meaning skip\n--- this entry) which contains the following important keys:\n--- - value any: value key can be anything but still required\n--- - valid bool (optional): is an optional key because it defaults to true but if the key\n---   is set to false it will not be displayed by the picker\n--- - ordinal string: is the text that is used for filtering\n--- - display string|function: is either a string of the text that is being\n---   displayed or a function receiving the entry at a later stage, when the entry\n---   is actually being displayed. A function can be useful here if a complex\n---   calculation has to be done. `make_entry` can also return a second value -\n---   a highlight array which will then apply to the line. Highlight entry in\n---   this array has the following signature `{ { start_col, end_col }, hl_group }`\n--- - filename string (optional): will be interpreted by the default `<cr>` action as\n---   open this file\n--- - bufnr number (optional): will be interpreted by the default `<cr>` action as open\n---   this buffer\n--- - lnum number (optional): lnum value which will be interpreted by the default `<cr>`\n---   action as a jump to this line\n--- - col number (optional): col value which will be interpreted by the default `<cr>`\n---   action as a jump to this column\n---\n--- For more information on easier displaying, see |telescope.pickers.entry_display|\n---\n--- TODO: Document something we call `entry_index`\n---@brief ]]\n\nlocal api = vim.api\n\nlocal entry_display = require \"telescope.pickers.entry_display\"\nlocal utils = require \"telescope.utils\"\nlocal strings = require \"plenary.strings\"\nlocal Path = require \"plenary.path\"\n\nlocal treesitter_type_highlight = {\n  [\"associated\"] = \"TSConstant\",\n  [\"constant\"] = \"TSConstant\",\n  [\"field\"] = \"TSField\",\n  [\"function\"] = \"TSFunction\",\n  [\"method\"] = \"TSMethod\",\n  [\"parameter\"] = \"TSParameter\",\n  [\"property\"] = \"TSProperty\",\n  [\"struct\"] = \"Struct\",\n  [\"var\"] = \"TSVariableBuiltin\",\n}\n\nlocal lsp_type_highlight = {\n  [\"Class\"] = \"TelescopeResultsClass\",\n  [\"Constant\"] = \"TelescopeResultsConstant\",\n  [\"Field\"] = \"TelescopeResultsField\",\n  [\"Function\"] = \"TelescopeResultsFunction\",\n  [\"Method\"] = \"TelescopeResultsMethod\",\n  [\"Property\"] = \"TelescopeResultsOperator\",\n  [\"Struct\"] = \"TelescopeResultsStruct\",\n  [\"Variable\"] = \"TelescopeResultsVariable\",\n}\n\nlocal get_filename_fn = function()\n  local bufnr_name_cache = {}\n  return function(bufnr)\n    bufnr = vim.F.if_nil(bufnr, 0)\n    local c = bufnr_name_cache[bufnr]\n    if c then\n      return c\n    end\n\n    local n = api.nvim_buf_get_name(bufnr)\n    bufnr_name_cache[bufnr] = n\n    return n\n  end\nend\n\nlocal handle_entry_index = function(opts, t, k)\n  local override = ((opts or {}).entry_index or {})[k]\n  if not override then\n    return\n  end\n\n  local val, save = override(t, opts)\n  if save then\n    rawset(t, k, val)\n  end\n  return val\nend\n\nlocal make_entry = {}\n\nmake_entry.set_default_entry_mt = function(tbl, opts)\n  return setmetatable({}, {\n    __index = function(t, k)\n      local override = handle_entry_index(opts, t, k)\n      if override then\n        return override\n      end\n\n      -- Only hit tbl once\n      local val = tbl[k]\n      if val then\n        rawset(t, k, val)\n      end\n\n      return val\n    end,\n  })\nend\n\ndo\n  local lookup_keys = {\n    display = 1,\n    ordinal = 1,\n    value = 1,\n  }\n\n  function make_entry.gen_from_string(opts)\n    local mt_string_entry = {\n      __index = function(t, k)\n        local override = handle_entry_index(opts, t, k)\n        if override then\n          return override\n        end\n\n        return rawget(t, rawget(lookup_keys, k))\n      end,\n    }\n\n    return function(line)\n      return setmetatable({\n        line,\n      }, mt_string_entry)\n    end\n  end\nend\n\ndo\n  local lookup_keys = {\n    ordinal = 1,\n    value = 1,\n    filename = 1,\n    cwd = 2,\n  }\n\n  function make_entry.gen_from_file(opts)\n    opts = opts or {}\n\n    local cwd = utils.path_expand(opts.cwd or vim.uv.cwd())\n\n    local disable_devicons = opts.disable_devicons\n\n    local mt_file_entry = {}\n\n    mt_file_entry.cwd = cwd\n    mt_file_entry.display = function(entry)\n      local hl_group, icon\n      local display, path_style = utils.transform_path(opts, entry.value)\n\n      display, hl_group, icon = utils.transform_devicons(entry.value, display, disable_devicons)\n\n      if hl_group then\n        local style = { { { 0, #icon + 1 }, hl_group } }\n        style = utils.merge_styles(style, path_style, #icon + 1)\n        return display, style\n      else\n        return display, path_style\n      end\n    end\n\n    mt_file_entry.__index = function(t, k)\n      local override = handle_entry_index(opts, t, k)\n      if override then\n        return override\n      end\n\n      local raw = rawget(mt_file_entry, k)\n      if raw then\n        return raw\n      end\n\n      if k == \"path\" then\n        local retpath = Path:new({ t.cwd, t.value }):absolute()\n        if not vim.uv.fs_access(retpath, \"R\") then\n          retpath = t.value\n        end\n        return retpath\n      end\n\n      return rawget(t, rawget(lookup_keys, k))\n    end\n\n    if opts.file_entry_encoding then\n      return function(line)\n        line = vim.iconv(line, opts.file_entry_encoding, \"utf8\")\n        return setmetatable({ line }, mt_file_entry)\n      end\n    else\n      return function(line)\n        return setmetatable({ line }, mt_file_entry)\n      end\n    end\n  end\nend\n\ndo\n  local lookup_keys = {\n    value = 1,\n    ordinal = 1,\n  }\n\n  -- Gets called only once to parse everything out for the vimgrep, after that looks up directly.\n  local parse_with_col = function(t)\n    local _, _, filename, lnum, col, text = string.find(t.value, [[(..-):(%d+):(%d+):(.*)]])\n\n    local ok\n    ok, lnum = pcall(tonumber, lnum)\n    if not ok then\n      lnum = nil\n    end\n\n    ok, col = pcall(tonumber, col)\n    if not ok then\n      col = nil\n    end\n\n    t.filename = filename\n    t.lnum = lnum\n    t.col = col\n    t.text = text\n\n    return { filename, lnum, col, text }\n  end\n\n  local parse_without_col = function(t)\n    local _, _, filename, lnum, text = string.find(t.value, [[(..-):(%d+):(.*)]])\n\n    local ok\n    ok, lnum = pcall(tonumber, lnum)\n    if not ok then\n      lnum = nil\n    end\n\n    t.filename = filename\n    t.lnum = lnum\n    t.col = nil\n    t.text = text\n\n    return { filename, lnum, nil, text }\n  end\n\n  local parse_only_filename = function(t)\n    t.filename = t.value\n    t.lnum = nil\n    t.col = nil\n    t.text = \"\"\n\n    return { t.filename, nil, nil, \"\" }\n  end\n\n  function make_entry.gen_from_vimgrep(opts)\n    opts = opts or {}\n\n    local mt_vimgrep_entry\n    local parse = parse_with_col\n    if opts.__matches == true then\n      parse = parse_only_filename\n    elseif opts.__inverted == true then\n      parse = parse_without_col\n    end\n\n    local disable_devicons = opts.disable_devicons\n    local disable_coordinates = opts.disable_coordinates\n    local only_sort_text = opts.only_sort_text\n\n    local execute_keys = {\n      path = function(t)\n        if Path:new(t.filename):is_absolute() then\n          return t.filename, false\n        else\n          return Path:new({ t.cwd, t.filename }):absolute(), false\n        end\n      end,\n\n      filename = function(t)\n        return parse(t)[1], true\n      end,\n\n      lnum = function(t)\n        return parse(t)[2], true\n      end,\n\n      col = function(t)\n        return parse(t)[3], true\n      end,\n\n      text = function(t)\n        return parse(t)[4], true\n      end,\n    }\n\n    -- For text search only, the ordinal value is actually the text.\n    if only_sort_text then\n      execute_keys.ordinal = function(t)\n        return t.text\n      end\n    end\n\n    local display_string = \"%s%s%s\"\n\n    mt_vimgrep_entry = {\n      cwd = utils.path_expand(opts.cwd or vim.uv.cwd()),\n\n      display = function(entry)\n        local display_filename, path_style = utils.transform_path(opts, entry.filename)\n\n        local coordinates = \":\"\n        if not disable_coordinates then\n          if entry.lnum then\n            if entry.col then\n              coordinates = string.format(\":%s:%s:\", entry.lnum, entry.col)\n            else\n              coordinates = string.format(\":%s:\", entry.lnum)\n            end\n          end\n        end\n\n        local display, hl_group, icon = utils.transform_devicons(\n          entry.filename,\n          string.format(display_string, display_filename, coordinates, entry.text),\n          disable_devicons\n        )\n\n        if hl_group then\n          local style = { { { 0, #icon }, hl_group } }\n          style = utils.merge_styles(style, path_style, #icon + 1)\n          return display, style\n        else\n          return display, path_style\n        end\n      end,\n\n      __index = function(t, k)\n        local override = handle_entry_index(opts, t, k)\n        if override then\n          return override\n        end\n\n        local raw = rawget(mt_vimgrep_entry, k)\n        if raw then\n          return raw\n        end\n\n        local executor = rawget(execute_keys, k)\n        if executor then\n          local val, save = executor(t)\n          if save then\n            rawset(t, k, val)\n          end\n          return val\n        end\n\n        return rawget(t, rawget(lookup_keys, k))\n      end,\n    }\n\n    return function(line)\n      return setmetatable({ line }, mt_vimgrep_entry)\n    end\n  end\nend\n\nfunction make_entry.gen_from_git_stash(opts)\n  local displayer = entry_display.create {\n    separator = \" \",\n    items = {\n      { width = 10 },\n      opts.show_branch and { width = 15 } or \"\",\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    return displayer {\n      { entry.value, \"TelescopeResultsLineNr\" },\n      opts.show_branch and { entry.branch_name, \"TelescopeResultsIdentifier\" } or \"\",\n      entry.commit_info,\n    }\n  end\n\n  return function(entry)\n    if entry == \"\" then\n      return nil\n    end\n\n    local splitted = utils.max_split(entry, \": \", 2)\n    local stash_idx = splitted[1]\n    local _, branch_name = string.match(splitted[2], \"^([WIP on|On]+) (.+)\")\n    local commit_info = splitted[3]\n\n    return make_entry.set_default_entry_mt({\n      value = stash_idx,\n      ordinal = commit_info,\n      branch_name = branch_name,\n      commit_info = commit_info,\n      display = make_display,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_git_commits(opts)\n  opts = opts or {}\n\n  local displayer = entry_display.create {\n    separator = \" \",\n    items = {\n      { width = 8 },\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    return displayer {\n      { entry.value, \"TelescopeResultsIdentifier\" },\n      entry.msg,\n    }\n  end\n\n  return function(entry)\n    if entry == \"\" then\n      return nil\n    end\n\n    local sha, msg = string.match(entry, \"([^ ]+) (.+)\")\n\n    if not msg then\n      sha = entry\n      msg = \"<empty commit message>\"\n    end\n\n    return make_entry.set_default_entry_mt({\n      value = sha,\n      ordinal = sha .. \" \" .. msg,\n      msg = msg,\n      display = make_display,\n      current_file = opts.current_file,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_quickfix(opts)\n  opts = opts or {}\n  local show_line = vim.F.if_nil(opts.show_line, true)\n\n  local hidden = utils.is_path_hidden(opts)\n\n  local make_display = function(entry)\n    local display_filename, path_style = utils.transform_path(opts, entry.filename)\n    local display_string = string.format(\"%s:%d:%d\", display_filename, entry.lnum, entry.col)\n    if hidden then\n      display_string = string.format(\"%4d:%2d\", entry.lnum, entry.col)\n    end\n\n    if show_line then\n      local text = entry.text\n      if opts.trim_text then\n        text = vim.trim(text)\n      end\n      text = text:gsub(\".* | \", \"\")\n      display_string = display_string .. \":\" .. text\n    end\n\n    return display_string, path_style\n  end\n\n  local get_filename = get_filename_fn()\n  return function(entry)\n    local filename = vim.F.if_nil(entry.filename, get_filename(entry.bufnr))\n\n    return make_entry.set_default_entry_mt({\n      value = entry,\n      ordinal = (not hidden and filename or \"\") .. \" \" .. entry.text,\n      display = make_display,\n\n      bufnr = entry.bufnr,\n      filename = filename,\n      lnum = entry.lnum,\n      col = entry.col,\n      text = entry.text,\n      start = entry.start,\n      finish = entry.finish,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_lsp_symbols(opts)\n  opts = opts or {}\n\n  local bufnr = opts.bufnr or api.nvim_get_current_buf()\n\n  -- Default we have two columns, symbol and type(unbound)\n  -- If path is not hidden then its, filepath, symbol and type(still unbound)\n  -- If show_line is also set, type is bound to len 8\n  local display_items = {\n    { width = opts.symbol_width or 25 },\n    { remaining = true },\n  }\n\n  local hidden = utils.is_path_hidden(opts)\n  if not hidden then\n    table.insert(display_items, 1, { width = vim.F.if_nil(opts.fname_width, 30) })\n  end\n\n  if opts.show_line then\n    -- bound type to len 8 or custom\n    table.insert(display_items, #display_items, { width = opts.symbol_type_width or 8 })\n  end\n\n  local displayer = entry_display.create {\n    separator = \" \",\n    hl_chars = { [\"[\"] = \"TelescopeBorder\", [\"]\"] = \"TelescopeBorder\" },\n    items = display_items,\n  }\n  local type_highlight = vim.F.if_nil(opts.symbol_highlights or lsp_type_highlight)\n\n  local make_display = function(entry)\n    local msg\n\n    if opts.show_line then\n      msg = vim.trim(vim.F.if_nil(api.nvim_buf_get_lines(bufnr, entry.lnum - 1, entry.lnum, false)[1], \"\"))\n    end\n\n    if hidden then\n      return displayer {\n        entry.symbol_name,\n        { entry.symbol_type:lower(), type_highlight[entry.symbol_type] },\n        msg,\n      }\n    else\n      local display_path, path_style = utils.transform_path(opts, entry.filename)\n      return displayer {\n        {\n          display_path,\n          function()\n            return path_style\n          end,\n        },\n        entry.symbol_name,\n        { entry.symbol_type:lower(), type_highlight[entry.symbol_type] },\n        msg,\n      }\n    end\n  end\n\n  local get_filename = get_filename_fn()\n  return function(entry)\n    local filename = vim.F.if_nil(entry.filename, get_filename(entry.bufnr))\n    local symbol_msg = entry.text\n    local symbol_type, symbol_name = symbol_msg:match \"%[(.+)%]%s+(.*)\"\n    local ordinal = \"\"\n    if not hidden and filename then\n      ordinal = filename .. \" \"\n    end\n    ordinal = ordinal .. symbol_name .. \" \" .. (symbol_type or \"unknown\")\n    return make_entry.set_default_entry_mt({\n      value = entry,\n      ordinal = ordinal,\n      display = make_display,\n\n      filename = filename,\n      lnum = entry.lnum,\n      col = entry.col,\n      symbol_name = symbol_name,\n      symbol_type = symbol_type,\n      start = entry.start,\n      finish = entry.finish,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_buffer(opts)\n  opts = opts or {}\n\n  local disable_devicons = opts.disable_devicons\n\n  local icon_width = 0\n  if not disable_devicons then\n    local icon, _ = utils.get_devicons(\"fname\", disable_devicons)\n    icon_width = strings.strdisplaywidth(icon)\n  end\n\n  local displayer = entry_display.create {\n    separator = \" \",\n    items = {\n      { width = opts.bufnr_width },\n      { width = 4 },\n      { width = icon_width },\n      { remaining = true },\n    },\n  }\n\n  local cwd = utils.path_expand(opts.cwd or vim.uv.cwd())\n\n  local make_display = function(entry)\n    -- bufnr_width + modes + icon + 3 spaces + : + lnum\n    opts.__prefix = opts.bufnr_width + 4 + icon_width + 3 + 1 + #tostring(entry.lnum)\n    local display_bufname, path_style = utils.transform_path(opts, entry.filename)\n    local icon, hl_group = utils.get_devicons(entry.filename, disable_devicons)\n\n    return displayer {\n      { entry.bufnr, \"TelescopeResultsNumber\" },\n      { entry.indicator, \"TelescopeResultsComment\" },\n      { icon, hl_group },\n      {\n        display_bufname .. \":\" .. entry.lnum,\n        function()\n          return path_style\n        end,\n      },\n    }\n  end\n\n  return function(entry)\n    local filename = entry.info.name ~= \"\" and entry.info.name or nil\n    local bufname = filename and Path:new(filename):normalize(cwd) or \"[No Name]\"\n\n    local hidden = entry.info.hidden == 1 and \"h\" or \"a\"\n    local readonly = vim.bo[entry.bufnr].readonly and \"=\" or \" \"\n    local changed = entry.info.changed == 1 and \"+\" or \" \"\n    local indicator = entry.flag .. hidden .. readonly .. changed\n    local lnum = 0\n\n    -- account for potentially stale lnum as getbufinfo might not be updated or from resuming buffers picker\n    if entry.info.lnum ~= 0 then\n      -- but make sure the buffer is loaded, otherwise line_count is 0\n      if api.nvim_buf_is_loaded(entry.bufnr) then\n        local line_count = api.nvim_buf_line_count(entry.bufnr)\n        lnum = math.max(math.min(entry.info.lnum, line_count), 1)\n      else\n        lnum = entry.info.lnum\n      end\n    end\n\n    return make_entry.set_default_entry_mt({\n      value = bufname,\n      ordinal = entry.bufnr .. \" : \" .. bufname,\n      display = make_display,\n      bufnr = entry.bufnr,\n      path = filename,\n      filename = bufname,\n      lnum = lnum,\n      indicator = indicator,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_treesitter(opts)\n  opts = opts or {}\n\n  local bufnr = opts.bufnr or api.nvim_get_current_buf()\n\n  local display_items = {\n    { width = opts.symbol_width or 25 },\n    { width = 10 },\n    { remaining = true },\n  }\n\n  if opts.show_line then\n    table.insert(display_items, 2, { width = 6 })\n  end\n\n  local displayer = entry_display.create {\n    separator = \" \",\n    items = display_items,\n  }\n\n  local type_highlight = opts.symbol_highlights or treesitter_type_highlight\n\n  local make_display = function(entry)\n    local msg = api.nvim_buf_get_lines(bufnr, entry.lnum, entry.lnum, false)[1] or \"\"\n    msg = vim.trim(msg)\n\n    local display_columns = {\n      entry.text,\n      { entry.kind, type_highlight[entry.kind], type_highlight[entry.kind] },\n      msg,\n    }\n    if opts.show_line then\n      table.insert(display_columns, 2, { entry.lnum .. \":\" .. entry.col, \"TelescopeResultsLineNr\" })\n    end\n\n    return displayer(display_columns)\n  end\n\n  local get_filename = get_filename_fn()\n  return function(entry)\n    local start_row, start_col, end_row, _ = vim.treesitter.get_node_range(entry.node)\n    local node_text = vim.treesitter.get_node_text(entry.node, bufnr)\n    return make_entry.set_default_entry_mt({\n      value = entry.node,\n      kind = entry.kind,\n      ordinal = node_text .. \" \" .. (entry.kind or \"unknown\"),\n      display = make_display,\n\n      node_text = node_text,\n\n      filename = get_filename(bufnr),\n      -- need to add one since the previewer substacts one\n      lnum = start_row + 1,\n      col = start_col,\n      text = node_text,\n      start = start_row,\n      finish = end_row,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_packages(opts)\n  opts = opts or {}\n\n  local make_display = function(module_name)\n    local p_path = package.searchpath(module_name, package.path) or \"\"\n    local display = string.format(\"%-\" .. opts.column_len .. \"s : %s\", module_name, vim.fn.fnamemodify(p_path, \":~:.\"))\n\n    return display\n  end\n\n  return function(module_name)\n    return make_entry.set_default_entry_mt({\n      valid = module_name ~= \"\",\n      value = module_name,\n      ordinal = module_name,\n      display = make_display(module_name),\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_apropos(opts)\n  local sections = {}\n  if #opts.sections == 1 and opts.sections[1] == \"ALL\" then\n    setmetatable(sections, {\n      __index = function()\n        return true\n      end,\n    })\n  else\n    for _, section in ipairs(opts.sections) do\n      sections[section] = true\n    end\n  end\n\n  local displayer = entry_display.create {\n    separator = \" \",\n    items = {\n      { width = 30 },\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    return displayer {\n      { entry.keyword, \"TelescopeResultsFunction\" },\n      entry.description,\n    }\n  end\n\n  return function(line)\n    local keyword, cmd, section, desc = line:match \"^((.-)%s*%(([^)]+)%).-)%s+%-%s+(.*)$\"\n    -- apropos might return alternatives for the cmd which are split on `,` and breaks everything else\n    -- for example on void linux it will return `alacritty, Alacritty` which will later result in\n    -- `man 1 alacritty, Alacritty`. So we just take the first one.\n    -- doing this outside of regex because of obvious reasons\n    cmd = vim.split(cmd, \",\")[1]\n    return keyword\n        and sections[section]\n        and make_entry.set_default_entry_mt({\n          value = cmd,\n          description = desc,\n          ordinal = cmd,\n          display = make_display,\n          section = section,\n          keyword = keyword,\n        }, opts)\n      or nil\n  end\nend\n\nfunction make_entry.gen_from_marks(opts)\n  return function(item)\n    return make_entry.set_default_entry_mt({\n      value = item.line,\n      ordinal = item.line,\n      display = item.line,\n      lnum = item.lnum,\n      col = item.col,\n      start = item.lnum,\n      filename = item.filename,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_registers(opts)\n  local displayer = entry_display.create {\n    separator = \" \",\n    hl_chars = { [\"[\"] = \"TelescopeBorder\", [\"]\"] = \"TelescopeBorder\" },\n    items = {\n      { width = 3 },\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    local content = entry.content\n    return displayer {\n      { \"[\" .. entry.value .. \"]\", \"TelescopeResultsNumber\" },\n      type(content) == \"string\" and content:gsub(\"\\n\", \"\\\\n\") or content,\n    }\n  end\n\n  return function(entry)\n    local contents = vim.fn.getreg(entry, 1)\n    return make_entry.set_default_entry_mt({\n      value = entry,\n      ordinal = string.format(\"%s %s\", entry, contents),\n      content = contents,\n      display = make_display,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_keymaps(opts)\n  local function get_desc(entry)\n    if entry.callback and not entry.desc then\n      return require(\"telescope.actions.utils\")._get_anon_function_name(debug.getinfo(entry.callback))\n    end\n    return vim.F.if_nil(entry.desc, entry.rhs):gsub(\"\\n\", \"\\\\n\")\n  end\n\n  local function get_lhs(entry)\n    return utils.display_termcodes(entry.lhs)\n  end\n\n  local function get_attr(entry)\n    local ret = \"\"\n    if entry.value.noremap ~= 0 then\n      ret = ret .. \"*\"\n    end\n    if entry.value.buffer ~= 0 then\n      ret = ret .. \"@\"\n    end\n    return ret\n  end\n\n  local displayer = require(\"telescope.pickers.entry_display\").create {\n    separator = \"▏\",\n    items = {\n      { width = 3 },\n      { width = opts.width_lhs },\n      { width = 2 },\n      { remaining = true },\n    },\n  }\n  local make_display = function(entry)\n    return displayer {\n      entry.mode,\n      get_lhs(entry),\n      get_attr(entry),\n      get_desc(entry),\n    }\n  end\n\n  return function(entry)\n    local desc = get_desc(entry)\n    local lhs = get_lhs(entry)\n    return make_entry.set_default_entry_mt({\n      mode = entry.mode,\n      lhs = lhs,\n      desc = desc,\n      valid = entry ~= \"\",\n      value = entry,\n      ordinal = entry.mode .. \" \" .. lhs .. \" \" .. desc,\n      display = make_display,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_highlights(opts)\n  local make_display = function(entry)\n    local display = entry.value\n    return display, { { { 0, #display }, display } }\n  end\n\n  return function(entry)\n    return make_entry.set_default_entry_mt({\n      value = entry,\n      display = make_display,\n      ordinal = entry,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_picker(opts)\n  local displayer = entry_display.create {\n    separator = \" │ \",\n    items = {\n      { width = 0.5 },\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    return displayer {\n      entry.value.prompt_title,\n      entry.value.default_text,\n    }\n  end\n\n  return function(entry)\n    return make_entry.set_default_entry_mt({\n      value = entry,\n      text = entry.prompt_title,\n      ordinal = string.format(\"%s %s\", entry.prompt_title, vim.F.if_nil(entry.default_text, \"\")),\n      display = make_display,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_buffer_lines(opts)\n  local displayer = entry_display.create {\n    separator = \" │ \",\n    items = {\n      { width = 5 },\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    return displayer {\n      { entry.lnum, opts.lnum_highlight_group or \"TelescopeResultsSpecialComment\" },\n      {\n        entry.text,\n        function()\n          if not opts.line_highlights then\n            return {}\n          end\n\n          local line_hl = opts.line_highlights[entry.lnum] or {}\n          -- TODO: We could probably squash these together if the are the same...\n          --        But I don't think that it's worth it at the moment.\n          local result = {}\n\n          for col, hl in pairs(line_hl) do\n            table.insert(result, { { col, col + 1 }, hl })\n          end\n\n          return result\n        end,\n      },\n    }\n  end\n\n  return function(entry)\n    if opts.skip_empty_lines and string.match(entry.text, \"^$\") then\n      return\n    end\n\n    return make_entry.set_default_entry_mt({\n      ordinal = entry.text,\n      display = make_display,\n      filename = entry.filename,\n      lnum = entry.lnum,\n      text = entry.text,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_vimoptions(opts)\n  local displayer = entry_display.create {\n    separator = \"\",\n    hl_chars = { [\"[\"] = \"TelescopeBorder\", [\"]\"] = \"TelescopeBorder\" },\n    items = {\n      { width = 25 },\n      { width = 12 },\n      { width = 11 },\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    return displayer {\n      { entry.value.name, \"Keyword\" },\n      { \"[\" .. entry.value.type .. \"]\", \"Type\" },\n      { \"[\" .. entry.value.scope .. \"]\", \"Identifier\" },\n      utils.display_termcodes(tostring(entry.value.value)),\n    }\n  end\n\n  return function(o)\n    local entry = {\n      display = make_display,\n      value = {\n        name = o.name,\n        value = o.value,\n        type = o.type,\n        scope = o.scope,\n      },\n      ordinal = string.format(\"%s %s %s %s\", o.name, o.type, o.scope, utils.display_termcodes(tostring(o.value))),\n    }\n\n    return make_entry.set_default_entry_mt(entry, opts)\n  end\nend\n\nfunction make_entry.gen_from_ctags(opts)\n  opts = opts or {}\n\n  local show_kind = vim.F.if_nil(opts.show_kind, true)\n  local cwd = utils.path_expand(opts.cwd or vim.uv.cwd())\n  local current_file = Path:new(api.nvim_buf_get_name(opts.bufnr)):normalize(cwd)\n\n  local display_items = {\n    { width = 16 },\n    { remaining = true },\n  }\n\n  local idx = 1\n  local hidden = utils.is_path_hidden(opts)\n  if not hidden then\n    table.insert(display_items, idx, { width = vim.F.if_nil(opts.fname_width, 30) })\n    idx = idx + 1\n  end\n\n  if opts.show_line then\n    table.insert(display_items, idx, { width = 30 })\n  end\n\n  local displayer = entry_display.create {\n    separator = \" │ \",\n    items = display_items,\n  }\n\n  local make_display = function(entry)\n    local display_path, path_style = utils.transform_path(opts, entry.filename)\n\n    local scode\n    if opts.show_line then\n      scode = entry.scode\n    end\n\n    if hidden then\n      return displayer {\n        entry.tag,\n        scode,\n      }\n    else\n      return displayer {\n        {\n          display_path,\n          function()\n            return path_style\n          end,\n        },\n        entry.tag,\n        entry.kind,\n        scode,\n      }\n    end\n  end\n\n  local mt = {}\n  mt.__index = function(t, k)\n    local override = handle_entry_index(opts, t, k)\n    if override then\n      return override\n    end\n\n    if k == \"path\" then\n      local retpath = Path:new({ t.filename }):absolute()\n      if not vim.uv.fs_access(retpath, \"R\") then\n        retpath = t.filename\n      end\n      return retpath\n    end\n  end\n\n  local current_file_cache = {}\n  return function(line)\n    if line == \"\" or line:sub(1, 1) == \"!\" then\n      return nil\n    end\n\n    local tag, file, scode, lnum, extension_fields\n    -- ctags gives us: 'tags\\tfile\\tsource;\"extension_fields'\n    tag, file, scode, extension_fields = string.match(line, '([^\\t]+)\\t([^\\t]+)\\t/^?\\t?(.*)/;\"\\t+(.*)')\n    if not tag then\n      -- hasktags gives us: 'tags\\tfile\\tlnum'\n      tag, file, lnum = string.match(line, \"([^\\t]+)\\t([^\\t]+)\\t(%d+).*\")\n    end\n    local kind = string.match(extension_fields or \"\", \"kind:(%S+)\")\n\n    if Path.path.sep == \"\\\\\" then\n      file = string.gsub(file, \"/\", \"\\\\\")\n    end\n\n    if opts.only_current_file then\n      if current_file_cache[file] == nil then\n        current_file_cache[file] = Path:new(file):normalize(cwd) == current_file\n      end\n\n      if current_file_cache[file] == false then\n        return nil\n      end\n    end\n\n    local tag_entry = {}\n    if opts.only_sort_tags then\n      tag_entry.ordinal = tag\n    else\n      tag_entry.ordinal = file .. \": \" .. tag\n    end\n\n    tag_entry.display = make_display\n    tag_entry.scode = scode\n    tag_entry.tag = tag\n    tag_entry.filename = file\n    tag_entry.col = 1\n    tag_entry.lnum = lnum and tonumber(lnum) or 1\n    if show_kind then\n      tag_entry.kind = kind\n    end\n\n    return setmetatable(tag_entry, mt)\n  end\nend\n\nfunction make_entry.gen_from_diagnostics(opts)\n  opts = opts or {}\n\n  local diagnostic_config = vim.diagnostic.config() or {}\n  local diagnostic_signs = {}\n  if type(diagnostic_config.signs) == \"table\" then\n    diagnostic_signs = diagnostic_config.signs.text or {}\n  end\n\n  local type_diagnostic = vim.diagnostic.severity\n  local signs = (function()\n    if opts.no_sign then\n      return\n    end\n    local signs = {}\n    for num, severity in ipairs(type_diagnostic) do\n      local sign = diagnostic_signs[num]\n      if not sign then\n        local status\n        status, sign = pcall(function()\n          -- only the first char is upper all others are lowercase\n          return vim.trim(\n            vim.fn.sign_getdefined(\"DiagnosticSign\" .. severity:lower():gsub(\"^%l\", string.upper))[1].text\n          )\n        end)\n\n        if not status then\n          sign = severity:sub(1, 1)\n        end\n      end\n      signs[severity] = sign\n    end\n    return signs\n  end)()\n\n  local sign_width\n  if opts.disable_coordinates then\n    sign_width = signs ~= nil and 2 or 0\n  else\n    sign_width = signs ~= nil and 10 or 8\n  end\n\n  local display_items = {\n    { width = sign_width },\n    { remaining = true },\n  }\n  local line_width = vim.F.if_nil(opts.line_width, 0.5)\n  local line_width_opts = { width = line_width }\n  if type(line_width) == \"string\" and line_width == \"full\" then\n    line_width_opts = {}\n  end\n  local hidden = utils.is_path_hidden(opts)\n  if not hidden then\n    table.insert(display_items, 2, line_width_opts)\n  end\n  local displayer = entry_display.create {\n    separator = \"▏\",\n    items = display_items,\n  }\n\n  local make_display = function(entry)\n    local display_path, path_style = utils.transform_path(opts, entry.filename)\n\n    -- add styling of entries\n    local pos = string.format(\"%4d:%2d\", entry.lnum, entry.col)\n    local line_info_text = signs and signs[entry.type] .. \" \" or \"\"\n    local line_info = {\n      opts.disable_coordinates and line_info_text or line_info_text .. pos,\n      \"DiagnosticSign\" .. entry.type,\n    }\n\n    return displayer {\n      line_info,\n      entry.text,\n      {\n        display_path,\n        function()\n          return path_style\n        end,\n      },\n    }\n  end\n\n  local errlist_type_map = {\n    [type_diagnostic.ERROR] = \"E\",\n    [type_diagnostic.WARN] = \"W\",\n    [type_diagnostic.INFO] = \"I\",\n    [type_diagnostic.HINT] = \"N\",\n  }\n\n  return function(entry)\n    return make_entry.set_default_entry_mt({\n      value = entry,\n      ordinal = (\"%s %s\"):format(not hidden and entry.filename or \"\", entry.text),\n      display = make_display,\n      filename = entry.filename,\n      type = entry.type,\n      lnum = entry.lnum,\n      col = entry.col,\n      text = entry.text,\n      qf_type = errlist_type_map[type_diagnostic[entry.type]],\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_autocommands(opts)\n  local displayer = entry_display.create {\n    separator = \"▏\",\n    items = {\n      { width = 14 },\n      { width = 18 },\n      { width = 16 },\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    return displayer {\n      { entry.value.event, \"vimAutoEvent\" },\n      { entry.value.group_name, \"vimAugroup\" },\n      { entry.value.pattern, \"vimAutoCmdSfxList\" },\n      entry.value.command,\n    }\n  end\n\n  return function(entry)\n    local group_name = vim.F.if_nil(entry.group_name, \"<anonymous>\")\n    local command = entry.command\n    if entry.desc and (entry.callback or vim.startswith(command, \"<lua: \")) then\n      command = entry.desc\n    end\n    if command == nil or command == \"\" then\n      command = \"<lua function>\"\n    end\n    return make_entry.set_default_entry_mt({\n      value = {\n        event = entry.event,\n        group_name = group_name,\n        pattern = entry.pattern,\n        command = command,\n        callback = entry.callback,\n      },\n      --\n      ordinal = entry.event .. \" \" .. group_name .. \" \" .. entry.pattern .. \" \" .. entry.command,\n      display = make_display,\n    }, opts)\n  end\nend\n\nfunction make_entry.gen_from_commands(opts)\n  local displayer = entry_display.create {\n    separator = \"▏\",\n    items = {\n      { width = 0.2 },\n      { width = 4 },\n      { width = 4 },\n      { width = 11 },\n      { remaining = true },\n    },\n  }\n\n  local make_display = function(entry)\n    local attrs = \"\"\n    if entry.bang then\n      attrs = attrs .. \"!\"\n    end\n    if entry.bar then\n      attrs = attrs .. \"|\"\n    end\n    if entry.register then\n      attrs = attrs .. '\"'\n    end\n    return displayer {\n      { entry.name, \"TelescopeResultsIdentifier\" },\n      attrs,\n      entry.nargs,\n      entry.complete or \"\",\n      entry.definition:gsub(\"\\n\", \" \"),\n    }\n  end\n\n  return function(entry)\n    return make_entry.set_default_entry_mt({\n      name = entry.name,\n      bang = entry.bang,\n      nargs = entry.nargs,\n      complete = entry.complete,\n      definition = entry.definition,\n      --\n      value = entry,\n      ordinal = entry.name,\n      display = make_display,\n    }, opts)\n  end\nend\n\nlocal git_icon_defaults = {\n  added = \"+\",\n  changed = \"~\",\n  copied = \">\",\n  deleted = \"-\",\n  renamed = \"➡\",\n  unmerged = \"‡\",\n  untracked = \"?\",\n}\n\nfunction make_entry.gen_from_git_status(opts)\n  opts = opts or {}\n\n  local col_width = ((opts.git_icons and opts.git_icons.added) and opts.git_icons.added:len() + 2) or 2\n  local displayer = entry_display.create {\n    separator = \"\",\n    items = {\n      { width = col_width },\n      { width = col_width },\n      { remaining = true },\n    },\n  }\n\n  local icons = vim.tbl_extend(\"keep\", opts.git_icons or {}, git_icon_defaults)\n\n  local git_abbrev = {\n    [\"A\"] = { icon = icons.added, hl = \"TelescopeResultsDiffAdd\" },\n    [\"U\"] = { icon = icons.unmerged, hl = \"TelescopeResultsDiffAdd\" },\n    [\"M\"] = { icon = icons.changed, hl = \"TelescopeResultsDiffChange\" },\n    [\"C\"] = { icon = icons.copied, hl = \"TelescopeResultsDiffChange\" },\n    [\"R\"] = { icon = icons.renamed, hl = \"TelescopeResultsDiffChange\" },\n    [\"D\"] = { icon = icons.deleted, hl = \"TelescopeResultsDiffDelete\" },\n    [\"?\"] = { icon = icons.untracked, hl = \"TelescopeResultsDiffUntracked\" },\n  }\n\n  local make_display = function(entry)\n    local x = string.sub(entry.status, 1, 1)\n    local y = string.sub(entry.status, -1)\n    local status_x = git_abbrev[x] or {}\n    local status_y = git_abbrev[y] or {}\n\n    local display_path, path_style = utils.transform_path(opts, entry.path)\n\n    local empty_space = \" \"\n    return displayer {\n      { status_x.icon or empty_space, status_x.hl },\n      { status_y.icon or empty_space, status_y.hl },\n      {\n        display_path,\n        function()\n          return path_style\n        end,\n      },\n    }\n  end\n\n  return function(entry)\n    if entry == \"\" then\n      return nil\n    end\n\n    local mod, file = entry:match \"^(..) (.+)$\"\n    -- Ignore entries that are the PATH in XY ORIG_PATH PATH\n    -- (renamed or copied files)\n    if not mod then\n      return nil\n    end\n\n    return make_entry.set_default_entry_mt({\n      value = file,\n      status = mod,\n      ordinal = entry,\n      display = make_display,\n      path = Path:new({ opts.cwd, file }):absolute(),\n    }, opts)\n  end\nend\n\nreturn make_entry\n"
  },
  {
    "path": "lua/telescope/mappings.lua",
    "content": "---@tag telescope.mappings\n\n---@brief [[\n--- |telescope.mappings| is used to configure the keybindings within\n--- a telescope picker. These key binds are only local to the picker window\n--- and will be cleared once you exit the picker.\n---\n--- We provide multiple configuration options to make it easy for you to adjust\n--- telescope's default key bindings and create your own custom key binds.\n---\n--- To see many of the builtin actions that you can use as values for this\n--- table, see |telescope.actions|\n---\n--- Format is:\n--- <code>\n---   {\n---     mode = { ..keys }\n---   }\n--- </code>\n---\n---  where {mode} is the one character letter for a mode ('i' for insert, 'n' for normal).\n---\n---  For example:\n--- <code>\n---   mappings = {\n---     i = {\n---       [\"<esc>\"] = require('telescope.actions').close,\n---     },\n---   }\n--- </code>\n---\n--- To disable a keymap, put `[map] = false`<br>\n--- For example:\n--- <code>\n---   {\n---     ...,\n---     [\"<C-n>\"] = false,\n---     ...,\n---   }\n--- </code>\n---\n--- To override behavior of a key, simply set the value\n--- to be a function (either by requiring an action or by writing\n--- your own function)\n--- <code>\n---   {\n---     ...,\n---     [\"<C-i>\"] = require('telescope.actions').select_default,\n---     ...,\n---   }\n--- </code>\n---\n---  If the function you want is part of `telescope.actions`, then you can\n---  simply supply the function name as a string.\n---    For example, the previous option is equivalent to:\n--- <code>\n---   {\n---     ...,\n---     [\"<C-i>\"] = \"select_default\",\n---     ...,\n---   }\n--- </code>\n---\n---  You can also add other mappings using tables with `type = \"command\"`.\n---    For example:\n--- <code>\n---   {\n---     ...,\n---     [\"jj\"] = { \"<esc>\", type = \"command\" },\n---     [\"kk\"] = { \"<cmd>echo \\\"Hello, World!\\\"<cr>\", type = \"command\" },)\n---     ...,\n---   }\n--- </code>\n---\n--- You can also add additional options for mappings of any type (\"action\" and \"command\").\n---   For example:\n--- <code>\n---   {\n---     ...,\n---     [\"<C-j>\"] = {\n---       actions.move_selection_next, type = \"action\",\n---       opts = { nowait = true, silent = true }\n---     },\n---     ...,\n---   }\n--- </code>\n---\n--- There are three main places you can configure |telescope.mappings|. These are\n--- ordered from the lowest priority to the highest priority.\n---\n--- 1. |telescope.defaults.mappings|\n--- 2. In the |telescope.setup()| table, inside a picker with a given name, use the `mappings` key\n--- <code>\n---   require(\"telescope\").setup {\n---     pickers = {\n---       find_files = {\n---         mappings = {\n---           n = {\n---             [\"kj\"] = \"close\",\n---           },\n---         },\n---       },\n---     },\n---   }\n--- </code>\n--- 3. `attach_mappings` function for a particular picker.\n--- <code>\n---   require(\"telescope.builtin\").find_files {\n---     attach_mappings = function(_, map)\n---       map(\"i\", \"asdf\", function(_prompt_bufnr)\n---         print \"You typed asdf\"\n---       end)\n---\n---       map({\"i\", \"n\"}, \"<C-r>\", function(_prompt_bufnr)\n---         print \"You typed <C-r>\"\n---       end, { desc = \"desc for which key\"})\n---\n---       -- needs to return true if you want to map default_mappings and\n---       -- false if not\n---       return true\n---     end,\n---   }\n--- </code>\n---@brief ]]\n\nlocal api = vim.api\n\nlocal actions = require \"telescope.actions\"\nlocal config = require \"telescope.config\"\n\nlocal mappings = {}\n\nmappings.default_mappings = config.values.default_mappings\n  or {\n    i = {\n      [\"<LeftMouse>\"] = {\n        actions.mouse_click,\n        type = \"action\",\n        opts = { expr = true },\n      },\n      [\"<2-LeftMouse>\"] = {\n        actions.double_mouse_click,\n        type = \"action\",\n        opts = { expr = true },\n      },\n\n      [\"<C-n>\"] = actions.move_selection_next,\n      [\"<C-p>\"] = actions.move_selection_previous,\n\n      [\"<C-c>\"] = actions.close,\n\n      [\"<Down>\"] = actions.move_selection_next,\n      [\"<Up>\"] = actions.move_selection_previous,\n\n      [\"<CR>\"] = actions.select_default,\n      [\"<C-x>\"] = actions.select_horizontal,\n      [\"<C-v>\"] = actions.select_vertical,\n      [\"<C-t>\"] = actions.select_tab,\n\n      [\"<C-u>\"] = actions.preview_scrolling_up,\n      [\"<C-d>\"] = actions.preview_scrolling_down,\n      [\"<C-f>\"] = actions.preview_scrolling_left,\n      [\"<C-k>\"] = actions.preview_scrolling_right,\n\n      [\"<PageUp>\"] = actions.results_scrolling_up,\n      [\"<PageDown>\"] = actions.results_scrolling_down,\n      [\"<M-f>\"] = actions.results_scrolling_left,\n      [\"<M-k>\"] = actions.results_scrolling_right,\n\n      [\"<Tab>\"] = actions.toggle_selection + actions.move_selection_worse,\n      [\"<S-Tab>\"] = actions.toggle_selection + actions.move_selection_better,\n      [\"<C-q>\"] = actions.send_to_qflist + actions.open_qflist,\n      [\"<M-q>\"] = actions.send_selected_to_qflist + actions.open_qflist,\n      [\"<C-l>\"] = actions.complete_tag,\n      [\"<C-/>\"] = actions.which_key,\n      [\"<C-_>\"] = actions.which_key, -- keys from pressing <C-/>\n      [\"<C-w>\"] = { \"<c-s-w>\", type = \"command\" },\n      [\"<C-r><C-w>\"] = actions.insert_original_cword,\n      [\"<C-r><C-a>\"] = actions.insert_original_cWORD,\n      [\"<C-r><C-f>\"] = actions.insert_original_cfile,\n      [\"<C-r><C-l>\"] = actions.insert_original_cline,\n\n      -- disable c-j because we dont want to allow new lines #2123\n      [\"<C-j>\"] = actions.nop,\n    },\n    n = {\n      [\"<LeftMouse>\"] = {\n        actions.mouse_click,\n        type = \"action\",\n        opts = { expr = true },\n      },\n      [\"<2-LeftMouse>\"] = {\n        actions.double_mouse_click,\n        type = \"action\",\n        opts = { expr = true },\n      },\n\n      [\"<esc>\"] = actions.close,\n      [\"<CR>\"] = actions.select_default,\n      [\"<C-x>\"] = actions.select_horizontal,\n      [\"<C-v>\"] = actions.select_vertical,\n      [\"<C-t>\"] = actions.select_tab,\n\n      [\"<Tab>\"] = actions.toggle_selection + actions.move_selection_worse,\n      [\"<S-Tab>\"] = actions.toggle_selection + actions.move_selection_better,\n      [\"<C-q>\"] = actions.send_to_qflist + actions.open_qflist,\n      [\"<M-q>\"] = actions.send_selected_to_qflist + actions.open_qflist,\n\n      -- TODO: This would be weird if we switch the ordering.\n      [\"j\"] = actions.move_selection_next,\n      [\"k\"] = actions.move_selection_previous,\n      [\"H\"] = actions.move_to_top,\n      [\"M\"] = actions.move_to_middle,\n      [\"L\"] = actions.move_to_bottom,\n\n      [\"<Down>\"] = actions.move_selection_next,\n      [\"<Up>\"] = actions.move_selection_previous,\n      [\"gg\"] = actions.move_to_top,\n      [\"G\"] = actions.move_to_bottom,\n\n      [\"<C-u>\"] = actions.preview_scrolling_up,\n      [\"<C-d>\"] = actions.preview_scrolling_down,\n      [\"<C-f>\"] = actions.preview_scrolling_left,\n      [\"<C-k>\"] = actions.preview_scrolling_right,\n\n      [\"<PageUp>\"] = actions.results_scrolling_up,\n      [\"<PageDown>\"] = actions.results_scrolling_down,\n      [\"<M-f>\"] = actions.results_scrolling_left,\n      [\"<M-k>\"] = actions.results_scrolling_right,\n\n      [\"?\"] = actions.which_key,\n    },\n  }\n\n-- normal names are prefixed with telescope|\n-- encoded objects are prefixed with telescopej|\n---@param key_func table|fun()\n---@param opts table\n---@return string?\nlocal get_desc_for_keyfunc = function(key_func, opts)\n  if opts and opts.desc then\n    return \"telescope|\" .. opts.desc\n  end\n\n  if type(key_func) == \"table\" then\n    local name = \"\"\n    for _, action in ipairs(key_func) do\n      if type(action) == \"string\" then\n        name = name == \"\" and action or name .. \" + \" .. action\n      end\n    end\n    return \"telescope|\" .. name\n  elseif type(key_func) == \"function\" then\n    local info = debug.getinfo(key_func)\n    return \"telescopej|\" .. vim.json.encode { source = info.source, linedefined = info.linedefined }\n  end\nend\n\nlocal telescope_map = function(prompt_bufnr, mode, key_bind, key_func, opts)\n  if not key_func then\n    return\n  end\n\n  opts = opts or {}\n  if opts.noremap == nil then\n    opts.noremap = true\n  end\n  if opts.silent == nil then\n    opts.silent = true\n  end\n\n  if type(key_func) == \"string\" then\n    key_func = actions[key_func]\n  elseif type(key_func) == \"table\" then\n    if key_func.type == \"command\" then\n      vim.keymap.set(\n        mode,\n        key_bind,\n        key_func[1],\n        vim.tbl_extend(\"force\", opts or {\n          silent = true,\n        }, { buffer = prompt_bufnr })\n      )\n      return\n    elseif key_func.type == \"action_key\" then\n      key_func = actions[key_func[1]]\n    elseif key_func.type == \"action\" then\n      key_func = key_func[1]\n    end\n  end\n\n  vim.keymap.set(mode, key_bind, function()\n    local ret = key_func(prompt_bufnr)\n    api.nvim_exec_autocmds(\"User\", { pattern = \"TelescopeKeymap\" })\n    return ret\n  end, vim.tbl_extend(\"force\", opts, { buffer = prompt_bufnr, desc = get_desc_for_keyfunc(key_func, opts) }))\nend\n\nlocal extract_keymap_opts = function(key_func)\n  if type(key_func) == \"table\" and key_func.opts ~= nil then\n    -- we can't clear this because key_func could be a table from the config.\n    -- If we clear it the table ref would lose opts after the first bind\n    -- We need to copy it so noremap and silent won't be part of the table ref after the first bind\n    return vim.deepcopy(key_func.opts)\n  end\n  return {}\nend\n\nmappings.apply_keymap = function(prompt_bufnr, attach_mappings, buffer_keymap)\n  local applied_mappings = { n = {}, i = {} }\n\n  local map = function(modes, key_bind, key_func, opts)\n    if type(modes) == \"string\" then\n      modes = { modes }\n    end\n\n    for _, mode in pairs(modes) do\n      mode = string.lower(mode)\n      local key_bind_internal = api.nvim_replace_termcodes(key_bind, true, true, true)\n      applied_mappings[mode][key_bind_internal] = true\n\n      telescope_map(prompt_bufnr, mode, key_bind, key_func, opts)\n    end\n  end\n\n  if attach_mappings then\n    local attach_results = attach_mappings(prompt_bufnr, map)\n\n    if attach_results == nil then\n      error(\n        \"Attach mappings must always return a value. `true` means use default mappings, \"\n          .. \"`false` means only use attached mappings\"\n      )\n    end\n\n    if not attach_results then\n      return\n    end\n  end\n\n  for mode, mode_map in pairs(buffer_keymap or {}) do\n    mode = string.lower(mode)\n\n    for key_bind, key_func in pairs(mode_map) do\n      local key_bind_internal = api.nvim_replace_termcodes(key_bind, true, true, true)\n      if not applied_mappings[mode][key_bind_internal] then\n        applied_mappings[mode][key_bind_internal] = true\n        telescope_map(prompt_bufnr, mode, key_bind, key_func, extract_keymap_opts(key_func))\n      end\n    end\n  end\n\n  -- TODO: Probably should not overwrite any keymaps\n  for mode, mode_map in pairs(mappings.default_mappings) do\n    mode = string.lower(mode)\n\n    for key_bind, key_func in pairs(mode_map) do\n      local key_bind_internal = api.nvim_replace_termcodes(key_bind, true, true, true)\n      if not applied_mappings[mode][key_bind_internal] then\n        applied_mappings[mode][key_bind_internal] = true\n        telescope_map(prompt_bufnr, mode, key_bind, key_func, extract_keymap_opts(key_func))\n      end\n    end\n  end\nend\n\nreturn mappings\n"
  },
  {
    "path": "lua/telescope/operators.lua",
    "content": "local operators = {}\n\nlocal last_operator = { callback = function(_) end, opts = {} }\n\n--- Execute the last saved operator callback and options\noperators.operator_callback = function()\n  last_operator.callback(last_operator.opts)\nend\n\n--- Enters operator-pending mode, then executes callback.\n--- See `:h map-operator`\n---\n---@param callback function: the function to call after exiting operator-pending\n---@param opts table: options to pass to the callback\noperators.run_operator = function(callback, opts)\n  last_operator = { callback = callback, opts = opts }\n  vim.o.operatorfunc = \"v:lua.require'telescope.operators'.operator_callback\"\n  -- feed g@ to enter operator-pending mode\n  -- 'i' required for which-key compatibility, etc.\n  vim.api.nvim_feedkeys(\"g@\", \"mi\", false)\nend\n\nreturn operators\n"
  },
  {
    "path": "lua/telescope/pickers/entry_display.lua",
    "content": "---@tag telescope.pickers.entry_display\n\n---@brief [[\n--- Entry Display is used to format each entry shown in the result panel.\n---\n--- Entry Display create() will give us a function based on the configuration\n--- of column widths we pass into it. We then can use this function n times to\n--- return a string based on structured input.\n---\n--- Note that if you call `create()` inside `make_display` it will be called for\n--- every single entry. So it is suggested to do this outside of `make_display`\n--- for the best performance.\n---\n--- The create function will use the column widths passed to it in\n--- configuration.items. Each item in that table is the number of characters in\n--- the column. It's also possible for the final column to not have a fixed\n--- width, this will be shown in the configuration as 'remaining = true'.\n---\n--- An example of this configuration is shown for the buffers picker:\n--- <code>\n--- local displayer = entry_display.create {\n---   separator = \" \",\n---   items = {\n---     { width = opts.bufnr_width },\n---     { width = 4 },\n---     { width = icon_width },\n---     { remaining = true },\n---   },\n--- }\n--- </code>\n---\n--- This shows 4 columns, the first is defined in the opts as the width we'll\n--- use when display_string is the number of the buffer. The second has a fixed\n--- width of 4 and the third column's width will be decided by the width of the\n--- icons we use. The fourth column will use the remaining space. Finally, we\n--- have also defined the separator between each column will be the space \" \".\n---\n--- An example of how the display reference will be used is shown, again for\n--- the buffers picker:\n--- <code>\n--- return displayer {\n---   { entry.bufnr, \"TelescopeResultsNumber\" },\n---   { entry.indicator, \"TelescopeResultsComment\" },\n---   { icon, hl_group },\n---   display_bufname .. \":\" .. entry.lnum,\n--- }\n--- </code>\n---\n--- There are two types of values each column can have. Either a simple String\n--- or a table containing the String as well as the hl_group.\n---\n--- The displayer can return values, string and an optional highlights. The string\n--- is all the text to be displayed for this entry as a single string. If parts of\n--- the string are to be highlighted they will be described in the highlights\n--- table.\n---\n--- For a better understanding of how create() and displayer are used it's best to look\n--- at the code in make_entry.lua.\n---@brief ]]\n\nlocal strings = require \"plenary.strings\"\nlocal state = require \"telescope.state\"\nlocal resolve = require \"telescope.config.resolve\"\n\nlocal entry_display = {}\nentry_display.truncate = strings.truncate\n\nentry_display.create = function(configuration)\n  local generator = {}\n  for _, v in ipairs(configuration.items) do\n    if v.width then\n      local justify = v.right_justify\n      local width\n      table.insert(generator, function(item)\n        if width == nil then\n          local status = state.get_status(vim.F.if_nil(configuration.prompt_bufnr, vim.api.nvim_get_current_buf()))\n          local s = {}\n          s[1] = vim.api.nvim_win_get_width(status.layout.results.winid) - #status.picker.selection_caret\n          s[2] = vim.api.nvim_win_get_height(status.layout.results.winid)\n          width = resolve.resolve_width(v.width)(nil, s[1], s[2])\n        end\n        if type(item) == \"table\" then\n          return strings.align_str(entry_display.truncate(item[1], width), width, justify), item[2]\n        else\n          return strings.align_str(entry_display.truncate(item, width), width, justify)\n        end\n      end)\n    else\n      table.insert(generator, function(item)\n        if type(item) == \"table\" then\n          return item[1], item[2]\n        else\n          return item\n        end\n      end)\n    end\n  end\n\n  return function(self, picker)\n    local results = {}\n    local highlights = {}\n    for i = 1, #generator do\n      if self[i] ~= nil then\n        local str, hl = generator[i](self[i], picker)\n        if hl then\n          local hl_start = 0\n          for j = 1, (i - 1) do\n            hl_start = hl_start + #results[j] + (#configuration.separator or 1)\n          end\n          local hl_end = hl_start + #str:gsub(\"%s*$\", \"\")\n\n          if type(hl) == \"function\" then\n            for _, hl_res in ipairs(hl()) do\n              table.insert(highlights, { { hl_res[1][1] + hl_start, hl_res[1][2] + hl_start }, hl_res[2] })\n            end\n          else\n            table.insert(highlights, { { hl_start, hl_end }, hl })\n          end\n        end\n\n        table.insert(results, str)\n      end\n    end\n\n    if configuration.separator_hl then\n      local width = #configuration.separator or 1\n\n      local hl_start, hl_end\n      for _, v in ipairs(results) do\n        hl_start = (hl_end or 0) + #tostring(v)\n        hl_end = hl_start + width\n        table.insert(highlights, { { hl_start, hl_end }, configuration.separator_hl })\n      end\n    end\n\n    local final_str = table.concat(results, configuration.separator or \"│\")\n    if configuration.hl_chars then\n      for i = 1, #final_str do\n        local c = final_str:sub(i, i)\n        local hl = configuration.hl_chars[c]\n        if hl then\n          table.insert(highlights, { { i - 1, i }, hl })\n        end\n      end\n    end\n\n    return final_str, highlights\n  end\nend\n\nentry_display.resolve = function(self, entry)\n  local display, display_highlights\n  if type(entry.display) == \"function\" then\n    self:_increment \"display_fn\"\n    display, display_highlights = entry:display(self)\n\n    if type(display) == \"string\" then\n      return display, display_highlights\n    end\n  else\n    display = entry.display\n  end\n\n  if type(display) == \"string\" then\n    return display, display_highlights\n  end\nend\n\nreturn entry_display\n"
  },
  {
    "path": "lua/telescope/pickers/highlights.lua",
    "content": "local api = vim.api\nlocal log = require \"telescope.log\"\nlocal conf = require(\"telescope.config\").values\n\nlocal highlights = {}\n\nlocal ns_telescope_selection = api.nvim_create_namespace \"telescope_selection\"\nlocal ns_telescope_multiselection = api.nvim_create_namespace \"telescope_multiselection\"\nlocal ns_telescope_entry = api.nvim_create_namespace \"telescope_entry\"\n\n---TODO(clason): remove when dropping support for Nvim 0.10\nlocal hl = vim.hl or vim.highlight\n\nlocal Highlighter = {}\nHighlighter.__index = Highlighter\n\nfunction Highlighter:new(picker)\n  return setmetatable({\n    picker = picker,\n  }, self)\nend\n\nfunction Highlighter:hi_display(row, prefix, display_highlights)\n  -- This is the bug that made my highlight fixes not work.\n  -- We will leave the solution commented, so the test fails.\n  if not display_highlights or vim.tbl_isempty(display_highlights) then\n    return\n  end\n\n  local results_bufnr = assert(self.picker.results_bufnr, \"Must have a results bufnr\")\n\n  api.nvim_buf_clear_namespace(results_bufnr, ns_telescope_entry, row, row + 1)\n  local len_prefix = #prefix\n\n  for _, hl_block in ipairs(display_highlights) do\n    hl.range(\n      results_bufnr,\n      ns_telescope_entry,\n      hl_block[2],\n      { row, len_prefix + hl_block[1][1] },\n      { row, len_prefix + hl_block[1][2] }\n    )\n  end\nend\n\nfunction Highlighter:clear_display()\n  if\n    not self\n    or not self.picker\n    or not self.picker.results_bufnr\n    or not api.nvim_buf_is_valid(self.picker.results_bufnr)\n  then\n    return\n  end\n\n  api.nvim_buf_clear_namespace(self.picker.results_bufnr, ns_telescope_entry, 0, -1)\nend\n\nfunction Highlighter:hi_sorter(row, prompt, display)\n  local picker = self.picker\n  if not picker.sorter or not picker.sorter.highlighter then\n    return\n  end\n\n  local results_bufnr = assert(self.picker.results_bufnr, \"Must have a results bufnr\")\n  picker:highlight_one_row(results_bufnr, prompt, display, row)\nend\n\nfunction Highlighter:hi_selection(row, caret)\n  caret = vim.F.if_nil(caret, \"\")\n  local results_bufnr = assert(self.picker.results_bufnr, \"Must have a results bufnr\")\n\n  api.nvim_buf_clear_namespace(results_bufnr, ns_telescope_selection, 0, -1)\n  hl.range(results_bufnr, ns_telescope_selection, \"TelescopeSelectionCaret\", { row, 0 }, { row, #caret })\n\n  api.nvim_buf_set_extmark(\n    results_bufnr,\n    ns_telescope_selection,\n    row,\n    #caret,\n    { end_line = row + 1, hl_eol = conf.hl_result_eol, hl_group = \"TelescopeSelection\" }\n  )\nend\n\nfunction Highlighter:hi_multiselect(row, is_selected)\n  local results_bufnr = assert(self.picker.results_bufnr, \"Must have a results bufnr\")\n\n  if is_selected then\n    hl.range(results_bufnr, ns_telescope_multiselection, \"TelescopeMultiSelection\", { row, 0 }, { row, -1 })\n    if self.picker.multi_icon then\n      local line = api.nvim_buf_get_lines(results_bufnr, row, row + 1, false)[1]\n      local pos = line:find(self.picker.multi_icon)\n      if pos and pos <= math.max(#self.picker.selection_caret, #self.picker.entry_prefix) then\n        hl.range(\n          results_bufnr,\n          ns_telescope_multiselection,\n          \"TelescopeMultiIcon\",\n          { row, pos - 1 },\n          { row, pos - 1 + #self.picker.multi_icon }\n        )\n      end\n    end\n  else\n    local existing_marks = api.nvim_buf_get_extmarks(\n      results_bufnr,\n      ns_telescope_multiselection,\n      { row, 0 },\n      { row, -1 },\n      {}\n    )\n\n    -- This is still kind of weird to me, since it seems like I'm erasing stuff\n    -- when I shouldn't... Perhaps it's about the gravity of the extmark?\n    if #existing_marks > 0 then\n      log.trace(\"Clearing highlight multi select row: \", row)\n\n      api.nvim_buf_clear_namespace(results_bufnr, ns_telescope_multiselection, row, row + 1)\n    end\n  end\nend\n\nhighlights.new = function(...)\n  return Highlighter:new(...)\nend\n\nreturn highlights\n"
  },
  {
    "path": "lua/telescope/pickers/layout.lua",
    "content": "---@tag telescope.pickers.layout\n---@config { [\"module\"] = \"telescope.pickers.layout\" }\n\n---@brief [[\n--- The telescope pickers layout can be configured using the\n--- |telescope.defaults.create_layout| option.\n---\n--- Parameters: ~\n---   - picker : A Picker object.\n---\n--- Return: ~\n---   - layout : instance of `TelescopeLayout` class.\n---\n--- Example: ~\n--- <code>\n--- local Layout = require \"telescope.pickers.layout\"\n---\n--- require(\"telescope\").setup {\n---   create_layout = function(picker)\n---     local function create_window(enter, width, height, row, col, title)\n---       local bufnr = vim.api.nvim_create_buf(false, true)\n---       local winid = vim.api.nvim_open_win(bufnr, enter, {\n---         style = \"minimal\",\n---         relative = \"editor\",\n---         width = width,\n---         height = height,\n---         row = row,\n---         col = col,\n---         border = \"single\",\n---         title = title,\n---       })\n---\n---       vim.wo[winid].winhighlight = \"Normal:Normal\"\n---\n---       return Layout.Window {\n---         bufnr = bufnr,\n---         winid = winid,\n---       }\n---     end\n---\n---     local function destory_window(window)\n---       if window then\n---         if vim.api.nvim_win_is_valid(window.winid) then\n---           vim.api.nvim_win_close(window.winid, true)\n---         end\n---         if vim.api.nvim_buf_is_valid(window.bufnr) then\n---           vim.api.nvim_buf_delete(window.bufnr, { force = true })\n---         end\n---       end\n---     end\n---\n---     local layout = Layout {\n---       picker = picker,\n---       mount = function(self)\n---         self.results = create_window(false, 40, 20, 0, 0, \"Results\")\n---         self.preview = create_window(false, 40, 23, 0, 42, \"Preview\")\n---         self.prompt = create_window(true, 40, 1, 22, 0, \"Prompt\")\n---       end,\n---       unmount = function(self)\n---         destory_window(self.results)\n---         destory_window(self.preview)\n---         destory_window(self.prompt)\n---       end,\n---       update = function(self) end,\n---     }\n---\n---     return layout\n---   end,\n--- }\n--- </code>\n---@brief ]]\n\nlocal function wrap_instance(class, instance)\n  local self = instance\n  if not getmetatable(instance) then\n    self = setmetatable(instance, { __index = class })\n  end\n  return self\nend\n\n---@class TelescopeWindowBorder.config\n---@field bufnr integer\n---@field winid integer|nil\n---@field change_title nil|function: (self: TelescopeWindowBorder, title: string, pos?: \"NW\"|\"N\"|\"NE\"|\"SW\"|\"S\"|\"SE\"):nil\n\n---@param class TelescopeWindowBorder\n---@param config TelescopeWindowBorder.config\n---@return TelescopeWindowBorder\nlocal function init_border(class, config)\n  config = config or {}\n\n  ---@type TelescopeWindowBorder\n  local self = wrap_instance(class, config)\n  if not self.change_title then\n    self.change_title = class.change_title\n  end\n\n  return self\nend\n\n---@class TelescopeWindowBorder\n---@field bufnr integer|nil\n---@field winid integer|nil\nlocal Border = setmetatable({}, {\n  __call = init_border,\n  __name = \"TelescopeWindowBorder\",\n})\n\n---@param title string\n---@param pos \"NW\"|\"N\"|\"NE\"|\"SW\"|\"S\"|\"SE\"|nil\nfunction Border:change_title(title, pos) end\n\n---@class TelescopeWindow.config\n---@field bufnr integer\n---@field winid integer|nil\n---@field border TelescopeWindowBorder.config|nil\n\n---@param class TelescopeWindow\n---@param config TelescopeWindow.config\n---@return TelescopeWindow\nlocal function init_window(class, config)\n  config = config or {}\n\n  ---@type TelescopeWindow\n  local self = wrap_instance(class, config)\n  self.border = Border(config.border)\n\n  return self\nend\n\n---@class TelescopeWindow\n---@field border TelescopeWindowBorder\n---@field bufnr integer\n---@field winid integer\nlocal Window = setmetatable({}, {\n  __call = init_window,\n  __name = \"TelescopeWindow\",\n})\n\n---@class TelescopeLayout.config\n---@field mount function: (self: TelescopeLayout):nil\n---@field unmount function: (self: TelescopeLayout):nil\n---@field update function: (self: TelescopeLayout):nil\n---@field prompt TelescopeWindow|nil\n---@field results TelescopeWindow|nil\n---@field preview TelescopeWindow|nil\n\n---@param class TelescopeLayout\n---@param config TelescopeLayout.config\n---@return TelescopeLayout\nlocal function init_layout(class, config)\n  config = config or {}\n\n  ---@type TelescopeLayout\n  local self = wrap_instance(class, config)\n\n  assert(config.mount, \"missing layout:mount\")\n  assert(config.unmount, \"missing layout:unmount\")\n  assert(config.update, \"missing layout:update\")\n\n  return self\nend\n\n---@class TelescopeLayout\n---@field prompt TelescopeWindow\n---@field results TelescopeWindow\n---@field preview TelescopeWindow|nil\nlocal Layout = setmetatable({\n  Window = Window,\n}, {\n  __call = init_layout,\n  __name = \"TelescopeLayout\",\n})\n\n--- Create the layout.\n--- This needs to ensure the required properties are populated.\nfunction Layout:mount() end\n\n--- Destroy the layout.\n--- This is responsible for performing clean-up, for example:\n---  - deleting buffers\n---  - closing windows\n---  - clearing autocmds\nfunction Layout:unmount() end\n\n--- Refresh the layout.\n--- This is called when, for example, vim is resized.\nfunction Layout:update() end\n\n---@alias TelescopeWindow.constructor fun(config: TelescopeWindow.config): TelescopeWindow\n---@alias TelescopeLayout.constructor fun(config: TelescopeLayout.config): TelescopeLayout\n\nreturn Layout --[[@as TelescopeLayout.constructor|{ Window: TelescopeWindow.constructor }]]\n"
  },
  {
    "path": "lua/telescope/pickers/layout_strategies.lua",
    "content": "---@tag telescope.layout\n---@config { [\"module\"] = \"telescope.layout\" }\n\n---@brief [[\n--- The layout of telescope pickers can be adjusted using the\n--- |telescope.defaults.layout_strategy| and |telescope.defaults.layout_config| options.\n--- For example, the following configuration changes the default layout strategy and the\n--- default size of the picker:\n--- <code>\n---   require('telescope').setup{\n---     defaults = {\n---       layout_strategy = 'vertical',\n---       layout_config = { height = 0.95 },\n---     },\n---   }\n--- </code>\n---\n--- ────────────────────────────────────────────────────────────────────────────────\n---\n--- Layout strategies are different functions to position telescope.\n---\n--- All layout strategies are functions with the following signature:\n---\n--- <code>\n---   function(picker, columns, lines, layout_config)\n---     -- Do some calculations here...\n---     return {\n---       preview = preview_configuration\n---       results = results_configuration,\n---       prompt = prompt_configuration,\n---     }\n---   end\n--- </code>\n---\n--- <pre>\n---   Parameters: ~\n---     - picker        : A Picker object. (docs coming soon)\n---     - columns       : (number) Columns in the vim window\n---     - lines         : (number) Lines in the vim window\n---     - layout_config : (table) The configuration values specific to the picker.\n--- </pre>\n---\n--- This means you can create your own layout strategy if you want! Just be aware\n--- for now that we may change some APIs or interfaces, so they may break if you create\n--- your own.\n---\n--- A good method for creating your own would be to copy one of the strategies that most\n--- resembles what you want from \"./lua/telescope/pickers/layout_strategies.lua\" in the\n--- telescope repo.\n---\n---@brief ]]\n\nlocal api = vim.api\n\nlocal resolve = require \"telescope.config.resolve\"\nlocal p_window = require \"telescope.pickers.window\"\n\nlocal get_border_size = function(opts)\n  if opts.window.border == false then\n    return 0\n  end\n\n  return 1\nend\n\nlocal calc_tabline = function(max_lines)\n  local tbln = (vim.o.showtabline == 2) or (vim.o.showtabline == 1 and #api.nvim_list_tabpages() > 1)\n  if tbln then\n    max_lines = max_lines - 1\n  end\n  return max_lines, tbln\nend\n\n-- Helper function for capping over/undersized width/height, and calculating spacing\n--@param cur_size number: size to be capped\n--@param max_size any: the maximum size, e.g. max_lines or max_columns\n--@param bs number: the size of the border\n--@param w_num number: the maximum number of windows of the picker in the given direction\n--@param b_num number: the number of border rows/column in the given direction (when border enabled)\n--@param s_num number: the number of gaps in the given direction (when border disabled)\nlocal calc_size_and_spacing = function(cur_size, max_size, bs, w_num, b_num, s_num)\n  local spacing = s_num * (1 - bs) + b_num * bs\n  cur_size = math.min(cur_size, max_size)\n  cur_size = math.max(cur_size, w_num + spacing)\n  return cur_size, spacing\nend\n\nlocal layout_strategies = {}\nlayout_strategies._configurations = {}\n\n--@param strategy_config table: table with keys for each option for a strategy\n--@return table: table with keys for each option (for this strategy) and with keys for each layout_strategy\nlocal get_valid_configuration_keys = function(strategy_config)\n  local valid_configuration_keys = {\n    -- TEMP: There are a few keys we should say are valid to start with.\n    preview_cutoff = true,\n    prompt_position = true,\n  }\n\n  for key in pairs(strategy_config) do\n    valid_configuration_keys[key] = true\n  end\n\n  for name in pairs(layout_strategies) do\n    valid_configuration_keys[name] = true\n  end\n\n  return valid_configuration_keys\nend\n\nlocal adjust_pos = function(pos, ...)\n  for _, opts in ipairs { ... } do\n    opts.col = opts.col and opts.col + pos[1]\n    opts.line = opts.line and opts.line + pos[2]\n  end\nend\n\n--@param strategy_name string: the name of the layout_strategy we are validating for\n--@param configuration table: table with keys for each option available\n--@param values table: table containing all of the non-default options we want to set\n--@param default_layout_config table: table with the default values to configure layouts\n--@return table: table containing the combined options (defaults and non-defaults)\nlocal function validate_layout_config(strategy_name, configuration, values, default_layout_config)\n  assert(strategy_name, \"It is required to have a strategy name for validation.\")\n  local valid_configuration_keys = get_valid_configuration_keys(configuration)\n\n  -- If no default_layout_config provided, check Telescope's config values\n  default_layout_config = vim.F.if_nil(default_layout_config, require(\"telescope.config\").values.layout_config)\n\n  local result = {}\n  local get_value = function(k)\n    -- skip \"private\" items\n    if string.sub(k, 1, 1) == \"_\" then\n      return\n    end\n\n    local val\n    -- Prioritise options that are specific to this strategy\n    if values[strategy_name] ~= nil and values[strategy_name][k] ~= nil then\n      val = values[strategy_name][k]\n    end\n\n    -- Handle nested layout config values\n    if layout_strategies[k] and strategy_name ~= k and type(val) == \"table\" then\n      val = vim.tbl_deep_extend(\"force\", default_layout_config[k], val)\n    end\n\n    if val == nil and values[k] ~= nil then\n      val = values[k]\n    end\n\n    if val == nil then\n      if default_layout_config[strategy_name] ~= nil and default_layout_config[strategy_name][k] ~= nil then\n        val = default_layout_config[strategy_name][k]\n      else\n        val = default_layout_config[k]\n      end\n    end\n\n    return val\n  end\n\n  -- Always set the values passed first.\n  for k in pairs(values) do\n    if not valid_configuration_keys[k] then\n      error(\n        string.format(\n          \"Unsupported layout_config key for the %s strategy: %s\\n%s\",\n          strategy_name,\n          k,\n          vim.inspect(values)\n        )\n      )\n    end\n\n    result[k] = get_value(k)\n  end\n\n  -- And then set other valid keys via \"inheritance\" style extension\n  for k in pairs(valid_configuration_keys) do\n    if result[k] == nil then\n      result[k] = get_value(k)\n    end\n  end\n\n  return result\nend\n\n-- List of options that are shared by more than one layout.\nlocal shared_options = {\n  width = { \"How wide to make Telescope's entire layout\", \"See |resolver.resolve_width()|\" },\n  height = { \"How tall to make Telescope's entire layout\", \"See |resolver.resolve_height()|\" },\n  mirror = \"Flip the location of the results/prompt and preview windows\",\n  scroll_speed = \"The number of lines to scroll through the previewer\",\n  prompt_position = { \"Where to place prompt window.\", \"Available Values: 'bottom', 'top'\" },\n  anchor = { \"Which edge/corner to pin the picker to\", \"See |resolver.resolve_anchor_pos()|\" },\n  anchor_padding = {\n    \"Specifies an amount of additional padding around the anchor\",\n    \"Values should be a positive integer\",\n  },\n}\n\n-- Used for generating vim help documentation.\nlayout_strategies._format = function(name)\n  local strategy_config = layout_strategies._configurations[name]\n  if vim.tbl_isempty(strategy_config) then\n    return {}\n  end\n\n  local results = { \"<pre>\", \"`picker.layout_config` shared options:\" }\n\n  local strategy_keys = vim.tbl_keys(strategy_config)\n  table.sort(strategy_keys, function(a, b)\n    return a < b\n  end)\n\n  local add_value = function(k, val)\n    if type(val) == \"string\" then\n      table.insert(results, string.format(\"  - %s: %s\", k, val))\n    elseif type(val) == \"table\" then\n      table.insert(results, string.format(\"  - %s:\", k))\n      for _, line in ipairs(val) do\n        table.insert(results, string.format(\"    - %s\", line))\n      end\n    else\n      error(string.format(\"expected string or table but found '%s'\", type(val)))\n    end\n  end\n\n  for _, k in ipairs(strategy_keys) do\n    if shared_options[k] then\n      add_value(k, strategy_config[k])\n    end\n  end\n\n  table.insert(results, \"\")\n  table.insert(results, \"`picker.layout_config` unique options:\")\n\n  for _, k in ipairs(strategy_keys) do\n    if not shared_options[k] then\n      add_value(k, strategy_config[k])\n    end\n  end\n\n  table.insert(results, \"</pre>\")\n  return results\nend\n\n--@param name string: the name to be assigned to the layout\n--@param layout_config table: table where keys are the available options for the layout\n--@param layout function: function with signature\n--          function(self, max_columns, max_lines, layout_config): table\n--        the returned table is the sizing and location information for the parts of the picker\n--@retun function: wrapped function that inputs a validated layout_config into the `layout` function\nlocal function make_documented_layout(name, layout_config, layout)\n  -- Save configuration data to be used by documentation\n  layout_strategies._configurations[name] = layout_config\n\n  -- Return new function that always validates configuration\n  return function(self, max_columns, max_lines, override_layout)\n    return layout(\n      self,\n      max_columns,\n      max_lines,\n      validate_layout_config(\n        name,\n        layout_config,\n        vim.tbl_deep_extend(\"keep\", vim.F.if_nil(override_layout, {}), vim.F.if_nil(self.layout_config, {}))\n      )\n    )\n  end\nend\n\n--- Horizontal layout has two columns, one for the preview\n--- and one for the prompt and results.\n---\n--- <pre>\n--- ┌──────────────────────────────────────────────────┐\n--- │                                                  │\n--- │    ┌───────────────────┐┌───────────────────┐    │\n--- │    │                   ││                   │    │\n--- │    │                   ││                   │    │\n--- │    │                   ││                   │    │\n--- │    │      Results      ││                   │    │\n--- │    │                   ││      Preview      │    │\n--- │    │                   ││                   │    │\n--- │    │                   ││                   │    │\n--- │    └───────────────────┘│                   │    │\n--- │    ┌───────────────────┐│                   │    │\n--- │    │      Prompt       ││                   │    │\n--- │    └───────────────────┘└───────────────────┘    │\n--- │                                                  │\n--- └──────────────────────────────────────────────────┘\n--- </pre>\n---@eval { [\"description\"] = require('telescope.pickers.layout_strategies')._format(\"horizontal\") }\n---\nlayout_strategies.horizontal = make_documented_layout(\n  \"horizontal\",\n  vim.tbl_extend(\"error\", shared_options, {\n    preview_width = { \"Change the width of Telescope's preview window\", \"See |resolver.resolve_width()|\" },\n    preview_cutoff = \"When columns are less than this value, the preview will be disabled\",\n  }),\n  function(self, max_columns, max_lines, layout_config)\n    local initial_options = p_window.get_initial_window_options(self)\n    local preview = initial_options.preview\n    local results = initial_options.results\n    local prompt = initial_options.prompt\n\n    local tbln\n    max_lines, tbln = calc_tabline(max_lines)\n\n    local width_opt = layout_config.width\n    local width = resolve.resolve_width(width_opt)(self, max_columns, max_lines)\n\n    local height_opt = layout_config.height\n    local height = resolve.resolve_height(height_opt)(self, max_columns, max_lines)\n\n    local bs = get_border_size(self)\n\n    local w_space\n    if self.previewer and max_columns >= layout_config.preview_cutoff then\n      -- Cap over/undersized width (with previewer)\n      width, w_space = calc_size_and_spacing(width, max_columns, bs, 2, 4, 1)\n\n      preview.width = resolve.resolve_width(vim.F.if_nil(layout_config.preview_width, function(_, cols)\n        if cols < 150 then\n          return math.floor(cols * 0.4)\n        elseif cols < 200 then\n          return 80\n        else\n          return 120\n        end\n      end))(self, width, max_lines)\n\n      results.width = width - preview.width - w_space\n      prompt.width = results.width\n    else\n      -- Cap over/undersized width (without previewer)\n      width, w_space = calc_size_and_spacing(width, max_columns, bs, 1, 2, 0)\n\n      preview.width = 0\n      results.width = width - preview.width - w_space\n      prompt.width = results.width\n    end\n\n    local h_space\n    -- Cap over/undersized height\n    height, h_space = calc_size_and_spacing(height, max_lines, bs, 2, 4, 1)\n\n    prompt.height = 1\n    results.height = height - prompt.height - h_space\n\n    if self.previewer then\n      preview.height = height - 2 * bs\n    else\n      preview.height = 0\n    end\n\n    local width_padding = math.floor((max_columns - width) / 2)\n    -- Default value is false, to use the normal horizontal layout\n    if not layout_config.mirror then\n      results.col = width_padding + bs + 1\n      prompt.col = results.col\n      preview.col = results.col + results.width + 1 + bs\n    else\n      preview.col = width_padding + bs + 1\n      prompt.col = preview.col + preview.width + 1 + bs\n      results.col = preview.col + preview.width + 1 + bs\n    end\n\n    preview.line = math.floor((max_lines - height) / 2) + bs + 1\n    if layout_config.prompt_position == \"top\" then\n      prompt.line = preview.line\n      results.line = prompt.line + prompt.height + 1 + bs\n    elseif layout_config.prompt_position == \"bottom\" then\n      results.line = preview.line\n      prompt.line = results.line + results.height + 1 + bs\n    else\n      error(string.format(\"Unknown prompt_position: %s\\n%s\", self.window.prompt_position, vim.inspect(layout_config)))\n    end\n\n    local anchor = layout_config.anchor or \"\"\n    local anchor_padding = layout_config.anchor_padding or 1\n\n    local anchor_pos = resolve.resolve_anchor_pos(anchor, width, height, max_columns, max_lines, anchor_padding)\n    adjust_pos(anchor_pos, prompt, results, preview)\n\n    if tbln then\n      prompt.line = prompt.line + 1\n      results.line = results.line + 1\n      preview.line = preview.line + 1\n    end\n\n    return {\n      preview = self.previewer and preview.width > 0 and preview,\n      results = results,\n      prompt = prompt,\n    }\n  end\n)\n\n--- Centered layout with a combined block of the prompt\n--- and results aligned to the middle of the screen.\n--- The preview window is then placed in the remaining\n--- space above or below, according to `anchor` or `mirror`.\n--- Particularly useful for creating dropdown menus\n--- (see |telescope.themes| and |themes.get_dropdown()|).\n---\n--- Note that vertical anchoring, i.e. `anchor` containing\n--- `\"N\"` or `\"S\"`, will override `mirror` config. For `\"N\"`\n--- anchoring preview will be placed below prompt/result\n--- block. For `\"S\"` anchoring preview will be placed above\n--- prompt/result block. For horizontal only anchoring preview\n--- will be placed according to `mirror` config, default is\n--- above the prompt/result block.\n---\n--- <pre>\n--- ┌──────────────────────────────────────────────────┐\n--- │    ┌────────────────────────────────────────┐    │\n--- │    │                 Preview                │    │\n--- │    │                 Preview                │    │\n--- │    └────────────────────────────────────────┘    │\n--- │    ┌────────────────────────────────────────┐    │\n--- │    │                 Prompt                 │    │\n--- │    ├────────────────────────────────────────┤    │\n--- │    │                 Result                 │    │\n--- │    │                 Result                 │    │\n--- │    └────────────────────────────────────────┘    │\n--- │                                                  │\n--- │                                                  │\n--- │                                                  │\n--- │                                                  │\n--- └──────────────────────────────────────────────────┘\n--- </pre>\n---@eval { [\"description\"] = require(\"telescope.pickers.layout_strategies\")._format(\"center\") }\n---\nlayout_strategies.center = make_documented_layout(\n  \"center\",\n  vim.tbl_extend(\"error\", shared_options, {\n    preview_cutoff = \"When lines are less than this value, the preview will be disabled\",\n  }),\n  function(self, max_columns, max_lines, layout_config)\n    local initial_options = p_window.get_initial_window_options(self)\n    local preview = initial_options.preview\n    local results = initial_options.results\n    local prompt = initial_options.prompt\n\n    local tbln\n    max_lines, tbln = calc_tabline(max_lines)\n\n    -- This sets the width for the whole layout\n    local width_opt = layout_config.width\n    local width = resolve.resolve_width(width_opt)(self, max_columns, max_lines)\n\n    -- This sets the height for the whole layout\n    local height_opt = layout_config.height\n    local height = resolve.resolve_height(height_opt)(self, max_columns, max_lines)\n\n    local bs = get_border_size(self)\n\n    local w_space\n    -- Cap over/undersized width\n    width, w_space = calc_size_and_spacing(width, max_columns, bs, 1, 2, 0)\n\n    prompt.width = width - w_space\n    results.width = width - w_space\n    preview.width = width - w_space\n\n    local h_space\n    -- Cap over/undersized height\n    height, h_space = calc_size_and_spacing(height, max_lines, bs, 2, 3, 0)\n\n    prompt.height = 1\n    results.height = height - prompt.height - h_space\n\n    local topline = math.floor((max_lines / 2) - ((results.height + (2 * bs)) / 2) + 1)\n    -- Align the prompt and results so halfway up the screen is\n    -- in the middle of this combined block\n    if layout_config.prompt_position == \"top\" then\n      prompt.line = topline\n      results.line = prompt.line + 1 + bs\n    elseif layout_config.prompt_position == \"bottom\" then\n      results.line = topline\n      prompt.line = results.line + results.height + bs\n      if type(prompt.title) == \"string\" then\n        prompt.title = { { pos = \"S\", text = prompt.title } }\n      end\n    else\n      error(string.format(\"Unknown prompt_position: %s\\n%s\", self.window.prompt_position, vim.inspect(layout_config)))\n    end\n\n    local width_padding = math.floor((max_columns - width) / 2) + bs + 1\n    results.col, preview.col, prompt.col = width_padding, width_padding, width_padding\n\n    local anchor = layout_config.anchor or \"\"\n    local anchor_padding = layout_config.anchor_padding or 1\n\n    local anchor_pos = resolve.resolve_anchor_pos(anchor, width, height, max_columns, max_lines, anchor_padding)\n    adjust_pos(anchor_pos, prompt, results, preview)\n\n    -- Vertical anchoring (S or N variations) ignores layout_config.mirror\n    anchor = anchor:upper()\n    local mirror\n    if anchor:find \"S\" then\n      mirror = false\n    elseif anchor:find \"N\" then\n      mirror = true\n    else\n      mirror = layout_config.mirror\n    end\n\n    -- Set preview position\n    local block_line = math.min(results.line, prompt.line)\n    if not mirror then -- Preview at top\n      preview.line = 1 + bs\n      preview.height = block_line - (2 + 2 * bs)\n    else -- Preview at bottom\n      preview.line = block_line + results.height + 2 + 2 * bs\n      preview.height = max_lines - preview.line - bs + 1\n    end\n\n    if not (self.previewer and max_lines >= layout_config.preview_cutoff) then\n      preview.height = 0\n    end\n\n    if tbln then\n      prompt.line = prompt.line + 1\n      results.line = results.line + 1\n      preview.line = preview.line + 1\n    end\n\n    return {\n      preview = self.previewer and preview.height > 0 and preview,\n      results = results,\n      prompt = prompt,\n    }\n  end\n)\n\n--- Cursor layout dynamically positioned below the cursor if possible.\n--- If there is no place below the cursor it will be placed above.\n---\n--- <pre>\n--- ┌──────────────────────────────────────────────────┐\n--- │                                                  │\n--- │   █                                              │\n--- │   ┌──────────────┐┌─────────────────────┐        │\n--- │   │    Prompt    ││      Preview        │        │\n--- │   ├──────────────┤│      Preview        │        │\n--- │   │    Result    ││      Preview        │        │\n--- │   │    Result    ││      Preview        │        │\n--- │   └──────────────┘└─────────────────────┘        │\n--- │                                         █        │\n--- │                                                  │\n--- │                                                  │\n--- │                                                  │\n--- │                                                  │\n--- │                                                  │\n--- └──────────────────────────────────────────────────┘\n--- </pre>\n---@eval { [\"description\"] = require(\"telescope.pickers.layout_strategies\")._format(\"cursor\") }\nlayout_strategies.cursor = make_documented_layout(\n  \"cursor\",\n  vim.tbl_extend(\"error\", {\n    width = shared_options.width,\n    height = shared_options.height,\n    scroll_speed = shared_options.scroll_speed,\n  }, {\n    preview_width = { \"Change the width of Telescope's preview window\", \"See |resolver.resolve_width()|\" },\n    preview_cutoff = \"When columns are less than this value, the preview will be disabled\",\n  }),\n  function(self, max_columns, max_lines, layout_config)\n    local initial_options = p_window.get_initial_window_options(self)\n    local preview = initial_options.preview\n    local results = initial_options.results\n    local prompt = initial_options.prompt\n    local winid = self.original_win_id\n\n    local height_opt = layout_config.height\n    local height = resolve.resolve_height(height_opt)(self, max_columns, max_lines)\n\n    local width_opt = layout_config.width\n    local width = resolve.resolve_width(width_opt)(self, max_columns, max_lines)\n\n    local bs = get_border_size(self)\n\n    local h_space\n    -- Cap over/undersized height\n    height, h_space = calc_size_and_spacing(height, max_lines, bs, 2, 3, 0)\n\n    prompt.height = 1\n    results.height = height - prompt.height - h_space\n    preview.height = height - 2 * bs\n\n    local w_space\n    if self.previewer and max_columns >= layout_config.preview_cutoff then\n      -- Cap over/undersized width (with preview)\n      width, w_space = calc_size_and_spacing(width, max_columns, bs, 2, 4, 0)\n\n      preview.width = resolve.resolve_width(vim.F.if_nil(layout_config.preview_width, 2 / 3))(self, width, max_lines)\n      prompt.width = width - preview.width - w_space\n      results.width = prompt.width\n    else\n      -- Cap over/undersized width (without preview)\n      width, w_space = calc_size_and_spacing(width, max_columns, bs, 1, 2, 0)\n\n      preview.width = 0\n      prompt.width = width - w_space\n      results.width = prompt.width\n    end\n\n    local position = api.nvim_win_get_position(winid)\n    local winbar = (function()\n      if vim.fn.exists \"&winbar\" == 1 then\n        return vim.wo[winid].winbar == \"\" and 0 or 1\n      end\n      return 0\n    end)()\n    local top_left = {\n      line = api.nvim_win_call(winid, vim.fn.winline) + position[1] + bs + winbar,\n      col = api.nvim_win_call(winid, vim.fn.wincol) + position[2],\n    }\n    local bot_right = {\n      line = top_left.line + height - 1,\n      col = top_left.col + width - 1,\n    }\n\n    if bot_right.line > max_lines then\n      -- position above current line\n      top_left.line = top_left.line - height - 1\n    end\n    if bot_right.col >= max_columns then\n      -- cap to the right of the screen\n      top_left.col = max_columns - width\n    end\n\n    prompt.line = top_left.line + 1\n    results.line = prompt.line + bs + 1\n    preview.line = prompt.line\n\n    prompt.col = top_left.col + 1\n    results.col = prompt.col\n    preview.col = results.col + (bs * 2) + results.width\n\n    return {\n      preview = self.previewer and preview.width > 0 and preview,\n      results = results,\n      prompt = prompt,\n    }\n  end\n)\n\n--- Vertical layout stacks the items on top of each other.\n--- Particularly useful with thinner windows.\n---\n--- <pre>\n--- ┌──────────────────────────────────────────────────┐\n--- │                                                  │\n--- │    ┌────────────────────────────────────────┐    │\n--- │    │                 Preview                │    │\n--- │    │                 Preview                │    │\n--- │    │                 Preview                │    │\n--- │    └────────────────────────────────────────┘    │\n--- │    ┌────────────────────────────────────────┐    │\n--- │    │                 Result                 │    │\n--- │    │                 Result                 │    │\n--- │    └────────────────────────────────────────┘    │\n--- │    ┌────────────────────────────────────────┐    │\n--- │    │                 Prompt                 │    │\n--- │    └────────────────────────────────────────┘    │\n--- │                                                  │\n--- └──────────────────────────────────────────────────┘\n--- </pre>\n---@eval { [\"description\"] = require(\"telescope.pickers.layout_strategies\")._format(\"vertical\") }\n---\nlayout_strategies.vertical = make_documented_layout(\n  \"vertical\",\n  vim.tbl_extend(\"error\", shared_options, {\n    preview_cutoff = \"When lines are less than this value, the preview will be disabled\",\n    preview_height = { \"Change the height of Telescope's preview window\", \"See |resolver.resolve_height()|\" },\n  }),\n  function(self, max_columns, max_lines, layout_config)\n    local initial_options = p_window.get_initial_window_options(self)\n    local preview = initial_options.preview\n    local results = initial_options.results\n    local prompt = initial_options.prompt\n\n    local tbln\n    max_lines, tbln = calc_tabline(max_lines)\n\n    local width_opt = layout_config.width\n    local width = resolve.resolve_width(width_opt)(self, max_columns, max_lines)\n\n    local height_opt = layout_config.height\n    local height = resolve.resolve_height(height_opt)(self, max_columns, max_lines)\n\n    local bs = get_border_size(self)\n\n    local w_space\n    -- Cap over/undersized width\n    width, w_space = calc_size_and_spacing(width, max_columns, bs, 1, 2, 0)\n\n    prompt.width = width - w_space\n    results.width = prompt.width\n    preview.width = prompt.width\n\n    local h_space\n    if self.previewer and max_lines >= layout_config.preview_cutoff then\n      -- Cap over/undersized height (with previewer)\n      height, h_space = calc_size_and_spacing(height, max_lines, bs, 3, 6, 2)\n\n      preview.height =\n        resolve.resolve_height(vim.F.if_nil(layout_config.preview_height, 0.5))(self, max_columns, height)\n    else\n      -- Cap over/undersized height (without previewer)\n      height, h_space = calc_size_and_spacing(height, max_lines, bs, 2, 4, 1)\n\n      preview.height = 0\n    end\n    prompt.height = 1\n    results.height = height - preview.height - prompt.height - h_space\n\n    local width_padding = math.floor((max_columns - width) / 2) + bs + 1\n    results.col, preview.col, prompt.col = width_padding, width_padding, width_padding\n\n    local height_padding = math.floor((max_lines - height) / 2)\n    if not layout_config.mirror then\n      preview.line = height_padding + (1 + bs)\n      if layout_config.prompt_position == \"top\" then\n        prompt.line = (preview.height == 0) and preview.line or preview.line + preview.height + (1 + bs)\n        results.line = prompt.line + prompt.height + (1 + bs)\n      elseif layout_config.prompt_position == \"bottom\" then\n        results.line = (preview.height == 0) and preview.line or preview.line + preview.height + (1 + bs)\n        prompt.line = results.line + results.height + (1 + bs)\n      else\n        error(string.format(\"Unknown prompt_position: %s\\n%s\", self.window.prompt_position, vim.inspect(layout_config)))\n      end\n    else\n      if layout_config.prompt_position == \"top\" then\n        prompt.line = height_padding + (1 + bs)\n        results.line = prompt.line + prompt.height + (1 + bs)\n        preview.line = results.line + results.height + (1 + bs)\n      elseif layout_config.prompt_position == \"bottom\" then\n        results.line = height_padding + (1 + bs)\n        prompt.line = results.line + results.height + (1 + bs)\n        preview.line = prompt.line + prompt.height + (1 + bs)\n      else\n        error(string.format(\"Unknown prompt_position: %s\\n%s\", self.window.prompt_position, vim.inspect(layout_config)))\n      end\n    end\n\n    local anchor = layout_config.anchor or \"\"\n    local anchor_padding = layout_config.anchor_padding or 1\n\n    local anchor_pos = resolve.resolve_anchor_pos(anchor, width, height, max_columns, max_lines, anchor_padding)\n    adjust_pos(anchor_pos, prompt, results, preview)\n\n    if tbln then\n      prompt.line = prompt.line + 1\n      results.line = results.line + 1\n      preview.line = preview.line + 1\n    end\n\n    return {\n      preview = self.previewer and preview.height > 0 and preview,\n      results = results,\n      prompt = prompt,\n    }\n  end\n)\n\n--- Flex layout swaps between `horizontal` and `vertical` strategies based on the window width\n---  -  Supports |layout_strategies.vertical| or |layout_strategies.horizontal| features\n---\n---@eval { [\"description\"] = require(\"telescope.pickers.layout_strategies\")._format(\"flex\") }\n---\nlayout_strategies.flex = make_documented_layout(\n  \"flex\",\n  vim.tbl_extend(\"error\", shared_options, {\n    flip_columns = \"The number of columns required to move to horizontal mode\",\n    flip_lines = \"The number of lines required to move to horizontal mode\",\n    vertical = \"Options to pass when switching to vertical layout\",\n    horizontal = \"Options to pass when switching to horizontal layout\",\n  }),\n  function(self, max_columns, max_lines, layout_config)\n    local flip_columns = vim.F.if_nil(layout_config.flip_columns, layout_config.horizontal.preview_cutoff)\n    local flip_lines = vim.F.if_nil(layout_config.flip_lines, layout_config.vertical.preview_cutoff)\n\n    if max_columns < flip_columns and max_lines >= flip_lines then\n      self.__flex_strategy = \"vertical\"\n      self.layout_config.flip_columns = nil\n      self.layout_config.flip_lines = nil\n      return layout_strategies.vertical(self, max_columns, max_lines, layout_config.vertical)\n    else\n      self.__flex_strategy = \"horizontal\"\n      self.layout_config.flip_columns = nil\n      self.layout_config.flip_lines = nil\n      return layout_strategies.horizontal(self, max_columns, max_lines, layout_config.horizontal)\n    end\n  end\n)\n\nlayout_strategies.current_buffer = make_documented_layout(\"current_buffer\", {\n  -- No custom options.\n  -- height, width ignored\n}, function(self, _, _, _)\n  local initial_options = p_window.get_initial_window_options(self)\n\n  local window_width = api.nvim_win_get_width(0)\n  local window_height = api.nvim_win_get_height(0)\n\n  local preview = initial_options.preview\n  local results = initial_options.results\n  local prompt = initial_options.prompt\n\n  local bs = get_border_size(self)\n\n  -- Width\n  local width_padding = (1 + bs) -- TODO(l-kershaw): make this configurable\n\n  prompt.width = window_width - 2 * width_padding\n  results.width = prompt.width\n  preview.width = prompt.width\n\n  -- Height\n  local height_padding = (1 + bs) -- TODO(l-kershaw): make this configurable\n\n  prompt.height = 1\n  if self.previewer then\n    results.height = 10 -- TODO(l-kershaw): make this configurable\n    preview.height = window_height - results.height - prompt.height - 2 * (1 + bs) - 2 * height_padding\n  else\n    results.height = window_height - prompt.height - (1 + bs) - 2 * height_padding\n    preview.height = 0\n  end\n\n  local win_position = api.nvim_win_get_position(0)\n\n  local line = win_position[1]\n  if self.previewer then\n    preview.line = height_padding + line + 1\n    results.line = preview.line + preview.height + (1 + bs)\n    prompt.line = results.line + results.height + (1 + bs)\n  else\n    results.line = height_padding + line + 1\n    prompt.line = results.line + results.height + (1 + bs)\n  end\n\n  local col = win_position[2] + width_padding + 1\n  preview.col, results.col, prompt.col = col, col, col\n\n  return {\n    preview = preview.height > 0 and preview,\n    results = results,\n    prompt = prompt,\n  }\nend)\n\n--- Bottom pane can be used to create layouts similar to \"ivy\".\n---\n--- For an easy ivy configuration, see |themes.get_ivy()|\nlayout_strategies.bottom_pane = make_documented_layout(\n  \"bottom_pane\",\n  vim.tbl_extend(\"error\", shared_options, {\n    preview_width = { \"Change the width of Telescope's preview window\", \"See |resolver.resolve_width()|\" },\n    preview_cutoff = \"When columns are less than this value, the preview will be disabled\",\n  }),\n  function(self, max_columns, max_lines, layout_config)\n    local initial_options = p_window.get_initial_window_options(self)\n    local results = initial_options.results\n    local prompt = initial_options.prompt\n    local preview = initial_options.preview\n\n    local tbln\n    max_lines, tbln = calc_tabline(max_lines)\n\n    local height = vim.F.if_nil(resolve.resolve_height(layout_config.height)(self, max_columns, max_lines), 25)\n    if type(layout_config.height) == \"table\" and type(layout_config.height.padding) == \"number\" then\n      -- Since bottom_pane only has padding at the top, we only need half as much padding in total\n      -- This doesn't match the vim help for `resolve.resolve_height`, but it matches expectations\n      height = math.floor((max_lines + height) / 2)\n    end\n\n    local bs = get_border_size(self)\n\n    -- Cap over/undersized height\n    height, _ = calc_size_and_spacing(height, max_lines, bs, 2, 3, 0)\n\n    -- Height\n    prompt.height = 1\n    results.height = height - prompt.height - (2 * bs)\n    preview.height = results.height - bs\n\n    -- Width\n    prompt.width = max_columns - 2 * bs\n    if self.previewer and max_columns >= layout_config.preview_cutoff then\n      -- Cap over/undersized width (with preview)\n      local width, w_space = calc_size_and_spacing(max_columns, max_columns, bs, 2, 4, 0)\n\n      preview.width = resolve.resolve_width(vim.F.if_nil(layout_config.preview_width, 0.5))(self, width, max_lines)\n      results.width = width - preview.width - w_space\n    else\n      results.width = prompt.width\n      preview.width = 0\n    end\n\n    -- Line\n    if layout_config.prompt_position == \"top\" then\n      prompt.line = max_lines - results.height - (1 + bs) + 1\n      results.line = prompt.line + 1\n      preview.line = results.line + bs\n      if results.border == true then\n        results.border = { 0, 1, 1, 1 }\n      end\n      if type(results.title) == \"string\" then\n        results.title = { { pos = \"S\", text = results.title } }\n      end\n      if type(preview.title) == \"string\" then\n        preview.title = { { pos = \"S\", text = preview.title } }\n      end\n    elseif layout_config.prompt_position == \"bottom\" then\n      results.line = max_lines - results.height - (1 + bs) + 1\n      preview.line = results.line\n      prompt.line = max_lines - bs\n      if type(prompt.title) == \"string\" then\n        prompt.title = { { pos = \"S\", text = prompt.title } }\n      end\n      if results.border == true then\n        results.border = { 1, 1, 0, 1 }\n      end\n    else\n      error(string.format(\"Unknown prompt_position: %s\\n%s\", self.window.prompt_position, vim.inspect(layout_config)))\n    end\n\n    -- Col\n    prompt.col = 0 -- centered\n    if layout_config.mirror and preview.width > 0 then\n      results.col = preview.width + (3 * bs) + 1\n      preview.col = bs + 1\n    else\n      results.col = bs + 1\n      preview.col = results.width + (3 * bs) + 1\n    end\n\n    if tbln then\n      prompt.line = prompt.line + 1\n      results.line = results.line + 1\n      preview.line = preview.line + 1\n    end\n\n    return {\n      preview = self.previewer and preview.width > 0 and preview,\n      prompt = prompt,\n      results = results,\n    }\n  end\n)\n\nlayout_strategies._validate_layout_config = validate_layout_config\n\nreturn layout_strategies\n"
  },
  {
    "path": "lua/telescope/pickers/multi.lua",
    "content": "local MultiSelect = {}\nMultiSelect.__index = MultiSelect\n\nfunction MultiSelect:new()\n  return setmetatable({\n    _entries = {},\n  }, MultiSelect)\nend\n\nfunction MultiSelect:get()\n  local marked_entries = {}\n  for entry, count in pairs(self._entries) do\n    table.insert(marked_entries, { count, entry })\n  end\n\n  table.sort(marked_entries, function(left, right)\n    return left[1] < right[1]\n  end)\n\n  local selections = {}\n  for _, entry in ipairs(marked_entries) do\n    table.insert(selections, entry[2])\n  end\n\n  return selections\nend\n\nfunction MultiSelect:is_selected(entry)\n  return self._entries[entry]\nend\n\nlocal multi_select_count = 0\nfunction MultiSelect:add(entry)\n  multi_select_count = multi_select_count + 1\n  self._entries[entry] = multi_select_count\nend\n\nfunction MultiSelect:drop(entry)\n  self._entries[entry] = nil\nend\n\nfunction MultiSelect:toggle(entry)\n  if self:is_selected(entry) then\n    self:drop(entry)\n  else\n    self:add(entry)\n  end\nend\n\nreturn MultiSelect\n"
  },
  {
    "path": "lua/telescope/pickers/scroller.lua",
    "content": "local scroller = {}\n\nlocal range_calculators = {\n  ascending = function(max_results, num_results)\n    return 0, math.min(max_results, num_results)\n  end,\n\n  descending = function(max_results, num_results)\n    return math.max(max_results - num_results, 0), max_results\n  end,\n}\n\nlocal scroll_calculators = {\n  cycle = function(range_fn)\n    return function(max_results, num_results, row)\n      local start, finish = range_fn(max_results, num_results)\n\n      if row >= finish then\n        return start\n      elseif row < start then\n        return (finish - 1 < 0) and finish or finish - 1\n      end\n\n      return row\n    end\n  end,\n\n  limit = function(range_fn)\n    return function(max_results, num_results, row)\n      local start, finish = range_fn(max_results, num_results)\n\n      if row >= finish and finish > 0 then\n        return finish - 1\n      elseif row < start then\n        return start\n      end\n\n      return row\n    end\n  end,\n}\n\nscroller.create = function(scroll_strategy, sorting_strategy)\n  local range_fn = range_calculators[sorting_strategy]\n  if not range_fn then\n    error(debug.traceback(\"Unknown sorting strategy: \" .. sorting_strategy))\n  end\n\n  local scroll_fn = scroll_calculators[scroll_strategy]\n  if not scroll_fn then\n    error(debug.traceback(\"Unknown scroll strategy: \" .. (scroll_strategy or \"\")))\n  end\n\n  local calculator = scroll_fn(range_fn)\n  return function(max_results, num_results, row)\n    local result = calculator(max_results, num_results, row)\n\n    if result < 0 then\n      error(\n        string.format(\n          \"Must never return a negative row: { result = %s, args = { %s %s %s } }\",\n          result,\n          max_results,\n          num_results,\n          row\n        )\n      )\n    end\n\n    if result > max_results then\n      error(\n        string.format(\n          \"Must never exceed max results: { result = %s, args = { %s %s %s } }\",\n          result,\n          max_results,\n          num_results,\n          row\n        )\n      )\n    end\n\n    return result\n  end\nend\n\nscroller.top = function(sorting_strategy, max_results, num_results)\n  if sorting_strategy == \"ascending\" then\n    return 0\n  end\n  return (num_results > max_results) and 0 or (max_results - num_results)\nend\n\nscroller.middle = function(sorting_strategy, max_results, num_results)\n  local mid_pos\n\n  if sorting_strategy == \"ascending\" then\n    mid_pos = math.floor(num_results / 2)\n  else\n    mid_pos = math.floor(max_results - num_results / 2)\n  end\n\n  return (num_results < max_results) and mid_pos or math.floor(max_results / 2)\nend\n\nscroller.bottom = function(sorting_strategy, max_results, num_results)\n  if sorting_strategy == \"ascending\" then\n    return math.min(max_results, num_results) - 1\n  end\n  return max_results - 1\nend\n\nscroller.better = function(sorting_strategy)\n  if sorting_strategy == \"ascending\" then\n    return -1\n  else\n    return 1\n  end\nend\n\nscroller.worse = function(sorting_strategy)\n  return -(scroller.better(sorting_strategy))\nend\n\nreturn scroller\n"
  },
  {
    "path": "lua/telescope/pickers/window.lua",
    "content": "local resolve = require \"telescope.config.resolve\"\n\nlocal p_window = {}\n\nfunction p_window.get_window_options(picker, max_columns, max_lines)\n  local layout_strategy = picker.layout_strategy\n  local getter = require(\"telescope.pickers.layout_strategies\")[layout_strategy]\n\n  if not getter then\n    error(string.format(\"'%s' is not a valid layout strategy\", layout_strategy))\n  end\n\n  return getter(picker, max_columns, max_lines)\nend\n\nfunction p_window.get_initial_window_options(picker)\n  local popup_border = resolve.win_option(picker.window.border)\n  local popup_borderchars = resolve.win_option(picker.window.borderchars)\n\n  local preview = {\n    title = picker.preview_title,\n    border = popup_border.preview,\n    borderchars = popup_borderchars.preview,\n    enter = false,\n    highlight = false,\n  }\n\n  local results = {\n    title = picker.results_title,\n    border = popup_border.results,\n    borderchars = popup_borderchars.results,\n    enter = false,\n  }\n\n  local prompt = {\n    title = picker.prompt_title,\n    border = popup_border.prompt,\n    borderchars = popup_borderchars.prompt,\n    enter = true,\n  }\n\n  return {\n    preview = preview,\n    results = results,\n    prompt = prompt,\n  }\nend\n\nreturn p_window\n"
  },
  {
    "path": "lua/telescope/pickers.lua",
    "content": "require \"telescope\"\n\nlocal api = vim.api\n\nlocal async = require \"plenary.async\"\nlocal await_schedule = async.util.scheduler\nlocal channel = require(\"plenary.async.control\").channel\nlocal popup = require \"plenary.popup\"\n\nlocal actions = require \"telescope.actions\"\nlocal config = require \"telescope.config\"\nlocal debounce = require \"telescope.debounce\"\nlocal log = require \"telescope.log\"\nlocal mappings = require \"telescope.mappings\"\nlocal state = require \"telescope.state\"\nlocal utils = require \"telescope.utils\"\n\nlocal entry_display = require \"telescope.pickers.entry_display\"\nlocal p_highlighter = require \"telescope.pickers.highlights\"\nlocal p_scroller = require \"telescope.pickers.scroller\"\nlocal p_window = require \"telescope.pickers.window\"\nlocal Layout = require \"telescope.pickers.layout\"\n\nlocal EntryManager = require \"telescope.entry_manager\"\nlocal MultiSelect = require \"telescope.pickers.multi\"\n\nlocal truncate = require(\"plenary.strings\").truncate\nlocal strdisplaywidth = require(\"plenary.strings\").strdisplaywidth\n\nlocal ns_telescope_matching = api.nvim_create_namespace \"telescope_matching\"\nlocal ns_telescope_prompt = api.nvim_create_namespace \"telescope_prompt\"\nlocal ns_telescope_prompt_prefix = api.nvim_create_namespace \"telescope_prompt_prefix\"\n\n---@class telescope_popup_options\n---@field border table<1|2|3|4, integer>\n---@field borderchars table<1|2|3|4|5|6|7|8, string>\n---@field borderhighlight string\n---@field col integer\n---@field enter boolean\n---@field height integer\n---@field highlight string\n---@field line integer\n---@field minheight integer\n---@field title integer\n---@field titlehighlight integer\n---@field width integer\n\n-- Create three windows:\n-- 1. Prompt window\n-- 2. Options window\n-- 3. Preview window\n--\n---@param picker Picker\nlocal function default_create_layout(picker)\n  local function make_border(border)\n    if not border then\n      return nil\n    end\n    border.winid = border.win_id\n    return border\n  end\n\n  local layout = Layout {\n    picker = picker,\n    ---@param self TelescopeLayout\n    mount = function(self)\n      local line_count = vim.o.lines - vim.o.cmdheight\n      if vim.o.laststatus ~= 0 then\n        line_count = line_count - 1\n      end\n\n      local popup_opts = picker:get_window_options(vim.o.columns, line_count)\n\n      -- `popup.nvim` massaging so people don't have to remember minheight shenanigans\n      popup_opts.results.focusable = true\n      popup_opts.results.minheight = popup_opts.results.height\n      popup_opts.results.highlight = \"TelescopeResultsNormal\"\n      popup_opts.results.borderhighlight = \"TelescopeResultsBorder\"\n      popup_opts.results.titlehighlight = \"TelescopeResultsTitle\"\n      popup_opts.prompt.minheight = popup_opts.prompt.height\n      popup_opts.prompt.highlight = \"TelescopePromptNormal\"\n      popup_opts.prompt.borderhighlight = \"TelescopePromptBorder\"\n      popup_opts.prompt.titlehighlight = \"TelescopePromptTitle\"\n\n      if popup_opts.preview then\n        popup_opts.preview.focusable = true\n        popup_opts.preview.minheight = popup_opts.preview.height\n        popup_opts.preview.highlight = \"TelescopePreviewNormal\"\n        popup_opts.preview.borderhighlight = \"TelescopePreviewBorder\"\n        popup_opts.preview.titlehighlight = \"TelescopePreviewTitle\"\n      end\n\n      local results_win, results_opts = picker:_create_window(\"\", popup_opts.results)\n      local results_bufnr = api.nvim_win_get_buf(results_win)\n\n      self.results = Layout.Window {\n        winid = results_win,\n        bufnr = results_bufnr,\n        border = make_border(results_opts.border),\n      }\n\n      if popup_opts.preview then\n        local preview_win, preview_opts = picker:_create_window(\"\", popup_opts.preview)\n        local preview_bufnr = api.nvim_win_get_buf(preview_win)\n\n        self.preview = Layout.Window {\n          winid = preview_win,\n          bufnr = preview_bufnr,\n          border = make_border(preview_opts.border),\n        }\n      end\n\n      local prompt_win, prompt_opts = picker:_create_window(\"\", popup_opts.prompt)\n      local prompt_bufnr = api.nvim_win_get_buf(prompt_win)\n\n      self.prompt = Layout.Window {\n        winid = prompt_win,\n        bufnr = prompt_bufnr,\n        border = make_border(prompt_opts.border),\n      }\n    end,\n    ---@param self TelescopeLayout\n    unmount = function(self)\n      utils.win_delete(\"results_win\", self.results.winid, true, true)\n      if self.preview then\n        utils.win_delete(\"preview_win\", self.preview.winid, true, true)\n      end\n\n      utils.win_delete(\"prompt_border_win\", self.prompt.border.winid, true, true)\n      utils.win_delete(\"results_border_win\", self.results.border.winid, true, true)\n      if self.preview then\n        utils.win_delete(\"preview_border_win\", self.preview.border.winid, true, true)\n      end\n\n      -- we cant use win_delete. We first need to close and then delete the buffer\n      if api.nvim_win_is_valid(self.prompt.winid) then\n        api.nvim_win_close(self.prompt.winid, true)\n      end\n      vim.schedule(function()\n        utils.buf_delete(self.prompt.bufnr)\n      end)\n    end,\n    ---@param self TelescopeLayout\n    update = function(self)\n      local line_count = vim.o.lines - vim.o.cmdheight\n      if vim.o.laststatus ~= 0 then\n        line_count = line_count - 1\n      end\n\n      local popup_opts = picker:get_window_options(vim.o.columns, line_count)\n      -- `popup.nvim` massaging so people don't have to remember minheight shenanigans\n      popup_opts.results.minheight = popup_opts.results.height\n      popup_opts.prompt.minheight = popup_opts.prompt.height\n      if popup_opts.preview then\n        popup_opts.preview.minheight = popup_opts.preview.height\n      end\n\n      local prompt_win = self.prompt.winid\n      local results_win = self.results.winid\n      local preview_win = self.preview and self.preview.winid\n\n      local preview_opts\n      if popup_opts.preview then\n        if preview_win ~= nil then\n          -- Move all popups at the same time\n          popup.move(prompt_win, popup_opts.prompt)\n          popup.move(results_win, popup_opts.results)\n          popup.move(preview_win, popup_opts.preview)\n        else\n          popup_opts.preview.focusable = true\n          popup_opts.preview.highlight = \"TelescopePreviewNormal\"\n          popup_opts.preview.borderhighlight = \"TelescopePreviewBorder\"\n          popup_opts.preview.titlehighlight = \"TelescopePreviewTitle\"\n          local preview_bufnr = (self.preview and self.preview.bufnr ~= nil)\n              and api.nvim_buf_is_valid(self.preview.bufnr)\n              and self.preview.bufnr\n            or \"\"\n          preview_win, preview_opts = picker:_create_window(preview_bufnr, popup_opts.preview)\n          if preview_bufnr == \"\" then\n            preview_bufnr = api.nvim_win_get_buf(preview_win)\n          end\n          self.preview = Layout.Window {\n            winid = preview_win,\n            bufnr = preview_bufnr,\n            border = make_border(preview_opts.border),\n          }\n          if picker.previewer and picker.previewer.state and picker.previewer.state.winid then\n            picker.previewer.state.winid = preview_win\n          end\n\n          -- Move prompt and results after preview created\n          vim.defer_fn(function()\n            popup.move(prompt_win, popup_opts.prompt)\n            popup.move(results_win, popup_opts.results)\n          end, 0)\n        end\n      elseif preview_win ~= nil then\n        popup.move(prompt_win, popup_opts.prompt)\n        popup.move(results_win, popup_opts.results)\n\n        -- Remove preview after the prompt and results are moved\n        vim.defer_fn(function()\n          utils.win_delete(\"preview_win\", preview_win, true)\n          utils.win_delete(\"preview_win\", self.preview.border.winid, true)\n          self.preview = nil\n        end, 0)\n      else\n        popup.move(prompt_win, popup_opts.prompt)\n        popup.move(results_win, popup_opts.results)\n      end\n    end,\n  }\n\n  return layout\nend\n\nlocal pickers = {}\n\n-- TODO: Add overscroll option for results buffer\n\n---@class Picker\n--- Picker is the main UI that shows up to interact w/ your results.\n-- Takes a filter & a previewer\nlocal Picker = {}\nPicker.__index = Picker\n\n--- Create new picker\nfunction Picker:new(opts)\n  opts = opts or {}\n\n  if opts.layout_strategy and opts.get_window_options then\n    error \"layout_strategy and get_window_options are not compatible keys\"\n  end\n\n  if vim.fn.win_gettype() == \"command\" then\n    error \"Can't open telescope from command-line window. See E11\"\n  end\n\n  -- We need to clear at the beginning not on close because after close we can still have select:post\n  -- etc ...\n  require(\"telescope.actions.mt\").clear_all()\n  -- TODO(conni2461): This seems like the better solution but it won't clear actions that were never mapped\n  -- for _, v in ipairs(keymap_store[prompt_bufnr]) do\n  --   pcall(v.clear)\n  -- end\n\n  local layout_strategy = vim.F.if_nil(opts.layout_strategy, config.values.layout_strategy)\n  local winblend =\n    vim.F.if_nil(opts.winblend, type(opts.window) == \"table\" and opts.window.winblend or config.values.winblend)\n  if type(winblend) == \"function\" then\n    winblend = winblend()\n  end\n\n  local obj = setmetatable({\n    prompt_title = vim.F.if_nil(opts.prompt_title, config.values.prompt_title),\n    results_title = vim.F.if_nil(opts.results_title, config.values.results_title),\n    -- either whats passed in by the user or whats defined by the previewer\n    preview_title = opts.preview_title,\n\n    prompt_prefix = vim.F.if_nil(opts.prompt_prefix, config.values.prompt_prefix),\n    wrap_results = vim.F.if_nil(opts.wrap_results, config.values.wrap_results),\n    selection_caret = vim.F.if_nil(opts.selection_caret, config.values.selection_caret),\n    entry_prefix = vim.F.if_nil(opts.entry_prefix, config.values.entry_prefix),\n    multi_icon = vim.F.if_nil(opts.multi_icon, config.values.multi_icon),\n\n    initial_mode = vim.F.if_nil(opts.initial_mode, config.values.initial_mode),\n    _original_mode = api.nvim_get_mode().mode,\n    debounce = vim.F.if_nil(tonumber(opts.debounce), nil),\n\n    _finder_attached = true,\n    default_text = opts.default_text,\n    get_status_text = vim.F.if_nil(opts.get_status_text, config.values.get_status_text),\n    _on_input_filter_cb = opts.on_input_filter_cb or function() end,\n\n    finder = assert(opts.finder, \"Finder is required.\"),\n    sorter = opts.sorter or require(\"telescope.sorters\").empty(),\n\n    all_previewers = opts.previewer,\n    current_previewer_index = opts.current_previewer_index or 1,\n\n    default_selection_index = opts.default_selection_index,\n\n    get_selection_window = vim.F.if_nil(opts.get_selection_window, config.values.get_selection_window),\n\n    cwd = opts.cwd,\n\n    _find_id = 0,\n    _completion_callbacks = type(opts._completion_callbacks) == \"table\" and opts._completion_callbacks or {},\n    manager = (type(opts.manager) == \"table\" and getmetatable(opts.manager) == EntryManager) and opts.manager,\n    _multi = (type(opts._multi) == \"table\" and getmetatable(opts._multi) == getmetatable(MultiSelect:new()))\n        and opts._multi\n      or MultiSelect:new(),\n\n    track = vim.F.if_nil(opts.track, false),\n    stats = {},\n\n    attach_mappings = opts.attach_mappings,\n    file_ignore_patterns = vim.F.if_nil(opts.file_ignore_patterns, config.values.file_ignore_patterns),\n\n    scroll_strategy = vim.F.if_nil(opts.scroll_strategy, config.values.scroll_strategy),\n    sorting_strategy = vim.F.if_nil(opts.sorting_strategy, config.values.sorting_strategy),\n    tiebreak = vim.F.if_nil(opts.tiebreak, config.values.tiebreak),\n    selection_strategy = vim.F.if_nil(opts.selection_strategy, config.values.selection_strategy),\n\n    push_cursor_on_edit = vim.F.if_nil(opts.push_cursor_on_edit, false),\n    push_tagstack_on_edit = vim.F.if_nil(opts.push_tagstack_on_edit, false),\n\n    layout_strategy = layout_strategy,\n    layout_config = config.smarter_depth_2_extend(opts.layout_config or {}, config.values.layout_config or {}),\n\n    __cycle_layout_list = vim.F.if_nil(opts.cycle_layout_list, config.values.cycle_layout_list),\n\n    window = {\n      winblend = winblend,\n      border = vim.F.if_nil(opts.border, type(opts.window) == \"table\" and opts.window.border or config.values.border),\n      borderchars = vim.F.if_nil(\n        opts.borderchars,\n        type(opts.window) == \"table\" and opts.window.borderchars or config.values.borderchars\n      ),\n    },\n\n    cache_picker = config.resolve_table_opts(opts.cache_picker, vim.deepcopy(config.values.cache_picker)),\n\n    __scrolling_limit = tonumber(vim.F.if_nil(opts.temp__scrolling_limit, 250)),\n\n    __locations_input = vim.F.if_nil(opts.__locations_input, false),\n  }, self)\n\n  obj.create_layout = opts.create_layout or config.values.create_layout or default_create_layout\n  obj.get_window_options = opts.get_window_options or p_window.get_window_options\n\n  if obj.all_previewers ~= nil and obj.all_previewers ~= false then\n    if obj.all_previewers[1] == nil then\n      obj.all_previewers = { obj.all_previewers }\n    end\n    obj.previewer = obj.all_previewers[obj.current_previewer_index]\n    if\n      obj.preview_title == nil\n      or #obj.all_previewers > 1\n      or opts.resumed_picker and opts.fix_preview_title ~= true\n    then\n      obj.preview_title = obj.previewer:title(nil, config.values.dynamic_preview_title)\n    else\n      obj.fix_preview_title = true\n    end\n  else\n    obj.previewer = false\n  end\n\n  local __hide_previewer = opts.__hide_previewer\n  if __hide_previewer then\n    obj.hidden_previewer = obj.previewer\n    obj.previewer = nil\n  else\n    obj.hidden_previewer = nil\n  end\n\n  -- TODO: It's annoying that this is create and everything else is \"new\"\n  obj.scroller = p_scroller.create(obj.scroll_strategy, obj.sorting_strategy)\n\n  obj.highlighter = p_highlighter.new(obj)\n\n  if opts.on_complete then\n    for _, on_complete_item in ipairs(opts.on_complete) do\n      obj:register_completion_callback(on_complete_item)\n    end\n  end\n\n  return obj\nend\n\n--- Take an index and get a row.\n---@note: Rows are 0-indexed, and `index` is 1 indexed (table index)\n---@param index number: the index in line_manager\n---@return number: the row for the picker to display in\nfunction Picker:get_row(index)\n  if self.sorting_strategy == \"ascending\" then\n    return index - 1\n  else\n    return self.max_results - index\n  end\nend\n\n--- Take a row and get an index\n---@note: Rows are 0-indexed, and `index` is 1 indexed (table index)\n---@param row number: The row being displayed\n---@return number: The index in line_manager\nfunction Picker:get_index(row)\n  if self.sorting_strategy == \"ascending\" then\n    return row + 1\n  else\n    return self.max_results - row\n  end\nend\n\n--- Get the row number of the \"best\" entry\n---@return number: the number of the \"reset\" row\nfunction Picker:get_reset_row()\n  if self.sorting_strategy == \"ascending\" then\n    return 0\n  else\n    return self.max_results - 1\n  end\nend\n\n--- Check if the picker is no longer in use\n---@return boolean|nil: `true` if picker is closed, `nil` otherwise\nfunction Picker:is_done()\n  if not self.manager then\n    return true\n  end\nend\n\n--- Clear rows that are after the final remaining entry\n---@note: useful when number of remaining results is narrowed down\n---@param results_bufnr number: the buffer number of the results buffer\nfunction Picker:clear_extra_rows(results_bufnr)\n  if self:is_done() then\n    log.trace \"Not clearing due to being already complete\"\n    return\n  end\n\n  if not api.nvim_buf_is_valid(results_bufnr) then\n    log.debug(\"Invalid results_bufnr for clearing:\", results_bufnr)\n    return\n  end\n\n  local worst_line, ok, msg\n  if self.sorting_strategy == \"ascending\" then\n    local num_results = self.manager:num_results()\n    worst_line = math.min(num_results, self.max_results)\n    ok, msg = pcall(api.nvim_buf_set_lines, results_bufnr, worst_line, -1, false, {})\n  else\n    worst_line = self:get_row(self.manager:num_results())\n    if worst_line <= 0 then\n      return\n    end\n\n    local empty_lines = utils.repeated_table(worst_line, \"\")\n    ok, msg = pcall(api.nvim_buf_set_lines, results_bufnr, 0, worst_line, false, empty_lines)\n  end\n\n  if not ok then\n    log.debug(\"Failed to set lines:\", msg)\n  end\n\n  log.trace(\"Clearing:\", worst_line)\nend\n\n--- Highlight the entry corresponding to the given row\n---@param results_bufnr number: the buffer number of the results buffer\n---@param prompt table: table with information about the prompt buffer\n---@param display string: the text corresponding to the given row\n---@param row number: the number of the chosen row\nfunction Picker:highlight_one_row(results_bufnr, prompt, display, row)\n  if not self.sorter.highlighter then\n    return\n  end\n\n  local highlights = self.sorter:highlighter(prompt, display)\n\n  if highlights then\n    for _, hl in ipairs(highlights) do\n      local highlight, start, finish\n      if type(hl) == \"table\" then\n        highlight = hl.highlight or \"TelescopeMatching\"\n        start = hl.start\n        finish = hl.finish or hl.start\n      elseif type(hl) == \"number\" then\n        highlight = \"TelescopeMatching\"\n        start = hl\n        finish = hl\n      else\n        error \"Invalid higlighter fn\"\n      end\n\n      self:_increment \"highlights\"\n\n      utils.hl_range(results_bufnr, ns_telescope_matching, highlight, { row, start - 1 }, { row, finish })\n    end\n  end\n\n  local entry = self.manager:get_entry(self:get_index(row))\n  self.highlighter:hi_multiselect(row, self:is_multi_selected(entry))\nend\n\n--- Check if the given row number can be selected\n---@param row number: the number of the chosen row in the results buffer\n---@return boolean\nfunction Picker:can_select_row(row)\n  if self.sorting_strategy == \"ascending\" then\n    return row <= self.manager:num_results() and row < self.max_results\n  else\n    return row >= 0 and row <= self.max_results and row >= self.max_results - self.manager:num_results()\n  end\nend\n\n--TODO: document what `find_id` is for\nfunction Picker:_next_find_id()\n  local find_id = self._find_id + 1\n  self._find_id = find_id\n\n  return find_id\nend\n\n--- A helper function for creating each of the windows in a picker\n---@param bufnr number: the buffer number to be used in the window\n---@param popup_opts table: options to pass to `popup.create`\nfunction Picker:_create_window(bufnr, popup_opts)\n  local what = bufnr or \"\"\n  local win, opts = popup.create(what, popup_opts)\n\n  vim.wo[win].winblend = self.window.winblend\n  local border_win = opts and opts.border and opts.border.win_id\n  if border_win then\n    vim.wo[border_win].winblend = self.window.winblend\n  end\n  return win, opts, border_win\nend\n\n--- Opens the given picker for the user to interact with\n---@note: this is the main function for pickers, as it actually creates the interface for users\nfunction Picker:find()\n  self:close_existing_pickers()\n  self:reset_selection()\n\n  self.__original_mousemoveevent = vim.o.mousemoveevent\n  vim.o.mousemoveevent = true\n\n  self.original_bufnr = api.nvim_get_current_buf()\n  self.original_win_id = api.nvim_get_current_win()\n  self.original_tabpage = api.nvim_get_current_tabpage()\n  _, self.original_cword = pcall(vim.fn.expand, \"<cword>\")\n  _, self.original_cWORD = pcall(vim.fn.expand, \"<cWORD>\")\n  _, self.original_cfile = pcall(vim.fn.expand, \"<cfile>\")\n  _, self.original_cline = pcall(api.nvim_get_current_line)\n  _, self.original_cline = pcall(vim.trim, self.original_cline)\n\n  -- User autocmd run it before create Telescope window\n  api.nvim_exec_autocmds(\"User\", { pattern = \"TelescopeFindPre\" })\n\n  local layout = self:create_layout()\n  layout:mount()\n\n  self.layout = layout\n  self.prompt_win, self.prompt_bufnr, self.prompt_border =\n    layout.prompt.winid, layout.prompt.bufnr, layout.prompt.border\n  self.results_win, self.results_bufnr, self.results_border =\n    layout.results.winid, layout.results.bufnr, layout.results.border\n  if layout.preview then\n    self.preview_win, self.preview_bufnr, self.preview_border =\n      layout.preview.winid, layout.preview.bufnr, layout.preview.border\n  else\n    self.preview_win, self.preview_bufnr, self.preview_border = nil, nil, nil\n  end\n\n  pcall(api.nvim_set_option_value, \"tabstop\", 1, { buf = self.results_bufnr }) -- #1834\n  pcall(api.nvim_set_option_value, \"tabstop\", 1, { buf = self.prompt_bufnr }) -- #1834\n  vim.bo[self.prompt_bufnr].buftype = \"prompt\"\n  vim.wo[self.results_win].wrap = self.wrap_results\n  vim.wo[self.prompt_win].wrap = true\n  if self.preview_win then\n    vim.wo[self.preview_win].wrap = true\n  end\n\n  -- Prompt prefix\n  local prompt_prefix = self.prompt_prefix\n  vim.fn.prompt_setprompt(self.prompt_bufnr, prompt_prefix)\n  self:_reset_prefix_color()\n\n  -- TODO: This could be configurable in the future, but I don't know why you would\n  -- want to scroll through more than 10,000 items.\n  --\n  -- This just lets us stop doing stuff after tons of  things.\n  self.max_results = self.__scrolling_limit\n\n  api.nvim_buf_set_lines(self.results_bufnr, 0, self.max_results, false, utils.repeated_table(self.max_results, \"\"))\n\n  local status_updater = self:get_status_updater(self.prompt_win, self.prompt_bufnr)\n  local debounced_status = debounce.throttle_leading(status_updater, 50)\n\n  local tx, rx = channel.mpsc()\n  self._on_lines = tx.send\n\n  local find_id = self:_next_find_id()\n\n  if self.default_text then\n    self:set_prompt(self.default_text)\n  end\n\n  if vim.tbl_contains({ \"insert\", \"normal\" }, self.initial_mode) then\n    local mode = vim.fn.mode()\n    local keys\n    if self.initial_mode == \"normal\" then\n      -- n: A<ESC> makes sure cursor is at always at end of prompt w/o default_text\n      keys = mode ~= \"n\" and \"<ESC>A<ESC>\" or \"A<ESC>\"\n    else\n      -- always fully retrigger insert mode: required for going from one picker to next\n      keys = mode ~= \"n\" and \"<ESC>A\" or \"A\"\n    end\n    api.nvim_feedkeys(api.nvim_replace_termcodes(keys, true, false, true), \"ni\", true)\n  else\n    utils.notify(\"pickers.find\", {\n      msg = \"`initial_mode` should be one of ['normal', 'insert'] but passed \" .. self.initial_mode,\n      level = \"ERROR\",\n    })\n  end\n\n  local main_loop = async.void(function()\n    self.sorter:_init()\n\n    -- Do filetype last, so that users can register at the last second.\n    pcall(api.nvim_set_option_value, \"filetype\", \"TelescopePrompt\", { buf = self.prompt_bufnr })\n    pcall(api.nvim_set_option_value, \"filetype\", \"TelescopeResults\", { buf = self.results_bufnr })\n\n    await_schedule()\n\n    while true do\n      -- Wait for the next input\n      rx.last()\n      await_schedule()\n\n      self:_reset_track()\n\n      if not api.nvim_buf_is_valid(self.prompt_bufnr) then\n        log.debug(\"ON_LINES: Invalid prompt_bufnr\", self.prompt_bufnr)\n        return\n      end\n\n      -- we kinda always wanna reset the color, because of `cc` and `dd` commands,\n      -- which also delete the prefix and after prefix deletion we need to reapply highlighting\n      self:_reset_prefix_color()\n\n      local start_time = vim.uv.hrtime()\n\n      local prompt = self:_get_next_filtered_prompt()\n      state.set_global_key(\"current_line\", prompt)\n\n      if self.__locations_input == true then\n        local filename, line_number, column_number = utils.__separate_file_path_location(prompt)\n\n        if line_number or column_number then\n          state.set_global_key(\"prompt_location\", { row = line_number, col = column_number })\n        elseif state.get_global_key \"prompt_location\" then\n          state.set_global_key(\"prompt_location\", nil)\n        end\n\n        -- it is important to continue behaving as if there is no location in prompt\n        prompt = filename\n      elseif state.get_global_key \"prompt_location\" then\n        -- in case new picker that does not support locations is opened clear the location\n        state.set_global_key(\"prompt_location\", nil)\n      end\n\n      -- TODO: Entry manager should have a \"bulk\" setter. This can prevent a lot of redraws from display\n      if self.cache_picker == false or self.cache_picker.is_cached ~= true then\n        self.sorter:_start(prompt)\n        self.manager = EntryManager:new(self.max_results, self.entry_adder, self.stats)\n\n        self:_reset_highlights()\n        local process_result = self:get_result_processor(find_id, prompt, debounced_status)\n        local process_complete = self:get_result_completor(self.results_bufnr, find_id, prompt, status_updater)\n\n        local ok, msg = pcall(function()\n          self.finder(prompt, process_result, process_complete)\n        end)\n\n        if not ok then\n          log.warn(\"Finder failed with msg: \", msg)\n        end\n\n        local diff_time = (vim.uv.hrtime() - start_time) / 1e6\n        if self.debounce and diff_time < self.debounce then\n          async.util.sleep(self.debounce - diff_time)\n        end\n      else\n        -- TODO(scroll): This can only happen once, I don't like where it is.\n        self:_resume_picker()\n      end\n    end\n  end)\n\n  -- Register attach\n  api.nvim_buf_attach(self.prompt_bufnr, false, {\n    on_lines = function(...)\n      if self._finder_attached then\n        find_id = self:_next_find_id()\n\n        status_updater { completed = false }\n        self._on_lines(...)\n      end\n    end,\n\n    on_detach = function()\n      self:_detach()\n    end,\n  })\n\n  api.nvim_create_augroup(\"PickerInsert\", {})\n  -- TODO: Use WinLeave as well?\n  api.nvim_create_autocmd(\"BufLeave\", {\n    buffer = self.prompt_bufnr,\n    group = \"PickerInsert\",\n    nested = true,\n    once = true,\n    callback = function()\n      require(\"telescope.pickers\").on_close_prompt(self.prompt_bufnr)\n    end,\n  })\n  api.nvim_create_autocmd(\"VimResized\", {\n    buffer = self.prompt_bufnr,\n    group = \"PickerInsert\",\n    nested = true,\n    callback = function()\n      require(\"telescope.pickers\").on_resize_window(self.prompt_bufnr)\n    end,\n  })\n\n  state.set_status(\n    self.prompt_bufnr,\n    setmetatable({\n      layout = layout,\n      picker = self,\n\n      -- compatibility\n      prompt_bufnr = self.prompt_bufnr,\n      prompt_win = self.prompt_win,\n      prompt_border_win = self.prompt_border.winid,\n      results_bufnr = self.results_bufnr,\n      results_win = self.results_win,\n      results_border_win = self.results_border.winid,\n      preview_bufnr = self.preview_bufnr,\n      preview_win = self.preview_win,\n      preview_border_win = self.preview_border and self.preview_border.winid,\n    }, {\n      __mode = \"kv\",\n    })\n  )\n\n  mappings.apply_keymap(self.prompt_bufnr, self.attach_mappings, config.values.mappings)\n\n  tx.send()\n  main_loop()\nend\n\n--- A helper function to update picker windows when layout options are changed\nfunction Picker:recalculate_layout()\n  local status = state.get_status(self.prompt_bufnr)\n\n  status.layout:update()\n\n  local layout = status.layout\n  self.prompt_win, self.prompt_bufnr, self.prompt_border =\n    layout.prompt.winid, layout.prompt.bufnr, layout.prompt.border\n  self.results_win, self.results_bufnr, self.results_border =\n    layout.results.winid, layout.results.bufnr, layout.results.border\n  if layout.preview then\n    self.preview_win, self.preview_bufnr, self.preview_border =\n      layout.preview.winid, layout.preview.bufnr, layout.preview.border\n  else\n    self.preview_win, self.preview_bufnr, self.preview_border = nil, nil, nil\n  end\n\n  -- Temporarily disabled: Draw the screen ASAP. This makes things feel speedier.\n  -- vim.cmd [[redraw]]\n\n  -- self.max_results = popup_opts.results.height\nend\n\nlocal update_scroll = function(win, oldinfo, oldcursor, strategy, buf_maxline)\n  if strategy == \"ascending\" then\n    api.nvim_win_set_cursor(win, { buf_maxline, 0 })\n    api.nvim_win_set_cursor(win, { oldinfo.topline, 0 })\n    api.nvim_win_set_cursor(win, oldcursor)\n  elseif strategy == \"descending\" then\n    api.nvim_win_set_cursor(win, { 1, 0 })\n    api.nvim_win_set_cursor(win, { oldinfo.botline, 0 })\n    api.nvim_win_set_cursor(win, oldcursor)\n  else\n    error(debug.traceback(\"Unknown sorting strategy: \" .. (strategy or \"\")))\n  end\nend\n\n--- A wrapper for `Picker:recalculate_layout()` that also handles maintaining cursor position\nfunction Picker:full_layout_update()\n  local oldinfo = vim.fn.getwininfo(self.results_win)[1]\n  local oldcursor = api.nvim_win_get_cursor(self.results_win)\n  self:recalculate_layout()\n  self:refresh_previewer()\n\n  -- update scrolled position\n  local buf_maxline = #api.nvim_buf_get_lines(self.results_bufnr, 0, -1, false)\n  update_scroll(self.results_win, oldinfo, oldcursor, self.sorting_strategy, buf_maxline)\nend\n\n-- TODO: update multi-select with the correct tag name when available\n--- A simple interface to remove an entry from the results window without\n--- closing telescope. This either deletes the current selection or all the\n--- selections made using multi-select. It can be used to define actions\n--- such as deleting buffers or files.\n---\n--- Example usage:\n--- <code>\n--- actions.delete_something = function(prompt_bufnr)\n---    local current_picker = action_state.get_current_picker(prompt_bufnr)\n---    current_picker:delete_selection(function(selection)\n---      -- delete the selection outside of telescope\n---    end)\n--- end\n--- </code>\n---\n--- Example usage in telescope:\n---   - `actions.delete_buffer()`\n---@param delete_cb function: called for each selection fn(s) -> bool|nil (true|nil removes the entry from the results)\nfunction Picker:delete_selection(delete_cb)\n  utils.validate(\"delete_cb\", delete_cb, \"function\")\n\n  local original_selection_strategy = self.selection_strategy\n  self.selection_strategy = \"row\"\n\n  local delete_selections = self._multi:get()\n  local used_multi_select = true\n  if vim.tbl_isempty(delete_selections) then\n    table.insert(delete_selections, self:get_selection())\n    used_multi_select = false\n  end\n\n  local selection_index = {}\n  for result_index, result_entry in pairs(self.finder.results) do\n    if vim.tbl_contains(delete_selections, result_entry) then\n      table.insert(selection_index, result_index)\n    end\n  end\n\n  -- Sort in reverse order as removing an entry from the table shifts down the\n  -- other elements to close the hole.\n  table.sort(selection_index, function(x, y)\n    return x > y\n  end)\n  for _, index in ipairs(selection_index) do\n    local delete_cb_return = delete_cb(self.finder.results[index])\n    if delete_cb_return == nil or delete_cb_return == true then\n      table.remove(self.finder.results, index)\n    end\n  end\n\n  if used_multi_select then\n    self._multi = MultiSelect:new()\n  end\n\n  self:refresh()\n  vim.defer_fn(function()\n    self.selection_strategy = original_selection_strategy\n  end, 50)\nend\n\n---@param text string text to set as prompt\n---@param reset boolean? whether to replace prompt with text entirely or just append\nfunction Picker:set_prompt(text, reset)\n  reset = vim.F.if_nil(reset, true)\n  if not reset then\n    text = self:_get_prompt() .. text\n  end\n  self:reset_prompt(text)\nend\n\n--- Closes the windows for the prompt, results and preview\n---@param status table: table containing information on the picker\n--- and associated windows. Generally obtained from `state.get_status`\nfunction Picker.close_windows(status)\n  local prompt_bufnr = status.layout.prompt.bufnr\n  status.layout:unmount()\n  state.clear_status(prompt_bufnr)\nend\n\n--- Get the entry table of the current selection\n---@return table\nfunction Picker:get_selection()\n  return self._selection_entry\nend\n\n--- Get the row number of the current selection\n---@return number\nfunction Picker:get_selection_row()\n  if self._selection_row then\n    -- If the current row is no longer selectable than reduce it to num_results - 1, so the next selectable row.\n    -- This makes selection_strategy `row` work much better if the selected row is no longer part of the output.\n    --TODO(conni2461): Maybe this can be moved to scroller. (currently in a hotfix so not viable)\n    if self.selection_strategy == \"row\" then\n      local num_results = self.manager:num_results()\n      if self.sorting_strategy == \"ascending\" then\n        if self._selection_row >= num_results then\n          return num_results - 1\n        end\n      else\n        local max = self.max_results - num_results\n        if self._selection_row < max then\n          return self.max_results - num_results\n        end\n      end\n    end\n    return self._selection_row\n  end\n  return self:get_reset_row()\nend\n\n--- Move the current selection by `change` steps\n---@param change number\nfunction Picker:move_selection(change)\n  self:set_selection(self:get_selection_row() + change)\nend\n\n--- Add the entry of the given row to the multi-select object\n---@param row number: the number of the chosen row\nfunction Picker:add_selection(row)\n  local entry = self.manager:get_entry(self:get_index(row))\n  self._multi:add(entry)\n\n  self:update_prefix(entry, row)\n  self:get_status_updater(self.prompt_win, self.prompt_bufnr)()\n  self.highlighter:hi_multiselect(row, true)\nend\n\n--- Remove the entry of the given row to the multi-select object\n---@param row number: the number of the chosen row\nfunction Picker:remove_selection(row)\n  local entry = self.manager:get_entry(self:get_index(row))\n  self._multi:drop(entry)\n\n  self:update_prefix(entry, row)\n  self:get_status_updater(self.prompt_win, self.prompt_bufnr)()\n  self.highlighter:hi_multiselect(row, false)\nend\n\n--- Check if the given row is in the multi-select object\n---@param entry table: table with information about the chosen entry\n---@return number: the \"count\" associated to the entry in the multi-select\n--- object (if present), `nil` otherwise\nfunction Picker:is_multi_selected(entry)\n  return self._multi:is_selected(entry)\nend\n\n--- Get a table containing all of the currently selected entries\n---@return table: an integer indexed table of selected entries\nfunction Picker:get_multi_selection()\n  return self._multi:get()\nend\n\n--- Toggle the given row in and out of the multi-select object.\n--- Also updates the highlighting for the given entry\n---@param row number: the number of the chosen row\nfunction Picker:toggle_selection(row)\n  local entry = self.manager and self.manager:get_entry(self:get_index(row))\n  if entry == nil then\n    return\n  end\n  self._multi:toggle(entry)\n\n  self:update_prefix(entry, row)\n  self:get_status_updater(self.prompt_win, self.prompt_bufnr)()\n  self.highlighter:hi_multiselect(row, self._multi:is_selected(entry))\nend\n\n--- Set the current selection to `nil`\n---@note: generally used when a picker is first activated with `find()`\nfunction Picker:reset_selection()\n  self._selection_entry = nil\n  self._selection_row = nil\nend\n\nfunction Picker:_reset_prefix_color(hl_group)\n  self._current_prefix_hl_group = hl_group or nil\n\n  if self.prompt_prefix ~= \"\" and api.nvim_buf_is_valid(self.prompt_bufnr) then\n    utils.hl_range(\n      self.prompt_bufnr,\n      ns_telescope_prompt_prefix,\n      self._current_prefix_hl_group or \"TelescopePromptPrefix\",\n      { 0, 0 },\n      { 0, #self.prompt_prefix }\n    )\n  end\nend\n\n-- TODO(conni2461): Maybe _ prefix these next two functions\n-- TODO(conni2461): Next two functions only work together otherwise color doesn't work\n--                  Probably a issue with prompt buffers\n--- Change the prefix in the prompt to be `new_prefix` and apply `hl_group`\n---@param new_prefix string: the string to be used as the new prefix\n---@param hl_group string: the name of the chosen highlight\nfunction Picker:change_prompt_prefix(new_prefix, hl_group)\n  if not new_prefix then\n    return\n  end\n\n  if new_prefix ~= \"\" then\n    vim.fn.prompt_setprompt(self.prompt_bufnr, new_prefix)\n  else\n    api.nvim_buf_set_text(self.prompt_bufnr, 0, 0, 0, #self.prompt_prefix, {})\n    vim.bo[self.prompt_bufnr].buftype = \"\"\n  end\n  self.prompt_prefix = new_prefix\n  self:_reset_prefix_color(hl_group)\nend\n\n--- Reset the prompt to the provided `text`\n---@param text string\nfunction Picker:reset_prompt(text)\n  local prompt_text = self.prompt_prefix .. (text or \"\")\n  api.nvim_buf_set_lines(self.prompt_bufnr, 0, -1, false, { prompt_text })\n  self:_reset_prefix_color(self._current_prefix_hl_group)\n\n  if text then\n    api.nvim_win_set_cursor(self.prompt_win, { 1, #prompt_text })\n  end\nend\n\n---@param finder finder: telescope finder (see telescope/finders.lua)\n---@param opts table: options to pass when refreshing the picker\n---@field new_prefix string|table: either as string or { new_string, hl_group }\n---@field reset_prompt bool: whether to reset the prompt\n---@field multi MultiSelect: multi-selection to persist upon renewing finder (see telescope/pickers/multi.lua)\nfunction Picker:refresh(finder, opts)\n  opts = opts or {}\n  if opts.new_prefix then\n    local handle = type(opts.new_prefix) == \"table\" and unpack or function(x)\n      return x\n    end\n    self:change_prompt_prefix(handle(opts.new_prefix), opts.prefix_hl_group)\n  end\n\n  if finder then\n    self.finder:close()\n    self.finder = finder\n    self._multi = vim.F.if_nil(opts.multi, MultiSelect:new())\n  end\n\n  -- reset already triggers finder loop\n  if opts.reset_prompt then\n    self:reset_prompt()\n  else\n    self._on_lines(nil, nil, nil, 0, 1)\n  end\nend\n\n---Set the selection to the provided `row`\n---@param row number\nfunction Picker:set_selection(row)\n  if not self.manager then\n    return\n  end\n\n  row = self.scroller(self.max_results, self.manager:num_results(), row)\n\n  if not self:can_select_row(row) then\n    -- If the current selected row exceeds number of currently displayed\n    -- elements we have to reset it. Affects sorting_strategy = 'row'.\n    if not self:can_select_row(self:get_selection_row()) then\n      row = self:get_row(self.manager:num_results())\n    else\n      log.trace(\"Cannot select row:\", row, self.manager:num_results(), self.max_results)\n      return\n    end\n  end\n\n  local results_bufnr = self.results_bufnr\n  if not api.nvim_buf_is_valid(results_bufnr) then\n    return\n  end\n\n  if row > api.nvim_buf_line_count(results_bufnr) then\n    log.debug(\n      string.format(\"Should not be possible to get row this large %s %s\", row, api.nvim_buf_line_count(results_bufnr))\n    )\n\n    return\n  end\n\n  local entry = self.manager:get_entry(self:get_index(row))\n\n  local prompt_location = state.get_global_key \"prompt_location\"\n  if entry and prompt_location then\n    entry.lnum = prompt_location.row or 0\n    if prompt_location.col and prompt_location.col > 0 then\n      entry.col = prompt_location.col\n      entry.colend = prompt_location.col + 1\n    else\n      entry.col = 1 -- we do + 1 here because previewer does -1\n      entry.colend = 0\n    end\n  end\n\n  state.set_global_key(\"selected_entry\", entry)\n\n  if not entry then\n    -- also refresh previewer when there is no entry selected, so the preview window is cleared\n    self._selection_entry = entry\n    self:refresh_previewer()\n    return\n  end\n\n  local old_entry\n\n  -- TODO: Probably should figure out what the rows are that made this happen...\n  --        Probably something with setting a row that's too high for this?\n  --        Not sure.\n  local set_ok, set_errmsg = pcall(function()\n    local prompt = self:_get_prompt()\n\n    -- Check if previous selection is still visible\n    if self._selection_entry and self.manager:find_entry(self._selection_entry) then\n      -- Find old selection, and update prefix and highlights\n      old_entry = self._selection_entry\n      local old_row = self:get_row(self.manager:find_entry(old_entry))\n\n      self._selection_entry = entry\n\n      if old_row >= 0 then\n        self:update_prefix(old_entry, old_row)\n        self.highlighter:hi_multiselect(old_row, self:is_multi_selected(old_entry))\n      end\n    else\n      self._selection_entry = entry\n    end\n\n    local caret = self:update_prefix(entry, row)\n\n    local display, _ = entry_display.resolve(self, entry)\n    display = caret .. display\n\n    -- TODO: You should go back and redraw the highlights for this line from the sorter.\n    -- That's the only smart thing to do.\n    if not api.nvim_buf_is_valid(results_bufnr) then\n      log.debug \"Invalid buf somehow...\"\n      return\n    end\n\n    -- don't highlight any whitespace at the end of caret\n    self.highlighter:hi_selection(row, caret:match \"(.*%S)\")\n    self.highlighter:hi_sorter(row, prompt, display)\n\n    self.highlighter:hi_multiselect(row, self:is_multi_selected(entry))\n  end)\n\n  if not set_ok then\n    log.debug(set_errmsg)\n    return\n  end\n\n  self:refresh_previewer()\n  if old_entry == entry and self._selection_row == row then\n    return\n  end\n\n  -- TODO: Get row & text in the same obj\n  self._selection_entry = entry\n  self._selection_row = row\n\n  api.nvim_win_set_cursor(self.results_win, { row + 1, 0 })\nend\n\n--- Update prefix for entry on a given row\nfunction Picker:update_prefix(entry, row)\n  local prefix = function(sel, multi)\n    local t\n    if sel then\n      t = self.selection_caret\n    else\n      t = self.entry_prefix\n    end\n    if multi and type(self.multi_icon) == \"string\" then\n      t = truncate(t, strdisplaywidth(t) - strdisplaywidth(self.multi_icon), \"\") .. self.multi_icon\n    end\n    return t\n  end\n\n  local line = api.nvim_buf_get_lines(self.results_bufnr, row, row + 1, false)[1]\n  if not line then\n    log.trace(string.format(\"no line found at row %d in buffer %d\", row, self.results_bufnr))\n    return\n  end\n\n  local old_caret = string.sub(line, 0, #prefix(true)) == prefix(true) and prefix(true)\n    or string.sub(line, 0, #prefix(true, true)) == prefix(true, true) and prefix(true, true)\n    or string.sub(line, 0, #prefix(false)) == prefix(false) and prefix(false)\n    or string.sub(line, 0, #prefix(false, true)) == prefix(false, true) and prefix(false, true)\n  if old_caret == false then\n    log.warn(string.format(\"can't identify old caret in line: %s\", line))\n    return\n  end\n\n  local pre = prefix(entry == self._selection_entry, self:is_multi_selected(entry))\n  -- Only change the first couple characters, nvim_buf_set_text leaves the existing highlights\n  api.nvim_buf_set_text(self.results_bufnr, row, 0, row, #old_caret, { pre })\n  return pre\nend\n\n--- Refresh the previewer based on the current `status` of the picker\nfunction Picker:refresh_previewer()\n  local status = state.get_status(self.prompt_bufnr)\n  if\n    self.previewer\n    and status.layout.preview\n    and status.layout.preview.winid\n    and api.nvim_win_is_valid(status.layout.preview.winid)\n  then\n    self:_increment \"previewed\"\n\n    self.previewer:preview(self._selection_entry, status)\n    if self.preview_border then\n      if self.fix_preview_title then\n        return\n      end\n\n      local new_title = self.previewer:title(self._selection_entry, config.values.dynamic_preview_title)\n      if new_title ~= nil and new_title ~= self.preview_title then\n        self.preview_title = new_title\n        self.layout.preview.border:change_title(new_title)\n      end\n    end\n  end\nend\n\nfunction Picker:cycle_previewers(next)\n  local size = #self.all_previewers\n  if size == 1 then\n    return\n  end\n\n  self.current_previewer_index = self.current_previewer_index + next\n  if self.current_previewer_index > size then\n    self.current_previewer_index = 1\n  elseif self.current_previewer_index < 1 then\n    self.current_previewer_index = size\n  end\n\n  if self.previewer then\n    self.previewer = self.all_previewers[self.current_previewer_index]\n    self:refresh_previewer()\n  elseif self.hidden_previewer then\n    self.hidden_previewer = self.all_previewers[self.current_previewer_index]\n  end\nend\n\n--- Handler for when entries are added by `self.manager`\n---@param index number: the index to add the entry at\n---@param entry table: the entry that has been added to the manager\n---@param insert boolean: whether the entry has been \"inserted\" or not\nfunction Picker:entry_adder(index, entry, _, insert)\n  if not entry then\n    return\n  end\n\n  local row = self:get_row(index)\n\n  -- If it's less than 0, then we don't need to show it at all.\n  if row < 0 then\n    log.debug(\"ON_ENTRY: Weird row\", row)\n    return\n  end\n\n  local display, display_highlights = entry_display.resolve(self, entry)\n  if not display then\n    log.info(\"Weird entry\", entry)\n    return\n  end\n\n  -- This is the two spaces to manage the '> ' stuff.\n  -- Maybe someday we can use extmarks or floaty text or something to draw this and not insert here.\n  -- until then, insert two spaces\n  local prefix = self.entry_prefix\n  display = prefix .. display\n\n  self:_increment \"displayed\"\n\n  local offset = insert and 0 or 1\n  if not api.nvim_buf_is_valid(self.results_bufnr) then\n    log.debug \"ON_ENTRY: Invalid buffer\"\n    return\n  end\n\n  -- TODO: Does this every get called?\n  -- local line_count = a.nvim_win_get_height(self.results_win)\n  local line_count = api.nvim_buf_line_count(self.results_bufnr)\n  if row > line_count then\n    return\n  end\n\n  if insert then\n    if self.sorting_strategy == \"descending\" then\n      api.nvim_buf_set_lines(self.results_bufnr, 0, 1, false, {})\n    end\n  end\n\n  local set_ok, msg = pcall(api.nvim_buf_set_lines, self.results_bufnr, row, row + offset, false, { display })\n  if set_ok then\n    if display_highlights then\n      self.highlighter:hi_display(row, prefix, display_highlights)\n    end\n    self:update_prefix(entry, row)\n    self:highlight_one_row(self.results_bufnr, self:_get_prompt(), display, row)\n  end\n\n  if not set_ok then\n    log.debug(\"Failed to set lines...\", msg)\n  end\n\n  -- This pretty much only fails when people leave newlines in their results.\n  --  So we'll clean it up for them if it fails.\n  if not set_ok and display:find \"\\n\" then\n    display = display:gsub(\"\\n\", \" | \")\n    api.nvim_buf_set_lines(self.results_bufnr, row, row + 1, false, { display })\n  end\nend\n\n--- Reset tracked information for this picker\nfunction Picker:_reset_track()\n  self.stats.processed = 0\n  self.stats.displayed = 0\n  self.stats.display_fn = 0\n  self.stats.previewed = 0\n  self.stats.status = 0\n\n  self.stats.filtered = 0\n  self.stats.highlights = 0\nend\n\n--- Increment the count of the tracked info at `self.stats[key]`\n---@param key string\nfunction Picker:_increment(key)\n  self.stats[key] = (self.stats[key] or 0) + 1\nend\n\n--- Decrement the count of the tracked info at `self.stats[key]`\n---@param key string\nfunction Picker:_decrement(key)\n  self.stats[key] = (self.stats[key] or 0) - 1\nend\n\n-- TODO: Decide how much we want to use this.\n--  Would allow for better debugging of items.\nfunction Picker:register_completion_callback(cb)\n  table.insert(self._completion_callbacks, cb)\nend\n\nfunction Picker:clear_completion_callbacks()\n  self._completion_callbacks = {}\nend\n\nfunction Picker:_on_complete()\n  for _, v in ipairs(self._completion_callbacks) do\n    pcall(v, self)\n  end\nend\n\n--- Close all open Telescope pickers\nfunction Picker:close_existing_pickers()\n  for _, prompt_bufnr in ipairs(state.get_existing_prompt_bufnrs()) do\n    pcall(actions.close, prompt_bufnr)\n  end\nend\n\n--- Returns a function that sets virtual text for the count indicator\n--- e.g. \"10/50\" as \"filtered\"/\"processed\"\n---@param prompt_win number\n---@param prompt_bufnr number\n---@return function\nfunction Picker:get_status_updater(prompt_win, prompt_bufnr)\n  return function(opts)\n    if self.closed or not api.nvim_buf_is_valid(prompt_bufnr) then\n      return\n    end\n\n    local current_prompt = self:_get_prompt()\n    if not current_prompt then\n      return\n    end\n\n    if not api.nvim_win_is_valid(prompt_win) then\n      return\n    end\n\n    local text = self:get_status_text(opts)\n    api.nvim_buf_clear_namespace(prompt_bufnr, ns_telescope_prompt, 0, -1)\n    api.nvim_buf_set_extmark(prompt_bufnr, ns_telescope_prompt, 0, 0, {\n      virt_text = { { text, \"TelescopePromptCounter\" } },\n      virt_text_pos = \"right_align\",\n    })\n\n    self:_increment \"status\"\n  end\nend\n\n--- Returns a function that will process an element.\n--- Returned function handles updating the \"filtered\" and \"processed\" counts\n--- as appropriate and runs the sorters score function\n---@param find_id number\n---@param prompt string\n---@param status_updater function\n---@return function\nfunction Picker:get_result_processor(find_id, prompt, status_updater)\n  local count = 0\n\n  local cb_add = function(score, entry)\n    -- may need the prompt for tiebreak\n    self.manager:add_entry(self, score, entry, prompt)\n    status_updater { completed = false }\n  end\n\n  local cb_filter = function(_)\n    self:_increment \"filtered\"\n  end\n\n  return function(entry)\n    if find_id ~= self._find_id then\n      return true\n    end\n\n    if not entry or entry.valid == false then\n      return\n    end\n\n    self:_increment \"processed\"\n\n    count = count + 1\n\n    -- TODO: Probably should asyncify this / cache this / do something because this probably takes\n    -- a ton of time on large results.\n    log.trace(\"Processing result... \", entry)\n    for _, v in ipairs(self.file_ignore_patterns or {}) do\n      local file = vim.F.if_nil(entry.filename, type(entry.value) == \"string\" and entry.value) -- false if none is true\n      if file then\n        if string.find(file, v) then\n          log.trace(\"SKIPPING\", entry.value, \"because\", v)\n          self:_decrement \"processed\"\n          return\n        end\n      end\n    end\n\n    self.sorter:score(prompt, entry, cb_add, cb_filter)\n  end\nend\n\n--- Handles updating the picker after all the entries are scored/processed.\n---@param results_bufnr number\n---@param _ number\n---@param prompt string\n---@param status_updater function\nfunction Picker:get_result_completor(results_bufnr, _, prompt, status_updater)\n  return vim.schedule_wrap(function()\n    if self.closed == true or self:is_done() then\n      return\n    end\n\n    self:_do_selection(prompt)\n\n    status_updater { completed = true }\n\n    self:clear_extra_rows(results_bufnr)\n    self.sorter:_finish(prompt)\n\n    if self.sorting_strategy == \"descending\" then\n      local visible_result_rows = api.nvim_win_get_height(self.results_win)\n      api.nvim_win_set_cursor(self.results_win, { self.max_results - visible_result_rows, 1 })\n      api.nvim_win_set_cursor(self.results_win, { self.max_results, 1 })\n    else\n      api.nvim_win_set_cursor(self.results_win, { 1, 0 })\n    end\n    self:_on_complete()\n  end)\nend\n\nfunction Picker:_do_selection(prompt)\n  local selection_strategy = self.selection_strategy or \"reset\"\n  -- TODO: Either: always leave one result or make sure we actually clean up the results when nothing matches\n  if selection_strategy == \"row\" then\n    if self._selection_row == nil and self.default_selection_index ~= nil then\n      self:set_selection(self:get_row(self.default_selection_index))\n    else\n      self:set_selection(self:get_selection_row())\n    end\n  elseif selection_strategy == \"follow\" then\n    if self._selection_row == nil and self.default_selection_index ~= nil then\n      self:set_selection(self:get_row(self.default_selection_index))\n    else\n      local index = self.manager:find_entry(self:get_selection())\n\n      if index then\n        local follow_row = self:get_row(index)\n        self:set_selection(follow_row)\n      else\n        self:set_selection(self:get_reset_row())\n      end\n    end\n  elseif selection_strategy == \"reset\" then\n    if self.default_selection_index ~= nil then\n      self:set_selection(self:get_row(self.default_selection_index))\n    else\n      self:set_selection(self:get_reset_row())\n    end\n  elseif selection_strategy == \"closest\" then\n    if prompt == \"\" and self.default_selection_index ~= nil then\n      self:set_selection(self:get_row(self.default_selection_index))\n    else\n      self:set_selection(self:get_reset_row())\n    end\n  elseif selection_strategy == \"none\" then\n    if self._selection_entry then\n      local old_entry, old_row = self._selection_entry, self._selection_row\n      self:reset_selection() -- required to reset selection before updating prefix\n      if old_row >= 0 then\n        self:update_prefix(old_entry, old_row)\n        self.highlighter:hi_multiselect(old_row, self:is_multi_selected(old_entry))\n      end\n    end\n    return\n  else\n    error(\"Unknown selection strategy: \" .. selection_strategy)\n  end\nend\n\n--- Wrapper function for `Picker:new` that incorporates user provided `opts`\n--- with the telescope `defaults`\n---@param opts table\n---@param defaults table\n---@return Picker\npickers.new = function(opts, defaults)\n  opts = opts or {}\n  defaults = defaults or {}\n  local result = {}\n\n  for k, v in pairs(opts) do\n    assert(type(k) == \"string\" or type(k) == \"number\", \"Should be string or number, found: \" .. type(k))\n    result[k] = v\n  end\n\n  for k, v in pairs(defaults) do\n    if result[k] == nil then\n      assert(type(k) == \"string\", \"Should be string, defaults\")\n      result[k] = v\n    else\n      -- For attach mappings, we want people to be able to pass in another function\n      -- and apply their mappings after we've applied our defaults.\n      if k == \"attach_mappings\" then\n        local opt_value = result[k]\n        result[k] = function(...)\n          v(...)\n          return opt_value(...)\n        end\n      end\n    end\n  end\n\n  if result[\"previewer\"] == false then\n    result[\"previewer\"] = defaults[\"previewer\"]\n    result[\"__hide_previewer\"] = true\n  elseif result[\"previewer\"] == true then\n    result[\"previewer\"] = defaults[\"previewer\"]\n  elseif type(opts[\"preview\"]) == \"table\" and opts[\"preview\"][\"hide_on_startup\"] then\n    result[\"__hide_previewer\"] = true\n  end\n\n  return Picker:new(result)\nend\n\n--- Close the picker which has prompt with buffer number `prompt_bufnr`\n---@param prompt_bufnr number\nfunction pickers.on_close_prompt(prompt_bufnr)\n  local status = state.get_status(prompt_bufnr)\n  local picker = status.picker\n  require(\"telescope.actions.state\").get_current_history():reset()\n\n  if type(picker.cache_picker) == \"table\" then\n    local cached_pickers = state.get_global_key \"cached_pickers\" or {}\n\n    if type(picker.cache_picker.index) == \"number\" then\n      if not vim.tbl_isempty(cached_pickers) then\n        table.remove(cached_pickers, picker.cache_picker.index)\n      end\n    end\n\n    -- if picker was disabled post-hoc (e.g. `cache_picker = false` conclude after deletion)\n    if picker.cache_picker.disabled ~= true then\n      if picker.cache_picker.limit_entries > 0 then\n        -- edge case: starting in normal mode and not having run a search means having no manager instantiated\n        if picker.manager then\n          picker.manager.linked_states:truncate(picker.cache_picker.limit_entries)\n        else\n          picker.manager = EntryManager:new(picker.max_results, picker.entry_adder, picker.stats)\n        end\n      end\n      local curr_prompt = picker:_get_prompt()\n      picker.default_text = curr_prompt\n      picker.cache_picker.selection_row = picker._selection_row\n\n      -- Only cache if prompt is not empty or ignore_empty_prompt is false\n      if not picker.cache_picker.ignore_empty_prompt or (curr_prompt and curr_prompt ~= \"\") then\n        picker.cache_picker.cached_prompt = curr_prompt\n        table.insert(cached_pickers, 1, picker)\n        picker.cache_picker.is_cached = true\n      end\n\n      -- release pickers\n      if picker.cache_picker.num_pickers > 0 then\n        while #cached_pickers > picker.cache_picker.num_pickers do\n          table.remove(cached_pickers, #cached_pickers)\n        end\n      end\n      state.set_global_key(\"cached_pickers\", cached_pickers)\n    end\n  end\n\n  if picker.sorter then\n    picker.sorter:_destroy()\n  end\n\n  if picker.all_previewers then\n    for _, v in ipairs(picker.all_previewers) do\n      v:teardown()\n    end\n  end\n\n  if picker.finder then\n    picker.finder:close()\n  end\n\n  -- so we dont call close_windows multiple times we clear that autocmd\n  api.nvim_clear_autocmds {\n    group = \"PickerInsert\",\n    event = \"BufLeave\",\n    buffer = prompt_bufnr,\n  }\n  picker.close_windows(status)\n\n  vim.o.mousemoveevent = picker.__original_mousemoveevent\nend\n\nfunction pickers.on_resize_window(prompt_bufnr)\n  local status = state.get_status(prompt_bufnr)\n  local picker = status.picker\n\n  picker:full_layout_update()\nend\n\n--- Get the prompt text without the prompt prefix.\nfunction Picker:_get_prompt()\n  local cursor_line = api.nvim_win_get_cursor(self.prompt_win)[1] - 1\n  return api.nvim_buf_get_lines(self.prompt_bufnr, cursor_line, cursor_line + 1, false)[1]:sub(#self.prompt_prefix + 1)\nend\n\nfunction Picker:_reset_highlights()\n  self.highlighter:clear_display()\n  api.nvim_buf_clear_namespace(self.results_bufnr, ns_telescope_matching, 0, -1)\nend\n\n-- Toggles whether finder is attached to prompt buffer input\nfunction Picker:_toggle_finder_attach()\n  self._finder_attached = not self._finder_attached\nend\n\nfunction Picker:_detach()\n  self.finder:close()\n\n  -- TODO: Can we add a \"cleanup\" / \"teardown\" function that completely removes these.\n  -- self.finder = nil\n  -- self.previewer = nil\n  -- self.sorter = nil\n  -- self.manager = nil\n\n  self.closed = true\nend\n\nfunction Picker:_get_next_filtered_prompt()\n  local prompt = self:_get_prompt()\n  local on_input_result = self._on_input_filter_cb(prompt) or {}\n\n  local new_prompt = on_input_result.prompt\n  if new_prompt then\n    prompt = new_prompt\n  end\n\n  local new_finder = on_input_result.updated_finder\n  if new_finder then\n    self.finder:close()\n    self.finder = new_finder\n  end\n\n  return prompt\nend\n\nfunction Picker:_resume_picker()\n  -- resume previous picker\n  local index = 1\n  for entry in self.manager:iter() do\n    self:entry_adder(index, entry, _, true)\n    index = index + 1\n  end\n  self.cache_picker.is_cached = false\n  local on_resume_complete = function()\n    if api.nvim_buf_is_valid(self.prompt_bufnr) then\n      api.nvim_buf_call(self.prompt_bufnr, function()\n        vim.cmd \"do User TelescopeResumePost\"\n      end)\n    end\n  end\n  -- if text changed, required to set anew to restart finder; otherwise hl and selection\n  if self.cache_picker.cached_prompt ~= self.default_text then\n    self:set_prompt(self.default_text)\n    on_resume_complete()\n  else\n    -- scheduling required to apply highlighting and selection appropriately\n    await_schedule(function()\n      if self.cache_picker.selection_row ~= nil then\n        self:set_selection(self.cache_picker.selection_row)\n      end\n      on_resume_complete()\n    end)\n  end\nend\n\npickers._Picker = Picker\n\nreturn pickers\n"
  },
  {
    "path": "lua/telescope/previewers/buffer_previewer.lua",
    "content": "local api = vim.api\n\nlocal from_entry = require \"telescope.from_entry\"\nlocal Path = require \"plenary.path\"\nlocal utils = require \"telescope.utils\"\nlocal putils = require \"telescope.previewers.utils\"\nlocal Previewer = require \"telescope.previewers.previewer\"\nlocal conf = require(\"telescope.config\").values\nlocal global_state = require \"telescope.state\"\n\nlocal buf_delete = utils.buf_delete\nlocal git_command = utils.__git_command\n\nlocal previewers = {}\n\nlocal ns_previewer = api.nvim_create_namespace \"telescope.previewers\"\n\nlocal has_file = 1 == vim.fn.executable \"file\"\n\n-- TODO(fdschmidt93) switch to Job once file_maker callbacks get cleaned up with plenary async\n-- avoids SIGABRT from utils.get_os_command_output due to vim.time in fs_stat cb\nlocal function capture(cmd, raw)\n  local f = assert(io.popen(cmd, \"r\"))\n  local s = assert(f:read \"*a\")\n  f:close()\n  if raw then\n    return s\n  end\n  s = string.gsub(s, \"^%s+\", \"\")\n  s = string.gsub(s, \"%s+$\", \"\")\n  s = string.gsub(s, \"[\\n\\r]+\", \" \")\n  return s\nend\n\nlocal function defaulter(f, default_opts)\n  default_opts = default_opts or {}\n  return {\n    new = function(opts)\n      if opts.preview == false then\n        return false\n      end\n      if conf.preview == false and not opts.preview then\n        return false\n      end\n      opts.preview = type(opts.preview) ~= \"table\" and {} or opts.preview\n      if type(conf.preview) == \"table\" then\n        for k, v in pairs(conf.preview) do\n          opts.preview[k] = vim.F.if_nil(opts.preview[k], v)\n        end\n      end\n      return f(opts)\n    end,\n    __call = function()\n      local ok, err = pcall(f(default_opts))\n      if not ok then\n        error(debug.traceback(err))\n      end\n    end,\n  }\nend\n\n-- modified vim.split to incorporate a timer\nlocal function split(s, sep, plain, opts)\n  opts = opts or {}\n  local t = {}\n  for c in vim.gsplit(s, sep, plain) do\n    local line = opts.file_encoding and vim.iconv(c, opts.file_encoding, \"utf8\") or c\n    table.insert(t, line)\n    if opts.preview.timeout then\n      local diff_time = (vim.uv.hrtime() - opts.start_time) / 1e6\n      if diff_time > opts.preview.timeout then\n        return\n      end\n    end\n  end\n  return t\nend\nlocal bytes_to_megabytes = math.pow(1024, 2)\n\nlocal color_hash = {\n  [\"p\"] = \"TelescopePreviewPipe\",\n  [\"c\"] = \"TelescopePreviewCharDev\",\n  [\"d\"] = \"TelescopePreviewDirectory\",\n  [\"b\"] = \"TelescopePreviewBlock\",\n  [\"l\"] = \"TelescopePreviewLink\",\n  [\"s\"] = \"TelescopePreviewSocket\",\n  [\".\"] = \"TelescopePreviewNormal\",\n  [\"r\"] = \"TelescopePreviewRead\",\n  [\"w\"] = \"TelescopePreviewWrite\",\n  [\"x\"] = \"TelescopePreviewExecute\",\n  [\"-\"] = \"TelescopePreviewHyphen\",\n  [\"T\"] = \"TelescopePreviewSticky\",\n  [\"S\"] = \"TelescopePreviewSticky\",\n  [2] = \"TelescopePreviewSize\",\n  [3] = \"TelescopePreviewUser\",\n  [4] = \"TelescopePreviewGroup\",\n  [5] = \"TelescopePreviewDate\",\n}\ncolor_hash[6] = function(line)\n  return color_hash[line:sub(1, 1)]\nend\n\nlocal colorize_ls_long = function(bufnr, data, sections)\n  local windows_add = Path.path.sep == \"\\\\\" and 2 or 0\n  for lnum, line in ipairs(data) do\n    local section = sections[lnum]\n    for i = 1, section[1].end_index - 1 do -- Highlight permissions\n      local c = line:sub(i, i)\n      utils.hl_range(bufnr, ns_previewer, color_hash[c], { lnum - 1, i - 1 }, { lnum - 1, i })\n    end\n    for i = 2, #section do -- highlights size, (user, group), date and name\n      local hl_group = color_hash[i + (i ~= 2 and windows_add or 0)]\n      utils.hl_range(\n        bufnr,\n        ns_previewer,\n        type(hl_group) == \"function\" and hl_group(line) or hl_group,\n        { lnum - 1, section[i].start_index - 1 },\n        { lnum - 1, section[i].end_index - 1 }\n      )\n    end\n  end\nend\n\nlocal handle_directory_preview = function(filepath, bufnr, opts)\n  opts.preview.ls_short = vim.F.if_nil(opts.preview.ls_short, false)\n\n  local set_colorize_lines\n  if opts.preview.ls_short then\n    set_colorize_lines = function(data, sections)\n      local PATH_SECTION = Path.path.sep == \"\\\\\" and 4 or 6\n      local paths = {}\n      for i, line in ipairs(data) do\n        local section = sections[i][PATH_SECTION]\n        local path = line:sub(section.start_index, section.end_index)\n        table.insert(paths, path)\n      end\n      api.nvim_buf_set_lines(bufnr, 0, -1, false, paths)\n      for i, path in ipairs(paths) do\n        local hl = color_hash[6](data[i])\n        utils.hl_range(bufnr, ns_previewer, hl, { i - 1, 0 }, { i - 1, #path })\n      end\n    end\n  else\n    set_colorize_lines = function(data, sections)\n      api.nvim_buf_set_lines(bufnr, 0, -1, false, data)\n      colorize_ls_long(bufnr, data, sections)\n    end\n  end\n\n  require(\"plenary.scandir\").ls_async(filepath, {\n    hidden = true,\n    group_directories_first = true,\n    on_exit = vim.schedule_wrap(function(data, sections)\n      set_colorize_lines(data, sections)\n      if opts.callback then\n        opts.callback(bufnr)\n      end\n    end),\n  })\nend\n\nlocal handle_file_preview = function(filepath, bufnr, stat, opts)\n  vim.schedule(function()\n    opts.ft = opts.use_ft_detect and putils.filetype_detect(filepath)\n    local possible_binary = false\n    if type(opts.preview.filetype_hook) == \"function\" and opts.ft ~= nil and opts.ft ~= \"\" then\n      if not opts.preview.filetype_hook(filepath, bufnr, opts) then\n        return\n      end\n    end\n    if opts.preview.check_mime_type == true and has_file and (opts.ft == nil or opts.ft == \"\") then\n      -- avoid SIGABRT in buffer previewer happening with utils.get_os_command_output\n      local mime_type = capture(string.format([[file --mime-type -b \"%s\"]], filepath))\n      if putils.binary_mime_type(mime_type) then\n        if type(opts.preview.mime_hook) == \"function\" then\n          opts.preview.mime_hook(filepath, bufnr, opts)\n          return\n        else\n          possible_binary = true\n        end\n      end\n      if mime_type[2] == \"json\" then\n        opts.ft = \"json\"\n      end\n    end\n\n    local mb_filesize = stat.size / bytes_to_megabytes\n    if opts.preview.filesize_limit then\n      if mb_filesize > opts.preview.filesize_limit then\n        if type(opts.preview.filesize_hook) == \"function\" then\n          opts.preview.filesize_hook(filepath, bufnr, opts)\n        else\n          putils.set_preview_message(bufnr, opts.winid, \"File exceeds preview size limit\", opts.preview.msg_bg_fillchar)\n        end\n        return\n      end\n    end\n\n    opts.start_time = vim.uv.hrtime()\n    Path:new(filepath):_read_async(vim.schedule_wrap(function(data)\n      if not api.nvim_buf_is_valid(bufnr) then\n        return\n      end\n      local processed_data = split(data, \"[\\r]?\\n\", nil, opts)\n\n      if processed_data then\n        local ok = pcall(api.nvim_buf_set_lines, bufnr, 0, -1, false, processed_data)\n        if not ok then\n          return\n        end\n        -- last resort, if ft is still empty at this point in time,\n        -- we need to determine the filetype using the buffer contents\n        if opts.ft == nil or opts.ft == \"\" then\n          opts.ft = vim.filetype.match { filename = filepath, buf = bufnr }\n        end\n        -- we need to attempt to call filetype hook at this point \"again\"\n        -- previously only if we had a valid filetype, now every time\n        -- also if there will never be a filetype\n        if type(opts.preview.filetype_hook) == \"function\" then\n          if not opts.preview.filetype_hook(filepath, bufnr, opts) then\n            return\n          end\n        end\n        -- if we still dont have a ft we need to display the binary message\n        if (opts.ft == nil or opts.ft == \"\") and possible_binary then\n          putils.set_preview_message(bufnr, opts.winid, \"Binary cannot be previewed\", opts.preview.msg_bg_fillchar)\n          return\n        end\n\n        if opts.callback then\n          opts.callback(bufnr)\n        end\n\n        if not (opts.preview.highlight_limit and mb_filesize > opts.preview.highlight_limit) then\n          putils.highlighter(bufnr, opts.ft, opts)\n        end\n      else\n        if type(opts.preview.timeout_hook) == \"function\" then\n          opts.preview.timeout_hook(filepath, bufnr, opts)\n        else\n          putils.set_preview_message(bufnr, opts.winid, \"Previewer timed out\", opts.preview.msg_bg_fillchar)\n        end\n        return\n      end\n    end))\n  end)\nend\n\nlocal PREVIEW_TIMEOUT_MS = 250\nlocal PREVIEW_FILESIZE_MB = 25\nlocal PREVIEW_HIGHLIGHT_MB = 1\n\npreviewers.file_maker = function(filepath, bufnr, opts)\n  opts = vim.F.if_nil(opts, {})\n  opts.preview = vim.F.if_nil(opts.preview, {})\n  opts.preview.timeout = vim.F.if_nil(opts.preview.timeout, PREVIEW_TIMEOUT_MS)\n  opts.preview.filesize_limit = vim.F.if_nil(opts.preview.filesize_limit, PREVIEW_FILESIZE_MB)\n  opts.preview.highlight_limit = vim.F.if_nil(opts.preview.highlight_limit, PREVIEW_HIGHLIGHT_MB)\n  opts.preview.msg_bg_fillchar = vim.F.if_nil(opts.preview.msg_bg_fillchar, \"╱\")\n  opts.preview.treesitter = vim.F.if_nil(opts.preview.treesitter, true)\n  if opts.use_ft_detect == nil then\n    opts.use_ft_detect = true\n  end\n  if opts.bufname ~= filepath then\n    if not vim.in_fast_event() then\n      filepath = utils.path_expand(filepath)\n    end\n    vim.uv.fs_stat(filepath, function(_, stat)\n      if not stat then\n        return\n      end\n      if stat.type == \"directory\" then\n        handle_directory_preview(filepath, bufnr, opts)\n      else\n        handle_file_preview(filepath, bufnr, stat, opts)\n      end\n    end)\n  else\n    if opts.callback then\n      if vim.in_fast_event() then\n        vim.schedule(function()\n          opts.callback(bufnr)\n        end)\n      else\n        opts.callback(bufnr)\n      end\n    end\n  end\nend\n\nlocal search_cb_jump = function(self, bufnr, query)\n  if not query then\n    return\n  end\n  api.nvim_buf_call(bufnr, function()\n    pcall(vim.fn.matchdelete, self.state.hl_id, self.state.winid)\n    vim.cmd \"keepjumps norm! gg\"\n    vim.fn.search(query, \"W\")\n    vim.cmd \"norm! zz\"\n\n    self.state.hl_id = vim.fn.matchadd(\"TelescopePreviewMatch\", query)\n  end)\nend\n\nlocal search_teardown = function(self)\n  if self.state and self.state.hl_id then\n    pcall(vim.fn.matchdelete, self.state.hl_id, self.state.hl_win)\n    self.state.hl_id = nil\n  end\nend\n\nlocal scroll_fn = function(self, direction)\n  if not self.state then\n    return\n  end\n\n  local input = direction > 0 and [[\u0005]] or [[\u0019]]\n  local count = math.abs(direction)\n\n  api.nvim_win_call(self.state.winid, function()\n    vim.cmd([[normal! ]] .. count .. input)\n  end)\nend\n\nlocal scroll_horizontal_fn = function(self, direction)\n  if not self.state then\n    return\n  end\n\n  local input = direction > 0 and [[zl]] or [[zh]]\n  local count = math.abs(direction)\n\n  api.nvim_win_call(self.state.winid, function()\n    vim.wo[self.state.winid].virtualedit = \"all\"\n    vim.cmd([[normal! ]] .. count .. input)\n  end)\nend\n\npreviewers.new_buffer_previewer = function(opts)\n  opts = opts or {}\n\n  assert(opts.define_preview, \"define_preview is a required function\")\n  assert(not opts.preview_fn, \"preview_fn not allowed\")\n\n  local opt_setup = opts.setup\n  local opt_teardown = opts.teardown\n\n  local old_bufs = {}\n  local bufname_table = {}\n  local preview_window_id\n\n  local function get_bufnr(self)\n    if not self.state then\n      return nil\n    end\n    return self.state.bufnr\n  end\n\n  local function set_bufnr(self, value)\n    if self.state then\n      self.state.bufnr = value\n      table.insert(old_bufs, value)\n    end\n  end\n\n  local function get_bufnr_by_bufname(self, value)\n    if not self.state then\n      return nil\n    end\n    return bufname_table[value]\n  end\n\n  local function set_bufname(self, value)\n    if self.state then\n      self.state.bufname = value\n      if value then\n        bufname_table[value] = get_bufnr(self)\n      end\n    end\n  end\n\n  function opts.setup(self)\n    local state = {}\n    if opt_setup then\n      state = vim.tbl_deep_extend(\"force\", state, opt_setup(self))\n    end\n    return state\n  end\n\n  function opts.teardown(self)\n    if opt_teardown then\n      opt_teardown(self)\n    end\n\n    local last_nr\n    if opts.keep_last_buf then\n      last_nr = global_state.get_global_key \"last_preview_bufnr\"\n      -- Push in another buffer so the last one will not be cleaned up\n      if preview_window_id then\n        local bufnr = api.nvim_create_buf(false, true)\n        utils.win_set_buf_noautocmd(preview_window_id, bufnr)\n      end\n    end\n\n    set_bufnr(self, nil)\n    set_bufname(self, nil)\n\n    for _, bufnr in ipairs(old_bufs) do\n      if bufnr ~= last_nr then\n        buf_delete(bufnr)\n      end\n    end\n    -- enable resuming picker with existing previewer to avoid lookup of deleted bufs\n    bufname_table = {}\n  end\n\n  function opts.preview_fn(self, entry, status)\n    local preview_winid = status.layout.preview and status.layout.preview.winid\n    if get_bufnr(self) == nil then\n      set_bufnr(self, api.nvim_win_get_buf(preview_winid))\n      preview_window_id = preview_winid\n    end\n\n    if opts.get_buffer_by_name and get_bufnr_by_bufname(self, opts.get_buffer_by_name(self, entry)) then\n      self.state.bufname = opts.get_buffer_by_name(self, entry)\n      self.state.bufnr = get_bufnr_by_bufname(self, self.state.bufname)\n      utils.win_set_buf_noautocmd(preview_winid, self.state.bufnr)\n    else\n      local bufnr = api.nvim_create_buf(false, true)\n      set_bufnr(self, bufnr)\n      vim.bo[bufnr].modifiable = true\n\n      vim.schedule(function()\n        if api.nvim_buf_is_valid(bufnr) then\n          utils.win_set_buf_noautocmd(preview_winid, bufnr)\n        end\n      end)\n\n      vim.wo[preview_winid].winhl = \"Normal:TelescopePreviewNormal\"\n      vim.wo[preview_winid].signcolumn = \"no\"\n      vim.wo[preview_winid].foldlevel = 100\n      vim.wo[preview_winid].wrap = false\n      vim.wo[preview_winid].scrollbind = false\n\n      self.state.winid = preview_winid\n      self.state.bufname = nil\n    end\n\n    if opts.keep_last_buf then\n      global_state.set_global_key(\"last_preview_bufnr\", self.state.bufnr)\n    end\n\n    opts.define_preview(self, entry, status)\n\n    vim.schedule(function()\n      if not self or not self.state or not self.state.bufnr then\n        return\n      end\n\n      if api.nvim_buf_is_valid(self.state.bufnr) then\n        api.nvim_buf_call(self.state.bufnr, function()\n          api.nvim_exec_autocmds(\"User\", {\n            pattern = \"TelescopePreviewerLoaded\",\n            data = {\n              title = entry.preview_title,\n              bufname = self.state.bufname,\n              filetype = putils.filetype_detect(self.state.bufname or \"\"),\n            },\n          })\n        end)\n      end\n    end)\n\n    if opts.get_buffer_by_name then\n      set_bufname(self, opts.get_buffer_by_name(self, entry))\n    end\n  end\n\n  if not opts.scroll_fn then\n    opts.scroll_fn = scroll_fn\n  end\n\n  if not opts.scroll_horizontal_fn then\n    opts.scroll_horizontal_fn = scroll_horizontal_fn\n  end\n\n  return Previewer:new(opts)\nend\n\npreviewers.cat = defaulter(function(opts)\n  opts = opts or {}\n  local cwd = opts.cwd or vim.uv.cwd()\n  return previewers.new_buffer_previewer {\n    title = \"File Preview\",\n    dyn_title = function(_, entry)\n      return Path:new(from_entry.path(entry, false, false)):normalize(cwd)\n    end,\n\n    get_buffer_by_name = function(_, entry)\n      return from_entry.path(entry, false, false)\n    end,\n\n    define_preview = function(self, entry)\n      local p = from_entry.path(entry, true, false)\n      if p == nil or p == \"\" then\n        return\n      end\n      conf.buffer_previewer_maker(p, self.state.bufnr, {\n        bufname = self.state.bufname,\n        winid = self.state.winid,\n        preview = opts.preview,\n        file_encoding = opts.file_encoding,\n      })\n    end,\n  }\nend, {})\n\npreviewers.vimgrep = defaulter(function(opts)\n  opts = opts or {}\n  local cwd = opts.cwd or vim.uv.cwd()\n\n  local jump_to_line = function(self, bufnr, entry)\n    pcall(api.nvim_buf_clear_namespace, bufnr, ns_previewer, 0, -1)\n\n    if entry.lnum and entry.lnum > 0 then\n      local lnum, lnend = entry.lnum - 1, (entry.lnend or entry.lnum) - 1\n\n      local col, colend = 0, -1\n      -- Both col delimiters should be provided for them to take effect.\n      -- This is to ensure that column range highlighting was opted in, as `col`\n      -- is already used to determine the buffer jump position elsewhere.\n      if entry.col and entry.colend then\n        col, colend = entry.col - 1, entry.colend - 1\n      end\n\n      for i = lnum, lnend do\n        pcall(\n          utils.hl_range,\n          bufnr,\n          ns_previewer,\n          \"TelescopePreviewLine\",\n          { i, i == lnum and col or 0 },\n          { i, i == lnend and colend or -1 }\n        )\n      end\n\n      local middle_ln = math.floor(lnum + (lnend - lnum) / 2)\n      pcall(api.nvim_win_set_cursor, self.state.winid, { middle_ln + 1, 0 })\n      if bufnr ~= nil then\n        api.nvim_buf_call(bufnr, function()\n          vim.cmd \"norm! zz\"\n        end)\n      end\n    end\n  end\n\n  return previewers.new_buffer_previewer {\n    title = \"Grep Preview\",\n    dyn_title = function(_, entry)\n      return Path:new(from_entry.path(entry, false, false)):normalize(cwd)\n    end,\n\n    get_buffer_by_name = function(_, entry)\n      return from_entry.path(entry, false, false)\n    end,\n\n    define_preview = function(self, entry)\n      -- builtin.buffers: bypass path validation for terminal buffers that don't have appropriate path\n      local has_buftype = entry.bufnr and api.nvim_buf_is_valid(entry.bufnr) and vim.bo[entry.bufnr].buftype ~= \"\"\n        or false\n      local p\n      if not has_buftype then\n        p = from_entry.path(entry, true, false)\n        if p == nil or p == \"\" then\n          return\n        end\n      end\n\n      -- Workaround for unnamed buffer when using builtin.buffer\n      if entry.bufnr and (p == \"[No Name]\" or has_buftype) then\n        local lines = api.nvim_buf_get_lines(entry.bufnr, 0, -1, false)\n        api.nvim_buf_set_lines(self.state.bufnr, 0, -1, false, lines)\n        -- schedule so that the lines are actually there and can be jumped onto when we call jump_to_line\n        vim.schedule(function()\n          jump_to_line(self, self.state.bufnr, entry)\n        end)\n      else\n        conf.buffer_previewer_maker(p, self.state.bufnr, {\n          bufname = self.state.bufname,\n          winid = self.state.winid,\n          preview = opts.preview,\n          callback = function(bufnr)\n            jump_to_line(self, bufnr, entry)\n          end,\n          file_encoding = opts.file_encoding,\n        })\n      end\n    end,\n  }\nend, {})\n\npreviewers.qflist = previewers.vimgrep\n\npreviewers.ctags = defaulter(function(opts)\n  local determine_jump = function(entry)\n    if entry.scode then\n      return function(self)\n        -- un-escape / then escape required\n        -- special chars for vim.fn.search()\n        -- ] ~ *\n        local scode = entry.scode:gsub([[\\/]], \"/\"):gsub(\"[%]~*]\", function(x)\n          return \"\\\\\" .. x\n        end)\n\n        pcall(vim.fn.matchdelete, self.state.hl_id, self.state.winid)\n        vim.cmd \"keepjumps norm! gg\"\n        vim.fn.search(scode, \"W\")\n        vim.cmd \"norm! zz\"\n\n        self.state.hl_id = vim.fn.matchadd(\"TelescopePreviewMatch\", scode)\n      end\n    else\n      return function(self, bufnr)\n        if self.state.last_set_bufnr then\n          pcall(api.nvim_buf_clear_namespace, self.state.last_set_bufnr, ns_previewer, 0, -1)\n        end\n        pcall(\n          utils.hl_range,\n          bufnr,\n          ns_previewer,\n          \"TelescopePreviewMatch\",\n          { entry.lnum - 1, 0 },\n          { entry.lnum - 1, -1 }\n        )\n        pcall(api.nvim_win_set_cursor, self.state.winid, { entry.lnum, 0 })\n        self.state.last_set_bufnr = bufnr\n      end\n    end\n  end\n\n  return previewers.new_buffer_previewer {\n    title = \"Tags Preview\",\n    teardown = function(self)\n      if self.state and self.state.hl_id then\n        pcall(vim.fn.matchdelete, self.state.hl_id, self.state.hl_win)\n        self.state.hl_id = nil\n      elseif self.state and self.state.last_set_bufnr and api.nvim_buf_is_valid(self.state.last_set_bufnr) then\n        api.nvim_buf_clear_namespace(self.state.last_set_bufnr, ns_previewer, 0, -1)\n      end\n    end,\n\n    get_buffer_by_name = function(_, entry)\n      return entry.filename\n    end,\n\n    define_preview = function(self, entry)\n      conf.buffer_previewer_maker(entry.filename, self.state.bufnr, {\n        bufname = self.state.bufname,\n        winid = self.state.winid,\n        preview = opts.preview,\n        callback = function(bufnr)\n          pcall(api.nvim_buf_call, bufnr, function()\n            determine_jump(entry)(self, bufnr)\n          end)\n        end,\n        file_encoding = opts.file_encoding,\n      })\n    end,\n  }\nend, {})\n\npreviewers.builtin = defaulter(function(opts)\n  return previewers.new_buffer_previewer {\n    title = \"Grep Preview\",\n    teardown = search_teardown,\n\n    get_buffer_by_name = function(_, entry)\n      return entry.filename\n    end,\n\n    define_preview = function(self, entry)\n      local module_name = vim.fn.fnamemodify(vim.fn.fnamemodify(entry.filename, \":h\"), \":t\")\n      local text\n      if entry.text:sub(1, #module_name) ~= module_name then\n        text = module_name .. \".\" .. entry.text\n      else\n        text = entry.text:gsub(\"_\", \".\", 1)\n      end\n\n      conf.buffer_previewer_maker(entry.filename, self.state.bufnr, {\n        bufname = self.state.bufname,\n        winid = self.state.winid,\n        preview = opts.preview,\n        callback = function(bufnr)\n          search_cb_jump(self, bufnr, text)\n        end,\n        file_encoding = opts.file_encoding,\n      })\n    end,\n  }\nend, {})\n\npreviewers.help = defaulter(function(opts)\n  return previewers.new_buffer_previewer {\n    title = \"Help Preview\",\n    teardown = search_teardown,\n\n    get_buffer_by_name = function(_, entry)\n      return entry.filename\n    end,\n\n    define_preview = function(self, entry)\n      local query = entry.cmd\n      query = query:sub(2)\n      query = [[\\V]] .. query\n\n      conf.buffer_previewer_maker(entry.filename, self.state.bufnr, {\n        bufname = self.state.bufname,\n        winid = self.state.winid,\n        preview = opts.preview,\n        callback = function(bufnr)\n          putils.highlighter(bufnr, \"help\", opts)\n          search_cb_jump(self, bufnr, query)\n        end,\n        file_encoding = opts.file_encoding,\n      })\n    end,\n  }\nend, {})\n\npreviewers.man = defaulter(function(opts)\n  local pager = utils.get_lazy_default(opts.PAGER, function()\n    return vim.fn.executable \"col\" == 1 and { \"col\", \"-bx\" } or { \"cat\" }\n  end)\n  return previewers.new_buffer_previewer {\n    title = \"Man Preview\",\n    get_buffer_by_name = function(_, entry)\n      return entry.value .. \"/\" .. entry.section\n    end,\n\n    define_preview = function(self, entry)\n      local win_width = api.nvim_win_get_width(self.state.winid)\n      putils.job_maker(vim.deepcopy(pager), self.state.bufnr, {\n        writer = { \"man\", entry.section, entry.value },\n        env = { [\"MANWIDTH\"] = win_width, PATH = vim.env.PATH, MANPATH = vim.env.MANPATH },\n        value = entry.value .. \"/\" .. entry.section,\n        bufname = self.state.bufname,\n      })\n      putils.highlighter(self.state.bufnr, \"man\", opts)\n    end,\n  }\nend)\n\npreviewers.git_branch_log = defaulter(function(opts)\n  local highlight_buffer = function(bufnr, content)\n    for i = 1, #content do\n      local line = content[i]\n      local hstart, hend = line:find \"[0-9a-fA-F]+\"\n      if hstart then\n        if hend < #line then\n          pcall(\n            utils.hl_range,\n            bufnr,\n            ns_previewer,\n            \"TelescopeResultsIdentifier\",\n            { i - 1, hstart - 1 },\n            { i - 1, hend }\n          )\n        end\n      end\n      local _, cstart = line:find \"- %(\"\n      if cstart then\n        local cend = string.find(line, \"%) \")\n        if cend then\n          pcall(utils.hl_range, bufnr, ns_previewer, \"TelescopeResultsConstant\", { i - 1, cstart - 1 }, { i - 1, cend })\n        end\n      end\n      local dstart, _ = line:find \" %(%d\"\n      if dstart then\n        pcall(utils.hl_range, bufnr, ns_previewer, \"TelescopeResultsSpecialComment\", { i - 1, dstart }, { #line })\n      end\n    end\n  end\n\n  return previewers.new_buffer_previewer {\n    title = \"Git Branch Preview\",\n    get_buffer_by_name = function(_, entry)\n      return entry.value\n    end,\n\n    define_preview = function(self, entry)\n      local cmd = git_command({\n        \"--no-pager\",\n        \"log\",\n        \"--graph\",\n        \"--max-count=1000\", -- prevent fork bombing with large repos\n        \"--pretty=format:%h -%d %s (%cr)\",\n        \"--abbrev-commit\",\n        \"--date=relative\",\n        entry.value,\n      }, opts)\n\n      putils.job_maker(cmd, self.state.bufnr, {\n        value = entry.value,\n        bufname = self.state.bufname,\n        cwd = opts.cwd,\n        callback = function(bufnr, content)\n          if not content then\n            return\n          end\n          highlight_buffer(bufnr, content)\n        end,\n      })\n    end,\n  }\nend, {})\n\npreviewers.git_stash_diff = defaulter(function(opts)\n  return previewers.new_buffer_previewer {\n    title = \"Git Stash Preview\",\n    get_buffer_by_name = function(_, entry)\n      return entry.value\n    end,\n\n    define_preview = function(self, entry, _)\n      local cmd = git_command({ \"--no-pager\", \"stash\", \"show\", \"-p\", entry.value }, opts)\n      putils.job_maker(cmd, self.state.bufnr, {\n        value = entry.value,\n        bufname = self.state.bufname,\n        cwd = opts.cwd,\n        callback = function(bufnr)\n          if api.nvim_buf_is_valid(bufnr) then\n            putils.highlighter(bufnr, \"diff\", opts)\n          end\n        end,\n      })\n    end,\n  }\nend, {})\n\npreviewers.git_commit_diff_to_parent = defaulter(function(opts)\n  return previewers.new_buffer_previewer {\n    title = \"Git Diff to Parent Preview\",\n    teardown = search_teardown,\n    get_buffer_by_name = function(_, entry)\n      return entry.value\n    end,\n\n    define_preview = function(self, entry)\n      local cmd = git_command({ \"--no-pager\", \"diff\", entry.value .. \"^!\" }, opts)\n      if opts.current_file then\n        table.insert(cmd, \"--\")\n        table.insert(cmd, opts.current_file)\n      end\n\n      putils.job_maker(cmd, self.state.bufnr, {\n        value = entry.value,\n        bufname = self.state.bufname,\n        cwd = opts.cwd,\n        callback = function(bufnr)\n          if api.nvim_buf_is_valid(bufnr) then\n            search_cb_jump(self, bufnr, opts.current_line)\n            putils.highlighter(bufnr, \"diff\", opts)\n          end\n        end,\n      })\n    end,\n  }\nend, {})\n\npreviewers.git_commit_diff_to_head = defaulter(function(opts)\n  return previewers.new_buffer_previewer {\n    title = \"Git Diff to Head Preview\",\n    teardown = search_teardown,\n\n    get_buffer_by_name = function(_, entry)\n      return entry.value\n    end,\n\n    define_preview = function(self, entry)\n      local cmd = git_command({ \"--no-pager\", \"diff\", \"--cached\", entry.value }, opts)\n      if opts.current_file then\n        table.insert(cmd, \"--\")\n        table.insert(cmd, opts.current_file)\n      end\n\n      putils.job_maker(cmd, self.state.bufnr, {\n        value = entry.value,\n        bufname = self.state.bufname,\n        cwd = opts.cwd,\n        callback = function(bufnr)\n          if api.nvim_buf_is_valid(bufnr) then\n            search_cb_jump(self, bufnr, opts.current_line)\n            putils.highlighter(bufnr, \"diff\", opts)\n          end\n        end,\n      })\n    end,\n  }\nend, {})\n\npreviewers.git_commit_diff_as_was = defaulter(function(opts)\n  return previewers.new_buffer_previewer {\n    title = \"Git Show Preview\",\n    teardown = search_teardown,\n\n    get_buffer_by_name = function(_, entry)\n      return entry.value\n    end,\n\n    define_preview = function(self, entry)\n      local cmd = git_command({ \"--no-pager\", \"show\" }, opts)\n      local cf = opts.current_file and Path:new(opts.current_file):make_relative(opts.cwd)\n      local value = cf and (entry.value .. \":\" .. cf) or entry.value\n      local ft = cf and putils.filetype_detect(value) or \"diff\"\n      table.insert(cmd, value)\n\n      putils.job_maker(cmd, self.state.bufnr, {\n        value = entry.value,\n        bufname = self.state.bufname,\n        cwd = opts.cwd,\n        callback = function(bufnr)\n          if api.nvim_buf_is_valid(bufnr) then\n            search_cb_jump(self, bufnr, opts.current_line)\n            putils.highlighter(bufnr, ft, opts)\n          end\n        end,\n      })\n    end,\n  }\nend, {})\n\npreviewers.git_commit_message = defaulter(function(opts)\n  local hl_map = {\n    \"TelescopeResultsIdentifier\",\n    \"TelescopePreviewUser\",\n    \"TelescopePreviewDate\",\n  }\n  return previewers.new_buffer_previewer {\n    title = \"Git Message\",\n    get_buffer_by_name = function(_, entry)\n      return entry.value\n    end,\n\n    define_preview = function(self, entry)\n      local cmd = git_command({ \"--no-pager\", \"log\", \"-n 1\", entry.value }, opts)\n\n      putils.job_maker(cmd, self.state.bufnr, {\n        value = entry.value,\n        bufname = self.state.bufname,\n        cwd = opts.cwd,\n        callback = function(bufnr, content)\n          if not content then\n            return\n          end\n          for k, v in ipairs(hl_map) do\n            local _, s = content[k]:find \"%s\"\n            if s then\n              utils.hl_range(bufnr, ns_previewer, v, { k - 1, s }, { k - 1, #content[k] })\n            end\n          end\n        end,\n      })\n    end,\n  }\nend, {})\n\npreviewers.git_file_diff = defaulter(function(opts)\n  return previewers.new_buffer_previewer {\n    title = \"Git File Diff Preview\",\n    get_buffer_by_name = function(_, entry)\n      return entry.value\n    end,\n\n    define_preview = function(self, entry)\n      if entry.status and (entry.status == \"??\" or entry.status == \"A \") then\n        local p = from_entry.path(entry, true, false)\n        if p == nil or p == \"\" then\n          return\n        end\n        conf.buffer_previewer_maker(p, self.state.bufnr, {\n          bufname = self.state.bufname,\n          winid = self.state.winid,\n          preview = opts.preview,\n          file_encoding = opts.file_encoding,\n        })\n      else\n        local cmd = git_command({ \"--no-pager\", \"diff\", \"HEAD\", \"--\", entry.value }, opts)\n        putils.job_maker(cmd, self.state.bufnr, {\n          value = entry.value,\n          bufname = self.state.bufname,\n          cwd = opts.cwd,\n          callback = function(bufnr)\n            if api.nvim_buf_is_valid(bufnr) then\n              putils.highlighter(bufnr, \"diff\", opts)\n            end\n          end,\n        })\n      end\n    end,\n  }\nend, {})\n\npreviewers.autocommands = defaulter(function(_)\n  return previewers.new_buffer_previewer {\n    title = \"Autocommands Preview\",\n    teardown = function(self)\n      if self.state and self.state.last_set_bufnr and api.nvim_buf_is_valid(self.state.last_set_bufnr) then\n        pcall(api.nvim_buf_clear_namespace, self.state.last_set_bufnr, ns_previewer, 0, -1)\n      end\n    end,\n\n    get_buffer_by_name = function(_, entry)\n      return entry.value.group_name\n    end,\n\n    define_preview = function(self, entry, status)\n      local results = vim.tbl_filter(function(x)\n        return x.value.group_name == entry.value.group_name\n      end, status.picker.finder.results)\n\n      if self.state.last_set_bufnr then\n        pcall(api.nvim_buf_clear_namespace, self.state.last_set_bufnr, ns_previewer, 0, -1)\n      end\n\n      local preview_winid = status.layout.preview and status.layout.preview.winid\n\n      local selected_row = 0\n      if self.state.bufname ~= entry.value.group_name then\n        local display = {}\n        table.insert(display, string.format(\" augroup: %s - [ %d entries ]\", entry.value.group_name, #results))\n        -- TODO: calculate banner width/string in setup()\n        -- TODO: get column characters to be the same HL group as border\n        table.insert(display, string.rep(\"─\", vim.fn.getwininfo(preview_winid)[1].width))\n\n        for idx, item in ipairs(results) do\n          if item == entry then\n            selected_row = idx\n          end\n          table.insert(\n            display,\n            string.format(\"  %-14s▏%-08s %s\", item.value.event, item.value.pattern, item.value.command)\n          )\n        end\n\n        vim.bo[self.state.bufnr].filetype = \"vim\"\n        api.nvim_buf_set_lines(self.state.bufnr, 0, -1, false, display)\n      else\n        for idx, item in ipairs(results) do\n          if item == entry then\n            selected_row = idx\n            break\n          end\n        end\n      end\n\n      utils.hl_range(\n        self.state.bufnr,\n        ns_previewer,\n        \"TelescopePreviewLine\",\n        { selected_row + 1, 0 },\n        { selected_row + 1, -1 }\n      )\n      -- set the cursor position after self.state.bufnr is connected to the\n      -- preview window (which is scheduled in new_buffer_previewer)\n      vim.schedule(function()\n        pcall(api.nvim_win_set_cursor, preview_winid, { selected_row, 0 })\n      end)\n\n      self.state.last_set_bufnr = self.state.bufnr\n    end,\n  }\nend, {})\n\npreviewers.highlights = defaulter(function(_)\n  return previewers.new_buffer_previewer {\n    title = \"Highlights Preview\",\n    teardown = function(self)\n      if self.state and self.state.last_set_bufnr and api.nvim_buf_is_valid(self.state.last_set_bufnr) then\n        api.nvim_buf_clear_namespace(self.state.last_set_bufnr, ns_previewer, 0, -1)\n      end\n    end,\n\n    get_buffer_by_name = function()\n      return \"highlights\"\n    end,\n\n    define_preview = function(self, entry)\n      if not self.state.bufname then\n        local output = utils.split_lines(vim.fn.execute \"highlight\")\n        local hl_groups = {}\n        for _, v in ipairs(output) do\n          if v ~= \"\" then\n            if v:sub(1, 1) == \" \" then\n              local part_of_old = v:match \"%s+(.*)\"\n              hl_groups[#hl_groups] = hl_groups[#hl_groups] .. part_of_old\n            else\n              table.insert(hl_groups, v)\n            end\n          end\n        end\n\n        api.nvim_buf_set_lines(self.state.bufnr, 0, -1, false, hl_groups)\n        for k, v in ipairs(hl_groups) do\n          local startPos = string.find(v, \"xxx\", 1, true) - 1\n          local endPos = startPos + 3\n          local hlgroup = string.match(v, \"([^ ]*)%s+.*\")\n          pcall(utils.hl_range, self.state.bufnr, 0, hlgroup, { k - 1, startPos }, { k - 1, endPos })\n        end\n      end\n\n      vim.schedule(function()\n        api.nvim_buf_call(self.state.bufnr, function()\n          vim.cmd \"keepjumps norm! gg\"\n          vim.fn.search(\"^\" .. entry.value .. \" \")\n          local lnum = api.nvim_win_get_cursor(self.state.winid)[1]\n          -- That one is actually a match but its better to use it like that then matchadd\n          pcall(api.nvim_buf_clear_namespace, self.state.bufnr, ns_previewer, 0, -1)\n          utils.hl_range(\n            self.state.bufnr,\n            ns_previewer,\n            \"TelescopePreviewMatch\",\n            { lnum - 1, 0 },\n            { lnum - 1, #entry.value }\n          )\n          -- we need to zz after the highlighting otherwise highlighting doesnt work\n          vim.cmd \"norm! zz\"\n        end)\n      end)\n    end,\n  }\nend, {})\n\npreviewers.pickers = defaulter(function(_)\n  local ns_telescope_multiselection = api.nvim_create_namespace \"telescope_mulitselection\"\n  local get_row = function(picker, preview_height, index)\n    if picker.sorting_strategy == \"ascending\" then\n      return index - 1\n    else\n      return preview_height - index\n    end\n  end\n  return previewers.new_buffer_previewer {\n\n    dyn_title = function(_, entry)\n      if entry.value.default_text and entry.value.default_text ~= \"\" then\n        return string.format(\"%s ─ %s\", entry.value.prompt_title, entry.value.default_text)\n      end\n      return entry.value.prompt_title\n    end,\n\n    get_buffer_by_name = function(_, entry)\n      return tostring(entry.value.prompt_bufnr)\n    end,\n\n    teardown = function(self)\n      if self.state and self.state.last_set_bufnr and api.nvim_buf_is_valid(self.state.last_set_bufnr) then\n        api.nvim_buf_clear_namespace(self.state.last_set_bufnr, ns_telescope_multiselection, 0, -1)\n      end\n    end,\n\n    define_preview = function(self, entry)\n      api.nvim_buf_call(self.state.bufnr, function()\n        local ns_telescope_entry = api.nvim_create_namespace \"telescope_entry\"\n        local preview_height = api.nvim_win_get_height(self.state.winid)\n\n        if self.state.bufname then\n          return\n        end\n\n        local picker = entry.value\n        -- prefill buffer to be able to set lines individually\n        local placeholder = utils.repeated_table(preview_height, \"\")\n        api.nvim_buf_set_lines(self.state.bufnr, 0, -1, false, placeholder)\n\n        for index = 1, math.min(preview_height, picker.manager:num_results()) do\n          local row = get_row(picker, preview_height, index)\n          local e = picker.manager:get_entry(index)\n\n          local display, display_highlight\n          -- if-clause as otherwise function return values improperly unpacked\n          if type(e.display) == \"function\" then\n            display, display_highlight = e:display()\n          else\n            display = e.display\n          end\n\n          api.nvim_buf_set_lines(self.state.bufnr, row, row + 1, false, { display })\n\n          if display_highlight ~= nil then\n            for _, hl_block in ipairs(display_highlight) do\n              utils.hl_range(\n                self.state.bufnr,\n                ns_telescope_entry,\n                hl_block[2],\n                { row, hl_block[1][1] },\n                { row, hl_block[1][2] }\n              )\n            end\n          end\n          if picker._multi:is_selected(e) then\n            utils.hl_range(\n              self.state.bufnr,\n              ns_telescope_multiselection,\n              \"TelescopeMultiSelection\",\n              { row, 0 },\n              { row, -1 }\n            )\n          end\n        end\n      end)\n    end,\n  }\nend, {})\n\npreviewers.display_content = defaulter(function(_)\n  return previewers.new_buffer_previewer {\n    define_preview = function(self, entry)\n      assert(\n        type(entry.preview_command) == \"function\",\n        \"entry must provide a preview_command function which will put the content into the buffer\"\n      )\n      api.nvim_buf_call(self.state.bufnr, function()\n        entry.preview_command(entry, self.state.bufnr)\n      end)\n    end,\n  }\nend, {})\n\nreturn previewers\n"
  },
  {
    "path": "lua/telescope/previewers/init.lua",
    "content": "---@tag telescope.previewers\n---@config { [\"module\"] = \"telescope.previewers\" }\n\n---@brief [[\n--- Provides a Previewer table that has to be implemented by each previewer.\n--- To achieve this, this module also provides two wrappers that abstract most\n--- of the work and make it really easy to create new previewers.\n---   - `previewers.new_termopen_previewer`\n---   - `previewers.new_buffer_previewer`\n---\n--- Furthermore, there are a collection of previewers already defined which\n--- can be used for every picker, as long as the entries of the picker provide\n--- the necessary fields. The more important ones are\n---   - `previewers.cat`\n---   - `previewers.vimgrep`\n---   - `previewers.qflist`\n---   - `previewers.vim_buffer_cat`\n---   - `previewers.vim_buffer_vimgrep`\n---   - `previewers.vim_buffer_qflist`\n---\n--- Previewers can be disabled for any builtin or custom picker by doing\n---   :Telescope find_files previewer=false\n---@brief ]]\n\nlocal Previewer = require \"telescope.previewers.previewer\"\nlocal term_previewer = require \"telescope.previewers.term_previewer\"\nlocal buffer_previewer = require \"telescope.previewers.buffer_previewer\"\n\nlocal previewers = {}\n\n--- This is the base table all previewers have to implement. It's possible to\n--- write a wrapper for this because most previewers need to have the same\n--- keys set.\n--- Examples of wrappers are:\n---   - `new_buffer_previewer`\n---   - `new_termopen_previewer`\n---\n--- To create a new table do following:\n---   - `local new_previewer = Previewer:new(opts)`\n---\n--- What `:new` expects is listed below\n---\n--- The interface provides the following set of functions. All of them, besides\n--- `new`, will be handled by telescope pickers.\n--- - `:new(opts)`\n--- - `:preview(entry, status)`\n--- - `:teardown()`\n--- - `:send_input(input)`\n--- - `:scroll_fn(direction)`\n--- - `:scroll_horizontal_fn(direction)`\n---\n--- `Previewer:new()` expects a table as input with following keys:\n---   - `setup` function(self): Will be called the first time preview will be\n---                           called.\n---   - `teardown` function(self): Will be called on clean up.\n---   - `preview_fn` function(self, entry, status): Will be called each time\n---                                                 a new entry was selected.\n---   - `title` function(self): Will return the static title of the previewer.\n---   - `dynamic_title` function(self, entry): Will return the dynamic title of\n---                                            the previewer. Will only be called\n---                                            when config value dynamic_preview_title\n---                                            is true.\n---   - `send_input` function(self, input): This is meant for\n---                                         `termopen_previewer` and it can be\n---                                         used to send input to the terminal\n---                                         application, like less.\n---   - `scroll_fn` function(self, direction): Used to make scrolling work.\n---   - `scroll_horizontal_fn` function(self, direction): Used to make\n---                                                       horizontal scrolling work.\npreviewers.Previewer = Previewer\n\n--- A shorthand for creating a new Previewer.\n--- The provided table will be forwarded to `Previewer:new(...)`\npreviewers.new = function(...)\n  return Previewer:new(...)\nend\n\n--- Is a wrapper around Previewer and helps with creating a new\n--- `termopen_previewer`.\n---\n--- It requires you to specify one table entry `get_command(entry, status)`.\n--- This `get_command` function has to return the terminal command that will be\n--- executed for each entry. Example:\n--- <code>\n---   get_command = function(entry, status)\n---     return { 'bat', entry.path }\n---   end\n--- </code>\n---\n--- Additionally you can define:\n--- - `title` a static title for example \"File Preview\"\n--- - `dyn_title(self, entry)` a dynamic title function which gets called\n--- when config value `dynamic_preview_title = true`\n--- - `env` table: define environment variables to forward to the terminal\n---    process. Example:\n---   - `{ ['PAGER'] = '', ['MANWIDTH'] = 50 }`\n---\n--- It's an easy way to get your first previewer going and it integrates well\n--- with `bat` and `less`. Providing out of the box scrolling if the command\n--- uses less.\n---\n--- Furthermore, if `env` is not set, it will forward all `config.set_env` environment variables to\n--- that terminal process.\npreviewers.new_termopen_previewer = term_previewer.new_termopen_previewer\n\n--- Provides a `termopen_previewer` which has the ability to display files.\n--- It will always show the top of the file and has support for\n--- `bat`(prioritized) and `cat`. Each entry has to provide either the field\n--- `path` or `filename` in order to make this previewer work.\n---\n--- The preferred way of using this previewer is like this\n--- `require('telescope.config').values.cat_previewer`\n--- This will respect user configuration and will use `buffer_previewers` in\n--- case it's configured that way.\npreviewers.cat = term_previewer.cat\n\n--- Provides a `termopen_previewer` which has the ability to display files at\n--- the provided line. It has support for `bat`(prioritized) and `cat`.\n--- Each entry has to provide either the field `path` or `filename` and\n--- a `lnum` field in order to make this previewer work.\n---\n--- The preferred way of using this previewer is like this\n--- `require('telescope.config').values.grep_previewer`\n--- This will respect user configuration and will use `buffer_previewers` in\n--- case it's configured that way.\npreviewers.vimgrep = term_previewer.vimgrep\n\n--- Provides a `termopen_previewer` which has the ability to display files at\n--- the provided line or range. It has support for `bat`(prioritized) and\n--- `cat`. Each entry has to provide either the field `path` or `filename`,\n--- `lnum` and a `start` and `finish` range in order to make this previewer\n--- work.\n---\n--- The preferred way of using this previewer is like this\n--- `require('telescope.config').values.qflist_previewer`\n--- This will respect user configuration and will use buffer previewers in\n--- case it's configured that way.\npreviewers.qflist = term_previewer.qflist\n\n--- An interface to instantiate a new `buffer_previewer`.\n--- That means that the content actually lives inside a vim buffer which\n--- enables us more control over the actual content. For example, we can\n--- use `vim.fn.search` to jump to a specific line or reuse buffers/already\n--- opened files more easily.\n--- This interface is more complex than `termopen_previewer` but offers more\n--- flexibility over your content.\n--- It was designed to display files but was extended to also display the\n--- output of terminal commands.\n---\n--- In the following options, state table and general tips are mentioned to\n--- make your experience with this previewer more seamless.\n---\n---\n--- options:\n---   - `define_preview = function(self, entry, status)` (required)\n---     Is called for each selected entry, after each selection_move\n---     (up or down) and is meant to handle things like reading file,\n---     jump to line or attach a highlighter.\n---   - `setup = function(self)` (optional)\n---     Is called once at the beginning, before the preview for the first\n---     entry is displayed. You can return a table of vars that will be\n---     available in `self.state` in each `define_preview` call.\n---   - `teardown = function(self)` (optional)\n---     Will be called at the end, when the picker is being closed and is\n---     meant to clean up everything that was allocated by the previewer.\n---     The `buffer_previewer` will automatically clean up all created buffers.\n---     So you only need to handle things that were introduced by you.\n---   - `keep_last_buf = true` (optional)\n---     Will not delete the last selected buffer. This would allow you to\n---     reuse that buffer in the select action. For example, that buffer can\n---     be opened in a new split, rather than recreating that buffer in\n---     an action. To access the last buffer number:\n---     `require('telescope.state').get_global_key(\"last_preview_bufnr\")`\n---   - `get_buffer_by_name = function(self, entry)`\n---     Allows you to set a unique name for each buffer. This is used for\n---     caching purposes. `self.state.bufname` will be nil if the entry was\n---     never loaded or the unique name when it was loaded once. For example,\n---     useful if you have one file but multiple entries. This happens for grep\n---     and lsp builtins. So to make the cache work only load content if\n---     `self.state.bufname ~= entry.your_unique_key`\n---   - `title` a static title for example \"File Preview\"\n---   - `dyn_title(self, entry)` a dynamic title function which gets called\n---     when config value `dynamic_preview_title = true`\n---\n--- `self.state` table:\n---   - `self.state.bufnr`\n---     Is the current buffer number, in which you have to write the loaded\n---     content.\n---     Don't create a buffer yourself, otherwise it's not managed by the\n---     buffer_previewer interface and you will probably be better off\n---     writing your own interface.\n---   - self.state.winid\n---     Current window id. Useful if you want to set the cursor to a provided\n---     line number.\n---   - self.state.bufname\n---     Will return the current buffer name, if `get_buffer_by_name` is\n---     defined. nil will be returned if the entry was never loaded or when\n---     `get_buffer_by_name` is not set.\n---\n--- Tips:\n---   - If you want to display content of a terminal job, use:\n---     `require('telescope.previewers.utils').job_maker(cmd, bufnr, opts)`\n---       - `cmd` table: for example { 'git', 'diff', entry.value }\n---       - `bufnr` number: in which the content will be written\n---       - `opts` table: with following keys\n---         - `bufname` string: used for cache\n---         - `value` string: used for cache\n---         - `mode` string: either \"insert\" or \"append\". \"insert\" is default\n---         - `env` table: define environment variables. Example:\n---           - `{ ['PAGER'] = '', ['MANWIDTH'] = 50 }`\n---         - `cwd` string: define current working directory for job\n---         - `callback` function(bufnr, content): will be called when job\n---           is done. Content will be nil if job is already loaded.\n---           So you can do highlighting only the first time the previewer\n---           is created for that entry.\n---           Use the returned `bufnr` and not `self.state.bufnr` in callback,\n---           because state can already be changed at this point in time.\n---   - If you want to attach a highlighter use:\n---     - `require('telescope.previewers.utils').highlighter(bufnr, ft)`\n---       - This will prioritize tree sitter highlighting if available for\n---         environment and language.\n---     - `require('telescope.previewers.utils').regex_highlighter(bufnr, ft)`\n---     - `require('telescope.previewers.utils').ts_highlighter(bufnr, ft)`\n---   - If you want to use `vim.fn.search` or similar you need to run it in\n---     that specific buffer context. Do\n--- <code>\n---       vim.api.nvim_buf_call(bufnr, function()\n---         -- for example `search` and `matchadd`\n---       end)\n--- </code>\n---     to achieve that.\n---   - If you want to read a file into the buffer it's best to use\n---     `buffer_previewer_maker`. But access this function with\n---     `require('telescope.config').values.buffer_previewer_maker`\n---     because it can be redefined by users.\npreviewers.new_buffer_previewer = buffer_previewer.new_buffer_previewer\n\n--- A universal way of reading a file into a buffer previewer.\n--- It handles async reading, cache, highlighting, displaying directories\n--- and provides a callback which can be used, to jump to a line in the buffer.\n---@param filepath string: String to the filepath, will be expanded\n---@param bufnr number: Where the content will be written\n---@param opts table: keys: `use_ft_detect`, `bufname` and `callback`\npreviewers.buffer_previewer_maker = buffer_previewer.file_maker\n\n--- A previewer that is used to display a file. It uses the `buffer_previewer`\n--- interface and won't jump to the line. To integrate this one into your\n--- own picker make sure that the field `path` or `filename` is set for\n--- each entry.\n--- The preferred way of using this previewer is like this\n--- `require('telescope.config').values.file_previewer`\n--- This will respect user configuration and will use `termopen_previewer` in\n--- case it's configured that way.\npreviewers.vim_buffer_cat = buffer_previewer.cat\n\n--- A previewer that is used to display a file and jump to the provided line.\n--- It uses the `buffer_previewer` interface. To integrate this one into your\n--- own picker make sure that the field `path` or `filename` and `lnum` is set\n--- in each entry. If the latter is not present, it will default to the first\n--- line. Additionally, `lnend`, `col` and `colend` can be set to highlight a\n--- text range instead of a single line. All line/column values are 1-indexed.\n--- The preferred way of using this previewer is like this\n--- `require('telescope.config').values.grep_previewer`\n--- This will respect user configuration and will use `termopen_previewer` in\n--- case it's configured that way.\npreviewers.vim_buffer_vimgrep = buffer_previewer.vimgrep\n\n--- Is the same as `vim_buffer_vimgrep` and only exists for consistency with\n--- `term_previewers`.\n---\n--- The preferred way of using this previewer is like this\n--- `require('telescope.config').values.qflist_previewer`\n--- This will respect user configuration and will use `termopen_previewer` in\n--- case it's configured that way.\npreviewers.vim_buffer_qflist = buffer_previewer.qflist\n\n--- A previewer that shows a log of a branch as graph\npreviewers.git_branch_log = buffer_previewer.git_branch_log\n\n--- A previewer that shows a diff of a stash\npreviewers.git_stash_diff = buffer_previewer.git_stash_diff\n\n--- A previewer that shows a diff of a commit to a parent commit.<br>\n--- The run command is `git --no-pager diff SHA^! -- $CURRENT_FILE`\n---\n--- The current file part is optional. So is only uses it with bcommits.\npreviewers.git_commit_diff_to_parent = buffer_previewer.git_commit_diff_to_parent\n\n--- A previewer that shows a diff of a commit to head.<br>\n--- The run command is `git --no-pager diff --cached $SHA -- $CURRENT_FILE`\n---\n--- The current file part is optional. So is only uses it with bcommits.\npreviewers.git_commit_diff_to_head = buffer_previewer.git_commit_diff_to_head\n\n--- A previewer that shows a diff of a commit as it was.<br>\n--- The run command is `git --no-pager show $SHA:$CURRENT_FILE` or `git --no-pager show $SHA`\npreviewers.git_commit_diff_as_was = buffer_previewer.git_commit_diff_as_was\n\n--- A previewer that shows the commit message of a diff.<br>\n--- The run command is `git --no-pager log -n 1 $SHA`\npreviewers.git_commit_message = buffer_previewer.git_commit_message\n\n--- A previewer that shows the current diff of a file. Used in git_status.<br>\n--- The run command is `git --no-pager diff $FILE`\npreviewers.git_file_diff = buffer_previewer.git_file_diff\n\npreviewers.ctags = buffer_previewer.ctags\npreviewers.builtin = buffer_previewer.builtin\npreviewers.help = buffer_previewer.help\npreviewers.man = buffer_previewer.man\npreviewers.autocommands = buffer_previewer.autocommands\npreviewers.highlights = buffer_previewer.highlights\npreviewers.pickers = buffer_previewer.pickers\n\n--- A deprecated way of displaying content more easily. Was written at a time,\n--- where the buffer_previewer interface wasn't present. Nowadays it's easier\n--- to just use this. We will keep it around for backwards compatibility\n--- because some extensions use it.\n--- It doesn't use cache or some other clever tricks.\npreviewers.display_content = buffer_previewer.display_content\n\nreturn previewers\n"
  },
  {
    "path": "lua/telescope/previewers/previewer.lua",
    "content": "local utils = require \"telescope.utils\"\n\nlocal Previewer = {}\nPreviewer.__index = Previewer\n\nlocal force_function_wrap = function(value)\n  if value ~= nil then\n    if type(value) ~= \"function\" then\n      return function()\n        return tostring(value)\n      end\n    else\n      return value\n    end\n  end\nend\n\nfunction Previewer:new(opts)\n  opts = opts or {}\n\n  return setmetatable({\n    state = nil,\n    _title_fn = force_function_wrap(opts.title),\n    _dyn_title_fn = force_function_wrap(opts.dyn_title),\n    _setup_func = opts.setup,\n    _teardown_func = opts.teardown,\n    _send_input = opts.send_input,\n    _scroll_fn = opts.scroll_fn,\n    _scroll_horizontal_fn = opts.scroll_horizontal_fn,\n    preview_fn = opts.preview_fn,\n    _empty_bufnr = nil,\n  }, Previewer)\nend\n\nfunction Previewer:preview(entry, status)\n  if not entry then\n    if not self._empty_bufnr then\n      self._empty_bufnr = vim.api.nvim_create_buf(false, true)\n    end\n\n    if vim.api.nvim_buf_is_valid(self._empty_bufnr) then\n      vim.api.nvim_win_set_buf(status.layout.preview.winid, self._empty_bufnr)\n    end\n    return\n  end\n\n  if not self.state then\n    if self._setup_func then\n      self.state = self:_setup_func(status)\n    else\n      self.state = {}\n    end\n  end\n\n  return self:preview_fn(entry, status)\nend\n\nfunction Previewer:title(entry, dynamic)\n  if dynamic == true and self._dyn_title_fn ~= nil then\n    if entry == nil then\n      if self._title_fn ~= nil then\n        return self:_title_fn()\n      else\n        return \"\"\n      end\n    end\n    return self:_dyn_title_fn(entry)\n  end\n  if self._title_fn ~= nil then\n    return self:_title_fn()\n  end\nend\n\nfunction Previewer:teardown()\n  if self._empty_bufnr then\n    utils.buf_delete(self._empty_bufnr)\n  end\n  if self._teardown_func then\n    self:_teardown_func()\n  end\nend\n\nfunction Previewer:send_input(input)\n  if self._send_input then\n    self:_send_input(input)\n  else\n    utils.notify(\"previewer.send_input\", { msg = \"not defined for this previewer\", level = \"ERROR\" })\n  end\nend\n\nfunction Previewer:scroll_fn(direction)\n  if self._scroll_fn then\n    self:_scroll_fn(direction)\n  else\n    utils.notify(\"previewer.scroll_fn\", { msg = \"not defined for this previewer\", level = \"ERROR\" })\n  end\nend\n\nfunction Previewer:scroll_horizontal_fn(direction)\n  if self._scroll_horizontal_fn then\n    self:_scroll_horizontal_fn(direction)\n  else\n    utils.notify(\"previewer.scroll_horizontal\", { msg = \"not defined for this previewer\", level = \"ERROR\" })\n  end\nend\n\nreturn Previewer\n"
  },
  {
    "path": "lua/telescope/previewers/term_previewer.lua",
    "content": "local api = vim.api\n\nlocal conf = require(\"telescope.config\").values\nlocal utils = require \"telescope.utils\"\nlocal Path = require \"plenary.path\"\nlocal from_entry = require \"telescope.from_entry\"\nlocal Previewer = require \"telescope.previewers.previewer\"\nlocal putil = require \"telescope.previewers.utils\"\n\nlocal defaulter = utils.make_default_callable\n\nlocal previewers = {}\n\n-- TODO: Should play with these some more, ty @clason\nlocal bat_options = { \"--style=plain\", \"--color=always\", \"--paging=always\" }\nlocal has_less = (vim.fn.executable \"less\" == 1) and conf.use_less\n\nlocal get_file_stat = function(filename)\n  return vim.uv.fs_stat(utils.path_expand(filename)) or {}\nend\n\nlocal list_dir = (function()\n  if vim.fn.has \"win32\" == 1 then\n    return function(dirname)\n      return { \"cmd.exe\", \"/c\", \"dir\", utils.path_expand(dirname) }\n    end\n  else\n    return function(dirname)\n      return { \"ls\", \"-la\", utils.path_expand(dirname) }\n    end\n  end\nend)()\n\nlocal bat_maker = function(filename, lnum, start, finish)\n  if get_file_stat(filename).type == \"directory\" then\n    return list_dir(filename)\n  end\n\n  local command = { \"bat\" }\n\n  if lnum then\n    vim.list_extend(command, { \"--highlight-line\", lnum })\n  end\n\n  if has_less then\n    if start then\n      vim.list_extend(command, { \"--pager\", string.format(\"less -RS +%s\", start) })\n    else\n      vim.list_extend(command, { \"--pager\", \"less -RS\" })\n    end\n  else\n    if start and finish then\n      vim.list_extend(command, { \"-r\", string.format(\"%s:%s\", start, finish) })\n    end\n  end\n\n  return utils.flatten {\n    command,\n    bat_options,\n    \"--\",\n    utils.path_expand(filename),\n  }\nend\n\nlocal cat_maker = function(filename, _, start, _)\n  if get_file_stat(filename).type == \"directory\" then\n    return list_dir(filename)\n  end\n\n  if 1 == vim.fn.executable \"file\" then\n    local mime_type = utils.get_os_command_output({ \"file\", \"--mime-type\", \"-b\", filename })[1]\n    if putil.binary_mime_type(mime_type) then\n      return { \"echo\", \"Binary file found. These files cannot be displayed!\" }\n    end\n  end\n\n  if has_less then\n    if start then\n      return { \"less\", \"-RS\", string.format(\"+%s\", start), utils.path_expand(filename) }\n    else\n      return { \"less\", \"-RS\", utils.path_expand(filename) }\n    end\n  else\n    return {\n      \"cat\",\n      \"--\",\n      utils.path_expand(filename),\n    }\n  end\nend\n\nlocal get_maker = function(opts)\n  local maker = opts.maker\n  if not maker and 1 == vim.fn.executable \"bat\" then\n    maker = bat_maker\n  elseif not maker and 1 == vim.fn.executable \"cat\" then\n    maker = cat_maker\n  end\n\n  if not maker then\n    error \"Needs maker\"\n  end\n\n  return maker\nend\n\npreviewers.new_termopen_previewer = function(opts)\n  opts = opts or {}\n\n  assert(opts.get_command, \"get_command is a required function\")\n  assert(not opts.preview_fn, \"preview_fn not allowed\")\n\n  local opt_setup = opts.setup\n  local opt_teardown = opts.teardown\n\n  local old_bufs = {}\n  local bufentry_table = {}\n  local term_ids = {}\n\n  local function get_term_id(self)\n    if self.state then\n      return self.state.termopen_id\n    end\n  end\n\n  local function get_bufnr(self)\n    if self.state then\n      return self.state.termopen_bufnr\n    end\n  end\n\n  local function set_term_id(self, value)\n    if self.state and term_ids[self.state.termopen_bufnr] == nil then\n      term_ids[self.state.termopen_bufnr] = value\n      self.state.termopen_id = value\n    end\n  end\n\n  local function set_bufnr(self, value)\n    if get_bufnr(self) then\n      table.insert(old_bufs, get_bufnr(self))\n    end\n    if self.state then\n      self.state.termopen_bufnr = value\n    end\n  end\n\n  local function get_bufnr_by_bufentry(self, value)\n    if self.state then\n      return bufentry_table[value]\n    end\n  end\n\n  local function set_bufentry(self, value)\n    if self.state and value then\n      bufentry_table[value] = get_bufnr(self)\n    end\n  end\n\n  function opts.setup(self)\n    local state = {}\n    if opt_setup then\n      state = vim.tbl_deep_extend(\"force\", state, opt_setup(self))\n    end\n    return state\n  end\n\n  function opts.teardown(self)\n    if opt_teardown then\n      opt_teardown(self)\n    end\n\n    set_bufnr(self, nil)\n    set_bufentry(self, nil)\n\n    for _, bufnr in ipairs(old_bufs) do\n      local term_id = term_ids[bufnr]\n      if term_id and utils.job_is_running(term_id) then\n        vim.fn.jobstop(term_id)\n      end\n      utils.buf_delete(bufnr)\n    end\n    bufentry_table = {}\n  end\n\n  function opts.preview_fn(self, entry, status)\n    local preview_winid = status.layout.preview and status.layout.preview.winid\n    if get_bufnr(self) == nil then\n      set_bufnr(self, api.nvim_win_get_buf(preview_winid))\n    end\n\n    local prev_bufnr = get_bufnr_by_bufentry(self, entry)\n    if prev_bufnr then\n      set_bufnr(self, prev_bufnr)\n      utils.win_set_buf_noautocmd(preview_winid, self.state.termopen_bufnr)\n      self.state.termopen_id = term_ids[self.state.termopen_bufnr]\n    else\n      local bufnr = api.nvim_create_buf(false, true)\n      set_bufnr(self, bufnr)\n      utils.win_set_buf_noautocmd(preview_winid, bufnr)\n\n      local term_opts = {\n        cwd = opts.cwd or vim.uv.cwd(),\n        env = opts.env or conf.set_env,\n      }\n\n      local cmd = opts.get_command(entry, status)\n      if cmd then\n        api.nvim_buf_call(bufnr, function()\n          --TODO(clason): replace with jobstart when dropping support for Nvim 0.10\n          set_term_id(self, vim.fn.termopen(cmd, term_opts))\n        end)\n      end\n      set_bufentry(self, entry)\n    end\n  end\n\n  if not opts.send_input then\n    function opts.send_input(self, input)\n      local termcode = api.nvim_replace_termcodes(input, true, false, true)\n\n      local term_id = get_term_id(self)\n      if term_id then\n        if not utils.job_is_running(term_id) then\n          return\n        end\n\n        vim.fn.chansend(term_id, termcode)\n      end\n    end\n  end\n\n  if not opts.scroll_fn then\n    function opts.scroll_fn(self, direction)\n      if not self.state then\n        return\n      end\n\n      local input = direction > 0 and \"d\" or \"u\"\n      local count = math.abs(direction)\n\n      self:send_input(count .. input)\n    end\n  end\n\n  return Previewer:new(opts)\nend\n\npreviewers.cat = defaulter(function(opts)\n  opts = opts or {}\n\n  local maker = get_maker(opts)\n  local cwd = opts.cwd or vim.uv.cwd()\n\n  return previewers.new_termopen_previewer {\n    title = \"File Preview\",\n    dyn_title = function(_, entry)\n      return Path:new(from_entry.path(entry, false, false)):normalize(cwd)\n    end,\n\n    get_command = function(entry)\n      local p = from_entry.path(entry, true, false)\n      if p == nil or p == \"\" then\n        return\n      end\n\n      return maker(p)\n    end,\n  }\nend, {})\n\npreviewers.vimgrep = defaulter(function(opts)\n  opts = opts or {}\n\n  local maker = get_maker(opts)\n  local cwd = opts.cwd or vim.uv.cwd()\n\n  return previewers.new_termopen_previewer {\n    title = \"Grep Preview\",\n    dyn_title = function(_, entry)\n      return Path:new(from_entry.path(entry, false, false)):normalize(cwd)\n    end,\n\n    get_command = function(entry, status)\n      local win_id = status.layout.preview and status.layout.preview.winid\n      local height = api.nvim_win_get_height(win_id)\n\n      local p = from_entry.path(entry, true, false)\n      if p == nil or p == \"\" then\n        return\n      end\n      if entry.bufnr and (p == \"[No Name]\" or vim.bo[entry.bufnr].buftype ~= \"\") then\n        return\n      end\n\n      local lnum = entry.lnum or 0\n\n      local context = math.floor(height / 2)\n      local start = math.max(0, lnum - context)\n      local finish = lnum + context\n\n      return maker(p, lnum, start, finish)\n    end,\n  }\nend, {})\n\npreviewers.qflist = defaulter(function(opts)\n  opts = opts or {}\n\n  local maker = get_maker(opts)\n  local cwd = opts.cwd or vim.uv.cwd()\n\n  return previewers.new_termopen_previewer {\n    title = \"Grep Preview\",\n    dyn_title = function(_, entry)\n      return Path:new(from_entry.path(entry, false, false)):normalize(cwd)\n    end,\n\n    get_command = function(entry, status)\n      local win_id = status.layout.preview and status.layout.preview.winid\n      local height = api.nvim_win_get_height(win_id)\n\n      local p = from_entry.path(entry, true, false)\n      if p == nil or p == \"\" then\n        return\n      end\n      local lnum = entry.lnum\n\n      local start, finish\n      if entry.start and entry.finish then\n        start = entry.start\n        finish = entry.finish\n      else\n        local context = math.floor(height / 2)\n        start = math.max(0, lnum - context)\n        finish = lnum + context\n      end\n\n      return maker(p, lnum, start, finish)\n    end,\n  }\nend, {})\n\nreturn previewers\n"
  },
  {
    "path": "lua/telescope/previewers/utils.lua",
    "content": "local api = vim.api\n\nlocal ts_utils = require \"telescope.utils\"\nlocal strings = require \"plenary.strings\"\nlocal conf = require(\"telescope.config\").values\n\nlocal Job = require \"plenary.job\"\nlocal Path = require \"plenary.path\"\n\nlocal utils = {}\n\nlocal detect_from_shebang = function(p)\n  local s = p:readbyterange(0, 256)\n  if s then\n    local lines = ts_utils.split_lines(s)\n    return vim.filetype.match { contents = lines }\n  end\nend\n\nlocal parse_modeline = function(tail)\n  if tail:find \"vim:\" then\n    return tail:match \".*:ft=([^: ]*):.*$\" or \"\"\n  end\nend\n\nlocal detect_from_modeline = function(p)\n  local s = p:readbyterange(-256, 256)\n  if s then\n    local lines = ts_utils.split_lines(s)\n    local idx = lines[#lines] ~= \"\" and #lines or #lines - 1\n    if idx >= 1 then\n      return parse_modeline(lines[idx])\n    end\n  end\nend\n\nutils.filetype_detect = function(filepath)\n  if type(filepath) ~= string then\n    filepath = tostring(filepath)\n  end\n\n  local match = vim.filetype.match { filename = filepath }\n  if match and match ~= \"\" then\n    return match\n  end\n\n  local p = Path:new(filepath)\n  if p and p:is_file() then\n    match = detect_from_shebang(p)\n    if match and match ~= \"\" then\n      return match\n    end\n\n    match = detect_from_modeline(p)\n    if match and match ~= \"\" then\n      return match\n    end\n  end\nend\n\n-- API helper functions for buffer previewer\n--- Job maker for buffer previewer\nutils.job_maker = function(cmd, bufnr, opts)\n  opts = opts or {}\n  opts.mode = opts.mode or \"insert\"\n  -- bufname and value are optional\n  -- if passed, they will be use as the cache key\n  -- if any of them are missing, cache will be skipped\n  if opts.bufname ~= opts.value or not opts.bufname or not opts.value then\n    local command = table.remove(cmd, 1)\n    local writer = (function()\n      if opts.writer ~= nil then\n        local wcommand = table.remove(opts.writer, 1)\n        return Job:new {\n          command = wcommand,\n          args = opts.writer,\n          env = opts.env,\n          cwd = opts.cwd,\n        }\n      end\n    end)()\n\n    Job:new({\n      command = command,\n      args = cmd,\n      env = opts.env,\n      cwd = opts.cwd,\n      writer = writer,\n      on_exit = vim.schedule_wrap(function(j)\n        if not api.nvim_buf_is_valid(bufnr) then\n          return\n        end\n        if opts.mode == \"append\" then\n          api.nvim_buf_set_lines(bufnr, -1, -1, false, j:result())\n        elseif opts.mode == \"insert\" then\n          api.nvim_buf_set_lines(bufnr, 0, -1, false, j:result())\n        end\n        if opts.callback then\n          opts.callback(bufnr, j:result())\n        end\n      end),\n    }):start()\n  else\n    if opts.callback then\n      opts.callback(bufnr)\n    end\n  end\nend\n\nlocal function has_filetype(ft)\n  return ft and ft ~= \"\"\nend\n\n--- Attach default highlighter which will choose between regex and ts\nutils.highlighter = function(bufnr, ft, opts)\n  opts = vim.F.if_nil(opts, {})\n  opts.preview = vim.F.if_nil(opts.preview, {})\n  opts.preview.treesitter = (function()\n    if type(opts.preview) == \"table\" and opts.preview.treesitter then\n      return opts.preview.treesitter\n    end\n    if type(conf.preview) == \"table\" and conf.preview.treesitter then\n      return conf.preview.treesitter\n    end\n    if type(conf.preview) == \"boolean\" then\n      return conf.preview\n    end\n    -- We should never get here\n    return false\n  end)()\n\n  if type(opts.preview.treesitter) == \"boolean\" then\n    local temp = { enable = opts.preview.treesitter }\n    opts.preview.treesitter = temp\n  end\n\n  local ts_highlighting = (function()\n    if type(opts.preview.treesitter.enable) == \"table\" then\n      if vim.tbl_contains(opts.preview.treesitter.enable, ft) then\n        return true\n      end\n      return false\n    end\n\n    if vim.tbl_contains(vim.F.if_nil(opts.preview.treesitter.disable, {}), ft) then\n      return false\n    end\n\n    return opts.preview.treesitter.enable == nil or opts.preview.treesitter.enable == true\n  end)()\n\n  local ts_success\n  if ts_highlighting then\n    ts_success = utils.ts_highlighter(bufnr, ft)\n  end\n  if not ts_highlighting or ts_success == false then\n    utils.regex_highlighter(bufnr, ft)\n  end\nend\n\n--- Attach regex highlighter\nutils.regex_highlighter = function(bufnr, ft)\n  if has_filetype(ft) then\n    return pcall(api.nvim_set_option_value, \"syntax\", ft, { buf = bufnr })\n  end\n  return false\nend\n\n-- Attach ts highlighter\nutils.ts_highlighter = function(bufnr, ft)\n  if has_filetype(ft) then\n    local lang = vim.treesitter.language.get_lang(ft) or ft\n    if lang and ts_utils.has_ts_parser(lang) then\n      return vim.treesitter.start(bufnr, lang)\n    end\n  end\n  return false\nend\n\nutils.set_preview_message = function(bufnr, winid, message, fillchar)\n  fillchar = vim.F.if_nil(fillchar, \"╱\")\n  local height = api.nvim_win_get_height(winid)\n  local width = api.nvim_win_get_width(winid)\n  api.nvim_buf_set_lines(\n    bufnr,\n    0,\n    -1,\n    false,\n    ts_utils.repeated_table(height, table.concat(ts_utils.repeated_table(width, fillchar), \"\"))\n  )\n  local anon_ns = api.nvim_create_namespace \"\"\n  local padding = table.concat(ts_utils.repeated_table(#message + 4, \" \"), \"\")\n  local formatted_message = \"  \" .. message .. \"  \"\n  -- Populate lines table based on height\n  local lines = {}\n  if height == 1 then\n    lines[1] = formatted_message\n  else\n    for i = 1, math.min(height, 3), 1 do\n      if i % 2 == 0 then\n        lines[i] = formatted_message\n      else\n        lines[i] = padding\n      end\n    end\n  end\n  api.nvim_buf_set_extmark(bufnr, anon_ns, 0, 0, { end_line = height, hl_group = \"TelescopePreviewMessageFillchar\" })\n  local col = math.floor((width - strings.strdisplaywidth(formatted_message)) / 2)\n  for i, line in ipairs(lines) do\n    local line_pos = math.floor(height / 2) - 2 + i\n    api.nvim_buf_set_extmark(\n      bufnr,\n      anon_ns,\n      math.max(line_pos, 0),\n      0,\n      { virt_text = { { line, \"TelescopePreviewMessage\" } }, virt_text_pos = \"overlay\", virt_text_win_col = col }\n    )\n  end\nend\n\n--- Check if mime type is binary.\n--- NOT an exhaustive check, may get false negatives. Ideally should check\n--- filetype with `vim.filetype.match` or `filetype_detect` first for filetype\n--- info.\n---@param mime_type string\n---@return boolean\nutils.binary_mime_type = function(mime_type)\n  local type_, subtype = unpack(vim.split(mime_type, \"/\"))\n  if vim.tbl_contains({ \"text\", \"inode\" }, type_) then\n    return false\n  end\n  if vim.tbl_contains({ \"json\", \"javascript\" }, subtype) then\n    return false\n  end\n  return true\nend\n\nreturn utils\n"
  },
  {
    "path": "lua/telescope/sorters.lua",
    "content": "local log = require \"telescope.log\"\nlocal util = require \"telescope.utils\"\n\nlocal sorters = {}\n\nlocal ngram_highlighter = function(ngram_len, prompt, display)\n  local highlights = {}\n  display = display:lower()\n\n  for disp_index = 1, #display do\n    local char = display:sub(disp_index, disp_index + ngram_len - 1)\n    if prompt:find(char, 1, true) then\n      table.insert(highlights, {\n        start = disp_index,\n        finish = disp_index + ngram_len - 1,\n      })\n    end\n  end\n\n  return highlights\nend\n\nlocal FILTERED = -1\n\nlocal Sorter = {}\nSorter.__index = Sorter\n\n---@class Sorter\n--- Sorter sorts a list of results by return a single integer for a line,\n--- given a prompt\n---\n--- Lower number is better (because it's like a closer match)\n--- But, any number below 0 means you want that line filtered out.\n---@field scoring_function function: Function that has the interface: (sorter, prompt, line): number\n---@field tags table: Unique tags collected at filtering for tag completion\n---@field filter_function function: Function that can filter results\n---@field highlighter function: Highlights results to display them pretty\n---@field discard boolean: Whether this is a discardable style sorter or not.\n---@field score function: Override the score function if desired.\n---@field init function: Function to run when creating sorter\n---@field start function: Function to run on every new prompt\n---@field finish function: Function to run after every new prompt\n---@field destroy function: Functo to run when destroying sorter\nfunction Sorter:new(opts)\n  opts = opts or {}\n\n  return setmetatable({\n    score = opts.score,\n    state = {},\n    tags = opts.tags,\n\n    -- State management\n    init = opts.init,\n    start = opts.start,\n    finish = opts.finish,\n    destroy = opts.destroy,\n    _status = nil,\n\n    filter_function = opts.filter_function,\n    scoring_function = opts.scoring_function,\n    highlighter = opts.highlighter,\n    discard = opts.discard,\n    _discard_state = {\n      filtered = {},\n      prompt = \"\",\n    },\n  }, Sorter)\nend\n\nfunction Sorter:_init()\n  self._status = \"init\"\n  if self.init then\n    self:init()\n  end\nend\n\nfunction Sorter:_destroy()\n  self._status = \"destroy\"\n  if self.destroy then\n    self:destroy()\n  end\nend\n\n-- TODO: We could make this a bit smarter and cache results \"as we go\" and where they got filtered.\n--          Then when we hit backspace, we don't have to re-caculate everything.\n--          Prime did a lot of the hard work already, but I don't want to copy as much memory around\n--              as he did in his example.\n--              Example can be found in ./scratch/prime_prompt_cache.lua\nfunction Sorter:_start(prompt)\n  self._status = \"start\"\n  if self.start then\n    self:start(prompt)\n  end\n\n  if not self.discard then\n    return\n  end\n\n  local previous = self._discard_state.prompt\n  local len_previous = #previous\n\n  if #prompt < len_previous then\n    log.trace \"Reset discard because shorter prompt\"\n    self._discard_state.filtered = {}\n  elseif string.sub(prompt, 1, len_previous) ~= previous then\n    log.trace \"Reset discard no match\"\n    self._discard_state.filtered = {}\n  end\n\n  self._discard_state.prompt = prompt\nend\n\nfunction Sorter:_finish(prompt)\n  self._status = \"finish\"\n  if self.finish then\n    self:finish(prompt)\n  end\nend\n\n-- TODO: Consider doing something that makes it so we can skip the filter checks\n--          if we're not discarding. Also, that means we don't have to check otherwise as well :)\nfunction Sorter:score(prompt, entry, cb_add, cb_filter)\n  if not entry or not entry.ordinal then\n    return\n  end\n\n  if self._status and self._status ~= \"start\" then\n    return\n  end\n\n  local ordinal = entry.ordinal\n  if self:_was_discarded(prompt, ordinal) then\n    return cb_filter(entry)\n  end\n\n  local filter_score\n  if self.filter_function ~= nil then\n    if self.tags then\n      self.tags:insert(entry)\n    end\n    filter_score, prompt = self:filter_function(prompt, entry, cb_add, cb_filter)\n  end\n\n  if filter_score == FILTERED then\n    return cb_filter(entry)\n  end\n\n  local score = self:scoring_function(prompt or \"\", ordinal, entry, cb_add, cb_filter)\n  if score == FILTERED then\n    self:_mark_discarded(prompt, ordinal)\n    return cb_filter(entry)\n  end\n\n  if cb_add then\n    return cb_add(score, entry)\n  else\n    return score\n  end\nend\n\nfunction Sorter:_was_discarded(prompt, ordinal)\n  return self.discard and self._discard_state.filtered[ordinal]\nend\n\nfunction Sorter:_mark_discarded(prompt, ordinal)\n  if not self.discard then\n    return\n  end\n\n  self._discard_state.filtered[ordinal] = true\nend\n\nfunction sorters.new(...)\n  return Sorter:new(...)\nend\n\nsorters.Sorter = Sorter\n\nlocal make_cached_tail = function()\n  local os_sep = util.get_separator()\n  local match_string = \"[^\" .. os_sep .. \"]*$\"\n  return setmetatable({}, {\n    __index = function(t, k)\n      local tail = string.match(k, match_string)\n\n      rawset(t, k, tail)\n      return tail\n    end,\n  })\nend\n\nlocal make_cached_uppers = function()\n  return setmetatable({}, {\n    __index = function(t, k)\n      local obj = {}\n      for i = 1, #k do\n        local s_byte = k:byte(i, i)\n        if s_byte <= 90 and s_byte >= 65 then\n          obj[s_byte] = true\n        end\n      end\n\n      rawset(t, k, obj)\n      return obj\n    end,\n  })\nend\n\n-- TODO: Match on upper case words\n-- TODO: Match on last match\nsorters.get_fuzzy_file = function(opts)\n  opts = opts or {}\n\n  local ngram_len = opts.ngram_len or 2\n\n  local cached_ngrams = {}\n\n  local function overlapping_ngrams(s, n)\n    if cached_ngrams[s] and cached_ngrams[s][n] then\n      return cached_ngrams[s][n]\n    end\n\n    local R = {}\n    for i = 1, s:len() - n + 1 do\n      R[#R + 1] = s:sub(i, i + n - 1)\n    end\n\n    if not cached_ngrams[s] then\n      cached_ngrams[s] = {}\n    end\n\n    cached_ngrams[s][n] = R\n\n    return R\n  end\n\n  local cached_tails = make_cached_tail()\n  local cached_uppers = make_cached_uppers()\n\n  return Sorter:new {\n    scoring_function = function(_, prompt, line)\n      local N = #prompt\n\n      if N == 0 or N < ngram_len then\n        -- TODO: If the character is in the line,\n        -- then it should get a point or somethin.\n        return 1\n      end\n\n      local prompt_lower = prompt:lower()\n      local line_lower = line:lower()\n\n      local prompt_lower_ngrams = overlapping_ngrams(prompt_lower, ngram_len)\n\n      -- Contains the original string\n      local contains_string = line_lower:find(prompt_lower, 1, true)\n\n      local prompt_uppers = cached_uppers[prompt]\n      local line_uppers = cached_uppers[line]\n\n      local uppers_matching = 0\n      for k, _ in pairs(prompt_uppers) do\n        if line_uppers[k] then\n          uppers_matching = uppers_matching + 1\n        end\n      end\n\n      -- TODO: Consider case senstivity\n      local tail = cached_tails[line_lower]\n      local contains_tail = tail:find(prompt, 1, true)\n\n      local consecutive_matches = 0\n      local previous_match_index = 0\n      local match_count = 0\n\n      for i = 1, #prompt_lower_ngrams do\n        local match_start = line_lower:find(prompt_lower_ngrams[i], 1, true)\n        if match_start then\n          match_count = match_count + 1\n          if match_start > previous_match_index then\n            consecutive_matches = consecutive_matches + 1\n          end\n\n          previous_match_index = match_start\n        end\n      end\n\n      local tail_modifier = 1\n      if contains_tail then\n        tail_modifier = 2\n      end\n\n      local denominator = (\n        (10 * match_count / #prompt_lower_ngrams)\n        -- biases for shorter strings\n        + 3 * match_count * ngram_len / #line\n        + consecutive_matches\n        + N / (contains_string or (2 * #line))\n        -- + 30/(c1 or 2*N)\n        -- TODO: It might be possible that this too strongly correlates,\n        --          but it's unlikely for people to type capital letters without actually\n        --          wanting to do something with a capital letter in it.\n        + uppers_matching\n      ) * tail_modifier\n\n      if denominator == 0 or denominator ~= denominator then\n        return -1\n      end\n\n      if #prompt > 2 and denominator < 0.5 then\n        return -1\n      end\n\n      return 1 / denominator\n    end,\n\n    highlighter = opts.highlighter or function(_, prompt, display)\n      return ngram_highlighter(ngram_len, prompt, display)\n    end,\n  }\nend\n\nsorters.get_generic_fuzzy_sorter = function(opts)\n  opts = opts or {}\n\n  local ngram_len = opts.ngram_len or 2\n\n  local cached_ngrams = {}\n  local function overlapping_ngrams(s, n)\n    if cached_ngrams[s] and cached_ngrams[s][n] then\n      return cached_ngrams[s][n]\n    end\n\n    local R = {}\n    for i = 1, s:len() - n + 1 do\n      R[#R + 1] = s:sub(i, i + n - 1)\n    end\n\n    if not cached_ngrams[s] then\n      cached_ngrams[s] = {}\n    end\n\n    cached_ngrams[s][n] = R\n\n    return R\n  end\n\n  return Sorter:new {\n    -- self\n    -- prompt (which is the text on the line)\n    -- line (entry.ordinal)\n    -- entry (the whole entry)\n    scoring_function = function(_, prompt, line, _)\n      if prompt == 0 or #prompt < ngram_len then\n        return 1\n      end\n\n      local prompt_lower = prompt:lower()\n      local line_lower = line:lower()\n\n      local prompt_ngrams = overlapping_ngrams(prompt_lower, ngram_len)\n\n      local N = #prompt\n\n      local contains_string = line_lower:find(prompt_lower, 1, true)\n\n      local consecutive_matches = 0\n      local previous_match_index = 0\n      local match_count = 0\n\n      for i = 1, #prompt_ngrams do\n        local match_start = line_lower:find(prompt_ngrams[i], 1, true)\n        if match_start then\n          match_count = match_count + 1\n          if match_start > previous_match_index then\n            consecutive_matches = consecutive_matches + 1\n          end\n\n          previous_match_index = match_start\n        end\n      end\n\n      -- TODO: Copied from ashkan.\n      local denominator = (\n        (10 * match_count / #prompt_ngrams)\n        -- biases for shorter strings\n        -- TODO(ashkan): this can bias towards repeated finds of the same\n        -- subpattern with overlapping_ngrams\n        + 3 * match_count * ngram_len / #line\n        + consecutive_matches\n        + N / (contains_string or (2 * #line)) -- + 30/(c1 or 2*N)\n\n      )\n\n      if denominator == 0 or denominator ~= denominator then\n        return -1\n      end\n\n      if #prompt > 2 and denominator < 0.5 then\n        return -1\n      end\n\n      return 1 / denominator\n    end,\n\n    highlighter = opts.highlighter or function(_, prompt, display)\n      return ngram_highlighter(ngram_len, prompt, display)\n    end,\n  }\nend\n\nsorters.fuzzy_with_index_bias = function(opts)\n  opts = opts or {}\n  opts.ngram_len = 2\n\n  -- TODO: Probably could use a better sorter here.\n  local fuzzy_sorter = sorters.get_generic_fuzzy_sorter(opts)\n\n  return Sorter:new {\n    scoring_function = function(_, prompt, line, entry, cb_add, cb_filter)\n      local base_score = fuzzy_sorter:scoring_function(prompt, line, cb_add, cb_filter)\n\n      if base_score == FILTERED then\n        return FILTERED\n      end\n\n      if not base_score or base_score == 0 then\n        return entry.index\n      else\n        return math.min(math.pow(entry.index, 0.25), 2) * base_score\n      end\n    end,\n    highlighter = fuzzy_sorter.highlighter,\n  }\nend\n\n-- Sorter using the fzy algorithm\nsorters.get_fzy_sorter = function(opts)\n  opts = opts or {}\n  local fzy = opts.fzy_mod or require \"telescope.algos.fzy\"\n  local OFFSET = -fzy.get_score_floor()\n\n  return sorters.Sorter:new {\n    discard = true,\n\n    scoring_function = function(_, prompt, line)\n      -- Check for actual matches before running the scoring alogrithm.\n      if not fzy.has_match(prompt, line) then\n        return -1\n      end\n\n      local fzy_score = fzy.score(prompt, line)\n\n      -- The fzy score is -inf for empty queries and overlong strings.  Since\n      -- this function converts all scores into the range (0, 1), we can\n      -- convert these to 1 as a suitable \"worst score\" value.\n      if fzy_score == fzy.get_score_min() then\n        return 1\n      end\n\n      -- Poor non-empty matches can also have negative values. Offset the score\n      -- so that all values are positive, then invert to match the\n      -- telescope.Sorter \"smaller is better\" convention. Note that for exact\n      -- matches, fzy returns +inf, which when inverted becomes 0.\n      return 1 / (fzy_score + OFFSET)\n    end,\n\n    -- The fzy.positions function, which returns an array of string indices, is\n    -- compatible with telescope's conventions. It's moderately wasteful to\n    -- call call fzy.score(x,y) followed by fzy.positions(x,y): both call the\n    -- fzy.compute function, which does all the work. But, this doesn't affect\n    -- perceived performance.\n    highlighter = function(_, prompt, display)\n      return fzy.positions(prompt, display)\n    end,\n  }\nend\n\n-- TODO: Could probably do something nice where we check their conf\n--          and choose their default for this.\n--          But I think `fzy` is good default for now.\nsorters.highlighter_only = function(opts)\n  opts = opts or {}\n  local fzy = opts.fzy_mod or require \"telescope.algos.fzy\"\n\n  return Sorter:new {\n    scoring_function = function()\n      return 1\n    end,\n\n    highlighter = function(_, prompt, display)\n      return fzy.positions(prompt, display)\n    end,\n  }\nend\n\nsorters.empty = function()\n  return Sorter:new {\n    scoring_function = function()\n      return 1\n    end,\n  }\nend\n\n-- Bad & Dumb Sorter\nsorters.get_levenshtein_sorter = function()\n  return Sorter:new {\n    scoring_function = function(_, prompt, line)\n      return require \"telescope.algos.string_distance\"(prompt, line)\n    end,\n  }\nend\n\nlocal substr_highlighter = function(make_display)\n  return function(_, prompt, display)\n    local highlights = {}\n    display = make_display(prompt, display)\n\n    local search_terms = util.max_split(prompt, \"%s\")\n    local hl_start, hl_end\n\n    for _, word in pairs(search_terms) do\n      hl_start, hl_end = display:find(word, 1, true)\n      if hl_start then\n        table.insert(highlights, { start = hl_start, finish = hl_end })\n      end\n    end\n\n    return highlights\n  end\nend\n\nsorters.get_substr_matcher = function()\n  local make_display = vim.o.smartcase\n      and function(prompt, display)\n        local has_upper_case = not not prompt:match \"%u\"\n        return has_upper_case and display or display:lower()\n      end\n    or function(_, display)\n      return display:lower()\n    end\n\n  return Sorter:new {\n    highlighter = substr_highlighter(make_display),\n    scoring_function = function(_, prompt, _, entry)\n      if #prompt == 0 then\n        return 1\n      end\n\n      local display = make_display(prompt, entry.ordinal)\n\n      local search_terms = util.max_split(prompt, \"%s\")\n      for _, word in pairs(search_terms) do\n        if not display:find(word, 1, true) then\n          return -1\n        end\n      end\n\n      return entry.index\n    end,\n  }\nend\n\nlocal substr_matcher = function(_, prompt, line, _)\n  local display = line:lower()\n  local search_terms = util.max_split(prompt:lower(), \"%s\")\n  local matched = 0\n  local total_search_terms = 0\n  for _, word in pairs(search_terms) do\n    total_search_terms = total_search_terms + 1\n    if display:find(word, 1, true) then\n      matched = matched + 1\n    end\n  end\n\n  return matched == total_search_terms and 0 or FILTERED\nend\n\nlocal filter_function = function(opts)\n  local scoring_function = vim.F.if_nil(opts.filter_function, substr_matcher)\n  local tag = vim.F.if_nil(opts.tag, \"ordinal\")\n\n  return function(_, prompt, entry)\n    local filter = \"^(\" .. opts.delimiter .. \"(%S+)\" .. \"[\" .. opts.delimiter .. \"%s]\" .. \")\"\n    local matched = prompt:match(filter)\n\n    if matched == nil then\n      return 0, prompt\n    end\n    -- clear prompt of tag\n    prompt = prompt:sub(#matched + 1, -1)\n    local query = vim.trim(matched:gsub(opts.delimiter, \"\"))\n    return scoring_function(_, query, entry[tag], _), prompt\n  end\nend\n\nlocal function create_tag_set(tag)\n  tag = vim.F.if_nil(tag, \"ordinal\")\n  local set = {}\n  return setmetatable(set, {\n    __index = {\n      insert = function(set_, entry)\n        local value = entry[tag]\n        if not set_[value] then\n          set_[value] = true\n        end\n      end,\n    },\n  })\nend\n\nsorters.prefilter = function(opts)\n  local sorter = opts.sorter\n  opts.delimiter = vim.F.if_nil(opts.delimiter, \":\")\n  sorter._delimiter = opts.delimiter\n  sorter.tags = create_tag_set(opts.tag)\n  sorter.filter_function = filter_function(opts)\n  sorter._was_discarded = function()\n    return false\n  end\n  return sorter\nend\n\nreturn sorters\n"
  },
  {
    "path": "lua/telescope/state.lua",
    "content": "local state = {}\n\nTelescopeGlobalState = TelescopeGlobalState or {}\nTelescopeGlobalState.global = TelescopeGlobalState.global or {}\n\n--- Set the status for a particular prompt bufnr\nfunction state.set_status(prompt_bufnr, status)\n  TelescopeGlobalState[prompt_bufnr] = status\nend\n\nfunction state.set_global_key(key, value)\n  TelescopeGlobalState.global[key] = value\nend\n\nfunction state.get_global_key(key)\n  return TelescopeGlobalState.global[key]\nend\n\nfunction state.get_status(prompt_bufnr)\n  return TelescopeGlobalState[prompt_bufnr] or {}\nend\n\nfunction state.clear_status(prompt_bufnr)\n  state.set_status(prompt_bufnr, nil)\nend\n\nfunction state.get_existing_prompt_bufnrs()\n  local prompt_bufnrs = {}\n\n  for key, _ in pairs(TelescopeGlobalState) do\n    if type(key) == \"number\" then\n      table.insert(prompt_bufnrs, key)\n    end\n  end\n\n  return prompt_bufnrs\nend\n\nreturn state\n"
  },
  {
    "path": "lua/telescope/testharness/helpers.lua",
    "content": "local test_helpers = {}\n\ntest_helpers.get_picker = function()\n  local state = require \"telescope.state\"\n  return state.get_status(vim.api.nvim_get_current_buf()).picker\nend\n\ntest_helpers.get_results_bufnr = function()\n  local state = require \"telescope.state\"\n  return state.get_status(vim.api.nvim_get_current_buf()).layout.results.bufnr\nend\n\ntest_helpers.get_file = function()\n  return vim.fn.fnamemodify(vim.api.nvim_buf_get_name(0), \":t\")\nend\n\ntest_helpers.get_prompt = function()\n  return vim.api.nvim_buf_get_lines(0, 0, -1, false)[1]\nend\n\ntest_helpers.get_results = function()\n  return vim.api.nvim_buf_get_lines(test_helpers.get_results_bufnr(), 0, -1, false)\nend\n\ntest_helpers.get_best_result = function()\n  local results = test_helpers.get_results()\n  local picker = test_helpers.get_picker()\n\n  if picker.sorting_strategy == \"ascending\" then\n    return results[1]\n  else\n    return results[#results]\n  end\nend\n\ntest_helpers.get_selection = function()\n  local state = require \"telescope.state\"\n  return state.get_global_key \"selected_entry\"\nend\n\ntest_helpers.get_selection_value = function()\n  return test_helpers.get_selection().value\nend\n\ntest_helpers.make_globals = function()\n  GetFile = test_helpers.get_file -- luacheck: globals GetFile\n  GetPrompt = test_helpers.get_prompt -- luacheck: globals GetPrompt\n\n  GetResults = test_helpers.get_results -- luacheck: globals GetResults\n  GetBestResult = test_helpers.get_best_result -- luacheck: globals GetBestResult\n\n  GetSelection = test_helpers.get_selection -- luacheck: globals GetSelection\n  GetSelectionValue = test_helpers.get_selection_value -- luacheck: globals GetSelectionValue\nend\n\nreturn test_helpers\n"
  },
  {
    "path": "lua/telescope/testharness/init.lua",
    "content": "local assert = require \"luassert\"\n\nlocal Path = require \"plenary.path\"\n\nlocal tester = {}\ntester.debug = false\n\nlocal get_results_from_contents = function(content)\n  local nvim = vim.fn.jobstart(\n    { \"nvim\", \"--noplugin\", \"-u\", \"scripts/minimal_init.vim\", \"--headless\", \"--embed\" },\n    { rpc = true }\n  )\n\n  local result = vim.fn.rpcrequest(nvim, \"nvim_exec_lua\", content, {})\n  assert.are.same(true, result[1], vim.inspect(result))\n\n  local count = 0\n  while\n    vim.fn.rpcrequest(nvim, \"nvim_exec_lua\", \"return require('telescope.testharness.runner').state.done\", {}) ~= true\n  do\n    count = count + 1\n    vim.wait(100)\n\n    -- TODO: Could maybe wait longer, but it's annoying to wait if the test is going to timeout.\n    if count > 100 then\n      break\n    end\n  end\n\n  local state = vim.fn.rpcrequest(nvim, \"nvim_exec_lua\", \"return require('telescope.testharness.runner').state\", {})\n  vim.fn.jobstop(nvim)\n\n  assert.are.same(true, state.done, vim.inspect(state))\n\n  local result_table = {}\n  for _, v in ipairs(state.results) do\n    table.insert(result_table, v)\n  end\n\n  return result_table, state\nend\n\nlocal check_results = function(results, state)\n  assert(state, \"Must pass state\")\n\n  for _, v in ipairs(results) do\n    local assertion\n    if not v._type or v._type == \"are\" or v._type == \"_default\" then\n      assertion = assert.are.same\n    else\n      assertion = assert.are_not.same\n    end\n\n    -- TODO: I think it would be nice to be able to see the state,\n    -- but it clutters up the test output so much here.\n    --\n    -- So we would have to consider how to do that I think.\n    assertion(v.expected, v.actual, string.format(\"Test Case: %s // %s\", v.location, v.case))\n  end\nend\n\ntester.run_string = function(contents)\n  contents = [[\n    return (function()\n      local tester = require('telescope.testharness')\n      local runner = require('telescope.testharness.runner')\n      local helper = require('telescope.testharness.helpers')\n      helper.make_globals()\n      local ok, msg = pcall(function()\n        runner.log(\"Loading Test\")\n        ]] .. contents .. [[\n      end)\n      return {ok, msg or runner.state}\n    end)()\n  ]]\n\n  check_results(get_results_from_contents(contents))\nend\n\ntester.run_file = function(filename)\n  local file = \"./lua/tests/pickers/\" .. filename .. \".lua\"\n  local path = Path:new(file)\n\n  if not path:exists() then\n    assert.are.same(\"<An existing file>\", file)\n  end\n\n  local contents = string.format(\n    [[\n    return (function()\n      local runner = require('telescope.testharness.runner')\n      local helper = require('telescope.testharness.helpers')\n      helper.make_globals()\n      local ok, msg = pcall(function()\n        runner.log(\"Loading Test\")\n        return loadfile(\"%s\")()\n      end)\n      return {ok, msg or runner.state}\n    end)()\n  ]],\n    path:absolute()\n  )\n\n  check_results(get_results_from_contents(contents))\nend\n\ntester.not_ = function(val)\n  val._type = \"are_not\"\n  return val\nend\n\nreturn tester\n"
  },
  {
    "path": "lua/telescope/testharness/runner.lua",
    "content": "local builtin = require \"telescope.builtin\"\n\nlocal DELAY = vim.g.telescope_test_delay or 50\nlocal runner = {}\n\n-- State is test variable\nrunner.state = {\n  done = false,\n  results = {},\n  msgs = {},\n}\n\nlocal writer = function(val)\n  table.insert(runner.state.results, val)\nend\n\nlocal invalid_test_case = function(k)\n  error { case = k, expected = \"<a valid key>\", actual = k }\nend\n\nlocal _VALID_KEYS = {\n  post_typed = true,\n  post_close = true,\n}\n\nlocal replace_terms = function(input)\n  return vim.api.nvim_replace_termcodes(input, true, false, true)\nend\n\nrunner.nvim_feed = function(text, feed_opts)\n  feed_opts = feed_opts or \"m\"\n\n  vim.api.nvim_feedkeys(text, feed_opts, true)\nend\n\nlocal end_test_cases = function()\n  runner.state.done = true\nend\n\nlocal execute_test_case = function(location, key, spec)\n  local ok, actual = pcall(spec[2])\n\n  if not ok then\n    writer {\n      location = \"Error: \" .. location,\n      case = key,\n      expected = \"To succeed and return: \" .. tostring(spec[1]),\n      actual = actual,\n\n      _type = spec._type,\n    }\n\n    end_test_cases()\n  else\n    writer {\n      location = location,\n      case = key,\n      expected = spec[1],\n      actual = actual,\n\n      _type = spec._type,\n    }\n  end\n\n  return ok\nend\n\nrunner.log = function(msg)\n  table.insert(runner.state.msgs, msg)\nend\n\nrunner.picker = function(picker_name, input, test_cases, opts)\n  opts = opts or {}\n\n  for k, _ in pairs(test_cases) do\n    if not _VALID_KEYS[k] then\n      return invalid_test_case(k)\n    end\n  end\n\n  opts.on_complete = {\n    runner.create_on_complete(input, test_cases),\n  }\n\n  opts._on_error = function(self, msg)\n    runner.state.done = true\n    writer {\n      location = \"Error while running on complete\",\n      expected = \"To Work\",\n      actual = msg,\n    }\n  end\n\n  runner.log \"Starting picker\"\n  builtin[picker_name](opts)\n  runner.log \"Called picker\"\nend\n\nrunner.create_on_complete = function(input, test_cases)\n  input = replace_terms(input)\n\n  local actions = {}\n  for i = 1, #input do\n    local char = input:sub(i, i)\n    table.insert(actions, {\n      cb = function()\n        runner.log(\"Inserting char: \" .. char)\n        runner.nvim_feed(char, \"\")\n      end,\n      char = char,\n    })\n  end\n\n  return function()\n    local action\n\n    repeat\n      action = table.remove(actions, 1)\n      if action then\n        action.cb()\n      end\n    until not action or string.match(action.char, \"%g\")\n\n    if #actions > 0 then\n      return\n    end\n\n    vim.defer_fn(function()\n      if test_cases.post_typed then\n        for k, v in ipairs(test_cases.post_typed) do\n          if not execute_test_case(\"post_typed\", k, v) then\n            return\n          end\n        end\n      end\n\n      vim.defer_fn(function()\n        runner.nvim_feed(replace_terms \"<CR>\", \"\")\n\n        vim.defer_fn(function()\n          if test_cases.post_close then\n            for k, v in ipairs(test_cases.post_close) do\n              if not execute_test_case(\"post_close\", k, v) then\n                return\n              end\n            end\n          end\n\n          vim.defer_fn(end_test_cases, DELAY)\n        end, DELAY)\n      end, DELAY)\n    end, DELAY)\n  end\nend\n\nreturn runner\n"
  },
  {
    "path": "lua/telescope/themes.lua",
    "content": "-- Prototype Theme System (WIP)\n-- Currently certain designs need a number of parameters.\n--\n-- local opts = themes.get_dropdown { winblend = 3 }\n\n---@tag telescope.themes\n---@config { [\"module\"] = \"telescope.themes\" }\n\n---@brief [[\n--- Themes are ways to combine several elements of styling together.\n---\n--- They are helpful for managing the several different UI aspects for telescope and provide\n--- a simple interface for users to get a particular \"style\" of picker.\n---@brief ]]\n\nlocal themes = {}\n\n--- Dropdown style theme.\n---\n--- Usage:\n--- <code>\n---     local opts = {...} -- picker options\n---     local builtin = require('telescope.builtin')\n---     local themes = require('telescope.themes')\n---     builtin.find_files(themes.get_dropdown(opts))\n--- </code>\nfunction themes.get_dropdown(opts)\n  opts = opts or {}\n\n  local theme_opts = {\n    theme = \"dropdown\",\n\n    results_title = false,\n\n    sorting_strategy = \"ascending\",\n    layout_strategy = \"center\",\n    layout_config = {\n      preview_cutoff = 1, -- Preview should always show (unless previewer = false)\n\n      width = function(_, max_columns, _)\n        return math.min(max_columns, 80)\n      end,\n\n      height = function(_, _, max_lines)\n        return math.min(max_lines, 15)\n      end,\n    },\n\n    border = true,\n    borderchars = {\n      prompt = { \"─\", \"│\", \" \", \"│\", \"╭\", \"╮\", \"│\", \"│\" },\n      results = { \"─\", \"│\", \"─\", \"│\", \"├\", \"┤\", \"╯\", \"╰\" },\n      preview = { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"╯\", \"╰\" },\n    },\n  }\n  if opts.layout_config and opts.layout_config.prompt_position == \"bottom\" then\n    theme_opts.borderchars = {\n      prompt = { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"╯\", \"╰\" },\n      results = { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"┤\", \"├\" },\n      preview = { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"╯\", \"╰\" },\n    }\n  end\n\n  return vim.tbl_deep_extend(\"force\", theme_opts, opts)\nend\n\n--- Cursor style theme.\n---\n--- Usage:\n--- <code>\n---     local opts = {...} -- picker options\n---     local builtin = require('telescope.builtin')\n---     local themes = require('telescope.themes')\n---     builtin.find_files(themes.get_cursor(opts))\n--- </code>\nfunction themes.get_cursor(opts)\n  opts = opts or {}\n\n  local theme_opts = {\n    theme = \"cursor\",\n\n    sorting_strategy = \"ascending\",\n    results_title = false,\n    layout_strategy = \"cursor\",\n    layout_config = {\n      width = 80,\n      height = 9,\n    },\n    borderchars = {\n      prompt = { \"─\", \"│\", \" \", \"│\", \"╭\", \"╮\", \"│\", \"│\" },\n      results = { \"─\", \"│\", \"─\", \"│\", \"├\", \"┤\", \"╯\", \"╰\" },\n      preview = { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"╯\", \"╰\" },\n    },\n  }\n\n  return vim.tbl_deep_extend(\"force\", theme_opts, opts)\nend\n\n--- Ivy style theme.\n---\n--- Usage:\n--- <code>\n---     local opts = {...} -- picker options\n---     local builtin = require('telescope.builtin')\n---     local themes = require('telescope.themes')\n---     builtin.find_files(themes.get_ivy(opts))\n--- </code>\nfunction themes.get_ivy(opts)\n  opts = opts or {}\n\n  local theme_opts = {\n    theme = \"ivy\",\n\n    sorting_strategy = \"ascending\",\n\n    layout_strategy = \"bottom_pane\",\n    layout_config = {\n      height = 25,\n    },\n\n    border = true,\n    borderchars = {\n      prompt = { \"─\", \" \", \" \", \" \", \"─\", \"─\", \" \", \" \" },\n      results = { \" \" },\n      preview = { \"─\", \"│\", \"─\", \"│\", \"╭\", \"╮\", \"╯\", \"╰\" },\n    },\n  }\n  if opts.layout_config and opts.layout_config.prompt_position == \"bottom\" then\n    theme_opts.borderchars = {\n      prompt = { \" \", \" \", \"─\", \" \", \" \", \" \", \"─\", \"─\" },\n      results = { \"─\", \" \", \" \", \" \", \"─\", \"─\", \" \", \" \" },\n      preview = { \"─\", \" \", \"─\", \"│\", \"┬\", \"─\", \"─\", \"╰\" },\n    }\n  end\n\n  return vim.tbl_deep_extend(\"force\", theme_opts, opts)\nend\n\nreturn themes\n"
  },
  {
    "path": "lua/telescope/utils.lua",
    "content": "---@tag telescope.utils\n---@config { [\"module\"] = \"telescope.utils\" }\n\n---@brief [[\n--- Utilities for writing telescope pickers\n---@brief ]]\n\nlocal api = vim.api\n\nlocal Path = require \"plenary.path\"\nlocal Job = require \"plenary.job\"\n\nlocal log = require \"telescope.log\"\n\nlocal truncate = require(\"plenary.strings\").truncate\nlocal get_status = require(\"telescope.state\").get_status\n\nlocal utils = {}\n\nutils.iswin = vim.uv.os_uname().sysname == \"Windows_NT\"\nutils.nvim011 = vim.fn.has \"nvim-0.11\" == 1\n\n---TODO(clason): remove when dropping support for Nvim 0.10\nutils.hl_range = utils.nvim011 and vim.hl.range or vim.highlight.range\n\n---TODO(clason): remove when dropping support for Nvim 0.10\nutils.str_byteindex = utils.nvim011 and vim.str_byteindex or vim.lsp.util._str_byteindex_enc\n\n---TODO(clason): remove when dropping support for Nvim 0.10\n---@param k string\n---@param v any\n---@param ty type\nutils.validate = utils.nvim011 and vim.validate or function(k, v, ty)\n  vim.validate { [k] = { v, ty } }\nend\n\n---@param t table\n---@return table\nutils.flatten = function(t)\n  return vim.iter(t):flatten():totable()\nend\n\n--- Hybrid of `vim.fn.expand()` and custom `vim.fs.normalize()`\n---\n--- Paths starting with '%', '#' or '<' are expanded with `vim.fn.expand()`.\n--- Otherwise avoids using `vim.fn.expand()` due to its overly aggressive\n--- expansion behavior which can sometimes lead to errors or the creation of\n--- non-existent paths when dealing with valid absolute paths.\n---\n--- Other paths will have '~' and environment variables expanded.\n--- Unlike `vim.fs.normalize()`, backslashes are preserved. This has better\n--- compatibility with `plenary.path` and also avoids mangling valid Unix paths\n--- with literal backslashes.\n---\n--- Trailing slashes are trimmed. With the exception of root paths.\n--- eg. `/` on Unix or `C:\\` on Windows\n---\n---@param path string\n---@return string\nutils.path_expand = function(path)\n  utils.validate(\"path\", path, \"string\")\n\n  if utils.is_uri(path) then\n    return path\n  end\n\n  if path:match \"^[%%#<]\" then\n    path = vim.fn.expand(path)\n  end\n\n  if path:sub(1, 1) == \"~\" then\n    local home = vim.uv.os_homedir() or \"~\"\n    if home:sub(-1) == \"\\\\\" or home:sub(-1) == \"/\" then\n      home = home:sub(1, -2)\n    end\n    path = home .. path:sub(2)\n  end\n\n  path = path:gsub(\"%$([%w_]+)\", vim.uv.os_getenv)\n  path = path:gsub(\"/+\", \"/\")\n  if utils.iswin then\n    path = path:gsub(\"\\\\+\", \"\\\\\")\n    if path:match \"^%w:\\\\$\" then\n      return path\n    else\n      return (path:gsub(\"(.)\\\\$\", \"%1\"))\n    end\n  end\n  return (path:gsub(\"(.)/$\", \"%1\"))\nend\n\nutils.get_separator = function()\n  return Path.path.sep\nend\n\nutils.cycle = function(i, n)\n  return i % n == 0 and n or i % n\nend\n\nutils.get_lazy_default = function(x, defaulter, ...)\n  if x == nil then\n    return defaulter(...)\n  else\n    return x\n  end\nend\n\nutils.repeated_table = function(n, val)\n  local empty_lines = {}\n  for _ = 1, n do\n    table.insert(empty_lines, val)\n  end\n  return empty_lines\nend\n\nutils.filter_symbols = function(results, opts, post_filter)\n  local has_ignore = opts.ignore_symbols ~= nil\n  local has_symbols = opts.symbols ~= nil\n  local filtered_symbols\n\n  if has_symbols and has_ignore then\n    utils.notify(\"filter_symbols\", {\n      msg = \"Either opts.symbols or opts.ignore_symbols, can't process opposing options at the same time!\",\n      level = \"ERROR\",\n    })\n    return {}\n  elseif not (has_ignore or has_symbols) then\n    return results\n  elseif has_ignore then\n    if type(opts.ignore_symbols) == \"string\" then\n      opts.ignore_symbols = { opts.ignore_symbols }\n    end\n    if type(opts.ignore_symbols) ~= \"table\" then\n      utils.notify(\"filter_symbols\", {\n        msg = \"Please pass ignore_symbols as either a string or a list of strings\",\n        level = \"ERROR\",\n      })\n      return {}\n    end\n\n    opts.ignore_symbols = vim.tbl_map(string.lower, opts.ignore_symbols)\n    filtered_symbols = vim.tbl_filter(function(item)\n      return not vim.tbl_contains(opts.ignore_symbols, string.lower(item.kind))\n    end, results)\n  elseif has_symbols then\n    if type(opts.symbols) == \"string\" then\n      opts.symbols = { opts.symbols }\n    end\n    if type(opts.symbols) ~= \"table\" then\n      utils.notify(\"filter_symbols\", {\n        msg = \"Please pass filtering symbols as either a string or a list of strings\",\n        level = \"ERROR\",\n      })\n      return {}\n    end\n\n    opts.symbols = vim.tbl_map(string.lower, opts.symbols)\n    filtered_symbols = vim.tbl_filter(function(item)\n      return vim.tbl_contains(opts.symbols, string.lower(item.kind))\n    end, results)\n  end\n\n  if type(post_filter) == \"function\" then\n    filtered_symbols = post_filter(filtered_symbols)\n  end\n\n  if not vim.tbl_isempty(filtered_symbols) then\n    return filtered_symbols\n  end\n\n  -- print message that filtered_symbols is now empty\n  if has_symbols then\n    local symbols = table.concat(opts.symbols, \", \")\n    utils.notify(\"filter_symbols\", {\n      msg = string.format(\"%s symbol(s) were not part of the query results\", symbols),\n      level = \"WARN\",\n    })\n  elseif has_ignore then\n    local symbols = table.concat(opts.ignore_symbols, \", \")\n    utils.notify(\"filter_symbols\", {\n      msg = string.format(\"%s ignore_symbol(s) have removed everything from the query result\", symbols),\n      level = \"WARN\",\n    })\n  end\n  return {}\nend\n\nlocal path_filename_first = function(path, reverse_directories)\n  local dirs = vim.split(path, utils.get_separator())\n  local filename\n\n  if reverse_directories then\n    dirs = utils.reverse_table(dirs)\n    filename = table.remove(dirs, 1)\n  else\n    filename = table.remove(dirs, #dirs)\n  end\n\n  local tail = table.concat(dirs, utils.get_separator())\n  -- Trim prevents a top-level filename to have a trailing white space\n  local transformed_path = vim.trim(filename .. \" \" .. tail)\n  local path_style = { { { #filename, #transformed_path }, \"TelescopeResultsComment\" } }\n\n  return transformed_path, path_style\nend\n\nlocal calc_result_length = function(truncate_len)\n  local status = get_status(api.nvim_get_current_buf())\n  local len = api.nvim_win_get_width(status.layout.results.winid) - status.picker.selection_caret:len() - 2\n  return type(truncate_len) == \"number\" and len - truncate_len or len\nend\n\nlocal path_truncate = function(path, truncate_len, opts)\n  if opts.__length == nil then\n    opts.__length = calc_result_length(truncate_len)\n  end\n  if opts.__prefix == nil then\n    opts.__prefix = 0\n  end\n  return truncate(path, opts.__length - opts.__prefix, nil, -1)\nend\n\nlocal path_shorten = function(path, length, exclude)\n  if exclude ~= nil then\n    return Path:new(path):shorten(length, exclude)\n  else\n    return Path:new(path):shorten(length)\n  end\nend\n\nlocal path_abs = function(path, opts)\n  local cwd\n  if opts.cwd then\n    cwd = opts.cwd\n    if not vim.in_fast_event() then\n      cwd = utils.path_expand(opts.cwd)\n    end\n  else\n    cwd = vim.uv.cwd()\n  end\n  return Path:new(path):make_relative(cwd)\nend\n\n-- IMPORTANT: This function should have been a local function as it's only used\n-- in this file, but the code was already exported a long time ago. By making it\n-- local we would potential break consumers of this method.\nutils.path_smart = (function()\n  local paths = {}\n  local os_sep = utils.get_separator()\n  return function(filepath)\n    local final = filepath\n    if #paths ~= 0 then\n      local dirs = vim.split(filepath, os_sep)\n      local max = 1\n      for _, p in pairs(paths) do\n        if #p > 0 and p ~= filepath then\n          local _dirs = vim.split(p, os_sep)\n          for i = 1, math.min(#dirs, #_dirs) do\n            if (dirs[i] ~= _dirs[i]) and i > max then\n              max = i\n              break\n            end\n          end\n        end\n      end\n      if #dirs ~= 0 then\n        if max == 1 and #dirs >= 2 then\n          max = #dirs - 2\n        end\n        final = \"\"\n        for k, v in pairs(dirs) do\n          if k >= max - 1 then\n            final = final .. (#final > 0 and os_sep or \"\") .. v\n          end\n        end\n      end\n    end\n    if not paths[filepath] then\n      paths[filepath] = \"\"\n      table.insert(paths, filepath)\n    end\n    if final and final ~= filepath then\n      return \"..\" .. os_sep .. final\n    else\n      return filepath\n    end\n  end\nend)()\n\nutils.path_tail = (function()\n  local os_sep = utils.get_separator()\n\n  if os_sep == \"/\" then\n    return function(path)\n      for i = #path, 1, -1 do\n        if path:sub(i, i) == os_sep then\n          return path:sub(i + 1, -1)\n        end\n      end\n      return path\n    end\n  else\n    return function(path)\n      for i = #path, 1, -1 do\n        local c = path:sub(i, i)\n        if c == os_sep or c == \"/\" then\n          return path:sub(i + 1, -1)\n        end\n      end\n      return path\n    end\n  end\nend)()\n\nutils.is_path_hidden = function(opts, path_display)\n  path_display = path_display or vim.F.if_nil(opts.path_display, require(\"telescope.config\").values.path_display)\n\n  return path_display == nil\n    or path_display == \"hidden\"\n    or type(path_display) == \"table\" and (vim.tbl_contains(path_display, \"hidden\") or path_display.hidden)\nend\n\nutils.is_uri = function(filename)\n  local char = string.byte(filename, 1) or 0\n\n  -- is alpha?\n  if char < 65 or (char > 90 and char < 97) or char > 122 then\n    return false\n  end\n\n  for i = 2, #filename do\n    char = string.byte(filename, i)\n    if char == 58 then -- `:`\n      return i < #filename and string.byte(filename, i + 1) ~= 92 -- `\\`\n    elseif\n      not (\n        (char >= 48 and char <= 57) -- 0-9\n        or (char >= 65 and char <= 90) -- A-Z\n        or (char >= 97 and char <= 122) -- a-z\n        or char == 43 -- `+`\n        or char == 46 -- `.`\n        or char == 45 -- `-`\n      )\n    then\n      return false\n    end\n  end\n  return false\nend\n\n--- Transform path is a util function that formats a path based on path_display\n--- found in `opts` or the default value from config.\n--- It is meant to be used in make_entry to have a uniform interface for\n--- builtins as well as extensions utilizing the same user configuration\n--- Note: It is only supported inside `make_entry`/`make_display` the use of\n--- this function outside of telescope might yield to undefined behavior and will\n--- not be addressed by us\n---@param opts table: The opts the users passed into the picker. Might contains a path_display key\n---@param path string|nil: The path that should be formatted\n---@return string: path to be displayed\n---@return table: The transformed path ready to be displayed with the styling\nutils.transform_path = function(opts, path)\n  if path == nil then\n    return \"\", {}\n  end\n  if utils.is_uri(path) then\n    return path, {}\n  end\n\n  ---@type fun(opts:table, path: string): string, table?\n  local path_display = vim.F.if_nil(opts.path_display, require(\"telescope.config\").values.path_display)\n\n  local transformed_path = path\n  local path_style = {}\n\n  if type(path_display) == \"function\" then\n    local custom_transformed_path, custom_path_style = path_display(opts, transformed_path)\n    return custom_transformed_path, custom_path_style or path_style\n  elseif utils.is_path_hidden(nil, path_display) then\n    return \"\", path_style\n  elseif type(path_display) == \"table\" then\n    if vim.tbl_contains(path_display, \"tail\") or path_display.tail then\n      return utils.path_tail(transformed_path), path_style\n    end\n\n    if not vim.tbl_contains(path_display, \"absolute\") and not path_display.absolute then\n      transformed_path = path_abs(transformed_path, opts)\n    end\n\n    if vim.tbl_contains(path_display, \"smart\") or path_display.smart then\n      transformed_path = utils.path_smart(transformed_path)\n    end\n\n    if vim.tbl_contains(path_display, \"shorten\") or path_display[\"shorten\"] ~= nil then\n      local length\n      local exclude = nil\n\n      if type(path_display[\"shorten\"]) == \"table\" then\n        local shorten = path_display[\"shorten\"]\n        length = shorten.len\n        exclude = shorten.exclude\n      else\n        length = type(path_display[\"shorten\"]) == \"number\" and path_display[\"shorten\"]\n      end\n\n      transformed_path = path_shorten(transformed_path, length, exclude)\n    end\n\n    if vim.tbl_contains(path_display, \"truncate\") or path_display.truncate then\n      transformed_path = path_truncate(transformed_path, path_display.truncate, opts)\n    end\n\n    if vim.tbl_contains(path_display, \"filename_first\") or path_display[\"filename_first\"] ~= nil then\n      local reverse_directories = false\n\n      if type(path_display[\"filename_first\"]) == \"table\" then\n        local filename_first_opts = path_display[\"filename_first\"]\n\n        if filename_first_opts.reverse_directories == nil or filename_first_opts.reverse_directories == false then\n          reverse_directories = false\n        else\n          reverse_directories = filename_first_opts.reverse_directories\n        end\n      end\n\n      transformed_path, path_style = path_filename_first(transformed_path, reverse_directories)\n    end\n\n    return transformed_path, path_style\n  else\n    log.warn(\"`path_display` must be either a function or a table.\", \"See `:help telescope.defaults.path_display.\")\n    return transformed_path, path_style\n  end\nend\n\n-- local x = utils.make_default_callable(function(opts)\n--   return function()\n--     print(opts.example, opts.another)\n--   end\n-- end, { example = 7, another = 5 })\n\n-- x()\n-- x.new { example = 3 }()\nfunction utils.make_default_callable(f, default_opts)\n  default_opts = default_opts or {}\n\n  return setmetatable({\n    new = function(opts)\n      opts = vim.tbl_extend(\"keep\", opts, default_opts)\n      return f(opts)\n    end,\n  }, {\n    __call = function()\n      local ok, err = pcall(f(default_opts))\n      if not ok then\n        error(debug.traceback(err))\n      end\n    end,\n  })\nend\n\nfunction utils.job_is_running(job_id)\n  if job_id == nil then\n    return false\n  end\n  return vim.fn.jobwait({ job_id }, 0)[1] == -1\nend\n\nfunction utils.buf_delete(bufnr)\n  if bufnr == nil then\n    return\n  end\n\n  -- Suppress the buffer deleted message for those with &report<2\n  local start_report = vim.o.report\n  if start_report < 2 then\n    vim.o.report = 2\n  end\n\n  if api.nvim_buf_is_valid(bufnr) and api.nvim_buf_is_loaded(bufnr) then\n    api.nvim_buf_delete(bufnr, { force = true })\n  end\n\n  if start_report < 2 then\n    vim.o.report = start_report\n  end\nend\n\nfunction utils.win_delete(name, win_id, force, bdelete)\n  if win_id == nil or not api.nvim_win_is_valid(win_id) then\n    return\n  end\n\n  local bufnr = api.nvim_win_get_buf(win_id)\n  if bdelete then\n    utils.buf_delete(bufnr)\n  end\n\n  if not api.nvim_win_is_valid(win_id) then\n    return\n  end\n\n  if not pcall(api.nvim_win_close, win_id, force) then\n    log.trace(\"Unable to close window: \", name, \"/\", win_id)\n  end\nend\n\nfunction utils.max_split(s, pattern, maxsplit)\n  pattern = pattern or \" \"\n  maxsplit = maxsplit or -1\n\n  local t = {}\n\n  local curpos = 0\n  while maxsplit ~= 0 and curpos < #s do\n    local found, final = string.find(s, pattern, curpos, false)\n    if found ~= nil then\n      local val = string.sub(s, curpos, found - 1)\n\n      if #val > 0 then\n        maxsplit = maxsplit - 1\n        table.insert(t, val)\n      end\n\n      curpos = final + 1\n    else\n      table.insert(t, string.sub(s, curpos))\n      break\n      -- curpos = curpos + 1\n    end\n\n    if maxsplit == 0 then\n      table.insert(t, string.sub(s, curpos))\n    end\n  end\n\n  return t\nend\n\n-- IMPORTANT: This function should have been a local function as it's only used\n-- in this file, but the code was already exported a long time ago. By making it\n-- local we would potential break consumers of this method.\nfunction utils.data_directory()\n  local sourced_file = require(\"plenary.debug_utils\").sourced_filepath()\n  local base_directory = vim.fn.fnamemodify(sourced_file, \":h:h:h\")\n\n  return Path:new({ base_directory, \"data\" }):absolute() .. Path.path.sep\nend\n\nfunction utils.buffer_dir()\n  return vim.fn.expand \"%:p:h\"\nend\n\nfunction utils.display_termcodes(str)\n  return str:gsub(string.char(9), \"<TAB>\"):gsub(\"\u0006\", \"<C-F>\"):gsub(\" \", \"<Space>\")\nend\n\nfunction utils.get_os_command_output(cmd, cwd)\n  if type(cmd) ~= \"table\" then\n    utils.notify(\"get_os_command_output\", {\n      msg = \"cmd has to be a table\",\n      level = \"ERROR\",\n    })\n    return {}\n  end\n  local command = table.remove(cmd, 1)\n  local stderr = {}\n  local stdout, ret = Job:new({\n    command = command,\n    args = cmd,\n    cwd = cwd,\n    on_stderr = function(_, data)\n      table.insert(stderr, data)\n    end,\n  }):sync()\n  return stdout, ret, stderr\nend\n\nfunction utils.win_set_buf_noautocmd(win, buf)\n  local save_ei = vim.o.eventignore\n  vim.o.eventignore = \"all\"\n  api.nvim_win_set_buf(win, buf)\n  vim.o.eventignore = save_ei\nend\n\nlocal load_once = function(f)\n  local resolved = nil\n  return function(...)\n    if resolved == nil then\n      resolved = f()\n    end\n\n    return resolved(...)\n  end\nend\n\n-- IMPORTANT: This function should have been a local function as it's only used\n-- in this file, but the code was already exported a long time ago. By making it\n-- local we would potential break consumers of this method.\nutils.file_extension = function(filename)\n  local parts = vim.split(filename, \"%.\")\n  -- this check enables us to get multi-part extensions, like *.test.js for example\n  if #parts > 2 then\n    return table.concat(vim.list_slice(parts, #parts - 1), \".\")\n  else\n    return table.concat(vim.list_slice(parts, #parts), \".\")\n  end\nend\n\nutils.transform_devicons = load_once(function()\n  local has_devicons, devicons = pcall(require, \"nvim-web-devicons\")\n\n  if has_devicons then\n    if not devicons.has_loaded() then\n      devicons.setup()\n    end\n\n    return function(filename, display, disable_devicons)\n      local conf = require(\"telescope.config\").values\n      if disable_devicons or not filename then\n        return display\n      end\n\n      local basename = utils.path_tail(filename)\n      local icon, icon_highlight = devicons.get_icon(basename, utils.file_extension(basename), { default = false })\n      if not icon then\n        icon, icon_highlight = devicons.get_icon(basename, nil, { default = true })\n        icon = icon or \" \"\n      end\n      local icon_display = icon .. \" \" .. (display or \"\")\n\n      if conf.color_devicons then\n        return icon_display, icon_highlight, icon\n      else\n        return icon_display, nil, icon\n      end\n    end\n  else\n    return function(_, display, _)\n      return display\n    end\n  end\nend)\n\nutils.get_devicons = load_once(function()\n  local has_devicons, devicons = pcall(require, \"nvim-web-devicons\")\n\n  if has_devicons then\n    if not devicons.has_loaded() then\n      devicons.setup()\n    end\n\n    return function(filename, disable_devicons)\n      local conf = require(\"telescope.config\").values\n      if disable_devicons or not filename then\n        return \"\"\n      end\n\n      local basename = utils.path_tail(filename)\n      local icon, icon_highlight = devicons.get_icon(basename, utils.file_extension(basename), { default = false })\n      if not icon then\n        icon, icon_highlight = devicons.get_icon(basename, nil, { default = true })\n      end\n      if conf.color_devicons then\n        return icon, icon_highlight\n      else\n        return icon, nil\n      end\n    end\n  else\n    return function(_, _)\n      return \"\"\n    end\n  end\nend)\n\n--- TODO(clason): remove when dropping support for Nvim 0.10\n--- Checks if treesitter parser for language is installed\nutils.has_ts_parser = utils.nvim011 and vim.treesitter.language.add\n  or function(lang)\n    return pcall(vim.treesitter.language.add, lang)\n  end\n\n--- Telescope Wrapper around vim.notify\n---@param funname string: name of the function that will be\n---@param opts table: opts.level string, opts.msg string, opts.once bool\nutils.notify = function(funname, opts)\n  opts.once = vim.F.if_nil(opts.once, false)\n  local level = vim.log.levels[opts.level]\n  if not level then\n    error(\"Invalid error level\", 2)\n  end\n  local notify_fn = opts.once and vim.notify_once or vim.notify\n  notify_fn(string.format(\"[telescope.%s]: %s\", funname, opts.msg), level, {\n    title = \"telescope.nvim\",\n  })\nend\n\nutils.__warn_no_selection = function(name)\n  utils.notify(name, {\n    msg = \"Nothing currently selected\",\n    level = \"WARN\",\n  })\nend\n\n--- Generate git command optionally with git env variables\n---@param args string[]\n---@param opts? table\n---@return string[]\nutils.__git_command = function(args, opts)\n  opts = opts or {}\n\n  local _args = { \"git\" }\n  if opts.gitdir then\n    vim.list_extend(_args, { \"--git-dir\", opts.gitdir })\n  end\n  if opts.toplevel then\n    vim.list_extend(_args, { \"--work-tree\", opts.toplevel })\n  end\n\n  return vim.list_extend(_args, args)\nend\n\nutils.list_find = function(func, list)\n  for i, v in ipairs(list) do\n    if func(v, i, list) then\n      return i, v\n    end\n  end\nend\n\n--- Takes the path and parses optional cursor location `$file:$line:$column`\n--- If line or column not present `0` returned.\n---@param path string\n---@return string path\n---@return integer? lnum\n---@return integer? col\nutils.__separate_file_path_location = function(path)\n  local location_numbers = {}\n  for i = #path, 1, -1 do\n    if path:sub(i, i) == \":\" then\n      if i == #path then\n        path = path:sub(1, i - 1)\n      else\n        local location_value = tonumber(path:sub(i + 1))\n        if location_value then\n          table.insert(location_numbers, location_value)\n          path = path:sub(1, i - 1)\n\n          if #location_numbers == 2 then\n            -- There couldn't be more than 2 : separated number\n            break\n          end\n        end\n      end\n    end\n  end\n\n  if #location_numbers == 2 then\n    -- because of the reverse the line number will be second\n    return path, location_numbers[2], location_numbers[1]\n  end\n\n  if #location_numbers == 1 then\n    return path, location_numbers[1], 0\n  end\n\n  return path, nil, nil\nend\n\nlocal function add_offset(offset, obj)\n  return { obj[1] + offset, obj[2] + offset }\nend\n\nutils.merge_styles = function(style1, style2, offset)\n  for _, item in ipairs(style2) do\n    item[1] = add_offset(offset, item[1])\n    table.insert(style1, item)\n  end\n\n  return style1\nend\n\n-- IMPORTANT: This function should have been a local function as it's only used\n-- in this file, but the code was already exported a long time ago. By making it\n-- local we would potential break consumers of this method.\nutils.reverse_table = function(input_table)\n  local temp_table = {}\n  for index = 0, #input_table do\n    temp_table[#input_table - index] = input_table[index + 1] -- Reverses the order\n  end\n  return temp_table\nend\n\nutils.split_lines = (function()\n  if utils.iswin then\n    return function(s, opts)\n      return vim.split(s, \"\\r?\\n\", opts)\n    end\n  else\n    return function(s, opts)\n      return vim.split(s, \"\\n\", opts)\n    end\n  end\nend)()\n\nreturn utils\n"
  },
  {
    "path": "lua/tests/automated/action_spec.lua",
    "content": "local actions = require \"telescope.actions\"\nlocal action_set = require \"telescope.actions.set\"\n\nlocal transform_mod = require(\"telescope.actions.mt\").transform_mod\n\nlocal eq = assert.are.same\n\ndescribe(\"actions\", function()\n  it(\"should allow creating custom actions\", function()\n    local a = transform_mod {\n      x = function()\n        return 5\n      end,\n    }\n\n    eq(5, a.x())\n  end)\n\n  it(\"allows adding actions\", function()\n    local a = transform_mod {\n      x = function()\n        return \"x\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    local x_plus_y = a.x + a.y\n\n    eq({ \"x\", \"y\" }, { x_plus_y() })\n  end)\n\n  it(\"ignores nils from added actions\", function()\n    local a = transform_mod {\n      x = function()\n        return \"x\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n      nil_maker = function()\n        return nil\n      end,\n    }\n\n    local x_plus_y = a.x + a.nil_maker + a.y\n\n    eq({ \"x\", \"y\" }, { x_plus_y() })\n  end)\n\n  it(\"allows overriding an action\", function()\n    local a = transform_mod {\n      x = function()\n        return \"x\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    -- actions.file_goto_selection_edit:replace(...)\n    a.x:replace(function()\n      return \"foo\"\n    end)\n    eq(\"foo\", a.x())\n\n    a._clear()\n    eq(\"x\", a.x())\n  end)\n\n  it(\"allows overriding an action only in specific cases with if\", function()\n    local a = transform_mod {\n      x = function(e)\n        return e * 10\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    -- actions.file_goto_selection_edit:replace(...)\n    a.x:replace_if(function(e)\n      return e > 0\n    end, function(e)\n      return (e / 10)\n    end)\n    eq(-100, a.x(-10))\n    eq(10, a.x(100))\n    eq(1, a.x(10))\n\n    a._clear()\n    eq(100, a.x(10))\n  end)\n\n  it(\"allows overriding an action only in specific cases with mod\", function()\n    local a = transform_mod {\n      x = function(e)\n        return e * 10\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    -- actions.file_goto_selection_edit:replace(...)\n    a.x:replace_map {\n      [function(e)\n        return e > 0\n      end] = function(e)\n        return (e / 10)\n      end,\n      [function(e)\n        return e == 0\n      end] = function(e)\n        return (e + 10)\n      end,\n    }\n\n    eq(-100, a.x(-10))\n    eq(10, a.x(100))\n    eq(1, a.x(10))\n    eq(10, a.x(0))\n\n    a._clear()\n    eq(100, a.x(10))\n  end)\n\n  it(\"continuous replacement\", function()\n    local a = transform_mod {\n      x = function()\n        return \"cleared\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    -- Replace original, which becomes new fallback\n    a.x:replace(function()\n      return \"negative\"\n    end)\n\n    -- actions.file_goto_selection_edit:replace(...)\n    a.x:replace_map {\n      [function(e)\n        return e > 0\n      end] = function(e)\n        return \"positive\"\n      end,\n      [function(e)\n        return e == 0\n      end] = function(e)\n        return \"zero\"\n      end,\n    }\n\n    eq(\"positive\", a.x(10))\n    eq(\"zero\", a.x(0))\n    eq(\"negative\", a.x(-10))\n\n    a._clear()\n    eq(\"cleared\", a.x(10))\n  end)\n\n  it(\"enhance.pre\", function()\n    local a = transform_mod {\n      x = function()\n        return \"x\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    local called_pre = false\n\n    a.y:enhance {\n      pre = function()\n        called_pre = true\n      end,\n    }\n    eq(\"y\", a.y())\n    eq(true, called_pre)\n  end)\n\n  it(\"enhance.post\", function()\n    local a = transform_mod {\n      x = function()\n        return \"x\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    local called_post = false\n\n    a.y:enhance {\n      post = function()\n        called_post = true\n      end,\n    }\n    eq(\"y\", a.y())\n    eq(true, called_post)\n  end)\n\n  it(\"static_pre static_post\", function()\n    local called_pre = false\n    local called_post = false\n    local static_post = 0\n    local a = transform_mod {\n      x = {\n        pre = function()\n          called_pre = true\n        end,\n        action = function()\n          return \"x\"\n        end,\n        post = function()\n          called_post = true\n        end,\n      },\n    }\n\n    eq(\"x\", a.x())\n    eq(true, called_pre)\n    eq(true, called_post)\n  end)\n\n  it(\"can call both\", function()\n    local a = transform_mod {\n      x = function()\n        return \"x\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    local called_count = 0\n    local count_inc = function()\n      called_count = called_count + 1\n    end\n\n    a.y:enhance {\n      pre = count_inc,\n      post = count_inc,\n    }\n\n    eq(\"y\", a.y())\n    eq(2, called_count)\n  end)\n\n  it(\"can call both even when combined\", function()\n    local a = transform_mod {\n      x = function()\n        return \"x\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    local called_count = 0\n    local count_inc = function()\n      called_count = called_count + 1\n    end\n\n    a.y:enhance {\n      pre = count_inc,\n      post = count_inc,\n    }\n\n    a.x:enhance {\n      post = count_inc,\n    }\n\n    local x_plus_y = a.x + a.y\n    x_plus_y()\n\n    eq(3, called_count)\n  end)\n\n  it(\n    \"can call replace fn even when combined before replace registered the fn (because that happens with mappings)\",\n    function()\n      local a = transform_mod {\n        x = function()\n          return \"x\"\n        end,\n        y = function()\n          return \"y\"\n        end,\n      }\n\n      local called_count = 0\n      local count_inc = function()\n        called_count = called_count + 1\n      end\n\n      local x_plus_y = a.x + a.y\n      a.x:replace(function()\n        count_inc()\n      end)\n      a.y:replace(function()\n        count_inc()\n      end)\n\n      x_plus_y()\n\n      eq(2, called_count)\n    end\n  )\n\n  it(\n    \"can call enhance fn even when combined before enhance registed fns (because that happens with mappings)\",\n    function()\n      local a = transform_mod {\n        x = function()\n          return \"x\"\n        end,\n        y = function()\n          return \"y\"\n        end,\n      }\n\n      local called_count = 0\n      local count_inc = function()\n        called_count = called_count + 1\n      end\n\n      local x_plus_y = a.x + a.y\n      a.y:enhance {\n        pre = count_inc,\n        post = count_inc,\n      }\n\n      a.x:enhance {\n        post = count_inc,\n      }\n\n      x_plus_y()\n\n      eq(3, called_count)\n    end\n  )\n\n  it(\"clears enhance\", function()\n    local a = transform_mod {\n      x = function()\n        return \"x\"\n      end,\n      y = function()\n        return \"y\"\n      end,\n    }\n\n    local called_post = false\n\n    a.y:enhance {\n      post = function()\n        called_post = true\n      end,\n    }\n\n    a._clear()\n\n    eq(\"y\", a.y())\n    eq(false, called_post)\n  end)\n\n  it(\"handles passing arguments\", function()\n    local a = transform_mod {\n      x = function(bufnr)\n        return string.format \"bufnr: %s\"\n      end,\n    }\n\n    a.x:replace(function(bufnr)\n      return string.format(\"modified: %s\", bufnr)\n    end)\n    eq(\"modified: 5\", a.x(5))\n  end)\n\n  it(\"handles add with two different tables\", function()\n    local count_a = 0\n    local count_b = 0\n    local a = transform_mod {\n      x = function()\n        count_a = count_a + 1\n      end,\n    }\n    local b = transform_mod {\n      y = function()\n        count_b = count_b + 1\n      end,\n    }\n\n    local called_count = 0\n    local count_inc = function()\n      called_count = called_count + 1\n    end\n\n    a.x:enhance {\n      post = count_inc,\n    }\n    b.y:enhance {\n      post = count_inc,\n    }\n\n    local x_plus_y = a.x + b.y\n    x_plus_y()\n\n    eq(2, called_count)\n    eq(1, count_a)\n    eq(1, count_b)\n  end)\n\n  it(\"handles tripple concat with static pre post\", function()\n    local count_a = 0\n    local count_b = 0\n    local count_c = 0\n    local static_pre = 0\n    local static_post = 0\n    local a = transform_mod {\n      x = {\n        pre = function()\n          static_pre = static_pre + 1\n        end,\n        action = function()\n          count_a = count_a + 1\n        end,\n        post = function()\n          static_post = static_post + 1\n        end,\n      },\n    }\n    local b = transform_mod {\n      y = {\n        pre = function()\n          static_pre = static_pre + 1\n        end,\n        action = function()\n          count_b = count_b + 1\n        end,\n        post = function()\n          static_post = static_post + 1\n        end,\n      },\n    }\n    local c = transform_mod {\n      z = {\n        pre = function()\n          static_pre = static_pre + 1\n        end,\n        action = function()\n          count_c = count_c + 1\n        end,\n        post = function()\n          static_post = static_post + 1\n        end,\n      },\n    }\n\n    local replace_count = 0\n    a.x:replace(function()\n      replace_count = replace_count + 1\n    end)\n\n    local x_plus_y_plus_z = a.x + b.y + c.z\n    x_plus_y_plus_z()\n\n    eq(0, count_a)\n    eq(1, count_b)\n    eq(1, count_c)\n    eq(1, replace_count)\n    eq(3, static_pre)\n    eq(3, static_post)\n  end)\n\n  describe(\"action_set\", function()\n    it(\"can replace `action_set.edit`\", function()\n      action_set.edit:replace(function(_, arg)\n        return \"replaced:\" .. arg\n      end)\n      eq(\"replaced:edit\", actions.file_edit())\n      eq(\"replaced:vnew\", actions.file_vsplit())\n    end)\n\n    pending(\"handles backwards compat with select and edit files\", function()\n      -- Reproduce steps:\n      --  In config, we have { [\"<CR>\"] = actions.select, ... }\n      --  In caller, we have actions._goto:replace(...)\n      --  Person calls `select`, does not see update\n      action_set.edit:replace(function(_, arg)\n        return \"default_to_edit:\" .. arg\n      end)\n      eq(\"default_to_edit:edit\", actions.select_default())\n\n      action_set.select:replace(function(_, arg)\n        return \"override_with_select:\" .. arg\n      end)\n      eq(\"override_with_select:default\", actions.select_default())\n\n      -- Sometimes you might want to change the default selection...\n      --  but you don't want to prohibit the ability to edit the code...\n    end)\n  end)\nend)\n"
  },
  {
    "path": "lua/tests/automated/command_spec.lua",
    "content": "local command = require \"telescope.command\"\n\nlocal eq = assert.are.same\n\ndescribe(\"command_parser\", function()\n  local test_parse = function(should, input, output)\n    it(should, function()\n      command.convert_user_opts(input)\n      eq(output, input)\n    end)\n  end\n\n  -- Strings\n  test_parse(\"should handle cwd\", { cwd = \"string\" }, { cwd = \"string\" })\n\n  -- Find commands\n  test_parse(\n    \"should handle find_command 1\",\n    { find_command = \"rg,--ignore,--hidden,files\" },\n    { find_command = { \"rg\", \"--ignore\", \"--hidden\", \"files\" } }\n  )\n  test_parse(\n    \"should handle find_command 2\",\n    { find_command = \"fd,-t,f,-H\" },\n    { find_command = { \"fd\", \"-t\", \"f\", \"-H\" } }\n  )\n  test_parse(\n    \"should handle find_command 3\",\n    { find_command = \"fdfind,--type,f,--no-ignore\" },\n    { find_command = { \"fdfind\", \"--type\", \"f\", \"--no-ignore\" } }\n  )\n\n  -- Dictionaries/tables\n  test_parse(\n    \"should handle layout_config viml 1\",\n    { layout_config = \"{'prompt_position':'top'}\" },\n    { layout_config = { prompt_position = \"top\" } }\n  )\n  test_parse(\n    \"should handle layout_config viml 2\",\n    { layout_config = \"#{prompt_position:'bottom'}\" },\n    { layout_config = { prompt_position = \"bottom\" } }\n  )\n  test_parse(\n    \"should handle layout_config viml 3\",\n    { layout_config = \"{'mirror':v:true}\" },\n    { layout_config = { mirror = true } }\n  )\n  test_parse(\n    \"should handle layout_config viml 4\",\n    { layout_config = \"#{mirror:v:true}\" },\n    { layout_config = { mirror = true } }\n  )\n  test_parse(\n    \"should handle layout_config lua 1\",\n    { layout_config = \"{prompt_position='bottom'}\" },\n    { layout_config = { prompt_position = \"bottom\" } }\n  )\n  test_parse(\n    \"should handle layout_config lua 2\",\n    { layout_config = \"{mirror=true}\" },\n    { layout_config = { mirror = true } }\n  )\n\n  -- Lists/tables\n  test_parse(\n    \"should handle symbols commas list\",\n    { symbols = \"alpha,beta,gamma\" },\n    { symbols = { \"alpha\", \"beta\", \"gamma\" } }\n  )\n  test_parse(\n    \"should handle symbols viml list\",\n    { symbols = \"['alpha','beta','gamma']\" },\n    { symbols = { \"alpha\", \"beta\", \"gamma\" } }\n  )\n  test_parse(\n    \"should handle symbols lua list\",\n    { symbols = \"{'alpha','beta','gamma'}\" },\n    { symbols = { \"alpha\", \"beta\", \"gamma\" } }\n  )\n\n  -- Booleans\n  test_parse(\"should handle booleans 1\", { hidden = \"true\" }, { hidden = true })\n  test_parse(\"should handle booleans 2\", { no_ignore = \"false\" }, { no_ignore = false })\n\n  -- Numbers\n  test_parse(\"should handle numbers 1\", { depth = \"2\" }, { depth = 2 })\n  test_parse(\"should handle numbers 2\", { bufnr_width = \"4\" }, { bufnr_width = 4 })\n  test_parse(\"should handle numbers 3\", { severity = \"27\" }, { severity = 27 })\n\n  -- Multiple options\n  test_parse(\n    \"should handle multiple options 1\",\n    { layout_config = '{prompt_position=\"top\"}', cwd = \"/foobar\", severity = \"27\" },\n    { layout_config = { prompt_position = \"top\" }, cwd = \"/foobar\", severity = 27 }\n  )\n  test_parse(\n    \"should handle multiple options 2\",\n    { symbols = \"['alef','bet','gimel']\", depth = \"2\", find_command = \"rg,--ignore,files\" },\n    { symbols = { \"alef\", \"bet\", \"gimel\" }, depth = 2, find_command = { \"rg\", \"--ignore\", \"files\" } }\n  )\nend)\n"
  },
  {
    "path": "lua/tests/automated/entry_display_spec.lua",
    "content": "local entry_display = require \"telescope.pickers.entry_display\"\n\ndescribe(\"truncate\", function()\n  for _, ambiwidth in ipairs { \"single\", \"double\" } do\n    for _, case in ipairs {\n      { args = { \"abcde\", 6 }, expected = { single = \"abcde\", double = \"abcde\" } },\n      { args = { \"abcde\", 5 }, expected = { single = \"abcde\", double = \"abcde\" } },\n      { args = { \"abcde\", 4 }, expected = { single = \"abc…\", double = \"ab…\" } },\n      { args = { \"アイウエオ\", 11 }, expected = { single = \"アイウエオ\", double = \"アイウエオ\" } },\n      { args = { \"アイウエオ\", 10 }, expected = { single = \"アイウエオ\", double = \"アイウエオ\" } },\n      { args = { \"アイウエオ\", 9 }, expected = { single = \"アイウエ…\", double = \"アイウ…\" } },\n      { args = { \"アイウエオ\", 8 }, expected = { single = \"アイウ…\", double = \"アイウ…\" } },\n      { args = { \"├─┤\", 7 }, expected = { single = \"├─┤\", double = \"├─┤\" } },\n      { args = { \"├─┤\", 6 }, expected = { single = \"├─┤\", double = \"├─┤\" } },\n      { args = { \"├─┤\", 5 }, expected = { single = \"├─┤\", double = \"├…\" } },\n      { args = { \"├─┤\", 4 }, expected = { single = \"├─┤\", double = \"├…\" } },\n      { args = { \"├─┤\", 3 }, expected = { single = \"├─┤\", double = \"…\" } },\n      { args = { \"├─┤\", 2 }, expected = { single = \"├…\", double = \"…\" } },\n    } do\n      local msg = (\"can truncate: ambiwidth = %s, [%s, %d] -> %s\"):format(\n        ambiwidth,\n        case.args[1],\n        case.args[2],\n        case.expected[ambiwidth]\n      )\n      it(msg, function()\n        local original = vim.o.ambiwidth\n        vim.o.ambiwidth = ambiwidth\n        assert.are.same(case.expected[ambiwidth], entry_display.truncate(case.args[1], case.args[2]))\n        vim.o.ambiwidth = original\n      end)\n    end\n  end\nend)\n"
  },
  {
    "path": "lua/tests/automated/entry_manager_spec.lua",
    "content": "local EntryManager = require \"telescope.entry_manager\"\n\nlocal eq = assert.are.same\n\ndescribe(\"process_result\", function()\n  it(\"works with one entry\", function()\n    local manager = EntryManager:new(5, nil)\n\n    manager:add_entry(nil, 1, \"hello\", \"\")\n\n    eq(1, manager:get_score(1))\n  end)\n\n  it(\"works with two entries\", function()\n    local manager = EntryManager:new(5, nil)\n\n    manager:add_entry(nil, 1, \"hello\", \"\")\n    manager:add_entry(nil, 2, \"later\", \"\")\n\n    eq(2, manager.linked_states.size)\n\n    eq(\"hello\", manager:get_entry(1))\n    eq(\"later\", manager:get_entry(2))\n  end)\n\n  it(\"calls functions when inserting\", function()\n    local called_count = 0\n    local manager = EntryManager:new(5, function()\n      called_count = called_count + 1\n    end)\n\n    assert(called_count == 0)\n    manager:add_entry(nil, 1, \"hello\", \"\")\n    assert(called_count == 1)\n  end)\n\n  it(\"calls functions when inserting twice\", function()\n    local called_count = 0\n    local manager = EntryManager:new(5, function()\n      called_count = called_count + 1\n    end)\n\n    assert(called_count == 0)\n    manager:add_entry(nil, 1, \"hello\", \"\")\n    manager:add_entry(nil, 2, \"world\", \"\")\n    assert(called_count == 2)\n  end)\n\n  it(\"correctly sorts lower scores\", function()\n    local called_count = 0\n    local manager = EntryManager:new(5, function()\n      called_count = called_count + 1\n    end)\n    manager:add_entry(nil, 5, \"worse result\", \"\")\n    manager:add_entry(nil, 2, \"better result\", \"\")\n\n    eq(\"better result\", manager:get_entry(1))\n    eq(\"worse result\", manager:get_entry(2))\n\n    eq(2, called_count)\n  end)\n\n  it(\"respects max results\", function()\n    local called_count = 0\n    local manager = EntryManager:new(1, function()\n      called_count = called_count + 1\n    end)\n    manager:add_entry(nil, 2, \"better result\", \"\")\n    manager:add_entry(nil, 5, \"worse result\", \"\")\n\n    eq(\"better result\", manager:get_entry(1))\n    eq(1, called_count)\n  end)\n\n  it(\"should allow simple entries\", function()\n    local manager = EntryManager:new(5)\n\n    local counts_executed = 0\n    manager:add_entry(\n      nil,\n      1,\n      setmetatable({}, {\n        __index = function(t, k)\n          local val = nil\n          if k == \"ordinal\" then\n            counts_executed = counts_executed + 1\n\n            -- This could be expensive, only call later\n            val = \"wow\"\n          end\n\n          rawset(t, k, val)\n          return val\n        end,\n      }),\n      \"\"\n    )\n\n    eq(\"wow\", manager:get_ordinal(1))\n    eq(\"wow\", manager:get_ordinal(1))\n    eq(\"wow\", manager:get_ordinal(1))\n\n    eq(1, counts_executed)\n  end)\n\n  it(\"should not loop a bunch\", function()\n    local info = {}\n    local manager = EntryManager:new(5, nil, info)\n    manager:add_entry(nil, 4, \"better result\", \"\")\n    manager:add_entry(nil, 3, \"better result\", \"\")\n    manager:add_entry(nil, 2, \"better result\", \"\")\n\n    -- Loops once to find 3 < 4\n    -- Loops again to find 2 < 3\n    eq(2, info.looped)\n  end)\n\n  it(\"should not loop a bunch, part 2\", function()\n    local info = {}\n    local manager = EntryManager:new(5, nil, info)\n    manager:add_entry(nil, 4, \"better result\", \"\")\n    manager:add_entry(nil, 2, \"better result\", \"\")\n    manager:add_entry(nil, 3, \"better result\", \"\")\n\n    -- Loops again to find 2 < 4\n    -- Loops once to find 3 > 2\n    --  but less than 4\n    eq(3, info.looped)\n  end)\n\n  it(\"should update worst score in all append case\", function()\n    local manager = EntryManager:new(2, nil)\n    manager:add_entry(nil, 2, \"result 2\", \"\")\n    manager:add_entry(nil, 3, \"result 3\", \"\")\n    manager:add_entry(nil, 4, \"result 4\", \"\")\n\n    eq(3, manager.worst_acceptable_score)\n  end)\n\n  it(\"should update worst score in all prepend case\", function()\n    local called_count = 0\n    local manager = EntryManager:new(2, function()\n      called_count = called_count + 1\n    end)\n    manager:add_entry(nil, 5, \"worse result\", \"\")\n    manager:add_entry(nil, 4, \"less worse result\", \"\")\n    manager:add_entry(nil, 2, \"better result\", \"\")\n\n    -- Once for insert 5\n    -- Once for prepend 4\n    -- Once for prepend 2\n    eq(3, called_count)\n\n    eq(\"better result\", manager:get_entry(1))\n    eq(4, manager.worst_acceptable_score)\n  end)\n\n  it(\"should call tiebreaker if score is the same, sort length\", function()\n    local manager = EntryManager:new(5, nil)\n    local picker = {\n      tiebreak = function(curr, prev, prompt)\n        eq(\"asdf\", prompt)\n        return #curr < #prev\n      end,\n    }\n\n    manager:add_entry(picker, 0.5, \"same same\", \"asdf\")\n    manager:add_entry(picker, 0.5, \"same\", \"asdf\")\n\n    eq(\"same\", manager:get_entry(1))\n    eq(\"same same\", manager:get_entry(2))\n  end)\n\n  it(\"should call tiebreaker if score is the same, keep initial\", function()\n    local manager = EntryManager:new(5, nil)\n    local picker = {\n      tiebreak = function(_, _, prompt)\n        eq(\"asdf\", prompt)\n        return false\n      end,\n    }\n\n    manager:add_entry(picker, 0.5, \"same same\", \"asdf\")\n    manager:add_entry(picker, 0.5, \"same\", \"asdf\")\n\n    eq(\"same\", manager:get_entry(2))\n    eq(\"same same\", manager:get_entry(1))\n  end)\nend)\n"
  },
  {
    "path": "lua/tests/automated/layout_strategies_spec.lua",
    "content": "local config = require \"telescope.config\"\nlocal resolve = require \"telescope.config.resolve\"\nlocal layout_strats = require \"telescope.pickers.layout_strategies\"\n\nlocal validate_layout_config = layout_strats._validate_layout_config\n\nlocal eq = assert.are.same\n\ndescribe(\"layout_strategies\", function()\n  it(\"should have validator\", function()\n    assert(validate_layout_config, \"Has validator\")\n  end)\n\n  local test_height = function(should, output, input, opts)\n    opts = opts or {}\n\n    local max_columns, max_lines = opts.max_columns or 100, opts.max_lines or 100\n    it(should, function()\n      local layout_config = validate_layout_config(\"horizontal\", { height = true }, { height = input })\n\n      eq(output, resolve.resolve_height(layout_config.height)({}, max_columns, max_lines))\n    end)\n  end\n\n  test_height(\"should handle numbers\", 10, 10)\n\n  test_height(\"should handle percentage: 100\", 10, 0.1, { max_lines = 100 })\n  test_height(\"should handle percentage: 110\", 11, 0.1, { max_lines = 110 })\n\n  test_height(\"should call functions: simple\", 5, function()\n    return 5\n  end)\n  test_height(\"should call functions: percentage\", 15, function(_, _, lines)\n    return 0.1 * lines\n  end, {\n    max_lines = 150,\n  })\n\n  local test_defaults_key = function(should, key, strat, output, ours, theirs, override)\n    ours = ours or {}\n    theirs = theirs or {}\n    override = override or {}\n\n    it(should, function()\n      config.clear_defaults()\n      config.set_defaults({ layout_config = theirs }, { layout_config = { ours, \"description\" } })\n      local layout_config = validate_layout_config(strat, layout_strats._configurations[strat], override)\n      eq(output, layout_config[key])\n    end)\n  end\n\n  test_defaults_key(\n    \"should use ours if theirs and override don't give the key\",\n    \"height\",\n    \"horizontal\",\n    50,\n    { height = 50 },\n    { width = 100 },\n    { width = 120 }\n  )\n\n  test_defaults_key(\n    \"should use ours if theirs and override don't give the key for this strategy\",\n    \"height\",\n    \"horizontal\",\n    50,\n    { height = 50 },\n    { vertical = { height = 100 } },\n    { vertical = { height = 120 } }\n  )\n\n  test_defaults_key(\n    \"should use theirs if override doesn't give the key\",\n    \"height\",\n    \"horizontal\",\n    100,\n    { height = 50 },\n    { height = 100 },\n    { width = 120 }\n  )\n\n  test_defaults_key(\n    \"should use override if key given\",\n    \"height\",\n    \"horizontal\",\n    120,\n    { height = 50 },\n    { height = 100 },\n    { height = 120 }\n  )\n\n  test_defaults_key(\n    \"should use override if key given for this strategy\",\n    \"height\",\n    \"horizontal\",\n    120,\n    { height = 50 },\n    { height = 100 },\n    { horizontal = { height = 120 } }\n  )\n\n  test_defaults_key(\n    \"should use theirs if override doesn't give key (even if ours has strategy specific)\",\n    \"height\",\n    \"horizontal\",\n    100,\n    { horizontal = { height = 50 } },\n    { height = 100 },\n    { width = 120 }\n  )\n\n  test_defaults_key(\n    \"should use override (even if ours has strategy specific)\",\n    \"height\",\n    \"horizontal\",\n    120,\n    { horizontal = { height = 50 } },\n    { height = 100 },\n    { height = 120 }\n  )\n\n  test_defaults_key(\n    \"should use override (even if theirs has strategy specific)\",\n    \"height\",\n    \"horizontal\",\n    120,\n    { height = 50 },\n    { horizontal = { height = 100 } },\n    { height = 120 }\n  )\n\n  test_defaults_key(\n    \"should use override (even if ours and theirs have strategy specific)\",\n    \"height\",\n    \"horizontal\",\n    120,\n    { horizontal = { height = 50 } },\n    { horizontal = { height = 100 } },\n    { height = 120 }\n  )\n\n  test_defaults_key(\n    \"should handle user config overriding a table with a number\",\n    \"height\",\n    \"horizontal\",\n    120,\n    { height = { padding = 5 } },\n    { height = 120 },\n    {}\n  )\n\n  test_defaults_key(\n    \"should handle user oneshot overriding a table with a number\",\n    \"height\",\n    \"horizontal\",\n    120,\n    {},\n    { height = { padding = 5 } },\n    { height = 120 }\n  )\nend)\n"
  },
  {
    "path": "lua/tests/automated/linked_list_spec.lua",
    "content": "local LinkedList = require \"telescope.algos.linked_list\"\n\ndescribe(\"LinkedList\", function()\n  it(\"can create a list\", function()\n    local l = LinkedList:new()\n\n    assert.are.same(0, l.size)\n  end)\n\n  it(\"can add a single entry to the list\", function()\n    local l = LinkedList:new()\n    l:append \"hello\"\n\n    assert.are.same(1, l.size)\n  end)\n\n  it(\"can iterate over one item\", function()\n    local l = LinkedList:new()\n    l:append \"hello\"\n\n    for val in l:iter() do\n      assert.are.same(\"hello\", val)\n    end\n  end)\n\n  it(\"iterates in order\", function()\n    local l = LinkedList:new()\n    l:append \"hello\"\n    l:append \"world\"\n\n    local x = {}\n    for val in l:iter() do\n      table.insert(x, val)\n    end\n\n    assert.are.same({ \"hello\", \"world\" }, x)\n  end)\n\n  it(\"iterates in order, for prepend\", function()\n    local l = LinkedList:new()\n    l:prepend \"world\"\n    l:prepend \"hello\"\n\n    local x = {}\n    for val in l:iter() do\n      table.insert(x, val)\n    end\n\n    assert.are.same({ \"hello\", \"world\" }, x)\n  end)\n\n  it(\"iterates in order, for combo\", function()\n    local l = LinkedList:new()\n    l:prepend \"world\"\n    l:prepend \"hello\"\n    l:append \"last\"\n    l:prepend \"first\"\n\n    local x = {}\n    for val in l:iter() do\n      table.insert(x, val)\n    end\n\n    assert.are.same({ \"first\", \"hello\", \"world\", \"last\" }, x)\n    assert.are.same(#x, l.size)\n  end)\n\n  it(\"has ipairs\", function()\n    local l = LinkedList:new()\n    l:prepend \"world\"\n    l:prepend \"hello\"\n    l:append \"last\"\n    l:prepend \"first\"\n\n    local x = {}\n    for v in l:iter() do\n      table.insert(x, v)\n    end\n    assert.are.same({ \"first\", \"hello\", \"world\", \"last\" }, x)\n\n    local expected = {}\n    for i, v in ipairs(x) do\n      table.insert(expected, { i, v })\n    end\n\n    local actual = {}\n    for i, v in l:ipairs() do\n      table.insert(actual, { i, v })\n    end\n\n    assert.are.same(expected, actual)\n  end)\n\n  describe(\"track_at\", function()\n    it(\"should update tracked when only appending\", function()\n      local l = LinkedList:new { track_at = 2 }\n      l:append \"first\"\n      l:append \"second\"\n      l:append \"third\"\n\n      assert.are.same(\"second\", l.tracked)\n    end)\n\n    it(\"should update tracked when first some prepend and then append\", function()\n      local l = LinkedList:new { track_at = 2 }\n      l:prepend \"first\"\n      l:append \"second\"\n      l:append \"third\"\n\n      assert.are.same(\"second\", l.tracked)\n    end)\n\n    it(\"should update when only prepending\", function()\n      local l = LinkedList:new { track_at = 2 }\n      l:prepend \"third\"\n      l:prepend \"second\"\n      l:prepend \"first\"\n\n      assert.are.same(\"second\", l.tracked)\n    end)\n\n    it(\"should update when lots of prepend and append\", function()\n      local l = LinkedList:new { track_at = 2 }\n      l:prepend \"third\"\n      l:prepend \"second\"\n      l:prepend \"first\"\n      l:append \"fourth\"\n      l:prepend \"zeroth\"\n\n      assert.are.same(\"first\", l.tracked)\n    end)\n  end)\nend)\n"
  },
  {
    "path": "lua/tests/automated/pickers/find_files_spec.lua",
    "content": "-- Just skip on mac, it has flaky CI for some reason\nif vim.fn.has \"mac\" == 1 or require(\"telescope.utils\").iswin then\n  return\nend\n\nlocal tester = require \"telescope.testharness\"\n\nlocal disp = function(val)\n  return vim.inspect(val, { newline = \" \", indent = \"\" })\nend\n\ndescribe(\"builtin.find_files\", function()\n  it(\"should find the readme\", function()\n    tester.run_file \"find_files__readme\"\n  end)\n\n  it(\"should handle cycling for full list\", function()\n    tester.run_file \"find_files__scrolling_descending_cycle\"\n  end)\n\n  for _, configuration in ipairs {\n    { sorting_strategy = \"descending\" },\n    { sorting_strategy = \"ascending\" },\n  } do\n    it(\"should not display devicons when disabled: \" .. disp(configuration), function()\n      tester.run_string(string.format(\n        [[\n        local max_results = 5\n\n        runner.picker('find_files', 'README.md', {\n          post_typed = {\n            { \"> README.md\", GetPrompt },\n            { \"> README.md\", GetBestResult },\n          },\n          post_close = {\n            { 'README.md', GetFile },\n            { 'README.md', GetFile },\n          }\n        }, vim.tbl_extend(\"force\", {\n          disable_devicons = true,\n          sorter = require('telescope.sorters').get_fzy_sorter(),\n          layout_strategy = 'center',\n          layout_config = {\n            height = max_results + 1,\n            width = 0.9,\n          },\n        }, vim.json.decode([==[%s]==])))\n      ]],\n        vim.json.encode(configuration)\n      ))\n    end)\n\n    pending(\"use devicons, if it has it when enabled\", function()\n      if not pcall(require, \"nvim-web-devicons\") then\n        return\n      end\n\n      local md = require(\"nvim-web-devicons\").get_icon \"md\"\n      tester.run_string(string.format(\n        [[\n        runner.picker('find_files', 'README.md', {\n          post_typed = {\n            { \"> README.md\", GetPrompt },\n            { \"> %s README.md\", GetBestResult }\n          },\n          post_close = {\n            { 'README.md', GetFile },\n            { 'README.md', GetFile },\n          }\n        }, vim.tbl_extend(\"force\", {\n          disable_devicons = false,\n          sorter = require('telescope.sorters').get_fzy_sorter(),\n        }, vim.json.decode([==[%s]==])))\n      ]],\n        md,\n        vim.json.encode(configuration)\n      ))\n    end)\n  end\n\n  it(\"should find the readme, using lowercase\", function()\n    tester.run_string [[\n      runner.picker('find_files', 'readme.md', {\n        post_close = {\n          { 'README.md', GetFile },\n        }\n      })\n    ]]\n  end)\n\n  it(\"should find the pickers.lua, using lowercase\", function()\n    tester.run_string [[\n      runner.picker('find_files', 'pickers.lua', {\n        post_close = {\n          { 'pickers.lua', GetFile },\n        }\n      })\n    ]]\n  end)\n\n  it(\"should find the pickers.lua\", function()\n    tester.run_string [[\n      runner.picker('find_files', 'pickers.lua', {\n        post_close = {\n          { 'pickers.lua', GetFile },\n          { 'pickers.lua', GetFile },\n        }\n      })\n    ]]\n  end)\n\n  it(\"should be able to c-n the items\", function()\n    tester.run_string [[\n      runner.picker('find_files', 'fixtures/find_files/file<c-n>', {\n        post_typed = {\n          {\n            {\n              \"  lua/tests/fixtures/find_files/file_a.txt\",\n              \"> lua/tests/fixtures/find_files/file_abc.txt\",\n            }, GetResults\n          },\n        },\n        post_close = {\n          { 'file_abc.txt', GetFile },\n        },\n      }, {\n        sorter = require('telescope.sorters').get_fzy_sorter(),\n        sorting_strategy = \"ascending\",\n        disable_devicons = true,\n      })\n    ]]\n  end)\n\n  it(\"should be able to get the current selection\", function()\n    tester.run_string [[\n      runner.picker('find_files', 'fixtures/find_files/file_abc', {\n        post_typed = {\n          { 'lua/tests/fixtures/find_files/file_abc.txt', GetSelectionValue },\n        }\n      })\n    ]]\n  end)\nend)\n"
  },
  {
    "path": "lua/tests/automated/pickers/live_grep_spec.lua",
    "content": "if vim.fn.has \"mac\" == 1 or require(\"telescope.utils\").iswin then\n  return\nend\n\nlocal tester = require \"telescope.testharness\"\n\nlocal disp = function(val)\n  return vim.inspect(val, { newline = \" \", indent = \"\" })\nend\n\ndescribe(\"builtin.live_grep\", function()\n  for _, configuration in ipairs {\n    { sorting_strategy = \"descending\" },\n    { sorting_strategy = \"ascending\" },\n  } do\n    it(\"clears results correctly when \" .. disp(configuration), function()\n      tester.run_string(string.format(\n        [[\n        runner.picker(\n          \"live_grep\",\n          \"abcd<esc>G\",\n          {\n            post_typed = {\n              {\n                5,\n                function()\n                  return #vim.tbl_filter(function(line)\n                    return line ~= \"\"\n                  end, GetResults())\n                end,\n              },\n            },\n          },\n          vim.tbl_extend(\"force\", {\n            sorter = require(\"telescope.sorters\").get_fzy_sorter(),\n            layout_strategy = \"center\",\n            cwd = \"./lua/tests/fixtures/live_grep\",\n            temp__scrolling_limit = 5,\n          }, vim.json.decode [==[%s]==])\n        )\n        ]],\n        vim.json.encode(configuration)\n      ))\n    end)\n  end\nend)\n"
  },
  {
    "path": "lua/tests/automated/resolver_spec.lua",
    "content": "local eq = function(a, b)\n  assert.are.same(a, b)\nend\n\nlocal resolve = require \"telescope.config.resolve\"\n\ndescribe(\"telescope.config.resolve\", function()\n  describe(\"win_option\", function()\n    it(\"should resolve for percentages\", function()\n      local height_config = 0.8\n      local opt = resolve.win_option(height_config)\n\n      eq(height_config, opt.preview)\n      eq(height_config, opt.prompt)\n      eq(height_config, opt.results)\n    end)\n\n    it(\"should resolve for percentages with default\", function()\n      local height_config = 0.8\n      local opt = resolve.win_option(nil, height_config)\n\n      eq(height_config, opt.preview)\n      eq(height_config, opt.prompt)\n      eq(height_config, opt.results)\n    end)\n\n    it(\"should resolve table values\", function()\n      local table_val = { \"a\" }\n      local opt = resolve.win_option(nil, table_val)\n\n      eq(table_val, opt.preview)\n      eq(table_val, opt.prompt)\n      eq(table_val, opt.results)\n    end)\n\n    it(\"should allow overrides for different wins\", function()\n      local prompt_override = { \"a\", prompt = \"b\" }\n      local opt = resolve.win_option(prompt_override)\n      eq(\"a\", opt.preview)\n      eq(\"a\", opt.results)\n      eq(\"b\", opt.prompt)\n    end)\n\n    it(\"should allow overrides for all wins\", function()\n      local all_specified = { preview = \"a\", prompt = \"b\", results = \"c\" }\n      local opt = resolve.win_option(all_specified)\n      eq(\"a\", opt.preview)\n      eq(\"b\", opt.prompt)\n      eq(\"c\", opt.results)\n    end)\n\n    it(\"should allow some specified with a simple default\", function()\n      local some_specified = { prompt = \"b\", results = \"c\" }\n      local opt = resolve.win_option(some_specified, \"a\")\n      eq(\"a\", opt.preview)\n      eq(\"b\", opt.prompt)\n      eq(\"c\", opt.results)\n    end)\n  end)\n\n  describe(\"resolve_height/width\", function()\n    local test_sizes = {\n      { 24, 100 },\n      { 35, 125 },\n      { 60, 59 },\n      { 100, 40 },\n    }\n    it(\"should handle percentages\", function()\n      local percentages = { 0.1, 0.33333, 0.5, 0.99 }\n      for _, s in ipairs(test_sizes) do\n        for _, p in ipairs(percentages) do\n          eq(math.floor(s[1] * p), resolve.resolve_width(p)(nil, unpack(s)))\n          eq(math.floor(s[2] * p), resolve.resolve_height(p)(nil, unpack(s)))\n        end\n      end\n    end)\n\n    it(\"should handle percentages with min/max boundary\", function()\n      eq(20, resolve.resolve_width { 0.1, min = 20 }(nil, 40, 120))\n      eq(30, resolve.resolve_height { 0.1, min = 20 }(nil, 40, 300))\n\n      eq(24, resolve.resolve_width { 0.4, max = 80 }(nil, 60, 60))\n      eq(80, resolve.resolve_height { 0.4, max = 80 }(nil, 60, 300))\n    end)\n\n    it(\"should handle fixed size\", function()\n      local fixed = { 5, 8, 13, 21, 34 }\n      for _, s in ipairs(test_sizes) do\n        for _, f in ipairs(fixed) do\n          eq(math.min(f, s[1]), resolve.resolve_width(f)(nil, unpack(s)))\n          eq(math.min(f, s[2]), resolve.resolve_height(f)(nil, unpack(s)))\n        end\n      end\n    end)\n\n    it(\"should handle functions\", function()\n      local func = function(_, max_columns, max_lines)\n        if max_columns < 45 then\n          return math.min(max_columns, max_lines)\n        elseif max_columns < max_lines then\n          return max_columns * 0.8\n        else\n          return math.min(max_columns, max_lines) * 0.5\n        end\n      end\n      for _, s in ipairs(test_sizes) do\n        eq(func(nil, unpack(s)), resolve.resolve_height(func)(nil, unpack(s)))\n      end\n    end)\n\n    it(\"should handle padding\", function()\n      local func = function(_, max_columns, max_lines)\n        return math.floor(math.min(max_columns * 0.6, max_lines * 0.8))\n      end\n      local pads = { 0.1, 5, func }\n      for _, s in ipairs(test_sizes) do\n        for _, p in ipairs(pads) do\n          eq(s[1] - 2 * resolve.resolve_width(p)(nil, unpack(s)), resolve.resolve_width { padding = p }(nil, unpack(s)))\n          eq(\n            s[2] - 2 * resolve.resolve_height(p)(nil, unpack(s)),\n            resolve.resolve_height { padding = p }(nil, unpack(s))\n          )\n        end\n      end\n    end)\n  end)\n\n  describe(\"resolve_anchor_pos\", function()\n    local test_sizes = {\n      { 6, 7, 8, 9, 1 },\n      { 10, 20, 30, 40, 1 },\n      { 15, 15, 16, 16, 1 },\n      { 17, 19, 23, 31, 1 },\n      { 21, 18, 26, 24, 1 },\n      { 50, 100, 150, 200, 1 },\n    }\n\n    it([[should not adjust when \"CENTER\" or \"\" is the anchor]], function()\n      for _, s in ipairs(test_sizes) do\n        eq({ 0, 0 }, resolve.resolve_anchor_pos(\"\", unpack(s)))\n        eq({ 0, 0 }, resolve.resolve_anchor_pos(\"center\", unpack(s)))\n        eq({ 0, 0 }, resolve.resolve_anchor_pos(\"CENTER\", unpack(s)))\n      end\n    end)\n\n    it([[should end up at top when \"N\" in the anchor]], function()\n      local top_test = function(anchor, p_width, p_height, max_columns, max_lines)\n        local pos = resolve.resolve_anchor_pos(anchor, p_width, p_height, max_columns, max_lines, 1)\n        eq(1, pos[2] + math.floor((max_lines - p_height) / 2))\n      end\n      for _, s in ipairs(test_sizes) do\n        top_test(\"NW\", unpack(s))\n        top_test(\"N\", unpack(s))\n        top_test(\"NE\", unpack(s))\n      end\n    end)\n\n    it([[should end up at left when \"W\" in the anchor]], function()\n      local left_test = function(anchor, p_width, p_height, max_columns, max_lines)\n        local pos = resolve.resolve_anchor_pos(anchor, p_width, p_height, max_columns, max_lines, 1)\n        eq(1, pos[1] + math.floor((max_columns - p_width) / 2))\n      end\n      for _, s in ipairs(test_sizes) do\n        left_test(\"NW\", unpack(s))\n        left_test(\"W\", unpack(s))\n        left_test(\"SW\", unpack(s))\n      end\n    end)\n\n    it([[should end up at bottom when \"S\" in the anchor]], function()\n      local bot_test = function(anchor, p_width, p_height, max_columns, max_lines)\n        local pos = resolve.resolve_anchor_pos(anchor, p_width, p_height, max_columns, max_lines, 1)\n        eq(max_lines - 1, pos[2] + p_height + math.floor((max_lines - p_height) / 2))\n      end\n      for _, s in ipairs(test_sizes) do\n        bot_test(\"SW\", unpack(s))\n        bot_test(\"S\", unpack(s))\n        bot_test(\"SE\", unpack(s))\n      end\n    end)\n\n    it([[should end up at right when \"E\" in the anchor]], function()\n      local right_test = function(anchor, p_width, p_height, max_columns, max_lines)\n        local pos = resolve.resolve_anchor_pos(anchor, p_width, p_height, max_columns, max_lines, 1)\n        eq(max_columns - 1, pos[1] + p_width + math.floor((max_columns - p_width) / 2))\n      end\n      for _, s in ipairs(test_sizes) do\n        right_test(\"NE\", unpack(s))\n        right_test(\"E\", unpack(s))\n        right_test(\"SE\", unpack(s))\n      end\n    end)\n\n    it([[should ignore casing of the anchor]], function()\n      local case_test = function(a1, a2, p_width, p_height, max_columns, max_lines)\n        local pos1 = resolve.resolve_anchor_pos(a1, p_width, p_height, max_columns, max_lines, 1)\n        local pos2 = resolve.resolve_anchor_pos(a2, p_width, p_height, max_columns, max_lines, 1)\n        eq(pos1, pos2)\n      end\n      for _, s in ipairs(test_sizes) do\n        case_test(\"ne\", \"NE\", unpack(s))\n        case_test(\"w\", \"W\", unpack(s))\n        case_test(\"sW\", \"sw\", unpack(s))\n        case_test(\"cEnTeR\", \"CeNtEr\", unpack(s))\n      end\n    end)\n  end)\nend)\n"
  },
  {
    "path": "lua/tests/automated/scroller_spec.lua",
    "content": "local p_scroller = require \"telescope.pickers.scroller\"\n\nlocal log = require \"telescope.log\"\nlog.use_console = false\n\nlocal eq = assert.are.same\n\ndescribe(\"scroller\", function()\n  local max_results = 10\n\n  describe(\"ascending cycle\", function()\n    local cycle_scroller = p_scroller.create(\"cycle\", \"ascending\")\n\n    it(\"should return values within the max results\", function()\n      eq(5, cycle_scroller(max_results, max_results, 5))\n    end)\n\n    it(\"should return 0 at 0\", function()\n      eq(0, cycle_scroller(max_results, max_results, 0))\n    end)\n\n    it(\"should cycle you to the top when you go below 0\", function()\n      eq(max_results - 1, cycle_scroller(max_results, max_results, -1))\n    end)\n\n    it(\"should cycle you to 0 when you go past the results\", function()\n      eq(0, cycle_scroller(max_results, max_results, max_results + 1))\n    end)\n\n    it(\"should cycle when current results is less than max_results\", function()\n      eq(0, cycle_scroller(max_results, 5, 7))\n    end)\n  end)\n\n  describe(\"ascending limit\", function()\n    local limit_scroller = p_scroller.create(\"limit\", \"ascending\")\n\n    it(\"should return values within the max results\", function()\n      eq(5, limit_scroller(max_results, max_results, 5))\n    end)\n\n    it(\"should return 0 at 0\", function()\n      eq(0, limit_scroller(max_results, max_results, 0))\n    end)\n\n    it(\"should not cycle\", function()\n      eq(0, limit_scroller(max_results, max_results, -1))\n    end)\n\n    it(\"should not cycle you to 0 when you go past the results\", function()\n      eq(max_results - 1, limit_scroller(max_results, max_results, max_results + 1))\n    end)\n\n    it(\"should stay at current results when current results is less than max_results\", function()\n      local current = 5\n      eq(current - 1, limit_scroller(max_results, current, 7))\n    end)\n  end)\n\n  describe(\"descending cycle\", function()\n    local cycle_scroller = p_scroller.create(\"cycle\", \"descending\")\n\n    it(\"should return values within the max results\", function()\n      eq(5, cycle_scroller(max_results, max_results, 5))\n    end)\n\n    it(\"should return max_results - 1 at 0\", function()\n      eq(0, cycle_scroller(max_results, max_results, 0))\n    end)\n\n    it(\"should cycle you to the bot when you go below 0\", function()\n      eq(max_results - 1, cycle_scroller(max_results, max_results, -1))\n    end)\n\n    it(\"should cycle you to 0 when you go past the results\", function()\n      eq(0, cycle_scroller(max_results, max_results, max_results + 1))\n    end)\n\n    it(\"should cycle when current results is less than max_results\", function()\n      eq(9, cycle_scroller(max_results, 5, 4))\n    end)\n  end)\n\n  describe(\"descending limit\", function()\n    local limit_scroller = p_scroller.create(\"limit\", \"descending\")\n\n    it(\"should return values within the max results\", function()\n      eq(5, limit_scroller(max_results, max_results, 5))\n    end)\n\n    it(\"should return 0 at 0\", function()\n      eq(0, limit_scroller(max_results, max_results, 0))\n    end)\n\n    it(\"should not cycle\", function()\n      eq(0, limit_scroller(max_results, max_results, -1))\n    end)\n\n    it(\"should not cycle you to 0 when you go past the results\", function()\n      eq(max_results - 1, limit_scroller(max_results, max_results, max_results + 1))\n    end)\n\n    it(\"should stay at current results when current results is less than max_results\", function()\n      local current = 5\n      eq(max_results - current, limit_scroller(max_results, current, 4))\n    end)\n  end)\n\n  describe(\"https://github.com/nvim-telescope/telescope.nvim/pull/293#issuecomment-751463224\", function()\n    it(\"should handle having many more results than necessary\", function()\n      local scroller = p_scroller.create(\"cycle\", \"descending\")\n\n      -- 23 112 23\n      eq(0, scroller(23, 112, 23))\n    end)\n  end)\n\n  describe(\"should give top, middle and bottom index\", function()\n    it(\"should handle ascending\", function()\n      eq(0, p_scroller.top(\"ascending\", 20, 1000))\n      eq(19, p_scroller.bottom(\"ascending\", 20, 1000))\n\n      eq(0, p_scroller.top(\"ascending\", 20, 10))\n      eq(9, p_scroller.bottom(\"ascending\", 20, 10))\n\n      eq(5, p_scroller.middle(\"ascending\", 11, 100))\n      eq(10, p_scroller.middle(\"ascending\", 20, 100))\n      eq(12, p_scroller.middle(\"ascending\", 25, 100))\n    end)\n\n    it(\"should handle descending\", function()\n      eq(0, p_scroller.top(\"descending\", 20, 1000))\n      eq(19, p_scroller.bottom(\"descending\", 20, 1000))\n\n      eq(10, p_scroller.top(\"descending\", 20, 10))\n      eq(19, p_scroller.bottom(\"descending\", 20, 10))\n\n      eq(25, p_scroller.middle(\"descending\", 30, 10))\n      eq(50, p_scroller.middle(\"descending\", 60, 20))\n      eq(105, p_scroller.middle(\"descending\", 120, 30))\n    end)\n  end)\nend)\n"
  },
  {
    "path": "lua/tests/automated/sorters_spec.lua",
    "content": "local sorters = require \"telescope.sorters\"\n\ndescribe(\"get_substr_matcher\", function()\n  local function with_smartcase(smartcase, case)\n    local original = vim.o.smartcase\n    vim.o.smartcase = smartcase\n\n    describe(\"scoring_function\", function()\n      it(case.msg, function()\n        local matcher = sorters.get_substr_matcher()\n        assert.are.same(case.expected_score, matcher.scoring_function(_, case.prompt, _, case.entry))\n      end)\n    end)\n\n    describe(\"highlighter\", function()\n      it(\"returns valid highlights\", function()\n        local matcher = sorters.get_substr_matcher()\n        local highlights = matcher.highlighter(_, case.prompt, case.entry.ordinal)\n        table.sort(highlights, function(a, b)\n          return a.start < b.start\n        end)\n        assert.are.same(case.expected_highlights, highlights)\n      end)\n    end)\n\n    vim.o.smartcase = original\n  end\n\n  describe(\"when smartcase=OFF\", function()\n    for _, case in ipairs {\n      {\n        msg = \"doesn't match\",\n        prompt = \"abc def\",\n        entry = { index = 3, ordinal = \"abc d\" },\n        expected_score = -1,\n        expected_highlights = { { start = 1, finish = 3 } },\n      },\n      {\n        msg = \"matches with lower case letters only\",\n        prompt = \"abc def\",\n        entry = { index = 3, ordinal = \"abc def ghi\" },\n        expected_score = 3,\n        expected_highlights = { { start = 1, finish = 3 }, { start = 5, finish = 7 } },\n      },\n      {\n        msg = \"doesn't match with upper case letters\",\n        prompt = \"ABC def\",\n        entry = { index = 3, ordinal = \"ABC def ghi\" },\n        expected_score = -1,\n        expected_highlights = { { start = 5, finish = 7 } },\n      },\n    } do\n      with_smartcase(false, case)\n    end\n  end)\n\n  describe(\"when smartcase=OFF\", function()\n    for _, case in ipairs {\n      {\n        msg = \"doesn't match\",\n        prompt = \"abc def\",\n        entry = { index = 3, ordinal = \"abc d\" },\n        expected_score = -1,\n        expected_highlights = { { start = 1, finish = 3 } },\n      },\n      {\n        msg = \"matches with lower case letters only\",\n        prompt = \"abc def\",\n        entry = { index = 3, ordinal = \"abc def ghi\" },\n        expected_score = 3,\n        expected_highlights = { { start = 1, finish = 3 }, { start = 5, finish = 7 } },\n      },\n      {\n        msg = \"matches with upper case letters\",\n        prompt = \"ABC def\",\n        entry = { index = 3, ordinal = \"ABC def ghi\" },\n        expected_score = 3,\n        expected_highlights = { { start = 1, finish = 3 }, { start = 5, finish = 7 } },\n      },\n    } do\n      with_smartcase(true, case)\n    end\n  end)\nend)\n"
  },
  {
    "path": "lua/tests/automated/telescope_spec.lua",
    "content": "local picker = require \"telescope.pickers\"\nlocal Path = require \"plenary.path\"\n\nlocal eq = assert.are.same\n\nlocal function new_path(unix_path)\n  return Path:new(unpack(vim.split(unix_path, \"/\"))).filename\nend\n\ndescribe(\"telescope\", function()\n  describe(\"Picker\", function()\n    describe(\"window_dimensions\", function()\n      it(\"\", function()\n        assert(true)\n      end)\n    end)\n\n    describe(\"attach_mappings\", function()\n      local new_picker = function(a, b)\n        a.finder = true\n        return picker.new(a, b)\n      end\n\n      it(\"should allow for passing in a function\", function()\n        local p = new_picker({}, {\n          attach_mappings = function()\n            return 1\n          end,\n        })\n        eq(1, p.attach_mappings())\n      end)\n\n      it(\"should override an attach mappings passed in by opts\", function()\n        local called_order = {}\n        local p = new_picker({\n          attach_mappings = function()\n            table.insert(called_order, \"opts\")\n          end,\n        }, {\n          attach_mappings = function()\n            table.insert(called_order, \"default\")\n          end,\n        })\n\n        p.attach_mappings()\n\n        eq({ \"default\", \"opts\" }, called_order)\n      end)\n    end)\n  end)\n\n  describe(\"Sorters\", function()\n    describe(\"generic_fuzzy_sorter\", function()\n      it(\"sort matches well\", function()\n        local sorter = require(\"telescope.sorters\").get_generic_fuzzy_sorter()\n\n        local exact_match = sorter:score(\"hello\", { ordinal = \"hello\" })\n        local no_match = sorter:score(\"abcdef\", { ordinal = \"ghijkl\" })\n        local ok_match = sorter:score(\"abcdef\", { ordinal = \"ab\" })\n\n        assert(exact_match < no_match, \"exact match better than no match\")\n        assert(exact_match < ok_match, \"exact match better than ok match\")\n        assert(ok_match < no_match, \"ok match better than no match\")\n      end)\n\n      it(\"sorts multiple finds better\", function()\n        local sorter = require(\"telescope.sorters\").get_generic_fuzzy_sorter()\n\n        local multi_match = sorter:score(\"generics\", \"exercises/generics/generics2.rs\")\n        local one_match = sorter:score(\"abcdef\", \"exercises/generics/README.md\")\n\n        -- assert(multi_match < one_match)\n      end)\n    end)\n\n    describe(\"fuzzy_file\", function()\n      it(\"sort matches well\", function()\n        local sorter = require(\"telescope.sorters\").get_fuzzy_file()\n\n        local exact_match = sorter:score(\"abcdef\", { ordinal = \"abcdef\" })\n        local no_match = sorter:score(\"abcdef\", { ordinal = \"ghijkl\" })\n        local ok_match = sorter:score(\"abcdef\", { ordinal = \"ab\" })\n\n        assert(exact_match < no_match, string.format(\"Exact match better than no match: %s %s\", exact_match, no_match))\n        assert(exact_match < ok_match, string.format(\"Exact match better than OK match: %s %s\", exact_match, ok_match))\n        assert(ok_match < no_match, \"OK match better than no match\")\n      end)\n\n      it(\"sorts matches after last os sep better\", function()\n        local sorter = require(\"telescope.sorters\").get_fuzzy_file()\n\n        local better_match = sorter:score(\"aaa\", { ordinal = new_path \"bbb/aaa\" })\n        local worse_match = sorter:score(\"aaa\", { ordinal = new_path \"aaa/bbb\" })\n\n        assert(better_match < worse_match, \"Final match should be stronger\")\n      end)\n\n      pending(\"sorts multiple finds better\", function()\n        local sorter = require(\"telescope.sorters\").get_fuzzy_file()\n\n        local multi_match = sorter:score(\"generics\", { ordinal = \"exercises/generics/generics2.rs\" })\n        local one_match = sorter:score(\"abcdef\", { ordinal = \"exercises/generics/README.md\" })\n\n        assert(multi_match < one_match)\n      end)\n    end)\n\n    describe(\"fzy\", function()\n      local sorter = require(\"telescope.sorters\").get_fzy_sorter()\n      local function score(prompt, line)\n        line = new_path(line)\n        return sorter:score(prompt, { ordinal = line }, function(val)\n          return val\n        end, function()\n          return -1\n        end)\n      end\n\n      describe(\"matches\", function()\n        it(\"exact matches\", function()\n          assert.True(score(\"a\", \"a\") >= 0)\n          assert.True(score(\"a.bb\", \"a.bb\") >= 0)\n        end)\n        it(\"ignore case\", function()\n          assert.True(score(\"AbB\", \"abb\") >= 0)\n          assert.True(score(\"abb\", \"ABB\") >= 0)\n        end)\n        it(\"partial matches\", function()\n          assert.True(score(\"a\", \"ab\") >= 0)\n          assert.True(score(\"a\", \"ba\") >= 0)\n          assert.True(score(\"aba\", \"baabbaab\") >= 0)\n        end)\n        it(\"with delimiters between\", function()\n          assert.True(score(\"abc\", \"a|b|c\") >= 0)\n        end)\n        it(\"with empty query\", function()\n          assert.True(score(\"\", \"\") >= 0)\n          assert.True(score(\"\", \"a\") >= 0)\n        end)\n        it(\"rejects non-matches\", function()\n          assert.True(score(\"a\", \"\") < 0)\n          assert.True(score(\"a\", \"b\") < 0)\n          assert.True(score(\"aa\", \"a\") < 0)\n          assert.True(score(\"ba\", \"a\") < 0)\n          assert.True(score(\"ab\", \"a\") < 0)\n        end)\n      end)\n\n      describe(\"scoring\", function()\n        it(\"prefers beginnings of words\", function()\n          assert.True(score(\"amor\", \"app/models/order\") < score(\"amor\", \"app/models/zrder\"))\n        end)\n        it(\"prefers consecutive letters\", function()\n          assert.True(score(\"amo\", \"app/models/foo\") < score(\"amo\", \"app/m/foo\"))\n          assert.True(score(\"erf\", \"perfect\") < score(\"erf\", \"terrific\"))\n        end)\n        it(\"prefers contiguous over letter following period\", function()\n          assert.True(score(\"gemfil\", \"Gemfile\") < score(\"gemfil\", \"Gemfile.lock\"))\n        end)\n        it(\"prefers shorter matches\", function()\n          assert.True(score(\"abce\", \"abcdef\") < score(\"abce\", \"abc de\"))\n          assert.True(score(\"abc\", \"    a b c \") < score(\"abc\", \" a  b  c \"))\n          assert.True(score(\"abc\", \" a b c    \") < score(\"abc\", \" a  b  c \"))\n        end)\n        it(\"prefers shorter candidates\", function()\n          assert.True(score(\"test\", \"tests\") < score(\"test\", \"testing\"))\n        end)\n        it(\"prefers matches at the beginning\", function()\n          assert.True(score(\"ab\", \"abbb\") < score(\"ab\", \"babb\"))\n          assert.True(score(\"test\", \"testing\") < score(\"test\", \"/testing\"))\n        end)\n        it(\"prefers matches at some locations\", function()\n          assert.True(score(\"a\", \"/a\") < score(\"a\", \"ba\"))\n          assert.True(score(\"a\", \"bA\") < score(\"a\", \"ba\"))\n          assert.True(score(\"a\", \".a\") < score(\"a\", \"ba\"))\n        end)\n      end)\n\n      local function positions(prompt, line)\n        return sorter:highlighter(prompt, new_path(line))\n      end\n\n      describe(\"positioning\", function()\n        it(\"favors consecutive positions\", function()\n          assert.same({ 1, 5, 6 }, positions(\"amo\", \"app/models/foo\"))\n        end)\n        it(\"favors word beginnings\", function()\n          assert.same({ 1, 5, 12, 13 }, positions(\"amor\", \"app/models/order\"))\n        end)\n        it(\"works when there are no bonuses\", function()\n          assert.same({ 2, 4 }, positions(\"as\", \"tags\"))\n          assert.same({ 3, 8 }, positions(\"as\", \"examples.txt\"))\n        end)\n        it(\"favors smaller groupings of positions\", function()\n          assert.same({ 3, 5, 7 }, positions(\"abc\", \"a/a/b/c/c\"))\n          assert.same({ 3, 5 }, positions(\"ab\", \"caacbbc\"))\n        end)\n        it(\"handles exact matches\", function()\n          assert.same({ 1, 2, 3 }, positions(\"foo\", \"foo\"))\n        end)\n        it(\"ignores empty requests\", function()\n          assert.same({}, positions(\"\", \"\"))\n          assert.same({}, positions(\"\", \"foo\"))\n          assert.same({}, positions(\"foo\", \"\"))\n        end)\n      end)\n    end)\n\n    describe(\"layout_strategies\", function()\n      describe(\"center\", function()\n        it(\"should handle large terminals\", function()\n          -- TODO: This could call layout_strategies.center w/ some weird edge case.\n          -- and then assert stuff about the dimensions.\n        end)\n      end)\n    end)\n  end)\nend)\n"
  },
  {
    "path": "lua/tests/automated/utils_spec.lua",
    "content": "local Path = require \"plenary.path\"\nlocal utils = require \"telescope.utils\"\n\nlocal eq = assert.are.equal\n\ndescribe(\"path_expand()\", function()\n  it(\"removes trailing os_sep\", function()\n    if utils.iswin then\n      eq([[C:\\Users\\a\\b]], utils.path_expand [[C:\\Users\\a\\b\\]])\n    else\n      eq(\"/home/user\", utils.path_expand \"/home/user/\")\n    end\n  end)\n\n  it(\"works with root dir\", function()\n    if utils.iswin then\n      eq([[C:\\]], utils.path_expand [[C:\\]])\n    else\n      eq(\"/\", utils.path_expand \"/\")\n    end\n  end)\n\n  it(\"works with ~\", function()\n    eq(vim.uv.os_homedir() .. \"/src/foo\", utils.path_expand \"~/src/foo\")\n  end)\n\n  it(\"handles duplicate os_sep\", function()\n    if utils.iswin then\n      eq([[C:\\Users\\a]], utils.path_expand [[C:\\\\\\Users\\\\a]])\n    else\n      eq(\"/home/user\", utils.path_expand \"/home///user\")\n    end\n  end)\n\n  it(\"preserves fake whitespace characters and whitespace\", function()\n    local path_space = \"/home/user/hello world\"\n    eq(path_space, utils.path_expand(path_space))\n    local path_newline = [[/home/user/hello\\nworld]]\n    eq(path_newline, utils.path_expand(path_newline))\n  end)\n  describe(\"early return for uri\", function()\n    local uris = {\n      [[https://www.example.com/index.html]],\n      [[ftp://ftp.example.com/files/document.pdf]],\n      [[mailto:user@example.com]],\n      [[tel:+1234567890]],\n      [[file:///home/user/documents/report.docx]],\n      [[news:comp.lang.python]],\n      [[ldap://ldap.example.com:389/dc=example,dc=com]],\n      [[git://github.com/user/repo.git]],\n      [[steam://run/123456]],\n      [[magnet:?xt=urn:btih:6B4C3343E1C63A1BC36AEB8A3D1F52C4EDEEB096]],\n    }\n\n    for _, uri in ipairs(uris) do\n      it(uri, function()\n        eq(uri, utils.path_expand(uri))\n      end)\n    end\n  end)\nend)\n\ndescribe(\"is_uri\", function()\n  describe(\"detects valid uris\", function()\n    local uris = {\n      [[https://www.example.com/index.html]],\n      [[ftp://ftp.example.com/files/document.pdf]],\n      [[mailto:user@example.com]],\n      [[tel:+1234567890]],\n      [[file:///home/user/documents/report.docx]],\n      [[news:comp.lang.python]],\n      [[ldap://ldap.example.com:389/dc=example,dc=com]],\n      [[git://github.com/user/repo.git]],\n      [[steam://run/123456]],\n      [[magnet:?xt=urn:btih:6B4C3343E1C63A1BC36AEB8A3D1F52C4EDEEB096]],\n    }\n\n    for _, uri in ipairs(uris) do\n      it(uri, function()\n        assert.True(utils.is_uri(uri))\n      end)\n    end\n  end)\n\n  describe(\"detects invalid uris/paths\", function()\n    local inputs = {\n      \"hello\",\n      \"hello:\",\n      \"123\",\n      \"\",\n    }\n    for _, input in ipairs(inputs) do\n      it(input, function()\n        assert.False(utils.is_uri(input))\n      end)\n    end\n  end)\n\n  describe(\"handles windows paths\", function()\n    local paths = {\n      [[C:\\Users\\Usuario\\Documents\\archivo.txt]],\n      [[D:\\Projects\\project_folder\\source_code.py]],\n      [[E:\\Music\\song.mp3]],\n    }\n\n    for _, uri in ipairs(paths) do\n      it(uri, function()\n        assert.False(utils.is_uri(uri))\n      end)\n    end\n  end)\n\n  describe(\"handles linux paths\", function()\n    local paths = {\n      [[/home/usuario/documents/archivo.txt]],\n      [[/var/www/html/index.html]],\n      [[/mnt/backup/backup_file.tar.gz]],\n    }\n\n    for _, path in ipairs(paths) do\n      it(path, function()\n        assert.False(utils.is_uri(path))\n      end)\n    end\n  end)\n\n  describe(\"handles macos paths\", function()\n    local paths = {\n      [[/Users/Usuario/Documents/archivo.txt]],\n      [[/Applications/App.app/Contents/MacOS/app_executable]],\n      [[/Volumes/ExternalDrive/Data/file.xlsx]],\n    }\n\n    for _, path in ipairs(paths) do\n      it(path, function()\n        assert.False(utils.is_uri(path))\n      end)\n    end\n  end)\nend)\n\ndescribe(\"__separates_file_path_location\", function()\n  local suites = {\n    {\n      input = \"file.txt:12:4\",\n      file = \"file.txt\",\n      row = 12,\n      col = 4,\n    },\n    {\n      input = \"file.txt:12\",\n      file = \"file.txt\",\n      row = 12,\n      col = 0,\n    },\n    {\n      input = \"file:12:4\",\n      file = \"file\",\n      row = 12,\n      col = 4,\n    },\n    {\n      input = \"file:12:\",\n      file = \"file\",\n      row = 12,\n      col = 0,\n    },\n    {\n      input = \"file:\",\n      file = \"file\",\n    },\n  }\n\n  for _, suite in ipairs(suites) do\n    it(\"separtates file path for \" .. suite.input, function()\n      local file, row, col = utils.__separate_file_path_location(suite.input)\n\n      eq(file, suite.file)\n      eq(row, suite.row)\n      eq(col, suite.col)\n    end)\n  end\nend)\n\ndescribe(\"transform_path\", function()\n  local cwd = (function()\n    if utils.iswin then\n      return [[C:\\Users\\user\\projects\\telescope.nvim]]\n    else\n      return \"/home/user/projects/telescope.nvim\"\n    end\n  end)()\n\n  local function new_relpath(unix_path)\n    return Path:new(unpack(vim.split(unix_path, \"/\"))).filename\n  end\n\n  local function assert_path(path_display, path, expect)\n    local opts = { cwd = cwd, __length = 15 }\n    if type(path_display) == \"string\" then\n      opts.path_display = { path_display }\n      eq(expect, utils.transform_path(opts, path))\n      opts.path_display = { [path_display] = true }\n      eq(expect, utils.transform_path(opts, path))\n    elseif type(path_display) == \"table\" then\n      opts.path_display = path_display\n      eq(expect, utils.transform_path(opts, path))\n    elseif type(path_display) == \"function\" then\n      opts.path_display = path_display\n      eq(expect, utils.transform_path(opts, path))\n    elseif path_display == nil then\n      eq(expect, utils.transform_path(opts, path))\n    end\n  end\n\n  it(\"handles nil path\", function()\n    assert_path(nil, nil, \"\")\n  end)\n\n  it(\"returns back uri\", function()\n    local uri = [[https://www.example.com/index.html]]\n    assert_path(nil, uri, uri)\n  end)\n\n  it(\"handles 'hidden' path_display\", function()\n    eq(\"\", utils.transform_path({ cwd = cwd, path_display = \"hidden\" }, \"foobar\"))\n    assert_path(\"hidden\", \"foobar\", \"\")\n  end)\n\n  it(\"returns relative path for default opts\", function()\n    local relative = Path:new { \"lua\", \"telescope\", \"init.lua\" }\n    local absolute = Path:new { cwd, relative }\n    assert_path(nil, absolute.filename, relative.filename)\n    assert_path(nil, relative.filename, relative.filename)\n  end)\n\n  it(\"handles 'tail' path_display\", function()\n    local path = new_relpath \"lua/telescope/init.lua\"\n    assert_path(\"tail\", path, \"init.lua\")\n  end)\n\n  it(\"handles 'smart' path_display\", function()\n    local path1 = new_relpath \"lua/telescope/init.lua\"\n    local path2 = new_relpath \"lua/telescope/finders.lua\"\n    local path3 = new_relpath \"lua/telescope/finders/async_job_finder.lua\"\n    local path4 = new_relpath \"plugin/telescope.lua\"\n\n    assert_path(\"smart\", path1, path1)\n    assert_path(\"smart\", path2, new_relpath \"../telescope/finders.lua\")\n    assert_path(\"smart\", path3, new_relpath \"../telescope/finders/async_job_finder.lua\")\n    assert_path(\"smart\", path4, path4)\n  end)\n\n  it(\"handles 'absolute' path_display\", function()\n    local relative = Path:new { \"lua\", \"telescope\", \"init.lua\" }\n    local absolute = Path:new { cwd, relative }\n\n    -- TODO: feels like 'absolute' should turn relative paths to absolute\n    -- assert_path(\"absolute\", relative.filename, absolute.filename)\n    assert_path(\"absolute\", absolute.filename, absolute.filename)\n  end)\n\n  it(\"handles default 'shorten' path_display\", function()\n    assert_path(\"shorten\", new_relpath \"lua/telescope/init.lua\", new_relpath \"l/t/init.lua\")\n  end)\n\n  it(\"handles 'shorten' with number\", function()\n    assert_path({ shorten = 2 }, new_relpath \"lua/telescope/init.lua\", new_relpath \"lu/te/init.lua\")\n  end)\n\n  it(\"handles 'shorten' with option table\", function()\n    assert_path({ shorten = { len = 2 } }, new_relpath \"lua/telescope/init.lua\", new_relpath \"lu/te/init.lua\")\n    assert_path(\n      { shorten = { len = 2, exclude = { 1, 3, -1 } } },\n      new_relpath \"lua/telescope/builtin/init.lua\",\n      new_relpath \"lua/te/builtin/init.lua\"\n    )\n  end)\n\n  it(\"handles default 'truncate' path_display\", function()\n    assert_path({ \"truncate\" }, new_relpath \"lua/telescope/init.lua\", new_relpath \"…scope/init.lua\")\n  end)\n\n  it(\"handles 'filename_first' path_display\", function()\n    assert_path(\"filename_first\", new_relpath \"init.lua\", new_relpath \"init.lua\")\n    assert_path(\"filename_first\", new_relpath \"lua/telescope/init.lua\", new_relpath \"init.lua lua/telescope\")\n  end)\n\n  it(\"handles 'filename_first' path_display with the option to reverse directories\", function()\n    assert_path({ filename_first = { reverse_directories = true } }, new_relpath \"init.lua\", new_relpath \"init.lua\")\n    assert_path(\n      { filename_first = { reverse_directories = true } },\n      new_relpath \"lua/telescope/init.lua\",\n      new_relpath \"init.lua telescope/lua\"\n    )\n    assert_path({ filename_first = { reverse_directories = false } }, new_relpath \"init.lua\", new_relpath \"init.lua\")\n    assert_path(\n      { filename_first = { reverse_directories = false } },\n      new_relpath \"lua/telescope/init.lua\",\n      new_relpath \"init.lua lua/telescope\"\n    )\n  end)\n\n  it(\"handles function passed to path_display\", function()\n    assert_path(function(_, path)\n      return string.gsub(path, \"^doc\", \"d\")\n    end, new_relpath \"doc/mydoc.md\", new_relpath \"d/mydoc.md\")\n  end)\nend)\n\ndescribe(\"path_tail\", function()\n  local function assert_tails(paths)\n    for _, path in ipairs(paths) do\n      it(\"gets the tail of \" .. path, function()\n        local tail = vim.fn.fnamemodify(path, \":p:t\")\n        eq(tail, utils.path_tail(path))\n      end)\n    end\n  end\n\n  if jit and jit.os:lower() == \"windows\" then\n    describe(\"handles windows paths\", function()\n      local paths = {\n        [[C:\\Users\\username\\AppData\\Local\\nvim-data\\log]],\n        [[D:\\Projects\\project_folder\\source_code.py]],\n        [[E:\\Music\\song.mp3]],\n        [[/home/usuario/documents/archivo.txt]],\n        [[/var/www/html/index.html]],\n        [[/mnt/backup/backup_file.tar.gz]],\n      }\n\n      assert_tails(paths)\n    end)\n  elseif jit and jit.os:lower() == \"linux\" then\n    describe(\"handles linux paths\", function()\n      local paths = {\n        [[/home/usuario/documents/archivo.txt]],\n        [[/var/www/html/index.html]],\n        [[/mnt/backup/backup_file.tar.gz]],\n      }\n\n      assert_tails(paths)\n    end)\n  elseif jit and jit.os:lower() == \"osx\" then\n    describe(\"handles macos paths\", function()\n      local paths = {\n        [[/Users/Usuario/Documents/archivo.txt]],\n        [[/Applications/App.app/Contents/MacOS/app_executable]],\n        [[/Volumes/ExternalDrive/Data/file.xlsx]],\n      }\n\n      assert_tails(paths)\n    end)\n  end\nend)\n\ndescribe(\"split_lines\", function()\n  local expect = {\n    \"\",\n    \"\",\n    \"line3 of the file\",\n    \"\",\n    \"line5 of the file\",\n    \"\",\n    \"\",\n    \"line8 of the file, last line of file\",\n    \"\",\n  }\n\n  local function get_fake_file(line_ending)\n    return table.concat(expect, line_ending)\n  end\n\n  local newline_file = get_fake_file \"\\n\"\n  local carriage_newline_file = get_fake_file \"\\r\\n\"\n\n  if utils.iswin then\n    describe(\"handles files on Windows\", function()\n      it(\"reads file with newline only\", function()\n        assert.are.same(expect, utils.split_lines(newline_file))\n      end)\n      it(\"reads file with carriage return and newline\", function()\n        assert.are.same(expect, utils.split_lines(carriage_newline_file))\n      end)\n    end)\n  else\n    describe(\"handles files on non Windows environment\", function()\n      it(\"reads file with newline only\", function()\n        assert.are.same(expect, utils.split_lines(newline_file))\n      end)\n    end)\n  end\nend)\n"
  },
  {
    "path": "lua/tests/fixtures/find_files/file_a.txt",
    "content": ""
  },
  {
    "path": "lua/tests/fixtures/find_files/file_abc.txt",
    "content": ""
  },
  {
    "path": "lua/tests/fixtures/live_grep/a.txt",
    "content": "abc\nabc\nabc\nabc\nabc\n\n\nabcd\nabcd\nabcd\nabcd\nabcd\n\nabcde\n"
  },
  {
    "path": "lua/tests/helpers.lua",
    "content": "local finders = require \"telescope.finders\"\nlocal make_entry = require \"telescope.make_entry\"\nlocal previewers = require \"telescope.previewers\"\nlocal pickers = require \"telescope.pickers\"\nlocal sorters = require \"telescope.sorters\"\nlocal utils = require \"telescope.utils\"\n\nlocal helpers = {}\n\n-- TODO: We should do something with builtins to get those easily.\nhelpers.auto_find_files = function(opts)\n  opts = opts or {}\n  opts.prompt_prefix = \"\"\n\n  local find_command = opts.find_command\n\n  if not find_command then\n    if 1 == vim.fn.executable \"fd\" then\n      find_command = { \"fd\", \"--type\", \"f\" }\n    elseif 1 == vim.fn.executable \"fdfind\" then\n      find_command = { \"fdfind\", \"--type\", \"f\" }\n    elseif 1 == vim.fn.executable \"rg\" then\n      find_command = { \"rg\", \"--files\" }\n    end\n  end\n\n  if opts.cwd then\n    opts.cwd = utils.path_expand(opts.cwd)\n  end\n\n  opts.entry_maker = opts.entry_maker or make_entry.gen_from_file(opts)\n\n  local p = pickers.new(opts, {\n    prompt = \"Find Files\",\n    finder = finders.new_oneshot_job(find_command, opts),\n    previewer = previewers.cat.new(opts),\n    sorter = sorters.get_fuzzy_file(),\n\n    track = true,\n  })\n\n  local count = 0\n  p:register_completion_callback(function(s)\n    print(\n      count,\n      vim.inspect(s.stats, {\n        process = function(item)\n          if type(item) == \"string\" and item:sub(1, 1) == \"_\" then\n            return nil\n          end\n\n          return item\n        end,\n      })\n    )\n\n    count = count + 1\n  end)\n\n  local feed = function(text, feed_opts)\n    feed_opts = feed_opts or \"n\"\n    vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(text, true, false, true), feed_opts, true)\n  end\n\n  p:register_completion_callback(coroutine.wrap(function()\n    local input = opts.input\n\n    for i = 1, #input do\n      feed(input:sub(i, i))\n      coroutine.yield()\n    end\n\n    vim.wait(300, function() end)\n    feed(\"<CR>\", \"\")\n\n    vim.defer_fn(function()\n      PASSED = opts.condition()\n      COMPLETED = true\n    end, 500)\n\n    coroutine.yield()\n  end))\n\n  p:find()\nend\n\nreturn helpers\n"
  },
  {
    "path": "lua/tests/pickers/find_files__readme.lua",
    "content": "local helper = require \"telescope.testharness.helpers\"\nlocal runner = require \"telescope.testharness.runner\"\n\nrunner.picker(\"find_files\", \"README.md\", {\n  post_close = {\n    { \"README.md\", helper.get_file },\n  },\n})\n"
  },
  {
    "path": "lua/tests/pickers/find_files__scrolling_descending_cycle.lua",
    "content": "local tester = require \"telescope.testharness\"\nlocal helper = require \"telescope.testharness.helpers\"\nlocal runner = require \"telescope.testharness.runner\"\n\nrunner.picker(\"find_files\", \"telescope<c-n>\", {\n  post_close = {\n    tester.not_ { \"plugin/telescope.vim\", helper.get_file },\n  },\n}, {\n  sorting_strategy = \"descending\",\n  scroll_strategy = \"cycle\",\n})\n"
  },
  {
    "path": "plugin/telescope.lua",
    "content": "if 1 ~= vim.fn.has \"nvim-0.10.4\" then\n  error \"Telescope.nvim requires at least nvim-0.10.4.\"\n  return\nend\n\nif vim.g.loaded_telescope == 1 then\n  return\nend\nvim.g.loaded_telescope = 1\n\nlocal highlights = {\n  -- Sets the highlight for selected items within the picker.\n  TelescopeSelection = { default = true, link = \"Visual\" },\n  TelescopeSelectionCaret = { default = true, link = \"TelescopeSelection\" },\n  TelescopeMultiSelection = { default = true, link = \"Type\" },\n  TelescopeMultiIcon = { default = true, link = \"Identifier\" },\n\n  -- \"Normal\" in the floating windows created by telescope.\n  TelescopeNormal = { default = true, link = \"Normal\" },\n  TelescopePreviewNormal = { default = true, link = \"TelescopeNormal\" },\n  TelescopePromptNormal = { default = true, link = \"TelescopeNormal\" },\n  TelescopeResultsNormal = { default = true, link = \"TelescopeNormal\" },\n\n  -- Border highlight groups.\n  --   Use TelescopeBorder to override the default.\n  --   Otherwise set them specifically\n  TelescopeBorder = { default = true, link = \"TelescopeNormal\" },\n  TelescopePromptBorder = { default = true, link = \"TelescopeBorder\" },\n  TelescopeResultsBorder = { default = true, link = \"TelescopeBorder\" },\n  TelescopePreviewBorder = { default = true, link = \"TelescopeBorder\" },\n\n  -- Title highlight groups.\n  --   Use TelescopeTitle to override the default.\n  --   Otherwise set them specifically\n  TelescopeTitle = { default = true, link = \"TelescopeBorder\" },\n  TelescopePromptTitle = { default = true, link = \"TelescopeTitle\" },\n  TelescopeResultsTitle = { default = true, link = \"TelescopeTitle\" },\n  TelescopePreviewTitle = { default = true, link = \"TelescopeTitle\" },\n\n  TelescopePromptCounter = { default = true, link = \"NonText\" },\n\n  -- Used for highlighting characters that you match.\n  TelescopeMatching = { default = true, link = \"Special\" },\n\n  -- Used for the prompt prefix\n  TelescopePromptPrefix = { default = true, link = \"Identifier\" },\n\n  -- Used for highlighting the matched line inside Previewer. Works only for (vim_buffer_ previewer)\n  TelescopePreviewLine = { default = true, link = \"Visual\" },\n  TelescopePreviewMatch = { default = true, link = \"Search\" },\n\n  TelescopePreviewPipe = { default = true, link = \"Constant\" },\n  TelescopePreviewCharDev = { default = true, link = \"Constant\" },\n  TelescopePreviewDirectory = { default = true, link = \"Directory\" },\n  TelescopePreviewBlock = { default = true, link = \"Constant\" },\n  TelescopePreviewLink = { default = true, link = \"Special\" },\n  TelescopePreviewSocket = { default = true, link = \"Statement\" },\n  TelescopePreviewRead = { default = true, link = \"Constant\" },\n  TelescopePreviewWrite = { default = true, link = \"Statement\" },\n  TelescopePreviewExecute = { default = true, link = \"String\" },\n  TelescopePreviewHyphen = { default = true, link = \"NonText\" },\n  TelescopePreviewSticky = { default = true, link = \"Keyword\" },\n  TelescopePreviewSize = { default = true, link = \"String\" },\n  TelescopePreviewUser = { default = true, link = \"Constant\" },\n  TelescopePreviewGroup = { default = true, link = \"Constant\" },\n  TelescopePreviewDate = { default = true, link = \"Directory\" },\n  TelescopePreviewMessage = { default = true, link = \"TelescopePreviewNormal\" },\n  TelescopePreviewMessageFillchar = { default = true, link = \"TelescopePreviewMessage\" },\n\n  -- Used for Picker specific Results highlighting\n  TelescopeResultsClass = { default = true, link = \"Function\" },\n  TelescopeResultsConstant = { default = true, link = \"Constant\" },\n  TelescopeResultsField = { default = true, link = \"Function\" },\n  TelescopeResultsFunction = { default = true, link = \"Function\" },\n  TelescopeResultsMethod = { default = true, link = \"Method\" },\n  TelescopeResultsOperator = { default = true, link = \"Operator\" },\n  TelescopeResultsStruct = { default = true, link = \"Struct\" },\n  TelescopeResultsVariable = { default = true, link = \"SpecialChar\" },\n\n  TelescopeResultsLineNr = { default = true, link = \"LineNr\" },\n  TelescopeResultsIdentifier = { default = true, link = \"Identifier\" },\n  TelescopeResultsNumber = { default = true, link = \"Number\" },\n  TelescopeResultsComment = { default = true, link = \"Comment\" },\n  TelescopeResultsSpecialComment = { default = true, link = \"SpecialComment\" },\n\n  -- Used for git status Results highlighting\n  TelescopeResultsDiffChange = { default = true, link = \"DiffChange\" },\n  TelescopeResultsDiffAdd = { default = true, link = \"DiffAdd\" },\n  TelescopeResultsDiffDelete = { default = true, link = \"DiffDelete\" },\n  TelescopeResultsDiffUntracked = { default = true, link = \"NonText\" },\n}\n\nfor k, v in pairs(highlights) do\n  vim.api.nvim_set_hl(0, k, v)\nend\n\n-- This is like \"<C-R>\" in your terminal.\n--     To use it, do `cmap <C-R> <Plug>(TelescopeFuzzyCommandSearch)\nvim.keymap.set(\n  \"c\",\n  \"<Plug>(TelescopeFuzzyCommandSearch)\",\n  \"<C-\\\\>e \\\"lua require('telescope.builtin').command_history \"\n    .. '{ default_text = [=[\" . escape(getcmdline(), \\'\"\\') . \"]=] }\"<CR><CR>',\n  { silent = true, noremap = true }\n)\n\nvim.api.nvim_create_user_command(\"Telescope\", function(opts)\n  require(\"telescope.command\").load_command(unpack(opts.fargs))\nend, {\n  nargs = \"*\",\n  complete = function(_, line)\n    local builtin_list = vim.tbl_keys(require \"telescope.builtin\")\n    local extensions_list = vim.tbl_keys(require(\"telescope._extensions\").manager)\n\n    local l = vim.split(line, \"%s+\")\n    local n = #l - 2\n\n    if n == 0 then\n      local commands = { builtin_list, extensions_list }\n      commands = vim.iter(commands):flatten():totable()\n      table.sort(commands)\n\n      return vim.tbl_filter(function(val)\n        return vim.startswith(val, l[2])\n      end, commands)\n    end\n\n    if n == 1 then\n      local is_extension = vim.tbl_filter(function(val)\n        return val == l[2]\n      end, extensions_list)\n\n      if #is_extension > 0 then\n        local extensions_subcommand_dict = require(\"telescope.command\").get_extensions_subcommand()\n        local commands = extensions_subcommand_dict[l[2]]\n        table.sort(commands)\n\n        return vim.tbl_filter(function(val)\n          return vim.startswith(val, l[3])\n        end, commands)\n      end\n    end\n\n    local options_list = vim.tbl_keys(require(\"telescope.config\").values)\n    table.sort(options_list)\n\n    return vim.tbl_filter(function(val)\n      return vim.startswith(val, l[#l])\n    end, options_list)\n  end,\n})\n"
  },
  {
    "path": "scripts/gendocs.lua",
    "content": "-- Setup telescope with defaults\nif RELOAD then\n  RELOAD \"telescope\"\nend\nrequire(\"telescope\").setup()\n\nlocal docgen = require \"docgen\"\n\nlocal docs = {}\n\ndocs.test = function()\n  -- TODO: Fix the other files so that we can add them here.\n  local input_files = {\n    \"./lua/telescope/init.lua\",\n    \"./lua/telescope/command.lua\",\n    \"./lua/telescope/builtin/init.lua\",\n    \"./lua/telescope/themes.lua\",\n    \"./lua/telescope/mappings.lua\",\n    \"./lua/telescope/pickers/layout.lua\",\n    \"./lua/telescope/pickers/layout_strategies.lua\",\n    \"./lua/telescope/config/resolve.lua\",\n    \"./lua/telescope/make_entry.lua\",\n    \"./lua/telescope/pickers/entry_display.lua\",\n    \"./lua/telescope/utils.lua\",\n    \"./lua/telescope/actions/init.lua\",\n    \"./lua/telescope/actions/state.lua\",\n    \"./lua/telescope/actions/set.lua\",\n    \"./lua/telescope/actions/layout.lua\",\n    \"./lua/telescope/actions/utils.lua\",\n    \"./lua/telescope/actions/generate.lua\",\n    \"./lua/telescope/previewers/init.lua\",\n    \"./lua/telescope/actions/history.lua\",\n  }\n\n  local output_file = \"./doc/telescope.txt\"\n  local output_file_handle = io.open(output_file, \"w\")\n\n  for _, input_file in ipairs(input_files) do\n    docgen.write(input_file, output_file_handle)\n  end\n\n  output_file_handle:write \" vim:tw=78:ts=8:ft=help:norl:\\n\"\n  output_file_handle:close()\n  vim.cmd [[checktime]]\nend\n\ndocs.test()\n\nreturn docs\n"
  },
  {
    "path": "scripts/minimal_init.vim",
    "content": "set rtp+=.\nset rtp+=../plenary.nvim/\nset rtp+=../tree-sitter-lua/\n\nruntime! plugin/plenary.vim\nruntime! plugin/telescope.lua\n\nlet g:telescope_test_delay = 100\n"
  },
  {
    "path": "telescope.nvim-scm-1.rockspec",
    "content": "local MODREV, SPECREV = 'scm', '-1'\nrockspec_format = '3.0'\npackage = 'telescope.nvim'\nversion = MODREV .. SPECREV\n\ndescription = {\n  summary = 'Find, Filter, Preview, Pick. All lua, all the time.',\n  detailed = [[\n  A highly extendable fuzzy finder over lists.\n  Built on the latest awesome features from neovim core.\n  Telescope is centered around modularity, allowing for easy customization.\n  ]],\n  labels = { 'neovim', 'plugin', },\n  homepage = 'https://github.com/nvim-telescope/telescope.nvim',\n  license = 'MIT',\n}\n\ndependencies = {\n  'lua == 5.1',\n  'plenary.nvim',\n}\n\nsource = {\n  url = 'git://github.com/nvim-telescope/telescope.nvim',\n}\n\nbuild = {\n  type = 'builtin',\n  copy_directories = {\n    'doc',\n    'ftplugin',\n    'plugin',\n    'scripts',\n    'data',\n  }\n}\n"
  }
]